-- mysqldump-php https://github.com/ifsnop/mysqldump-php
--
-- Host: localhost	Database: yasith5_wp750
-- ------------------------------------------------------
-- Server version 	5.5.5-10.5.22-MariaDB-log
-- Date: Wed, 27 Sep 2023 05:13:37 +0000

/*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */;
/*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */;
/*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */;
/*!40101 SET NAMES utf8mb4 */;
/*!40103 SET @OLD_TIME_ZONE=@@TIME_ZONE */;
/*!40103 SET TIME_ZONE='+00:00' */;
/*!40014 SET @OLD_UNIQUE_CHECKS=@@UNIQUE_CHECKS, UNIQUE_CHECKS=0 */;
/*!40014 SET @OLD_FOREIGN_KEY_CHECKS=@@FOREIGN_KEY_CHECKS, FOREIGN_KEY_CHECKS=0 */;
/*!40101 SET @OLD_SQL_MODE=@@SQL_MODE, SQL_MODE='NO_AUTO_VALUE_ON_ZERO' */;
/*!40111 SET @OLD_SQL_NOTES=@@SQL_NOTES, SQL_NOTES=0 */;

--
-- Table structure for table `wplf_woocommerce_payment_tokens`
--

DROP TABLE IF EXISTS `wplf_woocommerce_payment_tokens`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `wplf_woocommerce_payment_tokens` (
  `token_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `gateway_id` varchar(200) NOT NULL,
  `token` text NOT NULL,
  `user_id` bigint(20) unsigned NOT NULL DEFAULT 0,
  `type` varchar(200) NOT NULL,
  `is_default` tinyint(1) NOT NULL DEFAULT 0,
  PRIMARY KEY (`token_id`),
  KEY `user_id` (`user_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wplf_woocommerce_payment_tokens`
--

LOCK TABLES `wplf_woocommerce_payment_tokens` WRITE;
/*!40000 ALTER TABLE `wplf_woocommerce_payment_tokens` DISABLE KEYS */;
/*!40000 ALTER TABLE `wplf_woocommerce_payment_tokens` ENABLE KEYS */;
UNLOCK TABLES;

-- Dumped table `wplf_woocommerce_payment_tokens` with 0 row(s)
--

--
-- Table structure for table `wplf_links`
--

DROP TABLE IF EXISTS `wplf_links`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `wplf_links` (
  `link_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `link_url` varchar(255) NOT NULL DEFAULT '',
  `link_name` varchar(255) NOT NULL DEFAULT '',
  `link_image` varchar(255) NOT NULL DEFAULT '',
  `link_target` varchar(25) NOT NULL DEFAULT '',
  `link_description` varchar(255) NOT NULL DEFAULT '',
  `link_visible` varchar(20) NOT NULL DEFAULT 'Y',
  `link_owner` bigint(20) unsigned NOT NULL DEFAULT 1,
  `link_rating` int(11) NOT NULL DEFAULT 0,
  `link_updated` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `link_rel` varchar(255) NOT NULL DEFAULT '',
  `link_notes` mediumtext NOT NULL,
  `link_rss` varchar(255) NOT NULL DEFAULT '',
  PRIMARY KEY (`link_id`),
  KEY `link_visible` (`link_visible`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wplf_links`
--

LOCK TABLES `wplf_links` WRITE;
/*!40000 ALTER TABLE `wplf_links` DISABLE KEYS */;
/*!40000 ALTER TABLE `wplf_links` ENABLE KEYS */;
UNLOCK TABLES;

-- Dumped table `wplf_links` with 0 row(s)
--

--
-- Table structure for table `wplf_woocommerce_shipping_zone_locations`
--

DROP TABLE IF EXISTS `wplf_woocommerce_shipping_zone_locations`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `wplf_woocommerce_shipping_zone_locations` (
  `location_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `zone_id` bigint(20) unsigned NOT NULL,
  `location_code` varchar(200) NOT NULL,
  `location_type` varchar(40) NOT NULL,
  PRIMARY KEY (`location_id`),
  KEY `location_id` (`location_id`),
  KEY `location_type_code` (`location_type`(10),`location_code`(20))
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wplf_woocommerce_shipping_zone_locations`
--

LOCK TABLES `wplf_woocommerce_shipping_zone_locations` WRITE;
/*!40000 ALTER TABLE `wplf_woocommerce_shipping_zone_locations` DISABLE KEYS */;
/*!40000 ALTER TABLE `wplf_woocommerce_shipping_zone_locations` ENABLE KEYS */;
UNLOCK TABLES;

-- Dumped table `wplf_woocommerce_shipping_zone_locations` with 0 row(s)
--

--
-- Table structure for table `wplf_users`
--

DROP TABLE IF EXISTS `wplf_users`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `wplf_users` (
  `ID` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `user_login` varchar(60) NOT NULL DEFAULT '',
  `user_pass` varchar(255) NOT NULL DEFAULT '',
  `user_nicename` varchar(50) NOT NULL DEFAULT '',
  `user_email` varchar(100) NOT NULL DEFAULT '',
  `user_url` varchar(100) NOT NULL DEFAULT '',
  `user_registered` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `user_activation_key` varchar(255) NOT NULL DEFAULT '',
  `user_status` int(11) NOT NULL DEFAULT 0,
  `display_name` varchar(250) NOT NULL DEFAULT '',
  PRIMARY KEY (`ID`),
  KEY `user_login_key` (`user_login`),
  KEY `user_nicename` (`user_nicename`),
  KEY `user_email` (`user_email`)
) ENGINE=MyISAM AUTO_INCREMENT=3 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wplf_users`
--

LOCK TABLES `wplf_users` WRITE;
/*!40000 ALTER TABLE `wplf_users` DISABLE KEYS */;
INSERT INTO `wplf_users` VALUES (1,'fc_ypm_admin','$P$BD3I.QCX.8a4GNlxScB.Wi0FymyMYg.','fc_ypm_admin','yasitha.p.m@gmail.com','https://farmchemie.yasithawd.com','2022-07-20 06:57:51','',0,'fc_ypm_admin'),(2,'fc_product_editor','$P$B3JLoId44BYfKBTIS/ifaLyFggwwDb.','fc_product_editor','producteditor@yasithawd.com','','2023-09-23 10:12:42','1695463962:$P$ByZMKwhmU5nn2rQik6uvCUfgwQf.U41',0,'product admin admin');
/*!40000 ALTER TABLE `wplf_users` ENABLE KEYS */;
UNLOCK TABLES;

-- Dumped table `wplf_users` with 2 row(s)
--

--
-- Table structure for table `wplf_commentmeta`
--

DROP TABLE IF EXISTS `wplf_commentmeta`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `wplf_commentmeta` (
  `meta_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `comment_id` bigint(20) unsigned NOT NULL DEFAULT 0,
  `meta_key` varchar(255) DEFAULT NULL,
  `meta_value` longtext DEFAULT NULL,
  PRIMARY KEY (`meta_id`),
  KEY `comment_id` (`comment_id`),
  KEY `meta_key` (`meta_key`(191))
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wplf_commentmeta`
--

LOCK TABLES `wplf_commentmeta` WRITE;
/*!40000 ALTER TABLE `wplf_commentmeta` DISABLE KEYS */;
/*!40000 ALTER TABLE `wplf_commentmeta` ENABLE KEYS */;
UNLOCK TABLES;

-- Dumped table `wplf_commentmeta` with 0 row(s)
--

--
-- Table structure for table `wplf_revslider_static_slides_bkp`
--

DROP TABLE IF EXISTS `wplf_revslider_static_slides_bkp`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `wplf_revslider_static_slides_bkp` (
  `id` int(9) NOT NULL AUTO_INCREMENT,
  `slider_id` int(9) NOT NULL,
  `params` longtext NOT NULL,
  `layers` longtext NOT NULL,
  `settings` text NOT NULL,
  PRIMARY KEY (`id`),
  KEY `slider_id_index` (`slider_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wplf_revslider_static_slides_bkp`
--

LOCK TABLES `wplf_revslider_static_slides_bkp` WRITE;
/*!40000 ALTER TABLE `wplf_revslider_static_slides_bkp` DISABLE KEYS */;
/*!40000 ALTER TABLE `wplf_revslider_static_slides_bkp` ENABLE KEYS */;
UNLOCK TABLES;

-- Dumped table `wplf_revslider_static_slides_bkp` with 0 row(s)
--

--
-- Table structure for table `wplf_revslider_layer_animations_bkp`
--

DROP TABLE IF EXISTS `wplf_revslider_layer_animations_bkp`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `wplf_revslider_layer_animations_bkp` (
  `id` int(9) NOT NULL AUTO_INCREMENT,
  `handle` text NOT NULL,
  `params` text NOT NULL,
  `settings` text DEFAULT NULL,
  PRIMARY KEY (`id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wplf_revslider_layer_animations_bkp`
--

LOCK TABLES `wplf_revslider_layer_animations_bkp` WRITE;
/*!40000 ALTER TABLE `wplf_revslider_layer_animations_bkp` DISABLE KEYS */;
/*!40000 ALTER TABLE `wplf_revslider_layer_animations_bkp` ENABLE KEYS */;
UNLOCK TABLES;

-- Dumped table `wplf_revslider_layer_animations_bkp` with 0 row(s)
--

--
-- Table structure for table `wplf_posts`
--

DROP TABLE IF EXISTS `wplf_posts`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `wplf_posts` (
  `ID` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `post_author` bigint(20) unsigned NOT NULL DEFAULT 0,
  `post_date` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `post_date_gmt` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `post_content` longtext NOT NULL,
  `post_title` text NOT NULL,
  `post_excerpt` text NOT NULL,
  `post_status` varchar(20) NOT NULL DEFAULT 'publish',
  `comment_status` varchar(20) NOT NULL DEFAULT 'open',
  `ping_status` varchar(20) NOT NULL DEFAULT 'open',
  `post_password` varchar(255) NOT NULL DEFAULT '',
  `post_name` varchar(200) NOT NULL DEFAULT '',
  `to_ping` text NOT NULL,
  `pinged` text NOT NULL,
  `post_modified` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `post_modified_gmt` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `post_content_filtered` longtext NOT NULL,
  `post_parent` bigint(20) unsigned NOT NULL DEFAULT 0,
  `guid` varchar(255) NOT NULL DEFAULT '',
  `menu_order` int(11) NOT NULL DEFAULT 0,
  `post_type` varchar(20) NOT NULL DEFAULT 'post',
  `post_mime_type` varchar(100) NOT NULL DEFAULT '',
  `comment_count` bigint(20) NOT NULL DEFAULT 0,
  PRIMARY KEY (`ID`),
  KEY `post_name` (`post_name`(191)),
  KEY `type_status_date` (`post_type`,`post_status`,`post_date`,`ID`),
  KEY `post_parent` (`post_parent`),
  KEY `post_author` (`post_author`)
) ENGINE=MyISAM AUTO_INCREMENT=3948 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wplf_posts`
--

LOCK TABLES `wplf_posts` WRITE;
/*!40000 ALTER TABLE `wplf_posts` DISABLE KEYS */;
INSERT INTO `wplf_posts` VALUES (3,1,'2022-07-20 06:57:51','2022-07-20 06:57:51','<!-- wp:heading --><h2>Who we are</h2><!-- /wp:heading --><!-- wp:paragraph --><p><strong class=\"privacy-policy-tutorial\">Suggested text: </strong>Our website address is: https://farmchemie.yasithawd.com.</p><!-- /wp:paragraph --><!-- wp:heading --><h2>Comments</h2><!-- /wp:heading --><!-- wp:paragraph --><p><strong class=\"privacy-policy-tutorial\">Suggested text: </strong>When visitors leave comments on the site we collect the data shown in the comments form, and also the visitor&#8217;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 --><h2>Media</h2><!-- /wp:heading --><!-- wp:paragraph --><p><strong class=\"privacy-policy-tutorial\">Suggested text: </strong>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 --><h2>Cookies</h2><!-- /wp:heading --><!-- wp:paragraph --><p><strong class=\"privacy-policy-tutorial\">Suggested text: </strong>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 &quot;Remember Me&quot;, 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 --><h2>Embedded content from other websites</h2><!-- /wp:heading --><!-- wp:paragraph --><p><strong class=\"privacy-policy-tutorial\">Suggested text: </strong>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 --><h2>Who we share your data with</h2><!-- /wp:heading --><!-- wp:paragraph --><p><strong class=\"privacy-policy-tutorial\">Suggested text: </strong>If you request a password reset, your IP address will be included in the reset email.</p><!-- /wp:paragraph --><!-- wp:heading --><h2>How long we retain your data</h2><!-- /wp:heading --><!-- wp:paragraph --><p><strong class=\"privacy-policy-tutorial\">Suggested text: </strong>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><strong class=\"privacy-policy-tutorial\">Suggested text: </strong>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 your data is sent</h2><!-- /wp:heading --><!-- wp:paragraph --><p><strong class=\"privacy-policy-tutorial\">Suggested text: </strong>Visitor comments may be checked through an automated spam detection service.</p><!-- /wp:paragraph -->','Privacy Policy','','draft','closed','open','','privacy-policy','','','2022-07-20 06:57:51','2022-07-20 06:57:51','',0,'https://farmchemie.yasithawd.com/?page_id=3',0,'page','',0),(4,0,'2022-07-20 07:17:55','2022-07-20 07:17:55','','woocommerce-placeholder','','inherit','open','closed','','woocommerce-placeholder','','','2022-07-20 07:17:55','2022-07-20 07:17:55','',0,'https://farmchemie.yasithawd.com/wp-content/uploads/2022/07/woocommerce-placeholder.png',0,'attachment','image/png',0),(5,1,'2022-07-20 07:17:56','2022-07-20 07:17:56','','Shop','','publish','closed','closed','','shop','','','2022-07-20 07:17:56','2022-07-20 07:17:56','',0,'https://farmchemie.yasithawd.com/shop/',0,'page','',0),(6,1,'2022-07-20 07:17:56','2022-07-20 07:17:56','<!-- wp:shortcode -->[woocommerce_cart]<!-- /wp:shortcode -->','Cart','','publish','closed','closed','','cart','','','2022-07-20 07:17:56','2022-07-20 07:17:56','',0,'https://farmchemie.yasithawd.com/cart/',0,'page','',0),(7,1,'2022-07-20 07:17:56','2022-07-20 07:17:56','<!-- wp:shortcode -->[woocommerce_checkout]<!-- /wp:shortcode -->','Checkout','','publish','closed','closed','','checkout','','','2022-07-20 07:17:56','2022-07-20 07:17:56','',0,'https://farmchemie.yasithawd.com/checkout/',0,'page','',0),(8,1,'2022-07-20 07:17:56','2022-07-20 07:17:56','<!-- wp:shortcode -->[woocommerce_my_account]<!-- /wp:shortcode -->','My account','','publish','closed','closed','','my-account','','','2022-07-20 07:17:56','2022-07-20 07:17:56','',0,'https://farmchemie.yasithawd.com/my-account/',0,'page','',0),(9,1,'2022-07-20 07:17:56','0000-00-00 00:00:00','<!-- wp:paragraph -->\n<p><b>This is a sample page.</b></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<h3>Overview</h3>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Our refund and returns policy lasts 30 days. If 30 days have passed since your purchase, we can’t offer you a full refund or exchange.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>To be eligible for a return, your item must be unused and in the same condition that you received it. It must also be in the original packaging.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Several types of goods are exempt from being returned. Perishable goods such as food, flowers, newspapers or magazines cannot be returned. We also do not accept products that are intimate or sanitary goods, hazardous materials, or flammable liquids or gases.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Additional non-returnable items:</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:list -->\n<ul>\n<li>Gift cards</li>\n<li>Downloadable software products</li>\n<li>Some health and personal care items</li>\n</ul>\n<!-- /wp:list -->\n\n<!-- wp:paragraph -->\n<p>To complete your return, we require a receipt or proof of purchase.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Please do not send your purchase back to the manufacturer.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>There are certain situations where only partial refunds are granted:</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:list -->\n<ul>\n<li>Book with obvious signs of use</li>\n<li>CD, DVD, VHS tape, software, video game, cassette tape, or vinyl record that has been opened.</li>\n<li>Any item not in its original condition, is damaged or missing parts for reasons not due to our error.</li>\n<li>Any item that is returned more than 30 days after delivery</li>\n</ul>\n<!-- /wp:list -->\n\n<!-- wp:paragraph -->\n<h2>Refunds</h2>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Once your return is received and inspected, we will send you an email to notify you that we have received your returned item. We will also notify you of the approval or rejection of your refund.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>If you are approved, then your refund will be processed, and a credit will automatically be applied to your credit card or original method of payment, within a certain amount of days.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<b>Late or missing refunds</b>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>If you haven’t received a refund yet, first check your bank account again.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Then contact your credit card company, it may take some time before your refund is officially posted.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Next contact your bank. There is often some processing time before a refund is posted.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>If you’ve done all of this and you still have not received your refund yet, please contact us at {email address}.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<b>Sale items</b>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Only regular priced items may be refunded. Sale items cannot be refunded.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<h2>Exchanges</h2>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>We only replace items if they are defective or damaged. If you need to exchange it for the same item, send us an email at {email address} and send your item to: {physical address}.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<h2>Gifts</h2>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>If the item was marked as a gift when purchased and shipped directly to you, you’ll receive a gift credit for the value of your return. Once the returned item is received, a gift certificate will be mailed to you.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>If the item wasn’t marked as a gift when purchased, or the gift giver had the order shipped to themselves to give to you later, we will send a refund to the gift giver and they will find out about your return.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<h2>Shipping returns</h2>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>To return your product, you should mail your product to: {physical address}.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>You will be responsible for paying for your own shipping costs for returning your item. Shipping costs are non-refundable. If you receive a refund, the cost of return shipping will be deducted from your refund.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Depending on where you live, the time it may take for your exchanged product to reach you may vary.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>If you are returning more expensive items, you may consider using a trackable shipping service or purchasing shipping insurance. We don’t guarantee that we will receive your returned item.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<h2>Need help?</h2>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Contact us at {email} for questions related to refunds and returns.</p>\n<!-- /wp:paragraph -->','Refund and Returns Policy','','draft','closed','closed','','refund_returns','','','2022-07-20 07:17:56','0000-00-00 00:00:00','',0,'https://farmchemie.yasithawd.com/?page_id=9',0,'page','',0),(3334,1,'2023-08-26 04:00:50','2023-08-26 04:00:50','','AVI-Prime_logo','','inherit','open','closed','','avi-prime_logo-2','','','2023-08-26 04:00:50','2023-08-26 04:00:50','',3331,'https://farmchemie.yasithawd.com/wp-content/uploads/2023/08/AVI-Prime_logo.png',0,'attachment','image/png',0),(12,1,'2022-08-10 10:21:19','2022-08-10 10:21:19','<label> Your name\n    [text* your-name] </label>\n\n<label> Your email\n    [email* your-email] </label>\n\n<label> Subject\n    [text* your-subject] </label>\n\n<label> Your message (optional)\n    [textarea your-message] </label>\n\n[submit \"Submit\"]\n[_site_title] \"[your-subject]\"\n[_site_title] <wordpress@farmchemie.yasithawd.com>\nFrom: [your-name] <[your-email]>\nSubject: [your-subject]\n\nMessage Body:\n[your-message]\n\n-- \nThis e-mail was sent from a contact form on [_site_title] ([_site_url])\n[_site_admin_email]\nReply-To: [your-email]\n\n0\n0\n\n[_site_title] \"[your-subject]\"\n[_site_title] <wordpress@farmchemie.yasithawd.com>\nMessage Body:\n[your-message]\n\n-- \nThis e-mail was sent from a contact form on [_site_title] ([_site_url])\n[your-email]\nReply-To: [_site_admin_email]\n\n0\n0\nThank you for your message. It has been sent.\nThere was an error trying to send your message. Please try again later.\nOne or more fields have an error. Please check and try again.\nThere was an error trying to send your message. Please try again later.\nYou must accept the terms and conditions before sending your message.\nPlease fill out this field.\nThis field has a too long input.\nThis field has a too short input.\nThere was an unknown error uploading the file.\nYou are not allowed to upload files of this type.\nThe uploaded file is too large.\nThere was an error uploading the file.','Contact form 1','','publish','closed','closed','','contact-form-1','','','2022-08-10 10:21:19','2022-08-10 10:21:19','',0,'https://farmchemie.yasithawd.com/?post_type=wpcf7_contact_form&p=12',0,'wpcf7_contact_form','',0),(3337,1,'2023-08-26 07:34:57','2023-08-26 07:34:57','<p>[vc_row][vc_column][ult_tab_element tab_style=\"Style_3\" tab_background_color=\"#039447\" tab_hover_background_color=\"#039447\" acttab_background=\"#782d88\" disp_icon=\"Disables\" main_title_typograpy=\"\" main_desc_typograpy=\"\"][single_tab title=\"Tab 1\" tab_id=\"1693035214365-3\"][/single_tab][single_tab title=\"Tab 2\" tab_id=\"1693035214368-9\"][/single_tab][/ult_tab_element][/vc_column][/vc_row]</p>\r\n','AllProducts','','inherit','closed','closed','','3335-revision-v1','','','2023-08-26 07:34:57','2023-08-26 07:34:57','',3335,'https://farmchemie.yasithawd.com/?p=3337',0,'revision','',0),(3333,1,'2023-08-26 04:00:40','2023-08-26 04:00:40','','AVI Prime Brochure Final_compressed','','inherit','open','closed','','avi-prime-brochure-final_compressed','','','2023-08-26 04:00:40','2023-08-26 04:00:40','',0,'https://farmchemie.yasithawd.com/wp-content/uploads/2023/08/AVI-Prime-Brochure-Final_compressed.pdf',0,'attachment','application/pdf',0),(3213,1,'2023-08-16 12:12:13','2023-08-16 12:12:13','','Medivesta-Banner (1)','','inherit','open','closed','','medivesta-banner-1','','','2023-08-16 12:12:13','2023-08-16 12:12:13','',2990,'https://farmchemie.yasithawd.com/wp-content/uploads/2023/08/Medivesta-Banner-1.png',0,'attachment','image/png',0),(3123,1,'2023-08-14 07:20:04','2023-08-14 07:20:04','[vc_row full_width=\"stretch_row\" css=\".vc_custom_1689577528817{padding-bottom: 50px !important;}\"][vc_column css=\".vc_custom_1689577454678{margin-bottom: 50px !important;}\"][vc_row_inner css=\".vc_custom_1689577559805{border-bottom-width: 1px !important;padding-top: 35px !important;padding-bottom: 35px !important;border-bottom-color: #079547 !important;border-bottom-style: solid !important;border-radius: 1px !important;}\"][vc_column_inner width=\"2/3\"][ultimate_heading main_heading=\"Feed Additives\" heading_tag=\"h3\" main_heading_color=\"#079547\" sub_heading_color=\"#792c8a\" alignment=\"left\"]<strong>Premixes/ Specialty Feed Additives/ Dilution of Active Ingredients/ Concentrates</strong><strong>\r\n</strong>Pack sizes – 1,000 kg, 500 kg, 50 kg, 25 kg, 15 kg, 10 kg, 5 kg, 1kg[/ultimate_heading][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_single_image][/vc_column_inner][/vc_row_inner][vc_row_inner css=\".vc_custom_1689577609020{border-bottom-width: 1px !important;padding-top: 35px !important;padding-bottom: 35px !important;border-bottom-color: #079547 !important;border-bottom-style: solid !important;border-radius: 1px !important;}\"][vc_column_inner width=\"1/3\"][vc_single_image][/vc_column_inner][vc_column_inner width=\"2/3\"][ultimate_heading main_heading=\"Oral Supplements\" heading_tag=\"h3\" main_heading_color=\"#079547\" sub_heading_color=\"#792c8a\" alignment=\"left\"]<strong>Liquids</strong><strong>\r\n</strong>Pack sizes – 1,000 L, 250 L, 50 L, 25 L, 5 L, 1 L, 500 mL, 250 mL, 100 mL, 50 mL\r\n\r\n<strong>Water soluble powders</strong><strong>\r\n</strong>Pack sizes – 25 kg, 15 kg, 10 kg, 5 kg, 1kg[/ultimate_heading][/vc_column_inner][/vc_row_inner][vc_row_inner css=\".vc_custom_1689577609020{border-bottom-width: 1px !important;padding-top: 35px !important;padding-bottom: 35px !important;border-bottom-color: #079547 !important;border-bottom-style: solid !important;border-radius: 1px !important;}\"][vc_column_inner width=\"2/3\"][ultimate_heading main_heading=\"Tablets\" heading_tag=\"h3\" main_heading_color=\"#079547\" sub_heading_color=\"#792c8a\" alignment=\"left\"]<strong>Supplementary tablets for pet care</strong>\r\nTablet sizes – 1 to 5 g\r\n\r\n<strong>Boluses</strong><strong>\r\n</strong>Tablet sizes – 5 to 25 g[/ultimate_heading][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_single_image][/vc_column_inner][/vc_row_inner][vc_row_inner css=\".vc_custom_1689577609020{border-bottom-width: 1px !important;padding-top: 35px !important;padding-bottom: 35px !important;border-bottom-color: #079547 !important;border-bottom-style: solid !important;border-radius: 1px !important;}\"][vc_column_inner width=\"1/3\"][vc_single_image][/vc_column_inner][vc_column_inner width=\"2/3\"][ultimate_heading main_heading=\"Veterinary Pharmaceuticals\" heading_tag=\"h3\" main_heading_color=\"#079547\" sub_heading_color=\"#792c8a\" alignment=\"left\"]<strong>Deworming Solutions/ Antibiotics/ Antimicrobials/ Wound care solutions</strong><strong>\r\n</strong>Form – Liquid, WSP[/ultimate_heading][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row css=\".vc_custom_1689578783264{padding-top: 50px !important;padding-bottom: 50px !important;}\"][vc_column][ultimate_heading main_heading=\"Our manufacturing facility is certified with FAMI-QS, WHO GMP &amp; ISO 9001:2015 International Quality standards.\" main_heading_color=\"#079547\" sub_heading_color=\"#792c8a\" alignment=\"left\"]We select only the <strong><em>best</em></strong> and <strong><em>most reputed</em></strong> Raw Material &amp; Packing Material Suppliers for the production of our finished goods.[/ultimate_heading][vc_row_inner equal_height=\"yes\" content_placement=\"middle\"][vc_column_inner width=\"1/5\" offset=\"vc_hidden-lg vc_hidden-md\"][vc_single_image image=\"3062\" img_size=\"full\" alignment=\"center\"][/vc_column_inner][vc_column_inner width=\"1/5\" css=\".vc_custom_1691846530645{border-right-width: 1px !important;border-left-width: 1px !important;border-left-color: #000000 !important;border-left-style: solid !important;border-right-color: #000000 !important;border-right-style: solid !important;border-radius: 1px !important;}\" offset=\"vc_hidden-lg vc_hidden-md\"][vc_single_image image=\"3063\" img_size=\"full\" alignment=\"center\"][/vc_column_inner][vc_column_inner width=\"1/5\" offset=\"vc_hidden-lg vc_hidden-md\"][vc_single_image image=\"3064\" img_size=\"full\" alignment=\"center\"][/vc_column_inner][vc_column_inner width=\"1/5\" css=\".vc_custom_1691846545469{border-right-width: 1px !important;border-left-width: 1px !important;border-left-color: #000000 !important;border-left-style: solid !important;border-right-color: #000000 !important;border-right-style: solid !important;border-radius: 1px !important;}\" offset=\"vc_hidden-lg vc_hidden-md\"][vc_single_image image=\"3065\" img_size=\"full\" alignment=\"center\"][/vc_column_inner][vc_column_inner width=\"1/5\" offset=\"vc_hidden-lg vc_hidden-md\"][vc_single_image image=\"3066\" img_size=\"full\" alignment=\"center\"][/vc_column_inner][/vc_row_inner][vc_row_inner equal_height=\"yes\" content_placement=\"middle\"][vc_column_inner width=\"1/4\" css=\".vc_custom_1691846563021{border-right-width: 1px !important;border-right-color: #000000 !important;border-right-style: solid !important;border-radius: 1px !important;}\" offset=\"vc_hidden-lg vc_hidden-md\"][vc_single_image image=\"3067\" img_size=\"full\" alignment=\"center\"][/vc_column_inner][vc_column_inner width=\"1/4\" css=\".vc_custom_1691846569845{border-right-width: 1px !important;border-right-color: #000000 !important;border-right-style: solid !important;border-radius: 1px !important;}\" offset=\"vc_hidden-lg vc_hidden-md\"][vc_single_image image=\"3068\" img_size=\"full\" alignment=\"center\"][/vc_column_inner][vc_column_inner width=\"1/4\" css=\".vc_custom_1691846576949{border-right-width: 1px !important;border-right-color: #000000 !important;border-right-style: solid !important;border-radius: 1px !important;}\" offset=\"vc_hidden-lg vc_hidden-md\"][vc_single_image image=\"3069\" img_size=\"full\" alignment=\"center\"][/vc_column_inner][vc_column_inner width=\"1/4\" offset=\"vc_hidden-lg vc_hidden-md\"][vc_single_image image=\"3070\" img_size=\"full\" alignment=\"center\"][/vc_column_inner][/vc_row_inner][vc_row_inner disable_element=\"yes\"][vc_column_inner width=\"1/3\"][vc_single_image image=\"2981\" img_size=\"full\"][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_single_image image=\"2982\" img_size=\"full\"][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_single_image image=\"2983\" img_size=\"full\"][/vc_column_inner][/vc_row_inner][vc_row_inner disable_element=\"yes\"][vc_column_inner width=\"1/6\"][/vc_column_inner][vc_column_inner width=\"2/3\"][vc_single_image image=\"2984\" img_size=\"full\"][/vc_column_inner][vc_column_inner width=\"1/6\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row full_width=\"stretch_row_content_no_spaces\"][vc_column offset=\"vc_hidden-sm vc_hidden-xs\"][vc_single_image image=\"3120\" img_size=\"full\" alignment=\"center\"][/vc_column][/vc_row][vc_row css=\".vc_custom_1689578794814{padding-top: 50px !important;padding-bottom: 50px !important;}\"][vc_column][ultimate_heading main_heading=\"Supplier selection and procurement criteria\" main_heading_color=\"#079547\" sub_heading_color=\"#792c8a\" alignment=\"left\"][/ultimate_heading][vc_row_inner css=\".vc_custom_1689578812611{margin-top: 50px !important;}\"][vc_column_inner width=\"1/2\"][dt_vc_list dividers=\"false\"]\r\n<ul>\r\n 	<li>Check supplier’s quality certification to ensure raw material quality</li>\r\n 	<li>New vendor validation protocol - In case of a change in the supplier, obtain samples and validate in the lab</li>\r\n</ul>\r\n[/dt_vc_list][/vc_column_inner][vc_column_inner width=\"1/2\"][dt_vc_list dividers=\"false\"]\r\n<ul>\r\n 	<li>Income inspection carried out on every consignment (Tested for Chemical Assay &amp; Physical Properties)</li>\r\n 	<li>Quality department approval required to be used in the production</li>\r\n</ul>\r\n[/dt_vc_list][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row css=\".vc_custom_1689578794814{padding-top: 50px !important;padding-bottom: 50px !important;}\"][vc_column][ultimate_heading main_heading=\"Please contact us to start your Marketing Journey with a reliable manufacturing partnership with FARMCHEMIE\" heading_tag=\"h3\" main_heading_color=\"#079547\" sub_heading_color=\"#792c8a\" alignment=\"left\"][/ultimate_heading][vc_row_inner css=\".vc_custom_1689578812611{margin-top: 50px !important;}\"][vc_column_inner width=\"1/2\"][bsf-info-box icon_size=\"32\" title=\"International Markets\" pos=\"square_box\" box_border_style=\"solid\" box_border_width=\"1\" box_border_color=\"#792c8a\" title_font_color=\"#079547\" desc_font_color=\"#792c8a\" title_font_size=\"desktop:25px;\"]<strong>Email :</strong> <a href=\"mailto:sales.export@farmchemie.com\"><u>sales.export@farmchemie.com</u></a>\r\n<strong>Tel No :</strong> + 94 76 577 2975[/bsf-info-box][/vc_column_inner][vc_column_inner width=\"1/2\"][bsf-info-box icon_size=\"32\" title=\"Sri Lankan Market\" pos=\"square_box\" box_border_style=\"solid\" box_border_width=\"1\" box_border_color=\"#079547\" title_font_color=\"#079547\" desc_font_color=\"#792c8a\" title_font_size=\"desktop:25px;\"]Email : <a href=\"mailto:sales.local@farmchemie.com\"><u>sales.local@farmchemie.com</u></a>\r\nTel No : +94 74 224 6947[/bsf-info-box][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row]','Manufacturing','','inherit','closed','closed','','2964-revision-v1','','','2023-08-14 07:20:04','2023-08-14 07:20:04','',2964,'https://farmchemie.yasithawd.com/?p=3123',0,'revision','',0),(39,1,'2023-09-11 10:41:48','2022-08-18 15:48:17','','Contact Us','','publish','closed','closed','','contact-us','','','2023-09-11 10:41:48','2023-09-11 10:41:48','',0,'https://farmchemie.yasithawd.com/?p=39',15,'nav_menu_item','',0),(2911,1,'2023-09-11 10:41:48','2023-05-24 09:42:39',' ','','','publish','closed','closed','','2911','','','2023-09-11 10:41:48','2023-09-11 10:41:48','',0,'https://farmchemie.yasithawd.com/?p=2911',1,'nav_menu_item','',0),(2964,1,'2023-07-17 06:24:01','2023-07-17 06:24:01','[vc_row full_width=\"stretch_row\" css=\".vc_custom_1689577528817{padding-bottom: 50px !important;}\"][vc_column css=\".vc_custom_1689577454678{margin-bottom: 50px !important;}\"][vc_row_inner css=\".vc_custom_1692407941633{border-bottom-width: 1px !important;border-bottom-color: #079547 !important;border-bottom-style: solid !important;border-radius: 1px !important;}\"][vc_column_inner width=\"1/2\" offset=\"vc_hidden-xs\"][ult_animation_block animation=\"fadeInLeftBig\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][ultimate_heading main_heading=\"Feed Additives\" heading_tag=\"h3\" main_heading_color=\"#079547\" sub_heading_color=\"#792c8a\" alignment=\"right\"]<strong>Premixes/ Specialty Feed Additives/ Dilution of Active Ingredients/ Concentrates</strong><strong>\r\n</strong>Pack sizes – 1,000 kg, 500 kg, 50 kg, 25 kg, 15 kg, 10 kg, 5 kg, 1kg[/ultimate_heading][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/2\" offset=\"vc_hidden-xs\"][vc_single_image image=\"3129\" img_size=\"full\" css_animation=\"fadeInRightBig\"][/vc_column_inner][/vc_row_inner][vc_row_inner css=\".vc_custom_1692407941633{border-bottom-width: 1px !important;border-bottom-color: #079547 !important;border-bottom-style: solid !important;border-radius: 1px !important;}\"][vc_column_inner width=\"1/2\" offset=\"vc_hidden-lg vc_hidden-md vc_hidden-sm\"][vc_single_image image=\"3129\" img_size=\"full\" css_animation=\"fadeInRightBig\"][/vc_column_inner][vc_column_inner width=\"1/2\" offset=\"vc_hidden-lg vc_hidden-md vc_hidden-sm\"][ult_animation_block animation=\"fadeInLeftBig\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][ultimate_heading main_heading=\"Feed Additives\" heading_tag=\"h3\" main_heading_color=\"#079547\" sub_heading_color=\"#792c8a\" alignment=\"right\"]<strong>Premixes/ Specialty Feed Additives/ Dilution of Active Ingredients/ Concentrates</strong><strong>\r\n</strong>Pack sizes – 1,000 kg, 500 kg, 50 kg, 25 kg, 15 kg, 10 kg, 5 kg, 1kg[/ultimate_heading][/ult_animation_block][/vc_column_inner][/vc_row_inner][vc_row_inner css=\".vc_custom_1692407949383{border-bottom-width: 1px !important;border-bottom-color: #079547 !important;border-bottom-style: solid !important;border-radius: 1px !important;}\"][vc_column_inner width=\"1/2\"][vc_single_image image=\"3401\" img_size=\"full\" css_animation=\"fadeInLeftBig\"][/vc_column_inner][vc_column_inner width=\"1/2\"][ult_animation_block animation=\"fadeInRightBig\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][ultimate_heading main_heading=\"Oral Supplements\" heading_tag=\"h3\" main_heading_color=\"#079547\" sub_heading_color=\"#792c8a\" alignment=\"left\"]<strong>Liquids</strong><strong>\r\n</strong>Pack sizes – 1,000 L, 250 L, 50 L, 25 L, 5 L, 1 L, 500 mL, 250 mL, 100 mL, 50 mL\r\n\r\n<strong>Water soluble powders</strong><strong>\r\n</strong>Pack sizes – 25 kg, 15 kg, 10 kg, 5 kg, 1kg[/ultimate_heading][/ult_animation_block][/vc_column_inner][/vc_row_inner][vc_row_inner css=\".vc_custom_1692407957943{border-bottom-width: 1px !important;border-bottom-color: #079547 !important;border-bottom-style: solid !important;border-radius: 1px !important;}\"][vc_column_inner width=\"1/2\" offset=\"vc_hidden-xs\"][ult_animation_block animation=\"fadeInLeftBig\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][ultimate_heading main_heading=\"Tablets\" heading_tag=\"h3\" main_heading_color=\"#079547\" sub_heading_color=\"#792c8a\" alignment=\"right\"]<strong>Supplementary tablets for pet care</strong>\r\nTablet sizes – 1 to 5 g\r\n\r\n<strong>Boluses</strong><strong>\r\n</strong>Tablet sizes – 5 to 25 g[/ultimate_heading][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/2\" offset=\"vc_hidden-xs\"][vc_single_image image=\"3400\" img_size=\"full\" css_animation=\"fadeInRightBig\"][/vc_column_inner][/vc_row_inner][vc_row_inner css=\".vc_custom_1692407957943{border-bottom-width: 1px !important;border-bottom-color: #079547 !important;border-bottom-style: solid !important;border-radius: 1px !important;}\"][vc_column_inner width=\"1/2\" offset=\"vc_hidden-lg vc_hidden-md vc_hidden-sm\"][vc_single_image image=\"3400\" img_size=\"full\" css_animation=\"fadeInRightBig\"][/vc_column_inner][vc_column_inner width=\"1/2\" offset=\"vc_hidden-lg vc_hidden-md vc_hidden-sm\"][ult_animation_block animation=\"fadeInLeftBig\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][ultimate_heading main_heading=\"Tablets\" heading_tag=\"h3\" main_heading_color=\"#079547\" sub_heading_color=\"#792c8a\" alignment=\"right\"]<strong>Supplementary tablets for pet care</strong>\r\nTablet sizes – 1 to 5 g\r\n\r\n<strong>Boluses</strong><strong>\r\n</strong>Tablet sizes – 5 to 25 g[/ultimate_heading][/ult_animation_block][/vc_column_inner][/vc_row_inner][vc_row_inner css=\".vc_custom_1692407970279{border-bottom-width: 1px !important;border-bottom-color: #079547 !important;border-bottom-style: solid !important;border-radius: 1px !important;}\"][vc_column_inner width=\"1/2\"][vc_single_image image=\"3399\" img_size=\"full\" css_animation=\"fadeInLeftBig\"][/vc_column_inner][vc_column_inner width=\"1/2\"][ult_animation_block animation=\"fadeInRightBig\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][ultimate_heading main_heading=\"Veterinary Pharmaceuticals\" heading_tag=\"h3\" main_heading_color=\"#079547\" sub_heading_color=\"#792c8a\" alignment=\"left\"]<strong>Deworming Solutions/ Antibiotics/ Antimicrobials/ Wound care solutions</strong><strong>\r\n</strong>Form – Liquid, WSP[/ultimate_heading][/ult_animation_block][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row full_width=\"stretch_row_content\" css=\".vc_custom_1693451731079{padding-top: 50px !important;padding-bottom: 50px !important;}\"][vc_column][ultimate_heading main_heading=\"Our manufacturing facility is certified with FAMI-QS, WHO GMP &amp; ISO 9001:2015 International Quality standards.\" main_heading_color=\"#079547\" sub_heading_color=\"#792c8a\"]We select only the <strong><em>best</em></strong> and <strong><em>most reputed</em></strong> Raw Material &amp; Packing Material Suppliers for the production of our finished goods.[/ultimate_heading][vc_row_inner equal_height=\"yes\" content_placement=\"middle\"][vc_column_inner width=\"1/5\" offset=\"vc_hidden-lg vc_hidden-md\"][vc_single_image image=\"3062\" img_size=\"full\" alignment=\"center\"][/vc_column_inner][vc_column_inner width=\"1/5\" css=\".vc_custom_1691846530645{border-right-width: 1px !important;border-left-width: 1px !important;border-left-color: #000000 !important;border-left-style: solid !important;border-right-color: #000000 !important;border-right-style: solid !important;border-radius: 1px !important;}\" offset=\"vc_hidden-lg vc_hidden-md\"][vc_single_image image=\"3063\" img_size=\"full\" alignment=\"center\"][/vc_column_inner][vc_column_inner width=\"1/5\" offset=\"vc_hidden-lg vc_hidden-md\"][vc_single_image image=\"3064\" img_size=\"full\" alignment=\"center\"][/vc_column_inner][vc_column_inner width=\"1/5\" css=\".vc_custom_1691846545469{border-right-width: 1px !important;border-left-width: 1px !important;border-left-color: #000000 !important;border-left-style: solid !important;border-right-color: #000000 !important;border-right-style: solid !important;border-radius: 1px !important;}\" offset=\"vc_hidden-lg vc_hidden-md\"][vc_single_image image=\"3065\" img_size=\"full\" alignment=\"center\"][/vc_column_inner][vc_column_inner width=\"1/5\" offset=\"vc_hidden-lg vc_hidden-md\"][vc_single_image image=\"3066\" img_size=\"full\" alignment=\"center\"][/vc_column_inner][/vc_row_inner][vc_row_inner equal_height=\"yes\" content_placement=\"middle\"][vc_column_inner width=\"1/4\" css=\".vc_custom_1691846563021{border-right-width: 1px !important;border-right-color: #000000 !important;border-right-style: solid !important;border-radius: 1px !important;}\" offset=\"vc_hidden-lg vc_hidden-md\"][vc_single_image image=\"3067\" img_size=\"full\" alignment=\"center\"][/vc_column_inner][vc_column_inner width=\"1/4\" css=\".vc_custom_1691846569845{border-right-width: 1px !important;border-right-color: #000000 !important;border-right-style: solid !important;border-radius: 1px !important;}\" offset=\"vc_hidden-lg vc_hidden-md\"][vc_single_image image=\"3068\" img_size=\"full\" alignment=\"center\"][/vc_column_inner][vc_column_inner width=\"1/4\" css=\".vc_custom_1691846576949{border-right-width: 1px !important;border-right-color: #000000 !important;border-right-style: solid !important;border-radius: 1px !important;}\" offset=\"vc_hidden-lg vc_hidden-md\"][vc_single_image image=\"3069\" img_size=\"full\" alignment=\"center\"][/vc_column_inner][vc_column_inner width=\"1/4\" offset=\"vc_hidden-lg vc_hidden-md\"][vc_single_image image=\"3070\" img_size=\"full\" alignment=\"center\"][/vc_column_inner][/vc_row_inner][vc_row_inner disable_element=\"yes\"][vc_column_inner width=\"1/3\"][vc_single_image image=\"2981\" img_size=\"full\"][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_single_image image=\"2982\" img_size=\"full\"][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_single_image image=\"2983\" img_size=\"full\"][/vc_column_inner][/vc_row_inner][vc_row_inner disable_element=\"yes\"][vc_column_inner width=\"1/6\"][/vc_column_inner][vc_column_inner width=\"2/3\"][vc_single_image image=\"2984\" img_size=\"full\"][/vc_column_inner][vc_column_inner width=\"1/6\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row full_width=\"stretch_row_content_no_spaces\"][vc_column offset=\"vc_hidden-sm vc_hidden-xs\"][vc_single_image image=\"3120\" img_size=\"full\" alignment=\"center\"][/vc_column][/vc_row][vc_row css=\".vc_custom_1689578794814{padding-top: 50px !important;padding-bottom: 50px !important;}\"][vc_column][ultimate_heading main_heading=\"Supplier selection and procurement criteria\" main_heading_color=\"#079547\" sub_heading_color=\"#792c8a\" margin_design_tab_text=\"\"][/ultimate_heading][vc_row_inner css=\".vc_custom_1689578812611{margin-top: 50px !important;}\"][vc_column_inner width=\"1/2\"][dt_vc_list dividers=\"false\"]\r\n<ul>\r\n 	<li>Check supplier’s quality certification to ensure raw material quality</li>\r\n 	<li>New vendor validation protocol - In case of a change in the supplier, obtain samples and validate in the lab</li>\r\n</ul>\r\n[/dt_vc_list][/vc_column_inner][vc_column_inner width=\"1/2\"][dt_vc_list dividers=\"false\"]\r\n<ul>\r\n 	<li>Income inspection carried out on every consignment (Tested for Chemical Assay &amp; Physical Properties)</li>\r\n 	<li>Quality department approval required to be used in the production</li>\r\n</ul>\r\n[/dt_vc_list][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row css=\".vc_custom_1689578794814{padding-top: 50px !important;padding-bottom: 50px !important;}\"][vc_column][ultimate_heading main_heading=\"Please contact us to start your Marketing Journey with a reliable manufacturing partnership with FARMCHEMIE\" heading_tag=\"h3\" main_heading_color=\"#079547\" sub_heading_color=\"#792c8a\" margin_design_tab_text=\"\"][/ultimate_heading][/vc_column][/vc_row][vc_row full_width=\"stretch_row_content\" equal_height=\"yes\" content_placement=\"middle\"][vc_column width=\"1/2\" css=\".vc_custom_1693569503225{background-image: url(https://farmchemie.yasithawd.com/wp-content/uploads/2023/09/022International-Markets-Sri-Lankan-Market.png?id=3403) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\"][vc_empty_space height=\"400px\"][/vc_column][vc_column width=\"1/2\" css=\".vc_custom_1693540250450{background-color: #8d499b !important;}\"][ultimate_heading main_heading=\"Sri Lankan Markets\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" main_heading_margin=\"margin-bottom:35px;\" sub_heading_margin=\"margin-bottom:10px;\"]Email : <a href=\"mailto:sales.import@farmchemie.com\">sales.import@farmchemie.com</a>\r\nTel No : + 94 76 577 2975[/ultimate_heading][vc_btn title=\"Read More\" style=\"outline-custom\" outline_custom_color=\"#ffffff\" outline_custom_hover_background=\"#039447\" outline_custom_hover_text=\"#ffffff\" shape=\"round\" align=\"center\"][/vc_column][/vc_row][vc_row full_width=\"stretch_row_content\" equal_height=\"yes\" rtl_reverse=\"yes\" content_placement=\"middle\"][vc_column width=\"1/2\" css=\".vc_custom_1695529397280{background-color: #039447 !important;}\" offset=\"vc_hidden-xs\"][ultimate_heading main_heading=\"International Markets\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" el_class=\"whitetxt\" main_heading_margin=\"margin-bottom:35px;\" sub_heading_margin=\"margin-bottom:10px;\"]Email : <a href=\"mailto:sales.export@farmchemie.com\">sales.export@farmchemie.com</a>\r\nTel No : + 94 76 577 2975[/ultimate_heading][vc_btn title=\"Read More\" style=\"outline-custom\" outline_custom_color=\"#ffffff\" outline_custom_hover_background=\"#8d499b\" outline_custom_hover_text=\"#ffffff\" shape=\"round\" align=\"center\"][/vc_column][vc_column width=\"1/2\" css=\".vc_custom_1695529390186{background-image: url(https://farmchemie.yasithawd.com/wp-content/uploads/2023/09/011International-Markets-Sri-Lankan-Market.png?id=3404) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\" offset=\"vc_hidden-xs\"][vc_empty_space height=\"400px\"][/vc_column][/vc_row][vc_row full_width=\"stretch_row_content\" equal_height=\"yes\" rtl_reverse=\"yes\" content_placement=\"middle\"][vc_column width=\"1/2\" css=\".vc_custom_1695529365330{background-image: url(https://farmchemie.yasithawd.com/wp-content/uploads/2023/09/011International-Markets-Sri-Lankan-Market.png?id=3404) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\" offset=\"vc_hidden-lg vc_hidden-md vc_hidden-sm\"][vc_empty_space height=\"400px\"][/vc_column][vc_column width=\"1/2\" css=\".vc_custom_1695529378241{background-color: #039447 !important;}\" offset=\"vc_hidden-lg vc_hidden-md vc_hidden-sm\"][ultimate_heading main_heading=\"International Markets\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" el_class=\"whitetxt\" main_heading_margin=\"margin-bottom:35px;\" sub_heading_margin=\"margin-bottom:10px;\"]Email : <a href=\"mailto:sales.export@farmchemie.com\">sales.export@farmchemie.com</a>\r\nTel No : + 94 76 577 2975[/ultimate_heading][vc_btn title=\"Read More\" style=\"outline-custom\" outline_custom_color=\"#ffffff\" outline_custom_hover_background=\"#8d499b\" outline_custom_hover_text=\"#ffffff\" shape=\"round\" align=\"center\"][/vc_column][/vc_row]','Manufacturing','','publish','closed','closed','','manufacturing','','','2023-09-24 05:29:12','2023-09-24 05:29:12','',0,'https://farmchemie.yasithawd.com/?page_id=2964',0,'page','',0),(40,1,'2022-08-18 15:56:39','2022-08-18 15:56:39','','Global Products','','publish','closed','closed','','global-products','','','2022-08-18 15:56:39','2022-08-18 15:56:39','',0,'https://farmchemie.yasithawd.com/?page_id=40',0,'page','',0),(41,1,'2022-08-18 15:56:39','2022-08-18 15:56:39','','Global Products','','inherit','closed','closed','','40-revision-v1','','','2022-08-18 15:56:39','2022-08-18 15:56:39','',40,'https://farmchemie.yasithawd.com/?p=41',0,'revision','',0),(3122,1,'2023-08-14 07:16:52','2023-08-14 07:16:52','[vc_row full_width=\"stretch_row\" css=\".vc_custom_1689577528817{padding-bottom: 50px !important;}\"][vc_column css=\".vc_custom_1689577454678{margin-bottom: 50px !important;}\"][vc_row_inner css=\".vc_custom_1689577559805{border-bottom-width: 1px !important;padding-top: 35px !important;padding-bottom: 35px !important;border-bottom-color: #079547 !important;border-bottom-style: solid !important;border-radius: 1px !important;}\"][vc_column_inner width=\"2/3\"][ultimate_heading main_heading=\"Feed Additives\" heading_tag=\"h3\" main_heading_color=\"#079547\" sub_heading_color=\"#792c8a\" alignment=\"left\"]<strong>Premixes/ Specialty Feed Additives/ Dilution of Active Ingredients/ Concentrates</strong><strong>\r\n</strong>Pack sizes – 1,000 kg, 500 kg, 50 kg, 25 kg, 15 kg, 10 kg, 5 kg, 1kg[/ultimate_heading][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_single_image][/vc_column_inner][/vc_row_inner][vc_row_inner css=\".vc_custom_1689577609020{border-bottom-width: 1px !important;padding-top: 35px !important;padding-bottom: 35px !important;border-bottom-color: #079547 !important;border-bottom-style: solid !important;border-radius: 1px !important;}\"][vc_column_inner width=\"1/3\"][vc_single_image][/vc_column_inner][vc_column_inner width=\"2/3\"][ultimate_heading main_heading=\"Oral Supplements\" heading_tag=\"h3\" main_heading_color=\"#079547\" sub_heading_color=\"#792c8a\" alignment=\"left\"]<strong>Liquids</strong><strong>\r\n</strong>Pack sizes – 1,000 L, 250 L, 50 L, 25 L, 5 L, 1 L, 500 mL, 250 mL, 100 mL, 50 mL\r\n\r\n<strong>Water soluble powders</strong><strong>\r\n</strong>Pack sizes – 25 kg, 15 kg, 10 kg, 5 kg, 1kg[/ultimate_heading][/vc_column_inner][/vc_row_inner][vc_row_inner css=\".vc_custom_1689577609020{border-bottom-width: 1px !important;padding-top: 35px !important;padding-bottom: 35px !important;border-bottom-color: #079547 !important;border-bottom-style: solid !important;border-radius: 1px !important;}\"][vc_column_inner width=\"2/3\"][ultimate_heading main_heading=\"Tablets\" heading_tag=\"h3\" main_heading_color=\"#079547\" sub_heading_color=\"#792c8a\" alignment=\"left\"]<strong>Supplementary tablets for pet care</strong>\r\nTablet sizes – 1 to 5 g\r\n\r\n<strong>Boluses</strong><strong>\r\n</strong>Tablet sizes – 5 to 25 g[/ultimate_heading][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_single_image][/vc_column_inner][/vc_row_inner][vc_row_inner css=\".vc_custom_1689577609020{border-bottom-width: 1px !important;padding-top: 35px !important;padding-bottom: 35px !important;border-bottom-color: #079547 !important;border-bottom-style: solid !important;border-radius: 1px !important;}\"][vc_column_inner width=\"1/3\"][vc_single_image][/vc_column_inner][vc_column_inner width=\"2/3\"][ultimate_heading main_heading=\"Veterinary Pharmaceuticals\" heading_tag=\"h3\" main_heading_color=\"#079547\" sub_heading_color=\"#792c8a\" alignment=\"left\"]<strong>Deworming Solutions/ Antibiotics/ Antimicrobials/ Wound care solutions</strong><strong>\r\n</strong>Form – Liquid, WSP[/ultimate_heading][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row css=\".vc_custom_1689578783264{padding-top: 50px !important;padding-bottom: 50px !important;}\"][vc_column][ultimate_heading main_heading=\"Our manufacturing facility is certified with FAMI-QS, WHO GMP &amp; ISO 9001:2015 International Quality standards.\" main_heading_color=\"#079547\" sub_heading_color=\"#792c8a\" alignment=\"left\"]We select only the <strong><em>best</em></strong> and <strong><em>most reputed</em></strong> Raw Material &amp; Packing Material Suppliers for the production of our finished goods.[/ultimate_heading][vc_row_inner equal_height=\"yes\" content_placement=\"middle\"][vc_column_inner width=\"1/5\" offset=\"vc_hidden-lg vc_hidden-md\"][vc_single_image image=\"3062\" img_size=\"full\" alignment=\"center\"][/vc_column_inner][vc_column_inner width=\"1/5\" css=\".vc_custom_1691846530645{border-right-width: 1px !important;border-left-width: 1px !important;border-left-color: #000000 !important;border-left-style: solid !important;border-right-color: #000000 !important;border-right-style: solid !important;border-radius: 1px !important;}\" offset=\"vc_hidden-lg vc_hidden-md\"][vc_single_image image=\"3063\" img_size=\"full\" alignment=\"center\"][/vc_column_inner][vc_column_inner width=\"1/5\" offset=\"vc_hidden-lg vc_hidden-md\"][vc_single_image image=\"3064\" img_size=\"full\" alignment=\"center\"][/vc_column_inner][vc_column_inner width=\"1/5\" css=\".vc_custom_1691846545469{border-right-width: 1px !important;border-left-width: 1px !important;border-left-color: #000000 !important;border-left-style: solid !important;border-right-color: #000000 !important;border-right-style: solid !important;border-radius: 1px !important;}\" offset=\"vc_hidden-lg vc_hidden-md\"][vc_single_image image=\"3065\" img_size=\"full\" alignment=\"center\"][/vc_column_inner][vc_column_inner width=\"1/5\" offset=\"vc_hidden-lg vc_hidden-md\"][vc_single_image image=\"3066\" img_size=\"full\" alignment=\"center\"][/vc_column_inner][/vc_row_inner][vc_row_inner equal_height=\"yes\" content_placement=\"middle\"][vc_column_inner width=\"1/4\" css=\".vc_custom_1691846563021{border-right-width: 1px !important;border-right-color: #000000 !important;border-right-style: solid !important;border-radius: 1px !important;}\" offset=\"vc_hidden-lg vc_hidden-md\"][vc_single_image image=\"3067\" img_size=\"full\" alignment=\"center\"][/vc_column_inner][vc_column_inner width=\"1/4\" css=\".vc_custom_1691846569845{border-right-width: 1px !important;border-right-color: #000000 !important;border-right-style: solid !important;border-radius: 1px !important;}\" offset=\"vc_hidden-lg vc_hidden-md\"][vc_single_image image=\"3068\" img_size=\"full\" alignment=\"center\"][/vc_column_inner][vc_column_inner width=\"1/4\" css=\".vc_custom_1691846576949{border-right-width: 1px !important;border-right-color: #000000 !important;border-right-style: solid !important;border-radius: 1px !important;}\" offset=\"vc_hidden-lg vc_hidden-md\"][vc_single_image image=\"3069\" img_size=\"full\" alignment=\"center\"][/vc_column_inner][vc_column_inner width=\"1/4\" offset=\"vc_hidden-lg vc_hidden-md\"][vc_single_image image=\"3070\" img_size=\"full\" alignment=\"center\"][/vc_column_inner][/vc_row_inner][vc_row_inner disable_element=\"yes\"][vc_column_inner width=\"1/3\"][vc_single_image image=\"2981\" img_size=\"full\"][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_single_image image=\"2982\" img_size=\"full\"][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_single_image image=\"2983\" img_size=\"full\"][/vc_column_inner][/vc_row_inner][vc_row_inner disable_element=\"yes\"][vc_column_inner width=\"1/6\"][/vc_column_inner][vc_column_inner width=\"2/3\"][vc_single_image image=\"2984\" img_size=\"full\"][/vc_column_inner][vc_column_inner width=\"1/6\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row full_width=\"stretch_row_content_no_spaces\"][vc_column offset=\"vc_hidden-sm vc_hidden-xs\"][vc_single_image image=\"3120\" img_size=\"full\"][/vc_column][/vc_row][vc_row css=\".vc_custom_1689578794814{padding-top: 50px !important;padding-bottom: 50px !important;}\"][vc_column][ultimate_heading main_heading=\"Supplier selection and procurement criteria\" main_heading_color=\"#079547\" sub_heading_color=\"#792c8a\" alignment=\"left\"][/ultimate_heading][vc_row_inner css=\".vc_custom_1689578812611{margin-top: 50px !important;}\"][vc_column_inner width=\"1/2\"][dt_vc_list dividers=\"false\"]\r\n<ul>\r\n 	<li>Check supplier’s quality certification to ensure raw material quality</li>\r\n 	<li>New vendor validation protocol - In case of a change in the supplier, obtain samples and validate in the lab</li>\r\n</ul>\r\n[/dt_vc_list][/vc_column_inner][vc_column_inner width=\"1/2\"][dt_vc_list dividers=\"false\"]\r\n<ul>\r\n 	<li>Income inspection carried out on every consignment (Tested for Chemical Assay &amp; Physical Properties)</li>\r\n 	<li>Quality department approval required to be used in the production</li>\r\n</ul>\r\n[/dt_vc_list][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row css=\".vc_custom_1689578794814{padding-top: 50px !important;padding-bottom: 50px !important;}\"][vc_column][ultimate_heading main_heading=\"Please contact us to start your Marketing Journey with a reliable manufacturing partnership with FARMCHEMIE\" heading_tag=\"h3\" main_heading_color=\"#079547\" sub_heading_color=\"#792c8a\" alignment=\"left\"][/ultimate_heading][vc_row_inner css=\".vc_custom_1689578812611{margin-top: 50px !important;}\"][vc_column_inner width=\"1/2\"][bsf-info-box icon_size=\"32\" title=\"International Markets\" pos=\"square_box\" box_border_style=\"solid\" box_border_width=\"1\" box_border_color=\"#792c8a\" title_font_color=\"#079547\" desc_font_color=\"#792c8a\" title_font_size=\"desktop:25px;\"]<strong>Email :</strong> <a href=\"mailto:sales.export@farmchemie.com\"><u>sales.export@farmchemie.com</u></a>\r\n<strong>Tel No :</strong> + 94 76 577 2975[/bsf-info-box][/vc_column_inner][vc_column_inner width=\"1/2\"][bsf-info-box icon_size=\"32\" title=\"Sri Lankan Market\" pos=\"square_box\" box_border_style=\"solid\" box_border_width=\"1\" box_border_color=\"#079547\" title_font_color=\"#079547\" desc_font_color=\"#792c8a\" title_font_size=\"desktop:25px;\"]Email : <a href=\"mailto:sales.local@farmchemie.com\"><u>sales.local@farmchemie.com</u></a>\r\nTel No : +94 74 224 6947[/bsf-info-box][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row]','Manufacturing','','inherit','closed','closed','','2964-revision-v1','','','2023-08-14 07:16:52','2023-08-14 07:16:52','',2964,'https://farmchemie.yasithawd.com/?p=3122',0,'revision','',0),(3214,1,'2023-08-16 12:13:17','2023-08-16 12:13:17','[vc_row full_width=\"stretch_row_content_no_spaces\"][vc_column][ultimate_heading main_heading=\"Our History\" main_heading_color=\"#762888\" alignment=\"left\"][/ultimate_heading][vc_single_image image=\"3211\" img_size=\"full\" alignment=\"center\"][/vc_column][/vc_row][vc_row disable_element=\"yes\"][vc_column][vc_row_inner css=\".vc_custom_1686713784619{margin-top: 35px !important;}\"][vc_column_inner width=\"1/3\"][vc_single_image image=\"3106\" img_size=\"full\"][/vc_column_inner][vc_column_inner width=\"2/3\"][ultimate_heading main_heading=\"Founded in 2002\" heading_tag=\"h3\" main_heading_color=\"#039447\" alignment=\"left\" sub_heading_font_size=\"desktop:18px;\"]Founded in 2002 by Mr. Uditha Wanigasinghe, an agriculturist who had a mission to aid valuable livestock producers in the country to enhance the yield and profitability of production. FARMCHEMIE introduced unprecedented solutions and consistent technical services to gain our customers’ trust and became the market leader in animal health products in 2006 within just four years.[/ultimate_heading][/vc_column_inner][/vc_row_inner][vc_row_inner rtl_reverse=\"yes\" css=\".vc_custom_1686714025469{margin-top: 35px !important;}\"][vc_column_inner width=\"2/3\"][ultimate_heading main_heading=\"2006\" heading_tag=\"h3\" main_heading_color=\"#039447\" alignment=\"left\"]In 2006, the Sri Lankan poultry industry was affected with Avian Influenza which became a difficult period for the growth of FARMCHEMIE. This was the key factor in our decision to diversify into Agro Products. PLANTCHEM &amp; PLANTSEEDS were established to offer solutions in Agro specialty fertilizers, pesticides and seeds to invaluable cultivators.[/ultimate_heading][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_single_image image=\"3107\" img_size=\"full\"][/vc_column_inner][/vc_row_inner][vc_row_inner css=\".vc_custom_1686713784619{margin-top: 35px !important;}\"][vc_column_inner width=\"1/3\"][vc_single_image image=\"3108\" img_size=\"full\"][/vc_column_inner][vc_column_inner width=\"2/3\"][ultimate_heading main_heading=\"2010\" heading_tag=\"h3\" main_heading_color=\"#039447\" alignment=\"left\"]In 2010, FEED CHEMIE became the subsequent addition to ever-growing vision of Mr. Uditha Wanigasinghe and entered the Animal Feed Additives market.[/ultimate_heading][/vc_column_inner][/vc_row_inner][vc_row_inner rtl_reverse=\"yes\" css=\".vc_custom_1686714115148{margin-top: 35px !important;}\"][vc_column_inner width=\"2/3\"][ultimate_heading main_heading=\"2012\" heading_tag=\"h3\" main_heading_color=\"#039447\" alignment=\"left\"]The year 2012 is described as a turning point in our journey as FARMCHEMIE established our first production facility for the manufacturing and packing of animal health products. FARMCHEMIE became the first animal health organization in Sri Lanka to obtain ISO 9001:2015 and WHO GMP International Quality Certification. With our own formulation unit, FARMCHEMIE was able to offer customized solutions to cater the needs of the Sri Lankan Livestock Industry.[/ultimate_heading][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_single_image image=\"3111\" img_size=\"full\"][/vc_column_inner][/vc_row_inner][vc_row_inner css=\".vc_custom_1686713784619{margin-top: 35px !important;}\"][vc_column_inner width=\"1/3\"][vc_single_image image=\"3112\" img_size=\"full\"][/vc_column_inner][vc_column_inner width=\"2/3\"][ultimate_heading main_heading=\"2016\" heading_tag=\"h3\" main_heading_color=\"#039447\" alignment=\"left\"]The year 2016 was another key milestone with the entry to the International Markets. FARMCHEMIE exported our first Feed Premix consignment to India and in 2018 our export operation was distinctly established as FARMCHEMIE MANUFACTURERS, a Board of Investment (BOI) approved entity.[/ultimate_heading][/vc_column_inner][/vc_row_inner][vc_row_inner css=\".vc_custom_1686713784619{margin-top: 35px !important;}\"][vc_column_inner width=\"2/3\"][ultimate_heading main_heading=\"Fully automated manufacturing\" heading_tag=\"h3\" main_heading_color=\"#039447\" alignment=\"left\"]FARMCHEMIE MANUFACTURERS has invested in fully automated manufacturing facility from Bühler and became the first Sri Lankan owned company to obtain FAMI-QS International Quality Certification.[/ultimate_heading][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_single_image image=\"3110\" img_size=\"full\"][/vc_column_inner][/vc_row_inner][vc_row_inner css=\".vc_custom_1686713784619{margin-top: 35px !important;}\"][vc_column_inner width=\"1/3\"][vc_single_image image=\"3116\" img_size=\"full\"][/vc_column_inner][vc_column_inner width=\"2/3\"][ultimate_heading main_heading=\"Official toll manufacturer partner\" heading_tag=\"h3\" main_heading_color=\"#039447\" alignment=\"left\"]With the trust and reputation built as a reliable manufacturer of animal feed additives and supplements in the global market, several world-renowned international brands have appointed FARMCHEMIE MANUFACTURERS as the official toll manufacturer partner. FARMCHEMIE MANUFACTURERS exports a wide range of products consisting of premixes, specialty feed additives, oral liquid supplements and pet supplements to various markets in South Asia, East Asia, Middle East and Africa.\r\n\r\nFARMCHEMIE, FEED CHEMIE &amp; FARMCHEMIE MANUFACTURERS currently operate under the ownership of our holding company, DYVESTA.\r\n\r\nDYEVSTA has become the pinnacle of Animal Nutrition and Health.\r\n\r\nDYVESTA is Dynamic, through our continuous evolution, growth and progress. DYVESTA is Diverse, in terms of both our business strategy and our community. DYVESTA is Devoted to our valuable business partners through exceptional service.[/ultimate_heading][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row full_width=\"stretch_row\" equal_height=\"yes\" bg_type=\"image\" parallax_style=\"vcpb-default\" bg_image_new=\"id^2524|url^https://farmchemie.yasithawd.com/wp-content/uploads/2022/09/marketbgimg1.png|caption^null|alt^null|title^marketbgimg1|description^null\" bg_image_repeat=\"no-repeat\" enable_overlay=\"enable_overlay_value\" overlay_color=\"#000000\" overlay_pattern=\"01.png\" overlay_pattern_opacity=\"5\" css=\".vc_custom_1686720701314{margin-top: 35px !important;padding-top: 65px !important;padding-bottom: 100px !important;}\"][vc_column][vc_row_inner equal_height=\"yes\"][vc_column_inner width=\"1/2\"][ultimate_heading main_heading=\"Vision\" main_heading_color=\"#039447\" sub_heading_color=\"#039447\"]To be the customers’ first and best choice by ensuring outstanding satisfaction through a well-trained and dedicated team. Prompt and quality solutions to our customers’ requirements will determine the increase of return on investment for us.[/ultimate_heading][/vc_column_inner][vc_column_inner width=\"1/2\"][ultimate_heading main_heading=\"Mission\" main_heading_color=\"#762888\" sub_heading_color=\"#762888\"]To become a world renowned manufacturer of Animal Health products and a trusted partner among our stakeholders for our integrity as well as for providing effective solutions[/ultimate_heading][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row css=\".vc_custom_1684836308288{margin-top: 15px !important;}\"][vc_column][ultimate_heading main_heading=\"Achievements\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;\"][/ultimate_heading][vc_row_inner gap=\"20\"][vc_column_inner width=\"1/2\" css=\".vc_custom_1691995519863{background-color: #f4ab20 !important;border: 1px solid #f4ab20 !important;border-radius: 35px !important;}\"][bsf-info-box icon_type=\"custom\" icon_img=\"id^3117|url^https://farmchemie.yasithawd.com/wp-content/uploads/2023/08/Pink_-H.png|caption^null|alt^null|title^Pink_-H|description^null\" img_width=\"60\" icon_style=\"advanced\" icon_border_style=\"solid\" icon_color_border=\"#ffffff\" icon_border_size=\"1\" icon_border_radius=\"500\" icon_border_spacing=\"1\" title=\"First Free Sale Certificate obtained from Veterinary Drug Control Authority (VDCA) for Veterinary Pharmaceuticals\" title_font_style=\"font-weight:bold;\" title_font_size=\"desktop:20px;\"][/bsf-info-box][/vc_column_inner][vc_column_inner width=\"1/2\" css=\".vc_custom_1691995661095{background-color: #722f8b !important;border: 1px solid #722f8b !important;border-radius: 35px !important;}\"][bsf-info-box icon_type=\"custom\" icon_img=\"id^3117|url^https://farmchemie.yasithawd.com/wp-content/uploads/2023/08/Pink_-H.png|caption^null|alt^null|title^Pink_-H|description^null\" img_width=\"60\" icon_style=\"advanced\" icon_border_style=\"solid\" icon_color_border=\"#ffffff\" icon_border_size=\"1\" icon_border_radius=\"500\" icon_border_spacing=\"1\" title=\"First ISO 9001: 2015 ,WHO-GMP Quality Management systems certified Animal Health company in Sri Lanka since August, 2012\" title_font_style=\"font-weight:bold;\" title_font_color=\"#ffffff\" title_font_size=\"desktop:20px;\"][/bsf-info-box][/vc_column_inner][/vc_row_inner][vc_row_inner gap=\"20\"][vc_column_inner width=\"1/2\" css=\".vc_custom_1691995661095{background-color: #722f8b !important;border: 1px solid #722f8b !important;border-radius: 35px !important;}\"][bsf-info-box icon_type=\"custom\" icon_img=\"id^3117|url^https://farmchemie.yasithawd.com/wp-content/uploads/2023/08/Pink_-H.png|caption^null|alt^null|title^Pink_-H|description^null\" img_width=\"60\" icon_style=\"advanced\" icon_border_style=\"solid\" icon_color_border=\"#ffffff\" icon_border_size=\"1\" icon_border_radius=\"500\" icon_border_spacing=\"1\" title=\"First FAMI-QS certified company in sri lanka\" title_font_style=\"font-weight:bold;\" title_font_color=\"#ffffff\" title_font_size=\"desktop:20px;\"][/bsf-info-box][/vc_column_inner][vc_column_inner width=\"1/2\" css=\".vc_custom_1691995519863{background-color: #f4ab20 !important;border: 1px solid #f4ab20 !important;border-radius: 35px !important;}\"][bsf-info-box icon_type=\"custom\" icon_img=\"id^3117|url^https://farmchemie.yasithawd.com/wp-content/uploads/2023/08/Pink_-H.png|caption^null|alt^null|title^Pink_-H|description^null\" img_width=\"60\" icon_style=\"advanced\" icon_border_style=\"solid\" icon_color_border=\"#ffffff\" icon_border_size=\"1\" icon_border_radius=\"500\" icon_border_spacing=\"1\" title=\"First Certificate of Ethical Trading certified in Livestock industry\" title_font_style=\"font-weight:bold;\" title_font_size=\"desktop:20px;\"][/bsf-info-box][/vc_column_inner][/vc_row_inner][vc_row_inner gap=\"20\"][vc_column_inner width=\"1/4\" css=\".vc_custom_1691996718116{border-radius: 35px !important;}\"][/vc_column_inner][vc_column_inner width=\"2/4\" css=\".vc_custom_1691995519863{background-color: #f4ab20 !important;border: 1px solid #f4ab20 !important;border-radius: 35px !important;}\"][bsf-info-box icon_type=\"custom\" icon_img=\"id^3117|url^https://farmchemie.yasithawd.com/wp-content/uploads/2023/08/Pink_-H.png|caption^null|alt^null|title^Pink_-H|description^null\" img_width=\"60\" icon_style=\"advanced\" icon_border_style=\"solid\" icon_color_border=\"#ffffff\" icon_border_size=\"1\" icon_border_radius=\"500\" icon_border_spacing=\"1\" title=\"First Silver awarded company at National Exports Awards in Livestock industry\" title_font_style=\"font-weight:bold;\" title_font_size=\"desktop:20px;\"][/bsf-info-box][/vc_column_inner][vc_column_inner width=\"1/4\"][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner width=\"1/6\"][/vc_column_inner][vc_column_inner width=\"2/3\"][vc_single_image image=\"3126\" img_size=\"full\" alignment=\"center\"][vc_single_image image=\"3125\" img_size=\"full\" alignment=\"center\"][/vc_column_inner][vc_column_inner width=\"1/6\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row][vc_column][ultimate_heading main_heading=\"Board Of Directors\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;margin-bottom:35px;\"][/ultimate_heading][ultimate_carousel slides_on_desk=\"1\" slides_on_tabs=\"1\" slides_on_mob=\"1\" arrow_style=\"square-bg\" arrow_bg_color=\"#039447\" arrow_color=\"#ffffff\" next_icon=\"ultsl-arrow-right6\" prev_icon=\"ultsl-arrow-left6\" dots_color=\"#039447\" item_animation=\"fadeIn\"][vc_row_inner][vc_column_inner width=\"1/2\"][vc_single_image image=\"3170\" img_size=\"large\" alignment=\"center\" style=\"vc_box_outline_circle_2\" border_color=\"black\" image_hovers=\"false\"][/vc_column_inner][vc_column_inner width=\"1/2\"][ultimate_heading main_heading=\"Quisque sed nibh tristique\" heading_tag=\"h3\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;\"]Duis lorem risus, aliquet a auctor a, venenatis in dui. Praesent et eros et risus dapibus placerat hendrerit cursus magna.[/ultimate_heading][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner width=\"1/2\"][vc_single_image image=\"3171\" img_size=\"large\" alignment=\"center\" style=\"vc_box_outline_circle_2\" border_color=\"black\" image_hovers=\"false\"][/vc_column_inner][vc_column_inner width=\"1/2\"][ultimate_heading main_heading=\"Quisque sed nibh tristique\" heading_tag=\"h3\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;\"]Duis lorem risus, aliquet a auctor a, venenatis in dui. Praesent et eros et risus dapibus placerat hendrerit cursus magna.[/ultimate_heading][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner width=\"1/2\"][vc_single_image image=\"3173\" img_size=\"large\" alignment=\"center\" style=\"vc_box_outline_circle_2\" border_color=\"black\" image_hovers=\"false\"][/vc_column_inner][vc_column_inner width=\"1/2\"][ultimate_heading main_heading=\"Quisque sed nibh tristique\" heading_tag=\"h3\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;\"]Duis lorem risus, aliquet a auctor a, venenatis in dui. Praesent et eros et risus dapibus placerat hendrerit cursus magna.[/ultimate_heading][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner width=\"1/2\"][vc_single_image image=\"3172\" img_size=\"large\" alignment=\"center\" style=\"vc_box_outline_circle_2\" border_color=\"black\" image_hovers=\"false\"][/vc_column_inner][vc_column_inner width=\"1/2\"][ultimate_heading main_heading=\"Quisque sed nibh tristique\" heading_tag=\"h3\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;\"]Duis lorem risus, aliquet a auctor a, venenatis in dui. Praesent et eros et risus dapibus placerat hendrerit cursus magna.[/ultimate_heading][/vc_column_inner][/vc_row_inner][/ultimate_carousel][/vc_column][/vc_row]','About us','','inherit','closed','closed','','2917-revision-v1','','','2023-08-16 12:13:17','2023-08-16 12:13:17','',2917,'https://farmchemie.yasithawd.com/?p=3214',0,'revision','',0),(3338,1,'2023-08-26 07:36:35','2023-08-26 07:36:35','<p>[vc_row full_width=\"stretch_row_content_no_spaces\"][vc_column width=\"1/4\"][/vc_column][vc_column width=\"1/2\"][vc_widget_sidebar show_bg=\"false\" sidebar_id=\"sidebar_4\"][/vc_column][vc_column width=\"1/4\"][/vc_column][/vc_row][vc_row][vc_column][ult_tab_element tab_style=\"Style_3\" tab_background_color=\"#039447\" tab_hover_background_color=\"#039447\" acttab_background=\"#782d88\" disp_icon=\"Disables\" main_title_typograpy=\"\" main_desc_typograpy=\"\"][single_tab title=\"Tab 1\" tab_id=\"1693035214365-3\"][/single_tab][single_tab title=\"Tab 2\" tab_id=\"1693035214368-9\"][/single_tab][/ult_tab_element][/vc_column][/vc_row]</p>\r\n','AllProducts','','inherit','closed','closed','','3335-revision-v1','','','2023-08-26 07:36:35','2023-08-26 07:36:35','',3335,'https://farmchemie.yasithawd.com/?p=3338',0,'revision','',0),(3335,1,'2023-08-26 07:43:59','2023-08-26 07:43:59','[vc_row full_width=\"stretch_row_content_no_spaces\"][vc_column width=\"1/4\"][/vc_column][vc_column width=\"1/2\"][vc_widget_sidebar show_bg=\"false\" sidebar_id=\"sidebar_4\"][/vc_column][vc_column width=\"1/4\"][/vc_column][/vc_row][vc_row][vc_column][ult_tab_element tab_style=\"Style_4\" tab_animation=\"Fade\" tab_max=\"on\" tab_title_color=\"#ffffff\" tab_background_color=\"#039447\" tab_hover_title_color=\"#ffffff\" tab_hover_background_color=\"#039447\" acttab_title=\"#ffffff\" acttab_background=\"#782d88\" disp_icon=\"Disables\"][single_tab title=\"All\" tab_id=\"1693035214365-3\"][dt_products_masonry mode=\"grid\" layout=\"btn_on_img_hover\" bwb_columns=\"desktop:3|h_tablet:3|v_tablet:2|phone:1\" dis_posts_total=\"12\" product_rating=\"n\" ids=\"\"][/single_tab][single_tab title=\"Poultry\" tab_id=\"1693035214368-9\"][dt_products_masonry show_products=\"categories_products\" layout=\"btn_on_img_hover\" bwb_columns=\"desktop:3|h_tablet:3|v_tablet:2|phone:1\" dis_posts_total=\"12\" product_rating=\"n\" category_ids=\"65\"][/single_tab][single_tab title=\"Dairy and Large Animal\" tab_id=\"1693035580574-2-7\"][dt_products_masonry show_products=\"categories_products\" layout=\"btn_on_img_hover\" bwb_columns=\"desktop:3|h_tablet:3|v_tablet:2|phone:1\" dis_posts_total=\"12\" product_rating=\"n\" category_ids=\"63\"][/single_tab][single_tab title=\"Pet Care\" tab_id=\"1693035636854-3-3\"][dt_products_masonry show_products=\"categories_products\" layout=\"btn_on_img_hover\" bwb_columns=\"desktop:3|h_tablet:3|v_tablet:2|phone:1\" dis_posts_total=\"12\" product_rating=\"n\" category_ids=\"64\"][/single_tab][single_tab title=\"Feed Additives\" tab_id=\"1693035729559-4-1\"][dt_products_masonry show_products=\"categories_products\" layout=\"btn_on_img_hover\" bwb_columns=\"desktop:3|h_tablet:3|v_tablet:2|phone:1\" dis_posts_total=\"12\" category_ids=\"74\"][/single_tab][/ult_tab_element][/vc_column][/vc_row]','AllProducts','','publish','closed','closed','','allproducts','','','2023-08-27 03:24:41','2023-08-27 03:24:41','',0,'https://farmchemie.yasithawd.com/?page_id=3335',0,'page','',0),(3332,1,'2023-08-26 04:00:27','2023-08-26 04:00:27','','AVI-Prime_600px','','inherit','open','closed','','avi-prime_600px','','','2023-08-26 04:00:27','2023-08-26 04:00:27','',3331,'https://farmchemie.yasithawd.com/wp-content/uploads/2023/08/AVI-Prime_600px.png',0,'attachment','image/png',0),(3119,1,'2023-08-14 06:59:09','2023-08-14 06:59:09','','purplefist-transparentbg-2','','inherit','open','closed','','purplefist-transparentbg-2','','','2023-08-14 06:59:09','2023-08-14 06:59:09','',2917,'https://farmchemie.yasithawd.com/wp-content/uploads/2023/08/purplefist-transparentbg-2.jpg',0,'attachment','image/jpeg',0),(3120,1,'2023-08-14 07:12:35','2023-08-14 07:12:35','','FCML-SUPPLIERS-LOGOS (1)','','inherit','open','closed','','fcml-suppliers-logos-1','','','2023-08-14 07:12:35','2023-08-14 07:12:35','',2964,'https://farmchemie.yasithawd.com/wp-content/uploads/2023/08/FCML-SUPPLIERS-LOGOS-1.png',0,'attachment','image/png',0),(3121,1,'2023-08-14 07:12:50','2023-08-14 07:12:50','[vc_row full_width=\"stretch_row\" css=\".vc_custom_1689577528817{padding-bottom: 50px !important;}\"][vc_column css=\".vc_custom_1689577454678{margin-bottom: 50px !important;}\"][vc_row_inner css=\".vc_custom_1689577559805{border-bottom-width: 1px !important;padding-top: 35px !important;padding-bottom: 35px !important;border-bottom-color: #079547 !important;border-bottom-style: solid !important;border-radius: 1px !important;}\"][vc_column_inner width=\"2/3\"][ultimate_heading main_heading=\"Feed Additives\" heading_tag=\"h3\" main_heading_color=\"#079547\" sub_heading_color=\"#792c8a\" alignment=\"left\"]<strong>Premixes/ Specialty Feed Additives/ Dilution of Active Ingredients/ Concentrates</strong><strong>\r\n</strong>Pack sizes – 1,000 kg, 500 kg, 50 kg, 25 kg, 15 kg, 10 kg, 5 kg, 1kg[/ultimate_heading][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_single_image][/vc_column_inner][/vc_row_inner][vc_row_inner css=\".vc_custom_1689577609020{border-bottom-width: 1px !important;padding-top: 35px !important;padding-bottom: 35px !important;border-bottom-color: #079547 !important;border-bottom-style: solid !important;border-radius: 1px !important;}\"][vc_column_inner width=\"1/3\"][vc_single_image][/vc_column_inner][vc_column_inner width=\"2/3\"][ultimate_heading main_heading=\"Oral Supplements\" heading_tag=\"h3\" main_heading_color=\"#079547\" sub_heading_color=\"#792c8a\" alignment=\"left\"]<strong>Liquids</strong><strong>\r\n</strong>Pack sizes – 1,000 L, 250 L, 50 L, 25 L, 5 L, 1 L, 500 mL, 250 mL, 100 mL, 50 mL\r\n\r\n<strong>Water soluble powders</strong><strong>\r\n</strong>Pack sizes – 25 kg, 15 kg, 10 kg, 5 kg, 1kg[/ultimate_heading][/vc_column_inner][/vc_row_inner][vc_row_inner css=\".vc_custom_1689577609020{border-bottom-width: 1px !important;padding-top: 35px !important;padding-bottom: 35px !important;border-bottom-color: #079547 !important;border-bottom-style: solid !important;border-radius: 1px !important;}\"][vc_column_inner width=\"2/3\"][ultimate_heading main_heading=\"Tablets\" heading_tag=\"h3\" main_heading_color=\"#079547\" sub_heading_color=\"#792c8a\" alignment=\"left\"]<strong>Supplementary tablets for pet care</strong>\r\nTablet sizes – 1 to 5 g\r\n\r\n<strong>Boluses</strong><strong>\r\n</strong>Tablet sizes – 5 to 25 g[/ultimate_heading][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_single_image][/vc_column_inner][/vc_row_inner][vc_row_inner css=\".vc_custom_1689577609020{border-bottom-width: 1px !important;padding-top: 35px !important;padding-bottom: 35px !important;border-bottom-color: #079547 !important;border-bottom-style: solid !important;border-radius: 1px !important;}\"][vc_column_inner width=\"1/3\"][vc_single_image][/vc_column_inner][vc_column_inner width=\"2/3\"][ultimate_heading main_heading=\"Veterinary Pharmaceuticals\" heading_tag=\"h3\" main_heading_color=\"#079547\" sub_heading_color=\"#792c8a\" alignment=\"left\"]<strong>Deworming Solutions/ Antibiotics/ Antimicrobials/ Wound care solutions</strong><strong>\r\n</strong>Form – Liquid, WSP[/ultimate_heading][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row css=\".vc_custom_1689578783264{padding-top: 50px !important;padding-bottom: 50px !important;}\"][vc_column][ultimate_heading main_heading=\"Our manufacturing facility is certified with FAMI-QS, WHO GMP &amp; ISO 9001:2015 International Quality standards.\" main_heading_color=\"#079547\" sub_heading_color=\"#792c8a\" alignment=\"left\"]We select only the <strong><em>best</em></strong> and <strong><em>most reputed</em></strong> Raw Material &amp; Packing Material Suppliers for the production of our finished goods.[/ultimate_heading][vc_row_inner equal_height=\"yes\" content_placement=\"middle\"][vc_column_inner width=\"1/5\" offset=\"vc_hidden-lg vc_hidden-md\"][vc_single_image image=\"3062\" img_size=\"full\" alignment=\"center\"][/vc_column_inner][vc_column_inner width=\"1/5\" css=\".vc_custom_1691846530645{border-right-width: 1px !important;border-left-width: 1px !important;border-left-color: #000000 !important;border-left-style: solid !important;border-right-color: #000000 !important;border-right-style: solid !important;border-radius: 1px !important;}\" offset=\"vc_hidden-lg vc_hidden-md\"][vc_single_image image=\"3063\" img_size=\"full\" alignment=\"center\"][/vc_column_inner][vc_column_inner width=\"1/5\" offset=\"vc_hidden-lg vc_hidden-md\"][vc_single_image image=\"3064\" img_size=\"full\" alignment=\"center\"][/vc_column_inner][vc_column_inner width=\"1/5\" css=\".vc_custom_1691846545469{border-right-width: 1px !important;border-left-width: 1px !important;border-left-color: #000000 !important;border-left-style: solid !important;border-right-color: #000000 !important;border-right-style: solid !important;border-radius: 1px !important;}\" offset=\"vc_hidden-lg vc_hidden-md\"][vc_single_image image=\"3065\" img_size=\"full\" alignment=\"center\"][/vc_column_inner][vc_column_inner width=\"1/5\" offset=\"vc_hidden-lg vc_hidden-md\"][vc_single_image image=\"3066\" img_size=\"full\" alignment=\"center\"][/vc_column_inner][/vc_row_inner][vc_row_inner equal_height=\"yes\" content_placement=\"middle\"][vc_column_inner width=\"1/4\" css=\".vc_custom_1691846563021{border-right-width: 1px !important;border-right-color: #000000 !important;border-right-style: solid !important;border-radius: 1px !important;}\" offset=\"vc_hidden-lg vc_hidden-md\"][vc_single_image image=\"3067\" img_size=\"full\" alignment=\"center\"][/vc_column_inner][vc_column_inner width=\"1/4\" css=\".vc_custom_1691846569845{border-right-width: 1px !important;border-right-color: #000000 !important;border-right-style: solid !important;border-radius: 1px !important;}\" offset=\"vc_hidden-lg vc_hidden-md\"][vc_single_image image=\"3068\" img_size=\"full\" alignment=\"center\"][/vc_column_inner][vc_column_inner width=\"1/4\" css=\".vc_custom_1691846576949{border-right-width: 1px !important;border-right-color: #000000 !important;border-right-style: solid !important;border-radius: 1px !important;}\" offset=\"vc_hidden-lg vc_hidden-md\"][vc_single_image image=\"3069\" img_size=\"full\" alignment=\"center\"][/vc_column_inner][vc_column_inner width=\"1/4\" offset=\"vc_hidden-lg vc_hidden-md\"][vc_single_image image=\"3070\" img_size=\"full\" alignment=\"center\"][/vc_column_inner][/vc_row_inner][vc_single_image image=\"3120\" img_size=\"full\" alignment=\"center\"][vc_row_inner disable_element=\"yes\"][vc_column_inner width=\"1/3\"][vc_single_image image=\"2981\" img_size=\"full\"][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_single_image image=\"2982\" img_size=\"full\"][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_single_image image=\"2983\" img_size=\"full\"][/vc_column_inner][/vc_row_inner][vc_row_inner disable_element=\"yes\"][vc_column_inner width=\"1/6\"][/vc_column_inner][vc_column_inner width=\"2/3\"][vc_single_image image=\"2984\" img_size=\"full\"][/vc_column_inner][vc_column_inner width=\"1/6\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row css=\".vc_custom_1689578794814{padding-top: 50px !important;padding-bottom: 50px !important;}\"][vc_column][ultimate_heading main_heading=\"Supplier selection and procurement criteria\" main_heading_color=\"#079547\" sub_heading_color=\"#792c8a\" alignment=\"left\"][/ultimate_heading][vc_row_inner css=\".vc_custom_1689578812611{margin-top: 50px !important;}\"][vc_column_inner width=\"1/2\"][dt_vc_list dividers=\"false\"]\r\n<ul>\r\n 	<li>Check supplier’s quality certification to ensure raw material quality</li>\r\n 	<li>New vendor validation protocol - In case of a change in the supplier, obtain samples and validate in the lab</li>\r\n</ul>\r\n[/dt_vc_list][/vc_column_inner][vc_column_inner width=\"1/2\"][dt_vc_list dividers=\"false\"]\r\n<ul>\r\n 	<li>Income inspection carried out on every consignment (Tested for Chemical Assay &amp; Physical Properties)</li>\r\n 	<li>Quality department approval required to be used in the production</li>\r\n</ul>\r\n[/dt_vc_list][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row css=\".vc_custom_1689578794814{padding-top: 50px !important;padding-bottom: 50px !important;}\"][vc_column][ultimate_heading main_heading=\"Please contact us to start your Marketing Journey with a reliable manufacturing partnership with FARMCHEMIE\" heading_tag=\"h3\" main_heading_color=\"#079547\" sub_heading_color=\"#792c8a\" alignment=\"left\"][/ultimate_heading][vc_row_inner css=\".vc_custom_1689578812611{margin-top: 50px !important;}\"][vc_column_inner width=\"1/2\"][bsf-info-box icon_size=\"32\" title=\"International Markets\" pos=\"square_box\" box_border_style=\"solid\" box_border_width=\"1\" box_border_color=\"#792c8a\" title_font_color=\"#079547\" desc_font_color=\"#792c8a\" title_font_size=\"desktop:25px;\"]<strong>Email :</strong> <a href=\"mailto:sales.export@farmchemie.com\"><u>sales.export@farmchemie.com</u></a>\r\n<strong>Tel No :</strong> + 94 76 577 2975[/bsf-info-box][/vc_column_inner][vc_column_inner width=\"1/2\"][bsf-info-box icon_size=\"32\" title=\"Sri Lankan Market\" pos=\"square_box\" box_border_style=\"solid\" box_border_width=\"1\" box_border_color=\"#079547\" title_font_color=\"#079547\" desc_font_color=\"#792c8a\" title_font_size=\"desktop:25px;\"]Email : <a href=\"mailto:sales.local@farmchemie.com\"><u>sales.local@farmchemie.com</u></a>\r\nTel No : +94 74 224 6947[/bsf-info-box][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row]','Manufacturing','','inherit','closed','closed','','2964-revision-v1','','','2023-08-14 07:12:50','2023-08-14 07:12:50','',2964,'https://farmchemie.yasithawd.com/?p=3121',0,'revision','',0),(3117,1,'2023-08-14 06:43:21','2023-08-14 06:43:21','','Pink_-H','','inherit','open','closed','','pink_-h','','','2023-08-14 06:43:21','2023-08-14 06:43:21','',2917,'https://farmchemie.yasithawd.com/wp-content/uploads/2023/08/Pink_-H.png',0,'attachment','image/png',0),(3118,1,'2023-08-14 06:52:05','2023-08-14 06:52:05','','purplefist-transparentbg-1','','inherit','open','closed','','purplefist-transparentbg-1','','','2023-08-14 06:52:05','2023-08-14 06:52:05','',2917,'https://farmchemie.yasithawd.com/wp-content/uploads/2023/08/purplefist-transparentbg-1.jpg',0,'attachment','image/jpeg',0),(3310,1,'2023-08-25 05:00:30','2023-08-25 05:00:30','','AVI-E_600px x 600px','','inherit','open','closed','','avi-e_600px-x-600px-2','','','2023-08-25 05:00:30','2023-08-25 05:00:30','',3309,'https://farmchemie.yasithawd.com/wp-content/uploads/2023/08/AVI-E_600px-x-600px.png',0,'attachment','image/png',0),(3311,1,'2023-08-25 05:00:55','2023-08-25 05:00:55','','AVI-E_Logo','','inherit','open','closed','','avi-e_logo-2','','','2023-08-25 05:00:55','2023-08-25 05:00:55','',3309,'https://farmchemie.yasithawd.com/wp-content/uploads/2023/08/AVI-E_Logo.png',0,'attachment','image/png',0),(3312,1,'2023-08-25 05:01:55','2023-08-25 05:01:55','','AVI E','','inherit','open','closed','','avi-e-2','','','2023-08-25 05:01:55','2023-08-25 05:01:55','',0,'https://farmchemie.yasithawd.com/wp-content/uploads/2023/08/AVI-E.pdf',0,'attachment','application/pdf',0),(2918,1,'2023-06-14 03:31:02','2023-06-14 03:31:02','[vc_row][vc_column][ultimate_heading main_heading=\"Our History\" main_heading_color=\"#762888\" alignment=\"left\"][/ultimate_heading][icon_timeline timeline_style=\"jstime\" timeline_line_color=\"#059444\" time_sep_color=\"#059444\" time_sep_bg_color=\"#059444\"][icon_timeline_sep time_sep_title=\"Founded in 2002\" font_size=\"desktop:13px;\"][icon_timeline_feat]Founded in 2002 by Mr. Uditha Wanigasinghe, an agriculturist who had a mission to aid valuable livestock producers in the country to enhance the yield and profitability of production. FARMCHEMIE introduced unprecedented solutions and consistent technical services to gain our customers’ trust and became the market leader in animal health products in 2006 within just four years.[/icon_timeline_feat][icon_timeline_item time_title=\"2006 Sri Lankan Avian Influenza\"]<img class=\"alignnone size-medium wp-image-2895\" src=\"https://farmchemie.yasithawd.com/wp-content/uploads/2023/05/WhatsApp-Image-2023-05-16-at-2.43.25-AM-300x225.jpeg\" alt=\"\" width=\"300\" height=\"225\" />\r\n\r\nIn 2006, the Sri Lankan poultry industry was affected with Avian Influenza which became a difficult period for the growth of FARMCHEMIE. This was the key factor in our decision to diversify into Agro Products. PLANTCHEM &amp; PLANTSEEDS were established to offer solutions in Agro specialty fertilizers, pesticides and seeds to invaluable cultivators.[/icon_timeline_item][icon_timeline_item time_title=\"2010 FEED CHEMIE\"]<img class=\"alignnone size-medium wp-image-2896\" src=\"https://farmchemie.yasithawd.com/wp-content/uploads/2023/05/WhatsApp-Image-2023-05-16-at-2.43.38-AM-300x225.jpeg\" alt=\"\" width=\"300\" height=\"225\" />\r\n\r\nIn 2010, FEED CHEMIE became the subsequent addition to ever-growing vision of Mr. Uditha Wanigasinghe and entered the Animal Feed Additives market.[/icon_timeline_item][icon_timeline_item time_title=\"2012 Production facility\"]<img class=\"alignnone wp-image-2897 size-medium\" src=\"https://farmchemie.yasithawd.com/wp-content/uploads/2023/05/WhatsApp-Image-2023-05-16-at-2.43.56-AM-300x254.jpeg\" alt=\"\" width=\"300\" height=\"254\" />\r\n\r\nThe year 2012 is described as a turning point in our journey as FARMCHEMIE established our first production facility for the manufacturing and packing of animal health products. FARMCHEMIE became the first animal health organization in Sri Lanka to obtain ISO 9001:2015 and WHO GMP International Quality Certification. With our own formulation unit, FARMCHEMIE was able to offer customized solutions to cater the needs of the Sri Lankan Livestock Industry.[/icon_timeline_item][icon_timeline_item time_title=\"2016 Another key milestone\"]<img class=\"alignnone wp-image-2898 size-medium\" src=\"https://farmchemie.yasithawd.com/wp-content/uploads/2023/05/WhatsApp-Image-2023-05-16-at-2.44.00-AM-229x300.jpeg\" alt=\"\" width=\"229\" height=\"300\" />\r\n\r\nThe year 2016 was another key milestone with the entry to the International Markets. FARMCHEMIE exported our first Feed Premix consignment to India and in 2018 our export operation was distinctly established as FARMCHEMIE MANUFACTURERS, a Board of Investment (BOI) approved entity.[/icon_timeline_item][icon_timeline_feat time_title=\"invested in fully automated manufacturing facility from Bühler\"]<img class=\"alignnone wp-image-2899 size-medium\" src=\"https://farmchemie.yasithawd.com/wp-content/uploads/2023/05/WhatsApp-Image-2023-05-16-at-2.44.14-AM-300x192.jpeg\" alt=\"\" width=\"300\" height=\"192\" />\r\n\r\nFARMCHEMIE MANUFACTURERS has invested in fully automated manufacturing facility from Bühler and became the first Sri Lankan owned company to obtain FAMI-QS International Quality Certification.[/icon_timeline_feat][icon_timeline_feat time_title=\"DYEVSTA\"]<img class=\"alignnone wp-image-2901 size-medium\" src=\"https://farmchemie.yasithawd.com/wp-content/uploads/2023/05/WhatsApp-Image-2023-05-16-at-2.45.03-AM-300x59.jpeg\" alt=\"\" width=\"300\" height=\"59\" />\r\n\r\nWith the trust and reputation built as a reliable manufacturer of animal feed additives and supplements in the global market, several world-renowned international brands have appointed FARMCHEMIE MANUFACTURERS as the official toll manufacturer partner. FARMCHEMIE MANUFACTURERS exports a wide range of products consisting of premixes, specialty feed additives, oral liquid supplements and pet supplements to various markets in South Asia, East Asia, Middle East and Africa.\r\n\r\nFARMCHEMIE, FEED CHEMIE &amp; FARMCHEMIE MANUFACTURERS currently operate under the ownership of our holding company, DYVESTA.\r\n\r\nDYEVSTA has become the pinnacle of Animal Nutrition and Health.\r\n\r\nDYVESTA is Dynamic, through our continuous evolution, growth and progress. DYVESTA is Diverse, in terms of both our business strategy and our community. DYVESTA is Devoted to our valuable business partners through exceptional service.[/icon_timeline_feat][/icon_timeline][/vc_column][/vc_row][vc_row full_width=\"stretch_row_content\" equal_height=\"yes\" bg_type=\"grad\" bg_override=\"ex-full\" bg_grad=\"background: -webkit-gradient(linear, left top, left bottom, color-stop(49%, #039447), color-stop(51%, #762888));background: -moz-linear-gradient(45deg,#039447 49%,#762888 51%);background: -webkit-linear-gradient(45deg,#039447 49%,#762888 51%);background: -o-linear-gradient(45deg,#039447 49%,#762888 51%);background: -ms-linear-gradient(45deg,#039447 49%,#762888 51%);background: linear-gradient(45deg,#039447 49%,#762888 51%);\" css=\".vc_custom_1686543324238{padding-top: 35px !important;padding-bottom: 70px !important;}\"][vc_column width=\"1/2\"][ultimate_heading main_heading=\"Vision\" main_heading_color=\"#762888\" sub_heading_color=\"#ffffff\"]To become a world renowned manufacturer of Animal Health products and a trusted partner among our stakeholders for our integrity as well as for providing effective solutions[/ultimate_heading][/vc_column][vc_column width=\"1/2\"][ultimate_heading main_heading=\"Mission\" main_heading_color=\"#039447\" sub_heading_color=\"#ffffff\"]To be the customers’ first and best choice by ensuring outstanding satisfaction through a well-trained and dedicated team. Prompt and quality solutions to our customers’ requirements will determine the increase of return on investment for us.[/ultimate_heading][/vc_column][/vc_row][vc_row css=\".vc_custom_1684836308288{margin-top: 15px !important;}\"][vc_column][ultimate_heading main_heading=\"Achievements\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;\"][/ultimate_heading][/vc_column][/vc_row]','About us','','inherit','closed','closed','','2917-revision-v1','','','2023-06-14 03:31:02','2023-06-14 03:31:02','',2917,'https://farmchemie.yasithawd.com/?p=2918',0,'revision','',0),(3309,1,'2023-08-25 04:51:00','2023-08-25 04:51:00','','AVI E','<h3><em>Oral Solution for Vitamin E and Selenium Deficiencies</em></h3>\r\n[dt_divider style=\"thick\" /]\r\n\r\n&nbsp;\r\n\r\n<strong>Composition: </strong>\r\n\r\nEach 1 mL contains,\r\n\r\nVitamin E acetate - 100 mg\r\nSodium selenite - 0.5 mg\r\n\r\n[dt_divider style=\"thin\" /]\r\n\r\n<strong>Indication: </strong>\r\n\r\nPrevents Vitamin E & Selenium deficiencies\r\n\r\n[dt_divider style=\"thin\" /]\r\n\r\n<strong>Dosage: </strong>\r\n\r\nAdminister mixing with feed or directly feed\r\nAvians - 1 ml per 1 litre of drinking water for 3-5 days\r\n\r\n[dt_divider style=\"thin\" /]\r\n\r\n<strong>Pack sizes: </strong>\r\n\r\n10 mL\r\n\r\n&nbsp;\r\n\r\n[dt_divider style=\"thick\" /]\r\n\r\n&nbsp;\r\n\r\n<a href=\"/wp-content/uploads/2023/08/AVI-3-folding-brochure-SInhala-Final-outline_compressed-1.pdf\"><i class=\"fa-solid fa-file-pdf fa-2xl\" style=\"color: #039447;\"> Eng</i></a>','publish','closed','closed','','avi-e','','','2023-09-11 10:44:39','2023-09-11 10:44:39','',0,'https://farmchemie.yasithawd.com/?post_type=product&#038;p=3309',0,'product','',0),(1577,1,'2019-10-16 16:38:53','2019-10-16 16:38:53','[vc_row full_width=\"stretch_row_content_no_spaces\" full_height=\"yes\" equal_height=\"yes\" content_placement=\"middle\" bg_type=\"image\" parallax_style=\"vcpb-default\" bg_image_new=\"id^2334|url^https://farmchemie.yasithawd.com/wp-content/uploads/2019/10/art-bg-nutr02.jpg|caption^null|alt^null|title^art-bg-nutr02|description^null\" bg_image_repeat=\"no-repeat\" bg_img_attach=\"fixed\" bg_override=\"ex-full\" css=\".vc_custom_1571819170390{padding-top: 50px !important;padding-bottom: 50px !important;background-color: #f2f3f7 !important;}\"][vc_column offset=\"vc_col-lg-offset-0 vc_col-lg-6 vc_col-md-offset-0 vc_col-md-6 vc_col-sm-offset-0\" css=\".vc_custom_1571819161146{margin-right: 0px !important;margin-left: 0px !important;padding-top: 20px !important;padding-right: 12% !important;padding-bottom: 30px !important;padding-left: 12% !important;}\"][ultimate_heading main_heading=\"Start fueling your body with good!\" main_heading_color=\"#7bb519\" sub_heading_color=\"#7bb519\" main_heading_margin=\"margin-bottom:20px;\" main_heading_style=\"font-style:italic;\" main_heading_font_size=\"desktop:26px;tablet:24px;mobile_landscape:20px;\" main_heading_line_height=\"desktop:36px;tablet:34px;mobile_landscape:30px;\" sub_heading_font_size=\"desktop:90px;\" sub_heading_line_height=\"desktop:90px;\" sub_heading_style=\"font-weight:700;\" main_heading_font_family=\"font_family:Josefin Sans|font_call:Josefin+Sans|variant:italic\" sub_heading_font_family=\"font_family:Josefin Sans|font_call:Josefin+Sans|variant:700\"][/ultimate_heading][ultimate_heading main_heading=\"A Balanced Diet Works Wonders\" heading_tag=\"h3\" main_heading_margin=\"margin-bottom:15px;\" main_heading_style=\"font-weight:bold;\" sub_heading_font_size=\"desktop:24px;tablet_portrait:20px;\" sub_heading_line_height=\"desktop:38px;tablet_portrait:34px;\" sub_heading_margin=\"margin-bottom:35px;\" sub_heading_font_family=\"font_family:|font_call:\" main_heading_font_size=\"desktop:70px;tablet:60px;tablet_portrait:50px;mobile_landscape:40px;\" main_heading_line_height=\"desktop:76px;tablet:66px;tablet_portrait:56px;mobile_landscape:46px;\"]Perfectly balanced healthy nutrition programs by <strong><span style=\"color: #7bb519;\">Dr. Anna Seven</span></strong> - certified nutritionist &amp; lifestyle coach.[/ultimate_heading][vc_row_inner el_class=\"text-centered\"][vc_column_inner][dt_default_button link=\"url:%23!%2Fabout|||\" smooth_scroll=\"y\" size=\"custom\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" font_size=\"17px\" icon_size=\"18px\" button_padding=\"12px 14px 12px 14px\" border_width=\"2px\" border_radius=\"0px\" default_btn_border_hover=\"n\" icon_type=\"picker\" icon_picker=\"fas fa-user-graduate\" icon_align=\"right\" css=\".vc_custom_1571772935103{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]About Dr. Seven[/dt_default_button][dt_default_button link=\"url:%23!%2Fprograms|||\" smooth_scroll=\"y\" size=\"custom\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" font_size=\"17px\" icon_size=\"18px\" button_padding=\"12px 14px 12px 14px\" border_width=\"2px\" border_radius=\"0px\" text_color=\"#7bb519\" default_btn_border_color=\"#7bb519\" default_btn_bg=\"n\" default_btn_border_hover=\"n\" icon_type=\"picker\" icon_picker=\"fas fa-list\" icon_align=\"right\" css=\".vc_custom_1571777157923{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}\"]Diet Programs[/dt_default_button][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"2/3\" offset=\"vc_col-lg-offset-0 vc_col-lg-5 vc_col-md-offset-0 vc_col-md-6 vc_col-sm-offset-2\" css=\".vc_custom_1571780887485{margin-right: 0px !important;margin-left: 0px !important;padding-right: 50px !important;}\"][dt_fancy_image image_id=\"2143\" width=\"100\" height=\"100\" border_radius=\"0px\" align=\"right\"][dt_carousel slides_on_wide_desk=\"1\" slides_on_desk=\"1\" slides_on_lapt=\"1\" slides_on_h_tabs=\"1\" slides_on_v_tabs=\"1\" speed=\"1200\" arrow_icon_size=\"16px\" arrow_bg_width=\"30x\" arrow_bg_height=\"30px\" arrow_border_radius=\"0px\" arrow_border_width=\"0px\" arrow_bg_color=\"rgba(0,0,0,0.15)\" arrow_bg_color_hover=\"rgba(0,0,0,0.3)\" r_arrow_icon_paddings=\"0px 0px 0px 0px\" r_arrow_v_position=\"bottom\" r_arrow_h_position=\"left\" r_arrow_v_offset=\"-30px\" r_arrow_h_offset=\"30px\" l_arrow_icon_paddings=\"0px 0px 0px 0px\" l_arrow_v_position=\"bottom\" l_arrow_v_offset=\"-30px\" l_arrow_h_offset=\"0px\" arrow_responsiveness=\"no-changes\" css_dt_carousel=\".vc_custom_1580818256742{padding-right: 100px !important;}\"][dt_fancy_image image_id=\"1662\" width=\"1000\" height=\"1000\" border_radius=\"0px\"][dt_fancy_image image_id=\"1730\" width=\"1000\" height=\"1000\" border_radius=\"0px\"][dt_fancy_image image_id=\"1726\" width=\"1000\" height=\"1000\" border_radius=\"0px\"][dt_fancy_image image_id=\"1733\" width=\"1000\" height=\"1000\" border_radius=\"0px\"][dt_fancy_image image_id=\"1739\" width=\"1000\" height=\"1000\" border_radius=\"0px\"][dt_fancy_image image_id=\"1735\" width=\"1000\" height=\"1000\" border_radius=\"0px\"][/dt_carousel][dt_fancy_image image_id=\"2150\" width=\"200\" height=\"200\" border_radius=\"0px\" align=\"right\" css=\".vc_custom_1572960969632{margin-top: -100px !important;}\"][dt_fancy_image image_id=\"2144\" width=\"100\" height=\"100\" border_radius=\"0px\" align=\"right\" css=\".vc_custom_1572960964429{margin-top: -200px !important;margin-right: -300px !important;}\"][/vc_column][/vc_row][vc_row equal_height=\"yes\" content_placement=\"middle\" css=\".vc_custom_1571217829354{padding-top: 70px !important;padding-bottom: 40px !important;}\" el_id=\"about\"][vc_column width=\"1/2\" css=\".vc_custom_1570820895927{padding-bottom: 30px !important;}\" offset=\"vc_col-lg-offset-0 vc_col-lg-5 vc_col-md-offset-0 vc_col-md-4 vc_col-sm-offset-3 vc_col-xs-offset-1 vc_col-xs-10\"][dt_fancy_image image_id=\"1150\" width=\"\" border_radius=\"500px\"][/vc_column][vc_column css=\".vc_custom_1570820912604{padding-bottom: 30px !important;}\" offset=\"vc_col-lg-7 vc_col-md-8 vc_col-xs-12\"][ultimate_heading main_heading=\"Dr. Anna Seven\" heading_tag=\"h3\" sub_heading_color=\"#7bb519\" alignment=\"left\" main_heading_margin=\"margin-bottom:15px;\" main_heading_style=\"font-weight:bold;\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;\" sub_heading_line_height=\"desktop:28px;\" sub_heading_margin=\"margin-bottom:30px;\" sub_heading_font_family=\"font_family:Josefin Sans|font_call:Josefin+Sans|variant:italic\"]Certified nutritionist &amp; lifestyle coach[/ultimate_heading][vc_column_text css=\".vc_custom_1570820986883{padding-bottom: 30px !important;}\"]Vestibulum sodales tempus enim, non feugiat lectus congue quis. Nam accumsan libero sed imperdiet egestas. Pellentesque libero ligula, imperdiet quis lectus eu, tincidunt pellentesque felis. Ut pretium risus sit amet nisi vulputate porta. Ut hendrerit tempus purus in vulputate. Pellentesque dignissim dui ac dolor convallis, vitae posuere lacus laoreet. In porta tempor velit, vel commodo enim congue sit amet.[/vc_column_text][dt_default_button link=\"url:%23!%2Fbenefits|||\" smooth_scroll=\"y\" size=\"custom\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" icon_size=\"16px\" button_padding=\"9px 14px 9px 14px\" border_width=\"2px\" border_radius=\"0px\" default_btn_border_hover=\"n\" icon_type=\"picker\" icon_picker=\"fas fa-tasks\" icon_align=\"right\" css=\".vc_custom_1571784117345{margin-right: 10px !important;margin-bottom: 10px !important;}\"]Why choose Dr. Anna[/dt_default_button][dt_default_button link=\"url:https%3A%2F%2Fthe7.io|||\" size=\"custom\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" icon_size=\"16px\" button_padding=\"9px 14px 9px 14px\" border_width=\"2px\" border_radius=\"0px\" text_color=\"#7bb519\" default_btn_border_color=\"#7bb519\" default_btn_bg=\"n\" default_btn_border_hover=\"n\" icon_type=\"picker\" icon_picker=\"icomoon-the7-font-facebook\" icon_align=\"right\" css=\".vc_custom_1571784132499{margin-right: 10px !important;margin-bottom: 10px !important;}\"]Facebook[/dt_default_button][dt_default_button link=\"url:https%3A%2F%2Fthe7.io|||\" size=\"custom\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" icon_size=\"16px\" button_padding=\"9px 14px 9px 14px\" border_width=\"2px\" border_radius=\"0px\" text_color=\"#7bb519\" default_btn_border_color=\"#7bb519\" default_btn_bg=\"n\" default_btn_border_hover=\"n\" icon_type=\"picker\" icon_picker=\"icomoon-the7-font-instagram\" icon_align=\"right\" css=\".vc_custom_1571784139181{margin-right: 10px !important;margin-bottom: 10px !important;}\"]Instagram[/dt_default_button][/vc_column][/vc_row][vc_row full_width=\"stretch_row_content\" bg_type=\"image\" parallax_style=\"vcpb-default\" bg_image_new=\"id^1521|url^https://farmchemie.yasithawd.com/wp-content/uploads/2019/10/bg-hero-n03.jpg|caption^null|alt^null|title^bg-hero-n03|description^null\" bg_image_repeat=\"no-repeat\" bg_img_attach=\"fixed\" bg_override=\"ex-full\" enable_overlay=\"enable_overlay_value\" overlay_color=\"rgba(0,0,0,0.5)\" css=\".vc_custom_1571308835477{padding-top: 50px !important;padding-bottom: 40px !important;}\"][vc_column width=\"1/4\" css=\".vc_custom_1570819953995{padding-right: 0px !important;padding-left: 50px !important;}\"][stat_counter icon=\"fas fa-calendar-check\" icon_size=\"32\" icon_color=\"#ffffff\" icon_style=\"advanced\" icon_color_bg=\"#7bb519\" icon_border_spacing=\"70\" icon_position=\"left\" counter_title=\"Years of practice\" counter_value=\"20\" counter_suffix=\"+\" speed=\"5\" title_font=\"font_family:Josefin Sans|font_call:Josefin+Sans|variant:italic\" title_font_style=\"font-style:italic;\" counter_color_txt=\"#ffffff\" desc_font=\"font_family:Josefin Sans|font_call:Josefin+Sans|variant:700\" desc_font_style=\"font-weight:700;\" suf_pref_font=\"font_family:Josefin Sans|font_call:Josefin+Sans|variant:700\" suf_pref_font_style=\"font-weight:700;\" css_stat_counter=\".vc_custom_1571775601629{margin-bottom: 10px !important;}\" desc_font_color=\"#ffffff\" desc_font_size=\"desktop:38px;\" desc_font_line_height=\"desktop:38px;\" suf_pref_font_size=\"desktop:30px;\" suf_pref_line_height=\"desktop:30px;\" suf_pref_font_color=\"#ffffff\" title_font_size=\"desktop:20px;\" title_font_line_height=\"desktop:26px;\"][/vc_column][vc_column width=\"1/4\" css=\".vc_custom_1570819933702{padding-right: 0px !important;padding-left: 50px !important;}\"][stat_counter icon=\"fas fa-users\" icon_size=\"32\" icon_color=\"#ffffff\" icon_style=\"advanced\" icon_color_bg=\"#7bb519\" icon_border_spacing=\"70\" icon_position=\"left\" counter_title=\"Happy patients\" counter_value=\"1000\" counter_suffix=\"+\" speed=\"5\" title_font=\"font_family:Josefin Sans|font_call:Josefin+Sans|variant:italic\" title_font_style=\"font-style:italic;\" counter_color_txt=\"#ffffff\" desc_font=\"font_family:Josefin Sans|font_call:Josefin+Sans|variant:700\" desc_font_style=\"font-weight:700;\" suf_pref_font=\"font_family:Josefin Sans|font_call:Josefin+Sans|variant:700\" suf_pref_font_style=\"font-weight:700;\" css_stat_counter=\".vc_custom_1571775621055{margin-bottom: 10px !important;}\" desc_font_color=\"#ffffff\" desc_font_size=\"desktop:38px;\" desc_font_line_height=\"desktop:38px;\" suf_pref_font_size=\"desktop:30px;\" suf_pref_line_height=\"desktop:30px;\" suf_pref_font_color=\"#ffffff\" title_font_size=\"desktop:20px;\" title_font_line_height=\"desktop:26px;\"][/vc_column][vc_column width=\"1/4\" css=\".vc_custom_1570819938399{padding-right: 0px !important;padding-left: 50px !important;}\"][stat_counter icon=\"fas fa-graduation-cap\" icon_size=\"32\" icon_color=\"#ffffff\" icon_style=\"advanced\" icon_color_bg=\"#7bb519\" icon_border_spacing=\"70\" icon_position=\"left\" counter_title=\"Certificates &amp; diplomas\" counter_value=\"13\" speed=\"5\" title_font=\"font_family:Josefin Sans|font_call:Josefin+Sans|variant:italic\" title_font_style=\"font-style:italic;\" counter_color_txt=\"#ffffff\" desc_font=\"font_family:Josefin Sans|font_call:Josefin+Sans|variant:700\" desc_font_style=\"font-weight:700;\" suf_pref_font=\"font_family:Josefin Sans|font_call:Josefin+Sans|variant:700\" suf_pref_font_style=\"font-weight:700;\" css_stat_counter=\".vc_custom_1571775625451{margin-bottom: 10px !important;}\" desc_font_color=\"#ffffff\" desc_font_size=\"desktop:38px;\" desc_font_line_height=\"desktop:38px;\" suf_pref_font_size=\"desktop:30px;\" suf_pref_line_height=\"desktop:30px;\" suf_pref_font_color=\"#ffffff\" title_font_size=\"desktop:20px;\" title_font_line_height=\"desktop:26px;\"][/vc_column][vc_column width=\"1/4\" css=\".vc_custom_1570819942715{padding-right: 0px !important;padding-left: 50px !important;}\"][stat_counter icon=\"fas fa-file-alt\" icon_size=\"32\" icon_color=\"#ffffff\" icon_style=\"advanced\" icon_color_bg=\"#7bb519\" icon_border_spacing=\"70\" icon_position=\"left\" counter_title=\"Scientific articles\" counter_value=\"26\" speed=\"5\" title_font=\"font_family:Josefin Sans|font_call:Josefin+Sans|variant:italic\" title_font_style=\"font-style:italic;\" counter_color_txt=\"#ffffff\" desc_font=\"font_family:Josefin Sans|font_call:Josefin+Sans|variant:700\" desc_font_style=\"font-weight:700;\" suf_pref_font=\"font_family:Josefin Sans|font_call:Josefin+Sans|variant:700\" suf_pref_font_style=\"font-weight:700;\" css_stat_counter=\".vc_custom_1571775629446{margin-bottom: 10px !important;}\" desc_font_color=\"#ffffff\" desc_font_size=\"desktop:38px;\" desc_font_line_height=\"desktop:38px;\" suf_pref_font_size=\"desktop:30px;\" suf_pref_line_height=\"desktop:30px;\" suf_pref_font_color=\"#ffffff\" title_font_size=\"desktop:20px;\" title_font_line_height=\"desktop:26px;\"][/vc_column][/vc_row][vc_row full_width=\"stretch_row\" equal_height=\"yes\" content_placement=\"middle\" css=\".vc_custom_1571776445092{padding-top: 70px !important;padding-bottom: 50px !important;background-color: #f4f5f7 !important;}\" el_id=\"benefits\"][vc_column width=\"2/3\" offset=\"vc_col-lg-offset-2 vc_col-md-offset-2 vc_col-sm-offset-2\" css=\".vc_custom_1570630646410{padding-bottom: 60px !important;}\"][ultimate_heading main_heading=\"— reasons to work with me —\" main_heading_color=\"#a5d269\" sub_heading_color=\"#7bb519\" main_heading_margin=\"margin-bottom:5px;\" main_heading_style=\"font-style:italic;\" main_heading_font_size=\"desktop:22px;\" main_heading_line_height=\"desktop:28px;\" sub_heading_font_size=\"desktop:50px;mobile_landscape:40px;\" sub_heading_line_height=\"desktop:56px;mobile_landscape:46px;\" sub_heading_style=\"font-weight:700;\" main_heading_font_family=\"font_family:Josefin Sans|font_call:Josefin+Sans|variant:italic\" sub_heading_font_family=\"font_family:Josefin Sans|font_call:Josefin+Sans|variant:700\" sub_heading_margin=\"margin-bottom:30px;\"]Guaranteed Results[/ultimate_heading][vc_column_text]\n<p style=\"text-align: center;\">Ut pretium risus sit amet nisi vulputate porta. Ut hendrerit tempus purus in vulputate. Pellentesque dignissim dui ac dolor convallis, vitae!</p>\n[/vc_column_text][/vc_column][vc_column width=\"1/2\" offset=\"vc_col-lg-8 vc_col-md-8\" css=\".vc_custom_1571778132554{padding-bottom: 20px !important;}\"][vc_row_inner][vc_column_inner offset=\"vc_col-lg-6 vc_col-md-6\"][dt_icon_text layout=\"layout_3\" dt_text_title=\"100% money back guarantee\" heading_tag=\"h5\" dt_text_title_bottom_margin=\"\" dt_text_desc=\"\" show_btn=\"n\" icon_picker=\"fas fa-award\" dt_text_icon_bg_size=\"70px\" dt_text_icon_border_width=\"0px\" dt_text_icon_paddings=\"0px 20px 5px 0px\" dt_text_icon_color=\"#ffffff\" css_dt_carousel=\".vc_custom_1571666105681{padding-bottom: 30px !important;}\"][dt_icon_text layout=\"layout_3\" dt_text_title=\"Long lasting results\" heading_tag=\"h5\" dt_text_desc=\"\" show_btn=\"n\" icon_picker=\"fas fa-calendar-check\" dt_text_icon_bg_size=\"70px\" dt_text_icon_border_width=\"0px\" dt_text_icon_paddings=\"0px 20px 5px 0px\" dt_text_icon_color=\"#ffffff\" css_dt_carousel=\".vc_custom_1571666115885{padding-bottom: 30px !important;}\"][dt_icon_text layout=\"layout_3\" dt_text_title=\"No strict alcohol restrictions\" heading_tag=\"h5\" dt_text_desc=\"\" show_btn=\"n\" icon_picker=\"fas fa-glass-martini-alt\" dt_text_icon_bg_size=\"70px\" dt_text_icon_border_width=\"0px\" dt_text_icon_paddings=\"0px 20px 5px 0px\" dt_text_icon_color=\"#ffffff\" css_dt_carousel=\".vc_custom_1571666124175{padding-bottom: 30px !important;}\"][/vc_column_inner][vc_column_inner offset=\"vc_col-lg-6 vc_col-md-6\"][dt_icon_text layout=\"layout_3\" dt_text_title=\"Easy to follow meal plans\" heading_tag=\"h5\" dt_text_title_bottom_margin=\"\" dt_text_desc=\"\" show_btn=\"n\" icon_picker=\"fas fa-utensils\" dt_text_icon_bg_size=\"70px\" dt_text_icon_border_width=\"0px\" dt_text_icon_paddings=\"0px 20px 5px 0px\" dt_text_icon_color=\"#ffffff\" css_dt_carousel=\".vc_custom_1571666156554{padding-bottom: 30px !important;}\"][dt_icon_text layout=\"layout_3\" dt_text_title=\"Medical-based vitamins support\" heading_tag=\"h5\" dt_text_title_bottom_margin=\"\" dt_text_desc=\"\" show_btn=\"n\" icon_picker=\"fas fa-flask\" dt_text_icon_bg_size=\"70px\" dt_text_icon_border_width=\"0px\" dt_text_icon_paddings=\"0px 20px 5px 0px\" dt_text_icon_color=\"#ffffff\" css_dt_carousel=\".vc_custom_1571666162750{padding-bottom: 30px !important;}\"][dt_icon_text layout=\"layout_3\" dt_text_title=\"Easy to use nutrition diary\" heading_tag=\"h5\" dt_text_title_bottom_margin=\"\" dt_text_desc=\"\" show_btn=\"n\" icon_picker=\"fas fa-marker\" dt_text_icon_bg_size=\"70px\" dt_text_icon_border_width=\"0px\" dt_text_icon_paddings=\"0px 20px 5px 0px\" dt_text_icon_color=\"#ffffff\" css_dt_carousel=\".vc_custom_1571666174619{padding-bottom: 30px !important;}\"][/vc_column_inner][/vc_row_inner][/vc_column][vc_column css_animation=\"none\" width=\"1/2\" css=\".vc_custom_1572960998823{margin-right: 25px !important;margin-bottom: 40px !important;margin-left: 25px !important;padding-top: 80px !important;padding-right: 30px !important;padding-bottom: 80px !important;padding-left: 30px !important;background-image: url(https://the7.io/nutritionist/wp-content/uploads/sites/57/2019/10/art-dark-006.jpg?id=2363) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\" offset=\"vc_col-lg-offset-0 vc_col-lg-4 vc_col-md-offset-0 vc_col-md-4 vc_col-sm-offset-0 vc_col-xs-12\"][ultimate_heading main_heading=\"Real people. Real results.\" heading_tag=\"h3\" main_heading_color=\"#7bb519\" sub_heading_color=\"#ffffff\" main_heading_margin=\"margin-bottom:15px;\" main_heading_style=\"font-weight:bold;\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;\" sub_heading_line_height=\"desktop:32px;\" sub_heading_margin=\"margin-bottom:20px;\" sub_heading_font_family=\"font_family:Josefin Sans|font_call:Josefin+Sans|variant:italic\"]Check out what clients say about my programs![/ultimate_heading][dt_default_button link=\"url:%23!%2Ftestimonials|||\" smooth_scroll=\"y\" size=\"custom\" btn_width=\"btn_fixed_width\" custom_btn_width=\"200\" button_alignment=\"btn_center\" icon_size=\"16px\" button_padding=\"9px 14px 9px 14px\" border_width=\"2px\" border_radius=\"0px\" default_btn_border_hover=\"n\" icon_type=\"picker\" icon_picker=\"fas fa-users\" icon_align=\"right\"]Read testimonials[/dt_default_button][/vc_column][/vc_row][vc_row gap=\"30\" css=\".vc_custom_1571676243312{padding-top: 70px !important;padding-right: 30px !important;padding-bottom: 70px !important;padding-left: 30px !important;}\" el_id=\"programs\"][vc_column css=\".vc_custom_1570895827963{padding-bottom: 30px !important;}\"][ultimate_heading main_heading=\"— check out my readymade offers —\" main_heading_color=\"#a5d269\" sub_heading_color=\"#7bb519\" main_heading_margin=\"margin-bottom:5px;\" main_heading_style=\"font-style:italic;\" main_heading_font_size=\"desktop:22px;\" main_heading_line_height=\"desktop:28px;\" sub_heading_font_size=\"desktop:50px;mobile_landscape:40px;\" sub_heading_line_height=\"desktop:56px;mobile_landscape:46px;\" sub_heading_style=\"font-weight:700;\" main_heading_font_family=\"font_family:Josefin Sans|font_call:Josefin+Sans|variant:italic\" sub_heading_font_family=\"font_family:Josefin Sans|font_call:Josefin+Sans|variant:700\"]Nutrition Programs[/ultimate_heading][/vc_column][vc_column css_animation=\"none\" width=\"1/3\" css=\".vc_custom_1572960938883{border-top-width: 4px !important;border-right-width: 4px !important;border-bottom-width: 4px !important;border-left-width: 4px !important;padding-top: 30px !important;padding-right: 10px !important;padding-bottom: 30px !important;padding-left: 10px !important;border-left-color: #a5d269 !important;border-left-style: solid !important;border-right-color: #a5d269 !important;border-right-style: solid !important;border-top-color: #a5d269 !important;border-top-style: solid !important;border-bottom-color: #a5d269 !important;border-bottom-style: solid !important;}\"][dt_fancy_image image_id=\"1735\" width=\"120\" height=\"120\" border_radius=\"200px\" caption=\"off\" css=\".vc_custom_1571738001497{padding-bottom: 20px !important;}\"][ultimate_heading main_heading=\"Vegetarian\" heading_tag=\"h4\" sub_heading_color=\"#b4b5bb\" main_heading_margin=\"margin-bottom:5px;\" main_heading_style=\"font-weight:bold;\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:20px;\" sub_heading_line_height=\"desktop:26px;\" sub_heading_margin=\"margin-bottom:20px;\" sub_heading_font_family=\"font_family:Josefin Sans|font_call:Josefin+Sans|variant:italic\"]Simple &amp; nutritious[/ultimate_heading][dt_default_button link=\"url:%23!%2Fprogram1|||\" smooth_scroll=\"y\" size=\"custom\" btn_width=\"btn_fixed_width\" custom_btn_width=\"170\" button_alignment=\"btn_center\" icon_size=\"16px\" button_padding=\"9px 14px 9px 14px\" border_width=\"2px\" border_radius=\"0px\" default_btn_border_hover=\"n\" icon_type=\"picker\" icon_picker=\"Defaults-caret-down\" icon_align=\"right\"]View details[/dt_default_button][/vc_column][vc_column css_animation=\"none\" width=\"1/3\" css=\".vc_custom_1572960944946{border-top-width: 4px !important;border-right-width: 4px !important;border-bottom-width: 4px !important;border-left-width: 4px !important;padding-top: 30px !important;padding-right: 10px !important;padding-bottom: 30px !important;padding-left: 10px !important;border-left-color: #a5d269 !important;border-left-style: solid !important;border-right-color: #a5d269 !important;border-right-style: solid !important;border-top-color: #a5d269 !important;border-top-style: solid !important;border-bottom-color: #a5d269 !important;border-bottom-style: solid !important;}\"][dt_fancy_image image_id=\"1816\" width=\"120\" height=\"120\" border_radius=\"200px\" caption=\"off\" css=\".vc_custom_1571738005198{padding-bottom: 20px !important;}\"][ultimate_heading main_heading=\"Fitness\" heading_tag=\"h4\" sub_heading_color=\"#b4b5bb\" main_heading_margin=\"margin-bottom:5px;\" main_heading_style=\"font-weight:bold;\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:20px;\" sub_heading_line_height=\"desktop:26px;\" sub_heading_margin=\"margin-bottom:20px;\" sub_heading_font_family=\"font_family:Josefin Sans|font_call:Josefin+Sans|variant:italic\"]Smart balance[/ultimate_heading][dt_default_button link=\"url:%23!%2Fprogram2|||\" smooth_scroll=\"y\" size=\"custom\" btn_width=\"btn_fixed_width\" custom_btn_width=\"170\" button_alignment=\"btn_center\" icon_size=\"16px\" button_padding=\"9px 14px 9px 14px\" border_width=\"2px\" border_radius=\"0px\" default_btn_border_hover=\"n\" icon_type=\"picker\" icon_picker=\"Defaults-caret-down\" icon_align=\"right\"]View details[/dt_default_button][/vc_column][vc_column css_animation=\"none\" width=\"1/3\" css=\".vc_custom_1572960953384{border-top-width: 4px !important;border-right-width: 4px !important;border-bottom-width: 4px !important;border-left-width: 4px !important;padding-top: 30px !important;padding-right: 10px !important;padding-bottom: 30px !important;padding-left: 10px !important;border-left-color: #a5d269 !important;border-left-style: solid !important;border-right-color: #a5d269 !important;border-right-style: solid !important;border-top-color: #a5d269 !important;border-top-style: solid !important;border-bottom-color: #a5d269 !important;border-bottom-style: solid !important;}\"][dt_fancy_image image_id=\"1733\" width=\"120\" height=\"120\" border_radius=\"200px\" caption=\"off\" css=\".vc_custom_1571738008833{padding-bottom: 20px !important;}\"][ultimate_heading main_heading=\"Mediterranean\" heading_tag=\"h4\" sub_heading_color=\"#b4b5bb\" main_heading_margin=\"margin-bottom:5px;\" main_heading_style=\"font-weight:bold;\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:20px;\" sub_heading_line_height=\"desktop:26px;\" sub_heading_margin=\"margin-bottom:20px;\" sub_heading_font_family=\"font_family:Josefin Sans|font_call:Josefin+Sans|variant:italic\"]Healthy lifestyle[/ultimate_heading][dt_default_button link=\"url:%23!%2Fprogram3|||\" smooth_scroll=\"y\" size=\"custom\" btn_width=\"btn_fixed_width\" custom_btn_width=\"170\" button_alignment=\"btn_center\" icon_size=\"16px\" button_padding=\"9px 14px 9px 14px\" border_width=\"2px\" border_radius=\"0px\" default_btn_border_hover=\"n\" icon_type=\"picker\" icon_picker=\"Defaults-caret-down\" icon_align=\"right\"]View details[/dt_default_button][/vc_column][/vc_row][vc_row full_width=\"stretch_row_content_no_spaces\" equal_height=\"yes\" content_placement=\"middle\" css_animation=\"none\" bg_type=\"image\" parallax_style=\"vcpb-default\" bg_image_new=\"id^2143|url^https://farmchemie.yasithawd.com/wp-content/uploads/2019/10/b-f-002.jpg|caption^null|alt^null|title^b-f-002|description^null\" bg_image_repeat=\"no-repeat\" bg_img_attach=\"fixed\" bg_override=\"ex-full\" el_id=\"program1\"][vc_column css_animation=\"none\" width=\"5/12\" css=\".vc_custom_1572960926723{margin-top: 80px !important;margin-bottom: 80px !important;}\" offset=\"vc_col-lg-offset-2 vc_col-lg-4 vc_col-md-offset-1 vc_col-md-5 vc_col-sm-offset-1 vc_col-xs-offset-3 vc_col-xs-6\"][dt_fancy_image image_id=\"1924\" width=\"450\" height=\"650\" align=\"right\" caption=\"off\"][/vc_column][vc_column width=\"1/2\" css=\".vc_custom_1571687925322{margin-right: 0px !important;margin-left: 0px !important;padding-top: 80px !important;padding-right: 10% !important;padding-bottom: 80px !important;padding-left: 10% !important;background-color: #ffffff !important;}\" offset=\"vc_col-lg-offset-0 vc_col-lg-6 vc_col-md-offset-0 vc_col-md-6 vc_col-xs-12\"][ultimate_heading main_heading=\"Vegetarian Program\" heading_tag=\"h3\" sub_heading_color=\"#7bb519\" alignment=\"left\" main_heading_margin=\"margin-bottom:15px;\" main_heading_style=\"font-weight:bold;\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;\" sub_heading_line_height=\"desktop:28px;\" sub_heading_margin=\"margin-bottom:30px;\" sub_heading_font_family=\"font_family:Josefin Sans|font_call:Josefin+Sans|variant:italic\"]Ut pretium risus sit amet nisi vulputate porta. Vestibulum sodales! Nam accumsan libero sed imperdiet egestas.[/ultimate_heading][dt_vc_list style=\"2\" dividers=\"false\"]\n<ul>\n 	<li>Vestibulum sodales tempus enim congue quis</li>\n 	<li>Sodales tempus feugiat lectus congue</li>\n 	<li>Non feugiat lectus congue quis</li>\n</ul>\n[/dt_vc_list][vc_column_text css=\".vc_custom_1571688097497{padding-top: 10px !important;padding-bottom: 30px !important;}\"]Ut pretium risus sit amet nisi vulputate porta.\n\nVestibulum sodales tempus enim, non feugiat lectus congue quis. Nam accumsan libero sed imperdiet egestas. Pellentesque libero ligula, imperdiet quis lectus eu, tincidunt pellentesque felis. Ut pretium risus sit amet nisi vulputate porta.[/vc_column_text][dt_default_button link=\"url:%23!%2Fprices|||\" smooth_scroll=\"y\" size=\"custom\" btn_width=\"btn_fixed_width\" custom_btn_width=\"170\" icon_size=\"16px\" button_padding=\"9px 14px 9px 14px\" border_width=\"2px\" border_radius=\"0px\" default_btn_border_hover=\"n\" icon_type=\"picker\" icon_picker=\"fas fa-comment-dollar\" icon_align=\"right\" css=\".vc_custom_1571784287469{margin-right: 10px !important;margin-bottom: 10px !important;}\"]View price[/dt_default_button][dt_default_button link=\"url:%23!%2Fprices|||\" smooth_scroll=\"y\" size=\"custom\" btn_width=\"btn_fixed_width\" custom_btn_width=\"170\" icon_size=\"16px\" button_padding=\"9px 14px 9px 14px\" border_width=\"2px\" border_radius=\"0px\" text_color=\"#7bb519\" default_btn_border_color=\"#7bb519\" default_btn_bg=\"n\" default_btn_border_hover=\"n\" icon_type=\"picker\" icon_picker=\"fas fa-check-circle\" icon_align=\"right\" css=\".vc_custom_1571784290693{margin-right: 10px !important;margin-bottom: 10px !important;}\"]Order program[/dt_default_button][/vc_column][/vc_row][vc_row full_width=\"stretch_row_content_no_spaces\" equal_height=\"yes\" content_placement=\"middle\" bg_type=\"image\" parallax_style=\"vcpb-default\" bg_image_new=\"id^2144|url^https://farmchemie.yasithawd.com/wp-content/uploads/2019/10/b-f-003.jpg|caption^null|alt^null|title^b-f-003|description^null\" bg_image_repeat=\"no-repeat\" bg_img_attach=\"fixed\" bg_override=\"ex-full\" el_id=\"program2\" el_class=\"reverse-row-on-mobile\"][vc_column width=\"1/2\" css=\".vc_custom_1571687933338{margin-right: 0px !important;margin-left: 0px !important;padding-top: 80px !important;padding-right: 10% !important;padding-bottom: 80px !important;padding-left: 10% !important;background-color: #ffffff !important;}\" offset=\"vc_col-lg-offset-0 vc_col-lg-6 vc_col-md-offset-0 vc_col-md-6 vc_col-sm-offset-0 vc_col-xs-12\"][ultimate_heading main_heading=\"Fitness Program\" heading_tag=\"h3\" sub_heading_color=\"#7bb519\" alignment=\"left\" main_heading_margin=\"margin-bottom:15px;\" main_heading_style=\"font-weight:bold;\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;\" sub_heading_line_height=\"desktop:28px;\" sub_heading_margin=\"margin-bottom:30px;\" sub_heading_font_family=\"font_family:Josefin Sans|font_call:Josefin+Sans|variant:italic\"]Vestibulum sodales! Nam accumsan libero sed imperdiet egestas.[/ultimate_heading][dt_vc_list style=\"2\" dividers=\"false\"]\n<ul>\n 	<li>Vestibulum sodales tempus enim congue quis</li>\n 	<li>Sodales tempus feugiat lectus congue</li>\n 	<li>Tempus enim, non feugiat lectus congue quis</li>\n 	<li>Sodales tempus enim, non feugiat lectus congue</li>\n</ul>\n[/dt_vc_list][vc_column_text css=\".vc_custom_1571687359578{padding-top: 10px !important;padding-bottom: 30px !important;}\"]Vestibulum sodales tempus enim, non feugiat lectus congue quis. Nam accumsan libero sed imperdiet egestas.\n\nPellentesque libero ligula, imperdiet quis lectus eu, tincidunt pellentesque felis. Ut pretium risus sit amet nisi vulputate porta.[/vc_column_text][dt_default_button link=\"url:%23!%2Fprices|||\" smooth_scroll=\"y\" size=\"custom\" btn_width=\"btn_fixed_width\" custom_btn_width=\"170\" icon_size=\"16px\" button_padding=\"9px 14px 9px 14px\" border_width=\"2px\" border_radius=\"0px\" default_btn_border_hover=\"n\" icon_type=\"picker\" icon_picker=\"fas fa-comment-dollar\" icon_align=\"right\" css=\".vc_custom_1571784295297{margin-right: 10px !important;margin-bottom: 10px !important;}\"]View price[/dt_default_button][dt_default_button link=\"url:%23!%2Fprices|||\" smooth_scroll=\"y\" size=\"custom\" btn_width=\"btn_fixed_width\" custom_btn_width=\"170\" icon_size=\"16px\" button_padding=\"9px 14px 9px 14px\" border_width=\"2px\" border_radius=\"0px\" text_color=\"#7bb519\" default_btn_border_color=\"#7bb519\" default_btn_bg=\"n\" default_btn_border_hover=\"n\" icon_type=\"picker\" icon_picker=\"fas fa-check-circle\" icon_align=\"right\" css=\".vc_custom_1571784299431{margin-right: 10px !important;margin-bottom: 10px !important;}\"]Order program[/dt_default_button][/vc_column][vc_column css_animation=\"none\" width=\"5/12\" css=\".vc_custom_1572960919144{margin-top: 80px !important;margin-bottom: 80px !important;}\" offset=\"vc_col-lg-offset-0 vc_col-lg-4 vc_col-md-offset-0 vc_col-md-5 vc_col-sm-offset-0 vc_col-xs-offset-3 vc_col-xs-6\"][dt_fancy_image image_id=\"1923\" width=\"450\" height=\"650\" align=\"left\" caption=\"off\"][/vc_column][/vc_row][vc_row full_width=\"stretch_row_content_no_spaces\" equal_height=\"yes\" content_placement=\"middle\" bg_type=\"image\" parallax_style=\"vcpb-default\" bg_image_new=\"id^2150|url^https://farmchemie.yasithawd.com/wp-content/uploads/2019/10/b-f-008.jpg|caption^null|alt^null|title^b-f-008|description^null\" bg_image_repeat=\"no-repeat\" bg_img_attach=\"fixed\" bg_override=\"ex-full\" el_id=\"program3\"][vc_column css_animation=\"none\" width=\"5/12\" css=\".vc_custom_1572960932782{margin-top: 80px !important;margin-bottom: 80px !important;}\" offset=\"vc_col-lg-offset-2 vc_col-lg-4 vc_col-md-offset-1 vc_col-md-5 vc_col-sm-offset-1 vc_col-xs-offset-3 vc_col-xs-6\"][dt_fancy_image image_id=\"1922\" width=\"450\" height=\"650\" align=\"right\" caption=\"off\"][/vc_column][vc_column width=\"1/2\" css=\".vc_custom_1571687940372{margin-right: 0px !important;margin-left: 0px !important;padding-top: 80px !important;padding-right: 10% !important;padding-bottom: 80px !important;padding-left: 10% !important;background-color: #ffffff !important;}\" offset=\"vc_col-lg-offset-0 vc_col-lg-6 vc_col-md-offset-0 vc_col-md-6 vc_col-xs-12\"][ultimate_heading main_heading=\"Mediterranean Program\" heading_tag=\"h3\" sub_heading_color=\"#7bb519\" alignment=\"left\" main_heading_margin=\"margin-bottom:15px;\" main_heading_style=\"font-weight:bold;\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;\" sub_heading_line_height=\"desktop:28px;\" sub_heading_margin=\"margin-bottom:30px;\" sub_heading_font_family=\"font_family:Josefin Sans|font_call:Josefin+Sans|variant:italic\"]Ut pretium risus sit stibulum sodales! Nam accumsan libero sed imperdiet egestas.[/ultimate_heading][dt_vc_list style=\"2\" dividers=\"false\"]\n<ul>\n 	<li>Vestibulum sodales tempus enim congue quis</li>\n 	<li>Sodales tempus feugiat lectus congue</li>\n 	<li>Non feugiat lectus congue quis</li>\n 	<li>Tempus enim, non feugiat lectus congue quis</li>\n 	<li>Sodales tempus enim, non feugiat lectus congue</li>\n</ul>\n[/dt_vc_list][vc_column_text css=\".vc_custom_1571686876825{padding-top: 10px !important;padding-bottom: 30px !important;}\"]Vestibulum sodales tempus enim, non feugiat lectus congue quis. Nam accumsan libero sed imperdiet egestas. Pellentesque libero ligula, imperdiet quis lectus eu, tincidunt pellentesque felis.\n\nUt pretium risus sit amet nisi vulputate porta. Ut hendrerit tempus purus in vulputate. Vestibulum sodales tempus enim, non feugiat lectus congue quis. Nam accumsan libero sed imperdiet egestas. Pellentesque libero ligula, imperdiet quis lectus eu, tincidunt pellentesque felis. Ut pretium risus sit amet nisi![/vc_column_text][dt_default_button link=\"url:%23!%2Fprices|||\" smooth_scroll=\"y\" size=\"custom\" btn_width=\"btn_fixed_width\" custom_btn_width=\"170\" icon_size=\"16px\" button_padding=\"9px 14px 9px 14px\" border_width=\"2px\" border_radius=\"0px\" default_btn_border_hover=\"n\" icon_type=\"picker\" icon_picker=\"fas fa-comment-dollar\" icon_align=\"right\" css=\".vc_custom_1571784303751{margin-right: 10px !important;margin-bottom: 10px !important;}\"]View price[/dt_default_button][dt_default_button link=\"url:%23!%2Fprices|||\" smooth_scroll=\"y\" size=\"custom\" btn_width=\"btn_fixed_width\" custom_btn_width=\"170\" icon_size=\"16px\" button_padding=\"9px 14px 9px 14px\" border_width=\"2px\" border_radius=\"0px\" text_color=\"#7bb519\" default_btn_border_color=\"#7bb519\" default_btn_bg=\"n\" default_btn_border_hover=\"n\" icon_type=\"picker\" icon_picker=\"fas fa-check-circle\" icon_align=\"right\" css=\".vc_custom_1571784306785{margin-right: 10px !important;margin-bottom: 10px !important;}\"]Order program[/dt_default_button][/vc_column][/vc_row][vc_row full_width=\"stretch_row_content_no_spaces\" bg_type=\"image\" parallax_style=\"vcpb-default\" bg_image_new=\"id^2204|url^https://farmchemie.yasithawd.com/wp-content/uploads/2019/10/art-bg-nutr01.jpg|caption^null|alt^null|title^art-bg-nutr01|description^null\" bg_image_repeat=\"no-repeat\" bg_img_attach=\"fixed\" bg_override=\"ex-full\" css=\".vc_custom_1571740990811{padding-bottom: 70px !important;}\"][vc_column width=\"2/3\" offset=\"vc_col-lg-offset-5 vc_col-lg-7 vc_col-md-offset-4 vc_col-md-8 vc_col-sm-offset-4 vc_col-xs-12\" css=\".vc_custom_1571742174632{margin-right: 0px !important;margin-left: 0px !important;padding-top: 70px !important;padding-right: 7% !important;padding-bottom: 40px !important;padding-left: 7% !important;}\"][dt_testimonials_carousel content_layout=\"layout_1\" content_alignment=\"center\" content_bg=\"n\" post_content_paddings=\"0px 0px 0px 0px\" img_max_width=\"120px\" image_paddings=\"0px 0px 20px 0px\" img_border_radius=\"100px\" slides_on_wide_desk=\"1\" slides_on_desk=\"1\" slides_on_lapt=\"1\" slides_on_h_tabs=\"1\" post_title_font_size_phone=\"20px\" post_title_line_height_phone=\"30px\" post_title_bottom_margin=\"0px\" testimonial_position_font_size=\"18px\" testimonial_position_font_size_phone=\"15px\" testimonial_position_line_height=\"28px\" testimonial_position_line_height_phone=\"25px\" content_font_style=\"normal:normal:none\" content_font_size=\"20px\" content_line_height=\"34px\" content_bottom_margin=\"0px\" arrow_bg_width=\"40x\" arrow_bg_height=\"40px\" arrow_border_width=\"0px\" r_arrow_icon_paddings=\"0px 0px 0px 0px\" r_arrow_v_offset=\"0px\" r_arrow_h_offset=\"-30px\" l_arrow_icon_paddings=\"0px 0px 0px 0px\" l_arrow_v_offset=\"0px\" l_arrow_h_offset=\"-30px\" arrow_responsiveness=\"no-changes\" show_bullets=\"y\" bullets_style=\"scale-up\" bullet_color=\"#7bb519\" bullet_color_hover=\"#7bb519\" bullets_v_offset=\"0px\" bullets_h_offset=\"0px\" category=\"17\" css_dt_testimonials_carousel=\".vc_custom_1571823390537{padding-right: 20px !important;padding-left: 20px !important;}\"][/vc_column][/vc_row][vc_row full_width=\"stretch_row\" equal_height=\"yes\" content_placement=\"middle\" css=\".vc_custom_1571778028784{padding-top: 70px !important;padding-bottom: 50px !important;}\" el_id=\"questions\"][vc_column width=\"2/3\" offset=\"vc_col-lg-offset-2 vc_col-md-offset-2 vc_col-sm-offset-2\" css=\".vc_custom_1570630646410{padding-bottom: 60px !important;}\"][ultimate_heading main_heading=\"— questions &amp; answers —\" main_heading_color=\"#a5d269\" sub_heading_color=\"#7bb519\" main_heading_margin=\"margin-bottom:5px;\" main_heading_style=\"font-style:italic;\" main_heading_font_size=\"desktop:22px;\" main_heading_line_height=\"desktop:28px;\" sub_heading_font_size=\"desktop:50px;mobile_landscape:40px;\" sub_heading_line_height=\"desktop:56px;mobile_landscape:46px;\" sub_heading_style=\"font-weight:700;\" main_heading_font_family=\"font_family:Josefin Sans|font_call:Josefin+Sans|variant:italic\" sub_heading_font_family=\"font_family:Josefin Sans|font_call:Josefin+Sans|variant:700\" sub_heading_margin=\"margin-bottom:30px;\"]Common Questions[/ultimate_heading][vc_column_text]\n<p style=\"text-align: center;\">Ut pretium risus sit amet nisi vulputate porta. Ut hendrerit tempus purus in vulputate. Pellentesque dignissim dui ac dolor convallis, vitae!</p>\n[/vc_column_text][/vc_column][vc_column width=\"1/2\" offset=\"vc_col-lg-8 vc_col-md-8\" css=\".vc_custom_1571778140885{padding-bottom: 20px !important;}\"][vc_row_inner][vc_column_inner offset=\"vc_col-lg-6 vc_col-md-6\"][dt_icon_text layout=\"layout_3\" dt_text_title=\"When will I see first results?\" heading_tag=\"h5\" dt_text_desc=\"Ut pretium risus sit amet nisi vulputate porta. Ut hendrerit tempus purus in vulputate.\" dt_text_content_font_size=\"17px\" dt_text_content_line_height=\"30px\" show_btn=\"n\" icon_picker=\"fas fa-question-circle\" dt_text_icon_bg_size=\"32px\" dt_text_icon_border_width=\"0px\" dt_text_icon_paddings=\"0px 10px 15px 0px\" dt_text_icon_color=\"\" dt_icon_bg=\"n\" css_dt_carousel=\".vc_custom_1571666210466{padding-bottom: 30px !important;}\"][dt_icon_text layout=\"layout_3\" dt_text_title=\"Will I have a personal coach?\" heading_tag=\"h5\" dt_text_desc=\"Ut pretium risus sit amet nisi vulputate porta. Ut hendrerit tempus purus in vulputate.\" dt_text_content_font_size=\"17px\" dt_text_content_line_height=\"30px\" show_btn=\"n\" icon_picker=\"fas fa-question-circle\" dt_text_icon_bg_size=\"32px\" dt_text_icon_border_width=\"0px\" dt_text_icon_paddings=\"0px 10px 15px 0px\" dt_text_icon_color=\"\" dt_icon_bg=\"n\" css_dt_carousel=\".vc_custom_1571666361917{padding-bottom: 30px !important;}\"][dt_icon_text layout=\"layout_3\" dt_text_title=\"Are your programs safe fo my health?\" heading_tag=\"h5\" dt_text_desc=\"Ut hendrerit tempus purus in vulputate. Pellentesque dignissim dui ac dolor convallis, vitae!\" dt_text_content_font_size=\"17px\" dt_text_content_line_height=\"30px\" show_btn=\"n\" icon_picker=\"fas fa-question-circle\" dt_text_icon_bg_size=\"32px\" dt_text_icon_border_width=\"0px\" dt_text_icon_paddings=\"0px 10px 15px 0px\" dt_text_icon_color=\"\" dt_icon_bg=\"n\" css_dt_carousel=\".vc_custom_1571666217380{padding-bottom: 30px !important;}\"][/vc_column_inner][vc_column_inner offset=\"vc_col-lg-6 vc_col-md-6\"][dt_icon_text layout=\"layout_3\" dt_text_title=\"Do I have to exercise?\" heading_tag=\"h5\" dt_text_desc=\"Lorem isus sit amet nisi vulputaten vulputates in vulputate. Pellentesque nulla from!\" dt_text_content_font_size=\"17px\" dt_text_content_line_height=\"30px\" show_btn=\"n\" icon_picker=\"fas fa-question-circle\" dt_text_icon_bg_size=\"32px\" dt_text_icon_border_width=\"0px\" dt_text_icon_paddings=\"0px 10px 15px 0px\" dt_text_icon_color=\"\" dt_icon_bg=\"n\" css_dt_carousel=\".vc_custom_1571666457523{padding-bottom: 30px !important;}\"][dt_icon_text layout=\"layout_3\" dt_text_title=\"Will I have any restrictions?\" heading_tag=\"h5\" dt_text_desc=\"Lorem pretium us purus in vulputate. Pellentesque nulla from met glavrida dignissim dui ac dolor convallis, vitae!\" dt_text_content_font_size=\"17px\" dt_text_content_line_height=\"30px\" show_btn=\"n\" icon_picker=\"fas fa-question-circle\" dt_text_icon_bg_size=\"32px\" dt_text_icon_border_width=\"0px\" dt_text_icon_paddings=\"0px 10px 15px 0px\" dt_text_icon_color=\"\" dt_icon_bg=\"n\" css_dt_carousel=\".vc_custom_1571666213920{padding-bottom: 30px !important;}\"][dt_icon_text layout=\"layout_3\" dt_text_title=\"Is it hard to stay fit?\" heading_tag=\"h5\" dt_text_desc=\"Amet nisi vulputate porta. Ut hendrerit tempus purus in vulputate dolor.\" dt_text_content_font_size=\"17px\" dt_text_content_line_height=\"30px\" show_btn=\"n\" icon_picker=\"fas fa-question-circle\" dt_text_icon_bg_size=\"32px\" dt_text_icon_border_width=\"0px\" dt_text_icon_paddings=\"0px 10px 15px 0px\" dt_text_icon_color=\"\" dt_icon_bg=\"n\" css_dt_carousel=\".vc_custom_1571666391675{padding-bottom: 30px !important;}\"][/vc_column_inner][/vc_row_inner][/vc_column][vc_column css_animation=\"none\" width=\"1/2\" css=\".vc_custom_1572961015403{margin-right: 25px !important;margin-bottom: 40px !important;margin-left: 25px !important;padding-top: 80px !important;padding-right: 30px !important;padding-bottom: 80px !important;padding-left: 30px !important;background-image: url(https://the7.io/nutritionist/wp-content/uploads/sites/57/2019/10/art-dark-010.jpg?id=2378) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\" offset=\"vc_col-lg-4 vc_col-md-4\"][ultimate_heading main_heading=\"Still hesitating?\" heading_tag=\"h3\" main_heading_color=\"#7bb519\" sub_heading_color=\"#ffffff\" main_heading_margin=\"margin-bottom:15px;\" main_heading_style=\"font-weight:bold;\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:22px;\" sub_heading_line_height=\"desktop:32px;\" sub_heading_margin=\"margin-bottom:20px;\" sub_heading_font_family=\"font_family:Josefin Sans|font_call:Josefin+Sans|variant:italic\"]Contact us today &amp; get 1 month trial <span style=\"color: #7bb519;\"><strong>100% FREE</strong>!</span>[/ultimate_heading][dt_default_button link=\"url:%23!%2Fcontact|||\" smooth_scroll=\"y\" size=\"custom\" btn_width=\"btn_fixed_width\" custom_btn_width=\"170\" button_alignment=\"btn_center\" icon_size=\"16px\" button_padding=\"9px 14px 9px 14px\" border_radius=\"0px\" icon_type=\"picker\" icon_picker=\"icomoon-the7-font-the7-mail-01\" icon_align=\"right\"]Contact us[/dt_default_button][/vc_column][/vc_row][vc_row equal_height=\"yes\" bg_type=\"image\" parallax_style=\"vcpb-default\" bg_image_new=\"id^1393|url^https://farmchemie.yasithawd.com/wp-content/uploads/2019/10/n-bg021.jpg|caption^null|alt^null|title^n-bg021|description^null\" bg_img_attach=\"fixed\" bg_override=\"ex-full\" enable_overlay=\"enable_overlay_value\" overlay_color=\"rgba(0,0,0,0.3)\" css=\".vc_custom_1571307696176{padding-top: 70px !important;padding-bottom: 70px !important;}\" el_id=\"prices\"][vc_column width=\"5/6\" offset=\"vc_col-lg-offset-3 vc_col-lg-6 vc_col-md-offset-2 vc_col-md-8 vc_col-sm-offset-1\" css=\".vc_custom_1570811252407{padding-bottom: 60px !important;}\"][ultimate_heading main_heading=\"— make your choice —\" main_heading_color=\"rgba(255,255,255,0.7)\" sub_heading_color=\"#ffffff\" main_heading_margin=\"margin-bottom:5px;\" main_heading_style=\"font-style:italic;\" main_heading_font_size=\"desktop:22px;\" main_heading_line_height=\"desktop:28px;\" sub_heading_font_size=\"desktop:50px;mobile_landscape:40px;\" sub_heading_line_height=\"desktop:56px;mobile_landscape:46px;\" sub_heading_style=\"font-weight:700;\" main_heading_font_family=\"font_family:Josefin Sans|font_call:Josefin+Sans|variant:italic\" sub_heading_font_family=\"font_family:Josefin Sans|font_call:Josefin+Sans|variant:700\"]Pricing Plans[/ultimate_heading][/vc_column][vc_column css=\".vc_custom_1570811379442{padding-bottom: 20px !important;}\"][vc_row_inner][vc_column_inner width=\"1/3\"][ultimate_pricing design_style=\"design02\" color_scheme=\"custom\" color_bg_main=\"#ffffff\" color_txt_main=\"#ffffff\" color_bg_highlight=\"#85c21b\" package_heading=\"BASIC\" package_sub_heading=\"Quick start\" sub_heading_tag=\"span\" package_price=\"$49\" package_unit=\"per month\" package_btn_text=\"Order now\" package_link=\"url:%23!%2Forder|||\" package_name_font_color=\"#ffffff\" subheading_font_color=\"rgba(255,255,255,0.6)\" price_font_color=\"#535555\" price_unit_font_color=\"#b4b5bb\" features_font_color=\"#535555\" button_font_color=\"#ffffff\" min_ht=\"480\" price_font_size=\"desktop:60px;\" price_line_height=\"desktop:70px;\" price_unit_font_size=\"desktop:17px;\" price_unit_line_height=\"desktop:20px;\" package_name_font_style=\"font-weight:bold;\" package_name_font_size=\"desktop:26px;\" package_name_line_height=\"desktop:36px;\" subheading_font_size=\"desktop:20px;\" subheading_line_height=\"desktop:24px;\" features_font_size=\"desktop:17px;\" features_line_height=\"desktop:30px;\" button_font_size=\"desktop:15px;\" button_line_height=\"desktop:15px;\" el_class=\"anchor-link\"]Nutrition plan +\n\n<span style=\"color: #b4b5bb;\">Nutrition diary -</span>\n\n<span style=\"color: #b4b5bb;\">Exercise program -</span>\n\n<span style=\"color: #b4b5bb;\">Personal coach -</span>\n\n<span style=\"color: #b4b5bb;\">24/7 support -</span>[/ultimate_pricing][/vc_column_inner][vc_column_inner width=\"1/3\"][ultimate_pricing design_style=\"design02\" color_scheme=\"custom\" color_bg_main=\"#ffffff\" color_txt_main=\"#ffffff\" color_bg_highlight=\"#85c21b\" package_heading=\"STANDARD\" package_sub_heading=\"Smart balance\" sub_heading_tag=\"span\" package_price=\"$99\" package_unit=\"per month\" package_btn_text=\"Order now\" package_link=\"url:%23!%2Forder|||\" package_name_font_color=\"#ffffff\" subheading_font_color=\"rgba(255,255,255,0.6)\" price_font_color=\"#535555\" price_unit_font_color=\"#b4b5bb\" features_font_color=\"#535555\" button_font_color=\"#ffffff\" min_ht=\"480\" price_font_size=\"desktop:60px;\" price_line_height=\"desktop:70px;\" price_unit_font_size=\"desktop:17px;\" price_unit_line_height=\"desktop:20px;\" package_name_font_style=\"font-weight:bold;\" package_name_font_size=\"desktop:26px;\" package_name_line_height=\"desktop:36px;\" subheading_font_size=\"desktop:20px;\" subheading_line_height=\"desktop:24px;\" features_font_size=\"desktop:17px;\" features_line_height=\"desktop:30px;\" button_font_size=\"desktop:15px;\" button_line_height=\"desktop:15px;\" el_class=\"anchor-link\"]Nutrition plan +\n\nNutrition diary +\n\nExercise program +\n\n<span style=\"color: #b4b5bb;\">Personal coach -</span>\n\n<span style=\"color: #b4b5bb;\">24/7 support -</span>[/ultimate_pricing][/vc_column_inner][vc_column_inner width=\"1/3\"][ultimate_pricing design_style=\"design02\" color_scheme=\"custom\" color_bg_main=\"#ffffff\" color_txt_main=\"#ffffff\" color_bg_highlight=\"#85c21b\" package_heading=\"EXTENDED\" package_sub_heading=\"Full experience\" sub_heading_tag=\"span\" package_price=\"$139\" package_unit=\"per month\" package_btn_text=\"Order now\" package_link=\"url:%23!%2Forder|||\" package_name_font_color=\"#ffffff\" subheading_font_color=\"rgba(255,255,255,0.6)\" price_font_color=\"#535555\" price_unit_font_color=\"#b4b5bb\" features_font_color=\"#535555\" button_font_color=\"#ffffff\" min_ht=\"480\" price_font_size=\"desktop:60px;\" price_line_height=\"desktop:70px;\" price_unit_font_size=\"desktop:17px;\" price_unit_line_height=\"desktop:20px;\" package_name_font_style=\"font-weight:bold;\" package_name_font_size=\"desktop:26px;\" package_name_line_height=\"desktop:36px;\" subheading_font_size=\"desktop:20px;\" subheading_line_height=\"desktop:24px;\" features_font_size=\"desktop:17px;\" features_line_height=\"desktop:30px;\" button_font_size=\"desktop:15px;\" button_line_height=\"desktop:15px;\" el_class=\"anchor-link\"]Nutrition plan +\n\nNutrition diary +\n\nExercise program +\n\nPersonal coach +\n\n24/7 support +[/ultimate_pricing][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"5/6\" offset=\"vc_col-lg-offset-3 vc_col-lg-6 vc_col-md-offset-3 vc_col-md-6 vc_col-sm-offset-2\"][vc_column_text]\n<p style=\"text-align: center;\"><span style=\"color: #ffffff;\">Ut pretium risus sit amet nisi vulputate porta. Ut hendrerit tempus purus in vulputate. Pellentesque dignissim dui ac dolor convallis, vitae!</span></p>\n[/vc_column_text][/vc_column][/vc_row][vc_row full_width=\"stretch_row_content_no_spaces\" bg_type=\"image\" parallax_style=\"vcpb-default\" bg_image_new=\"id^1467|url^https://farmchemie.yasithawd.com/wp-content/uploads/2019/10/n-bg056.jpg|caption^null|alt^null|title^n-bg056|description^null\" bg_image_repeat=\"no-repeat\" bg_img_attach=\"fixed\" bg_override=\"ex-full\" css=\".vc_custom_1571739000318{padding-top: 80px !important;padding-bottom: 80px !important;}\"][vc_column width=\"3/4\" offset=\"vc_col-lg-offset-0 vc_col-lg-8 vc_col-md-offset-0 vc_col-md-8 vc_col-sm-offset-0\" css=\".vc_custom_1571779050147{margin-right: 0px !important;margin-left: 0px !important;padding-right: 10% !important;padding-left: 10% !important;}\"][vc_row_inner equal_height=\"yes\" content_placement=\"middle\"][vc_column_inner width=\"5/12\" css=\".vc_custom_1571779095999{padding-right: 15px !important;padding-bottom: 30px !important;padding-left: 15px !important;}\" offset=\"vc_col-lg-3 vc_col-md-4 vc_col-xs-6\"][dt_fancy_image image_id=\"1150\" width=\"\" border_radius=\"500px\"][/vc_column_inner][vc_column_inner width=\"7/12\" css=\".vc_custom_1571779151656{padding-right: 15px !important;padding-bottom: 30px !important;padding-left: 15px !important;}\" offset=\"vc_col-lg-9 vc_col-md-8 vc_col-xs-12\"][ultimate_heading main_heading=\"Dr. Anna Seven\" heading_tag=\"h3\" sub_heading_color=\"#7bb519\" alignment=\"left\" main_heading_margin=\"margin-bottom:15px;\" main_heading_style=\"font-weight:bold;\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:24px;mobile_landscape:20px;\" sub_heading_line_height=\"desktop:34px;mobile_landscape:22px;\" sub_heading_font_family=\"font_family:Josefin Sans|font_call:Josefin+Sans|variant:italic\" main_heading_font_size=\"mobile_landscape:24px;\" main_heading_line_height=\"mobile_landscape:24px;\"]Certified nutritionist &amp; lifestyle coach[/ultimate_heading][/vc_column_inner][vc_column_inner css=\".vc_custom_1570961719371{padding-right: 15px !important;padding-left: 15px !important;}\"][ultimate_heading heading_tag=\"h3\" alignment=\"left\" main_heading_style=\"font-weight:bold;\" sub_heading_font_size=\"desktop:24px;tablet_portrait:20px;\" sub_heading_line_height=\"desktop:38px;tablet_portrait:34px;\" sub_heading_font_family=\"font_family:|font_call:\"]\"Dolor amen glavrida – dellentesque dignissim dui ac dolor convallis, vitae from. Ut pretium risus sit amet nisi vulputate porta. Ut hendrerit tempus purus in vulputate. Pellentesque dignissim dui ac dolor convallis, vitae!\"[/ultimate_heading][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row full_width=\"stretch_row\" equal_height=\"yes\" content_placement=\"middle\" css=\".vc_custom_1571778741464{padding-top: 70px !important;padding-bottom: 50px !important;background-color: #ffffff !important;}\" el_id=\"order\"][vc_column width=\"2/3\" offset=\"vc_col-lg-offset-2 vc_col-md-offset-2 vc_col-sm-offset-2\" css=\".vc_custom_1571818976642{padding-bottom: 60px !important;}\"][ultimate_heading main_heading=\"— improve your life—\" main_heading_color=\"#a5d269\" sub_heading_color=\"#7bb519\" main_heading_margin=\"margin-bottom:5px;\" main_heading_style=\"font-style:italic;\" main_heading_font_size=\"desktop:22px;\" main_heading_line_height=\"desktop:28px;\" sub_heading_font_size=\"desktop:50px;mobile_landscape:40px;\" sub_heading_line_height=\"desktop:56px;mobile_landscape:46px;\" sub_heading_style=\"font-weight:700;\" main_heading_font_family=\"font_family:Josefin Sans|font_call:Josefin+Sans|variant:italic\" sub_heading_font_family=\"font_family:Josefin Sans|font_call:Josefin+Sans|variant:700\"]Order Program[/ultimate_heading][/vc_column][vc_column width=\"1/2\" offset=\"vc_col-lg-offset-0\" css=\".vc_custom_1571778746664{margin-bottom: 40px !important;}\"][contact-form-7 id=\"1752\"][vc_column_text css=\".vc_custom_1570960289601{padding-top: 30px !important;}\"]\n<p style=\"text-align: left;\">Ut pretium risus sit amet nisi vulputate porta. Ut hendrerit tempus purus in vulputate. Pellentesque dignissim dui ac dolor convallis, vitae!</p>\n[/vc_column_text][/vc_column][vc_column css_animation=\"none\" width=\"1/2\" css=\".vc_custom_1572961026972{margin-right: 25px !important;margin-bottom: 40px !important;margin-left: 25px !important;padding-top: 50px !important;padding-right: 15% !important;padding-bottom: 150px !important;padding-left: 15% !important;background-image: url(https://the7.io/nutritionist/wp-content/uploads/sites/57/2019/10/banner-bg-n.jpg?id=1307) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\"][ultimate_heading main_heading=\"It\'s time to eat good &amp; feel good!\" main_heading_color=\"#7bb519\" sub_heading_color=\"#ffffff\" main_heading_margin=\"margin-bottom:15px;\" main_heading_style=\"font-weight:bold;\" sub_heading_style=\"font-style:italic;\" sub_heading_font_size=\"desktop:24px;\" sub_heading_line_height=\"desktop:34px;\" sub_heading_margin=\"margin-bottom:20px;\" sub_heading_font_family=\"font_family:Josefin Sans|font_call:Josefin+Sans|variant:italic\"]Order nutrition program today &amp; get 1 additional month\n<span style=\"color: #7bb519;\"><strong>100% FREE</strong>!</span>[/ultimate_heading][/vc_column][/vc_row][vc_row full_width=\"stretch_row_content\" bg_type=\"image\" parallax_style=\"vcpb-default\" bg_image_new=\"id^1875|url^https://farmchemie.yasithawd.com/wp-content/uploads/2019/10/bg-n-064.jpg|caption^null|alt^null|title^bg-n-064|description^null\" bg_image_repeat=\"no-repeat\" bg_img_attach=\"fixed\" bg_override=\"ex-full\" enable_overlay=\"enable_overlay_value\" overlay_color=\"rgba(0,0,0,0.3)\" css=\".vc_custom_1572882217514{padding-right: 25px !important;padding-bottom: 60px !important;padding-left: 25px !important;}\" el_id=\"testimonials\"][vc_column offset=\"vc_col-lg-offset-0 vc_col-md-offset-0 vc_col-sm-offset-0\" css=\".vc_custom_1572882204703{padding-top: 70px !important;}\"][dt_testimonials_masonry content_layout=\"layout_1\" content_alignment=\"center\" content_bg=\"n\" post_content_paddings=\"0px 0px 0px 0px\" img_max_width=\"90px\" image_paddings=\"0px 0px 20px 0px\" img_border_radius=\"60px\" bwb_columns=\"desktop:4|h_tablet:4|v_tablet:2|phone:1\" gap_between_posts=\"25\" post_title_font_size=\"22px\" post_title_line_height=\"30px\" custom_title_color=\"#ffffff\" post_title_bottom_margin=\"0px\" testimonial_position_font_size=\"17px\" testimonial_position_line_height=\"28px\" content_bottom_margin=\"0px\" dis_posts_total=\"4\" category=\"\"][/vc_column][/vc_row][vc_row full_width=\"stretch_row_content_no_spaces\" equal_height=\"yes\" css=\".vc_custom_1571307714139{padding-top: 70px !important;padding-bottom: 90px !important;}\" el_id=\"blog\"][vc_column width=\"5/6\" offset=\"vc_col-lg-offset-3 vc_col-lg-6 vc_col-md-offset-2 vc_col-md-8 vc_col-sm-offset-1\" css=\".vc_custom_1570715969435{padding-bottom: 60px !important;}\"][ultimate_heading main_heading=\"— check out my blog —\" main_heading_color=\"#a5d269\" sub_heading_color=\"#7bb519\" main_heading_margin=\"margin-bottom:5px;\" main_heading_style=\"font-style:italic;\" main_heading_font_size=\"desktop:22px;\" main_heading_line_height=\"desktop:28px;\" sub_heading_font_size=\"desktop:50px;mobile_landscape:40px;\" sub_heading_line_height=\"desktop:56px;mobile_landscape:46px;\" sub_heading_style=\"font-weight:700;\" main_heading_font_family=\"font_family:Josefin Sans|font_call:Josefin+Sans|variant:italic\" sub_heading_font_family=\"font_family:Josefin Sans|font_call:Josefin+Sans|variant:700\" sub_heading_margin=\"margin-bottom:30px;\"]Useful Articles[/ultimate_heading][vc_column_text]\n<p style=\"text-align: center;\">Ut pretium risus sit amet nisi vulputate porta. Ut hendrerit tempus purus in vulputate. Pellentesque dignissim dui ac dolor convallis, vitae!</p>\n[/vc_column_text][/vc_column][vc_column][dt_blog_carousel post_type=\"posts\" dis_posts_total=\"12\" posts_offset=\"0\" layout=\"gradient_rollover\" custom_content_bg_color=\"rgba(0,0,0,0.5)\" post_content_paddings=\"0px 30px 30px 30px\" resized_image_dimensions=\"3x4\" slides_on_wide_desk=\"5\" slides_on_desk=\"4\" slides_on_h_tabs=\"2\" stage_padding=\"70\" adaptive_height=\"n\" custom_title_color=\"#ffffff\" post_title_bottom_margin=\"10px\" post_date=\"n\" post_category=\"n\" post_author=\"n\" post_comments=\"n\" meta_info_font_style=\"normal:normal:uppercase\" custom_meta_color=\"#ffffff\" post_content=\"off\" read_more_button=\"default_button\" fancy_date=\"y\" arrow_bg_width=\"40x\" arrow_bg_height=\"40px\" arrow_border_width=\"0px\" arrow_bg_color=\"#7bb519\" r_arrow_icon_paddings=\"0px 0px 0px 0px\" r_arrow_v_offset=\"0px\" r_arrow_h_offset=\"20px\" l_arrow_icon_paddings=\"0px 0px 0px 0px\" l_arrow_v_offset=\"0px\" l_arrow_h_offset=\"20px\" posts=\"\"][/vc_column][/vc_row][vc_row equal_height=\"yes\" bg_type=\"image\" parallax_style=\"vcpb-default\" bg_image_new=\"id^1762|url^https://farmchemie.yasithawd.com/wp-content/uploads/2019/10/bg-n-contact.jpg|caption^null|alt^null|title^bg-n-contact|description^null\" bg_img_attach=\"fixed\" bg_override=\"ex-full\" css=\".vc_custom_1571307722298{padding-top: 70px !important;padding-bottom: 70px !important;}\" el_id=\"contact\"][vc_column width=\"5/6\" offset=\"vc_col-lg-offset-3 vc_col-lg-6 vc_col-md-offset-2 vc_col-md-8 vc_col-sm-offset-1\" css=\".vc_custom_1571823370491{padding-right: 20px !important;padding-bottom: 60px !important;padding-left: 20px !important;}\"][ultimate_heading main_heading=\"— any questions? —\" main_heading_color=\"#a5d269\" sub_heading_color=\"#7bb519\" main_heading_margin=\"margin-bottom:5px;\" main_heading_style=\"font-style:italic;\" main_heading_font_size=\"desktop:22px;\" main_heading_line_height=\"desktop:28px;\" sub_heading_font_size=\"desktop:50px;mobile_landscape:40px;\" sub_heading_line_height=\"desktop:56px;mobile_landscape:46px;\" sub_heading_style=\"font-weight:700;\" main_heading_font_family=\"font_family:Josefin Sans|font_call:Josefin+Sans|variant:italic\" sub_heading_font_family=\"font_family:Josefin Sans|font_call:Josefin+Sans|variant:700\"]Contact Us[/ultimate_heading][/vc_column][vc_column css=\".vc_custom_1570811379442{padding-bottom: 20px !important;}\"][vc_row_inner][vc_column_inner width=\"1/2\" css=\".vc_custom_1571780980344{padding-bottom: 20px !important;}\"][dt_contact_form fields=\"name,email,telephone,message\" message_height=\"5\" required=\"name,email,telephone,message\"][/vc_column_inner][vc_column_inner width=\"1/2\" css=\".vc_custom_1571780994409{padding-bottom: 5px !important;}\"][vc_column_text css=\".vc_custom_1571321124547{padding-bottom: 30px !important;}\"]Ut pretium risus sit - amet nisi vulputate porta pretium risus sit amet nisi vulputate porta. Ut hendrerit tempus purus in vulputate. Pellentesque dignissim! Вignissim dui ac dolor convallis, vitae![/vc_column_text][dt_icon_text layout=\"layout_3\" dt_text_title=\"We are online 24/7\" heading_tag=\"h5\" dt_text_desc=\"\" show_btn=\"n\" icon_picker=\"icomoon-the7-font-the7-clock-00\" dt_text_icon_bg_size=\"32px\" dt_text_icon_border_width=\"0px\" dt_text_icon_paddings=\"0px 10px 5px 0px\" dt_text_icon_color=\"\" dt_icon_bg=\"n\" css_dt_carousel=\".vc_custom_1571781212809{padding-bottom: 15px !important;}\"][dt_icon_text layout=\"layout_3\" dt_text_title=\"+1 234 56 789\" heading_tag=\"h5\" dt_text_desc=\"\" show_btn=\"n\" icon_picker=\"icomoon-the7-font-the7-phone-04\" dt_text_icon_bg_size=\"32px\" dt_text_icon_border_width=\"0px\" dt_text_icon_paddings=\"0px 10px 5px 0px\" dt_text_icon_color=\"\" dt_icon_bg=\"n\" css_dt_carousel=\".vc_custom_1571781287492{padding-bottom: 15px !important;}\"][dt_icon_text layout=\"layout_3\" dt_text_title=\"LA, California\" heading_tag=\"h5\" dt_text_desc=\"\" show_btn=\"n\" icon_picker=\"icomoon-the7-font-the7-map-07\" dt_text_icon_bg_size=\"32px\" dt_text_icon_border_width=\"0px\" dt_text_icon_paddings=\"0px 10px 5px 0px\" dt_text_icon_color=\"\" dt_icon_bg=\"n\" css_dt_carousel=\".vc_custom_1571781350799{padding-bottom: 15px !important;}\"][dt_icon_text layout=\"layout_3\" dt_text_title=\"hello@the7.io\" heading_tag=\"h5\" dt_text_desc=\"\" show_btn=\"n\" icon_picker=\"icomoon-the7-font-the7-mail-08\" dt_text_icon_bg_size=\"32px\" dt_text_icon_border_width=\"0px\" dt_text_icon_paddings=\"0px 10px 5px 0px\" dt_text_icon_color=\"\" dt_icon_bg=\"n\" css_dt_carousel=\".vc_custom_1571781370752{padding-bottom: 15px !important;}\"][/vc_column_inner][/vc_row_inner][vc_row_inner css=\".vc_custom_1571321026293{padding-top: 50px !important;}\"][vc_column_inner width=\"1/2\" offset=\"vc_col-lg-3 vc_col-md-3\"][dt_default_button link=\"url:https%3A%2F%2Fthe7.io|||\" size=\"custom\" btn_width=\"btn_full_width\" font_size=\"20px\" icon_size=\"28px\" button_padding=\"22px 5px 22px 5px\" border_radius=\"0px\" text_color=\"#7bb519\" default_btn_bg_color=\"rgba(0,0,0,0.06)\" text_hover_color=\"#7bb519\" bg_hover_color=\"rgba(0,0,0,0.08)\" icon_type=\"picker\" icon_picker=\"icomoon-the7-font-instagram\" icon_align=\"right\" css=\".vc_custom_1572961070105{margin-bottom: 12px !important;}\"]Instagram[/dt_default_button][/vc_column_inner][vc_column_inner width=\"1/2\" offset=\"vc_col-lg-3 vc_col-md-3\"][dt_default_button link=\"url:https%3A%2F%2Fthe7.io|||\" size=\"custom\" btn_width=\"btn_full_width\" font_size=\"20px\" icon_size=\"28px\" button_padding=\"22px 5px 22px 5px\" border_radius=\"0px\" text_color=\"#7bb519\" default_btn_bg_color=\"rgba(0,0,0,0.06)\" text_hover_color=\"#7bb519\" bg_hover_color=\"rgba(0,0,0,0.08)\" icon_type=\"picker\" icon_picker=\"icomoon-the7-font-facebook\" icon_align=\"right\" css=\".vc_custom_1572961077242{margin-bottom: 12px !important;}\"]Facebook[/dt_default_button][/vc_column_inner][vc_column_inner width=\"1/2\" offset=\"vc_col-lg-3 vc_col-md-3\"][dt_default_button link=\"url:https%3A%2F%2Fthe7.io|||\" size=\"custom\" btn_width=\"btn_full_width\" font_size=\"20px\" icon_size=\"28px\" button_padding=\"22px 5px 22px 5px\" border_radius=\"0px\" text_color=\"#7bb519\" default_btn_bg_color=\"rgba(0,0,0,0.06)\" text_hover_color=\"#7bb519\" bg_hover_color=\"rgba(0,0,0,0.08)\" icon_type=\"picker\" icon_picker=\"icomoon-the7-font-youtube\" icon_align=\"right\" css=\".vc_custom_1572961081033{margin-bottom: 12px !important;}\"]YouTube[/dt_default_button][/vc_column_inner][vc_column_inner width=\"1/2\" offset=\"vc_col-lg-3 vc_col-md-3\"][dt_default_button link=\"url:https%3A%2F%2Fthe7.io|||\" size=\"custom\" btn_width=\"btn_full_width\" font_size=\"20px\" icon_size=\"28px\" button_padding=\"22px 5px 22px 5px\" border_radius=\"0px\" text_color=\"#7bb519\" default_btn_bg_color=\"rgba(0,0,0,0.06)\" text_hover_color=\"#7bb519\" bg_hover_color=\"rgba(0,0,0,0.08)\" icon_type=\"picker\" icon_picker=\"icomoon-the7-font-twitter\" icon_align=\"right\" css=\".vc_custom_1572961084926{margin-bottom: 12px !important;}\"]Twitter[/dt_default_button][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row]','Home','','publish','closed','closed','','homepage','','','2019-10-16 16:38:53','2019-10-16 16:38:53','',0,'https://the7.io/nutritionist/?page_id=1577',5,'page','',0),(1002,1,'2018-10-10 15:18:01','2018-10-10 15:18:01','Pellentesque accumsan dolor et ultrices tincidunt. Mauris volutpat, libero fermentum malesuada vestibulum, nibh metus euismod augue, quis scelerisque risus erat at purus. Nulla tincidunt quis sem eu feugiat. Suspendisse sed arcu luctus, egestas elit at, bibendum dolor.','Alexandra G.','','publish','closed','closed','','alexandra-g','','','2018-10-10 15:18:01','2018-10-10 15:18:01','',0,'https://the7.io/nutritionist/?post_type=dt_testimonials&amp;p=1002',0,'dt_testimonials','',0),(1010,1,'2018-10-10 15:26:48','2018-10-10 15:26:48','Ut hendrerit tempus purus in vulputate. Pellentesque dignissim dui ac dolor convallis, vitae! Vestibulum sodales tempus enim, non feugiat lectus congue quis. Nam accumsan libero sed imperdiet egestas.','Tiffany B.','','publish','closed','closed','','tiffany-b','','','2018-10-10 15:26:48','2018-10-10 15:26:48','',0,'https://the7.io/nutritionist/?post_type=dt_testimonials&amp;p=1010',0,'dt_testimonials','',0),(1082,1,'2017-08-11 15:39:36','2017-08-11 15:39:36','Nulla et risus non mauris faucibus lacinia sit amet at ipsum. Sed non ante id risus ornare suscipit. Vivamus ut enim hendrerit, finibus arcu ac, pellentesque neque. Morbi sagittis faucibus neque vel hendrerit.','Fiona R.','','publish','closed','closed','','fiona-r','','','2017-08-11 15:39:36','2017-08-11 15:39:36','',0,'https://the7.io/nutritionist/?post_type=dt_testimonials&amp;p=1082',0,'dt_testimonials','',0),(1768,1,'2019-10-17 10:25:14','2019-10-17 10:25:14','<!-- wp:paragraph -->\n<p>WOW! Ut pretium risus sit amet nisi vulputate porta. Dolor amen glavrida – dellentesque itae from. Ut hendrerit tempus purus in vulputate. Pellentesque - amet nisi vulputate porta dignissim dui ac dolor convallis, vitae! Thanx!</p>\n<!-- /wp:paragraph -->','Miriam G.','','publish','closed','closed','','miriam-g','','','2019-10-17 10:25:14','2019-10-17 10:25:14','',0,'https://the7.io/nutritionist/?post_type=dt_testimonials&amp;p=1768',0,'dt_testimonials','',0),(1781,1,'2019-10-10 10:46:39','2019-10-10 10:46:39','<!-- wp:paragraph -->\n<p>Ut hendrerit tempus purus in vulputate. Pellentesque dignissim dui ac dolor convallis, vitae! Maecenas sit amet tincidunt elit. Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac!</p>\n<!-- /wp:paragraph -->','Richard F.','','publish','closed','closed','','richard-f','','','2019-10-10 10:46:39','2019-10-10 10:46:39','',0,'https://the7.io/nutritionist/?post_type=dt_testimonials&amp;p=1781',0,'dt_testimonials','',0),(2635,1,'2022-11-18 04:23:41','2022-11-18 04:23:41','[vc_row][vc_column][ultimate_heading main_heading=\"Our History\"][/ultimate_heading][icon_timeline timeline_line_color=\"#059444\" time_sep_color=\"#059444\"][icon_timeline_sep time_sep_title=\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vestibulum iaculis mollis leo, at pretium velit maximus vitae. Ut egestas laoreet mollis.\"][icon_timeline_item time_title=\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vestibulum iaculis mollis leo, at pretium velit maximus vitae. Ut egestas laoreet mollis.\"]Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vestibulum iaculis mollis leo, at pretium velit maximus vitae. Ut egestas laoreet mollis.Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vestibulum iaculis mollis leo, at pretium velit maximus vitae. Ut egestas laoreet mollis.Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vestibulum iaculis mollis leo, at pretium velit maximus vitae. Ut egestas laoreet mollis.[/icon_timeline_item][icon_timeline_item time_title=\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vestibulum iaculis mollis leo, at pretium velit maximus vitae. Ut egestas laoreet mollis.\"]Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vestibulum iaculis mollis leo, at pretium velit maximus vitae. Ut egestas laoreet mollis.Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vestibulum iaculis mollis leo, at pretium velit maximus vitae. Ut egestas laoreet mollis.Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vestibulum iaculis mollis leo, at pretium velit maximus vitae. Ut egestas laoreet mollis.[/icon_timeline_item][icon_timeline_feat time_title=\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vestibulum iaculis mollis leo, at pretium velit maximus vitae. Ut egestas laoreet mollis.\"]Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vestibulum iaculis mollis leo, at pretium velit maximus vitae. Ut egestas laoreet mollis.Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vestibulum iaculis mollis leo, at pretium velit maximus vitae. Ut egestas laoreet mollis.Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vestibulum iaculis mollis leo, at pretium velit maximus vitae. Ut egestas laoreet mollis.Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vestibulum iaculis mollis leo, at pretium velit maximus vitae. Ut egestas laoreet mollis.[/icon_timeline_feat][icon_timeline_sep time_sep_title=\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vestibulum iaculis mollis leo, at pretium velit maximus vitae. Ut egestas laoreet mollis.\"][/icon_timeline][/vc_column][/vc_row][vc_row][vc_column][ultimate_heading main_heading=\"Vision and Mission\"][/ultimate_heading][vc_row_inner][vc_column_inner width=\"1/2\"][ultimate_heading main_heading=\"Vision\" heading_tag=\"h3\"]Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vestibulum iaculis mollis leo, at pretium velit maximus vitae. Ut egestas laoreet mollis.Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vestibulum iaculis mollis leo, at pretium velit maximus vitae. Ut egestas laoreet mollis.Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vestibulum iaculis mollis leo, at pretium velit maximus vitae. Ut egestas laoreet mollis.Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vestibulum iaculis mollis leo, at pretium velit maximus vitae. Ut egestas laoreet mollis.[/ultimate_heading][/vc_column_inner][vc_column_inner width=\"1/2\"][ultimate_heading main_heading=\"Mission\" heading_tag=\"h3\" margin_design_tab_text=\"\"]Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vestibulum iaculis mollis leo, at pretium velit maximus vitae. Ut egestas laoreet mollis.Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vestibulum iaculis mollis leo, at pretium velit maximus vitae. Ut egestas laoreet mollis.Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vestibulum iaculis mollis leo, at pretium velit maximus vitae. Ut egestas laoreet mollis.Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vestibulum iaculis mollis leo, at pretium velit maximus vitae. Ut egestas laoreet mollis.[/ultimate_heading][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row]','About Us','','inherit','closed','closed','','2633-revision-v1','','','2022-11-18 04:23:41','2022-11-18 04:23:41','',2633,'https://farmchemie.yasithawd.com/?p=2635',0,'revision','',0),(2633,1,'2022-11-18 04:22:09','2022-11-18 04:22:09','[vc_row][vc_column][ultimate_heading main_heading=\"Our History\" main_heading_color=\"#762888\" alignment=\"left\"][/ultimate_heading][vc_row_inner css=\".vc_custom_1686713784619{margin-top: 35px !important;}\"][vc_column_inner width=\"1/4\"][vc_single_image image=\"3106\" img_size=\"full\"][/vc_column_inner][vc_column_inner width=\"3/4\"][ultimate_heading main_heading=\"Founded in 2002\" heading_tag=\"h3\" main_heading_color=\"#039447\" alignment=\"left\" sub_heading_font_size=\"desktop:18px;\"]Founded in 2002 by Mr. Uditha Wanigasinghe, an agriculturist who had a mission to aid valuable livestock producers in the country to enhance the yield and profitability of production. FARMCHEMIE introduced unprecedented solutions and consistent technical services to gain our customers’ trust and became the market leader in animal health products in 2006 within just four years.[/ultimate_heading][/vc_column_inner][/vc_row_inner][vc_row_inner rtl_reverse=\"yes\" css=\".vc_custom_1686714025469{margin-top: 35px !important;}\"][vc_column_inner width=\"3/4\"][ultimate_heading main_heading=\"2006\" heading_tag=\"h3\" main_heading_color=\"#039447\" alignment=\"left\"]In 2006, the Sri Lankan poultry industry was affected with Avian Influenza which became a difficult period for the growth of FARMCHEMIE. This was the key factor in our decision to diversify into Agro Products. PLANTCHEM &amp; PLANTSEEDS were established to offer solutions in Agro specialty fertilizers, pesticides and seeds to invaluable cultivators.[/ultimate_heading][/vc_column_inner][vc_column_inner width=\"1/4\"][vc_single_image image=\"3107\" img_size=\"full\"][/vc_column_inner][/vc_row_inner][vc_row_inner css=\".vc_custom_1686713784619{margin-top: 35px !important;}\"][vc_column_inner width=\"1/4\"][vc_single_image image=\"3108\" img_size=\"full\"][/vc_column_inner][vc_column_inner width=\"3/4\"][ultimate_heading main_heading=\"2010\" heading_tag=\"h3\" main_heading_color=\"#039447\" alignment=\"left\"]In 2010, FEED CHEMIE became the subsequent addition to ever-growing vision of Mr. Uditha Wanigasinghe and entered the Animal Feed Additives market.[/ultimate_heading][/vc_column_inner][/vc_row_inner][vc_row_inner rtl_reverse=\"yes\" css=\".vc_custom_1686714115148{margin-top: 35px !important;}\"][vc_column_inner width=\"3/4\"][ultimate_heading main_heading=\"2012\" heading_tag=\"h3\" main_heading_color=\"#039447\" alignment=\"left\"]The year 2012 is described as a turning point in our journey as FARMCHEMIE established our first production facility for the manufacturing and packing of animal health products. FARMCHEMIE became the first animal health organization in Sri Lanka to obtain ISO 9001:2015 and WHO GMP International Quality Certification. With our own formulation unit, FARMCHEMIE was able to offer customized solutions to cater the needs of the Sri Lankan Livestock Industry.[/ultimate_heading][/vc_column_inner][vc_column_inner width=\"1/4\"][vc_single_image image=\"3111\" img_size=\"full\"][/vc_column_inner][/vc_row_inner][vc_row_inner css=\".vc_custom_1686713784619{margin-top: 35px !important;}\"][vc_column_inner width=\"1/4\"][vc_single_image image=\"3112\" img_size=\"full\"][/vc_column_inner][vc_column_inner width=\"3/4\"][ultimate_heading main_heading=\"2016\" heading_tag=\"h3\" main_heading_color=\"#039447\" alignment=\"left\"]The year 2016 was another key milestone with the entry to the International Markets. FARMCHEMIE exported our first Feed Premix consignment to India and in 2018 our export operation was distinctly established as FARMCHEMIE MANUFACTURERS, a Board of Investment (BOI) approved entity.[/ultimate_heading][/vc_column_inner][/vc_row_inner][vc_row_inner css=\".vc_custom_1686713784619{margin-top: 35px !important;}\"][vc_column_inner width=\"3/4\"][ultimate_heading main_heading=\"Fully automated manufacturing\" heading_tag=\"h3\" main_heading_color=\"#039447\" alignment=\"left\"]FARMCHEMIE MANUFACTURERS has invested in fully automated manufacturing facility from Bühler and became the first Sri Lankan owned company to obtain FAMI-QS International Quality Certification.[/ultimate_heading][/vc_column_inner][vc_column_inner width=\"1/4\"][vc_single_image image=\"3110\" img_size=\"full\"][/vc_column_inner][/vc_row_inner][vc_row_inner css=\".vc_custom_1686713784619{margin-top: 35px !important;}\"][vc_column_inner width=\"1/4\"][vc_single_image image=\"3116\" img_size=\"full\"][/vc_column_inner][vc_column_inner width=\"3/4\"][ultimate_heading main_heading=\"Official toll manufacturer partner\" heading_tag=\"h3\" main_heading_color=\"#039447\" alignment=\"left\"]With the trust and reputation built as a reliable manufacturer of animal feed additives and supplements in the global market, several world-renowned international brands have appointed FARMCHEMIE MANUFACTURERS as the official toll manufacturer partner. FARMCHEMIE MANUFACTURERS exports a wide range of products consisting of premixes, specialty feed additives, oral liquid supplements and pet supplements to various markets in South Asia, East Asia, Middle East and Africa.\r\n\r\nFARMCHEMIE, FEED CHEMIE &amp; FARMCHEMIE MANUFACTURERS currently operate under the ownership of our holding company, DYVESTA.\r\n\r\nDYEVSTA has become the pinnacle of Animal Nutrition and Health.\r\n\r\nDYVESTA is Dynamic, through our continuous evolution, growth and progress. DYVESTA is Diverse, in terms of both our business strategy and our community. DYVESTA is Devoted to our valuable business partners through exceptional service.[/ultimate_heading][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row full_width=\"stretch_row\" equal_height=\"yes\" bg_type=\"image\" parallax_style=\"vcpb-default\" bg_image_new=\"id^2524|url^https://farmchemie.yasithawd.com/wp-content/uploads/2022/09/marketbgimg1.png|caption^null|alt^null|title^marketbgimg1|description^null\" bg_image_repeat=\"no-repeat\" enable_overlay=\"enable_overlay_value\" overlay_color=\"#000000\" overlay_pattern=\"01.png\" overlay_pattern_opacity=\"5\" css=\".vc_custom_1686720701314{margin-top: 35px !important;padding-top: 65px !important;padding-bottom: 100px !important;}\"][vc_column][vc_row_inner equal_height=\"yes\"][vc_column_inner width=\"1/2\"][ultimate_heading main_heading=\"Vision\" main_heading_color=\"#039447\" sub_heading_color=\"#039447\"]To be the customers’ first and best choice by ensuring outstanding satisfaction through a well-trained and dedicated team. Prompt and quality solutions to our customers’ requirements will determine the increase of return on investment for us.[/ultimate_heading][/vc_column_inner][vc_column_inner width=\"1/2\"][ultimate_heading main_heading=\"Mission\" main_heading_color=\"#762888\" sub_heading_color=\"#762888\"]To become a world renowned manufacturer of Animal Health products and a trusted partner among our stakeholders for our integrity as well as for providing effective solutions[/ultimate_heading][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row css=\".vc_custom_1684836308288{margin-top: 15px !important;}\"][vc_column][ultimate_heading main_heading=\"Achievements\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;\"][/ultimate_heading][vc_row_inner gap=\"20\"][vc_column_inner width=\"1/2\" css=\".vc_custom_1691995519863{background-color: #f4ab20 !important;border: 1px solid #f4ab20 !important;border-radius: 35px !important;}\"][bsf-info-box icon_type=\"custom\" icon_img=\"id^3117|url^https://farmchemie.yasithawd.com/wp-content/uploads/2023/08/Pink_-H.png|caption^null|alt^null|title^Pink_-H|description^null\" img_width=\"60\" icon_style=\"advanced\" icon_border_style=\"solid\" icon_color_border=\"#ffffff\" icon_border_size=\"1\" icon_border_radius=\"500\" icon_border_spacing=\"1\" title=\"First Free Sale Certificate obtained from Veterinary Drug Control Authority (VDCA) for Veterinary Pharmaceuticals\" title_font_style=\"font-weight:bold;\" title_font_size=\"desktop:20px;\"][/bsf-info-box][/vc_column_inner][vc_column_inner width=\"1/2\" css=\".vc_custom_1691995661095{background-color: #722f8b !important;border: 1px solid #722f8b !important;border-radius: 35px !important;}\"][bsf-info-box icon_type=\"custom\" icon_img=\"id^3117|url^https://farmchemie.yasithawd.com/wp-content/uploads/2023/08/Pink_-H.png|caption^null|alt^null|title^Pink_-H|description^null\" img_width=\"60\" icon_style=\"advanced\" icon_border_style=\"solid\" icon_color_border=\"#ffffff\" icon_border_size=\"1\" icon_border_radius=\"500\" icon_border_spacing=\"1\" title=\"First ISO 9001: 2015 ,WHO-GMP Quality Management systems certified Animal Health company in Sri Lanka since August, 2012\" title_font_style=\"font-weight:bold;\" title_font_color=\"#ffffff\" title_font_size=\"desktop:20px;\"][/bsf-info-box][/vc_column_inner][/vc_row_inner][vc_row_inner gap=\"20\"][vc_column_inner width=\"1/2\" css=\".vc_custom_1691995661095{background-color: #722f8b !important;border: 1px solid #722f8b !important;border-radius: 35px !important;}\"][bsf-info-box icon_type=\"custom\" icon_img=\"id^3117|url^https://farmchemie.yasithawd.com/wp-content/uploads/2023/08/Pink_-H.png|caption^null|alt^null|title^Pink_-H|description^null\" img_width=\"60\" icon_style=\"advanced\" icon_border_style=\"solid\" icon_color_border=\"#ffffff\" icon_border_size=\"1\" icon_border_radius=\"500\" icon_border_spacing=\"1\" title=\"First FAMI-QS certified company in sri lanka\" title_font_style=\"font-weight:bold;\" title_font_color=\"#ffffff\" title_font_size=\"desktop:20px;\"][/bsf-info-box][/vc_column_inner][vc_column_inner width=\"1/2\" css=\".vc_custom_1691995519863{background-color: #f4ab20 !important;border: 1px solid #f4ab20 !important;border-radius: 35px !important;}\"][bsf-info-box icon_type=\"custom\" icon_img=\"id^3117|url^https://farmchemie.yasithawd.com/wp-content/uploads/2023/08/Pink_-H.png|caption^null|alt^null|title^Pink_-H|description^null\" img_width=\"60\" icon_style=\"advanced\" icon_border_style=\"solid\" icon_color_border=\"#ffffff\" icon_border_size=\"1\" icon_border_radius=\"500\" icon_border_spacing=\"1\" title=\"First Certificate of Ethical Trading certified in Livestock industry\" title_font_style=\"font-weight:bold;\" title_font_size=\"desktop:20px;\"][/bsf-info-box][/vc_column_inner][/vc_row_inner][vc_row_inner gap=\"20\"][vc_column_inner width=\"1/4\" css=\".vc_custom_1691996718116{border-radius: 35px !important;}\"][/vc_column_inner][vc_column_inner width=\"2/4\" css=\".vc_custom_1691995519863{background-color: #f4ab20 !important;border: 1px solid #f4ab20 !important;border-radius: 35px !important;}\"][bsf-info-box icon_type=\"custom\" icon_img=\"id^3117|url^https://farmchemie.yasithawd.com/wp-content/uploads/2023/08/Pink_-H.png|caption^null|alt^null|title^Pink_-H|description^null\" img_width=\"60\" icon_style=\"advanced\" icon_border_style=\"solid\" icon_color_border=\"#ffffff\" icon_border_size=\"1\" icon_border_radius=\"500\" icon_border_spacing=\"1\" title=\"First Silver awarded company at National Exports Awards in Livestock industry\" title_font_style=\"font-weight:bold;\" title_font_size=\"desktop:20px;\"][/bsf-info-box][/vc_column_inner][vc_column_inner width=\"1/4\"][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner width=\"1/6\"][/vc_column_inner][vc_column_inner width=\"2/3\"][vc_single_image image=\"3126\" img_size=\"full\" alignment=\"center\"][vc_single_image image=\"3125\" img_size=\"full\" alignment=\"center\"][/vc_column_inner][vc_column_inner width=\"1/6\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row][vc_column][ultimate_heading main_heading=\"Board Of Directors\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;margin-bottom:35px;\"][/ultimate_heading][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_row_inner][vc_column_inner width=\"1/2\"][vc_single_image image=\"3172\" img_size=\"large\" alignment=\"center\" style=\"vc_box_outline_circle_2\" border_color=\"black\" image_hovers=\"false\"][/vc_column_inner][vc_column_inner width=\"1/2\"][ultimate_heading main_heading=\"Quisque sed nibh tristique\" heading_tag=\"h3\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;\"]Duis lorem risus, aliquet a auctor a, venenatis in dui. Praesent et eros et risus dapibus placerat hendrerit cursus magna.[/ultimate_heading][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/2\"][vc_row_inner][vc_column_inner width=\"1/2\"][vc_single_image image=\"3173\" img_size=\"large\" alignment=\"center\" style=\"vc_box_outline_circle_2\" border_color=\"black\" image_hovers=\"false\"][/vc_column_inner][vc_column_inner width=\"1/2\"][ultimate_heading main_heading=\"Quisque sed nibh tristique\" heading_tag=\"h3\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;\"]Duis lorem risus, aliquet a auctor a, venenatis in dui. Praesent et eros et risus dapibus placerat hendrerit cursus magna.[/ultimate_heading][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_row_inner][vc_column_inner width=\"1/2\"][vc_single_image image=\"3171\" img_size=\"large\" alignment=\"center\" style=\"vc_box_outline_circle_2\" border_color=\"black\" image_hovers=\"false\"][/vc_column_inner][vc_column_inner width=\"1/2\"][ultimate_heading main_heading=\"Quisque sed nibh tristique\" heading_tag=\"h3\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;\"]Duis lorem risus, aliquet a auctor a, venenatis in dui. Praesent et eros et risus dapibus placerat hendrerit cursus magna.[/ultimate_heading][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/2\"][vc_row_inner][vc_column_inner width=\"1/2\"][vc_single_image image=\"3170\" img_size=\"large\" alignment=\"center\" style=\"vc_box_outline_circle_2\" border_color=\"black\" image_hovers=\"false\"][/vc_column_inner][vc_column_inner width=\"1/2\"][ultimate_heading main_heading=\"Quisque sed nibh tristique\" heading_tag=\"h3\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;\"]Duis lorem risus, aliquet a auctor a, venenatis in dui. Praesent et eros et risus dapibus placerat hendrerit cursus magna.[/ultimate_heading][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row]','About Us','','trash','closed','closed','','about-us__trashed','','','2023-09-14 12:51:18','2023-09-14 12:51:18','',0,'https://farmchemie.yasithawd.com/?page_id=2633',0,'page','',0),(2630,1,'2022-11-18 04:13:58','2022-11-18 04:13:58','[vc_row full_width=\"stretch_row_content_no_spaces\"][vc_column][vc_gmaps link=\"#E-8_JTNDaWZyYW1lJTIwc3JjJTNEJTIyaHR0cHMlM0ElMkYlMkZ3d3cuZ29vZ2xlLmNvbSUyRm1hcHMlMkZlbWJlZCUzRnBiJTNEJTIxMW0xOCUyMTFtMTIlMjExbTMlMjExZDM5NjEuNDkyNzAyNjUzODQyJTIxMmQ4MC4wMDU1NTMyNTA5NzkzNiUyMTNkNi44MzEzNzM2MjEzNzcxMSUyMTJtMyUyMTFmMCUyMTJmMCUyMTNmMCUyMTNtMiUyMTFpMTAyNCUyMTJpNzY4JTIxNGYxMy4xJTIxM20zJTIxMW0yJTIxMXMweDNhZTI1MWY2M2RlZjc3NGYlMjUzQTB4OTI5MjYyZGQ3OGNmZjViZSUyMTJzRmFybWNoZW1pZSUyNTIwJTI4UHJpdmF0ZSUyOSUyNTIwTGltaXRlZCUyMTVlMCUyMTNtMiUyMTFzZW4lMjEyc2xrJTIxNHYxNjY4NzQ0NzQ2NDk0JTIxNW0yJTIxMXNlbiUyMTJzbGslMjIlMjB3aWR0aCUzRCUyMjE5MjAlMjIlMjBoZWlnaHQlM0QlMjI3MDAlMjIlMjBzdHlsZSUzRCUyMmJvcmRlciUzQTAlM0IlMjIlMjBhbGxvd2Z1bGxzY3JlZW4lM0QlMjIlMjIlMjBsb2FkaW5nJTNEJTIybGF6eSUyMiUyMHJlZmVycmVycG9saWN5JTNEJTIybm8tcmVmZXJyZXItd2hlbi1kb3duZ3JhZGUlMjIlM0UlM0MlMkZpZnJhbWUlM0U=\"][/vc_column][/vc_row][vc_row][vc_column][ultimate_heading main_heading=\"Contact Us\" alignment=\"left\" main_heading_margin=\"margin-bottom:35px;\"][/ultimate_heading][vc_row_inner][vc_column_inner width=\"1/3\"][bsf-info-box icon=\"icomoon-the7-font-the7-phone-04\" icon_size=\"32\" title=\"Phone\"]<strong>+94 (0) 11 298 3922</strong>[/bsf-info-box][/vc_column_inner][vc_column_inner width=\"1/3\"][bsf-info-box icon=\"icomoon-the7-font-the7-mail-01\" icon_size=\"32\" title=\"Email Address\"]info@farmchemie.com[/bsf-info-box][/vc_column_inner][vc_column_inner width=\"1/3\"][bsf-info-box icon=\"icomoon-the7-font-the7-map-02\" icon_size=\"32\" title=\"Address\"]No. 78, Industrial Zone, Katuwana, Homagama[/bsf-info-box][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner width=\"1/4\"][/vc_column_inner][vc_column_inner width=\"1/2\"][contact-form-7 id=\"12\"][/vc_column_inner][vc_column_inner width=\"1/4\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row]','Contact Us','','inherit','closed','closed','','2622-revision-v1','','','2022-11-18 04:13:58','2022-11-18 04:13:58','',2622,'https://farmchemie.yasithawd.com/?p=2630',0,'revision','',0),(2632,1,'2022-11-18 04:17:06','2022-11-18 04:17:06','[vc_row full_width=\"stretch_row_content_no_spaces\"][vc_column][vc_gmaps link=\"#E-8_JTNDaWZyYW1lJTIwc3JjJTNEJTIyaHR0cHMlM0ElMkYlMkZ3d3cuZ29vZ2xlLmNvbSUyRm1hcHMlMkZlbWJlZCUzRnBiJTNEJTIxMW0xOCUyMTFtMTIlMjExbTMlMjExZDM5NjEuNDkyNzAyNjUzODQyJTIxMmQ4MC4wMDU1NTMyNTA5NzkzNiUyMTNkNi44MzEzNzM2MjEzNzcxMSUyMTJtMyUyMTFmMCUyMTJmMCUyMTNmMCUyMTNtMiUyMTFpMTAyNCUyMTJpNzY4JTIxNGYxMy4xJTIxM20zJTIxMW0yJTIxMXMweDNhZTI1MWY2M2RlZjc3NGYlMjUzQTB4OTI5MjYyZGQ3OGNmZjViZSUyMTJzRmFybWNoZW1pZSUyNTIwJTI4UHJpdmF0ZSUyOSUyNTIwTGltaXRlZCUyMTVlMCUyMTNtMiUyMTFzZW4lMjEyc2xrJTIxNHYxNjY4NzQ0NzQ2NDk0JTIxNW0yJTIxMXNlbiUyMTJzbGslMjIlMjB3aWR0aCUzRCUyMjE5MjAlMjIlMjBoZWlnaHQlM0QlMjI3MDAlMjIlMjBzdHlsZSUzRCUyMmJvcmRlciUzQTAlM0IlMjIlMjBhbGxvd2Z1bGxzY3JlZW4lM0QlMjIlMjIlMjBsb2FkaW5nJTNEJTIybGF6eSUyMiUyMHJlZmVycmVycG9saWN5JTNEJTIybm8tcmVmZXJyZXItd2hlbi1kb3duZ3JhZGUlMjIlM0UlM0MlMkZpZnJhbWUlM0U=\"][/vc_column][/vc_row][vc_row][vc_column][ultimate_heading main_heading=\"Contact Us\" alignment=\"left\" main_heading_margin=\"margin-bottom:35px;\"][/ultimate_heading][vc_row_inner][vc_column_inner width=\"1/2\"][contact-form-7 id=\"12\"][/vc_column_inner][vc_column_inner width=\"1/2\"][bsf-info-box icon=\"icomoon-the7-font-the7-phone-04\" icon_size=\"32\" icon_color=\"#059444\" title=\"Phone\"]<strong>+94 (0) 11 298 3922</strong>[/bsf-info-box][bsf-info-box icon=\"icomoon-the7-font-the7-mail-01\" icon_size=\"32\" icon_color=\"#059444\" title=\"Email Address\"]info@farmchemie.com[/bsf-info-box][bsf-info-box icon=\"icomoon-the7-font-the7-map-02\" icon_size=\"32\" icon_color=\"#059444\" title=\"Address\"]No. 78, Industrial Zone, Katuwana, Homagama[/bsf-info-box][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row]','Contact Us','','inherit','closed','closed','','2622-revision-v1','','','2022-11-18 04:17:06','2022-11-18 04:17:06','',2622,'https://farmchemie.yasithawd.com/?p=2632',0,'revision','',0),(2631,1,'2022-11-18 04:15:36','2022-11-18 04:15:36','[vc_row full_width=\"stretch_row_content_no_spaces\"][vc_column][vc_gmaps link=\"#E-8_JTNDaWZyYW1lJTIwc3JjJTNEJTIyaHR0cHMlM0ElMkYlMkZ3d3cuZ29vZ2xlLmNvbSUyRm1hcHMlMkZlbWJlZCUzRnBiJTNEJTIxMW0xOCUyMTFtMTIlMjExbTMlMjExZDM5NjEuNDkyNzAyNjUzODQyJTIxMmQ4MC4wMDU1NTMyNTA5NzkzNiUyMTNkNi44MzEzNzM2MjEzNzcxMSUyMTJtMyUyMTFmMCUyMTJmMCUyMTNmMCUyMTNtMiUyMTFpMTAyNCUyMTJpNzY4JTIxNGYxMy4xJTIxM20zJTIxMW0yJTIxMXMweDNhZTI1MWY2M2RlZjc3NGYlMjUzQTB4OTI5MjYyZGQ3OGNmZjViZSUyMTJzRmFybWNoZW1pZSUyNTIwJTI4UHJpdmF0ZSUyOSUyNTIwTGltaXRlZCUyMTVlMCUyMTNtMiUyMTFzZW4lMjEyc2xrJTIxNHYxNjY4NzQ0NzQ2NDk0JTIxNW0yJTIxMXNlbiUyMTJzbGslMjIlMjB3aWR0aCUzRCUyMjE5MjAlMjIlMjBoZWlnaHQlM0QlMjI3MDAlMjIlMjBzdHlsZSUzRCUyMmJvcmRlciUzQTAlM0IlMjIlMjBhbGxvd2Z1bGxzY3JlZW4lM0QlMjIlMjIlMjBsb2FkaW5nJTNEJTIybGF6eSUyMiUyMHJlZmVycmVycG9saWN5JTNEJTIybm8tcmVmZXJyZXItd2hlbi1kb3duZ3JhZGUlMjIlM0UlM0MlMkZpZnJhbWUlM0U=\"][/vc_column][/vc_row][vc_row][vc_column][ultimate_heading main_heading=\"Contact Us\" alignment=\"left\" main_heading_margin=\"margin-bottom:35px;\"][/ultimate_heading][vc_row_inner][vc_column_inner width=\"1/3\"][bsf-info-box icon=\"icomoon-the7-font-the7-phone-04\" icon_size=\"32\" icon_color=\"#059444\" title=\"Phone\"]<strong>+94 (0) 11 298 3922</strong>[/bsf-info-box][/vc_column_inner][vc_column_inner width=\"1/3\"][bsf-info-box icon=\"icomoon-the7-font-the7-mail-01\" icon_size=\"32\" icon_color=\"#059444\" title=\"Email Address\"]info@farmchemie.com[/bsf-info-box][/vc_column_inner][vc_column_inner width=\"1/3\"][bsf-info-box icon=\"icomoon-the7-font-the7-map-02\" icon_size=\"32\" icon_color=\"#059444\" title=\"Address\"]No. 78, Industrial Zone, Katuwana, Homagama[/bsf-info-box][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner width=\"1/4\"][/vc_column_inner][vc_column_inner width=\"1/2\"][contact-form-7 id=\"12\"][/vc_column_inner][vc_column_inner width=\"1/4\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row]','Contact Us','','inherit','closed','closed','','2622-revision-v1','','','2022-11-18 04:15:36','2022-11-18 04:15:36','',2622,'https://farmchemie.yasithawd.com/?p=2631',0,'revision','',0),(2624,1,'2022-11-18 04:07:17','2022-11-18 04:07:17','[vc_row full_width=\"stretch_row_content_no_spaces\"][vc_column][vc_gmaps link=\"#E-8_JTNDaWZyYW1lJTIwc3JjJTNEJTIyaHR0cHMlM0ElMkYlMkZ3d3cuZ29vZ2xlLmNvbSUyRm1hcHMlMkZlbWJlZCUzRnBiJTNEJTIxMW0yNiUyMTFtMTIlMjExbTMlMjExZDYzMzgzLjQyNTEwOTgyMTc0JTIxMmQ3OS45MzI3OTY2NDMyMzE4MSUyMTNkNi44MzQ4Mjk2MzU0MTc2MTklMjEybTMlMjExZjAlMjEyZjAlMjEzZjAlMjEzbTIlMjExaTEwMjQlMjEyaTc2OCUyMTRmMTMuMSUyMTRtMTElMjEzZTYlMjE0bTMlMjEzbTIlMjExZDYuODQ3MDQ0MiUyMTJkNzkuOTMwNDYyNiUyMTRtNSUyMTFzMHgzYWUyNTFmNjNkZWY3NzRmJTI1M0EweDkyOTI2MmRkNzhjZmY1YmUlMjEyc2Zhcm1jaGVtaWUlMjEzbTIlMjExZDYuODMxMzY3Mzk5OTk5OTk5NSUyMTJkODAuMDA3NzQ3NiUyMTVlMCUyMTNtMiUyMTFzZW4lMjEyc2xrJTIxNHYxNjY4NzQ0MjE2NTM0JTIxNW0yJTIxMXNlbiUyMTJzbGslMjIlMjB3aWR0aCUzRCUyMjE5MjAlMjIlMjBoZWlnaHQlM0QlMjI1MDAlMjIlMjBzdHlsZSUzRCUyMmJvcmRlciUzQTAlM0IlMjIlMjBhbGxvd2Z1bGxzY3JlZW4lM0QlMjIlMjIlMjBsb2FkaW5nJTNEJTIybGF6eSUyMiUyMHJlZmVycmVycG9saWN5JTNEJTIybm8tcmVmZXJyZXItd2hlbi1kb3duZ3JhZGUlMjIlM0UlM0MlMkZpZnJhbWUlM0U=\"][/vc_column][/vc_row][vc_row][vc_column][ultimate_heading main_heading=\"Contact Us\" margin_design_tab_text=\"\"][/ultimate_heading][vc_row_inner][vc_column_inner width=\"1/3\"][bsf-info-box icon=\"icomoon-the7-font-the7-phone-04\" icon_size=\"32\" title=\"Phone\"]<strong>+94 (0) 11 298 3922</strong>[/bsf-info-box][/vc_column_inner][vc_column_inner width=\"1/3\"][bsf-info-box icon=\"icomoon-the7-font-the7-phone-04\" icon_size=\"32\" title=\"Phone\"]<strong>+94 (0) 11 298 3922</strong>[/bsf-info-box][/vc_column_inner][vc_column_inner width=\"1/3\"][bsf-info-box icon=\"icomoon-the7-font-the7-phone-04\" icon_size=\"32\" title=\"Phone\"]<strong>+94 (0) 11 298 3922</strong>[/bsf-info-box][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row]','','','inherit','closed','closed','','2622-revision-v1','','','2022-11-18 04:07:17','2022-11-18 04:07:17','',2622,'https://farmchemie.yasithawd.com/?p=2624',0,'revision','',0),(2625,1,'2022-11-18 04:08:24','2022-11-18 04:08:24','[vc_row full_width=\"stretch_row_content_no_spaces\"][vc_column][vc_gmaps link=\"#E-8_JTNDaWZyYW1lJTIwc3JjJTNEJTIyaHR0cHMlM0ElMkYlMkZ3d3cuZ29vZ2xlLmNvbSUyRm1hcHMlMkZlbWJlZCUzRnBiJTNEJTIxMW0yNiUyMTFtMTIlMjExbTMlMjExZDYzMzgzLjQyNTEwOTgyMTc0JTIxMmQ3OS45MzI3OTY2NDMyMzE4MSUyMTNkNi44MzQ4Mjk2MzU0MTc2MTklMjEybTMlMjExZjAlMjEyZjAlMjEzZjAlMjEzbTIlMjExaTEwMjQlMjEyaTc2OCUyMTRmMTMuMSUyMTRtMTElMjEzZTYlMjE0bTMlMjEzbTIlMjExZDYuODQ3MDQ0MiUyMTJkNzkuOTMwNDYyNiUyMTRtNSUyMTFzMHgzYWUyNTFmNjNkZWY3NzRmJTI1M0EweDkyOTI2MmRkNzhjZmY1YmUlMjEyc2Zhcm1jaGVtaWUlMjEzbTIlMjExZDYuODMxMzY3Mzk5OTk5OTk5NSUyMTJkODAuMDA3NzQ3NiUyMTVlMCUyMTNtMiUyMTFzZW4lMjEyc2xrJTIxNHYxNjY4NzQ0MjE2NTM0JTIxNW0yJTIxMXNlbiUyMTJzbGslMjIlMjB3aWR0aCUzRCUyMjE5MjAlMjIlMjBoZWlnaHQlM0QlMjI3MDAlMjIlMjBzdHlsZSUzRCUyMmJvcmRlciUzQTAlM0IlMjIlMjBhbGxvd2Z1bGxzY3JlZW4lM0QlMjIlMjIlMjBsb2FkaW5nJTNEJTIybGF6eSUyMiUyMHJlZmVycmVycG9saWN5JTNEJTIybm8tcmVmZXJyZXItd2hlbi1kb3duZ3JhZGUlMjIlM0UlM0MlMkZpZnJhbWUlM0U=\"][/vc_column][/vc_row][vc_row][vc_column][ultimate_heading main_heading=\"Contact Us\" margin_design_tab_text=\"\"][/ultimate_heading][vc_row_inner][vc_column_inner width=\"1/3\"][bsf-info-box icon=\"icomoon-the7-font-the7-phone-04\" icon_size=\"32\" title=\"Phone\"]<strong>+94 (0) 11 298 3922</strong>[/bsf-info-box][/vc_column_inner][vc_column_inner width=\"1/3\"][bsf-info-box icon=\"icomoon-the7-font-the7-phone-04\" icon_size=\"32\" title=\"Phone\"]<strong>+94 (0) 11 298 3922</strong>[/bsf-info-box][/vc_column_inner][vc_column_inner width=\"1/3\"][bsf-info-box icon=\"icomoon-the7-font-the7-phone-04\" icon_size=\"32\" title=\"Phone\"]<strong>+94 (0) 11 298 3922</strong>[/bsf-info-box][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row]','','','inherit','closed','closed','','2622-revision-v1','','','2022-11-18 04:08:24','2022-11-18 04:08:24','',2622,'https://farmchemie.yasithawd.com/?p=2625',0,'revision','',0),(2629,1,'2022-11-18 04:13:02','2022-11-18 04:13:02','[vc_row full_width=\"stretch_row_content_no_spaces\"][vc_column][vc_gmaps link=\"#E-8_JTNDaWZyYW1lJTIwc3JjJTNEJTIyaHR0cHMlM0ElMkYlMkZ3d3cuZ29vZ2xlLmNvbSUyRm1hcHMlMkZlbWJlZCUzRnBiJTNEJTIxMW0xOCUyMTFtMTIlMjExbTMlMjExZDM5NjEuNDkyNzAyNjUzODQyJTIxMmQ4MC4wMDU1NTMyNTA5NzkzNiUyMTNkNi44MzEzNzM2MjEzNzcxMSUyMTJtMyUyMTFmMCUyMTJmMCUyMTNmMCUyMTNtMiUyMTFpMTAyNCUyMTJpNzY4JTIxNGYxMy4xJTIxM20zJTIxMW0yJTIxMXMweDNhZTI1MWY2M2RlZjc3NGYlMjUzQTB4OTI5MjYyZGQ3OGNmZjViZSUyMTJzRmFybWNoZW1pZSUyNTIwJTI4UHJpdmF0ZSUyOSUyNTIwTGltaXRlZCUyMTVlMCUyMTNtMiUyMTFzZW4lMjEyc2xrJTIxNHYxNjY4NzQ0NzQ2NDk0JTIxNW0yJTIxMXNlbiUyMTJzbGslMjIlMjB3aWR0aCUzRCUyMjE5MjAlMjIlMjBoZWlnaHQlM0QlMjI3MDAlMjIlMjBzdHlsZSUzRCUyMmJvcmRlciUzQTAlM0IlMjIlMjBhbGxvd2Z1bGxzY3JlZW4lM0QlMjIlMjIlMjBsb2FkaW5nJTNEJTIybGF6eSUyMiUyMHJlZmVycmVycG9saWN5JTNEJTIybm8tcmVmZXJyZXItd2hlbi1kb3duZ3JhZGUlMjIlM0UlM0MlMkZpZnJhbWUlM0U=\"][/vc_column][/vc_row][vc_row][vc_column][ultimate_heading main_heading=\"Contact Us\" alignment=\"left\" main_heading_margin=\"margin-bottom:35px;\"][/ultimate_heading][vc_row_inner][vc_column_inner width=\"1/3\"][bsf-info-box icon=\"icomoon-the7-font-the7-phone-04\" icon_size=\"32\" title=\"Phone\"]<strong>+94 (0) 11 298 3922</strong>[/bsf-info-box][/vc_column_inner][vc_column_inner width=\"1/3\"][bsf-info-box icon=\"icomoon-the7-font-the7-mail-01\" icon_size=\"32\" title=\"Email Address\"]info@farmchemie.com[/bsf-info-box][/vc_column_inner][vc_column_inner width=\"1/3\"][bsf-info-box icon=\"icomoon-the7-font-the7-map-02\" icon_size=\"32\" title=\"Address\"]No. 78, Industrial Zone, Katuwana, Homagama[/bsf-info-box][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row]','Contact Us','','inherit','closed','closed','','2622-revision-v1','','','2022-11-18 04:13:02','2022-11-18 04:13:02','',2622,'https://farmchemie.yasithawd.com/?p=2629',0,'revision','',0),(2626,1,'2022-11-18 04:08:56','2022-11-18 04:08:56','[vc_row full_width=\"stretch_row_content_no_spaces\"][vc_column][vc_gmaps link=\"#E-8_JTNDaWZyYW1lJTIwc3JjJTNEJTIyaHR0cHMlM0ElMkYlMkZ3d3cuZ29vZ2xlLmNvbSUyRm1hcHMlMkZlbWJlZCUzRnBiJTNEJTIxMW0yNiUyMTFtMTIlMjExbTMlMjExZDYzMzgzLjQyNTEwOTgyMTc0JTIxMmQ3OS45MzI3OTY2NDMyMzE4MSUyMTNkNi44MzQ4Mjk2MzU0MTc2MTklMjEybTMlMjExZjAlMjEyZjAlMjEzZjAlMjEzbTIlMjExaTEwMjQlMjEyaTc2OCUyMTRmMTMuMSUyMTRtMTElMjEzZTYlMjE0bTMlMjEzbTIlMjExZDYuODQ3MDQ0MiUyMTJkNzkuOTMwNDYyNiUyMTRtNSUyMTFzMHgzYWUyNTFmNjNkZWY3NzRmJTI1M0EweDkyOTI2MmRkNzhjZmY1YmUlMjEyc2Zhcm1jaGVtaWUlMjEzbTIlMjExZDYuODMxMzY3Mzk5OTk5OTk5NSUyMTJkODAuMDA3NzQ3NiUyMTVlMCUyMTNtMiUyMTFzZW4lMjEyc2xrJTIxNHYxNjY4NzQ0MjE2NTM0JTIxNW0yJTIxMXNlbiUyMTJzbGslMjIlMjB3aWR0aCUzRCUyMjE5MjAlMjIlMjBoZWlnaHQlM0QlMjI3MDAlMjIlMjBzdHlsZSUzRCUyMmJvcmRlciUzQTAlM0IlMjIlMjBhbGxvd2Z1bGxzY3JlZW4lM0QlMjIlMjIlMjBsb2FkaW5nJTNEJTIybGF6eSUyMiUyMHJlZmVycmVycG9saWN5JTNEJTIybm8tcmVmZXJyZXItd2hlbi1kb3duZ3JhZGUlMjIlM0UlM0MlMkZpZnJhbWUlM0U=\"][/vc_column][/vc_row][vc_row][vc_column][ultimate_heading main_heading=\"Contact Us\" alignment=\"left\" margin_design_tab_text=\"\" main_heading_margin=\"margin-bottom:35px;\"][/ultimate_heading][vc_row_inner][vc_column_inner width=\"1/3\"][bsf-info-box icon=\"icomoon-the7-font-the7-phone-04\" icon_size=\"32\" title=\"Phone\"]<strong>+94 (0) 11 298 3922</strong>[/bsf-info-box][/vc_column_inner][vc_column_inner width=\"1/3\"][bsf-info-box icon=\"icomoon-the7-font-the7-phone-04\" icon_size=\"32\" title=\"Phone\"]<strong>+94 (0) 11 298 3922</strong>[/bsf-info-box][/vc_column_inner][vc_column_inner width=\"1/3\"][bsf-info-box icon=\"icomoon-the7-font-the7-phone-04\" icon_size=\"32\" title=\"Phone\"]<strong>+94 (0) 11 298 3922</strong>[/bsf-info-box][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row]','','','inherit','closed','closed','','2622-revision-v1','','','2022-11-18 04:08:56','2022-11-18 04:08:56','',2622,'https://farmchemie.yasithawd.com/?p=2626',0,'revision','',0),(2627,1,'2022-11-18 04:11:10','2022-11-18 04:11:10','[vc_row full_width=\"stretch_row_content_no_spaces\"][vc_column][vc_gmaps link=\"#E-8_JTNDaWZyYW1lJTIwc3JjJTNEJTIyaHR0cHMlM0ElMkYlMkZ3d3cuZ29vZ2xlLmNvbSUyRm1hcHMlMkZlbWJlZCUzRnBiJTNEJTIxMW0yNiUyMTFtMTIlMjExbTMlMjExZDYzMzgzLjQyNTEwOTgyMTc0JTIxMmQ3OS45MzI3OTY2NDMyMzE4MSUyMTNkNi44MzQ4Mjk2MzU0MTc2MTklMjEybTMlMjExZjAlMjEyZjAlMjEzZjAlMjEzbTIlMjExaTEwMjQlMjEyaTc2OCUyMTRmMTMuMSUyMTRtMTElMjEzZTYlMjE0bTMlMjEzbTIlMjExZDYuODQ3MDQ0MiUyMTJkNzkuOTMwNDYyNiUyMTRtNSUyMTFzMHgzYWUyNTFmNjNkZWY3NzRmJTI1M0EweDkyOTI2MmRkNzhjZmY1YmUlMjEyc2Zhcm1jaGVtaWUlMjEzbTIlMjExZDYuODMxMzY3Mzk5OTk5OTk5NSUyMTJkODAuMDA3NzQ3NiUyMTVlMCUyMTNtMiUyMTFzZW4lMjEyc2xrJTIxNHYxNjY4NzQ0MjE2NTM0JTIxNW0yJTIxMXNlbiUyMTJzbGslMjIlMjB3aWR0aCUzRCUyMjE5MjAlMjIlMjBoZWlnaHQlM0QlMjI3MDAlMjIlMjBzdHlsZSUzRCUyMmJvcmRlciUzQTAlM0IlMjIlMjBhbGxvd2Z1bGxzY3JlZW4lM0QlMjIlMjIlMjBsb2FkaW5nJTNEJTIybGF6eSUyMiUyMHJlZmVycmVycG9saWN5JTNEJTIybm8tcmVmZXJyZXItd2hlbi1kb3duZ3JhZGUlMjIlM0UlM0MlMkZpZnJhbWUlM0U=\"][/vc_column][/vc_row][vc_row][vc_column][ultimate_heading main_heading=\"Contact Us\" alignment=\"left\" main_heading_margin=\"margin-bottom:35px;\"][/ultimate_heading][vc_row_inner][vc_column_inner width=\"1/3\"][bsf-info-box icon=\"icomoon-the7-font-the7-phone-04\" icon_size=\"32\" title=\"Phone\"]<strong>+94 (0) 11 298 3922</strong>[/bsf-info-box][/vc_column_inner][vc_column_inner width=\"1/3\"][bsf-info-box icon=\"icomoon-the7-font-the7-mail-01\" icon_size=\"32\" title=\"Email Address\"]info@farmchemie.com[/bsf-info-box][/vc_column_inner][vc_column_inner width=\"1/3\"][bsf-info-box icon=\"icomoon-the7-font-the7-map-02\" icon_size=\"32\" title=\"Address\"]No. 78, Industrial Zone, Katuwana, Homagama[/bsf-info-box][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row]','','','inherit','closed','closed','','2622-revision-v1','','','2022-11-18 04:11:10','2022-11-18 04:11:10','',2622,'https://farmchemie.yasithawd.com/?p=2627',0,'revision','',0),(3342,1,'2023-08-26 07:49:34','2023-08-26 07:49:34','[vc_row][vc_column][ult_tab_element tab_style=\"Style_4\" tab_animation=\"Fade\" tab_title_color=\"#ffffff\" tab_background_color=\"#039447\" tab_hover_title_color=\"#ffffff\" tab_hover_background_color=\"#039447\" acttab_title=\"#ffffff\" acttab_background=\"#782d88\" disp_icon=\"Disables\"][single_tab title=\"All\" tab_id=\"1693035214365-3\"][dt_products_masonry layout=\"btn_on_img_hover\" bwb_columns=\"desktop:3|h_tablet:3|v_tablet:2|phone:1\" dis_posts_total=\"12\" product_rating=\"n\" ids=\"\"][/single_tab][single_tab title=\"Poultry\" tab_id=\"1693035214368-9\"][dt_products_masonry show_products=\"categories_products\" layout=\"btn_on_img_hover\" bwb_columns=\"desktop:3|h_tablet:3|v_tablet:2|phone:1\" dis_posts_total=\"12\" product_rating=\"n\" category_ids=\"65\"][/single_tab][single_tab title=\"Dairy and Large Animal\" tab_id=\"1693035580574-2-7\"][dt_products_masonry show_products=\"categories_products\" layout=\"btn_on_img_hover\" bwb_columns=\"desktop:3|h_tablet:3|v_tablet:2|phone:1\" dis_posts_total=\"12\" product_rating=\"n\" category_ids=\"63\"][/single_tab][single_tab title=\"Pet Care\" tab_id=\"1693035636854-3-3\"][dt_products_masonry show_products=\"categories_products\" layout=\"btn_on_img_hover\" bwb_columns=\"desktop:3|h_tablet:3|v_tablet:2|phone:1\" dis_posts_total=\"12\" product_rating=\"n\" category_ids=\"64\"][/single_tab][single_tab title=\"Feed Additives\" tab_id=\"1693035729559-4-1\"][dt_products_masonry show_products=\"categories_products\" layout=\"btn_on_img_hover\" bwb_columns=\"desktop:3|h_tablet:3|v_tablet:2|phone:1\" dis_posts_total=\"12\" category_ids=\"74\"][/single_tab][/ult_tab_element][/vc_column][/vc_row]','AllProducts','','inherit','closed','closed','','3335-revision-v1','','','2023-08-26 07:49:34','2023-08-26 07:49:34','',3335,'https://farmchemie.yasithawd.com/?p=3342',0,'revision','',0),(3340,1,'2023-08-26 07:43:33','2023-08-26 07:43:33','<p>[vc_row full_width=\"stretch_row_content_no_spaces\"][vc_column width=\"1/4\"][/vc_column][vc_column width=\"1/2\"][vc_widget_sidebar show_bg=\"false\" sidebar_id=\"sidebar_4\"][/vc_column][vc_column width=\"1/4\"][/vc_column][/vc_row][vc_row][vc_column][ult_tab_element tab_style=\"Style_4\" tab_animation=\"Fade\" tab_title_color=\"#ffffff\" tab_background_color=\"#039447\" tab_hover_title_color=\"#ffffff\" tab_hover_background_color=\"#039447\" acttab_title=\"#ffffff\" acttab_background=\"#782d88\" disp_icon=\"Disables\" main_title_typograpy=\"\" main_desc_typograpy=\"\"][single_tab title=\"All\" tab_id=\"1693035214365-3\"][dt_products_masonry layout=\"btn_on_img_hover\" bwb_columns=\"desktop:3|h_tablet:3|v_tablet:2|phone:1\" dis_posts_total=\"12\" product_rating=\"n\" ids=\"\"][/single_tab][single_tab title=\"Poultry\" tab_id=\"1693035214368-9\"][dt_products_masonry show_products=\"categories_products\" layout=\"btn_on_img_hover\" bwb_columns=\"desktop:3|h_tablet:3|v_tablet:2|phone:1\" dis_posts_total=\"12\" product_rating=\"n\" category_ids=\"65\"][/single_tab][single_tab title=\"Dairy and Large Animal\" tab_id=\"1693035580574-2-7\"][dt_products_masonry show_products=\"categories_products\" layout=\"btn_on_img_hover\" bwb_columns=\"desktop:3|h_tablet:3|v_tablet:2|phone:1\" dis_posts_total=\"12\" product_rating=\"n\" category_ids=\"63\"][/single_tab][single_tab title=\"Pet Care\" tab_id=\"1693035636854-3-3\"][dt_products_masonry show_products=\"categories_products\" layout=\"btn_on_img_hover\" bwb_columns=\"desktop:3|h_tablet:3|v_tablet:2|phone:1\" dis_posts_total=\"12\" product_rating=\"n\" category_ids=\"64\"][/single_tab][single_tab title=\"Feed Additives \" tab_id=\"1693035729559-4-1\"][dt_products_masonry show_products=\"categories_products\" layout=\"btn_on_img_hover\" bwb_columns=\"desktop:3|h_tablet:3|v_tablet:2|phone:1\" dis_posts_total=\"12\" category_ids=\"74\"][/single_tab][/ult_tab_element][/vc_column][/vc_row]</p>\r\n','AllProducts','','inherit','closed','closed','','3335-revision-v1','','','2023-08-26 07:43:33','2023-08-26 07:43:33','',3335,'https://farmchemie.yasithawd.com/?p=3340',0,'revision','',0),(3341,1,'2023-08-26 07:53:37','2023-08-26 07:53:37','<p>[vc_row][vc_column width=\"1/4\"][/vc_column][vc_column width=\"1/2\"][vc_widget_sidebar sidebar_id=\"sidebar_4\"][/vc_column][vc_column width=\"1/4\"][/vc_column][/vc_row][vc_row][vc_column][ult_tab_element tab_style=\"Style_4\" tab_animation=\"Fade\" tab_max=\"on\" tab_title_color=\"#ffffff\" tab_background_color=\"#039447\" tab_hover_title_color=\"#ffffff\" tab_hover_background_color=\"#039447\" acttab_title=\"#ffffff\" acttab_background=\"#782d88\" disp_icon=\"Disables\"][single_tab title=\"All\" tab_id=\"1693035214365-3\"][dt_products_masonry mode=\"grid\" layout=\"btn_on_img_hover\" bwb_columns=\"desktop:3|h_tablet:3|v_tablet:2|phone:1\" dis_posts_total=\"12\" product_rating=\"n\" ids=\"\"][/single_tab][single_tab title=\"Poultry\" tab_id=\"1693035214368-9\"][dt_products_masonry show_products=\"categories_products\" layout=\"btn_on_img_hover\" bwb_columns=\"desktop:3|h_tablet:3|v_tablet:2|phone:1\" dis_posts_total=\"12\" product_rating=\"n\" category_ids=\"65\"][/single_tab][single_tab title=\"Dairy and Large Animal\" tab_id=\"1693035580574-2-7\"][dt_products_masonry show_products=\"categories_products\" layout=\"btn_on_img_hover\" bwb_columns=\"desktop:3|h_tablet:3|v_tablet:2|phone:1\" dis_posts_total=\"12\" product_rating=\"n\" category_ids=\"63\"][/single_tab][single_tab title=\"Pet Care\" tab_id=\"1693035636854-3-3\"][dt_products_masonry show_products=\"categories_products\" layout=\"btn_on_img_hover\" bwb_columns=\"desktop:3|h_tablet:3|v_tablet:2|phone:1\" dis_posts_total=\"12\" product_rating=\"n\" category_ids=\"64\"][/single_tab][single_tab title=\"Feed Additives\" tab_id=\"1693035729559-4-1\"][dt_products_masonry show_products=\"categories_products\" layout=\"btn_on_img_hover\" bwb_columns=\"desktop:3|h_tablet:3|v_tablet:2|phone:1\" dis_posts_total=\"12\" category_ids=\"74\"][/single_tab][/ult_tab_element][/vc_column][/vc_row]</p>\n','AllProducts','','inherit','closed','closed','','3335-autosave-v1','','','2023-08-26 07:53:37','2023-08-26 07:53:37','',3335,'https://farmchemie.yasithawd.com/?p=3341',0,'revision','',0),(3211,1,'2023-08-16 12:09:52','2023-08-16 12:09:52','','1440px','','inherit','open','closed','','1440px','','','2023-08-16 12:09:52','2023-08-16 12:09:52','',2917,'https://farmchemie.yasithawd.com/wp-content/uploads/2023/08/1440px.png',0,'attachment','image/png',0),(3212,1,'2023-08-16 12:10:33','2023-08-16 12:10:33','[vc_row full_width=\"stretch_row_content_no_spaces\"][vc_column][ultimate_heading main_heading=\"Our History\" main_heading_color=\"#762888\" alignment=\"left\"][/ultimate_heading][vc_single_image image=\"3211\" img_size=\"full\"][/vc_column][/vc_row][vc_row disable_element=\"yes\"][vc_column][vc_row_inner css=\".vc_custom_1686713784619{margin-top: 35px !important;}\"][vc_column_inner width=\"1/3\"][vc_single_image image=\"3106\" img_size=\"full\"][/vc_column_inner][vc_column_inner width=\"2/3\"][ultimate_heading main_heading=\"Founded in 2002\" heading_tag=\"h3\" main_heading_color=\"#039447\" alignment=\"left\" sub_heading_font_size=\"desktop:18px;\"]Founded in 2002 by Mr. Uditha Wanigasinghe, an agriculturist who had a mission to aid valuable livestock producers in the country to enhance the yield and profitability of production. FARMCHEMIE introduced unprecedented solutions and consistent technical services to gain our customers’ trust and became the market leader in animal health products in 2006 within just four years.[/ultimate_heading][/vc_column_inner][/vc_row_inner][vc_row_inner rtl_reverse=\"yes\" css=\".vc_custom_1686714025469{margin-top: 35px !important;}\"][vc_column_inner width=\"2/3\"][ultimate_heading main_heading=\"2006\" heading_tag=\"h3\" main_heading_color=\"#039447\" alignment=\"left\"]In 2006, the Sri Lankan poultry industry was affected with Avian Influenza which became a difficult period for the growth of FARMCHEMIE. This was the key factor in our decision to diversify into Agro Products. PLANTCHEM &amp; PLANTSEEDS were established to offer solutions in Agro specialty fertilizers, pesticides and seeds to invaluable cultivators.[/ultimate_heading][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_single_image image=\"3107\" img_size=\"full\"][/vc_column_inner][/vc_row_inner][vc_row_inner css=\".vc_custom_1686713784619{margin-top: 35px !important;}\"][vc_column_inner width=\"1/3\"][vc_single_image image=\"3108\" img_size=\"full\"][/vc_column_inner][vc_column_inner width=\"2/3\"][ultimate_heading main_heading=\"2010\" heading_tag=\"h3\" main_heading_color=\"#039447\" alignment=\"left\"]In 2010, FEED CHEMIE became the subsequent addition to ever-growing vision of Mr. Uditha Wanigasinghe and entered the Animal Feed Additives market.[/ultimate_heading][/vc_column_inner][/vc_row_inner][vc_row_inner rtl_reverse=\"yes\" css=\".vc_custom_1686714115148{margin-top: 35px !important;}\"][vc_column_inner width=\"2/3\"][ultimate_heading main_heading=\"2012\" heading_tag=\"h3\" main_heading_color=\"#039447\" alignment=\"left\"]The year 2012 is described as a turning point in our journey as FARMCHEMIE established our first production facility for the manufacturing and packing of animal health products. FARMCHEMIE became the first animal health organization in Sri Lanka to obtain ISO 9001:2015 and WHO GMP International Quality Certification. With our own formulation unit, FARMCHEMIE was able to offer customized solutions to cater the needs of the Sri Lankan Livestock Industry.[/ultimate_heading][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_single_image image=\"3111\" img_size=\"full\"][/vc_column_inner][/vc_row_inner][vc_row_inner css=\".vc_custom_1686713784619{margin-top: 35px !important;}\"][vc_column_inner width=\"1/3\"][vc_single_image image=\"3112\" img_size=\"full\"][/vc_column_inner][vc_column_inner width=\"2/3\"][ultimate_heading main_heading=\"2016\" heading_tag=\"h3\" main_heading_color=\"#039447\" alignment=\"left\"]The year 2016 was another key milestone with the entry to the International Markets. FARMCHEMIE exported our first Feed Premix consignment to India and in 2018 our export operation was distinctly established as FARMCHEMIE MANUFACTURERS, a Board of Investment (BOI) approved entity.[/ultimate_heading][/vc_column_inner][/vc_row_inner][vc_row_inner css=\".vc_custom_1686713784619{margin-top: 35px !important;}\"][vc_column_inner width=\"2/3\"][ultimate_heading main_heading=\"Fully automated manufacturing\" heading_tag=\"h3\" main_heading_color=\"#039447\" alignment=\"left\"]FARMCHEMIE MANUFACTURERS has invested in fully automated manufacturing facility from Bühler and became the first Sri Lankan owned company to obtain FAMI-QS International Quality Certification.[/ultimate_heading][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_single_image image=\"3110\" img_size=\"full\"][/vc_column_inner][/vc_row_inner][vc_row_inner css=\".vc_custom_1686713784619{margin-top: 35px !important;}\"][vc_column_inner width=\"1/3\"][vc_single_image image=\"3116\" img_size=\"full\"][/vc_column_inner][vc_column_inner width=\"2/3\"][ultimate_heading main_heading=\"Official toll manufacturer partner\" heading_tag=\"h3\" main_heading_color=\"#039447\" alignment=\"left\"]With the trust and reputation built as a reliable manufacturer of animal feed additives and supplements in the global market, several world-renowned international brands have appointed FARMCHEMIE MANUFACTURERS as the official toll manufacturer partner. FARMCHEMIE MANUFACTURERS exports a wide range of products consisting of premixes, specialty feed additives, oral liquid supplements and pet supplements to various markets in South Asia, East Asia, Middle East and Africa.\r\n\r\nFARMCHEMIE, FEED CHEMIE &amp; FARMCHEMIE MANUFACTURERS currently operate under the ownership of our holding company, DYVESTA.\r\n\r\nDYEVSTA has become the pinnacle of Animal Nutrition and Health.\r\n\r\nDYVESTA is Dynamic, through our continuous evolution, growth and progress. DYVESTA is Diverse, in terms of both our business strategy and our community. DYVESTA is Devoted to our valuable business partners through exceptional service.[/ultimate_heading][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row full_width=\"stretch_row\" equal_height=\"yes\" bg_type=\"image\" parallax_style=\"vcpb-default\" bg_image_new=\"id^2524|url^https://farmchemie.yasithawd.com/wp-content/uploads/2022/09/marketbgimg1.png|caption^null|alt^null|title^marketbgimg1|description^null\" bg_image_repeat=\"no-repeat\" enable_overlay=\"enable_overlay_value\" overlay_color=\"#000000\" overlay_pattern=\"01.png\" overlay_pattern_opacity=\"5\" css=\".vc_custom_1686720701314{margin-top: 35px !important;padding-top: 65px !important;padding-bottom: 100px !important;}\"][vc_column][vc_row_inner equal_height=\"yes\"][vc_column_inner width=\"1/2\"][ultimate_heading main_heading=\"Vision\" main_heading_color=\"#039447\" sub_heading_color=\"#039447\"]To be the customers’ first and best choice by ensuring outstanding satisfaction through a well-trained and dedicated team. Prompt and quality solutions to our customers’ requirements will determine the increase of return on investment for us.[/ultimate_heading][/vc_column_inner][vc_column_inner width=\"1/2\"][ultimate_heading main_heading=\"Mission\" main_heading_color=\"#762888\" sub_heading_color=\"#762888\"]To become a world renowned manufacturer of Animal Health products and a trusted partner among our stakeholders for our integrity as well as for providing effective solutions[/ultimate_heading][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row css=\".vc_custom_1684836308288{margin-top: 15px !important;}\"][vc_column][ultimate_heading main_heading=\"Achievements\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;\"][/ultimate_heading][vc_row_inner gap=\"20\"][vc_column_inner width=\"1/2\" css=\".vc_custom_1691995519863{background-color: #f4ab20 !important;border: 1px solid #f4ab20 !important;border-radius: 35px !important;}\"][bsf-info-box icon_type=\"custom\" icon_img=\"id^3117|url^https://farmchemie.yasithawd.com/wp-content/uploads/2023/08/Pink_-H.png|caption^null|alt^null|title^Pink_-H|description^null\" img_width=\"60\" icon_style=\"advanced\" icon_border_style=\"solid\" icon_color_border=\"#ffffff\" icon_border_size=\"1\" icon_border_radius=\"500\" icon_border_spacing=\"1\" title=\"First Free Sale Certificate obtained from Veterinary Drug Control Authority (VDCA) for Veterinary Pharmaceuticals\" title_font_style=\"font-weight:bold;\" title_font_size=\"desktop:20px;\"][/bsf-info-box][/vc_column_inner][vc_column_inner width=\"1/2\" css=\".vc_custom_1691995661095{background-color: #722f8b !important;border: 1px solid #722f8b !important;border-radius: 35px !important;}\"][bsf-info-box icon_type=\"custom\" icon_img=\"id^3117|url^https://farmchemie.yasithawd.com/wp-content/uploads/2023/08/Pink_-H.png|caption^null|alt^null|title^Pink_-H|description^null\" img_width=\"60\" icon_style=\"advanced\" icon_border_style=\"solid\" icon_color_border=\"#ffffff\" icon_border_size=\"1\" icon_border_radius=\"500\" icon_border_spacing=\"1\" title=\"First ISO 9001: 2015 ,WHO-GMP Quality Management systems certified Animal Health company in Sri Lanka since August, 2012\" title_font_style=\"font-weight:bold;\" title_font_color=\"#ffffff\" title_font_size=\"desktop:20px;\"][/bsf-info-box][/vc_column_inner][/vc_row_inner][vc_row_inner gap=\"20\"][vc_column_inner width=\"1/2\" css=\".vc_custom_1691995661095{background-color: #722f8b !important;border: 1px solid #722f8b !important;border-radius: 35px !important;}\"][bsf-info-box icon_type=\"custom\" icon_img=\"id^3117|url^https://farmchemie.yasithawd.com/wp-content/uploads/2023/08/Pink_-H.png|caption^null|alt^null|title^Pink_-H|description^null\" img_width=\"60\" icon_style=\"advanced\" icon_border_style=\"solid\" icon_color_border=\"#ffffff\" icon_border_size=\"1\" icon_border_radius=\"500\" icon_border_spacing=\"1\" title=\"First FAMI-QS certified company in sri lanka\" title_font_style=\"font-weight:bold;\" title_font_color=\"#ffffff\" title_font_size=\"desktop:20px;\"][/bsf-info-box][/vc_column_inner][vc_column_inner width=\"1/2\" css=\".vc_custom_1691995519863{background-color: #f4ab20 !important;border: 1px solid #f4ab20 !important;border-radius: 35px !important;}\"][bsf-info-box icon_type=\"custom\" icon_img=\"id^3117|url^https://farmchemie.yasithawd.com/wp-content/uploads/2023/08/Pink_-H.png|caption^null|alt^null|title^Pink_-H|description^null\" img_width=\"60\" icon_style=\"advanced\" icon_border_style=\"solid\" icon_color_border=\"#ffffff\" icon_border_size=\"1\" icon_border_radius=\"500\" icon_border_spacing=\"1\" title=\"First Certificate of Ethical Trading certified in Livestock industry\" title_font_style=\"font-weight:bold;\" title_font_size=\"desktop:20px;\"][/bsf-info-box][/vc_column_inner][/vc_row_inner][vc_row_inner gap=\"20\"][vc_column_inner width=\"1/4\" css=\".vc_custom_1691996718116{border-radius: 35px !important;}\"][/vc_column_inner][vc_column_inner width=\"2/4\" css=\".vc_custom_1691995519863{background-color: #f4ab20 !important;border: 1px solid #f4ab20 !important;border-radius: 35px !important;}\"][bsf-info-box icon_type=\"custom\" icon_img=\"id^3117|url^https://farmchemie.yasithawd.com/wp-content/uploads/2023/08/Pink_-H.png|caption^null|alt^null|title^Pink_-H|description^null\" img_width=\"60\" icon_style=\"advanced\" icon_border_style=\"solid\" icon_color_border=\"#ffffff\" icon_border_size=\"1\" icon_border_radius=\"500\" icon_border_spacing=\"1\" title=\"First Silver awarded company at National Exports Awards in Livestock industry\" title_font_style=\"font-weight:bold;\" title_font_size=\"desktop:20px;\"][/bsf-info-box][/vc_column_inner][vc_column_inner width=\"1/4\"][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner width=\"1/6\"][/vc_column_inner][vc_column_inner width=\"2/3\"][vc_single_image image=\"3126\" img_size=\"full\" alignment=\"center\"][vc_single_image image=\"3125\" img_size=\"full\" alignment=\"center\"][/vc_column_inner][vc_column_inner width=\"1/6\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row][vc_column][ultimate_heading main_heading=\"Board Of Directors\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;margin-bottom:35px;\"][/ultimate_heading][ultimate_carousel slides_on_desk=\"1\" slides_on_tabs=\"1\" slides_on_mob=\"1\" arrow_style=\"square-bg\" arrow_bg_color=\"#039447\" arrow_color=\"#ffffff\" next_icon=\"ultsl-arrow-right6\" prev_icon=\"ultsl-arrow-left6\" dots_color=\"#039447\" item_animation=\"fadeIn\"][vc_row_inner][vc_column_inner width=\"1/2\"][vc_single_image image=\"3170\" img_size=\"large\" alignment=\"center\" style=\"vc_box_outline_circle_2\" border_color=\"black\" image_hovers=\"false\"][/vc_column_inner][vc_column_inner width=\"1/2\"][ultimate_heading main_heading=\"Quisque sed nibh tristique\" heading_tag=\"h3\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;\"]Duis lorem risus, aliquet a auctor a, venenatis in dui. Praesent et eros et risus dapibus placerat hendrerit cursus magna.[/ultimate_heading][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner width=\"1/2\"][vc_single_image image=\"3171\" img_size=\"large\" alignment=\"center\" style=\"vc_box_outline_circle_2\" border_color=\"black\" image_hovers=\"false\"][/vc_column_inner][vc_column_inner width=\"1/2\"][ultimate_heading main_heading=\"Quisque sed nibh tristique\" heading_tag=\"h3\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;\"]Duis lorem risus, aliquet a auctor a, venenatis in dui. Praesent et eros et risus dapibus placerat hendrerit cursus magna.[/ultimate_heading][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner width=\"1/2\"][vc_single_image image=\"3173\" img_size=\"large\" alignment=\"center\" style=\"vc_box_outline_circle_2\" border_color=\"black\" image_hovers=\"false\"][/vc_column_inner][vc_column_inner width=\"1/2\"][ultimate_heading main_heading=\"Quisque sed nibh tristique\" heading_tag=\"h3\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;\"]Duis lorem risus, aliquet a auctor a, venenatis in dui. Praesent et eros et risus dapibus placerat hendrerit cursus magna.[/ultimate_heading][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner width=\"1/2\"][vc_single_image image=\"3172\" img_size=\"large\" alignment=\"center\" style=\"vc_box_outline_circle_2\" border_color=\"black\" image_hovers=\"false\"][/vc_column_inner][vc_column_inner width=\"1/2\"][ultimate_heading main_heading=\"Quisque sed nibh tristique\" heading_tag=\"h3\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;\"]Duis lorem risus, aliquet a auctor a, venenatis in dui. Praesent et eros et risus dapibus placerat hendrerit cursus magna.[/ultimate_heading][/vc_column_inner][/vc_row_inner][/ultimate_carousel][/vc_column][/vc_row]','About us','','inherit','closed','closed','','2917-revision-v1','','','2023-08-16 12:10:33','2023-08-16 12:10:33','',2917,'https://farmchemie.yasithawd.com/?p=3212',0,'revision','',0),(3116,1,'2023-08-14 06:41:41','2023-08-14 06:41:41','','Official-tool-manufacturer-partner','','inherit','open','closed','','official-tool-manufacturer-partner','','','2023-08-14 06:41:41','2023-08-14 06:41:41','',2917,'https://farmchemie.yasithawd.com/wp-content/uploads/2023/08/Official-tool-manufacturer-partner.png',0,'attachment','image/png',0),(3114,1,'2023-08-14 05:30:34','2023-08-14 05:30:34','','purpleclr-image1','','inherit','open','closed','','purpleclr-image1','','','2023-08-14 05:30:34','2023-08-14 05:30:34','',2917,'https://farmchemie.yasithawd.com/wp-content/uploads/2023/08/purpleclr-image1.jpg',0,'attachment','image/jpeg',0),(3115,1,'2023-08-14 05:42:21','2023-08-14 05:42:21','[vc_row][vc_column][ultimate_heading main_heading=\"Our History\" main_heading_color=\"#762888\" alignment=\"left\"][/ultimate_heading][vc_row_inner css=\".vc_custom_1686713784619{margin-top: 35px !important;}\"][vc_column_inner width=\"1/3\"][vc_single_image image=\"3106\" img_size=\"full\"][/vc_column_inner][vc_column_inner width=\"2/3\"][ultimate_heading main_heading=\"Founded in 2002\" heading_tag=\"h3\" main_heading_color=\"#039447\" alignment=\"left\"]Founded in 2002 by Mr. Uditha Wanigasinghe, an agriculturist who had a mission to aid valuable livestock producers in the country to enhance the yield and profitability of production. FARMCHEMIE introduced unprecedented solutions and consistent technical services to gain our customers’ trust and became the market leader in animal health products in 2006 within just four years.[/ultimate_heading][/vc_column_inner][/vc_row_inner][vc_row_inner rtl_reverse=\"yes\" css=\".vc_custom_1686714025469{margin-top: 35px !important;}\"][vc_column_inner width=\"2/3\"][ultimate_heading main_heading=\"2006\" heading_tag=\"h3\" main_heading_color=\"#039447\" alignment=\"left\"]In 2006, the Sri Lankan poultry industry was affected with Avian Influenza which became a difficult period for the growth of FARMCHEMIE. This was the key factor in our decision to diversify into Agro Products. PLANTCHEM &amp; PLANTSEEDS were established to offer solutions in Agro specialty fertilizers, pesticides and seeds to invaluable cultivators.[/ultimate_heading][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_single_image image=\"3107\" img_size=\"full\"][/vc_column_inner][/vc_row_inner][vc_row_inner css=\".vc_custom_1686713784619{margin-top: 35px !important;}\"][vc_column_inner width=\"1/3\"][vc_single_image image=\"3108\" img_size=\"full\"][/vc_column_inner][vc_column_inner width=\"2/3\"][ultimate_heading main_heading=\"2010\" heading_tag=\"h3\" main_heading_color=\"#039447\" alignment=\"left\"]In 2010, FEED CHEMIE became the subsequent addition to ever-growing vision of Mr. Uditha Wanigasinghe and entered the Animal Feed Additives market.[/ultimate_heading][/vc_column_inner][/vc_row_inner][vc_row_inner rtl_reverse=\"yes\" css=\".vc_custom_1686714115148{margin-top: 35px !important;}\"][vc_column_inner width=\"2/3\"][ultimate_heading main_heading=\"2012\" heading_tag=\"h3\" main_heading_color=\"#039447\" alignment=\"left\"]The year 2012 is described as a turning point in our journey as FARMCHEMIE established our first production facility for the manufacturing and packing of animal health products. FARMCHEMIE became the first animal health organization in Sri Lanka to obtain ISO 9001:2015 and WHO GMP International Quality Certification. With our own formulation unit, FARMCHEMIE was able to offer customized solutions to cater the needs of the Sri Lankan Livestock Industry.[/ultimate_heading][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_single_image image=\"3111\" img_size=\"full\"][/vc_column_inner][/vc_row_inner][vc_row_inner css=\".vc_custom_1686713784619{margin-top: 35px !important;}\"][vc_column_inner width=\"1/3\"][vc_single_image image=\"3112\" img_size=\"full\"][/vc_column_inner][vc_column_inner width=\"2/3\"][ultimate_heading main_heading=\"2016\" heading_tag=\"h3\" main_heading_color=\"#039447\" alignment=\"left\"]The year 2016 was another key milestone with the entry to the International Markets. FARMCHEMIE exported our first Feed Premix consignment to India and in 2018 our export operation was distinctly established as FARMCHEMIE MANUFACTURERS, a Board of Investment (BOI) approved entity.[/ultimate_heading][/vc_column_inner][/vc_row_inner][vc_row_inner css=\".vc_custom_1686713784619{margin-top: 35px !important;}\"][vc_column_inner width=\"2/3\"][ultimate_heading main_heading=\"Fully automated manufacturing\" heading_tag=\"h3\" main_heading_color=\"#039447\" alignment=\"left\"]FARMCHEMIE MANUFACTURERS has invested in fully automated manufacturing facility from Bühler and became the first Sri Lankan owned company to obtain FAMI-QS International Quality Certification.[/ultimate_heading][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_single_image image=\"3110\" img_size=\"full\"][/vc_column_inner][/vc_row_inner][vc_row_inner css=\".vc_custom_1686713784619{margin-top: 35px !important;}\"][vc_column_inner width=\"1/3\"][vc_single_image image=\"2901\" img_size=\"full\"][/vc_column_inner][vc_column_inner width=\"2/3\"][ultimate_heading main_heading=\"Official toll manufacturer partner\" heading_tag=\"h3\" main_heading_color=\"#039447\" alignment=\"left\"]With the trust and reputation built as a reliable manufacturer of animal feed additives and supplements in the global market, several world-renowned international brands have appointed FARMCHEMIE MANUFACTURERS as the official toll manufacturer partner. FARMCHEMIE MANUFACTURERS exports a wide range of products consisting of premixes, specialty feed additives, oral liquid supplements and pet supplements to various markets in South Asia, East Asia, Middle East and Africa.\r\n\r\nFARMCHEMIE, FEED CHEMIE &amp; FARMCHEMIE MANUFACTURERS currently operate under the ownership of our holding company, DYVESTA.\r\n\r\nDYEVSTA has become the pinnacle of Animal Nutrition and Health.\r\n\r\nDYVESTA is Dynamic, through our continuous evolution, growth and progress. DYVESTA is Diverse, in terms of both our business strategy and our community. DYVESTA is Devoted to our valuable business partners through exceptional service.[/ultimate_heading][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row full_width=\"stretch_row\" equal_height=\"yes\" bg_type=\"image\" parallax_style=\"vcpb-default\" bg_image_new=\"id^2524|url^https://farmchemie.yasithawd.com/wp-content/uploads/2022/09/marketbgimg1.png|caption^null|alt^null|title^marketbgimg1|description^null\" bg_image_repeat=\"no-repeat\" enable_overlay=\"enable_overlay_value\" overlay_color=\"#000000\" overlay_pattern=\"01.png\" overlay_pattern_opacity=\"5\" css=\".vc_custom_1686720701314{margin-top: 35px !important;padding-top: 65px !important;padding-bottom: 100px !important;}\"][vc_column][vc_row_inner equal_height=\"yes\"][vc_column_inner width=\"1/2\"][ultimate_heading main_heading=\"Vision\" main_heading_color=\"#039447\" sub_heading_color=\"#039447\"]To be the customers’ first and best choice by ensuring outstanding satisfaction through a well-trained and dedicated team. Prompt and quality solutions to our customers’ requirements will determine the increase of return on investment for us.[/ultimate_heading][/vc_column_inner][vc_column_inner width=\"1/2\"][ultimate_heading main_heading=\"Mission\" main_heading_color=\"#762888\" sub_heading_color=\"#762888\"]To become a world renowned manufacturer of Animal Health products and a trusted partner among our stakeholders for our integrity as well as for providing effective solutions[/ultimate_heading][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row css=\".vc_custom_1684836308288{margin-top: 15px !important;}\"][vc_column][ultimate_heading main_heading=\"Achievements\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;\"][/ultimate_heading][vc_row_inner][vc_column_inner width=\"1/5\"][/vc_column_inner][vc_column_inner width=\"1/5\"][/vc_column_inner][vc_column_inner width=\"1/5\"][/vc_column_inner][vc_column_inner width=\"1/5\"][/vc_column_inner][vc_column_inner width=\"1/5\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row]','About us','','inherit','closed','closed','','2917-revision-v1','','','2023-08-14 05:42:21','2023-08-14 05:42:21','',2917,'https://farmchemie.yasithawd.com/?p=3115',0,'revision','',0),(3373,1,'2023-08-30 07:28:23','2023-08-30 07:28:23','','Prazimec D','<h3><em>Endo-Ecto parasiticide for Dogs</em></h3>\r\n[dt_divider style=\"thick\" /]\r\n\r\n&nbsp;\r\n\r\n<strong>Composition: </strong>\r\n\r\nEach 1 tablet contains,\r\nPraziquantel – 0.05 g\r\nAbamectin - 0.002 g\r\n\r\n[dt_divider style=\"thin\" /]\r\n\r\n<strong>Indication: </strong>\r\n\r\nIn infestation of dogs with endoparasites tapeworms - cestodes (teniae) and roundworms (nematodes); in filariasis of the heart; in infestations with fleas, lice, pasture ticks and mange mites including ear scabies; and particularly in cases of complex endo- and ectoparasitic invasion.\r\n\r\n[dt_divider style=\"thin\" /]\r\n\r\n<strong>Contraindication:</strong>\r\n\r\nDo not administer to dogs of Collie, Shelti and Bobtail breeds, to pregnant bitches, as well as to puppies below two months of age. Do not give more than four tablets as a single dose to dogs with a body weight exceeding 40 kg.\r\n\r\n[dt_divider style=\"thin\" /]\r\n\r\n<strong>Dosage: </strong>\r\n\r\nOne tablet per 10 kg body weight. The treatment may be repeated after a month.\r\nIn cases of flea infestation, the living premises must also be disinfected.\r\n\r\n[dt_divider style=\"thin\" /]\r\n\r\n<strong>Pack sizes: </strong>\r\n\r\nTwo (2) tablets and Four (4) tablets\r\n\r\n&nbsp;\r\n\r\n[dt_divider style=\"thick\" /]\r\n\r\n&nbsp;\r\n\r\n<a href=\"/wp-content/uploads/2023/08/AVI-VE.pdf\"><i class=\"fa-solid fa-file-pdf fa-2xl\" style=\"color: #039447;\"> pdf</i></a> <a href=\"//wp-content/uploads/2023/08/AVI-3-folding-brochure-SInhala-Final-outline_compressed-4.pdf\"><i class=\"fa-solid fa-file-pdf fa-2xl\" style=\"color: #039447;\"> pdf</i></a>','publish','closed','closed','','prazimec-d','','','2023-09-16 08:50:59','2023-09-16 08:50:59','',0,'https://farmchemie.yasithawd.com/?post_type=product&#038;p=3373',0,'product','',0),(3480,1,'2023-09-11 04:54:42','2023-09-11 04:54:42','[vc_row disable_element=\"yes\"][vc_column][ult_tab_element tab_style=\"Style_4\" tab_animation=\"Fade\" tab_title_color=\"#ffffff\" tab_background_color=\"#039447\" tab_hover_title_color=\"#ffffff\" tab_hover_background_color=\"#853497\" acttab_title=\"#ffffff\" acttab_background=\"#853497\" disp_icon=\"Disables\"][single_tab title=\"All\" tab_id=\"1692579230326-8\"][dt_products_masonry show_products=\"categories_products\" mode=\"grid\" layout=\"btn_on_img_hover\" bwb_columns=\"desktop:3|h_tablet:3|v_tablet:2|phone:1\" dis_posts_total=\"\" category_ids=\"64\"][/single_tab][single_tab title=\"Cat\" tab_id=\"1692579230334-3\"][dt_products_masonry show_products=\"categories_products\" mode=\"grid\" layout=\"btn_on_img_hover\" bwb_columns=\"desktop:3|h_tablet:3|v_tablet:2|phone:1\" dis_posts_total=\"\" category_ids=\"114\"][/single_tab][single_tab title=\"Dog\" tab_id=\"1692579268639-2-10\"][dt_products_masonry show_products=\"categories_products\" mode=\"grid\" layout=\"btn_on_img_hover\" bwb_columns=\"desktop:3|h_tablet:3|v_tablet:2|phone:1\" dis_posts_total=\"\" category_ids=\"102\"][/single_tab][single_tab title=\"Exotic Birds\" tab_id=\"1692579279159-3-2\"][dt_products_masonry show_products=\"categories_products\" mode=\"grid\" layout=\"btn_on_img_hover\" bwb_columns=\"desktop:3|h_tablet:3|v_tablet:2|phone:1\" dis_posts_total=\"\" category_ids=\"121\"][/single_tab][/ult_tab_element][/vc_column][/vc_row][vc_row][vc_column][dt_products_masonry show_products=\"categories_products\" mode=\"grid\" bwb_columns=\"desktop:3|h_tablet:3|v_tablet:2|phone:1\" dis_posts_total=\"\" category_ids=\"64\"][/vc_column][/vc_row]','Pet Care','','inherit','closed','closed','','3039-revision-v1','','','2023-09-11 04:54:42','2023-09-11 04:54:42','',3039,'https://farmchemie.yasithawd.com/?p=3480',0,'revision','',0),(3098,1,'2023-08-12 17:17:31','2023-08-12 17:17:31','[vc_row][vc_column][dt_products_masonry show_products=\"categories_products\" bwb_columns=\"desktop:3|h_tablet:3|v_tablet:2|phone:1\" loading_mode=\"standard\" st_posts_per_page=\"9\" st_show_all_pages=\"y\" product_rating=\"n\" category_ids=\"74\"][/vc_column][/vc_row]','Feed Additives','','publish','closed','closed','','feed-additives','','','2023-09-24 11:38:33','2023-09-24 11:38:33','',2655,'https://farmchemie.yasithawd.com/?page_id=3098',0,'page','',0),(3099,1,'2023-08-12 17:13:48','2023-08-12 17:13:48','','PRODUCTS','','inherit','open','closed','','products-2','','','2023-08-12 17:13:48','2023-08-12 17:13:48','',2655,'https://farmchemie.yasithawd.com/wp-content/uploads/2023/08/PRODUCTS.png',0,'attachment','image/png',0),(3100,1,'2023-08-12 17:14:23','2023-08-12 17:14:23','','Feed Additives','','inherit','open','closed','','feed-additives','','','2023-08-12 17:14:23','2023-08-12 17:14:23','',3098,'https://farmchemie.yasithawd.com/wp-content/uploads/2023/08/Feed-Additives.jpg',0,'attachment','image/jpeg',0),(3101,1,'2023-08-21 02:50:06','2023-08-21 02:50:06','[vc_row full_width=\"stretch_row_content\"][vc_column width=\"2/3\"][/vc_column][vc_column width=\"1/3\"][vc_widget_sidebar sidebar_id=\"sidebar_1\"][/vc_column][/vc_row]','Products','','inherit','closed','closed','','2655-autosave-v1','','','2023-08-21 02:50:06','2023-08-21 02:50:06','',2655,'https://farmchemie.yasithawd.com/?p=3101',0,'revision','',0),(3102,1,'2023-08-12 17:16:38','2023-08-12 17:16:38','[vc_row][vc_column][dt_products_masonry show_products=\"categories_products\" layout=\"btn_on_img_hover\" bwb_columns=\"desktop:3|h_tablet:3|v_tablet:2|phone:1\" dis_posts_total=\"\" product_rating=\"n\" category_ids=\"74\"][/vc_column][/vc_row]','Feed Additives','','inherit','closed','closed','','3098-revision-v1','','','2023-08-12 17:16:38','2023-08-12 17:16:38','',3098,'https://farmchemie.yasithawd.com/?p=3102',0,'revision','',0),(3564,1,'2023-09-12 14:18:42','2023-09-12 14:18:42','[vc_row full_width=\"stretch_row_content_no_spaces\"][vc_column width=\"1/3\"][bsf-info-box icon=\"icomoon-the7-font-the7-phone-04\" icon_size=\"32\" icon_color=\"#059444\" title=\"Phone\"]<strong>+94 (0) 11 298 3922</strong>[/bsf-info-box][bsf-info-box icon=\"icomoon-the7-font-the7-mail-01\" icon_size=\"32\" icon_color=\"#059444\" title=\"Email Address\"]info@farmchemie.com[/bsf-info-box][bsf-info-box icon=\"icomoon-the7-font-the7-map-02\" icon_size=\"32\" icon_color=\"#059444\" title=\"Address\"]No. 78, Industrial Zone, Katuwana, Homagama[/bsf-info-box][/vc_column][vc_column width=\"1/3\"][ultimate_heading main_heading=\"Contact Us\" alignment=\"left\" main_heading_margin=\"margin-bottom:35px;\"][/ultimate_heading][contact-form-7 id=\"12\"][/vc_column][vc_column width=\"1/3\"][vc_gmaps link=\"#E-8_JTNDaWZyYW1lJTIwc3JjJTNEJTIyaHR0cHMlM0ElMkYlMkZ3d3cuZ29vZ2xlLmNvbSUyRm1hcHMlMkZlbWJlZCUzRnBiJTNEJTIxMW0xOCUyMTFtMTIlMjExbTMlMjExZDM5NjEuNDkyNzAyNjUzODQyJTIxMmQ4MC4wMDU1NTMyNTA5NzkzNiUyMTNkNi44MzEzNzM2MjEzNzcxMSUyMTJtMyUyMTFmMCUyMTJmMCUyMTNmMCUyMTNtMiUyMTFpMTAyNCUyMTJpNzY4JTIxNGYxMy4xJTIxM20zJTIxMW0yJTIxMXMweDNhZTI1MWY2M2RlZjc3NGYlMjUzQTB4OTI5MjYyZGQ3OGNmZjViZSUyMTJzRmFybWNoZW1pZSUyNTIwJTI4UHJpdmF0ZSUyOSUyNTIwTGltaXRlZCUyMTVlMCUyMTNtMiUyMTFzZW4lMjEyc2xrJTIxNHYxNjY4NzQ0NzQ2NDk0JTIxNW0yJTIxMXNlbiUyMTJzbGslMjIlMjB3aWR0aCUzRCUyMjE5MjAlMjIlMjBoZWlnaHQlM0QlMjI1MDAlMjIlMjBzdHlsZSUzRCUyMmJvcmRlciUzQTAlM0IlMjIlMjBhbGxvd2Z1bGxzY3JlZW4lM0QlMjIlMjIlMjBsb2FkaW5nJTNEJTIybGF6eSUyMiUyMHJlZmVycmVycG9saWN5JTNEJTIybm8tcmVmZXJyZXItd2hlbi1kb3duZ3JhZGUlMjIlM0UlM0MlMkZpZnJhbWUlM0U=\"][/vc_column][/vc_row][vc_row][vc_column][vc_row_inner][vc_column_inner width=\"1/2\"][/vc_column_inner][vc_column_inner width=\"1/2\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row]','Contact Us','','inherit','closed','closed','','2622-revision-v1','','','2023-09-12 14:18:42','2023-09-12 14:18:42','',2622,'https://farmchemie.yasithawd.com/?p=3564',0,'revision','',0),(3104,1,'2023-09-11 10:41:48','2023-08-12 17:24:34',' ','','','publish','closed','closed','','3104','','','2023-09-11 10:41:48','2023-09-11 10:41:48','',0,'https://farmchemie.yasithawd.com/?p=3104',8,'nav_menu_item','',0),(3108,1,'2023-08-14 04:49:50','2023-08-14 04:49:50','','WhatsApp-Image-2023-05-16-at-2.43.38-AM','','inherit','open','closed','','whatsapp-image-2023-05-16-at-2-43-38-am-2','','','2023-08-14 04:49:50','2023-08-14 04:49:50','',2917,'https://farmchemie.yasithawd.com/wp-content/uploads/2023/08/WhatsApp-Image-2023-05-16-at-2.43.38-AM.jpeg',0,'attachment','image/jpeg',0),(3109,1,'2023-08-14 04:50:51','2023-08-14 04:50:51','','CNCI 2N7A3620 Edit cmykss','','inherit','open','closed','','cnci-2n7a3620-edit-cmykss','','','2023-08-14 04:50:51','2023-08-14 04:50:51','',2917,'https://farmchemie.yasithawd.com/wp-content/uploads/2023/08/CNCI-2N7A3620-Edit-cmykss.png',0,'attachment','image/png',0),(3110,1,'2023-08-14 04:54:05','2023-08-14 04:54:05','','CNCI-2N7A3620-Edit-cmykss-1','','inherit','open','closed','','cnci-2n7a3620-edit-cmykss-1','','','2023-08-14 04:54:05','2023-08-14 04:54:05','',2917,'https://farmchemie.yasithawd.com/wp-content/uploads/2023/08/CNCI-2N7A3620-Edit-cmykss-1.png',0,'attachment','image/png',0),(3111,1,'2023-08-14 04:57:45','2023-08-14 04:57:45','','WhatsApp-Image-2023-05-16-at-2.43.56-AM','','inherit','open','closed','','whatsapp-image-2023-05-16-at-2-43-56-am-2','','','2023-08-14 04:57:45','2023-08-14 04:57:45','',2917,'https://farmchemie.yasithawd.com/wp-content/uploads/2023/08/WhatsApp-Image-2023-05-16-at-2.43.56-AM.jpeg',0,'attachment','image/jpeg',0),(3112,1,'2023-08-14 04:58:39','2023-08-14 04:58:39','','WhatsApp-Image-2023-05-16-at-2.44.00-AM','','inherit','open','closed','','whatsapp-image-2023-05-16-at-2-44-00-am-2','','','2023-08-14 04:58:39','2023-08-14 04:58:39','',2917,'https://farmchemie.yasithawd.com/wp-content/uploads/2023/08/WhatsApp-Image-2023-05-16-at-2.44.00-AM.jpeg',0,'attachment','image/jpeg',0),(2908,1,'2023-05-23 10:14:46','2023-05-23 10:14:46','[vc_row][vc_column][ultimate_heading main_heading=\"Our History\" main_heading_color=\"#762888\" alignment=\"left\" margin_design_tab_text=\"\"][/ultimate_heading][icon_timeline timeline_line_color=\"#059444\" time_sep_color=\"#059444\" time_sep_bg_color=\"#059444\"][icon_timeline_sep time_sep_title=\"Founded in 2002\"][icon_timeline_feat]Founded in 2002 by Mr. Uditha Wanigasinghe, an agriculturist who had a mission to aid valuable livestock producers in the country to enhance the yield and profitability of production. FARMCHEMIE introduced unprecedented solutions and consistent technical services to gain our customers’ trust and became the market leader in animal health products in 2006 within just four years.[/icon_timeline_feat][icon_timeline_item time_title=\"2006 Sri Lankan Avian Influenza\"]<img class=\"alignnone size-medium wp-image-2895\" src=\"https://farmchemie.yasithawd.com/wp-content/uploads/2023/05/WhatsApp-Image-2023-05-16-at-2.43.25-AM-300x225.jpeg\" alt=\"\" width=\"300\" height=\"225\" />\r\n\r\nIn 2006, the Sri Lankan poultry industry was affected with Avian Influenza which became a difficult period for the growth of FARMCHEMIE. This was the key factor in our decision to diversify into Agro Products. PLANTCHEM &amp; PLANTSEEDS were established to offer solutions in Agro specialty fertilizers, pesticides and seeds to invaluable cultivators.[/icon_timeline_item][icon_timeline_item time_title=\"2010 FEED CHEMIE\"]<img class=\"alignnone size-medium wp-image-2896\" src=\"https://farmchemie.yasithawd.com/wp-content/uploads/2023/05/WhatsApp-Image-2023-05-16-at-2.43.38-AM-300x225.jpeg\" alt=\"\" width=\"300\" height=\"225\" />\r\n\r\nIn 2010, FEED CHEMIE became the subsequent addition to ever-growing vision of Mr. Uditha Wanigasinghe and entered the Animal Feed Additives market.[/icon_timeline_item][icon_timeline_item time_title=\"2012 Production facility\"]<img class=\"alignnone wp-image-2897 size-medium\" src=\"https://farmchemie.yasithawd.com/wp-content/uploads/2023/05/WhatsApp-Image-2023-05-16-at-2.43.56-AM-300x254.jpeg\" alt=\"\" width=\"300\" height=\"254\" />\r\n\r\nThe year 2012 is described as a turning point in our journey as FARMCHEMIE established our first production facility for the manufacturing and packing of animal health products. FARMCHEMIE became the first animal health organization in Sri Lanka to obtain ISO 9001:2015 and WHO GMP International Quality Certification. With our own formulation unit, FARMCHEMIE was able to offer customized solutions to cater the needs of the Sri Lankan Livestock Industry.[/icon_timeline_item][icon_timeline_item time_title=\"2016 Another key milestone\"]<img class=\"alignnone wp-image-2898 size-medium\" src=\"https://farmchemie.yasithawd.com/wp-content/uploads/2023/05/WhatsApp-Image-2023-05-16-at-2.44.00-AM-229x300.jpeg\" alt=\"\" width=\"229\" height=\"300\" />\r\n\r\nThe year 2016 was another key milestone with the entry to the International Markets. FARMCHEMIE exported our first Feed Premix consignment to India and in 2018 our export operation was distinctly established as FARMCHEMIE MANUFACTURERS, a Board of Investment (BOI) approved entity.[/icon_timeline_item][icon_timeline_feat time_title=\"invested in fully automated manufacturing facility from Bühler\"]<img class=\"alignnone wp-image-2899 size-medium\" src=\"https://farmchemie.yasithawd.com/wp-content/uploads/2023/05/WhatsApp-Image-2023-05-16-at-2.44.14-AM-300x192.jpeg\" alt=\"\" width=\"300\" height=\"192\" />\r\n\r\nFARMCHEMIE MANUFACTURERS has invested in fully automated manufacturing facility from Bühler and became the first Sri Lankan owned company to obtain FAMI-QS International Quality Certification.[/icon_timeline_feat][icon_timeline_feat time_title=\"DYEVSTA\"]<img class=\"alignnone wp-image-2901 size-medium\" src=\"https://farmchemie.yasithawd.com/wp-content/uploads/2023/05/WhatsApp-Image-2023-05-16-at-2.45.03-AM-300x59.jpeg\" alt=\"\" width=\"300\" height=\"59\" />\r\n\r\nWith the trust and reputation built as a reliable manufacturer of animal feed additives and supplements in the global market, several world-renowned international brands have appointed FARMCHEMIE MANUFACTURERS as the official toll manufacturer partner. FARMCHEMIE MANUFACTURERS exports a wide range of products consisting of premixes, specialty feed additives, oral liquid supplements and pet supplements to various markets in South Asia, East Asia, Middle East and Africa.\r\n\r\nFARMCHEMIE, FEED CHEMIE &amp; FARMCHEMIE MANUFACTURERS currently operate under the ownership of our holding company, DYVESTA.\r\n\r\nDYEVSTA has become the pinnacle of Animal Nutrition and Health.\r\n\r\nDYVESTA is Dynamic, through our continuous evolution, growth and progress. DYVESTA is Diverse, in terms of both our business strategy and our community. DYVESTA is Devoted to our valuable business partners through exceptional service.[/icon_timeline_feat][/icon_timeline][/vc_column][/vc_row][vc_row][vc_column css=\".vc_custom_1684836047081{margin-top: 15px !important;}\"][ultimate_heading main_heading=\"Vision and Mission\" main_heading_color=\"#079547\" alignment=\"left\"][/ultimate_heading][vc_row_inner css=\".vc_custom_1684836055469{margin-top: 15px !important;}\"][vc_column_inner width=\"1/2\"][ultimate_heading main_heading=\"Vision\" heading_tag=\"h3\" main_heading_color=\"#762888\" alignment=\"left\"]To become a world renowned manufacturer of Animal Health products and a trusted partner among our stakeholders for our integrity as well as for providing effective solutions[/ultimate_heading][/vc_column_inner][vc_column_inner width=\"1/2\"][ultimate_heading main_heading=\"Mission\" heading_tag=\"h3\" main_heading_color=\"#762888\" alignment=\"left\"]To be the customers’ first and best choice by ensuring outstanding satisfaction through a well-trained and dedicated team. Prompt and quality solutions to our customers’ requirements will determine the increase of return on investment for us.[/ultimate_heading][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row css=\".vc_custom_1684836308288{margin-top: 15px !important;}\"][vc_column][ultimate_heading main_heading=\"Achievements\" main_heading_color=\"#762888\" margin_design_tab_text=\"\" main_heading_margin=\"margin-top:35px;\"][/ultimate_heading][/vc_column][/vc_row]','About Us','','inherit','closed','closed','','2633-revision-v1','','','2023-05-23 10:14:46','2023-05-23 10:14:46','',2633,'https://farmchemie.yasithawd.com/?p=2908',0,'revision','',0),(3339,1,'2023-08-26 07:42:53','2023-08-26 07:42:53','<p>[vc_row full_width=\"stretch_row_content_no_spaces\"][vc_column width=\"1/4\"][/vc_column][vc_column width=\"1/2\"][vc_widget_sidebar show_bg=\"false\" sidebar_id=\"sidebar_4\"][/vc_column][vc_column width=\"1/4\"][/vc_column][/vc_row][vc_row][vc_column][ult_tab_element tab_style=\"Style_4\" tab_animation=\"Fade\" tab_background_color=\"#039447\" tab_hover_background_color=\"#039447\" acttab_background=\"#782d88\" disp_icon=\"Disables\" main_title_typograpy=\"\" main_desc_typograpy=\"\"][single_tab title=\"All\" tab_id=\"1693035214365-3\"][dt_products_masonry layout=\"btn_on_img_hover\" bwb_columns=\"desktop:3|h_tablet:3|v_tablet:2|phone:1\" dis_posts_total=\"12\" product_rating=\"n\" ids=\"\"][/single_tab][single_tab title=\"Poultry\" tab_id=\"1693035214368-9\"][dt_products_masonry show_products=\"categories_products\" layout=\"btn_on_img_hover\" bwb_columns=\"desktop:3|h_tablet:3|v_tablet:2|phone:1\" dis_posts_total=\"12\" product_rating=\"n\" category_ids=\"65\"][/single_tab][single_tab title=\"Dairy and Large Animal\" tab_id=\"1693035580574-2-7\"][dt_products_masonry show_products=\"categories_products\" layout=\"btn_on_img_hover\" bwb_columns=\"desktop:3|h_tablet:3|v_tablet:2|phone:1\" dis_posts_total=\"12\" product_rating=\"n\" category_ids=\"63\"][/single_tab][single_tab title=\"Pet Care\" tab_id=\"1693035636854-3-3\"][dt_products_masonry show_products=\"categories_products\" layout=\"btn_on_img_hover\" bwb_columns=\"desktop:3|h_tablet:3|v_tablet:2|phone:1\" dis_posts_total=\"12\" product_rating=\"n\" category_ids=\"64\"][/single_tab][single_tab title=\"Feed Additives \" tab_id=\"1693035729559-4-1\"][dt_products_masonry show_products=\"categories_products\" layout=\"btn_on_img_hover\" bwb_columns=\"desktop:3|h_tablet:3|v_tablet:2|phone:1\" dis_posts_total=\"12\" category_ids=\"74\"][/single_tab][/ult_tab_element][/vc_column][/vc_row]</p>\r\n','AllProducts','','inherit','closed','closed','','3335-revision-v1','','','2023-08-26 07:42:53','2023-08-26 07:42:53','',3335,'https://farmchemie.yasithawd.com/?p=3339',0,'revision','',0),(2365,1,'2022-08-26 06:19:02','2022-08-26 06:19:02','','BrowserPreview8_tmp','','inherit','open','closed','','browserpreview8_tmp','','','2022-08-26 06:19:02','2022-08-26 06:19:02','',0,'https://farmchemie.yasithawd.com/wp-content/uploads/2022/08/BrowserPreview8_tmp.gif',0,'attachment','image/gif',0),(2381,1,'2022-08-26 08:30:46','2022-08-26 08:30:46','','FAMIQS','','inherit','open','closed','','famiqs-2','','','2022-08-26 08:30:46','2022-08-26 08:30:46','',0,'https://farmchemie.yasithawd.com/wp-content/uploads/2022/08/FAMIQS.png',0,'attachment','image/png',0),(2382,1,'2022-08-26 08:31:05','2022-08-26 08:31:05','','ISO_white_1','','inherit','open','closed','','iso_white_1','','','2022-08-26 08:31:05','2022-08-26 08:31:05','',0,'https://farmchemie.yasithawd.com/wp-content/uploads/2022/08/ISO_white_1.png',0,'attachment','image/png',0),(3208,1,'2023-08-16 09:54:27','2023-08-16 09:54:27','[vc_row][vc_column][ultimate_heading main_heading=\"Our History\" main_heading_color=\"#762888\" alignment=\"left\"][/ultimate_heading][vc_row_inner css=\".vc_custom_1686713784619{margin-top: 35px !important;}\"][vc_column_inner width=\"1/3\"][vc_single_image image=\"3106\" img_size=\"full\"][/vc_column_inner][vc_column_inner width=\"2/3\"][ultimate_heading main_heading=\"Founded in 2002\" heading_tag=\"h3\" main_heading_color=\"#039447\" alignment=\"left\" sub_heading_font_size=\"desktop:18px;\"]Founded in 2002 by Mr. Uditha Wanigasinghe, an agriculturist who had a mission to aid valuable livestock producers in the country to enhance the yield and profitability of production. FARMCHEMIE introduced unprecedented solutions and consistent technical services to gain our customers’ trust and became the market leader in animal health products in 2006 within just four years.[/ultimate_heading][/vc_column_inner][/vc_row_inner][vc_row_inner rtl_reverse=\"yes\" css=\".vc_custom_1686714025469{margin-top: 35px !important;}\"][vc_column_inner width=\"2/3\"][ultimate_heading main_heading=\"2006\" heading_tag=\"h3\" main_heading_color=\"#039447\" alignment=\"left\"]In 2006, the Sri Lankan poultry industry was affected with Avian Influenza which became a difficult period for the growth of FARMCHEMIE. This was the key factor in our decision to diversify into Agro Products. PLANTCHEM &amp; PLANTSEEDS were established to offer solutions in Agro specialty fertilizers, pesticides and seeds to invaluable cultivators.[/ultimate_heading][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_single_image image=\"3107\" img_size=\"full\"][/vc_column_inner][/vc_row_inner][vc_row_inner css=\".vc_custom_1686713784619{margin-top: 35px !important;}\"][vc_column_inner width=\"1/3\"][vc_single_image image=\"3108\" img_size=\"full\"][/vc_column_inner][vc_column_inner width=\"2/3\"][ultimate_heading main_heading=\"2010\" heading_tag=\"h3\" main_heading_color=\"#039447\" alignment=\"left\"]In 2010, FEED CHEMIE became the subsequent addition to ever-growing vision of Mr. Uditha Wanigasinghe and entered the Animal Feed Additives market.[/ultimate_heading][/vc_column_inner][/vc_row_inner][vc_row_inner rtl_reverse=\"yes\" css=\".vc_custom_1686714115148{margin-top: 35px !important;}\"][vc_column_inner width=\"2/3\"][ultimate_heading main_heading=\"2012\" heading_tag=\"h3\" main_heading_color=\"#039447\" alignment=\"left\"]The year 2012 is described as a turning point in our journey as FARMCHEMIE established our first production facility for the manufacturing and packing of animal health products. FARMCHEMIE became the first animal health organization in Sri Lanka to obtain ISO 9001:2015 and WHO GMP International Quality Certification. With our own formulation unit, FARMCHEMIE was able to offer customized solutions to cater the needs of the Sri Lankan Livestock Industry.[/ultimate_heading][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_single_image image=\"3111\" img_size=\"full\"][/vc_column_inner][/vc_row_inner][vc_row_inner css=\".vc_custom_1686713784619{margin-top: 35px !important;}\"][vc_column_inner width=\"1/3\"][vc_single_image image=\"3112\" img_size=\"full\"][/vc_column_inner][vc_column_inner width=\"2/3\"][ultimate_heading main_heading=\"2016\" heading_tag=\"h3\" main_heading_color=\"#039447\" alignment=\"left\"]The year 2016 was another key milestone with the entry to the International Markets. FARMCHEMIE exported our first Feed Premix consignment to India and in 2018 our export operation was distinctly established as FARMCHEMIE MANUFACTURERS, a Board of Investment (BOI) approved entity.[/ultimate_heading][/vc_column_inner][/vc_row_inner][vc_row_inner css=\".vc_custom_1686713784619{margin-top: 35px !important;}\"][vc_column_inner width=\"2/3\"][ultimate_heading main_heading=\"Fully automated manufacturing\" heading_tag=\"h3\" main_heading_color=\"#039447\" alignment=\"left\"]FARMCHEMIE MANUFACTURERS has invested in fully automated manufacturing facility from Bühler and became the first Sri Lankan owned company to obtain FAMI-QS International Quality Certification.[/ultimate_heading][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_single_image image=\"3110\" img_size=\"full\"][/vc_column_inner][/vc_row_inner][vc_row_inner css=\".vc_custom_1686713784619{margin-top: 35px !important;}\"][vc_column_inner width=\"1/3\"][vc_single_image image=\"3116\" img_size=\"full\"][/vc_column_inner][vc_column_inner width=\"2/3\"][ultimate_heading main_heading=\"Official toll manufacturer partner\" heading_tag=\"h3\" main_heading_color=\"#039447\" alignment=\"left\"]With the trust and reputation built as a reliable manufacturer of animal feed additives and supplements in the global market, several world-renowned international brands have appointed FARMCHEMIE MANUFACTURERS as the official toll manufacturer partner. FARMCHEMIE MANUFACTURERS exports a wide range of products consisting of premixes, specialty feed additives, oral liquid supplements and pet supplements to various markets in South Asia, East Asia, Middle East and Africa.\r\n\r\nFARMCHEMIE, FEED CHEMIE &amp; FARMCHEMIE MANUFACTURERS currently operate under the ownership of our holding company, DYVESTA.\r\n\r\nDYEVSTA has become the pinnacle of Animal Nutrition and Health.\r\n\r\nDYVESTA is Dynamic, through our continuous evolution, growth and progress. DYVESTA is Diverse, in terms of both our business strategy and our community. DYVESTA is Devoted to our valuable business partners through exceptional service.[/ultimate_heading][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row full_width=\"stretch_row\" equal_height=\"yes\" bg_type=\"image\" parallax_style=\"vcpb-default\" bg_image_new=\"id^2524|url^https://farmchemie.yasithawd.com/wp-content/uploads/2022/09/marketbgimg1.png|caption^null|alt^null|title^marketbgimg1|description^null\" bg_image_repeat=\"no-repeat\" enable_overlay=\"enable_overlay_value\" overlay_color=\"#000000\" overlay_pattern=\"01.png\" overlay_pattern_opacity=\"5\" css=\".vc_custom_1686720701314{margin-top: 35px !important;padding-top: 65px !important;padding-bottom: 100px !important;}\"][vc_column][vc_row_inner equal_height=\"yes\"][vc_column_inner width=\"1/2\"][ultimate_heading main_heading=\"Vision\" main_heading_color=\"#039447\" sub_heading_color=\"#039447\"]To be the customers’ first and best choice by ensuring outstanding satisfaction through a well-trained and dedicated team. Prompt and quality solutions to our customers’ requirements will determine the increase of return on investment for us.[/ultimate_heading][/vc_column_inner][vc_column_inner width=\"1/2\"][ultimate_heading main_heading=\"Mission\" main_heading_color=\"#762888\" sub_heading_color=\"#762888\"]To become a world renowned manufacturer of Animal Health products and a trusted partner among our stakeholders for our integrity as well as for providing effective solutions[/ultimate_heading][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row css=\".vc_custom_1684836308288{margin-top: 15px !important;}\"][vc_column][ultimate_heading main_heading=\"Achievements\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;\"][/ultimate_heading][vc_row_inner gap=\"20\"][vc_column_inner width=\"1/2\" css=\".vc_custom_1691995519863{background-color: #f4ab20 !important;border: 1px solid #f4ab20 !important;border-radius: 35px !important;}\"][bsf-info-box icon_type=\"custom\" icon_img=\"id^3117|url^https://farmchemie.yasithawd.com/wp-content/uploads/2023/08/Pink_-H.png|caption^null|alt^null|title^Pink_-H|description^null\" img_width=\"60\" icon_style=\"advanced\" icon_border_style=\"solid\" icon_color_border=\"#ffffff\" icon_border_size=\"1\" icon_border_radius=\"500\" icon_border_spacing=\"1\" title=\"First Free Sale Certificate obtained from Veterinary Drug Control Authority (VDCA) for Veterinary Pharmaceuticals\" title_font_style=\"font-weight:bold;\" title_font_size=\"desktop:20px;\"][/bsf-info-box][/vc_column_inner][vc_column_inner width=\"1/2\" css=\".vc_custom_1691995661095{background-color: #722f8b !important;border: 1px solid #722f8b !important;border-radius: 35px !important;}\"][bsf-info-box icon_type=\"custom\" icon_img=\"id^3117|url^https://farmchemie.yasithawd.com/wp-content/uploads/2023/08/Pink_-H.png|caption^null|alt^null|title^Pink_-H|description^null\" img_width=\"60\" icon_style=\"advanced\" icon_border_style=\"solid\" icon_color_border=\"#ffffff\" icon_border_size=\"1\" icon_border_radius=\"500\" icon_border_spacing=\"1\" title=\"First ISO 9001: 2015 ,WHO-GMP Quality Management systems certified Animal Health company in Sri Lanka since August, 2012\" title_font_style=\"font-weight:bold;\" title_font_color=\"#ffffff\" title_font_size=\"desktop:20px;\"][/bsf-info-box][/vc_column_inner][/vc_row_inner][vc_row_inner gap=\"20\"][vc_column_inner width=\"1/2\" css=\".vc_custom_1691995661095{background-color: #722f8b !important;border: 1px solid #722f8b !important;border-radius: 35px !important;}\"][bsf-info-box icon_type=\"custom\" icon_img=\"id^3117|url^https://farmchemie.yasithawd.com/wp-content/uploads/2023/08/Pink_-H.png|caption^null|alt^null|title^Pink_-H|description^null\" img_width=\"60\" icon_style=\"advanced\" icon_border_style=\"solid\" icon_color_border=\"#ffffff\" icon_border_size=\"1\" icon_border_radius=\"500\" icon_border_spacing=\"1\" title=\"First FAMI-QS certified company in sri lanka\" title_font_style=\"font-weight:bold;\" title_font_color=\"#ffffff\" title_font_size=\"desktop:20px;\"][/bsf-info-box][/vc_column_inner][vc_column_inner width=\"1/2\" css=\".vc_custom_1691995519863{background-color: #f4ab20 !important;border: 1px solid #f4ab20 !important;border-radius: 35px !important;}\"][bsf-info-box icon_type=\"custom\" icon_img=\"id^3117|url^https://farmchemie.yasithawd.com/wp-content/uploads/2023/08/Pink_-H.png|caption^null|alt^null|title^Pink_-H|description^null\" img_width=\"60\" icon_style=\"advanced\" icon_border_style=\"solid\" icon_color_border=\"#ffffff\" icon_border_size=\"1\" icon_border_radius=\"500\" icon_border_spacing=\"1\" title=\"First Certificate of Ethical Trading certified in Livestock industry\" title_font_style=\"font-weight:bold;\" title_font_size=\"desktop:20px;\"][/bsf-info-box][/vc_column_inner][/vc_row_inner][vc_row_inner gap=\"20\"][vc_column_inner width=\"1/4\" css=\".vc_custom_1691996718116{border-radius: 35px !important;}\"][/vc_column_inner][vc_column_inner width=\"2/4\" css=\".vc_custom_1691995519863{background-color: #f4ab20 !important;border: 1px solid #f4ab20 !important;border-radius: 35px !important;}\"][bsf-info-box icon_type=\"custom\" icon_img=\"id^3117|url^https://farmchemie.yasithawd.com/wp-content/uploads/2023/08/Pink_-H.png|caption^null|alt^null|title^Pink_-H|description^null\" img_width=\"60\" icon_style=\"advanced\" icon_border_style=\"solid\" icon_color_border=\"#ffffff\" icon_border_size=\"1\" icon_border_radius=\"500\" icon_border_spacing=\"1\" title=\"First Silver awarded company at National Exports Awards in Livestock industry\" title_font_style=\"font-weight:bold;\" title_font_size=\"desktop:18px;\"][/bsf-info-box][/vc_column_inner][vc_column_inner width=\"1/4\"][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner width=\"1/6\"][/vc_column_inner][vc_column_inner width=\"2/3\"][vc_single_image image=\"3126\" img_size=\"full\" alignment=\"center\"][vc_single_image image=\"3125\" img_size=\"full\" alignment=\"center\"][/vc_column_inner][vc_column_inner width=\"1/6\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row][vc_column][ultimate_heading main_heading=\"Board Of Directors\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;margin-bottom:35px;\" margin_design_tab_text=\"\"][/ultimate_heading][ultimate_carousel title_text_typography=\"\" slides_on_desk=\"1\" slides_on_tabs=\"1\" slides_on_mob=\"1\" item_animation=\"fadeIn\"][vc_row_inner][vc_column_inner width=\"1/2\"][vc_single_image image=\"3170\" img_size=\"large\" alignment=\"center\" style=\"vc_box_outline_circle_2\" border_color=\"black\" image_hovers=\"false\"][/vc_column_inner][vc_column_inner width=\"1/2\"][ultimate_heading main_heading=\"Quisque sed nibh tristique\" heading_tag=\"h3\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;\" margin_design_tab_text=\"\"]Duis lorem risus, aliquet a auctor a, venenatis in dui. Praesent et eros et risus dapibus placerat hendrerit cursus magna.[/ultimate_heading][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner width=\"1/2\"][vc_single_image image=\"3171\" img_size=\"large\" alignment=\"center\" style=\"vc_box_outline_circle_2\" border_color=\"black\" image_hovers=\"false\"][/vc_column_inner][vc_column_inner width=\"1/2\"][ultimate_heading main_heading=\"Quisque sed nibh tristique\" heading_tag=\"h3\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;\" margin_design_tab_text=\"\"]Duis lorem risus, aliquet a auctor a, venenatis in dui. Praesent et eros et risus dapibus placerat hendrerit cursus magna.[/ultimate_heading][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner width=\"1/2\"][vc_single_image image=\"3173\" img_size=\"large\" alignment=\"center\" style=\"vc_box_outline_circle_2\" border_color=\"black\" image_hovers=\"false\"][/vc_column_inner][vc_column_inner width=\"1/2\"][ultimate_heading main_heading=\"Quisque sed nibh tristique\" heading_tag=\"h3\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;\" margin_design_tab_text=\"\"]Duis lorem risus, aliquet a auctor a, venenatis in dui. Praesent et eros et risus dapibus placerat hendrerit cursus magna.[/ultimate_heading][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner width=\"1/2\"][vc_single_image image=\"3172\" img_size=\"large\" alignment=\"center\" style=\"vc_box_outline_circle_2\" border_color=\"black\" image_hovers=\"false\"][/vc_column_inner][vc_column_inner width=\"1/2\"][ultimate_heading main_heading=\"Quisque sed nibh tristique\" heading_tag=\"h3\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;\" margin_design_tab_text=\"\"]Duis lorem risus, aliquet a auctor a, venenatis in dui. Praesent et eros et risus dapibus placerat hendrerit cursus magna.[/ultimate_heading][/vc_column_inner][/vc_row_inner][/ultimate_carousel][/vc_column][/vc_row]','About us','','inherit','closed','closed','','2917-revision-v1','','','2023-08-16 09:54:27','2023-08-16 09:54:27','',2917,'https://farmchemie.yasithawd.com/?p=3208',0,'revision','',0),(2380,1,'2022-08-26 08:27:31','2022-08-26 08:27:31','','SGS_png-1','','inherit','open','closed','','sgs_png-1','','','2022-08-26 08:27:31','2022-08-26 08:27:31','',0,'https://farmchemie.yasithawd.com/wp-content/uploads/2022/08/SGS_png-1.png',0,'attachment','image/png',0),(2377,1,'2022-08-26 07:55:27','2022-08-26 07:55:27','','gif-logo4','','inherit','open','closed','','gif-logo4','','','2022-08-26 07:55:27','2022-08-26 07:55:27','',0,'https://farmchemie.yasithawd.com/wp-content/uploads/2022/08/gif-logo4.gif',0,'attachment','image/gif',0),(3336,1,'2023-08-26 07:32:42','2023-08-26 07:32:42','','PRODUCTS_1','','inherit','open','closed','','products_1','','','2023-08-26 07:32:42','2023-08-26 07:32:42','',3335,'https://farmchemie.yasithawd.com/wp-content/uploads/2023/08/PRODUCTS_1.png',0,'attachment','image/png',0),(2379,1,'2022-08-26 08:07:57','2022-08-26 08:07:57','','QC-Logos-single-1','','inherit','open','closed','','qc-logos-single-1','','','2022-08-26 08:07:57','2022-08-26 08:07:57','',0,'https://farmchemie.yasithawd.com/wp-content/uploads/2022/08/QC-Logos-single-1.gif',0,'attachment','image/gif',0),(3210,1,'2023-08-16 09:57:45','2023-08-16 09:57:45','[vc_row][vc_column][ultimate_heading main_heading=\"Our History\" main_heading_color=\"#762888\" alignment=\"left\"][/ultimate_heading][vc_row_inner css=\".vc_custom_1686713784619{margin-top: 35px !important;}\"][vc_column_inner width=\"1/3\"][vc_single_image image=\"3106\" img_size=\"full\"][/vc_column_inner][vc_column_inner width=\"2/3\"][ultimate_heading main_heading=\"Founded in 2002\" heading_tag=\"h3\" main_heading_color=\"#039447\" alignment=\"left\" sub_heading_font_size=\"desktop:18px;\"]Founded in 2002 by Mr. Uditha Wanigasinghe, an agriculturist who had a mission to aid valuable livestock producers in the country to enhance the yield and profitability of production. FARMCHEMIE introduced unprecedented solutions and consistent technical services to gain our customers’ trust and became the market leader in animal health products in 2006 within just four years.[/ultimate_heading][/vc_column_inner][/vc_row_inner][vc_row_inner rtl_reverse=\"yes\" css=\".vc_custom_1686714025469{margin-top: 35px !important;}\"][vc_column_inner width=\"2/3\"][ultimate_heading main_heading=\"2006\" heading_tag=\"h3\" main_heading_color=\"#039447\" alignment=\"left\"]In 2006, the Sri Lankan poultry industry was affected with Avian Influenza which became a difficult period for the growth of FARMCHEMIE. This was the key factor in our decision to diversify into Agro Products. PLANTCHEM &amp; PLANTSEEDS were established to offer solutions in Agro specialty fertilizers, pesticides and seeds to invaluable cultivators.[/ultimate_heading][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_single_image image=\"3107\" img_size=\"full\"][/vc_column_inner][/vc_row_inner][vc_row_inner css=\".vc_custom_1686713784619{margin-top: 35px !important;}\"][vc_column_inner width=\"1/3\"][vc_single_image image=\"3108\" img_size=\"full\"][/vc_column_inner][vc_column_inner width=\"2/3\"][ultimate_heading main_heading=\"2010\" heading_tag=\"h3\" main_heading_color=\"#039447\" alignment=\"left\"]In 2010, FEED CHEMIE became the subsequent addition to ever-growing vision of Mr. Uditha Wanigasinghe and entered the Animal Feed Additives market.[/ultimate_heading][/vc_column_inner][/vc_row_inner][vc_row_inner rtl_reverse=\"yes\" css=\".vc_custom_1686714115148{margin-top: 35px !important;}\"][vc_column_inner width=\"2/3\"][ultimate_heading main_heading=\"2012\" heading_tag=\"h3\" main_heading_color=\"#039447\" alignment=\"left\"]The year 2012 is described as a turning point in our journey as FARMCHEMIE established our first production facility for the manufacturing and packing of animal health products. FARMCHEMIE became the first animal health organization in Sri Lanka to obtain ISO 9001:2015 and WHO GMP International Quality Certification. With our own formulation unit, FARMCHEMIE was able to offer customized solutions to cater the needs of the Sri Lankan Livestock Industry.[/ultimate_heading][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_single_image image=\"3111\" img_size=\"full\"][/vc_column_inner][/vc_row_inner][vc_row_inner css=\".vc_custom_1686713784619{margin-top: 35px !important;}\"][vc_column_inner width=\"1/3\"][vc_single_image image=\"3112\" img_size=\"full\"][/vc_column_inner][vc_column_inner width=\"2/3\"][ultimate_heading main_heading=\"2016\" heading_tag=\"h3\" main_heading_color=\"#039447\" alignment=\"left\"]The year 2016 was another key milestone with the entry to the International Markets. FARMCHEMIE exported our first Feed Premix consignment to India and in 2018 our export operation was distinctly established as FARMCHEMIE MANUFACTURERS, a Board of Investment (BOI) approved entity.[/ultimate_heading][/vc_column_inner][/vc_row_inner][vc_row_inner css=\".vc_custom_1686713784619{margin-top: 35px !important;}\"][vc_column_inner width=\"2/3\"][ultimate_heading main_heading=\"Fully automated manufacturing\" heading_tag=\"h3\" main_heading_color=\"#039447\" alignment=\"left\"]FARMCHEMIE MANUFACTURERS has invested in fully automated manufacturing facility from Bühler and became the first Sri Lankan owned company to obtain FAMI-QS International Quality Certification.[/ultimate_heading][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_single_image image=\"3110\" img_size=\"full\"][/vc_column_inner][/vc_row_inner][vc_row_inner css=\".vc_custom_1686713784619{margin-top: 35px !important;}\"][vc_column_inner width=\"1/3\"][vc_single_image image=\"3116\" img_size=\"full\"][/vc_column_inner][vc_column_inner width=\"2/3\"][ultimate_heading main_heading=\"Official toll manufacturer partner\" heading_tag=\"h3\" main_heading_color=\"#039447\" alignment=\"left\"]With the trust and reputation built as a reliable manufacturer of animal feed additives and supplements in the global market, several world-renowned international brands have appointed FARMCHEMIE MANUFACTURERS as the official toll manufacturer partner. FARMCHEMIE MANUFACTURERS exports a wide range of products consisting of premixes, specialty feed additives, oral liquid supplements and pet supplements to various markets in South Asia, East Asia, Middle East and Africa.\r\n\r\nFARMCHEMIE, FEED CHEMIE &amp; FARMCHEMIE MANUFACTURERS currently operate under the ownership of our holding company, DYVESTA.\r\n\r\nDYEVSTA has become the pinnacle of Animal Nutrition and Health.\r\n\r\nDYVESTA is Dynamic, through our continuous evolution, growth and progress. DYVESTA is Diverse, in terms of both our business strategy and our community. DYVESTA is Devoted to our valuable business partners through exceptional service.[/ultimate_heading][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row full_width=\"stretch_row\" equal_height=\"yes\" bg_type=\"image\" parallax_style=\"vcpb-default\" bg_image_new=\"id^2524|url^https://farmchemie.yasithawd.com/wp-content/uploads/2022/09/marketbgimg1.png|caption^null|alt^null|title^marketbgimg1|description^null\" bg_image_repeat=\"no-repeat\" enable_overlay=\"enable_overlay_value\" overlay_color=\"#000000\" overlay_pattern=\"01.png\" overlay_pattern_opacity=\"5\" css=\".vc_custom_1686720701314{margin-top: 35px !important;padding-top: 65px !important;padding-bottom: 100px !important;}\"][vc_column][vc_row_inner equal_height=\"yes\"][vc_column_inner width=\"1/2\"][ultimate_heading main_heading=\"Vision\" main_heading_color=\"#039447\" sub_heading_color=\"#039447\"]To be the customers’ first and best choice by ensuring outstanding satisfaction through a well-trained and dedicated team. Prompt and quality solutions to our customers’ requirements will determine the increase of return on investment for us.[/ultimate_heading][/vc_column_inner][vc_column_inner width=\"1/2\"][ultimate_heading main_heading=\"Mission\" main_heading_color=\"#762888\" sub_heading_color=\"#762888\"]To become a world renowned manufacturer of Animal Health products and a trusted partner among our stakeholders for our integrity as well as for providing effective solutions[/ultimate_heading][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row css=\".vc_custom_1684836308288{margin-top: 15px !important;}\"][vc_column][ultimate_heading main_heading=\"Achievements\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;\"][/ultimate_heading][vc_row_inner gap=\"20\"][vc_column_inner width=\"1/2\" css=\".vc_custom_1691995519863{background-color: #f4ab20 !important;border: 1px solid #f4ab20 !important;border-radius: 35px !important;}\"][bsf-info-box icon_type=\"custom\" icon_img=\"id^3117|url^https://farmchemie.yasithawd.com/wp-content/uploads/2023/08/Pink_-H.png|caption^null|alt^null|title^Pink_-H|description^null\" img_width=\"60\" icon_style=\"advanced\" icon_border_style=\"solid\" icon_color_border=\"#ffffff\" icon_border_size=\"1\" icon_border_radius=\"500\" icon_border_spacing=\"1\" title=\"First Free Sale Certificate obtained from Veterinary Drug Control Authority (VDCA) for Veterinary Pharmaceuticals\" title_font_style=\"font-weight:bold;\" title_font_size=\"desktop:20px;\"][/bsf-info-box][/vc_column_inner][vc_column_inner width=\"1/2\" css=\".vc_custom_1691995661095{background-color: #722f8b !important;border: 1px solid #722f8b !important;border-radius: 35px !important;}\"][bsf-info-box icon_type=\"custom\" icon_img=\"id^3117|url^https://farmchemie.yasithawd.com/wp-content/uploads/2023/08/Pink_-H.png|caption^null|alt^null|title^Pink_-H|description^null\" img_width=\"60\" icon_style=\"advanced\" icon_border_style=\"solid\" icon_color_border=\"#ffffff\" icon_border_size=\"1\" icon_border_radius=\"500\" icon_border_spacing=\"1\" title=\"First ISO 9001: 2015 ,WHO-GMP Quality Management systems certified Animal Health company in Sri Lanka since August, 2012\" title_font_style=\"font-weight:bold;\" title_font_color=\"#ffffff\" title_font_size=\"desktop:20px;\"][/bsf-info-box][/vc_column_inner][/vc_row_inner][vc_row_inner gap=\"20\"][vc_column_inner width=\"1/2\" css=\".vc_custom_1691995661095{background-color: #722f8b !important;border: 1px solid #722f8b !important;border-radius: 35px !important;}\"][bsf-info-box icon_type=\"custom\" icon_img=\"id^3117|url^https://farmchemie.yasithawd.com/wp-content/uploads/2023/08/Pink_-H.png|caption^null|alt^null|title^Pink_-H|description^null\" img_width=\"60\" icon_style=\"advanced\" icon_border_style=\"solid\" icon_color_border=\"#ffffff\" icon_border_size=\"1\" icon_border_radius=\"500\" icon_border_spacing=\"1\" title=\"First FAMI-QS certified company in sri lanka\" title_font_style=\"font-weight:bold;\" title_font_color=\"#ffffff\" title_font_size=\"desktop:20px;\"][/bsf-info-box][/vc_column_inner][vc_column_inner width=\"1/2\" css=\".vc_custom_1691995519863{background-color: #f4ab20 !important;border: 1px solid #f4ab20 !important;border-radius: 35px !important;}\"][bsf-info-box icon_type=\"custom\" icon_img=\"id^3117|url^https://farmchemie.yasithawd.com/wp-content/uploads/2023/08/Pink_-H.png|caption^null|alt^null|title^Pink_-H|description^null\" img_width=\"60\" icon_style=\"advanced\" icon_border_style=\"solid\" icon_color_border=\"#ffffff\" icon_border_size=\"1\" icon_border_radius=\"500\" icon_border_spacing=\"1\" title=\"First Certificate of Ethical Trading certified in Livestock industry\" title_font_style=\"font-weight:bold;\" title_font_size=\"desktop:20px;\"][/bsf-info-box][/vc_column_inner][/vc_row_inner][vc_row_inner gap=\"20\"][vc_column_inner width=\"1/4\" css=\".vc_custom_1691996718116{border-radius: 35px !important;}\"][/vc_column_inner][vc_column_inner width=\"2/4\" css=\".vc_custom_1691995519863{background-color: #f4ab20 !important;border: 1px solid #f4ab20 !important;border-radius: 35px !important;}\"][bsf-info-box icon_type=\"custom\" icon_img=\"id^3117|url^https://farmchemie.yasithawd.com/wp-content/uploads/2023/08/Pink_-H.png|caption^null|alt^null|title^Pink_-H|description^null\" img_width=\"60\" icon_style=\"advanced\" icon_border_style=\"solid\" icon_color_border=\"#ffffff\" icon_border_size=\"1\" icon_border_radius=\"500\" icon_border_spacing=\"1\" title=\"First Silver awarded company at National Exports Awards in Livestock industry\" title_font_style=\"font-weight:bold;\" title_font_size=\"desktop:20px;\"][/bsf-info-box][/vc_column_inner][vc_column_inner width=\"1/4\"][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner width=\"1/6\"][/vc_column_inner][vc_column_inner width=\"2/3\"][vc_single_image image=\"3126\" img_size=\"full\" alignment=\"center\"][vc_single_image image=\"3125\" img_size=\"full\" alignment=\"center\"][/vc_column_inner][vc_column_inner width=\"1/6\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row][vc_column][ultimate_heading main_heading=\"Board Of Directors\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;margin-bottom:35px;\"][/ultimate_heading][ultimate_carousel slides_on_desk=\"1\" slides_on_tabs=\"1\" slides_on_mob=\"1\" arrow_style=\"square-bg\" arrow_bg_color=\"#039447\" arrow_color=\"#ffffff\" next_icon=\"ultsl-arrow-right6\" prev_icon=\"ultsl-arrow-left6\" dots_color=\"#039447\" item_animation=\"fadeIn\"][vc_row_inner][vc_column_inner width=\"1/2\"][vc_single_image image=\"3170\" img_size=\"large\" alignment=\"center\" style=\"vc_box_outline_circle_2\" border_color=\"black\" image_hovers=\"false\"][/vc_column_inner][vc_column_inner width=\"1/2\"][ultimate_heading main_heading=\"Quisque sed nibh tristique\" heading_tag=\"h3\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;\"]Duis lorem risus, aliquet a auctor a, venenatis in dui. Praesent et eros et risus dapibus placerat hendrerit cursus magna.[/ultimate_heading][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner width=\"1/2\"][vc_single_image image=\"3171\" img_size=\"large\" alignment=\"center\" style=\"vc_box_outline_circle_2\" border_color=\"black\" image_hovers=\"false\"][/vc_column_inner][vc_column_inner width=\"1/2\"][ultimate_heading main_heading=\"Quisque sed nibh tristique\" heading_tag=\"h3\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;\"]Duis lorem risus, aliquet a auctor a, venenatis in dui. Praesent et eros et risus dapibus placerat hendrerit cursus magna.[/ultimate_heading][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner width=\"1/2\"][vc_single_image image=\"3173\" img_size=\"large\" alignment=\"center\" style=\"vc_box_outline_circle_2\" border_color=\"black\" image_hovers=\"false\"][/vc_column_inner][vc_column_inner width=\"1/2\"][ultimate_heading main_heading=\"Quisque sed nibh tristique\" heading_tag=\"h3\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;\"]Duis lorem risus, aliquet a auctor a, venenatis in dui. Praesent et eros et risus dapibus placerat hendrerit cursus magna.[/ultimate_heading][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner width=\"1/2\"][vc_single_image image=\"3172\" img_size=\"large\" alignment=\"center\" style=\"vc_box_outline_circle_2\" border_color=\"black\" image_hovers=\"false\"][/vc_column_inner][vc_column_inner width=\"1/2\"][ultimate_heading main_heading=\"Quisque sed nibh tristique\" heading_tag=\"h3\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;\"]Duis lorem risus, aliquet a auctor a, venenatis in dui. Praesent et eros et risus dapibus placerat hendrerit cursus magna.[/ultimate_heading][/vc_column_inner][/vc_row_inner][/ultimate_carousel][/vc_column][/vc_row]','About us','','inherit','closed','closed','','2917-revision-v1','','','2023-08-16 09:57:45','2023-08-16 09:57:45','',2917,'https://farmchemie.yasithawd.com/?p=3210',0,'revision','',0),(3209,1,'2023-08-16 09:56:50','2023-08-16 09:56:50','[vc_row][vc_column][ultimate_heading main_heading=\"Our History\" main_heading_color=\"#762888\" alignment=\"left\"][/ultimate_heading][vc_row_inner css=\".vc_custom_1686713784619{margin-top: 35px !important;}\"][vc_column_inner width=\"1/3\"][vc_single_image image=\"3106\" img_size=\"full\"][/vc_column_inner][vc_column_inner width=\"2/3\"][ultimate_heading main_heading=\"Founded in 2002\" heading_tag=\"h3\" main_heading_color=\"#039447\" alignment=\"left\" sub_heading_font_size=\"desktop:18px;\"]Founded in 2002 by Mr. Uditha Wanigasinghe, an agriculturist who had a mission to aid valuable livestock producers in the country to enhance the yield and profitability of production. FARMCHEMIE introduced unprecedented solutions and consistent technical services to gain our customers’ trust and became the market leader in animal health products in 2006 within just four years.[/ultimate_heading][/vc_column_inner][/vc_row_inner][vc_row_inner rtl_reverse=\"yes\" css=\".vc_custom_1686714025469{margin-top: 35px !important;}\"][vc_column_inner width=\"2/3\"][ultimate_heading main_heading=\"2006\" heading_tag=\"h3\" main_heading_color=\"#039447\" alignment=\"left\"]In 2006, the Sri Lankan poultry industry was affected with Avian Influenza which became a difficult period for the growth of FARMCHEMIE. This was the key factor in our decision to diversify into Agro Products. PLANTCHEM &amp; PLANTSEEDS were established to offer solutions in Agro specialty fertilizers, pesticides and seeds to invaluable cultivators.[/ultimate_heading][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_single_image image=\"3107\" img_size=\"full\"][/vc_column_inner][/vc_row_inner][vc_row_inner css=\".vc_custom_1686713784619{margin-top: 35px !important;}\"][vc_column_inner width=\"1/3\"][vc_single_image image=\"3108\" img_size=\"full\"][/vc_column_inner][vc_column_inner width=\"2/3\"][ultimate_heading main_heading=\"2010\" heading_tag=\"h3\" main_heading_color=\"#039447\" alignment=\"left\"]In 2010, FEED CHEMIE became the subsequent addition to ever-growing vision of Mr. Uditha Wanigasinghe and entered the Animal Feed Additives market.[/ultimate_heading][/vc_column_inner][/vc_row_inner][vc_row_inner rtl_reverse=\"yes\" css=\".vc_custom_1686714115148{margin-top: 35px !important;}\"][vc_column_inner width=\"2/3\"][ultimate_heading main_heading=\"2012\" heading_tag=\"h3\" main_heading_color=\"#039447\" alignment=\"left\"]The year 2012 is described as a turning point in our journey as FARMCHEMIE established our first production facility for the manufacturing and packing of animal health products. FARMCHEMIE became the first animal health organization in Sri Lanka to obtain ISO 9001:2015 and WHO GMP International Quality Certification. With our own formulation unit, FARMCHEMIE was able to offer customized solutions to cater the needs of the Sri Lankan Livestock Industry.[/ultimate_heading][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_single_image image=\"3111\" img_size=\"full\"][/vc_column_inner][/vc_row_inner][vc_row_inner css=\".vc_custom_1686713784619{margin-top: 35px !important;}\"][vc_column_inner width=\"1/3\"][vc_single_image image=\"3112\" img_size=\"full\"][/vc_column_inner][vc_column_inner width=\"2/3\"][ultimate_heading main_heading=\"2016\" heading_tag=\"h3\" main_heading_color=\"#039447\" alignment=\"left\"]The year 2016 was another key milestone with the entry to the International Markets. FARMCHEMIE exported our first Feed Premix consignment to India and in 2018 our export operation was distinctly established as FARMCHEMIE MANUFACTURERS, a Board of Investment (BOI) approved entity.[/ultimate_heading][/vc_column_inner][/vc_row_inner][vc_row_inner css=\".vc_custom_1686713784619{margin-top: 35px !important;}\"][vc_column_inner width=\"2/3\"][ultimate_heading main_heading=\"Fully automated manufacturing\" heading_tag=\"h3\" main_heading_color=\"#039447\" alignment=\"left\"]FARMCHEMIE MANUFACTURERS has invested in fully automated manufacturing facility from Bühler and became the first Sri Lankan owned company to obtain FAMI-QS International Quality Certification.[/ultimate_heading][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_single_image image=\"3110\" img_size=\"full\"][/vc_column_inner][/vc_row_inner][vc_row_inner css=\".vc_custom_1686713784619{margin-top: 35px !important;}\"][vc_column_inner width=\"1/3\"][vc_single_image image=\"3116\" img_size=\"full\"][/vc_column_inner][vc_column_inner width=\"2/3\"][ultimate_heading main_heading=\"Official toll manufacturer partner\" heading_tag=\"h3\" main_heading_color=\"#039447\" alignment=\"left\"]With the trust and reputation built as a reliable manufacturer of animal feed additives and supplements in the global market, several world-renowned international brands have appointed FARMCHEMIE MANUFACTURERS as the official toll manufacturer partner. FARMCHEMIE MANUFACTURERS exports a wide range of products consisting of premixes, specialty feed additives, oral liquid supplements and pet supplements to various markets in South Asia, East Asia, Middle East and Africa.\r\n\r\nFARMCHEMIE, FEED CHEMIE &amp; FARMCHEMIE MANUFACTURERS currently operate under the ownership of our holding company, DYVESTA.\r\n\r\nDYEVSTA has become the pinnacle of Animal Nutrition and Health.\r\n\r\nDYVESTA is Dynamic, through our continuous evolution, growth and progress. DYVESTA is Diverse, in terms of both our business strategy and our community. DYVESTA is Devoted to our valuable business partners through exceptional service.[/ultimate_heading][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row full_width=\"stretch_row\" equal_height=\"yes\" bg_type=\"image\" parallax_style=\"vcpb-default\" bg_image_new=\"id^2524|url^https://farmchemie.yasithawd.com/wp-content/uploads/2022/09/marketbgimg1.png|caption^null|alt^null|title^marketbgimg1|description^null\" bg_image_repeat=\"no-repeat\" enable_overlay=\"enable_overlay_value\" overlay_color=\"#000000\" overlay_pattern=\"01.png\" overlay_pattern_opacity=\"5\" css=\".vc_custom_1686720701314{margin-top: 35px !important;padding-top: 65px !important;padding-bottom: 100px !important;}\"][vc_column][vc_row_inner equal_height=\"yes\"][vc_column_inner width=\"1/2\"][ultimate_heading main_heading=\"Vision\" main_heading_color=\"#039447\" sub_heading_color=\"#039447\"]To be the customers’ first and best choice by ensuring outstanding satisfaction through a well-trained and dedicated team. Prompt and quality solutions to our customers’ requirements will determine the increase of return on investment for us.[/ultimate_heading][/vc_column_inner][vc_column_inner width=\"1/2\"][ultimate_heading main_heading=\"Mission\" main_heading_color=\"#762888\" sub_heading_color=\"#762888\"]To become a world renowned manufacturer of Animal Health products and a trusted partner among our stakeholders for our integrity as well as for providing effective solutions[/ultimate_heading][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row css=\".vc_custom_1684836308288{margin-top: 15px !important;}\"][vc_column][ultimate_heading main_heading=\"Achievements\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;\"][/ultimate_heading][vc_row_inner gap=\"20\"][vc_column_inner width=\"1/2\" css=\".vc_custom_1691995519863{background-color: #f4ab20 !important;border: 1px solid #f4ab20 !important;border-radius: 35px !important;}\"][bsf-info-box icon_type=\"custom\" icon_img=\"id^3117|url^https://farmchemie.yasithawd.com/wp-content/uploads/2023/08/Pink_-H.png|caption^null|alt^null|title^Pink_-H|description^null\" img_width=\"60\" icon_style=\"advanced\" icon_border_style=\"solid\" icon_color_border=\"#ffffff\" icon_border_size=\"1\" icon_border_radius=\"500\" icon_border_spacing=\"1\" title=\"First Free Sale Certificate obtained from Veterinary Drug Control Authority (VDCA) for Veterinary Pharmaceuticals\" title_font_style=\"font-weight:bold;\" title_font_size=\"desktop:20px;\"][/bsf-info-box][/vc_column_inner][vc_column_inner width=\"1/2\" css=\".vc_custom_1691995661095{background-color: #722f8b !important;border: 1px solid #722f8b !important;border-radius: 35px !important;}\"][bsf-info-box icon_type=\"custom\" icon_img=\"id^3117|url^https://farmchemie.yasithawd.com/wp-content/uploads/2023/08/Pink_-H.png|caption^null|alt^null|title^Pink_-H|description^null\" img_width=\"60\" icon_style=\"advanced\" icon_border_style=\"solid\" icon_color_border=\"#ffffff\" icon_border_size=\"1\" icon_border_radius=\"500\" icon_border_spacing=\"1\" title=\"First ISO 9001: 2015 ,WHO-GMP Quality Management systems certified Animal Health company in Sri Lanka since August, 2012\" title_font_style=\"font-weight:bold;\" title_font_color=\"#ffffff\" title_font_size=\"desktop:20px;\"][/bsf-info-box][/vc_column_inner][/vc_row_inner][vc_row_inner gap=\"20\"][vc_column_inner width=\"1/2\" css=\".vc_custom_1691995661095{background-color: #722f8b !important;border: 1px solid #722f8b !important;border-radius: 35px !important;}\"][bsf-info-box icon_type=\"custom\" icon_img=\"id^3117|url^https://farmchemie.yasithawd.com/wp-content/uploads/2023/08/Pink_-H.png|caption^null|alt^null|title^Pink_-H|description^null\" img_width=\"60\" icon_style=\"advanced\" icon_border_style=\"solid\" icon_color_border=\"#ffffff\" icon_border_size=\"1\" icon_border_radius=\"500\" icon_border_spacing=\"1\" title=\"First FAMI-QS certified company in sri lanka\" title_font_style=\"font-weight:bold;\" title_font_color=\"#ffffff\" title_font_size=\"desktop:20px;\"][/bsf-info-box][/vc_column_inner][vc_column_inner width=\"1/2\" css=\".vc_custom_1691995519863{background-color: #f4ab20 !important;border: 1px solid #f4ab20 !important;border-radius: 35px !important;}\"][bsf-info-box icon_type=\"custom\" icon_img=\"id^3117|url^https://farmchemie.yasithawd.com/wp-content/uploads/2023/08/Pink_-H.png|caption^null|alt^null|title^Pink_-H|description^null\" img_width=\"60\" icon_style=\"advanced\" icon_border_style=\"solid\" icon_color_border=\"#ffffff\" icon_border_size=\"1\" icon_border_radius=\"500\" icon_border_spacing=\"1\" title=\"First Certificate of Ethical Trading certified in Livestock industry\" title_font_style=\"font-weight:bold;\" title_font_size=\"desktop:20px;\"][/bsf-info-box][/vc_column_inner][/vc_row_inner][vc_row_inner gap=\"20\"][vc_column_inner width=\"1/4\" css=\".vc_custom_1691996718116{border-radius: 35px !important;}\"][/vc_column_inner][vc_column_inner width=\"2/4\" css=\".vc_custom_1691995519863{background-color: #f4ab20 !important;border: 1px solid #f4ab20 !important;border-radius: 35px !important;}\"][bsf-info-box icon_type=\"custom\" icon_img=\"id^3117|url^https://farmchemie.yasithawd.com/wp-content/uploads/2023/08/Pink_-H.png|caption^null|alt^null|title^Pink_-H|description^null\" img_width=\"60\" icon_style=\"advanced\" icon_border_style=\"solid\" icon_color_border=\"#ffffff\" icon_border_size=\"1\" icon_border_radius=\"500\" icon_border_spacing=\"1\" title=\"First Silver awarded company at National Exports Awards in Livestock industry\" title_font_style=\"font-weight:bold;\" title_font_size=\"desktop:18px;\"][/bsf-info-box][/vc_column_inner][vc_column_inner width=\"1/4\"][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner width=\"1/6\"][/vc_column_inner][vc_column_inner width=\"2/3\"][vc_single_image image=\"3126\" img_size=\"full\" alignment=\"center\"][vc_single_image image=\"3125\" img_size=\"full\" alignment=\"center\"][/vc_column_inner][vc_column_inner width=\"1/6\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row][vc_column][ultimate_heading main_heading=\"Board Of Directors\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;margin-bottom:35px;\"][/ultimate_heading][ultimate_carousel title_text_typography=\"\" slides_on_desk=\"1\" slides_on_tabs=\"1\" slides_on_mob=\"1\" arrow_style=\"square-bg\" arrow_bg_color=\"#039447\" arrow_color=\"#ffffff\" next_icon=\"ultsl-arrow-right6\" prev_icon=\"ultsl-arrow-left6\" dots_color=\"#039447\" item_animation=\"fadeIn\"][vc_row_inner][vc_column_inner width=\"1/2\"][vc_single_image image=\"3170\" img_size=\"large\" alignment=\"center\" style=\"vc_box_outline_circle_2\" border_color=\"black\" image_hovers=\"false\"][/vc_column_inner][vc_column_inner width=\"1/2\"][ultimate_heading main_heading=\"Quisque sed nibh tristique\" heading_tag=\"h3\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;\"]Duis lorem risus, aliquet a auctor a, venenatis in dui. Praesent et eros et risus dapibus placerat hendrerit cursus magna.[/ultimate_heading][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner width=\"1/2\"][vc_single_image image=\"3171\" img_size=\"large\" alignment=\"center\" style=\"vc_box_outline_circle_2\" border_color=\"black\" image_hovers=\"false\"][/vc_column_inner][vc_column_inner width=\"1/2\"][ultimate_heading main_heading=\"Quisque sed nibh tristique\" heading_tag=\"h3\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;\"]Duis lorem risus, aliquet a auctor a, venenatis in dui. Praesent et eros et risus dapibus placerat hendrerit cursus magna.[/ultimate_heading][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner width=\"1/2\"][vc_single_image image=\"3173\" img_size=\"large\" alignment=\"center\" style=\"vc_box_outline_circle_2\" border_color=\"black\" image_hovers=\"false\"][/vc_column_inner][vc_column_inner width=\"1/2\"][ultimate_heading main_heading=\"Quisque sed nibh tristique\" heading_tag=\"h3\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;\"]Duis lorem risus, aliquet a auctor a, venenatis in dui. Praesent et eros et risus dapibus placerat hendrerit cursus magna.[/ultimate_heading][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner width=\"1/2\"][vc_single_image image=\"3172\" img_size=\"large\" alignment=\"center\" style=\"vc_box_outline_circle_2\" border_color=\"black\" image_hovers=\"false\"][/vc_column_inner][vc_column_inner width=\"1/2\"][ultimate_heading main_heading=\"Quisque sed nibh tristique\" heading_tag=\"h3\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;\"]Duis lorem risus, aliquet a auctor a, venenatis in dui. Praesent et eros et risus dapibus placerat hendrerit cursus magna.[/ultimate_heading][/vc_column_inner][/vc_row_inner][/ultimate_carousel][/vc_column][/vc_row]','About us','','inherit','closed','closed','','2917-revision-v1','','','2023-08-16 09:56:50','2023-08-16 09:56:50','',2917,'https://farmchemie.yasithawd.com/?p=3209',0,'revision','',0),(2371,1,'2022-08-26 07:04:08','2022-08-26 07:04:08','','BrowserPreview8_tmp','','inherit','open','closed','','browserpreview8_tmp-2','','','2022-08-26 07:04:08','2022-08-26 07:04:08','',0,'https://farmchemie.yasithawd.com/wp-content/uploads/2022/08/BrowserPreview8_tmp-1.gif',0,'attachment','image/gif',0),(2372,1,'2022-08-26 07:05:06','2022-08-26 07:05:06','','BrowserPreview_tmp','','inherit','open','closed','','browserpreview_tmp','','','2022-08-26 07:05:06','2022-08-26 07:05:06','',0,'https://farmchemie.yasithawd.com/wp-content/uploads/2022/08/BrowserPreview_tmp.gif',0,'attachment','image/gif',0),(2373,1,'2022-08-26 07:08:35','2022-08-26 07:08:35','','gif-logo','','inherit','open','closed','','gif-logo','','','2022-08-26 07:08:35','2022-08-26 07:08:35','',0,'https://farmchemie.yasithawd.com/wp-content/uploads/2022/08/gif-logo.gif',0,'attachment','image/gif',0),(2374,1,'2022-08-26 07:12:15','2022-08-26 07:12:15','','gif-logo2','','inherit','open','closed','','gif-logo2','','','2022-08-26 07:12:15','2022-08-26 07:12:15','',0,'https://farmchemie.yasithawd.com/wp-content/uploads/2022/08/gif-logo2.gif',0,'attachment','image/gif',0),(2376,1,'2022-08-26 07:26:07','2022-08-26 07:26:07','','gif-logo3','','inherit','open','closed','','gif-logo3','','','2022-08-26 07:26:07','2022-08-26 07:26:07','',0,'https://farmchemie.yasithawd.com/wp-content/uploads/2022/08/gif-logo3.gif',0,'attachment','image/gif',0),(3200,1,'2023-08-16 09:04:03','2023-08-16 09:04:03','[vc_row][vc_column][ultimate_heading main_heading=\"Our History\" main_heading_color=\"#762888\" alignment=\"left\"][/ultimate_heading][vc_row_inner css=\".vc_custom_1686713784619{margin-top: 35px !important;}\"][vc_column_inner width=\"1/3\"][vc_single_image image=\"3106\" img_size=\"full\"][/vc_column_inner][vc_column_inner width=\"2/3\"][ultimate_heading main_heading=\"Founded in 2002\" heading_tag=\"h3\" main_heading_color=\"#039447\" alignment=\"left\" sub_heading_font_size=\"desktop:18px;\"]Founded in 2002 by Mr. Uditha Wanigasinghe, an agriculturist who had a mission to aid valuable livestock producers in the country to enhance the yield and profitability of production. FARMCHEMIE introduced unprecedented solutions and consistent technical services to gain our customers’ trust and became the market leader in animal health products in 2006 within just four years.[/ultimate_heading][/vc_column_inner][/vc_row_inner][vc_row_inner rtl_reverse=\"yes\" css=\".vc_custom_1686714025469{margin-top: 35px !important;}\"][vc_column_inner width=\"2/3\"][ultimate_heading main_heading=\"2006\" heading_tag=\"h3\" main_heading_color=\"#039447\" alignment=\"left\"]In 2006, the Sri Lankan poultry industry was affected with Avian Influenza which became a difficult period for the growth of FARMCHEMIE. This was the key factor in our decision to diversify into Agro Products. PLANTCHEM &amp; PLANTSEEDS were established to offer solutions in Agro specialty fertilizers, pesticides and seeds to invaluable cultivators.[/ultimate_heading][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_single_image image=\"3107\" img_size=\"full\"][/vc_column_inner][/vc_row_inner][vc_row_inner css=\".vc_custom_1686713784619{margin-top: 35px !important;}\"][vc_column_inner width=\"1/3\"][vc_single_image image=\"3108\" img_size=\"full\"][/vc_column_inner][vc_column_inner width=\"2/3\"][ultimate_heading main_heading=\"2010\" heading_tag=\"h3\" main_heading_color=\"#039447\" alignment=\"left\"]In 2010, FEED CHEMIE became the subsequent addition to ever-growing vision of Mr. Uditha Wanigasinghe and entered the Animal Feed Additives market.[/ultimate_heading][/vc_column_inner][/vc_row_inner][vc_row_inner rtl_reverse=\"yes\" css=\".vc_custom_1686714115148{margin-top: 35px !important;}\"][vc_column_inner width=\"2/3\"][ultimate_heading main_heading=\"2012\" heading_tag=\"h3\" main_heading_color=\"#039447\" alignment=\"left\"]The year 2012 is described as a turning point in our journey as FARMCHEMIE established our first production facility for the manufacturing and packing of animal health products. FARMCHEMIE became the first animal health organization in Sri Lanka to obtain ISO 9001:2015 and WHO GMP International Quality Certification. With our own formulation unit, FARMCHEMIE was able to offer customized solutions to cater the needs of the Sri Lankan Livestock Industry.[/ultimate_heading][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_single_image image=\"3111\" img_size=\"full\"][/vc_column_inner][/vc_row_inner][vc_row_inner css=\".vc_custom_1686713784619{margin-top: 35px !important;}\"][vc_column_inner width=\"1/3\"][vc_single_image image=\"3112\" img_size=\"full\"][/vc_column_inner][vc_column_inner width=\"2/3\"][ultimate_heading main_heading=\"2016\" heading_tag=\"h3\" main_heading_color=\"#039447\" alignment=\"left\"]The year 2016 was another key milestone with the entry to the International Markets. FARMCHEMIE exported our first Feed Premix consignment to India and in 2018 our export operation was distinctly established as FARMCHEMIE MANUFACTURERS, a Board of Investment (BOI) approved entity.[/ultimate_heading][/vc_column_inner][/vc_row_inner][vc_row_inner css=\".vc_custom_1686713784619{margin-top: 35px !important;}\"][vc_column_inner width=\"2/3\"][ultimate_heading main_heading=\"Fully automated manufacturing\" heading_tag=\"h3\" main_heading_color=\"#039447\" alignment=\"left\"]FARMCHEMIE MANUFACTURERS has invested in fully automated manufacturing facility from Bühler and became the first Sri Lankan owned company to obtain FAMI-QS International Quality Certification.[/ultimate_heading][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_single_image image=\"3110\" img_size=\"full\"][/vc_column_inner][/vc_row_inner][vc_row_inner css=\".vc_custom_1686713784619{margin-top: 35px !important;}\"][vc_column_inner width=\"1/3\"][vc_single_image image=\"3116\" img_size=\"full\"][/vc_column_inner][vc_column_inner width=\"2/3\"][ultimate_heading main_heading=\"Official toll manufacturer partner\" heading_tag=\"h3\" main_heading_color=\"#039447\" alignment=\"left\"]With the trust and reputation built as a reliable manufacturer of animal feed additives and supplements in the global market, several world-renowned international brands have appointed FARMCHEMIE MANUFACTURERS as the official toll manufacturer partner. FARMCHEMIE MANUFACTURERS exports a wide range of products consisting of premixes, specialty feed additives, oral liquid supplements and pet supplements to various markets in South Asia, East Asia, Middle East and Africa.\r\n\r\nFARMCHEMIE, FEED CHEMIE &amp; FARMCHEMIE MANUFACTURERS currently operate under the ownership of our holding company, DYVESTA.\r\n\r\nDYEVSTA has become the pinnacle of Animal Nutrition and Health.\r\n\r\nDYVESTA is Dynamic, through our continuous evolution, growth and progress. DYVESTA is Diverse, in terms of both our business strategy and our community. DYVESTA is Devoted to our valuable business partners through exceptional service.[/ultimate_heading][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row full_width=\"stretch_row\" equal_height=\"yes\" bg_type=\"image\" parallax_style=\"vcpb-default\" bg_image_new=\"id^2524|url^https://farmchemie.yasithawd.com/wp-content/uploads/2022/09/marketbgimg1.png|caption^null|alt^null|title^marketbgimg1|description^null\" bg_image_repeat=\"no-repeat\" enable_overlay=\"enable_overlay_value\" overlay_color=\"#000000\" overlay_pattern=\"01.png\" overlay_pattern_opacity=\"5\" css=\".vc_custom_1686720701314{margin-top: 35px !important;padding-top: 65px !important;padding-bottom: 100px !important;}\"][vc_column][vc_row_inner equal_height=\"yes\"][vc_column_inner width=\"1/2\"][ultimate_heading main_heading=\"Vision\" main_heading_color=\"#039447\" sub_heading_color=\"#039447\"]To be the customers’ first and best choice by ensuring outstanding satisfaction through a well-trained and dedicated team. Prompt and quality solutions to our customers’ requirements will determine the increase of return on investment for us.[/ultimate_heading][/vc_column_inner][vc_column_inner width=\"1/2\"][ultimate_heading main_heading=\"Mission\" main_heading_color=\"#762888\" sub_heading_color=\"#762888\"]To become a world renowned manufacturer of Animal Health products and a trusted partner among our stakeholders for our integrity as well as for providing effective solutions[/ultimate_heading][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row css=\".vc_custom_1684836308288{margin-top: 15px !important;}\"][vc_column][ultimate_heading main_heading=\"Achievements\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;\"][/ultimate_heading][vc_row_inner gap=\"20\"][vc_column_inner width=\"1/2\" css=\".vc_custom_1691995519863{background-color: #f4ab20 !important;border: 1px solid #f4ab20 !important;border-radius: 35px !important;}\"][bsf-info-box icon_type=\"custom\" icon_img=\"id^3117|url^https://farmchemie.yasithawd.com/wp-content/uploads/2023/08/Pink_-H.png|caption^null|alt^null|title^Pink_-H|description^null\" img_width=\"60\" icon_style=\"advanced\" icon_border_style=\"solid\" icon_color_border=\"#ffffff\" icon_border_size=\"1\" icon_border_radius=\"500\" icon_border_spacing=\"1\" title=\"First Free Sale Certificate obtained from Veterinary Drug Control Authority (VDCA) for Veterinary Pharmaceuticals\" title_font_style=\"font-weight:bold;\" title_font_size=\"desktop:20px;\"][/bsf-info-box][/vc_column_inner][vc_column_inner width=\"1/2\" css=\".vc_custom_1691995661095{background-color: #722f8b !important;border: 1px solid #722f8b !important;border-radius: 35px !important;}\"][bsf-info-box icon_type=\"custom\" icon_img=\"id^3117|url^https://farmchemie.yasithawd.com/wp-content/uploads/2023/08/Pink_-H.png|caption^null|alt^null|title^Pink_-H|description^null\" img_width=\"60\" icon_style=\"advanced\" icon_border_style=\"solid\" icon_color_border=\"#ffffff\" icon_border_size=\"1\" icon_border_radius=\"500\" icon_border_spacing=\"1\" title=\"First ISO 9001: 2015 ,WHO-GMP Quality Management systems certified Animal Health company in Sri Lanka since August, 2012\" title_font_style=\"font-weight:bold;\" title_font_color=\"#ffffff\" title_font_size=\"desktop:20px;\"][/bsf-info-box][/vc_column_inner][/vc_row_inner][vc_row_inner gap=\"20\"][vc_column_inner width=\"1/2\" css=\".vc_custom_1691995661095{background-color: #722f8b !important;border: 1px solid #722f8b !important;border-radius: 35px !important;}\"][bsf-info-box icon_type=\"custom\" icon_img=\"id^3117|url^https://farmchemie.yasithawd.com/wp-content/uploads/2023/08/Pink_-H.png|caption^null|alt^null|title^Pink_-H|description^null\" img_width=\"60\" icon_style=\"advanced\" icon_border_style=\"solid\" icon_color_border=\"#ffffff\" icon_border_size=\"1\" icon_border_radius=\"500\" icon_border_spacing=\"1\" title=\"First FAMI-QS certified company in sri lanka\" title_font_style=\"font-weight:bold;\" title_font_color=\"#ffffff\" title_font_size=\"desktop:20px;\"][/bsf-info-box][/vc_column_inner][vc_column_inner width=\"1/2\" css=\".vc_custom_1691995519863{background-color: #f4ab20 !important;border: 1px solid #f4ab20 !important;border-radius: 35px !important;}\"][bsf-info-box icon_type=\"custom\" icon_img=\"id^3117|url^https://farmchemie.yasithawd.com/wp-content/uploads/2023/08/Pink_-H.png|caption^null|alt^null|title^Pink_-H|description^null\" img_width=\"60\" icon_style=\"advanced\" icon_border_style=\"solid\" icon_color_border=\"#ffffff\" icon_border_size=\"1\" icon_border_radius=\"500\" icon_border_spacing=\"1\" title=\"First Certificate of Ethical Trading certified in Livestock industry\" title_font_style=\"font-weight:bold;\" title_font_size=\"desktop:20px;\"][/bsf-info-box][/vc_column_inner][/vc_row_inner][vc_row_inner gap=\"20\"][vc_column_inner width=\"1/4\" css=\".vc_custom_1691996718116{border-radius: 35px !important;}\"][/vc_column_inner][vc_column_inner width=\"2/4\" css=\".vc_custom_1691995519863{background-color: #f4ab20 !important;border: 1px solid #f4ab20 !important;border-radius: 35px !important;}\"][bsf-info-box icon_type=\"custom\" icon_img=\"id^3117|url^https://farmchemie.yasithawd.com/wp-content/uploads/2023/08/Pink_-H.png|caption^null|alt^null|title^Pink_-H|description^null\" img_width=\"60\" icon_style=\"advanced\" icon_border_style=\"solid\" icon_color_border=\"#ffffff\" icon_border_size=\"1\" icon_border_radius=\"500\" icon_border_spacing=\"1\" title=\"First Silver awarded company at National Exports Awards in Livestock industry\" title_font_style=\"font-weight:bold;\" title_font_size=\"desktop:18px;\"][/bsf-info-box][/vc_column_inner][vc_column_inner width=\"1/4\"][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner width=\"1/6\"][/vc_column_inner][vc_column_inner width=\"2/3\"][vc_single_image image=\"3126\" img_size=\"full\" alignment=\"center\"][vc_single_image image=\"3125\" img_size=\"full\" alignment=\"center\"][/vc_column_inner][vc_column_inner width=\"1/6\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row]','About us','','inherit','closed','closed','','2917-revision-v1','','','2023-08-16 09:04:03','2023-08-16 09:04:03','',2917,'https://farmchemie.yasithawd.com/?p=3200',0,'revision','',0),(3095,1,'2023-08-12 13:23:43','2023-08-12 13:23:43','[vc_row full_width=\"stretch_row\" css=\".vc_custom_1689577528817{padding-bottom: 50px !important;}\"][vc_column css=\".vc_custom_1689577454678{margin-bottom: 50px !important;}\"][vc_row_inner css=\".vc_custom_1689577559805{border-bottom-width: 1px !important;padding-top: 35px !important;padding-bottom: 35px !important;border-bottom-color: #079547 !important;border-bottom-style: solid !important;border-radius: 1px !important;}\"][vc_column_inner width=\"2/3\"][ultimate_heading main_heading=\"Feed Additives\" heading_tag=\"h3\" main_heading_color=\"#079547\" sub_heading_color=\"#792c8a\" alignment=\"left\"]<strong>Premixes/ Specialty Feed Additives/ Dilution of Active Ingredients/ Concentrates</strong><strong>\r\n</strong>Pack sizes – 1,000 kg, 500 kg, 50 kg, 25 kg, 15 kg, 10 kg, 5 kg, 1kg[/ultimate_heading][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_single_image][/vc_column_inner][/vc_row_inner][vc_row_inner css=\".vc_custom_1689577609020{border-bottom-width: 1px !important;padding-top: 35px !important;padding-bottom: 35px !important;border-bottom-color: #079547 !important;border-bottom-style: solid !important;border-radius: 1px !important;}\"][vc_column_inner width=\"1/3\"][vc_single_image][/vc_column_inner][vc_column_inner width=\"2/3\"][ultimate_heading main_heading=\"Oral Supplements\" heading_tag=\"h3\" main_heading_color=\"#079547\" sub_heading_color=\"#792c8a\" alignment=\"left\"]<strong>Liquids</strong><strong>\r\n</strong>Pack sizes – 1,000 L, 250 L, 50 L, 25 L, 5 L, 1 L, 500 mL, 250 mL, 100 mL, 50 mL\r\n\r\n<strong>Water soluble powders</strong><strong>\r\n</strong>Pack sizes – 25 kg, 15 kg, 10 kg, 5 kg, 1kg[/ultimate_heading][/vc_column_inner][/vc_row_inner][vc_row_inner css=\".vc_custom_1689577609020{border-bottom-width: 1px !important;padding-top: 35px !important;padding-bottom: 35px !important;border-bottom-color: #079547 !important;border-bottom-style: solid !important;border-radius: 1px !important;}\"][vc_column_inner width=\"2/3\"][ultimate_heading main_heading=\"Tablets\" heading_tag=\"h3\" main_heading_color=\"#079547\" sub_heading_color=\"#792c8a\" alignment=\"left\"]<strong>Supplementary tablets for pet care</strong>\r\nTablet sizes – 1 to 5 g\r\n\r\n<strong>Boluses</strong><strong>\r\n</strong>Tablet sizes – 5 to 25 g[/ultimate_heading][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_single_image][/vc_column_inner][/vc_row_inner][vc_row_inner css=\".vc_custom_1689577609020{border-bottom-width: 1px !important;padding-top: 35px !important;padding-bottom: 35px !important;border-bottom-color: #079547 !important;border-bottom-style: solid !important;border-radius: 1px !important;}\"][vc_column_inner width=\"1/3\"][vc_single_image][/vc_column_inner][vc_column_inner width=\"2/3\"][ultimate_heading main_heading=\"Veterinary Pharmaceuticals\" heading_tag=\"h3\" main_heading_color=\"#079547\" sub_heading_color=\"#792c8a\" alignment=\"left\"]<strong>Deworming Solutions/ Antibiotics/ Antimicrobials/ Wound care solutions</strong><strong>\r\n</strong>Form – Liquid, WSP[/ultimate_heading][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row css=\".vc_custom_1689578783264{padding-top: 50px !important;padding-bottom: 50px !important;}\"][vc_column][ultimate_heading main_heading=\"Our manufacturing facility is certified with FAMI-QS, WHO GMP &amp; ISO 9001:2015 International Quality standards.\" main_heading_color=\"#079547\" sub_heading_color=\"#792c8a\" alignment=\"left\"]We select only the <strong><em>best</em></strong> and <strong><em>most reputed</em></strong> Raw Material &amp; Packing Material Suppliers for the production of our finished goods.[/ultimate_heading][vc_row_inner equal_height=\"yes\" content_placement=\"middle\"][vc_column_inner width=\"1/5\" offset=\"vc_hidden-lg vc_hidden-md\"][vc_single_image image=\"3062\" img_size=\"full\" alignment=\"center\"][/vc_column_inner][vc_column_inner width=\"1/5\" css=\".vc_custom_1691846530645{border-right-width: 1px !important;border-left-width: 1px !important;border-left-color: #000000 !important;border-left-style: solid !important;border-right-color: #000000 !important;border-right-style: solid !important;border-radius: 1px !important;}\" offset=\"vc_hidden-lg vc_hidden-md\"][vc_single_image image=\"3063\" img_size=\"full\" alignment=\"center\"][/vc_column_inner][vc_column_inner width=\"1/5\" offset=\"vc_hidden-lg vc_hidden-md\"][vc_single_image image=\"3064\" img_size=\"full\" alignment=\"center\"][/vc_column_inner][vc_column_inner width=\"1/5\" css=\".vc_custom_1691846545469{border-right-width: 1px !important;border-left-width: 1px !important;border-left-color: #000000 !important;border-left-style: solid !important;border-right-color: #000000 !important;border-right-style: solid !important;border-radius: 1px !important;}\" offset=\"vc_hidden-lg vc_hidden-md\"][vc_single_image image=\"3065\" img_size=\"full\" alignment=\"center\"][/vc_column_inner][vc_column_inner width=\"1/5\" offset=\"vc_hidden-lg vc_hidden-md\"][vc_single_image image=\"3066\" img_size=\"full\" alignment=\"center\"][/vc_column_inner][/vc_row_inner][vc_row_inner equal_height=\"yes\" content_placement=\"middle\"][vc_column_inner width=\"1/4\" css=\".vc_custom_1691846563021{border-right-width: 1px !important;border-right-color: #000000 !important;border-right-style: solid !important;border-radius: 1px !important;}\" offset=\"vc_hidden-lg vc_hidden-md\"][vc_single_image image=\"3067\" img_size=\"full\" alignment=\"center\"][/vc_column_inner][vc_column_inner width=\"1/4\" css=\".vc_custom_1691846569845{border-right-width: 1px !important;border-right-color: #000000 !important;border-right-style: solid !important;border-radius: 1px !important;}\" offset=\"vc_hidden-lg vc_hidden-md\"][vc_single_image image=\"3068\" img_size=\"full\" alignment=\"center\"][/vc_column_inner][vc_column_inner width=\"1/4\" css=\".vc_custom_1691846576949{border-right-width: 1px !important;border-right-color: #000000 !important;border-right-style: solid !important;border-radius: 1px !important;}\" offset=\"vc_hidden-lg vc_hidden-md\"][vc_single_image image=\"3069\" img_size=\"full\" alignment=\"center\"][/vc_column_inner][vc_column_inner width=\"1/4\" offset=\"vc_hidden-lg vc_hidden-md\"][vc_single_image image=\"3070\" img_size=\"full\" alignment=\"center\"][/vc_column_inner][/vc_row_inner][vc_single_image image=\"3043\" img_size=\"full\" alignment=\"center\"][vc_row_inner disable_element=\"yes\"][vc_column_inner width=\"1/3\"][vc_single_image image=\"2981\" img_size=\"full\"][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_single_image image=\"2982\" img_size=\"full\"][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_single_image image=\"2983\" img_size=\"full\"][/vc_column_inner][/vc_row_inner][vc_row_inner disable_element=\"yes\"][vc_column_inner width=\"1/6\"][/vc_column_inner][vc_column_inner width=\"2/3\"][vc_single_image image=\"2984\" img_size=\"full\"][/vc_column_inner][vc_column_inner width=\"1/6\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row css=\".vc_custom_1689578794814{padding-top: 50px !important;padding-bottom: 50px !important;}\"][vc_column][ultimate_heading main_heading=\"Supplier selection and procurement criteria\" main_heading_color=\"#079547\" sub_heading_color=\"#792c8a\" alignment=\"left\"][/ultimate_heading][vc_row_inner css=\".vc_custom_1689578812611{margin-top: 50px !important;}\"][vc_column_inner width=\"1/2\"][dt_vc_list dividers=\"false\"]\r\n<ul>\r\n 	<li>Check supplier’s quality certification to ensure raw material quality</li>\r\n 	<li>New vendor validation protocol - In case of a change in the supplier, obtain samples and validate in the lab</li>\r\n</ul>\r\n[/dt_vc_list][/vc_column_inner][vc_column_inner width=\"1/2\"][dt_vc_list dividers=\"false\"]\r\n<ul>\r\n 	<li>Income inspection carried out on every consignment (Tested for Chemical Assay &amp; Physical Properties)</li>\r\n 	<li>Quality department approval required to be used in the production</li>\r\n</ul>\r\n[/dt_vc_list][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row css=\".vc_custom_1689578794814{padding-top: 50px !important;padding-bottom: 50px !important;}\"][vc_column][ultimate_heading main_heading=\"Please contact us to start your Marketing Journey with a reliable manufacturing partnership with FARMCHEMIE\" heading_tag=\"h3\" main_heading_color=\"#079547\" sub_heading_color=\"#792c8a\" alignment=\"left\"][/ultimate_heading][vc_row_inner css=\".vc_custom_1689578812611{margin-top: 50px !important;}\"][vc_column_inner width=\"1/2\"][bsf-info-box icon_size=\"32\" title=\"International Markets\" pos=\"square_box\" box_border_style=\"solid\" box_border_width=\"1\" box_border_color=\"#792c8a\" title_font_color=\"#079547\" desc_font_color=\"#792c8a\" title_font_size=\"desktop:25px;\"]<strong>Email :</strong> <a href=\"mailto:sales.export@farmchemie.com\"><u>sales.export@farmchemie.com</u></a>\r\n<strong>Tel No :</strong> + 94 76 577 2975[/bsf-info-box][/vc_column_inner][vc_column_inner width=\"1/2\"][bsf-info-box icon_size=\"32\" title=\"Sri Lankan Market\" pos=\"square_box\" box_border_style=\"solid\" box_border_width=\"1\" box_border_color=\"#079547\" title_font_color=\"#079547\" desc_font_color=\"#792c8a\" title_font_size=\"desktop:25px;\"]Email : <a href=\"mailto:sales.local@farmchemie.com\"><u>sales.local@farmchemie.com</u></a>\r\nTel No : +94 74 224 6947[/bsf-info-box][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row]','Manufacturing','','inherit','closed','closed','','2964-revision-v1','','','2023-08-12 13:23:43','2023-08-12 13:23:43','',2964,'https://farmchemie.yasithawd.com/?p=3095',0,'revision','',0),(3085,1,'2023-08-12 13:12:46','2023-08-12 13:12:46','','manu_logos-1-t','','inherit','open','closed','','manu_logos-1-t','','','2023-08-12 13:12:46','2023-08-12 13:12:46','',2964,'https://farmchemie.yasithawd.com/wp-content/uploads/2023/08/manu_logos-1-t.png',0,'attachment','image/png',0),(3080,1,'2023-08-12 13:01:09','2023-08-12 13:01:09','','552px-x-128px','','inherit','open','closed','','552px-x-128px','','','2023-08-12 13:01:09','2023-08-12 13:01:09','',0,'https://farmchemie.yasithawd.com/wp-content/uploads/2023/08/552px-x-128px.gif',0,'attachment','image/gif',0),(3081,1,'2023-08-12 13:01:32','2023-08-12 13:01:32','','366px-80px','','inherit','open','closed','','366px-80px','','','2023-08-12 13:01:32','2023-08-12 13:01:32','',0,'https://farmchemie.yasithawd.com/wp-content/uploads/2023/08/366px-80px.gif',0,'attachment','image/gif',0),(3082,1,'2023-08-12 13:01:48','2023-08-12 13:01:48','','2-favicon-16x16','','inherit','open','closed','','2-favicon-16x16','','','2023-08-12 13:01:48','2023-08-12 13:01:48','',0,'https://farmchemie.yasithawd.com/wp-content/uploads/2023/08/2-favicon-16x16-1.png',0,'attachment','image/png',0),(3083,1,'2023-08-12 13:01:58','2023-08-12 13:01:58','','2-favicon_32x32px','','inherit','open','closed','','2-favicon_32x32px','','','2023-08-12 13:01:58','2023-08-12 13:01:58','',0,'https://farmchemie.yasithawd.com/wp-content/uploads/2023/08/2-favicon_32x32px.png',0,'attachment','image/png',0),(3084,1,'2023-08-12 13:03:37','2023-08-12 13:03:37','','Alverm-30_600px-600px','','inherit','open','closed','','alverm-30_600px-600px','','','2023-08-12 13:03:37','2023-08-12 13:03:37','',0,'https://farmchemie.yasithawd.com/wp-content/uploads/2023/04/Alverm-30_600px-600px.png',0,'attachment','image/png',0),(3086,1,'2023-08-12 13:15:28','2023-08-12 13:15:28','','adisseo1','','inherit','open','closed','','adisseo1','','','2023-08-12 13:15:28','2023-08-12 13:15:28','',2964,'https://farmchemie.yasithawd.com/wp-content/uploads/2023/08/adisseo1.png',0,'attachment','image/png',0),(3087,1,'2023-08-12 13:15:31','2023-08-12 13:15:31','','amoros1','','inherit','open','closed','','amoros1','','','2023-08-12 13:15:31','2023-08-12 13:15:31','',2964,'https://farmchemie.yasithawd.com/wp-content/uploads/2023/08/amoros1.png',0,'attachment','image/png',0),(3088,1,'2023-08-12 13:15:33','2023-08-12 13:15:33','','basf1','','inherit','open','closed','','basf1','','','2023-08-12 13:15:33','2023-08-12 13:15:33','',2964,'https://farmchemie.yasithawd.com/wp-content/uploads/2023/08/basf1.png',0,'attachment','image/png',0),(3089,1,'2023-08-12 13:15:36','2023-08-12 13:15:36','','Huvepharma1','','inherit','open','closed','','huvepharma1','','','2023-08-12 13:15:36','2023-08-12 13:15:36','',2964,'https://farmchemie.yasithawd.com/wp-content/uploads/2023/08/Huvepharma1.png',0,'attachment','image/png',0),(3090,1,'2023-08-12 13:15:38','2023-08-12 13:15:38','','Livistro1','','inherit','open','closed','','livistro1','','','2023-08-12 13:15:38','2023-08-12 13:15:38','',2964,'https://farmchemie.yasithawd.com/wp-content/uploads/2023/08/Livistro1.png',0,'attachment','image/png',0),(3091,1,'2023-08-12 13:15:42','2023-08-12 13:15:42','','logos-s1','','inherit','open','closed','','logos-s1','','','2023-08-12 13:15:42','2023-08-12 13:15:42','',2964,'https://farmchemie.yasithawd.com/wp-content/uploads/2023/08/logos-s1.png',0,'attachment','image/png',0),(3092,1,'2023-08-12 13:15:49','2023-08-12 13:15:49','','pancrosma1','','inherit','open','closed','','pancrosma1','','','2023-08-12 13:15:49','2023-08-12 13:15:49','',2964,'https://farmchemie.yasithawd.com/wp-content/uploads/2023/08/pancrosma1.png',0,'attachment','image/png',0),(3093,1,'2023-08-12 13:15:55','2023-08-12 13:15:55','','pootershaven1','','inherit','open','closed','','pootershaven1','','','2023-08-12 13:15:55','2023-08-12 13:15:55','',2964,'https://farmchemie.yasithawd.com/wp-content/uploads/2023/08/pootershaven1.png',0,'attachment','image/png',0),(3094,1,'2023-08-12 13:15:57','2023-08-12 13:15:57','','Tolsa1','','inherit','open','closed','','tolsa1','','','2023-08-12 13:15:57','2023-08-12 13:15:57','',2964,'https://farmchemie.yasithawd.com/wp-content/uploads/2023/08/Tolsa1.png',0,'attachment','image/png',0),(2525,1,'2022-09-05 07:32:52','2022-09-05 07:32:52','[vc_row full_width=\"stretch_row_content\" disable_element=\"yes\" bg_type=\"image\" parallax_style=\"vcpb-default\" bg_image_new=\"id^2524|url^https://farmchemie.yasithawd.com/wp-content/uploads/2022/09/marketbgimg1.png|caption^null|alt^null|title^marketbgimg1|description^null\" bg_image_repeat=\"no-repeat\" css=\".vc_custom_1684922556235{margin-right: 0px !important;margin-left: 0px !important;padding-right: 0px !important;padding-left: 0px !important;}\"][vc_column css=\".vc_custom_1662730433019{padding-right: 0px !important;padding-left: 0px !important;}\"][ultimate_heading main_heading=\"SELECT YOUR MARKET/REGION\" main_heading_color=\"#6e368d\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:48px;\"][/ultimate_heading][vc_empty_space height=\"300px\" css=\".vc_custom_1662447237222{margin: 0px !important;padding: 0px !important;background-image: url(https://farmchemie.yasithawd.com/wp-content/uploads/2022/09/marketbgimg1-sp.png?id=2527) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\"][vc_row_inner][vc_column_inner el_class=\"customborderradius1\" width=\"1/3\" css=\".vc_custom_1662539141341{background-color: #6e368d !important;}\"][ult_animation_block animation=\"fadeIn\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][bsf-info-box icon_type=\"custom\" icon_img=\"id^2537|url^https://farmchemie.yasithawd.com/wp-content/uploads/2022/09/earthicon-1.png|caption^null|alt^null|title^earthicon-1|description^null\" img_width=\"100\" title=\"Global\" pos=\"right\" title_font_style=\"font-weight:bold;\" title_font_size=\"desktop:48px;\" title_font_color=\"#ffffff\" desc_font_size=\"desktop:24px;\" desc_font_color=\"#ffffff\"]International Market[/bsf-info-box][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner el_class=\"customborderradius1\" width=\"1/3\" css=\".vc_custom_1662539133598{background-color: #059444 !important;}\"][ult_animation_block animation=\"fadeIn\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][bsf-info-box icon_type=\"custom\" icon_img=\"id^2536|url^https://farmchemie.yasithawd.com/wp-content/uploads/2022/09/srilankaicon-1.png|caption^null|alt^null|title^srilankaicon-1|description^null\" img_width=\"100\" title=\"Local\" pos=\"left\" title_font_style=\"font-weight:bold;\" title_font_size=\"desktop:48px;\" title_font_color=\"#ffffff\" desc_font_size=\"desktop:24px;\" desc_font_color=\"#ffffff\"]Sri Lankan Market[/bsf-info-box][/ult_animation_block][/vc_column_inner][/vc_row_inner][vc_row_inner equal_height=\"yes\" css=\".vc_custom_1662370166856{margin-top: 20px !important;margin-right: 50px !important;margin-left: 50px !important;}\"][vc_column_inner width=\"5/12\"][vc_column_text]FARMCHEMIE is a world-renowned manufacturer of feed additives and feed supplements. We offer our FarmStar and PetStar branded products to the international markets.[/vc_column_text][/vc_column_inner][vc_column_inner width=\"2/12\"][/vc_column_inner][vc_column_inner width=\"5/12\"][vc_column_text]FARMCHEMIE offers an island wide distribution, technical consultation and poultry vaccination services of high-quality animal healthcare products from world-renowned suppliers.[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_row_inner equal_height=\"yes\" content_placement=\"middle\" css=\".vc_custom_1662460080909{margin-top: 20px !important;margin-right: 50px !important;margin-bottom: 10px !important;margin-left: 50px !important;}\"][vc_column_inner width=\"2/12\"][vc_single_image image=\"2599\" img_size=\"full\"][/vc_column_inner][vc_column_inner width=\"1/12\"][/vc_column_inner][vc_column_inner width=\"2/12\"][vc_single_image image=\"2598\" img_size=\"full\"][/vc_column_inner][vc_column_inner width=\"2/12\"][/vc_column_inner][vc_column_inner width=\"1/12\"][/vc_column_inner][vc_column_inner width=\"1/12\"][vc_single_image image=\"2593\" img_size=\"full\"][vc_single_image image=\"2596\" img_size=\"full\"][/vc_column_inner][vc_column_inner width=\"1/12\"][vc_single_image image=\"2595\" img_size=\"full\"][/vc_column_inner][vc_column_inner width=\"1/12\"][vc_single_image image=\"2594\" img_size=\"full\"][vc_single_image image=\"2597\" img_size=\"full\"][/vc_column_inner][vc_column_inner width=\"1/12\"][/vc_column_inner][/vc_row_inner][vc_row_inner equal_height=\"yes\" css=\".vc_custom_1662370166856{margin-top: 20px !important;margin-right: 50px !important;margin-left: 50px !important;}\"][vc_column_inner width=\"5/12\"][vc_column_text]We provide toll-manufacturing services to globally recognized marketing companies for the Asian &amp; African markets. Our manufacturing plant is equipped with fully automated production lines from Bühler.[/vc_column_text][/vc_column_inner][vc_column_inner width=\"2/12\"][/vc_column_inner][vc_column_inner width=\"5/12\"][vc_column_text]We offer both locally manufactured and imported products to cater the poultry, dairy, swine, pet-care and aqua markets.[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_row_inner equal_height=\"yes\" content_placement=\"middle\" css=\".vc_custom_1662460080909{margin-top: 20px !important;margin-right: 50px !important;margin-bottom: 10px !important;margin-left: 50px !important;}\"][vc_column_inner width=\"5/12\"][vc_single_image image=\"2600\" img_size=\"full\" alignment=\"center\"][/vc_column_inner][vc_column_inner width=\"2/12\"][/vc_column_inner][vc_column_inner width=\"5/12\"][vc_single_image image=\"2615\" img_size=\"full\" alignment=\"center\"][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner width=\"1/2\"][ult_buttons btn_title=\"READ MORE\" btn_align=\"ubtn-center\" btn_size=\"ubtn-custom\" btn_width=\"300\" btn_height=\"60\" btn_title_color=\"#6e368d\" btn_bg_color=\"rgba(224,224,224,0.01)\" icon=\"dt-icon-the7-menu-014\" icon_size=\"40\" icon_color=\"#6e368d\" btn_icon_pos=\"ubtn-sep-icon-at-right\" btn_font_style=\"font-weight:bold;\" btn_font_size=\"desktop:24px;\"][/vc_column_inner][vc_column_inner width=\"1/2\"][ult_buttons btn_title=\"READ MORE\" btn_align=\"ubtn-center\" btn_size=\"ubtn-custom\" btn_width=\"300\" btn_height=\"60\" btn_title_color=\"#059444\" btn_bg_color=\"rgba(224,224,224,0.01)\" icon=\"dt-icon-the7-menu-013\" icon_size=\"40\" icon_color=\"#059444\" btn_icon_pos=\"ubtn-sep-icon-at-left\" btn_font_style=\"font-weight:bold;\" btn_font_size=\"desktop:24px;\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row full_width=\"stretch_row_content_no_spaces\" full_height=\"yes\" columns_placement=\"top\" disable_element=\"yes\" bg_type=\"image\" parallax_style=\"vcpb-default\" bg_image_new=\"id^2604|url^https://farmchemie.yasithawd.com/wp-content/uploads/2022/09/rowimg_mod_4HigherRes1.jpg|caption^null|alt^null|title^rowimg_mod_4HigherRes1|description^null\" bg_image_repeat=\"no-repeat\"][vc_column][ultimate_heading main_heading=\"SPIRIT OF INNOVATION IN ANIMAL HEALTH\" main_heading_color=\"#6e368d\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:48px;\"][/ultimate_heading][vc_row_inner css=\".vc_custom_1662456998651{padding-bottom: 500px !important;}\"][vc_column_inner][/vc_column_inner][/vc_row_inner][vc_row_inner content_placement=\"bottom\" css=\".vc_custom_1662458571859{padding-right: 0px !important;padding-bottom: 10px !important;padding-left: 0px !important;}\"][vc_column_inner el_class=\"customborderradius1\" width=\"6/12\" css=\".vc_custom_1662539148421{background-color: rgba(255,255,255,0.5) !important;*background-color: rgb(255,255,255) !important;}\"][vc_single_image image=\"2567\" img_size=\"full\" alignment=\"center\"][/vc_column_inner][vc_column_inner width=\"3/12\"][/vc_column_inner][vc_column_inner width=\"3/12\" css=\".vc_custom_1662371690284{background-color: #6e368d !important;}\"][vc_single_image image=\"2566\" img_size=\"full\" alignment=\"center\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row]','Home','','publish','closed','closed','','home','','','2023-08-14 08:46:10','2023-08-14 08:46:10','',0,'https://farmchemie.yasithawd.com/?page_id=2525',0,'page','',0),(2526,1,'2022-09-05 07:32:52','2022-09-05 07:32:52','[vc_row][vc_column][/vc_column][/vc_row]','Home2','','inherit','closed','closed','','2525-revision-v1','','','2022-09-05 07:32:52','2022-09-05 07:32:52','',2525,'https://farmchemie.yasithawd.com/?p=2526',0,'revision','',0),(3072,1,'2023-08-12 11:26:39','2023-08-12 11:26:39','','favicon-16x16','','inherit','open','closed','','favicon-16x16','','','2023-08-12 11:26:39','2023-08-12 11:26:39','',0,'https://farmchemie.yasithawd.com/wp-content/uploads/2023/08/favicon-16x16-1.png',0,'attachment','image/png',0),(3073,1,'2023-08-12 11:27:13','2023-08-12 11:27:13','','favicon_32x32px','','inherit','open','closed','','favicon_32x32px','','','2023-08-12 11:27:13','2023-08-12 11:27:13','',0,'https://farmchemie.yasithawd.com/wp-content/uploads/2023/08/favicon_32x32px.png',0,'attachment','image/png',0),(3074,1,'2023-08-12 11:42:21','2023-08-12 11:42:21','','Asset 1@300x','','inherit','open','closed','','asset-1300x','','','2023-08-12 11:42:21','2023-08-12 11:42:21','',0,'https://farmchemie.yasithawd.com/wp-content/uploads/2023/08/Asset-1@300x.png',0,'attachment','image/png',0),(3076,1,'2023-08-12 11:45:43','2023-08-12 11:45:43','','asset-resized2','','inherit','open','closed','','asset-resized2','','','2023-08-12 11:45:43','2023-08-12 11:45:43','',0,'https://farmchemie.yasithawd.com/wp-content/uploads/2023/08/asset-resized2.png',0,'attachment','image/png',0),(3077,1,'2023-08-12 11:53:07','2023-08-12 11:53:07','','Alverm-30_300px-200px','','inherit','open','closed','','alverm-30_300px-200px','','','2023-08-12 11:53:07','2023-08-12 11:53:07','',0,'https://farmchemie.yasithawd.com/wp-content/uploads/2023/04/Alverm-30_300px-200px.png',0,'attachment','image/png',0),(3078,1,'2023-08-12 11:53:52','2023-08-12 11:53:52','','Alverm-30_400-x-400px','','inherit','open','closed','','alverm-30_400-x-400px','','','2023-08-12 11:53:52','2023-08-12 11:53:52','',0,'https://farmchemie.yasithawd.com/wp-content/uploads/2023/04/Alverm-30_400-x-400px.png',0,'attachment','image/png',0),(3363,1,'2023-08-28 01:42:32','2023-08-28 01:42:32','','AVI-Pharmasin_600px x 600px','','inherit','open','closed','','avi-pharmasin_600px-x-600px-2','','','2023-08-28 01:42:32','2023-08-28 01:42:32','',3362,'https://farmchemie.yasithawd.com/wp-content/uploads/2023/08/AVI-Pharmasin_600px-x-600px.png',0,'attachment','image/png',0),(3364,1,'2023-08-28 01:43:10','2023-08-28 01:43:10','','AVI-Pharmasin_logo','','inherit','open','closed','','avi-pharmasin_logo-2','','','2023-08-28 01:43:10','2023-08-28 01:43:10','',3362,'https://farmchemie.yasithawd.com/wp-content/uploads/2023/08/AVI-Pharmasin_logo.png',0,'attachment','image/png',0),(3365,1,'2023-08-28 01:46:04','2023-08-28 01:46:04','','FELIMAZOLE','<h3><em>Treatment of hyperthyroidism in cats</em></h3>\r\n[dt_divider style=\"thick\" /]\r\n\r\n&nbsp;\r\n\r\n<strong>Composition: </strong>\r\n\r\nEach 1 tablet contains,\r\nMethimazole – 2. 5 mg\r\n\r\n[dt_divider style=\"thin\" /]\r\n\r\n<strong>Indication: </strong>\r\n\r\nFELIMAZOLE Coated Tablets (methimazole) are indicated for the treatment of hyperthyroidism in cats\r\n\r\n[dt_divider style=\"thin\" /]\r\n\r\n<strong>Contraindication:</strong>\r\n\r\nDo not use in cats with hypersensitivity to methimazole, carbimazole or the excipient, polyethylene glycol.\r\n\r\n[dt_divider style=\"thin\" /]\r\n\r\n<strong>Dosage: </strong>\r\n\r\nThe starting dose of FELIMAZOLE Coated Tablets is 2.5 mg administered every 12 hours. Following 3 weeks of treatment, the dose should be titrated to effect based on individual serum total T4 (TT4) levels and clinical response. Dose adjustments should be made in 2.5 mg increments. The maximum total dosage is 20 mg per day divided, not to exceed 10 mg as a single administration. Hematology, biochemistry, and TT4 should be evaluated prior to initiating treatment and monitored after 3 weeks and 6 weeks of treatment. Thereafter, bloodwork should be monitored every 3 months and the dose adjusted as necessary. Cats receiving doses greater than 10 mg per day should be monitored more frequently.\r\n\r\n[dt_divider style=\"thin\" /]\r\n\r\n<strong>Pack sizes: </strong>\r\n\r\n100 tablets\r\n\r\n&nbsp;\r\n\r\n[dt_divider style=\"thick\" /]\r\n\r\n&nbsp;\r\n\r\n<a href=\"/wp-content/uploads/2023/08/AVI-VE.pdf\"><i class=\"fa-solid fa-file-pdf fa-2xl\" style=\"color: #039447;\"> pdf</i></a> <a href=\"//wp-content/uploads/2023/08/AVI-3-folding-brochure-SInhala-Final-outline_compressed-4.pdf\"><i class=\"fa-solid fa-file-pdf fa-2xl\" style=\"color: #039447;\"> pdf</i></a>','publish','closed','closed','','felimazole','','','2023-09-16 08:55:21','2023-09-16 08:55:21','',0,'https://farmchemie.yasithawd.com/?post_type=product&#038;p=3365',0,'product','',0),(3366,1,'2023-08-28 02:29:50','2023-08-28 02:29:50','','Noworm Plus','<h3><em>Broad – spectrum dewormer for Dogs and Cats</em></h3>\r\n[dt_divider style=\"thick\" /]\r\n\r\n&nbsp;\r\n\r\n<strong>Composition: </strong>\r\n\r\nEach 1 tablet contains,\r\nFebantel – 150 mg\r\nPyrantel pamoate – 144 mg and\r\nPraziquantel – 50 mg\r\n\r\n[dt_divider style=\"thin\" /]\r\n\r\n<strong>Indication: </strong>\r\n\r\nTreatment of mixed infections by adult cestodes and nematodes of the following species:\r\nNematodes:\r\nAscarids: <em>Toxocara canis, Toxascaris leonina</em> (adult and late immature forms).\r\nHookworms: <em>Uncinaria stenocephala, Ancylostoma caninum</em> (adults).\r\nWhipworms: <em>Trichuris vulpis</em> (adults).\r\nCestodes:\r\nTapeworms: <em>Echinococcus</em> spp., <em>Taenia</em> spp., <em>Dipylidium caninum</em> (adult and immature forms).\r\n\r\n[dt_divider style=\"thin\" /]\r\n\r\n<strong>Contraindication:</strong>\r\n\r\nDo not use in animals with a known sensitivity to the active ingredients or to any of the excipients.\r\n\r\n[dt_divider style=\"thin\" /]\r\n\r\n<strong>Dosage: </strong>\r\n\r\nOne tablet per 10 kg Body weight (&gt;40 kg maximum 4 tablets per treatment)\r\n\r\n[dt_divider style=\"thin\" /]\r\n\r\n<strong>Pack sizes: </strong>\r\n\r\nTwo (2) tablets Twenty (20) tablets and Hundred (100) tablets.\r\n\r\n&nbsp;\r\n\r\n[dt_divider style=\"thick\" /]\r\n\r\n&nbsp;\r\n\r\n<a href=\"/wp-content/uploads/2023/08/AVI-VE.pdf\"><i class=\"fa-solid fa-file-pdf fa-2xl\" style=\"color: #039447\"> pdf</i></a> <a href=\"//wp-content/uploads/2023/08/AVI-3-folding-brochure-SInhala-Final-outline_compressed-4.pdf\"><i class=\"fa-solid fa-file-pdf fa-2xl\" style=\"color: #039447\"> pdf</i></a>','publish','closed','closed','','noworm-plus','','','2023-09-24 00:22:40','2023-09-24 00:22:40','',0,'https://farmchemie.yasithawd.com/?post_type=product&#038;p=3366',0,'product','',0),(2990,1,'2023-07-17 07:44:43','2023-07-17 07:44:43','[vc_row css=\".vc_custom_1689579703311{padding-top: 50px !important;padding-bottom: 50px !important;}\"][vc_column][vc_column_text]Medivesta Laboratories (Pvt) Ltd. offers high quality analytical service in the field of Pharmaceutical, Food and Feed analysis. We specialize in analysis of Active pharmaceutical Ingredients, Vitamins, Amino acids, Mycotoxins and Microbiological analysis and so on.\r\nBy using the latest technologies, we are continuously expanding our range of analysis in industry. We are committed to provide you with Best service.[/vc_column_text][vc_row_inner][vc_column_inner width=\"1/3\"][vc_single_image image=\"3015\" img_size=\"full\"][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_single_image image=\"3016\" img_size=\"full\"][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_single_image image=\"3017\" img_size=\"full\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row css=\".vc_custom_1689579703311{padding-top: 50px !important;padding-bottom: 50px !important;}\"][vc_column][ultimate_heading main_heading=\"Contact us:\" heading_tag=\"h3\" main_heading_color=\"#079547\" alignment=\"left\"][/ultimate_heading][vc_row_inner css=\".vc_custom_1689579850874{margin-top: 35px !important;margin-bottom: 35px !important;}\"][vc_column_inner width=\"1/3\"][bsf-info-box icon_size=\"32\" title=\"Inquiries\"][/bsf-info-box][/vc_column_inner][vc_column_inner width=\"1/3\"][bsf-info-box icon_size=\"32\" title=\"Test Request form\"][/bsf-info-box][/vc_column_inner][vc_column_inner width=\"1/3\"][bsf-info-box icon_size=\"32\" title=\"Accreditation\"][/bsf-info-box][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row]','Medivesta Laboratories','','publish','closed','closed','','medivesta-laboratories-pvt-ltd','','','2023-08-19 05:34:09','2023-08-19 05:34:09','',0,'https://farmchemie.yasithawd.com/?page_id=2990',0,'page','',0),(2991,1,'2023-07-17 07:43:44','2023-07-17 07:43:44','[vc_row css=\".vc_custom_1689579703311{padding-top: 50px !important;padding-bottom: 50px !important;}\"][vc_column][vc_column_text]Medivesta Laboratories (Pvt) Ltd. offers high quality analytical service in the field of Pharmaceutical, Food and Feed analysis. We specialize in analysis of Active pharmaceutical Ingredients, Vitamins, Amino acids, Mycotoxins and Microbiological analysis and so on.\r\nBy using the latest technologies, we are continuously expanding our range of analysis in industry. We are committed to provide you with Best service.[/vc_column_text][/vc_column][/vc_row][vc_row css=\".vc_custom_1689579703311{padding-top: 50px !important;padding-bottom: 50px !important;}\"][vc_column][ultimate_heading main_heading=\"Contact us:\" heading_tag=\"h3\" main_heading_color=\"#079547\" margin_design_tab_text=\"\"][/ultimate_heading][vc_row_inner][vc_column_inner width=\"1/3\"][bsf-info-box icon_size=\"32\" title=\"Inquiries\"][/bsf-info-box][/vc_column_inner][vc_column_inner width=\"1/3\"][bsf-info-box icon_size=\"32\" title=\"Test Request form\"][/bsf-info-box][/vc_column_inner][vc_column_inner width=\"1/3\"][bsf-info-box icon_size=\"32\" title=\"Accreditation\"][/bsf-info-box][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row]','Medivesta Laboratories (Pvt) Ltd.','','inherit','closed','closed','','2990-revision-v1','','','2023-07-17 07:43:44','2023-07-17 07:43:44','',2990,'https://farmchemie.yasithawd.com/?p=2991',0,'revision','',0),(2992,1,'2023-07-17 07:44:20','2023-07-17 07:44:20','[vc_row css=\".vc_custom_1689579703311{padding-top: 50px !important;padding-bottom: 50px !important;}\"][vc_column][vc_column_text]Medivesta Laboratories (Pvt) Ltd. offers high quality analytical service in the field of Pharmaceutical, Food and Feed analysis. We specialize in analysis of Active pharmaceutical Ingredients, Vitamins, Amino acids, Mycotoxins and Microbiological analysis and so on.\r\nBy using the latest technologies, we are continuously expanding our range of analysis in industry. We are committed to provide you with Best service.[/vc_column_text][/vc_column][/vc_row][vc_row css=\".vc_custom_1689579703311{padding-top: 50px !important;padding-bottom: 50px !important;}\"][vc_column][ultimate_heading main_heading=\"Contact us:\" heading_tag=\"h3\" main_heading_color=\"#079547\" margin_design_tab_text=\"\"][/ultimate_heading][vc_row_inner css=\".vc_custom_1689579850874{margin-top: 35px !important;margin-bottom: 35px !important;}\"][vc_column_inner width=\"1/3\"][bsf-info-box icon_size=\"32\" title=\"Inquiries\"][/bsf-info-box][/vc_column_inner][vc_column_inner width=\"1/3\"][bsf-info-box icon_size=\"32\" title=\"Test Request form\"][/bsf-info-box][/vc_column_inner][vc_column_inner width=\"1/3\"][bsf-info-box icon_size=\"32\" title=\"Accreditation\"][/bsf-info-box][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row]','Medivesta Laboratories (Pvt) Ltd.','','inherit','closed','closed','','2990-revision-v1','','','2023-07-17 07:44:20','2023-07-17 07:44:20','',2990,'https://farmchemie.yasithawd.com/?p=2992',0,'revision','',0),(2993,1,'2023-07-17 07:44:43','2023-07-17 07:44:43','[vc_row css=\".vc_custom_1689579703311{padding-top: 50px !important;padding-bottom: 50px !important;}\"][vc_column][vc_column_text]Medivesta Laboratories (Pvt) Ltd. offers high quality analytical service in the field of Pharmaceutical, Food and Feed analysis. We specialize in analysis of Active pharmaceutical Ingredients, Vitamins, Amino acids, Mycotoxins and Microbiological analysis and so on.\r\nBy using the latest technologies, we are continuously expanding our range of analysis in industry. We are committed to provide you with Best service.[/vc_column_text][/vc_column][/vc_row][vc_row css=\".vc_custom_1689579703311{padding-top: 50px !important;padding-bottom: 50px !important;}\"][vc_column][ultimate_heading main_heading=\"Contact us:\" heading_tag=\"h3\" main_heading_color=\"#079547\" alignment=\"left\" margin_design_tab_text=\"\"][/ultimate_heading][vc_row_inner css=\".vc_custom_1689579850874{margin-top: 35px !important;margin-bottom: 35px !important;}\"][vc_column_inner width=\"1/3\"][bsf-info-box icon_size=\"32\" title=\"Inquiries\"][/bsf-info-box][/vc_column_inner][vc_column_inner width=\"1/3\"][bsf-info-box icon_size=\"32\" title=\"Test Request form\"][/bsf-info-box][/vc_column_inner][vc_column_inner width=\"1/3\"][bsf-info-box icon_size=\"32\" title=\"Accreditation\"][/bsf-info-box][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row]','Medivesta Laboratories (Pvt) Ltd.','','inherit','closed','closed','','2990-revision-v1','','','2023-07-17 07:44:43','2023-07-17 07:44:43','',2990,'https://farmchemie.yasithawd.com/?p=2993',0,'revision','',0),(2994,1,'2023-07-17 07:49:32','2023-07-17 07:49:32','[vc_row css=\".vc_custom_1689580076103{padding-top: 50px !important;padding-bottom: 50px !important;}\"][vc_column][vc_column_text]At Farmchemie, we prioritize the well-being of farmers and their livestock by offering comprehensive technical assistance and veterinary services. Our team of experienced veterinary surgeons and technical experts is readily available to support farmers whenever they require assistance.\r\n\r\n&nbsp;\r\n\r\nOne of the key services we provide is disease diagnosis. Our skilled professionals conduct thorough clinical examinations and postmortems to accurately identify the underlying health issues affecting the animals. This diagnostic service is provided free of charge, ensuring that farmers have access to accurate and reliable information about the health status of their livestock.\r\n\r\n&nbsp;\r\n\r\nTo supplement our in-house diagnostic capabilities, we collaborate with local and foreign laboratories. When necessary, samples collected from the animals are sent to these specialized laboratories for further examination. This ensures a comprehensive analysis of the samples, enabling us to provide accurate diagnoses and appropriate recommendations for treatment.\r\n\r\n&nbsp;\r\n\r\nOur commitment to supporting farmers extends beyond diagnosis. Once the examination results are obtained, our experts provide detailed recommendations for the required treatments. These recommendations are tailored to the specific needs of the animals, taking into consideration factors such as the severity of the disease, the animal\'s overall health, and the available treatment options.\r\n\r\n&nbsp;\r\n\r\nAt Farmchemie, we understand the vital role that veterinary support plays in ensuring the health and productivity of livestock. Through our comprehensive services, we aim to empower farmers with the knowledge and resources needed to maintain the well-being of their animals and optimize their farming practices.[/vc_column_text][/vc_column][/vc_row]','Technical Service','','publish','closed','closed','','technical-service','','','2023-08-19 05:35:44','2023-08-19 05:35:44','',0,'https://farmchemie.yasithawd.com/?page_id=2994',0,'page','',0),(2995,1,'2023-07-17 07:49:09','2023-07-17 07:49:09','[vc_row css=\".vc_custom_1689580076103{padding-top: 50px !important;padding-bottom: 50px !important;}\"][vc_column][vc_column_text]At Farmchemie, we prioritize the well-being of farmers and their livestock by offering comprehensive technical assistance and veterinary services. Our team of experienced veterinary surgeons and technical experts is readily available to support farmers whenever they require assistance.\r\n\r\n&nbsp;\r\n\r\nOne of the key services we provide is disease diagnosis. Our skilled professionals conduct thorough clinical examinations and postmortems to accurately identify the underlying health issues affecting the animals. This diagnostic service is provided free of charge, ensuring that farmers have access to accurate and reliable information about the health status of their livestock.\r\n\r\n&nbsp;\r\n\r\nTo supplement our in-house diagnostic capabilities, we collaborate with local and foreign laboratories. When necessary, samples collected from the animals are sent to these specialized laboratories for further examination. This ensures a comprehensive analysis of the samples, enabling us to provide accurate diagnoses and appropriate recommendations for treatment.\r\n\r\n&nbsp;\r\n\r\nOur commitment to supporting farmers extends beyond diagnosis. Once the examination results are obtained, our experts provide detailed recommendations for the required treatments. These recommendations are tailored to the specific needs of the animals, taking into consideration factors such as the severity of the disease, the animal\'s overall health, and the available treatment options.\r\n\r\n&nbsp;\r\n\r\nAt Farmchemie, we understand the vital role that veterinary support plays in ensuring the health and productivity of livestock. Through our comprehensive services, we aim to empower farmers with the knowledge and resources needed to maintain the well-being of their animals and optimize their farming practices.[/vc_column_text][/vc_column][/vc_row]','Technical Service','','inherit','closed','closed','','2994-revision-v1','','','2023-07-17 07:49:09','2023-07-17 07:49:09','',2994,'https://farmchemie.yasithawd.com/?p=2995',0,'revision','',0),(2996,1,'2023-07-17 07:52:42','2023-07-17 07:52:42','[vc_row][vc_column][vc_column_text]Farmchemie along with the leading veterinary vaccine solution provider in the world, CEVA established our partnership in 2013 to become the first animal health input supplier in Sri Lanka to offer vaccination services to poultry farmers. This innovative solution tackles the burden of individually vaccinating animals on farms and introduces advanced equipment for precise vaccine administration. By addressing the limitations of traditional vaccination methods, Farmchemie\'s services have gained popularity within a short period.[/vc_column_text][/vc_column][/vc_row][vc_row css=\".vc_custom_1689580294399{padding-top: 50px !important;padding-bottom: 50px !important;}\"][vc_column][vc_row_inner content_placement=\"middle\" css=\".vc_custom_1692423054521{border-top-width: 1px !important;border-top-color: #079547 !important;border-top-style: solid !important;border-radius: 1px !important;}\"][vc_column_inner width=\"2/3\"][vc_column_text css_animation=\"fadeInLeftBig\"]after 10 years from 2013-2023 Farmchemie achieved 500Mn doses of vaccines from Transmune IBD vaccine which is administrated to prevent a deadly disease called Infectious Bursal Disease in broiler birds of Sri Lanka and holding the number 01 position in vaccination service in the county since the beginning.[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_single_image image=\"3007\" img_size=\"full\" css_animation=\"fadeInRightBig\"][/vc_column_inner][/vc_row_inner][vc_row_inner content_placement=\"middle\" css=\".vc_custom_1692423045746{border-top-width: 1px !important;border-top-color: #079547 !important;border-top-style: solid !important;border-radius: 1px !important;}\"][vc_column_inner width=\"1/3\"][vc_single_image image=\"3008\" img_size=\"full\" css_animation=\"fadeInLeftBig\"][/vc_column_inner][vc_column_inner width=\"2/3\"][vc_column_text css_animation=\"fadeInRightBig\"]Farmchemie\'s approach focuses on accurate vaccine delivery and robust cold chain management. The company regularly conducts audits to ensure the quality and integrity of vaccines. The maintenance of proper temperature and storage conditions guarantees vaccine potency and enhances their efficacy during administration.[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_row_inner content_placement=\"middle\" css=\".vc_custom_1692423061906{border-top-width: 1px !important;border-top-color: #079547 !important;border-top-style: solid !important;border-radius: 1px !important;}\"][vc_column_inner width=\"2/3\"][vc_column_text css_animation=\"fadeInLeftBig\"]One of the key strengths of Farmchemie is its team of highly qualified staff, who have received training overseas. These professionals possess the expertise to administer vaccines effectively and efficiently, providing exceptional care to the animals. The investment in their education and training reflects Farmchemie\'s commitment to delivering superior services.[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_single_image image=\"3009\" img_size=\"full\" css_animation=\"fadeInRightBig\"][/vc_column_inner][/vc_row_inner][vc_row_inner content_placement=\"middle\" css=\".vc_custom_1692423068642{border-top-width: 1px !important;border-top-color: #079547 !important;border-top-style: solid !important;border-radius: 1px !important;}\"][vc_column_inner width=\"1/3\"][vc_single_image image=\"3010\" img_size=\"full\" css_animation=\"fadeInLeftBig\"][/vc_column_inner][vc_column_inner width=\"2/3\"][vc_column_text css_animation=\"fadeInRightBig\"]The accuracy and the quality of the vaccination is always highly concerned and that is monitored by regular audits which supervised by the CEVA and for each vaccination audit report can be shared to the customer which leads them to get better understanding about the vaccination proces and administration[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_row_inner content_placement=\"middle\" css=\".vc_custom_1692423075811{border-top-width: 1px !important;border-top-color: #079547 !important;border-top-style: solid !important;border-radius: 1px !important;}\"][vc_column_inner width=\"2/3\"][vc_column_text css_animation=\"fadeInLeftBig\"]The impact of Farmchemie\'s vaccination services on poultry farmers has been substantial. By eliminating the burden of individual vaccinations, farmers can allocate their time and resources to other essential aspects of poultry farming. The accuracy of vaccine delivery, coupled with stringent cold chain management practices, has led to increased customer satisfaction and improved overall poultry health outcomes.[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_single_image image=\"3011\" img_size=\"full\" css_animation=\"fadeInRightBig\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row css=\".vc_custom_1691129087062{border-top-width: 1px !important;border-top-color: #079547 !important;border-top-style: solid !important;border-radius: 1px !important;}\"][vc_column][vc_column_text]Farmchemie\'s pioneering role in the industry has revolutionized poultry farming in Sri Lanka. Through advanced vaccination techniques, quality assurance, and well-trained staff, the company has overcome the limitations of conventional procedures. By consistently innovating and prioritizing customer satisfaction, Farmchemie continues to shape and improve the health and welfare of poultry in the country.[/vc_column_text][/vc_column][/vc_row]','Vaccination Service','','publish','closed','closed','','vaccination-service','','','2023-08-31 07:54:09','2023-08-31 07:54:09','',0,'https://farmchemie.yasithawd.com/?page_id=2996',0,'page','',0),(2400,1,'2022-08-29 06:07:22','2022-08-29 06:07:22','','gif-logo5','','inherit','open','closed','','gif-logo5','','','2022-08-29 06:07:22','2022-08-29 06:07:22','',0,'https://farmchemie.yasithawd.com/wp-content/uploads/2022/08/gif-logo5.gif',0,'attachment','image/gif',0),(2403,1,'2022-08-29 10:02:53','2022-08-29 10:02:53','','HeaderImage3','','inherit','open','closed','','headerimage3','','','2022-08-29 10:02:53','2022-08-29 10:02:53','',0,'https://farmchemie.yasithawd.com/wp-content/uploads/2022/08/HeaderImage3.png',0,'attachment','image/png',0),(2404,1,'2022-08-30 05:55:26','2022-08-30 05:55:26','','WhatsApp Image 2022-08-30 at 10.20.51 AM','','inherit','open','closed','','whatsapp-image-2022-08-30-at-10-20-51-am','','','2022-08-30 05:55:26','2022-08-30 05:55:26','',0,'https://farmchemie.yasithawd.com/wp-content/uploads/2022/08/WhatsApp-Image-2022-08-30-at-10.20.51-AM.jpeg',0,'attachment','image/jpeg',0),(2530,1,'2022-09-05 07:59:07','2022-09-05 07:59:07','[vc_row full_width=\"stretch_row_content_no_spaces\" bg_type=\"image\" parallax_style=\"vcpb-default\" bg_image_new=\"id^2524|url^https://farmchemie.yasithawd.com/wp-content/uploads/2022/09/marketbgimg1.png|caption^null|alt^null|title^marketbgimg1|description^null\" bg_image_repeat=\"no-repeat\"][vc_column][ultimate_heading main_heading=\"Select your market/region\" heading_tag=\"h1\" main_heading_color=\"#8224e3\" main_heading_style=\"font-weight:bold;\"][/ultimate_heading][vc_empty_space height=\"300px\" css=\".vc_custom_1662363666143{background-image: url(https://farmchemie.yasithawd.com/wp-content/uploads/2022/09/marketbgimg1-sp.png?id=2527) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\"][vc_row_inner][vc_column_inner el_class=\"cborder1\" width=\"1/4\" css=\".vc_custom_1662364706142{background-color: #8224e3 !important;}\"][/vc_column_inner][vc_column_inner width=\"2/4\"][/vc_column_inner][vc_column_inner width=\"1/4\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row]','Home2','','inherit','closed','closed','','2525-revision-v1','','','2022-09-05 07:59:07','2022-09-05 07:59:07','',2525,'https://farmchemie.yasithawd.com/?p=2530',0,'revision','',0),(2410,1,'2022-08-30 07:11:33','2022-08-30 07:11:33','','WhatsApp Video 2022-08-30 at 12.37.02 PM','','inherit','open','closed','','whatsapp-video-2022-08-30-at-12-37-02-pm','','','2022-08-30 07:11:33','2022-08-30 07:11:33','',0,'https://farmchemie.yasithawd.com/wp-content/uploads/2022/08/WhatsApp-Video-2022-08-30-at-12.37.02-PM.mp4',0,'attachment','video/mp4',0),(2997,1,'2023-07-17 07:52:14','2023-07-17 07:52:14','[vc_row css=\".vc_custom_1689580294399{padding-top: 50px !important;padding-bottom: 50px !important;}\"][vc_column][vc_column_text]Farmchemie, established in 2014, has become the first animal health input supplier in Sri Lanka to offer vaccination services to poultry farmers. This innovative solution tackles the burden of individually vaccinating animals on farms and introduces advanced equipment for precise vaccine administration. By addressing the limitations of traditional vaccination methods, Farmchemie\'s services have gained popularity within a short period.\r\n\r\n&nbsp;\r\n\r\nFarmchemie\'s approach focuses on accurate vaccine delivery and robust cold chain management. The company regularly conducts audits to ensure the quality and integrity of vaccines. The maintenance of proper temperature and storage conditions guarantees vaccine potency and enhances their efficacy during administration.\r\n\r\n&nbsp;\r\n\r\nOne of the key strengths of Farmchemie is its team of highly qualified staff, who have received training overseas. These professionals possess the expertise to administer vaccines effectively and efficiently, providing exceptional care to the animals. The investment in their education and training reflects Farmchemie\'s commitment to delivering superior services.\r\n\r\n&nbsp;\r\n\r\nThe impact of Farmchemie\'s vaccination services on poultry farmers has been substantial. By eliminating the burden of individual vaccinations, farmers can allocate their time and resources to other essential aspects of poultry farming. The accuracy of vaccine delivery, coupled with stringent cold chain management practices, has led to increased customer satisfaction and improved overall poultry health outcomes.\r\n\r\n&nbsp;\r\n\r\nFarmchemie\'s pioneering role in the industry has revolutionized poultry farming in Sri Lanka. Through advanced vaccination techniques, quality assurance, and well-trained staff, the company has overcome the limitations of conventional procedures. By consistently innovating and prioritizing customer satisfaction, Farmchemie continues to shape and improve the health and welfare of poultry in the country.[/vc_column_text][/vc_column][/vc_row]','Vaccination Service','','inherit','closed','closed','','2996-revision-v1','','','2023-07-17 07:52:14','2023-07-17 07:52:14','',2996,'https://farmchemie.yasithawd.com/?p=2997',0,'revision','',0),(2998,1,'2023-07-17 07:55:01','2023-07-17 07:55:01','[vc_row css=\".vc_custom_1689580474694{padding-top: 50px !important;padding-bottom: 50px !important;}\"][vc_column][vc_column_text]Farmchemie is a leading provider of animal health inputs in Sri Lanka, known for its dedication to the farming community. The company\'s commitment extends beyond delivering high-quality products sourced from global industry leaders. Farmchemie\'s success lies in its highly demanded after-sales service and the emphasis it places on building and maintaining friendly relationships with customers. Additionally, the company organizes farmer meetings and technical seminars, collaborating with outsourced experts to educate and empower its clientele.\r\n\r\n&nbsp;\r\n\r\n[/vc_column_text][vc_row_inner][vc_column_inner width=\"1/2\"][vc_single_image image=\"3002\" img_size=\"full\"][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_single_image image=\"3003\" img_size=\"full\"][/vc_column_inner][/vc_row_inner][vc_column_text]Farmchemie ensures that Sri Lankan farmers have access to top-notch animal health inputs. By partnering with reputable global companies, the company guarantees the availability of superior products that enhance the health and well-being of livestock. This commitment to quality sets Farmchemie apart as a trusted supplier in the market.\r\n\r\n&nbsp;\r\n\r\nThe company\'s after-sales service is a key factor in its success. Farmchemie strives to build and maintain friendly relationships with its customers. Going beyond the initial sale, the company provides ongoing support, guidance, and troubleshooting to farmers. This personalized approach ensures that farmers receive the necessary assistance to optimize the care and management of their animals.\r\n\r\n&nbsp;\r\n\r\nIn addition to its customer-focused services, Farmchemie organizes farmer meetings and technical seminars. These collaborative events bring together industry experts and farmers, providing a platform for knowledge sharing and networking. By outsourcing expertise in the field, Farmchemie ensures that these programs are informative and relevant to its clientele. Through such initiatives, Farmchemie empowers farmers with the knowledge and resources they need to succeed in animal husbandry.\r\n\r\n&nbsp;\r\n\r\nIn conclusion, Farmchemie\'s dedication to supporting Sri Lankan farmers goes beyond delivering quality animal health inputs. Through its highly demanded after-sales service and educational initiatives, such as farmer meetings and technical seminars, Farmchemie fosters strong relationships with its customers and equips them with the knowledge and support required for successful farming practices.[/vc_column_text][/vc_column][/vc_row]','Farmer Training','','publish','closed','closed','','farmer-training','','','2023-08-19 05:36:23','2023-08-19 05:36:23','',0,'https://farmchemie.yasithawd.com/?page_id=2998',0,'page','',0),(2999,1,'2023-07-17 07:55:01','2023-07-17 07:55:01','[vc_row css=\".vc_custom_1689580474694{padding-top: 50px !important;padding-bottom: 50px !important;}\"][vc_column][vc_column_text]Farmchemie is a leading provider of animal health inputs in Sri Lanka, known for its dedication to the farming community. The company\'s commitment extends beyond delivering high-quality products sourced from global industry leaders. Farmchemie\'s success lies in its highly demanded after-sales service and the emphasis it places on building and maintaining friendly relationships with customers. Additionally, the company organizes farmer meetings and technical seminars, collaborating with outsourced experts to educate and empower its clientele.\r\n\r\n&nbsp;\r\n\r\nFarmchemie ensures that Sri Lankan farmers have access to top-notch animal health inputs. By partnering with reputable global companies, the company guarantees the availability of superior products that enhance the health and well-being of livestock. This commitment to quality sets Farmchemie apart as a trusted supplier in the market.\r\n\r\n&nbsp;\r\n\r\nThe company\'s after-sales service is a key factor in its success. Farmchemie strives to build and maintain friendly relationships with its customers. Going beyond the initial sale, the company provides ongoing support, guidance, and troubleshooting to farmers. This personalized approach ensures that farmers receive the necessary assistance to optimize the care and management of their animals.\r\n\r\n&nbsp;\r\n\r\nIn addition to its customer-focused services, Farmchemie organizes farmer meetings and technical seminars. These collaborative events bring together industry experts and farmers, providing a platform for knowledge sharing and networking. By outsourcing expertise in the field, Farmchemie ensures that these programs are informative and relevant to its clientele. Through such initiatives, Farmchemie empowers farmers with the knowledge and resources they need to succeed in animal husbandry.\r\n\r\n&nbsp;\r\n\r\nIn conclusion, Farmchemie\'s dedication to supporting Sri Lankan farmers goes beyond delivering quality animal health inputs. Through its highly demanded after-sales service and educational initiatives, such as farmer meetings and technical seminars, Farmchemie fosters strong relationships with its customers and equips them with the knowledge and support required for successful farming practices.[/vc_column_text][/vc_column][/vc_row]','Farmer Training','','inherit','closed','closed','','2998-revision-v1','','','2023-07-17 07:55:01','2023-07-17 07:55:01','',2998,'https://farmchemie.yasithawd.com/?p=2999',0,'revision','',0),(3015,1,'2023-08-04 06:29:41','2023-08-04 06:29:41','','labs1','','inherit','open','closed','','labs1','','','2023-08-04 06:29:41','2023-08-04 06:29:41','',2990,'https://farmchemie.yasithawd.com/wp-content/uploads/2023/08/labs1.jpg',0,'attachment','image/jpeg',0),(3016,1,'2023-08-04 06:30:11','2023-08-04 06:30:11','','labs2','','inherit','open','closed','','labs2','','','2023-08-04 06:30:11','2023-08-04 06:30:11','',2990,'https://farmchemie.yasithawd.com/wp-content/uploads/2023/08/labs2.jpg',0,'attachment','image/jpeg',0),(3017,1,'2023-08-04 06:30:52','2023-08-04 06:30:52','','labs3','','inherit','open','closed','','labs3','','','2023-08-04 06:30:52','2023-08-04 06:30:52','',2990,'https://farmchemie.yasithawd.com/wp-content/uploads/2023/08/labs3.jpg',0,'attachment','image/jpeg',0),(3018,1,'2023-08-04 06:31:32','2023-08-04 06:31:32','[vc_row css=\".vc_custom_1689579703311{padding-top: 50px !important;padding-bottom: 50px !important;}\"][vc_column][vc_column_text]Medivesta Laboratories (Pvt) Ltd. offers high quality analytical service in the field of Pharmaceutical, Food and Feed analysis. We specialize in analysis of Active pharmaceutical Ingredients, Vitamins, Amino acids, Mycotoxins and Microbiological analysis and so on.\r\nBy using the latest technologies, we are continuously expanding our range of analysis in industry. We are committed to provide you with Best service.[/vc_column_text][vc_row_inner][vc_column_inner width=\"1/3\"][vc_single_image image=\"3015\" img_size=\"full\"][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_single_image image=\"3016\" img_size=\"full\"][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_single_image image=\"3017\" img_size=\"full\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row css=\".vc_custom_1689579703311{padding-top: 50px !important;padding-bottom: 50px !important;}\"][vc_column][ultimate_heading main_heading=\"Contact us:\" heading_tag=\"h3\" main_heading_color=\"#079547\" alignment=\"left\"][/ultimate_heading][vc_row_inner css=\".vc_custom_1689579850874{margin-top: 35px !important;margin-bottom: 35px !important;}\"][vc_column_inner width=\"1/3\"][bsf-info-box icon_size=\"32\" title=\"Inquiries\"][/bsf-info-box][/vc_column_inner][vc_column_inner width=\"1/3\"][bsf-info-box icon_size=\"32\" title=\"Test Request form\"][/bsf-info-box][/vc_column_inner][vc_column_inner width=\"1/3\"][bsf-info-box icon_size=\"32\" title=\"Accreditation\"][/bsf-info-box][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row]','Medivesta Laboratories (Pvt) Ltd.','','inherit','closed','closed','','2990-revision-v1','','','2023-08-04 06:31:32','2023-08-04 06:31:32','',2990,'https://farmchemie.yasithawd.com/?p=3018',0,'revision','',0),(3019,1,'2023-08-10 04:48:08','0000-00-00 00:00:00','[vc_row][vc_column][product_category per_page=\"\" orderby=\"date\" order=\"ASC\" category=\"poultry\"][/vc_column][/vc_row]','Poultry','','draft','closed','closed','','','','','2023-08-10 04:48:08','2023-08-10 04:48:08','',0,'https://farmchemie.yasithawd.com/?page_id=3019',0,'page','',0),(3020,1,'2023-08-10 04:46:29','2023-08-10 04:46:29','','POULTRY','','inherit','open','closed','','poultry-2','','','2023-08-10 04:46:29','2023-08-10 04:46:29','',3019,'https://farmchemie.yasithawd.com/wp-content/uploads/2023/08/POULTRY.png',0,'attachment','image/png',0),(3021,1,'2023-08-10 04:47:51','2023-08-10 04:47:51','[vc_row][vc_column][product_category per_page=\"\" orderby=\"date\" order=\"ASC\" category=\"poultry\"][/vc_column][/vc_row]','Poultry','','inherit','closed','closed','','3019-revision-v1','','','2023-08-10 04:47:51','2023-08-10 04:47:51','',3019,'https://farmchemie.yasithawd.com/?p=3021',0,'revision','',0),(3027,1,'2023-08-11 01:54:25','2023-08-11 01:54:25','[vc_row full_width=\"stretch_row\"][vc_column][dt_products_masonry show_products=\"categories_products\" mode=\"grid\" bwb_columns=\"desktop:3|h_tablet:3|v_tablet:2|phone:1\" loading_mode=\"standard\" st_posts_per_page=\"9\" st_show_all_pages=\"y\" show_categories_filter=\"y\" product_rating=\"n\" category_ids=\"65\"][/vc_column][/vc_row]','Poultry','','publish','closed','closed','','poultry','','','2023-09-16 15:50:31','2023-09-16 15:50:31','',2655,'https://farmchemie.yasithawd.com/?page_id=3027',0,'page','',0),(3028,1,'2023-08-11 01:04:39','2023-08-11 01:04:39','[vc_row][vc_column][product_category per_page=\"12\" orderby=\"menu_order title\" order=\"ASC\" category=\"poultry\"][/vc_column][/vc_row]','Poultry','','inherit','closed','closed','','3027-revision-v1','','','2023-08-11 01:04:39','2023-08-11 01:04:39','',3027,'https://farmchemie.yasithawd.com/?p=3028',0,'revision','',0),(3029,1,'2023-08-11 01:52:27','2023-08-11 01:52:27','[vc_row][vc_column][product_category per_page=\"\" orderby=\"menu_order title\" order=\"ASC\" category=\"poultry\"][/vc_column][/vc_row]','Poultry','','inherit','closed','closed','','3027-revision-v1','','','2023-08-11 01:52:27','2023-08-11 01:52:27','',3027,'https://farmchemie.yasithawd.com/?p=3029',0,'revision','',0),(3030,1,'2023-08-11 01:53:32','2023-08-11 01:53:32','[vc_row][vc_column][product_category per_page=\"65\" orderby=\"date\" order=\"ASC\" category=\"poultry\"][/vc_column][/vc_row]','Poultry','','inherit','closed','closed','','3027-revision-v1','','','2023-08-11 01:53:32','2023-08-11 01:53:32','',3027,'https://farmchemie.yasithawd.com/?p=3030',0,'revision','',0),(3031,1,'2023-09-11 04:28:00','2023-09-11 04:28:00','<p>[vc_row full_width=\"stretch_row\"][vc_column][dt_products_masonry show_products=\"categories_products\" mode=\"grid\" bwb_columns=\"desktop:3|h_tablet:3|v_tablet:2|phone:1\" loading_mode=\"standard\" st_posts_per_page=\"9\" st_show_all_pages=\"y\" show_categories_filter=\"y\" product_rating=\"n\" category_ids=\"65\"][/vc_column][/vc_row]</p>\n','Poultry','','inherit','closed','closed','','3027-autosave-v1','','','2023-09-11 04:28:00','2023-09-11 04:28:00','',3027,'https://farmchemie.yasithawd.com/?p=3031',0,'revision','',0),(3032,1,'2023-08-11 02:03:41','2023-08-11 02:03:41','[vc_row][vc_column][dt_products_masonry show_products=\"categories_products\" bwb_columns=\"desktop:3|h_tablet:3|v_tablet:2|phone:1\" dis_posts_total=\"12\" show_categories_filter=\"y\" category_ids=\"63\"][/vc_column][/vc_row]','Dairy & Large Animals','','publish','closed','closed','','dairy-large-animals','','','2023-09-24 08:32:02','2023-09-24 08:32:02','',2655,'https://farmchemie.yasithawd.com/?page_id=3032',0,'page','',0),(3033,1,'2023-08-11 01:59:43','2023-08-11 01:59:43','[vc_row][vc_column][dt_products_masonry show_products=\"categories_products\" dis_posts_total=\"\" category_ids=\"63\"][/vc_column][/vc_row]','Dairy & Large Animals','','inherit','closed','closed','','3032-revision-v1','','','2023-08-11 01:59:43','2023-08-11 01:59:43','',3032,'https://farmchemie.yasithawd.com/?p=3033',0,'revision','',0),(3034,1,'2023-09-11 10:41:48','2023-08-11 02:00:23',' ','','','publish','closed','closed','','3034','','','2023-09-11 10:41:48','2023-09-11 10:41:48','',0,'https://farmchemie.yasithawd.com/?p=3034',5,'nav_menu_item','',0),(3036,1,'2023-08-11 02:01:56','2023-08-11 02:01:56','[vc_row][vc_column][dt_products_masonry show_products=\"categories_products\" mode=\"grid\" layout=\"btn_on_img_hover\" bwb_columns=\"desktop:3|h_tablet:3|v_tablet:2|phone:1\" dis_posts_total=\"\" category_ids=\"63\"][/vc_column][/vc_row]','Dairy & Large Animals','','inherit','closed','closed','','3032-revision-v1','','','2023-08-11 02:01:56','2023-08-11 02:01:56','',3032,'https://farmchemie.yasithawd.com/?p=3036',0,'revision','',0),(3037,1,'2023-08-11 02:03:41','2023-08-11 02:03:41','[vc_row][vc_column][dt_products_masonry show_products=\"categories_products\" mode=\"grid\" layout=\"btn_on_img_hover\" bwb_columns=\"desktop:3|h_tablet:3|v_tablet:2|phone:1\" loading_mode=\"js_lazy_loading\" product_rating=\"n\" category_ids=\"63\"][/vc_column][/vc_row]','Dairy & Large Animals','','inherit','closed','closed','','3032-revision-v1','','','2023-08-11 02:03:41','2023-08-11 02:03:41','',3032,'https://farmchemie.yasithawd.com/?p=3037',0,'revision','',0),(3038,1,'2023-09-11 10:41:48','2023-08-11 02:08:01',' ','','','publish','closed','closed','','3038','','','2023-09-11 10:41:48','2023-09-11 10:41:48','',0,'https://farmchemie.yasithawd.com/?p=3038',6,'nav_menu_item','',0),(3040,1,'2023-08-11 02:09:45','2023-08-11 02:09:45','','PET-CARE','','inherit','open','closed','','pet-care-2','','','2023-08-11 02:09:45','2023-08-11 02:09:45','',3039,'https://farmchemie.yasithawd.com/wp-content/uploads/2023/08/PET-CARE.png',0,'attachment','image/png',0),(3041,1,'2023-08-11 02:10:00','2023-08-11 02:10:00','[vc_row][vc_column][dt_products_masonry show_products=\"categories_products\" mode=\"grid\" layout=\"btn_on_img_hover\" bwb_columns=\"desktop:3|h_tablet:3|v_tablet:2|phone:1\" dis_posts_total=\"\" category_ids=\"64\"][/vc_column][/vc_row]','Pet Care','','inherit','closed','closed','','3039-revision-v1','','','2023-08-11 02:10:00','2023-08-11 02:10:00','',3039,'https://farmchemie.yasithawd.com/?p=3041',0,'revision','',0),(3042,1,'2023-09-11 10:41:48','2023-08-11 02:11:39',' ','','','publish','closed','closed','','3042','','','2023-09-11 10:41:48','2023-09-11 10:41:48','',0,'https://farmchemie.yasithawd.com/?p=3042',7,'nav_menu_item','',0),(3044,1,'2023-08-11 02:40:45','2023-08-11 02:40:45','','2023-NEW-WEB-LOGO','','inherit','open','closed','','2023-new-web-logo','','','2023-08-11 02:40:45','2023-08-11 02:40:45','',0,'https://farmchemie.yasithawd.com/wp-content/uploads/2023/08/2023-NEW-WEB-LOGO.gif',0,'attachment','image/gif',0),(3045,1,'2023-08-11 02:59:59','2023-08-11 02:59:59','','Size-2023-NEW-WEB-LOGO','','inherit','open','closed','','size-2023-new-web-logo','','','2023-08-11 02:59:59','2023-08-11 02:59:59','',0,'https://farmchemie.yasithawd.com/wp-content/uploads/2023/08/Size-2023-NEW-WEB-LOGO.gif',0,'attachment','image/gif',0),(3046,1,'2023-08-11 08:53:30','2023-08-11 08:53:30','','PET-CARE-2','','inherit','open','closed','','pet-care-2-2','','','2023-08-11 08:53:30','2023-08-11 08:53:30','',3039,'https://farmchemie.yasithawd.com/wp-content/uploads/2023/08/PET-CARE-2.png',0,'attachment','image/png',0),(3047,1,'2023-08-11 08:54:10','2023-08-11 08:54:10','','LARGE-ANIMAL2','','inherit','open','closed','','large-animal2','','','2023-08-11 08:54:10','2023-08-11 08:54:10','',3032,'https://farmchemie.yasithawd.com/wp-content/uploads/2023/08/LARGE-ANIMAL2.png',0,'attachment','image/png',0),(3048,1,'2023-08-11 08:55:03','2023-08-11 08:55:03','','POULTRY-2','','inherit','open','closed','','poultry-2-2','','','2023-08-11 08:55:03','2023-08-11 08:55:03','',3027,'https://farmchemie.yasithawd.com/wp-content/uploads/2023/08/POULTRY-2.png',0,'attachment','image/png',0),(3049,1,'2023-08-11 09:33:36','2023-08-11 09:33:36','','POULTRY-2-1','','inherit','open','closed','','poultry-2-1','','','2023-08-11 09:33:36','2023-08-11 09:33:36','',3027,'https://farmchemie.yasithawd.com/wp-content/uploads/2023/08/POULTRY-2-1.png',0,'attachment','image/png',0),(3050,1,'2023-08-11 12:06:40','2023-08-11 12:06:40','','Dyvesta-Transparent','','inherit','open','closed','','dyvesta-transparent','','','2023-08-11 12:06:40','2023-08-11 12:06:40','',0,'https://farmchemie.yasithawd.com/wp-content/uploads/2023/08/Dyvesta-Transparent.png',0,'attachment','image/png',0),(3051,1,'2023-08-11 12:08:32','2023-08-11 12:08:32','','Dyvesta2','','inherit','open','closed','','dyvesta2','','','2023-08-11 12:08:32','2023-08-11 12:08:32','',0,'https://farmchemie.yasithawd.com/wp-content/uploads/2023/08/Dyvesta2.png',0,'attachment','image/png',0),(3687,1,'2023-09-14 13:49:10','2023-09-14 13:29:09',' ','','','publish','closed','closed','','3687','','','2023-09-14 13:49:10','2023-09-14 13:49:10','',0,'https://farmchemie.yasithawd.com/?p=3687',4,'nav_menu_item','',0),(3686,1,'2023-09-14 13:49:10','2023-09-14 13:29:09',' ','','','publish','closed','closed','','3686','','','2023-09-14 13:49:10','2023-09-14 13:49:10','',0,'https://farmchemie.yasithawd.com/?p=3686',5,'nav_menu_item','',0),(3053,1,'2023-08-11 12:59:45','2023-08-11 12:59:45','','favi-icom16x-1-1','','inherit','open','closed','','favi-icom16x-1-1','','','2023-08-11 12:59:45','2023-08-11 12:59:45','',0,'https://farmchemie.yasithawd.com/wp-content/uploads/2023/08/favi-icom16x-1-1.gif',0,'attachment','image/gif',0),(3054,1,'2023-08-11 13:00:18','2023-08-11 13:00:18','','favi-icom32x-1-1','','inherit','open','closed','','favi-icom32x-1-1','','','2023-08-11 13:00:18','2023-08-11 13:00:18','',0,'https://farmchemie.yasithawd.com/wp-content/uploads/2023/08/favi-icom32x-1-1.gif',0,'attachment','image/gif',0),(3055,1,'2023-08-11 13:52:10','2023-08-11 13:52:10','','552px x 130px','','inherit','open','closed','','552px-x-130px','','','2023-08-11 13:52:10','2023-08-11 13:52:10','',0,'https://farmchemie.yasithawd.com/wp-content/uploads/2023/08/552px-x-130px.gif',0,'attachment','image/gif',0),(3056,1,'2023-08-11 13:52:27','2023-08-11 13:52:27','','366px-100px','','inherit','open','closed','','366px-100px','','','2023-08-11 13:52:27','2023-08-11 13:52:27','',0,'https://farmchemie.yasithawd.com/wp-content/uploads/2023/08/366px-100px.gif',0,'attachment','image/gif',0),(3057,1,'2023-08-11 13:56:59','2023-08-11 13:56:59','','16x16-fvi1','','inherit','open','closed','','16x16-fvi1','','','2023-08-11 13:56:59','2023-08-11 13:56:59','',0,'https://farmchemie.yasithawd.com/wp-content/uploads/2023/08/16x16-fvi1.png',0,'attachment','image/png',0),(3058,1,'2023-08-11 13:57:17','2023-08-11 13:57:17','','32x32-fvi1','','inherit','open','closed','','32x32-fvi1','','','2023-08-11 13:57:17','2023-08-11 13:57:17','',0,'https://farmchemie.yasithawd.com/wp-content/uploads/2023/08/32x32-fvi1.png',0,'attachment','image/png',0),(3059,1,'2023-08-12 06:03:00','2023-08-12 06:03:00','','favicon-32x32','','inherit','open','closed','','favicon-32x32','','','2023-08-12 06:03:00','2023-08-12 06:03:00','',0,'https://farmchemie.yasithawd.com/wp-content/uploads/2023/08/favicon-32x32-1.png',0,'attachment','image/png',0),(3060,1,'2023-08-12 07:41:17','2023-08-12 07:41:17','[vc_row full_width=\"stretch_row\" css=\".vc_custom_1689577528817{padding-bottom: 50px !important;}\"][vc_column css=\".vc_custom_1689577454678{margin-bottom: 50px !important;}\"][vc_row_inner css=\".vc_custom_1689577559805{border-bottom-width: 1px !important;padding-top: 35px !important;padding-bottom: 35px !important;border-bottom-color: #079547 !important;border-bottom-style: solid !important;border-radius: 1px !important;}\"][vc_column_inner width=\"2/3\"][ultimate_heading main_heading=\"Feed Additives\" heading_tag=\"h3\" main_heading_color=\"#079547\" sub_heading_color=\"#792c8a\" alignment=\"left\"]<strong>Premixes/ Specialty Feed Additives/ Dilution of Active Ingredients/ Concentrates</strong><strong>\r\n</strong>Pack sizes – 1,000 kg, 500 kg, 50 kg, 25 kg, 15 kg, 10 kg, 5 kg, 1kg[/ultimate_heading][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_single_image][/vc_column_inner][/vc_row_inner][vc_row_inner css=\".vc_custom_1689577609020{border-bottom-width: 1px !important;padding-top: 35px !important;padding-bottom: 35px !important;border-bottom-color: #079547 !important;border-bottom-style: solid !important;border-radius: 1px !important;}\"][vc_column_inner width=\"1/3\"][vc_single_image][/vc_column_inner][vc_column_inner width=\"2/3\"][ultimate_heading main_heading=\"Oral Supplements\" heading_tag=\"h3\" main_heading_color=\"#079547\" sub_heading_color=\"#792c8a\" alignment=\"left\"]<strong>Liquids</strong><strong>\r\n</strong>Pack sizes – 1,000 L, 250 L, 50 L, 25 L, 5 L, 1 L, 500 mL, 250 mL, 100 mL, 50 mL\r\n\r\n<strong>Water soluble powders</strong><strong>\r\n</strong>Pack sizes – 25 kg, 15 kg, 10 kg, 5 kg, 1kg[/ultimate_heading][/vc_column_inner][/vc_row_inner][vc_row_inner css=\".vc_custom_1689577609020{border-bottom-width: 1px !important;padding-top: 35px !important;padding-bottom: 35px !important;border-bottom-color: #079547 !important;border-bottom-style: solid !important;border-radius: 1px !important;}\"][vc_column_inner width=\"2/3\"][ultimate_heading main_heading=\"Tablets\" heading_tag=\"h3\" main_heading_color=\"#079547\" sub_heading_color=\"#792c8a\" alignment=\"left\"]<strong>Supplementary tablets for pet care</strong>\r\nTablet sizes – 1 to 5 g\r\n\r\n<strong>Boluses</strong><strong>\r\n</strong>Tablet sizes – 5 to 25 g[/ultimate_heading][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_single_image][/vc_column_inner][/vc_row_inner][vc_row_inner css=\".vc_custom_1689577609020{border-bottom-width: 1px !important;padding-top: 35px !important;padding-bottom: 35px !important;border-bottom-color: #079547 !important;border-bottom-style: solid !important;border-radius: 1px !important;}\"][vc_column_inner width=\"1/3\"][vc_single_image][/vc_column_inner][vc_column_inner width=\"2/3\"][ultimate_heading main_heading=\"Veterinary Pharmaceuticals\" heading_tag=\"h3\" main_heading_color=\"#079547\" sub_heading_color=\"#792c8a\" alignment=\"left\"]<strong>Deworming Solutions/ Antibiotics/ Antimicrobials/ Wound care solutions</strong><strong>\r\n</strong>Form – Liquid, WSP[/ultimate_heading][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row css=\".vc_custom_1689578783264{padding-top: 50px !important;padding-bottom: 50px !important;}\"][vc_column][ultimate_heading main_heading=\"Our manufacturing facility is certified with FAMI-QS, WHO GMP &amp; ISO 9001:2015 International Quality standards.\" main_heading_color=\"#079547\" sub_heading_color=\"#792c8a\" alignment=\"left\"]We select only the <strong><em>best</em></strong> and <strong><em>most reputed</em></strong> Raw Material &amp; Packing Material Suppliers for the production of our finished goods.[/ultimate_heading][vc_single_image image=\"3043\" img_size=\"full\" alignment=\"center\"][vc_row_inner disable_element=\"yes\"][vc_column_inner width=\"1/3\"][vc_single_image image=\"2981\" img_size=\"full\"][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_single_image image=\"2982\" img_size=\"full\"][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_single_image image=\"2983\" img_size=\"full\"][/vc_column_inner][/vc_row_inner][vc_row_inner disable_element=\"yes\"][vc_column_inner width=\"1/6\"][/vc_column_inner][vc_column_inner width=\"2/3\"][vc_single_image image=\"2984\" img_size=\"full\"][/vc_column_inner][vc_column_inner width=\"1/6\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row css=\".vc_custom_1689578794814{padding-top: 50px !important;padding-bottom: 50px !important;}\"][vc_column][ultimate_heading main_heading=\"Supplier selection and procurement criteria\" main_heading_color=\"#079547\" sub_heading_color=\"#792c8a\" alignment=\"left\"][/ultimate_heading][vc_row_inner css=\".vc_custom_1689578812611{margin-top: 50px !important;}\"][vc_column_inner width=\"1/2\"][dt_vc_list dividers=\"false\"]\r\n<ul>\r\n 	<li>Check supplier’s quality certification to ensure raw material quality</li>\r\n 	<li>New vendor validation protocol - In case of a change in the supplier, obtain samples and validate in the lab</li>\r\n</ul>\r\n[/dt_vc_list][/vc_column_inner][vc_column_inner width=\"1/2\"][dt_vc_list dividers=\"false\"]\r\n<ul>\r\n 	<li>Income inspection carried out on every consignment (Tested for Chemical Assay &amp; Physical Properties)</li>\r\n 	<li>Quality department approval required to be used in the production</li>\r\n</ul>\r\n[/dt_vc_list][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row css=\".vc_custom_1689578794814{padding-top: 50px !important;padding-bottom: 50px !important;}\"][vc_column][ultimate_heading main_heading=\"Please contact us to start your Marketing Journey with a reliable manufacturing partnership with FARMCHEMIE\" heading_tag=\"h3\" main_heading_color=\"#079547\" sub_heading_color=\"#792c8a\" alignment=\"left\"][/ultimate_heading][vc_row_inner css=\".vc_custom_1689578812611{margin-top: 50px !important;}\"][vc_column_inner width=\"1/2\"][bsf-info-box icon_size=\"32\" title=\"International Markets\" pos=\"square_box\" box_border_style=\"solid\" box_border_width=\"1\" box_border_color=\"#792c8a\" title_font_color=\"#079547\" desc_font_color=\"#792c8a\" title_font_size=\"desktop:25px;\"]<strong>Email :</strong> <a href=\"mailto:sales.export@farmchemie.com\"><u>sales.export@farmchemie.com</u></a>\r\n<strong>Tel No :</strong> + 94 76 577 2975[/bsf-info-box][/vc_column_inner][vc_column_inner width=\"1/2\"][bsf-info-box icon_size=\"32\" title=\"Sri Lankan Market\" pos=\"square_box\" box_border_style=\"solid\" box_border_width=\"1\" box_border_color=\"#079547\" title_font_color=\"#079547\" desc_font_color=\"#792c8a\" title_font_size=\"desktop:25px;\"]Email : <a href=\"mailto:sales.local@farmchemie.com\"><u>sales.local@farmchemie.com</u></a>\r\nTel No : +94 74 224 6947[/bsf-info-box][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row]','Manufacturing','','inherit','closed','closed','','2964-revision-v1','','','2023-08-12 07:41:17','2023-08-12 07:41:17','',2964,'https://farmchemie.yasithawd.com/?p=3060',0,'revision','',0),(2411,1,'2022-08-30 07:15:37','2022-08-30 07:15:37','','WhatsApp-Video-2022-08-30-at-12_8.jpeg','','inherit','closed','closed','','whatsapp-video-2022-08-30-at-12-8-jpeg','','','2022-08-30 07:15:37','2022-08-30 07:15:37','',0,'https://farmchemie.yasithawd.com/wp-content/uploads/revslider/video-media/WhatsApp-Video-2022-08-30-at-12_8.jpeg',0,'attachment','image/jpeg',0),(2417,1,'2023-09-11 10:41:48','2022-08-30 07:57:50','','Services','','publish','closed','closed','','services','','','2023-09-11 10:41:48','2023-09-11 10:41:48','',0,'https://farmchemie.yasithawd.com/?p=2417',10,'nav_menu_item','',0),(2418,1,'2023-09-11 10:41:48','2022-08-30 07:57:50','','Analytical Laboratories','','publish','closed','closed','','toll-manufacturing','','','2023-09-11 10:41:48','2023-09-11 10:41:48','',0,'https://farmchemie.yasithawd.com/?p=2418',11,'nav_menu_item','',0),(2419,1,'2023-09-11 10:41:48','2022-08-30 07:57:50','','Technical consultation','','publish','closed','closed','','technical-consultation','','','2023-09-11 10:41:48','2023-09-11 10:41:48','',0,'https://farmchemie.yasithawd.com/?p=2419',12,'nav_menu_item','',0),(2420,1,'2023-09-11 10:41:48','2022-08-30 07:57:50','','Farmer Training','','publish','closed','closed','','farmer-training','','','2023-09-11 10:41:48','2023-09-11 10:41:48','',0,'https://farmchemie.yasithawd.com/?p=2420',13,'nav_menu_item','',0),(2421,1,'2023-09-11 10:41:48','2022-08-30 07:57:50','','Poultry Vaccination services','','publish','closed','closed','','poultry-vaccination-services','','','2023-09-11 10:41:48','2023-09-11 10:41:48','',0,'https://farmchemie.yasithawd.com/?p=2421',14,'nav_menu_item','',0),(2422,1,'2023-09-11 10:41:48','2022-08-30 07:57:49','','About Us','','publish','closed','closed','','about-us','','','2023-09-11 10:41:48','2023-09-11 10:41:48','',0,'https://farmchemie.yasithawd.com/?p=2422',2,'nav_menu_item','',0),(3105,1,'2023-08-14 03:31:17','2023-08-14 03:31:17','','ABOUT-US','','inherit','open','closed','','about-us-3','','','2023-08-14 03:31:17','2023-08-14 03:31:17','',2917,'https://farmchemie.yasithawd.com/wp-content/uploads/2023/08/ABOUT-US.png',0,'attachment','image/png',0),(3035,1,'2023-08-11 02:01:04','2023-08-11 02:01:04','','LARGE-ANIMAL','','inherit','open','closed','','large-animal','','','2023-08-11 02:01:04','2023-08-11 02:01:04','',3032,'https://farmchemie.yasithawd.com/wp-content/uploads/2023/08/LARGE-ANIMAL.png',0,'attachment','image/png',0),(3039,1,'2023-08-11 02:10:00','2023-08-11 02:10:00','[vc_row disable_element=\"yes\"][vc_column][ult_tab_element tab_style=\"Style_4\" tab_animation=\"Fade\" tab_title_color=\"#ffffff\" tab_background_color=\"#039447\" tab_hover_title_color=\"#ffffff\" tab_hover_background_color=\"#853497\" acttab_title=\"#ffffff\" acttab_background=\"#853497\" disp_icon=\"Disables\"][single_tab title=\"All\" tab_id=\"1692579230326-8\"][dt_products_masonry show_products=\"categories_products\" mode=\"grid\" layout=\"btn_on_img_hover\" bwb_columns=\"desktop:3|h_tablet:3|v_tablet:2|phone:1\" dis_posts_total=\"\" category_ids=\"64\"][/single_tab][single_tab title=\"Cat\" tab_id=\"1692579230334-3\"][dt_products_masonry show_products=\"categories_products\" mode=\"grid\" layout=\"btn_on_img_hover\" bwb_columns=\"desktop:3|h_tablet:3|v_tablet:2|phone:1\" dis_posts_total=\"\" category_ids=\"114\"][/single_tab][single_tab title=\"Dog\" tab_id=\"1692579268639-2-10\"][dt_products_masonry show_products=\"categories_products\" mode=\"grid\" layout=\"btn_on_img_hover\" bwb_columns=\"desktop:3|h_tablet:3|v_tablet:2|phone:1\" dis_posts_total=\"\" category_ids=\"102\"][/single_tab][single_tab title=\"Exotic Birds\" tab_id=\"1692579279159-3-2\"][dt_products_masonry show_products=\"categories_products\" mode=\"grid\" layout=\"btn_on_img_hover\" bwb_columns=\"desktop:3|h_tablet:3|v_tablet:2|phone:1\" dis_posts_total=\"\" category_ids=\"121\"][/single_tab][/ult_tab_element][/vc_column][/vc_row][vc_row][vc_column][dt_products_masonry show_products=\"categories_products\" mode=\"grid\" bwb_columns=\"desktop:3|h_tablet:3|v_tablet:2|phone:1\" loading_mode=\"standard\" st_posts_per_page=\"9\" st_show_all_pages=\"y\" category_ids=\"64\"][/vc_column][/vc_row]','Pet Care','','publish','closed','closed','','pet-care','','','2023-09-18 09:02:15','2023-09-18 09:02:15','',2655,'https://farmchemie.yasithawd.com/?page_id=3039',0,'page','',0),(3043,1,'2023-08-11 02:26:43','2023-08-11 02:26:43','','FCML-SUPPLIERS-LOGOS','','inherit','open','closed','','fcml-suppliers-logos','','','2023-08-11 02:26:43','2023-08-11 02:26:43','',2964,'https://farmchemie.yasithawd.com/wp-content/uploads/2023/08/FCML-SUPPLIERS-LOGOS.png',0,'attachment','image/png',0),(2428,1,'2022-08-30 08:08:51','2022-08-30 08:08:51','','WhatsApp Video 2022-08-30 at 1.30.14 PM','','inherit','open','closed','','whatsapp-video-2022-08-30-at-1-30-14-pm','','','2022-08-30 08:08:51','2022-08-30 08:08:51','',0,'https://farmchemie.yasithawd.com/wp-content/uploads/2022/08/WhatsApp-Video-2022-08-30-at-1.30.14-PM.mp4',0,'attachment','video/mp4',0),(2429,1,'2022-08-30 08:13:25','2022-08-30 08:13:25','','WhatsApp-Video-2022-08-30-at-1_8.jpeg','','inherit','closed','closed','','whatsapp-video-2022-08-30-at-1-8-jpeg','','','2022-08-30 08:13:25','2022-08-30 08:13:25','',0,'https://farmchemie.yasithawd.com/wp-content/uploads/revslider/video-media/WhatsApp-Video-2022-08-30-at-1_8.jpeg',0,'attachment','image/jpeg',0),(2430,1,'2022-08-30 08:15:33','2022-08-30 08:15:33','','WhatsApp Image 2022-08-30 at 12.36.46 PM','','inherit','open','closed','','whatsapp-image-2022-08-30-at-12-36-46-pm','','','2022-08-30 08:15:33','2022-08-30 08:15:33','',0,'https://farmchemie.yasithawd.com/wp-content/uploads/2022/08/WhatsApp-Image-2022-08-30-at-12.36.46-PM.jpeg',0,'attachment','image/jpeg',0),(3061,1,'2023-08-12 10:30:06','2023-08-12 10:30:06','','Bottom-Groups-Logo','','inherit','open','closed','','bottom-groups-logo','','','2023-08-12 10:30:06','2023-08-12 10:30:06','',0,'https://farmchemie.yasithawd.com/wp-content/uploads/2023/08/Bottom-Groups-Logo.png',0,'attachment','image/png',0),(3062,1,'2023-08-12 11:17:58','2023-08-12 11:17:58','','Adisseo','','inherit','open','closed','','adisseo-2','','','2023-08-12 11:17:58','2023-08-12 11:17:58','',2964,'https://farmchemie.yasithawd.com/wp-content/uploads/2023/08/Adisseo.png',0,'attachment','image/png',0),(3063,1,'2023-08-12 11:18:24','2023-08-12 11:18:24','','Basf','','inherit','open','closed','','basf','','','2023-08-12 11:18:24','2023-08-12 11:18:24','',2964,'https://farmchemie.yasithawd.com/wp-content/uploads/2023/08/Basf.png',0,'attachment','image/png',0),(3064,1,'2023-08-12 11:18:59','2023-08-12 11:18:59','','pancosma','','inherit','open','closed','','pancosma','','','2023-08-12 11:18:59','2023-08-12 11:18:59','',2964,'https://farmchemie.yasithawd.com/wp-content/uploads/2023/08/pancosma.png',0,'attachment','image/png',0),(3065,1,'2023-08-12 11:19:37','2023-08-12 11:19:37','','Livisto','','inherit','open','closed','','livisto-3','','','2023-08-12 11:19:37','2023-08-12 11:19:37','',2964,'https://farmchemie.yasithawd.com/wp-content/uploads/2023/08/Livisto.png',0,'attachment','image/png',0),(3066,1,'2023-08-12 11:20:09','2023-08-12 11:20:09','','Huvepharma','','inherit','open','closed','','huvepharma-3','','','2023-08-12 11:20:09','2023-08-12 11:20:09','',2964,'https://farmchemie.yasithawd.com/wp-content/uploads/2023/08/Huvepharma.png',0,'attachment','image/png',0),(3067,1,'2023-08-12 11:20:37','2023-08-12 11:20:37','','LOGOS-s','','inherit','open','closed','','logos-s','','','2023-08-12 11:20:37','2023-08-12 11:20:37','',2964,'https://farmchemie.yasithawd.com/wp-content/uploads/2023/08/LOGOS-s.png',0,'attachment','image/png',0),(3068,1,'2023-08-12 11:21:02','2023-08-12 11:21:02','','Tolsa','','inherit','open','closed','','tolsa','','','2023-08-12 11:21:02','2023-08-12 11:21:02','',2964,'https://farmchemie.yasithawd.com/wp-content/uploads/2023/08/Tolsa.png',0,'attachment','image/png',0),(3069,1,'2023-08-12 11:21:29','2023-08-12 11:21:29','','amoros','','inherit','open','closed','','amoros','','','2023-08-12 11:21:29','2023-08-12 11:21:29','',2964,'https://farmchemie.yasithawd.com/wp-content/uploads/2023/08/amoros.png',0,'attachment','image/png',0),(3070,1,'2023-08-12 11:21:52','2023-08-12 11:21:52','','Pootershaven','','inherit','open','closed','','pootershaven','','','2023-08-12 11:21:52','2023-08-12 11:21:52','',2964,'https://farmchemie.yasithawd.com/wp-content/uploads/2023/08/Pootershaven.png',0,'attachment','image/png',0),(3071,1,'2023-08-12 11:25:21','2023-08-12 11:25:21','[vc_row full_width=\"stretch_row\" css=\".vc_custom_1689577528817{padding-bottom: 50px !important;}\"][vc_column css=\".vc_custom_1689577454678{margin-bottom: 50px !important;}\"][vc_row_inner css=\".vc_custom_1689577559805{border-bottom-width: 1px !important;padding-top: 35px !important;padding-bottom: 35px !important;border-bottom-color: #079547 !important;border-bottom-style: solid !important;border-radius: 1px !important;}\"][vc_column_inner width=\"2/3\"][ultimate_heading main_heading=\"Feed Additives\" heading_tag=\"h3\" main_heading_color=\"#079547\" sub_heading_color=\"#792c8a\" alignment=\"left\"]<strong>Premixes/ Specialty Feed Additives/ Dilution of Active Ingredients/ Concentrates</strong><strong>\r\n</strong>Pack sizes – 1,000 kg, 500 kg, 50 kg, 25 kg, 15 kg, 10 kg, 5 kg, 1kg[/ultimate_heading][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_single_image][/vc_column_inner][/vc_row_inner][vc_row_inner css=\".vc_custom_1689577609020{border-bottom-width: 1px !important;padding-top: 35px !important;padding-bottom: 35px !important;border-bottom-color: #079547 !important;border-bottom-style: solid !important;border-radius: 1px !important;}\"][vc_column_inner width=\"1/3\"][vc_single_image][/vc_column_inner][vc_column_inner width=\"2/3\"][ultimate_heading main_heading=\"Oral Supplements\" heading_tag=\"h3\" main_heading_color=\"#079547\" sub_heading_color=\"#792c8a\" alignment=\"left\"]<strong>Liquids</strong><strong>\r\n</strong>Pack sizes – 1,000 L, 250 L, 50 L, 25 L, 5 L, 1 L, 500 mL, 250 mL, 100 mL, 50 mL\r\n\r\n<strong>Water soluble powders</strong><strong>\r\n</strong>Pack sizes – 25 kg, 15 kg, 10 kg, 5 kg, 1kg[/ultimate_heading][/vc_column_inner][/vc_row_inner][vc_row_inner css=\".vc_custom_1689577609020{border-bottom-width: 1px !important;padding-top: 35px !important;padding-bottom: 35px !important;border-bottom-color: #079547 !important;border-bottom-style: solid !important;border-radius: 1px !important;}\"][vc_column_inner width=\"2/3\"][ultimate_heading main_heading=\"Tablets\" heading_tag=\"h3\" main_heading_color=\"#079547\" sub_heading_color=\"#792c8a\" alignment=\"left\"]<strong>Supplementary tablets for pet care</strong>\r\nTablet sizes – 1 to 5 g\r\n\r\n<strong>Boluses</strong><strong>\r\n</strong>Tablet sizes – 5 to 25 g[/ultimate_heading][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_single_image][/vc_column_inner][/vc_row_inner][vc_row_inner css=\".vc_custom_1689577609020{border-bottom-width: 1px !important;padding-top: 35px !important;padding-bottom: 35px !important;border-bottom-color: #079547 !important;border-bottom-style: solid !important;border-radius: 1px !important;}\"][vc_column_inner width=\"1/3\"][vc_single_image][/vc_column_inner][vc_column_inner width=\"2/3\"][ultimate_heading main_heading=\"Veterinary Pharmaceuticals\" heading_tag=\"h3\" main_heading_color=\"#079547\" sub_heading_color=\"#792c8a\" alignment=\"left\"]<strong>Deworming Solutions/ Antibiotics/ Antimicrobials/ Wound care solutions</strong><strong>\r\n</strong>Form – Liquid, WSP[/ultimate_heading][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row css=\".vc_custom_1689578783264{padding-top: 50px !important;padding-bottom: 50px !important;}\"][vc_column][ultimate_heading main_heading=\"Our manufacturing facility is certified with FAMI-QS, WHO GMP &amp; ISO 9001:2015 International Quality standards.\" main_heading_color=\"#079547\" sub_heading_color=\"#792c8a\" alignment=\"left\"]We select only the <strong><em>best</em></strong> and <strong><em>most reputed</em></strong> Raw Material &amp; Packing Material Suppliers for the production of our finished goods.[/ultimate_heading][vc_row_inner equal_height=\"yes\" content_placement=\"middle\"][vc_column_inner width=\"1/5\"][vc_single_image image=\"3062\" img_size=\"full\" alignment=\"center\"][/vc_column_inner][vc_column_inner width=\"1/5\" css=\".vc_custom_1691838795894{border-right-width: 1px !important;border-left-width: 1px !important;border-left-color: #000000 !important;border-left-style: solid !important;border-right-color: #000000 !important;border-right-style: solid !important;border-radius: 1px !important;}\"][vc_single_image image=\"3063\" img_size=\"full\" alignment=\"center\"][/vc_column_inner][vc_column_inner width=\"1/5\"][vc_single_image image=\"3064\" img_size=\"full\" alignment=\"center\"][/vc_column_inner][vc_column_inner width=\"1/5\" css=\".vc_custom_1691838828613{border-right-width: 1px !important;border-left-width: 1px !important;border-left-color: #000000 !important;border-left-style: solid !important;border-right-color: #000000 !important;border-right-style: solid !important;border-radius: 1px !important;}\"][vc_single_image image=\"3065\" img_size=\"full\" alignment=\"center\"][/vc_column_inner][vc_column_inner width=\"1/5\"][vc_single_image image=\"3066\" img_size=\"full\" alignment=\"center\"][/vc_column_inner][/vc_row_inner][vc_row_inner equal_height=\"yes\" content_placement=\"middle\"][vc_column_inner width=\"1/4\" css=\".vc_custom_1691839418900{border-right-width: 1px !important;border-right-color: #000000 !important;border-right-style: solid !important;border-radius: 1px !important;}\"][vc_single_image image=\"3067\" img_size=\"full\" alignment=\"center\"][/vc_column_inner][vc_column_inner width=\"1/4\" css=\".vc_custom_1691839434460{border-right-width: 1px !important;border-right-color: #000000 !important;border-right-style: solid !important;border-radius: 1px !important;}\"][vc_single_image image=\"3068\" img_size=\"full\" alignment=\"center\"][/vc_column_inner][vc_column_inner width=\"1/4\" css=\".vc_custom_1691839449068{border-right-width: 1px !important;border-right-color: #000000 !important;border-right-style: solid !important;border-radius: 1px !important;}\"][vc_single_image image=\"3069\" img_size=\"full\" alignment=\"center\"][/vc_column_inner][vc_column_inner width=\"1/4\"][vc_single_image image=\"3070\" img_size=\"full\" alignment=\"center\"][/vc_column_inner][/vc_row_inner][vc_row_inner disable_element=\"yes\"][vc_column_inner width=\"1/3\"][vc_single_image image=\"2981\" img_size=\"full\"][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_single_image image=\"2982\" img_size=\"full\"][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_single_image image=\"2983\" img_size=\"full\"][/vc_column_inner][/vc_row_inner][vc_row_inner disable_element=\"yes\"][vc_column_inner width=\"1/6\"][/vc_column_inner][vc_column_inner width=\"2/3\"][vc_single_image image=\"2984\" img_size=\"full\"][/vc_column_inner][vc_column_inner width=\"1/6\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row css=\".vc_custom_1689578794814{padding-top: 50px !important;padding-bottom: 50px !important;}\"][vc_column][ultimate_heading main_heading=\"Supplier selection and procurement criteria\" main_heading_color=\"#079547\" sub_heading_color=\"#792c8a\" alignment=\"left\"][/ultimate_heading][vc_row_inner css=\".vc_custom_1689578812611{margin-top: 50px !important;}\"][vc_column_inner width=\"1/2\"][dt_vc_list dividers=\"false\"]\r\n<ul>\r\n 	<li>Check supplier’s quality certification to ensure raw material quality</li>\r\n 	<li>New vendor validation protocol - In case of a change in the supplier, obtain samples and validate in the lab</li>\r\n</ul>\r\n[/dt_vc_list][/vc_column_inner][vc_column_inner width=\"1/2\"][dt_vc_list dividers=\"false\"]\r\n<ul>\r\n 	<li>Income inspection carried out on every consignment (Tested for Chemical Assay &amp; Physical Properties)</li>\r\n 	<li>Quality department approval required to be used in the production</li>\r\n</ul>\r\n[/dt_vc_list][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row css=\".vc_custom_1689578794814{padding-top: 50px !important;padding-bottom: 50px !important;}\"][vc_column][ultimate_heading main_heading=\"Please contact us to start your Marketing Journey with a reliable manufacturing partnership with FARMCHEMIE\" heading_tag=\"h3\" main_heading_color=\"#079547\" sub_heading_color=\"#792c8a\" alignment=\"left\"][/ultimate_heading][vc_row_inner css=\".vc_custom_1689578812611{margin-top: 50px !important;}\"][vc_column_inner width=\"1/2\"][bsf-info-box icon_size=\"32\" title=\"International Markets\" pos=\"square_box\" box_border_style=\"solid\" box_border_width=\"1\" box_border_color=\"#792c8a\" title_font_color=\"#079547\" desc_font_color=\"#792c8a\" title_font_size=\"desktop:25px;\"]<strong>Email :</strong> <a href=\"mailto:sales.export@farmchemie.com\"><u>sales.export@farmchemie.com</u></a>\r\n<strong>Tel No :</strong> + 94 76 577 2975[/bsf-info-box][/vc_column_inner][vc_column_inner width=\"1/2\"][bsf-info-box icon_size=\"32\" title=\"Sri Lankan Market\" pos=\"square_box\" box_border_style=\"solid\" box_border_width=\"1\" box_border_color=\"#079547\" title_font_color=\"#079547\" desc_font_color=\"#792c8a\" title_font_size=\"desktop:25px;\"]Email : <a href=\"mailto:sales.local@farmchemie.com\"><u>sales.local@farmchemie.com</u></a>\r\nTel No : +94 74 224 6947[/bsf-info-box][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row]','Manufacturing','','inherit','closed','closed','','2964-revision-v1','','','2023-08-12 11:25:21','2023-08-12 11:25:21','',2964,'https://farmchemie.yasithawd.com/?p=3071',0,'revision','',0),(2989,1,'2023-07-17 07:36:21','2023-07-17 07:36:21','[vc_row full_width=\"stretch_row\" css=\".vc_custom_1689577528817{padding-bottom: 50px !important;}\"][vc_column css=\".vc_custom_1689577454678{margin-bottom: 50px !important;}\"][vc_row_inner css=\".vc_custom_1689577559805{border-bottom-width: 1px !important;padding-top: 35px !important;padding-bottom: 35px !important;border-bottom-color: #079547 !important;border-bottom-style: solid !important;border-radius: 1px !important;}\"][vc_column_inner width=\"2/3\"][ultimate_heading main_heading=\"Feed Additives\" heading_tag=\"h3\" main_heading_color=\"#079547\" sub_heading_color=\"#792c8a\" alignment=\"left\"]<strong>Premixes/ Specialty Feed Additives/ Dilution of Active Ingredients/ Concentrates</strong><strong>\r\n</strong>Pack sizes – 1,000 kg, 500 kg, 50 kg, 25 kg, 15 kg, 10 kg, 5 kg, 1kg[/ultimate_heading][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_single_image][/vc_column_inner][/vc_row_inner][vc_row_inner css=\".vc_custom_1689577609020{border-bottom-width: 1px !important;padding-top: 35px !important;padding-bottom: 35px !important;border-bottom-color: #079547 !important;border-bottom-style: solid !important;border-radius: 1px !important;}\"][vc_column_inner width=\"1/3\"][vc_single_image][/vc_column_inner][vc_column_inner width=\"2/3\"][ultimate_heading main_heading=\"Oral Supplements\" heading_tag=\"h3\" main_heading_color=\"#079547\" sub_heading_color=\"#792c8a\" alignment=\"left\"]<strong>Liquids</strong><strong>\r\n</strong>Pack sizes – 1,000 L, 250 L, 50 L, 25 L, 5 L, 1 L, 500 mL, 250 mL, 100 mL, 50 mL\r\n\r\n<strong>Water soluble powders</strong><strong>\r\n</strong>Pack sizes – 25 kg, 15 kg, 10 kg, 5 kg, 1kg[/ultimate_heading][/vc_column_inner][/vc_row_inner][vc_row_inner css=\".vc_custom_1689577609020{border-bottom-width: 1px !important;padding-top: 35px !important;padding-bottom: 35px !important;border-bottom-color: #079547 !important;border-bottom-style: solid !important;border-radius: 1px !important;}\"][vc_column_inner width=\"2/3\"][ultimate_heading main_heading=\"Tablets\" heading_tag=\"h3\" main_heading_color=\"#079547\" sub_heading_color=\"#792c8a\" alignment=\"left\"]<strong>Supplementary tablets for pet care</strong>\r\nTablet sizes – 1 to 5 g\r\n\r\n<strong>Boluses</strong><strong>\r\n</strong>Tablet sizes – 5 to 25 g[/ultimate_heading][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_single_image][/vc_column_inner][/vc_row_inner][vc_row_inner css=\".vc_custom_1689577609020{border-bottom-width: 1px !important;padding-top: 35px !important;padding-bottom: 35px !important;border-bottom-color: #079547 !important;border-bottom-style: solid !important;border-radius: 1px !important;}\"][vc_column_inner width=\"1/3\"][vc_single_image][/vc_column_inner][vc_column_inner width=\"2/3\"][ultimate_heading main_heading=\"Veterinary Pharmaceuticals\" heading_tag=\"h3\" main_heading_color=\"#079547\" sub_heading_color=\"#792c8a\" alignment=\"left\"]<strong>Deworming Solutions/ Antibiotics/ Antimicrobials/ Wound care solutions</strong><strong>\r\n</strong>Form – Liquid, WSP[/ultimate_heading][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row css=\".vc_custom_1689578783264{padding-top: 50px !important;padding-bottom: 50px !important;}\"][vc_column][ultimate_heading main_heading=\"Our manufacturing facility is certified with FAMI-QS, WHO GMP &amp; ISO 9001:2015 International Quality standards.\" main_heading_color=\"#079547\" sub_heading_color=\"#792c8a\" alignment=\"left\" margin_design_tab_text=\"\"]We select only the <strong><em>best</em></strong> and <strong><em>most reputed</em></strong> Raw Material &amp; Packing Material Suppliers for the production of our finished goods.[/ultimate_heading][vc_row_inner][vc_column_inner width=\"1/3\"][vc_single_image image=\"2981\" img_size=\"full\"][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_single_image image=\"2982\" img_size=\"full\"][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_single_image image=\"2983\" img_size=\"full\"][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner width=\"1/6\"][/vc_column_inner][vc_column_inner width=\"2/3\"][vc_single_image image=\"2984\" img_size=\"full\"][/vc_column_inner][vc_column_inner width=\"1/6\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row css=\".vc_custom_1689578794814{padding-top: 50px !important;padding-bottom: 50px !important;}\"][vc_column][ultimate_heading main_heading=\"Supplier selection and procurement criteria\" main_heading_color=\"#079547\" sub_heading_color=\"#792c8a\" alignment=\"left\" margin_design_tab_text=\"\"][/ultimate_heading][vc_row_inner css=\".vc_custom_1689578812611{margin-top: 50px !important;}\"][vc_column_inner width=\"1/2\"][dt_vc_list dividers=\"false\"]\r\n<ul>\r\n 	<li>Check supplier’s quality certification to ensure raw material quality</li>\r\n 	<li>New vendor validation protocol - In case of a change in the supplier, obtain samples and validate in the lab</li>\r\n</ul>\r\n[/dt_vc_list][/vc_column_inner][vc_column_inner width=\"1/2\"][dt_vc_list dividers=\"false\"]\r\n<ul>\r\n 	<li>Income inspection carried out on every consignment (Tested for Chemical Assay &amp; Physical Properties)</li>\r\n 	<li>Quality department approval required to be used in the production</li>\r\n</ul>\r\n[/dt_vc_list][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row css=\".vc_custom_1689578794814{padding-top: 50px !important;padding-bottom: 50px !important;}\"][vc_column][ultimate_heading main_heading=\"Please contact us to start your Marketing Journey with a reliable manufacturing partnership with FARMCHEMIE\" heading_tag=\"h3\" main_heading_color=\"#079547\" sub_heading_color=\"#792c8a\" alignment=\"left\"][/ultimate_heading][vc_row_inner css=\".vc_custom_1689578812611{margin-top: 50px !important;}\"][vc_column_inner width=\"1/2\"][bsf-info-box icon_size=\"32\" title=\"International Markets\" pos=\"square_box\" box_border_style=\"solid\" box_border_width=\"1\" box_border_color=\"#792c8a\" title_font_color=\"#079547\" desc_font_color=\"#792c8a\" title_font_size=\"desktop:25px;\"]<strong>Email :</strong> <a href=\"mailto:sales.export@farmchemie.com\"><u>sales.export@farmchemie.com</u></a>\r\n<strong>Tel No :</strong> + 94 76 577 2975[/bsf-info-box][/vc_column_inner][vc_column_inner width=\"1/2\"][bsf-info-box icon_size=\"32\" title=\"Sri Lankan Market\" pos=\"square_box\" box_border_style=\"solid\" box_border_width=\"1\" box_border_color=\"#079547\" title_font_color=\"#079547\" desc_font_color=\"#792c8a\" title_font_size=\"desktop:25px;\"]Email : <a href=\"mailto:sales.local@farmchemie.com\"><u>sales.local@farmchemie.com</u></a>\r\nTel No : +94 74 224 6947[/bsf-info-box][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row]','Manufacturing','','inherit','closed','closed','','2964-revision-v1','','','2023-07-17 07:36:21','2023-07-17 07:36:21','',2964,'https://farmchemie.yasithawd.com/?p=2989',0,'revision','',0),(2434,1,'2022-08-31 03:44:17','2022-08-31 03:44:17','This is the demo skin created by Easy Social Feed plugin automatically with default values. You can edit it and change the look & feel of your Feeds.','Skin - Grid','','publish','closed','closed','','skin-grid','','','2022-08-31 03:44:17','2022-08-31 03:44:17','',0,'https://farmchemie.yasithawd.com/?p=2434',0,'mif_skins','',0),(2435,1,'2022-08-31 03:44:17','2022-08-31 03:44:17','[my-instagram-feed user_id=\'\' skin_id=\'2434\'] <br> This is a mif demo page created by plugin automatically. Please don\'t delete to make the plugin work properly.','Instagram Demo - Customizer','','private','closed','closed','','instagram-demo-customizer','','','2022-08-31 03:44:17','2022-08-31 03:44:17','',0,'https://farmchemie.yasithawd.com/instagram-demo-customizer/',0,'page','',0),(2436,1,'2022-08-31 03:44:17','2022-08-31 03:44:17','This is the half width demo skin created by plugin automatically with default values. You can edit it and change the look & feel of your Facebook Feeds.','Skin - Half Width','','publish','closed','closed','','skin-half-width','','','2022-08-31 03:44:17','2022-08-31 03:44:17','',0,'https://farmchemie.yasithawd.com/?p=2436',0,'efbl_skins','',0),(2437,1,'2022-08-31 03:44:17','2022-08-31 03:44:17','This is the Full width demo skin created by plugin automatically with default values. You can edit it and change the look & feel of your Facebook Feeds.','Skin - Full Width','','publish','closed','closed','','skin-full-width','','','2022-08-31 03:44:17','2022-08-31 03:44:17','',0,'https://farmchemie.yasithawd.com/?p=2437',0,'efbl_skins','',0),(2438,1,'2022-08-31 03:44:17','2022-08-31 03:44:17','This is the Thumbnail demo skin created by plugin automatically with default values. You can edit it and change the look & feel of your Facebook Feeds.','Skin - Thumbnail','','publish','closed','closed','','skin-thumbnail','','','2022-08-31 03:44:17','2022-08-31 03:44:17','',0,'https://farmchemie.yasithawd.com/?p=2438',0,'efbl_skins','',0),(2439,1,'2022-08-31 03:44:17','2022-08-31 03:44:17','[efb_feed fanpage_id=\"106704037405386\" words_limit=\"25\" show_like_box=\"1\" post_limit=\"10\" cache_unit=\"5\" cache_duration=\"days\" skin_id=2436 ]<br> This is a Facebook demo page created by plugin automatically. Please do not delete to make the plugin work properly.','Facebook Demo - Customizer','','trash','closed','closed','','facebook-demo-customizer__trashed','','','2023-09-14 12:51:35','2023-09-14 12:51:35','',0,'https://farmchemie.yasithawd.com/facebook-demo-customizer/',0,'page','',0),(2988,1,'2023-07-17 07:34:36','2023-07-17 07:34:36','[vc_row full_width=\"stretch_row\" css=\".vc_custom_1689577528817{padding-bottom: 50px !important;}\"][vc_column css=\".vc_custom_1689577454678{margin-bottom: 50px !important;}\"][vc_row_inner css=\".vc_custom_1689577559805{border-bottom-width: 1px !important;padding-top: 35px !important;padding-bottom: 35px !important;border-bottom-color: #079547 !important;border-bottom-style: solid !important;border-radius: 1px !important;}\"][vc_column_inner width=\"2/3\"][ultimate_heading main_heading=\"Feed Additives\" heading_tag=\"h3\" main_heading_color=\"#079547\" sub_heading_color=\"#792c8a\" alignment=\"left\"]<strong>Premixes/ Specialty Feed Additives/ Dilution of Active Ingredients/ Concentrates</strong><strong>\r\n</strong>Pack sizes – 1,000 kg, 500 kg, 50 kg, 25 kg, 15 kg, 10 kg, 5 kg, 1kg[/ultimate_heading][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_single_image][/vc_column_inner][/vc_row_inner][vc_row_inner css=\".vc_custom_1689577609020{border-bottom-width: 1px !important;padding-top: 35px !important;padding-bottom: 35px !important;border-bottom-color: #079547 !important;border-bottom-style: solid !important;border-radius: 1px !important;}\"][vc_column_inner width=\"1/3\"][vc_single_image][/vc_column_inner][vc_column_inner width=\"2/3\"][ultimate_heading main_heading=\"Oral Supplements\" heading_tag=\"h3\" main_heading_color=\"#079547\" sub_heading_color=\"#792c8a\" alignment=\"left\"]<strong>Liquids</strong><strong>\r\n</strong>Pack sizes – 1,000 L, 250 L, 50 L, 25 L, 5 L, 1 L, 500 mL, 250 mL, 100 mL, 50 mL\r\n\r\n<strong>Water soluble powders</strong><strong>\r\n</strong>Pack sizes – 25 kg, 15 kg, 10 kg, 5 kg, 1kg[/ultimate_heading][/vc_column_inner][/vc_row_inner][vc_row_inner css=\".vc_custom_1689577609020{border-bottom-width: 1px !important;padding-top: 35px !important;padding-bottom: 35px !important;border-bottom-color: #079547 !important;border-bottom-style: solid !important;border-radius: 1px !important;}\"][vc_column_inner width=\"2/3\"][ultimate_heading main_heading=\"Tablets\" heading_tag=\"h3\" main_heading_color=\"#079547\" sub_heading_color=\"#792c8a\" alignment=\"left\"]<strong>Supplementary tablets for pet care</strong>\r\nTablet sizes – 1 to 5 g\r\n\r\n<strong>Boluses</strong><strong>\r\n</strong>Tablet sizes – 5 to 25 g[/ultimate_heading][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_single_image][/vc_column_inner][/vc_row_inner][vc_row_inner css=\".vc_custom_1689577609020{border-bottom-width: 1px !important;padding-top: 35px !important;padding-bottom: 35px !important;border-bottom-color: #079547 !important;border-bottom-style: solid !important;border-radius: 1px !important;}\"][vc_column_inner width=\"1/3\"][vc_single_image][/vc_column_inner][vc_column_inner width=\"2/3\"][ultimate_heading main_heading=\"Veterinary Pharmaceuticals\" heading_tag=\"h3\" main_heading_color=\"#079547\" sub_heading_color=\"#792c8a\" alignment=\"left\"]<strong>Deworming Solutions/ Antibiotics/ Antimicrobials/ Wound care solutions</strong><strong>\r\n</strong>Form – Liquid, WSP[/ultimate_heading][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row css=\".vc_custom_1689578783264{padding-top: 50px !important;padding-bottom: 50px !important;}\"][vc_column][ultimate_heading main_heading=\"Our manufacturing facility is certified with FAMI-QS, WHO GMP &amp; ISO 9001:2015 International Quality standards.\" heading_tag=\"h3\" main_heading_color=\"#079547\" sub_heading_color=\"#792c8a\" alignment=\"left\"]We select only the <strong><em>best</em></strong> and <strong><em>most reputed</em></strong> Raw Material &amp; Packing Material Suppliers for the production of our finished goods.[/ultimate_heading][vc_row_inner][vc_column_inner width=\"1/3\"][vc_single_image image=\"2981\" img_size=\"full\"][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_single_image image=\"2982\" img_size=\"full\"][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_single_image image=\"2983\" img_size=\"full\"][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner width=\"1/6\"][/vc_column_inner][vc_column_inner width=\"2/3\"][vc_single_image image=\"2984\" img_size=\"full\"][/vc_column_inner][vc_column_inner width=\"1/6\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row css=\".vc_custom_1689578794814{padding-top: 50px !important;padding-bottom: 50px !important;}\"][vc_column][ultimate_heading main_heading=\"Supplier selection and procurement criteria\" heading_tag=\"h3\" main_heading_color=\"#079547\" sub_heading_color=\"#792c8a\" alignment=\"left\"][/ultimate_heading][vc_row_inner css=\".vc_custom_1689578812611{margin-top: 50px !important;}\"][vc_column_inner width=\"1/2\"][dt_vc_list dividers=\"false\"]\r\n<ul>\r\n 	<li>Check supplier’s quality certification to ensure raw material quality</li>\r\n 	<li>New vendor validation protocol - In case of a change in the supplier, obtain samples and validate in the lab</li>\r\n</ul>\r\n[/dt_vc_list][/vc_column_inner][vc_column_inner width=\"1/2\"][dt_vc_list dividers=\"false\"]\r\n<ul>\r\n 	<li>Income inspection carried out on every consignment (Tested for Chemical Assay &amp; Physical Properties)</li>\r\n 	<li>Quality department approval required to be used in the production</li>\r\n</ul>\r\n[/dt_vc_list][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row css=\".vc_custom_1689578794814{padding-top: 50px !important;padding-bottom: 50px !important;}\"][vc_column][ultimate_heading main_heading=\"Please contact us to start your Marketing Journey with a reliable manufacturing partnership with FARMCHEMIE\" heading_tag=\"h3\" main_heading_color=\"#079547\" sub_heading_color=\"#792c8a\" alignment=\"left\"][/ultimate_heading][vc_row_inner css=\".vc_custom_1689578812611{margin-top: 50px !important;}\"][vc_column_inner width=\"1/2\"][bsf-info-box icon_size=\"32\" title=\"International Markets\" pos=\"square_box\" box_border_style=\"solid\" box_border_width=\"1\" box_border_color=\"#792c8a\" title_font_color=\"#079547\" desc_font_color=\"#792c8a\" title_font_size=\"desktop:25px;\"]<strong>Email :</strong> <a href=\"mailto:sales.export@farmchemie.com\"><u>sales.export@farmchemie.com</u></a>\r\n<strong>Tel No :</strong> + 94 76 577 2975[/bsf-info-box][/vc_column_inner][vc_column_inner width=\"1/2\"][bsf-info-box icon_size=\"32\" title=\"Sri Lankan Market\" pos=\"square_box\" box_border_style=\"solid\" box_border_width=\"1\" box_border_color=\"#079547\" title_font_color=\"#079547\" desc_font_color=\"#792c8a\" title_font_size=\"desktop:25px;\"]Email : <a href=\"mailto:sales.local@farmchemie.com\"><u>sales.local@farmchemie.com</u></a>\r\nTel No : +94 74 224 6947[/bsf-info-box][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row]','Manufacturing','','inherit','closed','closed','','2964-revision-v1','','','2023-07-17 07:34:36','2023-07-17 07:34:36','',2964,'https://farmchemie.yasithawd.com/?p=2988',0,'revision','',0),(2634,1,'2022-11-18 04:22:09','2022-11-18 04:22:09','[vc_row][vc_column][ultimate_heading main_heading=\"Our History\" margin_design_tab_text=\"\"][/ultimate_heading][icon_timeline][icon_timeline_sep time_sep_title=\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vestibulum iaculis mollis leo, at pretium velit maximus vitae. Ut egestas laoreet mollis.\"][icon_timeline_item time_title=\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vestibulum iaculis mollis leo, at pretium velit maximus vitae. Ut egestas laoreet mollis.\"]Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vestibulum iaculis mollis leo, at pretium velit maximus vitae. Ut egestas laoreet mollis.Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vestibulum iaculis mollis leo, at pretium velit maximus vitae. Ut egestas laoreet mollis.Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vestibulum iaculis mollis leo, at pretium velit maximus vitae. Ut egestas laoreet mollis.[/icon_timeline_item][icon_timeline_item time_title=\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vestibulum iaculis mollis leo, at pretium velit maximus vitae. Ut egestas laoreet mollis.\"]Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vestibulum iaculis mollis leo, at pretium velit maximus vitae. Ut egestas laoreet mollis.Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vestibulum iaculis mollis leo, at pretium velit maximus vitae. Ut egestas laoreet mollis.Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vestibulum iaculis mollis leo, at pretium velit maximus vitae. Ut egestas laoreet mollis.[/icon_timeline_item][icon_timeline_feat time_title=\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vestibulum iaculis mollis leo, at pretium velit maximus vitae. Ut egestas laoreet mollis.\"]Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vestibulum iaculis mollis leo, at pretium velit maximus vitae. Ut egestas laoreet mollis.Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vestibulum iaculis mollis leo, at pretium velit maximus vitae. Ut egestas laoreet mollis.Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vestibulum iaculis mollis leo, at pretium velit maximus vitae. Ut egestas laoreet mollis.Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vestibulum iaculis mollis leo, at pretium velit maximus vitae. Ut egestas laoreet mollis.[/icon_timeline_feat][icon_timeline_sep time_sep_title=\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vestibulum iaculis mollis leo, at pretium velit maximus vitae. Ut egestas laoreet mollis.\"][/icon_timeline][/vc_column][/vc_row][vc_row][vc_column][ultimate_heading main_heading=\"Vision and Mission\" margin_design_tab_text=\"\"][/ultimate_heading][vc_row_inner][vc_column_inner width=\"1/2\"][ultimate_heading main_heading=\"Vision\" heading_tag=\"h3\" margin_design_tab_text=\"\"]Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vestibulum iaculis mollis leo, at pretium velit maximus vitae. Ut egestas laoreet mollis.Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vestibulum iaculis mollis leo, at pretium velit maximus vitae. Ut egestas laoreet mollis.Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vestibulum iaculis mollis leo, at pretium velit maximus vitae. Ut egestas laoreet mollis.Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vestibulum iaculis mollis leo, at pretium velit maximus vitae. Ut egestas laoreet mollis.[/ultimate_heading][/vc_column_inner][vc_column_inner width=\"1/2\"][ultimate_heading main_heading=\"Mission\" margin_design_tab_text=\"\"]Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vestibulum iaculis mollis leo, at pretium velit maximus vitae. Ut egestas laoreet mollis.Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vestibulum iaculis mollis leo, at pretium velit maximus vitae. Ut egestas laoreet mollis.Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vestibulum iaculis mollis leo, at pretium velit maximus vitae. Ut egestas laoreet mollis.Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vestibulum iaculis mollis leo, at pretium velit maximus vitae. Ut egestas laoreet mollis.[/ultimate_heading][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row]','About Us','','inherit','closed','closed','','2633-revision-v1','','','2022-11-18 04:22:09','2022-11-18 04:22:09','',2633,'https://farmchemie.yasithawd.com/?p=2634',0,'revision','',0),(2628,1,'2022-11-18 04:11:45','2022-11-18 04:11:45','[vc_row full_width=\"stretch_row_content_no_spaces\"][vc_column][vc_gmaps link=\"#E-8_JTNDaWZyYW1lJTIwc3JjJTNEJTIyaHR0cHMlM0ElMkYlMkZ3d3cuZ29vZ2xlLmNvbSUyRm1hcHMlMkZlbWJlZCUzRnBiJTNEJTIxMW0yNiUyMTFtMTIlMjExbTMlMjExZDYzMzgzLjQyNTEwOTgyMTc0JTIxMmQ3OS45MzI3OTY2NDMyMzE4MSUyMTNkNi44MzQ4Mjk2MzU0MTc2MTklMjEybTMlMjExZjAlMjEyZjAlMjEzZjAlMjEzbTIlMjExaTEwMjQlMjEyaTc2OCUyMTRmMTMuMSUyMTRtMTElMjEzZTYlMjE0bTMlMjEzbTIlMjExZDYuODQ3MDQ0MiUyMTJkNzkuOTMwNDYyNiUyMTRtNSUyMTFzMHgzYWUyNTFmNjNkZWY3NzRmJTI1M0EweDkyOTI2MmRkNzhjZmY1YmUlMjEyc2Zhcm1jaGVtaWUlMjEzbTIlMjExZDYuODMxMzY3Mzk5OTk5OTk5NSUyMTJkODAuMDA3NzQ3NiUyMTVlMCUyMTNtMiUyMTFzZW4lMjEyc2xrJTIxNHYxNjY4NzQ0MjE2NTM0JTIxNW0yJTIxMXNlbiUyMTJzbGslMjIlMjB3aWR0aCUzRCUyMjE5MjAlMjIlMjBoZWlnaHQlM0QlMjI3MDAlMjIlMjBzdHlsZSUzRCUyMmJvcmRlciUzQTAlM0IlMjIlMjBhbGxvd2Z1bGxzY3JlZW4lM0QlMjIlMjIlMjBsb2FkaW5nJTNEJTIybGF6eSUyMiUyMHJlZmVycmVycG9saWN5JTNEJTIybm8tcmVmZXJyZXItd2hlbi1kb3duZ3JhZGUlMjIlM0UlM0MlMkZpZnJhbWUlM0U=\"][/vc_column][/vc_row][vc_row][vc_column][ultimate_heading main_heading=\"Contact Us\" alignment=\"left\" main_heading_margin=\"margin-bottom:35px;\"][/ultimate_heading][vc_row_inner][vc_column_inner width=\"1/3\"][bsf-info-box icon=\"icomoon-the7-font-the7-phone-04\" icon_size=\"32\" title=\"Phone\"]<strong>+94 (0) 11 298 3922</strong>[/bsf-info-box][/vc_column_inner][vc_column_inner width=\"1/3\"][bsf-info-box icon=\"icomoon-the7-font-the7-mail-01\" icon_size=\"32\" title=\"Email Address\"]info@farmchemie.com[/bsf-info-box][/vc_column_inner][vc_column_inner width=\"1/3\"][bsf-info-box icon=\"icomoon-the7-font-the7-map-02\" icon_size=\"32\" title=\"Address\"]No. 78, Industrial Zone, Katuwana, Homagama[/bsf-info-box][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row]','Contact Us','','inherit','closed','closed','','2622-revision-v1','','','2022-11-18 04:11:45','2022-11-18 04:11:45','',2622,'https://farmchemie.yasithawd.com/?p=2628',0,'revision','',0),(2621,1,'2023-09-14 12:51:27','2023-09-14 12:51:27','<p>[vc_row][vc_column][ultimate_heading][/ultimate_heading][/vc_column][/vc_row]</p>\n','About Us','','trash','closed','closed','','__trashed-2','','','2023-09-14 12:51:27','2023-09-14 12:51:27','',0,'https://farmchemie.yasithawd.com/?page_id=2621',0,'page','',0),(2622,1,'2022-11-18 04:08:56','2022-11-18 04:08:56','[vc_row full_width=\"stretch_row_content\" equal_height=\"yes\" css=\".vc_custom_1694535688302{margin-top: 35px !important;margin-bottom: 35px !important;padding-right: 10% !important;padding-left: 10% !important;}\"][vc_column][vc_row_inner][vc_column_inner width=\"1/3\"][bsf-info-box icon=\"icomoon-the7-font-the7-phone-04\" icon_size=\"32\" icon_color=\"#059444\" title=\"Phone\"]<strong>+94 (0) 11 298 3922</strong>[/bsf-info-box][bsf-info-box icon=\"icomoon-the7-font-the7-mail-01\" icon_size=\"32\" icon_color=\"#059444\" title=\"Email Address\"]info@farmchemie.com[/bsf-info-box][bsf-info-box icon=\"icomoon-the7-font-the7-map-02\" icon_size=\"32\" icon_color=\"#059444\" title=\"Address\"]No. 78, Industrial Zone, Katuwana, Homagama[/bsf-info-box][/vc_column_inner][vc_column_inner width=\"1/3\"][contact-form-7 id=\"12\"][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_gmaps link=\"#E-8_JTNDaWZyYW1lJTIwc3JjJTNEJTIyaHR0cHMlM0ElMkYlMkZ3d3cuZ29vZ2xlLmNvbSUyRm1hcHMlMkZlbWJlZCUzRnBiJTNEJTIxMW0xOCUyMTFtMTIlMjExbTMlMjExZDM5NjEuNDkyNzAyNjUzODQyJTIxMmQ4MC4wMDU1NTMyNTA5NzkzNiUyMTNkNi44MzEzNzM2MjEzNzcxMSUyMTJtMyUyMTFmMCUyMTJmMCUyMTNmMCUyMTNtMiUyMTFpMTAyNCUyMTJpNzY4JTIxNGYxMy4xJTIxM20zJTIxMW0yJTIxMXMweDNhZTI1MWY2M2RlZjc3NGYlMjUzQTB4OTI5MjYyZGQ3OGNmZjViZSUyMTJzRmFybWNoZW1pZSUyNTIwJTI4UHJpdmF0ZSUyOSUyNTIwTGltaXRlZCUyMTVlMCUyMTNtMiUyMTFzZW4lMjEyc2xrJTIxNHYxNjY4NzQ0NzQ2NDk0JTIxNW0yJTIxMXNlbiUyMTJzbGslMjIlMjB3aWR0aCUzRCUyMjE5MjAlMjIlMjBoZWlnaHQlM0QlMjI1MDAlMjIlMjBzdHlsZSUzRCUyMmJvcmRlciUzQTAlM0IlMjIlMjBhbGxvd2Z1bGxzY3JlZW4lM0QlMjIlMjIlMjBsb2FkaW5nJTNEJTIybGF6eSUyMiUyMHJlZmVycmVycG9saWN5JTNEJTIybm8tcmVmZXJyZXItd2hlbi1kb3duZ3JhZGUlMjIlM0UlM0MlMkZpZnJhbWUlM0U=\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row full_width=\"stretch_row_content\" css=\".vc_custom_1694534830702{margin-top: 35px !important;margin-bottom: 35px !important;}\"][vc_column][vc_separator color=\"custom\" accent_color=\"#823194\"][ultimate_heading main_heading=\"Inquries\" main_heading_color=\"#089548\" main_heading_margin=\"margin-top:35px;\"][/ultimate_heading][/vc_column][/vc_row][vc_row][vc_column width=\"1/3\"][bsf-info-box icon=\"icomoon-the7-font-the7-mail-01\" icon_size=\"32\" icon_color=\"#039447\" icon_style=\"circle\" title=\"Managing Director\" read_more=\"box\" link=\"url:mailto%3Auditha%40farmchemie.com\" pos=\"square_box\" box_border_style=\"solid\" box_border_width=\"1\" box_border_color=\"#823194\" title_font_color=\"#039447\" desc_font_color=\"#039447\" title_font_size=\"desktop:20px;\"]Mr.Uditha Wanigasinghe\r\n\r\nuditha@farmchemie.com\r\n\r\n+94 777272492[/bsf-info-box][/vc_column][vc_column width=\"1/3\"][bsf-info-box icon=\"icomoon-the7-font-the7-mail-01\" icon_size=\"32\" icon_color=\"#039447\" icon_style=\"circle\" title=\"Director- Marketing\" read_more=\"box\" link=\"url:mailto%3Aajith%40farmchemie.com\" pos=\"square_box\" box_border_style=\"solid\" box_border_width=\"1\" box_border_color=\"#823194\" title_font_color=\"#039447\" desc_font_color=\"#039447\" title_font_size=\"desktop:20px;\"]Mr.Ajith Welianga\r\n\r\najith@farmchemie.com\r\n\r\n+94 777386662[/bsf-info-box][/vc_column][vc_column width=\"1/3\"][bsf-info-box icon=\"icomoon-the7-font-the7-mail-01\" icon_size=\"32\" icon_color=\"#039447\" icon_style=\"circle\" title=\"Director – Production\" read_more=\"box\" link=\"url:mailto%3Afactory%40farmchemie.com\" pos=\"square_box\" box_border_style=\"solid\" box_border_width=\"1\" box_border_color=\"#823194\" title_font_color=\"#039447\" desc_font_color=\"#039447\" title_font_size=\"desktop:20px;\"]Mr.Chanaka Indrajith\r\n\r\nfactory@farmchemie.com\r\n\r\n+94 773622546[/bsf-info-box][/vc_column][/vc_row][vc_row][vc_column width=\"1/3\"][bsf-info-box icon=\"icomoon-the7-font-the7-mail-01\" icon_size=\"32\" icon_color=\"#039447\" icon_style=\"circle\" title=\"Director - Sales\" read_more=\"box\" link=\"url:mailto%3Asampath%40farmchemie.com\" pos=\"square_box\" box_border_style=\"solid\" box_border_width=\"1\" box_border_color=\"#823194\" title_font_color=\"#039447\" desc_font_color=\"#039447\" title_font_size=\"desktop:20px;\"]Mr.Sampath Gunathailake\r\n\r\nsampath@farmchemie.com\r\n\r\n+94 773159125[/bsf-info-box][/vc_column][vc_column width=\"1/3\"][bsf-info-box icon=\"icomoon-the7-font-the7-mail-01\" icon_size=\"32\" icon_color=\"#039447\" icon_style=\"circle\" title=\"Technical Services\" read_more=\"box\" link=\"url:mailto%3Atechnical%40farmchemie.com\" pos=\"square_box\" box_border_style=\"solid\" box_border_width=\"1\" box_border_color=\"#823194\" title_font_color=\"#039447\" desc_font_color=\"#039447\" title_font_size=\"desktop:20px;\"]Dr. Nalin De Silva\r\n\r\ntechnical@farmchemie.com\r\n\r\n+94 777585748[/bsf-info-box][/vc_column][vc_column width=\"1/3\"][bsf-info-box icon=\"icomoon-the7-font-the7-mail-01\" icon_size=\"32\" icon_color=\"#039447\" icon_style=\"circle\" title=\"Large Animal &amp; Equipment\" read_more=\"box\" link=\"url:mailto%3Amalaka%40farmchemie.com\" pos=\"square_box\" box_border_style=\"solid\" box_border_width=\"1\" box_border_color=\"#823194\" title_font_color=\"#039447\" desc_font_color=\"#039447\" title_font_size=\"desktop:20px;\"]Mr. Malaka Karunasinghe\r\n\r\nmalaka@farmchemie.com\r\n\r\n+94 773597280[/bsf-info-box][/vc_column][/vc_row][vc_row][vc_column width=\"1/3\"][bsf-info-box icon=\"icomoon-the7-font-the7-mail-01\" icon_size=\"32\" icon_color=\"#039447\" icon_style=\"circle\" title=\"Poultry &amp; Key Accounts\" read_more=\"box\" link=\"url:mailto%3Amaduka%40farmchemie.com\" pos=\"square_box\" box_border_style=\"solid\" box_border_width=\"1\" box_border_color=\"#823194\" title_font_color=\"#039447\" desc_font_color=\"#039447\" title_font_size=\"desktop:20px;\"]Mr. Maduka Samaranayake\r\n\r\nmaduka@farmchemie.com\r\n\r\n+94 773597278[/bsf-info-box][/vc_column][vc_column width=\"1/3\"][bsf-info-box icon=\"icomoon-the7-font-the7-mail-01\" icon_size=\"32\" icon_color=\"#039447\" icon_style=\"circle\" title=\"Customer &amp; Employee Relations\" read_more=\"box\" link=\"url:mailto%3Asunil%40farmchemie.com\" pos=\"square_box\" box_border_style=\"solid\" box_border_width=\"1\" box_border_color=\"#823194\" title_font_color=\"#039447\" desc_font_color=\"#039447\" title_font_size=\"desktop:20px;\"]Mr. Sunil Ranjith\r\n\r\nsunil@farmchemie.com\r\n\r\n+94 773597279[/bsf-info-box][/vc_column][vc_column width=\"1/3\"][bsf-info-box icon=\"icomoon-the7-font-the7-mail-01\" icon_size=\"32\" icon_color=\"#039447\" icon_style=\"circle\" title=\"Consultant\" read_more=\"box\" link=\"url:mailto%3Aspwimalasiri%40gmail.com\" pos=\"square_box\" box_border_style=\"solid\" box_border_width=\"1\" box_border_color=\"#823194\" title_font_color=\"#039447\" desc_font_color=\"#039447\" title_font_size=\"desktop:20px;\"]Dr. Wimalasiri\r\n\r\nspwimalasiri@gmail.com\r\n\r\n+94 726687327[/bsf-info-box][/vc_column][/vc_row][vc_row][vc_column width=\"1/3\"][bsf-info-box icon=\"icomoon-the7-font-the7-mail-01\" icon_size=\"32\" icon_color=\"#039447\" icon_style=\"circle\" title=\"Poultry &amp; Key Accounts\" read_more=\"box\" link=\"url:mailto%3Aaccounts%40farmchemie.com\" pos=\"square_box\" box_border_style=\"solid\" box_border_width=\"1\" box_border_color=\"#823194\" title_font_color=\"#039447\" desc_font_color=\"#039447\" title_font_size=\"desktop:20px;\"]Mr.Tharanga Chathurakshana\r\n\r\naccounts@farmchemie.com\r\n\r\n+94 772069246[/bsf-info-box][/vc_column][vc_column width=\"1/3\"][bsf-info-box icon=\"icomoon-the7-font-the7-mail-01\" icon_size=\"32\" icon_color=\"#039447\" icon_style=\"circle\" title=\"Operations &amp; Supply Chain\" read_more=\"box\" link=\"url:mailto%3Aoperations%40farmchemie.com\" pos=\"square_box\" box_border_style=\"solid\" box_border_width=\"1\" box_border_color=\"#823194\" title_font_color=\"#039447\" desc_font_color=\"#039447\" title_font_size=\"desktop:20px;\"]Ms.Disna Upendra de Costa\r\n\r\noperations@farmchemie.com\r\n\r\n+94 772201932[/bsf-info-box][/vc_column][vc_column width=\"1/3\"][/vc_column][/vc_row]','Contact Us','','publish','closed','closed','','2622-2','','','2023-09-24 08:50:59','2023-09-24 08:50:59','',0,'https://farmchemie.yasithawd.com/?page_id=2622',0,'page','',0),(2623,1,'2022-11-18 04:05:58','2022-11-18 04:05:58','[vc_row full_width=\"stretch_row_content_no_spaces\"][vc_column][vc_gmaps link=\"#E-8_JTNDaWZyYW1lJTIwc3JjJTNEJTIyaHR0cHMlM0ElMkYlMkZ3d3cuZ29vZ2xlLmNvbSUyRm1hcHMlMkZlbWJlZCUzRnBiJTNEJTIxMW0yNiUyMTFtMTIlMjExbTMlMjExZDYzMzgzLjQyNTEwOTgyMTc0JTIxMmQ3OS45MzI3OTY2NDMyMzE4MSUyMTNkNi44MzQ4Mjk2MzU0MTc2MTklMjEybTMlMjExZjAlMjEyZjAlMjEzZjAlMjEzbTIlMjExaTEwMjQlMjEyaTc2OCUyMTRmMTMuMSUyMTRtMTElMjEzZTYlMjE0bTMlMjEzbTIlMjExZDYuODQ3MDQ0MiUyMTJkNzkuOTMwNDYyNiUyMTRtNSUyMTFzMHgzYWUyNTFmNjNkZWY3NzRmJTI1M0EweDkyOTI2MmRkNzhjZmY1YmUlMjEyc2Zhcm1jaGVtaWUlMjEzbTIlMjExZDYuODMxMzY3Mzk5OTk5OTk5NSUyMTJkODAuMDA3NzQ3NiUyMTVlMCUyMTNtMiUyMTFzZW4lMjEyc2xrJTIxNHYxNjY4NzQ0MjE2NTM0JTIxNW0yJTIxMXNlbiUyMTJzbGslMjIlMjB3aWR0aCUzRCUyMjYwMCUyMiUyMGhlaWdodCUzRCUyMjQ1MCUyMiUyMHN0eWxlJTNEJTIyYm9yZGVyJTNBMCUzQiUyMiUyMGFsbG93ZnVsbHNjcmVlbiUzRCUyMiUyMiUyMGxvYWRpbmclM0QlMjJsYXp5JTIyJTIwcmVmZXJyZXJwb2xpY3klM0QlMjJuby1yZWZlcnJlci13aGVuLWRvd25ncmFkZSUyMiUzRSUzQyUyRmlmcmFtZSUzRQ==\"][/vc_column][/vc_row][vc_row][vc_column][ultimate_heading main_heading=\"Contact Us\" margin_design_tab_text=\"\"][/ultimate_heading][vc_row_inner][vc_column_inner width=\"1/3\"][bsf-info-box icon=\"icomoon-the7-font-the7-phone-04\" icon_size=\"32\" title=\"Phone\"]<strong>+94 (0) 11 298 3922</strong>[/bsf-info-box][/vc_column_inner][vc_column_inner width=\"1/3\"][bsf-info-box icon=\"icomoon-the7-font-the7-phone-04\" icon_size=\"32\" title=\"Phone\"]<strong>+94 (0) 11 298 3922</strong>[/bsf-info-box][/vc_column_inner][vc_column_inner width=\"1/3\"][bsf-info-box icon=\"icomoon-the7-font-the7-phone-04\" icon_size=\"32\" title=\"Phone\"]<strong>+94 (0) 11 298 3922</strong>[/bsf-info-box][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row]','','','inherit','closed','closed','','2622-revision-v1','','','2022-11-18 04:05:58','2022-11-18 04:05:58','',2622,'https://farmchemie.yasithawd.com/?p=2623',0,'revision','',0),(2454,1,'2023-09-14 13:34:00','2023-09-14 13:34:00','','Canny Flexi Join','','trash','open','open','','__trashed','','','2023-09-14 13:34:00','2023-09-14 13:34:00','',0,'https://farmchemie.yasithawd.com/?p=2454',0,'post','',0),(2460,1,'2022-08-31 05:00:28','2022-08-31 05:00:28','','Farmchemie','','publish','closed','closed','','farmchemie','','','2022-08-31 05:11:27','2022-08-31 05:11:27','',0,'https://farmchemie.yasithawd.com/?post_type=fbfba_facebook_feed&#038;p=2460',0,'fbfba_facebook_feed','',0),(2586,1,'2022-09-06 09:30:41','2022-09-06 09:30:41','[vc_row full_width=\"stretch_row_content\" bg_type=\"image\" parallax_style=\"vcpb-default\" bg_image_new=\"id^2524|url^https://farmchemie.yasithawd.com/wp-content/uploads/2022/09/marketbgimg1.png|caption^null|alt^null|title^marketbgimg1|description^null\" bg_image_repeat=\"no-repeat\"][vc_column][ultimate_heading main_heading=\"SELECT YOUR MARKET/REGION\" main_heading_color=\"#6e368d\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:48px;\"][/ultimate_heading][vc_empty_space height=\"300px\" css=\".vc_custom_1662447237222{margin: 0px !important;padding: 0px !important;background-image: url(https://farmchemie.yasithawd.com/wp-content/uploads/2022/09/marketbgimg1-sp.png?id=2527) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\"][vc_row_inner][vc_column_inner el_class=\"cborder1\" width=\"1/3\" css=\".vc_custom_1662367183321{background-color: #6e368d !important;}\"][bsf-info-box icon_type=\"custom\" icon_img=\"id^2537|url^https://farmchemie.yasithawd.com/wp-content/uploads/2022/09/earthicon-1.png|caption^null|alt^null|title^earthicon-1|description^null\" img_width=\"100\" title=\"Global\" pos=\"right\" title_font_style=\"font-weight:bold;\" title_font_size=\"desktop:48px;\" title_font_color=\"#ffffff\" desc_font_size=\"desktop:24px;\" desc_font_color=\"#ffffff\"]International Market[/bsf-info-box][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\" css=\".vc_custom_1662370098614{background-color: #089548 !important;}\"][bsf-info-box icon_type=\"custom\" icon_img=\"id^2536|url^https://farmchemie.yasithawd.com/wp-content/uploads/2022/09/srilankaicon-1.png|caption^null|alt^null|title^srilankaicon-1|description^null\" img_width=\"100\" title=\"Local\" pos=\"left\" title_font_style=\"font-weight:bold;\" title_font_size=\"desktop:48px;\" title_font_color=\"#ffffff\" desc_font_size=\"desktop:24px;\" desc_font_color=\"#ffffff\"]Sri Lankan Market[/bsf-info-box][/vc_column_inner][/vc_row_inner][vc_row_inner equal_height=\"yes\" css=\".vc_custom_1662370166856{margin-top: 20px !important;margin-right: 50px !important;margin-left: 50px !important;}\"][vc_column_inner width=\"5/12\"][vc_column_text]FARMCHEMIE is a world-renowned manufacturer of feed additives and feed supplements. We offer our FarmStar and PetStar branded products to the international markets We provide toll-manufacturing services to globally recognized marketing companies for the Asian &amp; African markets. Our manufacturing plant is equipped with fully automated production lines from Bühler.[/vc_column_text][/vc_column_inner][vc_column_inner width=\"2/12\"][/vc_column_inner][vc_column_inner width=\"5/12\"][vc_column_text]FARMCHEMIE offers an island wide distribution, technical consultation and poultry vaccination services of high-quality animal healthcare products from world-renowned suppliers.\r\nWe offer both locally manufactured and imported products to cater the poultry, dairy, swine, pet-care and aqua markets.[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner width=\"1/2\"][ult_buttons btn_title=\"READ MORE\" btn_align=\"ubtn-center\" btn_size=\"ubtn-custom\" btn_width=\"300\" btn_height=\"60\" btn_title_color=\"#6e368d\" btn_bg_color=\"rgba(224,224,224,0.01)\" icon=\"dt-icon-the7-menu-014\" icon_size=\"40\" icon_color=\"#6e368d\" btn_icon_pos=\"ubtn-sep-icon-at-right\" btn_font_style=\"font-weight:bold;\" btn_font_size=\"desktop:24px;\"][/vc_column_inner][vc_column_inner width=\"1/2\"][ult_buttons btn_title=\"READ MORE\" btn_align=\"ubtn-center\" btn_size=\"ubtn-custom\" btn_width=\"300\" btn_height=\"60\" btn_title_color=\"#089548\" btn_bg_color=\"rgba(224,224,224,0.01)\" icon=\"dt-icon-the7-menu-013\" icon_size=\"40\" icon_color=\"#089548\" btn_icon_pos=\"ubtn-sep-icon-at-left\" btn_font_style=\"font-weight:bold;\" btn_font_size=\"desktop:24px;\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row full_width=\"stretch_row_content\" full_height=\"yes\" columns_placement=\"top\" bg_type=\"image\" parallax_style=\"vcpb-default\" bg_image_new=\"id^2559|url^https://farmchemie.yasithawd.com/wp-content/uploads/2022/09/rowimg_mod_3.jpg|caption^null|alt^null|title^rowimg_mod_3|description^null\" bg_image_repeat=\"no-repeat\"][vc_column][ultimate_heading main_heading=\"SPIRIT OF INNOVATION IN ANIMAL HEALTH\" main_heading_color=\"#6e368d\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:48px;\"][/ultimate_heading][vc_empty_space height=\"90%\"][vc_row_inner content_placement=\"bottom\" css=\".vc_custom_1662372188860{padding-right: 10px !important;padding-left: 10px !important;}\"][vc_column_inner width=\"6/12\" css=\".vc_custom_1662439605469{background-color: rgba(255,255,255,0.5) !important;*background-color: rgb(255,255,255) !important;}\"][vc_single_image image=\"2567\" img_size=\"full\" alignment=\"center\"][/vc_column_inner][vc_column_inner width=\"3/12\"][/vc_column_inner][vc_column_inner width=\"3/12\" css=\".vc_custom_1662371690284{background-color: #6e368d !important;}\"][vc_single_image image=\"2566\" img_size=\"full\" alignment=\"center\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row]','Home2','','inherit','closed','closed','','2525-revision-v1','','','2022-09-06 09:30:41','2022-09-06 09:30:41','',2525,'https://farmchemie.yasithawd.com/?p=2586',0,'revision','',0),(2987,1,'2023-07-17 07:30:18','2023-07-17 07:30:18','[vc_row full_width=\"stretch_row\" css=\".vc_custom_1689577528817{padding-bottom: 50px !important;}\"][vc_column css=\".vc_custom_1689577454678{margin-bottom: 50px !important;}\"][vc_row_inner css=\".vc_custom_1689577559805{border-bottom-width: 1px !important;padding-top: 35px !important;padding-bottom: 35px !important;border-bottom-color: #079547 !important;border-bottom-style: solid !important;border-radius: 1px !important;}\"][vc_column_inner width=\"2/3\"][ultimate_heading main_heading=\"Feed Additives\" heading_tag=\"h3\" main_heading_color=\"#079547\" sub_heading_color=\"#792c8a\" alignment=\"left\"]<strong>Premixes/ Specialty Feed Additives/ Dilution of Active Ingredients/ Concentrates</strong><strong>\r\n</strong>Pack sizes – 1,000 kg, 500 kg, 50 kg, 25 kg, 15 kg, 10 kg, 5 kg, 1kg[/ultimate_heading][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_single_image][/vc_column_inner][/vc_row_inner][vc_row_inner css=\".vc_custom_1689577609020{border-bottom-width: 1px !important;padding-top: 35px !important;padding-bottom: 35px !important;border-bottom-color: #079547 !important;border-bottom-style: solid !important;border-radius: 1px !important;}\"][vc_column_inner width=\"1/3\"][vc_single_image][/vc_column_inner][vc_column_inner width=\"2/3\"][ultimate_heading main_heading=\"Oral Supplements\" heading_tag=\"h3\" main_heading_color=\"#079547\" sub_heading_color=\"#792c8a\" alignment=\"left\"]<strong>Liquids</strong><strong>\r\n</strong>Pack sizes – 1,000 L, 250 L, 50 L, 25 L, 5 L, 1 L, 500 mL, 250 mL, 100 mL, 50 mL\r\n\r\n<strong>Water soluble powders</strong><strong>\r\n</strong>Pack sizes – 25 kg, 15 kg, 10 kg, 5 kg, 1kg[/ultimate_heading][/vc_column_inner][/vc_row_inner][vc_row_inner css=\".vc_custom_1689577609020{border-bottom-width: 1px !important;padding-top: 35px !important;padding-bottom: 35px !important;border-bottom-color: #079547 !important;border-bottom-style: solid !important;border-radius: 1px !important;}\"][vc_column_inner width=\"2/3\"][ultimate_heading main_heading=\"Tablets\" heading_tag=\"h3\" main_heading_color=\"#079547\" sub_heading_color=\"#792c8a\" alignment=\"left\"]<strong>Supplementary tablets for pet care</strong>\r\nTablet sizes – 1 to 5 g\r\n\r\n<strong>Boluses</strong><strong>\r\n</strong>Tablet sizes – 5 to 25 g[/ultimate_heading][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_single_image][/vc_column_inner][/vc_row_inner][vc_row_inner css=\".vc_custom_1689577609020{border-bottom-width: 1px !important;padding-top: 35px !important;padding-bottom: 35px !important;border-bottom-color: #079547 !important;border-bottom-style: solid !important;border-radius: 1px !important;}\"][vc_column_inner width=\"1/3\"][vc_single_image][/vc_column_inner][vc_column_inner width=\"2/3\"][ultimate_heading main_heading=\"Veterinary Pharmaceuticals\" heading_tag=\"h3\" main_heading_color=\"#079547\" sub_heading_color=\"#792c8a\" alignment=\"left\"]<strong>Deworming Solutions/ Antibiotics/ Antimicrobials/ Wound care solutions</strong><strong>\r\n</strong>Form – Liquid, WSP[/ultimate_heading][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row css=\".vc_custom_1689578783264{padding-top: 50px !important;padding-bottom: 50px !important;}\"][vc_column][ultimate_heading main_heading=\"Our manufacturing facility is certified with FAMI-QS, WHO GMP &amp; ISO 9001:2015 International Quality standards.\" heading_tag=\"h3\" main_heading_color=\"#079547\" sub_heading_color=\"#792c8a\" alignment=\"left\"]We select only the <strong><em>best</em></strong> and <strong><em>most reputed</em></strong> Raw Material &amp; Packing Material Suppliers for the production of our finished goods.[/ultimate_heading][vc_row_inner][vc_column_inner width=\"1/3\"][vc_single_image image=\"2981\" img_size=\"full\"][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_single_image image=\"2982\" img_size=\"full\"][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_single_image image=\"2983\" img_size=\"full\"][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner width=\"1/6\"][/vc_column_inner][vc_column_inner width=\"2/3\"][vc_single_image image=\"2984\" img_size=\"full\"][/vc_column_inner][vc_column_inner width=\"1/6\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row css=\".vc_custom_1689578794814{padding-top: 50px !important;padding-bottom: 50px !important;}\"][vc_column][ultimate_heading main_heading=\"Supplier selection and procurement criteria\" heading_tag=\"h3\" main_heading_color=\"#079547\" sub_heading_color=\"#792c8a\" alignment=\"left\" margin_design_tab_text=\"\"][/ultimate_heading][vc_row_inner css=\".vc_custom_1689578812611{margin-top: 50px !important;}\"][vc_column_inner width=\"1/2\"][dt_vc_list dividers=\"false\"]\r\n<ul>\r\n 	<li>Check supplier’s quality certification to ensure raw material quality</li>\r\n 	<li>New vendor validation protocol - In case of a change in the supplier, obtain samples and validate in the lab</li>\r\n</ul>\r\n[/dt_vc_list][/vc_column_inner][vc_column_inner width=\"1/2\"][dt_vc_list dividers=\"false\"]\r\n<ul>\r\n 	<li>Income inspection carried out on every consignment (Tested for Chemical Assay &amp; Physical Properties)</li>\r\n 	<li>Quality department approval required to be used in the production</li>\r\n</ul>\r\n[/dt_vc_list][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row css=\".vc_custom_1689578794814{padding-top: 50px !important;padding-bottom: 50px !important;}\"][vc_column][ultimate_heading main_heading=\"Please contact us to start your Marketing Journey with a reliable manufacturing partnership with FARMCHEMIE\" heading_tag=\"h3\" main_heading_color=\"#079547\" sub_heading_color=\"#792c8a\" alignment=\"left\" margin_design_tab_text=\"\"][/ultimate_heading][vc_row_inner css=\".vc_custom_1689578812611{margin-top: 50px !important;}\"][vc_column_inner width=\"1/2\"][bsf-info-box icon_size=\"32\" title=\"International Markets\" title_font_color=\"#079547\" desc_font_color=\"#792c8a\"]<strong>Email :</strong> <a href=\"mailto:sales.export@farmchemie.com\"><u>sales.export@farmchemie.com</u></a>\r\n<strong>Tel No :</strong> + 94 76 577 2975[/bsf-info-box][/vc_column_inner][vc_column_inner width=\"1/2\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row]','Manufacturing','','inherit','closed','closed','','2964-revision-v1','','','2023-07-17 07:30:18','2023-07-17 07:30:18','',2964,'https://farmchemie.yasithawd.com/?p=2987',0,'revision','',0),(3253,1,'2023-08-18 11:49:20','2023-08-18 11:49:20','[vc_row full_width=\"stretch_row_content_no_spaces\"][vc_column][ultimate_heading main_heading=\"Our History\" main_heading_color=\"#762888\" alignment=\"left\"][/ultimate_heading][vc_single_image image=\"3211\" img_size=\"full\" alignment=\"center\"][/vc_column][/vc_row][vc_row][vc_column][vc_row_inner equal_height=\"yes\" content_placement=\"middle\" css=\".vc_custom_1692359205466{margin-top: 35px !important;}\"][vc_column_inner width=\"1/2\"][ult_animation_block animation=\"fadeInLeftBig\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][vc_single_image image=\"3106\" img_size=\"full\" style=\"vc_box_border_circle_2\"][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/2\"][ult_animation_block animation=\"fadeInRightBig\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][ultimate_heading main_heading=\"Founded in 2002\" heading_tag=\"h3\" main_heading_color=\"#039447\" alignment=\"left\" sub_heading_font_size=\"desktop:18px;\"]Founded in 2002 by Mr. Uditha Wanigasinghe, an agriculturist who had a mission to aid valuable livestock producers in the country to enhance the yield and profitability of production. FARMCHEMIE introduced unprecedented solutions and consistent technical services to gain our customers’ trust and became the market leader in animal health products in 2006 within just four years.[/ultimate_heading][/ult_animation_block][/vc_column_inner][/vc_row_inner][vc_row_inner equal_height=\"yes\" rtl_reverse=\"yes\" content_placement=\"middle\" css=\".vc_custom_1692359216075{margin-top: 35px !important;}\"][vc_column_inner width=\"1/2\"][ultimate_heading main_heading=\"2006\" heading_tag=\"h3\" main_heading_color=\"#039447\" alignment=\"left\"]In 2006, the Sri Lankan poultry industry was affected with Avian Influenza which became a difficult period for the growth of FARMCHEMIE. This was the key factor in our decision to diversify into Agro Products. PLANTCHEM &amp; PLANTSEEDS were established to offer solutions in Agro specialty fertilizers, pesticides and seeds to invaluable cultivators.[/ultimate_heading][/vc_column_inner][vc_column_inner width=\"1/2\"][ult_animation_block animation=\"fadeInRightBig\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][vc_single_image image=\"3107\" img_size=\"full\" style=\"vc_box_border_circle_2\"][/ult_animation_block][/vc_column_inner][/vc_row_inner][vc_row_inner equal_height=\"yes\" content_placement=\"middle\" css=\".vc_custom_1692359231594{margin-top: 35px !important;}\"][vc_column_inner width=\"1/2\"][vc_single_image image=\"3108\" img_size=\"full\" style=\"vc_box_border_circle_2\"][/vc_column_inner][vc_column_inner width=\"1/2\"][ultimate_heading main_heading=\"2010\" heading_tag=\"h3\" main_heading_color=\"#039447\" alignment=\"left\"]In 2010, FEED CHEMIE became the subsequent addition to ever-growing vision of Mr. Uditha Wanigasinghe and entered the Animal Feed Additives market.[/ultimate_heading][/vc_column_inner][/vc_row_inner][vc_row_inner equal_height=\"yes\" rtl_reverse=\"yes\" content_placement=\"middle\" css=\".vc_custom_1692359239274{margin-top: 35px !important;}\"][vc_column_inner width=\"1/2\"][ultimate_heading main_heading=\"2012\" heading_tag=\"h3\" main_heading_color=\"#039447\" alignment=\"left\"]The year 2012 is described as a turning point in our journey as FARMCHEMIE established our first production facility for the manufacturing and packing of animal health products. FARMCHEMIE became the first animal health organization in Sri Lanka to obtain ISO 9001:2015 and WHO GMP International Quality Certification. With our own formulation unit, FARMCHEMIE was able to offer customized solutions to cater the needs of the Sri Lankan Livestock Industry.[/ultimate_heading][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_single_image image=\"3111\" img_size=\"full\" style=\"vc_box_border_circle_2\"][/vc_column_inner][/vc_row_inner][vc_row_inner content_placement=\"middle\" css=\".vc_custom_1692359246626{margin-top: 35px !important;}\"][vc_column_inner width=\"1/2\"][vc_single_image image=\"3112\" img_size=\"full\" style=\"vc_box_border_circle_2\"][/vc_column_inner][vc_column_inner width=\"1/2\"][ultimate_heading main_heading=\"2016\" heading_tag=\"h3\" main_heading_color=\"#039447\" alignment=\"left\"]The year 2016 was another key milestone with the entry to the International Markets. FARMCHEMIE exported our first Feed Premix consignment to India and in 2018 our export operation was distinctly established as FARMCHEMIE MANUFACTURERS, a Board of Investment (BOI) approved entity.[/ultimate_heading][/vc_column_inner][/vc_row_inner][vc_row_inner equal_height=\"yes\" css=\".vc_custom_1692359252258{margin-top: 35px !important;}\"][vc_column_inner width=\"1/2\"][ultimate_heading main_heading=\"Fully automated manufacturing\" heading_tag=\"h3\" main_heading_color=\"#039447\" alignment=\"left\"]FARMCHEMIE MANUFACTURERS has invested in fully automated manufacturing facility from Bühler and became the first Sri Lankan owned company to obtain FAMI-QS International Quality Certification.[/ultimate_heading][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_single_image image=\"3110\" img_size=\"full\" style=\"vc_box_border_circle_2\"][/vc_column_inner][/vc_row_inner][vc_row_inner equal_height=\"yes\" content_placement=\"middle\" css=\".vc_custom_1692359258634{margin-top: 35px !important;}\"][vc_column_inner width=\"1/2\"][vc_single_image image=\"3116\" img_size=\"full\" style=\"vc_box_border_circle_2\"][/vc_column_inner][vc_column_inner width=\"1/2\"][ultimate_heading main_heading=\"Official toll manufacturer partner\" heading_tag=\"h3\" main_heading_color=\"#039447\" alignment=\"left\"]With the trust and reputation built as a reliable manufacturer of animal feed additives and supplements in the global market, several world-renowned international brands have appointed FARMCHEMIE MANUFACTURERS as the official toll manufacturer partner. FARMCHEMIE MANUFACTURERS exports a wide range of products consisting of premixes, specialty feed additives, oral liquid supplements and pet supplements to various markets in South Asia, East Asia, Middle East and Africa.\r\n\r\nFARMCHEMIE, FEED CHEMIE &amp; FARMCHEMIE MANUFACTURERS currently operate under the ownership of our holding company, DYVESTA.\r\n\r\nDYEVSTA has become the pinnacle of Animal Nutrition and Health.\r\n\r\nDYVESTA is Dynamic, through our continuous evolution, growth and progress. DYVESTA is Diverse, in terms of both our business strategy and our community. DYVESTA is Devoted to our valuable business partners through exceptional service.[/ultimate_heading][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row full_width=\"stretch_row\" equal_height=\"yes\" bg_type=\"image\" parallax_style=\"vcpb-vz-jquery\" bg_image_new=\"id^3236|url^https://farmchemie.yasithawd.com/wp-content/uploads/2023/08/VISION-MISIONFF.png|caption^null|alt^null|title^VISION-&amp;-MISIONFF|description^null\" bg_image_repeat=\"no-repeat\" enable_overlay=\"enable_overlay_value\" overlay_color=\"#000000\" overlay_pattern=\"01.png\" overlay_pattern_opacity=\"5\" css=\".vc_custom_1692198837685{margin-top: 35px !important;padding-top: 65px !important;padding-bottom: 100px !important;}\"][vc_column][vc_row_inner equal_height=\"yes\"][vc_column_inner width=\"1/2\"][ult_animation_block animation=\"fadeInLeftBig\" animation_duration=\"2\" animation_delay=\"0\" animation_iteration_count=\"1\"][ultimate_heading main_heading=\"Vision\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\"]To be the customers’ first and best choice by ensuring outstanding satisfaction through a well-trained and dedicated team. Prompt and quality solutions to our customers’ requirements will determine the increase of return on investment for us.[/ultimate_heading][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/2\"][ult_animation_block animation=\"fadeInRightBig\" animation_duration=\"2\" animation_delay=\"0\" animation_iteration_count=\"1\"][ultimate_heading main_heading=\"Mission\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\"]To become a world renowned manufacturer of Animal Health products and a trusted partner among our stakeholders for our integrity as well as for providing effective solutions[/ultimate_heading][/ult_animation_block][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row css=\".vc_custom_1684836308288{margin-top: 15px !important;}\"][vc_column][ultimate_heading main_heading=\"Achievements\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;\"][/ultimate_heading][vc_row_inner gap=\"20\"][vc_column_inner width=\"1/2\" css=\".vc_custom_1691995519863{background-color: #f4ab20 !important;border: 1px solid #f4ab20 !important;border-radius: 35px !important;}\"][bsf-info-box icon_type=\"custom\" icon_img=\"id^3117|url^https://farmchemie.yasithawd.com/wp-content/uploads/2023/08/Pink_-H.png|caption^null|alt^null|title^Pink_-H|description^null\" img_width=\"60\" icon_style=\"advanced\" icon_border_style=\"solid\" icon_color_border=\"#ffffff\" icon_border_size=\"1\" icon_border_radius=\"500\" icon_border_spacing=\"1\" title=\"First Free Sale Certificate obtained from Veterinary Drug Control Authority (VDCA) for Veterinary Pharmaceuticals\" title_font_style=\"font-weight:bold;\" title_font_size=\"desktop:20px;\"][/bsf-info-box][/vc_column_inner][vc_column_inner width=\"1/2\" css=\".vc_custom_1691995661095{background-color: #722f8b !important;border: 1px solid #722f8b !important;border-radius: 35px !important;}\"][bsf-info-box icon_type=\"custom\" icon_img=\"id^3117|url^https://farmchemie.yasithawd.com/wp-content/uploads/2023/08/Pink_-H.png|caption^null|alt^null|title^Pink_-H|description^null\" img_width=\"60\" icon_style=\"advanced\" icon_border_style=\"solid\" icon_color_border=\"#ffffff\" icon_border_size=\"1\" icon_border_radius=\"500\" icon_border_spacing=\"1\" title=\"First ISO 9001: 2015 ,WHO-GMP Quality Management systems certified Animal Health company in Sri Lanka since August, 2012\" title_font_style=\"font-weight:bold;\" title_font_color=\"#ffffff\" title_font_size=\"desktop:20px;\"][/bsf-info-box][/vc_column_inner][/vc_row_inner][vc_row_inner gap=\"20\"][vc_column_inner width=\"1/2\" css=\".vc_custom_1691995661095{background-color: #722f8b !important;border: 1px solid #722f8b !important;border-radius: 35px !important;}\"][bsf-info-box icon_type=\"custom\" icon_img=\"id^3117|url^https://farmchemie.yasithawd.com/wp-content/uploads/2023/08/Pink_-H.png|caption^null|alt^null|title^Pink_-H|description^null\" img_width=\"60\" icon_style=\"advanced\" icon_border_style=\"solid\" icon_color_border=\"#ffffff\" icon_border_size=\"1\" icon_border_radius=\"500\" icon_border_spacing=\"1\" title=\"First FAMI-QS certified company in sri lanka\" title_font_style=\"font-weight:bold;\" title_font_color=\"#ffffff\" title_font_size=\"desktop:20px;\"][/bsf-info-box][/vc_column_inner][vc_column_inner width=\"1/2\" css=\".vc_custom_1691995519863{background-color: #f4ab20 !important;border: 1px solid #f4ab20 !important;border-radius: 35px !important;}\"][bsf-info-box icon_type=\"custom\" icon_img=\"id^3117|url^https://farmchemie.yasithawd.com/wp-content/uploads/2023/08/Pink_-H.png|caption^null|alt^null|title^Pink_-H|description^null\" img_width=\"60\" icon_style=\"advanced\" icon_border_style=\"solid\" icon_color_border=\"#ffffff\" icon_border_size=\"1\" icon_border_radius=\"500\" icon_border_spacing=\"1\" title=\"First Certificate of Ethical Trading certified in Livestock industry\" title_font_style=\"font-weight:bold;\" title_font_size=\"desktop:20px;\"][/bsf-info-box][/vc_column_inner][/vc_row_inner][vc_row_inner gap=\"20\"][vc_column_inner width=\"1/4\" css=\".vc_custom_1691996718116{border-radius: 35px !important;}\"][/vc_column_inner][vc_column_inner width=\"2/4\" css=\".vc_custom_1691995519863{background-color: #f4ab20 !important;border: 1px solid #f4ab20 !important;border-radius: 35px !important;}\"][bsf-info-box icon_type=\"custom\" icon_img=\"id^3117|url^https://farmchemie.yasithawd.com/wp-content/uploads/2023/08/Pink_-H.png|caption^null|alt^null|title^Pink_-H|description^null\" img_width=\"60\" icon_style=\"advanced\" icon_border_style=\"solid\" icon_color_border=\"#ffffff\" icon_border_size=\"1\" icon_border_radius=\"500\" icon_border_spacing=\"1\" title=\"First Silver awarded company at National Exports Awards in Livestock industry\" title_font_style=\"font-weight:bold;\" title_font_size=\"desktop:20px;\"][/bsf-info-box][/vc_column_inner][vc_column_inner width=\"1/4\"][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner width=\"1/6\"][/vc_column_inner][vc_column_inner width=\"2/3\"][vc_single_image image=\"3126\" img_size=\"full\" alignment=\"center\"][vc_single_image image=\"3125\" img_size=\"full\" alignment=\"center\"][/vc_column_inner][vc_column_inner width=\"1/6\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row][vc_column][ultimate_heading main_heading=\"Board Of Directors\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;margin-bottom:35px;\"][/ultimate_heading][ultimate_carousel slides_on_desk=\"3\" slides_on_mob=\"1\" arrow_style=\"square-bg\" arrow_bg_color=\"#039447\" arrow_color=\"#ffffff\" next_icon=\"ultsl-arrow-right6\" prev_icon=\"ultsl-arrow-left6\" dots_color=\"#039447\" item_animation=\"fadeIn\"][vc_row_inner][vc_column_inner][dt_fancy_image image_id=\"3170\" width=\"300\" border_radius=\"1px\" caption=\"off\" css=\".vc_custom_1692278936750{border-top-width: 1px !important;border-right-width: 1px !important;border-bottom-width: 1px !important;border-left-width: 1px !important;border-left-color: #059444 !important;border-left-style: solid !important;border-right-color: #059444 !important;border-right-style: solid !important;border-top-color: #059444 !important;border-top-style: solid !important;border-bottom-color: #059444 !important;border-bottom-style: solid !important;border-radius: 1px !important;}\"][ultimate_heading main_heading=\"Quisque sed nibh tristique\" heading_tag=\"h3\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;\"]Duis lorem risus, aliquet a auctor a, venenatis in dui. Praesent et eros et risus dapibus placerat hendrerit cursus magna.[/ultimate_heading][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner][dt_fancy_image image_id=\"3170\" width=\"300\" border_radius=\"1px\" caption=\"off\" css=\".vc_custom_1692278936750{border-top-width: 1px !important;border-right-width: 1px !important;border-bottom-width: 1px !important;border-left-width: 1px !important;border-left-color: #059444 !important;border-left-style: solid !important;border-right-color: #059444 !important;border-right-style: solid !important;border-top-color: #059444 !important;border-top-style: solid !important;border-bottom-color: #059444 !important;border-bottom-style: solid !important;border-radius: 1px !important;}\"][ultimate_heading main_heading=\"Quisque sed nibh tristique\" heading_tag=\"h3\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;\"]Duis lorem risus, aliquet a auctor a, venenatis in dui. Praesent et eros et risus dapibus placerat hendrerit cursus magna.[/ultimate_heading][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner][dt_fancy_image image_id=\"3171\" width=\"300\" border_radius=\"1px\" caption=\"off\" css=\".vc_custom_1692278929158{border-top-width: 1px !important;border-right-width: 1px !important;border-bottom-width: 1px !important;border-left-width: 1px !important;border-left-color: #059444 !important;border-left-style: solid !important;border-right-color: #059444 !important;border-right-style: solid !important;border-top-color: #059444 !important;border-top-style: solid !important;border-bottom-color: #059444 !important;border-bottom-style: solid !important;border-radius: 1px !important;}\"][ultimate_heading main_heading=\"Quisque sed nibh tristique\" heading_tag=\"h3\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;\"]Duis lorem risus, aliquet a auctor a, venenatis in dui. Praesent et eros et risus dapibus placerat hendrerit cursus magna.[/ultimate_heading][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner][dt_fancy_image image_id=\"3172\" width=\"300\" border_radius=\"1px\" caption=\"off\" css=\".vc_custom_1692278922309{border-top-width: 1px !important;border-right-width: 1px !important;border-bottom-width: 1px !important;border-left-width: 1px !important;border-left-color: #059444 !important;border-left-style: solid !important;border-right-color: #059444 !important;border-right-style: solid !important;border-top-color: #059444 !important;border-top-style: solid !important;border-bottom-color: #059444 !important;border-bottom-style: solid !important;border-radius: 1px !important;}\"][ultimate_heading main_heading=\"Quisque sed nibh tristique\" heading_tag=\"h3\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;\"]Duis lorem risus, aliquet a auctor a, venenatis in dui. Praesent et eros et risus dapibus placerat hendrerit cursus magna.[/ultimate_heading][/vc_column_inner][/vc_row_inner][/ultimate_carousel][/vc_column][/vc_row][vc_row][vc_column][ultimate_heading main_heading=\"Board Of Directors\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;margin-bottom:35px;\"][/ultimate_heading][vc_row_inner][vc_column_inner width=\"1/3\"][ult_animation_block animation=\"fadeInUp\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][dt_fancy_image image_id=\"3172\" width=\"300\" border_radius=\"1px\" caption=\"off\" css=\".vc_custom_1692278922309{border-top-width: 1px !important;border-right-width: 1px !important;border-bottom-width: 1px !important;border-left-width: 1px !important;border-left-color: #059444 !important;border-left-style: solid !important;border-right-color: #059444 !important;border-right-style: solid !important;border-top-color: #059444 !important;border-top-style: solid !important;border-bottom-color: #059444 !important;border-bottom-style: solid !important;border-radius: 1px !important;}\"][ultimate_heading main_heading=\"Quisque sed nibh tristique\" heading_tag=\"h3\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;\"]\r\n<ul>\r\n 	<li>Duis lorem risus, aliquet a auctor a, venenatis in dui. Praesent et eros et risus dapibus placerat hendrerit cursus magna.</li>\r\n 	<li>Praesent et eros et risus dapibus placerat hendrerit cursus magna.</li>\r\n 	<li>aliquet a auctor a, venenatis in dui.</li>\r\n</ul>\r\n[/ultimate_heading][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/3\"][ult_animation_block animation=\"fadeInDown\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][dt_fancy_image image_id=\"3171\" width=\"300\" border_radius=\"1px\" caption=\"off\" css=\".vc_custom_1692278929158{border-top-width: 1px !important;border-right-width: 1px !important;border-bottom-width: 1px !important;border-left-width: 1px !important;border-left-color: #059444 !important;border-left-style: solid !important;border-right-color: #059444 !important;border-right-style: solid !important;border-top-color: #059444 !important;border-top-style: solid !important;border-bottom-color: #059444 !important;border-bottom-style: solid !important;border-radius: 1px !important;}\"][ultimate_heading main_heading=\"Quisque sed nibh tristique\" heading_tag=\"h3\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;\"]\r\n<ul>\r\n 	<li>Duis lorem risus, aliquet a auctor a, venenatis in dui. Praesent et eros et risus dapibus placerat hendrerit cursus magna.</li>\r\n 	<li>Praesent et eros et risus dapibus placerat hendrerit cursus magna.</li>\r\n 	<li>aliquet a auctor a, venenatis in dui.</li>\r\n</ul>\r\n[/ultimate_heading][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/3\"][ult_animation_block animation=\"fadeInUp\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][dt_fancy_image image_id=\"3170\" width=\"300\" border_radius=\"1px\" caption=\"off\" css=\".vc_custom_1692278936750{border-top-width: 1px !important;border-right-width: 1px !important;border-bottom-width: 1px !important;border-left-width: 1px !important;border-left-color: #059444 !important;border-left-style: solid !important;border-right-color: #059444 !important;border-right-style: solid !important;border-top-color: #059444 !important;border-top-style: solid !important;border-bottom-color: #059444 !important;border-bottom-style: solid !important;border-radius: 1px !important;}\"][ultimate_heading main_heading=\"Quisque sed nibh tristique\" heading_tag=\"h3\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;\"]\r\n<ul>\r\n 	<li>Duis lorem risus, aliquet a auctor a, venenatis in dui. Praesent et eros et risus dapibus placerat hendrerit cursus magna.</li>\r\n 	<li>Praesent et eros et risus dapibus placerat hendrerit cursus magna.</li>\r\n 	<li>aliquet a auctor a, venenatis in dui.</li>\r\n</ul>\r\n[/ultimate_heading][/ult_animation_block][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row][vc_column][ultimate_heading main_heading=\"Executive Directors\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;margin-bottom:35px;\"][/ultimate_heading][vc_row_inner][vc_column_inner width=\"1/5\"][ult_animation_block animation=\"fadeInUp\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][dt_fancy_image image_id=\"3172\" width=\"300\" border_radius=\"1px\" caption=\"off\" css=\".vc_custom_1692278922309{border-top-width: 1px !important;border-right-width: 1px !important;border-bottom-width: 1px !important;border-left-width: 1px !important;border-left-color: #059444 !important;border-left-style: solid !important;border-right-color: #059444 !important;border-right-style: solid !important;border-top-color: #059444 !important;border-top-style: solid !important;border-bottom-color: #059444 !important;border-bottom-style: solid !important;border-radius: 1px !important;}\"][ultimate_heading main_heading=\"Quisque sed nibh tristique\" heading_tag=\"h3\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;\"]\r\n<ul>\r\n 	<li>Duis lorem risus, aliquet a auctor a, venenatis in dui. Praesent et eros et risus dapibus placerat hendrerit cursus magna.</li>\r\n 	<li>Praesent et eros et risus dapibus placerat hendrerit cursus magna.</li>\r\n 	<li>aliquet a auctor a, venenatis in dui.</li>\r\n</ul>\r\n[/ultimate_heading][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/5\"][ult_animation_block animation=\"fadeInDown\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][dt_fancy_image image_id=\"3171\" width=\"300\" border_radius=\"1px\" caption=\"off\" css=\".vc_custom_1692278929158{border-top-width: 1px !important;border-right-width: 1px !important;border-bottom-width: 1px !important;border-left-width: 1px !important;border-left-color: #059444 !important;border-left-style: solid !important;border-right-color: #059444 !important;border-right-style: solid !important;border-top-color: #059444 !important;border-top-style: solid !important;border-bottom-color: #059444 !important;border-bottom-style: solid !important;border-radius: 1px !important;}\"][ultimate_heading main_heading=\"Quisque sed nibh tristique\" heading_tag=\"h3\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;\"]\r\n<ul>\r\n 	<li>Duis lorem risus, aliquet a auctor a, venenatis in dui. Praesent et eros et risus dapibus placerat hendrerit cursus magna.</li>\r\n 	<li>Praesent et eros et risus dapibus placerat hendrerit cursus magna.</li>\r\n 	<li>aliquet a auctor a, venenatis in dui.</li>\r\n</ul>\r\n[/ultimate_heading][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/5\"][ult_animation_block animation=\"fadeInUp\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][dt_fancy_image image_id=\"3170\" width=\"300\" border_radius=\"1px\" caption=\"off\" css=\".vc_custom_1692278936750{border-top-width: 1px !important;border-right-width: 1px !important;border-bottom-width: 1px !important;border-left-width: 1px !important;border-left-color: #059444 !important;border-left-style: solid !important;border-right-color: #059444 !important;border-right-style: solid !important;border-top-color: #059444 !important;border-top-style: solid !important;border-bottom-color: #059444 !important;border-bottom-style: solid !important;border-radius: 1px !important;}\"][ultimate_heading main_heading=\"Quisque sed nibh tristique\" heading_tag=\"h3\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;\"]\r\n<ul>\r\n 	<li>Duis lorem risus, aliquet a auctor a, venenatis in dui. Praesent et eros et risus dapibus placerat hendrerit cursus magna.</li>\r\n 	<li>Praesent et eros et risus dapibus placerat hendrerit cursus magna.</li>\r\n 	<li>aliquet a auctor a, venenatis in dui.</li>\r\n</ul>\r\n[/ultimate_heading][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/5\"][ult_animation_block animation=\"fadeInDown\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][dt_fancy_image image_id=\"3170\" width=\"300\" border_radius=\"1px\" caption=\"off\" css=\".vc_custom_1692278936750{border-top-width: 1px !important;border-right-width: 1px !important;border-bottom-width: 1px !important;border-left-width: 1px !important;border-left-color: #059444 !important;border-left-style: solid !important;border-right-color: #059444 !important;border-right-style: solid !important;border-top-color: #059444 !important;border-top-style: solid !important;border-bottom-color: #059444 !important;border-bottom-style: solid !important;border-radius: 1px !important;}\"][ultimate_heading main_heading=\"Quisque sed nibh tristique\" heading_tag=\"h3\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;\"]\r\n<ul>\r\n 	<li>Duis lorem risus, aliquet a auctor a, venenatis in dui. Praesent et eros et risus dapibus placerat hendrerit cursus magna.</li>\r\n 	<li>Praesent et eros et risus dapibus placerat hendrerit cursus magna.</li>\r\n 	<li>aliquet a auctor a, venenatis in dui.</li>\r\n</ul>\r\n[/ultimate_heading][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/5\"][ult_animation_block animation=\"fadeInDown\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][dt_fancy_image image_id=\"3171\" width=\"300\" border_radius=\"1px\" caption=\"off\" css=\".vc_custom_1692278929158{border-top-width: 1px !important;border-right-width: 1px !important;border-bottom-width: 1px !important;border-left-width: 1px !important;border-left-color: #059444 !important;border-left-style: solid !important;border-right-color: #059444 !important;border-right-style: solid !important;border-top-color: #059444 !important;border-top-style: solid !important;border-bottom-color: #059444 !important;border-bottom-style: solid !important;border-radius: 1px !important;}\"][ultimate_heading main_heading=\"Quisque sed nibh tristique\" heading_tag=\"h3\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;\"]\r\n<ul>\r\n 	<li>Duis lorem risus, aliquet a auctor a, venenatis in dui. Praesent et eros et risus dapibus placerat hendrerit cursus magna.</li>\r\n 	<li>Praesent et eros et risus dapibus placerat hendrerit cursus magna.</li>\r\n 	<li>aliquet a auctor a, venenatis in dui.</li>\r\n</ul>\r\n[/ultimate_heading][/ult_animation_block][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner width=\"2/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row][vc_column][ultimate_heading main_heading=\"Next Generation\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;margin-bottom:35px;\"][/ultimate_heading][vc_row_inner][vc_column_inner width=\"1/2\"][ult_animation_block animation=\"fadeInUp\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][dt_fancy_image image_id=\"3172\" width=\"300\" border_radius=\"1px\" caption=\"off\" css=\".vc_custom_1692278922309{border-top-width: 1px !important;border-right-width: 1px !important;border-bottom-width: 1px !important;border-left-width: 1px !important;border-left-color: #059444 !important;border-left-style: solid !important;border-right-color: #059444 !important;border-right-style: solid !important;border-top-color: #059444 !important;border-top-style: solid !important;border-bottom-color: #059444 !important;border-bottom-style: solid !important;border-radius: 1px !important;}\"][ultimate_heading main_heading=\"Quisque sed nibh tristique\" heading_tag=\"h3\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;\"]\r\n<ul>\r\n 	<li>Duis lorem risus, aliquet a auctor a, venenatis in dui. Praesent et eros et risus dapibus placerat hendrerit cursus magna.</li>\r\n 	<li>Praesent et eros et risus dapibus placerat hendrerit cursus magna.</li>\r\n 	<li>aliquet a auctor a, venenatis in dui.</li>\r\n</ul>\r\n[/ultimate_heading][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/2\"][ult_animation_block animation=\"fadeInDown\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][dt_fancy_image image_id=\"3171\" width=\"300\" border_radius=\"1px\" caption=\"off\" css=\".vc_custom_1692278929158{border-top-width: 1px !important;border-right-width: 1px !important;border-bottom-width: 1px !important;border-left-width: 1px !important;border-left-color: #059444 !important;border-left-style: solid !important;border-right-color: #059444 !important;border-right-style: solid !important;border-top-color: #059444 !important;border-top-style: solid !important;border-bottom-color: #059444 !important;border-bottom-style: solid !important;border-radius: 1px !important;}\"][ultimate_heading main_heading=\"Quisque sed nibh tristique\" heading_tag=\"h3\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;\"]\r\n<ul>\r\n 	<li>Duis lorem risus, aliquet a auctor a, venenatis in dui. Praesent et eros et risus dapibus placerat hendrerit cursus magna.</li>\r\n 	<li>Praesent et eros et risus dapibus placerat hendrerit cursus magna.</li>\r\n 	<li>aliquet a auctor a, venenatis in dui.</li>\r\n</ul>\r\n[/ultimate_heading][/ult_animation_block][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row]','About us','','inherit','closed','closed','','2917-revision-v1','','','2023-08-18 11:49:20','2023-08-18 11:49:20','',2917,'https://farmchemie.yasithawd.com/?p=3253',0,'revision','',0),(3128,1,'2023-08-14 14:18:05','2023-08-14 14:18:05','','FEED-ADDITIVES6','','inherit','open','closed','','feed-additives6','','','2023-08-14 14:18:05','2023-08-14 14:18:05','',3098,'https://farmchemie.yasithawd.com/wp-content/uploads/2023/08/FEED-ADDITIVES6.png',0,'attachment','image/png',0),(3129,1,'2023-08-14 14:19:51','2023-08-14 14:19:51','','Feed-Additives_1000px-x-500px','','inherit','open','closed','','feed-additives_1000px-x-500px','','','2023-08-14 14:19:51','2023-08-14 14:19:51','',2964,'https://farmchemie.yasithawd.com/wp-content/uploads/2023/08/Feed-Additives_1000px-x-500px.png',0,'attachment','image/png',0),(3130,1,'2023-08-14 14:20:06','2023-08-14 14:20:06','[vc_row full_width=\"stretch_row\" css=\".vc_custom_1689577528817{padding-bottom: 50px !important;}\"][vc_column css=\".vc_custom_1689577454678{margin-bottom: 50px !important;}\"][vc_row_inner css=\".vc_custom_1689577559805{border-bottom-width: 1px !important;padding-top: 35px !important;padding-bottom: 35px !important;border-bottom-color: #079547 !important;border-bottom-style: solid !important;border-radius: 1px !important;}\"][vc_column_inner width=\"2/3\"][ultimate_heading main_heading=\"Feed Additives\" heading_tag=\"h3\" main_heading_color=\"#079547\" sub_heading_color=\"#792c8a\" alignment=\"left\"]<strong>Premixes/ Specialty Feed Additives/ Dilution of Active Ingredients/ Concentrates</strong><strong>\r\n</strong>Pack sizes – 1,000 kg, 500 kg, 50 kg, 25 kg, 15 kg, 10 kg, 5 kg, 1kg[/ultimate_heading][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_single_image image=\"3129\" img_size=\"full\"][/vc_column_inner][/vc_row_inner][vc_row_inner css=\".vc_custom_1689577609020{border-bottom-width: 1px !important;padding-top: 35px !important;padding-bottom: 35px !important;border-bottom-color: #079547 !important;border-bottom-style: solid !important;border-radius: 1px !important;}\"][vc_column_inner width=\"1/3\"][vc_single_image][/vc_column_inner][vc_column_inner width=\"2/3\"][ultimate_heading main_heading=\"Oral Supplements\" heading_tag=\"h3\" main_heading_color=\"#079547\" sub_heading_color=\"#792c8a\" alignment=\"left\"]<strong>Liquids</strong><strong>\r\n</strong>Pack sizes – 1,000 L, 250 L, 50 L, 25 L, 5 L, 1 L, 500 mL, 250 mL, 100 mL, 50 mL\r\n\r\n<strong>Water soluble powders</strong><strong>\r\n</strong>Pack sizes – 25 kg, 15 kg, 10 kg, 5 kg, 1kg[/ultimate_heading][/vc_column_inner][/vc_row_inner][vc_row_inner css=\".vc_custom_1689577609020{border-bottom-width: 1px !important;padding-top: 35px !important;padding-bottom: 35px !important;border-bottom-color: #079547 !important;border-bottom-style: solid !important;border-radius: 1px !important;}\"][vc_column_inner width=\"2/3\"][ultimate_heading main_heading=\"Tablets\" heading_tag=\"h3\" main_heading_color=\"#079547\" sub_heading_color=\"#792c8a\" alignment=\"left\"]<strong>Supplementary tablets for pet care</strong>\r\nTablet sizes – 1 to 5 g\r\n\r\n<strong>Boluses</strong><strong>\r\n</strong>Tablet sizes – 5 to 25 g[/ultimate_heading][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_single_image][/vc_column_inner][/vc_row_inner][vc_row_inner css=\".vc_custom_1689577609020{border-bottom-width: 1px !important;padding-top: 35px !important;padding-bottom: 35px !important;border-bottom-color: #079547 !important;border-bottom-style: solid !important;border-radius: 1px !important;}\"][vc_column_inner width=\"1/3\"][vc_single_image][/vc_column_inner][vc_column_inner width=\"2/3\"][ultimate_heading main_heading=\"Veterinary Pharmaceuticals\" heading_tag=\"h3\" main_heading_color=\"#079547\" sub_heading_color=\"#792c8a\" alignment=\"left\"]<strong>Deworming Solutions/ Antibiotics/ Antimicrobials/ Wound care solutions</strong><strong>\r\n</strong>Form – Liquid, WSP[/ultimate_heading][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row css=\".vc_custom_1689578783264{padding-top: 50px !important;padding-bottom: 50px !important;}\"][vc_column][ultimate_heading main_heading=\"Our manufacturing facility is certified with FAMI-QS, WHO GMP &amp; ISO 9001:2015 International Quality standards.\" main_heading_color=\"#079547\" sub_heading_color=\"#792c8a\" alignment=\"left\"]We select only the <strong><em>best</em></strong> and <strong><em>most reputed</em></strong> Raw Material &amp; Packing Material Suppliers for the production of our finished goods.[/ultimate_heading][vc_row_inner equal_height=\"yes\" content_placement=\"middle\"][vc_column_inner width=\"1/5\" offset=\"vc_hidden-lg vc_hidden-md\"][vc_single_image image=\"3062\" img_size=\"full\" alignment=\"center\"][/vc_column_inner][vc_column_inner width=\"1/5\" css=\".vc_custom_1691846530645{border-right-width: 1px !important;border-left-width: 1px !important;border-left-color: #000000 !important;border-left-style: solid !important;border-right-color: #000000 !important;border-right-style: solid !important;border-radius: 1px !important;}\" offset=\"vc_hidden-lg vc_hidden-md\"][vc_single_image image=\"3063\" img_size=\"full\" alignment=\"center\"][/vc_column_inner][vc_column_inner width=\"1/5\" offset=\"vc_hidden-lg vc_hidden-md\"][vc_single_image image=\"3064\" img_size=\"full\" alignment=\"center\"][/vc_column_inner][vc_column_inner width=\"1/5\" css=\".vc_custom_1691846545469{border-right-width: 1px !important;border-left-width: 1px !important;border-left-color: #000000 !important;border-left-style: solid !important;border-right-color: #000000 !important;border-right-style: solid !important;border-radius: 1px !important;}\" offset=\"vc_hidden-lg vc_hidden-md\"][vc_single_image image=\"3065\" img_size=\"full\" alignment=\"center\"][/vc_column_inner][vc_column_inner width=\"1/5\" offset=\"vc_hidden-lg vc_hidden-md\"][vc_single_image image=\"3066\" img_size=\"full\" alignment=\"center\"][/vc_column_inner][/vc_row_inner][vc_row_inner equal_height=\"yes\" content_placement=\"middle\"][vc_column_inner width=\"1/4\" css=\".vc_custom_1691846563021{border-right-width: 1px !important;border-right-color: #000000 !important;border-right-style: solid !important;border-radius: 1px !important;}\" offset=\"vc_hidden-lg vc_hidden-md\"][vc_single_image image=\"3067\" img_size=\"full\" alignment=\"center\"][/vc_column_inner][vc_column_inner width=\"1/4\" css=\".vc_custom_1691846569845{border-right-width: 1px !important;border-right-color: #000000 !important;border-right-style: solid !important;border-radius: 1px !important;}\" offset=\"vc_hidden-lg vc_hidden-md\"][vc_single_image image=\"3068\" img_size=\"full\" alignment=\"center\"][/vc_column_inner][vc_column_inner width=\"1/4\" css=\".vc_custom_1691846576949{border-right-width: 1px !important;border-right-color: #000000 !important;border-right-style: solid !important;border-radius: 1px !important;}\" offset=\"vc_hidden-lg vc_hidden-md\"][vc_single_image image=\"3069\" img_size=\"full\" alignment=\"center\"][/vc_column_inner][vc_column_inner width=\"1/4\" offset=\"vc_hidden-lg vc_hidden-md\"][vc_single_image image=\"3070\" img_size=\"full\" alignment=\"center\"][/vc_column_inner][/vc_row_inner][vc_row_inner disable_element=\"yes\"][vc_column_inner width=\"1/3\"][vc_single_image image=\"2981\" img_size=\"full\"][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_single_image image=\"2982\" img_size=\"full\"][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_single_image image=\"2983\" img_size=\"full\"][/vc_column_inner][/vc_row_inner][vc_row_inner disable_element=\"yes\"][vc_column_inner width=\"1/6\"][/vc_column_inner][vc_column_inner width=\"2/3\"][vc_single_image image=\"2984\" img_size=\"full\"][/vc_column_inner][vc_column_inner width=\"1/6\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row full_width=\"stretch_row_content_no_spaces\"][vc_column offset=\"vc_hidden-sm vc_hidden-xs\"][vc_single_image image=\"3120\" img_size=\"full\" alignment=\"center\"][/vc_column][/vc_row][vc_row css=\".vc_custom_1689578794814{padding-top: 50px !important;padding-bottom: 50px !important;}\"][vc_column][ultimate_heading main_heading=\"Supplier selection and procurement criteria\" main_heading_color=\"#079547\" sub_heading_color=\"#792c8a\" alignment=\"left\"][/ultimate_heading][vc_row_inner css=\".vc_custom_1689578812611{margin-top: 50px !important;}\"][vc_column_inner width=\"1/2\"][dt_vc_list dividers=\"false\"]\r\n<ul>\r\n 	<li>Check supplier’s quality certification to ensure raw material quality</li>\r\n 	<li>New vendor validation protocol - In case of a change in the supplier, obtain samples and validate in the lab</li>\r\n</ul>\r\n[/dt_vc_list][/vc_column_inner][vc_column_inner width=\"1/2\"][dt_vc_list dividers=\"false\"]\r\n<ul>\r\n 	<li>Income inspection carried out on every consignment (Tested for Chemical Assay &amp; Physical Properties)</li>\r\n 	<li>Quality department approval required to be used in the production</li>\r\n</ul>\r\n[/dt_vc_list][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row css=\".vc_custom_1689578794814{padding-top: 50px !important;padding-bottom: 50px !important;}\"][vc_column][ultimate_heading main_heading=\"Please contact us to start your Marketing Journey with a reliable manufacturing partnership with FARMCHEMIE\" heading_tag=\"h3\" main_heading_color=\"#079547\" sub_heading_color=\"#792c8a\" alignment=\"left\"][/ultimate_heading][vc_row_inner css=\".vc_custom_1689578812611{margin-top: 50px !important;}\"][vc_column_inner width=\"1/2\"][bsf-info-box icon_size=\"32\" title=\"International Markets\" pos=\"square_box\" box_border_style=\"solid\" box_border_width=\"1\" box_border_color=\"#792c8a\" title_font_color=\"#079547\" desc_font_color=\"#792c8a\" title_font_size=\"desktop:25px;\"]<strong>Email :</strong> <a href=\"mailto:sales.export@farmchemie.com\"><u>sales.export@farmchemie.com</u></a>\r\n<strong>Tel No :</strong> + 94 76 577 2975[/bsf-info-box][/vc_column_inner][vc_column_inner width=\"1/2\"][bsf-info-box icon_size=\"32\" title=\"Sri Lankan Market\" pos=\"square_box\" box_border_style=\"solid\" box_border_width=\"1\" box_border_color=\"#079547\" title_font_color=\"#079547\" desc_font_color=\"#792c8a\" title_font_size=\"desktop:25px;\"]Email : <a href=\"mailto:sales.local@farmchemie.com\"><u>sales.local@farmchemie.com</u></a>\r\nTel No : +94 74 224 6947[/bsf-info-box][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row]','Manufacturing','','inherit','closed','closed','','2964-revision-v1','','','2023-08-14 14:20:06','2023-08-14 14:20:06','',2964,'https://farmchemie.yasithawd.com/?p=3130',0,'revision','',0),(2985,1,'2023-07-17 07:18:38','2023-07-17 07:18:38','[vc_row full_width=\"stretch_row\" css=\".vc_custom_1689577528817{padding-bottom: 50px !important;}\"][vc_column css=\".vc_custom_1689577454678{margin-bottom: 50px !important;}\"][vc_row_inner css=\".vc_custom_1689577559805{border-bottom-width: 1px !important;padding-top: 35px !important;padding-bottom: 35px !important;border-bottom-color: #079547 !important;border-bottom-style: solid !important;border-radius: 1px !important;}\"][vc_column_inner width=\"2/3\"][ultimate_heading main_heading=\"Feed Additives\" heading_tag=\"h3\" main_heading_color=\"#079547\" sub_heading_color=\"#792c8a\" alignment=\"left\" margin_design_tab_text=\"\"]<strong>Premixes/ Specialty Feed Additives/ Dilution of Active Ingredients/ Concentrates</strong><strong>\r\n</strong>Pack sizes – 1,000 kg, 500 kg, 50 kg, 25 kg, 15 kg, 10 kg, 5 kg, 1kg[/ultimate_heading][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_single_image][/vc_column_inner][/vc_row_inner][vc_row_inner css=\".vc_custom_1689577609020{border-bottom-width: 1px !important;padding-top: 35px !important;padding-bottom: 35px !important;border-bottom-color: #079547 !important;border-bottom-style: solid !important;border-radius: 1px !important;}\"][vc_column_inner width=\"1/3\"][vc_single_image][/vc_column_inner][vc_column_inner width=\"2/3\"][ultimate_heading main_heading=\"Oral Supplements\" main_heading_color=\"#079547\" sub_heading_color=\"#792c8a\" alignment=\"left\"]<strong>Liquids</strong><strong>\r\n</strong>Pack sizes – 1,000 L, 250 L, 50 L, 25 L, 5 L, 1 L, 500 mL, 250 mL, 100 mL, 50 mL\r\n\r\n<strong>Water soluble powders</strong><strong>\r\n</strong>Pack sizes – 25 kg, 15 kg, 10 kg, 5 kg, 1kg[/ultimate_heading][/vc_column_inner][/vc_row_inner][vc_row_inner css=\".vc_custom_1689577609020{border-bottom-width: 1px !important;padding-top: 35px !important;padding-bottom: 35px !important;border-bottom-color: #079547 !important;border-bottom-style: solid !important;border-radius: 1px !important;}\"][vc_column_inner width=\"2/3\"][ultimate_heading main_heading=\"Tablets\" main_heading_color=\"#079547\" sub_heading_color=\"#792c8a\" alignment=\"left\" margin_design_tab_text=\"\"]<strong>Supplementary tablets for pet care</strong>\r\nTablet sizes – 1 to 5 g\r\n\r\n<strong>Boluses</strong><strong>\r\n</strong>Tablet sizes – 5 to 25 g[/ultimate_heading][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_single_image][/vc_column_inner][/vc_row_inner][vc_row_inner css=\".vc_custom_1689577609020{border-bottom-width: 1px !important;padding-top: 35px !important;padding-bottom: 35px !important;border-bottom-color: #079547 !important;border-bottom-style: solid !important;border-radius: 1px !important;}\"][vc_column_inner width=\"1/3\"][vc_single_image][/vc_column_inner][vc_column_inner width=\"2/3\"][ultimate_heading main_heading=\"Veterinary Pharmaceuticals\" main_heading_color=\"#079547\" sub_heading_color=\"#792c8a\" alignment=\"left\" margin_design_tab_text=\"\"]<strong>Deworming Solutions/ Antibiotics/ Antimicrobials/ Wound care solutions</strong><strong>\r\n</strong>Form – Liquid, WSP[/ultimate_heading][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row][vc_column][ultimate_heading main_heading=\"Our manufacturing facility is certified with FAMI-QS, WHO GMP &amp; ISO 9001:2015 International Quality standards.\" heading_tag=\"h3\" main_heading_color=\"#079547\" sub_heading_color=\"#792c8a\" alignment=\"left\" margin_design_tab_text=\"\"]We select only the <strong><em>best</em></strong> and <strong><em>most reputed</em></strong> Raw Material &amp; Packing Material Suppliers for the production of our finished goods.[/ultimate_heading][vc_row_inner][vc_column_inner width=\"1/3\"][vc_single_image image=\"2981\" img_size=\"full\"][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_single_image image=\"2982\" img_size=\"full\"][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_single_image image=\"2983\" img_size=\"full\"][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner width=\"1/6\"][/vc_column_inner][vc_column_inner width=\"2/3\"][vc_single_image image=\"2984\" img_size=\"full\"][/vc_column_inner][vc_column_inner width=\"1/6\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row]','Manufacturing','','inherit','closed','closed','','2964-revision-v1','','','2023-07-17 07:18:38','2023-07-17 07:18:38','',2964,'https://farmchemie.yasithawd.com/?p=2985',0,'revision','',0),(2986,1,'2023-07-17 07:21:04','2023-07-17 07:21:04','[vc_row full_width=\"stretch_row\" css=\".vc_custom_1689577528817{padding-bottom: 50px !important;}\"][vc_column css=\".vc_custom_1689577454678{margin-bottom: 50px !important;}\"][vc_row_inner css=\".vc_custom_1689577559805{border-bottom-width: 1px !important;padding-top: 35px !important;padding-bottom: 35px !important;border-bottom-color: #079547 !important;border-bottom-style: solid !important;border-radius: 1px !important;}\"][vc_column_inner width=\"2/3\"][ultimate_heading main_heading=\"Feed Additives\" heading_tag=\"h3\" main_heading_color=\"#079547\" sub_heading_color=\"#792c8a\" alignment=\"left\"]<strong>Premixes/ Specialty Feed Additives/ Dilution of Active Ingredients/ Concentrates</strong><strong>\r\n</strong>Pack sizes – 1,000 kg, 500 kg, 50 kg, 25 kg, 15 kg, 10 kg, 5 kg, 1kg[/ultimate_heading][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_single_image][/vc_column_inner][/vc_row_inner][vc_row_inner css=\".vc_custom_1689577609020{border-bottom-width: 1px !important;padding-top: 35px !important;padding-bottom: 35px !important;border-bottom-color: #079547 !important;border-bottom-style: solid !important;border-radius: 1px !important;}\"][vc_column_inner width=\"1/3\"][vc_single_image][/vc_column_inner][vc_column_inner width=\"2/3\"][ultimate_heading main_heading=\"Oral Supplements\" heading_tag=\"h3\" main_heading_color=\"#079547\" sub_heading_color=\"#792c8a\" alignment=\"left\" margin_design_tab_text=\"\"]<strong>Liquids</strong><strong>\r\n</strong>Pack sizes – 1,000 L, 250 L, 50 L, 25 L, 5 L, 1 L, 500 mL, 250 mL, 100 mL, 50 mL\r\n\r\n<strong>Water soluble powders</strong><strong>\r\n</strong>Pack sizes – 25 kg, 15 kg, 10 kg, 5 kg, 1kg[/ultimate_heading][/vc_column_inner][/vc_row_inner][vc_row_inner css=\".vc_custom_1689577609020{border-bottom-width: 1px !important;padding-top: 35px !important;padding-bottom: 35px !important;border-bottom-color: #079547 !important;border-bottom-style: solid !important;border-radius: 1px !important;}\"][vc_column_inner width=\"2/3\"][ultimate_heading main_heading=\"Tablets\" heading_tag=\"h3\" main_heading_color=\"#079547\" sub_heading_color=\"#792c8a\" alignment=\"left\" margin_design_tab_text=\"\"]<strong>Supplementary tablets for pet care</strong>\r\nTablet sizes – 1 to 5 g\r\n\r\n<strong>Boluses</strong><strong>\r\n</strong>Tablet sizes – 5 to 25 g[/ultimate_heading][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_single_image][/vc_column_inner][/vc_row_inner][vc_row_inner css=\".vc_custom_1689577609020{border-bottom-width: 1px !important;padding-top: 35px !important;padding-bottom: 35px !important;border-bottom-color: #079547 !important;border-bottom-style: solid !important;border-radius: 1px !important;}\"][vc_column_inner width=\"1/3\"][vc_single_image][/vc_column_inner][vc_column_inner width=\"2/3\"][ultimate_heading main_heading=\"Veterinary Pharmaceuticals\" heading_tag=\"h3\" main_heading_color=\"#079547\" sub_heading_color=\"#792c8a\" alignment=\"left\" margin_design_tab_text=\"\"]<strong>Deworming Solutions/ Antibiotics/ Antimicrobials/ Wound care solutions</strong><strong>\r\n</strong>Form – Liquid, WSP[/ultimate_heading][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row][vc_column][ultimate_heading main_heading=\"Our manufacturing facility is certified with FAMI-QS, WHO GMP &amp; ISO 9001:2015 International Quality standards.\" heading_tag=\"h3\" main_heading_color=\"#079547\" sub_heading_color=\"#792c8a\" alignment=\"left\"]We select only the <strong><em>best</em></strong> and <strong><em>most reputed</em></strong> Raw Material &amp; Packing Material Suppliers for the production of our finished goods.[/ultimate_heading][vc_row_inner][vc_column_inner width=\"1/3\"][vc_single_image image=\"2981\" img_size=\"full\"][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_single_image image=\"2982\" img_size=\"full\"][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_single_image image=\"2983\" img_size=\"full\"][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner width=\"1/6\"][/vc_column_inner][vc_column_inner width=\"2/3\"][vc_single_image image=\"2984\" img_size=\"full\"][/vc_column_inner][vc_column_inner width=\"1/6\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row]','Manufacturing','','inherit','closed','closed','','2964-revision-v1','','','2023-07-17 07:21:04','2023-07-17 07:21:04','',2964,'https://farmchemie.yasithawd.com/?p=2986',0,'revision','',0),(3199,1,'2023-08-16 08:56:39','2023-08-16 08:56:39','[vc_row][vc_column][ultimate_heading main_heading=\"Our History\" main_heading_color=\"#762888\" alignment=\"left\"][/ultimate_heading][vc_row_inner css=\".vc_custom_1686713784619{margin-top: 35px !important;}\"][vc_column_inner width=\"1/3\"][vc_single_image image=\"3106\" img_size=\"full\"][/vc_column_inner][vc_column_inner width=\"2/3\"][ultimate_heading main_heading=\"Founded in 2002\" heading_tag=\"h3\" main_heading_color=\"#039447\" alignment=\"left\" sub_heading_font_size=\"desktop:18px;\"]Founded in 2002 by Mr. Uditha Wanigasinghe, an agriculturist who had a mission to aid valuable livestock producers in the country to enhance the yield and profitability of production. FARMCHEMIE introduced unprecedented solutions and consistent technical services to gain our customers’ trust and became the market leader in animal health products in 2006 within just four years.[/ultimate_heading][/vc_column_inner][/vc_row_inner][vc_row_inner rtl_reverse=\"yes\" css=\".vc_custom_1686714025469{margin-top: 35px !important;}\"][vc_column_inner width=\"2/3\"][ultimate_heading main_heading=\"2006\" heading_tag=\"h3\" main_heading_color=\"#039447\" alignment=\"left\"]In 2006, the Sri Lankan poultry industry was affected with Avian Influenza which became a difficult period for the growth of FARMCHEMIE. This was the key factor in our decision to diversify into Agro Products. PLANTCHEM &amp; PLANTSEEDS were established to offer solutions in Agro specialty fertilizers, pesticides and seeds to invaluable cultivators.[/ultimate_heading][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_single_image image=\"3107\" img_size=\"full\"][/vc_column_inner][/vc_row_inner][vc_row_inner css=\".vc_custom_1686713784619{margin-top: 35px !important;}\"][vc_column_inner width=\"1/3\"][vc_single_image image=\"3108\" img_size=\"full\"][/vc_column_inner][vc_column_inner width=\"2/3\"][ultimate_heading main_heading=\"2010\" heading_tag=\"h3\" main_heading_color=\"#039447\" alignment=\"left\"]In 2010, FEED CHEMIE became the subsequent addition to ever-growing vision of Mr. Uditha Wanigasinghe and entered the Animal Feed Additives market.[/ultimate_heading][/vc_column_inner][/vc_row_inner][vc_row_inner rtl_reverse=\"yes\" css=\".vc_custom_1686714115148{margin-top: 35px !important;}\"][vc_column_inner width=\"2/3\"][ultimate_heading main_heading=\"2012\" heading_tag=\"h3\" main_heading_color=\"#039447\" alignment=\"left\"]The year 2012 is described as a turning point in our journey as FARMCHEMIE established our first production facility for the manufacturing and packing of animal health products. FARMCHEMIE became the first animal health organization in Sri Lanka to obtain ISO 9001:2015 and WHO GMP International Quality Certification. With our own formulation unit, FARMCHEMIE was able to offer customized solutions to cater the needs of the Sri Lankan Livestock Industry.[/ultimate_heading][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_single_image image=\"3111\" img_size=\"full\"][/vc_column_inner][/vc_row_inner][vc_row_inner css=\".vc_custom_1686713784619{margin-top: 35px !important;}\"][vc_column_inner width=\"1/3\"][vc_single_image image=\"3112\" img_size=\"full\"][/vc_column_inner][vc_column_inner width=\"2/3\"][ultimate_heading main_heading=\"2016\" heading_tag=\"h3\" main_heading_color=\"#039447\" alignment=\"left\"]The year 2016 was another key milestone with the entry to the International Markets. FARMCHEMIE exported our first Feed Premix consignment to India and in 2018 our export operation was distinctly established as FARMCHEMIE MANUFACTURERS, a Board of Investment (BOI) approved entity.[/ultimate_heading][/vc_column_inner][/vc_row_inner][vc_row_inner css=\".vc_custom_1686713784619{margin-top: 35px !important;}\"][vc_column_inner width=\"2/3\"][ultimate_heading main_heading=\"Fully automated manufacturing\" heading_tag=\"h3\" main_heading_color=\"#039447\" alignment=\"left\"]FARMCHEMIE MANUFACTURERS has invested in fully automated manufacturing facility from Bühler and became the first Sri Lankan owned company to obtain FAMI-QS International Quality Certification.[/ultimate_heading][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_single_image image=\"3110\" img_size=\"full\"][/vc_column_inner][/vc_row_inner][vc_row_inner css=\".vc_custom_1686713784619{margin-top: 35px !important;}\"][vc_column_inner width=\"1/3\"][vc_single_image image=\"3116\" img_size=\"full\"][/vc_column_inner][vc_column_inner width=\"2/3\"][ultimate_heading main_heading=\"Official toll manufacturer partner\" heading_tag=\"h3\" main_heading_color=\"#039447\" alignment=\"left\"]With the trust and reputation built as a reliable manufacturer of animal feed additives and supplements in the global market, several world-renowned international brands have appointed FARMCHEMIE MANUFACTURERS as the official toll manufacturer partner. FARMCHEMIE MANUFACTURERS exports a wide range of products consisting of premixes, specialty feed additives, oral liquid supplements and pet supplements to various markets in South Asia, East Asia, Middle East and Africa.\r\n\r\nFARMCHEMIE, FEED CHEMIE &amp; FARMCHEMIE MANUFACTURERS currently operate under the ownership of our holding company, DYVESTA.\r\n\r\nDYEVSTA has become the pinnacle of Animal Nutrition and Health.\r\n\r\nDYVESTA is Dynamic, through our continuous evolution, growth and progress. DYVESTA is Diverse, in terms of both our business strategy and our community. DYVESTA is Devoted to our valuable business partners through exceptional service.[/ultimate_heading][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row full_width=\"stretch_row\" equal_height=\"yes\" bg_type=\"image\" parallax_style=\"vcpb-default\" bg_image_new=\"id^2524|url^https://farmchemie.yasithawd.com/wp-content/uploads/2022/09/marketbgimg1.png|caption^null|alt^null|title^marketbgimg1|description^null\" bg_image_repeat=\"no-repeat\" enable_overlay=\"enable_overlay_value\" overlay_color=\"#000000\" overlay_pattern=\"01.png\" overlay_pattern_opacity=\"5\" css=\".vc_custom_1686720701314{margin-top: 35px !important;padding-top: 65px !important;padding-bottom: 100px !important;}\"][vc_column][vc_row_inner equal_height=\"yes\"][vc_column_inner width=\"1/2\"][ultimate_heading main_heading=\"Vision\" main_heading_color=\"#039447\" sub_heading_color=\"#039447\"]To be the customers’ first and best choice by ensuring outstanding satisfaction through a well-trained and dedicated team. Prompt and quality solutions to our customers’ requirements will determine the increase of return on investment for us.[/ultimate_heading][/vc_column_inner][vc_column_inner width=\"1/2\"][ultimate_heading main_heading=\"Mission\" main_heading_color=\"#762888\" sub_heading_color=\"#762888\"]To become a world renowned manufacturer of Animal Health products and a trusted partner among our stakeholders for our integrity as well as for providing effective solutions[/ultimate_heading][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row css=\".vc_custom_1684836308288{margin-top: 15px !important;}\"][vc_column][ultimate_heading main_heading=\"Achievements\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;\"][/ultimate_heading][vc_row_inner gap=\"20\"][vc_column_inner width=\"1/2\" css=\".vc_custom_1691995519863{background-color: #f4ab20 !important;border: 1px solid #f4ab20 !important;border-radius: 35px !important;}\"][bsf-info-box icon_type=\"custom\" icon_img=\"id^3117|url^https://farmchemie.yasithawd.com/wp-content/uploads/2023/08/Pink_-H.png|caption^null|alt^null|title^Pink_-H|description^null\" img_width=\"60\" icon_style=\"advanced\" icon_border_style=\"solid\" icon_color_border=\"#ffffff\" icon_border_size=\"1\" icon_border_radius=\"500\" icon_border_spacing=\"1\" title=\"First Free Sale Certificate obtained from Veterinary Drug Control Authority (VDCA) for Veterinary Pharmaceuticals\" title_font_style=\"font-weight:bold;\" title_font_size=\"desktop:18px;\"][/bsf-info-box][/vc_column_inner][vc_column_inner width=\"1/2\" css=\".vc_custom_1691995661095{background-color: #722f8b !important;border: 1px solid #722f8b !important;border-radius: 35px !important;}\"][bsf-info-box icon_type=\"custom\" icon_img=\"id^3117|url^https://farmchemie.yasithawd.com/wp-content/uploads/2023/08/Pink_-H.png|caption^null|alt^null|title^Pink_-H|description^null\" img_width=\"60\" icon_style=\"advanced\" icon_border_style=\"solid\" icon_color_border=\"#ffffff\" icon_border_size=\"1\" icon_border_radius=\"500\" icon_border_spacing=\"1\" title=\"First ISO 9001: 2015 ,WHO-GMP Quality Management systems certified Animal Health company in Sri Lanka since August, 2012\" title_font_style=\"font-weight:bold;\" title_font_color=\"#ffffff\" title_font_size=\"desktop:20px;\"][/bsf-info-box][/vc_column_inner][/vc_row_inner][vc_row_inner gap=\"20\"][vc_column_inner width=\"1/2\" css=\".vc_custom_1691995661095{background-color: #722f8b !important;border: 1px solid #722f8b !important;border-radius: 35px !important;}\"][bsf-info-box icon_type=\"custom\" icon_img=\"id^3117|url^https://farmchemie.yasithawd.com/wp-content/uploads/2023/08/Pink_-H.png|caption^null|alt^null|title^Pink_-H|description^null\" img_width=\"60\" icon_style=\"advanced\" icon_border_style=\"solid\" icon_color_border=\"#ffffff\" icon_border_size=\"1\" icon_border_radius=\"500\" icon_border_spacing=\"1\" title=\"First FAMI-QS certified company\" title_font_style=\"font-weight:bold;\" title_font_color=\"#ffffff\" title_font_size=\"desktop:18px;\"][/bsf-info-box][/vc_column_inner][vc_column_inner width=\"1/2\" css=\".vc_custom_1691995519863{background-color: #f4ab20 !important;border: 1px solid #f4ab20 !important;border-radius: 35px !important;}\"][bsf-info-box icon_type=\"custom\" icon_img=\"id^3117|url^https://farmchemie.yasithawd.com/wp-content/uploads/2023/08/Pink_-H.png|caption^null|alt^null|title^Pink_-H|description^null\" img_width=\"60\" icon_style=\"advanced\" icon_border_style=\"solid\" icon_color_border=\"#ffffff\" icon_border_size=\"1\" icon_border_radius=\"500\" icon_border_spacing=\"1\" title=\"First Certificate of Ethical Trading certified in Livestock industry\" title_font_style=\"font-weight:bold;\" title_font_size=\"desktop:18px;\"][/bsf-info-box][/vc_column_inner][/vc_row_inner][vc_row_inner gap=\"20\"][vc_column_inner width=\"1/4\" css=\".vc_custom_1691996718116{border-radius: 35px !important;}\"][/vc_column_inner][vc_column_inner width=\"2/4\" css=\".vc_custom_1691995519863{background-color: #f4ab20 !important;border: 1px solid #f4ab20 !important;border-radius: 35px !important;}\"][bsf-info-box icon_type=\"custom\" icon_img=\"id^3117|url^https://farmchemie.yasithawd.com/wp-content/uploads/2023/08/Pink_-H.png|caption^null|alt^null|title^Pink_-H|description^null\" img_width=\"60\" icon_style=\"advanced\" icon_border_style=\"solid\" icon_color_border=\"#ffffff\" icon_border_size=\"1\" icon_border_radius=\"500\" icon_border_spacing=\"1\" title=\"First Silver awarded company at National Exports Awards in Livestock industry\" title_font_style=\"font-weight:bold;\" title_font_size=\"desktop:18px;\"][/bsf-info-box][/vc_column_inner][vc_column_inner width=\"1/4\"][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner width=\"1/6\"][/vc_column_inner][vc_column_inner width=\"2/3\"][vc_single_image image=\"3126\" img_size=\"full\" alignment=\"center\"][vc_single_image image=\"3125\" img_size=\"full\" alignment=\"center\"][/vc_column_inner][vc_column_inner width=\"1/6\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row]','About us','','inherit','closed','closed','','2917-revision-v1','','','2023-08-16 08:56:39','2023-08-16 08:56:39','',2917,'https://farmchemie.yasithawd.com/?p=3199',0,'revision','',0),(3170,1,'2023-08-16 07:50:17','2023-08-16 07:50:17','','DSC_00481','','inherit','open','closed','','dsc_00481','','','2023-08-16 07:50:17','2023-08-16 07:50:17','',2917,'https://farmchemie.yasithawd.com/wp-content/uploads/2023/08/DSC_00481.png',0,'attachment','image/png',0),(3171,1,'2023-08-16 07:50:48','2023-08-16 07:50:48','','DSC_00401','','inherit','open','closed','','dsc_00401','','','2023-08-16 07:50:48','2023-08-16 07:50:48','',2917,'https://farmchemie.yasithawd.com/wp-content/uploads/2023/08/DSC_00401.png',0,'attachment','image/png',0),(3172,1,'2023-08-16 07:51:38','2023-08-16 07:51:38','','DSC_00431','','inherit','open','closed','','dsc_00431','','','2023-08-16 07:51:38','2023-08-16 07:51:38','',2917,'https://farmchemie.yasithawd.com/wp-content/uploads/2023/08/DSC_00431.png',0,'attachment','image/png',0),(3173,1,'2023-08-16 07:52:39','2023-08-16 07:52:39','','DSC_00471','','inherit','open','closed','','dsc_00471','','','2023-08-16 07:52:39','2023-08-16 07:52:39','',2917,'https://farmchemie.yasithawd.com/wp-content/uploads/2023/08/DSC_00471.png',0,'attachment','image/png',0),(3174,1,'2023-08-16 07:53:14','2023-08-16 07:53:14','','DSC_0047','','inherit','open','closed','','dsc_0047','','','2023-08-16 07:53:14','2023-08-16 07:53:14','',2917,'https://farmchemie.yasithawd.com/wp-content/uploads/2023/08/DSC_0047.png',0,'attachment','image/png',0),(3175,1,'2023-08-16 07:53:37','2023-08-16 07:53:37','','DSC_0048','','inherit','open','closed','','dsc_0048','','','2023-08-16 07:53:37','2023-08-16 07:53:37','',2917,'https://farmchemie.yasithawd.com/wp-content/uploads/2023/08/DSC_0048.png',0,'attachment','image/png',0),(3176,1,'2023-08-16 07:54:06','2023-08-16 07:54:06','','DSC_0040','','inherit','open','closed','','dsc_0040','','','2023-08-16 07:54:06','2023-08-16 07:54:06','',2917,'https://farmchemie.yasithawd.com/wp-content/uploads/2023/08/DSC_0040.png',0,'attachment','image/png',0),(3177,1,'2023-08-16 07:54:37','2023-08-16 07:54:37','','DSC_0043','','inherit','open','closed','','dsc_0043','','','2023-08-16 07:54:37','2023-08-16 07:54:37','',2917,'https://farmchemie.yasithawd.com/wp-content/uploads/2023/08/DSC_0043.png',0,'attachment','image/png',0),(3131,1,'2023-08-14 14:21:03','2023-08-14 14:21:03','[vc_row full_width=\"stretch_row\" css=\".vc_custom_1689577528817{padding-bottom: 50px !important;}\"][vc_column css=\".vc_custom_1689577454678{margin-bottom: 50px !important;}\"][vc_row_inner css=\".vc_custom_1689577559805{border-bottom-width: 1px !important;padding-top: 35px !important;padding-bottom: 35px !important;border-bottom-color: #079547 !important;border-bottom-style: solid !important;border-radius: 1px !important;}\"][vc_column_inner width=\"1/2\"][ultimate_heading main_heading=\"Feed Additives\" heading_tag=\"h3\" main_heading_color=\"#079547\" sub_heading_color=\"#792c8a\" alignment=\"left\"]<strong>Premixes/ Specialty Feed Additives/ Dilution of Active Ingredients/ Concentrates</strong><strong>\r\n</strong>Pack sizes – 1,000 kg, 500 kg, 50 kg, 25 kg, 15 kg, 10 kg, 5 kg, 1kg[/ultimate_heading][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_single_image image=\"3129\" img_size=\"full\"][/vc_column_inner][/vc_row_inner][vc_row_inner css=\".vc_custom_1689577609020{border-bottom-width: 1px !important;padding-top: 35px !important;padding-bottom: 35px !important;border-bottom-color: #079547 !important;border-bottom-style: solid !important;border-radius: 1px !important;}\"][vc_column_inner width=\"1/3\"][vc_single_image][/vc_column_inner][vc_column_inner width=\"2/3\"][ultimate_heading main_heading=\"Oral Supplements\" heading_tag=\"h3\" main_heading_color=\"#079547\" sub_heading_color=\"#792c8a\" alignment=\"left\"]<strong>Liquids</strong><strong>\r\n</strong>Pack sizes – 1,000 L, 250 L, 50 L, 25 L, 5 L, 1 L, 500 mL, 250 mL, 100 mL, 50 mL\r\n\r\n<strong>Water soluble powders</strong><strong>\r\n</strong>Pack sizes – 25 kg, 15 kg, 10 kg, 5 kg, 1kg[/ultimate_heading][/vc_column_inner][/vc_row_inner][vc_row_inner css=\".vc_custom_1689577609020{border-bottom-width: 1px !important;padding-top: 35px !important;padding-bottom: 35px !important;border-bottom-color: #079547 !important;border-bottom-style: solid !important;border-radius: 1px !important;}\"][vc_column_inner width=\"2/3\"][ultimate_heading main_heading=\"Tablets\" heading_tag=\"h3\" main_heading_color=\"#079547\" sub_heading_color=\"#792c8a\" alignment=\"left\"]<strong>Supplementary tablets for pet care</strong>\r\nTablet sizes – 1 to 5 g\r\n\r\n<strong>Boluses</strong><strong>\r\n</strong>Tablet sizes – 5 to 25 g[/ultimate_heading][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_single_image][/vc_column_inner][/vc_row_inner][vc_row_inner css=\".vc_custom_1689577609020{border-bottom-width: 1px !important;padding-top: 35px !important;padding-bottom: 35px !important;border-bottom-color: #079547 !important;border-bottom-style: solid !important;border-radius: 1px !important;}\"][vc_column_inner width=\"1/3\"][vc_single_image][/vc_column_inner][vc_column_inner width=\"2/3\"][ultimate_heading main_heading=\"Veterinary Pharmaceuticals\" heading_tag=\"h3\" main_heading_color=\"#079547\" sub_heading_color=\"#792c8a\" alignment=\"left\"]<strong>Deworming Solutions/ Antibiotics/ Antimicrobials/ Wound care solutions</strong><strong>\r\n</strong>Form – Liquid, WSP[/ultimate_heading][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row css=\".vc_custom_1689578783264{padding-top: 50px !important;padding-bottom: 50px !important;}\"][vc_column][ultimate_heading main_heading=\"Our manufacturing facility is certified with FAMI-QS, WHO GMP &amp; ISO 9001:2015 International Quality standards.\" main_heading_color=\"#079547\" sub_heading_color=\"#792c8a\" alignment=\"left\"]We select only the <strong><em>best</em></strong> and <strong><em>most reputed</em></strong> Raw Material &amp; Packing Material Suppliers for the production of our finished goods.[/ultimate_heading][vc_row_inner equal_height=\"yes\" content_placement=\"middle\"][vc_column_inner width=\"1/5\" offset=\"vc_hidden-lg vc_hidden-md\"][vc_single_image image=\"3062\" img_size=\"full\" alignment=\"center\"][/vc_column_inner][vc_column_inner width=\"1/5\" css=\".vc_custom_1691846530645{border-right-width: 1px !important;border-left-width: 1px !important;border-left-color: #000000 !important;border-left-style: solid !important;border-right-color: #000000 !important;border-right-style: solid !important;border-radius: 1px !important;}\" offset=\"vc_hidden-lg vc_hidden-md\"][vc_single_image image=\"3063\" img_size=\"full\" alignment=\"center\"][/vc_column_inner][vc_column_inner width=\"1/5\" offset=\"vc_hidden-lg vc_hidden-md\"][vc_single_image image=\"3064\" img_size=\"full\" alignment=\"center\"][/vc_column_inner][vc_column_inner width=\"1/5\" css=\".vc_custom_1691846545469{border-right-width: 1px !important;border-left-width: 1px !important;border-left-color: #000000 !important;border-left-style: solid !important;border-right-color: #000000 !important;border-right-style: solid !important;border-radius: 1px !important;}\" offset=\"vc_hidden-lg vc_hidden-md\"][vc_single_image image=\"3065\" img_size=\"full\" alignment=\"center\"][/vc_column_inner][vc_column_inner width=\"1/5\" offset=\"vc_hidden-lg vc_hidden-md\"][vc_single_image image=\"3066\" img_size=\"full\" alignment=\"center\"][/vc_column_inner][/vc_row_inner][vc_row_inner equal_height=\"yes\" content_placement=\"middle\"][vc_column_inner width=\"1/4\" css=\".vc_custom_1691846563021{border-right-width: 1px !important;border-right-color: #000000 !important;border-right-style: solid !important;border-radius: 1px !important;}\" offset=\"vc_hidden-lg vc_hidden-md\"][vc_single_image image=\"3067\" img_size=\"full\" alignment=\"center\"][/vc_column_inner][vc_column_inner width=\"1/4\" css=\".vc_custom_1691846569845{border-right-width: 1px !important;border-right-color: #000000 !important;border-right-style: solid !important;border-radius: 1px !important;}\" offset=\"vc_hidden-lg vc_hidden-md\"][vc_single_image image=\"3068\" img_size=\"full\" alignment=\"center\"][/vc_column_inner][vc_column_inner width=\"1/4\" css=\".vc_custom_1691846576949{border-right-width: 1px !important;border-right-color: #000000 !important;border-right-style: solid !important;border-radius: 1px !important;}\" offset=\"vc_hidden-lg vc_hidden-md\"][vc_single_image image=\"3069\" img_size=\"full\" alignment=\"center\"][/vc_column_inner][vc_column_inner width=\"1/4\" offset=\"vc_hidden-lg vc_hidden-md\"][vc_single_image image=\"3070\" img_size=\"full\" alignment=\"center\"][/vc_column_inner][/vc_row_inner][vc_row_inner disable_element=\"yes\"][vc_column_inner width=\"1/3\"][vc_single_image image=\"2981\" img_size=\"full\"][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_single_image image=\"2982\" img_size=\"full\"][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_single_image image=\"2983\" img_size=\"full\"][/vc_column_inner][/vc_row_inner][vc_row_inner disable_element=\"yes\"][vc_column_inner width=\"1/6\"][/vc_column_inner][vc_column_inner width=\"2/3\"][vc_single_image image=\"2984\" img_size=\"full\"][/vc_column_inner][vc_column_inner width=\"1/6\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row full_width=\"stretch_row_content_no_spaces\"][vc_column offset=\"vc_hidden-sm vc_hidden-xs\"][vc_single_image image=\"3120\" img_size=\"full\" alignment=\"center\"][/vc_column][/vc_row][vc_row css=\".vc_custom_1689578794814{padding-top: 50px !important;padding-bottom: 50px !important;}\"][vc_column][ultimate_heading main_heading=\"Supplier selection and procurement criteria\" main_heading_color=\"#079547\" sub_heading_color=\"#792c8a\" alignment=\"left\"][/ultimate_heading][vc_row_inner css=\".vc_custom_1689578812611{margin-top: 50px !important;}\"][vc_column_inner width=\"1/2\"][dt_vc_list dividers=\"false\"]\r\n<ul>\r\n 	<li>Check supplier’s quality certification to ensure raw material quality</li>\r\n 	<li>New vendor validation protocol - In case of a change in the supplier, obtain samples and validate in the lab</li>\r\n</ul>\r\n[/dt_vc_list][/vc_column_inner][vc_column_inner width=\"1/2\"][dt_vc_list dividers=\"false\"]\r\n<ul>\r\n 	<li>Income inspection carried out on every consignment (Tested for Chemical Assay &amp; Physical Properties)</li>\r\n 	<li>Quality department approval required to be used in the production</li>\r\n</ul>\r\n[/dt_vc_list][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row css=\".vc_custom_1689578794814{padding-top: 50px !important;padding-bottom: 50px !important;}\"][vc_column][ultimate_heading main_heading=\"Please contact us to start your Marketing Journey with a reliable manufacturing partnership with FARMCHEMIE\" heading_tag=\"h3\" main_heading_color=\"#079547\" sub_heading_color=\"#792c8a\" alignment=\"left\"][/ultimate_heading][vc_row_inner css=\".vc_custom_1689578812611{margin-top: 50px !important;}\"][vc_column_inner width=\"1/2\"][bsf-info-box icon_size=\"32\" title=\"International Markets\" pos=\"square_box\" box_border_style=\"solid\" box_border_width=\"1\" box_border_color=\"#792c8a\" title_font_color=\"#079547\" desc_font_color=\"#792c8a\" title_font_size=\"desktop:25px;\"]<strong>Email :</strong> <a href=\"mailto:sales.export@farmchemie.com\"><u>sales.export@farmchemie.com</u></a>\r\n<strong>Tel No :</strong> + 94 76 577 2975[/bsf-info-box][/vc_column_inner][vc_column_inner width=\"1/2\"][bsf-info-box icon_size=\"32\" title=\"Sri Lankan Market\" pos=\"square_box\" box_border_style=\"solid\" box_border_width=\"1\" box_border_color=\"#079547\" title_font_color=\"#079547\" desc_font_color=\"#792c8a\" title_font_size=\"desktop:25px;\"]Email : <a href=\"mailto:sales.local@farmchemie.com\"><u>sales.local@farmchemie.com</u></a>\r\nTel No : +94 74 224 6947[/bsf-info-box][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row]','Manufacturing','','inherit','closed','closed','','2964-revision-v1','','','2023-08-14 14:21:03','2023-08-14 14:21:03','',2964,'https://farmchemie.yasithawd.com/?p=3131',0,'revision','',0),(3167,1,'2023-08-16 04:32:40','2023-08-16 04:32:40','[vc_row full_width=\"stretch_row\" css=\".vc_custom_1689577528817{padding-bottom: 50px !important;}\"][vc_column css=\".vc_custom_1689577454678{margin-bottom: 50px !important;}\"][vc_row_inner css=\".vc_custom_1689577559805{border-bottom-width: 1px !important;padding-top: 35px !important;padding-bottom: 35px !important;border-bottom-color: #079547 !important;border-bottom-style: solid !important;border-radius: 1px !important;}\"][vc_column_inner width=\"1/2\"][ultimate_heading main_heading=\"Feed Additives\" heading_tag=\"h3\" main_heading_color=\"#079547\" sub_heading_color=\"#792c8a\" alignment=\"left\"]<strong>Premixes/ Specialty Feed Additives/ Dilution of Active Ingredients/ Concentrates</strong><strong>\r\n</strong>Pack sizes – 1,000 kg, 500 kg, 50 kg, 25 kg, 15 kg, 10 kg, 5 kg, 1kg[/ultimate_heading][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_single_image image=\"3129\" img_size=\"full\"][/vc_column_inner][/vc_row_inner][vc_row_inner css=\".vc_custom_1689577609020{border-bottom-width: 1px !important;padding-top: 35px !important;padding-bottom: 35px !important;border-bottom-color: #079547 !important;border-bottom-style: solid !important;border-radius: 1px !important;}\"][vc_column_inner width=\"1/2\"][vc_single_image image=\"3162\" img_size=\"full\"][/vc_column_inner][vc_column_inner width=\"1/2\"][ultimate_heading main_heading=\"Oral Supplements\" heading_tag=\"h3\" main_heading_color=\"#079547\" sub_heading_color=\"#792c8a\" alignment=\"left\"]<strong>Liquids</strong><strong>\r\n</strong>Pack sizes – 1,000 L, 250 L, 50 L, 25 L, 5 L, 1 L, 500 mL, 250 mL, 100 mL, 50 mL\r\n\r\n<strong>Water soluble powders</strong><strong>\r\n</strong>Pack sizes – 25 kg, 15 kg, 10 kg, 5 kg, 1kg[/ultimate_heading][/vc_column_inner][/vc_row_inner][vc_row_inner css=\".vc_custom_1689577609020{border-bottom-width: 1px !important;padding-top: 35px !important;padding-bottom: 35px !important;border-bottom-color: #079547 !important;border-bottom-style: solid !important;border-radius: 1px !important;}\"][vc_column_inner width=\"1/2\"][ultimate_heading main_heading=\"Tablets\" heading_tag=\"h3\" main_heading_color=\"#079547\" sub_heading_color=\"#792c8a\" alignment=\"left\"]<strong>Supplementary tablets for pet care</strong>\r\nTablet sizes – 1 to 5 g\r\n\r\n<strong>Boluses</strong><strong>\r\n</strong>Tablet sizes – 5 to 25 g[/ultimate_heading][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_single_image image=\"3163\" img_size=\"full\"][/vc_column_inner][/vc_row_inner][vc_row_inner css=\".vc_custom_1689577609020{border-bottom-width: 1px !important;padding-top: 35px !important;padding-bottom: 35px !important;border-bottom-color: #079547 !important;border-bottom-style: solid !important;border-radius: 1px !important;}\"][vc_column_inner width=\"1/2\"][vc_single_image image=\"3164\" img_size=\"full\"][/vc_column_inner][vc_column_inner width=\"1/2\"][ultimate_heading main_heading=\"Veterinary Pharmaceuticals\" heading_tag=\"h3\" main_heading_color=\"#079547\" sub_heading_color=\"#792c8a\" alignment=\"left\"]<strong>Deworming Solutions/ Antibiotics/ Antimicrobials/ Wound care solutions</strong><strong>\r\n</strong>Form – Liquid, WSP[/ultimate_heading][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row css=\".vc_custom_1689578783264{padding-top: 50px !important;padding-bottom: 50px !important;}\"][vc_column][ultimate_heading main_heading=\"Our manufacturing facility is certified with FAMI-QS, WHO GMP &amp; ISO 9001:2015 International Quality standards.\" main_heading_color=\"#079547\" sub_heading_color=\"#792c8a\" alignment=\"left\"]We select only the <strong><em>best</em></strong> and <strong><em>most reputed</em></strong> Raw Material &amp; Packing Material Suppliers for the production of our finished goods.[/ultimate_heading][vc_row_inner equal_height=\"yes\" content_placement=\"middle\"][vc_column_inner width=\"1/5\" offset=\"vc_hidden-lg vc_hidden-md\"][vc_single_image image=\"3062\" img_size=\"full\" alignment=\"center\"][/vc_column_inner][vc_column_inner width=\"1/5\" css=\".vc_custom_1691846530645{border-right-width: 1px !important;border-left-width: 1px !important;border-left-color: #000000 !important;border-left-style: solid !important;border-right-color: #000000 !important;border-right-style: solid !important;border-radius: 1px !important;}\" offset=\"vc_hidden-lg vc_hidden-md\"][vc_single_image image=\"3063\" img_size=\"full\" alignment=\"center\"][/vc_column_inner][vc_column_inner width=\"1/5\" offset=\"vc_hidden-lg vc_hidden-md\"][vc_single_image image=\"3064\" img_size=\"full\" alignment=\"center\"][/vc_column_inner][vc_column_inner width=\"1/5\" css=\".vc_custom_1691846545469{border-right-width: 1px !important;border-left-width: 1px !important;border-left-color: #000000 !important;border-left-style: solid !important;border-right-color: #000000 !important;border-right-style: solid !important;border-radius: 1px !important;}\" offset=\"vc_hidden-lg vc_hidden-md\"][vc_single_image image=\"3065\" img_size=\"full\" alignment=\"center\"][/vc_column_inner][vc_column_inner width=\"1/5\" offset=\"vc_hidden-lg vc_hidden-md\"][vc_single_image image=\"3066\" img_size=\"full\" alignment=\"center\"][/vc_column_inner][/vc_row_inner][vc_row_inner equal_height=\"yes\" content_placement=\"middle\"][vc_column_inner width=\"1/4\" css=\".vc_custom_1691846563021{border-right-width: 1px !important;border-right-color: #000000 !important;border-right-style: solid !important;border-radius: 1px !important;}\" offset=\"vc_hidden-lg vc_hidden-md\"][vc_single_image image=\"3067\" img_size=\"full\" alignment=\"center\"][/vc_column_inner][vc_column_inner width=\"1/4\" css=\".vc_custom_1691846569845{border-right-width: 1px !important;border-right-color: #000000 !important;border-right-style: solid !important;border-radius: 1px !important;}\" offset=\"vc_hidden-lg vc_hidden-md\"][vc_single_image image=\"3068\" img_size=\"full\" alignment=\"center\"][/vc_column_inner][vc_column_inner width=\"1/4\" css=\".vc_custom_1691846576949{border-right-width: 1px !important;border-right-color: #000000 !important;border-right-style: solid !important;border-radius: 1px !important;}\" offset=\"vc_hidden-lg vc_hidden-md\"][vc_single_image image=\"3069\" img_size=\"full\" alignment=\"center\"][/vc_column_inner][vc_column_inner width=\"1/4\" offset=\"vc_hidden-lg vc_hidden-md\"][vc_single_image image=\"3070\" img_size=\"full\" alignment=\"center\"][/vc_column_inner][/vc_row_inner][vc_row_inner disable_element=\"yes\"][vc_column_inner width=\"1/3\"][vc_single_image image=\"2981\" img_size=\"full\"][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_single_image image=\"2982\" img_size=\"full\"][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_single_image image=\"2983\" img_size=\"full\"][/vc_column_inner][/vc_row_inner][vc_row_inner disable_element=\"yes\"][vc_column_inner width=\"1/6\"][/vc_column_inner][vc_column_inner width=\"2/3\"][vc_single_image image=\"2984\" img_size=\"full\"][/vc_column_inner][vc_column_inner width=\"1/6\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row full_width=\"stretch_row_content_no_spaces\"][vc_column offset=\"vc_hidden-sm vc_hidden-xs\"][vc_single_image image=\"3120\" img_size=\"full\" alignment=\"center\"][/vc_column][/vc_row][vc_row css=\".vc_custom_1689578794814{padding-top: 50px !important;padding-bottom: 50px !important;}\"][vc_column][ultimate_heading main_heading=\"Supplier selection and procurement criteria\" main_heading_color=\"#079547\" sub_heading_color=\"#792c8a\" alignment=\"left\"][/ultimate_heading][vc_row_inner css=\".vc_custom_1689578812611{margin-top: 50px !important;}\"][vc_column_inner width=\"1/2\"][dt_vc_list dividers=\"false\"]\r\n<ul>\r\n 	<li>Check supplier’s quality certification to ensure raw material quality</li>\r\n 	<li>New vendor validation protocol - In case of a change in the supplier, obtain samples and validate in the lab</li>\r\n</ul>\r\n[/dt_vc_list][/vc_column_inner][vc_column_inner width=\"1/2\"][dt_vc_list dividers=\"false\"]\r\n<ul>\r\n 	<li>Income inspection carried out on every consignment (Tested for Chemical Assay &amp; Physical Properties)</li>\r\n 	<li>Quality department approval required to be used in the production</li>\r\n</ul>\r\n[/dt_vc_list][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row css=\".vc_custom_1689578794814{padding-top: 50px !important;padding-bottom: 50px !important;}\"][vc_column][ultimate_heading main_heading=\"Please contact us to start your Marketing Journey with a reliable manufacturing partnership with FARMCHEMIE\" heading_tag=\"h3\" main_heading_color=\"#079547\" sub_heading_color=\"#792c8a\" alignment=\"left\"][/ultimate_heading][vc_row_inner css=\".vc_custom_1689578812611{margin-top: 50px !important;}\"][vc_column_inner width=\"1/2\"][bsf-info-box icon_size=\"32\" title=\"International Markets\" pos=\"square_box\" box_border_style=\"solid\" box_border_width=\"1\" box_border_color=\"#792c8a\" title_font_color=\"#079547\" desc_font_color=\"#792c8a\" title_font_size=\"desktop:25px;\"]<strong>Email :</strong> <a href=\"mailto:sales.export@farmchemie.com\"><u>sales.export@farmchemie.com</u></a>\r\n<strong>Tel No :</strong> + 94 76 577 2975[/bsf-info-box][/vc_column_inner][vc_column_inner width=\"1/2\"][bsf-info-box icon_size=\"32\" title=\"Sri Lankan Market\" pos=\"square_box\" box_border_style=\"solid\" box_border_width=\"1\" box_border_color=\"#079547\" title_font_color=\"#079547\" desc_font_color=\"#792c8a\" title_font_size=\"desktop:25px;\"]Email : <a href=\"mailto:sales.local@farmchemie.com\"><u>sales.local@farmchemie.com</u></a>\r\nTel No : +94 74 224 6947[/bsf-info-box][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row]','Manufacturing','','inherit','closed','closed','','2964-revision-v1','','','2023-08-16 04:32:40','2023-08-16 04:32:40','',2964,'https://farmchemie.yasithawd.com/?p=3167',0,'revision','',0),(3124,1,'2023-08-14 07:31:13','2023-08-14 07:31:13','','testimg','','inherit','open','closed','','testimg','','','2023-08-14 07:31:13','2023-08-14 07:31:13','',0,'https://farmchemie.yasithawd.com/wp-content/uploads/2023/04/testimg.jpg',0,'attachment','image/jpeg',0),(3125,1,'2023-08-14 08:04:17','2023-08-14 08:04:17','','Awards','','inherit','open','closed','','awards','','','2023-08-14 08:04:17','2023-08-14 08:04:17','',2917,'https://farmchemie.yasithawd.com/wp-content/uploads/2023/08/Awards.png',0,'attachment','image/png',0),(3126,1,'2023-08-14 08:04:57','2023-08-14 08:04:57','','Asset 1@300x','','inherit','open','closed','','asset-1300x-2','','','2023-08-14 08:04:57','2023-08-14 08:04:57','',2917,'https://farmchemie.yasithawd.com/wp-content/uploads/2023/08/Asset-1@300x-1.png',0,'attachment','image/png',0),(3127,1,'2023-08-14 08:05:32','2023-08-14 08:05:32','[vc_row][vc_column][ultimate_heading main_heading=\"Our History\" main_heading_color=\"#762888\" alignment=\"left\"][/ultimate_heading][vc_row_inner css=\".vc_custom_1686713784619{margin-top: 35px !important;}\"][vc_column_inner width=\"1/3\"][vc_single_image image=\"3106\" img_size=\"full\"][/vc_column_inner][vc_column_inner width=\"2/3\"][ultimate_heading main_heading=\"Founded in 2002\" heading_tag=\"h3\" main_heading_color=\"#039447\" alignment=\"left\"]Founded in 2002 by Mr. Uditha Wanigasinghe, an agriculturist who had a mission to aid valuable livestock producers in the country to enhance the yield and profitability of production. FARMCHEMIE introduced unprecedented solutions and consistent technical services to gain our customers’ trust and became the market leader in animal health products in 2006 within just four years.[/ultimate_heading][/vc_column_inner][/vc_row_inner][vc_row_inner rtl_reverse=\"yes\" css=\".vc_custom_1686714025469{margin-top: 35px !important;}\"][vc_column_inner width=\"2/3\"][ultimate_heading main_heading=\"2006\" heading_tag=\"h3\" main_heading_color=\"#039447\" alignment=\"left\"]In 2006, the Sri Lankan poultry industry was affected with Avian Influenza which became a difficult period for the growth of FARMCHEMIE. This was the key factor in our decision to diversify into Agro Products. PLANTCHEM &amp; PLANTSEEDS were established to offer solutions in Agro specialty fertilizers, pesticides and seeds to invaluable cultivators.[/ultimate_heading][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_single_image image=\"3107\" img_size=\"full\"][/vc_column_inner][/vc_row_inner][vc_row_inner css=\".vc_custom_1686713784619{margin-top: 35px !important;}\"][vc_column_inner width=\"1/3\"][vc_single_image image=\"3108\" img_size=\"full\"][/vc_column_inner][vc_column_inner width=\"2/3\"][ultimate_heading main_heading=\"2010\" heading_tag=\"h3\" main_heading_color=\"#039447\" alignment=\"left\"]In 2010, FEED CHEMIE became the subsequent addition to ever-growing vision of Mr. Uditha Wanigasinghe and entered the Animal Feed Additives market.[/ultimate_heading][/vc_column_inner][/vc_row_inner][vc_row_inner rtl_reverse=\"yes\" css=\".vc_custom_1686714115148{margin-top: 35px !important;}\"][vc_column_inner width=\"2/3\"][ultimate_heading main_heading=\"2012\" heading_tag=\"h3\" main_heading_color=\"#039447\" alignment=\"left\"]The year 2012 is described as a turning point in our journey as FARMCHEMIE established our first production facility for the manufacturing and packing of animal health products. FARMCHEMIE became the first animal health organization in Sri Lanka to obtain ISO 9001:2015 and WHO GMP International Quality Certification. With our own formulation unit, FARMCHEMIE was able to offer customized solutions to cater the needs of the Sri Lankan Livestock Industry.[/ultimate_heading][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_single_image image=\"3111\" img_size=\"full\"][/vc_column_inner][/vc_row_inner][vc_row_inner css=\".vc_custom_1686713784619{margin-top: 35px !important;}\"][vc_column_inner width=\"1/3\"][vc_single_image image=\"3112\" img_size=\"full\"][/vc_column_inner][vc_column_inner width=\"2/3\"][ultimate_heading main_heading=\"2016\" heading_tag=\"h3\" main_heading_color=\"#039447\" alignment=\"left\"]The year 2016 was another key milestone with the entry to the International Markets. FARMCHEMIE exported our first Feed Premix consignment to India and in 2018 our export operation was distinctly established as FARMCHEMIE MANUFACTURERS, a Board of Investment (BOI) approved entity.[/ultimate_heading][/vc_column_inner][/vc_row_inner][vc_row_inner css=\".vc_custom_1686713784619{margin-top: 35px !important;}\"][vc_column_inner width=\"2/3\"][ultimate_heading main_heading=\"Fully automated manufacturing\" heading_tag=\"h3\" main_heading_color=\"#039447\" alignment=\"left\"]FARMCHEMIE MANUFACTURERS has invested in fully automated manufacturing facility from Bühler and became the first Sri Lankan owned company to obtain FAMI-QS International Quality Certification.[/ultimate_heading][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_single_image image=\"3110\" img_size=\"full\"][/vc_column_inner][/vc_row_inner][vc_row_inner css=\".vc_custom_1686713784619{margin-top: 35px !important;}\"][vc_column_inner width=\"1/3\"][vc_single_image image=\"3116\" img_size=\"full\"][/vc_column_inner][vc_column_inner width=\"2/3\"][ultimate_heading main_heading=\"Official toll manufacturer partner\" heading_tag=\"h3\" main_heading_color=\"#039447\" alignment=\"left\"]With the trust and reputation built as a reliable manufacturer of animal feed additives and supplements in the global market, several world-renowned international brands have appointed FARMCHEMIE MANUFACTURERS as the official toll manufacturer partner. FARMCHEMIE MANUFACTURERS exports a wide range of products consisting of premixes, specialty feed additives, oral liquid supplements and pet supplements to various markets in South Asia, East Asia, Middle East and Africa.\r\n\r\nFARMCHEMIE, FEED CHEMIE &amp; FARMCHEMIE MANUFACTURERS currently operate under the ownership of our holding company, DYVESTA.\r\n\r\nDYEVSTA has become the pinnacle of Animal Nutrition and Health.\r\n\r\nDYVESTA is Dynamic, through our continuous evolution, growth and progress. DYVESTA is Diverse, in terms of both our business strategy and our community. DYVESTA is Devoted to our valuable business partners through exceptional service.[/ultimate_heading][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row full_width=\"stretch_row\" equal_height=\"yes\" bg_type=\"image\" parallax_style=\"vcpb-default\" bg_image_new=\"id^2524|url^https://farmchemie.yasithawd.com/wp-content/uploads/2022/09/marketbgimg1.png|caption^null|alt^null|title^marketbgimg1|description^null\" bg_image_repeat=\"no-repeat\" enable_overlay=\"enable_overlay_value\" overlay_color=\"#000000\" overlay_pattern=\"01.png\" overlay_pattern_opacity=\"5\" css=\".vc_custom_1686720701314{margin-top: 35px !important;padding-top: 65px !important;padding-bottom: 100px !important;}\"][vc_column][vc_row_inner equal_height=\"yes\"][vc_column_inner width=\"1/2\"][ultimate_heading main_heading=\"Vision\" main_heading_color=\"#039447\" sub_heading_color=\"#039447\"]To be the customers’ first and best choice by ensuring outstanding satisfaction through a well-trained and dedicated team. Prompt and quality solutions to our customers’ requirements will determine the increase of return on investment for us.[/ultimate_heading][/vc_column_inner][vc_column_inner width=\"1/2\"][ultimate_heading main_heading=\"Mission\" main_heading_color=\"#762888\" sub_heading_color=\"#762888\"]To become a world renowned manufacturer of Animal Health products and a trusted partner among our stakeholders for our integrity as well as for providing effective solutions[/ultimate_heading][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row css=\".vc_custom_1684836308288{margin-top: 15px !important;}\"][vc_column][ultimate_heading main_heading=\"Achievements\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;\"][/ultimate_heading][vc_row_inner gap=\"20\"][vc_column_inner width=\"1/2\" css=\".vc_custom_1691995519863{background-color: #f4ab20 !important;border: 1px solid #f4ab20 !important;border-radius: 35px !important;}\"][bsf-info-box icon_type=\"custom\" icon_img=\"id^3117|url^https://farmchemie.yasithawd.com/wp-content/uploads/2023/08/Pink_-H.png|caption^null|alt^null|title^Pink_-H|description^null\" img_width=\"60\" icon_style=\"circle\" title=\"First Free Sale Certificate obtained from Veterinary Drug Control Authority (VDCA) for Veterinary Pharmaceuticals\"][/bsf-info-box][/vc_column_inner][vc_column_inner width=\"1/2\" css=\".vc_custom_1691995661095{background-color: #722f8b !important;border: 1px solid #722f8b !important;border-radius: 35px !important;}\"][bsf-info-box icon_type=\"custom\" icon_img=\"id^3117|url^https://farmchemie.yasithawd.com/wp-content/uploads/2023/08/Pink_-H.png|caption^null|alt^null|title^Pink_-H|description^null\" img_width=\"60\" icon_style=\"circle\" title=\"First ISO 9001: 2015 ,WHO-GMP Quality Management systems certified Animal Health company in Sri Lanka since August, 2012\" title_font_color=\"#ffffff\"][/bsf-info-box][/vc_column_inner][/vc_row_inner][vc_row_inner gap=\"20\"][vc_column_inner width=\"1/2\" css=\".vc_custom_1691995661095{background-color: #722f8b !important;border: 1px solid #722f8b !important;border-radius: 35px !important;}\"][bsf-info-box icon_type=\"custom\" icon_img=\"id^3117|url^https://farmchemie.yasithawd.com/wp-content/uploads/2023/08/Pink_-H.png|caption^null|alt^null|title^Pink_-H|description^null\" img_width=\"60\" icon_style=\"circle\" title=\"First FAMI-QS certified company\" title_font_color=\"#ffffff\"][/bsf-info-box][/vc_column_inner][vc_column_inner width=\"1/2\" css=\".vc_custom_1691995519863{background-color: #f4ab20 !important;border: 1px solid #f4ab20 !important;border-radius: 35px !important;}\"][bsf-info-box icon_type=\"custom\" icon_img=\"id^3117|url^https://farmchemie.yasithawd.com/wp-content/uploads/2023/08/Pink_-H.png|caption^null|alt^null|title^Pink_-H|description^null\" img_width=\"60\" icon_style=\"circle\" title=\"First Certificate of Ethical Trading certified in Livestock industry\"][/bsf-info-box][/vc_column_inner][/vc_row_inner][vc_row_inner gap=\"20\"][vc_column_inner width=\"1/4\" css=\".vc_custom_1691996718116{border-radius: 35px !important;}\"][/vc_column_inner][vc_column_inner width=\"2/4\" css=\".vc_custom_1691995519863{background-color: #f4ab20 !important;border: 1px solid #f4ab20 !important;border-radius: 35px !important;}\"][bsf-info-box icon_type=\"custom\" icon_img=\"id^3117|url^https://farmchemie.yasithawd.com/wp-content/uploads/2023/08/Pink_-H.png|caption^null|alt^null|title^Pink_-H|description^null\" img_width=\"60\" icon_style=\"circle\" title=\"First Silver awarded company at National Exports Awards in Livestock industry\"][/bsf-info-box][/vc_column_inner][vc_column_inner width=\"1/4\"][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner][vc_single_image image=\"3126\" img_size=\"full\" alignment=\"center\"][vc_single_image image=\"3125\" img_size=\"full\" alignment=\"center\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row]','About us','','inherit','closed','closed','','2917-revision-v1','','','2023-08-14 08:05:32','2023-08-14 08:05:32','',2917,'https://farmchemie.yasithawd.com/?p=3127',0,'revision','',0),(2981,1,'2023-07-17 07:15:43','2023-07-17 07:15:43','','Picture6','','inherit','open','closed','','picture6','','','2023-07-17 07:15:43','2023-07-17 07:15:43','',2964,'https://farmchemie.yasithawd.com/wp-content/uploads/2023/07/Picture6.png',0,'attachment','image/png',0),(2982,1,'2023-07-17 07:16:07','2023-07-17 07:16:07','','Picture7','','inherit','open','closed','','picture7','','','2023-07-17 07:16:07','2023-07-17 07:16:07','',2964,'https://farmchemie.yasithawd.com/wp-content/uploads/2023/07/Picture7.png',0,'attachment','image/png',0),(2983,1,'2023-07-17 07:16:31','2023-07-17 07:16:31','','Picture8','','inherit','open','closed','','picture8','','','2023-07-17 07:16:31','2023-07-17 07:16:31','',2964,'https://farmchemie.yasithawd.com/wp-content/uploads/2023/07/Picture8.png',0,'attachment','image/png',0),(2984,1,'2023-07-17 07:17:15','2023-07-17 07:17:15','','Picture9','','inherit','open','closed','','picture9','','','2023-07-17 07:17:15','2023-07-17 07:17:15','',2964,'https://farmchemie.yasithawd.com/wp-content/uploads/2023/07/Picture9.png',0,'attachment','image/png',0),(3388,1,'2023-09-01 04:34:43','2023-09-01 04:34:43','[vc_row full_width=\"stretch_row\" css=\".vc_custom_1689577528817{padding-bottom: 50px !important;}\"][vc_column css=\".vc_custom_1689577454678{margin-bottom: 50px !important;}\"][vc_row_inner css=\".vc_custom_1692407941633{border-bottom-width: 1px !important;border-bottom-color: #079547 !important;border-bottom-style: solid !important;border-radius: 1px !important;}\"][vc_column_inner width=\"1/2\"][ult_animation_block animation=\"fadeInLeftBig\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][ultimate_heading main_heading=\"Feed Additives\" heading_tag=\"h3\" main_heading_color=\"#079547\" sub_heading_color=\"#792c8a\" alignment=\"left\"]<strong>Premixes/ Specialty Feed Additives/ Dilution of Active Ingredients/ Concentrates</strong><strong>\r\n</strong>Pack sizes – 1,000 kg, 500 kg, 50 kg, 25 kg, 15 kg, 10 kg, 5 kg, 1kg[/ultimate_heading][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_single_image image=\"3129\" img_size=\"full\" css_animation=\"fadeInRightBig\"][/vc_column_inner][/vc_row_inner][vc_row_inner css=\".vc_custom_1692407949383{border-bottom-width: 1px !important;border-bottom-color: #079547 !important;border-bottom-style: solid !important;border-radius: 1px !important;}\"][vc_column_inner width=\"1/2\"][vc_single_image image=\"3162\" img_size=\"full\" css_animation=\"fadeInLeftBig\"][/vc_column_inner][vc_column_inner width=\"1/2\"][ult_animation_block animation=\"fadeInRightBig\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][ultimate_heading main_heading=\"Oral Supplements\" heading_tag=\"h3\" main_heading_color=\"#079547\" sub_heading_color=\"#792c8a\" alignment=\"left\"]<strong>Liquids</strong><strong>\r\n</strong>Pack sizes – 1,000 L, 250 L, 50 L, 25 L, 5 L, 1 L, 500 mL, 250 mL, 100 mL, 50 mL\r\n\r\n<strong>Water soluble powders</strong><strong>\r\n</strong>Pack sizes – 25 kg, 15 kg, 10 kg, 5 kg, 1kg[/ultimate_heading][/ult_animation_block][/vc_column_inner][/vc_row_inner][vc_row_inner css=\".vc_custom_1692407957943{border-bottom-width: 1px !important;border-bottom-color: #079547 !important;border-bottom-style: solid !important;border-radius: 1px !important;}\"][vc_column_inner width=\"1/2\"][ult_animation_block animation=\"fadeInLeftBig\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][ultimate_heading main_heading=\"Tablets\" heading_tag=\"h3\" main_heading_color=\"#079547\" sub_heading_color=\"#792c8a\" alignment=\"left\"]<strong>Supplementary tablets for pet care</strong>\r\nTablet sizes – 1 to 5 g\r\n\r\n<strong>Boluses</strong><strong>\r\n</strong>Tablet sizes – 5 to 25 g[/ultimate_heading][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_single_image image=\"3163\" img_size=\"full\" css_animation=\"fadeInRightBig\"][/vc_column_inner][/vc_row_inner][vc_row_inner css=\".vc_custom_1692407970279{border-bottom-width: 1px !important;border-bottom-color: #079547 !important;border-bottom-style: solid !important;border-radius: 1px !important;}\"][vc_column_inner width=\"1/2\"][vc_single_image image=\"3164\" img_size=\"full\" css_animation=\"fadeInLeftBig\"][/vc_column_inner][vc_column_inner width=\"1/2\"][ult_animation_block animation=\"fadeInRightBig\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][ultimate_heading main_heading=\"Veterinary Pharmaceuticals\" heading_tag=\"h3\" main_heading_color=\"#079547\" sub_heading_color=\"#792c8a\" alignment=\"left\"]<strong>Deworming Solutions/ Antibiotics/ Antimicrobials/ Wound care solutions</strong><strong>\r\n</strong>Form – Liquid, WSP[/ultimate_heading][/ult_animation_block][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row full_width=\"stretch_row_content\" css=\".vc_custom_1693451731079{padding-top: 50px !important;padding-bottom: 50px !important;}\"][vc_column][ultimate_heading main_heading=\"Our manufacturing facility is certified with FAMI-QS, WHO GMP &amp; ISO 9001:2015 International Quality standards.\" main_heading_color=\"#079547\" sub_heading_color=\"#792c8a\"]We select only the <strong><em>best</em></strong> and <strong><em>most reputed</em></strong> Raw Material &amp; Packing Material Suppliers for the production of our finished goods.[/ultimate_heading][vc_row_inner equal_height=\"yes\" content_placement=\"middle\"][vc_column_inner width=\"1/5\" offset=\"vc_hidden-lg vc_hidden-md\"][vc_single_image image=\"3062\" img_size=\"full\" alignment=\"center\"][/vc_column_inner][vc_column_inner width=\"1/5\" css=\".vc_custom_1691846530645{border-right-width: 1px !important;border-left-width: 1px !important;border-left-color: #000000 !important;border-left-style: solid !important;border-right-color: #000000 !important;border-right-style: solid !important;border-radius: 1px !important;}\" offset=\"vc_hidden-lg vc_hidden-md\"][vc_single_image image=\"3063\" img_size=\"full\" alignment=\"center\"][/vc_column_inner][vc_column_inner width=\"1/5\" offset=\"vc_hidden-lg vc_hidden-md\"][vc_single_image image=\"3064\" img_size=\"full\" alignment=\"center\"][/vc_column_inner][vc_column_inner width=\"1/5\" css=\".vc_custom_1691846545469{border-right-width: 1px !important;border-left-width: 1px !important;border-left-color: #000000 !important;border-left-style: solid !important;border-right-color: #000000 !important;border-right-style: solid !important;border-radius: 1px !important;}\" offset=\"vc_hidden-lg vc_hidden-md\"][vc_single_image image=\"3065\" img_size=\"full\" alignment=\"center\"][/vc_column_inner][vc_column_inner width=\"1/5\" offset=\"vc_hidden-lg vc_hidden-md\"][vc_single_image image=\"3066\" img_size=\"full\" alignment=\"center\"][/vc_column_inner][/vc_row_inner][vc_row_inner equal_height=\"yes\" content_placement=\"middle\"][vc_column_inner width=\"1/4\" css=\".vc_custom_1691846563021{border-right-width: 1px !important;border-right-color: #000000 !important;border-right-style: solid !important;border-radius: 1px !important;}\" offset=\"vc_hidden-lg vc_hidden-md\"][vc_single_image image=\"3067\" img_size=\"full\" alignment=\"center\"][/vc_column_inner][vc_column_inner width=\"1/4\" css=\".vc_custom_1691846569845{border-right-width: 1px !important;border-right-color: #000000 !important;border-right-style: solid !important;border-radius: 1px !important;}\" offset=\"vc_hidden-lg vc_hidden-md\"][vc_single_image image=\"3068\" img_size=\"full\" alignment=\"center\"][/vc_column_inner][vc_column_inner width=\"1/4\" css=\".vc_custom_1691846576949{border-right-width: 1px !important;border-right-color: #000000 !important;border-right-style: solid !important;border-radius: 1px !important;}\" offset=\"vc_hidden-lg vc_hidden-md\"][vc_single_image image=\"3069\" img_size=\"full\" alignment=\"center\"][/vc_column_inner][vc_column_inner width=\"1/4\" offset=\"vc_hidden-lg vc_hidden-md\"][vc_single_image image=\"3070\" img_size=\"full\" alignment=\"center\"][/vc_column_inner][/vc_row_inner][vc_row_inner disable_element=\"yes\"][vc_column_inner width=\"1/3\"][vc_single_image image=\"2981\" img_size=\"full\"][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_single_image image=\"2982\" img_size=\"full\"][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_single_image image=\"2983\" img_size=\"full\"][/vc_column_inner][/vc_row_inner][vc_row_inner disable_element=\"yes\"][vc_column_inner width=\"1/6\"][/vc_column_inner][vc_column_inner width=\"2/3\"][vc_single_image image=\"2984\" img_size=\"full\"][/vc_column_inner][vc_column_inner width=\"1/6\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row full_width=\"stretch_row_content_no_spaces\"][vc_column offset=\"vc_hidden-sm vc_hidden-xs\"][vc_single_image image=\"3120\" img_size=\"full\" alignment=\"center\"][/vc_column][/vc_row][vc_row css=\".vc_custom_1689578794814{padding-top: 50px !important;padding-bottom: 50px !important;}\"][vc_column][ultimate_heading main_heading=\"Supplier selection and procurement criteria\" main_heading_color=\"#079547\" sub_heading_color=\"#792c8a\" alignment=\"left\"][/ultimate_heading][vc_row_inner css=\".vc_custom_1689578812611{margin-top: 50px !important;}\"][vc_column_inner width=\"1/2\"][dt_vc_list dividers=\"false\"]\r\n<ul>\r\n 	<li>Check supplier’s quality certification to ensure raw material quality</li>\r\n 	<li>New vendor validation protocol - In case of a change in the supplier, obtain samples and validate in the lab</li>\r\n</ul>\r\n[/dt_vc_list][/vc_column_inner][vc_column_inner width=\"1/2\"][dt_vc_list dividers=\"false\"]\r\n<ul>\r\n 	<li>Income inspection carried out on every consignment (Tested for Chemical Assay &amp; Physical Properties)</li>\r\n 	<li>Quality department approval required to be used in the production</li>\r\n</ul>\r\n[/dt_vc_list][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row css=\".vc_custom_1689578794814{padding-top: 50px !important;padding-bottom: 50px !important;}\"][vc_column][ultimate_heading main_heading=\"Please contact us to start your Marketing Journey with a reliable manufacturing partnership with FARMCHEMIE\" heading_tag=\"h3\" main_heading_color=\"#079547\" sub_heading_color=\"#792c8a\" alignment=\"left\"][/ultimate_heading][vc_row_inner css=\".vc_custom_1689578812611{margin-top: 50px !important;}\"][vc_column_inner width=\"1/2\"][bsf-info-box icon_size=\"32\" title=\"International Markets\" read_more=\"more\" read_text=\"Learn More\" pos=\"square_box\" box_border_width=\"1\" title_font_color=\"#ffffff\" desc_font_color=\"#ffffff\" title_font_size=\"desktop:25px;\"]<strong>Email :</strong> <a href=\"mailto:sales.export@farmchemie.com\"><u>sales.export@farmchemie.com</u></a>\r\n<strong>Tel No :</strong> + 94 76 577 2975[/bsf-info-box][/vc_column_inner][vc_column_inner width=\"1/2\"][bsf-info-box icon_size=\"32\" title=\"Sri Lankan Market\" pos=\"square_box\" box_border_style=\"solid\" box_border_width=\"1\" box_border_color=\"#079547\" title_font_color=\"#079547\" desc_font_color=\"#792c8a\" title_font_size=\"desktop:25px;\"]Email : <a href=\"mailto:sales.local@farmchemie.com\"><u>sales.local@farmchemie.com</u></a>\r\nTel No : +94 74 224 6947[/bsf-info-box][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row full_width=\"stretch_row_content\" equal_height=\"yes\" content_placement=\"middle\" css=\".vc_custom_1693540932074{margin-top: 10px !important;margin-bottom: 10px !important;}\"][vc_column width=\"1/2\" css=\".vc_custom_1693540291208{background-image: url(https://farmchemie.yasithawd.com/wp-content/uploads/2023/09/02International-Markets-Sri-Lankan-Market.png?id=3379) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\"][vc_empty_space height=\"300px\"][/vc_column][vc_column width=\"1/2\" css=\".vc_custom_1693540250450{background-color: #8d499b !important;}\"][ultimate_heading main_heading=\"Sri Lankan Markets\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" margin_design_tab_text=\"\"]Email : <a href=\"mailto:sales.import@farmchemie.com\">sales.import@farmchemie.com</a>\r\nTel No : + 94 76 577 2975[/ultimate_heading][dt_default_button size=\"big\" button_alignment=\"btn_center\"]Read More[/dt_default_button][/vc_column][/vc_row][vc_row full_width=\"stretch_row_content\" equal_height=\"yes\" content_placement=\"middle\"][vc_column width=\"1/2\" css=\".vc_custom_1693540116474{background-color: #039447 !important;}\"][ultimate_heading main_heading=\"International Markets\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\"]Email : <a href=\"mailto:sales.export@farmchemie.com\">sales.export@farmchemie.com</a>\r\nTel No : + 94 76 577 2975[/ultimate_heading][dt_default_button size=\"big\" button_alignment=\"btn_center\"]Read More[/dt_default_button][/vc_column][vc_column width=\"1/2\" css=\".vc_custom_1693540312642{background-image: url(https://farmchemie.yasithawd.com/wp-content/uploads/2023/09/01International-Markets-Sri-Lankan-Market.png?id=3378) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\"][vc_empty_space height=\"300px\"][/vc_column][/vc_row]','Manufacturing','','inherit','closed','closed','','2964-revision-v1','','','2023-09-01 04:34:43','2023-09-01 04:34:43','',2964,'https://farmchemie.yasithawd.com/?p=3388',0,'revision','',0),(3390,1,'2023-09-01 04:49:25','2023-09-01 04:49:25','[vc_row full_width=\"stretch_row\" css=\".vc_custom_1689577528817{padding-bottom: 50px !important;}\"][vc_column css=\".vc_custom_1689577454678{margin-bottom: 50px !important;}\"][vc_row_inner css=\".vc_custom_1692407941633{border-bottom-width: 1px !important;border-bottom-color: #079547 !important;border-bottom-style: solid !important;border-radius: 1px !important;}\"][vc_column_inner width=\"1/2\"][ult_animation_block animation=\"fadeInLeftBig\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][ultimate_heading main_heading=\"Feed Additives\" heading_tag=\"h3\" main_heading_color=\"#079547\" sub_heading_color=\"#792c8a\" alignment=\"right\"]<strong>Premixes/ Specialty Feed Additives/ Dilution of Active Ingredients/ Concentrates</strong><strong>\r\n</strong>Pack sizes – 1,000 kg, 500 kg, 50 kg, 25 kg, 15 kg, 10 kg, 5 kg, 1kg[/ultimate_heading][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_single_image image=\"3129\" img_size=\"full\" css_animation=\"fadeInRightBig\"][/vc_column_inner][/vc_row_inner][vc_row_inner css=\".vc_custom_1692407949383{border-bottom-width: 1px !important;border-bottom-color: #079547 !important;border-bottom-style: solid !important;border-radius: 1px !important;}\"][vc_column_inner width=\"1/2\"][vc_single_image image=\"3162\" img_size=\"full\" css_animation=\"fadeInLeftBig\"][/vc_column_inner][vc_column_inner width=\"1/2\"][ult_animation_block animation=\"fadeInRightBig\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][ultimate_heading main_heading=\"Oral Supplements\" heading_tag=\"h3\" main_heading_color=\"#079547\" sub_heading_color=\"#792c8a\" alignment=\"left\"]<strong>Liquids</strong><strong>\r\n</strong>Pack sizes – 1,000 L, 250 L, 50 L, 25 L, 5 L, 1 L, 500 mL, 250 mL, 100 mL, 50 mL\r\n\r\n<strong>Water soluble powders</strong><strong>\r\n</strong>Pack sizes – 25 kg, 15 kg, 10 kg, 5 kg, 1kg[/ultimate_heading][/ult_animation_block][/vc_column_inner][/vc_row_inner][vc_row_inner css=\".vc_custom_1692407957943{border-bottom-width: 1px !important;border-bottom-color: #079547 !important;border-bottom-style: solid !important;border-radius: 1px !important;}\"][vc_column_inner width=\"1/2\"][ult_animation_block animation=\"fadeInLeftBig\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][ultimate_heading main_heading=\"Tablets\" heading_tag=\"h3\" main_heading_color=\"#079547\" sub_heading_color=\"#792c8a\" alignment=\"right\"]<strong>Supplementary tablets for pet care</strong>\r\nTablet sizes – 1 to 5 g\r\n\r\n<strong>Boluses</strong><strong>\r\n</strong>Tablet sizes – 5 to 25 g[/ultimate_heading][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_single_image image=\"3163\" img_size=\"full\" css_animation=\"fadeInRightBig\"][/vc_column_inner][/vc_row_inner][vc_row_inner css=\".vc_custom_1692407970279{border-bottom-width: 1px !important;border-bottom-color: #079547 !important;border-bottom-style: solid !important;border-radius: 1px !important;}\"][vc_column_inner width=\"1/2\"][vc_single_image image=\"3164\" img_size=\"full\" css_animation=\"fadeInLeftBig\"][/vc_column_inner][vc_column_inner width=\"1/2\"][ult_animation_block animation=\"fadeInRightBig\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][ultimate_heading main_heading=\"Veterinary Pharmaceuticals\" heading_tag=\"h3\" main_heading_color=\"#079547\" sub_heading_color=\"#792c8a\" alignment=\"left\"]<strong>Deworming Solutions/ Antibiotics/ Antimicrobials/ Wound care solutions</strong><strong>\r\n</strong>Form – Liquid, WSP[/ultimate_heading][/ult_animation_block][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row full_width=\"stretch_row_content\" css=\".vc_custom_1693451731079{padding-top: 50px !important;padding-bottom: 50px !important;}\"][vc_column][ultimate_heading main_heading=\"Our manufacturing facility is certified with FAMI-QS, WHO GMP &amp; ISO 9001:2015 International Quality standards.\" main_heading_color=\"#079547\" sub_heading_color=\"#792c8a\"]We select only the <strong><em>best</em></strong> and <strong><em>most reputed</em></strong> Raw Material &amp; Packing Material Suppliers for the production of our finished goods.[/ultimate_heading][vc_row_inner equal_height=\"yes\" content_placement=\"middle\"][vc_column_inner width=\"1/5\" offset=\"vc_hidden-lg vc_hidden-md\"][vc_single_image image=\"3062\" img_size=\"full\" alignment=\"center\"][/vc_column_inner][vc_column_inner width=\"1/5\" css=\".vc_custom_1691846530645{border-right-width: 1px !important;border-left-width: 1px !important;border-left-color: #000000 !important;border-left-style: solid !important;border-right-color: #000000 !important;border-right-style: solid !important;border-radius: 1px !important;}\" offset=\"vc_hidden-lg vc_hidden-md\"][vc_single_image image=\"3063\" img_size=\"full\" alignment=\"center\"][/vc_column_inner][vc_column_inner width=\"1/5\" offset=\"vc_hidden-lg vc_hidden-md\"][vc_single_image image=\"3064\" img_size=\"full\" alignment=\"center\"][/vc_column_inner][vc_column_inner width=\"1/5\" css=\".vc_custom_1691846545469{border-right-width: 1px !important;border-left-width: 1px !important;border-left-color: #000000 !important;border-left-style: solid !important;border-right-color: #000000 !important;border-right-style: solid !important;border-radius: 1px !important;}\" offset=\"vc_hidden-lg vc_hidden-md\"][vc_single_image image=\"3065\" img_size=\"full\" alignment=\"center\"][/vc_column_inner][vc_column_inner width=\"1/5\" offset=\"vc_hidden-lg vc_hidden-md\"][vc_single_image image=\"3066\" img_size=\"full\" alignment=\"center\"][/vc_column_inner][/vc_row_inner][vc_row_inner equal_height=\"yes\" content_placement=\"middle\"][vc_column_inner width=\"1/4\" css=\".vc_custom_1691846563021{border-right-width: 1px !important;border-right-color: #000000 !important;border-right-style: solid !important;border-radius: 1px !important;}\" offset=\"vc_hidden-lg vc_hidden-md\"][vc_single_image image=\"3067\" img_size=\"full\" alignment=\"center\"][/vc_column_inner][vc_column_inner width=\"1/4\" css=\".vc_custom_1691846569845{border-right-width: 1px !important;border-right-color: #000000 !important;border-right-style: solid !important;border-radius: 1px !important;}\" offset=\"vc_hidden-lg vc_hidden-md\"][vc_single_image image=\"3068\" img_size=\"full\" alignment=\"center\"][/vc_column_inner][vc_column_inner width=\"1/4\" css=\".vc_custom_1691846576949{border-right-width: 1px !important;border-right-color: #000000 !important;border-right-style: solid !important;border-radius: 1px !important;}\" offset=\"vc_hidden-lg vc_hidden-md\"][vc_single_image image=\"3069\" img_size=\"full\" alignment=\"center\"][/vc_column_inner][vc_column_inner width=\"1/4\" offset=\"vc_hidden-lg vc_hidden-md\"][vc_single_image image=\"3070\" img_size=\"full\" alignment=\"center\"][/vc_column_inner][/vc_row_inner][vc_row_inner disable_element=\"yes\"][vc_column_inner width=\"1/3\"][vc_single_image image=\"2981\" img_size=\"full\"][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_single_image image=\"2982\" img_size=\"full\"][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_single_image image=\"2983\" img_size=\"full\"][/vc_column_inner][/vc_row_inner][vc_row_inner disable_element=\"yes\"][vc_column_inner width=\"1/6\"][/vc_column_inner][vc_column_inner width=\"2/3\"][vc_single_image image=\"2984\" img_size=\"full\"][/vc_column_inner][vc_column_inner width=\"1/6\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row full_width=\"stretch_row_content_no_spaces\"][vc_column offset=\"vc_hidden-sm vc_hidden-xs\"][vc_single_image image=\"3120\" img_size=\"full\" alignment=\"center\"][/vc_column][/vc_row][vc_row css=\".vc_custom_1689578794814{padding-top: 50px !important;padding-bottom: 50px !important;}\"][vc_column][ultimate_heading main_heading=\"Supplier selection and procurement criteria\" main_heading_color=\"#079547\" sub_heading_color=\"#792c8a\" alignment=\"left\"][/ultimate_heading][vc_row_inner css=\".vc_custom_1689578812611{margin-top: 50px !important;}\"][vc_column_inner width=\"1/2\"][dt_vc_list dividers=\"false\"]\r\n<ul>\r\n 	<li>Check supplier’s quality certification to ensure raw material quality</li>\r\n 	<li>New vendor validation protocol - In case of a change in the supplier, obtain samples and validate in the lab</li>\r\n</ul>\r\n[/dt_vc_list][/vc_column_inner][vc_column_inner width=\"1/2\"][dt_vc_list dividers=\"false\"]\r\n<ul>\r\n 	<li>Income inspection carried out on every consignment (Tested for Chemical Assay &amp; Physical Properties)</li>\r\n 	<li>Quality department approval required to be used in the production</li>\r\n</ul>\r\n[/dt_vc_list][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row css=\".vc_custom_1689578794814{padding-top: 50px !important;padding-bottom: 50px !important;}\"][vc_column][ultimate_heading main_heading=\"Please contact us to start your Marketing Journey with a reliable manufacturing partnership with FARMCHEMIE\" heading_tag=\"h3\" main_heading_color=\"#079547\" sub_heading_color=\"#792c8a\" alignment=\"left\"][/ultimate_heading][vc_row_inner css=\".vc_custom_1689578812611{margin-top: 50px !important;}\"][vc_column_inner width=\"1/2\"][bsf-info-box icon_size=\"32\" title=\"International Markets\" read_more=\"more\" read_text=\"Learn More\" pos=\"square_box\" box_border_width=\"1\" title_font_color=\"#ffffff\" desc_font_color=\"#ffffff\" title_font_size=\"desktop:25px;\"]<strong>Email :</strong> <a href=\"mailto:sales.export@farmchemie.com\"><u>sales.export@farmchemie.com</u></a>\r\n<strong>Tel No :</strong> + 94 76 577 2975[/bsf-info-box][/vc_column_inner][vc_column_inner width=\"1/2\"][bsf-info-box icon_size=\"32\" title=\"Sri Lankan Market\" pos=\"square_box\" box_border_style=\"solid\" box_border_width=\"1\" box_border_color=\"#079547\" title_font_color=\"#079547\" desc_font_color=\"#792c8a\" title_font_size=\"desktop:25px;\"]Email : <a href=\"mailto:sales.local@farmchemie.com\"><u>sales.local@farmchemie.com</u></a>\r\nTel No : +94 74 224 6947[/bsf-info-box][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row full_width=\"stretch_row_content\" equal_height=\"yes\" content_placement=\"middle\" css=\".vc_custom_1693540932074{margin-top: 10px !important;margin-bottom: 10px !important;}\"][vc_column width=\"1/2\" css=\".vc_custom_1693540291208{background-image: url(https://farmchemie.yasithawd.com/wp-content/uploads/2023/09/02International-Markets-Sri-Lankan-Market.png?id=3379) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\"][vc_empty_space height=\"400px\"][/vc_column][vc_column width=\"1/2\" css=\".vc_custom_1693540250450{background-color: #8d499b !important;}\"][ultimate_heading main_heading=\"Sri Lankan Markets\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\"]Email : <a href=\"mailto:sales.import@farmchemie.com\">sales.import@farmchemie.com</a>\r\nTel No : + 94 76 577 2975[/ultimate_heading][dt_default_button size=\"big\" button_alignment=\"btn_center\"]Read More[/dt_default_button][/vc_column][/vc_row][vc_row full_width=\"stretch_row_content\" equal_height=\"yes\" content_placement=\"middle\"][vc_column width=\"1/2\" css=\".vc_custom_1693540116474{background-color: #039447 !important;}\"][ultimate_heading main_heading=\"International Markets\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\"]Email : <a href=\"mailto:sales.export@farmchemie.com\">sales.export@farmchemie.com</a>\r\nTel No : + 94 76 577 2975[/ultimate_heading][dt_default_button size=\"big\" button_alignment=\"btn_center\"]Read More[/dt_default_button][/vc_column][vc_column width=\"1/2\" css=\".vc_custom_1693540312642{background-image: url(https://farmchemie.yasithawd.com/wp-content/uploads/2023/09/01International-Markets-Sri-Lankan-Market.png?id=3378) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\"][vc_empty_space height=\"400px\"][/vc_column][/vc_row]','Manufacturing','','inherit','closed','closed','','2964-revision-v1','','','2023-09-01 04:49:25','2023-09-01 04:49:25','',2964,'https://farmchemie.yasithawd.com/?p=3390',0,'revision','',0),(3389,1,'2023-09-01 04:41:32','2023-09-01 04:41:32','[vc_row full_width=\"stretch_row\" css=\".vc_custom_1689577528817{padding-bottom: 50px !important;}\"][vc_column css=\".vc_custom_1689577454678{margin-bottom: 50px !important;}\"][vc_row_inner css=\".vc_custom_1692407941633{border-bottom-width: 1px !important;border-bottom-color: #079547 !important;border-bottom-style: solid !important;border-radius: 1px !important;}\"][vc_column_inner width=\"1/2\"][ult_animation_block animation=\"fadeInLeftBig\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][ultimate_heading main_heading=\"Feed Additives\" heading_tag=\"h3\" main_heading_color=\"#079547\" sub_heading_color=\"#792c8a\" alignment=\"right\" margin_design_tab_text=\"\"]<strong>Premixes/ Specialty Feed Additives/ Dilution of Active Ingredients/ Concentrates</strong><strong>\r\n</strong>Pack sizes – 1,000 kg, 500 kg, 50 kg, 25 kg, 15 kg, 10 kg, 5 kg, 1kg[/ultimate_heading][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_single_image image=\"3129\" img_size=\"full\" css_animation=\"fadeInRightBig\"][/vc_column_inner][/vc_row_inner][vc_row_inner css=\".vc_custom_1692407949383{border-bottom-width: 1px !important;border-bottom-color: #079547 !important;border-bottom-style: solid !important;border-radius: 1px !important;}\"][vc_column_inner width=\"1/2\"][vc_single_image image=\"3162\" img_size=\"full\" css_animation=\"fadeInLeftBig\"][/vc_column_inner][vc_column_inner width=\"1/2\"][ult_animation_block animation=\"fadeInRightBig\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][ultimate_heading main_heading=\"Oral Supplements\" heading_tag=\"h3\" main_heading_color=\"#079547\" sub_heading_color=\"#792c8a\" alignment=\"left\"]<strong>Liquids</strong><strong>\r\n</strong>Pack sizes – 1,000 L, 250 L, 50 L, 25 L, 5 L, 1 L, 500 mL, 250 mL, 100 mL, 50 mL\r\n\r\n<strong>Water soluble powders</strong><strong>\r\n</strong>Pack sizes – 25 kg, 15 kg, 10 kg, 5 kg, 1kg[/ultimate_heading][/ult_animation_block][/vc_column_inner][/vc_row_inner][vc_row_inner css=\".vc_custom_1692407957943{border-bottom-width: 1px !important;border-bottom-color: #079547 !important;border-bottom-style: solid !important;border-radius: 1px !important;}\"][vc_column_inner width=\"1/2\"][ult_animation_block animation=\"fadeInLeftBig\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][ultimate_heading main_heading=\"Tablets\" heading_tag=\"h3\" main_heading_color=\"#079547\" sub_heading_color=\"#792c8a\" alignment=\"right\" margin_design_tab_text=\"\"]<strong>Supplementary tablets for pet care</strong>\r\nTablet sizes – 1 to 5 g\r\n\r\n<strong>Boluses</strong><strong>\r\n</strong>Tablet sizes – 5 to 25 g[/ultimate_heading][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_single_image image=\"3163\" img_size=\"full\" css_animation=\"fadeInRightBig\"][/vc_column_inner][/vc_row_inner][vc_row_inner css=\".vc_custom_1692407970279{border-bottom-width: 1px !important;border-bottom-color: #079547 !important;border-bottom-style: solid !important;border-radius: 1px !important;}\"][vc_column_inner width=\"1/2\"][vc_single_image image=\"3164\" img_size=\"full\" css_animation=\"fadeInLeftBig\"][/vc_column_inner][vc_column_inner width=\"1/2\"][ult_animation_block animation=\"fadeInRightBig\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][ultimate_heading main_heading=\"Veterinary Pharmaceuticals\" heading_tag=\"h3\" main_heading_color=\"#079547\" sub_heading_color=\"#792c8a\" alignment=\"left\"]<strong>Deworming Solutions/ Antibiotics/ Antimicrobials/ Wound care solutions</strong><strong>\r\n</strong>Form – Liquid, WSP[/ultimate_heading][/ult_animation_block][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row full_width=\"stretch_row_content\" css=\".vc_custom_1693451731079{padding-top: 50px !important;padding-bottom: 50px !important;}\"][vc_column][ultimate_heading main_heading=\"Our manufacturing facility is certified with FAMI-QS, WHO GMP &amp; ISO 9001:2015 International Quality standards.\" main_heading_color=\"#079547\" sub_heading_color=\"#792c8a\"]We select only the <strong><em>best</em></strong> and <strong><em>most reputed</em></strong> Raw Material &amp; Packing Material Suppliers for the production of our finished goods.[/ultimate_heading][vc_row_inner equal_height=\"yes\" content_placement=\"middle\"][vc_column_inner width=\"1/5\" offset=\"vc_hidden-lg vc_hidden-md\"][vc_single_image image=\"3062\" img_size=\"full\" alignment=\"center\"][/vc_column_inner][vc_column_inner width=\"1/5\" css=\".vc_custom_1691846530645{border-right-width: 1px !important;border-left-width: 1px !important;border-left-color: #000000 !important;border-left-style: solid !important;border-right-color: #000000 !important;border-right-style: solid !important;border-radius: 1px !important;}\" offset=\"vc_hidden-lg vc_hidden-md\"][vc_single_image image=\"3063\" img_size=\"full\" alignment=\"center\"][/vc_column_inner][vc_column_inner width=\"1/5\" offset=\"vc_hidden-lg vc_hidden-md\"][vc_single_image image=\"3064\" img_size=\"full\" alignment=\"center\"][/vc_column_inner][vc_column_inner width=\"1/5\" css=\".vc_custom_1691846545469{border-right-width: 1px !important;border-left-width: 1px !important;border-left-color: #000000 !important;border-left-style: solid !important;border-right-color: #000000 !important;border-right-style: solid !important;border-radius: 1px !important;}\" offset=\"vc_hidden-lg vc_hidden-md\"][vc_single_image image=\"3065\" img_size=\"full\" alignment=\"center\"][/vc_column_inner][vc_column_inner width=\"1/5\" offset=\"vc_hidden-lg vc_hidden-md\"][vc_single_image image=\"3066\" img_size=\"full\" alignment=\"center\"][/vc_column_inner][/vc_row_inner][vc_row_inner equal_height=\"yes\" content_placement=\"middle\"][vc_column_inner width=\"1/4\" css=\".vc_custom_1691846563021{border-right-width: 1px !important;border-right-color: #000000 !important;border-right-style: solid !important;border-radius: 1px !important;}\" offset=\"vc_hidden-lg vc_hidden-md\"][vc_single_image image=\"3067\" img_size=\"full\" alignment=\"center\"][/vc_column_inner][vc_column_inner width=\"1/4\" css=\".vc_custom_1691846569845{border-right-width: 1px !important;border-right-color: #000000 !important;border-right-style: solid !important;border-radius: 1px !important;}\" offset=\"vc_hidden-lg vc_hidden-md\"][vc_single_image image=\"3068\" img_size=\"full\" alignment=\"center\"][/vc_column_inner][vc_column_inner width=\"1/4\" css=\".vc_custom_1691846576949{border-right-width: 1px !important;border-right-color: #000000 !important;border-right-style: solid !important;border-radius: 1px !important;}\" offset=\"vc_hidden-lg vc_hidden-md\"][vc_single_image image=\"3069\" img_size=\"full\" alignment=\"center\"][/vc_column_inner][vc_column_inner width=\"1/4\" offset=\"vc_hidden-lg vc_hidden-md\"][vc_single_image image=\"3070\" img_size=\"full\" alignment=\"center\"][/vc_column_inner][/vc_row_inner][vc_row_inner disable_element=\"yes\"][vc_column_inner width=\"1/3\"][vc_single_image image=\"2981\" img_size=\"full\"][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_single_image image=\"2982\" img_size=\"full\"][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_single_image image=\"2983\" img_size=\"full\"][/vc_column_inner][/vc_row_inner][vc_row_inner disable_element=\"yes\"][vc_column_inner width=\"1/6\"][/vc_column_inner][vc_column_inner width=\"2/3\"][vc_single_image image=\"2984\" img_size=\"full\"][/vc_column_inner][vc_column_inner width=\"1/6\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row full_width=\"stretch_row_content_no_spaces\"][vc_column offset=\"vc_hidden-sm vc_hidden-xs\"][vc_single_image image=\"3120\" img_size=\"full\" alignment=\"center\"][/vc_column][/vc_row][vc_row css=\".vc_custom_1689578794814{padding-top: 50px !important;padding-bottom: 50px !important;}\"][vc_column][ultimate_heading main_heading=\"Supplier selection and procurement criteria\" main_heading_color=\"#079547\" sub_heading_color=\"#792c8a\" alignment=\"left\"][/ultimate_heading][vc_row_inner css=\".vc_custom_1689578812611{margin-top: 50px !important;}\"][vc_column_inner width=\"1/2\"][dt_vc_list dividers=\"false\"]\r\n<ul>\r\n 	<li>Check supplier’s quality certification to ensure raw material quality</li>\r\n 	<li>New vendor validation protocol - In case of a change in the supplier, obtain samples and validate in the lab</li>\r\n</ul>\r\n[/dt_vc_list][/vc_column_inner][vc_column_inner width=\"1/2\"][dt_vc_list dividers=\"false\"]\r\n<ul>\r\n 	<li>Income inspection carried out on every consignment (Tested for Chemical Assay &amp; Physical Properties)</li>\r\n 	<li>Quality department approval required to be used in the production</li>\r\n</ul>\r\n[/dt_vc_list][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row css=\".vc_custom_1689578794814{padding-top: 50px !important;padding-bottom: 50px !important;}\"][vc_column][ultimate_heading main_heading=\"Please contact us to start your Marketing Journey with a reliable manufacturing partnership with FARMCHEMIE\" heading_tag=\"h3\" main_heading_color=\"#079547\" sub_heading_color=\"#792c8a\" alignment=\"left\"][/ultimate_heading][vc_row_inner css=\".vc_custom_1689578812611{margin-top: 50px !important;}\"][vc_column_inner width=\"1/2\"][bsf-info-box icon_size=\"32\" title=\"International Markets\" read_more=\"more\" read_text=\"Learn More\" pos=\"square_box\" box_border_width=\"1\" title_font_color=\"#ffffff\" desc_font_color=\"#ffffff\" title_font_size=\"desktop:25px;\"]<strong>Email :</strong> <a href=\"mailto:sales.export@farmchemie.com\"><u>sales.export@farmchemie.com</u></a>\r\n<strong>Tel No :</strong> + 94 76 577 2975[/bsf-info-box][/vc_column_inner][vc_column_inner width=\"1/2\"][bsf-info-box icon_size=\"32\" title=\"Sri Lankan Market\" pos=\"square_box\" box_border_style=\"solid\" box_border_width=\"1\" box_border_color=\"#079547\" title_font_color=\"#079547\" desc_font_color=\"#792c8a\" title_font_size=\"desktop:25px;\"]Email : <a href=\"mailto:sales.local@farmchemie.com\"><u>sales.local@farmchemie.com</u></a>\r\nTel No : +94 74 224 6947[/bsf-info-box][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row full_width=\"stretch_row_content\" equal_height=\"yes\" content_placement=\"middle\" css=\".vc_custom_1693540932074{margin-top: 10px !important;margin-bottom: 10px !important;}\"][vc_column width=\"1/2\" css=\".vc_custom_1693540291208{background-image: url(https://farmchemie.yasithawd.com/wp-content/uploads/2023/09/02International-Markets-Sri-Lankan-Market.png?id=3379) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\"][vc_empty_space height=\"300px\"][/vc_column][vc_column width=\"1/2\" css=\".vc_custom_1693540250450{background-color: #8d499b !important;}\"][ultimate_heading main_heading=\"Sri Lankan Markets\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\"]Email : <a href=\"mailto:sales.import@farmchemie.com\">sales.import@farmchemie.com</a>\r\nTel No : + 94 76 577 2975[/ultimate_heading][dt_default_button size=\"big\" button_alignment=\"btn_center\"]Read More[/dt_default_button][/vc_column][/vc_row][vc_row full_width=\"stretch_row_content\" equal_height=\"yes\" content_placement=\"middle\"][vc_column width=\"1/2\" css=\".vc_custom_1693540116474{background-color: #039447 !important;}\"][ultimate_heading main_heading=\"International Markets\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\"]Email : <a href=\"mailto:sales.export@farmchemie.com\">sales.export@farmchemie.com</a>\r\nTel No : + 94 76 577 2975[/ultimate_heading][dt_default_button size=\"big\" button_alignment=\"btn_center\"]Read More[/dt_default_button][/vc_column][vc_column width=\"1/2\" css=\".vc_custom_1693540312642{background-image: url(https://farmchemie.yasithawd.com/wp-content/uploads/2023/09/01International-Markets-Sri-Lankan-Market.png?id=3378) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\"][vc_empty_space height=\"300px\"][/vc_column][/vc_row]','Manufacturing','','inherit','closed','closed','','2964-revision-v1','','','2023-09-01 04:41:32','2023-09-01 04:41:32','',2964,'https://farmchemie.yasithawd.com/?p=3389',0,'revision','',0),(2965,1,'2023-07-17 06:12:42','2023-07-17 06:12:42','','VID-20230717-WA0003','','inherit','open','closed','','vid-20230717-wa0003','','','2023-07-17 06:12:42','2023-07-17 06:12:42','',0,'https://farmchemie.yasithawd.com/wp-content/uploads/2023/07/VID-20230717-WA0003.mp4',0,'attachment','video/mp4',0),(2966,1,'2023-07-17 06:14:05','2023-07-17 06:14:05','','Picture1','','inherit','open','closed','','picture1','','','2023-07-17 06:14:05','2023-07-17 06:14:05','',2964,'https://farmchemie.yasithawd.com/wp-content/uploads/2023/07/Picture1.png',0,'attachment','image/png',0),(2967,1,'2023-07-17 06:14:16','2023-07-17 06:14:16','','Picture2','','inherit','open','closed','','picture2','','','2023-07-17 06:14:16','2023-07-17 06:14:16','',2964,'https://farmchemie.yasithawd.com/wp-content/uploads/2023/07/Picture2.png',0,'attachment','image/png',0),(2968,1,'2023-07-17 06:14:30','2023-07-17 06:14:30','','VID-20230717-WA0003_13.jpeg','','inherit','closed','closed','','vid-20230717-wa0003-13-jpeg','','','2023-07-17 06:14:30','2023-07-17 06:14:30','',0,'https://farmchemie.yasithawd.com/wp-content/uploads/revslider/video-media/VID-20230717-WA0003_13.jpeg',0,'attachment','image/jpeg',0),(2969,1,'2023-07-17 06:14:32','2023-07-17 06:14:32','','Picture3','','inherit','open','closed','','picture3','','','2023-07-17 06:14:32','2023-07-17 06:14:32','',2964,'https://farmchemie.yasithawd.com/wp-content/uploads/2023/07/Picture3.png',0,'attachment','image/png',0),(2970,1,'2023-07-17 06:14:37','2023-07-17 06:14:37','','Picture4','','inherit','open','closed','','picture4','','','2023-07-17 06:14:37','2023-07-17 06:14:37','',2964,'https://farmchemie.yasithawd.com/wp-content/uploads/2023/07/Picture4.png',0,'attachment','image/png',0),(2971,1,'2023-07-17 06:14:39','2023-07-17 06:14:39','','Picture5','','inherit','open','closed','','picture5','','','2023-07-17 06:14:39','2023-07-17 06:14:39','',2964,'https://farmchemie.yasithawd.com/wp-content/uploads/2023/07/Picture5.png',0,'attachment','image/png',0),(2979,1,'2023-07-17 07:04:31','2023-07-17 07:04:31','[vc_row css=\".vc_custom_1689577464398{padding-bottom: 50px !important;}\"][vc_column css=\".vc_custom_1689577454678{margin-bottom: 50px !important;}\"][vc_row_inner css=\".vc_custom_1689574969423{padding-top: 35px !important;padding-bottom: 35px !important;}\"][vc_column_inner width=\"2/3\"][ultimate_heading main_heading=\"Feed Additives\" main_heading_color=\"#079547\" sub_heading_color=\"#792c8a\" alignment=\"left\"]<strong>Premixes/ Specialty Feed Additives/ Dilution of Active Ingredients/ Concentrates</strong><strong>\r\n</strong>Pack sizes – 1,000 kg, 500 kg, 50 kg, 25 kg, 15 kg, 10 kg, 5 kg, 1kg[/ultimate_heading][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][vc_row_inner css=\".vc_custom_1689574984575{padding-top: 35px !important;padding-bottom: 35px !important;}\"][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"2/3\"][ultimate_heading main_heading=\"Oral Supplements\" main_heading_color=\"#079547\" sub_heading_color=\"#792c8a\" alignment=\"left\"]<strong>Liquids</strong><strong>\r\n</strong>Pack sizes – 1,000 L, 250 L, 50 L, 25 L, 5 L, 1 L, 500 mL, 250 mL, 100 mL, 50 mL\r\n\r\n<strong>Water soluble powders</strong><strong>\r\n</strong>Pack sizes – 25 kg, 15 kg, 10 kg, 5 kg, 1kg[/ultimate_heading][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row]','Manufacturing','','inherit','closed','closed','','2964-revision-v1','','','2023-07-17 07:04:31','2023-07-17 07:04:31','',2964,'https://farmchemie.yasithawd.com/?p=2979',0,'revision','',0),(2978,1,'2023-07-17 07:01:59','2023-07-17 07:01:59','[vc_row css=\".vc_custom_1689574810584{padding-top: 50px !important;padding-bottom: 50px !important;}\"][vc_column css=\".vc_custom_1689574879615{margin-top: 50px !important;margin-bottom: 50px !important;}\"][vc_row_inner css=\".vc_custom_1689574969423{padding-top: 35px !important;padding-bottom: 35px !important;}\"][vc_column_inner width=\"2/3\"][ultimate_heading main_heading=\"Feed Additives\" main_heading_color=\"#079547\" sub_heading_color=\"#792c8a\" alignment=\"left\"]<strong>Premixes/ Specialty Feed Additives/ Dilution of Active Ingredients/ Concentrates</strong><strong>\r\n</strong>Pack sizes – 1,000 kg, 500 kg, 50 kg, 25 kg, 15 kg, 10 kg, 5 kg, 1kg[/ultimate_heading][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][vc_row_inner css=\".vc_custom_1689574984575{padding-top: 35px !important;padding-bottom: 35px !important;}\"][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"2/3\"][ultimate_heading main_heading=\"Oral Supplements\" main_heading_color=\"#079547\" sub_heading_color=\"#792c8a\" alignment=\"left\"]<strong>Liquids</strong><strong>\r\n</strong>Pack sizes – 1,000 L, 250 L, 50 L, 25 L, 5 L, 1 L, 500 mL, 250 mL, 100 mL, 50 mL\r\n\r\n<strong>Water soluble powders</strong><strong>\r\n</strong>Pack sizes – 25 kg, 15 kg, 10 kg, 5 kg, 1kg[/ultimate_heading][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row]','Manufacturing','','inherit','closed','closed','','2964-revision-v1','','','2023-07-17 07:01:59','2023-07-17 07:01:59','',2964,'https://farmchemie.yasithawd.com/?p=2978',0,'revision','',0),(2972,1,'2023-07-17 06:17:20','2023-07-17 06:17:20','[vc_row][vc_column][ultimate_heading main_heading=\"FARMCHEMIE offers toll-manufacturing services to numerous world-renowned entities\" main_heading_color=\"#079547\" sub_heading_color=\"#792c8a\" margin_design_tab_text=\"\"]With fully automated manufacturing facilities from Buhler, we can manufacture following products with customized packing and under your own brand names,[/ultimate_heading][vc_media_grid grid_id=\"vc_gid:1689574395896-0bfec43a-447d-5\" include=\"2966,2967,2969,2970,2971\"][/vc_column][/vc_row][vc_row css=\".vc_custom_1689574541066{margin-top: 50px !important;}\"][vc_column width=\"2/3\"][ultimate_heading main_heading=\"Feed Additives\" main_heading_color=\"#079547\" sub_heading_color=\"#792c8a\" margin_design_tab_text=\"\"]<strong>Premixes/ Specialty Feed Additives/ Dilution of Active Ingredients/ Concentrates</strong><strong>\r\n</strong>Pack sizes – 1,000 kg, 500 kg, 50 kg, 25 kg, 15 kg, 10 kg, 5 kg, 1kg[/ultimate_heading][/vc_column][vc_column width=\"1/3\"][/vc_column][/vc_row][vc_row css=\".vc_custom_1689574541066{margin-top: 50px !important;}\"][vc_column width=\"1/3\"][/vc_column][vc_column width=\"2/3\"][ultimate_heading main_heading=\"Oral Supplements\" main_heading_color=\"#079547\" sub_heading_color=\"#792c8a\" margin_design_tab_text=\"\"]<strong>Liquids</strong><strong>\r\n</strong>Pack sizes – 1,000 L, 250 L, 50 L, 25 L, 5 L, 1 L, 500 mL, 250 mL, 100 mL, 50 mL\r\n\r\n<strong>Water soluble powders</strong><strong>\r\n</strong>Pack sizes – 25 kg, 15 kg, 10 kg, 5 kg, 1kg[/ultimate_heading][/vc_column][/vc_row][vc_row css=\".vc_custom_1689574541066{margin-top: 50px !important;}\"][vc_column width=\"2/3\"][ultimate_heading main_heading=\"Oral Supplements\" main_heading_color=\"#079547\" sub_heading_color=\"#792c8a\" margin_design_tab_text=\"\"]<strong>Liquids</strong><strong>\r\n</strong>Pack sizes – 1,000 L, 250 L, 50 L, 25 L, 5 L, 1 L, 500 mL, 250 mL, 100 mL, 50 mL\r\n\r\n<strong>Water soluble powders</strong><strong>\r\n</strong>Pack sizes – 25 kg, 15 kg, 10 kg, 5 kg, 1kg[/ultimate_heading][/vc_column][vc_column width=\"1/3\"][/vc_column][/vc_row]','Manufacturing','','inherit','closed','closed','','2964-revision-v1','','','2023-07-17 06:17:20','2023-07-17 06:17:20','',2964,'https://farmchemie.yasithawd.com/?p=2972',0,'revision','',0),(2973,1,'2023-07-17 06:18:58','2023-07-17 06:18:58','[vc_row][vc_column][ultimate_heading main_heading=\"FARMCHEMIE offers toll-manufacturing services to numerous world-renowned entities\" main_heading_color=\"#079547\" sub_heading_color=\"#792c8a\" margin_design_tab_text=\"\"]With fully automated manufacturing facilities from Buhler, we can manufacture following products with customized packing and under your own brand names,[/ultimate_heading][vc_media_grid element_width=\"2\" grid_id=\"vc_gid:1689574395896-0bfec43a-447d-5\" include=\"2966,2967,2969,2970,2971\"][/vc_column][/vc_row][vc_row css=\".vc_custom_1689574541066{margin-top: 50px !important;}\"][vc_column width=\"2/3\"][ultimate_heading main_heading=\"Feed Additives\" main_heading_color=\"#079547\" sub_heading_color=\"#792c8a\" margin_design_tab_text=\"\"]<strong>Premixes/ Specialty Feed Additives/ Dilution of Active Ingredients/ Concentrates</strong><strong>\r\n</strong>Pack sizes – 1,000 kg, 500 kg, 50 kg, 25 kg, 15 kg, 10 kg, 5 kg, 1kg[/ultimate_heading][/vc_column][vc_column width=\"1/3\"][/vc_column][/vc_row][vc_row css=\".vc_custom_1689574541066{margin-top: 50px !important;}\"][vc_column width=\"1/3\"][/vc_column][vc_column width=\"2/3\"][ultimate_heading main_heading=\"Oral Supplements\" main_heading_color=\"#079547\" sub_heading_color=\"#792c8a\" margin_design_tab_text=\"\"]<strong>Liquids</strong><strong>\r\n</strong>Pack sizes – 1,000 L, 250 L, 50 L, 25 L, 5 L, 1 L, 500 mL, 250 mL, 100 mL, 50 mL\r\n\r\n<strong>Water soluble powders</strong><strong>\r\n</strong>Pack sizes – 25 kg, 15 kg, 10 kg, 5 kg, 1kg[/ultimate_heading][/vc_column][/vc_row][vc_row css=\".vc_custom_1689574541066{margin-top: 50px !important;}\"][vc_column width=\"2/3\"][ultimate_heading main_heading=\"Oral Supplements\" main_heading_color=\"#079547\" sub_heading_color=\"#792c8a\" margin_design_tab_text=\"\"]<strong>Liquids</strong><strong>\r\n</strong>Pack sizes – 1,000 L, 250 L, 50 L, 25 L, 5 L, 1 L, 500 mL, 250 mL, 100 mL, 50 mL\r\n\r\n<strong>Water soluble powders</strong><strong>\r\n</strong>Pack sizes – 25 kg, 15 kg, 10 kg, 5 kg, 1kg[/ultimate_heading][/vc_column][vc_column width=\"1/3\"][/vc_column][/vc_row]','Manufacturing','','inherit','closed','closed','','2964-revision-v1','','','2023-07-17 06:18:58','2023-07-17 06:18:58','',2964,'https://farmchemie.yasithawd.com/?p=2973',0,'revision','',0),(2974,1,'2023-07-17 06:19:33','2023-07-17 06:19:33','[vc_row css=\".vc_custom_1689574770387{margin-top: 50px !important;margin-bottom: 50px !important;}\"][vc_column][ultimate_heading main_heading=\"FARMCHEMIE offers toll-manufacturing services to numerous world-renowned entities\" main_heading_color=\"#079547\" sub_heading_color=\"#792c8a\" margin_design_tab_text=\"\"]With fully automated manufacturing facilities from Buhler, we can manufacture following products with customized packing and under your own brand names,[/ultimate_heading][vc_media_grid element_width=\"2\" grid_id=\"vc_gid:1689574395896-0bfec43a-447d-5\" include=\"2966,2967,2969,2970,2971\"][/vc_column][/vc_row][vc_row css=\".vc_custom_1689574541066{margin-top: 50px !important;}\"][vc_column width=\"2/3\"][ultimate_heading main_heading=\"Feed Additives\" main_heading_color=\"#079547\" sub_heading_color=\"#792c8a\" margin_design_tab_text=\"\"]<strong>Premixes/ Specialty Feed Additives/ Dilution of Active Ingredients/ Concentrates</strong><strong>\r\n</strong>Pack sizes – 1,000 kg, 500 kg, 50 kg, 25 kg, 15 kg, 10 kg, 5 kg, 1kg[/ultimate_heading][/vc_column][vc_column width=\"1/3\"][/vc_column][/vc_row][vc_row css=\".vc_custom_1689574541066{margin-top: 50px !important;}\"][vc_column width=\"1/3\"][/vc_column][vc_column width=\"2/3\"][ultimate_heading main_heading=\"Oral Supplements\" main_heading_color=\"#079547\" sub_heading_color=\"#792c8a\" margin_design_tab_text=\"\"]<strong>Liquids</strong><strong>\r\n</strong>Pack sizes – 1,000 L, 250 L, 50 L, 25 L, 5 L, 1 L, 500 mL, 250 mL, 100 mL, 50 mL\r\n\r\n<strong>Water soluble powders</strong><strong>\r\n</strong>Pack sizes – 25 kg, 15 kg, 10 kg, 5 kg, 1kg[/ultimate_heading][/vc_column][/vc_row][vc_row css=\".vc_custom_1689574541066{margin-top: 50px !important;}\"][vc_column width=\"2/3\"][ultimate_heading main_heading=\"Oral Supplements\" main_heading_color=\"#079547\" sub_heading_color=\"#792c8a\" margin_design_tab_text=\"\"]<strong>Liquids</strong><strong>\r\n</strong>Pack sizes – 1,000 L, 250 L, 50 L, 25 L, 5 L, 1 L, 500 mL, 250 mL, 100 mL, 50 mL\r\n\r\n<strong>Water soluble powders</strong><strong>\r\n</strong>Pack sizes – 25 kg, 15 kg, 10 kg, 5 kg, 1kg[/ultimate_heading][/vc_column][vc_column width=\"1/3\"][/vc_column][/vc_row]','Manufacturing','','inherit','closed','closed','','2964-revision-v1','','','2023-07-17 06:19:33','2023-07-17 06:19:33','',2964,'https://farmchemie.yasithawd.com/?p=2974',0,'revision','',0),(2976,1,'2023-07-17 06:23:11','2023-07-17 06:23:11','[vc_row][vc_column css=\".vc_custom_1689574827080{margin-top: 50px !important;margin-bottom: 50px !important;}\"][ultimate_heading main_heading=\"FARMCHEMIE offers toll-manufacturing services to numerous world-renowned entities\" main_heading_color=\"#079547\" sub_heading_color=\"#792c8a\" margin_design_tab_text=\"\"]With fully automated manufacturing facilities from Buhler, we can manufacture following products with customized packing and under your own brand names,[/ultimate_heading][vc_media_grid element_width=\"2\" grid_id=\"vc_gid:1689574395896-0bfec43a-447d-5\" include=\"2966,2967,2969,2970,2971\"][/vc_column][/vc_row][vc_row css=\".vc_custom_1689574810584{padding-top: 50px !important;padding-bottom: 50px !important;}\"][vc_column css=\".vc_custom_1689574879615{margin-top: 50px !important;margin-bottom: 50px !important;}\"][vc_row_inner css=\".vc_custom_1689574969423{padding-top: 35px !important;padding-bottom: 35px !important;}\"][vc_column_inner width=\"2/3\"][ultimate_heading main_heading=\"Feed Additives\" main_heading_color=\"#079547\" sub_heading_color=\"#792c8a\" alignment=\"left\" margin_design_tab_text=\"\"]<strong>Premixes/ Specialty Feed Additives/ Dilution of Active Ingredients/ Concentrates</strong><strong>\r\n</strong>Pack sizes – 1,000 kg, 500 kg, 50 kg, 25 kg, 15 kg, 10 kg, 5 kg, 1kg[/ultimate_heading][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][vc_row_inner css=\".vc_custom_1689574984575{padding-top: 35px !important;padding-bottom: 35px !important;}\"][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"2/3\"][ultimate_heading main_heading=\"Oral Supplements\" main_heading_color=\"#079547\" sub_heading_color=\"#792c8a\" alignment=\"left\" margin_design_tab_text=\"\"]<strong>Liquids</strong><strong>\r\n</strong>Pack sizes – 1,000 L, 250 L, 50 L, 25 L, 5 L, 1 L, 500 mL, 250 mL, 100 mL, 50 mL\r\n\r\n<strong>Water soluble powders</strong><strong>\r\n</strong>Pack sizes – 25 kg, 15 kg, 10 kg, 5 kg, 1kg[/ultimate_heading][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row]','Manufacturing','','inherit','closed','closed','','2964-revision-v1','','','2023-07-17 06:23:11','2023-07-17 06:23:11','',2964,'https://farmchemie.yasithawd.com/?p=2976',0,'revision','',0),(2975,1,'2023-07-17 06:22:07','2023-07-17 06:22:07','[vc_row][vc_column css=\".vc_custom_1689574827080{margin-top: 50px !important;margin-bottom: 50px !important;}\"][ultimate_heading main_heading=\"FARMCHEMIE offers toll-manufacturing services to numerous world-renowned entities\" main_heading_color=\"#079547\" sub_heading_color=\"#792c8a\" margin_design_tab_text=\"\"]With fully automated manufacturing facilities from Buhler, we can manufacture following products with customized packing and under your own brand names,[/ultimate_heading][vc_media_grid element_width=\"2\" grid_id=\"vc_gid:1689574395896-0bfec43a-447d-5\" include=\"2966,2967,2969,2970,2971\"][/vc_column][/vc_row][vc_row css=\".vc_custom_1689574810584{padding-top: 50px !important;padding-bottom: 50px !important;}\"][vc_column css=\".vc_custom_1689574879615{margin-top: 50px !important;margin-bottom: 50px !important;}\"][vc_row_inner css=\".vc_custom_1689574868687{margin-top: 35px !important;margin-bottom: 35px !important;}\"][vc_column_inner width=\"2/3\"][ultimate_heading main_heading=\"Feed Additives\" main_heading_color=\"#079547\" sub_heading_color=\"#792c8a\" alignment=\"left\" margin_design_tab_text=\"\"]<strong>Premixes/ Specialty Feed Additives/ Dilution of Active Ingredients/ Concentrates</strong><strong>\r\n</strong>Pack sizes – 1,000 kg, 500 kg, 50 kg, 25 kg, 15 kg, 10 kg, 5 kg, 1kg[/ultimate_heading][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][vc_row_inner css=\".vc_custom_1689574868687{margin-top: 35px !important;margin-bottom: 35px !important;}\"][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"2/3\"][ultimate_heading main_heading=\"Oral Supplements\" main_heading_color=\"#079547\" sub_heading_color=\"#792c8a\" alignment=\"left\" margin_design_tab_text=\"\"]<strong>Liquids</strong><strong>\r\n</strong>Pack sizes – 1,000 L, 250 L, 50 L, 25 L, 5 L, 1 L, 500 mL, 250 mL, 100 mL, 50 mL\r\n\r\n<strong>Water soluble powders</strong><strong>\r\n</strong>Pack sizes – 25 kg, 15 kg, 10 kg, 5 kg, 1kg[/ultimate_heading][/vc_column_inner][/vc_row_inner][vc_row_inner css=\".vc_custom_1689574868687{margin-top: 35px !important;margin-bottom: 35px !important;}\"][vc_column_inner width=\"2/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row]','Manufacturing','','inherit','closed','closed','','2964-revision-v1','','','2023-07-17 06:22:07','2023-07-17 06:22:07','',2964,'https://farmchemie.yasithawd.com/?p=2975',0,'revision','',0),(2977,1,'2023-09-24 05:28:24','2023-09-24 05:28:24','<p>[vc_row full_width=\"stretch_row\" css=\".vc_custom_1689577528817{padding-bottom: 50px !important;}\"][vc_column css=\".vc_custom_1689577454678{margin-bottom: 50px !important;}\"][vc_row_inner css=\".vc_custom_1692407941633{border-bottom-width: 1px !important;border-bottom-color: #079547 !important;border-bottom-style: solid !important;border-radius: 1px !important;}\"][vc_column_inner width=\"1/2\" offset=\"vc_hidden-xs\"][ult_animation_block animation=\"fadeInLeftBig\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][ultimate_heading main_heading=\"Feed Additives\" heading_tag=\"h3\" main_heading_color=\"#079547\" sub_heading_color=\"#792c8a\" alignment=\"right\"]<strong>Premixes/ Specialty Feed Additives/ Dilution of Active Ingredients/ Concentrates</strong><strong><br />\n</strong>Pack sizes – 1,000 kg, 500 kg, 50 kg, 25 kg, 15 kg, 10 kg, 5 kg, 1kg[/ultimate_heading][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/2\" offset=\"vc_hidden-xs\"][vc_single_image image=\"3129\" img_size=\"full\" css_animation=\"fadeInRightBig\"][/vc_column_inner][/vc_row_inner][vc_row_inner css=\".vc_custom_1692407941633{border-bottom-width: 1px !important;border-bottom-color: #079547 !important;border-bottom-style: solid !important;border-radius: 1px !important;}\"][vc_column_inner width=\"1/2\" offset=\"vc_hidden-lg vc_hidden-md vc_hidden-sm\"][vc_single_image image=\"3129\" img_size=\"full\" css_animation=\"fadeInRightBig\"][/vc_column_inner][vc_column_inner width=\"1/2\" offset=\"vc_hidden-lg vc_hidden-md vc_hidden-sm\"][ult_animation_block animation=\"fadeInLeftBig\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][ultimate_heading main_heading=\"Feed Additives\" heading_tag=\"h3\" main_heading_color=\"#079547\" sub_heading_color=\"#792c8a\" alignment=\"right\"]<strong>Premixes/ Specialty Feed Additives/ Dilution of Active Ingredients/ Concentrates</strong><strong><br />\n</strong>Pack sizes – 1,000 kg, 500 kg, 50 kg, 25 kg, 15 kg, 10 kg, 5 kg, 1kg[/ultimate_heading][/ult_animation_block][/vc_column_inner][/vc_row_inner][vc_row_inner css=\".vc_custom_1692407949383{border-bottom-width: 1px !important;border-bottom-color: #079547 !important;border-bottom-style: solid !important;border-radius: 1px !important;}\"][vc_column_inner width=\"1/2\"][vc_single_image image=\"3401\" img_size=\"full\" css_animation=\"fadeInLeftBig\"][/vc_column_inner][vc_column_inner width=\"1/2\"][ult_animation_block animation=\"fadeInRightBig\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][ultimate_heading main_heading=\"Oral Supplements\" heading_tag=\"h3\" main_heading_color=\"#079547\" sub_heading_color=\"#792c8a\" alignment=\"left\"]<strong>Liquids</strong><strong><br />\n</strong>Pack sizes – 1,000 L, 250 L, 50 L, 25 L, 5 L, 1 L, 500 mL, 250 mL, 100 mL, 50 mL</p>\n<p><strong>Water soluble powders</strong><strong><br />\n</strong>Pack sizes – 25 kg, 15 kg, 10 kg, 5 kg, 1kg[/ultimate_heading][/ult_animation_block][/vc_column_inner][/vc_row_inner][vc_row_inner css=\".vc_custom_1692407957943{border-bottom-width: 1px !important;border-bottom-color: #079547 !important;border-bottom-style: solid !important;border-radius: 1px !important;}\"][vc_column_inner width=\"1/2\" offset=\"vc_hidden-xs\"][ult_animation_block animation=\"fadeInLeftBig\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][ultimate_heading main_heading=\"Tablets\" heading_tag=\"h3\" main_heading_color=\"#079547\" sub_heading_color=\"#792c8a\" alignment=\"right\"]<strong>Supplementary tablets for pet care</strong><br />\nTablet sizes – 1 to 5 g</p>\n<p><strong>Boluses</strong><strong><br />\n</strong>Tablet sizes – 5 to 25 g[/ultimate_heading][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/2\" offset=\"vc_hidden-xs\"][vc_single_image image=\"3400\" img_size=\"full\" css_animation=\"fadeInRightBig\"][/vc_column_inner][/vc_row_inner][vc_row_inner css=\".vc_custom_1692407957943{border-bottom-width: 1px !important;border-bottom-color: #079547 !important;border-bottom-style: solid !important;border-radius: 1px !important;}\"][vc_column_inner width=\"1/2\" offset=\"vc_hidden-lg vc_hidden-md vc_hidden-sm\"][vc_single_image image=\"3400\" img_size=\"full\" css_animation=\"fadeInRightBig\"][/vc_column_inner][vc_column_inner width=\"1/2\" offset=\"vc_hidden-lg vc_hidden-md vc_hidden-sm\"][ult_animation_block animation=\"fadeInLeftBig\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][ultimate_heading main_heading=\"Tablets\" heading_tag=\"h3\" main_heading_color=\"#079547\" sub_heading_color=\"#792c8a\" alignment=\"right\"]<strong>Supplementary tablets for pet care</strong><br />\nTablet sizes – 1 to 5 g</p>\n<p><strong>Boluses</strong><strong><br />\n</strong>Tablet sizes – 5 to 25 g[/ultimate_heading][/ult_animation_block][/vc_column_inner][/vc_row_inner][vc_row_inner css=\".vc_custom_1692407970279{border-bottom-width: 1px !important;border-bottom-color: #079547 !important;border-bottom-style: solid !important;border-radius: 1px !important;}\"][vc_column_inner width=\"1/2\"][vc_single_image image=\"3399\" img_size=\"full\" css_animation=\"fadeInLeftBig\"][/vc_column_inner][vc_column_inner width=\"1/2\"][ult_animation_block animation=\"fadeInRightBig\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][ultimate_heading main_heading=\"Veterinary Pharmaceuticals\" heading_tag=\"h3\" main_heading_color=\"#079547\" sub_heading_color=\"#792c8a\" alignment=\"left\"]<strong>Deworming Solutions/ Antibiotics/ Antimicrobials/ Wound care solutions</strong><strong><br />\n</strong>Form – Liquid, WSP[/ultimate_heading][/ult_animation_block][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row full_width=\"stretch_row_content\" css=\".vc_custom_1693451731079{padding-top: 50px !important;padding-bottom: 50px !important;}\"][vc_column][ultimate_heading main_heading=\"Our manufacturing facility is certified with FAMI-QS, WHO GMP &amp; ISO 9001:2015 International Quality standards.\" main_heading_color=\"#079547\" sub_heading_color=\"#792c8a\"]We select only the <strong><em>best</em></strong> and <strong><em>most reputed</em></strong> Raw Material &amp; Packing Material Suppliers for the production of our finished goods.[/ultimate_heading][vc_row_inner equal_height=\"yes\" content_placement=\"middle\"][vc_column_inner width=\"1/5\" offset=\"vc_hidden-lg vc_hidden-md\"][vc_single_image image=\"3062\" img_size=\"full\" alignment=\"center\"][/vc_column_inner][vc_column_inner width=\"1/5\" css=\".vc_custom_1691846530645{border-right-width: 1px !important;border-left-width: 1px !important;border-left-color: #000000 !important;border-left-style: solid !important;border-right-color: #000000 !important;border-right-style: solid !important;border-radius: 1px !important;}\" offset=\"vc_hidden-lg vc_hidden-md\"][vc_single_image image=\"3063\" img_size=\"full\" alignment=\"center\"][/vc_column_inner][vc_column_inner width=\"1/5\" offset=\"vc_hidden-lg vc_hidden-md\"][vc_single_image image=\"3064\" img_size=\"full\" alignment=\"center\"][/vc_column_inner][vc_column_inner width=\"1/5\" css=\".vc_custom_1691846545469{border-right-width: 1px !important;border-left-width: 1px !important;border-left-color: #000000 !important;border-left-style: solid !important;border-right-color: #000000 !important;border-right-style: solid !important;border-radius: 1px !important;}\" offset=\"vc_hidden-lg vc_hidden-md\"][vc_single_image image=\"3065\" img_size=\"full\" alignment=\"center\"][/vc_column_inner][vc_column_inner width=\"1/5\" offset=\"vc_hidden-lg vc_hidden-md\"][vc_single_image image=\"3066\" img_size=\"full\" alignment=\"center\"][/vc_column_inner][/vc_row_inner][vc_row_inner equal_height=\"yes\" content_placement=\"middle\"][vc_column_inner width=\"1/4\" css=\".vc_custom_1691846563021{border-right-width: 1px !important;border-right-color: #000000 !important;border-right-style: solid !important;border-radius: 1px !important;}\" offset=\"vc_hidden-lg vc_hidden-md\"][vc_single_image image=\"3067\" img_size=\"full\" alignment=\"center\"][/vc_column_inner][vc_column_inner width=\"1/4\" css=\".vc_custom_1691846569845{border-right-width: 1px !important;border-right-color: #000000 !important;border-right-style: solid !important;border-radius: 1px !important;}\" offset=\"vc_hidden-lg vc_hidden-md\"][vc_single_image image=\"3068\" img_size=\"full\" alignment=\"center\"][/vc_column_inner][vc_column_inner width=\"1/4\" css=\".vc_custom_1691846576949{border-right-width: 1px !important;border-right-color: #000000 !important;border-right-style: solid !important;border-radius: 1px !important;}\" offset=\"vc_hidden-lg vc_hidden-md\"][vc_single_image image=\"3069\" img_size=\"full\" alignment=\"center\"][/vc_column_inner][vc_column_inner width=\"1/4\" offset=\"vc_hidden-lg vc_hidden-md\"][vc_single_image image=\"3070\" img_size=\"full\" alignment=\"center\"][/vc_column_inner][/vc_row_inner][vc_row_inner disable_element=\"yes\"][vc_column_inner width=\"1/3\"][vc_single_image image=\"2981\" img_size=\"full\"][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_single_image image=\"2982\" img_size=\"full\"][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_single_image image=\"2983\" img_size=\"full\"][/vc_column_inner][/vc_row_inner][vc_row_inner disable_element=\"yes\"][vc_column_inner width=\"1/6\"][/vc_column_inner][vc_column_inner width=\"2/3\"][vc_single_image image=\"2984\" img_size=\"full\"][/vc_column_inner][vc_column_inner width=\"1/6\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row full_width=\"stretch_row_content_no_spaces\"][vc_column offset=\"vc_hidden-sm vc_hidden-xs\"][vc_single_image image=\"3120\" img_size=\"full\" alignment=\"center\"][/vc_column][/vc_row][vc_row css=\".vc_custom_1689578794814{padding-top: 50px !important;padding-bottom: 50px !important;}\"][vc_column][ultimate_heading main_heading=\"Supplier selection and procurement criteria\" main_heading_color=\"#079547\" sub_heading_color=\"#792c8a\" margin_design_tab_text=\"\"][/ultimate_heading][vc_row_inner css=\".vc_custom_1689578812611{margin-top: 50px !important;}\"][vc_column_inner width=\"1/2\"][dt_vc_list dividers=\"false\"]</p>\n<ul>\n<li>Check supplier’s quality certification to ensure raw material quality</li>\n<li>New vendor validation protocol - In case of a change in the supplier, obtain samples and validate in the lab</li>\n</ul>\n<p>[/dt_vc_list][/vc_column_inner][vc_column_inner width=\"1/2\"][dt_vc_list dividers=\"false\"]</p>\n<ul>\n<li>Income inspection carried out on every consignment (Tested for Chemical Assay &amp; Physical Properties)</li>\n<li>Quality department approval required to be used in the production</li>\n</ul>\n<p>[/dt_vc_list][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row css=\".vc_custom_1689578794814{padding-top: 50px !important;padding-bottom: 50px !important;}\"][vc_column][ultimate_heading main_heading=\"Please contact us to start your Marketing Journey with a reliable manufacturing partnership with FARMCHEMIE\" heading_tag=\"h3\" main_heading_color=\"#079547\" sub_heading_color=\"#792c8a\" alignment=\"left\"][/ultimate_heading][/vc_column][/vc_row][vc_row full_width=\"stretch_row_content\" equal_height=\"yes\" content_placement=\"middle\"][vc_column width=\"1/2\" css=\".vc_custom_1693569503225{background-image: url(https://farmchemie.yasithawd.com/wp-content/uploads/2023/09/022International-Markets-Sri-Lankan-Market.png?id=3403) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\"][vc_empty_space height=\"400px\"][/vc_column][vc_column width=\"1/2\" css=\".vc_custom_1693540250450{background-color: #8d499b !important;}\"][ultimate_heading main_heading=\"Sri Lankan Markets\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" main_heading_margin=\"margin-bottom:35px;\" sub_heading_margin=\"margin-bottom:10px;\"]Email : <a href=\"mailto:sales.import@farmchemie.com\">sales.import@farmchemie.com</a><br />\nTel No : + 94 76 577 2975[/ultimate_heading][vc_btn title=\"Read More\" style=\"outline-custom\" outline_custom_color=\"#ffffff\" outline_custom_hover_background=\"#039447\" outline_custom_hover_text=\"#ffffff\" shape=\"round\" align=\"center\"][/vc_column][/vc_row][vc_row full_width=\"stretch_row_content\" equal_height=\"yes\" rtl_reverse=\"yes\" content_placement=\"middle\"][vc_column width=\"1/2\" css=\".vc_custom_1695529397280{background-color: #039447 !important;}\" offset=\"vc_hidden-xs\"][ultimate_heading main_heading=\"International Markets\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" el_class=\"whitetxt\" main_heading_margin=\"margin-bottom:35px;\" sub_heading_margin=\"margin-bottom:10px;\"]Email : <a href=\"mailto:sales.export@farmchemie.com\">sales.export@farmchemie.com</a><br />\nTel No : + 94 76 577 2975[/ultimate_heading][vc_btn title=\"Read More\" style=\"outline-custom\" outline_custom_color=\"#ffffff\" outline_custom_hover_background=\"#8d499b\" outline_custom_hover_text=\"#ffffff\" shape=\"round\" align=\"center\"][/vc_column][vc_column width=\"1/2\" css=\".vc_custom_1695529390186{background-image: url(https://farmchemie.yasithawd.com/wp-content/uploads/2023/09/011International-Markets-Sri-Lankan-Market.png?id=3404) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\" offset=\"vc_hidden-xs\"][vc_empty_space height=\"400px\"][/vc_column][/vc_row][vc_row full_width=\"stretch_row_content\" equal_height=\"yes\" rtl_reverse=\"yes\" content_placement=\"middle\"][vc_column width=\"1/2\" css=\".vc_custom_1695529365330{background-image: url(https://farmchemie.yasithawd.com/wp-content/uploads/2023/09/011International-Markets-Sri-Lankan-Market.png?id=3404) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\" offset=\"vc_hidden-lg vc_hidden-md vc_hidden-sm\"][vc_empty_space height=\"400px\"][/vc_column][vc_column width=\"1/2\" css=\".vc_custom_1695529378241{background-color: #039447 !important;}\" offset=\"vc_hidden-lg vc_hidden-md vc_hidden-sm\"][ultimate_heading main_heading=\"International Markets\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" el_class=\"whitetxt\" main_heading_margin=\"margin-bottom:35px;\" sub_heading_margin=\"margin-bottom:10px;\"]Email : <a href=\"mailto:sales.export@farmchemie.com\">sales.export@farmchemie.com</a><br />\nTel No : + 94 76 577 2975[/ultimate_heading][vc_btn title=\"Read More\" style=\"outline-custom\" outline_custom_color=\"#ffffff\" outline_custom_hover_background=\"#8d499b\" outline_custom_hover_text=\"#ffffff\" shape=\"round\" align=\"center\"][/vc_column][/vc_row]</p>\n','Manufacturing','','inherit','closed','closed','','2964-autosave-v1','','','2023-09-24 05:28:24','2023-09-24 05:28:24','',2964,'https://farmchemie.yasithawd.com/?p=2977',0,'revision','',0),(2980,1,'2023-07-17 07:07:01','2023-07-17 07:07:01','[vc_row full_width=\"stretch_row\" css=\".vc_custom_1689577528817{padding-bottom: 50px !important;}\"][vc_column css=\".vc_custom_1689577454678{margin-bottom: 50px !important;}\"][vc_row_inner css=\".vc_custom_1689577559805{border-bottom-width: 1px !important;padding-top: 35px !important;padding-bottom: 35px !important;border-bottom-color: #079547 !important;border-bottom-style: solid !important;border-radius: 1px !important;}\"][vc_column_inner width=\"2/3\"][ultimate_heading main_heading=\"Feed Additives\" main_heading_color=\"#079547\" sub_heading_color=\"#792c8a\" alignment=\"left\"]<strong>Premixes/ Specialty Feed Additives/ Dilution of Active Ingredients/ Concentrates</strong><strong>\r\n</strong>Pack sizes – 1,000 kg, 500 kg, 50 kg, 25 kg, 15 kg, 10 kg, 5 kg, 1kg[/ultimate_heading][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][vc_row_inner css=\".vc_custom_1689577609020{border-bottom-width: 1px !important;padding-top: 35px !important;padding-bottom: 35px !important;border-bottom-color: #079547 !important;border-bottom-style: solid !important;border-radius: 1px !important;}\"][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"2/3\"][ultimate_heading main_heading=\"Oral Supplements\" main_heading_color=\"#079547\" sub_heading_color=\"#792c8a\" alignment=\"left\"]<strong>Liquids</strong><strong>\r\n</strong>Pack sizes – 1,000 L, 250 L, 50 L, 25 L, 5 L, 1 L, 500 mL, 250 mL, 100 mL, 50 mL\r\n\r\n<strong>Water soluble powders</strong><strong>\r\n</strong>Pack sizes – 25 kg, 15 kg, 10 kg, 5 kg, 1kg[/ultimate_heading][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row]','Manufacturing','','inherit','closed','closed','','2964-revision-v1','','','2023-07-17 07:07:01','2023-07-17 07:07:01','',2964,'https://farmchemie.yasithawd.com/?p=2980',0,'revision','',0),(3157,1,'2023-08-15 10:03:47','2023-08-15 10:03:47','','Default Kit','','publish','closed','closed','','default-kit','','','2023-08-15 10:03:47','2023-08-15 10:03:47','',0,'https://farmchemie.yasithawd.com/?p=3157',0,'elementor_library','',0),(3158,1,'2023-08-15 10:27:23','2023-08-15 10:27:23','','Tablets','','inherit','open','closed','','tablets','','','2023-08-15 10:27:23','2023-08-15 10:27:23','',2964,'https://farmchemie.yasithawd.com/wp-content/uploads/2023/08/Tablets.png',0,'attachment','image/png',0),(3159,1,'2023-08-15 10:27:40','2023-08-15 10:27:40','[vc_row full_width=\"stretch_row\" css=\".vc_custom_1689577528817{padding-bottom: 50px !important;}\"][vc_column css=\".vc_custom_1689577454678{margin-bottom: 50px !important;}\"][vc_row_inner css=\".vc_custom_1689577559805{border-bottom-width: 1px !important;padding-top: 35px !important;padding-bottom: 35px !important;border-bottom-color: #079547 !important;border-bottom-style: solid !important;border-radius: 1px !important;}\"][vc_column_inner width=\"1/2\"][ultimate_heading main_heading=\"Feed Additives\" heading_tag=\"h3\" main_heading_color=\"#079547\" sub_heading_color=\"#792c8a\" alignment=\"left\"]<strong>Premixes/ Specialty Feed Additives/ Dilution of Active Ingredients/ Concentrates</strong><strong>\r\n</strong>Pack sizes – 1,000 kg, 500 kg, 50 kg, 25 kg, 15 kg, 10 kg, 5 kg, 1kg[/ultimate_heading][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_single_image image=\"3129\" img_size=\"full\"][/vc_column_inner][/vc_row_inner][vc_row_inner css=\".vc_custom_1689577609020{border-bottom-width: 1px !important;padding-top: 35px !important;padding-bottom: 35px !important;border-bottom-color: #079547 !important;border-bottom-style: solid !important;border-radius: 1px !important;}\"][vc_column_inner width=\"1/2\"][vc_single_image image=\"3155\" img_size=\"full\"][/vc_column_inner][vc_column_inner width=\"1/2\"][ultimate_heading main_heading=\"Oral Supplements\" heading_tag=\"h3\" main_heading_color=\"#079547\" sub_heading_color=\"#792c8a\" alignment=\"left\"]<strong>Liquids</strong><strong>\r\n</strong>Pack sizes – 1,000 L, 250 L, 50 L, 25 L, 5 L, 1 L, 500 mL, 250 mL, 100 mL, 50 mL\r\n\r\n<strong>Water soluble powders</strong><strong>\r\n</strong>Pack sizes – 25 kg, 15 kg, 10 kg, 5 kg, 1kg[/ultimate_heading][/vc_column_inner][/vc_row_inner][vc_row_inner css=\".vc_custom_1689577609020{border-bottom-width: 1px !important;padding-top: 35px !important;padding-bottom: 35px !important;border-bottom-color: #079547 !important;border-bottom-style: solid !important;border-radius: 1px !important;}\"][vc_column_inner width=\"1/2\"][ultimate_heading main_heading=\"Tablets\" heading_tag=\"h3\" main_heading_color=\"#079547\" sub_heading_color=\"#792c8a\" alignment=\"left\"]<strong>Supplementary tablets for pet care</strong>\r\nTablet sizes – 1 to 5 g\r\n\r\n<strong>Boluses</strong><strong>\r\n</strong>Tablet sizes – 5 to 25 g[/ultimate_heading][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_single_image image=\"3158\" img_size=\"full\"][/vc_column_inner][/vc_row_inner][vc_row_inner css=\".vc_custom_1689577609020{border-bottom-width: 1px !important;padding-top: 35px !important;padding-bottom: 35px !important;border-bottom-color: #079547 !important;border-bottom-style: solid !important;border-radius: 1px !important;}\"][vc_column_inner width=\"1/3\"][vc_single_image][/vc_column_inner][vc_column_inner width=\"2/3\"][ultimate_heading main_heading=\"Veterinary Pharmaceuticals\" heading_tag=\"h3\" main_heading_color=\"#079547\" sub_heading_color=\"#792c8a\" alignment=\"left\"]<strong>Deworming Solutions/ Antibiotics/ Antimicrobials/ Wound care solutions</strong><strong>\r\n</strong>Form – Liquid, WSP[/ultimate_heading][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row css=\".vc_custom_1689578783264{padding-top: 50px !important;padding-bottom: 50px !important;}\"][vc_column][ultimate_heading main_heading=\"Our manufacturing facility is certified with FAMI-QS, WHO GMP &amp; ISO 9001:2015 International Quality standards.\" main_heading_color=\"#079547\" sub_heading_color=\"#792c8a\" alignment=\"left\"]We select only the <strong><em>best</em></strong> and <strong><em>most reputed</em></strong> Raw Material &amp; Packing Material Suppliers for the production of our finished goods.[/ultimate_heading][vc_row_inner equal_height=\"yes\" content_placement=\"middle\"][vc_column_inner width=\"1/5\" offset=\"vc_hidden-lg vc_hidden-md\"][vc_single_image image=\"3062\" img_size=\"full\" alignment=\"center\"][/vc_column_inner][vc_column_inner width=\"1/5\" css=\".vc_custom_1691846530645{border-right-width: 1px !important;border-left-width: 1px !important;border-left-color: #000000 !important;border-left-style: solid !important;border-right-color: #000000 !important;border-right-style: solid !important;border-radius: 1px !important;}\" offset=\"vc_hidden-lg vc_hidden-md\"][vc_single_image image=\"3063\" img_size=\"full\" alignment=\"center\"][/vc_column_inner][vc_column_inner width=\"1/5\" offset=\"vc_hidden-lg vc_hidden-md\"][vc_single_image image=\"3064\" img_size=\"full\" alignment=\"center\"][/vc_column_inner][vc_column_inner width=\"1/5\" css=\".vc_custom_1691846545469{border-right-width: 1px !important;border-left-width: 1px !important;border-left-color: #000000 !important;border-left-style: solid !important;border-right-color: #000000 !important;border-right-style: solid !important;border-radius: 1px !important;}\" offset=\"vc_hidden-lg vc_hidden-md\"][vc_single_image image=\"3065\" img_size=\"full\" alignment=\"center\"][/vc_column_inner][vc_column_inner width=\"1/5\" offset=\"vc_hidden-lg vc_hidden-md\"][vc_single_image image=\"3066\" img_size=\"full\" alignment=\"center\"][/vc_column_inner][/vc_row_inner][vc_row_inner equal_height=\"yes\" content_placement=\"middle\"][vc_column_inner width=\"1/4\" css=\".vc_custom_1691846563021{border-right-width: 1px !important;border-right-color: #000000 !important;border-right-style: solid !important;border-radius: 1px !important;}\" offset=\"vc_hidden-lg vc_hidden-md\"][vc_single_image image=\"3067\" img_size=\"full\" alignment=\"center\"][/vc_column_inner][vc_column_inner width=\"1/4\" css=\".vc_custom_1691846569845{border-right-width: 1px !important;border-right-color: #000000 !important;border-right-style: solid !important;border-radius: 1px !important;}\" offset=\"vc_hidden-lg vc_hidden-md\"][vc_single_image image=\"3068\" img_size=\"full\" alignment=\"center\"][/vc_column_inner][vc_column_inner width=\"1/4\" css=\".vc_custom_1691846576949{border-right-width: 1px !important;border-right-color: #000000 !important;border-right-style: solid !important;border-radius: 1px !important;}\" offset=\"vc_hidden-lg vc_hidden-md\"][vc_single_image image=\"3069\" img_size=\"full\" alignment=\"center\"][/vc_column_inner][vc_column_inner width=\"1/4\" offset=\"vc_hidden-lg vc_hidden-md\"][vc_single_image image=\"3070\" img_size=\"full\" alignment=\"center\"][/vc_column_inner][/vc_row_inner][vc_row_inner disable_element=\"yes\"][vc_column_inner width=\"1/3\"][vc_single_image image=\"2981\" img_size=\"full\"][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_single_image image=\"2982\" img_size=\"full\"][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_single_image image=\"2983\" img_size=\"full\"][/vc_column_inner][/vc_row_inner][vc_row_inner disable_element=\"yes\"][vc_column_inner width=\"1/6\"][/vc_column_inner][vc_column_inner width=\"2/3\"][vc_single_image image=\"2984\" img_size=\"full\"][/vc_column_inner][vc_column_inner width=\"1/6\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row full_width=\"stretch_row_content_no_spaces\"][vc_column offset=\"vc_hidden-sm vc_hidden-xs\"][vc_single_image image=\"3120\" img_size=\"full\" alignment=\"center\"][/vc_column][/vc_row][vc_row css=\".vc_custom_1689578794814{padding-top: 50px !important;padding-bottom: 50px !important;}\"][vc_column][ultimate_heading main_heading=\"Supplier selection and procurement criteria\" main_heading_color=\"#079547\" sub_heading_color=\"#792c8a\" alignment=\"left\"][/ultimate_heading][vc_row_inner css=\".vc_custom_1689578812611{margin-top: 50px !important;}\"][vc_column_inner width=\"1/2\"][dt_vc_list dividers=\"false\"]\r\n<ul>\r\n 	<li>Check supplier’s quality certification to ensure raw material quality</li>\r\n 	<li>New vendor validation protocol - In case of a change in the supplier, obtain samples and validate in the lab</li>\r\n</ul>\r\n[/dt_vc_list][/vc_column_inner][vc_column_inner width=\"1/2\"][dt_vc_list dividers=\"false\"]\r\n<ul>\r\n 	<li>Income inspection carried out on every consignment (Tested for Chemical Assay &amp; Physical Properties)</li>\r\n 	<li>Quality department approval required to be used in the production</li>\r\n</ul>\r\n[/dt_vc_list][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row css=\".vc_custom_1689578794814{padding-top: 50px !important;padding-bottom: 50px !important;}\"][vc_column][ultimate_heading main_heading=\"Please contact us to start your Marketing Journey with a reliable manufacturing partnership with FARMCHEMIE\" heading_tag=\"h3\" main_heading_color=\"#079547\" sub_heading_color=\"#792c8a\" alignment=\"left\"][/ultimate_heading][vc_row_inner css=\".vc_custom_1689578812611{margin-top: 50px !important;}\"][vc_column_inner width=\"1/2\"][bsf-info-box icon_size=\"32\" title=\"International Markets\" pos=\"square_box\" box_border_style=\"solid\" box_border_width=\"1\" box_border_color=\"#792c8a\" title_font_color=\"#079547\" desc_font_color=\"#792c8a\" title_font_size=\"desktop:25px;\"]<strong>Email :</strong> <a href=\"mailto:sales.export@farmchemie.com\"><u>sales.export@farmchemie.com</u></a>\r\n<strong>Tel No :</strong> + 94 76 577 2975[/bsf-info-box][/vc_column_inner][vc_column_inner width=\"1/2\"][bsf-info-box icon_size=\"32\" title=\"Sri Lankan Market\" pos=\"square_box\" box_border_style=\"solid\" box_border_width=\"1\" box_border_color=\"#079547\" title_font_color=\"#079547\" desc_font_color=\"#792c8a\" title_font_size=\"desktop:25px;\"]Email : <a href=\"mailto:sales.local@farmchemie.com\"><u>sales.local@farmchemie.com</u></a>\r\nTel No : +94 74 224 6947[/bsf-info-box][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row]','Manufacturing','','inherit','closed','closed','','2964-revision-v1','','','2023-08-15 10:27:40','2023-08-15 10:27:40','',2964,'https://farmchemie.yasithawd.com/?p=3159',0,'revision','',0),(3160,1,'2023-08-16 03:45:13','2023-08-16 03:45:13','[vc_row][vc_column][ultimate_heading main_heading=\"Our History\" main_heading_color=\"#762888\" alignment=\"left\"][/ultimate_heading][vc_row_inner css=\".vc_custom_1686713784619{margin-top: 35px !important;}\"][vc_column_inner width=\"1/3\"][vc_single_image image=\"3106\" img_size=\"full\"][/vc_column_inner][vc_column_inner width=\"2/3\"][ultimate_heading main_heading=\"Founded in 2002\" heading_tag=\"h3\" main_heading_color=\"#039447\" alignment=\"left\" margin_design_tab_text=\"\" sub_heading_font_size=\"desktop:18px;\"]Founded in 2002 by Mr. Uditha Wanigasinghe, an agriculturist who had a mission to aid valuable livestock producers in the country to enhance the yield and profitability of production. FARMCHEMIE introduced unprecedented solutions and consistent technical services to gain our customers’ trust and became the market leader in animal health products in 2006 within just four years.[/ultimate_heading][/vc_column_inner][/vc_row_inner][vc_row_inner rtl_reverse=\"yes\" css=\".vc_custom_1686714025469{margin-top: 35px !important;}\"][vc_column_inner width=\"2/3\"][ultimate_heading main_heading=\"2006\" heading_tag=\"h3\" main_heading_color=\"#039447\" alignment=\"left\"]In 2006, the Sri Lankan poultry industry was affected with Avian Influenza which became a difficult period for the growth of FARMCHEMIE. This was the key factor in our decision to diversify into Agro Products. PLANTCHEM &amp; PLANTSEEDS were established to offer solutions in Agro specialty fertilizers, pesticides and seeds to invaluable cultivators.[/ultimate_heading][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_single_image image=\"3107\" img_size=\"full\"][/vc_column_inner][/vc_row_inner][vc_row_inner css=\".vc_custom_1686713784619{margin-top: 35px !important;}\"][vc_column_inner width=\"1/3\"][vc_single_image image=\"3108\" img_size=\"full\"][/vc_column_inner][vc_column_inner width=\"2/3\"][ultimate_heading main_heading=\"2010\" heading_tag=\"h3\" main_heading_color=\"#039447\" alignment=\"left\"]In 2010, FEED CHEMIE became the subsequent addition to ever-growing vision of Mr. Uditha Wanigasinghe and entered the Animal Feed Additives market.[/ultimate_heading][/vc_column_inner][/vc_row_inner][vc_row_inner rtl_reverse=\"yes\" css=\".vc_custom_1686714115148{margin-top: 35px !important;}\"][vc_column_inner width=\"2/3\"][ultimate_heading main_heading=\"2012\" heading_tag=\"h3\" main_heading_color=\"#039447\" alignment=\"left\"]The year 2012 is described as a turning point in our journey as FARMCHEMIE established our first production facility for the manufacturing and packing of animal health products. FARMCHEMIE became the first animal health organization in Sri Lanka to obtain ISO 9001:2015 and WHO GMP International Quality Certification. With our own formulation unit, FARMCHEMIE was able to offer customized solutions to cater the needs of the Sri Lankan Livestock Industry.[/ultimate_heading][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_single_image image=\"3111\" img_size=\"full\"][/vc_column_inner][/vc_row_inner][vc_row_inner css=\".vc_custom_1686713784619{margin-top: 35px !important;}\"][vc_column_inner width=\"1/3\"][vc_single_image image=\"3112\" img_size=\"full\"][/vc_column_inner][vc_column_inner width=\"2/3\"][ultimate_heading main_heading=\"2016\" heading_tag=\"h3\" main_heading_color=\"#039447\" alignment=\"left\"]The year 2016 was another key milestone with the entry to the International Markets. FARMCHEMIE exported our first Feed Premix consignment to India and in 2018 our export operation was distinctly established as FARMCHEMIE MANUFACTURERS, a Board of Investment (BOI) approved entity.[/ultimate_heading][/vc_column_inner][/vc_row_inner][vc_row_inner css=\".vc_custom_1686713784619{margin-top: 35px !important;}\"][vc_column_inner width=\"2/3\"][ultimate_heading main_heading=\"Fully automated manufacturing\" heading_tag=\"h3\" main_heading_color=\"#039447\" alignment=\"left\"]FARMCHEMIE MANUFACTURERS has invested in fully automated manufacturing facility from Bühler and became the first Sri Lankan owned company to obtain FAMI-QS International Quality Certification.[/ultimate_heading][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_single_image image=\"3110\" img_size=\"full\"][/vc_column_inner][/vc_row_inner][vc_row_inner css=\".vc_custom_1686713784619{margin-top: 35px !important;}\"][vc_column_inner width=\"1/3\"][vc_single_image image=\"3116\" img_size=\"full\"][/vc_column_inner][vc_column_inner width=\"2/3\"][ultimate_heading main_heading=\"Official toll manufacturer partner\" heading_tag=\"h3\" main_heading_color=\"#039447\" alignment=\"left\"]With the trust and reputation built as a reliable manufacturer of animal feed additives and supplements in the global market, several world-renowned international brands have appointed FARMCHEMIE MANUFACTURERS as the official toll manufacturer partner. FARMCHEMIE MANUFACTURERS exports a wide range of products consisting of premixes, specialty feed additives, oral liquid supplements and pet supplements to various markets in South Asia, East Asia, Middle East and Africa.\r\n\r\nFARMCHEMIE, FEED CHEMIE &amp; FARMCHEMIE MANUFACTURERS currently operate under the ownership of our holding company, DYVESTA.\r\n\r\nDYEVSTA has become the pinnacle of Animal Nutrition and Health.\r\n\r\nDYVESTA is Dynamic, through our continuous evolution, growth and progress. DYVESTA is Diverse, in terms of both our business strategy and our community. DYVESTA is Devoted to our valuable business partners through exceptional service.[/ultimate_heading][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row full_width=\"stretch_row\" equal_height=\"yes\" bg_type=\"image\" parallax_style=\"vcpb-default\" bg_image_new=\"id^2524|url^https://farmchemie.yasithawd.com/wp-content/uploads/2022/09/marketbgimg1.png|caption^null|alt^null|title^marketbgimg1|description^null\" bg_image_repeat=\"no-repeat\" enable_overlay=\"enable_overlay_value\" overlay_color=\"#000000\" overlay_pattern=\"01.png\" overlay_pattern_opacity=\"5\" css=\".vc_custom_1686720701314{margin-top: 35px !important;padding-top: 65px !important;padding-bottom: 100px !important;}\"][vc_column][vc_row_inner equal_height=\"yes\"][vc_column_inner width=\"1/2\"][ultimate_heading main_heading=\"Vision\" main_heading_color=\"#039447\" sub_heading_color=\"#039447\"]To be the customers’ first and best choice by ensuring outstanding satisfaction through a well-trained and dedicated team. Prompt and quality solutions to our customers’ requirements will determine the increase of return on investment for us.[/ultimate_heading][/vc_column_inner][vc_column_inner width=\"1/2\"][ultimate_heading main_heading=\"Mission\" main_heading_color=\"#762888\" sub_heading_color=\"#762888\"]To become a world renowned manufacturer of Animal Health products and a trusted partner among our stakeholders for our integrity as well as for providing effective solutions[/ultimate_heading][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row css=\".vc_custom_1684836308288{margin-top: 15px !important;}\"][vc_column][ultimate_heading main_heading=\"Achievements\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;\"][/ultimate_heading][vc_row_inner gap=\"20\"][vc_column_inner width=\"1/2\" css=\".vc_custom_1691995519863{background-color: #f4ab20 !important;border: 1px solid #f4ab20 !important;border-radius: 35px !important;}\"][bsf-info-box icon_type=\"custom\" icon_img=\"id^3117|url^https://farmchemie.yasithawd.com/wp-content/uploads/2023/08/Pink_-H.png|caption^null|alt^null|title^Pink_-H|description^null\" img_width=\"60\" icon_style=\"advanced\" icon_border_style=\"solid\" icon_color_border=\"#ffffff\" icon_border_size=\"1\" icon_border_radius=\"500\" icon_border_spacing=\"1\" title=\"First Free Sale Certificate obtained from Veterinary Drug Control Authority (VDCA) for Veterinary Pharmaceuticals\" title_font_style=\"font-weight:bold;\" title_font_size=\"desktop:18px;\"][/bsf-info-box][/vc_column_inner][vc_column_inner width=\"1/2\" css=\".vc_custom_1691995661095{background-color: #722f8b !important;border: 1px solid #722f8b !important;border-radius: 35px !important;}\"][bsf-info-box icon_type=\"custom\" icon_img=\"id^3117|url^https://farmchemie.yasithawd.com/wp-content/uploads/2023/08/Pink_-H.png|caption^null|alt^null|title^Pink_-H|description^null\" img_width=\"60\" icon_style=\"advanced\" icon_border_style=\"solid\" icon_color_border=\"#ffffff\" icon_border_size=\"1\" icon_border_radius=\"500\" icon_border_spacing=\"1\" title=\"First ISO 9001: 2015 ,WHO-GMP Quality Management systems certified Animal Health company in Sri Lanka since August, 2012\" title_font_style=\"font-weight:bold;\" title_font_color=\"#ffffff\" title_font_size=\"desktop:18px;\"][/bsf-info-box][/vc_column_inner][/vc_row_inner][vc_row_inner gap=\"20\"][vc_column_inner width=\"1/2\" css=\".vc_custom_1691995661095{background-color: #722f8b !important;border: 1px solid #722f8b !important;border-radius: 35px !important;}\"][bsf-info-box icon_type=\"custom\" icon_img=\"id^3117|url^https://farmchemie.yasithawd.com/wp-content/uploads/2023/08/Pink_-H.png|caption^null|alt^null|title^Pink_-H|description^null\" img_width=\"60\" icon_style=\"advanced\" icon_border_style=\"solid\" icon_color_border=\"#ffffff\" icon_border_size=\"1\" icon_border_radius=\"500\" icon_border_spacing=\"1\" title=\"First FAMI-QS certified company\" title_font_style=\"font-weight:bold;\" title_font_color=\"#ffffff\" title_font_size=\"desktop:18px;\"][/bsf-info-box][/vc_column_inner][vc_column_inner width=\"1/2\" css=\".vc_custom_1691995519863{background-color: #f4ab20 !important;border: 1px solid #f4ab20 !important;border-radius: 35px !important;}\"][bsf-info-box icon_type=\"custom\" icon_img=\"id^3117|url^https://farmchemie.yasithawd.com/wp-content/uploads/2023/08/Pink_-H.png|caption^null|alt^null|title^Pink_-H|description^null\" img_width=\"60\" icon_style=\"advanced\" icon_border_style=\"solid\" icon_color_border=\"#ffffff\" icon_border_size=\"1\" icon_border_radius=\"500\" icon_border_spacing=\"1\" title=\"First Certificate of Ethical Trading certified in Livestock industry\" title_font_style=\"font-weight:bold;\" title_font_size=\"desktop:18px;\"][/bsf-info-box][/vc_column_inner][/vc_row_inner][vc_row_inner gap=\"20\"][vc_column_inner width=\"1/4\" css=\".vc_custom_1691996718116{border-radius: 35px !important;}\"][/vc_column_inner][vc_column_inner width=\"2/4\" css=\".vc_custom_1691995519863{background-color: #f4ab20 !important;border: 1px solid #f4ab20 !important;border-radius: 35px !important;}\"][bsf-info-box icon_type=\"custom\" icon_img=\"id^3117|url^https://farmchemie.yasithawd.com/wp-content/uploads/2023/08/Pink_-H.png|caption^null|alt^null|title^Pink_-H|description^null\" img_width=\"60\" icon_style=\"advanced\" icon_border_style=\"solid\" icon_color_border=\"#ffffff\" icon_border_size=\"1\" icon_border_radius=\"500\" icon_border_spacing=\"1\" title=\"First Silver awarded company at National Exports Awards in Livestock industry\" title_font_style=\"font-weight:bold;\" title_font_size=\"desktop:18px;\"][/bsf-info-box][/vc_column_inner][vc_column_inner width=\"1/4\"][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner width=\"1/6\"][/vc_column_inner][vc_column_inner width=\"2/3\"][vc_single_image image=\"3126\" img_size=\"full\" alignment=\"center\"][vc_single_image image=\"3125\" img_size=\"full\" alignment=\"center\"][/vc_column_inner][vc_column_inner width=\"1/6\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row]','About us','','inherit','closed','closed','','2917-revision-v1','','','2023-08-16 03:45:13','2023-08-16 03:45:13','',2917,'https://farmchemie.yasithawd.com/?p=3160',0,'revision','',0),(3166,1,'2023-08-16 04:30:51','2023-08-16 04:30:51','[vc_row full_width=\"stretch_row\" css=\".vc_custom_1689577528817{padding-bottom: 50px !important;}\"][vc_column css=\".vc_custom_1689577454678{margin-bottom: 50px !important;}\"][vc_row_inner css=\".vc_custom_1689577559805{border-bottom-width: 1px !important;padding-top: 35px !important;padding-bottom: 35px !important;border-bottom-color: #079547 !important;border-bottom-style: solid !important;border-radius: 1px !important;}\"][vc_column_inner width=\"1/2\"][ultimate_heading main_heading=\"Feed Additives\" heading_tag=\"h3\" main_heading_color=\"#079547\" sub_heading_color=\"#792c8a\" alignment=\"left\"]<strong>Premixes/ Specialty Feed Additives/ Dilution of Active Ingredients/ Concentrates</strong><strong>\r\n</strong>Pack sizes – 1,000 kg, 500 kg, 50 kg, 25 kg, 15 kg, 10 kg, 5 kg, 1kg[/ultimate_heading][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_single_image image=\"3162\" img_size=\"full\"][/vc_column_inner][/vc_row_inner][vc_row_inner css=\".vc_custom_1689577609020{border-bottom-width: 1px !important;padding-top: 35px !important;padding-bottom: 35px !important;border-bottom-color: #079547 !important;border-bottom-style: solid !important;border-radius: 1px !important;}\"][vc_column_inner width=\"1/2\"][vc_single_image image=\"3158\" img_size=\"full\"][/vc_column_inner][vc_column_inner width=\"1/2\"][ultimate_heading main_heading=\"Oral Supplements\" heading_tag=\"h3\" main_heading_color=\"#079547\" sub_heading_color=\"#792c8a\" alignment=\"left\"]<strong>Liquids</strong><strong>\r\n</strong>Pack sizes – 1,000 L, 250 L, 50 L, 25 L, 5 L, 1 L, 500 mL, 250 mL, 100 mL, 50 mL\r\n\r\n<strong>Water soluble powders</strong><strong>\r\n</strong>Pack sizes – 25 kg, 15 kg, 10 kg, 5 kg, 1kg[/ultimate_heading][/vc_column_inner][/vc_row_inner][vc_row_inner css=\".vc_custom_1689577609020{border-bottom-width: 1px !important;padding-top: 35px !important;padding-bottom: 35px !important;border-bottom-color: #079547 !important;border-bottom-style: solid !important;border-radius: 1px !important;}\"][vc_column_inner width=\"1/2\"][ultimate_heading main_heading=\"Tablets\" heading_tag=\"h3\" main_heading_color=\"#079547\" sub_heading_color=\"#792c8a\" alignment=\"left\"]<strong>Supplementary tablets for pet care</strong>\r\nTablet sizes – 1 to 5 g\r\n\r\n<strong>Boluses</strong><strong>\r\n</strong>Tablet sizes – 5 to 25 g[/ultimate_heading][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_single_image image=\"3163\" img_size=\"full\"][/vc_column_inner][/vc_row_inner][vc_row_inner css=\".vc_custom_1689577609020{border-bottom-width: 1px !important;padding-top: 35px !important;padding-bottom: 35px !important;border-bottom-color: #079547 !important;border-bottom-style: solid !important;border-radius: 1px !important;}\"][vc_column_inner width=\"1/2\"][vc_single_image image=\"3164\" img_size=\"full\"][/vc_column_inner][vc_column_inner width=\"1/2\"][ultimate_heading main_heading=\"Veterinary Pharmaceuticals\" heading_tag=\"h3\" main_heading_color=\"#079547\" sub_heading_color=\"#792c8a\" alignment=\"left\"]<strong>Deworming Solutions/ Antibiotics/ Antimicrobials/ Wound care solutions</strong><strong>\r\n</strong>Form – Liquid, WSP[/ultimate_heading][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row css=\".vc_custom_1689578783264{padding-top: 50px !important;padding-bottom: 50px !important;}\"][vc_column][ultimate_heading main_heading=\"Our manufacturing facility is certified with FAMI-QS, WHO GMP &amp; ISO 9001:2015 International Quality standards.\" main_heading_color=\"#079547\" sub_heading_color=\"#792c8a\" alignment=\"left\"]We select only the <strong><em>best</em></strong> and <strong><em>most reputed</em></strong> Raw Material &amp; Packing Material Suppliers for the production of our finished goods.[/ultimate_heading][vc_row_inner equal_height=\"yes\" content_placement=\"middle\"][vc_column_inner width=\"1/5\" offset=\"vc_hidden-lg vc_hidden-md\"][vc_single_image image=\"3062\" img_size=\"full\" alignment=\"center\"][/vc_column_inner][vc_column_inner width=\"1/5\" css=\".vc_custom_1691846530645{border-right-width: 1px !important;border-left-width: 1px !important;border-left-color: #000000 !important;border-left-style: solid !important;border-right-color: #000000 !important;border-right-style: solid !important;border-radius: 1px !important;}\" offset=\"vc_hidden-lg vc_hidden-md\"][vc_single_image image=\"3063\" img_size=\"full\" alignment=\"center\"][/vc_column_inner][vc_column_inner width=\"1/5\" offset=\"vc_hidden-lg vc_hidden-md\"][vc_single_image image=\"3064\" img_size=\"full\" alignment=\"center\"][/vc_column_inner][vc_column_inner width=\"1/5\" css=\".vc_custom_1691846545469{border-right-width: 1px !important;border-left-width: 1px !important;border-left-color: #000000 !important;border-left-style: solid !important;border-right-color: #000000 !important;border-right-style: solid !important;border-radius: 1px !important;}\" offset=\"vc_hidden-lg vc_hidden-md\"][vc_single_image image=\"3065\" img_size=\"full\" alignment=\"center\"][/vc_column_inner][vc_column_inner width=\"1/5\" offset=\"vc_hidden-lg vc_hidden-md\"][vc_single_image image=\"3066\" img_size=\"full\" alignment=\"center\"][/vc_column_inner][/vc_row_inner][vc_row_inner equal_height=\"yes\" content_placement=\"middle\"][vc_column_inner width=\"1/4\" css=\".vc_custom_1691846563021{border-right-width: 1px !important;border-right-color: #000000 !important;border-right-style: solid !important;border-radius: 1px !important;}\" offset=\"vc_hidden-lg vc_hidden-md\"][vc_single_image image=\"3067\" img_size=\"full\" alignment=\"center\"][/vc_column_inner][vc_column_inner width=\"1/4\" css=\".vc_custom_1691846569845{border-right-width: 1px !important;border-right-color: #000000 !important;border-right-style: solid !important;border-radius: 1px !important;}\" offset=\"vc_hidden-lg vc_hidden-md\"][vc_single_image image=\"3068\" img_size=\"full\" alignment=\"center\"][/vc_column_inner][vc_column_inner width=\"1/4\" css=\".vc_custom_1691846576949{border-right-width: 1px !important;border-right-color: #000000 !important;border-right-style: solid !important;border-radius: 1px !important;}\" offset=\"vc_hidden-lg vc_hidden-md\"][vc_single_image image=\"3069\" img_size=\"full\" alignment=\"center\"][/vc_column_inner][vc_column_inner width=\"1/4\" offset=\"vc_hidden-lg vc_hidden-md\"][vc_single_image image=\"3070\" img_size=\"full\" alignment=\"center\"][/vc_column_inner][/vc_row_inner][vc_row_inner disable_element=\"yes\"][vc_column_inner width=\"1/3\"][vc_single_image image=\"2981\" img_size=\"full\"][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_single_image image=\"2982\" img_size=\"full\"][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_single_image image=\"2983\" img_size=\"full\"][/vc_column_inner][/vc_row_inner][vc_row_inner disable_element=\"yes\"][vc_column_inner width=\"1/6\"][/vc_column_inner][vc_column_inner width=\"2/3\"][vc_single_image image=\"2984\" img_size=\"full\"][/vc_column_inner][vc_column_inner width=\"1/6\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row full_width=\"stretch_row_content_no_spaces\"][vc_column offset=\"vc_hidden-sm vc_hidden-xs\"][vc_single_image image=\"3120\" img_size=\"full\" alignment=\"center\"][/vc_column][/vc_row][vc_row css=\".vc_custom_1689578794814{padding-top: 50px !important;padding-bottom: 50px !important;}\"][vc_column][ultimate_heading main_heading=\"Supplier selection and procurement criteria\" main_heading_color=\"#079547\" sub_heading_color=\"#792c8a\" alignment=\"left\"][/ultimate_heading][vc_row_inner css=\".vc_custom_1689578812611{margin-top: 50px !important;}\"][vc_column_inner width=\"1/2\"][dt_vc_list dividers=\"false\"]\r\n<ul>\r\n 	<li>Check supplier’s quality certification to ensure raw material quality</li>\r\n 	<li>New vendor validation protocol - In case of a change in the supplier, obtain samples and validate in the lab</li>\r\n</ul>\r\n[/dt_vc_list][/vc_column_inner][vc_column_inner width=\"1/2\"][dt_vc_list dividers=\"false\"]\r\n<ul>\r\n 	<li>Income inspection carried out on every consignment (Tested for Chemical Assay &amp; Physical Properties)</li>\r\n 	<li>Quality department approval required to be used in the production</li>\r\n</ul>\r\n[/dt_vc_list][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row css=\".vc_custom_1689578794814{padding-top: 50px !important;padding-bottom: 50px !important;}\"][vc_column][ultimate_heading main_heading=\"Please contact us to start your Marketing Journey with a reliable manufacturing partnership with FARMCHEMIE\" heading_tag=\"h3\" main_heading_color=\"#079547\" sub_heading_color=\"#792c8a\" alignment=\"left\"][/ultimate_heading][vc_row_inner css=\".vc_custom_1689578812611{margin-top: 50px !important;}\"][vc_column_inner width=\"1/2\"][bsf-info-box icon_size=\"32\" title=\"International Markets\" pos=\"square_box\" box_border_style=\"solid\" box_border_width=\"1\" box_border_color=\"#792c8a\" title_font_color=\"#079547\" desc_font_color=\"#792c8a\" title_font_size=\"desktop:25px;\"]<strong>Email :</strong> <a href=\"mailto:sales.export@farmchemie.com\"><u>sales.export@farmchemie.com</u></a>\r\n<strong>Tel No :</strong> + 94 76 577 2975[/bsf-info-box][/vc_column_inner][vc_column_inner width=\"1/2\"][bsf-info-box icon_size=\"32\" title=\"Sri Lankan Market\" pos=\"square_box\" box_border_style=\"solid\" box_border_width=\"1\" box_border_color=\"#079547\" title_font_color=\"#079547\" desc_font_color=\"#792c8a\" title_font_size=\"desktop:25px;\"]Email : <a href=\"mailto:sales.local@farmchemie.com\"><u>sales.local@farmchemie.com</u></a>\r\nTel No : +94 74 224 6947[/bsf-info-box][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row]','Manufacturing','','inherit','closed','closed','','2964-revision-v1','','','2023-08-16 04:30:51','2023-08-16 04:30:51','',2964,'https://farmchemie.yasithawd.com/?p=3166',0,'revision','',0),(3137,1,'2023-08-15 08:03:48','2023-08-15 08:03:48','','AbamecD_600px x 600px','','inherit','open','closed','','abamecd_600px-x-600px','','','2023-08-15 08:03:48','2023-08-15 08:03:48','',0,'https://farmchemie.yasithawd.com/wp-content/uploads/2023/04/AbamecD_600px-x-600px.png',0,'attachment','image/png',0),(3138,1,'2023-08-15 08:06:13','2023-08-15 08:06:13','','Alverm-30_600px-600px','','inherit','open','closed','','alverm-30_600px-600px-2','','','2023-08-15 08:06:13','2023-08-15 08:06:13','',0,'https://farmchemie.yasithawd.com/wp-content/uploads/2023/04/Alverm-30_600px-600px-1.png',0,'attachment','image/png',0),(3139,1,'2023-08-16 15:13:11','2023-08-16 15:13:11','&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n<strong> </strong>','AVI B','<strong>Composition: </strong>\r\n\r\nEach 1 L contains,\r\n\r\nVitamin B1 - 10 mg\r\n\r\nVitamin B2 - 10 mg\r\n\r\nVitamin B6 - 5 mg\r\n\r\nVitamin B12 - 2.5 mcg\r\n\r\nNicotinamide - 50 mg\r\n\r\nDexpanthenol - 30 mg\r\n\r\nBiotin - 20 mcg\r\n\r\n[dt_divider style=\"thin\" /]\r\n\r\n<strong>Indication: </strong>\r\n\r\nThe complex range of Vitamin B complex for Livestock management. Easy way of administering, efficient and low cost vitamin supplement for poultry, cattle, swine and other farm animals. Prevent Vitamin B deficiencies.\r\n\r\n[dt_divider style=\"thin\" /]\r\n\r\n&nbsp;\r\n\r\n<strong>Dosage: </strong>\r\n\r\nAdminister mixing with feed or directly feed\r\n\r\nAvians - 1 ml per 1 litre of drinking water for 3-4 days\r\n\r\n&nbsp;\r\n\r\n<strong>Pack sizes: </strong>\r\n\r\n10 mL\r\n\r\n&nbsp;','inherit','closed','closed','','2774-autosave-v1','','','2023-08-16 15:13:11','2023-08-16 15:13:11','',2774,'https://farmchemie.yasithawd.com/?p=3139',0,'revision','',0),(3140,1,'2023-08-15 08:07:30','2023-08-15 08:07:30','','AVI-B_-Logo','','inherit','open','closed','','avi-b_-logo','','','2023-08-15 08:07:30','2023-08-15 08:07:30','',2774,'https://farmchemie.yasithawd.com/wp-content/uploads/2023/05/AVI-B_-Logo.png',0,'attachment','image/png',0),(3141,1,'2023-08-15 08:07:47','2023-08-15 08:07:47','','AVI-B_600px x 600px','','inherit','open','closed','','avi-b_600px-x-600px','','','2023-08-15 08:07:47','2023-08-15 08:07:47','',2774,'https://farmchemie.yasithawd.com/wp-content/uploads/2023/05/AVI-B_600px-x-600px.png',0,'attachment','image/png',0),(3142,1,'2023-08-15 08:09:39','2023-08-15 08:09:39','','AVI-E_Logo','','inherit','open','closed','','avi-e_logo','','','2023-08-15 08:09:39','2023-08-15 08:09:39','',0,'https://farmchemie.yasithawd.com/wp-content/uploads/2023/05/AVI-E_Logo.png',0,'attachment','image/png',0),(3143,1,'2023-08-15 08:09:57','2023-08-15 08:09:57','','AVI-E_600px x 600px','','inherit','open','closed','','avi-e_600px-x-600px','','','2023-08-15 08:09:57','2023-08-15 08:09:57','',0,'https://farmchemie.yasithawd.com/wp-content/uploads/2023/05/AVI-E_600px-x-600px.png',0,'attachment','image/png',0),(3144,1,'2023-08-15 08:18:25','2023-08-15 08:18:25','','AVI-Ganadexil_600px x 600px','','inherit','open','closed','','avi-ganadexil_600px-x-600px','','','2023-08-15 08:18:25','2023-08-15 08:18:25','',0,'https://farmchemie.yasithawd.com/wp-content/uploads/2023/05/AVI-Ganadexil_600px-x-600px.png',0,'attachment','image/png',0),(3145,1,'2023-08-15 08:18:46','2023-08-15 08:18:46','','AVI-Ganadexil_logo','','inherit','open','closed','','avi-ganadexil_logo','','','2023-08-15 08:18:46','2023-08-15 08:18:46','',0,'https://farmchemie.yasithawd.com/wp-content/uploads/2023/05/AVI-Ganadexil_logo.png',0,'attachment','image/png',0),(3147,1,'2023-08-15 08:47:50','2023-08-15 08:47:50','','AVI-Pharmasin_logo','','inherit','open','closed','','avi-pharmasin_logo','','','2023-08-15 08:47:50','2023-08-15 08:47:50','',0,'https://farmchemie.yasithawd.com/wp-content/uploads/2023/05/AVI-Pharmasin_logo.png',0,'attachment','image/png',0),(3148,1,'2023-08-15 08:48:10','2023-08-15 08:48:10','','AVI-Pharmasin_600px x 600px','','inherit','open','closed','','avi-pharmasin_600px-x-600px','','','2023-08-15 08:48:10','2023-08-15 08:48:10','',0,'https://farmchemie.yasithawd.com/wp-content/uploads/2023/05/AVI-Pharmasin_600px-x-600px.png',0,'attachment','image/png',0),(3149,1,'2023-08-15 08:50:00','2023-08-15 08:50:00','','AVI-Pollodoxin_logo','','inherit','open','closed','','avi-pollodoxin_logo','','','2023-08-15 08:50:00','2023-08-15 08:50:00','',0,'https://farmchemie.yasithawd.com/wp-content/uploads/2023/05/AVI-Pollodoxin_logo.png',0,'attachment','image/png',0),(3150,1,'2023-08-15 08:50:31','2023-08-15 08:50:31','','AVI-Pollodoxin 600px x 600px','','inherit','open','closed','','avi-pollodoxin-600px-x-600px','','','2023-08-15 08:50:31','2023-08-15 08:50:31','',0,'https://farmchemie.yasithawd.com/wp-content/uploads/2023/05/AVI-Pollodoxin-600px-x-600px.png',0,'attachment','image/png',0),(3151,1,'2023-08-15 08:53:33','2023-08-15 08:53:33','','AVI-Prime','','inherit','open','closed','','avi-prime','','','2023-08-15 08:53:33','2023-08-15 08:53:33','',0,'https://farmchemie.yasithawd.com/wp-content/uploads/2023/05/AVI-Prime.png',0,'attachment','image/png',0),(3152,1,'2023-08-15 08:53:57','2023-08-15 08:53:57','','AVI-Prime_logo','','inherit','open','closed','','avi-prime_logo','','','2023-08-15 08:53:57','2023-08-15 08:53:57','',0,'https://farmchemie.yasithawd.com/wp-content/uploads/2023/05/AVI-Prime_logo.png',0,'attachment','image/png',0),(3153,1,'2023-08-15 09:41:03','2023-08-15 09:41:03','','AVI-Tonic_logo','','inherit','open','closed','','avi-tonic_logo','','','2023-08-15 09:41:03','2023-08-15 09:41:03','',0,'https://farmchemie.yasithawd.com/wp-content/uploads/2023/05/AVI-Tonic_logo.png',0,'attachment','image/png',0),(3154,1,'2023-08-15 09:41:17','2023-08-15 09:41:17','','AVI-Tonic','','inherit','open','closed','','avi-tonic-2','','','2023-08-15 09:41:17','2023-08-15 09:41:17','',0,'https://farmchemie.yasithawd.com/wp-content/uploads/2023/05/AVI-Tonic.png',0,'attachment','image/png',0),(3155,1,'2023-08-15 09:58:41','2023-08-15 09:58:41','','Oral-Supplements','','inherit','open','closed','','oral-supplements','','','2023-08-15 09:58:41','2023-08-15 09:58:41','',2964,'https://farmchemie.yasithawd.com/wp-content/uploads/2023/08/Oral-Supplements.png',0,'attachment','image/png',0),(3156,1,'2023-08-15 10:00:01','2023-08-15 10:00:01','[vc_row full_width=\"stretch_row\" css=\".vc_custom_1689577528817{padding-bottom: 50px !important;}\"][vc_column css=\".vc_custom_1689577454678{margin-bottom: 50px !important;}\"][vc_row_inner css=\".vc_custom_1689577559805{border-bottom-width: 1px !important;padding-top: 35px !important;padding-bottom: 35px !important;border-bottom-color: #079547 !important;border-bottom-style: solid !important;border-radius: 1px !important;}\"][vc_column_inner width=\"1/2\"][ultimate_heading main_heading=\"Feed Additives\" heading_tag=\"h3\" main_heading_color=\"#079547\" sub_heading_color=\"#792c8a\" alignment=\"left\"]<strong>Premixes/ Specialty Feed Additives/ Dilution of Active Ingredients/ Concentrates</strong><strong>\r\n</strong>Pack sizes – 1,000 kg, 500 kg, 50 kg, 25 kg, 15 kg, 10 kg, 5 kg, 1kg[/ultimate_heading][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_single_image image=\"3129\" img_size=\"full\"][/vc_column_inner][/vc_row_inner][vc_row_inner css=\".vc_custom_1689577609020{border-bottom-width: 1px !important;padding-top: 35px !important;padding-bottom: 35px !important;border-bottom-color: #079547 !important;border-bottom-style: solid !important;border-radius: 1px !important;}\"][vc_column_inner width=\"1/2\"][vc_single_image image=\"3155\" img_size=\"full\"][/vc_column_inner][vc_column_inner width=\"1/2\"][ultimate_heading main_heading=\"Oral Supplements\" heading_tag=\"h3\" main_heading_color=\"#079547\" sub_heading_color=\"#792c8a\" alignment=\"left\"]<strong>Liquids</strong><strong>\r\n</strong>Pack sizes – 1,000 L, 250 L, 50 L, 25 L, 5 L, 1 L, 500 mL, 250 mL, 100 mL, 50 mL\r\n\r\n<strong>Water soluble powders</strong><strong>\r\n</strong>Pack sizes – 25 kg, 15 kg, 10 kg, 5 kg, 1kg[/ultimate_heading][/vc_column_inner][/vc_row_inner][vc_row_inner css=\".vc_custom_1689577609020{border-bottom-width: 1px !important;padding-top: 35px !important;padding-bottom: 35px !important;border-bottom-color: #079547 !important;border-bottom-style: solid !important;border-radius: 1px !important;}\"][vc_column_inner width=\"2/3\"][ultimate_heading main_heading=\"Tablets\" heading_tag=\"h3\" main_heading_color=\"#079547\" sub_heading_color=\"#792c8a\" alignment=\"left\"]<strong>Supplementary tablets for pet care</strong>\r\nTablet sizes – 1 to 5 g\r\n\r\n<strong>Boluses</strong><strong>\r\n</strong>Tablet sizes – 5 to 25 g[/ultimate_heading][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_single_image][/vc_column_inner][/vc_row_inner][vc_row_inner css=\".vc_custom_1689577609020{border-bottom-width: 1px !important;padding-top: 35px !important;padding-bottom: 35px !important;border-bottom-color: #079547 !important;border-bottom-style: solid !important;border-radius: 1px !important;}\"][vc_column_inner width=\"1/3\"][vc_single_image][/vc_column_inner][vc_column_inner width=\"2/3\"][ultimate_heading main_heading=\"Veterinary Pharmaceuticals\" heading_tag=\"h3\" main_heading_color=\"#079547\" sub_heading_color=\"#792c8a\" alignment=\"left\"]<strong>Deworming Solutions/ Antibiotics/ Antimicrobials/ Wound care solutions</strong><strong>\r\n</strong>Form – Liquid, WSP[/ultimate_heading][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row css=\".vc_custom_1689578783264{padding-top: 50px !important;padding-bottom: 50px !important;}\"][vc_column][ultimate_heading main_heading=\"Our manufacturing facility is certified with FAMI-QS, WHO GMP &amp; ISO 9001:2015 International Quality standards.\" main_heading_color=\"#079547\" sub_heading_color=\"#792c8a\" alignment=\"left\"]We select only the <strong><em>best</em></strong> and <strong><em>most reputed</em></strong> Raw Material &amp; Packing Material Suppliers for the production of our finished goods.[/ultimate_heading][vc_row_inner equal_height=\"yes\" content_placement=\"middle\"][vc_column_inner width=\"1/5\" offset=\"vc_hidden-lg vc_hidden-md\"][vc_single_image image=\"3062\" img_size=\"full\" alignment=\"center\"][/vc_column_inner][vc_column_inner width=\"1/5\" css=\".vc_custom_1691846530645{border-right-width: 1px !important;border-left-width: 1px !important;border-left-color: #000000 !important;border-left-style: solid !important;border-right-color: #000000 !important;border-right-style: solid !important;border-radius: 1px !important;}\" offset=\"vc_hidden-lg vc_hidden-md\"][vc_single_image image=\"3063\" img_size=\"full\" alignment=\"center\"][/vc_column_inner][vc_column_inner width=\"1/5\" offset=\"vc_hidden-lg vc_hidden-md\"][vc_single_image image=\"3064\" img_size=\"full\" alignment=\"center\"][/vc_column_inner][vc_column_inner width=\"1/5\" css=\".vc_custom_1691846545469{border-right-width: 1px !important;border-left-width: 1px !important;border-left-color: #000000 !important;border-left-style: solid !important;border-right-color: #000000 !important;border-right-style: solid !important;border-radius: 1px !important;}\" offset=\"vc_hidden-lg vc_hidden-md\"][vc_single_image image=\"3065\" img_size=\"full\" alignment=\"center\"][/vc_column_inner][vc_column_inner width=\"1/5\" offset=\"vc_hidden-lg vc_hidden-md\"][vc_single_image image=\"3066\" img_size=\"full\" alignment=\"center\"][/vc_column_inner][/vc_row_inner][vc_row_inner equal_height=\"yes\" content_placement=\"middle\"][vc_column_inner width=\"1/4\" css=\".vc_custom_1691846563021{border-right-width: 1px !important;border-right-color: #000000 !important;border-right-style: solid !important;border-radius: 1px !important;}\" offset=\"vc_hidden-lg vc_hidden-md\"][vc_single_image image=\"3067\" img_size=\"full\" alignment=\"center\"][/vc_column_inner][vc_column_inner width=\"1/4\" css=\".vc_custom_1691846569845{border-right-width: 1px !important;border-right-color: #000000 !important;border-right-style: solid !important;border-radius: 1px !important;}\" offset=\"vc_hidden-lg vc_hidden-md\"][vc_single_image image=\"3068\" img_size=\"full\" alignment=\"center\"][/vc_column_inner][vc_column_inner width=\"1/4\" css=\".vc_custom_1691846576949{border-right-width: 1px !important;border-right-color: #000000 !important;border-right-style: solid !important;border-radius: 1px !important;}\" offset=\"vc_hidden-lg vc_hidden-md\"][vc_single_image image=\"3069\" img_size=\"full\" alignment=\"center\"][/vc_column_inner][vc_column_inner width=\"1/4\" offset=\"vc_hidden-lg vc_hidden-md\"][vc_single_image image=\"3070\" img_size=\"full\" alignment=\"center\"][/vc_column_inner][/vc_row_inner][vc_row_inner disable_element=\"yes\"][vc_column_inner width=\"1/3\"][vc_single_image image=\"2981\" img_size=\"full\"][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_single_image image=\"2982\" img_size=\"full\"][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_single_image image=\"2983\" img_size=\"full\"][/vc_column_inner][/vc_row_inner][vc_row_inner disable_element=\"yes\"][vc_column_inner width=\"1/6\"][/vc_column_inner][vc_column_inner width=\"2/3\"][vc_single_image image=\"2984\" img_size=\"full\"][/vc_column_inner][vc_column_inner width=\"1/6\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row full_width=\"stretch_row_content_no_spaces\"][vc_column offset=\"vc_hidden-sm vc_hidden-xs\"][vc_single_image image=\"3120\" img_size=\"full\" alignment=\"center\"][/vc_column][/vc_row][vc_row css=\".vc_custom_1689578794814{padding-top: 50px !important;padding-bottom: 50px !important;}\"][vc_column][ultimate_heading main_heading=\"Supplier selection and procurement criteria\" main_heading_color=\"#079547\" sub_heading_color=\"#792c8a\" alignment=\"left\"][/ultimate_heading][vc_row_inner css=\".vc_custom_1689578812611{margin-top: 50px !important;}\"][vc_column_inner width=\"1/2\"][dt_vc_list dividers=\"false\"]\r\n<ul>\r\n 	<li>Check supplier’s quality certification to ensure raw material quality</li>\r\n 	<li>New vendor validation protocol - In case of a change in the supplier, obtain samples and validate in the lab</li>\r\n</ul>\r\n[/dt_vc_list][/vc_column_inner][vc_column_inner width=\"1/2\"][dt_vc_list dividers=\"false\"]\r\n<ul>\r\n 	<li>Income inspection carried out on every consignment (Tested for Chemical Assay &amp; Physical Properties)</li>\r\n 	<li>Quality department approval required to be used in the production</li>\r\n</ul>\r\n[/dt_vc_list][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row css=\".vc_custom_1689578794814{padding-top: 50px !important;padding-bottom: 50px !important;}\"][vc_column][ultimate_heading main_heading=\"Please contact us to start your Marketing Journey with a reliable manufacturing partnership with FARMCHEMIE\" heading_tag=\"h3\" main_heading_color=\"#079547\" sub_heading_color=\"#792c8a\" alignment=\"left\"][/ultimate_heading][vc_row_inner css=\".vc_custom_1689578812611{margin-top: 50px !important;}\"][vc_column_inner width=\"1/2\"][bsf-info-box icon_size=\"32\" title=\"International Markets\" pos=\"square_box\" box_border_style=\"solid\" box_border_width=\"1\" box_border_color=\"#792c8a\" title_font_color=\"#079547\" desc_font_color=\"#792c8a\" title_font_size=\"desktop:25px;\"]<strong>Email :</strong> <a href=\"mailto:sales.export@farmchemie.com\"><u>sales.export@farmchemie.com</u></a>\r\n<strong>Tel No :</strong> + 94 76 577 2975[/bsf-info-box][/vc_column_inner][vc_column_inner width=\"1/2\"][bsf-info-box icon_size=\"32\" title=\"Sri Lankan Market\" pos=\"square_box\" box_border_style=\"solid\" box_border_width=\"1\" box_border_color=\"#079547\" title_font_color=\"#079547\" desc_font_color=\"#792c8a\" title_font_size=\"desktop:25px;\"]Email : <a href=\"mailto:sales.local@farmchemie.com\"><u>sales.local@farmchemie.com</u></a>\r\nTel No : +94 74 224 6947[/bsf-info-box][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row]','Manufacturing','','inherit','closed','closed','','2964-revision-v1','','','2023-08-15 10:00:01','2023-08-15 10:00:01','',2964,'https://farmchemie.yasithawd.com/?p=3156',0,'revision','',0),(3136,1,'2023-08-15 08:02:32','2023-08-15 08:02:32','','AbamecD-Logo','','inherit','open','closed','','abamecd-logo','','','2023-08-15 08:02:32','2023-08-15 08:02:32','',0,'https://farmchemie.yasithawd.com/wp-content/uploads/2023/04/AbamecD-Logo.png',0,'attachment','image/png',0),(3133,1,'2023-08-14 14:32:33','2023-08-14 14:32:33','[vc_row][vc_column][ultimate_heading main_heading=\"Our History\" main_heading_color=\"#762888\" alignment=\"left\"][/ultimate_heading][vc_row_inner css=\".vc_custom_1686713784619{margin-top: 35px !important;}\"][vc_column_inner width=\"1/3\"][vc_single_image image=\"3106\" img_size=\"full\"][/vc_column_inner][vc_column_inner width=\"2/3\"][ultimate_heading main_heading=\"Founded in 2002\" heading_tag=\"h3\" main_heading_color=\"#039447\" alignment=\"left\"]Founded in 2002 by Mr. Uditha Wanigasinghe, an agriculturist who had a mission to aid valuable livestock producers in the country to enhance the yield and profitability of production. FARMCHEMIE introduced unprecedented solutions and consistent technical services to gain our customers’ trust and became the market leader in animal health products in 2006 within just four years.[/ultimate_heading][/vc_column_inner][/vc_row_inner][vc_row_inner rtl_reverse=\"yes\" css=\".vc_custom_1686714025469{margin-top: 35px !important;}\"][vc_column_inner width=\"2/3\"][ultimate_heading main_heading=\"2006\" heading_tag=\"h3\" main_heading_color=\"#039447\" alignment=\"left\"]In 2006, the Sri Lankan poultry industry was affected with Avian Influenza which became a difficult period for the growth of FARMCHEMIE. This was the key factor in our decision to diversify into Agro Products. PLANTCHEM &amp; PLANTSEEDS were established to offer solutions in Agro specialty fertilizers, pesticides and seeds to invaluable cultivators.[/ultimate_heading][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_single_image image=\"3107\" img_size=\"full\"][/vc_column_inner][/vc_row_inner][vc_row_inner css=\".vc_custom_1686713784619{margin-top: 35px !important;}\"][vc_column_inner width=\"1/3\"][vc_single_image image=\"3108\" img_size=\"full\"][/vc_column_inner][vc_column_inner width=\"2/3\"][ultimate_heading main_heading=\"2010\" heading_tag=\"h3\" main_heading_color=\"#039447\" alignment=\"left\"]In 2010, FEED CHEMIE became the subsequent addition to ever-growing vision of Mr. Uditha Wanigasinghe and entered the Animal Feed Additives market.[/ultimate_heading][/vc_column_inner][/vc_row_inner][vc_row_inner rtl_reverse=\"yes\" css=\".vc_custom_1686714115148{margin-top: 35px !important;}\"][vc_column_inner width=\"2/3\"][ultimate_heading main_heading=\"2012\" heading_tag=\"h3\" main_heading_color=\"#039447\" alignment=\"left\"]The year 2012 is described as a turning point in our journey as FARMCHEMIE established our first production facility for the manufacturing and packing of animal health products. FARMCHEMIE became the first animal health organization in Sri Lanka to obtain ISO 9001:2015 and WHO GMP International Quality Certification. With our own formulation unit, FARMCHEMIE was able to offer customized solutions to cater the needs of the Sri Lankan Livestock Industry.[/ultimate_heading][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_single_image image=\"3111\" img_size=\"full\"][/vc_column_inner][/vc_row_inner][vc_row_inner css=\".vc_custom_1686713784619{margin-top: 35px !important;}\"][vc_column_inner width=\"1/3\"][vc_single_image image=\"3112\" img_size=\"full\"][/vc_column_inner][vc_column_inner width=\"2/3\"][ultimate_heading main_heading=\"2016\" heading_tag=\"h3\" main_heading_color=\"#039447\" alignment=\"left\"]The year 2016 was another key milestone with the entry to the International Markets. FARMCHEMIE exported our first Feed Premix consignment to India and in 2018 our export operation was distinctly established as FARMCHEMIE MANUFACTURERS, a Board of Investment (BOI) approved entity.[/ultimate_heading][/vc_column_inner][/vc_row_inner][vc_row_inner css=\".vc_custom_1686713784619{margin-top: 35px !important;}\"][vc_column_inner width=\"2/3\"][ultimate_heading main_heading=\"Fully automated manufacturing\" heading_tag=\"h3\" main_heading_color=\"#039447\" alignment=\"left\"]FARMCHEMIE MANUFACTURERS has invested in fully automated manufacturing facility from Bühler and became the first Sri Lankan owned company to obtain FAMI-QS International Quality Certification.[/ultimate_heading][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_single_image image=\"3110\" img_size=\"full\"][/vc_column_inner][/vc_row_inner][vc_row_inner css=\".vc_custom_1686713784619{margin-top: 35px !important;}\"][vc_column_inner width=\"1/3\"][vc_single_image image=\"3116\" img_size=\"full\"][/vc_column_inner][vc_column_inner width=\"2/3\"][ultimate_heading main_heading=\"Official toll manufacturer partner\" heading_tag=\"h3\" main_heading_color=\"#039447\" alignment=\"left\"]With the trust and reputation built as a reliable manufacturer of animal feed additives and supplements in the global market, several world-renowned international brands have appointed FARMCHEMIE MANUFACTURERS as the official toll manufacturer partner. FARMCHEMIE MANUFACTURERS exports a wide range of products consisting of premixes, specialty feed additives, oral liquid supplements and pet supplements to various markets in South Asia, East Asia, Middle East and Africa.\r\n\r\nFARMCHEMIE, FEED CHEMIE &amp; FARMCHEMIE MANUFACTURERS currently operate under the ownership of our holding company, DYVESTA.\r\n\r\nDYEVSTA has become the pinnacle of Animal Nutrition and Health.\r\n\r\nDYVESTA is Dynamic, through our continuous evolution, growth and progress. DYVESTA is Diverse, in terms of both our business strategy and our community. DYVESTA is Devoted to our valuable business partners through exceptional service.[/ultimate_heading][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row full_width=\"stretch_row\" equal_height=\"yes\" bg_type=\"image\" parallax_style=\"vcpb-default\" bg_image_new=\"id^2524|url^https://farmchemie.yasithawd.com/wp-content/uploads/2022/09/marketbgimg1.png|caption^null|alt^null|title^marketbgimg1|description^null\" bg_image_repeat=\"no-repeat\" enable_overlay=\"enable_overlay_value\" overlay_color=\"#000000\" overlay_pattern=\"01.png\" overlay_pattern_opacity=\"5\" css=\".vc_custom_1686720701314{margin-top: 35px !important;padding-top: 65px !important;padding-bottom: 100px !important;}\"][vc_column][vc_row_inner equal_height=\"yes\"][vc_column_inner width=\"1/2\"][ultimate_heading main_heading=\"Vision\" main_heading_color=\"#039447\" sub_heading_color=\"#039447\"]To be the customers’ first and best choice by ensuring outstanding satisfaction through a well-trained and dedicated team. Prompt and quality solutions to our customers’ requirements will determine the increase of return on investment for us.[/ultimate_heading][/vc_column_inner][vc_column_inner width=\"1/2\"][ultimate_heading main_heading=\"Mission\" main_heading_color=\"#762888\" sub_heading_color=\"#762888\"]To become a world renowned manufacturer of Animal Health products and a trusted partner among our stakeholders for our integrity as well as for providing effective solutions[/ultimate_heading][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row css=\".vc_custom_1684836308288{margin-top: 15px !important;}\"][vc_column][ultimate_heading main_heading=\"Achievements\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;\"][/ultimate_heading][vc_row_inner gap=\"20\"][vc_column_inner width=\"1/2\" css=\".vc_custom_1691995519863{background-color: #f4ab20 !important;border: 1px solid #f4ab20 !important;border-radius: 35px !important;}\"][bsf-info-box icon_type=\"custom\" icon_img=\"id^3117|url^https://farmchemie.yasithawd.com/wp-content/uploads/2023/08/Pink_-H.png|caption^null|alt^null|title^Pink_-H|description^null\" img_width=\"60\" icon_style=\"circle\" title=\"First Free Sale Certificate obtained from Veterinary Drug Control Authority (VDCA) for Veterinary Pharmaceuticals\"][/bsf-info-box][/vc_column_inner][vc_column_inner width=\"1/2\" css=\".vc_custom_1691995661095{background-color: #722f8b !important;border: 1px solid #722f8b !important;border-radius: 35px !important;}\"][bsf-info-box icon_type=\"custom\" icon_img=\"id^3117|url^https://farmchemie.yasithawd.com/wp-content/uploads/2023/08/Pink_-H.png|caption^null|alt^null|title^Pink_-H|description^null\" img_width=\"60\" icon_style=\"circle\" title=\"First ISO 9001: 2015 ,WHO-GMP Quality Management systems certified Animal Health company in Sri Lanka since August, 2012\" title_font_color=\"#ffffff\"][/bsf-info-box][/vc_column_inner][/vc_row_inner][vc_row_inner gap=\"20\"][vc_column_inner width=\"1/2\" css=\".vc_custom_1691995661095{background-color: #722f8b !important;border: 1px solid #722f8b !important;border-radius: 35px !important;}\"][bsf-info-box icon_type=\"custom\" icon_img=\"id^3117|url^https://farmchemie.yasithawd.com/wp-content/uploads/2023/08/Pink_-H.png|caption^null|alt^null|title^Pink_-H|description^null\" img_width=\"60\" icon_style=\"circle\" title=\"First FAMI-QS certified company\" title_font_color=\"#ffffff\"][/bsf-info-box][/vc_column_inner][vc_column_inner width=\"1/2\" css=\".vc_custom_1691995519863{background-color: #f4ab20 !important;border: 1px solid #f4ab20 !important;border-radius: 35px !important;}\"][bsf-info-box icon_type=\"custom\" icon_img=\"id^3117|url^https://farmchemie.yasithawd.com/wp-content/uploads/2023/08/Pink_-H.png|caption^null|alt^null|title^Pink_-H|description^null\" img_width=\"60\" icon_style=\"circle\" title=\"First Certificate of Ethical Trading certified in Livestock industry\"][/bsf-info-box][/vc_column_inner][/vc_row_inner][vc_row_inner gap=\"20\"][vc_column_inner width=\"1/4\" css=\".vc_custom_1691996718116{border-radius: 35px !important;}\"][/vc_column_inner][vc_column_inner width=\"2/4\" css=\".vc_custom_1691995519863{background-color: #f4ab20 !important;border: 1px solid #f4ab20 !important;border-radius: 35px !important;}\"][bsf-info-box icon_type=\"custom\" icon_img=\"id^3117|url^https://farmchemie.yasithawd.com/wp-content/uploads/2023/08/Pink_-H.png|caption^null|alt^null|title^Pink_-H|description^null\" img_width=\"60\" icon_style=\"circle\" title=\"First Silver awarded company at National Exports Awards in Livestock industry\"][/bsf-info-box][/vc_column_inner][vc_column_inner width=\"1/4\"][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner width=\"1/6\"][/vc_column_inner][vc_column_inner width=\"2/3\"][vc_single_image image=\"3126\" img_size=\"full\" alignment=\"center\"][vc_single_image image=\"3125\" img_size=\"full\" alignment=\"center\"][/vc_column_inner][vc_column_inner width=\"1/6\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row]','About us','','inherit','closed','closed','','2917-revision-v1','','','2023-08-14 14:32:33','2023-08-14 14:32:33','',2917,'https://farmchemie.yasithawd.com/?p=3133',0,'revision','',0),(3134,1,'2023-08-15 07:40:23','2023-08-15 07:40:23','','Medivesta-Banner','','inherit','open','closed','','medivesta-banner','','','2023-08-15 07:40:23','2023-08-15 07:40:23','',2990,'https://farmchemie.yasithawd.com/wp-content/uploads/2023/08/Medivesta-Banner.png',0,'attachment','image/png',0),(3135,1,'2023-08-15 07:45:56','2023-08-15 07:45:56','[vc_row][vc_column][ultimate_heading main_heading=\"Our History\" main_heading_color=\"#762888\" alignment=\"left\"][/ultimate_heading][vc_row_inner css=\".vc_custom_1686713784619{margin-top: 35px !important;}\"][vc_column_inner width=\"1/3\"][vc_single_image image=\"3106\" img_size=\"full\"][/vc_column_inner][vc_column_inner width=\"2/3\"][ultimate_heading main_heading=\"Founded in 2002\" heading_tag=\"h3\" main_heading_color=\"#039447\" alignment=\"left\"]Founded in 2002 by Mr. Uditha Wanigasinghe, an agriculturist who had a mission to aid valuable livestock producers in the country to enhance the yield and profitability of production. FARMCHEMIE introduced unprecedented solutions and consistent technical services to gain our customers’ trust and became the market leader in animal health products in 2006 within just four years.[/ultimate_heading][/vc_column_inner][/vc_row_inner][vc_row_inner rtl_reverse=\"yes\" css=\".vc_custom_1686714025469{margin-top: 35px !important;}\"][vc_column_inner width=\"2/3\"][ultimate_heading main_heading=\"2006\" heading_tag=\"h3\" main_heading_color=\"#039447\" alignment=\"left\"]In 2006, the Sri Lankan poultry industry was affected with Avian Influenza which became a difficult period for the growth of FARMCHEMIE. This was the key factor in our decision to diversify into Agro Products. PLANTCHEM &amp; PLANTSEEDS were established to offer solutions in Agro specialty fertilizers, pesticides and seeds to invaluable cultivators.[/ultimate_heading][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_single_image image=\"3107\" img_size=\"full\"][/vc_column_inner][/vc_row_inner][vc_row_inner css=\".vc_custom_1686713784619{margin-top: 35px !important;}\"][vc_column_inner width=\"1/3\"][vc_single_image image=\"3108\" img_size=\"full\"][/vc_column_inner][vc_column_inner width=\"2/3\"][ultimate_heading main_heading=\"2010\" heading_tag=\"h3\" main_heading_color=\"#039447\" alignment=\"left\"]In 2010, FEED CHEMIE became the subsequent addition to ever-growing vision of Mr. Uditha Wanigasinghe and entered the Animal Feed Additives market.[/ultimate_heading][/vc_column_inner][/vc_row_inner][vc_row_inner rtl_reverse=\"yes\" css=\".vc_custom_1686714115148{margin-top: 35px !important;}\"][vc_column_inner width=\"2/3\"][ultimate_heading main_heading=\"2012\" heading_tag=\"h3\" main_heading_color=\"#039447\" alignment=\"left\"]The year 2012 is described as a turning point in our journey as FARMCHEMIE established our first production facility for the manufacturing and packing of animal health products. FARMCHEMIE became the first animal health organization in Sri Lanka to obtain ISO 9001:2015 and WHO GMP International Quality Certification. With our own formulation unit, FARMCHEMIE was able to offer customized solutions to cater the needs of the Sri Lankan Livestock Industry.[/ultimate_heading][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_single_image image=\"3111\" img_size=\"full\"][/vc_column_inner][/vc_row_inner][vc_row_inner css=\".vc_custom_1686713784619{margin-top: 35px !important;}\"][vc_column_inner width=\"1/3\"][vc_single_image image=\"3112\" img_size=\"full\"][/vc_column_inner][vc_column_inner width=\"2/3\"][ultimate_heading main_heading=\"2016\" heading_tag=\"h3\" main_heading_color=\"#039447\" alignment=\"left\"]The year 2016 was another key milestone with the entry to the International Markets. FARMCHEMIE exported our first Feed Premix consignment to India and in 2018 our export operation was distinctly established as FARMCHEMIE MANUFACTURERS, a Board of Investment (BOI) approved entity.[/ultimate_heading][/vc_column_inner][/vc_row_inner][vc_row_inner css=\".vc_custom_1686713784619{margin-top: 35px !important;}\"][vc_column_inner width=\"2/3\"][ultimate_heading main_heading=\"Fully automated manufacturing\" heading_tag=\"h3\" main_heading_color=\"#039447\" alignment=\"left\"]FARMCHEMIE MANUFACTURERS has invested in fully automated manufacturing facility from Bühler and became the first Sri Lankan owned company to obtain FAMI-QS International Quality Certification.[/ultimate_heading][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_single_image image=\"3110\" img_size=\"full\"][/vc_column_inner][/vc_row_inner][vc_row_inner css=\".vc_custom_1686713784619{margin-top: 35px !important;}\"][vc_column_inner width=\"1/3\"][vc_single_image image=\"3116\" img_size=\"full\"][/vc_column_inner][vc_column_inner width=\"2/3\"][ultimate_heading main_heading=\"Official toll manufacturer partner\" heading_tag=\"h3\" main_heading_color=\"#039447\" alignment=\"left\"]With the trust and reputation built as a reliable manufacturer of animal feed additives and supplements in the global market, several world-renowned international brands have appointed FARMCHEMIE MANUFACTURERS as the official toll manufacturer partner. FARMCHEMIE MANUFACTURERS exports a wide range of products consisting of premixes, specialty feed additives, oral liquid supplements and pet supplements to various markets in South Asia, East Asia, Middle East and Africa.\r\n\r\nFARMCHEMIE, FEED CHEMIE &amp; FARMCHEMIE MANUFACTURERS currently operate under the ownership of our holding company, DYVESTA.\r\n\r\nDYEVSTA has become the pinnacle of Animal Nutrition and Health.\r\n\r\nDYVESTA is Dynamic, through our continuous evolution, growth and progress. DYVESTA is Diverse, in terms of both our business strategy and our community. DYVESTA is Devoted to our valuable business partners through exceptional service.[/ultimate_heading][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row full_width=\"stretch_row\" equal_height=\"yes\" bg_type=\"image\" parallax_style=\"vcpb-default\" bg_image_new=\"id^2524|url^https://farmchemie.yasithawd.com/wp-content/uploads/2022/09/marketbgimg1.png|caption^null|alt^null|title^marketbgimg1|description^null\" bg_image_repeat=\"no-repeat\" enable_overlay=\"enable_overlay_value\" overlay_color=\"#000000\" overlay_pattern=\"01.png\" overlay_pattern_opacity=\"5\" css=\".vc_custom_1686720701314{margin-top: 35px !important;padding-top: 65px !important;padding-bottom: 100px !important;}\"][vc_column][vc_row_inner equal_height=\"yes\"][vc_column_inner width=\"1/2\"][ultimate_heading main_heading=\"Vision\" main_heading_color=\"#039447\" sub_heading_color=\"#039447\"]To be the customers’ first and best choice by ensuring outstanding satisfaction through a well-trained and dedicated team. Prompt and quality solutions to our customers’ requirements will determine the increase of return on investment for us.[/ultimate_heading][/vc_column_inner][vc_column_inner width=\"1/2\"][ultimate_heading main_heading=\"Mission\" main_heading_color=\"#762888\" sub_heading_color=\"#762888\"]To become a world renowned manufacturer of Animal Health products and a trusted partner among our stakeholders for our integrity as well as for providing effective solutions[/ultimate_heading][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row css=\".vc_custom_1684836308288{margin-top: 15px !important;}\"][vc_column][ultimate_heading main_heading=\"Achievements\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;\"][/ultimate_heading][vc_row_inner gap=\"20\"][vc_column_inner width=\"1/2\" css=\".vc_custom_1691995519863{background-color: #f4ab20 !important;border: 1px solid #f4ab20 !important;border-radius: 35px !important;}\"][bsf-info-box icon_type=\"custom\" icon_img=\"id^3117|url^https://farmchemie.yasithawd.com/wp-content/uploads/2023/08/Pink_-H.png|caption^null|alt^null|title^Pink_-H|description^null\" img_width=\"60\" icon_style=\"advanced\" icon_border_style=\"solid\" icon_color_border=\"#ffffff\" icon_border_size=\"1\" icon_border_radius=\"500\" icon_border_spacing=\"1\" title=\"First Free Sale Certificate obtained from Veterinary Drug Control Authority (VDCA) for Veterinary Pharmaceuticals\" title_font_style=\"font-weight:bold;\" title_font_size=\"desktop:18px;\"][/bsf-info-box][/vc_column_inner][vc_column_inner width=\"1/2\" css=\".vc_custom_1691995661095{background-color: #722f8b !important;border: 1px solid #722f8b !important;border-radius: 35px !important;}\"][bsf-info-box icon_type=\"custom\" icon_img=\"id^3117|url^https://farmchemie.yasithawd.com/wp-content/uploads/2023/08/Pink_-H.png|caption^null|alt^null|title^Pink_-H|description^null\" img_width=\"60\" icon_style=\"advanced\" icon_border_style=\"solid\" icon_color_border=\"#ffffff\" icon_border_size=\"1\" icon_border_radius=\"500\" icon_border_spacing=\"1\" title=\"First ISO 9001: 2015 ,WHO-GMP Quality Management systems certified Animal Health company in Sri Lanka since August, 2012\" title_font_style=\"font-weight:bold;\" title_font_color=\"#ffffff\" title_font_size=\"desktop:18px;\"][/bsf-info-box][/vc_column_inner][/vc_row_inner][vc_row_inner gap=\"20\"][vc_column_inner width=\"1/2\" css=\".vc_custom_1691995661095{background-color: #722f8b !important;border: 1px solid #722f8b !important;border-radius: 35px !important;}\"][bsf-info-box icon_type=\"custom\" icon_img=\"id^3117|url^https://farmchemie.yasithawd.com/wp-content/uploads/2023/08/Pink_-H.png|caption^null|alt^null|title^Pink_-H|description^null\" img_width=\"60\" icon_style=\"advanced\" icon_border_style=\"solid\" icon_color_border=\"#ffffff\" icon_border_size=\"1\" icon_border_radius=\"500\" icon_border_spacing=\"1\" title=\"First FAMI-QS certified company\" title_font_style=\"font-weight:bold;\" title_font_color=\"#ffffff\" title_font_size=\"desktop:18px;\"][/bsf-info-box][/vc_column_inner][vc_column_inner width=\"1/2\" css=\".vc_custom_1691995519863{background-color: #f4ab20 !important;border: 1px solid #f4ab20 !important;border-radius: 35px !important;}\"][bsf-info-box icon_type=\"custom\" icon_img=\"id^3117|url^https://farmchemie.yasithawd.com/wp-content/uploads/2023/08/Pink_-H.png|caption^null|alt^null|title^Pink_-H|description^null\" img_width=\"60\" icon_style=\"advanced\" icon_border_style=\"solid\" icon_color_border=\"#ffffff\" icon_border_size=\"1\" icon_border_radius=\"500\" icon_border_spacing=\"1\" title=\"First Certificate of Ethical Trading certified in Livestock industry\" title_font_style=\"font-weight:bold;\" title_font_size=\"desktop:18px;\"][/bsf-info-box][/vc_column_inner][/vc_row_inner][vc_row_inner gap=\"20\"][vc_column_inner width=\"1/4\" css=\".vc_custom_1691996718116{border-radius: 35px !important;}\"][/vc_column_inner][vc_column_inner width=\"2/4\" css=\".vc_custom_1691995519863{background-color: #f4ab20 !important;border: 1px solid #f4ab20 !important;border-radius: 35px !important;}\"][bsf-info-box icon_type=\"custom\" icon_img=\"id^3117|url^https://farmchemie.yasithawd.com/wp-content/uploads/2023/08/Pink_-H.png|caption^null|alt^null|title^Pink_-H|description^null\" img_width=\"60\" icon_style=\"advanced\" icon_border_style=\"solid\" icon_color_border=\"#ffffff\" icon_border_size=\"1\" icon_border_radius=\"500\" icon_border_spacing=\"1\" title=\"First Silver awarded company at National Exports Awards in Livestock industry\" title_font_style=\"font-weight:bold;\" title_font_size=\"desktop:18px;\"][/bsf-info-box][/vc_column_inner][vc_column_inner width=\"1/4\"][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner width=\"1/6\"][/vc_column_inner][vc_column_inner width=\"2/3\"][vc_single_image image=\"3126\" img_size=\"full\" alignment=\"center\"][vc_single_image image=\"3125\" img_size=\"full\" alignment=\"center\"][/vc_column_inner][vc_column_inner width=\"1/6\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row]','About us','','inherit','closed','closed','','2917-revision-v1','','','2023-08-15 07:45:56','2023-08-15 07:45:56','',2917,'https://farmchemie.yasithawd.com/?p=3135',0,'revision','',0),(3000,1,'2023-08-04 04:04:15','2023-08-04 04:04:15','[vc_row css=\".vc_custom_1689580294399{padding-top: 50px !important;padding-bottom: 50px !important;}\"][vc_column][vc_column_text]Farmchemie along with the leading veterinary vaccine solution provider in the world, CEVA established our partnership in 2013 to become the first animal health input supplier in Sri Lanka to offer vaccination services to poultry farmers. This innovative solution tackles the burden of individually vaccinating animals on farms and introduces advanced equipment for precise vaccine administration. By addressing the limitations of traditional vaccination methods, Farmchemie\'s services have gained popularity within a short period.\r\n\r\n&nbsp;\r\n\r\nafter 10 years from 2013-2023 Farmchemie achieved 500Mn doses of vaccines from Transmune IBD vaccine which is administrated to prevent a deadly disease called Infectious Bursal Disease in broiler birds of Sri Lanka and holding the number 01 position in vaccination service in the county since the beginning.\r\n\r\n&nbsp;\r\n\r\nFarmchemie\'s approach focuses on accurate vaccine delivery and robust cold chain management. The company regularly conducts audits to ensure the quality and integrity of vaccines. The maintenance of proper temperature and storage conditions guarantees vaccine potency and enhances their efficacy during administration.\r\n\r\n&nbsp;\r\n\r\nOne of the key strengths of Farmchemie is its team of highly qualified staff, who have received training overseas. These professionals possess the expertise to administer vaccines effectively and efficiently, providing exceptional care to the animals. The investment in their education and training reflects Farmchemie\'s commitment to delivering superior services.\r\n\r\n&nbsp;\r\n\r\nThe accuracy and the quality of the vaccination is always highly concerned and that is monitored by regular audits which supervised by the CEVA and for each vaccination audit report can be shared to the customer which leads them to get better understanding about the vaccination proces and administration\r\n\r\n&nbsp;\r\n\r\nThe impact of Farmchemie\'s vaccination services on poultry farmers has been substantial. By eliminating the burden of individual vaccinations, farmers can allocate their time and resources to other essential aspects of poultry farming. The accuracy of vaccine delivery, coupled with stringent cold chain management practices, has led to increased customer satisfaction and improved overall poultry health outcomes.\r\n\r\n&nbsp;\r\n\r\nFarmchemie\'s pioneering role in the industry has revolutionized poultry farming in Sri Lanka. Through advanced vaccination techniques, quality assurance, and well-trained staff, the company has overcome the limitations of conventional procedures. By consistently innovating and prioritizing customer satisfaction, Farmchemie continues to shape and improve the health and welfare of poultry in the country.[/vc_column_text][/vc_column][/vc_row]','Vaccination Service','','inherit','closed','closed','','2996-revision-v1','','','2023-08-04 04:04:15','2023-08-04 04:04:15','',2996,'https://farmchemie.yasithawd.com/?p=3000',0,'revision','',0),(3001,1,'2023-08-04 04:59:36','2023-08-04 04:59:36','[vc_row css=\".vc_custom_1689580474694{padding-top: 50px !important;padding-bottom: 50px !important;}\"][vc_column][vc_column_text]Farmchemie is a leading provider of animal health inputs in Sri Lanka, known for its dedication to the farming community. The company\'s commitment extends beyond delivering high-quality products sourced from global industry leaders. Farmchemie\'s success lies in its highly demanded after-sales service and the emphasis it places on building and maintaining friendly relationships with customers. Additionally, the company organizes farmer meetings and technical seminars, collaborating with outsourced experts to educate and empower its clientele.\r\n\r\n&nbsp;\r\n\r\n[/vc_column_text][vc_row_inner][vc_column_inner width=\"1/2\"][vc_single_image image=\"3002\" img_size=\"full\"][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_single_image image=\"3003\" img_size=\"full\"][/vc_column_inner][/vc_row_inner][vc_column_text]Farmchemie ensures that Sri Lankan farmers have access to top-notch animal health inputs. By partnering with reputable global companies, the company guarantees the availability of superior products that enhance the health and well-being of livestock. This commitment to quality sets Farmchemie apart as a trusted supplier in the market.\r\n\r\n&nbsp;\r\n\r\nThe company\'s after-sales service is a key factor in its success. Farmchemie strives to build and maintain friendly relationships with its customers. Going beyond the initial sale, the company provides ongoing support, guidance, and troubleshooting to farmers. This personalized approach ensures that farmers receive the necessary assistance to optimize the care and management of their animals.\r\n\r\n&nbsp;\r\n\r\nIn addition to its customer-focused services, Farmchemie organizes farmer meetings and technical seminars. These collaborative events bring together industry experts and farmers, providing a platform for knowledge sharing and networking. By outsourcing expertise in the field, Farmchemie ensures that these programs are informative and relevant to its clientele. Through such initiatives, Farmchemie empowers farmers with the knowledge and resources they need to succeed in animal husbandry.\r\n\r\n&nbsp;\r\n\r\nIn conclusion, Farmchemie\'s dedication to supporting Sri Lankan farmers goes beyond delivering quality animal health inputs. Through its highly demanded after-sales service and educational initiatives, such as farmer meetings and technical seminars, Farmchemie fosters strong relationships with its customers and equips them with the knowledge and support required for successful farming practices.[/vc_column_text][/vc_column][/vc_row][vc_row css=\".vc_custom_1689580474694{padding-top: 50px !important;padding-bottom: 50px !important;}\"][vc_column][/vc_column][/vc_row]','Farmer Training','','inherit','closed','closed','','2998-autosave-v1','','','2023-08-04 04:59:36','2023-08-04 04:59:36','',2998,'https://farmchemie.yasithawd.com/?p=3001',0,'revision','',0),(3002,1,'2023-08-04 04:49:58','2023-08-04 04:49:58','','farmertraining1','','inherit','open','closed','','farmertraining1','','','2023-08-04 04:49:58','2023-08-04 04:49:58','',2998,'https://farmchemie.yasithawd.com/wp-content/uploads/2023/08/farmertraining1.jpg',0,'attachment','image/jpeg',0),(3003,1,'2023-08-04 04:50:47','2023-08-04 04:50:47','','farmertraining2','','inherit','open','closed','','farmertraining2','','','2023-08-04 04:50:47','2023-08-04 04:50:47','',2998,'https://farmchemie.yasithawd.com/wp-content/uploads/2023/08/farmertraining2.jpg',0,'attachment','image/jpeg',0),(3013,1,'2023-08-04 06:18:58','2023-08-04 06:18:58','[vc_row css=\".vc_custom_1689580474694{padding-top: 50px !important;padding-bottom: 50px !important;}\"][vc_column][vc_column_text]Farmchemie is a leading provider of animal health inputs in Sri Lanka, known for its dedication to the farming community. The company\'s commitment extends beyond delivering high-quality products sourced from global industry leaders. Farmchemie\'s success lies in its highly demanded after-sales service and the emphasis it places on building and maintaining friendly relationships with customers. Additionally, the company organizes farmer meetings and technical seminars, collaborating with outsourced experts to educate and empower its clientele.\r\n\r\n&nbsp;\r\n\r\n[/vc_column_text][vc_row_inner][vc_column_inner width=\"1/2\"][vc_single_image image=\"3002\" img_size=\"full\"][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_single_image image=\"3003\" img_size=\"full\"][/vc_column_inner][/vc_row_inner][vc_column_text]Farmchemie ensures that Sri Lankan farmers have access to top-notch animal health inputs. By partnering with reputable global companies, the company guarantees the availability of superior products that enhance the health and well-being of livestock. This commitment to quality sets Farmchemie apart as a trusted supplier in the market.\r\n\r\n&nbsp;\r\n\r\nThe company\'s after-sales service is a key factor in its success. Farmchemie strives to build and maintain friendly relationships with its customers. Going beyond the initial sale, the company provides ongoing support, guidance, and troubleshooting to farmers. This personalized approach ensures that farmers receive the necessary assistance to optimize the care and management of their animals.\r\n\r\n&nbsp;\r\n\r\nIn addition to its customer-focused services, Farmchemie organizes farmer meetings and technical seminars. These collaborative events bring together industry experts and farmers, providing a platform for knowledge sharing and networking. By outsourcing expertise in the field, Farmchemie ensures that these programs are informative and relevant to its clientele. Through such initiatives, Farmchemie empowers farmers with the knowledge and resources they need to succeed in animal husbandry.\r\n\r\n&nbsp;\r\n\r\nIn conclusion, Farmchemie\'s dedication to supporting Sri Lankan farmers goes beyond delivering quality animal health inputs. Through its highly demanded after-sales service and educational initiatives, such as farmer meetings and technical seminars, Farmchemie fosters strong relationships with its customers and equips them with the knowledge and support required for successful farming practices.[/vc_column_text][/vc_column][/vc_row]','Farmer Training','','inherit','closed','closed','','2998-revision-v1','','','2023-08-04 06:18:58','2023-08-04 06:18:58','',2998,'https://farmchemie.yasithawd.com/?p=3013',0,'revision','',0),(3005,1,'2023-08-04 05:00:05','2023-08-04 05:00:05','[vc_row css=\".vc_custom_1689580474694{padding-top: 50px !important;padding-bottom: 50px !important;}\"][vc_column][vc_column_text]Farmchemie is a leading provider of animal health inputs in Sri Lanka, known for its dedication to the farming community. The company\'s commitment extends beyond delivering high-quality products sourced from global industry leaders. Farmchemie\'s success lies in its highly demanded after-sales service and the emphasis it places on building and maintaining friendly relationships with customers. Additionally, the company organizes farmer meetings and technical seminars, collaborating with outsourced experts to educate and empower its clientele.\r\n\r\n&nbsp;\r\n\r\n[/vc_column_text][vc_row_inner][vc_column_inner width=\"1/2\"][vc_single_image image=\"3002\" img_size=\"full\"][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_single_image image=\"3003\" img_size=\"full\"][/vc_column_inner][/vc_row_inner][vc_column_text]Farmchemie ensures that Sri Lankan farmers have access to top-notch animal health inputs. By partnering with reputable global companies, the company guarantees the availability of superior products that enhance the health and well-being of livestock. This commitment to quality sets Farmchemie apart as a trusted supplier in the market.\r\n\r\n&nbsp;\r\n\r\nThe company\'s after-sales service is a key factor in its success. Farmchemie strives to build and maintain friendly relationships with its customers. Going beyond the initial sale, the company provides ongoing support, guidance, and troubleshooting to farmers. This personalized approach ensures that farmers receive the necessary assistance to optimize the care and management of their animals.\r\n\r\n&nbsp;\r\n\r\nIn addition to its customer-focused services, Farmchemie organizes farmer meetings and technical seminars. These collaborative events bring together industry experts and farmers, providing a platform for knowledge sharing and networking. By outsourcing expertise in the field, Farmchemie ensures that these programs are informative and relevant to its clientele. Through such initiatives, Farmchemie empowers farmers with the knowledge and resources they need to succeed in animal husbandry.\r\n\r\n&nbsp;\r\n\r\nIn conclusion, Farmchemie\'s dedication to supporting Sri Lankan farmers goes beyond delivering quality animal health inputs. Through its highly demanded after-sales service and educational initiatives, such as farmer meetings and technical seminars, Farmchemie fosters strong relationships with its customers and equips them with the knowledge and support required for successful farming practices.[/vc_column_text][/vc_column][/vc_row][vc_row css=\".vc_custom_1689580474694{padding-top: 50px !important;padding-bottom: 50px !important;}\"][vc_column][/vc_column][/vc_row]','Farmer Training','','inherit','closed','closed','','2998-revision-v1','','','2023-08-04 05:00:05','2023-08-04 05:00:05','',2998,'https://farmchemie.yasithawd.com/?p=3005',0,'revision','',0),(3004,1,'2023-08-04 04:57:37','2023-08-04 04:57:37','[vc_row css=\".vc_custom_1689580474694{padding-top: 50px !important;padding-bottom: 50px !important;}\"][vc_column][vc_column_text]Farmchemie is a leading provider of animal health inputs in Sri Lanka, known for its dedication to the farming community. The company\'s commitment extends beyond delivering high-quality products sourced from global industry leaders. Farmchemie\'s success lies in its highly demanded after-sales service and the emphasis it places on building and maintaining friendly relationships with customers. Additionally, the company organizes farmer meetings and technical seminars, collaborating with outsourced experts to educate and empower its clientele.\r\n\r\n&nbsp;\r\n\r\n[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\" css=\".vc_custom_1691125029069{border-right-width: 1px !important;border-right-color: #129648 !important;border-right-style: solid !important;border-radius: 1px !important;}\"][vc_single_image image=\"3002\" img_size=\"full\"][/vc_column][vc_column width=\"1/2\" css=\".vc_custom_1691125046205{border-left-width: 1px !important;border-left-color: #129648 !important;border-left-style: solid !important;border-radius: 1px !important;}\"][vc_single_image image=\"3003\" img_size=\"full\"][/vc_column][/vc_row][vc_row css=\".vc_custom_1689580474694{padding-top: 50px !important;padding-bottom: 50px !important;}\"][vc_column][vc_column_text]Farmchemie ensures that Sri Lankan farmers have access to top-notch animal health inputs. By partnering with reputable global companies, the company guarantees the availability of superior products that enhance the health and well-being of livestock. This commitment to quality sets Farmchemie apart as a trusted supplier in the market.\r\n\r\n&nbsp;\r\n\r\nThe company\'s after-sales service is a key factor in its success. Farmchemie strives to build and maintain friendly relationships with its customers. Going beyond the initial sale, the company provides ongoing support, guidance, and troubleshooting to farmers. This personalized approach ensures that farmers receive the necessary assistance to optimize the care and management of their animals.\r\n\r\n&nbsp;\r\n\r\nIn addition to its customer-focused services, Farmchemie organizes farmer meetings and technical seminars. These collaborative events bring together industry experts and farmers, providing a platform for knowledge sharing and networking. By outsourcing expertise in the field, Farmchemie ensures that these programs are informative and relevant to its clientele. Through such initiatives, Farmchemie empowers farmers with the knowledge and resources they need to succeed in animal husbandry.\r\n\r\n&nbsp;\r\n\r\nIn conclusion, Farmchemie\'s dedication to supporting Sri Lankan farmers goes beyond delivering quality animal health inputs. Through its highly demanded after-sales service and educational initiatives, such as farmer meetings and technical seminars, Farmchemie fosters strong relationships with its customers and equips them with the knowledge and support required for successful farming practices.[/vc_column_text][/vc_column][/vc_row]','Farmer Training','','inherit','closed','closed','','2998-revision-v1','','','2023-08-04 04:57:37','2023-08-04 04:57:37','',2998,'https://farmchemie.yasithawd.com/?p=3004',0,'revision','',0),(3162,1,'2023-08-16 04:14:05','2023-08-16 04:14:05','','Oral-Supplements (1)','','inherit','open','closed','','oral-supplements-1','','','2023-08-16 04:14:05','2023-08-16 04:14:05','',2964,'https://farmchemie.yasithawd.com/wp-content/uploads/2023/08/Oral-Supplements-1.png',0,'attachment','image/png',0),(3163,1,'2023-08-16 04:14:41','2023-08-16 04:14:41','','Tablets (1)','','inherit','open','closed','','tablets-1','','','2023-08-16 04:14:41','2023-08-16 04:14:41','',2964,'https://farmchemie.yasithawd.com/wp-content/uploads/2023/08/Tablets-1.png',0,'attachment','image/png',0),(3164,1,'2023-08-16 04:15:29','2023-08-16 04:15:29','','Veterinary-Pharmaceuticals','','inherit','open','closed','','veterinary-pharmaceuticals','','','2023-08-16 04:15:29','2023-08-16 04:15:29','',2964,'https://farmchemie.yasithawd.com/wp-content/uploads/2023/08/Veterinary-Pharmaceuticals.png',0,'attachment','image/png',0),(3374,1,'2023-08-31 03:15:39','2023-08-31 03:15:39','[vc_row full_width=\"stretch_row\" css=\".vc_custom_1689577528817{padding-bottom: 50px !important;}\"][vc_column css=\".vc_custom_1689577454678{margin-bottom: 50px !important;}\"][vc_row_inner css=\".vc_custom_1692407941633{border-bottom-width: 1px !important;border-bottom-color: #079547 !important;border-bottom-style: solid !important;border-radius: 1px !important;}\"][vc_column_inner width=\"1/2\"][ultimate_heading main_heading=\"Feed Additives\" heading_tag=\"h3\" main_heading_color=\"#079547\" sub_heading_color=\"#792c8a\" alignment=\"left\"]<strong>Premixes/ Specialty Feed Additives/ Dilution of Active Ingredients/ Concentrates</strong><strong>\r\n</strong>Pack sizes – 1,000 kg, 500 kg, 50 kg, 25 kg, 15 kg, 10 kg, 5 kg, 1kg[/ultimate_heading][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_single_image image=\"3129\" img_size=\"full\"][/vc_column_inner][/vc_row_inner][vc_row_inner css=\".vc_custom_1692407949383{border-bottom-width: 1px !important;border-bottom-color: #079547 !important;border-bottom-style: solid !important;border-radius: 1px !important;}\"][vc_column_inner width=\"1/2\"][vc_single_image image=\"3162\" img_size=\"full\"][/vc_column_inner][vc_column_inner width=\"1/2\"][ultimate_heading main_heading=\"Oral Supplements\" heading_tag=\"h3\" main_heading_color=\"#079547\" sub_heading_color=\"#792c8a\" alignment=\"left\"]<strong>Liquids</strong><strong>\r\n</strong>Pack sizes – 1,000 L, 250 L, 50 L, 25 L, 5 L, 1 L, 500 mL, 250 mL, 100 mL, 50 mL\r\n\r\n<strong>Water soluble powders</strong><strong>\r\n</strong>Pack sizes – 25 kg, 15 kg, 10 kg, 5 kg, 1kg[/ultimate_heading][/vc_column_inner][/vc_row_inner][vc_row_inner css=\".vc_custom_1692407957943{border-bottom-width: 1px !important;border-bottom-color: #079547 !important;border-bottom-style: solid !important;border-radius: 1px !important;}\"][vc_column_inner width=\"1/2\"][ultimate_heading main_heading=\"Tablets\" heading_tag=\"h3\" main_heading_color=\"#079547\" sub_heading_color=\"#792c8a\" alignment=\"left\"]<strong>Supplementary tablets for pet care</strong>\r\nTablet sizes – 1 to 5 g\r\n\r\n<strong>Boluses</strong><strong>\r\n</strong>Tablet sizes – 5 to 25 g[/ultimate_heading][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_single_image image=\"3163\" img_size=\"full\"][/vc_column_inner][/vc_row_inner][vc_row_inner css=\".vc_custom_1692407970279{border-bottom-width: 1px !important;border-bottom-color: #079547 !important;border-bottom-style: solid !important;border-radius: 1px !important;}\"][vc_column_inner width=\"1/2\"][vc_single_image image=\"3164\" img_size=\"full\"][/vc_column_inner][vc_column_inner width=\"1/2\"][ultimate_heading main_heading=\"Veterinary Pharmaceuticals\" heading_tag=\"h3\" main_heading_color=\"#079547\" sub_heading_color=\"#792c8a\" alignment=\"left\"]<strong>Deworming Solutions/ Antibiotics/ Antimicrobials/ Wound care solutions</strong><strong>\r\n</strong>Form – Liquid, WSP[/ultimate_heading][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row full_width=\"stretch_row_content\" css=\".vc_custom_1693451731079{padding-top: 50px !important;padding-bottom: 50px !important;}\"][vc_column][ultimate_heading main_heading=\"Our manufacturing facility is certified with FAMI-QS, WHO GMP &amp; ISO 9001:2015 International Quality standards.\" main_heading_color=\"#079547\" sub_heading_color=\"#792c8a\"]We select only the <strong><em>best</em></strong> and <strong><em>most reputed</em></strong> Raw Material &amp; Packing Material Suppliers for the production of our finished goods.[/ultimate_heading][vc_row_inner equal_height=\"yes\" content_placement=\"middle\"][vc_column_inner width=\"1/5\" offset=\"vc_hidden-lg vc_hidden-md\"][vc_single_image image=\"3062\" img_size=\"full\" alignment=\"center\"][/vc_column_inner][vc_column_inner width=\"1/5\" css=\".vc_custom_1691846530645{border-right-width: 1px !important;border-left-width: 1px !important;border-left-color: #000000 !important;border-left-style: solid !important;border-right-color: #000000 !important;border-right-style: solid !important;border-radius: 1px !important;}\" offset=\"vc_hidden-lg vc_hidden-md\"][vc_single_image image=\"3063\" img_size=\"full\" alignment=\"center\"][/vc_column_inner][vc_column_inner width=\"1/5\" offset=\"vc_hidden-lg vc_hidden-md\"][vc_single_image image=\"3064\" img_size=\"full\" alignment=\"center\"][/vc_column_inner][vc_column_inner width=\"1/5\" css=\".vc_custom_1691846545469{border-right-width: 1px !important;border-left-width: 1px !important;border-left-color: #000000 !important;border-left-style: solid !important;border-right-color: #000000 !important;border-right-style: solid !important;border-radius: 1px !important;}\" offset=\"vc_hidden-lg vc_hidden-md\"][vc_single_image image=\"3065\" img_size=\"full\" alignment=\"center\"][/vc_column_inner][vc_column_inner width=\"1/5\" offset=\"vc_hidden-lg vc_hidden-md\"][vc_single_image image=\"3066\" img_size=\"full\" alignment=\"center\"][/vc_column_inner][/vc_row_inner][vc_row_inner equal_height=\"yes\" content_placement=\"middle\"][vc_column_inner width=\"1/4\" css=\".vc_custom_1691846563021{border-right-width: 1px !important;border-right-color: #000000 !important;border-right-style: solid !important;border-radius: 1px !important;}\" offset=\"vc_hidden-lg vc_hidden-md\"][vc_single_image image=\"3067\" img_size=\"full\" alignment=\"center\"][/vc_column_inner][vc_column_inner width=\"1/4\" css=\".vc_custom_1691846569845{border-right-width: 1px !important;border-right-color: #000000 !important;border-right-style: solid !important;border-radius: 1px !important;}\" offset=\"vc_hidden-lg vc_hidden-md\"][vc_single_image image=\"3068\" img_size=\"full\" alignment=\"center\"][/vc_column_inner][vc_column_inner width=\"1/4\" css=\".vc_custom_1691846576949{border-right-width: 1px !important;border-right-color: #000000 !important;border-right-style: solid !important;border-radius: 1px !important;}\" offset=\"vc_hidden-lg vc_hidden-md\"][vc_single_image image=\"3069\" img_size=\"full\" alignment=\"center\"][/vc_column_inner][vc_column_inner width=\"1/4\" offset=\"vc_hidden-lg vc_hidden-md\"][vc_single_image image=\"3070\" img_size=\"full\" alignment=\"center\"][/vc_column_inner][/vc_row_inner][vc_row_inner disable_element=\"yes\"][vc_column_inner width=\"1/3\"][vc_single_image image=\"2981\" img_size=\"full\"][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_single_image image=\"2982\" img_size=\"full\"][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_single_image image=\"2983\" img_size=\"full\"][/vc_column_inner][/vc_row_inner][vc_row_inner disable_element=\"yes\"][vc_column_inner width=\"1/6\"][/vc_column_inner][vc_column_inner width=\"2/3\"][vc_single_image image=\"2984\" img_size=\"full\"][/vc_column_inner][vc_column_inner width=\"1/6\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row full_width=\"stretch_row_content_no_spaces\"][vc_column offset=\"vc_hidden-sm vc_hidden-xs\"][vc_single_image image=\"3120\" img_size=\"full\" alignment=\"center\"][/vc_column][/vc_row][vc_row css=\".vc_custom_1689578794814{padding-top: 50px !important;padding-bottom: 50px !important;}\"][vc_column][ultimate_heading main_heading=\"Supplier selection and procurement criteria\" main_heading_color=\"#079547\" sub_heading_color=\"#792c8a\" alignment=\"left\"][/ultimate_heading][vc_row_inner css=\".vc_custom_1689578812611{margin-top: 50px !important;}\"][vc_column_inner width=\"1/2\"][dt_vc_list dividers=\"false\"]\r\n<ul>\r\n 	<li>Check supplier’s quality certification to ensure raw material quality</li>\r\n 	<li>New vendor validation protocol - In case of a change in the supplier, obtain samples and validate in the lab</li>\r\n</ul>\r\n[/dt_vc_list][/vc_column_inner][vc_column_inner width=\"1/2\"][dt_vc_list dividers=\"false\"]\r\n<ul>\r\n 	<li>Income inspection carried out on every consignment (Tested for Chemical Assay &amp; Physical Properties)</li>\r\n 	<li>Quality department approval required to be used in the production</li>\r\n</ul>\r\n[/dt_vc_list][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row css=\".vc_custom_1689578794814{padding-top: 50px !important;padding-bottom: 50px !important;}\"][vc_column][ultimate_heading main_heading=\"Please contact us to start your Marketing Journey with a reliable manufacturing partnership with FARMCHEMIE\" heading_tag=\"h3\" main_heading_color=\"#079547\" sub_heading_color=\"#792c8a\" alignment=\"left\"][/ultimate_heading][vc_row_inner css=\".vc_custom_1689578812611{margin-top: 50px !important;}\"][vc_column_inner width=\"1/2\"][bsf-info-box icon_size=\"32\" title=\"International Markets\" pos=\"square_box\" box_border_style=\"solid\" box_border_width=\"1\" box_border_color=\"#792c8a\" title_font_color=\"#079547\" desc_font_color=\"#792c8a\" title_font_size=\"desktop:25px;\"]<strong>Email :</strong> <a href=\"mailto:sales.export@farmchemie.com\"><u>sales.export@farmchemie.com</u></a>\r\n<strong>Tel No :</strong> + 94 76 577 2975[/bsf-info-box][/vc_column_inner][vc_column_inner width=\"1/2\"][bsf-info-box icon_size=\"32\" title=\"Sri Lankan Market\" pos=\"square_box\" box_border_style=\"solid\" box_border_width=\"1\" box_border_color=\"#079547\" title_font_color=\"#079547\" desc_font_color=\"#792c8a\" title_font_size=\"desktop:25px;\"]Email : <a href=\"mailto:sales.local@farmchemie.com\"><u>sales.local@farmchemie.com</u></a>\r\nTel No : +94 74 224 6947[/bsf-info-box][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row]','Manufacturing','','inherit','closed','closed','','2964-revision-v1','','','2023-08-31 03:15:39','2023-08-31 03:15:39','',2964,'https://farmchemie.yasithawd.com/?p=3374',0,'revision','',0),(3165,1,'2023-08-16 04:15:43','2023-08-16 04:15:43','[vc_row full_width=\"stretch_row\" css=\".vc_custom_1689577528817{padding-bottom: 50px !important;}\"][vc_column css=\".vc_custom_1689577454678{margin-bottom: 50px !important;}\"][vc_row_inner css=\".vc_custom_1689577559805{border-bottom-width: 1px !important;padding-top: 35px !important;padding-bottom: 35px !important;border-bottom-color: #079547 !important;border-bottom-style: solid !important;border-radius: 1px !important;}\"][vc_column_inner width=\"1/2\"][ultimate_heading main_heading=\"Feed Additives\" heading_tag=\"h3\" main_heading_color=\"#079547\" sub_heading_color=\"#792c8a\" alignment=\"left\"]<strong>Premixes/ Specialty Feed Additives/ Dilution of Active Ingredients/ Concentrates</strong><strong>\r\n</strong>Pack sizes – 1,000 kg, 500 kg, 50 kg, 25 kg, 15 kg, 10 kg, 5 kg, 1kg[/ultimate_heading][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_single_image image=\"3162\" img_size=\"full\"][/vc_column_inner][/vc_row_inner][vc_row_inner css=\".vc_custom_1689577609020{border-bottom-width: 1px !important;padding-top: 35px !important;padding-bottom: 35px !important;border-bottom-color: #079547 !important;border-bottom-style: solid !important;border-radius: 1px !important;}\"][vc_column_inner width=\"1/2\"][vc_single_image image=\"3163\" img_size=\"full\"][/vc_column_inner][vc_column_inner width=\"1/2\"][ultimate_heading main_heading=\"Oral Supplements\" heading_tag=\"h3\" main_heading_color=\"#079547\" sub_heading_color=\"#792c8a\" alignment=\"left\"]<strong>Liquids</strong><strong>\r\n</strong>Pack sizes – 1,000 L, 250 L, 50 L, 25 L, 5 L, 1 L, 500 mL, 250 mL, 100 mL, 50 mL\r\n\r\n<strong>Water soluble powders</strong><strong>\r\n</strong>Pack sizes – 25 kg, 15 kg, 10 kg, 5 kg, 1kg[/ultimate_heading][/vc_column_inner][/vc_row_inner][vc_row_inner css=\".vc_custom_1689577609020{border-bottom-width: 1px !important;padding-top: 35px !important;padding-bottom: 35px !important;border-bottom-color: #079547 !important;border-bottom-style: solid !important;border-radius: 1px !important;}\"][vc_column_inner width=\"1/2\"][ultimate_heading main_heading=\"Tablets\" heading_tag=\"h3\" main_heading_color=\"#079547\" sub_heading_color=\"#792c8a\" alignment=\"left\"]<strong>Supplementary tablets for pet care</strong>\r\nTablet sizes – 1 to 5 g\r\n\r\n<strong>Boluses</strong><strong>\r\n</strong>Tablet sizes – 5 to 25 g[/ultimate_heading][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_single_image image=\"3158\" img_size=\"full\"][/vc_column_inner][/vc_row_inner][vc_row_inner css=\".vc_custom_1689577609020{border-bottom-width: 1px !important;padding-top: 35px !important;padding-bottom: 35px !important;border-bottom-color: #079547 !important;border-bottom-style: solid !important;border-radius: 1px !important;}\"][vc_column_inner width=\"1/2\"][vc_single_image image=\"3164\" img_size=\"FULL\"][/vc_column_inner][vc_column_inner width=\"1/2\"][ultimate_heading main_heading=\"Veterinary Pharmaceuticals\" heading_tag=\"h3\" main_heading_color=\"#079547\" sub_heading_color=\"#792c8a\" alignment=\"left\"]<strong>Deworming Solutions/ Antibiotics/ Antimicrobials/ Wound care solutions</strong><strong>\r\n</strong>Form – Liquid, WSP[/ultimate_heading][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row css=\".vc_custom_1689578783264{padding-top: 50px !important;padding-bottom: 50px !important;}\"][vc_column][ultimate_heading main_heading=\"Our manufacturing facility is certified with FAMI-QS, WHO GMP &amp; ISO 9001:2015 International Quality standards.\" main_heading_color=\"#079547\" sub_heading_color=\"#792c8a\" alignment=\"left\"]We select only the <strong><em>best</em></strong> and <strong><em>most reputed</em></strong> Raw Material &amp; Packing Material Suppliers for the production of our finished goods.[/ultimate_heading][vc_row_inner equal_height=\"yes\" content_placement=\"middle\"][vc_column_inner width=\"1/5\" offset=\"vc_hidden-lg vc_hidden-md\"][vc_single_image image=\"3062\" img_size=\"full\" alignment=\"center\"][/vc_column_inner][vc_column_inner width=\"1/5\" css=\".vc_custom_1691846530645{border-right-width: 1px !important;border-left-width: 1px !important;border-left-color: #000000 !important;border-left-style: solid !important;border-right-color: #000000 !important;border-right-style: solid !important;border-radius: 1px !important;}\" offset=\"vc_hidden-lg vc_hidden-md\"][vc_single_image image=\"3063\" img_size=\"full\" alignment=\"center\"][/vc_column_inner][vc_column_inner width=\"1/5\" offset=\"vc_hidden-lg vc_hidden-md\"][vc_single_image image=\"3064\" img_size=\"full\" alignment=\"center\"][/vc_column_inner][vc_column_inner width=\"1/5\" css=\".vc_custom_1691846545469{border-right-width: 1px !important;border-left-width: 1px !important;border-left-color: #000000 !important;border-left-style: solid !important;border-right-color: #000000 !important;border-right-style: solid !important;border-radius: 1px !important;}\" offset=\"vc_hidden-lg vc_hidden-md\"][vc_single_image image=\"3065\" img_size=\"full\" alignment=\"center\"][/vc_column_inner][vc_column_inner width=\"1/5\" offset=\"vc_hidden-lg vc_hidden-md\"][vc_single_image image=\"3066\" img_size=\"full\" alignment=\"center\"][/vc_column_inner][/vc_row_inner][vc_row_inner equal_height=\"yes\" content_placement=\"middle\"][vc_column_inner width=\"1/4\" css=\".vc_custom_1691846563021{border-right-width: 1px !important;border-right-color: #000000 !important;border-right-style: solid !important;border-radius: 1px !important;}\" offset=\"vc_hidden-lg vc_hidden-md\"][vc_single_image image=\"3067\" img_size=\"full\" alignment=\"center\"][/vc_column_inner][vc_column_inner width=\"1/4\" css=\".vc_custom_1691846569845{border-right-width: 1px !important;border-right-color: #000000 !important;border-right-style: solid !important;border-radius: 1px !important;}\" offset=\"vc_hidden-lg vc_hidden-md\"][vc_single_image image=\"3068\" img_size=\"full\" alignment=\"center\"][/vc_column_inner][vc_column_inner width=\"1/4\" css=\".vc_custom_1691846576949{border-right-width: 1px !important;border-right-color: #000000 !important;border-right-style: solid !important;border-radius: 1px !important;}\" offset=\"vc_hidden-lg vc_hidden-md\"][vc_single_image image=\"3069\" img_size=\"full\" alignment=\"center\"][/vc_column_inner][vc_column_inner width=\"1/4\" offset=\"vc_hidden-lg vc_hidden-md\"][vc_single_image image=\"3070\" img_size=\"full\" alignment=\"center\"][/vc_column_inner][/vc_row_inner][vc_row_inner disable_element=\"yes\"][vc_column_inner width=\"1/3\"][vc_single_image image=\"2981\" img_size=\"full\"][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_single_image image=\"2982\" img_size=\"full\"][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_single_image image=\"2983\" img_size=\"full\"][/vc_column_inner][/vc_row_inner][vc_row_inner disable_element=\"yes\"][vc_column_inner width=\"1/6\"][/vc_column_inner][vc_column_inner width=\"2/3\"][vc_single_image image=\"2984\" img_size=\"full\"][/vc_column_inner][vc_column_inner width=\"1/6\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row full_width=\"stretch_row_content_no_spaces\"][vc_column offset=\"vc_hidden-sm vc_hidden-xs\"][vc_single_image image=\"3120\" img_size=\"full\" alignment=\"center\"][/vc_column][/vc_row][vc_row css=\".vc_custom_1689578794814{padding-top: 50px !important;padding-bottom: 50px !important;}\"][vc_column][ultimate_heading main_heading=\"Supplier selection and procurement criteria\" main_heading_color=\"#079547\" sub_heading_color=\"#792c8a\" alignment=\"left\"][/ultimate_heading][vc_row_inner css=\".vc_custom_1689578812611{margin-top: 50px !important;}\"][vc_column_inner width=\"1/2\"][dt_vc_list dividers=\"false\"]\r\n<ul>\r\n 	<li>Check supplier’s quality certification to ensure raw material quality</li>\r\n 	<li>New vendor validation protocol - In case of a change in the supplier, obtain samples and validate in the lab</li>\r\n</ul>\r\n[/dt_vc_list][/vc_column_inner][vc_column_inner width=\"1/2\"][dt_vc_list dividers=\"false\"]\r\n<ul>\r\n 	<li>Income inspection carried out on every consignment (Tested for Chemical Assay &amp; Physical Properties)</li>\r\n 	<li>Quality department approval required to be used in the production</li>\r\n</ul>\r\n[/dt_vc_list][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row css=\".vc_custom_1689578794814{padding-top: 50px !important;padding-bottom: 50px !important;}\"][vc_column][ultimate_heading main_heading=\"Please contact us to start your Marketing Journey with a reliable manufacturing partnership with FARMCHEMIE\" heading_tag=\"h3\" main_heading_color=\"#079547\" sub_heading_color=\"#792c8a\" alignment=\"left\"][/ultimate_heading][vc_row_inner css=\".vc_custom_1689578812611{margin-top: 50px !important;}\"][vc_column_inner width=\"1/2\"][bsf-info-box icon_size=\"32\" title=\"International Markets\" pos=\"square_box\" box_border_style=\"solid\" box_border_width=\"1\" box_border_color=\"#792c8a\" title_font_color=\"#079547\" desc_font_color=\"#792c8a\" title_font_size=\"desktop:25px;\"]<strong>Email :</strong> <a href=\"mailto:sales.export@farmchemie.com\"><u>sales.export@farmchemie.com</u></a>\r\n<strong>Tel No :</strong> + 94 76 577 2975[/bsf-info-box][/vc_column_inner][vc_column_inner width=\"1/2\"][bsf-info-box icon_size=\"32\" title=\"Sri Lankan Market\" pos=\"square_box\" box_border_style=\"solid\" box_border_width=\"1\" box_border_color=\"#079547\" title_font_color=\"#079547\" desc_font_color=\"#792c8a\" title_font_size=\"desktop:25px;\"]Email : <a href=\"mailto:sales.local@farmchemie.com\"><u>sales.local@farmchemie.com</u></a>\r\nTel No : +94 74 224 6947[/bsf-info-box][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row]','Manufacturing','','inherit','closed','closed','','2964-revision-v1','','','2023-08-16 04:15:43','2023-08-16 04:15:43','',2964,'https://farmchemie.yasithawd.com/?p=3165',0,'revision','',0),(3007,1,'2023-08-04 06:09:05','2023-08-04 06:09:05','','vacine4','','inherit','open','closed','','vacine4','','','2023-08-04 06:09:05','2023-08-04 06:09:05','',2996,'https://farmchemie.yasithawd.com/wp-content/uploads/2023/08/vacine4.jpg',0,'attachment','image/jpeg',0),(3008,1,'2023-08-04 06:10:00','2023-08-04 06:10:00','','vacine2','','inherit','open','closed','','vacine2','','','2023-08-04 06:10:00','2023-08-04 06:10:00','',2996,'https://farmchemie.yasithawd.com/wp-content/uploads/2023/08/vacine2.jpg',0,'attachment','image/jpeg',0),(3009,1,'2023-08-04 06:11:01','2023-08-04 06:11:01','','vacine3','','inherit','open','closed','','vacine3','','','2023-08-04 06:11:01','2023-08-04 06:11:01','',2996,'https://farmchemie.yasithawd.com/wp-content/uploads/2023/08/vacine3.jpg',0,'attachment','image/jpeg',0),(3161,1,'2023-08-16 04:00:04','2023-08-16 04:00:04','','Vaccination-Service','','inherit','open','closed','','vaccination-service-2','','','2023-08-16 04:00:04','2023-08-16 04:00:04','',2996,'https://farmchemie.yasithawd.com/wp-content/uploads/2023/08/Vaccination-Service.png',0,'attachment','image/png',0),(3010,1,'2023-08-04 06:11:43','2023-08-04 06:11:43','','vacine1','','inherit','open','closed','','vacine1','','','2023-08-04 06:11:43','2023-08-04 06:11:43','',2996,'https://farmchemie.yasithawd.com/wp-content/uploads/2023/08/vacine1.jpg',0,'attachment','image/jpeg',0),(3011,1,'2023-08-04 06:12:25','2023-08-04 06:12:25','','vacine5','','inherit','open','closed','','vacine5','','','2023-08-04 06:12:25','2023-08-04 06:12:25','',2996,'https://farmchemie.yasithawd.com/wp-content/uploads/2023/08/vacine5.jpg',0,'attachment','image/jpeg',0),(3012,1,'2023-08-04 06:12:39','2023-08-04 06:12:39','[vc_row][vc_column][vc_column_text]Farmchemie along with the leading veterinary vaccine solution provider in the world, CEVA established our partnership in 2013 to become the first animal health input supplier in Sri Lanka to offer vaccination services to poultry farmers. This innovative solution tackles the burden of individually vaccinating animals on farms and introduces advanced equipment for precise vaccine administration. By addressing the limitations of traditional vaccination methods, Farmchemie\'s services have gained popularity within a short period.[/vc_column_text][/vc_column][/vc_row][vc_row css=\".vc_custom_1689580294399{padding-top: 50px !important;padding-bottom: 50px !important;}\"][vc_column][vc_row_inner css=\".vc_custom_1691128897862{border-top-width: 1px !important;border-top-color: #079547 !important;border-top-style: solid !important;border-radius: 1px !important;}\"][vc_column_inner width=\"2/3\"][vc_column_text]after 10 years from 2013-2023 Farmchemie achieved 500Mn doses of vaccines from Transmune IBD vaccine which is administrated to prevent a deadly disease called Infectious Bursal Disease in broiler birds of Sri Lanka and holding the number 01 position in vaccination service in the county since the beginning.[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_single_image image=\"3007\" img_size=\"full\"][/vc_column_inner][/vc_row_inner][vc_row_inner css=\".vc_custom_1691128912934{border-top-width: 1px !important;border-top-color: #079547 !important;border-top-style: solid !important;border-radius: 1px !important;}\"][vc_column_inner width=\"1/3\"][vc_single_image image=\"3008\" img_size=\"full\"][/vc_column_inner][vc_column_inner width=\"2/3\"][vc_column_text]Farmchemie\'s approach focuses on accurate vaccine delivery and robust cold chain management. The company regularly conducts audits to ensure the quality and integrity of vaccines. The maintenance of proper temperature and storage conditions guarantees vaccine potency and enhances their efficacy during administration.\r\n\r\n[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_row_inner css=\".vc_custom_1691128980782{border-top-width: 1px !important;border-top-color: #079547 !important;border-top-style: solid !important;border-radius: 1px !important;}\"][vc_column_inner width=\"2/3\"][vc_column_text]One of the key strengths of Farmchemie is its team of highly qualified staff, who have received training overseas. These professionals possess the expertise to administer vaccines effectively and efficiently, providing exceptional care to the animals. The investment in their education and training reflects Farmchemie\'s commitment to delivering superior services.[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_single_image image=\"3009\" img_size=\"full\"][/vc_column_inner][/vc_row_inner][vc_row_inner css=\".vc_custom_1691128954614{border-top-width: 1px !important;border-top-color: #079547 !important;border-top-style: solid !important;border-radius: 1px !important;}\"][vc_column_inner width=\"1/3\"][vc_single_image image=\"3010\" img_size=\"full\"][/vc_column_inner][vc_column_inner width=\"2/3\"][vc_column_text]The accuracy and the quality of the vaccination is always highly concerned and that is monitored by regular audits which supervised by the CEVA and for each vaccination audit report can be shared to the customer which leads them to get better understanding about the vaccination proces and administration[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_row_inner css=\".vc_custom_1691129001118{border-top-width: 1px !important;border-top-color: #079547 !important;border-top-style: solid !important;border-radius: 1px !important;}\"][vc_column_inner width=\"2/3\"][vc_column_text]The impact of Farmchemie\'s vaccination services on poultry farmers has been substantial. By eliminating the burden of individual vaccinations, farmers can allocate their time and resources to other essential aspects of poultry farming. The accuracy of vaccine delivery, coupled with stringent cold chain management practices, has led to increased customer satisfaction and improved overall poultry health outcomes.[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_single_image image=\"3011\" img_size=\"full\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row css=\".vc_custom_1691129087062{border-top-width: 1px !important;border-top-color: #079547 !important;border-top-style: solid !important;border-radius: 1px !important;}\"][vc_column][vc_column_text]Farmchemie\'s pioneering role in the industry has revolutionized poultry farming in Sri Lanka. Through advanced vaccination techniques, quality assurance, and well-trained staff, the company has overcome the limitations of conventional procedures. By consistently innovating and prioritizing customer satisfaction, Farmchemie continues to shape and improve the health and welfare of poultry in the country.[/vc_column_text][/vc_column][/vc_row]','Vaccination Service','','inherit','closed','closed','','2996-revision-v1','','','2023-08-04 06:12:39','2023-08-04 06:12:39','',2996,'https://farmchemie.yasithawd.com/?p=3012',0,'revision','',0),(3014,1,'2023-08-04 06:31:26','2023-08-04 06:31:26','<p>[vc_row css=\".vc_custom_1689579703311{padding-top: 50px !important;padding-bottom: 50px !important;}\"][vc_column][vc_column_text]Medivesta Laboratories (Pvt) Ltd. offers high quality analytical service in the field of Pharmaceutical, Food and Feed analysis. We specialize in analysis of Active pharmaceutical Ingredients, Vitamins, Amino acids, Mycotoxins and Microbiological analysis and so on.<br />\nBy using the latest technologies, we are continuously expanding our range of analysis in industry. We are committed to provide you with Best service.[/vc_column_text][vc_row_inner][vc_column_inner width=\"1/3\"][vc_single_image image=\"3015\" img_size=\"full\"][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_single_image image=\"3016\" img_size=\"full\"][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_single_image image=\"3017\" img_size=\"full\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row css=\".vc_custom_1689579703311{padding-top: 50px !important;padding-bottom: 50px !important;}\"][vc_column][ultimate_heading main_heading=\"Contact us:\" heading_tag=\"h3\" main_heading_color=\"#079547\" alignment=\"left\"][/ultimate_heading][vc_row_inner css=\".vc_custom_1689579850874{margin-top: 35px !important;margin-bottom: 35px !important;}\"][vc_column_inner width=\"1/3\"][bsf-info-box icon_size=\"32\" title=\"Inquiries\"][/bsf-info-box][/vc_column_inner][vc_column_inner width=\"1/3\"][bsf-info-box icon_size=\"32\" title=\"Test Request form\"][/bsf-info-box][/vc_column_inner][vc_column_inner width=\"1/3\"][bsf-info-box icon_size=\"32\" title=\"Accreditation\"][/bsf-info-box][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row]</p>\n','Medivesta Laboratories (Pvt) Ltd.','','inherit','closed','closed','','2990-autosave-v1','','','2023-08-04 06:31:26','2023-08-04 06:31:26','',2990,'https://farmchemie.yasithawd.com/?p=3014',0,'revision','',0),(3132,1,'2023-08-14 14:23:41','2023-08-14 14:23:41','[vc_row full_width=\"stretch_row\" css=\".vc_custom_1689577528817{padding-bottom: 50px !important;}\"][vc_column css=\".vc_custom_1689577454678{margin-bottom: 50px !important;}\"][vc_row_inner css=\".vc_custom_1689577559805{border-bottom-width: 1px !important;padding-top: 35px !important;padding-bottom: 35px !important;border-bottom-color: #079547 !important;border-bottom-style: solid !important;border-radius: 1px !important;}\"][vc_column_inner width=\"1/2\"][ultimate_heading main_heading=\"Feed Additives\" heading_tag=\"h3\" main_heading_color=\"#079547\" sub_heading_color=\"#792c8a\" alignment=\"left\"]<strong>Premixes/ Specialty Feed Additives/ Dilution of Active Ingredients/ Concentrates</strong><strong>\r\n</strong>Pack sizes – 1,000 kg, 500 kg, 50 kg, 25 kg, 15 kg, 10 kg, 5 kg, 1kg[/ultimate_heading][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_single_image image=\"3129\" img_size=\"full\"][/vc_column_inner][/vc_row_inner][vc_row_inner css=\".vc_custom_1689577609020{border-bottom-width: 1px !important;padding-top: 35px !important;padding-bottom: 35px !important;border-bottom-color: #079547 !important;border-bottom-style: solid !important;border-radius: 1px !important;}\"][vc_column_inner width=\"1/2\"][vc_single_image][/vc_column_inner][vc_column_inner width=\"1/2\"][ultimate_heading main_heading=\"Oral Supplements\" heading_tag=\"h3\" main_heading_color=\"#079547\" sub_heading_color=\"#792c8a\" alignment=\"left\"]<strong>Liquids</strong><strong>\r\n</strong>Pack sizes – 1,000 L, 250 L, 50 L, 25 L, 5 L, 1 L, 500 mL, 250 mL, 100 mL, 50 mL\r\n\r\n<strong>Water soluble powders</strong><strong>\r\n</strong>Pack sizes – 25 kg, 15 kg, 10 kg, 5 kg, 1kg[/ultimate_heading][/vc_column_inner][/vc_row_inner][vc_row_inner css=\".vc_custom_1689577609020{border-bottom-width: 1px !important;padding-top: 35px !important;padding-bottom: 35px !important;border-bottom-color: #079547 !important;border-bottom-style: solid !important;border-radius: 1px !important;}\"][vc_column_inner width=\"2/3\"][ultimate_heading main_heading=\"Tablets\" heading_tag=\"h3\" main_heading_color=\"#079547\" sub_heading_color=\"#792c8a\" alignment=\"left\"]<strong>Supplementary tablets for pet care</strong>\r\nTablet sizes – 1 to 5 g\r\n\r\n<strong>Boluses</strong><strong>\r\n</strong>Tablet sizes – 5 to 25 g[/ultimate_heading][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_single_image][/vc_column_inner][/vc_row_inner][vc_row_inner css=\".vc_custom_1689577609020{border-bottom-width: 1px !important;padding-top: 35px !important;padding-bottom: 35px !important;border-bottom-color: #079547 !important;border-bottom-style: solid !important;border-radius: 1px !important;}\"][vc_column_inner width=\"1/3\"][vc_single_image][/vc_column_inner][vc_column_inner width=\"2/3\"][ultimate_heading main_heading=\"Veterinary Pharmaceuticals\" heading_tag=\"h3\" main_heading_color=\"#079547\" sub_heading_color=\"#792c8a\" alignment=\"left\"]<strong>Deworming Solutions/ Antibiotics/ Antimicrobials/ Wound care solutions</strong><strong>\r\n</strong>Form – Liquid, WSP[/ultimate_heading][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row css=\".vc_custom_1689578783264{padding-top: 50px !important;padding-bottom: 50px !important;}\"][vc_column][ultimate_heading main_heading=\"Our manufacturing facility is certified with FAMI-QS, WHO GMP &amp; ISO 9001:2015 International Quality standards.\" main_heading_color=\"#079547\" sub_heading_color=\"#792c8a\" alignment=\"left\"]We select only the <strong><em>best</em></strong> and <strong><em>most reputed</em></strong> Raw Material &amp; Packing Material Suppliers for the production of our finished goods.[/ultimate_heading][vc_row_inner equal_height=\"yes\" content_placement=\"middle\"][vc_column_inner width=\"1/5\" offset=\"vc_hidden-lg vc_hidden-md\"][vc_single_image image=\"3062\" img_size=\"full\" alignment=\"center\"][/vc_column_inner][vc_column_inner width=\"1/5\" css=\".vc_custom_1691846530645{border-right-width: 1px !important;border-left-width: 1px !important;border-left-color: #000000 !important;border-left-style: solid !important;border-right-color: #000000 !important;border-right-style: solid !important;border-radius: 1px !important;}\" offset=\"vc_hidden-lg vc_hidden-md\"][vc_single_image image=\"3063\" img_size=\"full\" alignment=\"center\"][/vc_column_inner][vc_column_inner width=\"1/5\" offset=\"vc_hidden-lg vc_hidden-md\"][vc_single_image image=\"3064\" img_size=\"full\" alignment=\"center\"][/vc_column_inner][vc_column_inner width=\"1/5\" css=\".vc_custom_1691846545469{border-right-width: 1px !important;border-left-width: 1px !important;border-left-color: #000000 !important;border-left-style: solid !important;border-right-color: #000000 !important;border-right-style: solid !important;border-radius: 1px !important;}\" offset=\"vc_hidden-lg vc_hidden-md\"][vc_single_image image=\"3065\" img_size=\"full\" alignment=\"center\"][/vc_column_inner][vc_column_inner width=\"1/5\" offset=\"vc_hidden-lg vc_hidden-md\"][vc_single_image image=\"3066\" img_size=\"full\" alignment=\"center\"][/vc_column_inner][/vc_row_inner][vc_row_inner equal_height=\"yes\" content_placement=\"middle\"][vc_column_inner width=\"1/4\" css=\".vc_custom_1691846563021{border-right-width: 1px !important;border-right-color: #000000 !important;border-right-style: solid !important;border-radius: 1px !important;}\" offset=\"vc_hidden-lg vc_hidden-md\"][vc_single_image image=\"3067\" img_size=\"full\" alignment=\"center\"][/vc_column_inner][vc_column_inner width=\"1/4\" css=\".vc_custom_1691846569845{border-right-width: 1px !important;border-right-color: #000000 !important;border-right-style: solid !important;border-radius: 1px !important;}\" offset=\"vc_hidden-lg vc_hidden-md\"][vc_single_image image=\"3068\" img_size=\"full\" alignment=\"center\"][/vc_column_inner][vc_column_inner width=\"1/4\" css=\".vc_custom_1691846576949{border-right-width: 1px !important;border-right-color: #000000 !important;border-right-style: solid !important;border-radius: 1px !important;}\" offset=\"vc_hidden-lg vc_hidden-md\"][vc_single_image image=\"3069\" img_size=\"full\" alignment=\"center\"][/vc_column_inner][vc_column_inner width=\"1/4\" offset=\"vc_hidden-lg vc_hidden-md\"][vc_single_image image=\"3070\" img_size=\"full\" alignment=\"center\"][/vc_column_inner][/vc_row_inner][vc_row_inner disable_element=\"yes\"][vc_column_inner width=\"1/3\"][vc_single_image image=\"2981\" img_size=\"full\"][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_single_image image=\"2982\" img_size=\"full\"][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_single_image image=\"2983\" img_size=\"full\"][/vc_column_inner][/vc_row_inner][vc_row_inner disable_element=\"yes\"][vc_column_inner width=\"1/6\"][/vc_column_inner][vc_column_inner width=\"2/3\"][vc_single_image image=\"2984\" img_size=\"full\"][/vc_column_inner][vc_column_inner width=\"1/6\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row full_width=\"stretch_row_content_no_spaces\"][vc_column offset=\"vc_hidden-sm vc_hidden-xs\"][vc_single_image image=\"3120\" img_size=\"full\" alignment=\"center\"][/vc_column][/vc_row][vc_row css=\".vc_custom_1689578794814{padding-top: 50px !important;padding-bottom: 50px !important;}\"][vc_column][ultimate_heading main_heading=\"Supplier selection and procurement criteria\" main_heading_color=\"#079547\" sub_heading_color=\"#792c8a\" alignment=\"left\"][/ultimate_heading][vc_row_inner css=\".vc_custom_1689578812611{margin-top: 50px !important;}\"][vc_column_inner width=\"1/2\"][dt_vc_list dividers=\"false\"]\r\n<ul>\r\n 	<li>Check supplier’s quality certification to ensure raw material quality</li>\r\n 	<li>New vendor validation protocol - In case of a change in the supplier, obtain samples and validate in the lab</li>\r\n</ul>\r\n[/dt_vc_list][/vc_column_inner][vc_column_inner width=\"1/2\"][dt_vc_list dividers=\"false\"]\r\n<ul>\r\n 	<li>Income inspection carried out on every consignment (Tested for Chemical Assay &amp; Physical Properties)</li>\r\n 	<li>Quality department approval required to be used in the production</li>\r\n</ul>\r\n[/dt_vc_list][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row css=\".vc_custom_1689578794814{padding-top: 50px !important;padding-bottom: 50px !important;}\"][vc_column][ultimate_heading main_heading=\"Please contact us to start your Marketing Journey with a reliable manufacturing partnership with FARMCHEMIE\" heading_tag=\"h3\" main_heading_color=\"#079547\" sub_heading_color=\"#792c8a\" alignment=\"left\"][/ultimate_heading][vc_row_inner css=\".vc_custom_1689578812611{margin-top: 50px !important;}\"][vc_column_inner width=\"1/2\"][bsf-info-box icon_size=\"32\" title=\"International Markets\" pos=\"square_box\" box_border_style=\"solid\" box_border_width=\"1\" box_border_color=\"#792c8a\" title_font_color=\"#079547\" desc_font_color=\"#792c8a\" title_font_size=\"desktop:25px;\"]<strong>Email :</strong> <a href=\"mailto:sales.export@farmchemie.com\"><u>sales.export@farmchemie.com</u></a>\r\n<strong>Tel No :</strong> + 94 76 577 2975[/bsf-info-box][/vc_column_inner][vc_column_inner width=\"1/2\"][bsf-info-box icon_size=\"32\" title=\"Sri Lankan Market\" pos=\"square_box\" box_border_style=\"solid\" box_border_width=\"1\" box_border_color=\"#079547\" title_font_color=\"#079547\" desc_font_color=\"#792c8a\" title_font_size=\"desktop:25px;\"]Email : <a href=\"mailto:sales.local@farmchemie.com\"><u>sales.local@farmchemie.com</u></a>\r\nTel No : +94 74 224 6947[/bsf-info-box][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row]','Manufacturing','','inherit','closed','closed','','2964-revision-v1','','','2023-08-14 14:23:41','2023-08-14 14:23:41','',2964,'https://farmchemie.yasithawd.com/?p=3132',0,'revision','',0),(2516,1,'2022-09-05 06:12:29','2022-09-05 06:12:29','','FB','','inherit','open','closed','','fb','','','2022-09-05 06:12:29','2022-09-05 06:12:29','',0,'https://farmchemie.yasithawd.com/wp-content/uploads/2022/09/FB.png',0,'attachment','image/png',0),(2517,1,'2022-09-05 06:42:04','2022-09-05 06:42:04','','IN','','inherit','open','closed','','in','','','2022-09-05 06:42:04','2022-09-05 06:42:04','',0,'https://farmchemie.yasithawd.com/wp-content/uploads/2022/09/IN.png',0,'attachment','image/png',0),(2518,1,'2022-09-05 06:42:30','2022-09-05 06:42:30','','linkedin','','inherit','open','closed','','linkedin','','','2022-09-05 06:42:30','2022-09-05 06:42:30','',0,'https://farmchemie.yasithawd.com/wp-content/uploads/2022/09/linkedin.png',0,'attachment','image/png',0),(2519,1,'2022-09-05 06:42:52','2022-09-05 06:42:52','','Youtube','','inherit','open','closed','','youtube','','','2022-09-05 06:42:52','2022-09-05 06:42:52','',0,'https://farmchemie.yasithawd.com/wp-content/uploads/2022/09/Youtube.png',0,'attachment','image/png',0),(2520,1,'2022-09-05 06:46:52','2022-09-05 06:46:52','','Youtube','','inherit','open','closed','','youtube-png','','','2022-09-05 06:46:52','2022-09-05 06:46:52','',0,'/home/yasith5/farmchemie.yasithawd.com/wp-content/uploads/2022/09/1-Youtube.png',0,'attachment','image/png',0),(2521,1,'2022-09-05 06:47:20','2022-09-05 06:47:20','','Youtube','','inherit','open','closed','','youtube-png-2','','','2022-09-05 06:47:20','2022-09-05 06:47:20','',0,'/home/yasith5/farmchemie.yasithawd.com/wp-content/uploads/2022/09/2-Youtube.png',0,'attachment','image/png',0),(2529,1,'2022-09-05 07:54:39','2022-09-05 07:54:39','[vc_row full_width=\"stretch_row_content_no_spaces\" bg_type=\"image\" parallax_style=\"vcpb-default\" bg_image_new=\"id^2524|url^https://farmchemie.yasithawd.com/wp-content/uploads/2022/09/marketbgimg1.png|caption^null|alt^null|title^marketbgimg1|description^null\" bg_image_repeat=\"no-repeat\"][vc_column][ultimate_heading main_heading=\"Select your market/region\" heading_tag=\"h1\" main_heading_color=\"#8224e3\" main_heading_style=\"font-weight:bold;\" margin_design_tab_text=\"\"][/ultimate_heading][vc_empty_space height=\"300px\" css=\".vc_custom_1662363666143{background-image: url(https://farmchemie.yasithawd.com/wp-content/uploads/2022/09/marketbgimg1-sp.png?id=2527) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\"][vc_row_inner][vc_column_inner el_class=\"cborder1\" width=\"1/4\" css=\".vc_custom_1662364474278{background-color: #8224e3 !important;}\"][/vc_column_inner][vc_column_inner width=\"2/4\"][/vc_column_inner][vc_column_inner width=\"1/4\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row]','Home2','','inherit','closed','closed','','2525-revision-v1','','','2022-09-05 07:54:39','2022-09-05 07:54:39','',2525,'https://farmchemie.yasithawd.com/?p=2529',0,'revision','',0),(2533,1,'2022-09-05 08:36:53','2022-09-05 08:36:53','[vc_row full_width=\"stretch_row_content\" bg_type=\"image\" parallax_style=\"vcpb-default\" bg_image_new=\"id^2524|url^https://farmchemie.yasithawd.com/wp-content/uploads/2022/09/marketbgimg1.png|caption^null|alt^null|title^marketbgimg1|description^null\" bg_image_repeat=\"no-repeat\"][vc_column][ultimate_heading main_heading=\"Select your market/region\" heading_tag=\"h1\" main_heading_color=\"#8224e3\" main_heading_style=\"font-weight:bold;\"][/ultimate_heading][vc_empty_space height=\"300px\" css=\".vc_custom_1662363666143{background-image: url(https://farmchemie.yasithawd.com/wp-content/uploads/2022/09/marketbgimg1-sp.png?id=2527) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\"][vc_row_inner][vc_column_inner el_class=\"cborder1\" width=\"4/12\" css=\".vc_custom_1662367002626{background-color: #8224e3 !important;}\"][bsf-info-box icon_type=\"custom\" icon_img=\"id^2531|url^https://farmchemie.yasithawd.com/wp-content/uploads/2022/09/ETH.png|caption^null|alt^null|title^ETH|description^null\" img_width=\"100\" title=\"Global\" heading_tag=\"h1\" pos=\"right\" title_font_style=\"font-weight:bold;\" title_font_size=\"desktop:32px;\" title_font_color=\"#ffffff\" desc_font_size=\"desktop:24px;\" desc_font_color=\"#ffffff\"]Global Market[/bsf-info-box][/vc_column_inner][vc_column_inner width=\"4/12\"][/vc_column_inner][vc_column_inner width=\"4/12\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row]','Home2','','inherit','closed','closed','','2525-revision-v1','','','2022-09-05 08:36:53','2022-09-05 08:36:53','',2525,'https://farmchemie.yasithawd.com/?p=2533',0,'revision','',0),(2534,1,'2022-09-05 08:49:15','2022-09-05 08:49:15','[vc_row full_width=\"stretch_row_content\" bg_type=\"image\" parallax_style=\"vcpb-default\" bg_image_new=\"id^2524|url^https://farmchemie.yasithawd.com/wp-content/uploads/2022/09/marketbgimg1.png|caption^null|alt^null|title^marketbgimg1|description^null\" bg_image_repeat=\"no-repeat\"][vc_column][ultimate_heading main_heading=\"SELECT YOUR MARKET/REGION\" main_heading_color=\"#6e368d\" main_heading_style=\"font-weight:bold;\" margin_design_tab_text=\"\" main_heading_font_size=\"desktop:48px;\"][/ultimate_heading][vc_empty_space height=\"300px\" css=\".vc_custom_1662363666143{background-image: url(https://farmchemie.yasithawd.com/wp-content/uploads/2022/09/marketbgimg1-sp.png?id=2527) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\"][vc_row_inner][vc_column_inner el_class=\"cborder1\" width=\"1/3\" css=\".vc_custom_1662367183321{background-color: #6e368d !important;}\"][bsf-info-box icon_type=\"custom\" icon_img=\"id^2531|url^https://farmchemie.yasithawd.com/wp-content/uploads/2022/09/ETH.png|caption^null|alt^null|title^ETH|description^null\" img_width=\"100\" title=\"Global\" pos=\"right\" title_font_style=\"font-weight:bold;\" title_font_size=\"desktop:48px;\" title_font_color=\"#ffffff\" desc_font_size=\"desktop:24px;\" desc_font_color=\"#ffffff\"]International Market[/bsf-info-box][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\" css=\".vc_custom_1662367741225{background-color: #089548 !important;}\"][bsf-info-box icon_type=\"custom\" icon_img=\"id^2532|url^https://farmchemie.yasithawd.com/wp-content/uploads/2022/09/SL.png|caption^null|alt^null|title^SL|description^null\" img_width=\"100\" title=\"Local\" heading_tag=\"h1\" pos=\"left\" title_font_style=\"font-weight:bold;\" title_font_size=\"desktop:32px;\" title_font_color=\"#ffffff\" desc_font_size=\"desktop:24px;\" desc_font_color=\"#ffffff\"]Sri Lankan Market[/bsf-info-box][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner width=\"1/2\"][vc_column_text]\r\n\r\nI am text block. Click edit button to change this text. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.\r\n\r\n[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row]','Home2','','inherit','closed','closed','','2525-revision-v1','','','2022-09-05 08:49:15','2022-09-05 08:49:15','',2525,'https://farmchemie.yasithawd.com/?p=2534',0,'revision','',0),(2535,1,'2022-09-05 08:50:22','2022-09-05 08:50:22','[vc_row full_width=\"stretch_row_content\" bg_type=\"image\" parallax_style=\"vcpb-default\" bg_image_new=\"id^2524|url^https://farmchemie.yasithawd.com/wp-content/uploads/2022/09/marketbgimg1.png|caption^null|alt^null|title^marketbgimg1|description^null\" bg_image_repeat=\"no-repeat\"][vc_column][ultimate_heading main_heading=\"SELECT YOUR MARKET/REGION\" main_heading_color=\"#6e368d\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:48px;\"][/ultimate_heading][vc_empty_space height=\"300px\" css=\".vc_custom_1662363666143{background-image: url(https://farmchemie.yasithawd.com/wp-content/uploads/2022/09/marketbgimg1-sp.png?id=2527) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\"][vc_row_inner][vc_column_inner el_class=\"cborder1\" width=\"1/3\" css=\".vc_custom_1662367183321{background-color: #6e368d !important;}\"][bsf-info-box icon_type=\"custom\" icon_img=\"id^2531|url^https://farmchemie.yasithawd.com/wp-content/uploads/2022/09/ETH.png|caption^null|alt^null|title^ETH|description^null\" img_width=\"100\" title=\"Global\" pos=\"right\" title_font_style=\"font-weight:bold;\" title_font_size=\"desktop:48px;\" title_font_color=\"#ffffff\" desc_font_size=\"desktop:24px;\" desc_font_color=\"#ffffff\"]International Market[/bsf-info-box][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\" css=\".vc_custom_1662367741225{background-color: #089548 !important;}\"][bsf-info-box icon_type=\"custom\" icon_img=\"id^2532|url^https://farmchemie.yasithawd.com/wp-content/uploads/2022/09/SL.png|caption^null|alt^null|title^SL|description^null\" img_width=\"100\" title=\"Local\" heading_tag=\"h1\" pos=\"left\" title_font_style=\"font-weight:bold;\" title_font_size=\"desktop:32px;\" title_font_color=\"#ffffff\" desc_font_size=\"desktop:24px;\" desc_font_color=\"#ffffff\"]Sri Lankan Market[/bsf-info-box][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner width=\"1/2\"][vc_column_text]FARMCHEMIE is a world-renowned manufacturer of feed additives and feed supplements. We offer our FarmStar and PetStar branded products to the international markets We provide toll-manufacturing services to globally recognized marketing companies for the Asian &amp; African markets. Our manufacturing plant is equipped with fully automated production lines from Bühler.[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_column_text]FARMCHEMIE offers an island wide distribution, technical consultation and poultry vaccination services of high-quality animal healthcare products from world-renowned suppliers.\r\nWe offer both locally manufactured and imported products to cater the poultry, dairy, swine, pet-care and aqua markets.[/vc_column_text][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row]','Home2','','inherit','closed','closed','','2525-revision-v1','','','2022-09-05 08:50:22','2022-09-05 08:50:22','',2525,'https://farmchemie.yasithawd.com/?p=2535',0,'revision','',0),(3331,1,'2023-08-26 03:46:44','2023-08-26 03:46:44','','AVI PRIME PLUS','<h3><em>Vitamin, Mineral and Amino Acid Supplement Water Soluble Powder\r\nOffset missing nutrients in seed diets </em></h3>\r\n[dt_divider style=\"thick\" /]\r\n\r\n&nbsp;\r\n\r\n<strong>Composition: </strong>\r\n\r\nEach 1 g contains,\r\n\r\nVitamin A - 931.382 IU\r\nVitamin D3 - 176.327 IU\r\nVitamin E - 26.436 IU\r\nVitamin K - 0.655 mg\r\nPantothenic - 1.091 mg\r\nRiboflavin - 1.745 mg\r\nFolic - 0.131 mg\r\nNiacinamide - 5.273 mg\r\nThiamine - 0.258 mg\r\nPyridoxine - 0.436 mg\r\nVitamin B12 - 0.004 mg\r\nBiotin - 0.011 mg\r\nAscorbic acid - 12.327 mg\r\nCholine - 0.033 mg\r\nIodine - 0.020 mg\r\nIron - 1.745 mg\r\nManganese - 2.655 mg\r\nZinc - 2.909 mg\r\nCopper - 0.133 mg\r\nMethionine - 52.891mg\r\nLysine HCL - 74.491mg\r\n\r\n[dt_divider style=\"thin\" /]\r\n\r\n<strong>Indication: </strong>\r\n\r\nProvides offset missing nutrients as essential vitamins, minerals and other nutrients for a complete, balanced healthy life of your exotic pets. The calcium &amp; Phosphorus ratio is carefully balanced for optimum skeletal development and growth with calcium metabolism in the body. Over 10 vitamins and different minerals for essential growth and vitamin D &amp; E improved breeding. Promotes a healthy immune system to combat diseases. Supplements their protein requirement with amino acids for molting and nestling in an adult. A further active lifestyle with good muscle formation and repair after strenuous exercise. The unique combination of digestive enzymes improves seed and legume digestion. Probiotics are included for improved gut health and maintaining a healthy immune system. Exotic fruity flavor as a carrier to increase the palatability and sugar for energy. Ideally given before and after exercise as recovery feed.\r\n\r\n[dt_divider style=\"thin\" /]\r\n\r\n<strong>Dosage: </strong>\r\n\r\nIn moist food/ feed daily dosage:\r\n<ul>\r\n 	<li>Small birds: 5g per 1kg of feed</li>\r\n 	<li>Medium birds: 10g per 1 kg of food</li>\r\n 	<li>Large birds: 15g per 1 kg of food</li>\r\n</ul>\r\nIn drinking water daily dosage:\r\n<ul>\r\n 	<li>For all types of birds: 5g per 100ml of water</li>\r\n</ul>\r\n[dt_divider style=\"thin\" /]\r\n\r\n<strong>Pack sizes: </strong>\r\n\r\n250 g\r\n\r\n&nbsp;\r\n\r\n[dt_divider style=\"thick\" /]\r\n\r\n&nbsp;\r\n\r\n<a href=\"/wp-content/uploads/2023/08/AVI-Prime-Brochure-Final_compressed.pdf\"><i class=\"fa-solid fa-file-pdf fa-2xl\" style=\"color: #039447;\"> pdf</i></a>','publish','closed','closed','','avi-prime-plus','','','2023-09-11 16:48:25','2023-09-11 16:48:25','',0,'https://farmchemie.yasithawd.com/?post_type=product&#038;p=3331',0,'product','',0),(2538,1,'2022-09-05 08:55:29','2022-09-05 08:55:29','[vc_row full_width=\"stretch_row_content\" bg_type=\"image\" parallax_style=\"vcpb-default\" bg_image_new=\"id^2524|url^https://farmchemie.yasithawd.com/wp-content/uploads/2022/09/marketbgimg1.png|caption^null|alt^null|title^marketbgimg1|description^null\" bg_image_repeat=\"no-repeat\"][vc_column][ultimate_heading main_heading=\"SELECT YOUR MARKET/REGION\" main_heading_color=\"#6e368d\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:48px;\"][/ultimate_heading][vc_empty_space height=\"300px\" css=\".vc_custom_1662363666143{background-image: url(https://farmchemie.yasithawd.com/wp-content/uploads/2022/09/marketbgimg1-sp.png?id=2527) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\"][vc_row_inner][vc_column_inner el_class=\"cborder1\" width=\"1/3\" css=\".vc_custom_1662367183321{background-color: #6e368d !important;}\"][bsf-info-box icon_type=\"custom\" icon_img=\"id^2537|url^https://farmchemie.yasithawd.com/wp-content/uploads/2022/09/earthicon-1.png|caption^null|alt^null|title^earthicon-1|description^null\" img_width=\"100\" title=\"Global\" pos=\"right\" title_font_style=\"font-weight:bold;\" title_font_size=\"desktop:48px;\" title_font_color=\"#ffffff\" desc_font_size=\"desktop:24px;\" desc_font_color=\"#ffffff\"]International Market[/bsf-info-box][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\" css=\".vc_custom_1662367741225{background-color: #089548 !important;}\"][bsf-info-box icon_type=\"custom\" icon_img=\"id^2536|url^https://farmchemie.yasithawd.com/wp-content/uploads/2022/09/srilankaicon-1.png|caption^null|alt^null|title^srilankaicon-1|description^null\" img_width=\"100\" title=\"Local\" pos=\"left\" title_font_style=\"font-weight:bold;\" title_font_size=\"desktop:48px;\" title_font_color=\"#ffffff\" desc_font_size=\"desktop:24px;\" desc_font_color=\"#ffffff\"]Sri Lankan Market[/bsf-info-box][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner width=\"1/2\"][vc_column_text]FARMCHEMIE is a world-renowned manufacturer of feed additives and feed supplements. We offer our FarmStar and PetStar branded products to the international markets We provide toll-manufacturing services to globally recognized marketing companies for the Asian &amp; African markets. Our manufacturing plant is equipped with fully automated production lines from Bühler.[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_column_text]FARMCHEMIE offers an island wide distribution, technical consultation and poultry vaccination services of high-quality animal healthcare products from world-renowned suppliers.\r\nWe offer both locally manufactured and imported products to cater the poultry, dairy, swine, pet-care and aqua markets.[/vc_column_text][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row]','Home2','','inherit','closed','closed','','2525-revision-v1','','','2022-09-05 08:55:29','2022-09-05 08:55:29','',2525,'https://farmchemie.yasithawd.com/?p=2538',0,'revision','',0),(2539,1,'2022-09-05 08:57:30','2022-09-05 08:57:30','[vc_row full_width=\"stretch_row_content\" bg_type=\"image\" parallax_style=\"vcpb-default\" bg_image_new=\"id^2524|url^https://farmchemie.yasithawd.com/wp-content/uploads/2022/09/marketbgimg1.png|caption^null|alt^null|title^marketbgimg1|description^null\" bg_image_repeat=\"no-repeat\"][vc_column][ultimate_heading main_heading=\"SELECT YOUR MARKET/REGION\" main_heading_color=\"#6e368d\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:48px;\"][/ultimate_heading][vc_empty_space height=\"300px\" css=\".vc_custom_1662363666143{background-image: url(https://farmchemie.yasithawd.com/wp-content/uploads/2022/09/marketbgimg1-sp.png?id=2527) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\"][vc_row_inner][vc_column_inner el_class=\"cborder1\" width=\"1/3\" css=\".vc_custom_1662367183321{background-color: #6e368d !important;}\"][bsf-info-box icon_type=\"custom\" icon_img=\"id^2537|url^https://farmchemie.yasithawd.com/wp-content/uploads/2022/09/earthicon-1.png|caption^null|alt^null|title^earthicon-1|description^null\" img_width=\"100\" title=\"Global\" pos=\"right\" title_font_style=\"font-weight:bold;\" title_font_size=\"desktop:48px;\" title_font_color=\"#ffffff\" desc_font_size=\"desktop:24px;\" desc_font_color=\"#ffffff\"]International Market[/bsf-info-box][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\" css=\".vc_custom_1662367741225{background-color: #089548 !important;}\"][bsf-info-box icon_type=\"custom\" icon_img=\"id^2536|url^https://farmchemie.yasithawd.com/wp-content/uploads/2022/09/srilankaicon-1.png|caption^null|alt^null|title^srilankaicon-1|description^null\" img_width=\"100\" title=\"Local\" pos=\"left\" title_font_style=\"font-weight:bold;\" title_font_size=\"desktop:48px;\" title_font_color=\"#ffffff\" desc_font_size=\"desktop:24px;\" desc_font_color=\"#ffffff\"]Sri Lankan Market[/bsf-info-box][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner width=\"1/3\"][vc_column_text]FARMCHEMIE is a world-renowned manufacturer of feed additives and feed supplements. We offer our FarmStar and PetStar branded products to the international markets We provide toll-manufacturing services to globally recognized marketing companies for the Asian &amp; African markets. Our manufacturing plant is equipped with fully automated production lines from Bühler.[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text]FARMCHEMIE offers an island wide distribution, technical consultation and poultry vaccination services of high-quality animal healthcare products from world-renowned suppliers.\r\nWe offer both locally manufactured and imported products to cater the poultry, dairy, swine, pet-care and aqua markets.[/vc_column_text][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row]','Home2','','inherit','closed','closed','','2525-revision-v1','','','2022-09-05 08:57:30','2022-09-05 08:57:30','',2525,'https://farmchemie.yasithawd.com/?p=2539',0,'revision','',0),(2541,1,'2022-09-05 09:00:24','2022-09-05 09:00:24','[vc_row full_width=\"stretch_row_content\" bg_type=\"image\" parallax_style=\"vcpb-default\" bg_image_new=\"id^2524|url^https://farmchemie.yasithawd.com/wp-content/uploads/2022/09/marketbgimg1.png|caption^null|alt^null|title^marketbgimg1|description^null\" bg_image_repeat=\"no-repeat\"][vc_column][ultimate_heading main_heading=\"SELECT YOUR MARKET/REGION\" main_heading_color=\"#6e368d\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:48px;\"][/ultimate_heading][vc_empty_space height=\"300px\" css=\".vc_custom_1662363666143{background-image: url(https://farmchemie.yasithawd.com/wp-content/uploads/2022/09/marketbgimg1-sp.png?id=2527) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\"][vc_row_inner][vc_column_inner el_class=\"cborder1\" width=\"1/3\" css=\".vc_custom_1662367183321{background-color: #6e368d !important;}\"][bsf-info-box icon_type=\"custom\" icon_img=\"id^2537|url^https://farmchemie.yasithawd.com/wp-content/uploads/2022/09/earthicon-1.png|caption^null|alt^null|title^earthicon-1|description^null\" img_width=\"100\" title=\"Global\" pos=\"right\" title_font_style=\"font-weight:bold;\" title_font_size=\"desktop:48px;\" title_font_color=\"#ffffff\" desc_font_size=\"desktop:24px;\" desc_font_color=\"#ffffff\"]International Market[/bsf-info-box][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\" css=\".vc_custom_1662367741225{background-color: #089548 !important;}\"][bsf-info-box icon_type=\"custom\" icon_img=\"id^2536|url^https://farmchemie.yasithawd.com/wp-content/uploads/2022/09/srilankaicon-1.png|caption^null|alt^null|title^srilankaicon-1|description^null\" img_width=\"100\" title=\"Local\" pos=\"left\" title_font_style=\"font-weight:bold;\" title_font_size=\"desktop:48px;\" title_font_color=\"#ffffff\" desc_font_size=\"desktop:24px;\" desc_font_color=\"#ffffff\"]Sri Lankan Market[/bsf-info-box][/vc_column_inner][/vc_row_inner][vc_row_inner css=\".vc_custom_1662368347025{margin-top: 20px !important;margin-right: 50px !important;margin-left: 50px !important;}\"][vc_column_inner width=\"1/2\"][vc_column_text]FARMCHEMIE is a world-renowned manufacturer of feed additives and feed supplements. We offer our FarmStar and PetStar branded products to the international markets We provide toll-manufacturing services to globally recognized marketing companies for the Asian &amp; African markets. Our manufacturing plant is equipped with fully automated production lines from Bühler.[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_column_text]FARMCHEMIE offers an island wide distribution, technical consultation and poultry vaccination services of high-quality animal healthcare products from world-renowned suppliers.\r\nWe offer both locally manufactured and imported products to cater the poultry, dairy, swine, pet-care and aqua markets.[/vc_column_text][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row]','Home2','','inherit','closed','closed','','2525-revision-v1','','','2022-09-05 09:00:24','2022-09-05 09:00:24','',2525,'https://farmchemie.yasithawd.com/?p=2541',0,'revision','',0),(2540,1,'2022-09-05 08:59:12','2022-09-05 08:59:12','[vc_row full_width=\"stretch_row_content\" bg_type=\"image\" parallax_style=\"vcpb-default\" bg_image_new=\"id^2524|url^https://farmchemie.yasithawd.com/wp-content/uploads/2022/09/marketbgimg1.png|caption^null|alt^null|title^marketbgimg1|description^null\" bg_image_repeat=\"no-repeat\"][vc_column][ultimate_heading main_heading=\"SELECT YOUR MARKET/REGION\" main_heading_color=\"#6e368d\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:48px;\"][/ultimate_heading][vc_empty_space height=\"300px\" css=\".vc_custom_1662363666143{background-image: url(https://farmchemie.yasithawd.com/wp-content/uploads/2022/09/marketbgimg1-sp.png?id=2527) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\"][vc_row_inner][vc_column_inner el_class=\"cborder1\" width=\"1/3\" css=\".vc_custom_1662367183321{background-color: #6e368d !important;}\"][bsf-info-box icon_type=\"custom\" icon_img=\"id^2537|url^https://farmchemie.yasithawd.com/wp-content/uploads/2022/09/earthicon-1.png|caption^null|alt^null|title^earthicon-1|description^null\" img_width=\"100\" title=\"Global\" pos=\"right\" title_font_style=\"font-weight:bold;\" title_font_size=\"desktop:48px;\" title_font_color=\"#ffffff\" desc_font_size=\"desktop:24px;\" desc_font_color=\"#ffffff\"]International Market[/bsf-info-box][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\" css=\".vc_custom_1662367741225{background-color: #089548 !important;}\"][bsf-info-box icon_type=\"custom\" icon_img=\"id^2536|url^https://farmchemie.yasithawd.com/wp-content/uploads/2022/09/srilankaicon-1.png|caption^null|alt^null|title^srilankaicon-1|description^null\" img_width=\"100\" title=\"Local\" pos=\"left\" title_font_style=\"font-weight:bold;\" title_font_size=\"desktop:48px;\" title_font_color=\"#ffffff\" desc_font_size=\"desktop:24px;\" desc_font_color=\"#ffffff\"]Sri Lankan Market[/bsf-info-box][/vc_column_inner][/vc_row_inner][vc_row_inner css=\".vc_custom_1662368347025{margin-top: 20px !important;margin-right: 50px !important;margin-left: 50px !important;}\"][vc_column_inner width=\"1/3\"][vc_column_text]FARMCHEMIE is a world-renowned manufacturer of feed additives and feed supplements. We offer our FarmStar and PetStar branded products to the international markets We provide toll-manufacturing services to globally recognized marketing companies for the Asian &amp; African markets. Our manufacturing plant is equipped with fully automated production lines from Bühler.[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_column_text]FARMCHEMIE offers an island wide distribution, technical consultation and poultry vaccination services of high-quality animal healthcare products from world-renowned suppliers.\r\nWe offer both locally manufactured and imported products to cater the poultry, dairy, swine, pet-care and aqua markets.[/vc_column_text][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row]','Home2','','inherit','closed','closed','','2525-revision-v1','','','2022-09-05 08:59:12','2022-09-05 08:59:12','',2525,'https://farmchemie.yasithawd.com/?p=2540',0,'revision','',0),(2542,1,'2022-09-05 09:01:45','2022-09-05 09:01:45','[vc_row full_width=\"stretch_row_content\" bg_type=\"image\" parallax_style=\"vcpb-default\" bg_image_new=\"id^2524|url^https://farmchemie.yasithawd.com/wp-content/uploads/2022/09/marketbgimg1.png|caption^null|alt^null|title^marketbgimg1|description^null\" bg_image_repeat=\"no-repeat\"][vc_column][ultimate_heading main_heading=\"SELECT YOUR MARKET/REGION\" main_heading_color=\"#6e368d\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:48px;\"][/ultimate_heading][vc_empty_space height=\"300px\" css=\".vc_custom_1662363666143{background-image: url(https://farmchemie.yasithawd.com/wp-content/uploads/2022/09/marketbgimg1-sp.png?id=2527) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\"][vc_row_inner][vc_column_inner el_class=\"cborder1\" width=\"1/3\" css=\".vc_custom_1662367183321{background-color: #6e368d !important;}\"][bsf-info-box icon_type=\"custom\" icon_img=\"id^2537|url^https://farmchemie.yasithawd.com/wp-content/uploads/2022/09/earthicon-1.png|caption^null|alt^null|title^earthicon-1|description^null\" img_width=\"100\" title=\"Global\" pos=\"right\" title_font_style=\"font-weight:bold;\" title_font_size=\"desktop:48px;\" title_font_color=\"#ffffff\" desc_font_size=\"desktop:24px;\" desc_font_color=\"#ffffff\"]International Market[/bsf-info-box][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\" css=\".vc_custom_1662367741225{background-color: #089548 !important;}\"][bsf-info-box icon_type=\"custom\" icon_img=\"id^2536|url^https://farmchemie.yasithawd.com/wp-content/uploads/2022/09/srilankaicon-1.png|caption^null|alt^null|title^srilankaicon-1|description^null\" img_width=\"100\" title=\"Local\" pos=\"left\" title_font_style=\"font-weight:bold;\" title_font_size=\"desktop:48px;\" title_font_color=\"#ffffff\" desc_font_size=\"desktop:24px;\" desc_font_color=\"#ffffff\"]Sri Lankan Market[/bsf-info-box][/vc_column_inner][/vc_row_inner][vc_row_inner css=\".vc_custom_1662368347025{margin-top: 20px !important;margin-right: 50px !important;margin-left: 50px !important;}\"][vc_column_inner width=\"5/12\"][vc_column_text]FARMCHEMIE is a world-renowned manufacturer of feed additives and feed supplements. We offer our FarmStar and PetStar branded products to the international markets We provide toll-manufacturing services to globally recognized marketing companies for the Asian &amp; African markets. Our manufacturing plant is equipped with fully automated production lines from Bühler.[/vc_column_text][/vc_column_inner][vc_column_inner width=\"2/12\"][/vc_column_inner][vc_column_inner width=\"5/12\"][vc_column_text]FARMCHEMIE offers an island wide distribution, technical consultation and poultry vaccination services of high-quality animal healthcare products from world-renowned suppliers.\r\nWe offer both locally manufactured and imported products to cater the poultry, dairy, swine, pet-care and aqua markets.[/vc_column_text][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row]','Home2','','inherit','closed','closed','','2525-revision-v1','','','2022-09-05 09:01:45','2022-09-05 09:01:45','',2525,'https://farmchemie.yasithawd.com/?p=2542',0,'revision','',0),(2543,1,'2022-09-05 09:03:59','2022-09-05 09:03:59','[vc_row full_width=\"stretch_row_content\" bg_type=\"image\" parallax_style=\"vcpb-default\" bg_image_new=\"id^2524|url^https://farmchemie.yasithawd.com/wp-content/uploads/2022/09/marketbgimg1.png|caption^null|alt^null|title^marketbgimg1|description^null\" bg_image_repeat=\"no-repeat\"][vc_column][ultimate_heading main_heading=\"SELECT YOUR MARKET/REGION\" main_heading_color=\"#6e368d\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:48px;\"][/ultimate_heading][vc_empty_space height=\"300px\" css=\".vc_custom_1662363666143{background-image: url(https://farmchemie.yasithawd.com/wp-content/uploads/2022/09/marketbgimg1-sp.png?id=2527) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\"][vc_row_inner][vc_column_inner el_class=\"cborder1\" width=\"1/3\" css=\".vc_custom_1662367183321{background-color: #6e368d !important;}\"][bsf-info-box icon_type=\"custom\" icon_img=\"id^2537|url^https://farmchemie.yasithawd.com/wp-content/uploads/2022/09/earthicon-1.png|caption^null|alt^null|title^earthicon-1|description^null\" img_width=\"100\" title=\"Global\" pos=\"right\" title_font_style=\"font-weight:bold;\" title_font_size=\"desktop:48px;\" title_font_color=\"#ffffff\" desc_font_size=\"desktop:24px;\" desc_font_color=\"#ffffff\"]International Market[/bsf-info-box][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\" css=\".vc_custom_1662367741225{background-color: #089548 !important;}\"][bsf-info-box icon_type=\"custom\" icon_img=\"id^2536|url^https://farmchemie.yasithawd.com/wp-content/uploads/2022/09/srilankaicon-1.png|caption^null|alt^null|title^srilankaicon-1|description^null\" img_width=\"100\" title=\"Local\" pos=\"left\" title_font_style=\"font-weight:bold;\" title_font_size=\"desktop:48px;\" title_font_color=\"#ffffff\" desc_font_size=\"desktop:24px;\" desc_font_color=\"#ffffff\"]Sri Lankan Market[/bsf-info-box][/vc_column_inner][/vc_row_inner][vc_row_inner css=\".vc_custom_1662368347025{margin-top: 20px !important;margin-right: 50px !important;margin-left: 50px !important;}\"][vc_column_inner width=\"5/12\"][ultimate_fancytext strings_textspeed=\"35\" strings_backspeed=\"0\" strings_font_size=\"desktop:14px;\" fancytext_color=\"#8c8c8c\" fancytext_strings=\"FARMCHEMIE is a world-renowned manufacturer of feed additives and feed supplements. We offer our FarmStar and PetStar branded products to the international markets We provide toll-manufacturing services to globally recognized marketing companies for the Asian &amp; African markets. Our manufacturing plant is equipped with fully automated production lines from Bühler.\"][/vc_column_inner][vc_column_inner width=\"2/12\"][/vc_column_inner][vc_column_inner width=\"5/12\"][vc_column_text]FARMCHEMIE offers an island wide distribution, technical consultation and poultry vaccination services of high-quality animal healthcare products from world-renowned suppliers.\r\nWe offer both locally manufactured and imported products to cater the poultry, dairy, swine, pet-care and aqua markets.[/vc_column_text][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row]','Home2','','inherit','closed','closed','','2525-revision-v1','','','2022-09-05 09:03:59','2022-09-05 09:03:59','',2525,'https://farmchemie.yasithawd.com/?p=2543',0,'revision','',0),(2544,1,'2022-09-05 09:05:26','2022-09-05 09:05:26','[vc_row full_width=\"stretch_row_content\" bg_type=\"image\" parallax_style=\"vcpb-default\" bg_image_new=\"id^2524|url^https://farmchemie.yasithawd.com/wp-content/uploads/2022/09/marketbgimg1.png|caption^null|alt^null|title^marketbgimg1|description^null\" bg_image_repeat=\"no-repeat\"][vc_column][ultimate_heading main_heading=\"SELECT YOUR MARKET/REGION\" main_heading_color=\"#6e368d\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:48px;\"][/ultimate_heading][vc_empty_space height=\"300px\" css=\".vc_custom_1662363666143{background-image: url(https://farmchemie.yasithawd.com/wp-content/uploads/2022/09/marketbgimg1-sp.png?id=2527) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\"][vc_row_inner][vc_column_inner el_class=\"cborder1\" width=\"1/3\" css=\".vc_custom_1662367183321{background-color: #6e368d !important;}\"][bsf-info-box icon_type=\"custom\" icon_img=\"id^2537|url^https://farmchemie.yasithawd.com/wp-content/uploads/2022/09/earthicon-1.png|caption^null|alt^null|title^earthicon-1|description^null\" img_width=\"100\" title=\"Global\" pos=\"right\" title_font_style=\"font-weight:bold;\" title_font_size=\"desktop:48px;\" title_font_color=\"#ffffff\" desc_font_size=\"desktop:24px;\" desc_font_color=\"#ffffff\"]International Market[/bsf-info-box][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\" css=\".vc_custom_1662367741225{background-color: #089548 !important;}\"][bsf-info-box icon_type=\"custom\" icon_img=\"id^2536|url^https://farmchemie.yasithawd.com/wp-content/uploads/2022/09/srilankaicon-1.png|caption^null|alt^null|title^srilankaicon-1|description^null\" img_width=\"100\" title=\"Local\" pos=\"left\" title_font_style=\"font-weight:bold;\" title_font_size=\"desktop:48px;\" title_font_color=\"#ffffff\" desc_font_size=\"desktop:24px;\" desc_font_color=\"#ffffff\"]Sri Lankan Market[/bsf-info-box][/vc_column_inner][/vc_row_inner][vc_row_inner css=\".vc_custom_1662368347025{margin-top: 20px !important;margin-right: 50px !important;margin-left: 50px !important;}\"][vc_column_inner width=\"5/12\"][ultimate_fancytext strings_textspeed=\"5\" strings_backspeed=\"0\" strings_startdelay=\"100\" typewriter_loop=\"off\" strings_font_size=\"desktop:28px;\" fancytext_color=\"#8c8c8c\" fancytext_strings=\"FARMCHEMIE is a world-renowned manufacturer of feed additives and feed supplements. We offer our FarmStar and PetStar branded products to the international markets We provide toll-manufacturing services to globally recognized marketing companies for the Asian &amp; African markets. Our manufacturing plant is equipped with fully automated production lines from Bühler.\"][/vc_column_inner][vc_column_inner width=\"2/12\"][/vc_column_inner][vc_column_inner width=\"5/12\"][vc_column_text]FARMCHEMIE offers an island wide distribution, technical consultation and poultry vaccination services of high-quality animal healthcare products from world-renowned suppliers.\r\nWe offer both locally manufactured and imported products to cater the poultry, dairy, swine, pet-care and aqua markets.[/vc_column_text][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row]','Home2','','inherit','closed','closed','','2525-revision-v1','','','2022-09-05 09:05:26','2022-09-05 09:05:26','',2525,'https://farmchemie.yasithawd.com/?p=2544',0,'revision','',0),(2550,1,'2022-09-05 09:19:27','2022-09-05 09:19:27','[vc_row full_width=\"stretch_row_content\" bg_type=\"image\" parallax_style=\"vcpb-default\" bg_image_new=\"id^2524|url^https://farmchemie.yasithawd.com/wp-content/uploads/2022/09/marketbgimg1.png|caption^null|alt^null|title^marketbgimg1|description^null\" bg_image_repeat=\"no-repeat\"][vc_column][ultimate_heading main_heading=\"SELECT YOUR MARKET/REGION\" main_heading_color=\"#6e368d\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:48px;\"][/ultimate_heading][vc_empty_space height=\"300px\" css=\".vc_custom_1662363666143{background-image: url(https://farmchemie.yasithawd.com/wp-content/uploads/2022/09/marketbgimg1-sp.png?id=2527) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\"][vc_row_inner][vc_column_inner el_class=\"cborder1\" width=\"1/3\" css=\".vc_custom_1662367183321{background-color: #6e368d !important;}\"][bsf-info-box icon_type=\"custom\" icon_img=\"id^2537|url^https://farmchemie.yasithawd.com/wp-content/uploads/2022/09/earthicon-1.png|caption^null|alt^null|title^earthicon-1|description^null\" img_width=\"100\" title=\"Global\" pos=\"right\" title_font_style=\"font-weight:bold;\" title_font_size=\"desktop:48px;\" title_font_color=\"#ffffff\" desc_font_size=\"desktop:24px;\" desc_font_color=\"#ffffff\"]International Market[/bsf-info-box][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\" css=\".vc_custom_1662367741225{background-color: #089548 !important;}\"][bsf-info-box icon_type=\"custom\" icon_img=\"id^2536|url^https://farmchemie.yasithawd.com/wp-content/uploads/2022/09/srilankaicon-1.png|caption^null|alt^null|title^srilankaicon-1|description^null\" img_width=\"100\" title=\"Local\" pos=\"left\" title_font_style=\"font-weight:bold;\" title_font_size=\"desktop:48px;\" title_font_color=\"#ffffff\" desc_font_size=\"desktop:24px;\" desc_font_color=\"#ffffff\"]Sri Lankan Market[/bsf-info-box][/vc_column_inner][/vc_row_inner][vc_row_inner css=\".vc_custom_1662368347025{margin-top: 20px !important;margin-right: 50px !important;margin-left: 50px !important;}\"][vc_column_inner width=\"5/12\"][vc_column_text]FARMCHEMIE is a world-renowned manufacturer of feed additives and feed supplements. We offer our FarmStar and PetStar branded products to the international markets We provide toll-manufacturing services to globally recognized marketing companies for the Asian &amp; African markets. Our manufacturing plant is equipped with fully automated production lines from Bühler.[/vc_column_text][vc_btn title=\"READ MORE\" style=\"custom\" custom_background=\"rgba(237,237,237,0)\" custom_text=\"#6e368d\" size=\"lg\" align=\"right\" i_align=\"right\" i_icon_fontawesome=\"fas fa-align-right\" add_icon=\"true\"][/vc_column_inner][vc_column_inner width=\"2/12\"][/vc_column_inner][vc_column_inner width=\"5/12\"][vc_column_text]FARMCHEMIE offers an island wide distribution, technical consultation and poultry vaccination services of high-quality animal healthcare products from world-renowned suppliers.\r\nWe offer both locally manufactured and imported products to cater the poultry, dairy, swine, pet-care and aqua markets.[/vc_column_text][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row]','Home2','','inherit','closed','closed','','2525-revision-v1','','','2022-09-05 09:19:27','2022-09-05 09:19:27','',2525,'https://farmchemie.yasithawd.com/?p=2550',0,'revision','',0),(2549,1,'2022-09-05 09:14:25','2022-09-05 09:14:25','[vc_row full_width=\"stretch_row_content\" bg_type=\"image\" parallax_style=\"vcpb-default\" bg_image_new=\"id^2524|url^https://farmchemie.yasithawd.com/wp-content/uploads/2022/09/marketbgimg1.png|caption^null|alt^null|title^marketbgimg1|description^null\" bg_image_repeat=\"no-repeat\"][vc_column][ultimate_heading main_heading=\"SELECT YOUR MARKET/REGION\" main_heading_color=\"#6e368d\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:48px;\"][/ultimate_heading][vc_empty_space height=\"300px\" css=\".vc_custom_1662363666143{background-image: url(https://farmchemie.yasithawd.com/wp-content/uploads/2022/09/marketbgimg1-sp.png?id=2527) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\"][vc_row_inner][vc_column_inner el_class=\"cborder1\" width=\"1/3\" css=\".vc_custom_1662367183321{background-color: #6e368d !important;}\"][bsf-info-box icon_type=\"custom\" icon_img=\"id^2537|url^https://farmchemie.yasithawd.com/wp-content/uploads/2022/09/earthicon-1.png|caption^null|alt^null|title^earthicon-1|description^null\" img_width=\"100\" title=\"Global\" pos=\"right\" title_font_style=\"font-weight:bold;\" title_font_size=\"desktop:48px;\" title_font_color=\"#ffffff\" desc_font_size=\"desktop:24px;\" desc_font_color=\"#ffffff\"]International Market[/bsf-info-box][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\" css=\".vc_custom_1662367741225{background-color: #089548 !important;}\"][bsf-info-box icon_type=\"custom\" icon_img=\"id^2536|url^https://farmchemie.yasithawd.com/wp-content/uploads/2022/09/srilankaicon-1.png|caption^null|alt^null|title^srilankaicon-1|description^null\" img_width=\"100\" title=\"Local\" pos=\"left\" title_font_style=\"font-weight:bold;\" title_font_size=\"desktop:48px;\" title_font_color=\"#ffffff\" desc_font_size=\"desktop:24px;\" desc_font_color=\"#ffffff\"]Sri Lankan Market[/bsf-info-box][/vc_column_inner][/vc_row_inner][vc_row_inner css=\".vc_custom_1662368347025{margin-top: 20px !important;margin-right: 50px !important;margin-left: 50px !important;}\"][vc_column_inner width=\"5/12\"][vc_column_text]FARMCHEMIE is a world-renowned manufacturer of feed additives and feed supplements. We offer our FarmStar and PetStar branded products to the international markets We provide toll-manufacturing services to globally recognized marketing companies for the Asian &amp; African markets. Our manufacturing plant is equipped with fully automated production lines from Bühler.[/vc_column_text][/vc_column_inner][vc_column_inner width=\"2/12\"][/vc_column_inner][vc_column_inner width=\"5/12\"][vc_column_text]FARMCHEMIE offers an island wide distribution, technical consultation and poultry vaccination services of high-quality animal healthcare products from world-renowned suppliers.\r\nWe offer both locally manufactured and imported products to cater the poultry, dairy, swine, pet-care and aqua markets.[/vc_column_text][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row]','Home2','','inherit','closed','closed','','2525-revision-v1','','','2022-09-05 09:14:25','2022-09-05 09:14:25','',2525,'https://farmchemie.yasithawd.com/?p=2549',0,'revision','',0),(2548,1,'2022-09-05 09:13:11','2022-09-05 09:13:11','[vc_row full_width=\"stretch_row_content\" bg_type=\"image\" parallax_style=\"vcpb-default\" bg_image_new=\"id^2524|url^https://farmchemie.yasithawd.com/wp-content/uploads/2022/09/marketbgimg1.png|caption^null|alt^null|title^marketbgimg1|description^null\" bg_image_repeat=\"no-repeat\"][vc_column][ultimate_heading main_heading=\"SELECT YOUR MARKET/REGION\" main_heading_color=\"#6e368d\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:48px;\"][/ultimate_heading][vc_empty_space height=\"300px\" css=\".vc_custom_1662363666143{background-image: url(https://farmchemie.yasithawd.com/wp-content/uploads/2022/09/marketbgimg1-sp.png?id=2527) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\"][vc_row_inner][vc_column_inner el_class=\"cborder1\" width=\"1/3\" css=\".vc_custom_1662367183321{background-color: #6e368d !important;}\"][bsf-info-box icon_type=\"custom\" icon_img=\"id^2537|url^https://farmchemie.yasithawd.com/wp-content/uploads/2022/09/earthicon-1.png|caption^null|alt^null|title^earthicon-1|description^null\" img_width=\"100\" title=\"Global\" pos=\"right\" title_font_style=\"font-weight:bold;\" title_font_size=\"desktop:48px;\" title_font_color=\"#ffffff\" desc_font_size=\"desktop:24px;\" desc_font_color=\"#ffffff\"]International Market[/bsf-info-box][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\" css=\".vc_custom_1662367741225{background-color: #089548 !important;}\"][bsf-info-box icon_type=\"custom\" icon_img=\"id^2536|url^https://farmchemie.yasithawd.com/wp-content/uploads/2022/09/srilankaicon-1.png|caption^null|alt^null|title^srilankaicon-1|description^null\" img_width=\"100\" title=\"Local\" pos=\"left\" title_font_style=\"font-weight:bold;\" title_font_size=\"desktop:48px;\" title_font_color=\"#ffffff\" desc_font_size=\"desktop:24px;\" desc_font_color=\"#ffffff\"]Sri Lankan Market[/bsf-info-box][/vc_column_inner][/vc_row_inner][vc_row_inner css=\".vc_custom_1662368347025{margin-top: 20px !important;margin-right: 50px !important;margin-left: 50px !important;}\"][vc_column_inner width=\"5/12\"][vc_column_text]FARMCHEMIE is a world-renowned manufacturer of feed additives and feed supplements. We offer our FarmStar and PetStar branded products to the international markets We provide toll-manufacturing services to globally recognized marketing companies for the Asian &amp; African markets. Our manufacturing plant is equipped with fully automated production lines from Bühler.[/vc_column_text][/vc_column_inner][vc_column_inner width=\"2/12\"][/vc_column_inner][vc_column_inner width=\"5/12\"][ultimate_fancytext fancytext_align=\"left\" strings_textspeed=\"0\" strings_backspeed=\"0\" strings_startdelay=\"100\" strings_backdelay=\"0\" typewriter_loop=\"off\" typewriter_cursor=\"off\" strings_font_size=\"desktop:28px;\" fancytext_color=\"#8c8c8c\" fancytext_strings=\"FARMCHEMIE offers an island wide distribution, technical consultation and poultry vaccination services of high-quality animal healthcare products from world-renowned suppliers.\r\nWe offer both locally manufactured and imported products to cater the poultry, dairy, swine, pet-care and aqua markets.\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row]','Home2','','inherit','closed','closed','','2525-revision-v1','','','2022-09-05 09:13:11','2022-09-05 09:13:11','',2525,'https://farmchemie.yasithawd.com/?p=2548',0,'revision','',0),(2547,1,'2022-09-05 09:10:04','2022-09-05 09:10:04','[vc_row full_width=\"stretch_row_content\" bg_type=\"image\" parallax_style=\"vcpb-default\" bg_image_new=\"id^2524|url^https://farmchemie.yasithawd.com/wp-content/uploads/2022/09/marketbgimg1.png|caption^null|alt^null|title^marketbgimg1|description^null\" bg_image_repeat=\"no-repeat\"][vc_column][ultimate_heading main_heading=\"SELECT YOUR MARKET/REGION\" main_heading_color=\"#6e368d\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:48px;\"][/ultimate_heading][vc_empty_space height=\"300px\" css=\".vc_custom_1662363666143{background-image: url(https://farmchemie.yasithawd.com/wp-content/uploads/2022/09/marketbgimg1-sp.png?id=2527) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\"][vc_row_inner][vc_column_inner el_class=\"cborder1\" width=\"1/3\" css=\".vc_custom_1662367183321{background-color: #6e368d !important;}\"][bsf-info-box icon_type=\"custom\" icon_img=\"id^2537|url^https://farmchemie.yasithawd.com/wp-content/uploads/2022/09/earthicon-1.png|caption^null|alt^null|title^earthicon-1|description^null\" img_width=\"100\" title=\"Global\" pos=\"right\" title_font_style=\"font-weight:bold;\" title_font_size=\"desktop:48px;\" title_font_color=\"#ffffff\" desc_font_size=\"desktop:24px;\" desc_font_color=\"#ffffff\"]International Market[/bsf-info-box][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\" css=\".vc_custom_1662367741225{background-color: #089548 !important;}\"][bsf-info-box icon_type=\"custom\" icon_img=\"id^2536|url^https://farmchemie.yasithawd.com/wp-content/uploads/2022/09/srilankaicon-1.png|caption^null|alt^null|title^srilankaicon-1|description^null\" img_width=\"100\" title=\"Local\" pos=\"left\" title_font_style=\"font-weight:bold;\" title_font_size=\"desktop:48px;\" title_font_color=\"#ffffff\" desc_font_size=\"desktop:24px;\" desc_font_color=\"#ffffff\"]Sri Lankan Market[/bsf-info-box][/vc_column_inner][/vc_row_inner][vc_row_inner css=\".vc_custom_1662368347025{margin-top: 20px !important;margin-right: 50px !important;margin-left: 50px !important;}\"][vc_column_inner width=\"5/12\"][vc_cta h2=\"\" shape=\"square\" style=\"custom\" custom_background=\"rgba(0,0,0,0.01)\"]FARMCHEMIE is a world-renowned manufacturer of feed additives and feed supplements. We offer our FarmStar and PetStar branded products to the international markets We provide toll-manufacturing services to globally recognized marketing companies for the Asian &amp; African markets. Our manufacturing plant is equipped with fully automated production lines from Bühler.[/vc_cta][/vc_column_inner][vc_column_inner width=\"2/12\"][/vc_column_inner][vc_column_inner width=\"5/12\"][ultimate_fancytext fancytext_align=\"left\" strings_textspeed=\"0\" strings_backspeed=\"0\" strings_startdelay=\"100\" strings_backdelay=\"0\" typewriter_loop=\"off\" typewriter_cursor=\"off\" strings_font_size=\"desktop:28px;\" fancytext_color=\"#8c8c8c\" fancytext_strings=\"FARMCHEMIE offers an island wide distribution, technical consultation and poultry vaccination services of high-quality animal healthcare products from world-renowned suppliers.\r\nWe offer both locally manufactured and imported products to cater the poultry, dairy, swine, pet-care and aqua markets.\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row]','Home2','','inherit','closed','closed','','2525-revision-v1','','','2022-09-05 09:10:04','2022-09-05 09:10:04','',2525,'https://farmchemie.yasithawd.com/?p=2547',0,'revision','',0),(2546,1,'2022-09-05 09:08:09','2022-09-05 09:08:09','[vc_row full_width=\"stretch_row_content\" bg_type=\"image\" parallax_style=\"vcpb-default\" bg_image_new=\"id^2524|url^https://farmchemie.yasithawd.com/wp-content/uploads/2022/09/marketbgimg1.png|caption^null|alt^null|title^marketbgimg1|description^null\" bg_image_repeat=\"no-repeat\"][vc_column][ultimate_heading main_heading=\"SELECT YOUR MARKET/REGION\" main_heading_color=\"#6e368d\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:48px;\"][/ultimate_heading][vc_empty_space height=\"300px\" css=\".vc_custom_1662363666143{background-image: url(https://farmchemie.yasithawd.com/wp-content/uploads/2022/09/marketbgimg1-sp.png?id=2527) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\"][vc_row_inner][vc_column_inner el_class=\"cborder1\" width=\"1/3\" css=\".vc_custom_1662367183321{background-color: #6e368d !important;}\"][bsf-info-box icon_type=\"custom\" icon_img=\"id^2537|url^https://farmchemie.yasithawd.com/wp-content/uploads/2022/09/earthicon-1.png|caption^null|alt^null|title^earthicon-1|description^null\" img_width=\"100\" title=\"Global\" pos=\"right\" title_font_style=\"font-weight:bold;\" title_font_size=\"desktop:48px;\" title_font_color=\"#ffffff\" desc_font_size=\"desktop:24px;\" desc_font_color=\"#ffffff\"]International Market[/bsf-info-box][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\" css=\".vc_custom_1662367741225{background-color: #089548 !important;}\"][bsf-info-box icon_type=\"custom\" icon_img=\"id^2536|url^https://farmchemie.yasithawd.com/wp-content/uploads/2022/09/srilankaicon-1.png|caption^null|alt^null|title^srilankaicon-1|description^null\" img_width=\"100\" title=\"Local\" pos=\"left\" title_font_style=\"font-weight:bold;\" title_font_size=\"desktop:48px;\" title_font_color=\"#ffffff\" desc_font_size=\"desktop:24px;\" desc_font_color=\"#ffffff\"]Sri Lankan Market[/bsf-info-box][/vc_column_inner][/vc_row_inner][vc_row_inner css=\".vc_custom_1662368347025{margin-top: 20px !important;margin-right: 50px !important;margin-left: 50px !important;}\"][vc_column_inner width=\"5/12\"][ultimate_fancytext fancytext_effect=\"ticker\" fancytext_align=\"left\" strings_tickerspeed=\"200\" ticker_show_items=\"1\" strings_font_size=\"desktop:28px;\" fancytext_color=\"#8c8c8c\" fancytext_strings=\"FARMCHEMIE is a world-renowned manufacturer of feed additives and feed supplements. We offer our FarmStar and PetStar branded products to the international markets We provide toll-manufacturing services to globally recognized marketing companies for the Asian &amp; African markets. Our manufacturing plant is equipped with fully automated production lines from Bühler.\"][/vc_column_inner][vc_column_inner width=\"2/12\"][/vc_column_inner][vc_column_inner width=\"5/12\"][ultimate_fancytext fancytext_align=\"left\" strings_textspeed=\"0\" strings_backspeed=\"0\" strings_startdelay=\"100\" strings_backdelay=\"0\" typewriter_loop=\"off\" typewriter_cursor=\"off\" strings_font_size=\"desktop:28px;\" fancytext_color=\"#8c8c8c\" fancytext_strings=\"FARMCHEMIE offers an island wide distribution, technical consultation and poultry vaccination services of high-quality animal healthcare products from world-renowned suppliers.\r\nWe offer both locally manufactured and imported products to cater the poultry, dairy, swine, pet-care and aqua markets.\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row]','Home2','','inherit','closed','closed','','2525-revision-v1','','','2022-09-05 09:08:09','2022-09-05 09:08:09','',2525,'https://farmchemie.yasithawd.com/?p=2546',0,'revision','',0),(2545,1,'2022-09-05 09:07:04','2022-09-05 09:07:04','[vc_row full_width=\"stretch_row_content\" bg_type=\"image\" parallax_style=\"vcpb-default\" bg_image_new=\"id^2524|url^https://farmchemie.yasithawd.com/wp-content/uploads/2022/09/marketbgimg1.png|caption^null|alt^null|title^marketbgimg1|description^null\" bg_image_repeat=\"no-repeat\"][vc_column][ultimate_heading main_heading=\"SELECT YOUR MARKET/REGION\" main_heading_color=\"#6e368d\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:48px;\"][/ultimate_heading][vc_empty_space height=\"300px\" css=\".vc_custom_1662363666143{background-image: url(https://farmchemie.yasithawd.com/wp-content/uploads/2022/09/marketbgimg1-sp.png?id=2527) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\"][vc_row_inner][vc_column_inner el_class=\"cborder1\" width=\"1/3\" css=\".vc_custom_1662367183321{background-color: #6e368d !important;}\"][bsf-info-box icon_type=\"custom\" icon_img=\"id^2537|url^https://farmchemie.yasithawd.com/wp-content/uploads/2022/09/earthicon-1.png|caption^null|alt^null|title^earthicon-1|description^null\" img_width=\"100\" title=\"Global\" pos=\"right\" title_font_style=\"font-weight:bold;\" title_font_size=\"desktop:48px;\" title_font_color=\"#ffffff\" desc_font_size=\"desktop:24px;\" desc_font_color=\"#ffffff\"]International Market[/bsf-info-box][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\" css=\".vc_custom_1662367741225{background-color: #089548 !important;}\"][bsf-info-box icon_type=\"custom\" icon_img=\"id^2536|url^https://farmchemie.yasithawd.com/wp-content/uploads/2022/09/srilankaicon-1.png|caption^null|alt^null|title^srilankaicon-1|description^null\" img_width=\"100\" title=\"Local\" pos=\"left\" title_font_style=\"font-weight:bold;\" title_font_size=\"desktop:48px;\" title_font_color=\"#ffffff\" desc_font_size=\"desktop:24px;\" desc_font_color=\"#ffffff\"]Sri Lankan Market[/bsf-info-box][/vc_column_inner][/vc_row_inner][vc_row_inner css=\".vc_custom_1662368347025{margin-top: 20px !important;margin-right: 50px !important;margin-left: 50px !important;}\"][vc_column_inner width=\"5/12\"][ultimate_fancytext fancytext_align=\"left\" strings_textspeed=\"0\" strings_backspeed=\"0\" strings_startdelay=\"100\" strings_backdelay=\"0\" typewriter_loop=\"off\" typewriter_cursor=\"off\" strings_font_size=\"desktop:28px;\" fancytext_color=\"#8c8c8c\" fancytext_strings=\"FARMCHEMIE is a world-renowned manufacturer of feed additives and feed supplements. We offer our FarmStar and PetStar branded products to the international markets We provide toll-manufacturing services to globally recognized marketing companies for the Asian &amp; African markets. Our manufacturing plant is equipped with fully automated production lines from Bühler.\"][/vc_column_inner][vc_column_inner width=\"2/12\"][/vc_column_inner][vc_column_inner width=\"5/12\"][ultimate_fancytext fancytext_align=\"left\" strings_textspeed=\"0\" strings_backspeed=\"0\" strings_startdelay=\"100\" strings_backdelay=\"0\" typewriter_loop=\"off\" typewriter_cursor=\"off\" strings_font_size=\"desktop:28px;\" fancytext_color=\"#8c8c8c\" fancytext_strings=\"FARMCHEMIE offers an island wide distribution, technical consultation and poultry vaccination services of high-quality animal healthcare products from world-renowned suppliers.\r\nWe offer both locally manufactured and imported products to cater the poultry, dairy, swine, pet-care and aqua markets.\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row]','Home2','','inherit','closed','closed','','2525-revision-v1','','','2022-09-05 09:07:04','2022-09-05 09:07:04','',2525,'https://farmchemie.yasithawd.com/?p=2545',0,'revision','',0),(2551,1,'2022-09-05 09:22:34','2022-09-05 09:22:34','[vc_row full_width=\"stretch_row_content\" bg_type=\"image\" parallax_style=\"vcpb-default\" bg_image_new=\"id^2524|url^https://farmchemie.yasithawd.com/wp-content/uploads/2022/09/marketbgimg1.png|caption^null|alt^null|title^marketbgimg1|description^null\" bg_image_repeat=\"no-repeat\"][vc_column][ultimate_heading main_heading=\"SELECT YOUR MARKET/REGION\" main_heading_color=\"#6e368d\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:48px;\"][/ultimate_heading][vc_empty_space height=\"300px\" css=\".vc_custom_1662363666143{background-image: url(https://farmchemie.yasithawd.com/wp-content/uploads/2022/09/marketbgimg1-sp.png?id=2527) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\"][vc_row_inner][vc_column_inner el_class=\"cborder1\" width=\"1/3\" css=\".vc_custom_1662367183321{background-color: #6e368d !important;}\"][bsf-info-box icon_type=\"custom\" icon_img=\"id^2537|url^https://farmchemie.yasithawd.com/wp-content/uploads/2022/09/earthicon-1.png|caption^null|alt^null|title^earthicon-1|description^null\" img_width=\"100\" title=\"Global\" pos=\"right\" title_font_style=\"font-weight:bold;\" title_font_size=\"desktop:48px;\" title_font_color=\"#ffffff\" desc_font_size=\"desktop:24px;\" desc_font_color=\"#ffffff\"]International Market[/bsf-info-box][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\" css=\".vc_custom_1662367741225{background-color: #089548 !important;}\"][bsf-info-box icon_type=\"custom\" icon_img=\"id^2536|url^https://farmchemie.yasithawd.com/wp-content/uploads/2022/09/srilankaicon-1.png|caption^null|alt^null|title^srilankaicon-1|description^null\" img_width=\"100\" title=\"Local\" pos=\"left\" title_font_style=\"font-weight:bold;\" title_font_size=\"desktop:48px;\" title_font_color=\"#ffffff\" desc_font_size=\"desktop:24px;\" desc_font_color=\"#ffffff\"]Sri Lankan Market[/bsf-info-box][/vc_column_inner][/vc_row_inner][vc_row_inner css=\".vc_custom_1662368347025{margin-top: 20px !important;margin-right: 50px !important;margin-left: 50px !important;}\"][vc_column_inner width=\"5/12\"][vc_column_text]FARMCHEMIE is a world-renowned manufacturer of feed additives and feed supplements. We offer our FarmStar and PetStar branded products to the international markets We provide toll-manufacturing services to globally recognized marketing companies for the Asian &amp; African markets. Our manufacturing plant is equipped with fully automated production lines from Bühler.[/vc_column_text][ult_buttons btn_title=\"READ MORE\" btn_align=\"ubtn-center\" btn_title_color=\"#6e368d\" btn_bg_color=\"rgba(224,224,224,0.01)\" icon=\"dt-icon-the7-menu-014\" icon_size=\"40\" icon_color=\"#6e368d\" btn_icon_pos=\"ubtn-sep-icon-at-right\"][/vc_column_inner][vc_column_inner width=\"2/12\"][/vc_column_inner][vc_column_inner width=\"5/12\"][vc_column_text]FARMCHEMIE offers an island wide distribution, technical consultation and poultry vaccination services of high-quality animal healthcare products from world-renowned suppliers.\r\nWe offer both locally manufactured and imported products to cater the poultry, dairy, swine, pet-care and aqua markets.[/vc_column_text][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row]','Home2','','inherit','closed','closed','','2525-revision-v1','','','2022-09-05 09:22:34','2022-09-05 09:22:34','',2525,'https://farmchemie.yasithawd.com/?p=2551',0,'revision','',0),(2552,1,'2022-09-05 09:23:50','2022-09-05 09:23:50','[vc_row full_width=\"stretch_row_content\" bg_type=\"image\" parallax_style=\"vcpb-default\" bg_image_new=\"id^2524|url^https://farmchemie.yasithawd.com/wp-content/uploads/2022/09/marketbgimg1.png|caption^null|alt^null|title^marketbgimg1|description^null\" bg_image_repeat=\"no-repeat\"][vc_column][ultimate_heading main_heading=\"SELECT YOUR MARKET/REGION\" main_heading_color=\"#6e368d\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:48px;\"][/ultimate_heading][vc_empty_space height=\"300px\" css=\".vc_custom_1662363666143{background-image: url(https://farmchemie.yasithawd.com/wp-content/uploads/2022/09/marketbgimg1-sp.png?id=2527) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\"][vc_row_inner][vc_column_inner el_class=\"cborder1\" width=\"1/3\" css=\".vc_custom_1662367183321{background-color: #6e368d !important;}\"][bsf-info-box icon_type=\"custom\" icon_img=\"id^2537|url^https://farmchemie.yasithawd.com/wp-content/uploads/2022/09/earthicon-1.png|caption^null|alt^null|title^earthicon-1|description^null\" img_width=\"100\" title=\"Global\" pos=\"right\" title_font_style=\"font-weight:bold;\" title_font_size=\"desktop:48px;\" title_font_color=\"#ffffff\" desc_font_size=\"desktop:24px;\" desc_font_color=\"#ffffff\"]International Market[/bsf-info-box][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\" css=\".vc_custom_1662367741225{background-color: #089548 !important;}\"][bsf-info-box icon_type=\"custom\" icon_img=\"id^2536|url^https://farmchemie.yasithawd.com/wp-content/uploads/2022/09/srilankaicon-1.png|caption^null|alt^null|title^srilankaicon-1|description^null\" img_width=\"100\" title=\"Local\" pos=\"left\" title_font_style=\"font-weight:bold;\" title_font_size=\"desktop:48px;\" title_font_color=\"#ffffff\" desc_font_size=\"desktop:24px;\" desc_font_color=\"#ffffff\"]Sri Lankan Market[/bsf-info-box][/vc_column_inner][/vc_row_inner][vc_row_inner css=\".vc_custom_1662368347025{margin-top: 20px !important;margin-right: 50px !important;margin-left: 50px !important;}\"][vc_column_inner width=\"5/12\"][vc_column_text]FARMCHEMIE is a world-renowned manufacturer of feed additives and feed supplements. We offer our FarmStar and PetStar branded products to the international markets We provide toll-manufacturing services to globally recognized marketing companies for the Asian &amp; African markets. Our manufacturing plant is equipped with fully automated production lines from Bühler.[/vc_column_text][ult_buttons btn_title=\"READ MORE\" btn_size=\"ubtn-custom\" btn_width=\"500\" btn_height=\"400\" btn_title_color=\"#6e368d\" btn_bg_color=\"rgba(224,224,224,0.01)\" icon=\"dt-icon-the7-menu-014\" icon_size=\"40\" icon_color=\"#6e368d\" btn_icon_pos=\"ubtn-sep-icon-at-right\"][/vc_column_inner][vc_column_inner width=\"2/12\"][/vc_column_inner][vc_column_inner width=\"5/12\"][vc_column_text]FARMCHEMIE offers an island wide distribution, technical consultation and poultry vaccination services of high-quality animal healthcare products from world-renowned suppliers.\r\nWe offer both locally manufactured and imported products to cater the poultry, dairy, swine, pet-care and aqua markets.[/vc_column_text][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row]','Home2','','inherit','closed','closed','','2525-revision-v1','','','2022-09-05 09:23:50','2022-09-05 09:23:50','',2525,'https://farmchemie.yasithawd.com/?p=2552',0,'revision','',0),(2553,1,'2022-09-05 09:24:50','2022-09-05 09:24:50','[vc_row full_width=\"stretch_row_content\" bg_type=\"image\" parallax_style=\"vcpb-default\" bg_image_new=\"id^2524|url^https://farmchemie.yasithawd.com/wp-content/uploads/2022/09/marketbgimg1.png|caption^null|alt^null|title^marketbgimg1|description^null\" bg_image_repeat=\"no-repeat\"][vc_column][ultimate_heading main_heading=\"SELECT YOUR MARKET/REGION\" main_heading_color=\"#6e368d\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:48px;\"][/ultimate_heading][vc_empty_space height=\"300px\" css=\".vc_custom_1662363666143{background-image: url(https://farmchemie.yasithawd.com/wp-content/uploads/2022/09/marketbgimg1-sp.png?id=2527) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\"][vc_row_inner][vc_column_inner el_class=\"cborder1\" width=\"1/3\" css=\".vc_custom_1662367183321{background-color: #6e368d !important;}\"][bsf-info-box icon_type=\"custom\" icon_img=\"id^2537|url^https://farmchemie.yasithawd.com/wp-content/uploads/2022/09/earthicon-1.png|caption^null|alt^null|title^earthicon-1|description^null\" img_width=\"100\" title=\"Global\" pos=\"right\" title_font_style=\"font-weight:bold;\" title_font_size=\"desktop:48px;\" title_font_color=\"#ffffff\" desc_font_size=\"desktop:24px;\" desc_font_color=\"#ffffff\"]International Market[/bsf-info-box][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\" css=\".vc_custom_1662367741225{background-color: #089548 !important;}\"][bsf-info-box icon_type=\"custom\" icon_img=\"id^2536|url^https://farmchemie.yasithawd.com/wp-content/uploads/2022/09/srilankaicon-1.png|caption^null|alt^null|title^srilankaicon-1|description^null\" img_width=\"100\" title=\"Local\" pos=\"left\" title_font_style=\"font-weight:bold;\" title_font_size=\"desktop:48px;\" title_font_color=\"#ffffff\" desc_font_size=\"desktop:24px;\" desc_font_color=\"#ffffff\"]Sri Lankan Market[/bsf-info-box][/vc_column_inner][/vc_row_inner][vc_row_inner css=\".vc_custom_1662368347025{margin-top: 20px !important;margin-right: 50px !important;margin-left: 50px !important;}\"][vc_column_inner width=\"5/12\"][vc_column_text]FARMCHEMIE is a world-renowned manufacturer of feed additives and feed supplements. We offer our FarmStar and PetStar branded products to the international markets We provide toll-manufacturing services to globally recognized marketing companies for the Asian &amp; African markets. Our manufacturing plant is equipped with fully automated production lines from Bühler.[/vc_column_text][ult_buttons btn_title=\"READ MORE\" btn_align=\"ubtn-center\" btn_size=\"ubtn-custom\" btn_width=\"500\" btn_height=\"400\" btn_title_color=\"#6e368d\" btn_bg_color=\"rgba(224,224,224,0.01)\" icon=\"dt-icon-the7-menu-014\" icon_size=\"40\" icon_color=\"#6e368d\" btn_icon_pos=\"ubtn-sep-icon-at-right\" btn_font_style=\"font-weight:bold;\" btn_font_size=\"desktop:24px;\"][/vc_column_inner][vc_column_inner width=\"2/12\"][/vc_column_inner][vc_column_inner width=\"5/12\"][vc_column_text]FARMCHEMIE offers an island wide distribution, technical consultation and poultry vaccination services of high-quality animal healthcare products from world-renowned suppliers.\r\nWe offer both locally manufactured and imported products to cater the poultry, dairy, swine, pet-care and aqua markets.[/vc_column_text][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row]','Home2','','inherit','closed','closed','','2525-revision-v1','','','2022-09-05 09:24:50','2022-09-05 09:24:50','',2525,'https://farmchemie.yasithawd.com/?p=2553',0,'revision','',0),(2554,1,'2022-09-05 09:26:00','2022-09-05 09:26:00','[vc_row full_width=\"stretch_row_content\" bg_type=\"image\" parallax_style=\"vcpb-default\" bg_image_new=\"id^2524|url^https://farmchemie.yasithawd.com/wp-content/uploads/2022/09/marketbgimg1.png|caption^null|alt^null|title^marketbgimg1|description^null\" bg_image_repeat=\"no-repeat\"][vc_column][ultimate_heading main_heading=\"SELECT YOUR MARKET/REGION\" main_heading_color=\"#6e368d\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:48px;\"][/ultimate_heading][vc_empty_space height=\"300px\" css=\".vc_custom_1662363666143{background-image: url(https://farmchemie.yasithawd.com/wp-content/uploads/2022/09/marketbgimg1-sp.png?id=2527) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\"][vc_row_inner][vc_column_inner el_class=\"cborder1\" width=\"1/3\" css=\".vc_custom_1662367183321{background-color: #6e368d !important;}\"][bsf-info-box icon_type=\"custom\" icon_img=\"id^2537|url^https://farmchemie.yasithawd.com/wp-content/uploads/2022/09/earthicon-1.png|caption^null|alt^null|title^earthicon-1|description^null\" img_width=\"100\" title=\"Global\" pos=\"right\" title_font_style=\"font-weight:bold;\" title_font_size=\"desktop:48px;\" title_font_color=\"#ffffff\" desc_font_size=\"desktop:24px;\" desc_font_color=\"#ffffff\"]International Market[/bsf-info-box][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\" css=\".vc_custom_1662367741225{background-color: #089548 !important;}\"][bsf-info-box icon_type=\"custom\" icon_img=\"id^2536|url^https://farmchemie.yasithawd.com/wp-content/uploads/2022/09/srilankaicon-1.png|caption^null|alt^null|title^srilankaicon-1|description^null\" img_width=\"100\" title=\"Local\" pos=\"left\" title_font_style=\"font-weight:bold;\" title_font_size=\"desktop:48px;\" title_font_color=\"#ffffff\" desc_font_size=\"desktop:24px;\" desc_font_color=\"#ffffff\"]Sri Lankan Market[/bsf-info-box][/vc_column_inner][/vc_row_inner][vc_row_inner css=\".vc_custom_1662368347025{margin-top: 20px !important;margin-right: 50px !important;margin-left: 50px !important;}\"][vc_column_inner width=\"5/12\"][vc_column_text]FARMCHEMIE is a world-renowned manufacturer of feed additives and feed supplements. We offer our FarmStar and PetStar branded products to the international markets We provide toll-manufacturing services to globally recognized marketing companies for the Asian &amp; African markets. Our manufacturing plant is equipped with fully automated production lines from Bühler.[/vc_column_text][ult_buttons btn_title=\"READ MORE\" btn_align=\"ubtn-center\" btn_size=\"ubtn-large\" btn_title_color=\"#6e368d\" btn_bg_color=\"rgba(224,224,224,0.01)\" icon=\"dt-icon-the7-menu-014\" icon_size=\"40\" icon_color=\"#6e368d\" btn_icon_pos=\"ubtn-sep-icon-at-right\" btn_font_style=\"font-weight:bold;\" btn_font_size=\"desktop:24px;\"][/vc_column_inner][vc_column_inner width=\"2/12\"][/vc_column_inner][vc_column_inner width=\"5/12\"][vc_column_text]FARMCHEMIE offers an island wide distribution, technical consultation and poultry vaccination services of high-quality animal healthcare products from world-renowned suppliers.\r\nWe offer both locally manufactured and imported products to cater the poultry, dairy, swine, pet-care and aqua markets.[/vc_column_text][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row]','Home2','','inherit','closed','closed','','2525-revision-v1','','','2022-09-05 09:26:00','2022-09-05 09:26:00','',2525,'https://farmchemie.yasithawd.com/?p=2554',0,'revision','',0),(2555,1,'2022-09-05 09:27:22','2022-09-05 09:27:22','[vc_row full_width=\"stretch_row_content\" bg_type=\"image\" parallax_style=\"vcpb-default\" bg_image_new=\"id^2524|url^https://farmchemie.yasithawd.com/wp-content/uploads/2022/09/marketbgimg1.png|caption^null|alt^null|title^marketbgimg1|description^null\" bg_image_repeat=\"no-repeat\"][vc_column][ultimate_heading main_heading=\"SELECT YOUR MARKET/REGION\" main_heading_color=\"#6e368d\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:48px;\"][/ultimate_heading][vc_empty_space height=\"300px\" css=\".vc_custom_1662363666143{background-image: url(https://farmchemie.yasithawd.com/wp-content/uploads/2022/09/marketbgimg1-sp.png?id=2527) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\"][vc_row_inner][vc_column_inner el_class=\"cborder1\" width=\"1/3\" css=\".vc_custom_1662367183321{background-color: #6e368d !important;}\"][bsf-info-box icon_type=\"custom\" icon_img=\"id^2537|url^https://farmchemie.yasithawd.com/wp-content/uploads/2022/09/earthicon-1.png|caption^null|alt^null|title^earthicon-1|description^null\" img_width=\"100\" title=\"Global\" pos=\"right\" title_font_style=\"font-weight:bold;\" title_font_size=\"desktop:48px;\" title_font_color=\"#ffffff\" desc_font_size=\"desktop:24px;\" desc_font_color=\"#ffffff\"]International Market[/bsf-info-box][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\" css=\".vc_custom_1662367741225{background-color: #089548 !important;}\"][bsf-info-box icon_type=\"custom\" icon_img=\"id^2536|url^https://farmchemie.yasithawd.com/wp-content/uploads/2022/09/srilankaicon-1.png|caption^null|alt^null|title^srilankaicon-1|description^null\" img_width=\"100\" title=\"Local\" pos=\"left\" title_font_style=\"font-weight:bold;\" title_font_size=\"desktop:48px;\" title_font_color=\"#ffffff\" desc_font_size=\"desktop:24px;\" desc_font_color=\"#ffffff\"]Sri Lankan Market[/bsf-info-box][/vc_column_inner][/vc_row_inner][vc_row_inner css=\".vc_custom_1662368347025{margin-top: 20px !important;margin-right: 50px !important;margin-left: 50px !important;}\"][vc_column_inner width=\"5/12\"][vc_column_text]FARMCHEMIE is a world-renowned manufacturer of feed additives and feed supplements. We offer our FarmStar and PetStar branded products to the international markets We provide toll-manufacturing services to globally recognized marketing companies for the Asian &amp; African markets. Our manufacturing plant is equipped with fully automated production lines from Bühler.[/vc_column_text][ult_buttons btn_title=\"READ MORE\" btn_align=\"ubtn-center\" btn_size=\"ubtn-custom\" btn_width=\"300\" btn_height=\"60\" btn_title_color=\"#6e368d\" btn_bg_color=\"rgba(224,224,224,0.01)\" icon=\"dt-icon-the7-menu-014\" icon_size=\"40\" icon_color=\"#6e368d\" btn_icon_pos=\"ubtn-sep-icon-at-right\" btn_font_style=\"font-weight:bold;\" btn_font_size=\"desktop:24px;\"][/vc_column_inner][vc_column_inner width=\"2/12\"][/vc_column_inner][vc_column_inner width=\"5/12\"][vc_column_text]FARMCHEMIE offers an island wide distribution, technical consultation and poultry vaccination services of high-quality animal healthcare products from world-renowned suppliers.\r\nWe offer both locally manufactured and imported products to cater the poultry, dairy, swine, pet-care and aqua markets.[/vc_column_text][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row]','Home2','','inherit','closed','closed','','2525-revision-v1','','','2022-09-05 09:27:22','2022-09-05 09:27:22','',2525,'https://farmchemie.yasithawd.com/?p=2555',0,'revision','',0),(2556,1,'2022-09-05 09:28:39','2022-09-05 09:28:39','[vc_row full_width=\"stretch_row_content\" bg_type=\"image\" parallax_style=\"vcpb-default\" bg_image_new=\"id^2524|url^https://farmchemie.yasithawd.com/wp-content/uploads/2022/09/marketbgimg1.png|caption^null|alt^null|title^marketbgimg1|description^null\" bg_image_repeat=\"no-repeat\"][vc_column][ultimate_heading main_heading=\"SELECT YOUR MARKET/REGION\" main_heading_color=\"#6e368d\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:48px;\"][/ultimate_heading][vc_empty_space height=\"300px\" css=\".vc_custom_1662363666143{background-image: url(https://farmchemie.yasithawd.com/wp-content/uploads/2022/09/marketbgimg1-sp.png?id=2527) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\"][vc_row_inner][vc_column_inner el_class=\"cborder1\" width=\"1/3\" css=\".vc_custom_1662367183321{background-color: #6e368d !important;}\"][bsf-info-box icon_type=\"custom\" icon_img=\"id^2537|url^https://farmchemie.yasithawd.com/wp-content/uploads/2022/09/earthicon-1.png|caption^null|alt^null|title^earthicon-1|description^null\" img_width=\"100\" title=\"Global\" pos=\"right\" title_font_style=\"font-weight:bold;\" title_font_size=\"desktop:48px;\" title_font_color=\"#ffffff\" desc_font_size=\"desktop:24px;\" desc_font_color=\"#ffffff\"]International Market[/bsf-info-box][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\" css=\".vc_custom_1662370098614{background-color: #089548 !important;}\"][bsf-info-box icon_type=\"custom\" icon_img=\"id^2536|url^https://farmchemie.yasithawd.com/wp-content/uploads/2022/09/srilankaicon-1.png|caption^null|alt^null|title^srilankaicon-1|description^null\" img_width=\"100\" title=\"Local\" pos=\"left\" title_font_style=\"font-weight:bold;\" title_font_size=\"desktop:48px;\" title_font_color=\"#ffffff\" desc_font_size=\"desktop:24px;\" desc_font_color=\"#ffffff\"]Sri Lankan Market[/bsf-info-box][/vc_column_inner][/vc_row_inner][vc_row_inner css=\".vc_custom_1662368347025{margin-top: 20px !important;margin-right: 50px !important;margin-left: 50px !important;}\"][vc_column_inner width=\"5/12\"][vc_column_text]FARMCHEMIE is a world-renowned manufacturer of feed additives and feed supplements. We offer our FarmStar and PetStar branded products to the international markets We provide toll-manufacturing services to globally recognized marketing companies for the Asian &amp; African markets. Our manufacturing plant is equipped with fully automated production lines from Bühler.[/vc_column_text][ult_buttons btn_title=\"READ MORE\" btn_align=\"ubtn-center\" btn_size=\"ubtn-custom\" btn_width=\"300\" btn_height=\"60\" btn_title_color=\"#6e368d\" btn_bg_color=\"rgba(224,224,224,0.01)\" icon=\"dt-icon-the7-menu-014\" icon_size=\"40\" icon_color=\"#6e368d\" btn_icon_pos=\"ubtn-sep-icon-at-right\" btn_font_style=\"font-weight:bold;\" btn_font_size=\"desktop:24px;\"][/vc_column_inner][vc_column_inner width=\"2/12\"][/vc_column_inner][vc_column_inner width=\"5/12\"][vc_column_text]FARMCHEMIE offers an island wide distribution, technical consultation and poultry vaccination services of high-quality animal healthcare products from world-renowned suppliers.\r\nWe offer both locally manufactured and imported products to cater the poultry, dairy, swine, pet-care and aqua markets.[/vc_column_text][ult_buttons btn_title=\"READ MORE\" btn_align=\"ubtn-center\" btn_size=\"ubtn-custom\" btn_width=\"300\" btn_height=\"60\" btn_title_color=\"#089548\" btn_bg_color=\"rgba(224,224,224,0.01)\" icon=\"dt-icon-the7-menu-013\" icon_size=\"40\" icon_color=\"#089548\" btn_icon_pos=\"ubtn-sep-icon-at-left\" btn_font_style=\"font-weight:bold;\" btn_font_size=\"desktop:24px;\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row]','Home2','','inherit','closed','closed','','2525-revision-v1','','','2022-09-05 09:28:39','2022-09-05 09:28:39','',2525,'https://farmchemie.yasithawd.com/?p=2556',0,'revision','',0),(2557,1,'2022-09-05 09:29:31','2022-09-05 09:29:31','[vc_row full_width=\"stretch_row_content\" bg_type=\"image\" parallax_style=\"vcpb-default\" bg_image_new=\"id^2524|url^https://farmchemie.yasithawd.com/wp-content/uploads/2022/09/marketbgimg1.png|caption^null|alt^null|title^marketbgimg1|description^null\" bg_image_repeat=\"no-repeat\"][vc_column][ultimate_heading main_heading=\"SELECT YOUR MARKET/REGION\" main_heading_color=\"#6e368d\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:48px;\"][/ultimate_heading][vc_empty_space height=\"300px\" css=\".vc_custom_1662363666143{background-image: url(https://farmchemie.yasithawd.com/wp-content/uploads/2022/09/marketbgimg1-sp.png?id=2527) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\"][vc_row_inner][vc_column_inner el_class=\"cborder1\" width=\"1/3\" css=\".vc_custom_1662367183321{background-color: #6e368d !important;}\"][bsf-info-box icon_type=\"custom\" icon_img=\"id^2537|url^https://farmchemie.yasithawd.com/wp-content/uploads/2022/09/earthicon-1.png|caption^null|alt^null|title^earthicon-1|description^null\" img_width=\"100\" title=\"Global\" pos=\"right\" title_font_style=\"font-weight:bold;\" title_font_size=\"desktop:48px;\" title_font_color=\"#ffffff\" desc_font_size=\"desktop:24px;\" desc_font_color=\"#ffffff\"]International Market[/bsf-info-box][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\" css=\".vc_custom_1662370098614{background-color: #089548 !important;}\"][bsf-info-box icon_type=\"custom\" icon_img=\"id^2536|url^https://farmchemie.yasithawd.com/wp-content/uploads/2022/09/srilankaicon-1.png|caption^null|alt^null|title^srilankaicon-1|description^null\" img_width=\"100\" title=\"Local\" pos=\"left\" title_font_style=\"font-weight:bold;\" title_font_size=\"desktop:48px;\" title_font_color=\"#ffffff\" desc_font_size=\"desktop:24px;\" desc_font_color=\"#ffffff\"]Sri Lankan Market[/bsf-info-box][/vc_column_inner][/vc_row_inner][vc_row_inner equal_height=\"yes\" css=\".vc_custom_1662370166856{margin-top: 20px !important;margin-right: 50px !important;margin-left: 50px !important;}\"][vc_column_inner width=\"5/12\"][vc_column_text]FARMCHEMIE is a world-renowned manufacturer of feed additives and feed supplements. We offer our FarmStar and PetStar branded products to the international markets We provide toll-manufacturing services to globally recognized marketing companies for the Asian &amp; African markets. Our manufacturing plant is equipped with fully automated production lines from Bühler.[/vc_column_text][ult_buttons btn_title=\"READ MORE\" btn_align=\"ubtn-center\" btn_size=\"ubtn-custom\" btn_width=\"300\" btn_height=\"60\" btn_title_color=\"#6e368d\" btn_bg_color=\"rgba(224,224,224,0.01)\" icon=\"dt-icon-the7-menu-014\" icon_size=\"40\" icon_color=\"#6e368d\" btn_icon_pos=\"ubtn-sep-icon-at-right\" btn_font_style=\"font-weight:bold;\" btn_font_size=\"desktop:24px;\"][/vc_column_inner][vc_column_inner width=\"2/12\"][/vc_column_inner][vc_column_inner width=\"5/12\"][vc_column_text]FARMCHEMIE offers an island wide distribution, technical consultation and poultry vaccination services of high-quality animal healthcare products from world-renowned suppliers.\r\nWe offer both locally manufactured and imported products to cater the poultry, dairy, swine, pet-care and aqua markets.[/vc_column_text][ult_buttons btn_title=\"READ MORE\" btn_align=\"ubtn-center\" btn_size=\"ubtn-custom\" btn_width=\"300\" btn_height=\"60\" btn_title_color=\"#089548\" btn_bg_color=\"rgba(224,224,224,0.01)\" icon=\"dt-icon-the7-menu-013\" icon_size=\"40\" icon_color=\"#089548\" btn_icon_pos=\"ubtn-sep-icon-at-left\" btn_font_style=\"font-weight:bold;\" btn_font_size=\"desktop:24px;\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row]','Home2','','inherit','closed','closed','','2525-revision-v1','','','2022-09-05 09:29:31','2022-09-05 09:29:31','',2525,'https://farmchemie.yasithawd.com/?p=2557',0,'revision','',0),(2558,1,'2022-09-05 09:30:19','2022-09-05 09:30:19','[vc_row full_width=\"stretch_row_content\" bg_type=\"image\" parallax_style=\"vcpb-default\" bg_image_new=\"id^2524|url^https://farmchemie.yasithawd.com/wp-content/uploads/2022/09/marketbgimg1.png|caption^null|alt^null|title^marketbgimg1|description^null\" bg_image_repeat=\"no-repeat\"][vc_column][ultimate_heading main_heading=\"SELECT YOUR MARKET/REGION\" main_heading_color=\"#6e368d\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:48px;\"][/ultimate_heading][vc_empty_space height=\"300px\" css=\".vc_custom_1662363666143{background-image: url(https://farmchemie.yasithawd.com/wp-content/uploads/2022/09/marketbgimg1-sp.png?id=2527) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\"][vc_row_inner][vc_column_inner el_class=\"cborder1\" width=\"1/3\" css=\".vc_custom_1662367183321{background-color: #6e368d !important;}\"][bsf-info-box icon_type=\"custom\" icon_img=\"id^2537|url^https://farmchemie.yasithawd.com/wp-content/uploads/2022/09/earthicon-1.png|caption^null|alt^null|title^earthicon-1|description^null\" img_width=\"100\" title=\"Global\" pos=\"right\" title_font_style=\"font-weight:bold;\" title_font_size=\"desktop:48px;\" title_font_color=\"#ffffff\" desc_font_size=\"desktop:24px;\" desc_font_color=\"#ffffff\"]International Market[/bsf-info-box][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\" css=\".vc_custom_1662370098614{background-color: #089548 !important;}\"][bsf-info-box icon_type=\"custom\" icon_img=\"id^2536|url^https://farmchemie.yasithawd.com/wp-content/uploads/2022/09/srilankaicon-1.png|caption^null|alt^null|title^srilankaicon-1|description^null\" img_width=\"100\" title=\"Local\" pos=\"left\" title_font_style=\"font-weight:bold;\" title_font_size=\"desktop:48px;\" title_font_color=\"#ffffff\" desc_font_size=\"desktop:24px;\" desc_font_color=\"#ffffff\"]Sri Lankan Market[/bsf-info-box][/vc_column_inner][/vc_row_inner][vc_row_inner equal_height=\"yes\" css=\".vc_custom_1662370166856{margin-top: 20px !important;margin-right: 50px !important;margin-left: 50px !important;}\"][vc_column_inner width=\"5/12\"][vc_column_text]FARMCHEMIE is a world-renowned manufacturer of feed additives and feed supplements. We offer our FarmStar and PetStar branded products to the international markets We provide toll-manufacturing services to globally recognized marketing companies for the Asian &amp; African markets. Our manufacturing plant is equipped with fully automated production lines from Bühler.[/vc_column_text][/vc_column_inner][vc_column_inner width=\"2/12\"][/vc_column_inner][vc_column_inner width=\"5/12\"][vc_column_text]FARMCHEMIE offers an island wide distribution, technical consultation and poultry vaccination services of high-quality animal healthcare products from world-renowned suppliers.\r\nWe offer both locally manufactured and imported products to cater the poultry, dairy, swine, pet-care and aqua markets.[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner width=\"1/2\"][ult_buttons btn_title=\"READ MORE\" btn_align=\"ubtn-center\" btn_size=\"ubtn-custom\" btn_width=\"300\" btn_height=\"60\" btn_title_color=\"#6e368d\" btn_bg_color=\"rgba(224,224,224,0.01)\" icon=\"dt-icon-the7-menu-014\" icon_size=\"40\" icon_color=\"#6e368d\" btn_icon_pos=\"ubtn-sep-icon-at-right\" btn_font_style=\"font-weight:bold;\" btn_font_size=\"desktop:24px;\"][/vc_column_inner][vc_column_inner width=\"1/2\"][ult_buttons btn_title=\"READ MORE\" btn_align=\"ubtn-center\" btn_size=\"ubtn-custom\" btn_width=\"300\" btn_height=\"60\" btn_title_color=\"#089548\" btn_bg_color=\"rgba(224,224,224,0.01)\" icon=\"dt-icon-the7-menu-013\" icon_size=\"40\" icon_color=\"#089548\" btn_icon_pos=\"ubtn-sep-icon-at-left\" btn_font_style=\"font-weight:bold;\" btn_font_size=\"desktop:24px;\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row]','Home2','','inherit','closed','closed','','2525-revision-v1','','','2022-09-05 09:30:19','2022-09-05 09:30:19','',2525,'https://farmchemie.yasithawd.com/?p=2558',0,'revision','',0),(2559,1,'2022-09-05 09:36:33','2022-09-05 09:36:33','','rowimg_mod_3','','inherit','open','closed','','rowimg_mod_3','','','2022-09-05 09:36:33','2022-09-05 09:36:33','',2525,'https://farmchemie.yasithawd.com/wp-content/uploads/2022/09/rowimg_mod_3.jpg',0,'attachment','image/jpeg',0),(2560,1,'2022-09-05 09:36:48','2022-09-05 09:36:48','[vc_row full_width=\"stretch_row_content\" bg_type=\"image\" parallax_style=\"vcpb-default\" bg_image_new=\"id^2524|url^https://farmchemie.yasithawd.com/wp-content/uploads/2022/09/marketbgimg1.png|caption^null|alt^null|title^marketbgimg1|description^null\" bg_image_repeat=\"no-repeat\"][vc_column][ultimate_heading main_heading=\"SELECT YOUR MARKET/REGION\" main_heading_color=\"#6e368d\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:48px;\"][/ultimate_heading][vc_empty_space height=\"300px\" css=\".vc_custom_1662363666143{background-image: url(https://farmchemie.yasithawd.com/wp-content/uploads/2022/09/marketbgimg1-sp.png?id=2527) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\"][vc_row_inner][vc_column_inner el_class=\"cborder1\" width=\"1/3\" css=\".vc_custom_1662367183321{background-color: #6e368d !important;}\"][bsf-info-box icon_type=\"custom\" icon_img=\"id^2537|url^https://farmchemie.yasithawd.com/wp-content/uploads/2022/09/earthicon-1.png|caption^null|alt^null|title^earthicon-1|description^null\" img_width=\"100\" title=\"Global\" pos=\"right\" title_font_style=\"font-weight:bold;\" title_font_size=\"desktop:48px;\" title_font_color=\"#ffffff\" desc_font_size=\"desktop:24px;\" desc_font_color=\"#ffffff\"]International Market[/bsf-info-box][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\" css=\".vc_custom_1662370098614{background-color: #089548 !important;}\"][bsf-info-box icon_type=\"custom\" icon_img=\"id^2536|url^https://farmchemie.yasithawd.com/wp-content/uploads/2022/09/srilankaicon-1.png|caption^null|alt^null|title^srilankaicon-1|description^null\" img_width=\"100\" title=\"Local\" pos=\"left\" title_font_style=\"font-weight:bold;\" title_font_size=\"desktop:48px;\" title_font_color=\"#ffffff\" desc_font_size=\"desktop:24px;\" desc_font_color=\"#ffffff\"]Sri Lankan Market[/bsf-info-box][/vc_column_inner][/vc_row_inner][vc_row_inner equal_height=\"yes\" css=\".vc_custom_1662370166856{margin-top: 20px !important;margin-right: 50px !important;margin-left: 50px !important;}\"][vc_column_inner width=\"5/12\"][vc_column_text]FARMCHEMIE is a world-renowned manufacturer of feed additives and feed supplements. We offer our FarmStar and PetStar branded products to the international markets We provide toll-manufacturing services to globally recognized marketing companies for the Asian &amp; African markets. Our manufacturing plant is equipped with fully automated production lines from Bühler.[/vc_column_text][/vc_column_inner][vc_column_inner width=\"2/12\"][/vc_column_inner][vc_column_inner width=\"5/12\"][vc_column_text]FARMCHEMIE offers an island wide distribution, technical consultation and poultry vaccination services of high-quality animal healthcare products from world-renowned suppliers.\r\nWe offer both locally manufactured and imported products to cater the poultry, dairy, swine, pet-care and aqua markets.[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner width=\"1/2\"][ult_buttons btn_title=\"READ MORE\" btn_align=\"ubtn-center\" btn_size=\"ubtn-custom\" btn_width=\"300\" btn_height=\"60\" btn_title_color=\"#6e368d\" btn_bg_color=\"rgba(224,224,224,0.01)\" icon=\"dt-icon-the7-menu-014\" icon_size=\"40\" icon_color=\"#6e368d\" btn_icon_pos=\"ubtn-sep-icon-at-right\" btn_font_style=\"font-weight:bold;\" btn_font_size=\"desktop:24px;\"][/vc_column_inner][vc_column_inner width=\"1/2\"][ult_buttons btn_title=\"READ MORE\" btn_align=\"ubtn-center\" btn_size=\"ubtn-custom\" btn_width=\"300\" btn_height=\"60\" btn_title_color=\"#089548\" btn_bg_color=\"rgba(224,224,224,0.01)\" icon=\"dt-icon-the7-menu-013\" icon_size=\"40\" icon_color=\"#089548\" btn_icon_pos=\"ubtn-sep-icon-at-left\" btn_font_style=\"font-weight:bold;\" btn_font_size=\"desktop:24px;\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row full_width=\"stretch_row_content\" full_height=\"yes\" bg_type=\"image\" parallax_style=\"vcpb-default\" bg_image_new=\"id^2559|url^https://farmchemie.yasithawd.com/wp-content/uploads/2022/09/rowimg_mod_3.jpg|caption^null|alt^null|title^rowimg_mod_3|description^null\" bg_image_repeat=\"no-repeat\"][vc_column][ultimate_heading main_heading=\"SPIRIT OF INNOVATION IN ANIMAL HEALTH\" main_heading_color=\"#6e368d\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:48px;\" margin_design_tab_text=\"\"][/ultimate_heading][/vc_column][/vc_row]','Home2','','inherit','closed','closed','','2525-revision-v1','','','2022-09-05 09:36:48','2022-09-05 09:36:48','',2525,'https://farmchemie.yasithawd.com/?p=2560',0,'revision','',0),(2561,1,'2022-09-05 09:38:01','2022-09-05 09:38:01','[vc_row full_width=\"stretch_row_content\" bg_type=\"image\" parallax_style=\"vcpb-default\" bg_image_new=\"id^2524|url^https://farmchemie.yasithawd.com/wp-content/uploads/2022/09/marketbgimg1.png|caption^null|alt^null|title^marketbgimg1|description^null\" bg_image_repeat=\"no-repeat\"][vc_column][ultimate_heading main_heading=\"SELECT YOUR MARKET/REGION\" main_heading_color=\"#6e368d\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:48px;\"][/ultimate_heading][vc_empty_space height=\"300px\" css=\".vc_custom_1662363666143{background-image: url(https://farmchemie.yasithawd.com/wp-content/uploads/2022/09/marketbgimg1-sp.png?id=2527) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\"][vc_row_inner][vc_column_inner el_class=\"cborder1\" width=\"1/3\" css=\".vc_custom_1662367183321{background-color: #6e368d !important;}\"][bsf-info-box icon_type=\"custom\" icon_img=\"id^2537|url^https://farmchemie.yasithawd.com/wp-content/uploads/2022/09/earthicon-1.png|caption^null|alt^null|title^earthicon-1|description^null\" img_width=\"100\" title=\"Global\" pos=\"right\" title_font_style=\"font-weight:bold;\" title_font_size=\"desktop:48px;\" title_font_color=\"#ffffff\" desc_font_size=\"desktop:24px;\" desc_font_color=\"#ffffff\"]International Market[/bsf-info-box][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\" css=\".vc_custom_1662370098614{background-color: #089548 !important;}\"][bsf-info-box icon_type=\"custom\" icon_img=\"id^2536|url^https://farmchemie.yasithawd.com/wp-content/uploads/2022/09/srilankaicon-1.png|caption^null|alt^null|title^srilankaicon-1|description^null\" img_width=\"100\" title=\"Local\" pos=\"left\" title_font_style=\"font-weight:bold;\" title_font_size=\"desktop:48px;\" title_font_color=\"#ffffff\" desc_font_size=\"desktop:24px;\" desc_font_color=\"#ffffff\"]Sri Lankan Market[/bsf-info-box][/vc_column_inner][/vc_row_inner][vc_row_inner equal_height=\"yes\" css=\".vc_custom_1662370166856{margin-top: 20px !important;margin-right: 50px !important;margin-left: 50px !important;}\"][vc_column_inner width=\"5/12\"][vc_column_text]FARMCHEMIE is a world-renowned manufacturer of feed additives and feed supplements. We offer our FarmStar and PetStar branded products to the international markets We provide toll-manufacturing services to globally recognized marketing companies for the Asian &amp; African markets. Our manufacturing plant is equipped with fully automated production lines from Bühler.[/vc_column_text][/vc_column_inner][vc_column_inner width=\"2/12\"][/vc_column_inner][vc_column_inner width=\"5/12\"][vc_column_text]FARMCHEMIE offers an island wide distribution, technical consultation and poultry vaccination services of high-quality animal healthcare products from world-renowned suppliers.\r\nWe offer both locally manufactured and imported products to cater the poultry, dairy, swine, pet-care and aqua markets.[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner width=\"1/2\"][ult_buttons btn_title=\"READ MORE\" btn_align=\"ubtn-center\" btn_size=\"ubtn-custom\" btn_width=\"300\" btn_height=\"60\" btn_title_color=\"#6e368d\" btn_bg_color=\"rgba(224,224,224,0.01)\" icon=\"dt-icon-the7-menu-014\" icon_size=\"40\" icon_color=\"#6e368d\" btn_icon_pos=\"ubtn-sep-icon-at-right\" btn_font_style=\"font-weight:bold;\" btn_font_size=\"desktop:24px;\"][/vc_column_inner][vc_column_inner width=\"1/2\"][ult_buttons btn_title=\"READ MORE\" btn_align=\"ubtn-center\" btn_size=\"ubtn-custom\" btn_width=\"300\" btn_height=\"60\" btn_title_color=\"#089548\" btn_bg_color=\"rgba(224,224,224,0.01)\" icon=\"dt-icon-the7-menu-013\" icon_size=\"40\" icon_color=\"#089548\" btn_icon_pos=\"ubtn-sep-icon-at-left\" btn_font_style=\"font-weight:bold;\" btn_font_size=\"desktop:24px;\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row full_width=\"stretch_row_content\" full_height=\"yes\" columns_placement=\"top\" bg_type=\"image\" parallax_style=\"vcpb-default\" bg_image_new=\"id^2559|url^https://farmchemie.yasithawd.com/wp-content/uploads/2022/09/rowimg_mod_3.jpg|caption^null|alt^null|title^rowimg_mod_3|description^null\" bg_image_repeat=\"no-repeat\"][vc_column][ultimate_heading main_heading=\"SPIRIT OF INNOVATION IN ANIMAL HEALTH\" main_heading_color=\"#6e368d\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:48px;\"][/ultimate_heading][/vc_column][/vc_row]','Home2','','inherit','closed','closed','','2525-revision-v1','','','2022-09-05 09:38:01','2022-09-05 09:38:01','',2525,'https://farmchemie.yasithawd.com/?p=2561',0,'revision','',0),(2563,1,'2022-09-05 09:42:30','2022-09-05 09:42:30','','QC','','inherit','open','closed','','qc','','','2022-09-05 09:42:30','2022-09-05 09:42:30','',2525,'https://farmchemie.yasithawd.com/wp-content/uploads/2022/09/QC.png',0,'attachment','image/png',0),(2564,1,'2022-09-05 09:42:40','2022-09-05 09:42:40','[vc_row full_width=\"stretch_row_content\" bg_type=\"image\" parallax_style=\"vcpb-default\" bg_image_new=\"id^2524|url^https://farmchemie.yasithawd.com/wp-content/uploads/2022/09/marketbgimg1.png|caption^null|alt^null|title^marketbgimg1|description^null\" bg_image_repeat=\"no-repeat\"][vc_column][ultimate_heading main_heading=\"SELECT YOUR MARKET/REGION\" main_heading_color=\"#6e368d\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:48px;\"][/ultimate_heading][vc_empty_space height=\"300px\" css=\".vc_custom_1662363666143{background-image: url(https://farmchemie.yasithawd.com/wp-content/uploads/2022/09/marketbgimg1-sp.png?id=2527) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\"][vc_row_inner][vc_column_inner el_class=\"cborder1\" width=\"1/3\" css=\".vc_custom_1662367183321{background-color: #6e368d !important;}\"][bsf-info-box icon_type=\"custom\" icon_img=\"id^2537|url^https://farmchemie.yasithawd.com/wp-content/uploads/2022/09/earthicon-1.png|caption^null|alt^null|title^earthicon-1|description^null\" img_width=\"100\" title=\"Global\" pos=\"right\" title_font_style=\"font-weight:bold;\" title_font_size=\"desktop:48px;\" title_font_color=\"#ffffff\" desc_font_size=\"desktop:24px;\" desc_font_color=\"#ffffff\"]International Market[/bsf-info-box][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\" css=\".vc_custom_1662370098614{background-color: #089548 !important;}\"][bsf-info-box icon_type=\"custom\" icon_img=\"id^2536|url^https://farmchemie.yasithawd.com/wp-content/uploads/2022/09/srilankaicon-1.png|caption^null|alt^null|title^srilankaicon-1|description^null\" img_width=\"100\" title=\"Local\" pos=\"left\" title_font_style=\"font-weight:bold;\" title_font_size=\"desktop:48px;\" title_font_color=\"#ffffff\" desc_font_size=\"desktop:24px;\" desc_font_color=\"#ffffff\"]Sri Lankan Market[/bsf-info-box][/vc_column_inner][/vc_row_inner][vc_row_inner equal_height=\"yes\" css=\".vc_custom_1662370166856{margin-top: 20px !important;margin-right: 50px !important;margin-left: 50px !important;}\"][vc_column_inner width=\"5/12\"][vc_column_text]FARMCHEMIE is a world-renowned manufacturer of feed additives and feed supplements. We offer our FarmStar and PetStar branded products to the international markets We provide toll-manufacturing services to globally recognized marketing companies for the Asian &amp; African markets. Our manufacturing plant is equipped with fully automated production lines from Bühler.[/vc_column_text][/vc_column_inner][vc_column_inner width=\"2/12\"][/vc_column_inner][vc_column_inner width=\"5/12\"][vc_column_text]FARMCHEMIE offers an island wide distribution, technical consultation and poultry vaccination services of high-quality animal healthcare products from world-renowned suppliers.\r\nWe offer both locally manufactured and imported products to cater the poultry, dairy, swine, pet-care and aqua markets.[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner width=\"1/2\"][ult_buttons btn_title=\"READ MORE\" btn_align=\"ubtn-center\" btn_size=\"ubtn-custom\" btn_width=\"300\" btn_height=\"60\" btn_title_color=\"#6e368d\" btn_bg_color=\"rgba(224,224,224,0.01)\" icon=\"dt-icon-the7-menu-014\" icon_size=\"40\" icon_color=\"#6e368d\" btn_icon_pos=\"ubtn-sep-icon-at-right\" btn_font_style=\"font-weight:bold;\" btn_font_size=\"desktop:24px;\"][/vc_column_inner][vc_column_inner width=\"1/2\"][ult_buttons btn_title=\"READ MORE\" btn_align=\"ubtn-center\" btn_size=\"ubtn-custom\" btn_width=\"300\" btn_height=\"60\" btn_title_color=\"#089548\" btn_bg_color=\"rgba(224,224,224,0.01)\" icon=\"dt-icon-the7-menu-013\" icon_size=\"40\" icon_color=\"#089548\" btn_icon_pos=\"ubtn-sep-icon-at-left\" btn_font_style=\"font-weight:bold;\" btn_font_size=\"desktop:24px;\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row full_width=\"stretch_row_content\" full_height=\"yes\" columns_placement=\"top\" bg_type=\"image\" parallax_style=\"vcpb-default\" bg_image_new=\"id^2559|url^https://farmchemie.yasithawd.com/wp-content/uploads/2022/09/rowimg_mod_3.jpg|caption^null|alt^null|title^rowimg_mod_3|description^null\" bg_image_repeat=\"no-repeat\"][vc_column][ultimate_heading main_heading=\"SPIRIT OF INNOVATION IN ANIMAL HEALTH\" main_heading_color=\"#6e368d\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:48px;\"][/ultimate_heading][vc_empty_space height=\"800PX\"][vc_row_inner][vc_column_inner width=\"2/3\" css=\".vc_custom_1662370858588{background-color: rgba(255,255,255,0.2) !important;*background-color: rgb(255,255,255) !important;}\"][vc_single_image image=\"2563\" img_size=\"full\"][/vc_column_inner][vc_column_inner width=\"1/3\" css=\".vc_custom_1662370845636{background-color: #6e368d !important;}\"][vc_single_image image=\"2562\" img_size=\"full\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row]','Home2','','inherit','closed','closed','','2525-revision-v1','','','2022-09-05 09:42:40','2022-09-05 09:42:40','',2525,'https://farmchemie.yasithawd.com/?p=2564',0,'revision','',0),(2565,1,'2022-09-05 09:43:43','2022-09-05 09:43:43','[vc_row full_width=\"stretch_row_content\" bg_type=\"image\" parallax_style=\"vcpb-default\" bg_image_new=\"id^2524|url^https://farmchemie.yasithawd.com/wp-content/uploads/2022/09/marketbgimg1.png|caption^null|alt^null|title^marketbgimg1|description^null\" bg_image_repeat=\"no-repeat\"][vc_column][ultimate_heading main_heading=\"SELECT YOUR MARKET/REGION\" main_heading_color=\"#6e368d\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:48px;\"][/ultimate_heading][vc_empty_space height=\"300px\" css=\".vc_custom_1662363666143{background-image: url(https://farmchemie.yasithawd.com/wp-content/uploads/2022/09/marketbgimg1-sp.png?id=2527) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\"][vc_row_inner][vc_column_inner el_class=\"cborder1\" width=\"1/3\" css=\".vc_custom_1662367183321{background-color: #6e368d !important;}\"][bsf-info-box icon_type=\"custom\" icon_img=\"id^2537|url^https://farmchemie.yasithawd.com/wp-content/uploads/2022/09/earthicon-1.png|caption^null|alt^null|title^earthicon-1|description^null\" img_width=\"100\" title=\"Global\" pos=\"right\" title_font_style=\"font-weight:bold;\" title_font_size=\"desktop:48px;\" title_font_color=\"#ffffff\" desc_font_size=\"desktop:24px;\" desc_font_color=\"#ffffff\"]International Market[/bsf-info-box][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\" css=\".vc_custom_1662370098614{background-color: #089548 !important;}\"][bsf-info-box icon_type=\"custom\" icon_img=\"id^2536|url^https://farmchemie.yasithawd.com/wp-content/uploads/2022/09/srilankaicon-1.png|caption^null|alt^null|title^srilankaicon-1|description^null\" img_width=\"100\" title=\"Local\" pos=\"left\" title_font_style=\"font-weight:bold;\" title_font_size=\"desktop:48px;\" title_font_color=\"#ffffff\" desc_font_size=\"desktop:24px;\" desc_font_color=\"#ffffff\"]Sri Lankan Market[/bsf-info-box][/vc_column_inner][/vc_row_inner][vc_row_inner equal_height=\"yes\" css=\".vc_custom_1662370166856{margin-top: 20px !important;margin-right: 50px !important;margin-left: 50px !important;}\"][vc_column_inner width=\"5/12\"][vc_column_text]FARMCHEMIE is a world-renowned manufacturer of feed additives and feed supplements. We offer our FarmStar and PetStar branded products to the international markets We provide toll-manufacturing services to globally recognized marketing companies for the Asian &amp; African markets. Our manufacturing plant is equipped with fully automated production lines from Bühler.[/vc_column_text][/vc_column_inner][vc_column_inner width=\"2/12\"][/vc_column_inner][vc_column_inner width=\"5/12\"][vc_column_text]FARMCHEMIE offers an island wide distribution, technical consultation and poultry vaccination services of high-quality animal healthcare products from world-renowned suppliers.\r\nWe offer both locally manufactured and imported products to cater the poultry, dairy, swine, pet-care and aqua markets.[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner width=\"1/2\"][ult_buttons btn_title=\"READ MORE\" btn_align=\"ubtn-center\" btn_size=\"ubtn-custom\" btn_width=\"300\" btn_height=\"60\" btn_title_color=\"#6e368d\" btn_bg_color=\"rgba(224,224,224,0.01)\" icon=\"dt-icon-the7-menu-014\" icon_size=\"40\" icon_color=\"#6e368d\" btn_icon_pos=\"ubtn-sep-icon-at-right\" btn_font_style=\"font-weight:bold;\" btn_font_size=\"desktop:24px;\"][/vc_column_inner][vc_column_inner width=\"1/2\"][ult_buttons btn_title=\"READ MORE\" btn_align=\"ubtn-center\" btn_size=\"ubtn-custom\" btn_width=\"300\" btn_height=\"60\" btn_title_color=\"#089548\" btn_bg_color=\"rgba(224,224,224,0.01)\" icon=\"dt-icon-the7-menu-013\" icon_size=\"40\" icon_color=\"#089548\" btn_icon_pos=\"ubtn-sep-icon-at-left\" btn_font_style=\"font-weight:bold;\" btn_font_size=\"desktop:24px;\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row full_width=\"stretch_row_content\" full_height=\"yes\" columns_placement=\"top\" bg_type=\"image\" parallax_style=\"vcpb-default\" bg_image_new=\"id^2559|url^https://farmchemie.yasithawd.com/wp-content/uploads/2022/09/rowimg_mod_3.jpg|caption^null|alt^null|title^rowimg_mod_3|description^null\" bg_image_repeat=\"no-repeat\"][vc_column][ultimate_heading main_heading=\"SPIRIT OF INNOVATION IN ANIMAL HEALTH\" main_heading_color=\"#6e368d\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:48px;\"][/ultimate_heading][vc_empty_space height=\"300px\"][vc_row_inner][vc_column_inner width=\"2/3\" css=\".vc_custom_1662370858588{background-color: rgba(255,255,255,0.2) !important;*background-color: rgb(255,255,255) !important;}\"][vc_single_image image=\"2563\" img_size=\"full\"][/vc_column_inner][vc_column_inner width=\"1/3\" css=\".vc_custom_1662370845636{background-color: #6e368d !important;}\"][vc_single_image image=\"2562\" img_size=\"full\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row]','Home2','','inherit','closed','closed','','2525-revision-v1','','','2022-09-05 09:43:43','2022-09-05 09:43:43','',2525,'https://farmchemie.yasithawd.com/?p=2565',0,'revision','',0),(2566,1,'2022-09-05 09:52:03','2022-09-05 09:52:03','','20yearslogo','','inherit','open','closed','','20yearslogo','','','2022-09-05 09:52:03','2022-09-05 09:52:03','',2525,'https://farmchemie.yasithawd.com/wp-content/uploads/2022/09/20yearslogo.png',0,'attachment','image/png',0),(2567,1,'2022-09-05 09:52:24','2022-09-05 09:52:24','','QALogos','','inherit','open','closed','','qalogos','','','2022-09-05 09:52:24','2022-09-05 09:52:24','',2525,'https://farmchemie.yasithawd.com/wp-content/uploads/2022/09/QALogos.png',0,'attachment','image/png',0),(2568,1,'2022-09-05 09:52:32','2022-09-05 09:52:32','[vc_row full_width=\"stretch_row_content\" bg_type=\"image\" parallax_style=\"vcpb-default\" bg_image_new=\"id^2524|url^https://farmchemie.yasithawd.com/wp-content/uploads/2022/09/marketbgimg1.png|caption^null|alt^null|title^marketbgimg1|description^null\" bg_image_repeat=\"no-repeat\"][vc_column][ultimate_heading main_heading=\"SELECT YOUR MARKET/REGION\" main_heading_color=\"#6e368d\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:48px;\"][/ultimate_heading][vc_empty_space height=\"300px\" css=\".vc_custom_1662363666143{background-image: url(https://farmchemie.yasithawd.com/wp-content/uploads/2022/09/marketbgimg1-sp.png?id=2527) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\"][vc_row_inner][vc_column_inner el_class=\"cborder1\" width=\"1/3\" css=\".vc_custom_1662367183321{background-color: #6e368d !important;}\"][bsf-info-box icon_type=\"custom\" icon_img=\"id^2537|url^https://farmchemie.yasithawd.com/wp-content/uploads/2022/09/earthicon-1.png|caption^null|alt^null|title^earthicon-1|description^null\" img_width=\"100\" title=\"Global\" pos=\"right\" title_font_style=\"font-weight:bold;\" title_font_size=\"desktop:48px;\" title_font_color=\"#ffffff\" desc_font_size=\"desktop:24px;\" desc_font_color=\"#ffffff\"]International Market[/bsf-info-box][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\" css=\".vc_custom_1662370098614{background-color: #089548 !important;}\"][bsf-info-box icon_type=\"custom\" icon_img=\"id^2536|url^https://farmchemie.yasithawd.com/wp-content/uploads/2022/09/srilankaicon-1.png|caption^null|alt^null|title^srilankaicon-1|description^null\" img_width=\"100\" title=\"Local\" pos=\"left\" title_font_style=\"font-weight:bold;\" title_font_size=\"desktop:48px;\" title_font_color=\"#ffffff\" desc_font_size=\"desktop:24px;\" desc_font_color=\"#ffffff\"]Sri Lankan Market[/bsf-info-box][/vc_column_inner][/vc_row_inner][vc_row_inner equal_height=\"yes\" css=\".vc_custom_1662370166856{margin-top: 20px !important;margin-right: 50px !important;margin-left: 50px !important;}\"][vc_column_inner width=\"5/12\"][vc_column_text]FARMCHEMIE is a world-renowned manufacturer of feed additives and feed supplements. We offer our FarmStar and PetStar branded products to the international markets We provide toll-manufacturing services to globally recognized marketing companies for the Asian &amp; African markets. Our manufacturing plant is equipped with fully automated production lines from Bühler.[/vc_column_text][/vc_column_inner][vc_column_inner width=\"2/12\"][/vc_column_inner][vc_column_inner width=\"5/12\"][vc_column_text]FARMCHEMIE offers an island wide distribution, technical consultation and poultry vaccination services of high-quality animal healthcare products from world-renowned suppliers.\r\nWe offer both locally manufactured and imported products to cater the poultry, dairy, swine, pet-care and aqua markets.[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner width=\"1/2\"][ult_buttons btn_title=\"READ MORE\" btn_align=\"ubtn-center\" btn_size=\"ubtn-custom\" btn_width=\"300\" btn_height=\"60\" btn_title_color=\"#6e368d\" btn_bg_color=\"rgba(224,224,224,0.01)\" icon=\"dt-icon-the7-menu-014\" icon_size=\"40\" icon_color=\"#6e368d\" btn_icon_pos=\"ubtn-sep-icon-at-right\" btn_font_style=\"font-weight:bold;\" btn_font_size=\"desktop:24px;\"][/vc_column_inner][vc_column_inner width=\"1/2\"][ult_buttons btn_title=\"READ MORE\" btn_align=\"ubtn-center\" btn_size=\"ubtn-custom\" btn_width=\"300\" btn_height=\"60\" btn_title_color=\"#089548\" btn_bg_color=\"rgba(224,224,224,0.01)\" icon=\"dt-icon-the7-menu-013\" icon_size=\"40\" icon_color=\"#089548\" btn_icon_pos=\"ubtn-sep-icon-at-left\" btn_font_style=\"font-weight:bold;\" btn_font_size=\"desktop:24px;\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row full_width=\"stretch_row_content\" full_height=\"yes\" columns_placement=\"top\" bg_type=\"image\" parallax_style=\"vcpb-default\" bg_image_new=\"id^2559|url^https://farmchemie.yasithawd.com/wp-content/uploads/2022/09/rowimg_mod_3.jpg|caption^null|alt^null|title^rowimg_mod_3|description^null\" bg_image_repeat=\"no-repeat\"][vc_column][ultimate_heading main_heading=\"SPIRIT OF INNOVATION IN ANIMAL HEALTH\" main_heading_color=\"#6e368d\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:48px;\"][/ultimate_heading][vc_empty_space height=\"300px\"][vc_row_inner][vc_column_inner width=\"2/3\" css=\".vc_custom_1662370858588{background-color: rgba(255,255,255,0.2) !important;*background-color: rgb(255,255,255) !important;}\"][vc_single_image image=\"2567\" img_size=\"full\"][/vc_column_inner][vc_column_inner width=\"1/3\" css=\".vc_custom_1662370845636{background-color: #6e368d !important;}\"][vc_single_image image=\"2566\" img_size=\"full\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row]','Home2','','inherit','closed','closed','','2525-revision-v1','','','2022-09-05 09:52:32','2022-09-05 09:52:32','',2525,'https://farmchemie.yasithawd.com/?p=2568',0,'revision','',0),(2569,1,'2022-09-05 09:53:13','2022-09-05 09:53:13','[vc_row full_width=\"stretch_row_content\" bg_type=\"image\" parallax_style=\"vcpb-default\" bg_image_new=\"id^2524|url^https://farmchemie.yasithawd.com/wp-content/uploads/2022/09/marketbgimg1.png|caption^null|alt^null|title^marketbgimg1|description^null\" bg_image_repeat=\"no-repeat\"][vc_column][ultimate_heading main_heading=\"SELECT YOUR MARKET/REGION\" main_heading_color=\"#6e368d\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:48px;\"][/ultimate_heading][vc_empty_space height=\"300px\" css=\".vc_custom_1662363666143{background-image: url(https://farmchemie.yasithawd.com/wp-content/uploads/2022/09/marketbgimg1-sp.png?id=2527) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\"][vc_row_inner][vc_column_inner el_class=\"cborder1\" width=\"1/3\" css=\".vc_custom_1662367183321{background-color: #6e368d !important;}\"][bsf-info-box icon_type=\"custom\" icon_img=\"id^2537|url^https://farmchemie.yasithawd.com/wp-content/uploads/2022/09/earthicon-1.png|caption^null|alt^null|title^earthicon-1|description^null\" img_width=\"100\" title=\"Global\" pos=\"right\" title_font_style=\"font-weight:bold;\" title_font_size=\"desktop:48px;\" title_font_color=\"#ffffff\" desc_font_size=\"desktop:24px;\" desc_font_color=\"#ffffff\"]International Market[/bsf-info-box][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\" css=\".vc_custom_1662370098614{background-color: #089548 !important;}\"][bsf-info-box icon_type=\"custom\" icon_img=\"id^2536|url^https://farmchemie.yasithawd.com/wp-content/uploads/2022/09/srilankaicon-1.png|caption^null|alt^null|title^srilankaicon-1|description^null\" img_width=\"100\" title=\"Local\" pos=\"left\" title_font_style=\"font-weight:bold;\" title_font_size=\"desktop:48px;\" title_font_color=\"#ffffff\" desc_font_size=\"desktop:24px;\" desc_font_color=\"#ffffff\"]Sri Lankan Market[/bsf-info-box][/vc_column_inner][/vc_row_inner][vc_row_inner equal_height=\"yes\" css=\".vc_custom_1662370166856{margin-top: 20px !important;margin-right: 50px !important;margin-left: 50px !important;}\"][vc_column_inner width=\"5/12\"][vc_column_text]FARMCHEMIE is a world-renowned manufacturer of feed additives and feed supplements. We offer our FarmStar and PetStar branded products to the international markets We provide toll-manufacturing services to globally recognized marketing companies for the Asian &amp; African markets. Our manufacturing plant is equipped with fully automated production lines from Bühler.[/vc_column_text][/vc_column_inner][vc_column_inner width=\"2/12\"][/vc_column_inner][vc_column_inner width=\"5/12\"][vc_column_text]FARMCHEMIE offers an island wide distribution, technical consultation and poultry vaccination services of high-quality animal healthcare products from world-renowned suppliers.\r\nWe offer both locally manufactured and imported products to cater the poultry, dairy, swine, pet-care and aqua markets.[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner width=\"1/2\"][ult_buttons btn_title=\"READ MORE\" btn_align=\"ubtn-center\" btn_size=\"ubtn-custom\" btn_width=\"300\" btn_height=\"60\" btn_title_color=\"#6e368d\" btn_bg_color=\"rgba(224,224,224,0.01)\" icon=\"dt-icon-the7-menu-014\" icon_size=\"40\" icon_color=\"#6e368d\" btn_icon_pos=\"ubtn-sep-icon-at-right\" btn_font_style=\"font-weight:bold;\" btn_font_size=\"desktop:24px;\"][/vc_column_inner][vc_column_inner width=\"1/2\"][ult_buttons btn_title=\"READ MORE\" btn_align=\"ubtn-center\" btn_size=\"ubtn-custom\" btn_width=\"300\" btn_height=\"60\" btn_title_color=\"#089548\" btn_bg_color=\"rgba(224,224,224,0.01)\" icon=\"dt-icon-the7-menu-013\" icon_size=\"40\" icon_color=\"#089548\" btn_icon_pos=\"ubtn-sep-icon-at-left\" btn_font_style=\"font-weight:bold;\" btn_font_size=\"desktop:24px;\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row full_width=\"stretch_row_content\" full_height=\"yes\" columns_placement=\"top\" bg_type=\"image\" parallax_style=\"vcpb-default\" bg_image_new=\"id^2559|url^https://farmchemie.yasithawd.com/wp-content/uploads/2022/09/rowimg_mod_3.jpg|caption^null|alt^null|title^rowimg_mod_3|description^null\" bg_image_repeat=\"no-repeat\"][vc_column][ultimate_heading main_heading=\"SPIRIT OF INNOVATION IN ANIMAL HEALTH\" main_heading_color=\"#6e368d\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:48px;\"][/ultimate_heading][vc_empty_space height=\"300px\"][vc_row_inner content_placement=\"bottom\"][vc_column_inner width=\"2/3\" css=\".vc_custom_1662370858588{background-color: rgba(255,255,255,0.2) !important;*background-color: rgb(255,255,255) !important;}\"][vc_single_image image=\"2567\" img_size=\"full\"][/vc_column_inner][vc_column_inner width=\"1/3\" css=\".vc_custom_1662370845636{background-color: #6e368d !important;}\"][vc_single_image image=\"2566\" img_size=\"full\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row]','Home2','','inherit','closed','closed','','2525-revision-v1','','','2022-09-05 09:53:13','2022-09-05 09:53:13','',2525,'https://farmchemie.yasithawd.com/?p=2569',0,'revision','',0),(2570,1,'2022-09-05 09:55:08','2022-09-05 09:55:08','[vc_row full_width=\"stretch_row_content\" bg_type=\"image\" parallax_style=\"vcpb-default\" bg_image_new=\"id^2524|url^https://farmchemie.yasithawd.com/wp-content/uploads/2022/09/marketbgimg1.png|caption^null|alt^null|title^marketbgimg1|description^null\" bg_image_repeat=\"no-repeat\"][vc_column][ultimate_heading main_heading=\"SELECT YOUR MARKET/REGION\" main_heading_color=\"#6e368d\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:48px;\"][/ultimate_heading][vc_empty_space height=\"300px\" css=\".vc_custom_1662363666143{background-image: url(https://farmchemie.yasithawd.com/wp-content/uploads/2022/09/marketbgimg1-sp.png?id=2527) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\"][vc_row_inner][vc_column_inner el_class=\"cborder1\" width=\"1/3\" css=\".vc_custom_1662367183321{background-color: #6e368d !important;}\"][bsf-info-box icon_type=\"custom\" icon_img=\"id^2537|url^https://farmchemie.yasithawd.com/wp-content/uploads/2022/09/earthicon-1.png|caption^null|alt^null|title^earthicon-1|description^null\" img_width=\"100\" title=\"Global\" pos=\"right\" title_font_style=\"font-weight:bold;\" title_font_size=\"desktop:48px;\" title_font_color=\"#ffffff\" desc_font_size=\"desktop:24px;\" desc_font_color=\"#ffffff\"]International Market[/bsf-info-box][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\" css=\".vc_custom_1662370098614{background-color: #089548 !important;}\"][bsf-info-box icon_type=\"custom\" icon_img=\"id^2536|url^https://farmchemie.yasithawd.com/wp-content/uploads/2022/09/srilankaicon-1.png|caption^null|alt^null|title^srilankaicon-1|description^null\" img_width=\"100\" title=\"Local\" pos=\"left\" title_font_style=\"font-weight:bold;\" title_font_size=\"desktop:48px;\" title_font_color=\"#ffffff\" desc_font_size=\"desktop:24px;\" desc_font_color=\"#ffffff\"]Sri Lankan Market[/bsf-info-box][/vc_column_inner][/vc_row_inner][vc_row_inner equal_height=\"yes\" css=\".vc_custom_1662370166856{margin-top: 20px !important;margin-right: 50px !important;margin-left: 50px !important;}\"][vc_column_inner width=\"5/12\"][vc_column_text]FARMCHEMIE is a world-renowned manufacturer of feed additives and feed supplements. We offer our FarmStar and PetStar branded products to the international markets We provide toll-manufacturing services to globally recognized marketing companies for the Asian &amp; African markets. Our manufacturing plant is equipped with fully automated production lines from Bühler.[/vc_column_text][/vc_column_inner][vc_column_inner width=\"2/12\"][/vc_column_inner][vc_column_inner width=\"5/12\"][vc_column_text]FARMCHEMIE offers an island wide distribution, technical consultation and poultry vaccination services of high-quality animal healthcare products from world-renowned suppliers.\r\nWe offer both locally manufactured and imported products to cater the poultry, dairy, swine, pet-care and aqua markets.[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner width=\"1/2\"][ult_buttons btn_title=\"READ MORE\" btn_align=\"ubtn-center\" btn_size=\"ubtn-custom\" btn_width=\"300\" btn_height=\"60\" btn_title_color=\"#6e368d\" btn_bg_color=\"rgba(224,224,224,0.01)\" icon=\"dt-icon-the7-menu-014\" icon_size=\"40\" icon_color=\"#6e368d\" btn_icon_pos=\"ubtn-sep-icon-at-right\" btn_font_style=\"font-weight:bold;\" btn_font_size=\"desktop:24px;\"][/vc_column_inner][vc_column_inner width=\"1/2\"][ult_buttons btn_title=\"READ MORE\" btn_align=\"ubtn-center\" btn_size=\"ubtn-custom\" btn_width=\"300\" btn_height=\"60\" btn_title_color=\"#089548\" btn_bg_color=\"rgba(224,224,224,0.01)\" icon=\"dt-icon-the7-menu-013\" icon_size=\"40\" icon_color=\"#089548\" btn_icon_pos=\"ubtn-sep-icon-at-left\" btn_font_style=\"font-weight:bold;\" btn_font_size=\"desktop:24px;\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row full_width=\"stretch_row_content\" full_height=\"yes\" columns_placement=\"top\" bg_type=\"image\" parallax_style=\"vcpb-default\" bg_image_new=\"id^2559|url^https://farmchemie.yasithawd.com/wp-content/uploads/2022/09/rowimg_mod_3.jpg|caption^null|alt^null|title^rowimg_mod_3|description^null\" bg_image_repeat=\"no-repeat\"][vc_column][ultimate_heading main_heading=\"SPIRIT OF INNOVATION IN ANIMAL HEALTH\" main_heading_color=\"#6e368d\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:48px;\"][/ultimate_heading][vc_empty_space height=\"300px\"][vc_row_inner content_placement=\"bottom\"][vc_column_inner width=\"6/12\" css=\".vc_custom_1662370858588{background-color: rgba(255,255,255,0.2) !important;*background-color: rgb(255,255,255) !important;}\"][vc_single_image image=\"2567\" img_size=\"full\" alignment=\"center\"][/vc_column_inner][vc_column_inner width=\"2/12\"][/vc_column_inner][vc_column_inner width=\"4/12\" css=\".vc_custom_1662371690284{background-color: #6e368d !important;}\"][vc_single_image image=\"2566\" img_size=\"full\" alignment=\"center\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row]','Home2','','inherit','closed','closed','','2525-revision-v1','','','2022-09-05 09:55:08','2022-09-05 09:55:08','',2525,'https://farmchemie.yasithawd.com/?p=2570',0,'revision','',0),(2571,1,'2022-09-05 09:56:09','2022-09-05 09:56:09','[vc_row full_width=\"stretch_row_content\" bg_type=\"image\" parallax_style=\"vcpb-default\" bg_image_new=\"id^2524|url^https://farmchemie.yasithawd.com/wp-content/uploads/2022/09/marketbgimg1.png|caption^null|alt^null|title^marketbgimg1|description^null\" bg_image_repeat=\"no-repeat\"][vc_column][ultimate_heading main_heading=\"SELECT YOUR MARKET/REGION\" main_heading_color=\"#6e368d\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:48px;\"][/ultimate_heading][vc_empty_space height=\"300px\" css=\".vc_custom_1662363666143{background-image: url(https://farmchemie.yasithawd.com/wp-content/uploads/2022/09/marketbgimg1-sp.png?id=2527) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\"][vc_row_inner][vc_column_inner el_class=\"cborder1\" width=\"1/3\" css=\".vc_custom_1662367183321{background-color: #6e368d !important;}\"][bsf-info-box icon_type=\"custom\" icon_img=\"id^2537|url^https://farmchemie.yasithawd.com/wp-content/uploads/2022/09/earthicon-1.png|caption^null|alt^null|title^earthicon-1|description^null\" img_width=\"100\" title=\"Global\" pos=\"right\" title_font_style=\"font-weight:bold;\" title_font_size=\"desktop:48px;\" title_font_color=\"#ffffff\" desc_font_size=\"desktop:24px;\" desc_font_color=\"#ffffff\"]International Market[/bsf-info-box][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\" css=\".vc_custom_1662370098614{background-color: #089548 !important;}\"][bsf-info-box icon_type=\"custom\" icon_img=\"id^2536|url^https://farmchemie.yasithawd.com/wp-content/uploads/2022/09/srilankaicon-1.png|caption^null|alt^null|title^srilankaicon-1|description^null\" img_width=\"100\" title=\"Local\" pos=\"left\" title_font_style=\"font-weight:bold;\" title_font_size=\"desktop:48px;\" title_font_color=\"#ffffff\" desc_font_size=\"desktop:24px;\" desc_font_color=\"#ffffff\"]Sri Lankan Market[/bsf-info-box][/vc_column_inner][/vc_row_inner][vc_row_inner equal_height=\"yes\" css=\".vc_custom_1662370166856{margin-top: 20px !important;margin-right: 50px !important;margin-left: 50px !important;}\"][vc_column_inner width=\"5/12\"][vc_column_text]FARMCHEMIE is a world-renowned manufacturer of feed additives and feed supplements. We offer our FarmStar and PetStar branded products to the international markets We provide toll-manufacturing services to globally recognized marketing companies for the Asian &amp; African markets. Our manufacturing plant is equipped with fully automated production lines from Bühler.[/vc_column_text][/vc_column_inner][vc_column_inner width=\"2/12\"][/vc_column_inner][vc_column_inner width=\"5/12\"][vc_column_text]FARMCHEMIE offers an island wide distribution, technical consultation and poultry vaccination services of high-quality animal healthcare products from world-renowned suppliers.\r\nWe offer both locally manufactured and imported products to cater the poultry, dairy, swine, pet-care and aqua markets.[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner width=\"1/2\"][ult_buttons btn_title=\"READ MORE\" btn_align=\"ubtn-center\" btn_size=\"ubtn-custom\" btn_width=\"300\" btn_height=\"60\" btn_title_color=\"#6e368d\" btn_bg_color=\"rgba(224,224,224,0.01)\" icon=\"dt-icon-the7-menu-014\" icon_size=\"40\" icon_color=\"#6e368d\" btn_icon_pos=\"ubtn-sep-icon-at-right\" btn_font_style=\"font-weight:bold;\" btn_font_size=\"desktop:24px;\"][/vc_column_inner][vc_column_inner width=\"1/2\"][ult_buttons btn_title=\"READ MORE\" btn_align=\"ubtn-center\" btn_size=\"ubtn-custom\" btn_width=\"300\" btn_height=\"60\" btn_title_color=\"#089548\" btn_bg_color=\"rgba(224,224,224,0.01)\" icon=\"dt-icon-the7-menu-013\" icon_size=\"40\" icon_color=\"#089548\" btn_icon_pos=\"ubtn-sep-icon-at-left\" btn_font_style=\"font-weight:bold;\" btn_font_size=\"desktop:24px;\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row full_width=\"stretch_row_content\" full_height=\"yes\" columns_placement=\"top\" bg_type=\"image\" parallax_style=\"vcpb-default\" bg_image_new=\"id^2559|url^https://farmchemie.yasithawd.com/wp-content/uploads/2022/09/rowimg_mod_3.jpg|caption^null|alt^null|title^rowimg_mod_3|description^null\" bg_image_repeat=\"no-repeat\"][vc_column][ultimate_heading main_heading=\"SPIRIT OF INNOVATION IN ANIMAL HEALTH\" main_heading_color=\"#6e368d\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:48px;\"][/ultimate_heading][vc_empty_space height=\"300px\"][vc_row_inner content_placement=\"bottom\"][vc_column_inner width=\"6/12\" css=\".vc_custom_1662370858588{background-color: rgba(255,255,255,0.2) !important;*background-color: rgb(255,255,255) !important;}\"][vc_single_image image=\"2567\" img_size=\"full\" alignment=\"center\"][/vc_column_inner][vc_column_inner width=\"3/12\"][/vc_column_inner][vc_column_inner width=\"3/12\" css=\".vc_custom_1662371690284{background-color: #6e368d !important;}\"][vc_single_image image=\"2566\" img_size=\"full\" alignment=\"center\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row]','Home2','','inherit','closed','closed','','2525-revision-v1','','','2022-09-05 09:56:09','2022-09-05 09:56:09','',2525,'https://farmchemie.yasithawd.com/?p=2571',0,'revision','',0),(2572,1,'2022-09-05 10:00:59','2022-09-05 10:00:59','','FCL EGG LOGO','','inherit','open','closed','','fcl-egg-logo','','','2022-09-05 10:00:59','2022-09-05 10:00:59','',0,'https://farmchemie.yasithawd.com/wp-content/uploads/2022/09/FCL-EGG-LOGO.png',0,'attachment','image/png',0),(2573,1,'2022-09-05 10:03:13','2022-09-05 10:03:13','[vc_row full_width=\"stretch_row_content\" bg_type=\"image\" parallax_style=\"vcpb-default\" bg_image_new=\"id^2524|url^https://farmchemie.yasithawd.com/wp-content/uploads/2022/09/marketbgimg1.png|caption^null|alt^null|title^marketbgimg1|description^null\" bg_image_repeat=\"no-repeat\"][vc_column][ultimate_heading main_heading=\"SELECT YOUR MARKET/REGION\" main_heading_color=\"#6e368d\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:48px;\"][/ultimate_heading][vc_empty_space height=\"300px\" css=\".vc_custom_1662363666143{background-image: url(https://farmchemie.yasithawd.com/wp-content/uploads/2022/09/marketbgimg1-sp.png?id=2527) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\"][vc_row_inner][vc_column_inner el_class=\"cborder1\" width=\"1/3\" css=\".vc_custom_1662367183321{background-color: #6e368d !important;}\"][bsf-info-box icon_type=\"custom\" icon_img=\"id^2537|url^https://farmchemie.yasithawd.com/wp-content/uploads/2022/09/earthicon-1.png|caption^null|alt^null|title^earthicon-1|description^null\" img_width=\"100\" title=\"Global\" pos=\"right\" title_font_style=\"font-weight:bold;\" title_font_size=\"desktop:48px;\" title_font_color=\"#ffffff\" desc_font_size=\"desktop:24px;\" desc_font_color=\"#ffffff\"]International Market[/bsf-info-box][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\" css=\".vc_custom_1662370098614{background-color: #089548 !important;}\"][bsf-info-box icon_type=\"custom\" icon_img=\"id^2536|url^https://farmchemie.yasithawd.com/wp-content/uploads/2022/09/srilankaicon-1.png|caption^null|alt^null|title^srilankaicon-1|description^null\" img_width=\"100\" title=\"Local\" pos=\"left\" title_font_style=\"font-weight:bold;\" title_font_size=\"desktop:48px;\" title_font_color=\"#ffffff\" desc_font_size=\"desktop:24px;\" desc_font_color=\"#ffffff\"]Sri Lankan Market[/bsf-info-box][/vc_column_inner][/vc_row_inner][vc_row_inner equal_height=\"yes\" css=\".vc_custom_1662370166856{margin-top: 20px !important;margin-right: 50px !important;margin-left: 50px !important;}\"][vc_column_inner width=\"5/12\"][vc_column_text]FARMCHEMIE is a world-renowned manufacturer of feed additives and feed supplements. We offer our FarmStar and PetStar branded products to the international markets We provide toll-manufacturing services to globally recognized marketing companies for the Asian &amp; African markets. Our manufacturing plant is equipped with fully automated production lines from Bühler.[/vc_column_text][/vc_column_inner][vc_column_inner width=\"2/12\"][/vc_column_inner][vc_column_inner width=\"5/12\"][vc_column_text]FARMCHEMIE offers an island wide distribution, technical consultation and poultry vaccination services of high-quality animal healthcare products from world-renowned suppliers.\r\nWe offer both locally manufactured and imported products to cater the poultry, dairy, swine, pet-care and aqua markets.[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner width=\"1/2\"][ult_buttons btn_title=\"READ MORE\" btn_align=\"ubtn-center\" btn_size=\"ubtn-custom\" btn_width=\"300\" btn_height=\"60\" btn_title_color=\"#6e368d\" btn_bg_color=\"rgba(224,224,224,0.01)\" icon=\"dt-icon-the7-menu-014\" icon_size=\"40\" icon_color=\"#6e368d\" btn_icon_pos=\"ubtn-sep-icon-at-right\" btn_font_style=\"font-weight:bold;\" btn_font_size=\"desktop:24px;\"][/vc_column_inner][vc_column_inner width=\"1/2\"][ult_buttons btn_title=\"READ MORE\" btn_align=\"ubtn-center\" btn_size=\"ubtn-custom\" btn_width=\"300\" btn_height=\"60\" btn_title_color=\"#089548\" btn_bg_color=\"rgba(224,224,224,0.01)\" icon=\"dt-icon-the7-menu-013\" icon_size=\"40\" icon_color=\"#089548\" btn_icon_pos=\"ubtn-sep-icon-at-left\" btn_font_style=\"font-weight:bold;\" btn_font_size=\"desktop:24px;\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row full_width=\"stretch_row_content\" full_height=\"yes\" columns_placement=\"top\" bg_type=\"image\" parallax_style=\"vcpb-default\" bg_image_new=\"id^2559|url^https://farmchemie.yasithawd.com/wp-content/uploads/2022/09/rowimg_mod_3.jpg|caption^null|alt^null|title^rowimg_mod_3|description^null\" bg_image_repeat=\"no-repeat\"][vc_column][ultimate_heading main_heading=\"SPIRIT OF INNOVATION IN ANIMAL HEALTH\" main_heading_color=\"#6e368d\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:48px;\"][/ultimate_heading][vc_empty_space height=\"300px\"][vc_row_inner content_placement=\"bottom\" css=\".vc_custom_1662372188860{padding-right: 10px !important;padding-left: 10px !important;}\"][vc_column_inner width=\"6/12\" css=\".vc_custom_1662370858588{background-color: rgba(255,255,255,0.2) !important;*background-color: rgb(255,255,255) !important;}\"][vc_single_image image=\"2567\" img_size=\"full\" alignment=\"center\"][/vc_column_inner][vc_column_inner width=\"3/12\"][/vc_column_inner][vc_column_inner width=\"3/12\" css=\".vc_custom_1662371690284{background-color: #6e368d !important;}\"][vc_single_image image=\"2566\" img_size=\"full\" alignment=\"center\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row]','Home2','','inherit','closed','closed','','2525-revision-v1','','','2022-09-05 10:03:13','2022-09-05 10:03:13','',2525,'https://farmchemie.yasithawd.com/?p=2573',0,'revision','',0),(3688,1,'2023-09-14 13:49:10','2023-09-14 13:29:08',' ','','','publish','closed','closed','','3688','','','2023-09-14 13:49:10','2023-09-14 13:49:10','',0,'https://farmchemie.yasithawd.com/?p=3688',1,'nav_menu_item','',0),(2576,1,'2023-09-14 13:27:57','2022-09-05 10:06:44','','Privacy Policy','','publish','closed','closed','','products-3','','','2023-09-14 13:27:57','2023-09-14 13:27:57','',0,'https://farmchemie.yasithawd.com/?p=2576',2,'nav_menu_item','',0),(2610,1,'2023-09-14 13:49:10','2022-09-07 07:42:42','','SPECIES','','publish','closed','closed','','species-2','','','2023-09-14 13:49:10','2023-09-14 13:49:10','',0,'https://farmchemie.yasithawd.com/?p=2610',3,'nav_menu_item','',0),(3696,1,'2023-09-15 05:57:16','2023-09-15 05:57:16','','Calfo20_600px','','inherit','','closed','','calfo20_600px','','','2023-09-15 05:57:16','2023-09-15 05:57:16','',3629,'https://farmchemie.yasithawd.com/wp-content/uploads/2023/09/Calfo20_600px.png',0,'attachment','image/png',0),(2580,1,'2022-09-05 10:29:33','2022-09-05 10:29:33','[vc_row full_width=\"stretch_row_content\" bg_type=\"image\" parallax_style=\"vcpb-default\" bg_image_new=\"id^2524|url^https://farmchemie.yasithawd.com/wp-content/uploads/2022/09/marketbgimg1.png|caption^null|alt^null|title^marketbgimg1|description^null\" bg_image_repeat=\"no-repeat\"][vc_column][ultimate_heading main_heading=\"SELECT YOUR MARKET/REGION\" main_heading_color=\"#6e368d\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:48px;\"][/ultimate_heading][vc_empty_space height=\"300px\" css=\".vc_custom_1662363666143{background-image: url(https://farmchemie.yasithawd.com/wp-content/uploads/2022/09/marketbgimg1-sp.png?id=2527) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\"][vc_row_inner][vc_column_inner el_class=\"cborder1\" width=\"1/3\" css=\".vc_custom_1662367183321{background-color: #6e368d !important;}\"][bsf-info-box icon_type=\"custom\" icon_img=\"id^2537|url^https://farmchemie.yasithawd.com/wp-content/uploads/2022/09/earthicon-1.png|caption^null|alt^null|title^earthicon-1|description^null\" img_width=\"100\" title=\"Global\" pos=\"right\" title_font_style=\"font-weight:bold;\" title_font_size=\"desktop:48px;\" title_font_color=\"#ffffff\" desc_font_size=\"desktop:24px;\" desc_font_color=\"#ffffff\"]International Market[/bsf-info-box][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\" css=\".vc_custom_1662370098614{background-color: #089548 !important;}\"][bsf-info-box icon_type=\"custom\" icon_img=\"id^2536|url^https://farmchemie.yasithawd.com/wp-content/uploads/2022/09/srilankaicon-1.png|caption^null|alt^null|title^srilankaicon-1|description^null\" img_width=\"100\" title=\"Local\" pos=\"left\" title_font_style=\"font-weight:bold;\" title_font_size=\"desktop:48px;\" title_font_color=\"#ffffff\" desc_font_size=\"desktop:24px;\" desc_font_color=\"#ffffff\"]Sri Lankan Market[/bsf-info-box][/vc_column_inner][/vc_row_inner][vc_row_inner equal_height=\"yes\" css=\".vc_custom_1662370166856{margin-top: 20px !important;margin-right: 50px !important;margin-left: 50px !important;}\"][vc_column_inner width=\"5/12\"][vc_column_text]FARMCHEMIE is a world-renowned manufacturer of feed additives and feed supplements. We offer our FarmStar and PetStar branded products to the international markets We provide toll-manufacturing services to globally recognized marketing companies for the Asian &amp; African markets. Our manufacturing plant is equipped with fully automated production lines from Bühler.[/vc_column_text][/vc_column_inner][vc_column_inner width=\"2/12\"][/vc_column_inner][vc_column_inner width=\"5/12\"][vc_column_text]FARMCHEMIE offers an island wide distribution, technical consultation and poultry vaccination services of high-quality animal healthcare products from world-renowned suppliers.\r\nWe offer both locally manufactured and imported products to cater the poultry, dairy, swine, pet-care and aqua markets.[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner width=\"1/2\"][ult_buttons btn_title=\"READ MORE\" btn_align=\"ubtn-center\" btn_size=\"ubtn-custom\" btn_width=\"300\" btn_height=\"60\" btn_title_color=\"#6e368d\" btn_bg_color=\"rgba(224,224,224,0.01)\" icon=\"dt-icon-the7-menu-014\" icon_size=\"40\" icon_color=\"#6e368d\" btn_icon_pos=\"ubtn-sep-icon-at-right\" btn_font_style=\"font-weight:bold;\" btn_font_size=\"desktop:24px;\"][/vc_column_inner][vc_column_inner width=\"1/2\"][ult_buttons btn_title=\"READ MORE\" btn_align=\"ubtn-center\" btn_size=\"ubtn-custom\" btn_width=\"300\" btn_height=\"60\" btn_title_color=\"#089548\" btn_bg_color=\"rgba(224,224,224,0.01)\" icon=\"dt-icon-the7-menu-013\" icon_size=\"40\" icon_color=\"#089548\" btn_icon_pos=\"ubtn-sep-icon-at-left\" btn_font_style=\"font-weight:bold;\" btn_font_size=\"desktop:24px;\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row full_width=\"stretch_row_content\" full_height=\"yes\" columns_placement=\"top\" bg_type=\"image\" parallax_style=\"vcpb-default\" bg_image_new=\"id^2559|url^https://farmchemie.yasithawd.com/wp-content/uploads/2022/09/rowimg_mod_3.jpg|caption^null|alt^null|title^rowimg_mod_3|description^null\" bg_image_repeat=\"no-repeat\"][vc_column][ultimate_heading main_heading=\"SPIRIT OF INNOVATION IN ANIMAL HEALTH\" main_heading_color=\"#6e368d\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:48px;\"][/ultimate_heading][vc_empty_space height=\"300px\"][vc_row_inner content_placement=\"bottom\" css=\".vc_custom_1662372188860{padding-right: 10px !important;padding-left: 10px !important;}\"][vc_column_inner width=\"1/12\" css=\".vc_custom_1662373769628{background-color: rgba(255,255,255,0.3) !important;*background-color: rgb(255,255,255) !important;}\"][vc_single_image image=\"2567\" img_size=\"full\" alignment=\"center\"][/vc_column_inner][vc_column_inner width=\"3/12\"][/vc_column_inner][vc_column_inner width=\"3/12\" css=\".vc_custom_1662371690284{background-color: #6e368d !important;}\"][vc_single_image image=\"2566\" img_size=\"full\" alignment=\"center\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row]','Home2','','inherit','closed','closed','','2525-revision-v1','','','2022-09-05 10:29:33','2022-09-05 10:29:33','',2525,'https://farmchemie.yasithawd.com/?p=2580',0,'revision','',0),(2581,1,'2022-09-05 10:30:46','2022-09-05 10:30:46','[vc_row full_width=\"stretch_row_content\" bg_type=\"image\" parallax_style=\"vcpb-default\" bg_image_new=\"id^2524|url^https://farmchemie.yasithawd.com/wp-content/uploads/2022/09/marketbgimg1.png|caption^null|alt^null|title^marketbgimg1|description^null\" bg_image_repeat=\"no-repeat\"][vc_column][ultimate_heading main_heading=\"SELECT YOUR MARKET/REGION\" main_heading_color=\"#6e368d\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:48px;\"][/ultimate_heading][vc_empty_space height=\"300px\" css=\".vc_custom_1662363666143{background-image: url(https://farmchemie.yasithawd.com/wp-content/uploads/2022/09/marketbgimg1-sp.png?id=2527) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\"][vc_row_inner][vc_column_inner el_class=\"cborder1\" width=\"1/3\" css=\".vc_custom_1662367183321{background-color: #6e368d !important;}\"][bsf-info-box icon_type=\"custom\" icon_img=\"id^2537|url^https://farmchemie.yasithawd.com/wp-content/uploads/2022/09/earthicon-1.png|caption^null|alt^null|title^earthicon-1|description^null\" img_width=\"100\" title=\"Global\" pos=\"right\" title_font_style=\"font-weight:bold;\" title_font_size=\"desktop:48px;\" title_font_color=\"#ffffff\" desc_font_size=\"desktop:24px;\" desc_font_color=\"#ffffff\"]International Market[/bsf-info-box][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\" css=\".vc_custom_1662370098614{background-color: #089548 !important;}\"][bsf-info-box icon_type=\"custom\" icon_img=\"id^2536|url^https://farmchemie.yasithawd.com/wp-content/uploads/2022/09/srilankaicon-1.png|caption^null|alt^null|title^srilankaicon-1|description^null\" img_width=\"100\" title=\"Local\" pos=\"left\" title_font_style=\"font-weight:bold;\" title_font_size=\"desktop:48px;\" title_font_color=\"#ffffff\" desc_font_size=\"desktop:24px;\" desc_font_color=\"#ffffff\"]Sri Lankan Market[/bsf-info-box][/vc_column_inner][/vc_row_inner][vc_row_inner equal_height=\"yes\" css=\".vc_custom_1662370166856{margin-top: 20px !important;margin-right: 50px !important;margin-left: 50px !important;}\"][vc_column_inner width=\"5/12\"][vc_column_text]FARMCHEMIE is a world-renowned manufacturer of feed additives and feed supplements. We offer our FarmStar and PetStar branded products to the international markets We provide toll-manufacturing services to globally recognized marketing companies for the Asian &amp; African markets. Our manufacturing plant is equipped with fully automated production lines from Bühler.[/vc_column_text][/vc_column_inner][vc_column_inner width=\"2/12\"][/vc_column_inner][vc_column_inner width=\"5/12\"][vc_column_text]FARMCHEMIE offers an island wide distribution, technical consultation and poultry vaccination services of high-quality animal healthcare products from world-renowned suppliers.\r\nWe offer both locally manufactured and imported products to cater the poultry, dairy, swine, pet-care and aqua markets.[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner width=\"1/2\"][ult_buttons btn_title=\"READ MORE\" btn_align=\"ubtn-center\" btn_size=\"ubtn-custom\" btn_width=\"300\" btn_height=\"60\" btn_title_color=\"#6e368d\" btn_bg_color=\"rgba(224,224,224,0.01)\" icon=\"dt-icon-the7-menu-014\" icon_size=\"40\" icon_color=\"#6e368d\" btn_icon_pos=\"ubtn-sep-icon-at-right\" btn_font_style=\"font-weight:bold;\" btn_font_size=\"desktop:24px;\"][/vc_column_inner][vc_column_inner width=\"1/2\"][ult_buttons btn_title=\"READ MORE\" btn_align=\"ubtn-center\" btn_size=\"ubtn-custom\" btn_width=\"300\" btn_height=\"60\" btn_title_color=\"#089548\" btn_bg_color=\"rgba(224,224,224,0.01)\" icon=\"dt-icon-the7-menu-013\" icon_size=\"40\" icon_color=\"#089548\" btn_icon_pos=\"ubtn-sep-icon-at-left\" btn_font_style=\"font-weight:bold;\" btn_font_size=\"desktop:24px;\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row full_width=\"stretch_row_content\" full_height=\"yes\" columns_placement=\"top\" bg_type=\"image\" parallax_style=\"vcpb-default\" bg_image_new=\"id^2559|url^https://farmchemie.yasithawd.com/wp-content/uploads/2022/09/rowimg_mod_3.jpg|caption^null|alt^null|title^rowimg_mod_3|description^null\" bg_image_repeat=\"no-repeat\"][vc_column][ultimate_heading main_heading=\"SPIRIT OF INNOVATION IN ANIMAL HEALTH\" main_heading_color=\"#6e368d\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:48px;\"][/ultimate_heading][vc_empty_space height=\"300px\"][vc_row_inner content_placement=\"bottom\" css=\".vc_custom_1662372188860{padding-right: 10px !important;padding-left: 10px !important;}\"][vc_column_inner width=\"6/12\" css=\".vc_custom_1662373769628{background-color: rgba(255,255,255,0.3) !important;*background-color: rgb(255,255,255) !important;}\"][vc_single_image image=\"2567\" img_size=\"full\" alignment=\"center\"][/vc_column_inner][vc_column_inner width=\"3/12\"][/vc_column_inner][vc_column_inner width=\"3/12\" css=\".vc_custom_1662371690284{background-color: #6e368d !important;}\"][vc_single_image image=\"2566\" img_size=\"full\" alignment=\"center\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row]','Home2','','inherit','closed','closed','','2525-revision-v1','','','2022-09-05 10:30:46','2022-09-05 10:30:46','',2525,'https://farmchemie.yasithawd.com/?p=2581',0,'revision','',0),(2582,1,'2022-09-06 04:46:49','2022-09-06 04:46:49','[vc_row full_width=\"stretch_row_content\" bg_type=\"image\" parallax_style=\"vcpb-default\" bg_image_new=\"id^2524|url^https://farmchemie.yasithawd.com/wp-content/uploads/2022/09/marketbgimg1.png|caption^null|alt^null|title^marketbgimg1|description^null\" bg_image_repeat=\"no-repeat\"][vc_column][ultimate_heading main_heading=\"SELECT YOUR MARKET/REGION\" main_heading_color=\"#6e368d\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:48px;\"][/ultimate_heading][vc_empty_space height=\"300px\" css=\".vc_custom_1662363666143{background-image: url(https://farmchemie.yasithawd.com/wp-content/uploads/2022/09/marketbgimg1-sp.png?id=2527) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\"][vc_row_inner][vc_column_inner el_class=\"cborder1\" width=\"1/3\" css=\".vc_custom_1662367183321{background-color: #6e368d !important;}\"][bsf-info-box icon_type=\"custom\" icon_img=\"id^2537|url^https://farmchemie.yasithawd.com/wp-content/uploads/2022/09/earthicon-1.png|caption^null|alt^null|title^earthicon-1|description^null\" img_width=\"100\" title=\"Global\" pos=\"right\" title_font_style=\"font-weight:bold;\" title_font_size=\"desktop:48px;\" title_font_color=\"#ffffff\" desc_font_size=\"desktop:24px;\" desc_font_color=\"#ffffff\"]International Market[/bsf-info-box][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\" css=\".vc_custom_1662370098614{background-color: #089548 !important;}\"][bsf-info-box icon_type=\"custom\" icon_img=\"id^2536|url^https://farmchemie.yasithawd.com/wp-content/uploads/2022/09/srilankaicon-1.png|caption^null|alt^null|title^srilankaicon-1|description^null\" img_width=\"100\" title=\"Local\" pos=\"left\" title_font_style=\"font-weight:bold;\" title_font_size=\"desktop:48px;\" title_font_color=\"#ffffff\" desc_font_size=\"desktop:24px;\" desc_font_color=\"#ffffff\"]Sri Lankan Market[/bsf-info-box][/vc_column_inner][/vc_row_inner][vc_row_inner equal_height=\"yes\" css=\".vc_custom_1662370166856{margin-top: 20px !important;margin-right: 50px !important;margin-left: 50px !important;}\"][vc_column_inner width=\"5/12\"][vc_column_text]FARMCHEMIE is a world-renowned manufacturer of feed additives and feed supplements. We offer our FarmStar and PetStar branded products to the international markets We provide toll-manufacturing services to globally recognized marketing companies for the Asian &amp; African markets. Our manufacturing plant is equipped with fully automated production lines from Bühler.[/vc_column_text][/vc_column_inner][vc_column_inner width=\"2/12\"][/vc_column_inner][vc_column_inner width=\"5/12\"][vc_column_text]FARMCHEMIE offers an island wide distribution, technical consultation and poultry vaccination services of high-quality animal healthcare products from world-renowned suppliers.\r\nWe offer both locally manufactured and imported products to cater the poultry, dairy, swine, pet-care and aqua markets.[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner width=\"1/2\"][ult_buttons btn_title=\"READ MORE\" btn_align=\"ubtn-center\" btn_size=\"ubtn-custom\" btn_width=\"300\" btn_height=\"60\" btn_title_color=\"#6e368d\" btn_bg_color=\"rgba(224,224,224,0.01)\" icon=\"dt-icon-the7-menu-014\" icon_size=\"40\" icon_color=\"#6e368d\" btn_icon_pos=\"ubtn-sep-icon-at-right\" btn_font_style=\"font-weight:bold;\" btn_font_size=\"desktop:24px;\"][/vc_column_inner][vc_column_inner width=\"1/2\"][ult_buttons btn_title=\"READ MORE\" btn_align=\"ubtn-center\" btn_size=\"ubtn-custom\" btn_width=\"300\" btn_height=\"60\" btn_title_color=\"#089548\" btn_bg_color=\"rgba(224,224,224,0.01)\" icon=\"dt-icon-the7-menu-013\" icon_size=\"40\" icon_color=\"#089548\" btn_icon_pos=\"ubtn-sep-icon-at-left\" btn_font_style=\"font-weight:bold;\" btn_font_size=\"desktop:24px;\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row full_width=\"stretch_row_content\" full_height=\"yes\" columns_placement=\"top\" bg_type=\"image\" parallax_style=\"vcpb-default\" bg_image_new=\"id^2559|url^https://farmchemie.yasithawd.com/wp-content/uploads/2022/09/rowimg_mod_3.jpg|caption^null|alt^null|title^rowimg_mod_3|description^null\" bg_image_repeat=\"no-repeat\"][vc_column][ultimate_heading main_heading=\"SPIRIT OF INNOVATION IN ANIMAL HEALTH\" main_heading_color=\"#6e368d\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:48px;\"][/ultimate_heading][vc_empty_space height=\"300px\"][vc_row_inner content_placement=\"bottom\" css=\".vc_custom_1662372188860{padding-right: 10px !important;padding-left: 10px !important;}\"][vc_column_inner width=\"1/12\" css=\".vc_custom_1662439605469{background-color: rgba(255,255,255,0.5) !important;*background-color: rgb(255,255,255) !important;}\"][vc_single_image image=\"2567\" img_size=\"full\" alignment=\"center\"][/vc_column_inner][vc_column_inner width=\"3/12\"][/vc_column_inner][vc_column_inner width=\"3/12\" css=\".vc_custom_1662371690284{background-color: #6e368d !important;}\"][vc_single_image image=\"2566\" img_size=\"full\" alignment=\"center\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row]','Home2','','inherit','closed','closed','','2525-revision-v1','','','2022-09-06 04:46:49','2022-09-06 04:46:49','',2525,'https://farmchemie.yasithawd.com/?p=2582',0,'revision','',0),(2583,1,'2022-09-06 06:52:05','2022-09-06 06:52:05','[vc_row full_width=\"stretch_row_content\" bg_type=\"image\" parallax_style=\"vcpb-default\" bg_image_new=\"id^2524|url^https://farmchemie.yasithawd.com/wp-content/uploads/2022/09/marketbgimg1.png|caption^null|alt^null|title^marketbgimg1|description^null\" bg_image_repeat=\"no-repeat\"][vc_column][ultimate_heading main_heading=\"SELECT YOUR MARKET/REGION\" main_heading_color=\"#6e368d\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:48px;\"][/ultimate_heading][vc_empty_space height=\"300px\" css=\".vc_custom_1662363666143{background-image: url(https://farmchemie.yasithawd.com/wp-content/uploads/2022/09/marketbgimg1-sp.png?id=2527) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\"][vc_row_inner][vc_column_inner el_class=\"cborder1\" width=\"1/3\" css=\".vc_custom_1662367183321{background-color: #6e368d !important;}\"][bsf-info-box icon_type=\"custom\" icon_img=\"id^2537|url^https://farmchemie.yasithawd.com/wp-content/uploads/2022/09/earthicon-1.png|caption^null|alt^null|title^earthicon-1|description^null\" img_width=\"100\" title=\"Global\" pos=\"right\" title_font_style=\"font-weight:bold;\" title_font_size=\"desktop:48px;\" title_font_color=\"#ffffff\" desc_font_size=\"desktop:24px;\" desc_font_color=\"#ffffff\"]International Market[/bsf-info-box][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\" css=\".vc_custom_1662370098614{background-color: #089548 !important;}\"][bsf-info-box icon_type=\"custom\" icon_img=\"id^2536|url^https://farmchemie.yasithawd.com/wp-content/uploads/2022/09/srilankaicon-1.png|caption^null|alt^null|title^srilankaicon-1|description^null\" img_width=\"100\" title=\"Local\" pos=\"left\" title_font_style=\"font-weight:bold;\" title_font_size=\"desktop:48px;\" title_font_color=\"#ffffff\" desc_font_size=\"desktop:24px;\" desc_font_color=\"#ffffff\"]Sri Lankan Market[/bsf-info-box][/vc_column_inner][/vc_row_inner][vc_row_inner equal_height=\"yes\" css=\".vc_custom_1662370166856{margin-top: 20px !important;margin-right: 50px !important;margin-left: 50px !important;}\"][vc_column_inner width=\"5/12\"][vc_column_text]FARMCHEMIE is a world-renowned manufacturer of feed additives and feed supplements. We offer our FarmStar and PetStar branded products to the international markets We provide toll-manufacturing services to globally recognized marketing companies for the Asian &amp; African markets. Our manufacturing plant is equipped with fully automated production lines from Bühler.[/vc_column_text][/vc_column_inner][vc_column_inner width=\"2/12\"][/vc_column_inner][vc_column_inner width=\"5/12\"][vc_column_text]FARMCHEMIE offers an island wide distribution, technical consultation and poultry vaccination services of high-quality animal healthcare products from world-renowned suppliers.\r\nWe offer both locally manufactured and imported products to cater the poultry, dairy, swine, pet-care and aqua markets.[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner width=\"1/2\"][ult_buttons btn_title=\"READ MORE\" btn_align=\"ubtn-center\" btn_size=\"ubtn-custom\" btn_width=\"300\" btn_height=\"60\" btn_title_color=\"#6e368d\" btn_bg_color=\"rgba(224,224,224,0.01)\" icon=\"dt-icon-the7-menu-014\" icon_size=\"40\" icon_color=\"#6e368d\" btn_icon_pos=\"ubtn-sep-icon-at-right\" btn_font_style=\"font-weight:bold;\" btn_font_size=\"desktop:24px;\"][/vc_column_inner][vc_column_inner width=\"1/2\"][ult_buttons btn_title=\"READ MORE\" btn_align=\"ubtn-center\" btn_size=\"ubtn-custom\" btn_width=\"300\" btn_height=\"60\" btn_title_color=\"#089548\" btn_bg_color=\"rgba(224,224,224,0.01)\" icon=\"dt-icon-the7-menu-013\" icon_size=\"40\" icon_color=\"#089548\" btn_icon_pos=\"ubtn-sep-icon-at-left\" btn_font_style=\"font-weight:bold;\" btn_font_size=\"desktop:24px;\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row full_width=\"stretch_row_content\" full_height=\"yes\" columns_placement=\"top\" bg_type=\"image\" parallax_style=\"vcpb-default\" bg_image_new=\"id^2559|url^https://farmchemie.yasithawd.com/wp-content/uploads/2022/09/rowimg_mod_3.jpg|caption^null|alt^null|title^rowimg_mod_3|description^null\" bg_image_repeat=\"no-repeat\"][vc_column][ultimate_heading main_heading=\"SPIRIT OF INNOVATION IN ANIMAL HEALTH\" main_heading_color=\"#6e368d\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:48px;\"][/ultimate_heading][vc_empty_space height=\"300px\"][vc_row_inner content_placement=\"bottom\" css=\".vc_custom_1662372188860{padding-right: 10px !important;padding-left: 10px !important;}\"][vc_column_inner width=\"6/12\" css=\".vc_custom_1662439605469{background-color: rgba(255,255,255,0.5) !important;*background-color: rgb(255,255,255) !important;}\"][vc_single_image image=\"2567\" img_size=\"full\" alignment=\"center\"][/vc_column_inner][vc_column_inner width=\"3/12\"][/vc_column_inner][vc_column_inner width=\"3/12\" css=\".vc_custom_1662371690284{background-color: #6e368d !important;}\"][vc_single_image image=\"2566\" img_size=\"full\" alignment=\"center\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row]','Home2','','inherit','closed','closed','','2525-revision-v1','','','2022-09-06 06:52:05','2022-09-06 06:52:05','',2525,'https://farmchemie.yasithawd.com/?p=2583',0,'revision','',0),(2584,1,'2022-09-06 06:54:02','2022-09-06 06:54:02','[vc_row full_width=\"stretch_row_content\" bg_type=\"image\" parallax_style=\"vcpb-default\" bg_image_new=\"id^2524|url^https://farmchemie.yasithawd.com/wp-content/uploads/2022/09/marketbgimg1.png|caption^null|alt^null|title^marketbgimg1|description^null\" bg_image_repeat=\"no-repeat\"][vc_column][ultimate_heading main_heading=\"SELECT YOUR MARKET/REGION\" main_heading_color=\"#6e368d\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:48px;\"][/ultimate_heading][vc_empty_space height=\"300px\" css=\".vc_custom_1662447237222{margin: 0px !important;padding: 0px !important;background-image: url(https://farmchemie.yasithawd.com/wp-content/uploads/2022/09/marketbgimg1-sp.png?id=2527) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\"][vc_row_inner][vc_column_inner el_class=\"cborder1\" width=\"1/3\" css=\".vc_custom_1662367183321{background-color: #6e368d !important;}\"][bsf-info-box icon_type=\"custom\" icon_img=\"id^2537|url^https://farmchemie.yasithawd.com/wp-content/uploads/2022/09/earthicon-1.png|caption^null|alt^null|title^earthicon-1|description^null\" img_width=\"100\" title=\"Global\" pos=\"right\" title_font_style=\"font-weight:bold;\" title_font_size=\"desktop:48px;\" title_font_color=\"#ffffff\" desc_font_size=\"desktop:24px;\" desc_font_color=\"#ffffff\"]International Market[/bsf-info-box][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\" css=\".vc_custom_1662370098614{background-color: #089548 !important;}\"][bsf-info-box icon_type=\"custom\" icon_img=\"id^2536|url^https://farmchemie.yasithawd.com/wp-content/uploads/2022/09/srilankaicon-1.png|caption^null|alt^null|title^srilankaicon-1|description^null\" img_width=\"100\" title=\"Local\" pos=\"left\" title_font_style=\"font-weight:bold;\" title_font_size=\"desktop:48px;\" title_font_color=\"#ffffff\" desc_font_size=\"desktop:24px;\" desc_font_color=\"#ffffff\"]Sri Lankan Market[/bsf-info-box][/vc_column_inner][/vc_row_inner][vc_row_inner equal_height=\"yes\" css=\".vc_custom_1662370166856{margin-top: 20px !important;margin-right: 50px !important;margin-left: 50px !important;}\"][vc_column_inner width=\"5/12\"][vc_column_text]FARMCHEMIE is a world-renowned manufacturer of feed additives and feed supplements. We offer our FarmStar and PetStar branded products to the international markets We provide toll-manufacturing services to globally recognized marketing companies for the Asian &amp; African markets. Our manufacturing plant is equipped with fully automated production lines from Bühler.[/vc_column_text][/vc_column_inner][vc_column_inner width=\"2/12\"][/vc_column_inner][vc_column_inner width=\"5/12\"][vc_column_text]FARMCHEMIE offers an island wide distribution, technical consultation and poultry vaccination services of high-quality animal healthcare products from world-renowned suppliers.\r\nWe offer both locally manufactured and imported products to cater the poultry, dairy, swine, pet-care and aqua markets.[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner width=\"1/2\"][ult_buttons btn_title=\"READ MORE\" btn_align=\"ubtn-center\" btn_size=\"ubtn-custom\" btn_width=\"300\" btn_height=\"60\" btn_title_color=\"#6e368d\" btn_bg_color=\"rgba(224,224,224,0.01)\" icon=\"dt-icon-the7-menu-014\" icon_size=\"40\" icon_color=\"#6e368d\" btn_icon_pos=\"ubtn-sep-icon-at-right\" btn_font_style=\"font-weight:bold;\" btn_font_size=\"desktop:24px;\"][/vc_column_inner][vc_column_inner width=\"1/2\"][ult_buttons btn_title=\"READ MORE\" btn_align=\"ubtn-center\" btn_size=\"ubtn-custom\" btn_width=\"300\" btn_height=\"60\" btn_title_color=\"#089548\" btn_bg_color=\"rgba(224,224,224,0.01)\" icon=\"dt-icon-the7-menu-013\" icon_size=\"40\" icon_color=\"#089548\" btn_icon_pos=\"ubtn-sep-icon-at-left\" btn_font_style=\"font-weight:bold;\" btn_font_size=\"desktop:24px;\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row full_width=\"stretch_row_content\" full_height=\"yes\" columns_placement=\"top\" bg_type=\"image\" parallax_style=\"vcpb-default\" bg_image_new=\"id^2559|url^https://farmchemie.yasithawd.com/wp-content/uploads/2022/09/rowimg_mod_3.jpg|caption^null|alt^null|title^rowimg_mod_3|description^null\" bg_image_repeat=\"no-repeat\"][vc_column][ultimate_heading main_heading=\"SPIRIT OF INNOVATION IN ANIMAL HEALTH\" main_heading_color=\"#6e368d\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:48px;\"][/ultimate_heading][vc_empty_space height=\"300px\"][vc_row_inner content_placement=\"bottom\" css=\".vc_custom_1662372188860{padding-right: 10px !important;padding-left: 10px !important;}\"][vc_column_inner width=\"6/12\" css=\".vc_custom_1662439605469{background-color: rgba(255,255,255,0.5) !important;*background-color: rgb(255,255,255) !important;}\"][vc_single_image image=\"2567\" img_size=\"full\" alignment=\"center\"][/vc_column_inner][vc_column_inner width=\"3/12\"][/vc_column_inner][vc_column_inner width=\"3/12\" css=\".vc_custom_1662371690284{background-color: #6e368d !important;}\"][vc_single_image image=\"2566\" img_size=\"full\" alignment=\"center\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row]','Home2','','inherit','closed','closed','','2525-revision-v1','','','2022-09-06 06:54:02','2022-09-06 06:54:02','',2525,'https://farmchemie.yasithawd.com/?p=2584',0,'revision','',0),(2585,1,'2022-09-06 09:29:55','2022-09-06 09:29:55','[vc_row full_width=\"stretch_row_content\" bg_type=\"image\" parallax_style=\"vcpb-default\" bg_image_new=\"id^2524|url^https://farmchemie.yasithawd.com/wp-content/uploads/2022/09/marketbgimg1.png|caption^null|alt^null|title^marketbgimg1|description^null\" bg_image_repeat=\"no-repeat\"][vc_column][ultimate_heading main_heading=\"SELECT YOUR MARKET/REGION\" main_heading_color=\"#6e368d\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:48px;\"][/ultimate_heading][vc_empty_space height=\"300px\" css=\".vc_custom_1662447237222{margin: 0px !important;padding: 0px !important;background-image: url(https://farmchemie.yasithawd.com/wp-content/uploads/2022/09/marketbgimg1-sp.png?id=2527) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\"][vc_row_inner][vc_column_inner el_class=\"cborder1\" width=\"1/3\" css=\".vc_custom_1662367183321{background-color: #6e368d !important;}\"][bsf-info-box icon_type=\"custom\" icon_img=\"id^2537|url^https://farmchemie.yasithawd.com/wp-content/uploads/2022/09/earthicon-1.png|caption^null|alt^null|title^earthicon-1|description^null\" img_width=\"100\" title=\"Global\" pos=\"right\" title_font_style=\"font-weight:bold;\" title_font_size=\"desktop:48px;\" title_font_color=\"#ffffff\" desc_font_size=\"desktop:24px;\" desc_font_color=\"#ffffff\"]International Market[/bsf-info-box][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\" css=\".vc_custom_1662370098614{background-color: #089548 !important;}\"][bsf-info-box icon_type=\"custom\" icon_img=\"id^2536|url^https://farmchemie.yasithawd.com/wp-content/uploads/2022/09/srilankaicon-1.png|caption^null|alt^null|title^srilankaicon-1|description^null\" img_width=\"100\" title=\"Local\" pos=\"left\" title_font_style=\"font-weight:bold;\" title_font_size=\"desktop:48px;\" title_font_color=\"#ffffff\" desc_font_size=\"desktop:24px;\" desc_font_color=\"#ffffff\"]Sri Lankan Market[/bsf-info-box][/vc_column_inner][/vc_row_inner][vc_row_inner equal_height=\"yes\" css=\".vc_custom_1662370166856{margin-top: 20px !important;margin-right: 50px !important;margin-left: 50px !important;}\"][vc_column_inner width=\"5/12\"][vc_column_text]FARMCHEMIE is a world-renowned manufacturer of feed additives and feed supplements. We offer our FarmStar and PetStar branded products to the international markets We provide toll-manufacturing services to globally recognized marketing companies for the Asian &amp; African markets. Our manufacturing plant is equipped with fully automated production lines from Bühler.[/vc_column_text][/vc_column_inner][vc_column_inner width=\"2/12\"][/vc_column_inner][vc_column_inner width=\"5/12\"][vc_column_text]FARMCHEMIE offers an island wide distribution, technical consultation and poultry vaccination services of high-quality animal healthcare products from world-renowned suppliers.\r\nWe offer both locally manufactured and imported products to cater the poultry, dairy, swine, pet-care and aqua markets.[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner width=\"1/2\"][ult_buttons btn_title=\"READ MORE\" btn_align=\"ubtn-center\" btn_size=\"ubtn-custom\" btn_width=\"300\" btn_height=\"60\" btn_title_color=\"#6e368d\" btn_bg_color=\"rgba(224,224,224,0.01)\" icon=\"dt-icon-the7-menu-014\" icon_size=\"40\" icon_color=\"#6e368d\" btn_icon_pos=\"ubtn-sep-icon-at-right\" btn_font_style=\"font-weight:bold;\" btn_font_size=\"desktop:24px;\"][/vc_column_inner][vc_column_inner width=\"1/2\"][ult_buttons btn_title=\"READ MORE\" btn_align=\"ubtn-center\" btn_size=\"ubtn-custom\" btn_width=\"300\" btn_height=\"60\" btn_title_color=\"#089548\" btn_bg_color=\"rgba(224,224,224,0.01)\" icon=\"dt-icon-the7-menu-013\" icon_size=\"40\" icon_color=\"#089548\" btn_icon_pos=\"ubtn-sep-icon-at-left\" btn_font_style=\"font-weight:bold;\" btn_font_size=\"desktop:24px;\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row full_width=\"stretch_row_content\" full_height=\"yes\" columns_placement=\"top\" bg_type=\"image\" parallax_style=\"vcpb-default\" bg_image_new=\"id^2559|url^https://farmchemie.yasithawd.com/wp-content/uploads/2022/09/rowimg_mod_3.jpg|caption^null|alt^null|title^rowimg_mod_3|description^null\" bg_image_repeat=\"no-repeat\"][vc_column][ultimate_heading main_heading=\"SPIRIT OF INNOVATION IN ANIMAL HEALTH\" main_heading_color=\"#6e368d\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:48px;\"][/ultimate_heading][vc_empty_space height=\"80%\"][vc_row_inner content_placement=\"bottom\" css=\".vc_custom_1662372188860{padding-right: 10px !important;padding-left: 10px !important;}\"][vc_column_inner width=\"6/12\" css=\".vc_custom_1662439605469{background-color: rgba(255,255,255,0.5) !important;*background-color: rgb(255,255,255) !important;}\"][vc_single_image image=\"2567\" img_size=\"full\" alignment=\"center\"][/vc_column_inner][vc_column_inner width=\"3/12\"][/vc_column_inner][vc_column_inner width=\"3/12\" css=\".vc_custom_1662371690284{background-color: #6e368d !important;}\"][vc_single_image image=\"2566\" img_size=\"full\" alignment=\"center\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row]','Home2','','inherit','closed','closed','','2525-revision-v1','','','2022-09-06 09:29:55','2022-09-06 09:29:55','',2525,'https://farmchemie.yasithawd.com/?p=2585',0,'revision','',0),(2587,1,'2022-09-06 09:35:10','2022-09-06 09:35:10','[vc_row full_width=\"stretch_row_content\" bg_type=\"image\" parallax_style=\"vcpb-default\" bg_image_new=\"id^2524|url^https://farmchemie.yasithawd.com/wp-content/uploads/2022/09/marketbgimg1.png|caption^null|alt^null|title^marketbgimg1|description^null\" bg_image_repeat=\"no-repeat\"][vc_column][ultimate_heading main_heading=\"SELECT YOUR MARKET/REGION\" main_heading_color=\"#6e368d\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:48px;\"][/ultimate_heading][vc_empty_space height=\"300px\" css=\".vc_custom_1662447237222{margin: 0px !important;padding: 0px !important;background-image: url(https://farmchemie.yasithawd.com/wp-content/uploads/2022/09/marketbgimg1-sp.png?id=2527) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\"][vc_row_inner][vc_column_inner el_class=\"cborder1\" width=\"1/3\" css=\".vc_custom_1662367183321{background-color: #6e368d !important;}\"][bsf-info-box icon_type=\"custom\" icon_img=\"id^2537|url^https://farmchemie.yasithawd.com/wp-content/uploads/2022/09/earthicon-1.png|caption^null|alt^null|title^earthicon-1|description^null\" img_width=\"100\" title=\"Global\" pos=\"right\" title_font_style=\"font-weight:bold;\" title_font_size=\"desktop:48px;\" title_font_color=\"#ffffff\" desc_font_size=\"desktop:24px;\" desc_font_color=\"#ffffff\"]International Market[/bsf-info-box][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\" css=\".vc_custom_1662370098614{background-color: #089548 !important;}\"][bsf-info-box icon_type=\"custom\" icon_img=\"id^2536|url^https://farmchemie.yasithawd.com/wp-content/uploads/2022/09/srilankaicon-1.png|caption^null|alt^null|title^srilankaicon-1|description^null\" img_width=\"100\" title=\"Local\" pos=\"left\" title_font_style=\"font-weight:bold;\" title_font_size=\"desktop:48px;\" title_font_color=\"#ffffff\" desc_font_size=\"desktop:24px;\" desc_font_color=\"#ffffff\"]Sri Lankan Market[/bsf-info-box][/vc_column_inner][/vc_row_inner][vc_row_inner equal_height=\"yes\" css=\".vc_custom_1662370166856{margin-top: 20px !important;margin-right: 50px !important;margin-left: 50px !important;}\"][vc_column_inner width=\"5/12\"][vc_column_text]FARMCHEMIE is a world-renowned manufacturer of feed additives and feed supplements. We offer our FarmStar and PetStar branded products to the international markets We provide toll-manufacturing services to globally recognized marketing companies for the Asian &amp; African markets. Our manufacturing plant is equipped with fully automated production lines from Bühler.[/vc_column_text][/vc_column_inner][vc_column_inner width=\"2/12\"][/vc_column_inner][vc_column_inner width=\"5/12\"][vc_column_text]FARMCHEMIE offers an island wide distribution, technical consultation and poultry vaccination services of high-quality animal healthcare products from world-renowned suppliers.\r\nWe offer both locally manufactured and imported products to cater the poultry, dairy, swine, pet-care and aqua markets.[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner width=\"1/2\"][ult_buttons btn_title=\"READ MORE\" btn_align=\"ubtn-center\" btn_size=\"ubtn-custom\" btn_width=\"300\" btn_height=\"60\" btn_title_color=\"#6e368d\" btn_bg_color=\"rgba(224,224,224,0.01)\" icon=\"dt-icon-the7-menu-014\" icon_size=\"40\" icon_color=\"#6e368d\" btn_icon_pos=\"ubtn-sep-icon-at-right\" btn_font_style=\"font-weight:bold;\" btn_font_size=\"desktop:24px;\"][/vc_column_inner][vc_column_inner width=\"1/2\"][ult_buttons btn_title=\"READ MORE\" btn_align=\"ubtn-center\" btn_size=\"ubtn-custom\" btn_width=\"300\" btn_height=\"60\" btn_title_color=\"#089548\" btn_bg_color=\"rgba(224,224,224,0.01)\" icon=\"dt-icon-the7-menu-013\" icon_size=\"40\" icon_color=\"#089548\" btn_icon_pos=\"ubtn-sep-icon-at-left\" btn_font_style=\"font-weight:bold;\" btn_font_size=\"desktop:24px;\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row full_width=\"stretch_row_content\" full_height=\"yes\" columns_placement=\"top\" bg_type=\"image\" parallax_style=\"vcpb-default\" bg_image_new=\"id^2559|url^https://farmchemie.yasithawd.com/wp-content/uploads/2022/09/rowimg_mod_3.jpg|caption^null|alt^null|title^rowimg_mod_3|description^null\" bg_image_repeat=\"no-repeat\"][vc_column][ultimate_heading main_heading=\"SPIRIT OF INNOVATION IN ANIMAL HEALTH\" main_heading_color=\"#6e368d\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:48px;\"][/ultimate_heading][vc_empty_space height=\"500px\"][vc_row_inner content_placement=\"bottom\" css=\".vc_custom_1662372188860{padding-right: 10px !important;padding-left: 10px !important;}\"][vc_column_inner width=\"6/12\" css=\".vc_custom_1662439605469{background-color: rgba(255,255,255,0.5) !important;*background-color: rgb(255,255,255) !important;}\"][vc_single_image image=\"2567\" img_size=\"full\" alignment=\"center\"][/vc_column_inner][vc_column_inner width=\"3/12\"][/vc_column_inner][vc_column_inner width=\"3/12\" css=\".vc_custom_1662371690284{background-color: #6e368d !important;}\"][vc_single_image image=\"2566\" img_size=\"full\" alignment=\"center\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row]','Home2','','inherit','closed','closed','','2525-revision-v1','','','2022-09-06 09:35:10','2022-09-06 09:35:10','',2525,'https://farmchemie.yasithawd.com/?p=2587',0,'revision','',0),(2588,1,'2022-09-09 13:32:43','2022-09-09 13:32:43','[vc_row full_width=\"stretch_row_content\" bg_type=\"image\" parallax_style=\"vcpb-default\" bg_image_new=\"id^2524|url^https://farmchemie.yasithawd.com/wp-content/uploads/2022/09/marketbgimg1.png|caption^null|alt^null|title^marketbgimg1|description^null\" bg_image_repeat=\"no-repeat\" css=\".vc_custom_1662730336770{margin-right: 0px !important;margin-left: 0px !important;padding-right: 0px !important;padding-left: 0px !important;}\"][vc_column][ultimate_heading main_heading=\"SELECT YOUR MARKET/REGION\" main_heading_color=\"#6e368d\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:48px;\"][/ultimate_heading][vc_empty_space height=\"300px\" css=\".vc_custom_1662447237222{margin: 0px !important;padding: 0px !important;background-image: url(https://farmchemie.yasithawd.com/wp-content/uploads/2022/09/marketbgimg1-sp.png?id=2527) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\"][vc_row_inner][vc_column_inner el_class=\"customborderradius1\" width=\"1/3\" css=\".vc_custom_1662539141341{background-color: #6e368d !important;}\"][ult_animation_block animation=\"fadeIn\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][bsf-info-box icon_type=\"custom\" icon_img=\"id^2537|url^https://farmchemie.yasithawd.com/wp-content/uploads/2022/09/earthicon-1.png|caption^null|alt^null|title^earthicon-1|description^null\" img_width=\"100\" title=\"Global\" pos=\"right\" title_font_style=\"font-weight:bold;\" title_font_size=\"desktop:48px;\" title_font_color=\"#ffffff\" desc_font_size=\"desktop:24px;\" desc_font_color=\"#ffffff\"]International Market[/bsf-info-box][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner el_class=\"customborderradius1\" width=\"1/3\" css=\".vc_custom_1662539133598{background-color: #059444 !important;}\"][ult_animation_block animation=\"fadeIn\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][bsf-info-box icon_type=\"custom\" icon_img=\"id^2536|url^https://farmchemie.yasithawd.com/wp-content/uploads/2022/09/srilankaicon-1.png|caption^null|alt^null|title^srilankaicon-1|description^null\" img_width=\"100\" title=\"Local\" pos=\"left\" title_font_style=\"font-weight:bold;\" title_font_size=\"desktop:48px;\" title_font_color=\"#ffffff\" desc_font_size=\"desktop:24px;\" desc_font_color=\"#ffffff\"]Sri Lankan Market[/bsf-info-box][/ult_animation_block][/vc_column_inner][/vc_row_inner][vc_row_inner equal_height=\"yes\" css=\".vc_custom_1662370166856{margin-top: 20px !important;margin-right: 50px !important;margin-left: 50px !important;}\"][vc_column_inner width=\"5/12\"][vc_column_text]FARMCHEMIE is a world-renowned manufacturer of feed additives and feed supplements. We offer our FarmStar and PetStar branded products to the international markets.[/vc_column_text][/vc_column_inner][vc_column_inner width=\"2/12\"][/vc_column_inner][vc_column_inner width=\"5/12\"][vc_column_text]FARMCHEMIE offers an island wide distribution, technical consultation and poultry vaccination services of high-quality animal healthcare products from world-renowned suppliers.[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_row_inner equal_height=\"yes\" content_placement=\"middle\" css=\".vc_custom_1662460080909{margin-top: 20px !important;margin-right: 50px !important;margin-bottom: 10px !important;margin-left: 50px !important;}\"][vc_column_inner width=\"2/12\"][vc_single_image image=\"2599\" img_size=\"full\"][/vc_column_inner][vc_column_inner width=\"1/12\"][/vc_column_inner][vc_column_inner width=\"2/12\"][vc_single_image image=\"2598\" img_size=\"full\"][/vc_column_inner][vc_column_inner width=\"2/12\"][/vc_column_inner][vc_column_inner width=\"1/12\"][/vc_column_inner][vc_column_inner width=\"1/12\"][vc_single_image image=\"2593\" img_size=\"full\"][vc_single_image image=\"2596\" img_size=\"full\"][/vc_column_inner][vc_column_inner width=\"1/12\"][vc_single_image image=\"2595\" img_size=\"full\"][/vc_column_inner][vc_column_inner width=\"1/12\"][vc_single_image image=\"2594\" img_size=\"full\"][vc_single_image image=\"2597\" img_size=\"full\"][/vc_column_inner][vc_column_inner width=\"1/12\"][/vc_column_inner][/vc_row_inner][vc_row_inner equal_height=\"yes\" css=\".vc_custom_1662370166856{margin-top: 20px !important;margin-right: 50px !important;margin-left: 50px !important;}\"][vc_column_inner width=\"5/12\"][vc_column_text]We provide toll-manufacturing services to globally recognized marketing companies for the Asian &amp; African markets. Our manufacturing plant is equipped with fully automated production lines from Bühler.[/vc_column_text][/vc_column_inner][vc_column_inner width=\"2/12\"][/vc_column_inner][vc_column_inner width=\"5/12\"][vc_column_text]We offer both locally manufactured and imported products to cater the poultry, dairy, swine, pet-care and aqua markets.[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_row_inner equal_height=\"yes\" content_placement=\"middle\" css=\".vc_custom_1662460080909{margin-top: 20px !important;margin-right: 50px !important;margin-bottom: 10px !important;margin-left: 50px !important;}\"][vc_column_inner width=\"5/12\"][vc_single_image image=\"2600\" img_size=\"full\" alignment=\"center\"][/vc_column_inner][vc_column_inner width=\"2/12\"][/vc_column_inner][vc_column_inner width=\"5/12\"][vc_single_image image=\"2615\" img_size=\"full\" alignment=\"center\"][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner width=\"1/2\"][ult_buttons btn_title=\"READ MORE\" btn_align=\"ubtn-center\" btn_size=\"ubtn-custom\" btn_width=\"300\" btn_height=\"60\" btn_title_color=\"#6e368d\" btn_bg_color=\"rgba(224,224,224,0.01)\" icon=\"dt-icon-the7-menu-014\" icon_size=\"40\" icon_color=\"#6e368d\" btn_icon_pos=\"ubtn-sep-icon-at-right\" btn_font_style=\"font-weight:bold;\" btn_font_size=\"desktop:24px;\"][/vc_column_inner][vc_column_inner width=\"1/2\"][ult_buttons btn_title=\"READ MORE\" btn_align=\"ubtn-center\" btn_size=\"ubtn-custom\" btn_width=\"300\" btn_height=\"60\" btn_title_color=\"#059444\" btn_bg_color=\"rgba(224,224,224,0.01)\" icon=\"dt-icon-the7-menu-013\" icon_size=\"40\" icon_color=\"#059444\" btn_icon_pos=\"ubtn-sep-icon-at-left\" btn_font_style=\"font-weight:bold;\" btn_font_size=\"desktop:24px;\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row full_width=\"stretch_row_content_no_spaces\" full_height=\"yes\" columns_placement=\"top\" bg_type=\"image\" parallax_style=\"vcpb-default\" bg_image_new=\"id^2604|url^https://farmchemie.yasithawd.com/wp-content/uploads/2022/09/rowimg_mod_4HigherRes1.jpg|caption^null|alt^null|title^rowimg_mod_4HigherRes1|description^null\" bg_image_repeat=\"no-repeat\"][vc_column][ultimate_heading main_heading=\"SPIRIT OF INNOVATION IN ANIMAL HEALTH\" main_heading_color=\"#6e368d\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:48px;\"][/ultimate_heading][vc_row_inner css=\".vc_custom_1662456998651{padding-bottom: 500px !important;}\"][vc_column_inner][/vc_column_inner][/vc_row_inner][vc_row_inner content_placement=\"bottom\" css=\".vc_custom_1662458571859{padding-right: 0px !important;padding-bottom: 10px !important;padding-left: 0px !important;}\"][vc_column_inner el_class=\"customborderradius1\" width=\"6/12\" css=\".vc_custom_1662539148421{background-color: rgba(255,255,255,0.5) !important;*background-color: rgb(255,255,255) !important;}\"][vc_single_image image=\"2567\" img_size=\"full\" alignment=\"center\"][/vc_column_inner][vc_column_inner width=\"3/12\"][/vc_column_inner][vc_column_inner width=\"3/12\" css=\".vc_custom_1662371690284{background-color: #6e368d !important;}\"][vc_single_image image=\"2566\" img_size=\"full\" alignment=\"center\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row]','Home2','','inherit','closed','closed','','2525-autosave-v1','','','2022-09-09 13:32:43','2022-09-09 13:32:43','',2525,'https://farmchemie.yasithawd.com/?p=2588',0,'revision','',0),(2589,1,'2022-09-06 09:37:47','2022-09-06 09:37:47','[vc_row full_width=\"stretch_row_content\" bg_type=\"image\" parallax_style=\"vcpb-default\" bg_image_new=\"id^2524|url^https://farmchemie.yasithawd.com/wp-content/uploads/2022/09/marketbgimg1.png|caption^null|alt^null|title^marketbgimg1|description^null\" bg_image_repeat=\"no-repeat\"][vc_column][ultimate_heading main_heading=\"SELECT YOUR MARKET/REGION\" main_heading_color=\"#6e368d\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:48px;\"][/ultimate_heading][vc_empty_space height=\"300px\" css=\".vc_custom_1662447237222{margin: 0px !important;padding: 0px !important;background-image: url(https://farmchemie.yasithawd.com/wp-content/uploads/2022/09/marketbgimg1-sp.png?id=2527) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\"][vc_row_inner][vc_column_inner el_class=\"cborder1\" width=\"1/3\" css=\".vc_custom_1662367183321{background-color: #6e368d !important;}\"][bsf-info-box icon_type=\"custom\" icon_img=\"id^2537|url^https://farmchemie.yasithawd.com/wp-content/uploads/2022/09/earthicon-1.png|caption^null|alt^null|title^earthicon-1|description^null\" img_width=\"100\" title=\"Global\" pos=\"right\" title_font_style=\"font-weight:bold;\" title_font_size=\"desktop:48px;\" title_font_color=\"#ffffff\" desc_font_size=\"desktop:24px;\" desc_font_color=\"#ffffff\"]International Market[/bsf-info-box][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\" css=\".vc_custom_1662370098614{background-color: #089548 !important;}\"][bsf-info-box icon_type=\"custom\" icon_img=\"id^2536|url^https://farmchemie.yasithawd.com/wp-content/uploads/2022/09/srilankaicon-1.png|caption^null|alt^null|title^srilankaicon-1|description^null\" img_width=\"100\" title=\"Local\" pos=\"left\" title_font_style=\"font-weight:bold;\" title_font_size=\"desktop:48px;\" title_font_color=\"#ffffff\" desc_font_size=\"desktop:24px;\" desc_font_color=\"#ffffff\"]Sri Lankan Market[/bsf-info-box][/vc_column_inner][/vc_row_inner][vc_row_inner equal_height=\"yes\" css=\".vc_custom_1662370166856{margin-top: 20px !important;margin-right: 50px !important;margin-left: 50px !important;}\"][vc_column_inner width=\"5/12\"][vc_column_text]FARMCHEMIE is a world-renowned manufacturer of feed additives and feed supplements. We offer our FarmStar and PetStar branded products to the international markets We provide toll-manufacturing services to globally recognized marketing companies for the Asian &amp; African markets. Our manufacturing plant is equipped with fully automated production lines from Bühler.[/vc_column_text][/vc_column_inner][vc_column_inner width=\"2/12\"][/vc_column_inner][vc_column_inner width=\"5/12\"][vc_column_text]FARMCHEMIE offers an island wide distribution, technical consultation and poultry vaccination services of high-quality animal healthcare products from world-renowned suppliers.\r\nWe offer both locally manufactured and imported products to cater the poultry, dairy, swine, pet-care and aqua markets.[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner width=\"1/2\"][ult_buttons btn_title=\"READ MORE\" btn_align=\"ubtn-center\" btn_size=\"ubtn-custom\" btn_width=\"300\" btn_height=\"60\" btn_title_color=\"#6e368d\" btn_bg_color=\"rgba(224,224,224,0.01)\" icon=\"dt-icon-the7-menu-014\" icon_size=\"40\" icon_color=\"#6e368d\" btn_icon_pos=\"ubtn-sep-icon-at-right\" btn_font_style=\"font-weight:bold;\" btn_font_size=\"desktop:24px;\"][/vc_column_inner][vc_column_inner width=\"1/2\"][ult_buttons btn_title=\"READ MORE\" btn_align=\"ubtn-center\" btn_size=\"ubtn-custom\" btn_width=\"300\" btn_height=\"60\" btn_title_color=\"#089548\" btn_bg_color=\"rgba(224,224,224,0.01)\" icon=\"dt-icon-the7-menu-013\" icon_size=\"40\" icon_color=\"#089548\" btn_icon_pos=\"ubtn-sep-icon-at-left\" btn_font_style=\"font-weight:bold;\" btn_font_size=\"desktop:24px;\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row full_width=\"stretch_row_content\" full_height=\"yes\" columns_placement=\"top\" bg_type=\"image\" parallax_style=\"vcpb-default\" bg_image_new=\"id^2559|url^https://farmchemie.yasithawd.com/wp-content/uploads/2022/09/rowimg_mod_3.jpg|caption^null|alt^null|title^rowimg_mod_3|description^null\" bg_image_repeat=\"no-repeat\"][vc_column][ultimate_heading main_heading=\"SPIRIT OF INNOVATION IN ANIMAL HEALTH\" main_heading_color=\"#6e368d\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:48px;\"][/ultimate_heading][vc_row_inner css=\".vc_custom_1662456998651{padding-bottom: 500px !important;}\"][vc_column_inner][/vc_column_inner][/vc_row_inner][vc_row_inner content_placement=\"bottom\" css=\".vc_custom_1662372188860{padding-right: 10px !important;padding-left: 10px !important;}\"][vc_column_inner width=\"6/12\" css=\".vc_custom_1662439605469{background-color: rgba(255,255,255,0.5) !important;*background-color: rgb(255,255,255) !important;}\"][vc_single_image image=\"2567\" img_size=\"full\" alignment=\"center\"][/vc_column_inner][vc_column_inner width=\"3/12\"][/vc_column_inner][vc_column_inner width=\"3/12\" css=\".vc_custom_1662371690284{background-color: #6e368d !important;}\"][vc_single_image image=\"2566\" img_size=\"full\" alignment=\"center\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row]','Home2','','inherit','closed','closed','','2525-revision-v1','','','2022-09-06 09:37:47','2022-09-06 09:37:47','',2525,'https://farmchemie.yasithawd.com/?p=2589',0,'revision','',0),(2590,1,'2022-09-06 09:38:57','2022-09-06 09:38:57','[vc_row full_width=\"stretch_row_content\" bg_type=\"image\" parallax_style=\"vcpb-default\" bg_image_new=\"id^2524|url^https://farmchemie.yasithawd.com/wp-content/uploads/2022/09/marketbgimg1.png|caption^null|alt^null|title^marketbgimg1|description^null\" bg_image_repeat=\"no-repeat\"][vc_column][ultimate_heading main_heading=\"SELECT YOUR MARKET/REGION\" main_heading_color=\"#6e368d\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:48px;\"][/ultimate_heading][vc_empty_space height=\"300px\" css=\".vc_custom_1662447237222{margin: 0px !important;padding: 0px !important;background-image: url(https://farmchemie.yasithawd.com/wp-content/uploads/2022/09/marketbgimg1-sp.png?id=2527) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\"][vc_row_inner][vc_column_inner el_class=\"cborder1\" width=\"1/3\" css=\".vc_custom_1662367183321{background-color: #6e368d !important;}\"][bsf-info-box icon_type=\"custom\" icon_img=\"id^2537|url^https://farmchemie.yasithawd.com/wp-content/uploads/2022/09/earthicon-1.png|caption^null|alt^null|title^earthicon-1|description^null\" img_width=\"100\" title=\"Global\" pos=\"right\" title_font_style=\"font-weight:bold;\" title_font_size=\"desktop:48px;\" title_font_color=\"#ffffff\" desc_font_size=\"desktop:24px;\" desc_font_color=\"#ffffff\"]International Market[/bsf-info-box][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\" css=\".vc_custom_1662370098614{background-color: #089548 !important;}\"][bsf-info-box icon_type=\"custom\" icon_img=\"id^2536|url^https://farmchemie.yasithawd.com/wp-content/uploads/2022/09/srilankaicon-1.png|caption^null|alt^null|title^srilankaicon-1|description^null\" img_width=\"100\" title=\"Local\" pos=\"left\" title_font_style=\"font-weight:bold;\" title_font_size=\"desktop:48px;\" title_font_color=\"#ffffff\" desc_font_size=\"desktop:24px;\" desc_font_color=\"#ffffff\"]Sri Lankan Market[/bsf-info-box][/vc_column_inner][/vc_row_inner][vc_row_inner equal_height=\"yes\" css=\".vc_custom_1662370166856{margin-top: 20px !important;margin-right: 50px !important;margin-left: 50px !important;}\"][vc_column_inner width=\"5/12\"][vc_column_text]FARMCHEMIE is a world-renowned manufacturer of feed additives and feed supplements. We offer our FarmStar and PetStar branded products to the international markets We provide toll-manufacturing services to globally recognized marketing companies for the Asian &amp; African markets. Our manufacturing plant is equipped with fully automated production lines from Bühler.[/vc_column_text][/vc_column_inner][vc_column_inner width=\"2/12\"][/vc_column_inner][vc_column_inner width=\"5/12\"][vc_column_text]FARMCHEMIE offers an island wide distribution, technical consultation and poultry vaccination services of high-quality animal healthcare products from world-renowned suppliers.\r\nWe offer both locally manufactured and imported products to cater the poultry, dairy, swine, pet-care and aqua markets.[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner width=\"1/2\"][ult_buttons btn_title=\"READ MORE\" btn_align=\"ubtn-center\" btn_size=\"ubtn-custom\" btn_width=\"300\" btn_height=\"60\" btn_title_color=\"#6e368d\" btn_bg_color=\"rgba(224,224,224,0.01)\" icon=\"dt-icon-the7-menu-014\" icon_size=\"40\" icon_color=\"#6e368d\" btn_icon_pos=\"ubtn-sep-icon-at-right\" btn_font_style=\"font-weight:bold;\" btn_font_size=\"desktop:24px;\"][/vc_column_inner][vc_column_inner width=\"1/2\"][ult_buttons btn_title=\"READ MORE\" btn_align=\"ubtn-center\" btn_size=\"ubtn-custom\" btn_width=\"300\" btn_height=\"60\" btn_title_color=\"#089548\" btn_bg_color=\"rgba(224,224,224,0.01)\" icon=\"dt-icon-the7-menu-013\" icon_size=\"40\" icon_color=\"#089548\" btn_icon_pos=\"ubtn-sep-icon-at-left\" btn_font_style=\"font-weight:bold;\" btn_font_size=\"desktop:24px;\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row full_width=\"stretch_row_content_no_spaces\" full_height=\"yes\" columns_placement=\"top\" bg_type=\"image\" parallax_style=\"vcpb-default\" bg_image_new=\"id^2559|url^https://farmchemie.yasithawd.com/wp-content/uploads/2022/09/rowimg_mod_3.jpg|caption^null|alt^null|title^rowimg_mod_3|description^null\" bg_image_repeat=\"no-repeat\"][vc_column][ultimate_heading main_heading=\"SPIRIT OF INNOVATION IN ANIMAL HEALTH\" main_heading_color=\"#6e368d\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:48px;\"][/ultimate_heading][vc_row_inner css=\".vc_custom_1662456998651{padding-bottom: 500px !important;}\"][vc_column_inner][/vc_column_inner][/vc_row_inner][vc_row_inner content_placement=\"bottom\" css=\".vc_custom_1662372188860{padding-right: 10px !important;padding-left: 10px !important;}\"][vc_column_inner width=\"6/12\" css=\".vc_custom_1662439605469{background-color: rgba(255,255,255,0.5) !important;*background-color: rgb(255,255,255) !important;}\"][vc_single_image image=\"2567\" img_size=\"full\" alignment=\"center\"][/vc_column_inner][vc_column_inner width=\"3/12\"][/vc_column_inner][vc_column_inner width=\"3/12\" css=\".vc_custom_1662371690284{background-color: #6e368d !important;}\"][vc_single_image image=\"2566\" img_size=\"full\" alignment=\"center\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row]','Home2','','inherit','closed','closed','','2525-revision-v1','','','2022-09-06 09:38:57','2022-09-06 09:38:57','',2525,'https://farmchemie.yasithawd.com/?p=2590',0,'revision','',0),(2591,1,'2022-09-06 09:40:44','2022-09-06 09:40:44','[vc_row full_width=\"stretch_row_content\" bg_type=\"image\" parallax_style=\"vcpb-default\" bg_image_new=\"id^2524|url^https://farmchemie.yasithawd.com/wp-content/uploads/2022/09/marketbgimg1.png|caption^null|alt^null|title^marketbgimg1|description^null\" bg_image_repeat=\"no-repeat\"][vc_column][ultimate_heading main_heading=\"SELECT YOUR MARKET/REGION\" main_heading_color=\"#6e368d\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:48px;\"][/ultimate_heading][vc_empty_space height=\"300px\" css=\".vc_custom_1662447237222{margin: 0px !important;padding: 0px !important;background-image: url(https://farmchemie.yasithawd.com/wp-content/uploads/2022/09/marketbgimg1-sp.png?id=2527) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\"][vc_row_inner][vc_column_inner el_class=\"cborder1\" width=\"1/3\" css=\".vc_custom_1662367183321{background-color: #6e368d !important;}\"][bsf-info-box icon_type=\"custom\" icon_img=\"id^2537|url^https://farmchemie.yasithawd.com/wp-content/uploads/2022/09/earthicon-1.png|caption^null|alt^null|title^earthicon-1|description^null\" img_width=\"100\" title=\"Global\" pos=\"right\" title_font_style=\"font-weight:bold;\" title_font_size=\"desktop:48px;\" title_font_color=\"#ffffff\" desc_font_size=\"desktop:24px;\" desc_font_color=\"#ffffff\"]International Market[/bsf-info-box][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\" css=\".vc_custom_1662370098614{background-color: #089548 !important;}\"][bsf-info-box icon_type=\"custom\" icon_img=\"id^2536|url^https://farmchemie.yasithawd.com/wp-content/uploads/2022/09/srilankaicon-1.png|caption^null|alt^null|title^srilankaicon-1|description^null\" img_width=\"100\" title=\"Local\" pos=\"left\" title_font_style=\"font-weight:bold;\" title_font_size=\"desktop:48px;\" title_font_color=\"#ffffff\" desc_font_size=\"desktop:24px;\" desc_font_color=\"#ffffff\"]Sri Lankan Market[/bsf-info-box][/vc_column_inner][/vc_row_inner][vc_row_inner equal_height=\"yes\" css=\".vc_custom_1662370166856{margin-top: 20px !important;margin-right: 50px !important;margin-left: 50px !important;}\"][vc_column_inner width=\"5/12\"][vc_column_text]FARMCHEMIE is a world-renowned manufacturer of feed additives and feed supplements. We offer our FarmStar and PetStar branded products to the international markets We provide toll-manufacturing services to globally recognized marketing companies for the Asian &amp; African markets. Our manufacturing plant is equipped with fully automated production lines from Bühler.[/vc_column_text][/vc_column_inner][vc_column_inner width=\"2/12\"][/vc_column_inner][vc_column_inner width=\"5/12\"][vc_column_text]FARMCHEMIE offers an island wide distribution, technical consultation and poultry vaccination services of high-quality animal healthcare products from world-renowned suppliers.\r\nWe offer both locally manufactured and imported products to cater the poultry, dairy, swine, pet-care and aqua markets.[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner width=\"1/2\"][ult_buttons btn_title=\"READ MORE\" btn_align=\"ubtn-center\" btn_size=\"ubtn-custom\" btn_width=\"300\" btn_height=\"60\" btn_title_color=\"#6e368d\" btn_bg_color=\"rgba(224,224,224,0.01)\" icon=\"dt-icon-the7-menu-014\" icon_size=\"40\" icon_color=\"#6e368d\" btn_icon_pos=\"ubtn-sep-icon-at-right\" btn_font_style=\"font-weight:bold;\" btn_font_size=\"desktop:24px;\"][/vc_column_inner][vc_column_inner width=\"1/2\"][ult_buttons btn_title=\"READ MORE\" btn_align=\"ubtn-center\" btn_size=\"ubtn-custom\" btn_width=\"300\" btn_height=\"60\" btn_title_color=\"#089548\" btn_bg_color=\"rgba(224,224,224,0.01)\" icon=\"dt-icon-the7-menu-013\" icon_size=\"40\" icon_color=\"#089548\" btn_icon_pos=\"ubtn-sep-icon-at-left\" btn_font_style=\"font-weight:bold;\" btn_font_size=\"desktop:24px;\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row full_width=\"stretch_row_content_no_spaces\" full_height=\"yes\" columns_placement=\"top\" bg_type=\"image\" parallax_style=\"vcpb-default\" bg_image_new=\"id^2559|url^https://farmchemie.yasithawd.com/wp-content/uploads/2022/09/rowimg_mod_3.jpg|caption^null|alt^null|title^rowimg_mod_3|description^null\" bg_image_repeat=\"no-repeat\"][vc_column][ultimate_heading main_heading=\"SPIRIT OF INNOVATION IN ANIMAL HEALTH\" main_heading_color=\"#6e368d\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:48px;\"][/ultimate_heading][vc_row_inner css=\".vc_custom_1662456998651{padding-bottom: 500px !important;}\"][vc_column_inner][/vc_column_inner][/vc_row_inner][vc_row_inner content_placement=\"bottom\" css=\".vc_custom_1662457240603{padding-right: 0px !important;padding-left: 0px !important;}\"][vc_column_inner width=\"6/12\" css=\".vc_custom_1662439605469{background-color: rgba(255,255,255,0.5) !important;*background-color: rgb(255,255,255) !important;}\"][vc_single_image image=\"2567\" img_size=\"full\" alignment=\"center\"][/vc_column_inner][vc_column_inner width=\"3/12\"][/vc_column_inner][vc_column_inner width=\"3/12\" css=\".vc_custom_1662371690284{background-color: #6e368d !important;}\"][vc_single_image image=\"2566\" img_size=\"full\" alignment=\"center\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row]','Home2','','inherit','closed','closed','','2525-revision-v1','','','2022-09-06 09:40:44','2022-09-06 09:40:44','',2525,'https://farmchemie.yasithawd.com/?p=2591',0,'revision','',0),(2592,1,'2022-09-06 10:03:00','2022-09-06 10:03:00','[vc_row full_width=\"stretch_row_content\" bg_type=\"image\" parallax_style=\"vcpb-default\" bg_image_new=\"id^2524|url^https://farmchemie.yasithawd.com/wp-content/uploads/2022/09/marketbgimg1.png|caption^null|alt^null|title^marketbgimg1|description^null\" bg_image_repeat=\"no-repeat\"][vc_column][ultimate_heading main_heading=\"SELECT YOUR MARKET/REGION\" main_heading_color=\"#6e368d\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:48px;\"][/ultimate_heading][vc_empty_space height=\"300px\" css=\".vc_custom_1662447237222{margin: 0px !important;padding: 0px !important;background-image: url(https://farmchemie.yasithawd.com/wp-content/uploads/2022/09/marketbgimg1-sp.png?id=2527) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\"][vc_row_inner][vc_column_inner el_class=\"cborder1\" width=\"1/3\" css=\".vc_custom_1662367183321{background-color: #6e368d !important;}\"][bsf-info-box icon_type=\"custom\" icon_img=\"id^2537|url^https://farmchemie.yasithawd.com/wp-content/uploads/2022/09/earthicon-1.png|caption^null|alt^null|title^earthicon-1|description^null\" img_width=\"100\" title=\"Global\" pos=\"right\" title_font_style=\"font-weight:bold;\" title_font_size=\"desktop:48px;\" title_font_color=\"#ffffff\" desc_font_size=\"desktop:24px;\" desc_font_color=\"#ffffff\"]International Market[/bsf-info-box][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\" css=\".vc_custom_1662370098614{background-color: #089548 !important;}\"][bsf-info-box icon_type=\"custom\" icon_img=\"id^2536|url^https://farmchemie.yasithawd.com/wp-content/uploads/2022/09/srilankaicon-1.png|caption^null|alt^null|title^srilankaicon-1|description^null\" img_width=\"100\" title=\"Local\" pos=\"left\" title_font_style=\"font-weight:bold;\" title_font_size=\"desktop:48px;\" title_font_color=\"#ffffff\" desc_font_size=\"desktop:24px;\" desc_font_color=\"#ffffff\"]Sri Lankan Market[/bsf-info-box][/vc_column_inner][/vc_row_inner][vc_row_inner equal_height=\"yes\" css=\".vc_custom_1662370166856{margin-top: 20px !important;margin-right: 50px !important;margin-left: 50px !important;}\"][vc_column_inner width=\"5/12\"][vc_column_text]FARMCHEMIE is a world-renowned manufacturer of feed additives and feed supplements. We offer our FarmStar and PetStar branded products to the international markets We provide toll-manufacturing services to globally recognized marketing companies for the Asian &amp; African markets. Our manufacturing plant is equipped with fully automated production lines from Bühler.[/vc_column_text][/vc_column_inner][vc_column_inner width=\"2/12\"][/vc_column_inner][vc_column_inner width=\"5/12\"][vc_column_text]FARMCHEMIE offers an island wide distribution, technical consultation and poultry vaccination services of high-quality animal healthcare products from world-renowned suppliers.\r\nWe offer both locally manufactured and imported products to cater the poultry, dairy, swine, pet-care and aqua markets.[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner width=\"1/2\"][ult_buttons btn_title=\"READ MORE\" btn_align=\"ubtn-center\" btn_size=\"ubtn-custom\" btn_width=\"300\" btn_height=\"60\" btn_title_color=\"#6e368d\" btn_bg_color=\"rgba(224,224,224,0.01)\" icon=\"dt-icon-the7-menu-014\" icon_size=\"40\" icon_color=\"#6e368d\" btn_icon_pos=\"ubtn-sep-icon-at-right\" btn_font_style=\"font-weight:bold;\" btn_font_size=\"desktop:24px;\"][/vc_column_inner][vc_column_inner width=\"1/2\"][ult_buttons btn_title=\"READ MORE\" btn_align=\"ubtn-center\" btn_size=\"ubtn-custom\" btn_width=\"300\" btn_height=\"60\" btn_title_color=\"#089548\" btn_bg_color=\"rgba(224,224,224,0.01)\" icon=\"dt-icon-the7-menu-013\" icon_size=\"40\" icon_color=\"#089548\" btn_icon_pos=\"ubtn-sep-icon-at-left\" btn_font_style=\"font-weight:bold;\" btn_font_size=\"desktop:24px;\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row full_width=\"stretch_row_content_no_spaces\" full_height=\"yes\" columns_placement=\"top\" bg_type=\"image\" parallax_style=\"vcpb-default\" bg_image_new=\"id^2559|url^https://farmchemie.yasithawd.com/wp-content/uploads/2022/09/rowimg_mod_3.jpg|caption^null|alt^null|title^rowimg_mod_3|description^null\" bg_image_repeat=\"no-repeat\"][vc_column][ultimate_heading main_heading=\"SPIRIT OF INNOVATION IN ANIMAL HEALTH\" main_heading_color=\"#6e368d\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:48px;\"][/ultimate_heading][vc_row_inner css=\".vc_custom_1662456998651{padding-bottom: 500px !important;}\"][vc_column_inner][/vc_column_inner][/vc_row_inner][vc_row_inner content_placement=\"bottom\" css=\".vc_custom_1662458571859{padding-right: 0px !important;padding-bottom: 10px !important;padding-left: 0px !important;}\"][vc_column_inner width=\"6/12\" css=\".vc_custom_1662439605469{background-color: rgba(255,255,255,0.5) !important;*background-color: rgb(255,255,255) !important;}\"][vc_single_image image=\"2567\" img_size=\"full\" alignment=\"center\"][/vc_column_inner][vc_column_inner width=\"3/12\"][/vc_column_inner][vc_column_inner width=\"3/12\" css=\".vc_custom_1662371690284{background-color: #6e368d !important;}\"][vc_single_image image=\"2566\" img_size=\"full\" alignment=\"center\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row]','Home2','','inherit','closed','closed','','2525-revision-v1','','','2022-09-06 10:03:00','2022-09-06 10:03:00','',2525,'https://farmchemie.yasithawd.com/?p=2592',0,'revision','',0),(2601,1,'2022-09-06 10:37:39','2022-09-06 10:37:39','[vc_row full_width=\"stretch_row_content\" bg_type=\"image\" parallax_style=\"vcpb-default\" bg_image_new=\"id^2524|url^https://farmchemie.yasithawd.com/wp-content/uploads/2022/09/marketbgimg1.png|caption^null|alt^null|title^marketbgimg1|description^null\" bg_image_repeat=\"no-repeat\"][vc_column][ultimate_heading main_heading=\"SELECT YOUR MARKET/REGION\" main_heading_color=\"#6e368d\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:48px;\"][/ultimate_heading][vc_empty_space height=\"300px\" css=\".vc_custom_1662447237222{margin: 0px !important;padding: 0px !important;background-image: url(https://farmchemie.yasithawd.com/wp-content/uploads/2022/09/marketbgimg1-sp.png?id=2527) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\"][vc_row_inner][vc_column_inner el_class=\"cborder1\" width=\"1/3\" css=\".vc_custom_1662367183321{background-color: #6e368d !important;}\"][bsf-info-box icon_type=\"custom\" icon_img=\"id^2537|url^https://farmchemie.yasithawd.com/wp-content/uploads/2022/09/earthicon-1.png|caption^null|alt^null|title^earthicon-1|description^null\" img_width=\"100\" title=\"Global\" pos=\"right\" title_font_style=\"font-weight:bold;\" title_font_size=\"desktop:48px;\" title_font_color=\"#ffffff\" desc_font_size=\"desktop:24px;\" desc_font_color=\"#ffffff\"]International Market[/bsf-info-box][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\" css=\".vc_custom_1662370098614{background-color: #089548 !important;}\"][bsf-info-box icon_type=\"custom\" icon_img=\"id^2536|url^https://farmchemie.yasithawd.com/wp-content/uploads/2022/09/srilankaicon-1.png|caption^null|alt^null|title^srilankaicon-1|description^null\" img_width=\"100\" title=\"Local\" pos=\"left\" title_font_style=\"font-weight:bold;\" title_font_size=\"desktop:48px;\" title_font_color=\"#ffffff\" desc_font_size=\"desktop:24px;\" desc_font_color=\"#ffffff\"]Sri Lankan Market[/bsf-info-box][/vc_column_inner][/vc_row_inner][vc_row_inner equal_height=\"yes\" css=\".vc_custom_1662370166856{margin-top: 20px !important;margin-right: 50px !important;margin-left: 50px !important;}\"][vc_column_inner width=\"5/12\"][vc_column_text]FARMCHEMIE is a world-renowned manufacturer of feed additives and feed supplements. We offer our FarmStar and PetStar branded products to the international markets We provide toll-manufacturing services to globally recognized marketing companies for the Asian &amp; African markets. Our manufacturing plant is equipped with fully automated production lines from Bühler.[/vc_column_text][/vc_column_inner][vc_column_inner width=\"2/12\"][/vc_column_inner][vc_column_inner width=\"5/12\"][vc_column_text]FARMCHEMIE offers an island wide distribution, technical consultation and poultry vaccination services of high-quality animal healthcare products from world-renowned suppliers.\r\nWe offer both locally manufactured and imported products to cater the poultry, dairy, swine, pet-care and aqua markets.[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_row_inner equal_height=\"yes\" content_placement=\"middle\" css=\".vc_custom_1662460080909{margin-top: 20px !important;margin-right: 50px !important;margin-bottom: 10px !important;margin-left: 50px !important;}\"][vc_column_inner width=\"1/12\"][/vc_column_inner][vc_column_inner width=\"1/12\"][vc_single_image image=\"2598\" img_size=\"full\"][/vc_column_inner][vc_column_inner width=\"1/12\"][vc_single_image image=\"2599\" img_size=\"full\"][/vc_column_inner][vc_column_inner width=\"1/12\"][vc_single_image image=\"2600\" img_size=\"full\"][/vc_column_inner][vc_column_inner width=\"1/12\"][/vc_column_inner][vc_column_inner width=\"2/12\"][/vc_column_inner][vc_column_inner width=\"1/12\"][vc_single_image image=\"2597\" img_size=\"full\"][/vc_column_inner][vc_column_inner width=\"1/12\"][vc_single_image image=\"2596\" img_size=\"full\"][/vc_column_inner][vc_column_inner width=\"1/12\"][vc_single_image image=\"2595\" img_size=\"full\"][/vc_column_inner][vc_column_inner width=\"1/12\"][vc_single_image image=\"2594\" img_size=\"full\"][/vc_column_inner][vc_column_inner width=\"1/12\"][vc_single_image image=\"2593\" img_size=\"full\"][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner width=\"1/2\"][ult_buttons btn_title=\"READ MORE\" btn_align=\"ubtn-center\" btn_size=\"ubtn-custom\" btn_width=\"300\" btn_height=\"60\" btn_title_color=\"#6e368d\" btn_bg_color=\"rgba(224,224,224,0.01)\" icon=\"dt-icon-the7-menu-014\" icon_size=\"40\" icon_color=\"#6e368d\" btn_icon_pos=\"ubtn-sep-icon-at-right\" btn_font_style=\"font-weight:bold;\" btn_font_size=\"desktop:24px;\"][/vc_column_inner][vc_column_inner width=\"1/2\"][ult_buttons btn_title=\"READ MORE\" btn_align=\"ubtn-center\" btn_size=\"ubtn-custom\" btn_width=\"300\" btn_height=\"60\" btn_title_color=\"#089548\" btn_bg_color=\"rgba(224,224,224,0.01)\" icon=\"dt-icon-the7-menu-013\" icon_size=\"40\" icon_color=\"#089548\" btn_icon_pos=\"ubtn-sep-icon-at-left\" btn_font_style=\"font-weight:bold;\" btn_font_size=\"desktop:24px;\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row full_width=\"stretch_row_content_no_spaces\" full_height=\"yes\" columns_placement=\"top\" bg_type=\"image\" parallax_style=\"vcpb-default\" bg_image_new=\"id^2559|url^https://farmchemie.yasithawd.com/wp-content/uploads/2022/09/rowimg_mod_3.jpg|caption^null|alt^null|title^rowimg_mod_3|description^null\" bg_image_repeat=\"no-repeat\"][vc_column][ultimate_heading main_heading=\"SPIRIT OF INNOVATION IN ANIMAL HEALTH\" main_heading_color=\"#6e368d\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:48px;\"][/ultimate_heading][vc_row_inner css=\".vc_custom_1662456998651{padding-bottom: 500px !important;}\"][vc_column_inner][/vc_column_inner][/vc_row_inner][vc_row_inner content_placement=\"bottom\" css=\".vc_custom_1662458571859{padding-right: 0px !important;padding-bottom: 10px !important;padding-left: 0px !important;}\"][vc_column_inner width=\"6/12\" css=\".vc_custom_1662439605469{background-color: rgba(255,255,255,0.5) !important;*background-color: rgb(255,255,255) !important;}\"][vc_single_image image=\"2567\" img_size=\"full\" alignment=\"center\"][/vc_column_inner][vc_column_inner width=\"3/12\"][/vc_column_inner][vc_column_inner width=\"3/12\" css=\".vc_custom_1662371690284{background-color: #6e368d !important;}\"][vc_single_image image=\"2566\" img_size=\"full\" alignment=\"center\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row]','Home2','','inherit','closed','closed','','2525-revision-v1','','','2022-09-06 10:37:39','2022-09-06 10:37:39','',2525,'https://farmchemie.yasithawd.com/?p=2601',0,'revision','',0),(2602,1,'2022-09-07 06:50:37','2022-09-07 06:50:37','','rowimg_mod_4','','inherit','open','closed','','rowimg_mod_4','','','2022-09-07 06:50:37','2022-09-07 06:50:37','',2525,'https://farmchemie.yasithawd.com/wp-content/uploads/2022/09/rowimg_mod_4.jpg',0,'attachment','image/jpeg',0),(2603,1,'2022-09-07 06:50:46','2022-09-07 06:50:46','[vc_row full_width=\"stretch_row_content\" bg_type=\"image\" parallax_style=\"vcpb-default\" bg_image_new=\"id^2524|url^https://farmchemie.yasithawd.com/wp-content/uploads/2022/09/marketbgimg1.png|caption^null|alt^null|title^marketbgimg1|description^null\" bg_image_repeat=\"no-repeat\"][vc_column][ultimate_heading main_heading=\"SELECT YOUR MARKET/REGION\" main_heading_color=\"#6e368d\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:48px;\"][/ultimate_heading][vc_empty_space height=\"300px\" css=\".vc_custom_1662447237222{margin: 0px !important;padding: 0px !important;background-image: url(https://farmchemie.yasithawd.com/wp-content/uploads/2022/09/marketbgimg1-sp.png?id=2527) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\"][vc_row_inner][vc_column_inner el_class=\"cborder1\" width=\"1/3\" css=\".vc_custom_1662367183321{background-color: #6e368d !important;}\"][ult_animation_block animation=\"fadeIn\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][bsf-info-box icon_type=\"custom\" icon_img=\"id^2537|url^https://farmchemie.yasithawd.com/wp-content/uploads/2022/09/earthicon-1.png|caption^null|alt^null|title^earthicon-1|description^null\" img_width=\"100\" title=\"Global\" pos=\"right\" title_font_style=\"font-weight:bold;\" title_font_size=\"desktop:48px;\" title_font_color=\"#ffffff\" desc_font_size=\"desktop:24px;\" desc_font_color=\"#ffffff\"]International Market[/bsf-info-box][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\" css=\".vc_custom_1662370098614{background-color: #089548 !important;}\"][ult_animation_block animation=\"fadeIn\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][bsf-info-box icon_type=\"custom\" icon_img=\"id^2536|url^https://farmchemie.yasithawd.com/wp-content/uploads/2022/09/srilankaicon-1.png|caption^null|alt^null|title^srilankaicon-1|description^null\" img_width=\"100\" title=\"Local\" pos=\"left\" title_font_style=\"font-weight:bold;\" title_font_size=\"desktop:48px;\" title_font_color=\"#ffffff\" desc_font_size=\"desktop:24px;\" desc_font_color=\"#ffffff\"]Sri Lankan Market[/bsf-info-box][/ult_animation_block][/vc_column_inner][/vc_row_inner][vc_row_inner equal_height=\"yes\" css=\".vc_custom_1662370166856{margin-top: 20px !important;margin-right: 50px !important;margin-left: 50px !important;}\"][vc_column_inner width=\"5/12\"][vc_column_text]FARMCHEMIE is a world-renowned manufacturer of feed additives and feed supplements. We offer our FarmStar and PetStar branded products to the international markets We provide toll-manufacturing services to globally recognized marketing companies for the Asian &amp; African markets. Our manufacturing plant is equipped with fully automated production lines from Bühler.[/vc_column_text][/vc_column_inner][vc_column_inner width=\"2/12\"][/vc_column_inner][vc_column_inner width=\"5/12\"][vc_column_text]FARMCHEMIE offers an island wide distribution, technical consultation and poultry vaccination services of high-quality animal healthcare products from world-renowned suppliers.\r\nWe offer both locally manufactured and imported products to cater the poultry, dairy, swine, pet-care and aqua markets.[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_row_inner equal_height=\"yes\" content_placement=\"middle\" css=\".vc_custom_1662460080909{margin-top: 20px !important;margin-right: 50px !important;margin-bottom: 10px !important;margin-left: 50px !important;}\"][vc_column_inner width=\"1/12\"][/vc_column_inner][vc_column_inner width=\"1/12\"][vc_single_image image=\"2598\" img_size=\"full\"][/vc_column_inner][vc_column_inner width=\"1/12\"][vc_single_image image=\"2599\" img_size=\"full\"][/vc_column_inner][vc_column_inner width=\"1/12\"][vc_single_image image=\"2600\" img_size=\"full\"][/vc_column_inner][vc_column_inner width=\"1/12\"][/vc_column_inner][vc_column_inner width=\"2/12\"][/vc_column_inner][vc_column_inner width=\"1/12\"][vc_single_image image=\"2597\" img_size=\"full\"][/vc_column_inner][vc_column_inner width=\"1/12\"][vc_single_image image=\"2596\" img_size=\"full\"][/vc_column_inner][vc_column_inner width=\"1/12\"][vc_single_image image=\"2595\" img_size=\"full\"][/vc_column_inner][vc_column_inner width=\"1/12\"][vc_single_image image=\"2594\" img_size=\"full\"][/vc_column_inner][vc_column_inner width=\"1/12\"][vc_single_image image=\"2593\" img_size=\"full\"][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner width=\"1/2\"][ult_buttons btn_title=\"READ MORE\" btn_align=\"ubtn-center\" btn_size=\"ubtn-custom\" btn_width=\"300\" btn_height=\"60\" btn_title_color=\"#6e368d\" btn_bg_color=\"rgba(224,224,224,0.01)\" icon=\"dt-icon-the7-menu-014\" icon_size=\"40\" icon_color=\"#6e368d\" btn_icon_pos=\"ubtn-sep-icon-at-right\" btn_font_style=\"font-weight:bold;\" btn_font_size=\"desktop:24px;\"][/vc_column_inner][vc_column_inner width=\"1/2\"][ult_buttons btn_title=\"READ MORE\" btn_align=\"ubtn-center\" btn_size=\"ubtn-custom\" btn_width=\"300\" btn_height=\"60\" btn_title_color=\"#089548\" btn_bg_color=\"rgba(224,224,224,0.01)\" icon=\"dt-icon-the7-menu-013\" icon_size=\"40\" icon_color=\"#089548\" btn_icon_pos=\"ubtn-sep-icon-at-left\" btn_font_style=\"font-weight:bold;\" btn_font_size=\"desktop:24px;\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row full_width=\"stretch_row_content_no_spaces\" full_height=\"yes\" columns_placement=\"top\" bg_type=\"image\" parallax_style=\"vcpb-default\" bg_image_new=\"id^2602|url^https://farmchemie.yasithawd.com/wp-content/uploads/2022/09/rowimg_mod_4.jpg|caption^null|alt^null|title^rowimg_mod_4|description^null\" bg_image_repeat=\"no-repeat\"][vc_column][ultimate_heading main_heading=\"SPIRIT OF INNOVATION IN ANIMAL HEALTH\" main_heading_color=\"#6e368d\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:48px;\"][/ultimate_heading][vc_row_inner css=\".vc_custom_1662456998651{padding-bottom: 500px !important;}\"][vc_column_inner][/vc_column_inner][/vc_row_inner][vc_row_inner content_placement=\"bottom\" css=\".vc_custom_1662458571859{padding-right: 0px !important;padding-bottom: 10px !important;padding-left: 0px !important;}\"][vc_column_inner width=\"6/12\" css=\".vc_custom_1662439605469{background-color: rgba(255,255,255,0.5) !important;*background-color: rgb(255,255,255) !important;}\"][vc_single_image image=\"2567\" img_size=\"full\" alignment=\"center\"][/vc_column_inner][vc_column_inner width=\"3/12\"][/vc_column_inner][vc_column_inner width=\"3/12\" css=\".vc_custom_1662371690284{background-color: #6e368d !important;}\"][vc_single_image image=\"2566\" img_size=\"full\" alignment=\"center\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row]','Home2','','inherit','closed','closed','','2525-revision-v1','','','2022-09-07 06:50:46','2022-09-07 06:50:46','',2525,'https://farmchemie.yasithawd.com/?p=2603',0,'revision','',0),(2607,1,'2022-09-07 07:10:36','2022-09-07 07:10:36','[vc_row full_width=\"stretch_row_content\" bg_type=\"image\" parallax_style=\"vcpb-default\" bg_image_new=\"id^2524|url^https://farmchemie.yasithawd.com/wp-content/uploads/2022/09/marketbgimg1.png|caption^null|alt^null|title^marketbgimg1|description^null\" bg_image_repeat=\"no-repeat\"][vc_column][ultimate_heading main_heading=\"SELECT YOUR MARKET/REGION\" main_heading_color=\"#6e368d\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:48px;\"][/ultimate_heading][vc_empty_space height=\"300px\" css=\".vc_custom_1662447237222{margin: 0px !important;padding: 0px !important;background-image: url(https://farmchemie.yasithawd.com/wp-content/uploads/2022/09/marketbgimg1-sp.png?id=2527) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\"][vc_row_inner][vc_column_inner el_class=\"cborder1\" width=\"1/3\" css=\".vc_custom_1662367183321{background-color: #6e368d !important;}\"][ult_animation_block animation=\"fadeIn\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"0\"][bsf-info-box icon_type=\"custom\" icon_img=\"id^2537|url^https://farmchemie.yasithawd.com/wp-content/uploads/2022/09/earthicon-1.png|caption^null|alt^null|title^earthicon-1|description^null\" img_width=\"100\" title=\"Global\" pos=\"right\" title_font_style=\"font-weight:bold;\" title_font_size=\"desktop:48px;\" title_font_color=\"#ffffff\" desc_font_size=\"desktop:24px;\" desc_font_color=\"#ffffff\"]International Market[/bsf-info-box][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\" css=\".vc_custom_1662370098614{background-color: #089548 !important;}\"][ult_animation_block animation=\"fadeIn\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][bsf-info-box icon_type=\"custom\" icon_img=\"id^2536|url^https://farmchemie.yasithawd.com/wp-content/uploads/2022/09/srilankaicon-1.png|caption^null|alt^null|title^srilankaicon-1|description^null\" img_width=\"100\" title=\"Local\" pos=\"left\" title_font_style=\"font-weight:bold;\" title_font_size=\"desktop:48px;\" title_font_color=\"#ffffff\" desc_font_size=\"desktop:24px;\" desc_font_color=\"#ffffff\"]Sri Lankan Market[/bsf-info-box][/ult_animation_block][/vc_column_inner][/vc_row_inner][vc_row_inner equal_height=\"yes\" css=\".vc_custom_1662370166856{margin-top: 20px !important;margin-right: 50px !important;margin-left: 50px !important;}\"][vc_column_inner width=\"5/12\"][vc_column_text]FARMCHEMIE is a world-renowned manufacturer of feed additives and feed supplements. We offer our FarmStar and PetStar branded products to the international markets We provide toll-manufacturing services to globally recognized marketing companies for the Asian &amp; African markets. Our manufacturing plant is equipped with fully automated production lines from Bühler.[/vc_column_text][/vc_column_inner][vc_column_inner width=\"2/12\"][/vc_column_inner][vc_column_inner width=\"5/12\"][vc_column_text]FARMCHEMIE offers an island wide distribution, technical consultation and poultry vaccination services of high-quality animal healthcare products from world-renowned suppliers.\r\nWe offer both locally manufactured and imported products to cater the poultry, dairy, swine, pet-care and aqua markets.[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_row_inner equal_height=\"yes\" content_placement=\"middle\" css=\".vc_custom_1662460080909{margin-top: 20px !important;margin-right: 50px !important;margin-bottom: 10px !important;margin-left: 50px !important;}\"][vc_column_inner width=\"1/12\"][/vc_column_inner][vc_column_inner width=\"1/12\"][vc_single_image image=\"2598\" img_size=\"full\"][/vc_column_inner][vc_column_inner width=\"1/12\"][vc_single_image image=\"2599\" img_size=\"full\"][/vc_column_inner][vc_column_inner width=\"1/12\"][vc_single_image image=\"2600\" img_size=\"full\"][/vc_column_inner][vc_column_inner width=\"1/12\"][/vc_column_inner][vc_column_inner width=\"2/12\"][/vc_column_inner][vc_column_inner width=\"1/12\"][vc_single_image image=\"2597\" img_size=\"full\"][/vc_column_inner][vc_column_inner width=\"1/12\"][vc_single_image image=\"2596\" img_size=\"full\"][/vc_column_inner][vc_column_inner width=\"1/12\"][vc_single_image image=\"2595\" img_size=\"full\"][/vc_column_inner][vc_column_inner width=\"1/12\"][vc_single_image image=\"2594\" img_size=\"full\"][/vc_column_inner][vc_column_inner width=\"1/12\"][vc_single_image image=\"2593\" img_size=\"full\"][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner width=\"1/2\"][ult_buttons btn_title=\"READ MORE\" btn_align=\"ubtn-center\" btn_size=\"ubtn-custom\" btn_width=\"300\" btn_height=\"60\" btn_title_color=\"#6e368d\" btn_bg_color=\"rgba(224,224,224,0.01)\" icon=\"dt-icon-the7-menu-014\" icon_size=\"40\" icon_color=\"#6e368d\" btn_icon_pos=\"ubtn-sep-icon-at-right\" btn_font_style=\"font-weight:bold;\" btn_font_size=\"desktop:24px;\"][/vc_column_inner][vc_column_inner width=\"1/2\"][ult_buttons btn_title=\"READ MORE\" btn_align=\"ubtn-center\" btn_size=\"ubtn-custom\" btn_width=\"300\" btn_height=\"60\" btn_title_color=\"#089548\" btn_bg_color=\"rgba(224,224,224,0.01)\" icon=\"dt-icon-the7-menu-013\" icon_size=\"40\" icon_color=\"#089548\" btn_icon_pos=\"ubtn-sep-icon-at-left\" btn_font_style=\"font-weight:bold;\" btn_font_size=\"desktop:24px;\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row full_width=\"stretch_row_content_no_spaces\" full_height=\"yes\" columns_placement=\"top\" bg_type=\"image\" parallax_style=\"vcpb-default\" bg_image_new=\"id^2604|url^https://farmchemie.yasithawd.com/wp-content/uploads/2022/09/rowimg_mod_4HigherRes1.jpg|caption^null|alt^null|title^rowimg_mod_4HigherRes1|description^null\" bg_image_repeat=\"no-repeat\"][vc_column][ultimate_heading main_heading=\"SPIRIT OF INNOVATION IN ANIMAL HEALTH\" main_heading_color=\"#6e368d\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:48px;\"][/ultimate_heading][vc_row_inner css=\".vc_custom_1662456998651{padding-bottom: 500px !important;}\"][vc_column_inner][/vc_column_inner][/vc_row_inner][vc_row_inner content_placement=\"bottom\" css=\".vc_custom_1662458571859{padding-right: 0px !important;padding-bottom: 10px !important;padding-left: 0px !important;}\"][vc_column_inner width=\"6/12\" css=\".vc_custom_1662439605469{background-color: rgba(255,255,255,0.5) !important;*background-color: rgb(255,255,255) !important;}\"][vc_single_image image=\"2567\" img_size=\"full\" alignment=\"center\"][/vc_column_inner][vc_column_inner width=\"3/12\"][/vc_column_inner][vc_column_inner width=\"3/12\" css=\".vc_custom_1662371690284{background-color: #6e368d !important;}\"][vc_single_image image=\"2566\" img_size=\"full\" alignment=\"center\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row]','Home2','','inherit','closed','closed','','2525-revision-v1','','','2022-09-07 07:10:36','2022-09-07 07:10:36','',2525,'https://farmchemie.yasithawd.com/?p=2607',0,'revision','',0),(2606,1,'2022-09-07 07:04:01','2022-09-07 07:04:01','[vc_row full_width=\"stretch_row_content\" bg_type=\"image\" parallax_style=\"vcpb-default\" bg_image_new=\"id^2524|url^https://farmchemie.yasithawd.com/wp-content/uploads/2022/09/marketbgimg1.png|caption^null|alt^null|title^marketbgimg1|description^null\" bg_image_repeat=\"no-repeat\"][vc_column][ultimate_heading main_heading=\"SELECT YOUR MARKET/REGION\" main_heading_color=\"#6e368d\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:48px;\"][/ultimate_heading][vc_empty_space height=\"300px\" css=\".vc_custom_1662447237222{margin: 0px !important;padding: 0px !important;background-image: url(https://farmchemie.yasithawd.com/wp-content/uploads/2022/09/marketbgimg1-sp.png?id=2527) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\"][vc_row_inner][vc_column_inner el_class=\"cborder1\" width=\"1/3\" css=\".vc_custom_1662367183321{background-color: #6e368d !important;}\"][ult_animation_block animation=\"InfinitePulse\" animation_duration=\"5\" animation_delay=\"0\" animation_iteration_count=\"0\"][bsf-info-box icon_type=\"custom\" icon_img=\"id^2537|url^https://farmchemie.yasithawd.com/wp-content/uploads/2022/09/earthicon-1.png|caption^null|alt^null|title^earthicon-1|description^null\" img_width=\"100\" title=\"Global\" pos=\"right\" title_font_style=\"font-weight:bold;\" title_font_size=\"desktop:48px;\" title_font_color=\"#ffffff\" desc_font_size=\"desktop:24px;\" desc_font_color=\"#ffffff\"]International Market[/bsf-info-box][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\" css=\".vc_custom_1662370098614{background-color: #089548 !important;}\"][ult_animation_block animation=\"fadeIn\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][bsf-info-box icon_type=\"custom\" icon_img=\"id^2536|url^https://farmchemie.yasithawd.com/wp-content/uploads/2022/09/srilankaicon-1.png|caption^null|alt^null|title^srilankaicon-1|description^null\" img_width=\"100\" title=\"Local\" pos=\"left\" title_font_style=\"font-weight:bold;\" title_font_size=\"desktop:48px;\" title_font_color=\"#ffffff\" desc_font_size=\"desktop:24px;\" desc_font_color=\"#ffffff\"]Sri Lankan Market[/bsf-info-box][/ult_animation_block][/vc_column_inner][/vc_row_inner][vc_row_inner equal_height=\"yes\" css=\".vc_custom_1662370166856{margin-top: 20px !important;margin-right: 50px !important;margin-left: 50px !important;}\"][vc_column_inner width=\"5/12\"][vc_column_text]FARMCHEMIE is a world-renowned manufacturer of feed additives and feed supplements. We offer our FarmStar and PetStar branded products to the international markets We provide toll-manufacturing services to globally recognized marketing companies for the Asian &amp; African markets. Our manufacturing plant is equipped with fully automated production lines from Bühler.[/vc_column_text][/vc_column_inner][vc_column_inner width=\"2/12\"][/vc_column_inner][vc_column_inner width=\"5/12\"][vc_column_text]FARMCHEMIE offers an island wide distribution, technical consultation and poultry vaccination services of high-quality animal healthcare products from world-renowned suppliers.\r\nWe offer both locally manufactured and imported products to cater the poultry, dairy, swine, pet-care and aqua markets.[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_row_inner equal_height=\"yes\" content_placement=\"middle\" css=\".vc_custom_1662460080909{margin-top: 20px !important;margin-right: 50px !important;margin-bottom: 10px !important;margin-left: 50px !important;}\"][vc_column_inner width=\"1/12\"][/vc_column_inner][vc_column_inner width=\"1/12\"][vc_single_image image=\"2598\" img_size=\"full\"][/vc_column_inner][vc_column_inner width=\"1/12\"][vc_single_image image=\"2599\" img_size=\"full\"][/vc_column_inner][vc_column_inner width=\"1/12\"][vc_single_image image=\"2600\" img_size=\"full\"][/vc_column_inner][vc_column_inner width=\"1/12\"][/vc_column_inner][vc_column_inner width=\"2/12\"][/vc_column_inner][vc_column_inner width=\"1/12\"][vc_single_image image=\"2597\" img_size=\"full\"][/vc_column_inner][vc_column_inner width=\"1/12\"][vc_single_image image=\"2596\" img_size=\"full\"][/vc_column_inner][vc_column_inner width=\"1/12\"][vc_single_image image=\"2595\" img_size=\"full\"][/vc_column_inner][vc_column_inner width=\"1/12\"][vc_single_image image=\"2594\" img_size=\"full\"][/vc_column_inner][vc_column_inner width=\"1/12\"][vc_single_image image=\"2593\" img_size=\"full\"][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner width=\"1/2\"][ult_buttons btn_title=\"READ MORE\" btn_align=\"ubtn-center\" btn_size=\"ubtn-custom\" btn_width=\"300\" btn_height=\"60\" btn_title_color=\"#6e368d\" btn_bg_color=\"rgba(224,224,224,0.01)\" icon=\"dt-icon-the7-menu-014\" icon_size=\"40\" icon_color=\"#6e368d\" btn_icon_pos=\"ubtn-sep-icon-at-right\" btn_font_style=\"font-weight:bold;\" btn_font_size=\"desktop:24px;\"][/vc_column_inner][vc_column_inner width=\"1/2\"][ult_buttons btn_title=\"READ MORE\" btn_align=\"ubtn-center\" btn_size=\"ubtn-custom\" btn_width=\"300\" btn_height=\"60\" btn_title_color=\"#089548\" btn_bg_color=\"rgba(224,224,224,0.01)\" icon=\"dt-icon-the7-menu-013\" icon_size=\"40\" icon_color=\"#089548\" btn_icon_pos=\"ubtn-sep-icon-at-left\" btn_font_style=\"font-weight:bold;\" btn_font_size=\"desktop:24px;\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row full_width=\"stretch_row_content_no_spaces\" full_height=\"yes\" columns_placement=\"top\" bg_type=\"image\" parallax_style=\"vcpb-default\" bg_image_new=\"id^2604|url^https://farmchemie.yasithawd.com/wp-content/uploads/2022/09/rowimg_mod_4HigherRes1.jpg|caption^null|alt^null|title^rowimg_mod_4HigherRes1|description^null\" bg_image_repeat=\"no-repeat\"][vc_column][ultimate_heading main_heading=\"SPIRIT OF INNOVATION IN ANIMAL HEALTH\" main_heading_color=\"#6e368d\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:48px;\"][/ultimate_heading][vc_row_inner css=\".vc_custom_1662456998651{padding-bottom: 500px !important;}\"][vc_column_inner][/vc_column_inner][/vc_row_inner][vc_row_inner content_placement=\"bottom\" css=\".vc_custom_1662458571859{padding-right: 0px !important;padding-bottom: 10px !important;padding-left: 0px !important;}\"][vc_column_inner width=\"6/12\" css=\".vc_custom_1662439605469{background-color: rgba(255,255,255,0.5) !important;*background-color: rgb(255,255,255) !important;}\"][vc_single_image image=\"2567\" img_size=\"full\" alignment=\"center\"][/vc_column_inner][vc_column_inner width=\"3/12\"][/vc_column_inner][vc_column_inner width=\"3/12\" css=\".vc_custom_1662371690284{background-color: #6e368d !important;}\"][vc_single_image image=\"2566\" img_size=\"full\" alignment=\"center\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row]','Home2','','inherit','closed','closed','','2525-revision-v1','','','2022-09-07 07:04:01','2022-09-07 07:04:01','',2525,'https://farmchemie.yasithawd.com/?p=2606',0,'revision','',0),(2604,1,'2022-09-07 06:55:50','2022-09-07 06:55:50','','rowimg_mod_4HigherRes1','','inherit','open','closed','','rowimg_mod_4higherres1','','','2022-09-07 06:55:50','2022-09-07 06:55:50','',2525,'https://farmchemie.yasithawd.com/wp-content/uploads/2022/09/rowimg_mod_4HigherRes1.jpg',0,'attachment','image/jpeg',0),(2605,1,'2022-09-07 06:56:13','2022-09-07 06:56:13','[vc_row full_width=\"stretch_row_content\" bg_type=\"image\" parallax_style=\"vcpb-default\" bg_image_new=\"id^2524|url^https://farmchemie.yasithawd.com/wp-content/uploads/2022/09/marketbgimg1.png|caption^null|alt^null|title^marketbgimg1|description^null\" bg_image_repeat=\"no-repeat\"][vc_column][ultimate_heading main_heading=\"SELECT YOUR MARKET/REGION\" main_heading_color=\"#6e368d\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:48px;\"][/ultimate_heading][vc_empty_space height=\"300px\" css=\".vc_custom_1662447237222{margin: 0px !important;padding: 0px !important;background-image: url(https://farmchemie.yasithawd.com/wp-content/uploads/2022/09/marketbgimg1-sp.png?id=2527) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\"][vc_row_inner][vc_column_inner el_class=\"cborder1\" width=\"1/3\" css=\".vc_custom_1662367183321{background-color: #6e368d !important;}\"][ult_animation_block animation=\"fadeIn\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][bsf-info-box icon_type=\"custom\" icon_img=\"id^2537|url^https://farmchemie.yasithawd.com/wp-content/uploads/2022/09/earthicon-1.png|caption^null|alt^null|title^earthicon-1|description^null\" img_width=\"100\" title=\"Global\" pos=\"right\" title_font_style=\"font-weight:bold;\" title_font_size=\"desktop:48px;\" title_font_color=\"#ffffff\" desc_font_size=\"desktop:24px;\" desc_font_color=\"#ffffff\"]International Market[/bsf-info-box][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\" css=\".vc_custom_1662370098614{background-color: #089548 !important;}\"][ult_animation_block animation=\"fadeIn\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][bsf-info-box icon_type=\"custom\" icon_img=\"id^2536|url^https://farmchemie.yasithawd.com/wp-content/uploads/2022/09/srilankaicon-1.png|caption^null|alt^null|title^srilankaicon-1|description^null\" img_width=\"100\" title=\"Local\" pos=\"left\" title_font_style=\"font-weight:bold;\" title_font_size=\"desktop:48px;\" title_font_color=\"#ffffff\" desc_font_size=\"desktop:24px;\" desc_font_color=\"#ffffff\"]Sri Lankan Market[/bsf-info-box][/ult_animation_block][/vc_column_inner][/vc_row_inner][vc_row_inner equal_height=\"yes\" css=\".vc_custom_1662370166856{margin-top: 20px !important;margin-right: 50px !important;margin-left: 50px !important;}\"][vc_column_inner width=\"5/12\"][vc_column_text]FARMCHEMIE is a world-renowned manufacturer of feed additives and feed supplements. We offer our FarmStar and PetStar branded products to the international markets We provide toll-manufacturing services to globally recognized marketing companies for the Asian &amp; African markets. Our manufacturing plant is equipped with fully automated production lines from Bühler.[/vc_column_text][/vc_column_inner][vc_column_inner width=\"2/12\"][/vc_column_inner][vc_column_inner width=\"5/12\"][vc_column_text]FARMCHEMIE offers an island wide distribution, technical consultation and poultry vaccination services of high-quality animal healthcare products from world-renowned suppliers.\r\nWe offer both locally manufactured and imported products to cater the poultry, dairy, swine, pet-care and aqua markets.[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_row_inner equal_height=\"yes\" content_placement=\"middle\" css=\".vc_custom_1662460080909{margin-top: 20px !important;margin-right: 50px !important;margin-bottom: 10px !important;margin-left: 50px !important;}\"][vc_column_inner width=\"1/12\"][/vc_column_inner][vc_column_inner width=\"1/12\"][vc_single_image image=\"2598\" img_size=\"full\"][/vc_column_inner][vc_column_inner width=\"1/12\"][vc_single_image image=\"2599\" img_size=\"full\"][/vc_column_inner][vc_column_inner width=\"1/12\"][vc_single_image image=\"2600\" img_size=\"full\"][/vc_column_inner][vc_column_inner width=\"1/12\"][/vc_column_inner][vc_column_inner width=\"2/12\"][/vc_column_inner][vc_column_inner width=\"1/12\"][vc_single_image image=\"2597\" img_size=\"full\"][/vc_column_inner][vc_column_inner width=\"1/12\"][vc_single_image image=\"2596\" img_size=\"full\"][/vc_column_inner][vc_column_inner width=\"1/12\"][vc_single_image image=\"2595\" img_size=\"full\"][/vc_column_inner][vc_column_inner width=\"1/12\"][vc_single_image image=\"2594\" img_size=\"full\"][/vc_column_inner][vc_column_inner width=\"1/12\"][vc_single_image image=\"2593\" img_size=\"full\"][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner width=\"1/2\"][ult_buttons btn_title=\"READ MORE\" btn_align=\"ubtn-center\" btn_size=\"ubtn-custom\" btn_width=\"300\" btn_height=\"60\" btn_title_color=\"#6e368d\" btn_bg_color=\"rgba(224,224,224,0.01)\" icon=\"dt-icon-the7-menu-014\" icon_size=\"40\" icon_color=\"#6e368d\" btn_icon_pos=\"ubtn-sep-icon-at-right\" btn_font_style=\"font-weight:bold;\" btn_font_size=\"desktop:24px;\"][/vc_column_inner][vc_column_inner width=\"1/2\"][ult_buttons btn_title=\"READ MORE\" btn_align=\"ubtn-center\" btn_size=\"ubtn-custom\" btn_width=\"300\" btn_height=\"60\" btn_title_color=\"#089548\" btn_bg_color=\"rgba(224,224,224,0.01)\" icon=\"dt-icon-the7-menu-013\" icon_size=\"40\" icon_color=\"#089548\" btn_icon_pos=\"ubtn-sep-icon-at-left\" btn_font_style=\"font-weight:bold;\" btn_font_size=\"desktop:24px;\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row full_width=\"stretch_row_content_no_spaces\" full_height=\"yes\" columns_placement=\"top\" bg_type=\"image\" parallax_style=\"vcpb-default\" bg_image_new=\"id^2604|url^https://farmchemie.yasithawd.com/wp-content/uploads/2022/09/rowimg_mod_4HigherRes1.jpg|caption^null|alt^null|title^rowimg_mod_4HigherRes1|description^null\" bg_image_repeat=\"no-repeat\"][vc_column][ultimate_heading main_heading=\"SPIRIT OF INNOVATION IN ANIMAL HEALTH\" main_heading_color=\"#6e368d\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:48px;\"][/ultimate_heading][vc_row_inner css=\".vc_custom_1662456998651{padding-bottom: 500px !important;}\"][vc_column_inner][/vc_column_inner][/vc_row_inner][vc_row_inner content_placement=\"bottom\" css=\".vc_custom_1662458571859{padding-right: 0px !important;padding-bottom: 10px !important;padding-left: 0px !important;}\"][vc_column_inner width=\"6/12\" css=\".vc_custom_1662439605469{background-color: rgba(255,255,255,0.5) !important;*background-color: rgb(255,255,255) !important;}\"][vc_single_image image=\"2567\" img_size=\"full\" alignment=\"center\"][/vc_column_inner][vc_column_inner width=\"3/12\"][/vc_column_inner][vc_column_inner width=\"3/12\" css=\".vc_custom_1662371690284{background-color: #6e368d !important;}\"][vc_single_image image=\"2566\" img_size=\"full\" alignment=\"center\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row]','Home2','','inherit','closed','closed','','2525-revision-v1','','','2022-09-07 06:56:13','2022-09-07 06:56:13','',2525,'https://farmchemie.yasithawd.com/?p=2605',0,'revision','',0),(2608,1,'2022-09-07 07:11:45','2022-09-07 07:11:45','[vc_row full_width=\"stretch_row_content\" bg_type=\"image\" parallax_style=\"vcpb-default\" bg_image_new=\"id^2524|url^https://farmchemie.yasithawd.com/wp-content/uploads/2022/09/marketbgimg1.png|caption^null|alt^null|title^marketbgimg1|description^null\" bg_image_repeat=\"no-repeat\"][vc_column][ultimate_heading main_heading=\"SELECT YOUR MARKET/REGION\" main_heading_color=\"#6e368d\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:48px;\"][/ultimate_heading][vc_empty_space height=\"300px\" css=\".vc_custom_1662447237222{margin: 0px !important;padding: 0px !important;background-image: url(https://farmchemie.yasithawd.com/wp-content/uploads/2022/09/marketbgimg1-sp.png?id=2527) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\"][vc_row_inner][vc_column_inner el_class=\"cborder1\" width=\"1/3\" css=\".vc_custom_1662367183321{background-color: #6e368d !important;}\"][ult_animation_block animation=\"fadeIn\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"2\"][bsf-info-box icon_type=\"custom\" icon_img=\"id^2537|url^https://farmchemie.yasithawd.com/wp-content/uploads/2022/09/earthicon-1.png|caption^null|alt^null|title^earthicon-1|description^null\" img_width=\"100\" title=\"Global\" pos=\"right\" title_font_style=\"font-weight:bold;\" title_font_size=\"desktop:48px;\" title_font_color=\"#ffffff\" desc_font_size=\"desktop:24px;\" desc_font_color=\"#ffffff\"]International Market[/bsf-info-box][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\" css=\".vc_custom_1662370098614{background-color: #089548 !important;}\"][ult_animation_block animation=\"fadeIn\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][bsf-info-box icon_type=\"custom\" icon_img=\"id^2536|url^https://farmchemie.yasithawd.com/wp-content/uploads/2022/09/srilankaicon-1.png|caption^null|alt^null|title^srilankaicon-1|description^null\" img_width=\"100\" title=\"Local\" pos=\"left\" title_font_style=\"font-weight:bold;\" title_font_size=\"desktop:48px;\" title_font_color=\"#ffffff\" desc_font_size=\"desktop:24px;\" desc_font_color=\"#ffffff\"]Sri Lankan Market[/bsf-info-box][/ult_animation_block][/vc_column_inner][/vc_row_inner][vc_row_inner equal_height=\"yes\" css=\".vc_custom_1662370166856{margin-top: 20px !important;margin-right: 50px !important;margin-left: 50px !important;}\"][vc_column_inner width=\"5/12\"][vc_column_text]FARMCHEMIE is a world-renowned manufacturer of feed additives and feed supplements. We offer our FarmStar and PetStar branded products to the international markets We provide toll-manufacturing services to globally recognized marketing companies for the Asian &amp; African markets. Our manufacturing plant is equipped with fully automated production lines from Bühler.[/vc_column_text][/vc_column_inner][vc_column_inner width=\"2/12\"][/vc_column_inner][vc_column_inner width=\"5/12\"][vc_column_text]FARMCHEMIE offers an island wide distribution, technical consultation and poultry vaccination services of high-quality animal healthcare products from world-renowned suppliers.\r\nWe offer both locally manufactured and imported products to cater the poultry, dairy, swine, pet-care and aqua markets.[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_row_inner equal_height=\"yes\" content_placement=\"middle\" css=\".vc_custom_1662460080909{margin-top: 20px !important;margin-right: 50px !important;margin-bottom: 10px !important;margin-left: 50px !important;}\"][vc_column_inner width=\"1/12\"][/vc_column_inner][vc_column_inner width=\"1/12\"][vc_single_image image=\"2598\" img_size=\"full\"][/vc_column_inner][vc_column_inner width=\"1/12\"][vc_single_image image=\"2599\" img_size=\"full\"][/vc_column_inner][vc_column_inner width=\"1/12\"][vc_single_image image=\"2600\" img_size=\"full\"][/vc_column_inner][vc_column_inner width=\"1/12\"][/vc_column_inner][vc_column_inner width=\"2/12\"][/vc_column_inner][vc_column_inner width=\"1/12\"][vc_single_image image=\"2597\" img_size=\"full\"][/vc_column_inner][vc_column_inner width=\"1/12\"][vc_single_image image=\"2596\" img_size=\"full\"][/vc_column_inner][vc_column_inner width=\"1/12\"][vc_single_image image=\"2595\" img_size=\"full\"][/vc_column_inner][vc_column_inner width=\"1/12\"][vc_single_image image=\"2594\" img_size=\"full\"][/vc_column_inner][vc_column_inner width=\"1/12\"][vc_single_image image=\"2593\" img_size=\"full\"][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner width=\"1/2\"][ult_buttons btn_title=\"READ MORE\" btn_align=\"ubtn-center\" btn_size=\"ubtn-custom\" btn_width=\"300\" btn_height=\"60\" btn_title_color=\"#6e368d\" btn_bg_color=\"rgba(224,224,224,0.01)\" icon=\"dt-icon-the7-menu-014\" icon_size=\"40\" icon_color=\"#6e368d\" btn_icon_pos=\"ubtn-sep-icon-at-right\" btn_font_style=\"font-weight:bold;\" btn_font_size=\"desktop:24px;\"][/vc_column_inner][vc_column_inner width=\"1/2\"][ult_buttons btn_title=\"READ MORE\" btn_align=\"ubtn-center\" btn_size=\"ubtn-custom\" btn_width=\"300\" btn_height=\"60\" btn_title_color=\"#089548\" btn_bg_color=\"rgba(224,224,224,0.01)\" icon=\"dt-icon-the7-menu-013\" icon_size=\"40\" icon_color=\"#089548\" btn_icon_pos=\"ubtn-sep-icon-at-left\" btn_font_style=\"font-weight:bold;\" btn_font_size=\"desktop:24px;\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row full_width=\"stretch_row_content_no_spaces\" full_height=\"yes\" columns_placement=\"top\" bg_type=\"image\" parallax_style=\"vcpb-default\" bg_image_new=\"id^2604|url^https://farmchemie.yasithawd.com/wp-content/uploads/2022/09/rowimg_mod_4HigherRes1.jpg|caption^null|alt^null|title^rowimg_mod_4HigherRes1|description^null\" bg_image_repeat=\"no-repeat\"][vc_column][ultimate_heading main_heading=\"SPIRIT OF INNOVATION IN ANIMAL HEALTH\" main_heading_color=\"#6e368d\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:48px;\"][/ultimate_heading][vc_row_inner css=\".vc_custom_1662456998651{padding-bottom: 500px !important;}\"][vc_column_inner][/vc_column_inner][/vc_row_inner][vc_row_inner content_placement=\"bottom\" css=\".vc_custom_1662458571859{padding-right: 0px !important;padding-bottom: 10px !important;padding-left: 0px !important;}\"][vc_column_inner width=\"6/12\" css=\".vc_custom_1662439605469{background-color: rgba(255,255,255,0.5) !important;*background-color: rgb(255,255,255) !important;}\"][vc_single_image image=\"2567\" img_size=\"full\" alignment=\"center\"][/vc_column_inner][vc_column_inner width=\"3/12\"][/vc_column_inner][vc_column_inner width=\"3/12\" css=\".vc_custom_1662371690284{background-color: #6e368d !important;}\"][vc_single_image image=\"2566\" img_size=\"full\" alignment=\"center\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row]','Home2','','inherit','closed','closed','','2525-revision-v1','','','2022-09-07 07:11:45','2022-09-07 07:11:45','',2525,'https://farmchemie.yasithawd.com/?p=2608',0,'revision','',0),(2609,1,'2022-09-07 07:12:49','2022-09-07 07:12:49','[vc_row full_width=\"stretch_row_content\" bg_type=\"image\" parallax_style=\"vcpb-default\" bg_image_new=\"id^2524|url^https://farmchemie.yasithawd.com/wp-content/uploads/2022/09/marketbgimg1.png|caption^null|alt^null|title^marketbgimg1|description^null\" bg_image_repeat=\"no-repeat\"][vc_column][ultimate_heading main_heading=\"SELECT YOUR MARKET/REGION\" main_heading_color=\"#6e368d\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:48px;\"][/ultimate_heading][vc_empty_space height=\"300px\" css=\".vc_custom_1662447237222{margin: 0px !important;padding: 0px !important;background-image: url(https://farmchemie.yasithawd.com/wp-content/uploads/2022/09/marketbgimg1-sp.png?id=2527) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\"][vc_row_inner][vc_column_inner el_class=\"cborder1\" width=\"1/3\" css=\".vc_custom_1662367183321{background-color: #6e368d !important;}\"][ult_animation_block animation=\"fadeIn\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][bsf-info-box icon_type=\"custom\" icon_img=\"id^2537|url^https://farmchemie.yasithawd.com/wp-content/uploads/2022/09/earthicon-1.png|caption^null|alt^null|title^earthicon-1|description^null\" img_width=\"100\" title=\"Global\" pos=\"right\" title_font_style=\"font-weight:bold;\" title_font_size=\"desktop:48px;\" title_font_color=\"#ffffff\" desc_font_size=\"desktop:24px;\" desc_font_color=\"#ffffff\"]International Market[/bsf-info-box][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\" css=\".vc_custom_1662370098614{background-color: #089548 !important;}\"][ult_animation_block animation=\"fadeIn\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][bsf-info-box icon_type=\"custom\" icon_img=\"id^2536|url^https://farmchemie.yasithawd.com/wp-content/uploads/2022/09/srilankaicon-1.png|caption^null|alt^null|title^srilankaicon-1|description^null\" img_width=\"100\" title=\"Local\" pos=\"left\" title_font_style=\"font-weight:bold;\" title_font_size=\"desktop:48px;\" title_font_color=\"#ffffff\" desc_font_size=\"desktop:24px;\" desc_font_color=\"#ffffff\"]Sri Lankan Market[/bsf-info-box][/ult_animation_block][/vc_column_inner][/vc_row_inner][vc_row_inner equal_height=\"yes\" css=\".vc_custom_1662370166856{margin-top: 20px !important;margin-right: 50px !important;margin-left: 50px !important;}\"][vc_column_inner width=\"5/12\"][vc_column_text]FARMCHEMIE is a world-renowned manufacturer of feed additives and feed supplements. We offer our FarmStar and PetStar branded products to the international markets We provide toll-manufacturing services to globally recognized marketing companies for the Asian &amp; African markets. Our manufacturing plant is equipped with fully automated production lines from Bühler.[/vc_column_text][/vc_column_inner][vc_column_inner width=\"2/12\"][/vc_column_inner][vc_column_inner width=\"5/12\"][vc_column_text]FARMCHEMIE offers an island wide distribution, technical consultation and poultry vaccination services of high-quality animal healthcare products from world-renowned suppliers.\r\nWe offer both locally manufactured and imported products to cater the poultry, dairy, swine, pet-care and aqua markets.[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_row_inner equal_height=\"yes\" content_placement=\"middle\" css=\".vc_custom_1662460080909{margin-top: 20px !important;margin-right: 50px !important;margin-bottom: 10px !important;margin-left: 50px !important;}\"][vc_column_inner width=\"1/12\"][/vc_column_inner][vc_column_inner width=\"1/12\"][vc_single_image image=\"2598\" img_size=\"full\"][/vc_column_inner][vc_column_inner width=\"1/12\"][vc_single_image image=\"2599\" img_size=\"full\"][/vc_column_inner][vc_column_inner width=\"1/12\"][vc_single_image image=\"2600\" img_size=\"full\"][/vc_column_inner][vc_column_inner width=\"1/12\"][/vc_column_inner][vc_column_inner width=\"2/12\"][/vc_column_inner][vc_column_inner width=\"1/12\"][vc_single_image image=\"2597\" img_size=\"full\"][/vc_column_inner][vc_column_inner width=\"1/12\"][vc_single_image image=\"2596\" img_size=\"full\"][/vc_column_inner][vc_column_inner width=\"1/12\"][vc_single_image image=\"2595\" img_size=\"full\"][/vc_column_inner][vc_column_inner width=\"1/12\"][vc_single_image image=\"2594\" img_size=\"full\"][/vc_column_inner][vc_column_inner width=\"1/12\"][vc_single_image image=\"2593\" img_size=\"full\"][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner width=\"1/2\"][ult_buttons btn_title=\"READ MORE\" btn_align=\"ubtn-center\" btn_size=\"ubtn-custom\" btn_width=\"300\" btn_height=\"60\" btn_title_color=\"#6e368d\" btn_bg_color=\"rgba(224,224,224,0.01)\" icon=\"dt-icon-the7-menu-014\" icon_size=\"40\" icon_color=\"#6e368d\" btn_icon_pos=\"ubtn-sep-icon-at-right\" btn_font_style=\"font-weight:bold;\" btn_font_size=\"desktop:24px;\"][/vc_column_inner][vc_column_inner width=\"1/2\"][ult_buttons btn_title=\"READ MORE\" btn_align=\"ubtn-center\" btn_size=\"ubtn-custom\" btn_width=\"300\" btn_height=\"60\" btn_title_color=\"#089548\" btn_bg_color=\"rgba(224,224,224,0.01)\" icon=\"dt-icon-the7-menu-013\" icon_size=\"40\" icon_color=\"#089548\" btn_icon_pos=\"ubtn-sep-icon-at-left\" btn_font_style=\"font-weight:bold;\" btn_font_size=\"desktop:24px;\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row full_width=\"stretch_row_content_no_spaces\" full_height=\"yes\" columns_placement=\"top\" bg_type=\"image\" parallax_style=\"vcpb-default\" bg_image_new=\"id^2604|url^https://farmchemie.yasithawd.com/wp-content/uploads/2022/09/rowimg_mod_4HigherRes1.jpg|caption^null|alt^null|title^rowimg_mod_4HigherRes1|description^null\" bg_image_repeat=\"no-repeat\"][vc_column][ultimate_heading main_heading=\"SPIRIT OF INNOVATION IN ANIMAL HEALTH\" main_heading_color=\"#6e368d\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:48px;\"][/ultimate_heading][vc_row_inner css=\".vc_custom_1662456998651{padding-bottom: 500px !important;}\"][vc_column_inner][/vc_column_inner][/vc_row_inner][vc_row_inner content_placement=\"bottom\" css=\".vc_custom_1662458571859{padding-right: 0px !important;padding-bottom: 10px !important;padding-left: 0px !important;}\"][vc_column_inner width=\"6/12\" css=\".vc_custom_1662439605469{background-color: rgba(255,255,255,0.5) !important;*background-color: rgb(255,255,255) !important;}\"][vc_single_image image=\"2567\" img_size=\"full\" alignment=\"center\"][/vc_column_inner][vc_column_inner width=\"3/12\"][/vc_column_inner][vc_column_inner width=\"3/12\" css=\".vc_custom_1662371690284{background-color: #6e368d !important;}\"][vc_single_image image=\"2566\" img_size=\"full\" alignment=\"center\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row]','Home2','','inherit','closed','closed','','2525-revision-v1','','','2022-09-07 07:12:49','2022-09-07 07:12:49','',2525,'https://farmchemie.yasithawd.com/?p=2609',0,'revision','',0),(3690,1,'2021-04-12 13:00:47','2021-04-12 13:00:47','[vc_row][vc_column][vc_column_text]Farmchemie Private Limited, a market leader in animal health products won the CNCI Achiever Awards for Industrial Excellence 2020, Manufacturing Sector, Extra Large Category, National Level award for the second consecutive year held at Hotel Galadari, Colombo.\r\n\r\nWimal Weerawansa, Minister of Industries was the chief guest and presented the award to Uditha Wanigasinghe, Managing Director Farmchemie.\r\n\r\nWith a successful history exceeding 15 years, Farmchemie saw a remarkable growth extending to the international market.\r\n\r\nThe company manufactures and markets animal health products, veterinary pharmaceuticals, animal feed additives in several brands including ‘Farmstar’ their flagship brand. Since 2018 Farmchemie has been exporting its products to India, Uganda, Bangladesh, Pakistan, Nepal and UAE.\r\n\r\n‘‘Having started in a very small scale with just three employees, Farmchemie has been able to record a speedy growth to become the market leader in animal health products sector because we are committed to investigate and identify problems and requirements at animal husbandry and provide solutions on time.” said Wanigasinghe.\r\n<div id=\"block-inject-1\" class=\"block-inject block-inject-1\">\r\n<div id=\"block-block-38\" class=\"block block-block clearfix\">\r\n<div class=\"content\"></div>\r\n</div>\r\n</div>\r\n<div class=\"clearfix\"></div>\r\n“Today, Farmchemie is the first and only animal health products company in Sri Lanka to have been accredited with ISO 9001:2015, WHO GMP quality certifications. In addition to a comprehensive manufacturing facility with sophisticated machinery the company has an exclusive BOI approved plant for manufacturing export products which has ISO 9001:2015, GMP+ and FAMI QS standards.”\r\n\r\nFarmchemie has been recognized with many accolades in its journey to success including National Enterprise Excellence-2013 (Merit award), Gold Award at Agribusiness Awards-2014 organized by the department of agriculture, APEA-2014 (Emerging Entrepreneur) and CNCI Achiever Awards 2019.[/vc_column_text][/vc_column][/vc_row]','Farmchemie wins CNCI Achiever Award again','','publish','closed','closed','','farmchemie-wins-cnci-achiever-award-again','','','2023-09-14 13:46:02','2023-09-14 13:46:02','',0,'https://farmchemie.yasithawd.com/?p=3690',0,'post','',0),(2612,1,'2022-09-07 08:23:33','2022-09-07 08:23:33','[vc_row full_width=\"stretch_row_content\" bg_type=\"image\" parallax_style=\"vcpb-default\" bg_image_new=\"id^2524|url^https://farmchemie.yasithawd.com/wp-content/uploads/2022/09/marketbgimg1.png|caption^null|alt^null|title^marketbgimg1|description^null\" bg_image_repeat=\"no-repeat\"][vc_column][ultimate_heading main_heading=\"SELECT YOUR MARKET/REGION\" main_heading_color=\"#6e368d\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:48px;\"][/ultimate_heading][vc_empty_space height=\"300px\" css=\".vc_custom_1662447237222{margin: 0px !important;padding: 0px !important;background-image: url(https://farmchemie.yasithawd.com/wp-content/uploads/2022/09/marketbgimg1-sp.png?id=2527) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\"][vc_row_inner][vc_column_inner el_class=\"cborder1\" width=\"1/3\" css=\".vc_custom_1662367183321{background-color: #6e368d !important;}\"][ult_animation_block animation=\"fadeIn\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][bsf-info-box icon_type=\"custom\" icon_img=\"id^2537|url^https://farmchemie.yasithawd.com/wp-content/uploads/2022/09/earthicon-1.png|caption^null|alt^null|title^earthicon-1|description^null\" img_width=\"100\" title=\"Global\" pos=\"right\" title_font_style=\"font-weight:bold;\" title_font_size=\"desktop:48px;\" title_font_color=\"#ffffff\" desc_font_size=\"desktop:24px;\" desc_font_color=\"#ffffff\"]International Market[/bsf-info-box][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\" css=\".vc_custom_1662538982269{background-color: #059444 !important;}\"][ult_animation_block animation=\"fadeIn\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][bsf-info-box icon_type=\"custom\" icon_img=\"id^2536|url^https://farmchemie.yasithawd.com/wp-content/uploads/2022/09/srilankaicon-1.png|caption^null|alt^null|title^srilankaicon-1|description^null\" img_width=\"100\" title=\"Local\" pos=\"left\" title_font_style=\"font-weight:bold;\" title_font_size=\"desktop:48px;\" title_font_color=\"#ffffff\" desc_font_size=\"desktop:24px;\" desc_font_color=\"#ffffff\"]Sri Lankan Market[/bsf-info-box][/ult_animation_block][/vc_column_inner][/vc_row_inner][vc_row_inner equal_height=\"yes\" css=\".vc_custom_1662370166856{margin-top: 20px !important;margin-right: 50px !important;margin-left: 50px !important;}\"][vc_column_inner width=\"5/12\"][vc_column_text]FARMCHEMIE is a world-renowned manufacturer of feed additives and feed supplements. We offer our FarmStar and PetStar branded products to the international markets We provide toll-manufacturing services to globally recognized marketing companies for the Asian &amp; African markets. Our manufacturing plant is equipped with fully automated production lines from Bühler.[/vc_column_text][/vc_column_inner][vc_column_inner width=\"2/12\"][/vc_column_inner][vc_column_inner width=\"5/12\"][vc_column_text]FARMCHEMIE offers an island wide distribution, technical consultation and poultry vaccination services of high-quality animal healthcare products from world-renowned suppliers.\r\nWe offer both locally manufactured and imported products to cater the poultry, dairy, swine, pet-care and aqua markets.[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_row_inner equal_height=\"yes\" content_placement=\"middle\" css=\".vc_custom_1662460080909{margin-top: 20px !important;margin-right: 50px !important;margin-bottom: 10px !important;margin-left: 50px !important;}\"][vc_column_inner width=\"1/12\"][/vc_column_inner][vc_column_inner width=\"1/12\"][vc_single_image image=\"2598\" img_size=\"full\"][/vc_column_inner][vc_column_inner width=\"1/12\"][vc_single_image image=\"2599\" img_size=\"full\"][/vc_column_inner][vc_column_inner width=\"1/12\"][vc_single_image image=\"2600\" img_size=\"full\"][/vc_column_inner][vc_column_inner width=\"1/12\"][/vc_column_inner][vc_column_inner width=\"2/12\"][/vc_column_inner][vc_column_inner width=\"1/12\"][vc_single_image image=\"2597\" img_size=\"full\"][/vc_column_inner][vc_column_inner width=\"1/12\"][vc_single_image image=\"2596\" img_size=\"full\"][/vc_column_inner][vc_column_inner width=\"1/12\"][vc_single_image image=\"2595\" img_size=\"full\"][/vc_column_inner][vc_column_inner width=\"1/12\"][vc_single_image image=\"2594\" img_size=\"full\"][/vc_column_inner][vc_column_inner width=\"1/12\"][vc_single_image image=\"2593\" img_size=\"full\"][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner width=\"1/2\"][ult_buttons btn_title=\"READ MORE\" btn_align=\"ubtn-center\" btn_size=\"ubtn-custom\" btn_width=\"300\" btn_height=\"60\" btn_title_color=\"#6e368d\" btn_bg_color=\"rgba(224,224,224,0.01)\" icon=\"dt-icon-the7-menu-014\" icon_size=\"40\" icon_color=\"#6e368d\" btn_icon_pos=\"ubtn-sep-icon-at-right\" btn_font_style=\"font-weight:bold;\" btn_font_size=\"desktop:24px;\"][/vc_column_inner][vc_column_inner width=\"1/2\"][ult_buttons btn_title=\"READ MORE\" btn_align=\"ubtn-center\" btn_size=\"ubtn-custom\" btn_width=\"300\" btn_height=\"60\" btn_title_color=\"#059444\" btn_bg_color=\"rgba(224,224,224,0.01)\" icon=\"dt-icon-the7-menu-013\" icon_size=\"40\" icon_color=\"#059444\" btn_icon_pos=\"ubtn-sep-icon-at-left\" btn_font_style=\"font-weight:bold;\" btn_font_size=\"desktop:24px;\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row full_width=\"stretch_row_content_no_spaces\" full_height=\"yes\" columns_placement=\"top\" bg_type=\"image\" parallax_style=\"vcpb-default\" bg_image_new=\"id^2604|url^https://farmchemie.yasithawd.com/wp-content/uploads/2022/09/rowimg_mod_4HigherRes1.jpg|caption^null|alt^null|title^rowimg_mod_4HigherRes1|description^null\" bg_image_repeat=\"no-repeat\"][vc_column][ultimate_heading main_heading=\"SPIRIT OF INNOVATION IN ANIMAL HEALTH\" main_heading_color=\"#6e368d\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:48px;\"][/ultimate_heading][vc_row_inner css=\".vc_custom_1662456998651{padding-bottom: 500px !important;}\"][vc_column_inner][/vc_column_inner][/vc_row_inner][vc_row_inner content_placement=\"bottom\" css=\".vc_custom_1662458571859{padding-right: 0px !important;padding-bottom: 10px !important;padding-left: 0px !important;}\"][vc_column_inner width=\"6/12\" css=\".vc_custom_1662439605469{background-color: rgba(255,255,255,0.5) !important;*background-color: rgb(255,255,255) !important;}\"][vc_single_image image=\"2567\" img_size=\"full\" alignment=\"center\"][/vc_column_inner][vc_column_inner width=\"3/12\"][/vc_column_inner][vc_column_inner width=\"3/12\" css=\".vc_custom_1662371690284{background-color: #6e368d !important;}\"][vc_single_image image=\"2566\" img_size=\"full\" alignment=\"center\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row]','Home2','','inherit','closed','closed','','2525-revision-v1','','','2022-09-07 08:23:33','2022-09-07 08:23:33','',2525,'https://farmchemie.yasithawd.com/?p=2612',0,'revision','',0);
INSERT INTO `wplf_posts` VALUES (2613,1,'2022-09-07 08:26:02','2022-09-07 08:26:02','[vc_row full_width=\"stretch_row_content\" bg_type=\"image\" parallax_style=\"vcpb-default\" bg_image_new=\"id^2524|url^https://farmchemie.yasithawd.com/wp-content/uploads/2022/09/marketbgimg1.png|caption^null|alt^null|title^marketbgimg1|description^null\" bg_image_repeat=\"no-repeat\"][vc_column][ultimate_heading main_heading=\"SELECT YOUR MARKET/REGION\" main_heading_color=\"#6e368d\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:48px;\"][/ultimate_heading][vc_empty_space height=\"300px\" css=\".vc_custom_1662447237222{margin: 0px !important;padding: 0px !important;background-image: url(https://farmchemie.yasithawd.com/wp-content/uploads/2022/09/marketbgimg1-sp.png?id=2527) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\"][vc_row_inner][vc_column_inner el_class=\"customborderradius1\" width=\"1/3\" css=\".vc_custom_1662539141341{background-color: #6e368d !important;}\"][ult_animation_block animation=\"fadeIn\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][bsf-info-box icon_type=\"custom\" icon_img=\"id^2537|url^https://farmchemie.yasithawd.com/wp-content/uploads/2022/09/earthicon-1.png|caption^null|alt^null|title^earthicon-1|description^null\" img_width=\"100\" title=\"Global\" pos=\"right\" title_font_style=\"font-weight:bold;\" title_font_size=\"desktop:48px;\" title_font_color=\"#ffffff\" desc_font_size=\"desktop:24px;\" desc_font_color=\"#ffffff\"]International Market[/bsf-info-box][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner el_class=\"customborderradius1\" width=\"1/3\" css=\".vc_custom_1662539133598{background-color: #059444 !important;}\"][ult_animation_block animation=\"fadeIn\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][bsf-info-box icon_type=\"custom\" icon_img=\"id^2536|url^https://farmchemie.yasithawd.com/wp-content/uploads/2022/09/srilankaicon-1.png|caption^null|alt^null|title^srilankaicon-1|description^null\" img_width=\"100\" title=\"Local\" pos=\"left\" title_font_style=\"font-weight:bold;\" title_font_size=\"desktop:48px;\" title_font_color=\"#ffffff\" desc_font_size=\"desktop:24px;\" desc_font_color=\"#ffffff\"]Sri Lankan Market[/bsf-info-box][/ult_animation_block][/vc_column_inner][/vc_row_inner][vc_row_inner equal_height=\"yes\" css=\".vc_custom_1662370166856{margin-top: 20px !important;margin-right: 50px !important;margin-left: 50px !important;}\"][vc_column_inner width=\"5/12\"][vc_column_text]FARMCHEMIE is a world-renowned manufacturer of feed additives and feed supplements. We offer our FarmStar and PetStar branded products to the international markets We provide toll-manufacturing services to globally recognized marketing companies for the Asian &amp; African markets. Our manufacturing plant is equipped with fully automated production lines from Bühler.[/vc_column_text][/vc_column_inner][vc_column_inner width=\"2/12\"][/vc_column_inner][vc_column_inner width=\"5/12\"][vc_column_text]FARMCHEMIE offers an island wide distribution, technical consultation and poultry vaccination services of high-quality animal healthcare products from world-renowned suppliers.\r\nWe offer both locally manufactured and imported products to cater the poultry, dairy, swine, pet-care and aqua markets.[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_row_inner equal_height=\"yes\" content_placement=\"middle\" css=\".vc_custom_1662460080909{margin-top: 20px !important;margin-right: 50px !important;margin-bottom: 10px !important;margin-left: 50px !important;}\"][vc_column_inner width=\"1/12\"][/vc_column_inner][vc_column_inner width=\"1/12\"][vc_single_image image=\"2598\" img_size=\"full\"][/vc_column_inner][vc_column_inner width=\"1/12\"][vc_single_image image=\"2599\" img_size=\"full\"][/vc_column_inner][vc_column_inner width=\"1/12\"][vc_single_image image=\"2600\" img_size=\"full\"][/vc_column_inner][vc_column_inner width=\"1/12\"][/vc_column_inner][vc_column_inner width=\"2/12\"][/vc_column_inner][vc_column_inner width=\"1/12\"][vc_single_image image=\"2597\" img_size=\"full\"][/vc_column_inner][vc_column_inner width=\"1/12\"][vc_single_image image=\"2596\" img_size=\"full\"][/vc_column_inner][vc_column_inner width=\"1/12\"][vc_single_image image=\"2595\" img_size=\"full\"][/vc_column_inner][vc_column_inner width=\"1/12\"][vc_single_image image=\"2594\" img_size=\"full\"][/vc_column_inner][vc_column_inner width=\"1/12\"][vc_single_image image=\"2593\" img_size=\"full\"][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner width=\"1/2\"][ult_buttons btn_title=\"READ MORE\" btn_align=\"ubtn-center\" btn_size=\"ubtn-custom\" btn_width=\"300\" btn_height=\"60\" btn_title_color=\"#6e368d\" btn_bg_color=\"rgba(224,224,224,0.01)\" icon=\"dt-icon-the7-menu-014\" icon_size=\"40\" icon_color=\"#6e368d\" btn_icon_pos=\"ubtn-sep-icon-at-right\" btn_font_style=\"font-weight:bold;\" btn_font_size=\"desktop:24px;\"][/vc_column_inner][vc_column_inner width=\"1/2\"][ult_buttons btn_title=\"READ MORE\" btn_align=\"ubtn-center\" btn_size=\"ubtn-custom\" btn_width=\"300\" btn_height=\"60\" btn_title_color=\"#059444\" btn_bg_color=\"rgba(224,224,224,0.01)\" icon=\"dt-icon-the7-menu-013\" icon_size=\"40\" icon_color=\"#059444\" btn_icon_pos=\"ubtn-sep-icon-at-left\" btn_font_style=\"font-weight:bold;\" btn_font_size=\"desktop:24px;\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row full_width=\"stretch_row_content_no_spaces\" full_height=\"yes\" columns_placement=\"top\" bg_type=\"image\" parallax_style=\"vcpb-default\" bg_image_new=\"id^2604|url^https://farmchemie.yasithawd.com/wp-content/uploads/2022/09/rowimg_mod_4HigherRes1.jpg|caption^null|alt^null|title^rowimg_mod_4HigherRes1|description^null\" bg_image_repeat=\"no-repeat\"][vc_column][ultimate_heading main_heading=\"SPIRIT OF INNOVATION IN ANIMAL HEALTH\" main_heading_color=\"#6e368d\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:48px;\"][/ultimate_heading][vc_row_inner css=\".vc_custom_1662456998651{padding-bottom: 500px !important;}\"][vc_column_inner][/vc_column_inner][/vc_row_inner][vc_row_inner content_placement=\"bottom\" css=\".vc_custom_1662458571859{padding-right: 0px !important;padding-bottom: 10px !important;padding-left: 0px !important;}\"][vc_column_inner el_class=\"customborderradius1\" width=\"6/12\" css=\".vc_custom_1662539148421{background-color: rgba(255,255,255,0.5) !important;*background-color: rgb(255,255,255) !important;}\"][vc_single_image image=\"2567\" img_size=\"full\" alignment=\"center\"][/vc_column_inner][vc_column_inner width=\"3/12\"][/vc_column_inner][vc_column_inner width=\"3/12\" css=\".vc_custom_1662371690284{background-color: #6e368d !important;}\"][vc_single_image image=\"2566\" img_size=\"full\" alignment=\"center\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row]','Home2','','inherit','closed','closed','','2525-revision-v1','','','2022-09-07 08:26:02','2022-09-07 08:26:02','',2525,'https://farmchemie.yasithawd.com/?p=2613',0,'revision','',0),(2617,1,'2022-09-09 13:32:51','2022-09-09 13:32:51','[vc_row full_width=\"stretch_row_content\" bg_type=\"image\" parallax_style=\"vcpb-default\" bg_image_new=\"id^2524|url^https://farmchemie.yasithawd.com/wp-content/uploads/2022/09/marketbgimg1.png|caption^null|alt^null|title^marketbgimg1|description^null\" bg_image_repeat=\"no-repeat\" css=\".vc_custom_1662730336770{margin-right: 0px !important;margin-left: 0px !important;padding-right: 0px !important;padding-left: 0px !important;}\"][vc_column][ultimate_heading main_heading=\"SELECT YOUR MARKET/REGION\" main_heading_color=\"#6e368d\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:48px;\"][/ultimate_heading][vc_empty_space height=\"300px\" css=\".vc_custom_1662447237222{margin: 0px !important;padding: 0px !important;background-image: url(https://farmchemie.yasithawd.com/wp-content/uploads/2022/09/marketbgimg1-sp.png?id=2527) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\"][vc_row_inner][vc_column_inner el_class=\"customborderradius1\" width=\"1/3\" css=\".vc_custom_1662539141341{background-color: #6e368d !important;}\"][ult_animation_block animation=\"fadeIn\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][bsf-info-box icon_type=\"custom\" icon_img=\"id^2537|url^https://farmchemie.yasithawd.com/wp-content/uploads/2022/09/earthicon-1.png|caption^null|alt^null|title^earthicon-1|description^null\" img_width=\"100\" title=\"Global\" pos=\"right\" title_font_style=\"font-weight:bold;\" title_font_size=\"desktop:48px;\" title_font_color=\"#ffffff\" desc_font_size=\"desktop:24px;\" desc_font_color=\"#ffffff\"]International Market[/bsf-info-box][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner el_class=\"customborderradius1\" width=\"1/3\" css=\".vc_custom_1662539133598{background-color: #059444 !important;}\"][ult_animation_block animation=\"fadeIn\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][bsf-info-box icon_type=\"custom\" icon_img=\"id^2536|url^https://farmchemie.yasithawd.com/wp-content/uploads/2022/09/srilankaicon-1.png|caption^null|alt^null|title^srilankaicon-1|description^null\" img_width=\"100\" title=\"Local\" pos=\"left\" title_font_style=\"font-weight:bold;\" title_font_size=\"desktop:48px;\" title_font_color=\"#ffffff\" desc_font_size=\"desktop:24px;\" desc_font_color=\"#ffffff\"]Sri Lankan Market[/bsf-info-box][/ult_animation_block][/vc_column_inner][/vc_row_inner][vc_row_inner equal_height=\"yes\" css=\".vc_custom_1662370166856{margin-top: 20px !important;margin-right: 50px !important;margin-left: 50px !important;}\"][vc_column_inner width=\"5/12\"][vc_column_text]FARMCHEMIE is a world-renowned manufacturer of feed additives and feed supplements. We offer our FarmStar and PetStar branded products to the international markets.[/vc_column_text][/vc_column_inner][vc_column_inner width=\"2/12\"][/vc_column_inner][vc_column_inner width=\"5/12\"][vc_column_text]FARMCHEMIE offers an island wide distribution, technical consultation and poultry vaccination services of high-quality animal healthcare products from world-renowned suppliers.[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_row_inner equal_height=\"yes\" content_placement=\"middle\" css=\".vc_custom_1662460080909{margin-top: 20px !important;margin-right: 50px !important;margin-bottom: 10px !important;margin-left: 50px !important;}\"][vc_column_inner width=\"2/12\"][vc_single_image image=\"2599\" img_size=\"full\"][/vc_column_inner][vc_column_inner width=\"1/12\"][/vc_column_inner][vc_column_inner width=\"2/12\"][vc_single_image image=\"2598\" img_size=\"full\"][/vc_column_inner][vc_column_inner width=\"2/12\"][/vc_column_inner][vc_column_inner width=\"1/12\"][/vc_column_inner][vc_column_inner width=\"1/12\"][vc_single_image image=\"2593\" img_size=\"full\"][vc_single_image image=\"2596\" img_size=\"full\"][/vc_column_inner][vc_column_inner width=\"1/12\"][vc_single_image image=\"2595\" img_size=\"full\"][/vc_column_inner][vc_column_inner width=\"1/12\"][vc_single_image image=\"2594\" img_size=\"full\"][vc_single_image image=\"2597\" img_size=\"full\"][/vc_column_inner][vc_column_inner width=\"1/12\"][/vc_column_inner][/vc_row_inner][vc_row_inner equal_height=\"yes\" css=\".vc_custom_1662370166856{margin-top: 20px !important;margin-right: 50px !important;margin-left: 50px !important;}\"][vc_column_inner width=\"5/12\"][vc_column_text]We provide toll-manufacturing services to globally recognized marketing companies for the Asian &amp; African markets. Our manufacturing plant is equipped with fully automated production lines from Bühler.[/vc_column_text][/vc_column_inner][vc_column_inner width=\"2/12\"][/vc_column_inner][vc_column_inner width=\"5/12\"][vc_column_text]We offer both locally manufactured and imported products to cater the poultry, dairy, swine, pet-care and aqua markets.[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_row_inner equal_height=\"yes\" content_placement=\"middle\" css=\".vc_custom_1662460080909{margin-top: 20px !important;margin-right: 50px !important;margin-bottom: 10px !important;margin-left: 50px !important;}\"][vc_column_inner width=\"5/12\"][vc_single_image image=\"2600\" img_size=\"full\" alignment=\"center\"][/vc_column_inner][vc_column_inner width=\"2/12\"][/vc_column_inner][vc_column_inner width=\"5/12\"][vc_single_image image=\"2615\" img_size=\"full\" alignment=\"center\"][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner width=\"1/2\"][ult_buttons btn_title=\"READ MORE\" btn_align=\"ubtn-center\" btn_size=\"ubtn-custom\" btn_width=\"300\" btn_height=\"60\" btn_title_color=\"#6e368d\" btn_bg_color=\"rgba(224,224,224,0.01)\" icon=\"dt-icon-the7-menu-014\" icon_size=\"40\" icon_color=\"#6e368d\" btn_icon_pos=\"ubtn-sep-icon-at-right\" btn_font_style=\"font-weight:bold;\" btn_font_size=\"desktop:24px;\"][/vc_column_inner][vc_column_inner width=\"1/2\"][ult_buttons btn_title=\"READ MORE\" btn_align=\"ubtn-center\" btn_size=\"ubtn-custom\" btn_width=\"300\" btn_height=\"60\" btn_title_color=\"#059444\" btn_bg_color=\"rgba(224,224,224,0.01)\" icon=\"dt-icon-the7-menu-013\" icon_size=\"40\" icon_color=\"#059444\" btn_icon_pos=\"ubtn-sep-icon-at-left\" btn_font_style=\"font-weight:bold;\" btn_font_size=\"desktop:24px;\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row full_width=\"stretch_row_content_no_spaces\" full_height=\"yes\" columns_placement=\"top\" bg_type=\"image\" parallax_style=\"vcpb-default\" bg_image_new=\"id^2604|url^https://farmchemie.yasithawd.com/wp-content/uploads/2022/09/rowimg_mod_4HigherRes1.jpg|caption^null|alt^null|title^rowimg_mod_4HigherRes1|description^null\" bg_image_repeat=\"no-repeat\"][vc_column][ultimate_heading main_heading=\"SPIRIT OF INNOVATION IN ANIMAL HEALTH\" main_heading_color=\"#6e368d\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:48px;\"][/ultimate_heading][vc_row_inner css=\".vc_custom_1662456998651{padding-bottom: 500px !important;}\"][vc_column_inner][/vc_column_inner][/vc_row_inner][vc_row_inner content_placement=\"bottom\" css=\".vc_custom_1662458571859{padding-right: 0px !important;padding-bottom: 10px !important;padding-left: 0px !important;}\"][vc_column_inner el_class=\"customborderradius1\" width=\"6/12\" css=\".vc_custom_1662539148421{background-color: rgba(255,255,255,0.5) !important;*background-color: rgb(255,255,255) !important;}\"][vc_single_image image=\"2567\" img_size=\"full\" alignment=\"center\"][/vc_column_inner][vc_column_inner width=\"3/12\"][/vc_column_inner][vc_column_inner width=\"3/12\" css=\".vc_custom_1662371690284{background-color: #6e368d !important;}\"][vc_single_image image=\"2566\" img_size=\"full\" alignment=\"center\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row]','Home2','','inherit','closed','closed','','2525-revision-v1','','','2022-09-09 13:32:51','2022-09-09 13:32:51','',2525,'https://farmchemie.yasithawd.com/?p=2617',0,'revision','',0),(2616,1,'2022-09-08 09:41:48','2022-09-08 09:41:48','[vc_row full_width=\"stretch_row_content\" bg_type=\"image\" parallax_style=\"vcpb-default\" bg_image_new=\"id^2524|url^https://farmchemie.yasithawd.com/wp-content/uploads/2022/09/marketbgimg1.png|caption^null|alt^null|title^marketbgimg1|description^null\" bg_image_repeat=\"no-repeat\"][vc_column][ultimate_heading main_heading=\"SELECT YOUR MARKET/REGION\" main_heading_color=\"#6e368d\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:48px;\"][/ultimate_heading][vc_empty_space height=\"300px\" css=\".vc_custom_1662447237222{margin: 0px !important;padding: 0px !important;background-image: url(https://farmchemie.yasithawd.com/wp-content/uploads/2022/09/marketbgimg1-sp.png?id=2527) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\"][vc_row_inner][vc_column_inner el_class=\"customborderradius1\" width=\"1/3\" css=\".vc_custom_1662539141341{background-color: #6e368d !important;}\"][ult_animation_block animation=\"fadeIn\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][bsf-info-box icon_type=\"custom\" icon_img=\"id^2537|url^https://farmchemie.yasithawd.com/wp-content/uploads/2022/09/earthicon-1.png|caption^null|alt^null|title^earthicon-1|description^null\" img_width=\"100\" title=\"Global\" pos=\"right\" title_font_style=\"font-weight:bold;\" title_font_size=\"desktop:48px;\" title_font_color=\"#ffffff\" desc_font_size=\"desktop:24px;\" desc_font_color=\"#ffffff\"]International Market[/bsf-info-box][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner el_class=\"customborderradius1\" width=\"1/3\" css=\".vc_custom_1662539133598{background-color: #059444 !important;}\"][ult_animation_block animation=\"fadeIn\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][bsf-info-box icon_type=\"custom\" icon_img=\"id^2536|url^https://farmchemie.yasithawd.com/wp-content/uploads/2022/09/srilankaicon-1.png|caption^null|alt^null|title^srilankaicon-1|description^null\" img_width=\"100\" title=\"Local\" pos=\"left\" title_font_style=\"font-weight:bold;\" title_font_size=\"desktop:48px;\" title_font_color=\"#ffffff\" desc_font_size=\"desktop:24px;\" desc_font_color=\"#ffffff\"]Sri Lankan Market[/bsf-info-box][/ult_animation_block][/vc_column_inner][/vc_row_inner][vc_row_inner equal_height=\"yes\" css=\".vc_custom_1662370166856{margin-top: 20px !important;margin-right: 50px !important;margin-left: 50px !important;}\"][vc_column_inner width=\"5/12\"][vc_column_text]FARMCHEMIE is a world-renowned manufacturer of feed additives and feed supplements. We offer our FarmStar and PetStar branded products to the international markets.[/vc_column_text][/vc_column_inner][vc_column_inner width=\"2/12\"][/vc_column_inner][vc_column_inner width=\"5/12\"][vc_column_text]FARMCHEMIE offers an island wide distribution, technical consultation and poultry vaccination services of high-quality animal healthcare products from world-renowned suppliers.[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_row_inner equal_height=\"yes\" content_placement=\"middle\" css=\".vc_custom_1662460080909{margin-top: 20px !important;margin-right: 50px !important;margin-bottom: 10px !important;margin-left: 50px !important;}\"][vc_column_inner width=\"2/12\"][vc_single_image image=\"2599\" img_size=\"full\"][/vc_column_inner][vc_column_inner width=\"1/12\"][/vc_column_inner][vc_column_inner width=\"2/12\"][vc_single_image image=\"2598\" img_size=\"full\"][/vc_column_inner][vc_column_inner width=\"2/12\"][/vc_column_inner][vc_column_inner width=\"1/12\"][/vc_column_inner][vc_column_inner width=\"1/12\"][vc_single_image image=\"2593\" img_size=\"full\"][vc_single_image image=\"2596\" img_size=\"full\"][/vc_column_inner][vc_column_inner width=\"1/12\"][vc_single_image image=\"2595\" img_size=\"full\"][/vc_column_inner][vc_column_inner width=\"1/12\"][vc_single_image image=\"2594\" img_size=\"full\"][vc_single_image image=\"2597\" img_size=\"full\"][/vc_column_inner][vc_column_inner width=\"1/12\"][/vc_column_inner][/vc_row_inner][vc_row_inner equal_height=\"yes\" css=\".vc_custom_1662370166856{margin-top: 20px !important;margin-right: 50px !important;margin-left: 50px !important;}\"][vc_column_inner width=\"5/12\"][vc_column_text]We provide toll-manufacturing services to globally recognized marketing companies for the Asian &amp; African markets. Our manufacturing plant is equipped with fully automated production lines from Bühler.[/vc_column_text][/vc_column_inner][vc_column_inner width=\"2/12\"][/vc_column_inner][vc_column_inner width=\"5/12\"][vc_column_text]We offer both locally manufactured and imported products to cater the poultry, dairy, swine, pet-care and aqua markets.[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_row_inner equal_height=\"yes\" content_placement=\"middle\" css=\".vc_custom_1662460080909{margin-top: 20px !important;margin-right: 50px !important;margin-bottom: 10px !important;margin-left: 50px !important;}\"][vc_column_inner width=\"5/12\"][vc_single_image image=\"2600\" img_size=\"full\" alignment=\"center\"][/vc_column_inner][vc_column_inner width=\"2/12\"][/vc_column_inner][vc_column_inner width=\"5/12\"][vc_single_image image=\"2615\" img_size=\"full\" alignment=\"center\"][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner width=\"1/2\"][ult_buttons btn_title=\"READ MORE\" btn_align=\"ubtn-center\" btn_size=\"ubtn-custom\" btn_width=\"300\" btn_height=\"60\" btn_title_color=\"#6e368d\" btn_bg_color=\"rgba(224,224,224,0.01)\" icon=\"dt-icon-the7-menu-014\" icon_size=\"40\" icon_color=\"#6e368d\" btn_icon_pos=\"ubtn-sep-icon-at-right\" btn_font_style=\"font-weight:bold;\" btn_font_size=\"desktop:24px;\"][/vc_column_inner][vc_column_inner width=\"1/2\"][ult_buttons btn_title=\"READ MORE\" btn_align=\"ubtn-center\" btn_size=\"ubtn-custom\" btn_width=\"300\" btn_height=\"60\" btn_title_color=\"#059444\" btn_bg_color=\"rgba(224,224,224,0.01)\" icon=\"dt-icon-the7-menu-013\" icon_size=\"40\" icon_color=\"#059444\" btn_icon_pos=\"ubtn-sep-icon-at-left\" btn_font_style=\"font-weight:bold;\" btn_font_size=\"desktop:24px;\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row full_width=\"stretch_row_content_no_spaces\" full_height=\"yes\" columns_placement=\"top\" bg_type=\"image\" parallax_style=\"vcpb-default\" bg_image_new=\"id^2604|url^https://farmchemie.yasithawd.com/wp-content/uploads/2022/09/rowimg_mod_4HigherRes1.jpg|caption^null|alt^null|title^rowimg_mod_4HigherRes1|description^null\" bg_image_repeat=\"no-repeat\"][vc_column][ultimate_heading main_heading=\"SPIRIT OF INNOVATION IN ANIMAL HEALTH\" main_heading_color=\"#6e368d\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:48px;\"][/ultimate_heading][vc_row_inner css=\".vc_custom_1662456998651{padding-bottom: 500px !important;}\"][vc_column_inner][/vc_column_inner][/vc_row_inner][vc_row_inner content_placement=\"bottom\" css=\".vc_custom_1662458571859{padding-right: 0px !important;padding-bottom: 10px !important;padding-left: 0px !important;}\"][vc_column_inner el_class=\"customborderradius1\" width=\"6/12\" css=\".vc_custom_1662539148421{background-color: rgba(255,255,255,0.5) !important;*background-color: rgb(255,255,255) !important;}\"][vc_single_image image=\"2567\" img_size=\"full\" alignment=\"center\"][/vc_column_inner][vc_column_inner width=\"3/12\"][/vc_column_inner][vc_column_inner width=\"3/12\" css=\".vc_custom_1662371690284{background-color: #6e368d !important;}\"][vc_single_image image=\"2566\" img_size=\"full\" alignment=\"center\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row]','Home2','','inherit','closed','closed','','2525-revision-v1','','','2022-09-08 09:41:48','2022-09-08 09:41:48','',2525,'https://farmchemie.yasithawd.com/?p=2616',0,'revision','',0),(2618,1,'2022-09-09 13:33:59','2022-09-09 13:33:59','[vc_row full_width=\"stretch_row_content\" bg_type=\"image\" parallax_style=\"vcpb-default\" bg_image_new=\"id^2524|url^https://farmchemie.yasithawd.com/wp-content/uploads/2022/09/marketbgimg1.png|caption^null|alt^null|title^marketbgimg1|description^null\" bg_image_repeat=\"no-repeat\" css=\".vc_custom_1662730336770{margin-right: 0px !important;margin-left: 0px !important;padding-right: 0px !important;padding-left: 0px !important;}\"][vc_column css=\".vc_custom_1662730433019{padding-right: 0px !important;padding-left: 0px !important;}\"][ultimate_heading main_heading=\"SELECT YOUR MARKET/REGION\" main_heading_color=\"#6e368d\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:48px;\"][/ultimate_heading][vc_empty_space height=\"300px\" css=\".vc_custom_1662447237222{margin: 0px !important;padding: 0px !important;background-image: url(https://farmchemie.yasithawd.com/wp-content/uploads/2022/09/marketbgimg1-sp.png?id=2527) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\"][vc_row_inner][vc_column_inner el_class=\"customborderradius1\" width=\"1/3\" css=\".vc_custom_1662539141341{background-color: #6e368d !important;}\"][ult_animation_block animation=\"fadeIn\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][bsf-info-box icon_type=\"custom\" icon_img=\"id^2537|url^https://farmchemie.yasithawd.com/wp-content/uploads/2022/09/earthicon-1.png|caption^null|alt^null|title^earthicon-1|description^null\" img_width=\"100\" title=\"Global\" pos=\"right\" title_font_style=\"font-weight:bold;\" title_font_size=\"desktop:48px;\" title_font_color=\"#ffffff\" desc_font_size=\"desktop:24px;\" desc_font_color=\"#ffffff\"]International Market[/bsf-info-box][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner el_class=\"customborderradius1\" width=\"1/3\" css=\".vc_custom_1662539133598{background-color: #059444 !important;}\"][ult_animation_block animation=\"fadeIn\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][bsf-info-box icon_type=\"custom\" icon_img=\"id^2536|url^https://farmchemie.yasithawd.com/wp-content/uploads/2022/09/srilankaicon-1.png|caption^null|alt^null|title^srilankaicon-1|description^null\" img_width=\"100\" title=\"Local\" pos=\"left\" title_font_style=\"font-weight:bold;\" title_font_size=\"desktop:48px;\" title_font_color=\"#ffffff\" desc_font_size=\"desktop:24px;\" desc_font_color=\"#ffffff\"]Sri Lankan Market[/bsf-info-box][/ult_animation_block][/vc_column_inner][/vc_row_inner][vc_row_inner equal_height=\"yes\" css=\".vc_custom_1662370166856{margin-top: 20px !important;margin-right: 50px !important;margin-left: 50px !important;}\"][vc_column_inner width=\"5/12\"][vc_column_text]FARMCHEMIE is a world-renowned manufacturer of feed additives and feed supplements. We offer our FarmStar and PetStar branded products to the international markets.[/vc_column_text][/vc_column_inner][vc_column_inner width=\"2/12\"][/vc_column_inner][vc_column_inner width=\"5/12\"][vc_column_text]FARMCHEMIE offers an island wide distribution, technical consultation and poultry vaccination services of high-quality animal healthcare products from world-renowned suppliers.[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_row_inner equal_height=\"yes\" content_placement=\"middle\" css=\".vc_custom_1662460080909{margin-top: 20px !important;margin-right: 50px !important;margin-bottom: 10px !important;margin-left: 50px !important;}\"][vc_column_inner width=\"2/12\"][vc_single_image image=\"2599\" img_size=\"full\"][/vc_column_inner][vc_column_inner width=\"1/12\"][/vc_column_inner][vc_column_inner width=\"2/12\"][vc_single_image image=\"2598\" img_size=\"full\"][/vc_column_inner][vc_column_inner width=\"2/12\"][/vc_column_inner][vc_column_inner width=\"1/12\"][/vc_column_inner][vc_column_inner width=\"1/12\"][vc_single_image image=\"2593\" img_size=\"full\"][vc_single_image image=\"2596\" img_size=\"full\"][/vc_column_inner][vc_column_inner width=\"1/12\"][vc_single_image image=\"2595\" img_size=\"full\"][/vc_column_inner][vc_column_inner width=\"1/12\"][vc_single_image image=\"2594\" img_size=\"full\"][vc_single_image image=\"2597\" img_size=\"full\"][/vc_column_inner][vc_column_inner width=\"1/12\"][/vc_column_inner][/vc_row_inner][vc_row_inner equal_height=\"yes\" css=\".vc_custom_1662370166856{margin-top: 20px !important;margin-right: 50px !important;margin-left: 50px !important;}\"][vc_column_inner width=\"5/12\"][vc_column_text]We provide toll-manufacturing services to globally recognized marketing companies for the Asian &amp; African markets. Our manufacturing plant is equipped with fully automated production lines from Bühler.[/vc_column_text][/vc_column_inner][vc_column_inner width=\"2/12\"][/vc_column_inner][vc_column_inner width=\"5/12\"][vc_column_text]We offer both locally manufactured and imported products to cater the poultry, dairy, swine, pet-care and aqua markets.[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_row_inner equal_height=\"yes\" content_placement=\"middle\" css=\".vc_custom_1662460080909{margin-top: 20px !important;margin-right: 50px !important;margin-bottom: 10px !important;margin-left: 50px !important;}\"][vc_column_inner width=\"5/12\"][vc_single_image image=\"2600\" img_size=\"full\" alignment=\"center\"][/vc_column_inner][vc_column_inner width=\"2/12\"][/vc_column_inner][vc_column_inner width=\"5/12\"][vc_single_image image=\"2615\" img_size=\"full\" alignment=\"center\"][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner width=\"1/2\"][ult_buttons btn_title=\"READ MORE\" btn_align=\"ubtn-center\" btn_size=\"ubtn-custom\" btn_width=\"300\" btn_height=\"60\" btn_title_color=\"#6e368d\" btn_bg_color=\"rgba(224,224,224,0.01)\" icon=\"dt-icon-the7-menu-014\" icon_size=\"40\" icon_color=\"#6e368d\" btn_icon_pos=\"ubtn-sep-icon-at-right\" btn_font_style=\"font-weight:bold;\" btn_font_size=\"desktop:24px;\"][/vc_column_inner][vc_column_inner width=\"1/2\"][ult_buttons btn_title=\"READ MORE\" btn_align=\"ubtn-center\" btn_size=\"ubtn-custom\" btn_width=\"300\" btn_height=\"60\" btn_title_color=\"#059444\" btn_bg_color=\"rgba(224,224,224,0.01)\" icon=\"dt-icon-the7-menu-013\" icon_size=\"40\" icon_color=\"#059444\" btn_icon_pos=\"ubtn-sep-icon-at-left\" btn_font_style=\"font-weight:bold;\" btn_font_size=\"desktop:24px;\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row full_width=\"stretch_row_content_no_spaces\" full_height=\"yes\" columns_placement=\"top\" bg_type=\"image\" parallax_style=\"vcpb-default\" bg_image_new=\"id^2604|url^https://farmchemie.yasithawd.com/wp-content/uploads/2022/09/rowimg_mod_4HigherRes1.jpg|caption^null|alt^null|title^rowimg_mod_4HigherRes1|description^null\" bg_image_repeat=\"no-repeat\"][vc_column][ultimate_heading main_heading=\"SPIRIT OF INNOVATION IN ANIMAL HEALTH\" main_heading_color=\"#6e368d\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:48px;\"][/ultimate_heading][vc_row_inner css=\".vc_custom_1662456998651{padding-bottom: 500px !important;}\"][vc_column_inner][/vc_column_inner][/vc_row_inner][vc_row_inner content_placement=\"bottom\" css=\".vc_custom_1662458571859{padding-right: 0px !important;padding-bottom: 10px !important;padding-left: 0px !important;}\"][vc_column_inner el_class=\"customborderradius1\" width=\"6/12\" css=\".vc_custom_1662539148421{background-color: rgba(255,255,255,0.5) !important;*background-color: rgb(255,255,255) !important;}\"][vc_single_image image=\"2567\" img_size=\"full\" alignment=\"center\"][/vc_column_inner][vc_column_inner width=\"3/12\"][/vc_column_inner][vc_column_inner width=\"3/12\" css=\".vc_custom_1662371690284{background-color: #6e368d !important;}\"][vc_single_image image=\"2566\" img_size=\"full\" alignment=\"center\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row]','Home2','','inherit','closed','closed','','2525-revision-v1','','','2022-09-09 13:33:59','2022-09-09 13:33:59','',2525,'https://farmchemie.yasithawd.com/?p=2618',0,'revision','',0),(2637,1,'2022-11-18 04:28:28','2022-11-18 04:28:28','[vc_row][vc_column][ultimate_heading main_heading=\"Our History\"][/ultimate_heading][icon_timeline timeline_line_color=\"#059444\" time_sep_color=\"#059444\" time_sep_bg_color=\"#059444\"][icon_timeline_sep time_sep_title=\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vestibulum iaculis mollis leo, at pretium velit maximus vitae. Ut egestas laoreet mollis.\"][icon_timeline_item time_title=\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vestibulum iaculis mollis leo, at pretium velit maximus vitae. Ut egestas laoreet mollis.\"]Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vestibulum iaculis mollis leo, at pretium velit maximus vitae. Ut egestas laoreet mollis.Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vestibulum iaculis mollis leo, at pretium velit maximus vitae. Ut egestas laoreet mollis.Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vestibulum iaculis mollis leo, at pretium velit maximus vitae. Ut egestas laoreet mollis.[/icon_timeline_item][icon_timeline_item time_title=\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vestibulum iaculis mollis leo, at pretium velit maximus vitae. Ut egestas laoreet mollis.\"]Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vestibulum iaculis mollis leo, at pretium velit maximus vitae. Ut egestas laoreet mollis.Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vestibulum iaculis mollis leo, at pretium velit maximus vitae. Ut egestas laoreet mollis.Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vestibulum iaculis mollis leo, at pretium velit maximus vitae. Ut egestas laoreet mollis.[/icon_timeline_item][icon_timeline_feat time_title=\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vestibulum iaculis mollis leo, at pretium velit maximus vitae. Ut egestas laoreet mollis.\"]Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vestibulum iaculis mollis leo, at pretium velit maximus vitae. Ut egestas laoreet mollis.Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vestibulum iaculis mollis leo, at pretium velit maximus vitae. Ut egestas laoreet mollis.Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vestibulum iaculis mollis leo, at pretium velit maximus vitae. Ut egestas laoreet mollis.Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vestibulum iaculis mollis leo, at pretium velit maximus vitae. Ut egestas laoreet mollis.[/icon_timeline_feat][icon_timeline_sep time_sep_title=\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vestibulum iaculis mollis leo, at pretium velit maximus vitae. Ut egestas laoreet mollis.\"][/icon_timeline][/vc_column][/vc_row][vc_row][vc_column][ultimate_heading main_heading=\"Vision and Mission\"][/ultimate_heading][vc_row_inner][vc_column_inner width=\"1/2\"][ultimate_heading main_heading=\"Vision\" heading_tag=\"h3\"]Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vestibulum iaculis mollis leo, at pretium velit maximus vitae. Ut egestas laoreet mollis.Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vestibulum iaculis mollis leo, at pretium velit maximus vitae. Ut egestas laoreet mollis.Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vestibulum iaculis mollis leo, at pretium velit maximus vitae. Ut egestas laoreet mollis.Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vestibulum iaculis mollis leo, at pretium velit maximus vitae. Ut egestas laoreet mollis.[/ultimate_heading][/vc_column_inner][vc_column_inner width=\"1/2\"][ultimate_heading main_heading=\"Mission\" heading_tag=\"h3\"]Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vestibulum iaculis mollis leo, at pretium velit maximus vitae. Ut egestas laoreet mollis.Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vestibulum iaculis mollis leo, at pretium velit maximus vitae. Ut egestas laoreet mollis.Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vestibulum iaculis mollis leo, at pretium velit maximus vitae. Ut egestas laoreet mollis.Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vestibulum iaculis mollis leo, at pretium velit maximus vitae. Ut egestas laoreet mollis.[/ultimate_heading][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row][vc_column][ultimate_heading main_heading=\"Achievements\" margin_design_tab_text=\"\"][/ultimate_heading][vc_row_inner][vc_column_inner width=\"1/2\"][vc_single_image image=\"2404\" img_size=\"400x400\"][/vc_column_inner][vc_column_inner width=\"1/2\"][ultimate_heading main_heading=\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vestibulum iaculis mollis leo, at pretium velit maximus vitae. Ut egestas laoreet mollis. \" heading_tag=\"h3\" margin_design_tab_text=\"\"]Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vestibulum iaculis mollis leo, at pretium velit maximus vitae. Ut egestas laoreet mollis. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vestibulum iaculis mollis leo, at pretium velit maximus vitae. Ut egestas laoreet mollis. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vestibulum iaculis mollis leo, at pretium velit maximus vitae. Ut egestas laoreet mollis. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vestibulum iaculis mollis leo, at pretium velit maximus vitae. Ut egestas laoreet mollis. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vestibulum iaculis mollis leo, at pretium velit maximus vitae. Ut egestas laoreet mollis.[/ultimate_heading][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner width=\"1/2\"][ultimate_heading main_heading=\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vestibulum iaculis mollis leo, at pretium velit maximus vitae. Ut egestas laoreet mollis. \" heading_tag=\"h3\" margin_design_tab_text=\"\"]Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vestibulum iaculis mollis leo, at pretium velit maximus vitae. Ut egestas laoreet mollis. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vestibulum iaculis mollis leo, at pretium velit maximus vitae. Ut egestas laoreet mollis. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vestibulum iaculis mollis leo, at pretium velit maximus vitae. Ut egestas laoreet mollis. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vestibulum iaculis mollis leo, at pretium velit maximus vitae. Ut egestas laoreet mollis. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vestibulum iaculis mollis leo, at pretium velit maximus vitae. Ut egestas laoreet mollis.[/ultimate_heading][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_single_image image=\"2404\" img_size=\"400x400\"][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner width=\"1/2\"][vc_single_image image=\"2404\" img_size=\"400x400\"][/vc_column_inner][vc_column_inner width=\"1/2\"][ultimate_heading main_heading=\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vestibulum iaculis mollis leo, at pretium velit maximus vitae. Ut egestas laoreet mollis. \" heading_tag=\"h3\" margin_design_tab_text=\"\"]Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vestibulum iaculis mollis leo, at pretium velit maximus vitae. Ut egestas laoreet mollis. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vestibulum iaculis mollis leo, at pretium velit maximus vitae. Ut egestas laoreet mollis. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vestibulum iaculis mollis leo, at pretium velit maximus vitae. Ut egestas laoreet mollis. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vestibulum iaculis mollis leo, at pretium velit maximus vitae. Ut egestas laoreet mollis. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vestibulum iaculis mollis leo, at pretium velit maximus vitae. Ut egestas laoreet mollis.[/ultimate_heading][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row]','About Us','','inherit','closed','closed','','2633-revision-v1','','','2022-11-18 04:28:28','2022-11-18 04:28:28','',2633,'https://farmchemie.yasithawd.com/?p=2637',0,'revision','',0),(2895,1,'2023-05-19 05:22:51','2023-05-19 05:22:51','','WhatsApp Image 2023-05-16 at 2.43.25 AM','','inherit','open','closed','','whatsapp-image-2023-05-16-at-2-43-25-am','','','2023-05-19 05:22:51','2023-05-19 05:22:51','',2633,'https://farmchemie.yasithawd.com/wp-content/uploads/2023/05/WhatsApp-Image-2023-05-16-at-2.43.25-AM.jpeg',0,'attachment','image/jpeg',0),(2638,1,'2022-11-18 04:30:49','2022-11-18 04:30:49','[vc_row][vc_column][ultimate_heading main_heading=\"Our History\" alignment=\"left\" margin_design_tab_text=\"\"][/ultimate_heading][icon_timeline timeline_line_color=\"#059444\" time_sep_color=\"#059444\" time_sep_bg_color=\"#059444\"][icon_timeline_sep time_sep_title=\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vestibulum iaculis mollis leo, at pretium velit maximus vitae. Ut egestas laoreet mollis.\"][icon_timeline_item time_title=\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vestibulum iaculis mollis leo, at pretium velit maximus vitae. Ut egestas laoreet mollis.\"]Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vestibulum iaculis mollis leo, at pretium velit maximus vitae. Ut egestas laoreet mollis.Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vestibulum iaculis mollis leo, at pretium velit maximus vitae. Ut egestas laoreet mollis.Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vestibulum iaculis mollis leo, at pretium velit maximus vitae. Ut egestas laoreet mollis.[/icon_timeline_item][icon_timeline_item time_title=\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vestibulum iaculis mollis leo, at pretium velit maximus vitae. Ut egestas laoreet mollis.\"]Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vestibulum iaculis mollis leo, at pretium velit maximus vitae. Ut egestas laoreet mollis.Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vestibulum iaculis mollis leo, at pretium velit maximus vitae. Ut egestas laoreet mollis.Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vestibulum iaculis mollis leo, at pretium velit maximus vitae. Ut egestas laoreet mollis.[/icon_timeline_item][icon_timeline_feat time_title=\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vestibulum iaculis mollis leo, at pretium velit maximus vitae. Ut egestas laoreet mollis.\"]Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vestibulum iaculis mollis leo, at pretium velit maximus vitae. Ut egestas laoreet mollis.Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vestibulum iaculis mollis leo, at pretium velit maximus vitae. Ut egestas laoreet mollis.Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vestibulum iaculis mollis leo, at pretium velit maximus vitae. Ut egestas laoreet mollis.Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vestibulum iaculis mollis leo, at pretium velit maximus vitae. Ut egestas laoreet mollis.[/icon_timeline_feat][icon_timeline_sep time_sep_title=\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vestibulum iaculis mollis leo, at pretium velit maximus vitae. Ut egestas laoreet mollis.\"][/icon_timeline][/vc_column][/vc_row][vc_row][vc_column][ultimate_heading main_heading=\"Vision and Mission\" alignment=\"left\" margin_design_tab_text=\"\"][/ultimate_heading][vc_row_inner][vc_column_inner width=\"1/2\"][ultimate_heading main_heading=\"Vision\" heading_tag=\"h3\" alignment=\"left\" margin_design_tab_text=\"\"]Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vestibulum iaculis mollis leo, at pretium velit maximus vitae. Ut egestas laoreet mollis.Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vestibulum iaculis mollis leo, at pretium velit maximus vitae. Ut egestas laoreet mollis.Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vestibulum iaculis mollis leo, at pretium velit maximus vitae. Ut egestas laoreet mollis.Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vestibulum iaculis mollis leo, at pretium velit maximus vitae. Ut egestas laoreet mollis.[/ultimate_heading][/vc_column_inner][vc_column_inner width=\"1/2\"][ultimate_heading main_heading=\"Mission\" heading_tag=\"h3\" alignment=\"left\" margin_design_tab_text=\"\"]Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vestibulum iaculis mollis leo, at pretium velit maximus vitae. Ut egestas laoreet mollis.Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vestibulum iaculis mollis leo, at pretium velit maximus vitae. Ut egestas laoreet mollis.Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vestibulum iaculis mollis leo, at pretium velit maximus vitae. Ut egestas laoreet mollis.Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vestibulum iaculis mollis leo, at pretium velit maximus vitae. Ut egestas laoreet mollis.[/ultimate_heading][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row][vc_column][ultimate_heading main_heading=\"Achievements\"][/ultimate_heading][vc_row_inner][vc_column_inner width=\"1/2\"][vc_single_image image=\"2404\" img_size=\"400x400\"][/vc_column_inner][vc_column_inner width=\"1/2\"][ultimate_heading main_heading=\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vestibulum iaculis mollis leo, at pretium velit maximus vitae. Ut egestas laoreet mollis.\" heading_tag=\"h3\" alignment=\"left\" margin_design_tab_text=\"\"]Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vestibulum iaculis mollis leo, at pretium velit maximus vitae. Ut egestas laoreet mollis. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vestibulum iaculis mollis leo, at pretium velit maximus vitae. Ut egestas laoreet mollis. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vestibulum iaculis mollis leo, at pretium velit maximus vitae. Ut egestas laoreet mollis. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vestibulum iaculis mollis leo, at pretium velit maximus vitae. Ut egestas laoreet mollis. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vestibulum iaculis mollis leo, at pretium velit maximus vitae. Ut egestas laoreet mollis.[/ultimate_heading][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner width=\"1/2\"][ultimate_heading main_heading=\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vestibulum iaculis mollis leo, at pretium velit maximus vitae. Ut egestas laoreet mollis.\" heading_tag=\"h3\" alignment=\"left\" margin_design_tab_text=\"\"]Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vestibulum iaculis mollis leo, at pretium velit maximus vitae. Ut egestas laoreet mollis. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vestibulum iaculis mollis leo, at pretium velit maximus vitae. Ut egestas laoreet mollis. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vestibulum iaculis mollis leo, at pretium velit maximus vitae. Ut egestas laoreet mollis. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vestibulum iaculis mollis leo, at pretium velit maximus vitae. Ut egestas laoreet mollis. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vestibulum iaculis mollis leo, at pretium velit maximus vitae. Ut egestas laoreet mollis.[/ultimate_heading][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_single_image image=\"2404\" img_size=\"400x400\"][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner width=\"1/2\"][vc_single_image image=\"2404\" img_size=\"400x400\"][/vc_column_inner][vc_column_inner width=\"1/2\"][ultimate_heading main_heading=\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vestibulum iaculis mollis leo, at pretium velit maximus vitae. Ut egestas laoreet mollis.\" heading_tag=\"h3\" alignment=\"left\" margin_design_tab_text=\"\"]Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vestibulum iaculis mollis leo, at pretium velit maximus vitae. Ut egestas laoreet mollis. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vestibulum iaculis mollis leo, at pretium velit maximus vitae. Ut egestas laoreet mollis. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vestibulum iaculis mollis leo, at pretium velit maximus vitae. Ut egestas laoreet mollis. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vestibulum iaculis mollis leo, at pretium velit maximus vitae. Ut egestas laoreet mollis. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vestibulum iaculis mollis leo, at pretium velit maximus vitae. Ut egestas laoreet mollis.[/ultimate_heading][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row]','About Us','','inherit','closed','closed','','2633-revision-v1','','','2022-11-18 04:30:49','2022-11-18 04:30:49','',2633,'https://farmchemie.yasithawd.com/?p=2638',0,'revision','',0),(3325,1,'2023-08-26 03:32:57','2023-08-26 03:32:57','','AVI 3 folding brochure SInhala Final outline_compressed','','inherit','open','closed','','avi-3-folding-brochure-sinhala-final-outline_compressed-5','','','2023-08-26 03:32:57','2023-08-26 03:32:57','',0,'https://farmchemie.yasithawd.com/wp-content/uploads/2023/08/AVI-3-folding-brochure-SInhala-Final-outline_compressed-4.pdf',0,'attachment','application/pdf',0),(3326,1,'2023-08-26 03:33:10','2023-08-26 03:33:10','','AVI-V&E_600px','','inherit','open','closed','','avi-ve_600px','','','2023-08-26 03:33:10','2023-08-26 03:33:10','',3324,'https://farmchemie.yasithawd.com/wp-content/uploads/2023/08/AVI-VE_600px.png',0,'attachment','image/png',0),(3319,1,'2023-08-25 10:24:04','2023-08-25 10:24:04','','AVI Tonic','','inherit','open','closed','','avi-tonic','','','2023-08-25 10:24:04','2023-08-25 10:24:04','',0,'https://farmchemie.yasithawd.com/wp-content/uploads/2023/08/AVI-Tonic.pdf',0,'attachment','application/pdf',0),(3320,1,'2023-08-25 21:22:43','2023-08-25 21:22:43','','AVI-Tonic_600px','','inherit','open','closed','','avi-tonic_600px','','','2023-08-25 21:22:43','2023-08-25 21:22:43','',3316,'https://farmchemie.yasithawd.com/wp-content/uploads/2023/08/AVI-Tonic_600px.png',0,'attachment','image/png',0),(3321,1,'2023-08-25 21:22:48','2023-08-25 21:22:48','','AVI Tonic','','inherit','open','closed','','avi-tonic-3','','','2023-08-25 21:22:48','2023-08-25 21:22:48','',0,'https://farmchemie.yasithawd.com/wp-content/uploads/2023/08/AVI-Tonic-1.pdf',0,'attachment','application/pdf',0),(2896,1,'2023-05-19 05:26:40','2023-05-19 05:26:40','','WhatsApp Image 2023-05-16 at 2.43.38 AM','','inherit','open','closed','','whatsapp-image-2023-05-16-at-2-43-38-am','','','2023-05-19 05:26:40','2023-05-19 05:26:40','',2633,'https://farmchemie.yasithawd.com/wp-content/uploads/2023/05/WhatsApp-Image-2023-05-16-at-2.43.38-AM.jpeg',0,'attachment','image/jpeg',0),(3346,1,'2023-08-26 07:55:59','2023-08-26 07:55:59','[vc_row full_width=\"stretch_row_content_no_spaces\"][vc_column width=\"1/4\"][/vc_column][vc_column width=\"1/2\"][vc_widget_sidebar sidebar_id=\"sidebar_1\"][/vc_column][vc_column width=\"1/4\"][/vc_column][/vc_row][vc_row][vc_column][ult_tab_element tab_style=\"Style_4\" tab_animation=\"Fade\" tab_max=\"on\" tab_title_color=\"#ffffff\" tab_background_color=\"#039447\" tab_hover_title_color=\"#ffffff\" tab_hover_background_color=\"#039447\" acttab_title=\"#ffffff\" acttab_background=\"#782d88\" disp_icon=\"Disables\"][single_tab title=\"All\" tab_id=\"1693035214365-3\"][dt_products_masonry mode=\"grid\" layout=\"btn_on_img_hover\" bwb_columns=\"desktop:3|h_tablet:3|v_tablet:2|phone:1\" dis_posts_total=\"12\" product_rating=\"n\" ids=\"\"][/single_tab][single_tab title=\"Poultry\" tab_id=\"1693035214368-9\"][dt_products_masonry show_products=\"categories_products\" layout=\"btn_on_img_hover\" bwb_columns=\"desktop:3|h_tablet:3|v_tablet:2|phone:1\" dis_posts_total=\"12\" product_rating=\"n\" category_ids=\"65\"][/single_tab][single_tab title=\"Dairy and Large Animal\" tab_id=\"1693035580574-2-7\"][dt_products_masonry show_products=\"categories_products\" layout=\"btn_on_img_hover\" bwb_columns=\"desktop:3|h_tablet:3|v_tablet:2|phone:1\" dis_posts_total=\"12\" product_rating=\"n\" category_ids=\"63\"][/single_tab][single_tab title=\"Pet Care\" tab_id=\"1693035636854-3-3\"][dt_products_masonry show_products=\"categories_products\" layout=\"btn_on_img_hover\" bwb_columns=\"desktop:3|h_tablet:3|v_tablet:2|phone:1\" dis_posts_total=\"12\" product_rating=\"n\" category_ids=\"64\"][/single_tab][single_tab title=\"Feed Additives\" tab_id=\"1693035729559-4-1\"][dt_products_masonry show_products=\"categories_products\" layout=\"btn_on_img_hover\" bwb_columns=\"desktop:3|h_tablet:3|v_tablet:2|phone:1\" dis_posts_total=\"12\" category_ids=\"74\"][/single_tab][/ult_tab_element][/vc_column][/vc_row]','AllProducts','','inherit','closed','closed','','3335-revision-v1','','','2023-08-26 07:55:59','2023-08-26 07:55:59','',3335,'https://farmchemie.yasithawd.com/?p=3346',0,'revision','',0),(3313,1,'2023-08-25 05:02:55','2023-08-25 05:02:55','','AVI 3 folding brochure SInhala Final outline_compressed','','inherit','open','closed','','avi-3-folding-brochure-sinhala-final-outline_compressed','','','2023-08-25 05:02:55','2023-08-25 05:02:55','',0,'https://farmchemie.yasithawd.com/wp-content/uploads/2023/08/AVI-3-folding-brochure-SInhala-Final-outline_compressed.pdf',0,'attachment','application/pdf',0),(3314,1,'2023-08-25 05:03:45','2023-08-25 05:03:45','','AVI 3 folding brochure SInhala Final outline_compressed','','inherit','open','closed','','avi-3-folding-brochure-sinhala-final-outline_compressed-2','','','2023-08-25 05:03:45','2023-08-25 05:03:45','',0,'https://farmchemie.yasithawd.com/wp-content/uploads/2023/08/AVI-3-folding-brochure-SInhala-Final-outline_compressed-1.pdf',0,'attachment','application/pdf',0),(3315,1,'2023-08-25 05:04:16','2023-08-25 05:04:16','','AVI E','','inherit','open','closed','','avi-e-3','','','2023-08-25 05:04:16','2023-08-25 05:04:16','',0,'https://farmchemie.yasithawd.com/wp-content/uploads/2023/08/AVI-E-1.pdf',0,'attachment','application/pdf',0),(3316,1,'2023-08-25 06:22:05','2023-08-25 06:22:05','','AVI TONIC','<h3><em>Vitamins and Amino Acids Liquid Supplement.</em></h3>\r\n[dt_divider style=\"thick\" /]\r\n\r\n&nbsp;\r\n\r\n<strong>Composition: </strong>\r\n\r\nEach 1 L contains,\r\n\r\nVitamin A - 2,500,000 IU\r\nVitamin D3 - 500,000 IU\r\nVitamin E - 3.75 g\r\nVitamin K - 250 g\r\nPyridoxine - 2 g\r\nRiboflavin - 4 g\r\nThiamine - 3.5 g\r\nVitamin B5 - 15 g\r\nVitamin B12 - 10 mg\r\nCholine - 400 mg\r\nD,L-Methionine - 5 g\r\nL-Lysine - 2.5 g\r\nHistidine - 900 mg\r\nArginine - 490 mg\r\nAspartic acid - 1.45 g\r\nThreonine - 500 mg\r\nSerine - 680 mg\r\nGlutamic acid - 1.16 g\r\nProline - 510 mg\r\nGlycine - 575 mg\r\nAlanine - 975 mg\r\nCystine - 150 mg\r\nValine - 1.1 g\r\nLeucine - 1.5 g\r\nLsoleucine - 125 mg\r\nTyrosine - 340 mg\r\nPhenylalanine - 810 mg\r\nTryptophane - 75 mg\r\nBiotin - 2 mg\r\nLnositol - 2.5 mg\r\n\r\n[dt_divider style=\"thin\" /]\r\n\r\n<strong>Indication: </strong>\r\n\r\nThe complex range of Vitamin B complex for Livestock management. Easy way of administering, efficient and low cost vitamin supplement for poultry, cattle, swine and other farm animals. Prevent Vitamin B deficiencies.\r\n\r\n[dt_divider style=\"thin\" /]\r\n\r\n<strong>Dosage: </strong>\r\n\r\nAdminister mixing with feed or directly feed\r\nAvians - 1 ml per 1 litre of drinking water for 3-4 days\r\n\r\n[dt_divider style=\"thin\" /]\r\n\r\n<strong>Pack sizes: </strong>\r\n\r\n10 mL\r\n\r\n&nbsp;\r\n\r\n[dt_divider style=\"thick\" /]\r\n\r\n&nbsp;\r\n\r\n<a href=\"/wp-content/uploads/2023/08/AVI-Tonic.pdf\"><i class=\"fa-solid fa-file-pdf fa-2xl\" style=\"color: #039447;\"> pdf</i></a> <a href=\"/wp-content/uploads/2023/08/AVI-3-folding-brochure-SInhala-Final-outline_compressed-3.pdf\"><i class=\"fa-solid fa-file-pdf fa-2xl\" style=\"color: #039447;\"> pdf</i></a>','publish','closed','closed','','avi-tonic','','','2023-09-11 14:41:39','2023-09-11 14:41:39','',0,'https://farmchemie.yasithawd.com/?post_type=product&#038;p=3316',0,'product','',0),(3317,1,'2023-08-25 06:25:02','2023-08-25 06:25:02','','AVI E','<h3><em>Oral Solution for Vitamin E and Selenium Deficiencies</em></h3>\n[dt_divider style=\"thick\" /]\n\n&nbsp;\n\n<strong>Composition: </strong>\n\nEach 1 mL contains,\n\nVitamin E acetate - 100 mg\nSodium selenite - 0.5 mg\n\n[dt_divider style=\"thin\" /]\n\n<strong>Indication: </strong>\n\nPrevents Vitamin E & Selenium deficiencies\n\n[dt_divider style=\"thin\" /]\n\n<strong>Dosage: </strong>\n\nAdminister mixing with feed or directly feed\nAvians - 1 ml per 1 litre of drinking water for 3-5 days\n\n[dt_divider style=\"thin\" /]\n\n<strong>Pack sizes: </strong>\n\n10 mL\n\n&nbsp;\n\n[dt_divider style=\"thick\" /]\n\n&nbsp;\n\n<a href=\"/wp-content/uploads/2023/05/AVI-B.pdf\"><i class=\"fa-solid fa-file-pdf fa-2xl\" style=\"color: #039447;\"> Eng</i></a>','inherit','closed','closed','','3309-autosave-v1','','','2023-08-25 06:25:02','2023-08-25 06:25:02','',3309,'https://farmchemie.yasithawd.com/?p=3317',0,'revision','',0),(3318,1,'2023-08-25 10:23:32','2023-08-25 10:23:32','','AVI 3 folding brochure SInhala Final outline_compressed','','inherit','open','closed','','avi-3-folding-brochure-sinhala-final-outline_compressed-3','','','2023-08-25 10:23:32','2023-08-25 10:23:32','',0,'https://farmchemie.yasithawd.com/wp-content/uploads/2023/08/AVI-3-folding-brochure-SInhala-Final-outline_compressed-2.pdf',0,'attachment','application/pdf',0),(3347,1,'2023-08-26 07:56:36','2023-08-26 07:56:36','[vc_row full_width=\"stretch_row_content_no_spaces\"][vc_column width=\"1/4\"][/vc_column][vc_column width=\"1/2\"][vc_widget_sidebar show_bg=\"false\" sidebar_id=\"sidebar_1\"][/vc_column][vc_column width=\"1/4\"][/vc_column][/vc_row][vc_row][vc_column][ult_tab_element tab_style=\"Style_4\" tab_animation=\"Fade\" tab_max=\"on\" tab_title_color=\"#ffffff\" tab_background_color=\"#039447\" tab_hover_title_color=\"#ffffff\" tab_hover_background_color=\"#039447\" acttab_title=\"#ffffff\" acttab_background=\"#782d88\" disp_icon=\"Disables\"][single_tab title=\"All\" tab_id=\"1693035214365-3\"][dt_products_masonry mode=\"grid\" layout=\"btn_on_img_hover\" bwb_columns=\"desktop:3|h_tablet:3|v_tablet:2|phone:1\" dis_posts_total=\"12\" product_rating=\"n\" ids=\"\"][/single_tab][single_tab title=\"Poultry\" tab_id=\"1693035214368-9\"][dt_products_masonry show_products=\"categories_products\" layout=\"btn_on_img_hover\" bwb_columns=\"desktop:3|h_tablet:3|v_tablet:2|phone:1\" dis_posts_total=\"12\" product_rating=\"n\" category_ids=\"65\"][/single_tab][single_tab title=\"Dairy and Large Animal\" tab_id=\"1693035580574-2-7\"][dt_products_masonry show_products=\"categories_products\" layout=\"btn_on_img_hover\" bwb_columns=\"desktop:3|h_tablet:3|v_tablet:2|phone:1\" dis_posts_total=\"12\" product_rating=\"n\" category_ids=\"63\"][/single_tab][single_tab title=\"Pet Care\" tab_id=\"1693035636854-3-3\"][dt_products_masonry show_products=\"categories_products\" layout=\"btn_on_img_hover\" bwb_columns=\"desktop:3|h_tablet:3|v_tablet:2|phone:1\" dis_posts_total=\"12\" product_rating=\"n\" category_ids=\"64\"][/single_tab][single_tab title=\"Feed Additives\" tab_id=\"1693035729559-4-1\"][dt_products_masonry show_products=\"categories_products\" layout=\"btn_on_img_hover\" bwb_columns=\"desktop:3|h_tablet:3|v_tablet:2|phone:1\" dis_posts_total=\"12\" category_ids=\"74\"][/single_tab][/ult_tab_element][/vc_column][/vc_row]','AllProducts','','inherit','closed','closed','','3335-revision-v1','','','2023-08-26 07:56:36','2023-08-26 07:56:36','',3335,'https://farmchemie.yasithawd.com/?p=3347',0,'revision','',0),(3322,1,'2023-08-25 21:23:10','2023-08-25 21:23:10','','AVI-Tonic_logo','','inherit','open','closed','','avi-tonic_logo-2','','','2023-08-25 21:23:10','2023-08-25 21:23:10','',3316,'https://farmchemie.yasithawd.com/wp-content/uploads/2023/08/AVI-Tonic_logo.png',0,'attachment','image/png',0),(3323,1,'2023-08-25 21:23:32','2023-08-25 21:23:32','','AVI 3 folding brochure SInhala Final outline_compressed','','inherit','open','closed','','avi-3-folding-brochure-sinhala-final-outline_compressed-4','','','2023-08-25 21:23:32','2023-08-25 21:23:32','',0,'https://farmchemie.yasithawd.com/wp-content/uploads/2023/08/AVI-3-folding-brochure-SInhala-Final-outline_compressed-3.pdf',0,'attachment','application/pdf',0),(3324,1,'2023-08-26 03:15:37','2023-08-26 03:15:37','','AVI V & E','<h3><em>Vitamin and Electrolyte Water Soluble Powder</em></h3>\r\n[dt_divider style=\"thick\" /]\r\n\r\n&nbsp;\r\n\r\n<strong>Composition: </strong>\r\n\r\nEach 1 kg contains,\r\n\r\nVitamin A - 7000 IU\r\nVitamin D3 - 1500 IU\r\nVitamin E Acetate - 3 mg\r\nVitamin B1 - 8 mg\r\nVitamin C - 11.2 mg\r\nVitamin K3 - 1.5 mg\r\nVitamin B2 - 2.8 mg\r\nVitamin B6 - 0.3 mg\r\nVitamin B12 - 6 mcg\r\nFerrous suphate heptahydrate - 15 mg\r\nManganese sulphate tetrahydrate – 25 mg\r\nCopper sulphate pentahydrade - 2.5 mg\r\nPotassium iodide - 0.3 mg\r\nZinc sulphate monohydrate - 10 mg\r\nCalcium pantothenate - 3 mg\r\nNa &amp; Cl electrolyte - 7.5 mg\r\nCa electrolyte - 7.5 mg\r\nMg electrolyte - 7.5 mg\r\n\r\n[dt_divider style=\"thin\" /]\r\n\r\n<strong>Indication: </strong>\r\n\r\nPrevents Vitamin deficiencies and Improves body immunity response.\r\n\r\n[dt_divider style=\"thin\" /]\r\n\r\n<strong>Dosage: </strong>\r\n\r\nAdminister mixing with feed or Directly feed\r\n1 g per 2 liter of drinking water for 3-5 days\r\n\r\n[dt_divider style=\"thin\" /]\r\n\r\n<strong>Pack sizes: </strong>\r\n\r\n100 g\r\n\r\n&nbsp;\r\n\r\n[dt_divider style=\"thick\" /]\r\n\r\n&nbsp;\r\n\r\n<a href=\"/wp-content/uploads/2023/08/AVI-VE.pdf\"><i class=\"fa-solid fa-file-pdf fa-2xl\" style=\"color: #039447;\"> pdf</i></a> <a href=\"//wp-content/uploads/2023/08/AVI-3-folding-brochure-SInhala-Final-outline_compressed-4.pdf\"><i class=\"fa-solid fa-file-pdf fa-2xl\" style=\"color: #039447;\"> pdf</i></a>','publish','closed','closed','','avi-v-e','','','2023-09-11 16:48:30','2023-09-11 16:48:30','',0,'https://farmchemie.yasithawd.com/?post_type=product&#038;p=3324',0,'product','',0),(3345,1,'2023-08-26 07:53:40','2023-08-26 07:53:40','[vc_row][vc_column width=\"1/4\"][/vc_column][vc_column width=\"1/2\"][vc_widget_sidebar sidebar_id=\"sidebar_4\"][/vc_column][vc_column width=\"1/4\"][/vc_column][/vc_row][vc_row][vc_column][ult_tab_element tab_style=\"Style_4\" tab_animation=\"Fade\" tab_max=\"on\" tab_title_color=\"#ffffff\" tab_background_color=\"#039447\" tab_hover_title_color=\"#ffffff\" tab_hover_background_color=\"#039447\" acttab_title=\"#ffffff\" acttab_background=\"#782d88\" disp_icon=\"Disables\"][single_tab title=\"All\" tab_id=\"1693035214365-3\"][dt_products_masonry mode=\"grid\" layout=\"btn_on_img_hover\" bwb_columns=\"desktop:3|h_tablet:3|v_tablet:2|phone:1\" dis_posts_total=\"12\" product_rating=\"n\" ids=\"\"][/single_tab][single_tab title=\"Poultry\" tab_id=\"1693035214368-9\"][dt_products_masonry show_products=\"categories_products\" layout=\"btn_on_img_hover\" bwb_columns=\"desktop:3|h_tablet:3|v_tablet:2|phone:1\" dis_posts_total=\"12\" product_rating=\"n\" category_ids=\"65\"][/single_tab][single_tab title=\"Dairy and Large Animal\" tab_id=\"1693035580574-2-7\"][dt_products_masonry show_products=\"categories_products\" layout=\"btn_on_img_hover\" bwb_columns=\"desktop:3|h_tablet:3|v_tablet:2|phone:1\" dis_posts_total=\"12\" product_rating=\"n\" category_ids=\"63\"][/single_tab][single_tab title=\"Pet Care\" tab_id=\"1693035636854-3-3\"][dt_products_masonry show_products=\"categories_products\" layout=\"btn_on_img_hover\" bwb_columns=\"desktop:3|h_tablet:3|v_tablet:2|phone:1\" dis_posts_total=\"12\" product_rating=\"n\" category_ids=\"64\"][/single_tab][single_tab title=\"Feed Additives\" tab_id=\"1693035729559-4-1\"][dt_products_masonry show_products=\"categories_products\" layout=\"btn_on_img_hover\" bwb_columns=\"desktop:3|h_tablet:3|v_tablet:2|phone:1\" dis_posts_total=\"12\" category_ids=\"74\"][/single_tab][/ult_tab_element][/vc_column][/vc_row]','AllProducts','','inherit','closed','closed','','3335-revision-v1','','','2023-08-26 07:53:40','2023-08-26 07:53:40','',3335,'https://farmchemie.yasithawd.com/?p=3345',0,'revision','',0),(3349,1,'2023-08-26 08:02:45','2023-08-26 08:02:45','[vc_row full_width=\"stretch_row_content_no_spaces\"][vc_column width=\"1/4\"][/vc_column][vc_column width=\"1/2\"][vc_widget_sidebar show_bg=\"false\" sidebar_id=\"sidebar_4\"][/vc_column][vc_column width=\"1/4\"][/vc_column][/vc_row][vc_row][vc_column][ult_tab_element tab_style=\"Style_4\" tab_animation=\"Fade\" tab_max=\"on\" tab_title_color=\"#ffffff\" tab_background_color=\"#039447\" tab_hover_title_color=\"#ffffff\" tab_hover_background_color=\"#039447\" acttab_title=\"#ffffff\" acttab_background=\"#782d88\" disp_icon=\"Disables\"][single_tab title=\"All\" tab_id=\"1693035214365-3\"][dt_products_masonry mode=\"grid\" layout=\"btn_on_img_hover\" bwb_columns=\"desktop:3|h_tablet:3|v_tablet:2|phone:1\" dis_posts_total=\"12\" product_rating=\"n\" ids=\"\"][/single_tab][single_tab title=\"Poultry\" tab_id=\"1693035214368-9\"][dt_products_masonry show_products=\"categories_products\" layout=\"btn_on_img_hover\" bwb_columns=\"desktop:3|h_tablet:3|v_tablet:2|phone:1\" dis_posts_total=\"12\" product_rating=\"n\" category_ids=\"65\"][/single_tab][single_tab title=\"Dairy and Large Animal\" tab_id=\"1693035580574-2-7\"][dt_products_masonry show_products=\"categories_products\" layout=\"btn_on_img_hover\" bwb_columns=\"desktop:3|h_tablet:3|v_tablet:2|phone:1\" dis_posts_total=\"12\" product_rating=\"n\" category_ids=\"63\"][/single_tab][single_tab title=\"Pet Care\" tab_id=\"1693035636854-3-3\"][dt_products_masonry show_products=\"categories_products\" layout=\"btn_on_img_hover\" bwb_columns=\"desktop:3|h_tablet:3|v_tablet:2|phone:1\" dis_posts_total=\"12\" product_rating=\"n\" category_ids=\"64\"][/single_tab][single_tab title=\"Feed Additives\" tab_id=\"1693035729559-4-1\"][dt_products_masonry show_products=\"categories_products\" layout=\"btn_on_img_hover\" bwb_columns=\"desktop:3|h_tablet:3|v_tablet:2|phone:1\" dis_posts_total=\"12\" category_ids=\"74\"][/single_tab][/ult_tab_element][/vc_column][/vc_row]','AllProducts','','inherit','closed','closed','','3335-revision-v1','','','2023-08-26 08:02:45','2023-08-26 08:02:45','',3335,'https://farmchemie.yasithawd.com/?p=3349',0,'revision','',0),(3350,1,'2023-08-26 13:35:28','2023-08-26 13:35:28','','AVI PRIME PLUS','<h3><em>Vitamin, Mineral and Amino Acid Supplement Water Soluble Powder\r\nOffset missing nutrients in seed diets </em></h3>\r\n[dt_divider style=\"thick\" /]\r\n\r\n&nbsp;\r\n\r\n<strong>Composition: </strong>\r\n\r\nEach 1 g contains,\r\n\r\nVitamin A - 931.382 IU\r\nVitamin D3 - 176.327 IU\r\nVitamin E - 26.436 IU\r\nVitamin K - 0.655 mg\r\nPantothenic - 1.091 mg\r\nRiboflavin - 1.745 mg\r\nFolic - 0.131 mg\r\nNiacinamide - 5.273 mg\r\nThiamine - 0.258 mg\r\nPyridoxine - 0.436 mg\r\nVitamin B12 - 0.004 mg\r\nBiotin - 0.011 mg\r\nAscorbic acid - 12.327 mg\r\nCholine - 0.033 mg\r\nIodine - 0.020 mg\r\nIron - 1.745 mg\r\nManganese - 2.655 mg\r\nZinc - 2.909 mg\r\nCopper - 0.133 mg\r\nMethionine - 52.891mg\r\nLysine HCL - 74.491mg\r\n\r\n[dt_divider style=\"thin\" /]\r\n\r\n<strong>Indication: </strong>\r\n\r\nProvides offset missing nutrients as essential vitamins, minerals and other nutrients for a complete, balanced healthy life of your exotic pets. The calcium &amp; Phosphorus ratio is carefully balanced for optimum skeletal development and growth with calcium metabolism in the body. Over 10 vitamins and different minerals for essential growth and vitamin D &amp; E improved breeding. Promotes a healthy immune system to combat diseases. Supplements their protein requirement with amino acids for molting and nestling in an adult. A further active lifestyle with good muscle formation and repair after strenuous exercise. The unique combination of digestive enzymes improves seed and legume digestion. Probiotics are included for improved gut health and maintaining a healthy immune system. Exotic fruity flavor as a carrier to increase the palatability and sugar for energy. Ideally given before and after exercise as recovery feed.\r\n\r\n[dt_divider style=\"thin\" /]\r\n\r\n<strong>Dosage: </strong>\r\n\r\nIn moist food/ feed daily dosage:\r\n<ul>\r\n 	<li>Small birds: 5g per 1kg of feed</li>\r\n 	<li>Medium birds: 10g per 1 kg of food</li>\r\n 	<li>Large birds: 15g per 1 kg of food</li>\r\n</ul>\r\nIn drinking water daily dosage:\r\n<ul>\r\n 	<li>For all types of birds: 5g per 100ml of water</li>\r\n</ul>\r\n[dt_divider style=\"thin\" /]\r\n\r\n<strong>Pack sizes: </strong>\r\n\r\n250 g\r\n\r\n&nbsp;\r\n\r\n[dt_divider style=\"thick\" /]\r\n\r\n&nbsp;\r\n\r\n<a href=\"/wp-content/uploads/2023/08/AVI-Prime-Brochure-Final_compressed.pdf\"><i class=\"fa-solid fa-file-pdf fa-2xl\" style=\"color: #039447;\"> pdf</i></a>','inherit','closed','closed','','3331-autosave-v1','','','2023-08-26 13:35:28','2023-08-26 13:35:28','',3331,'https://farmchemie.yasithawd.com/?p=3350',0,'revision','',0),(3546,1,'2023-09-11 16:58:42','2023-09-11 16:58:42','','Prazimec D','<h3><em>Endo-Ecto parasiticide for Dogs</em></h3><p>[dt_divider style=\"thick\" /]</p><p><br></p><p><strong>Composition: </strong></p><p>Each 1 tablet contains,<br>Praziquantel – 0.05 g<br>Abamectin - 0.002 g</p><p>[dt_divider style=\"thin\" /]</p><p><strong>Indication: </strong></p><p>In infestation of dogs with endoparasites tapeworms - cestodes (teniae) and roundworms (nematodes); in filariasis of the heart; in infestations with fleas, lice, pasture ticks and mange mites including ear scabies; and particularly in cases of complex endo- and ectoparasitic invasion.</p><p>[dt_divider style=\"thin\" /]</p><p><strong>Contraindication:</strong></p><p>Do not administer to dogs of Collie, Shelti and Bobtail breeds, to pregnant bitches, as well as to puppies below two months of age. Do not give more than four tablets as a single dose to dogs with a body weight exceeding 40 kg.</p><p>[dt_divider style=\"thin\" /]</p><p><strong>Dosage: </strong></p><p>One tablet per 10 kg body weight. The treatment may be repeated after a month.<br>In cases of flea infestation, the living premises must also be disinfected.</p><p>[dt_divider style=\"thin\" /]</p><p><strong>Pack sizes: </strong></p><p>Two (2) tablets and Four (4) tablets</p><p><br></p><p>[dt_divider style=\"thick\" /]</p><p><br></p><p><a href=\"/wp-content/uploads/2023/08/AVI-VE.pdf\" data-mce-href=\"/wp-content/uploads/2023/08/AVI-VE.pdf\"><i class=\"fa-solid fa-file-pdf fa-2xl\" style=\"color: #039447;\" data-mce-style=\"color: #039447;\"> pdf</i></a> <a href=\"//wp-content/uploads/2023/08/AVI-3-folding-brochure-SInhala-Final-outline_compressed-4.pdf\" data-mce-href=\"//wp-content/uploads/2023/08/AVI-3-folding-brochure-SInhala-Final-outline_compressed-4.pdf\"><i class=\"fa-solid fa-file-pdf fa-2xl\" style=\"color: #039447;\" data-mce-style=\"color: #039447;\"> pdf</i></a></p>','inherit','closed','closed','','3373-autosave-v1','','','2023-09-11 16:58:42','2023-09-11 16:58:42','',3373,'https://farmchemie.yasithawd.com/?p=3546',0,'revision','',0),(3362,1,'2023-08-28 00:59:27','2023-08-28 00:59:27','','AVI PHARMASIN','<h3><em>Granules for Use in Drinking Water for Chickens, Pigs, Turkeys and Claves</em></h3>\r\n[dt_divider style=\"thick\" /]\r\n\r\n&nbsp;\r\n\r\n<strong>Composition: </strong>\r\n\r\nEach 1g of granules contains,\r\nTylosin tartrate – 1 g\r\n\r\n[dt_divider style=\"thin\" /]\r\n\r\n<strong>Indication: </strong>\r\n\r\nTreatment of chronic respiratory diseases (CRD) caused by Mycoplasma gallisepticum &amp; Mycoplasma synoviae when the disease has been established in the flock.\r\n\r\nTreatment of Necrotic enteritis caused by Clostridium perfringens when the disease has been established in the flock.\r\n\r\n[dt_divider style=\"thin\" /]\r\n\r\n<strong>Contraindication:</strong>\r\n\r\nDo not use in animal with known hypersensitivity to Tylosin or other macrolides.\r\nDo not use in cases with known resistance to Tylosin or cross-resistance to other macrolides (MLS-resistance).\r\nDo not use in animals vaccinated with tylosin-sensitive vaccines either at the same time or within 1 week previously.\r\nDo not use in animals with hepatic disorders.\r\n\r\n[dt_divider style=\"thin\" /]\r\n\r\n<strong>Dosage: </strong>\r\n\r\nFor CRD: 82.5-110mg per kg of BW for 3-5 days\r\n\r\nFor Necrotic enteritis: 22mg per kg of BW for 3 days\r\n\r\n[dt_divider style=\"thin\" /]\r\n\r\n<strong>Pack sizes: </strong>\r\n\r\n10 g\r\n\r\n&nbsp;\r\n\r\n[dt_divider style=\"thick\" /]\r\n\r\n&nbsp;\r\n\r\n<a href=\"/wp-content/uploads/2023/08/AVI-VE.pdf\"><i class=\"fa-solid fa-file-pdf fa-2xl\" style=\"color: #039447;\"> pdf</i></a> <a href=\"//wp-content/uploads/2023/08/AVI-3-folding-brochure-SInhala-Final-outline_compressed-4.pdf\"><i class=\"fa-solid fa-file-pdf fa-2xl\" style=\"color: #039447;\"> pdf</i></a>','publish','closed','closed','','avi-pharmasin','','','2023-09-11 10:34:46','2023-09-11 10:34:46','',0,'https://farmchemie.yasithawd.com/?post_type=product&#038;p=3362',0,'product','',0),(3354,1,'2023-08-27 09:23:50','2023-08-27 09:23:50','','AVI-Ganadexil_600px x 600px','','inherit','open','closed','','avi-ganadexil_600px-x-600px-2','','','2023-08-27 09:23:50','2023-08-27 09:23:50','',3352,'https://farmchemie.yasithawd.com/wp-content/uploads/2023/08/AVI-Ganadexil_600px-x-600px.png',0,'attachment','image/png',0),(3358,1,'2023-09-14 07:06:33','2023-09-14 07:06:33','','AVI POLLODOXIN','<h3><em>Doxycycline 10% Oral Solution </em></h3>\n[dt_divider style=\"thick\" /]\n\n&nbsp;\n\n<strong>Composition: </strong>\n\nEach 1 mL contains,\nDxycycline hyclate – 100 mg\n\n[dt_divider style=\"thin\" /]\n\n<strong>Indication: </strong>\n\nTreatment of Colibacillosis, CRD and Mycoplasmosis caused by germs sensitive to doxycycline\n\n[dt_divider style=\"thin\" /]\n\n<strong>Contraindication:</strong>\n\nDo not administer in animal with known sensitivity to tetracyclines.\nDo not administer in animals with hepatic disturbances.\n\n[dt_divider style=\"thin\" /]\n\n<strong>Dosage: </strong>\n\n1 mL of Pollodoxin per Litre of Drinking water for 3 to 5 days\nOral route in Drinking water\n\n[dt_divider style=\"thin\" /]\n\n<strong>Pack sizes: </strong>\n\n10 mL\n\n&nbsp;\n\n[dt_divider style=\"thick\" /]\n\n&nbsp;\n\n<a href=\"/wp-content/uploads/2023/08/AVI-VE.pdf\"><i class=\"fa-solid fa-file-pdf fa-2xl\" style=\"color: #039447;\"> pdf</i></a> <a href=\"//wp-content/uploads/2023/08/AVI-3-folding-brochure-SInhala-Final-outline_compressed-4.pdf\"><i class=\"fa-solid fa-file-pdf fa-2xl\" style=\"color: #039447;\"> pdf</i></a>','inherit','closed','closed','','3355-autosave-v1','','','2023-09-14 07:06:33','2023-09-14 07:06:33','',3355,'https://farmchemie.yasithawd.com/?p=3358',0,'revision','',0),(3356,1,'2023-08-27 09:58:35','2023-08-27 09:58:35','','AVI-Pollodoxin-300px x 300px','','inherit','open','closed','','avi-pollodoxin-300px-x-300px','','','2023-08-27 09:58:35','2023-08-27 09:58:35','',3355,'https://farmchemie.yasithawd.com/wp-content/uploads/2023/08/AVI-Pollodoxin-300px-x-300px.png',0,'attachment','image/png',0),(3357,1,'2023-08-27 10:00:11','2023-08-27 10:00:11','','AVI-Pollodoxin_logo','','inherit','open','closed','','avi-pollodoxin_logo-2','','','2023-08-27 10:00:11','2023-08-27 10:00:11','',3355,'https://farmchemie.yasithawd.com/wp-content/uploads/2023/08/AVI-Pollodoxin_logo.png',0,'attachment','image/png',0),(3359,1,'2023-08-27 10:03:34','2023-08-27 10:03:34','','AVI-Trimethosulfa_logo','','inherit','open','closed','','avi-trimethosulfa_logo','','','2023-08-27 10:03:34','2023-08-27 10:03:34','',3355,'https://farmchemie.yasithawd.com/wp-content/uploads/2023/08/AVI-Trimethosulfa_logo.png',0,'attachment','image/png',0),(3360,1,'2023-08-27 10:03:51','2023-08-27 10:03:51','','AVI-Trimethosulfa_600px','','inherit','open','closed','','avi-trimethosulfa_600px','','','2023-08-27 10:03:51','2023-08-27 10:03:51','',3355,'https://farmchemie.yasithawd.com/wp-content/uploads/2023/08/AVI-Trimethosulfa_600px.png',0,'attachment','image/png',0),(3361,1,'2023-08-27 11:12:29','2023-08-27 11:12:29','','AVI TRIMETHOSULFA','<h3><em>Doxycycline 10% Oral Solution </em></h3>\r\n[dt_divider style=\"thick\" /]\r\n\r\n&nbsp;\r\n\r\n<strong>Composition: </strong>\r\n\r\nEach 1 mL contains,\r\nSulfadiazine – 200 mg\r\nTrimethoprim – 40 mg\r\n\r\n[dt_divider style=\"thin\" /]\r\n\r\n<strong>Indication: </strong>\r\n\r\nTreatment for Primary or Secondary bacterial infections to viral infections, septicemic or localized, affecting the respiratory, digestive, genital, urinary, cutaneous and motor apparatus and in the coccidiosis.\r\n\r\n[dt_divider style=\"thin\" /]\r\n\r\n<strong>Contraindication:</strong>\r\n\r\nDo not administer to animals with hypersensitivity to Sulphonamides or to any of the excipients. Do not use in case of infection by germs resistant to Sulphonamides. Do not administer to animals with impaired liver, kidney functions or blood disorders.\r\n\r\n[dt_divider style=\"thin\" /]\r\n\r\n<strong>Dosage: </strong>\r\n\r\nAvian - 1 ml per 2-5L of Drinking water daily for 5 days, medicated water must be the only source of drinking.\r\n\r\n[dt_divider style=\"thin\" /]\r\n\r\n<strong>Pack sizes: </strong>\r\n\r\n10 mL\r\n\r\n&nbsp;\r\n\r\n[dt_divider style=\"thick\" /]\r\n\r\n&nbsp;\r\n\r\n<a href=\"/wp-content/uploads/2023/08/AVI-VE.pdf\"><i class=\"fa-solid fa-file-pdf fa-2xl\" style=\"color: #039447;\"> pdf</i></a> <a href=\"//wp-content/uploads/2023/08/AVI-3-folding-brochure-SInhala-Final-outline_compressed-4.pdf\"><i class=\"fa-solid fa-file-pdf fa-2xl\" style=\"color: #039447;\"> pdf</i></a>','publish','closed','closed','','avi-trimethosulfa','','','2023-09-11 10:06:14','2023-09-11 10:06:14','',0,'https://farmchemie.yasithawd.com/?post_type=product&#038;p=3361',0,'product','',0),(3344,1,'2023-08-26 07:52:29','2023-08-26 07:52:29','[vc_row][vc_column][ult_tab_element tab_style=\"Style_4\" tab_animation=\"Fade\" tab_max=\"on\" tab_title_color=\"#ffffff\" tab_background_color=\"#039447\" tab_hover_title_color=\"#ffffff\" tab_hover_background_color=\"#039447\" acttab_title=\"#ffffff\" acttab_background=\"#782d88\" disp_icon=\"Disables\"][single_tab title=\"All\" tab_id=\"1693035214365-3\"][dt_products_masonry mode=\"grid\" layout=\"btn_on_img_hover\" bwb_columns=\"desktop:3|h_tablet:3|v_tablet:2|phone:1\" dis_posts_total=\"12\" product_rating=\"n\" ids=\"\"][/single_tab][single_tab title=\"Poultry\" tab_id=\"1693035214368-9\"][dt_products_masonry show_products=\"categories_products\" layout=\"btn_on_img_hover\" bwb_columns=\"desktop:3|h_tablet:3|v_tablet:2|phone:1\" dis_posts_total=\"12\" product_rating=\"n\" category_ids=\"65\"][/single_tab][single_tab title=\"Dairy and Large Animal\" tab_id=\"1693035580574-2-7\"][dt_products_masonry show_products=\"categories_products\" layout=\"btn_on_img_hover\" bwb_columns=\"desktop:3|h_tablet:3|v_tablet:2|phone:1\" dis_posts_total=\"12\" product_rating=\"n\" category_ids=\"63\"][/single_tab][single_tab title=\"Pet Care\" tab_id=\"1693035636854-3-3\"][dt_products_masonry show_products=\"categories_products\" layout=\"btn_on_img_hover\" bwb_columns=\"desktop:3|h_tablet:3|v_tablet:2|phone:1\" dis_posts_total=\"12\" product_rating=\"n\" category_ids=\"64\"][/single_tab][single_tab title=\"Feed Additives\" tab_id=\"1693035729559-4-1\"][dt_products_masonry show_products=\"categories_products\" layout=\"btn_on_img_hover\" bwb_columns=\"desktop:3|h_tablet:3|v_tablet:2|phone:1\" dis_posts_total=\"12\" category_ids=\"74\"][/single_tab][/ult_tab_element][/vc_column][/vc_row]','AllProducts','','inherit','closed','closed','','3335-revision-v1','','','2023-08-26 07:52:29','2023-08-26 07:52:29','',3335,'https://farmchemie.yasithawd.com/?p=3344',0,'revision','',0),(3343,1,'2023-08-26 07:50:55','2023-08-26 07:50:55','[vc_row][vc_column][ult_tab_element tab_style=\"Style_4\" tab_animation=\"Fade\" tab_max=\"on\" tab_title_color=\"#ffffff\" tab_background_color=\"#039447\" tab_hover_title_color=\"#ffffff\" tab_hover_background_color=\"#039447\" acttab_title=\"#ffffff\" acttab_background=\"#782d88\" disp_icon=\"Disables\" main_title_typograpy=\"\" main_desc_typograpy=\"\"][single_tab title=\"All\" tab_id=\"1693035214365-3\"][dt_products_masonry layout=\"btn_on_img_hover\" bwb_columns=\"desktop:3|h_tablet:3|v_tablet:2|phone:1\" dis_posts_total=\"12\" product_rating=\"n\" ids=\"\"][/single_tab][single_tab title=\"Poultry\" tab_id=\"1693035214368-9\"][dt_products_masonry show_products=\"categories_products\" layout=\"btn_on_img_hover\" bwb_columns=\"desktop:3|h_tablet:3|v_tablet:2|phone:1\" dis_posts_total=\"12\" product_rating=\"n\" category_ids=\"65\"][/single_tab][single_tab title=\"Dairy and Large Animal\" tab_id=\"1693035580574-2-7\"][dt_products_masonry show_products=\"categories_products\" layout=\"btn_on_img_hover\" bwb_columns=\"desktop:3|h_tablet:3|v_tablet:2|phone:1\" dis_posts_total=\"12\" product_rating=\"n\" category_ids=\"63\"][/single_tab][single_tab title=\"Pet Care\" tab_id=\"1693035636854-3-3\"][dt_products_masonry show_products=\"categories_products\" layout=\"btn_on_img_hover\" bwb_columns=\"desktop:3|h_tablet:3|v_tablet:2|phone:1\" dis_posts_total=\"12\" product_rating=\"n\" category_ids=\"64\"][/single_tab][single_tab title=\"Feed Additives\" tab_id=\"1693035729559-4-1\"][dt_products_masonry show_products=\"categories_products\" layout=\"btn_on_img_hover\" bwb_columns=\"desktop:3|h_tablet:3|v_tablet:2|phone:1\" dis_posts_total=\"12\" category_ids=\"74\"][/single_tab][/ult_tab_element][/vc_column][/vc_row]','AllProducts','','inherit','closed','closed','','3335-revision-v1','','','2023-08-26 07:50:55','2023-08-26 07:50:55','',3335,'https://farmchemie.yasithawd.com/?p=3343',0,'revision','',0),(2655,1,'2022-12-15 09:23:13','2022-12-15 09:23:13','','Products','','publish','closed','closed','','products','','','2023-09-24 04:17:16','2023-09-24 04:17:16','',0,'https://farmchemie.yasithawd.com/?page_id=2655',0,'page','',0),(2656,1,'2022-12-15 09:22:01','2022-12-15 09:22:01','[vc_row][vc_column][products orderby=\"rand\" order=\"ASC\" ids=\"\"][/vc_column][/vc_row]','Products','','inherit','closed','closed','','2655-revision-v1','','','2022-12-15 09:22:01','2022-12-15 09:22:01','',2655,'https://farmchemie.yasithawd.com/?p=2656',0,'revision','',0),(2657,1,'2022-12-15 09:24:09','2022-12-15 09:24:09','[vc_row][vc_column][/vc_column][/vc_row]','Products','','inherit','closed','closed','','2655-revision-v1','','','2022-12-15 09:24:09','2022-12-15 09:24:09','',2655,'https://farmchemie.yasithawd.com/?p=2657',0,'revision','',0),(3352,1,'2023-08-27 09:13:02','2023-08-27 09:13:02','','AVI GANADEXIL','<h3><em>Enrofloxacin 10% Oral Solution for Poultryr</em></h3>\r\n[dt_divider style=\"thick\" /]\r\n\r\n&nbsp;\r\n\r\n<strong>Composition: </strong>\r\n\r\nEach 1 mL contains,\r\nEnrofloxacin – 100 mg\r\n\r\n[dt_divider style=\"thin\" /]\r\n\r\n<strong>Indication: </strong>\r\n\r\nTreatment of colibacillosis, salmonellosis and infections caused by <em>Mycoplasma</em> spp.\r\n\r\n[dt_divider style=\"thin\" /]\r\n\r\n<strong>Contraindication:</strong>\r\n\r\nDo not use in case of resistance to other quinolones, because of cross-resistance. I relation to fluoroquinolones, a complete cross-resistance exists. Do not use in animals with previous case of streptococcal infections.\r\n\r\n[dt_divider style=\"thin\" /]\r\n\r\n<strong>Dosage: </strong>\r\n\r\n1 mL per 2 L of drinking water daily for 3 – 5 days.\r\nRenew medicated water every 24 hours.\r\n\r\n[dt_divider style=\"thin\" /]\r\n\r\n<strong>Pack sizes: </strong>\r\n\r\n10 mL\r\n\r\n&nbsp;\r\n\r\n[dt_divider style=\"thick\" /]\r\n\r\n&nbsp;\r\n\r\n<a href=\"/wp-content/uploads/2023/08/AVI-VE.pdf\"><i class=\"fa-solid fa-file-pdf fa-2xl\" style=\"color: #039447\"> pdf</i></a> <a href=\"//wp-content/uploads/2023/08/AVI-3-folding-brochure-SInhala-Final-outline_compressed-4.pdf\"><i class=\"fa-solid fa-file-pdf fa-2xl\" style=\"color: #039447\"> pdf</i></a>','publish','closed','closed','','avi-ganadexil','','','2023-09-24 01:01:23','2023-09-24 01:01:23','',0,'https://farmchemie.yasithawd.com/?post_type=product&#038;p=3352',0,'product','',0),(3396,1,'2023-09-01 09:09:15','2023-09-01 09:09:15','','WhatsApp Image 2023-09-01 at 2.36.27 PM','','inherit','open','closed','','whatsapp-image-2023-09-01-at-2-36-27-pm','','','2023-09-01 09:09:15','2023-09-01 09:09:15','',2964,'https://farmchemie.yasithawd.com/wp-content/uploads/2023/09/WhatsApp-Image-2023-09-01-at-2.36.27-PM.jpeg',0,'attachment','image/jpeg',0),(3370,1,'2023-08-28 02:38:55','2023-08-28 02:38:55','','Abamec-Dog','<h3><em>Endo-Ecto parasiticide for Dogs</em></h3>\r\n[dt_divider style=\"thick\" /]\r\n\r\n&nbsp;\r\n\r\n<strong>Composition: </strong>\r\n\r\nEach 1 tablet contains,\r\nPraziquantel – 0.05 g\r\nAbamectin - 0.002 g\r\n\r\n[dt_divider style=\"thin\" /]\r\n\r\n<strong>Indication: </strong>\r\n\r\nIn infestation of dogs with endoparasites tapeworms - cestodes (teniae) and roundworms (nematodes); in filariasis of the heart; in infestations with fleas, lice, pasture ticks and mange mites including ear scabies; and particularly in cases of complex endo- and ectoparasitic invasion.\r\n\r\n[dt_divider style=\"thin\" /]\r\n\r\n<strong>Contraindication:</strong>\r\n\r\nDo not administer to dogs of Collie, Shelti and Bobtail breeds, to pregnant bitches, as well as to puppies below two months of age. Do not give more than four tablets as a single dose to dogs with a body weight exceeding 40 kg.\r\n\r\n[dt_divider style=\"thin\" /]\r\n\r\n<strong>Dosage: </strong>\r\n\r\nOne tablet per 10 kg body weight. The treatment may be repeated after a month.\r\nIn cases of flea infestation, the living premises must also be disinfected.\r\n\r\n[dt_divider style=\"thin\" /]\r\n\r\n<strong>Pack sizes: </strong>\r\n\r\nTwo (2) tablets and Four (4) tablets\r\n\r\n&nbsp;\r\n\r\n[dt_divider style=\"thick\" /]\r\n\r\n&nbsp;\r\n\r\n<a href=\"/wp-content/uploads/2023/08/AVI-VE.pdf\"><i class=\"fa-solid fa-file-pdf fa-2xl\" style=\"color: #039447;\"> pdf</i></a> <a href=\"//wp-content/uploads/2023/08/AVI-3-folding-brochure-SInhala-Final-outline_compressed-4.pdf\"><i class=\"fa-solid fa-file-pdf fa-2xl\" style=\"color: #039447;\"> pdf</i></a>','publish','closed','closed','','abamec-dog','','','2023-09-16 08:52:12','2023-09-16 08:52:12','',0,'https://farmchemie.yasithawd.com/?post_type=product&#038;p=3370',0,'product','',0),(3367,1,'2023-08-28 02:32:36','2023-08-28 02:32:36','','Noworm-Plus_600px','','inherit','open','closed','','noworm-plus_600px','','','2023-08-28 02:32:36','2023-08-28 02:32:36','',3366,'https://farmchemie.yasithawd.com/wp-content/uploads/2023/08/Noworm-Plus_600px.png',0,'attachment','image/png',0),(3368,1,'2023-08-28 02:33:00','2023-08-28 02:33:00','','2-tab-Noworm-Plus_600px','','inherit','open','closed','','2-tab-noworm-plus_600px','','','2023-08-28 02:33:00','2023-08-28 02:33:00','',3366,'https://farmchemie.yasithawd.com/wp-content/uploads/2023/08/2-tab-Noworm-Plus_600px.png',0,'attachment','image/png',0),(3369,1,'2023-08-28 02:33:16','2023-08-28 02:33:16','','Noworm-Plus_logo','','inherit','open','closed','','noworm-plus_logo','','','2023-08-28 02:33:16','2023-08-28 02:33:16','',3366,'https://farmchemie.yasithawd.com/wp-content/uploads/2023/08/Noworm-Plus_logo.png',0,'attachment','image/png',0),(3371,1,'2023-08-28 02:46:50','2023-08-28 02:46:50','','AbamecD_600px x 600px','','inherit','open','closed','','abamecd_600px-x-600px-2','','','2023-08-28 02:46:50','2023-08-28 02:46:50','',3370,'https://farmchemie.yasithawd.com/wp-content/uploads/2023/08/AbamecD_600px-x-600px.png',0,'attachment','image/png',0),(3372,1,'2023-08-28 02:47:21','2023-08-28 02:47:21','','AbamecD-Logo','','inherit','open','closed','','abamecd-logo-2','','','2023-08-28 02:47:21','2023-08-28 02:47:21','',3370,'https://farmchemie.yasithawd.com/wp-content/uploads/2023/08/AbamecD-Logo.png',0,'attachment','image/png',0),(3375,1,'2023-08-31 07:47:33','2023-08-31 07:47:33','[vc_row][vc_column][vc_column_text]Farmchemie along with the leading veterinary vaccine solution provider in the world, CEVA established our partnership in 2013 to become the first animal health input supplier in Sri Lanka to offer vaccination services to poultry farmers. This innovative solution tackles the burden of individually vaccinating animals on farms and introduces advanced equipment for precise vaccine administration. By addressing the limitations of traditional vaccination methods, Farmchemie\'s services have gained popularity within a short period.[/vc_column_text][/vc_column][/vc_row][vc_row css=\".vc_custom_1689580294399{padding-top: 50px !important;padding-bottom: 50px !important;}\"][vc_column][vc_row_inner content_placement=\"middle\" css=\".vc_custom_1692423054521{border-top-width: 1px !important;border-top-color: #079547 !important;border-top-style: solid !important;border-radius: 1px !important;}\"][vc_column_inner width=\"2/3\"][vc_column_text]after 10 years from 2013-2023 Farmchemie achieved 500Mn doses of vaccines from Transmune IBD vaccine which is administrated to prevent a deadly disease called Infectious Bursal Disease in broiler birds of Sri Lanka and holding the number 01 position in vaccination service in the county since the beginning.[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_single_image image=\"3007\" img_size=\"full\"][/vc_column_inner][/vc_row_inner][vc_row_inner content_placement=\"middle\" css=\".vc_custom_1692423045746{border-top-width: 1px !important;border-top-color: #079547 !important;border-top-style: solid !important;border-radius: 1px !important;}\"][vc_column_inner width=\"1/3\"][vc_single_image image=\"3008\" img_size=\"full\" css_animation=\"fadeInLeftBig\"][/vc_column_inner][vc_column_inner width=\"2/3\"][vc_column_text css_animation=\"fadeInRightBig\"]Farmchemie\'s approach focuses on accurate vaccine delivery and robust cold chain management. The company regularly conducts audits to ensure the quality and integrity of vaccines. The maintenance of proper temperature and storage conditions guarantees vaccine potency and enhances their efficacy during administration.[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_row_inner content_placement=\"middle\" css=\".vc_custom_1692423061906{border-top-width: 1px !important;border-top-color: #079547 !important;border-top-style: solid !important;border-radius: 1px !important;}\"][vc_column_inner width=\"2/3\"][vc_column_text css_animation=\"fadeInLeftBig\"]One of the key strengths of Farmchemie is its team of highly qualified staff, who have received training overseas. These professionals possess the expertise to administer vaccines effectively and efficiently, providing exceptional care to the animals. The investment in their education and training reflects Farmchemie\'s commitment to delivering superior services.[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_single_image image=\"3009\" img_size=\"full\" css_animation=\"fadeInRightBig\"][/vc_column_inner][/vc_row_inner][vc_row_inner content_placement=\"middle\" css=\".vc_custom_1692423068642{border-top-width: 1px !important;border-top-color: #079547 !important;border-top-style: solid !important;border-radius: 1px !important;}\"][vc_column_inner width=\"1/3\"][vc_single_image image=\"3010\" img_size=\"full\" css_animation=\"fadeInLeftBig\"][/vc_column_inner][vc_column_inner width=\"2/3\"][vc_column_text css_animation=\"fadeInRightBig\"]The accuracy and the quality of the vaccination is always highly concerned and that is monitored by regular audits which supervised by the CEVA and for each vaccination audit report can be shared to the customer which leads them to get better understanding about the vaccination proces and administration[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_row_inner content_placement=\"middle\" css=\".vc_custom_1692423075811{border-top-width: 1px !important;border-top-color: #079547 !important;border-top-style: solid !important;border-radius: 1px !important;}\"][vc_column_inner width=\"2/3\"][vc_column_text css_animation=\"fadeInLeftBig\"]The impact of Farmchemie\'s vaccination services on poultry farmers has been substantial. By eliminating the burden of individual vaccinations, farmers can allocate their time and resources to other essential aspects of poultry farming. The accuracy of vaccine delivery, coupled with stringent cold chain management practices, has led to increased customer satisfaction and improved overall poultry health outcomes.[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_single_image image=\"3011\" img_size=\"full\" css_animation=\"fadeInRightBig\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row css=\".vc_custom_1691129087062{border-top-width: 1px !important;border-top-color: #079547 !important;border-top-style: solid !important;border-radius: 1px !important;}\"][vc_column][vc_column_text]Farmchemie\'s pioneering role in the industry has revolutionized poultry farming in Sri Lanka. Through advanced vaccination techniques, quality assurance, and well-trained staff, the company has overcome the limitations of conventional procedures. By consistently innovating and prioritizing customer satisfaction, Farmchemie continues to shape and improve the health and welfare of poultry in the country.[/vc_column_text][/vc_column][/vc_row]','Vaccination Service','','inherit','closed','closed','','2996-revision-v1','','','2023-08-31 07:47:33','2023-08-31 07:47:33','',2996,'https://farmchemie.yasithawd.com/?p=3375',0,'revision','',0),(3376,1,'2023-08-31 07:54:09','2023-08-31 07:54:09','[vc_row][vc_column][vc_column_text]Farmchemie along with the leading veterinary vaccine solution provider in the world, CEVA established our partnership in 2013 to become the first animal health input supplier in Sri Lanka to offer vaccination services to poultry farmers. This innovative solution tackles the burden of individually vaccinating animals on farms and introduces advanced equipment for precise vaccine administration. By addressing the limitations of traditional vaccination methods, Farmchemie\'s services have gained popularity within a short period.[/vc_column_text][/vc_column][/vc_row][vc_row css=\".vc_custom_1689580294399{padding-top: 50px !important;padding-bottom: 50px !important;}\"][vc_column][vc_row_inner content_placement=\"middle\" css=\".vc_custom_1692423054521{border-top-width: 1px !important;border-top-color: #079547 !important;border-top-style: solid !important;border-radius: 1px !important;}\"][vc_column_inner width=\"2/3\"][vc_column_text css_animation=\"fadeInLeftBig\"]after 10 years from 2013-2023 Farmchemie achieved 500Mn doses of vaccines from Transmune IBD vaccine which is administrated to prevent a deadly disease called Infectious Bursal Disease in broiler birds of Sri Lanka and holding the number 01 position in vaccination service in the county since the beginning.[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_single_image image=\"3007\" img_size=\"full\" css_animation=\"fadeInRightBig\"][/vc_column_inner][/vc_row_inner][vc_row_inner content_placement=\"middle\" css=\".vc_custom_1692423045746{border-top-width: 1px !important;border-top-color: #079547 !important;border-top-style: solid !important;border-radius: 1px !important;}\"][vc_column_inner width=\"1/3\"][vc_single_image image=\"3008\" img_size=\"full\" css_animation=\"fadeInLeftBig\"][/vc_column_inner][vc_column_inner width=\"2/3\"][vc_column_text css_animation=\"fadeInRightBig\"]Farmchemie\'s approach focuses on accurate vaccine delivery and robust cold chain management. The company regularly conducts audits to ensure the quality and integrity of vaccines. The maintenance of proper temperature and storage conditions guarantees vaccine potency and enhances their efficacy during administration.[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_row_inner content_placement=\"middle\" css=\".vc_custom_1692423061906{border-top-width: 1px !important;border-top-color: #079547 !important;border-top-style: solid !important;border-radius: 1px !important;}\"][vc_column_inner width=\"2/3\"][vc_column_text css_animation=\"fadeInLeftBig\"]One of the key strengths of Farmchemie is its team of highly qualified staff, who have received training overseas. These professionals possess the expertise to administer vaccines effectively and efficiently, providing exceptional care to the animals. The investment in their education and training reflects Farmchemie\'s commitment to delivering superior services.[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_single_image image=\"3009\" img_size=\"full\" css_animation=\"fadeInRightBig\"][/vc_column_inner][/vc_row_inner][vc_row_inner content_placement=\"middle\" css=\".vc_custom_1692423068642{border-top-width: 1px !important;border-top-color: #079547 !important;border-top-style: solid !important;border-radius: 1px !important;}\"][vc_column_inner width=\"1/3\"][vc_single_image image=\"3010\" img_size=\"full\" css_animation=\"fadeInLeftBig\"][/vc_column_inner][vc_column_inner width=\"2/3\"][vc_column_text css_animation=\"fadeInRightBig\"]The accuracy and the quality of the vaccination is always highly concerned and that is monitored by regular audits which supervised by the CEVA and for each vaccination audit report can be shared to the customer which leads them to get better understanding about the vaccination proces and administration[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_row_inner content_placement=\"middle\" css=\".vc_custom_1692423075811{border-top-width: 1px !important;border-top-color: #079547 !important;border-top-style: solid !important;border-radius: 1px !important;}\"][vc_column_inner width=\"2/3\"][vc_column_text css_animation=\"fadeInLeftBig\"]The impact of Farmchemie\'s vaccination services on poultry farmers has been substantial. By eliminating the burden of individual vaccinations, farmers can allocate their time and resources to other essential aspects of poultry farming. The accuracy of vaccine delivery, coupled with stringent cold chain management practices, has led to increased customer satisfaction and improved overall poultry health outcomes.[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_single_image image=\"3011\" img_size=\"full\" css_animation=\"fadeInRightBig\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row css=\".vc_custom_1691129087062{border-top-width: 1px !important;border-top-color: #079547 !important;border-top-style: solid !important;border-radius: 1px !important;}\"][vc_column][vc_column_text]Farmchemie\'s pioneering role in the industry has revolutionized poultry farming in Sri Lanka. Through advanced vaccination techniques, quality assurance, and well-trained staff, the company has overcome the limitations of conventional procedures. By consistently innovating and prioritizing customer satisfaction, Farmchemie continues to shape and improve the health and welfare of poultry in the country.[/vc_column_text][/vc_column][/vc_row]','Vaccination Service','','inherit','closed','closed','','2996-revision-v1','','','2023-08-31 07:54:09','2023-08-31 07:54:09','',2996,'https://farmchemie.yasithawd.com/?p=3376',0,'revision','',0),(2723,1,'2023-05-11 04:35:16','2023-05-11 04:35:16','','CALFO-20','','inherit','open','closed','','calfo-20','','','2023-05-11 04:35:16','2023-05-11 04:35:16','',0,'https://farmchemie.yasithawd.com/wp-content/uploads/2023/05/CALFO-20.png',0,'attachment','image/png',0),(2724,1,'2023-05-11 04:35:42','2023-05-11 04:35:42','','CALFO-20-P','','inherit','open','closed','','calfo-20-p','','','2023-05-11 04:35:42','2023-05-11 04:35:42','',0,'https://farmchemie.yasithawd.com/wp-content/uploads/2023/05/CALFO-20-P.png',0,'attachment','image/png',0),(2726,1,'2023-05-11 04:40:55','2023-05-11 04:40:55','','ESTROGEST','','inherit','open','closed','','estrogest','','','2023-05-11 04:40:55','2023-05-11 04:40:55','',0,'https://farmchemie.yasithawd.com/wp-content/uploads/2023/05/ESTROGEST.png',0,'attachment','image/png',0),(2728,1,'2023-05-11 04:47:09','2023-05-11 04:47:09','','GARD','','inherit','open','closed','','gard','','','2023-05-11 04:47:09','2023-05-11 04:47:09','',0,'https://farmchemie.yasithawd.com/wp-content/uploads/2023/05/GARD.png',0,'attachment','image/png',0),(2729,1,'2023-05-11 04:47:31','2023-05-11 04:47:31','','GARD-L','','inherit','open','closed','','gard-l','','','2023-05-11 04:47:31','2023-05-11 04:47:31','',0,'https://farmchemie.yasithawd.com/wp-content/uploads/2023/05/GARD-L.png',0,'attachment','image/png',0),(3377,1,'2023-08-31 07:58:55','2023-08-31 07:58:55','[vc_row full_width=\"stretch_row\" css=\".vc_custom_1689577528817{padding-bottom: 50px !important;}\"][vc_column css=\".vc_custom_1689577454678{margin-bottom: 50px !important;}\"][vc_row_inner css=\".vc_custom_1692407941633{border-bottom-width: 1px !important;border-bottom-color: #079547 !important;border-bottom-style: solid !important;border-radius: 1px !important;}\"][vc_column_inner width=\"1/2\"][ult_animation_block animation=\"fadeInLeftBig\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][ultimate_heading main_heading=\"Feed Additives\" heading_tag=\"h3\" main_heading_color=\"#079547\" sub_heading_color=\"#792c8a\" alignment=\"left\"]<strong>Premixes/ Specialty Feed Additives/ Dilution of Active Ingredients/ Concentrates</strong><strong>\r\n</strong>Pack sizes – 1,000 kg, 500 kg, 50 kg, 25 kg, 15 kg, 10 kg, 5 kg, 1kg[/ultimate_heading][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_single_image image=\"3129\" img_size=\"full\" css_animation=\"fadeInRightBig\"][/vc_column_inner][/vc_row_inner][vc_row_inner css=\".vc_custom_1692407949383{border-bottom-width: 1px !important;border-bottom-color: #079547 !important;border-bottom-style: solid !important;border-radius: 1px !important;}\"][vc_column_inner width=\"1/2\"][vc_single_image image=\"3162\" img_size=\"full\" css_animation=\"fadeInLeftBig\"][/vc_column_inner][vc_column_inner width=\"1/2\"][ult_animation_block animation=\"fadeInRightBig\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][ultimate_heading main_heading=\"Oral Supplements\" heading_tag=\"h3\" main_heading_color=\"#079547\" sub_heading_color=\"#792c8a\" alignment=\"left\"]<strong>Liquids</strong><strong>\r\n</strong>Pack sizes – 1,000 L, 250 L, 50 L, 25 L, 5 L, 1 L, 500 mL, 250 mL, 100 mL, 50 mL\r\n\r\n<strong>Water soluble powders</strong><strong>\r\n</strong>Pack sizes – 25 kg, 15 kg, 10 kg, 5 kg, 1kg[/ultimate_heading][/ult_animation_block][/vc_column_inner][/vc_row_inner][vc_row_inner css=\".vc_custom_1692407957943{border-bottom-width: 1px !important;border-bottom-color: #079547 !important;border-bottom-style: solid !important;border-radius: 1px !important;}\"][vc_column_inner width=\"1/2\"][ult_animation_block animation=\"fadeInLeftBig\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][ultimate_heading main_heading=\"Tablets\" heading_tag=\"h3\" main_heading_color=\"#079547\" sub_heading_color=\"#792c8a\" alignment=\"left\"]<strong>Supplementary tablets for pet care</strong>\r\nTablet sizes – 1 to 5 g\r\n\r\n<strong>Boluses</strong><strong>\r\n</strong>Tablet sizes – 5 to 25 g[/ultimate_heading][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_single_image image=\"3163\" img_size=\"full\" css_animation=\"fadeInRightBig\"][/vc_column_inner][/vc_row_inner][vc_row_inner css=\".vc_custom_1692407970279{border-bottom-width: 1px !important;border-bottom-color: #079547 !important;border-bottom-style: solid !important;border-radius: 1px !important;}\"][vc_column_inner width=\"1/2\"][vc_single_image image=\"3164\" img_size=\"full\" css_animation=\"fadeInLeftBig\"][/vc_column_inner][vc_column_inner width=\"1/2\"][ult_animation_block animation=\"fadeInRightBig\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][ultimate_heading main_heading=\"Veterinary Pharmaceuticals\" heading_tag=\"h3\" main_heading_color=\"#079547\" sub_heading_color=\"#792c8a\" alignment=\"left\"]<strong>Deworming Solutions/ Antibiotics/ Antimicrobials/ Wound care solutions</strong><strong>\r\n</strong>Form – Liquid, WSP[/ultimate_heading][/ult_animation_block][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row full_width=\"stretch_row_content\" css=\".vc_custom_1693451731079{padding-top: 50px !important;padding-bottom: 50px !important;}\"][vc_column][ultimate_heading main_heading=\"Our manufacturing facility is certified with FAMI-QS, WHO GMP &amp; ISO 9001:2015 International Quality standards.\" main_heading_color=\"#079547\" sub_heading_color=\"#792c8a\"]We select only the <strong><em>best</em></strong> and <strong><em>most reputed</em></strong> Raw Material &amp; Packing Material Suppliers for the production of our finished goods.[/ultimate_heading][vc_row_inner equal_height=\"yes\" content_placement=\"middle\"][vc_column_inner width=\"1/5\" offset=\"vc_hidden-lg vc_hidden-md\"][vc_single_image image=\"3062\" img_size=\"full\" alignment=\"center\"][/vc_column_inner][vc_column_inner width=\"1/5\" css=\".vc_custom_1691846530645{border-right-width: 1px !important;border-left-width: 1px !important;border-left-color: #000000 !important;border-left-style: solid !important;border-right-color: #000000 !important;border-right-style: solid !important;border-radius: 1px !important;}\" offset=\"vc_hidden-lg vc_hidden-md\"][vc_single_image image=\"3063\" img_size=\"full\" alignment=\"center\"][/vc_column_inner][vc_column_inner width=\"1/5\" offset=\"vc_hidden-lg vc_hidden-md\"][vc_single_image image=\"3064\" img_size=\"full\" alignment=\"center\"][/vc_column_inner][vc_column_inner width=\"1/5\" css=\".vc_custom_1691846545469{border-right-width: 1px !important;border-left-width: 1px !important;border-left-color: #000000 !important;border-left-style: solid !important;border-right-color: #000000 !important;border-right-style: solid !important;border-radius: 1px !important;}\" offset=\"vc_hidden-lg vc_hidden-md\"][vc_single_image image=\"3065\" img_size=\"full\" alignment=\"center\"][/vc_column_inner][vc_column_inner width=\"1/5\" offset=\"vc_hidden-lg vc_hidden-md\"][vc_single_image image=\"3066\" img_size=\"full\" alignment=\"center\"][/vc_column_inner][/vc_row_inner][vc_row_inner equal_height=\"yes\" content_placement=\"middle\"][vc_column_inner width=\"1/4\" css=\".vc_custom_1691846563021{border-right-width: 1px !important;border-right-color: #000000 !important;border-right-style: solid !important;border-radius: 1px !important;}\" offset=\"vc_hidden-lg vc_hidden-md\"][vc_single_image image=\"3067\" img_size=\"full\" alignment=\"center\"][/vc_column_inner][vc_column_inner width=\"1/4\" css=\".vc_custom_1691846569845{border-right-width: 1px !important;border-right-color: #000000 !important;border-right-style: solid !important;border-radius: 1px !important;}\" offset=\"vc_hidden-lg vc_hidden-md\"][vc_single_image image=\"3068\" img_size=\"full\" alignment=\"center\"][/vc_column_inner][vc_column_inner width=\"1/4\" css=\".vc_custom_1691846576949{border-right-width: 1px !important;border-right-color: #000000 !important;border-right-style: solid !important;border-radius: 1px !important;}\" offset=\"vc_hidden-lg vc_hidden-md\"][vc_single_image image=\"3069\" img_size=\"full\" alignment=\"center\"][/vc_column_inner][vc_column_inner width=\"1/4\" offset=\"vc_hidden-lg vc_hidden-md\"][vc_single_image image=\"3070\" img_size=\"full\" alignment=\"center\"][/vc_column_inner][/vc_row_inner][vc_row_inner disable_element=\"yes\"][vc_column_inner width=\"1/3\"][vc_single_image image=\"2981\" img_size=\"full\"][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_single_image image=\"2982\" img_size=\"full\"][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_single_image image=\"2983\" img_size=\"full\"][/vc_column_inner][/vc_row_inner][vc_row_inner disable_element=\"yes\"][vc_column_inner width=\"1/6\"][/vc_column_inner][vc_column_inner width=\"2/3\"][vc_single_image image=\"2984\" img_size=\"full\"][/vc_column_inner][vc_column_inner width=\"1/6\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row full_width=\"stretch_row_content_no_spaces\"][vc_column offset=\"vc_hidden-sm vc_hidden-xs\"][vc_single_image image=\"3120\" img_size=\"full\" alignment=\"center\"][/vc_column][/vc_row][vc_row css=\".vc_custom_1689578794814{padding-top: 50px !important;padding-bottom: 50px !important;}\"][vc_column][ultimate_heading main_heading=\"Supplier selection and procurement criteria\" main_heading_color=\"#079547\" sub_heading_color=\"#792c8a\" alignment=\"left\"][/ultimate_heading][vc_row_inner css=\".vc_custom_1689578812611{margin-top: 50px !important;}\"][vc_column_inner width=\"1/2\"][dt_vc_list dividers=\"false\"]\r\n<ul>\r\n 	<li>Check supplier’s quality certification to ensure raw material quality</li>\r\n 	<li>New vendor validation protocol - In case of a change in the supplier, obtain samples and validate in the lab</li>\r\n</ul>\r\n[/dt_vc_list][/vc_column_inner][vc_column_inner width=\"1/2\"][dt_vc_list dividers=\"false\"]\r\n<ul>\r\n 	<li>Income inspection carried out on every consignment (Tested for Chemical Assay &amp; Physical Properties)</li>\r\n 	<li>Quality department approval required to be used in the production</li>\r\n</ul>\r\n[/dt_vc_list][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row css=\".vc_custom_1689578794814{padding-top: 50px !important;padding-bottom: 50px !important;}\"][vc_column][ultimate_heading main_heading=\"Please contact us to start your Marketing Journey with a reliable manufacturing partnership with FARMCHEMIE\" heading_tag=\"h3\" main_heading_color=\"#079547\" sub_heading_color=\"#792c8a\" alignment=\"left\"][/ultimate_heading][vc_row_inner css=\".vc_custom_1689578812611{margin-top: 50px !important;}\"][vc_column_inner width=\"1/2\"][bsf-info-box icon_size=\"32\" title=\"International Markets\" pos=\"square_box\" box_border_style=\"solid\" box_border_width=\"1\" box_border_color=\"#792c8a\" title_font_color=\"#079547\" desc_font_color=\"#792c8a\" title_font_size=\"desktop:25px;\"]<strong>Email :</strong> <a href=\"mailto:sales.export@farmchemie.com\"><u>sales.export@farmchemie.com</u></a>\r\n<strong>Tel No :</strong> + 94 76 577 2975[/bsf-info-box][/vc_column_inner][vc_column_inner width=\"1/2\"][bsf-info-box icon_size=\"32\" title=\"Sri Lankan Market\" pos=\"square_box\" box_border_style=\"solid\" box_border_width=\"1\" box_border_color=\"#079547\" title_font_color=\"#079547\" desc_font_color=\"#792c8a\" title_font_size=\"desktop:25px;\"]Email : <a href=\"mailto:sales.local@farmchemie.com\"><u>sales.local@farmchemie.com</u></a>\r\nTel No : +94 74 224 6947[/bsf-info-box][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row]','Manufacturing','','inherit','closed','closed','','2964-revision-v1','','','2023-08-31 07:58:55','2023-08-31 07:58:55','',2964,'https://farmchemie.yasithawd.com/?p=3377',0,'revision','',0),(2731,1,'2023-05-11 04:51:06','2023-05-11 04:51:06','','IMIDOCARB---LH','','inherit','open','closed','','imidocarb-lh','','','2023-05-11 04:51:06','2023-05-11 04:51:06','',0,'https://farmchemie.yasithawd.com/wp-content/uploads/2023/05/IMIDOCARB-LH.png',0,'attachment','image/png',0),(2733,1,'2023-05-11 04:55:40','2023-05-11 04:55:40','','INVEMOX-15%LA','','inherit','open','closed','','invemox-15la','','','2023-05-11 04:55:40','2023-05-11 04:55:40','',0,'https://farmchemie.yasithawd.com/wp-content/uploads/2023/05/INVEMOX-15LA.png',0,'attachment','image/png',0),(2735,1,'2023-05-11 05:20:21','2023-05-11 05:20:21','','KETINK','','inherit','open','closed','','ketink','','','2023-05-11 05:20:21','2023-05-11 05:20:21','',0,'https://farmchemie.yasithawd.com/wp-content/uploads/2023/05/KETINK.png',0,'attachment','image/png',0),(2737,1,'2023-05-11 05:23:41','2023-05-11 05:23:41','','MAXUVOL','','inherit','open','closed','','maxuvol','','','2023-05-11 05:23:41','2023-05-11 05:23:41','',0,'https://farmchemie.yasithawd.com/wp-content/uploads/2023/05/MAXUVOL.png',0,'attachment','image/png',0),(2739,1,'2023-05-11 05:26:15','2023-05-11 05:26:15','','ORONDO-SPRAY','','inherit','open','closed','','orondo-spray','','','2023-05-11 05:26:15','2023-05-11 05:26:15','',0,'https://farmchemie.yasithawd.com/wp-content/uploads/2023/05/ORONDO-SPRAY.png',0,'attachment','image/png',0),(3393,1,'2023-09-01 07:32:21','2023-09-01 07:32:21','[vc_row full_width=\"stretch_row\" css=\".vc_custom_1689577528817{padding-bottom: 50px !important;}\"][vc_column css=\".vc_custom_1689577454678{margin-bottom: 50px !important;}\"][vc_row_inner css=\".vc_custom_1692407941633{border-bottom-width: 1px !important;border-bottom-color: #079547 !important;border-bottom-style: solid !important;border-radius: 1px !important;}\"][vc_column_inner width=\"1/2\"][ult_animation_block animation=\"fadeInLeftBig\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][ultimate_heading main_heading=\"Feed Additives\" heading_tag=\"h3\" main_heading_color=\"#079547\" sub_heading_color=\"#792c8a\" alignment=\"right\"]<strong>Premixes/ Specialty Feed Additives/ Dilution of Active Ingredients/ Concentrates</strong><strong>\r\n</strong>Pack sizes – 1,000 kg, 500 kg, 50 kg, 25 kg, 15 kg, 10 kg, 5 kg, 1kg[/ultimate_heading][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_single_image image=\"3129\" img_size=\"full\" css_animation=\"fadeInRightBig\"][/vc_column_inner][/vc_row_inner][vc_row_inner css=\".vc_custom_1692407949383{border-bottom-width: 1px !important;border-bottom-color: #079547 !important;border-bottom-style: solid !important;border-radius: 1px !important;}\"][vc_column_inner width=\"1/2\"][vc_single_image image=\"3162\" img_size=\"full\" css_animation=\"fadeInLeftBig\"][/vc_column_inner][vc_column_inner width=\"1/2\"][ult_animation_block animation=\"fadeInRightBig\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][ultimate_heading main_heading=\"Oral Supplements\" heading_tag=\"h3\" main_heading_color=\"#079547\" sub_heading_color=\"#792c8a\" alignment=\"left\"]<strong>Liquids</strong><strong>\r\n</strong>Pack sizes – 1,000 L, 250 L, 50 L, 25 L, 5 L, 1 L, 500 mL, 250 mL, 100 mL, 50 mL\r\n\r\n<strong>Water soluble powders</strong><strong>\r\n</strong>Pack sizes – 25 kg, 15 kg, 10 kg, 5 kg, 1kg[/ultimate_heading][/ult_animation_block][/vc_column_inner][/vc_row_inner][vc_row_inner css=\".vc_custom_1692407957943{border-bottom-width: 1px !important;border-bottom-color: #079547 !important;border-bottom-style: solid !important;border-radius: 1px !important;}\"][vc_column_inner width=\"1/2\"][ult_animation_block animation=\"fadeInLeftBig\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][ultimate_heading main_heading=\"Tablets\" heading_tag=\"h3\" main_heading_color=\"#079547\" sub_heading_color=\"#792c8a\" alignment=\"right\"]<strong>Supplementary tablets for pet care</strong>\r\nTablet sizes – 1 to 5 g\r\n\r\n<strong>Boluses</strong><strong>\r\n</strong>Tablet sizes – 5 to 25 g[/ultimate_heading][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_single_image image=\"3163\" img_size=\"full\" css_animation=\"fadeInRightBig\"][/vc_column_inner][/vc_row_inner][vc_row_inner css=\".vc_custom_1692407970279{border-bottom-width: 1px !important;border-bottom-color: #079547 !important;border-bottom-style: solid !important;border-radius: 1px !important;}\"][vc_column_inner width=\"1/2\"][vc_single_image image=\"3164\" img_size=\"full\" css_animation=\"fadeInLeftBig\"][/vc_column_inner][vc_column_inner width=\"1/2\"][ult_animation_block animation=\"fadeInRightBig\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][ultimate_heading main_heading=\"Veterinary Pharmaceuticals\" heading_tag=\"h3\" main_heading_color=\"#079547\" sub_heading_color=\"#792c8a\" alignment=\"left\"]<strong>Deworming Solutions/ Antibiotics/ Antimicrobials/ Wound care solutions</strong><strong>\r\n</strong>Form – Liquid, WSP[/ultimate_heading][/ult_animation_block][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row full_width=\"stretch_row_content\" css=\".vc_custom_1693451731079{padding-top: 50px !important;padding-bottom: 50px !important;}\"][vc_column][ultimate_heading main_heading=\"Our manufacturing facility is certified with FAMI-QS, WHO GMP &amp; ISO 9001:2015 International Quality standards.\" main_heading_color=\"#079547\" sub_heading_color=\"#792c8a\"]We select only the <strong><em>best</em></strong> and <strong><em>most reputed</em></strong> Raw Material &amp; Packing Material Suppliers for the production of our finished goods.[/ultimate_heading][vc_row_inner equal_height=\"yes\" content_placement=\"middle\"][vc_column_inner width=\"1/5\" offset=\"vc_hidden-lg vc_hidden-md\"][vc_single_image image=\"3062\" img_size=\"full\" alignment=\"center\"][/vc_column_inner][vc_column_inner width=\"1/5\" css=\".vc_custom_1691846530645{border-right-width: 1px !important;border-left-width: 1px !important;border-left-color: #000000 !important;border-left-style: solid !important;border-right-color: #000000 !important;border-right-style: solid !important;border-radius: 1px !important;}\" offset=\"vc_hidden-lg vc_hidden-md\"][vc_single_image image=\"3063\" img_size=\"full\" alignment=\"center\"][/vc_column_inner][vc_column_inner width=\"1/5\" offset=\"vc_hidden-lg vc_hidden-md\"][vc_single_image image=\"3064\" img_size=\"full\" alignment=\"center\"][/vc_column_inner][vc_column_inner width=\"1/5\" css=\".vc_custom_1691846545469{border-right-width: 1px !important;border-left-width: 1px !important;border-left-color: #000000 !important;border-left-style: solid !important;border-right-color: #000000 !important;border-right-style: solid !important;border-radius: 1px !important;}\" offset=\"vc_hidden-lg vc_hidden-md\"][vc_single_image image=\"3065\" img_size=\"full\" alignment=\"center\"][/vc_column_inner][vc_column_inner width=\"1/5\" offset=\"vc_hidden-lg vc_hidden-md\"][vc_single_image image=\"3066\" img_size=\"full\" alignment=\"center\"][/vc_column_inner][/vc_row_inner][vc_row_inner equal_height=\"yes\" content_placement=\"middle\"][vc_column_inner width=\"1/4\" css=\".vc_custom_1691846563021{border-right-width: 1px !important;border-right-color: #000000 !important;border-right-style: solid !important;border-radius: 1px !important;}\" offset=\"vc_hidden-lg vc_hidden-md\"][vc_single_image image=\"3067\" img_size=\"full\" alignment=\"center\"][/vc_column_inner][vc_column_inner width=\"1/4\" css=\".vc_custom_1691846569845{border-right-width: 1px !important;border-right-color: #000000 !important;border-right-style: solid !important;border-radius: 1px !important;}\" offset=\"vc_hidden-lg vc_hidden-md\"][vc_single_image image=\"3068\" img_size=\"full\" alignment=\"center\"][/vc_column_inner][vc_column_inner width=\"1/4\" css=\".vc_custom_1691846576949{border-right-width: 1px !important;border-right-color: #000000 !important;border-right-style: solid !important;border-radius: 1px !important;}\" offset=\"vc_hidden-lg vc_hidden-md\"][vc_single_image image=\"3069\" img_size=\"full\" alignment=\"center\"][/vc_column_inner][vc_column_inner width=\"1/4\" offset=\"vc_hidden-lg vc_hidden-md\"][vc_single_image image=\"3070\" img_size=\"full\" alignment=\"center\"][/vc_column_inner][/vc_row_inner][vc_row_inner disable_element=\"yes\"][vc_column_inner width=\"1/3\"][vc_single_image image=\"2981\" img_size=\"full\"][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_single_image image=\"2982\" img_size=\"full\"][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_single_image image=\"2983\" img_size=\"full\"][/vc_column_inner][/vc_row_inner][vc_row_inner disable_element=\"yes\"][vc_column_inner width=\"1/6\"][/vc_column_inner][vc_column_inner width=\"2/3\"][vc_single_image image=\"2984\" img_size=\"full\"][/vc_column_inner][vc_column_inner width=\"1/6\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row full_width=\"stretch_row_content_no_spaces\"][vc_column offset=\"vc_hidden-sm vc_hidden-xs\"][vc_single_image image=\"3120\" img_size=\"full\" alignment=\"center\"][/vc_column][/vc_row][vc_row css=\".vc_custom_1689578794814{padding-top: 50px !important;padding-bottom: 50px !important;}\"][vc_column][ultimate_heading main_heading=\"Supplier selection and procurement criteria\" main_heading_color=\"#079547\" sub_heading_color=\"#792c8a\" alignment=\"left\"][/ultimate_heading][vc_row_inner css=\".vc_custom_1689578812611{margin-top: 50px !important;}\"][vc_column_inner width=\"1/2\"][dt_vc_list dividers=\"false\"]\r\n<ul>\r\n 	<li>Check supplier’s quality certification to ensure raw material quality</li>\r\n 	<li>New vendor validation protocol - In case of a change in the supplier, obtain samples and validate in the lab</li>\r\n</ul>\r\n[/dt_vc_list][/vc_column_inner][vc_column_inner width=\"1/2\"][dt_vc_list dividers=\"false\"]\r\n<ul>\r\n 	<li>Income inspection carried out on every consignment (Tested for Chemical Assay &amp; Physical Properties)</li>\r\n 	<li>Quality department approval required to be used in the production</li>\r\n</ul>\r\n[/dt_vc_list][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row css=\".vc_custom_1689578794814{padding-top: 50px !important;padding-bottom: 50px !important;}\"][vc_column][ultimate_heading main_heading=\"Please contact us to start your Marketing Journey with a reliable manufacturing partnership with FARMCHEMIE\" heading_tag=\"h3\" main_heading_color=\"#079547\" sub_heading_color=\"#792c8a\" alignment=\"left\"][/ultimate_heading][/vc_column][/vc_row][vc_row full_width=\"stretch_row_content\" equal_height=\"yes\" content_placement=\"middle\"][vc_column width=\"1/2\" css=\".vc_custom_1693540291208{background-image: url(https://farmchemie.yasithawd.com/wp-content/uploads/2023/09/02International-Markets-Sri-Lankan-Market.png?id=3379) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\"][vc_empty_space height=\"400px\"][/vc_column][vc_column width=\"1/2\" css=\".vc_custom_1693540250450{background-color: #8d499b !important;}\"][ultimate_heading main_heading=\"Sri Lankan Markets\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\"]Email : <a href=\"mailto:sales.import@farmchemie.com\">sales.import@farmchemie.com</a>\r\nTel No : + 94 76 577 2975[/ultimate_heading][vc_btn title=\"Read More\" style=\"outline-custom\" outline_custom_color=\"#ffffff\" outline_custom_hover_background=\"#039447\" outline_custom_hover_text=\"#ffffff\" shape=\"round\" align=\"center\"][/vc_column][/vc_row][vc_row full_width=\"stretch_row_content\" equal_height=\"yes\" content_placement=\"middle\"][vc_column width=\"1/2\" css=\".vc_custom_1693540116474{background-color: #039447 !important;}\"][ultimate_heading main_heading=\"International Markets\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" margin_design_tab_text=\"\" el_class=\"whitetxt\"]Email : <a href=\"mailto:sales.export@farmchemie.com\">sales.export@farmchemie.com</a>\r\nTel No : + 94 76 577 2975[/ultimate_heading][vc_btn title=\"Read More\" style=\"outline-custom\" outline_custom_color=\"#ffffff\" outline_custom_hover_background=\"#8d499b\" outline_custom_hover_text=\"#ffffff\" shape=\"round\" align=\"center\"][/vc_column][vc_column width=\"1/2\" css=\".vc_custom_1693540312642{background-image: url(https://farmchemie.yasithawd.com/wp-content/uploads/2023/09/01International-Markets-Sri-Lankan-Market.png?id=3378) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\"][vc_empty_space height=\"400px\"][/vc_column][/vc_row]','Manufacturing','','inherit','closed','closed','','2964-revision-v1','','','2023-09-01 07:32:21','2023-09-01 07:32:21','',2964,'https://farmchemie.yasithawd.com/?p=3393',0,'revision','',0),(2741,1,'2023-05-11 05:28:58','2023-05-11 05:28:58','','OXITETRACICLINA-200-LA','','inherit','open','closed','','oxitetraciclina-200-la','','','2023-05-11 05:28:58','2023-05-11 05:28:58','',0,'https://farmchemie.yasithawd.com/wp-content/uploads/2023/05/OXITETRACICLINA-200-LA.png',0,'attachment','image/png',0),(3378,1,'2023-09-01 03:28:12','2023-09-01 03:28:12','','01International-Markets-&-Sri-Lankan-Market','','inherit','open','closed','','01international-markets-sri-lankan-market','','','2023-09-01 03:28:12','2023-09-01 03:28:12','',2964,'https://farmchemie.yasithawd.com/wp-content/uploads/2023/09/01International-Markets-Sri-Lankan-Market.png',0,'attachment','image/png',0),(2743,1,'2023-05-11 05:32:19','2023-05-11 05:32:19','','PANDEX','','inherit','open','closed','','pandex','','','2023-05-11 05:32:19','2023-05-11 05:32:19','',0,'https://farmchemie.yasithawd.com/wp-content/uploads/2023/05/PANDEX.png',0,'attachment','image/png',0),(2745,1,'2023-05-11 05:35:17','2023-05-11 05:35:17','','RELENOL','','inherit','open','closed','','relenol','','','2023-05-11 05:35:17','2023-05-11 05:35:17','',0,'https://farmchemie.yasithawd.com/wp-content/uploads/2023/05/RELENOL.png',0,'attachment','image/png',0),(3392,1,'2023-09-01 07:31:16','2023-09-01 07:31:16','[vc_row full_width=\"stretch_row\" css=\".vc_custom_1689577528817{padding-bottom: 50px !important;}\"][vc_column css=\".vc_custom_1689577454678{margin-bottom: 50px !important;}\"][vc_row_inner css=\".vc_custom_1692407941633{border-bottom-width: 1px !important;border-bottom-color: #079547 !important;border-bottom-style: solid !important;border-radius: 1px !important;}\"][vc_column_inner width=\"1/2\"][ult_animation_block animation=\"fadeInLeftBig\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][ultimate_heading main_heading=\"Feed Additives\" heading_tag=\"h3\" main_heading_color=\"#079547\" sub_heading_color=\"#792c8a\" alignment=\"right\"]<strong>Premixes/ Specialty Feed Additives/ Dilution of Active Ingredients/ Concentrates</strong><strong>\r\n</strong>Pack sizes – 1,000 kg, 500 kg, 50 kg, 25 kg, 15 kg, 10 kg, 5 kg, 1kg[/ultimate_heading][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_single_image image=\"3129\" img_size=\"full\" css_animation=\"fadeInRightBig\"][/vc_column_inner][/vc_row_inner][vc_row_inner css=\".vc_custom_1692407949383{border-bottom-width: 1px !important;border-bottom-color: #079547 !important;border-bottom-style: solid !important;border-radius: 1px !important;}\"][vc_column_inner width=\"1/2\"][vc_single_image image=\"3162\" img_size=\"full\" css_animation=\"fadeInLeftBig\"][/vc_column_inner][vc_column_inner width=\"1/2\"][ult_animation_block animation=\"fadeInRightBig\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][ultimate_heading main_heading=\"Oral Supplements\" heading_tag=\"h3\" main_heading_color=\"#079547\" sub_heading_color=\"#792c8a\" alignment=\"left\"]<strong>Liquids</strong><strong>\r\n</strong>Pack sizes – 1,000 L, 250 L, 50 L, 25 L, 5 L, 1 L, 500 mL, 250 mL, 100 mL, 50 mL\r\n\r\n<strong>Water soluble powders</strong><strong>\r\n</strong>Pack sizes – 25 kg, 15 kg, 10 kg, 5 kg, 1kg[/ultimate_heading][/ult_animation_block][/vc_column_inner][/vc_row_inner][vc_row_inner css=\".vc_custom_1692407957943{border-bottom-width: 1px !important;border-bottom-color: #079547 !important;border-bottom-style: solid !important;border-radius: 1px !important;}\"][vc_column_inner width=\"1/2\"][ult_animation_block animation=\"fadeInLeftBig\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][ultimate_heading main_heading=\"Tablets\" heading_tag=\"h3\" main_heading_color=\"#079547\" sub_heading_color=\"#792c8a\" alignment=\"right\"]<strong>Supplementary tablets for pet care</strong>\r\nTablet sizes – 1 to 5 g\r\n\r\n<strong>Boluses</strong><strong>\r\n</strong>Tablet sizes – 5 to 25 g[/ultimate_heading][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_single_image image=\"3163\" img_size=\"full\" css_animation=\"fadeInRightBig\"][/vc_column_inner][/vc_row_inner][vc_row_inner css=\".vc_custom_1692407970279{border-bottom-width: 1px !important;border-bottom-color: #079547 !important;border-bottom-style: solid !important;border-radius: 1px !important;}\"][vc_column_inner width=\"1/2\"][vc_single_image image=\"3164\" img_size=\"full\" css_animation=\"fadeInLeftBig\"][/vc_column_inner][vc_column_inner width=\"1/2\"][ult_animation_block animation=\"fadeInRightBig\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][ultimate_heading main_heading=\"Veterinary Pharmaceuticals\" heading_tag=\"h3\" main_heading_color=\"#079547\" sub_heading_color=\"#792c8a\" alignment=\"left\"]<strong>Deworming Solutions/ Antibiotics/ Antimicrobials/ Wound care solutions</strong><strong>\r\n</strong>Form – Liquid, WSP[/ultimate_heading][/ult_animation_block][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row full_width=\"stretch_row_content\" css=\".vc_custom_1693451731079{padding-top: 50px !important;padding-bottom: 50px !important;}\"][vc_column][ultimate_heading main_heading=\"Our manufacturing facility is certified with FAMI-QS, WHO GMP &amp; ISO 9001:2015 International Quality standards.\" main_heading_color=\"#079547\" sub_heading_color=\"#792c8a\"]We select only the <strong><em>best</em></strong> and <strong><em>most reputed</em></strong> Raw Material &amp; Packing Material Suppliers for the production of our finished goods.[/ultimate_heading][vc_row_inner equal_height=\"yes\" content_placement=\"middle\"][vc_column_inner width=\"1/5\" offset=\"vc_hidden-lg vc_hidden-md\"][vc_single_image image=\"3062\" img_size=\"full\" alignment=\"center\"][/vc_column_inner][vc_column_inner width=\"1/5\" css=\".vc_custom_1691846530645{border-right-width: 1px !important;border-left-width: 1px !important;border-left-color: #000000 !important;border-left-style: solid !important;border-right-color: #000000 !important;border-right-style: solid !important;border-radius: 1px !important;}\" offset=\"vc_hidden-lg vc_hidden-md\"][vc_single_image image=\"3063\" img_size=\"full\" alignment=\"center\"][/vc_column_inner][vc_column_inner width=\"1/5\" offset=\"vc_hidden-lg vc_hidden-md\"][vc_single_image image=\"3064\" img_size=\"full\" alignment=\"center\"][/vc_column_inner][vc_column_inner width=\"1/5\" css=\".vc_custom_1691846545469{border-right-width: 1px !important;border-left-width: 1px !important;border-left-color: #000000 !important;border-left-style: solid !important;border-right-color: #000000 !important;border-right-style: solid !important;border-radius: 1px !important;}\" offset=\"vc_hidden-lg vc_hidden-md\"][vc_single_image image=\"3065\" img_size=\"full\" alignment=\"center\"][/vc_column_inner][vc_column_inner width=\"1/5\" offset=\"vc_hidden-lg vc_hidden-md\"][vc_single_image image=\"3066\" img_size=\"full\" alignment=\"center\"][/vc_column_inner][/vc_row_inner][vc_row_inner equal_height=\"yes\" content_placement=\"middle\"][vc_column_inner width=\"1/4\" css=\".vc_custom_1691846563021{border-right-width: 1px !important;border-right-color: #000000 !important;border-right-style: solid !important;border-radius: 1px !important;}\" offset=\"vc_hidden-lg vc_hidden-md\"][vc_single_image image=\"3067\" img_size=\"full\" alignment=\"center\"][/vc_column_inner][vc_column_inner width=\"1/4\" css=\".vc_custom_1691846569845{border-right-width: 1px !important;border-right-color: #000000 !important;border-right-style: solid !important;border-radius: 1px !important;}\" offset=\"vc_hidden-lg vc_hidden-md\"][vc_single_image image=\"3068\" img_size=\"full\" alignment=\"center\"][/vc_column_inner][vc_column_inner width=\"1/4\" css=\".vc_custom_1691846576949{border-right-width: 1px !important;border-right-color: #000000 !important;border-right-style: solid !important;border-radius: 1px !important;}\" offset=\"vc_hidden-lg vc_hidden-md\"][vc_single_image image=\"3069\" img_size=\"full\" alignment=\"center\"][/vc_column_inner][vc_column_inner width=\"1/4\" offset=\"vc_hidden-lg vc_hidden-md\"][vc_single_image image=\"3070\" img_size=\"full\" alignment=\"center\"][/vc_column_inner][/vc_row_inner][vc_row_inner disable_element=\"yes\"][vc_column_inner width=\"1/3\"][vc_single_image image=\"2981\" img_size=\"full\"][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_single_image image=\"2982\" img_size=\"full\"][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_single_image image=\"2983\" img_size=\"full\"][/vc_column_inner][/vc_row_inner][vc_row_inner disable_element=\"yes\"][vc_column_inner width=\"1/6\"][/vc_column_inner][vc_column_inner width=\"2/3\"][vc_single_image image=\"2984\" img_size=\"full\"][/vc_column_inner][vc_column_inner width=\"1/6\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row full_width=\"stretch_row_content_no_spaces\"][vc_column offset=\"vc_hidden-sm vc_hidden-xs\"][vc_single_image image=\"3120\" img_size=\"full\" alignment=\"center\"][/vc_column][/vc_row][vc_row css=\".vc_custom_1689578794814{padding-top: 50px !important;padding-bottom: 50px !important;}\"][vc_column][ultimate_heading main_heading=\"Supplier selection and procurement criteria\" main_heading_color=\"#079547\" sub_heading_color=\"#792c8a\" alignment=\"left\"][/ultimate_heading][vc_row_inner css=\".vc_custom_1689578812611{margin-top: 50px !important;}\"][vc_column_inner width=\"1/2\"][dt_vc_list dividers=\"false\"]\r\n<ul>\r\n 	<li>Check supplier’s quality certification to ensure raw material quality</li>\r\n 	<li>New vendor validation protocol - In case of a change in the supplier, obtain samples and validate in the lab</li>\r\n</ul>\r\n[/dt_vc_list][/vc_column_inner][vc_column_inner width=\"1/2\"][dt_vc_list dividers=\"false\"]\r\n<ul>\r\n 	<li>Income inspection carried out on every consignment (Tested for Chemical Assay &amp; Physical Properties)</li>\r\n 	<li>Quality department approval required to be used in the production</li>\r\n</ul>\r\n[/dt_vc_list][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row css=\".vc_custom_1689578794814{padding-top: 50px !important;padding-bottom: 50px !important;}\"][vc_column][ultimate_heading main_heading=\"Please contact us to start your Marketing Journey with a reliable manufacturing partnership with FARMCHEMIE\" heading_tag=\"h3\" main_heading_color=\"#079547\" sub_heading_color=\"#792c8a\" alignment=\"left\"][/ultimate_heading][/vc_column][/vc_row][vc_row full_width=\"stretch_row_content\" equal_height=\"yes\" content_placement=\"middle\"][vc_column width=\"1/2\" css=\".vc_custom_1693540291208{background-image: url(https://farmchemie.yasithawd.com/wp-content/uploads/2023/09/02International-Markets-Sri-Lankan-Market.png?id=3379) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\"][vc_empty_space height=\"400px\"][/vc_column][vc_column width=\"1/2\" css=\".vc_custom_1693540250450{background-color: #8d499b !important;}\"][ultimate_heading main_heading=\"Sri Lankan Markets\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\"]Email : <a href=\"mailto:sales.import@farmchemie.com\">sales.import@farmchemie.com</a>\r\nTel No : + 94 76 577 2975[/ultimate_heading][vc_btn title=\"Read More\" style=\"outline-custom\" outline_custom_color=\"#ffffff\" outline_custom_hover_background=\"#039447\" outline_custom_hover_text=\"#ffffff\" shape=\"round\" align=\"center\"][/vc_column][/vc_row][vc_row full_width=\"stretch_row_content\" equal_height=\"yes\" content_placement=\"middle\"][vc_column width=\"1/2\" css=\".vc_custom_1693540116474{background-color: #039447 !important;}\"][ultimate_heading main_heading=\"International Markets\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\"]Email : <a href=\"mailto:sales.export@farmchemie.com\">sales.export@farmchemie.com</a>\r\nTel No : + 94 76 577 2975[/ultimate_heading][vc_btn title=\"Read More\" style=\"outline-custom\" outline_custom_color=\"#ffffff\" outline_custom_hover_background=\"#8d499b\" outline_custom_hover_text=\"#ffffff\" shape=\"round\" align=\"center\"][/vc_column][vc_column width=\"1/2\" css=\".vc_custom_1693540312642{background-image: url(https://farmchemie.yasithawd.com/wp-content/uploads/2023/09/01International-Markets-Sri-Lankan-Market.png?id=3378) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\"][vc_empty_space height=\"400px\"][/vc_column][/vc_row]','Manufacturing','','inherit','closed','closed','','2964-revision-v1','','','2023-09-01 07:31:16','2023-09-01 07:31:16','',2964,'https://farmchemie.yasithawd.com/?p=3392',0,'revision','',0),(3379,1,'2023-09-01 03:47:58','2023-09-01 03:47:58','','02International-Markets-&-Sri-Lankan-Market','','inherit','open','closed','','02international-markets-sri-lankan-market','','','2023-09-01 03:47:58','2023-09-01 03:47:58','',2964,'https://farmchemie.yasithawd.com/wp-content/uploads/2023/09/02International-Markets-Sri-Lankan-Market.png',0,'attachment','image/png',0),(3385,1,'2023-09-01 04:15:31','2023-09-01 04:15:31','[vc_row full_width=\"stretch_row\" css=\".vc_custom_1689577528817{padding-bottom: 50px !important;}\"][vc_column css=\".vc_custom_1689577454678{margin-bottom: 50px !important;}\"][vc_row_inner css=\".vc_custom_1692407941633{border-bottom-width: 1px !important;border-bottom-color: #079547 !important;border-bottom-style: solid !important;border-radius: 1px !important;}\"][vc_column_inner width=\"1/2\"][ult_animation_block animation=\"fadeInLeftBig\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][ultimate_heading main_heading=\"Feed Additives\" heading_tag=\"h3\" main_heading_color=\"#079547\" sub_heading_color=\"#792c8a\" alignment=\"left\"]<strong>Premixes/ Specialty Feed Additives/ Dilution of Active Ingredients/ Concentrates</strong><strong>\r\n</strong>Pack sizes – 1,000 kg, 500 kg, 50 kg, 25 kg, 15 kg, 10 kg, 5 kg, 1kg[/ultimate_heading][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_single_image image=\"3129\" img_size=\"full\" css_animation=\"fadeInRightBig\"][/vc_column_inner][/vc_row_inner][vc_row_inner css=\".vc_custom_1692407949383{border-bottom-width: 1px !important;border-bottom-color: #079547 !important;border-bottom-style: solid !important;border-radius: 1px !important;}\"][vc_column_inner width=\"1/2\"][vc_single_image image=\"3162\" img_size=\"full\" css_animation=\"fadeInLeftBig\"][/vc_column_inner][vc_column_inner width=\"1/2\"][ult_animation_block animation=\"fadeInRightBig\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][ultimate_heading main_heading=\"Oral Supplements\" heading_tag=\"h3\" main_heading_color=\"#079547\" sub_heading_color=\"#792c8a\" alignment=\"left\"]<strong>Liquids</strong><strong>\r\n</strong>Pack sizes – 1,000 L, 250 L, 50 L, 25 L, 5 L, 1 L, 500 mL, 250 mL, 100 mL, 50 mL\r\n\r\n<strong>Water soluble powders</strong><strong>\r\n</strong>Pack sizes – 25 kg, 15 kg, 10 kg, 5 kg, 1kg[/ultimate_heading][/ult_animation_block][/vc_column_inner][/vc_row_inner][vc_row_inner css=\".vc_custom_1692407957943{border-bottom-width: 1px !important;border-bottom-color: #079547 !important;border-bottom-style: solid !important;border-radius: 1px !important;}\"][vc_column_inner width=\"1/2\"][ult_animation_block animation=\"fadeInLeftBig\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][ultimate_heading main_heading=\"Tablets\" heading_tag=\"h3\" main_heading_color=\"#079547\" sub_heading_color=\"#792c8a\" alignment=\"left\"]<strong>Supplementary tablets for pet care</strong>\r\nTablet sizes – 1 to 5 g\r\n\r\n<strong>Boluses</strong><strong>\r\n</strong>Tablet sizes – 5 to 25 g[/ultimate_heading][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_single_image image=\"3163\" img_size=\"full\" css_animation=\"fadeInRightBig\"][/vc_column_inner][/vc_row_inner][vc_row_inner css=\".vc_custom_1692407970279{border-bottom-width: 1px !important;border-bottom-color: #079547 !important;border-bottom-style: solid !important;border-radius: 1px !important;}\"][vc_column_inner width=\"1/2\"][vc_single_image image=\"3164\" img_size=\"full\" css_animation=\"fadeInLeftBig\"][/vc_column_inner][vc_column_inner width=\"1/2\"][ult_animation_block animation=\"fadeInRightBig\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][ultimate_heading main_heading=\"Veterinary Pharmaceuticals\" heading_tag=\"h3\" main_heading_color=\"#079547\" sub_heading_color=\"#792c8a\" alignment=\"left\"]<strong>Deworming Solutions/ Antibiotics/ Antimicrobials/ Wound care solutions</strong><strong>\r\n</strong>Form – Liquid, WSP[/ultimate_heading][/ult_animation_block][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row full_width=\"stretch_row_content\" css=\".vc_custom_1693451731079{padding-top: 50px !important;padding-bottom: 50px !important;}\"][vc_column][ultimate_heading main_heading=\"Our manufacturing facility is certified with FAMI-QS, WHO GMP &amp; ISO 9001:2015 International Quality standards.\" main_heading_color=\"#079547\" sub_heading_color=\"#792c8a\"]We select only the <strong><em>best</em></strong> and <strong><em>most reputed</em></strong> Raw Material &amp; Packing Material Suppliers for the production of our finished goods.[/ultimate_heading][vc_row_inner equal_height=\"yes\" content_placement=\"middle\"][vc_column_inner width=\"1/5\" offset=\"vc_hidden-lg vc_hidden-md\"][vc_single_image image=\"3062\" img_size=\"full\" alignment=\"center\"][/vc_column_inner][vc_column_inner width=\"1/5\" css=\".vc_custom_1691846530645{border-right-width: 1px !important;border-left-width: 1px !important;border-left-color: #000000 !important;border-left-style: solid !important;border-right-color: #000000 !important;border-right-style: solid !important;border-radius: 1px !important;}\" offset=\"vc_hidden-lg vc_hidden-md\"][vc_single_image image=\"3063\" img_size=\"full\" alignment=\"center\"][/vc_column_inner][vc_column_inner width=\"1/5\" offset=\"vc_hidden-lg vc_hidden-md\"][vc_single_image image=\"3064\" img_size=\"full\" alignment=\"center\"][/vc_column_inner][vc_column_inner width=\"1/5\" css=\".vc_custom_1691846545469{border-right-width: 1px !important;border-left-width: 1px !important;border-left-color: #000000 !important;border-left-style: solid !important;border-right-color: #000000 !important;border-right-style: solid !important;border-radius: 1px !important;}\" offset=\"vc_hidden-lg vc_hidden-md\"][vc_single_image image=\"3065\" img_size=\"full\" alignment=\"center\"][/vc_column_inner][vc_column_inner width=\"1/5\" offset=\"vc_hidden-lg vc_hidden-md\"][vc_single_image image=\"3066\" img_size=\"full\" alignment=\"center\"][/vc_column_inner][/vc_row_inner][vc_row_inner equal_height=\"yes\" content_placement=\"middle\"][vc_column_inner width=\"1/4\" css=\".vc_custom_1691846563021{border-right-width: 1px !important;border-right-color: #000000 !important;border-right-style: solid !important;border-radius: 1px !important;}\" offset=\"vc_hidden-lg vc_hidden-md\"][vc_single_image image=\"3067\" img_size=\"full\" alignment=\"center\"][/vc_column_inner][vc_column_inner width=\"1/4\" css=\".vc_custom_1691846569845{border-right-width: 1px !important;border-right-color: #000000 !important;border-right-style: solid !important;border-radius: 1px !important;}\" offset=\"vc_hidden-lg vc_hidden-md\"][vc_single_image image=\"3068\" img_size=\"full\" alignment=\"center\"][/vc_column_inner][vc_column_inner width=\"1/4\" css=\".vc_custom_1691846576949{border-right-width: 1px !important;border-right-color: #000000 !important;border-right-style: solid !important;border-radius: 1px !important;}\" offset=\"vc_hidden-lg vc_hidden-md\"][vc_single_image image=\"3069\" img_size=\"full\" alignment=\"center\"][/vc_column_inner][vc_column_inner width=\"1/4\" offset=\"vc_hidden-lg vc_hidden-md\"][vc_single_image image=\"3070\" img_size=\"full\" alignment=\"center\"][/vc_column_inner][/vc_row_inner][vc_row_inner disable_element=\"yes\"][vc_column_inner width=\"1/3\"][vc_single_image image=\"2981\" img_size=\"full\"][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_single_image image=\"2982\" img_size=\"full\"][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_single_image image=\"2983\" img_size=\"full\"][/vc_column_inner][/vc_row_inner][vc_row_inner disable_element=\"yes\"][vc_column_inner width=\"1/6\"][/vc_column_inner][vc_column_inner width=\"2/3\"][vc_single_image image=\"2984\" img_size=\"full\"][/vc_column_inner][vc_column_inner width=\"1/6\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row full_width=\"stretch_row_content_no_spaces\"][vc_column offset=\"vc_hidden-sm vc_hidden-xs\"][vc_single_image image=\"3120\" img_size=\"full\" alignment=\"center\"][/vc_column][/vc_row][vc_row css=\".vc_custom_1689578794814{padding-top: 50px !important;padding-bottom: 50px !important;}\"][vc_column][ultimate_heading main_heading=\"Supplier selection and procurement criteria\" main_heading_color=\"#079547\" sub_heading_color=\"#792c8a\" alignment=\"left\"][/ultimate_heading][vc_row_inner css=\".vc_custom_1689578812611{margin-top: 50px !important;}\"][vc_column_inner width=\"1/2\"][dt_vc_list dividers=\"false\"]\r\n<ul>\r\n 	<li>Check supplier’s quality certification to ensure raw material quality</li>\r\n 	<li>New vendor validation protocol - In case of a change in the supplier, obtain samples and validate in the lab</li>\r\n</ul>\r\n[/dt_vc_list][/vc_column_inner][vc_column_inner width=\"1/2\"][dt_vc_list dividers=\"false\"]\r\n<ul>\r\n 	<li>Income inspection carried out on every consignment (Tested for Chemical Assay &amp; Physical Properties)</li>\r\n 	<li>Quality department approval required to be used in the production</li>\r\n</ul>\r\n[/dt_vc_list][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row css=\".vc_custom_1689578794814{padding-top: 50px !important;padding-bottom: 50px !important;}\"][vc_column][ultimate_heading main_heading=\"Please contact us to start your Marketing Journey with a reliable manufacturing partnership with FARMCHEMIE\" heading_tag=\"h3\" main_heading_color=\"#079547\" sub_heading_color=\"#792c8a\" alignment=\"left\"][/ultimate_heading][vc_row_inner css=\".vc_custom_1689578812611{margin-top: 50px !important;}\"][vc_column_inner width=\"1/2\"][bsf-info-box icon_size=\"32\" title=\"International Markets\" read_more=\"more\" read_text=\"Learn More\" pos=\"square_box\" box_border_width=\"1\" title_font_color=\"#ffffff\" desc_font_color=\"#ffffff\" title_font_size=\"desktop:25px;\"]<strong>Email :</strong> <a href=\"mailto:sales.export@farmchemie.com\"><u>sales.export@farmchemie.com</u></a>\r\n<strong>Tel No :</strong> + 94 76 577 2975[/bsf-info-box][/vc_column_inner][vc_column_inner width=\"1/2\"][bsf-info-box icon_size=\"32\" title=\"Sri Lankan Market\" pos=\"square_box\" box_border_style=\"solid\" box_border_width=\"1\" box_border_color=\"#079547\" title_font_color=\"#079547\" desc_font_color=\"#792c8a\" title_font_size=\"desktop:25px;\"]Email : <a href=\"mailto:sales.local@farmchemie.com\"><u>sales.local@farmchemie.com</u></a>\r\nTel No : +94 74 224 6947[/bsf-info-box][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row full_width=\"stretch_row_content\" equal_height=\"yes\" content_placement=\"middle\" css=\".vc_custom_1693540932074{margin-top: 10px !important;margin-bottom: 10px !important;}\"][vc_column width=\"1/2\" css=\".vc_custom_1693540291208{background-image: url(https://farmchemie.yasithawd.com/wp-content/uploads/2023/09/02International-Markets-Sri-Lankan-Market.png?id=3379) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\"][vc_empty_space height=\"600px\"][/vc_column][vc_column width=\"1/2\" css=\".vc_custom_1693540250450{background-color: #8d499b !important;}\"][ultimate_heading main_heading=\"Sri Lankan Markets\" heading_tag=\"h3\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\"]Email : <a href=\"mailto:sales.import@farmchemie.com\">sales.import@farmchemie.com</a>\r\nTel No : + 94 76 577 2975[/ultimate_heading][/vc_column][/vc_row][vc_row full_width=\"stretch_row_content\" equal_height=\"yes\" content_placement=\"middle\"][vc_column width=\"1/2\" css=\".vc_custom_1693540116474{background-color: #039447 !important;}\"][ultimate_heading main_heading=\"International Markets\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" margin_design_tab_text=\"\"]Email : <a href=\"mailto:sales.export@farmchemie.com\">sales.export@farmchemie.com</a>\r\nTel No : + 94 76 577 2975[/ultimate_heading][dt_default_button size=\"big\" button_alignment=\"btn_center\"]Read More[/dt_default_button][/vc_column][vc_column width=\"1/2\" css=\".vc_custom_1693540312642{background-image: url(https://farmchemie.yasithawd.com/wp-content/uploads/2023/09/01International-Markets-Sri-Lankan-Market.png?id=3378) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\"][vc_empty_space height=\"600px\"][/vc_column][/vc_row]','Manufacturing','','inherit','closed','closed','','2964-revision-v1','','','2023-09-01 04:15:31','2023-09-01 04:15:31','',2964,'https://farmchemie.yasithawd.com/?p=3385',0,'revision','',0),(3380,1,'2023-09-01 03:54:17','2023-09-01 03:54:17','[vc_row full_width=\"stretch_row\" css=\".vc_custom_1689577528817{padding-bottom: 50px !important;}\"][vc_column css=\".vc_custom_1689577454678{margin-bottom: 50px !important;}\"][vc_row_inner css=\".vc_custom_1692407941633{border-bottom-width: 1px !important;border-bottom-color: #079547 !important;border-bottom-style: solid !important;border-radius: 1px !important;}\"][vc_column_inner width=\"1/2\"][ult_animation_block animation=\"fadeInLeftBig\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][ultimate_heading main_heading=\"Feed Additives\" heading_tag=\"h3\" main_heading_color=\"#079547\" sub_heading_color=\"#792c8a\" alignment=\"left\"]<strong>Premixes/ Specialty Feed Additives/ Dilution of Active Ingredients/ Concentrates</strong><strong>\r\n</strong>Pack sizes – 1,000 kg, 500 kg, 50 kg, 25 kg, 15 kg, 10 kg, 5 kg, 1kg[/ultimate_heading][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_single_image image=\"3129\" img_size=\"full\" css_animation=\"fadeInRightBig\"][/vc_column_inner][/vc_row_inner][vc_row_inner css=\".vc_custom_1692407949383{border-bottom-width: 1px !important;border-bottom-color: #079547 !important;border-bottom-style: solid !important;border-radius: 1px !important;}\"][vc_column_inner width=\"1/2\"][vc_single_image image=\"3162\" img_size=\"full\" css_animation=\"fadeInLeftBig\"][/vc_column_inner][vc_column_inner width=\"1/2\"][ult_animation_block animation=\"fadeInRightBig\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][ultimate_heading main_heading=\"Oral Supplements\" heading_tag=\"h3\" main_heading_color=\"#079547\" sub_heading_color=\"#792c8a\" alignment=\"left\"]<strong>Liquids</strong><strong>\r\n</strong>Pack sizes – 1,000 L, 250 L, 50 L, 25 L, 5 L, 1 L, 500 mL, 250 mL, 100 mL, 50 mL\r\n\r\n<strong>Water soluble powders</strong><strong>\r\n</strong>Pack sizes – 25 kg, 15 kg, 10 kg, 5 kg, 1kg[/ultimate_heading][/ult_animation_block][/vc_column_inner][/vc_row_inner][vc_row_inner css=\".vc_custom_1692407957943{border-bottom-width: 1px !important;border-bottom-color: #079547 !important;border-bottom-style: solid !important;border-radius: 1px !important;}\"][vc_column_inner width=\"1/2\"][ult_animation_block animation=\"fadeInLeftBig\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][ultimate_heading main_heading=\"Tablets\" heading_tag=\"h3\" main_heading_color=\"#079547\" sub_heading_color=\"#792c8a\" alignment=\"left\"]<strong>Supplementary tablets for pet care</strong>\r\nTablet sizes – 1 to 5 g\r\n\r\n<strong>Boluses</strong><strong>\r\n</strong>Tablet sizes – 5 to 25 g[/ultimate_heading][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_single_image image=\"3163\" img_size=\"full\" css_animation=\"fadeInRightBig\"][/vc_column_inner][/vc_row_inner][vc_row_inner css=\".vc_custom_1692407970279{border-bottom-width: 1px !important;border-bottom-color: #079547 !important;border-bottom-style: solid !important;border-radius: 1px !important;}\"][vc_column_inner width=\"1/2\"][vc_single_image image=\"3164\" img_size=\"full\" css_animation=\"fadeInLeftBig\"][/vc_column_inner][vc_column_inner width=\"1/2\"][ult_animation_block animation=\"fadeInRightBig\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][ultimate_heading main_heading=\"Veterinary Pharmaceuticals\" heading_tag=\"h3\" main_heading_color=\"#079547\" sub_heading_color=\"#792c8a\" alignment=\"left\"]<strong>Deworming Solutions/ Antibiotics/ Antimicrobials/ Wound care solutions</strong><strong>\r\n</strong>Form – Liquid, WSP[/ultimate_heading][/ult_animation_block][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row full_width=\"stretch_row_content\" css=\".vc_custom_1693451731079{padding-top: 50px !important;padding-bottom: 50px !important;}\"][vc_column][ultimate_heading main_heading=\"Our manufacturing facility is certified with FAMI-QS, WHO GMP &amp; ISO 9001:2015 International Quality standards.\" main_heading_color=\"#079547\" sub_heading_color=\"#792c8a\"]We select only the <strong><em>best</em></strong> and <strong><em>most reputed</em></strong> Raw Material &amp; Packing Material Suppliers for the production of our finished goods.[/ultimate_heading][vc_row_inner equal_height=\"yes\" content_placement=\"middle\"][vc_column_inner width=\"1/5\" offset=\"vc_hidden-lg vc_hidden-md\"][vc_single_image image=\"3062\" img_size=\"full\" alignment=\"center\"][/vc_column_inner][vc_column_inner width=\"1/5\" css=\".vc_custom_1691846530645{border-right-width: 1px !important;border-left-width: 1px !important;border-left-color: #000000 !important;border-left-style: solid !important;border-right-color: #000000 !important;border-right-style: solid !important;border-radius: 1px !important;}\" offset=\"vc_hidden-lg vc_hidden-md\"][vc_single_image image=\"3063\" img_size=\"full\" alignment=\"center\"][/vc_column_inner][vc_column_inner width=\"1/5\" offset=\"vc_hidden-lg vc_hidden-md\"][vc_single_image image=\"3064\" img_size=\"full\" alignment=\"center\"][/vc_column_inner][vc_column_inner width=\"1/5\" css=\".vc_custom_1691846545469{border-right-width: 1px !important;border-left-width: 1px !important;border-left-color: #000000 !important;border-left-style: solid !important;border-right-color: #000000 !important;border-right-style: solid !important;border-radius: 1px !important;}\" offset=\"vc_hidden-lg vc_hidden-md\"][vc_single_image image=\"3065\" img_size=\"full\" alignment=\"center\"][/vc_column_inner][vc_column_inner width=\"1/5\" offset=\"vc_hidden-lg vc_hidden-md\"][vc_single_image image=\"3066\" img_size=\"full\" alignment=\"center\"][/vc_column_inner][/vc_row_inner][vc_row_inner equal_height=\"yes\" content_placement=\"middle\"][vc_column_inner width=\"1/4\" css=\".vc_custom_1691846563021{border-right-width: 1px !important;border-right-color: #000000 !important;border-right-style: solid !important;border-radius: 1px !important;}\" offset=\"vc_hidden-lg vc_hidden-md\"][vc_single_image image=\"3067\" img_size=\"full\" alignment=\"center\"][/vc_column_inner][vc_column_inner width=\"1/4\" css=\".vc_custom_1691846569845{border-right-width: 1px !important;border-right-color: #000000 !important;border-right-style: solid !important;border-radius: 1px !important;}\" offset=\"vc_hidden-lg vc_hidden-md\"][vc_single_image image=\"3068\" img_size=\"full\" alignment=\"center\"][/vc_column_inner][vc_column_inner width=\"1/4\" css=\".vc_custom_1691846576949{border-right-width: 1px !important;border-right-color: #000000 !important;border-right-style: solid !important;border-radius: 1px !important;}\" offset=\"vc_hidden-lg vc_hidden-md\"][vc_single_image image=\"3069\" img_size=\"full\" alignment=\"center\"][/vc_column_inner][vc_column_inner width=\"1/4\" offset=\"vc_hidden-lg vc_hidden-md\"][vc_single_image image=\"3070\" img_size=\"full\" alignment=\"center\"][/vc_column_inner][/vc_row_inner][vc_row_inner disable_element=\"yes\"][vc_column_inner width=\"1/3\"][vc_single_image image=\"2981\" img_size=\"full\"][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_single_image image=\"2982\" img_size=\"full\"][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_single_image image=\"2983\" img_size=\"full\"][/vc_column_inner][/vc_row_inner][vc_row_inner disable_element=\"yes\"][vc_column_inner width=\"1/6\"][/vc_column_inner][vc_column_inner width=\"2/3\"][vc_single_image image=\"2984\" img_size=\"full\"][/vc_column_inner][vc_column_inner width=\"1/6\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row full_width=\"stretch_row_content_no_spaces\"][vc_column offset=\"vc_hidden-sm vc_hidden-xs\"][vc_single_image image=\"3120\" img_size=\"full\" alignment=\"center\"][/vc_column][/vc_row][vc_row css=\".vc_custom_1689578794814{padding-top: 50px !important;padding-bottom: 50px !important;}\"][vc_column][ultimate_heading main_heading=\"Supplier selection and procurement criteria\" main_heading_color=\"#079547\" sub_heading_color=\"#792c8a\" alignment=\"left\"][/ultimate_heading][vc_row_inner css=\".vc_custom_1689578812611{margin-top: 50px !important;}\"][vc_column_inner width=\"1/2\"][dt_vc_list dividers=\"false\"]\r\n<ul>\r\n 	<li>Check supplier’s quality certification to ensure raw material quality</li>\r\n 	<li>New vendor validation protocol - In case of a change in the supplier, obtain samples and validate in the lab</li>\r\n</ul>\r\n[/dt_vc_list][/vc_column_inner][vc_column_inner width=\"1/2\"][dt_vc_list dividers=\"false\"]\r\n<ul>\r\n 	<li>Income inspection carried out on every consignment (Tested for Chemical Assay &amp; Physical Properties)</li>\r\n 	<li>Quality department approval required to be used in the production</li>\r\n</ul>\r\n[/dt_vc_list][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row css=\".vc_custom_1689578794814{padding-top: 50px !important;padding-bottom: 50px !important;}\"][vc_column][ultimate_heading main_heading=\"Please contact us to start your Marketing Journey with a reliable manufacturing partnership with FARMCHEMIE\" heading_tag=\"h3\" main_heading_color=\"#079547\" sub_heading_color=\"#792c8a\" alignment=\"left\"][/ultimate_heading][vc_row_inner css=\".vc_custom_1689578812611{margin-top: 50px !important;}\"][vc_column_inner width=\"1/2\"][bsf-info-box icon_size=\"32\" title=\"International Markets\" read_more=\"more\" read_text=\"Learn More\" pos=\"square_box\" box_border_width=\"1\" title_font_color=\"#ffffff\" desc_font_color=\"#ffffff\" title_font_size=\"desktop:25px;\"]<strong>Email :</strong> <a href=\"mailto:sales.export@farmchemie.com\"><u>sales.export@farmchemie.com</u></a>\r\n<strong>Tel No :</strong> + 94 76 577 2975[/bsf-info-box][/vc_column_inner][vc_column_inner width=\"1/2\"][bsf-info-box icon_size=\"32\" title=\"Sri Lankan Market\" pos=\"square_box\" box_border_style=\"solid\" box_border_width=\"1\" box_border_color=\"#079547\" title_font_color=\"#079547\" desc_font_color=\"#792c8a\" title_font_size=\"desktop:25px;\"]Email : <a href=\"mailto:sales.local@farmchemie.com\"><u>sales.local@farmchemie.com</u></a>\r\nTel No : +94 74 224 6947[/bsf-info-box][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row full_width=\"stretch_row_content\"][vc_column width=\"1/2\" css=\".vc_custom_1693540291208{background-image: url(https://farmchemie.yasithawd.com/wp-content/uploads/2023/09/02International-Markets-Sri-Lankan-Market.png?id=3379) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\"][/vc_column][vc_column width=\"1/2\" css=\".vc_custom_1693540250450{background-color: #8d499b !important;}\"][vc_cta h2=\"Sri Lankan Markets\" h2_font_container=\"tag:h2|text_align:center|color:%23ffffff\" h2_use_theme_fonts=\"yes\" txt_align=\"center\" shape=\"square\" style=\"custom\" add_button=\"bottom\" btn_title=\"Learn More\" btn_style=\"custom\" btn_custom_background=\"#ffffff\" btn_custom_text=\"#8d499b\" btn_size=\"lg\" btn_align=\"center\" use_custom_fonts_h2=\"true\" custom_background=\"rgba(0,0,0,0.01)\" custom_text=\"#ffffff\" btn_link=\"url:%23\"]Email : <a href=\"mailto:sales.export@farmchemie.com\">sales.export@farmchemie.com</a>\r\nTel No : + 94 76 577 2975[/vc_cta][/vc_column][/vc_row][vc_row full_width=\"stretch_row_content\" equal_height=\"yes\"][vc_column width=\"1/2\" css=\".vc_custom_1693540116474{background-color: #039447 !important;}\"][vc_cta h2=\"International Markets\" h2_font_container=\"tag:h2|text_align:center|color:%23ffffff\" h2_use_theme_fonts=\"yes\" txt_align=\"center\" shape=\"square\" style=\"custom\" add_button=\"bottom\" btn_title=\"Learn More\" btn_style=\"custom\" btn_custom_background=\"#ffffff\" btn_custom_text=\"#039447\" btn_shape=\"round\" btn_size=\"lg\" btn_align=\"center\" use_custom_fonts_h2=\"true\" custom_background=\"rgba(0,0,0,0.01)\" custom_text=\"#ffffff\" btn_link=\"url:%23\"]Email : <a href=\"mailto:sales.export@farmchemie.com\">sales.export@farmchemie.com</a>\r\nTel No : + 94 76 577 2975[/vc_cta][/vc_column][vc_column width=\"1/2\" css=\".vc_custom_1693540312642{background-image: url(https://farmchemie.yasithawd.com/wp-content/uploads/2023/09/01International-Markets-Sri-Lankan-Market.png?id=3378) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\"][/vc_column][/vc_row]','Manufacturing','','inherit','closed','closed','','2964-revision-v1','','','2023-09-01 03:54:17','2023-09-01 03:54:17','',2964,'https://farmchemie.yasithawd.com/?p=3380',0,'revision','',0),(3381,1,'2023-09-01 03:56:06','2023-09-01 03:56:06','[vc_row full_width=\"stretch_row\" css=\".vc_custom_1689577528817{padding-bottom: 50px !important;}\"][vc_column css=\".vc_custom_1689577454678{margin-bottom: 50px !important;}\"][vc_row_inner css=\".vc_custom_1692407941633{border-bottom-width: 1px !important;border-bottom-color: #079547 !important;border-bottom-style: solid !important;border-radius: 1px !important;}\"][vc_column_inner width=\"1/2\"][ult_animation_block animation=\"fadeInLeftBig\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][ultimate_heading main_heading=\"Feed Additives\" heading_tag=\"h3\" main_heading_color=\"#079547\" sub_heading_color=\"#792c8a\" alignment=\"left\"]<strong>Premixes/ Specialty Feed Additives/ Dilution of Active Ingredients/ Concentrates</strong><strong>\r\n</strong>Pack sizes – 1,000 kg, 500 kg, 50 kg, 25 kg, 15 kg, 10 kg, 5 kg, 1kg[/ultimate_heading][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_single_image image=\"3129\" img_size=\"full\" css_animation=\"fadeInRightBig\"][/vc_column_inner][/vc_row_inner][vc_row_inner css=\".vc_custom_1692407949383{border-bottom-width: 1px !important;border-bottom-color: #079547 !important;border-bottom-style: solid !important;border-radius: 1px !important;}\"][vc_column_inner width=\"1/2\"][vc_single_image image=\"3162\" img_size=\"full\" css_animation=\"fadeInLeftBig\"][/vc_column_inner][vc_column_inner width=\"1/2\"][ult_animation_block animation=\"fadeInRightBig\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][ultimate_heading main_heading=\"Oral Supplements\" heading_tag=\"h3\" main_heading_color=\"#079547\" sub_heading_color=\"#792c8a\" alignment=\"left\"]<strong>Liquids</strong><strong>\r\n</strong>Pack sizes – 1,000 L, 250 L, 50 L, 25 L, 5 L, 1 L, 500 mL, 250 mL, 100 mL, 50 mL\r\n\r\n<strong>Water soluble powders</strong><strong>\r\n</strong>Pack sizes – 25 kg, 15 kg, 10 kg, 5 kg, 1kg[/ultimate_heading][/ult_animation_block][/vc_column_inner][/vc_row_inner][vc_row_inner css=\".vc_custom_1692407957943{border-bottom-width: 1px !important;border-bottom-color: #079547 !important;border-bottom-style: solid !important;border-radius: 1px !important;}\"][vc_column_inner width=\"1/2\"][ult_animation_block animation=\"fadeInLeftBig\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][ultimate_heading main_heading=\"Tablets\" heading_tag=\"h3\" main_heading_color=\"#079547\" sub_heading_color=\"#792c8a\" alignment=\"left\"]<strong>Supplementary tablets for pet care</strong>\r\nTablet sizes – 1 to 5 g\r\n\r\n<strong>Boluses</strong><strong>\r\n</strong>Tablet sizes – 5 to 25 g[/ultimate_heading][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_single_image image=\"3163\" img_size=\"full\" css_animation=\"fadeInRightBig\"][/vc_column_inner][/vc_row_inner][vc_row_inner css=\".vc_custom_1692407970279{border-bottom-width: 1px !important;border-bottom-color: #079547 !important;border-bottom-style: solid !important;border-radius: 1px !important;}\"][vc_column_inner width=\"1/2\"][vc_single_image image=\"3164\" img_size=\"full\" css_animation=\"fadeInLeftBig\"][/vc_column_inner][vc_column_inner width=\"1/2\"][ult_animation_block animation=\"fadeInRightBig\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][ultimate_heading main_heading=\"Veterinary Pharmaceuticals\" heading_tag=\"h3\" main_heading_color=\"#079547\" sub_heading_color=\"#792c8a\" alignment=\"left\"]<strong>Deworming Solutions/ Antibiotics/ Antimicrobials/ Wound care solutions</strong><strong>\r\n</strong>Form – Liquid, WSP[/ultimate_heading][/ult_animation_block][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row full_width=\"stretch_row_content\" css=\".vc_custom_1693451731079{padding-top: 50px !important;padding-bottom: 50px !important;}\"][vc_column][ultimate_heading main_heading=\"Our manufacturing facility is certified with FAMI-QS, WHO GMP &amp; ISO 9001:2015 International Quality standards.\" main_heading_color=\"#079547\" sub_heading_color=\"#792c8a\"]We select only the <strong><em>best</em></strong> and <strong><em>most reputed</em></strong> Raw Material &amp; Packing Material Suppliers for the production of our finished goods.[/ultimate_heading][vc_row_inner equal_height=\"yes\" content_placement=\"middle\"][vc_column_inner width=\"1/5\" offset=\"vc_hidden-lg vc_hidden-md\"][vc_single_image image=\"3062\" img_size=\"full\" alignment=\"center\"][/vc_column_inner][vc_column_inner width=\"1/5\" css=\".vc_custom_1691846530645{border-right-width: 1px !important;border-left-width: 1px !important;border-left-color: #000000 !important;border-left-style: solid !important;border-right-color: #000000 !important;border-right-style: solid !important;border-radius: 1px !important;}\" offset=\"vc_hidden-lg vc_hidden-md\"][vc_single_image image=\"3063\" img_size=\"full\" alignment=\"center\"][/vc_column_inner][vc_column_inner width=\"1/5\" offset=\"vc_hidden-lg vc_hidden-md\"][vc_single_image image=\"3064\" img_size=\"full\" alignment=\"center\"][/vc_column_inner][vc_column_inner width=\"1/5\" css=\".vc_custom_1691846545469{border-right-width: 1px !important;border-left-width: 1px !important;border-left-color: #000000 !important;border-left-style: solid !important;border-right-color: #000000 !important;border-right-style: solid !important;border-radius: 1px !important;}\" offset=\"vc_hidden-lg vc_hidden-md\"][vc_single_image image=\"3065\" img_size=\"full\" alignment=\"center\"][/vc_column_inner][vc_column_inner width=\"1/5\" offset=\"vc_hidden-lg vc_hidden-md\"][vc_single_image image=\"3066\" img_size=\"full\" alignment=\"center\"][/vc_column_inner][/vc_row_inner][vc_row_inner equal_height=\"yes\" content_placement=\"middle\"][vc_column_inner width=\"1/4\" css=\".vc_custom_1691846563021{border-right-width: 1px !important;border-right-color: #000000 !important;border-right-style: solid !important;border-radius: 1px !important;}\" offset=\"vc_hidden-lg vc_hidden-md\"][vc_single_image image=\"3067\" img_size=\"full\" alignment=\"center\"][/vc_column_inner][vc_column_inner width=\"1/4\" css=\".vc_custom_1691846569845{border-right-width: 1px !important;border-right-color: #000000 !important;border-right-style: solid !important;border-radius: 1px !important;}\" offset=\"vc_hidden-lg vc_hidden-md\"][vc_single_image image=\"3068\" img_size=\"full\" alignment=\"center\"][/vc_column_inner][vc_column_inner width=\"1/4\" css=\".vc_custom_1691846576949{border-right-width: 1px !important;border-right-color: #000000 !important;border-right-style: solid !important;border-radius: 1px !important;}\" offset=\"vc_hidden-lg vc_hidden-md\"][vc_single_image image=\"3069\" img_size=\"full\" alignment=\"center\"][/vc_column_inner][vc_column_inner width=\"1/4\" offset=\"vc_hidden-lg vc_hidden-md\"][vc_single_image image=\"3070\" img_size=\"full\" alignment=\"center\"][/vc_column_inner][/vc_row_inner][vc_row_inner disable_element=\"yes\"][vc_column_inner width=\"1/3\"][vc_single_image image=\"2981\" img_size=\"full\"][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_single_image image=\"2982\" img_size=\"full\"][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_single_image image=\"2983\" img_size=\"full\"][/vc_column_inner][/vc_row_inner][vc_row_inner disable_element=\"yes\"][vc_column_inner width=\"1/6\"][/vc_column_inner][vc_column_inner width=\"2/3\"][vc_single_image image=\"2984\" img_size=\"full\"][/vc_column_inner][vc_column_inner width=\"1/6\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row full_width=\"stretch_row_content_no_spaces\"][vc_column offset=\"vc_hidden-sm vc_hidden-xs\"][vc_single_image image=\"3120\" img_size=\"full\" alignment=\"center\"][/vc_column][/vc_row][vc_row css=\".vc_custom_1689578794814{padding-top: 50px !important;padding-bottom: 50px !important;}\"][vc_column][ultimate_heading main_heading=\"Supplier selection and procurement criteria\" main_heading_color=\"#079547\" sub_heading_color=\"#792c8a\" alignment=\"left\"][/ultimate_heading][vc_row_inner css=\".vc_custom_1689578812611{margin-top: 50px !important;}\"][vc_column_inner width=\"1/2\"][dt_vc_list dividers=\"false\"]\r\n<ul>\r\n 	<li>Check supplier’s quality certification to ensure raw material quality</li>\r\n 	<li>New vendor validation protocol - In case of a change in the supplier, obtain samples and validate in the lab</li>\r\n</ul>\r\n[/dt_vc_list][/vc_column_inner][vc_column_inner width=\"1/2\"][dt_vc_list dividers=\"false\"]\r\n<ul>\r\n 	<li>Income inspection carried out on every consignment (Tested for Chemical Assay &amp; Physical Properties)</li>\r\n 	<li>Quality department approval required to be used in the production</li>\r\n</ul>\r\n[/dt_vc_list][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row css=\".vc_custom_1689578794814{padding-top: 50px !important;padding-bottom: 50px !important;}\"][vc_column][ultimate_heading main_heading=\"Please contact us to start your Marketing Journey with a reliable manufacturing partnership with FARMCHEMIE\" heading_tag=\"h3\" main_heading_color=\"#079547\" sub_heading_color=\"#792c8a\" alignment=\"left\"][/ultimate_heading][vc_row_inner css=\".vc_custom_1689578812611{margin-top: 50px !important;}\"][vc_column_inner width=\"1/2\"][bsf-info-box icon_size=\"32\" title=\"International Markets\" read_more=\"more\" read_text=\"Learn More\" pos=\"square_box\" box_border_width=\"1\" title_font_color=\"#ffffff\" desc_font_color=\"#ffffff\" title_font_size=\"desktop:25px;\"]<strong>Email :</strong> <a href=\"mailto:sales.export@farmchemie.com\"><u>sales.export@farmchemie.com</u></a>\r\n<strong>Tel No :</strong> + 94 76 577 2975[/bsf-info-box][/vc_column_inner][vc_column_inner width=\"1/2\"][bsf-info-box icon_size=\"32\" title=\"Sri Lankan Market\" pos=\"square_box\" box_border_style=\"solid\" box_border_width=\"1\" box_border_color=\"#079547\" title_font_color=\"#079547\" desc_font_color=\"#792c8a\" title_font_size=\"desktop:25px;\"]Email : <a href=\"mailto:sales.local@farmchemie.com\"><u>sales.local@farmchemie.com</u></a>\r\nTel No : +94 74 224 6947[/bsf-info-box][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row full_width=\"stretch_row_content\" equal_height=\"yes\"][vc_column width=\"1/2\" css=\".vc_custom_1693540291208{background-image: url(https://farmchemie.yasithawd.com/wp-content/uploads/2023/09/02International-Markets-Sri-Lankan-Market.png?id=3379) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\"][/vc_column][vc_column width=\"1/2\" css=\".vc_custom_1693540250450{background-color: #8d499b !important;}\"][vc_cta h2=\"Sri Lankan Markets\" h2_font_container=\"tag:h2|text_align:center|color:%23ffffff\" h2_use_theme_fonts=\"yes\" txt_align=\"center\" shape=\"square\" style=\"custom\" add_button=\"bottom\" btn_title=\"Learn More\" btn_style=\"custom\" btn_custom_background=\"#ffffff\" btn_custom_text=\"#8d499b\" btn_shape=\"round\" btn_size=\"lg\" btn_align=\"center\" use_custom_fonts_h2=\"true\" custom_background=\"rgba(0,0,0,0.01)\" custom_text=\"#ffffff\" btn_link=\"url:%23\"]Email : <a href=\"mailto:sales.export@farmchemie.com\">sales.export@farmchemie.com</a>\r\nTel No : + 94 76 577 2975[/vc_cta][/vc_column][/vc_row][vc_row full_width=\"stretch_row_content\" equal_height=\"yes\"][vc_column width=\"1/2\" css=\".vc_custom_1693540116474{background-color: #039447 !important;}\"][vc_cta h2=\"International Markets\" h2_font_container=\"tag:h2|text_align:center|color:%23ffffff\" h2_use_theme_fonts=\"yes\" txt_align=\"center\" shape=\"square\" style=\"custom\" add_button=\"bottom\" btn_title=\"Learn More\" btn_style=\"custom\" btn_custom_background=\"#ffffff\" btn_custom_text=\"#039447\" btn_shape=\"round\" btn_size=\"lg\" btn_align=\"center\" use_custom_fonts_h2=\"true\" custom_background=\"rgba(0,0,0,0.01)\" custom_text=\"#ffffff\" btn_link=\"url:%23\"]Email : <a href=\"mailto:sales.export@farmchemie.com\">sales.export@farmchemie.com</a>\r\nTel No : + 94 76 577 2975[/vc_cta][/vc_column][vc_column width=\"1/2\" css=\".vc_custom_1693540312642{background-image: url(https://farmchemie.yasithawd.com/wp-content/uploads/2023/09/01International-Markets-Sri-Lankan-Market.png?id=3378) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\"][/vc_column][/vc_row]','Manufacturing','','inherit','closed','closed','','2964-revision-v1','','','2023-09-01 03:56:06','2023-09-01 03:56:06','',2964,'https://farmchemie.yasithawd.com/?p=3381',0,'revision','',0),(2770,1,'2023-05-11 07:35:09','2023-05-11 07:35:09','','Hypro-Premium-Ocen-Fish','','inherit','open','closed','','hypro-premium-ocen-fish','','','2023-05-11 07:35:09','2023-05-11 07:35:09','',0,'https://farmchemie.yasithawd.com/wp-content/uploads/2023/05/Hypro-Premium-Ocen-Fish.png',0,'attachment','image/png',0),(2774,1,'2023-05-11 07:42:50','2023-05-11 07:42:50','','AVI B','<h3><em>For more appetite and more active animals.</em></h3>\r\n[dt_divider style=\"thick\" /]\r\n\r\n&nbsp;\r\n\r\n<strong>Composition: </strong>\r\n\r\nEach 1 L contains,\r\n<p style=\"text-align: left;\">Vitamin B1 - 10 mg\r\nVitamin B2 - 10 mg\r\nVitamin B6 - 5 mg\r\nVitamin B12 - 2.5 mcg\r\nNicotinamide - 50 mg\r\nDexpanthenol - 30 mg\r\nBiotin - 20 mcg</p>\r\n[dt_divider style=\"thin\" /]\r\n\r\n<strong>Indication: </strong>\r\n\r\nThe complex range of Vitamin B complex for Livestock management. Easy way of administering, efficient and low cost vitamin supplement for poultry, cattle, swine and other farm animals. Prevent Vitamin B deficiencies.\r\n\r\n[dt_divider style=\"thin\" /]\r\n\r\n<strong>Dosage: </strong>\r\n\r\nAdminister mixing with feed or directly feed\r\nAvians - 1 ml per 1 litre of drinking water for 3-4 days\r\n\r\n[dt_divider style=\"thin\" /]\r\n\r\n<strong>Pack sizes: </strong>\r\n\r\n10 mL\r\n\r\n&nbsp;\r\n\r\n[dt_divider style=\"thick\" /]\r\n\r\n&nbsp;\r\n\r\n<a href=\"/wp-content/uploads/2023/05/AVI-B.pdf\"><i class=\"fa-solid fa-file-pdf fa-2xl\" style=\"color: #039447;\"> Eng</i></a>','publish','closed','closed','','avi-b','','','2023-09-11 14:40:40','2023-09-11 14:40:40','',0,'https://farmchemie.yasithawd.com/?post_type=product&#038;p=2774',0,'product','',0),(3382,1,'2023-09-01 03:58:05','2023-09-01 03:58:05','[vc_row full_width=\"stretch_row\" css=\".vc_custom_1689577528817{padding-bottom: 50px !important;}\"][vc_column css=\".vc_custom_1689577454678{margin-bottom: 50px !important;}\"][vc_row_inner css=\".vc_custom_1692407941633{border-bottom-width: 1px !important;border-bottom-color: #079547 !important;border-bottom-style: solid !important;border-radius: 1px !important;}\"][vc_column_inner width=\"1/2\"][ult_animation_block animation=\"fadeInLeftBig\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][ultimate_heading main_heading=\"Feed Additives\" heading_tag=\"h3\" main_heading_color=\"#079547\" sub_heading_color=\"#792c8a\" alignment=\"left\"]<strong>Premixes/ Specialty Feed Additives/ Dilution of Active Ingredients/ Concentrates</strong><strong>\r\n</strong>Pack sizes – 1,000 kg, 500 kg, 50 kg, 25 kg, 15 kg, 10 kg, 5 kg, 1kg[/ultimate_heading][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_single_image image=\"3129\" img_size=\"full\" css_animation=\"fadeInRightBig\"][/vc_column_inner][/vc_row_inner][vc_row_inner css=\".vc_custom_1692407949383{border-bottom-width: 1px !important;border-bottom-color: #079547 !important;border-bottom-style: solid !important;border-radius: 1px !important;}\"][vc_column_inner width=\"1/2\"][vc_single_image image=\"3162\" img_size=\"full\" css_animation=\"fadeInLeftBig\"][/vc_column_inner][vc_column_inner width=\"1/2\"][ult_animation_block animation=\"fadeInRightBig\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][ultimate_heading main_heading=\"Oral Supplements\" heading_tag=\"h3\" main_heading_color=\"#079547\" sub_heading_color=\"#792c8a\" alignment=\"left\"]<strong>Liquids</strong><strong>\r\n</strong>Pack sizes – 1,000 L, 250 L, 50 L, 25 L, 5 L, 1 L, 500 mL, 250 mL, 100 mL, 50 mL\r\n\r\n<strong>Water soluble powders</strong><strong>\r\n</strong>Pack sizes – 25 kg, 15 kg, 10 kg, 5 kg, 1kg[/ultimate_heading][/ult_animation_block][/vc_column_inner][/vc_row_inner][vc_row_inner css=\".vc_custom_1692407957943{border-bottom-width: 1px !important;border-bottom-color: #079547 !important;border-bottom-style: solid !important;border-radius: 1px !important;}\"][vc_column_inner width=\"1/2\"][ult_animation_block animation=\"fadeInLeftBig\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][ultimate_heading main_heading=\"Tablets\" heading_tag=\"h3\" main_heading_color=\"#079547\" sub_heading_color=\"#792c8a\" alignment=\"left\"]<strong>Supplementary tablets for pet care</strong>\r\nTablet sizes – 1 to 5 g\r\n\r\n<strong>Boluses</strong><strong>\r\n</strong>Tablet sizes – 5 to 25 g[/ultimate_heading][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_single_image image=\"3163\" img_size=\"full\" css_animation=\"fadeInRightBig\"][/vc_column_inner][/vc_row_inner][vc_row_inner css=\".vc_custom_1692407970279{border-bottom-width: 1px !important;border-bottom-color: #079547 !important;border-bottom-style: solid !important;border-radius: 1px !important;}\"][vc_column_inner width=\"1/2\"][vc_single_image image=\"3164\" img_size=\"full\" css_animation=\"fadeInLeftBig\"][/vc_column_inner][vc_column_inner width=\"1/2\"][ult_animation_block animation=\"fadeInRightBig\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][ultimate_heading main_heading=\"Veterinary Pharmaceuticals\" heading_tag=\"h3\" main_heading_color=\"#079547\" sub_heading_color=\"#792c8a\" alignment=\"left\"]<strong>Deworming Solutions/ Antibiotics/ Antimicrobials/ Wound care solutions</strong><strong>\r\n</strong>Form – Liquid, WSP[/ultimate_heading][/ult_animation_block][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row full_width=\"stretch_row_content\" css=\".vc_custom_1693451731079{padding-top: 50px !important;padding-bottom: 50px !important;}\"][vc_column][ultimate_heading main_heading=\"Our manufacturing facility is certified with FAMI-QS, WHO GMP &amp; ISO 9001:2015 International Quality standards.\" main_heading_color=\"#079547\" sub_heading_color=\"#792c8a\"]We select only the <strong><em>best</em></strong> and <strong><em>most reputed</em></strong> Raw Material &amp; Packing Material Suppliers for the production of our finished goods.[/ultimate_heading][vc_row_inner equal_height=\"yes\" content_placement=\"middle\"][vc_column_inner width=\"1/5\" offset=\"vc_hidden-lg vc_hidden-md\"][vc_single_image image=\"3062\" img_size=\"full\" alignment=\"center\"][/vc_column_inner][vc_column_inner width=\"1/5\" css=\".vc_custom_1691846530645{border-right-width: 1px !important;border-left-width: 1px !important;border-left-color: #000000 !important;border-left-style: solid !important;border-right-color: #000000 !important;border-right-style: solid !important;border-radius: 1px !important;}\" offset=\"vc_hidden-lg vc_hidden-md\"][vc_single_image image=\"3063\" img_size=\"full\" alignment=\"center\"][/vc_column_inner][vc_column_inner width=\"1/5\" offset=\"vc_hidden-lg vc_hidden-md\"][vc_single_image image=\"3064\" img_size=\"full\" alignment=\"center\"][/vc_column_inner][vc_column_inner width=\"1/5\" css=\".vc_custom_1691846545469{border-right-width: 1px !important;border-left-width: 1px !important;border-left-color: #000000 !important;border-left-style: solid !important;border-right-color: #000000 !important;border-right-style: solid !important;border-radius: 1px !important;}\" offset=\"vc_hidden-lg vc_hidden-md\"][vc_single_image image=\"3065\" img_size=\"full\" alignment=\"center\"][/vc_column_inner][vc_column_inner width=\"1/5\" offset=\"vc_hidden-lg vc_hidden-md\"][vc_single_image image=\"3066\" img_size=\"full\" alignment=\"center\"][/vc_column_inner][/vc_row_inner][vc_row_inner equal_height=\"yes\" content_placement=\"middle\"][vc_column_inner width=\"1/4\" css=\".vc_custom_1691846563021{border-right-width: 1px !important;border-right-color: #000000 !important;border-right-style: solid !important;border-radius: 1px !important;}\" offset=\"vc_hidden-lg vc_hidden-md\"][vc_single_image image=\"3067\" img_size=\"full\" alignment=\"center\"][/vc_column_inner][vc_column_inner width=\"1/4\" css=\".vc_custom_1691846569845{border-right-width: 1px !important;border-right-color: #000000 !important;border-right-style: solid !important;border-radius: 1px !important;}\" offset=\"vc_hidden-lg vc_hidden-md\"][vc_single_image image=\"3068\" img_size=\"full\" alignment=\"center\"][/vc_column_inner][vc_column_inner width=\"1/4\" css=\".vc_custom_1691846576949{border-right-width: 1px !important;border-right-color: #000000 !important;border-right-style: solid !important;border-radius: 1px !important;}\" offset=\"vc_hidden-lg vc_hidden-md\"][vc_single_image image=\"3069\" img_size=\"full\" alignment=\"center\"][/vc_column_inner][vc_column_inner width=\"1/4\" offset=\"vc_hidden-lg vc_hidden-md\"][vc_single_image image=\"3070\" img_size=\"full\" alignment=\"center\"][/vc_column_inner][/vc_row_inner][vc_row_inner disable_element=\"yes\"][vc_column_inner width=\"1/3\"][vc_single_image image=\"2981\" img_size=\"full\"][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_single_image image=\"2982\" img_size=\"full\"][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_single_image image=\"2983\" img_size=\"full\"][/vc_column_inner][/vc_row_inner][vc_row_inner disable_element=\"yes\"][vc_column_inner width=\"1/6\"][/vc_column_inner][vc_column_inner width=\"2/3\"][vc_single_image image=\"2984\" img_size=\"full\"][/vc_column_inner][vc_column_inner width=\"1/6\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row full_width=\"stretch_row_content_no_spaces\"][vc_column offset=\"vc_hidden-sm vc_hidden-xs\"][vc_single_image image=\"3120\" img_size=\"full\" alignment=\"center\"][/vc_column][/vc_row][vc_row css=\".vc_custom_1689578794814{padding-top: 50px !important;padding-bottom: 50px !important;}\"][vc_column][ultimate_heading main_heading=\"Supplier selection and procurement criteria\" main_heading_color=\"#079547\" sub_heading_color=\"#792c8a\" alignment=\"left\"][/ultimate_heading][vc_row_inner css=\".vc_custom_1689578812611{margin-top: 50px !important;}\"][vc_column_inner width=\"1/2\"][dt_vc_list dividers=\"false\"]\r\n<ul>\r\n 	<li>Check supplier’s quality certification to ensure raw material quality</li>\r\n 	<li>New vendor validation protocol - In case of a change in the supplier, obtain samples and validate in the lab</li>\r\n</ul>\r\n[/dt_vc_list][/vc_column_inner][vc_column_inner width=\"1/2\"][dt_vc_list dividers=\"false\"]\r\n<ul>\r\n 	<li>Income inspection carried out on every consignment (Tested for Chemical Assay &amp; Physical Properties)</li>\r\n 	<li>Quality department approval required to be used in the production</li>\r\n</ul>\r\n[/dt_vc_list][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row css=\".vc_custom_1689578794814{padding-top: 50px !important;padding-bottom: 50px !important;}\"][vc_column][ultimate_heading main_heading=\"Please contact us to start your Marketing Journey with a reliable manufacturing partnership with FARMCHEMIE\" heading_tag=\"h3\" main_heading_color=\"#079547\" sub_heading_color=\"#792c8a\" alignment=\"left\"][/ultimate_heading][vc_row_inner css=\".vc_custom_1689578812611{margin-top: 50px !important;}\"][vc_column_inner width=\"1/2\"][bsf-info-box icon_size=\"32\" title=\"International Markets\" read_more=\"more\" read_text=\"Learn More\" pos=\"square_box\" box_border_width=\"1\" title_font_color=\"#ffffff\" desc_font_color=\"#ffffff\" title_font_size=\"desktop:25px;\"]<strong>Email :</strong> <a href=\"mailto:sales.export@farmchemie.com\"><u>sales.export@farmchemie.com</u></a>\r\n<strong>Tel No :</strong> + 94 76 577 2975[/bsf-info-box][/vc_column_inner][vc_column_inner width=\"1/2\"][bsf-info-box icon_size=\"32\" title=\"Sri Lankan Market\" pos=\"square_box\" box_border_style=\"solid\" box_border_width=\"1\" box_border_color=\"#079547\" title_font_color=\"#079547\" desc_font_color=\"#792c8a\" title_font_size=\"desktop:25px;\"]Email : <a href=\"mailto:sales.local@farmchemie.com\"><u>sales.local@farmchemie.com</u></a>\r\nTel No : +94 74 224 6947[/bsf-info-box][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row full_width=\"stretch_row_content\" equal_height=\"yes\"][vc_column width=\"1/2\" css=\".vc_custom_1693540291208{background-image: url(https://farmchemie.yasithawd.com/wp-content/uploads/2023/09/02International-Markets-Sri-Lankan-Market.png?id=3379) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\"][/vc_column][vc_column width=\"1/2\" css=\".vc_custom_1693540250450{background-color: #8d499b !important;}\"][vc_cta h2=\"Sri Lankan Markets\" h2_font_container=\"tag:h2|text_align:center|color:%23ffffff\" h2_use_theme_fonts=\"yes\" txt_align=\"center\" shape=\"square\" style=\"custom\" add_button=\"bottom\" btn_title=\"Learn More\" btn_style=\"custom\" btn_custom_background=\"#ffffff\" btn_custom_text=\"#8d499b\" btn_shape=\"round\" btn_size=\"lg\" btn_align=\"center\" use_custom_fonts_h2=\"true\" custom_background=\"rgba(0,0,0,0.01)\" custom_text=\"#ffffff\" btn_link=\"url:%23\" css=\".vc_custom_1693540668043{border: 0px initial rgba(0,0,0,0.01) !important;}\"]Email : <a href=\"mailto:sales.export@farmchemie.com\">sales.export@farmchemie.com</a>\r\nTel No : + 94 76 577 2975[/vc_cta][/vc_column][/vc_row][vc_row full_width=\"stretch_row_content\" equal_height=\"yes\"][vc_column width=\"1/2\" css=\".vc_custom_1693540116474{background-color: #039447 !important;}\"][vc_cta h2=\"International Markets\" h2_font_container=\"tag:h2|text_align:center|color:%23ffffff\" h2_use_theme_fonts=\"yes\" txt_align=\"center\" shape=\"square\" style=\"custom\" add_button=\"bottom\" btn_title=\"Learn More\" btn_style=\"custom\" btn_custom_background=\"#ffffff\" btn_custom_text=\"#039447\" btn_shape=\"round\" btn_size=\"lg\" btn_align=\"center\" use_custom_fonts_h2=\"true\" custom_background=\"rgba(0,0,0,0.01)\" custom_text=\"#ffffff\" btn_link=\"url:%23\" css=\".vc_custom_1693540678907{border: 0px initial !important;}\"]Email : <a href=\"mailto:sales.export@farmchemie.com\">sales.export@farmchemie.com</a>\r\nTel No : + 94 76 577 2975[/vc_cta][/vc_column][vc_column width=\"1/2\" css=\".vc_custom_1693540312642{background-image: url(https://farmchemie.yasithawd.com/wp-content/uploads/2023/09/01International-Markets-Sri-Lankan-Market.png?id=3378) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\"][/vc_column][/vc_row]','Manufacturing','','inherit','closed','closed','','2964-revision-v1','','','2023-09-01 03:58:05','2023-09-01 03:58:05','',2964,'https://farmchemie.yasithawd.com/?p=3382',0,'revision','',0),(2787,1,'2023-05-11 08:55:26','2023-05-11 08:55:26','','CANNY-BOOST','','inherit','open','closed','','canny-boost-2','','','2023-05-11 08:55:26','2023-05-11 08:55:26','',0,'https://farmchemie.yasithawd.com/wp-content/uploads/2023/05/CANNY-BOOST.png',0,'attachment','image/png',0),(2789,1,'2023-05-11 10:08:12','2023-05-11 10:08:12','','CANNY-BREW','','inherit','open','closed','','canny-brew','','','2023-05-11 10:08:12','2023-05-11 10:08:12','',0,'https://farmchemie.yasithawd.com/wp-content/uploads/2023/05/CANNY-BREW.png',0,'attachment','image/png',0),(3384,1,'2023-09-01 04:13:05','2023-09-01 04:13:05','[vc_row full_width=\"stretch_row\" css=\".vc_custom_1689577528817{padding-bottom: 50px !important;}\"][vc_column css=\".vc_custom_1689577454678{margin-bottom: 50px !important;}\"][vc_row_inner css=\".vc_custom_1692407941633{border-bottom-width: 1px !important;border-bottom-color: #079547 !important;border-bottom-style: solid !important;border-radius: 1px !important;}\"][vc_column_inner width=\"1/2\"][ult_animation_block animation=\"fadeInLeftBig\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][ultimate_heading main_heading=\"Feed Additives\" heading_tag=\"h3\" main_heading_color=\"#079547\" sub_heading_color=\"#792c8a\" alignment=\"left\"]<strong>Premixes/ Specialty Feed Additives/ Dilution of Active Ingredients/ Concentrates</strong><strong>\r\n</strong>Pack sizes – 1,000 kg, 500 kg, 50 kg, 25 kg, 15 kg, 10 kg, 5 kg, 1kg[/ultimate_heading][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_single_image image=\"3129\" img_size=\"full\" css_animation=\"fadeInRightBig\"][/vc_column_inner][/vc_row_inner][vc_row_inner css=\".vc_custom_1692407949383{border-bottom-width: 1px !important;border-bottom-color: #079547 !important;border-bottom-style: solid !important;border-radius: 1px !important;}\"][vc_column_inner width=\"1/2\"][vc_single_image image=\"3162\" img_size=\"full\" css_animation=\"fadeInLeftBig\"][/vc_column_inner][vc_column_inner width=\"1/2\"][ult_animation_block animation=\"fadeInRightBig\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][ultimate_heading main_heading=\"Oral Supplements\" heading_tag=\"h3\" main_heading_color=\"#079547\" sub_heading_color=\"#792c8a\" alignment=\"left\"]<strong>Liquids</strong><strong>\r\n</strong>Pack sizes – 1,000 L, 250 L, 50 L, 25 L, 5 L, 1 L, 500 mL, 250 mL, 100 mL, 50 mL\r\n\r\n<strong>Water soluble powders</strong><strong>\r\n</strong>Pack sizes – 25 kg, 15 kg, 10 kg, 5 kg, 1kg[/ultimate_heading][/ult_animation_block][/vc_column_inner][/vc_row_inner][vc_row_inner css=\".vc_custom_1692407957943{border-bottom-width: 1px !important;border-bottom-color: #079547 !important;border-bottom-style: solid !important;border-radius: 1px !important;}\"][vc_column_inner width=\"1/2\"][ult_animation_block animation=\"fadeInLeftBig\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][ultimate_heading main_heading=\"Tablets\" heading_tag=\"h3\" main_heading_color=\"#079547\" sub_heading_color=\"#792c8a\" alignment=\"left\"]<strong>Supplementary tablets for pet care</strong>\r\nTablet sizes – 1 to 5 g\r\n\r\n<strong>Boluses</strong><strong>\r\n</strong>Tablet sizes – 5 to 25 g[/ultimate_heading][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_single_image image=\"3163\" img_size=\"full\" css_animation=\"fadeInRightBig\"][/vc_column_inner][/vc_row_inner][vc_row_inner css=\".vc_custom_1692407970279{border-bottom-width: 1px !important;border-bottom-color: #079547 !important;border-bottom-style: solid !important;border-radius: 1px !important;}\"][vc_column_inner width=\"1/2\"][vc_single_image image=\"3164\" img_size=\"full\" css_animation=\"fadeInLeftBig\"][/vc_column_inner][vc_column_inner width=\"1/2\"][ult_animation_block animation=\"fadeInRightBig\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][ultimate_heading main_heading=\"Veterinary Pharmaceuticals\" heading_tag=\"h3\" main_heading_color=\"#079547\" sub_heading_color=\"#792c8a\" alignment=\"left\"]<strong>Deworming Solutions/ Antibiotics/ Antimicrobials/ Wound care solutions</strong><strong>\r\n</strong>Form – Liquid, WSP[/ultimate_heading][/ult_animation_block][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row full_width=\"stretch_row_content\" css=\".vc_custom_1693451731079{padding-top: 50px !important;padding-bottom: 50px !important;}\"][vc_column][ultimate_heading main_heading=\"Our manufacturing facility is certified with FAMI-QS, WHO GMP &amp; ISO 9001:2015 International Quality standards.\" main_heading_color=\"#079547\" sub_heading_color=\"#792c8a\"]We select only the <strong><em>best</em></strong> and <strong><em>most reputed</em></strong> Raw Material &amp; Packing Material Suppliers for the production of our finished goods.[/ultimate_heading][vc_row_inner equal_height=\"yes\" content_placement=\"middle\"][vc_column_inner width=\"1/5\" offset=\"vc_hidden-lg vc_hidden-md\"][vc_single_image image=\"3062\" img_size=\"full\" alignment=\"center\"][/vc_column_inner][vc_column_inner width=\"1/5\" css=\".vc_custom_1691846530645{border-right-width: 1px !important;border-left-width: 1px !important;border-left-color: #000000 !important;border-left-style: solid !important;border-right-color: #000000 !important;border-right-style: solid !important;border-radius: 1px !important;}\" offset=\"vc_hidden-lg vc_hidden-md\"][vc_single_image image=\"3063\" img_size=\"full\" alignment=\"center\"][/vc_column_inner][vc_column_inner width=\"1/5\" offset=\"vc_hidden-lg vc_hidden-md\"][vc_single_image image=\"3064\" img_size=\"full\" alignment=\"center\"][/vc_column_inner][vc_column_inner width=\"1/5\" css=\".vc_custom_1691846545469{border-right-width: 1px !important;border-left-width: 1px !important;border-left-color: #000000 !important;border-left-style: solid !important;border-right-color: #000000 !important;border-right-style: solid !important;border-radius: 1px !important;}\" offset=\"vc_hidden-lg vc_hidden-md\"][vc_single_image image=\"3065\" img_size=\"full\" alignment=\"center\"][/vc_column_inner][vc_column_inner width=\"1/5\" offset=\"vc_hidden-lg vc_hidden-md\"][vc_single_image image=\"3066\" img_size=\"full\" alignment=\"center\"][/vc_column_inner][/vc_row_inner][vc_row_inner equal_height=\"yes\" content_placement=\"middle\"][vc_column_inner width=\"1/4\" css=\".vc_custom_1691846563021{border-right-width: 1px !important;border-right-color: #000000 !important;border-right-style: solid !important;border-radius: 1px !important;}\" offset=\"vc_hidden-lg vc_hidden-md\"][vc_single_image image=\"3067\" img_size=\"full\" alignment=\"center\"][/vc_column_inner][vc_column_inner width=\"1/4\" css=\".vc_custom_1691846569845{border-right-width: 1px !important;border-right-color: #000000 !important;border-right-style: solid !important;border-radius: 1px !important;}\" offset=\"vc_hidden-lg vc_hidden-md\"][vc_single_image image=\"3068\" img_size=\"full\" alignment=\"center\"][/vc_column_inner][vc_column_inner width=\"1/4\" css=\".vc_custom_1691846576949{border-right-width: 1px !important;border-right-color: #000000 !important;border-right-style: solid !important;border-radius: 1px !important;}\" offset=\"vc_hidden-lg vc_hidden-md\"][vc_single_image image=\"3069\" img_size=\"full\" alignment=\"center\"][/vc_column_inner][vc_column_inner width=\"1/4\" offset=\"vc_hidden-lg vc_hidden-md\"][vc_single_image image=\"3070\" img_size=\"full\" alignment=\"center\"][/vc_column_inner][/vc_row_inner][vc_row_inner disable_element=\"yes\"][vc_column_inner width=\"1/3\"][vc_single_image image=\"2981\" img_size=\"full\"][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_single_image image=\"2982\" img_size=\"full\"][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_single_image image=\"2983\" img_size=\"full\"][/vc_column_inner][/vc_row_inner][vc_row_inner disable_element=\"yes\"][vc_column_inner width=\"1/6\"][/vc_column_inner][vc_column_inner width=\"2/3\"][vc_single_image image=\"2984\" img_size=\"full\"][/vc_column_inner][vc_column_inner width=\"1/6\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row full_width=\"stretch_row_content_no_spaces\"][vc_column offset=\"vc_hidden-sm vc_hidden-xs\"][vc_single_image image=\"3120\" img_size=\"full\" alignment=\"center\"][/vc_column][/vc_row][vc_row css=\".vc_custom_1689578794814{padding-top: 50px !important;padding-bottom: 50px !important;}\"][vc_column][ultimate_heading main_heading=\"Supplier selection and procurement criteria\" main_heading_color=\"#079547\" sub_heading_color=\"#792c8a\" alignment=\"left\"][/ultimate_heading][vc_row_inner css=\".vc_custom_1689578812611{margin-top: 50px !important;}\"][vc_column_inner width=\"1/2\"][dt_vc_list dividers=\"false\"]\r\n<ul>\r\n 	<li>Check supplier’s quality certification to ensure raw material quality</li>\r\n 	<li>New vendor validation protocol - In case of a change in the supplier, obtain samples and validate in the lab</li>\r\n</ul>\r\n[/dt_vc_list][/vc_column_inner][vc_column_inner width=\"1/2\"][dt_vc_list dividers=\"false\"]\r\n<ul>\r\n 	<li>Income inspection carried out on every consignment (Tested for Chemical Assay &amp; Physical Properties)</li>\r\n 	<li>Quality department approval required to be used in the production</li>\r\n</ul>\r\n[/dt_vc_list][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row css=\".vc_custom_1689578794814{padding-top: 50px !important;padding-bottom: 50px !important;}\"][vc_column][ultimate_heading main_heading=\"Please contact us to start your Marketing Journey with a reliable manufacturing partnership with FARMCHEMIE\" heading_tag=\"h3\" main_heading_color=\"#079547\" sub_heading_color=\"#792c8a\" alignment=\"left\"][/ultimate_heading][vc_row_inner css=\".vc_custom_1689578812611{margin-top: 50px !important;}\"][vc_column_inner width=\"1/2\"][bsf-info-box icon_size=\"32\" title=\"International Markets\" read_more=\"more\" read_text=\"Learn More\" pos=\"square_box\" box_border_width=\"1\" title_font_color=\"#ffffff\" desc_font_color=\"#ffffff\" title_font_size=\"desktop:25px;\"]<strong>Email :</strong> <a href=\"mailto:sales.export@farmchemie.com\"><u>sales.export@farmchemie.com</u></a>\r\n<strong>Tel No :</strong> + 94 76 577 2975[/bsf-info-box][/vc_column_inner][vc_column_inner width=\"1/2\"][bsf-info-box icon_size=\"32\" title=\"Sri Lankan Market\" pos=\"square_box\" box_border_style=\"solid\" box_border_width=\"1\" box_border_color=\"#079547\" title_font_color=\"#079547\" desc_font_color=\"#792c8a\" title_font_size=\"desktop:25px;\"]Email : <a href=\"mailto:sales.local@farmchemie.com\"><u>sales.local@farmchemie.com</u></a>\r\nTel No : +94 74 224 6947[/bsf-info-box][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row full_width=\"stretch_row_content\" equal_height=\"yes\" content_placement=\"middle\" css=\".vc_custom_1693540932074{margin-top: 10px !important;margin-bottom: 10px !important;}\"][vc_column width=\"1/2\" css=\".vc_custom_1693540291208{background-image: url(https://farmchemie.yasithawd.com/wp-content/uploads/2023/09/02International-Markets-Sri-Lankan-Market.png?id=3379) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\"][vc_empty_space height=\"600px\"][/vc_column][vc_column width=\"1/2\" css=\".vc_custom_1693540250450{background-color: #8d499b !important;}\"][ultimate_heading main_heading=\"Sri Lankan Markets\" heading_tag=\"h3\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" margin_design_tab_text=\"\"]Email : <a href=\"mailto:sales.import@farmchemie.com\">sales.import@farmchemie.com</a>\r\nTel No : + 94 76 577 2975[/ultimate_heading][/vc_column][/vc_row][vc_row full_width=\"stretch_row_content\" equal_height=\"yes\" content_placement=\"middle\"][vc_column width=\"1/2\" css=\".vc_custom_1693540116474{background-color: #039447 !important;}\"][ultimate_heading main_heading=\"International Markets\" heading_tag=\"h3\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" margin_design_tab_text=\"\"]Email : <a href=\"mailto:sales.export@farmchemie.com\">sales.export@farmchemie.com</a>\r\nTel No : + 94 76 577 2975[/ultimate_heading][vc_btn title=\"Read More\" style=\"custom\" custom_background=\"#ffffff\" custom_text=\"#8d499b\" shape=\"round\" align=\"center\" link=\"url:%23\"][/vc_column][vc_column width=\"1/2\" css=\".vc_custom_1693540312642{background-image: url(https://farmchemie.yasithawd.com/wp-content/uploads/2023/09/01International-Markets-Sri-Lankan-Market.png?id=3378) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\"][vc_empty_space height=\"600px\"][/vc_column][/vc_row]','Manufacturing','','inherit','closed','closed','','2964-revision-v1','','','2023-09-01 04:13:05','2023-09-01 04:13:05','',2964,'https://farmchemie.yasithawd.com/?p=3384',0,'revision','',0),(3383,1,'2023-09-01 03:59:08','2023-09-01 03:59:08','[vc_row full_width=\"stretch_row\" css=\".vc_custom_1689577528817{padding-bottom: 50px !important;}\"][vc_column css=\".vc_custom_1689577454678{margin-bottom: 50px !important;}\"][vc_row_inner css=\".vc_custom_1692407941633{border-bottom-width: 1px !important;border-bottom-color: #079547 !important;border-bottom-style: solid !important;border-radius: 1px !important;}\"][vc_column_inner width=\"1/2\"][ult_animation_block animation=\"fadeInLeftBig\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][ultimate_heading main_heading=\"Feed Additives\" heading_tag=\"h3\" main_heading_color=\"#079547\" sub_heading_color=\"#792c8a\" alignment=\"left\"]<strong>Premixes/ Specialty Feed Additives/ Dilution of Active Ingredients/ Concentrates</strong><strong>\r\n</strong>Pack sizes – 1,000 kg, 500 kg, 50 kg, 25 kg, 15 kg, 10 kg, 5 kg, 1kg[/ultimate_heading][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_single_image image=\"3129\" img_size=\"full\" css_animation=\"fadeInRightBig\"][/vc_column_inner][/vc_row_inner][vc_row_inner css=\".vc_custom_1692407949383{border-bottom-width: 1px !important;border-bottom-color: #079547 !important;border-bottom-style: solid !important;border-radius: 1px !important;}\"][vc_column_inner width=\"1/2\"][vc_single_image image=\"3162\" img_size=\"full\" css_animation=\"fadeInLeftBig\"][/vc_column_inner][vc_column_inner width=\"1/2\"][ult_animation_block animation=\"fadeInRightBig\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][ultimate_heading main_heading=\"Oral Supplements\" heading_tag=\"h3\" main_heading_color=\"#079547\" sub_heading_color=\"#792c8a\" alignment=\"left\"]<strong>Liquids</strong><strong>\r\n</strong>Pack sizes – 1,000 L, 250 L, 50 L, 25 L, 5 L, 1 L, 500 mL, 250 mL, 100 mL, 50 mL\r\n\r\n<strong>Water soluble powders</strong><strong>\r\n</strong>Pack sizes – 25 kg, 15 kg, 10 kg, 5 kg, 1kg[/ultimate_heading][/ult_animation_block][/vc_column_inner][/vc_row_inner][vc_row_inner css=\".vc_custom_1692407957943{border-bottom-width: 1px !important;border-bottom-color: #079547 !important;border-bottom-style: solid !important;border-radius: 1px !important;}\"][vc_column_inner width=\"1/2\"][ult_animation_block animation=\"fadeInLeftBig\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][ultimate_heading main_heading=\"Tablets\" heading_tag=\"h3\" main_heading_color=\"#079547\" sub_heading_color=\"#792c8a\" alignment=\"left\"]<strong>Supplementary tablets for pet care</strong>\r\nTablet sizes – 1 to 5 g\r\n\r\n<strong>Boluses</strong><strong>\r\n</strong>Tablet sizes – 5 to 25 g[/ultimate_heading][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_single_image image=\"3163\" img_size=\"full\" css_animation=\"fadeInRightBig\"][/vc_column_inner][/vc_row_inner][vc_row_inner css=\".vc_custom_1692407970279{border-bottom-width: 1px !important;border-bottom-color: #079547 !important;border-bottom-style: solid !important;border-radius: 1px !important;}\"][vc_column_inner width=\"1/2\"][vc_single_image image=\"3164\" img_size=\"full\" css_animation=\"fadeInLeftBig\"][/vc_column_inner][vc_column_inner width=\"1/2\"][ult_animation_block animation=\"fadeInRightBig\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][ultimate_heading main_heading=\"Veterinary Pharmaceuticals\" heading_tag=\"h3\" main_heading_color=\"#079547\" sub_heading_color=\"#792c8a\" alignment=\"left\"]<strong>Deworming Solutions/ Antibiotics/ Antimicrobials/ Wound care solutions</strong><strong>\r\n</strong>Form – Liquid, WSP[/ultimate_heading][/ult_animation_block][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row full_width=\"stretch_row_content\" css=\".vc_custom_1693451731079{padding-top: 50px !important;padding-bottom: 50px !important;}\"][vc_column][ultimate_heading main_heading=\"Our manufacturing facility is certified with FAMI-QS, WHO GMP &amp; ISO 9001:2015 International Quality standards.\" main_heading_color=\"#079547\" sub_heading_color=\"#792c8a\"]We select only the <strong><em>best</em></strong> and <strong><em>most reputed</em></strong> Raw Material &amp; Packing Material Suppliers for the production of our finished goods.[/ultimate_heading][vc_row_inner equal_height=\"yes\" content_placement=\"middle\"][vc_column_inner width=\"1/5\" offset=\"vc_hidden-lg vc_hidden-md\"][vc_single_image image=\"3062\" img_size=\"full\" alignment=\"center\"][/vc_column_inner][vc_column_inner width=\"1/5\" css=\".vc_custom_1691846530645{border-right-width: 1px !important;border-left-width: 1px !important;border-left-color: #000000 !important;border-left-style: solid !important;border-right-color: #000000 !important;border-right-style: solid !important;border-radius: 1px !important;}\" offset=\"vc_hidden-lg vc_hidden-md\"][vc_single_image image=\"3063\" img_size=\"full\" alignment=\"center\"][/vc_column_inner][vc_column_inner width=\"1/5\" offset=\"vc_hidden-lg vc_hidden-md\"][vc_single_image image=\"3064\" img_size=\"full\" alignment=\"center\"][/vc_column_inner][vc_column_inner width=\"1/5\" css=\".vc_custom_1691846545469{border-right-width: 1px !important;border-left-width: 1px !important;border-left-color: #000000 !important;border-left-style: solid !important;border-right-color: #000000 !important;border-right-style: solid !important;border-radius: 1px !important;}\" offset=\"vc_hidden-lg vc_hidden-md\"][vc_single_image image=\"3065\" img_size=\"full\" alignment=\"center\"][/vc_column_inner][vc_column_inner width=\"1/5\" offset=\"vc_hidden-lg vc_hidden-md\"][vc_single_image image=\"3066\" img_size=\"full\" alignment=\"center\"][/vc_column_inner][/vc_row_inner][vc_row_inner equal_height=\"yes\" content_placement=\"middle\"][vc_column_inner width=\"1/4\" css=\".vc_custom_1691846563021{border-right-width: 1px !important;border-right-color: #000000 !important;border-right-style: solid !important;border-radius: 1px !important;}\" offset=\"vc_hidden-lg vc_hidden-md\"][vc_single_image image=\"3067\" img_size=\"full\" alignment=\"center\"][/vc_column_inner][vc_column_inner width=\"1/4\" css=\".vc_custom_1691846569845{border-right-width: 1px !important;border-right-color: #000000 !important;border-right-style: solid !important;border-radius: 1px !important;}\" offset=\"vc_hidden-lg vc_hidden-md\"][vc_single_image image=\"3068\" img_size=\"full\" alignment=\"center\"][/vc_column_inner][vc_column_inner width=\"1/4\" css=\".vc_custom_1691846576949{border-right-width: 1px !important;border-right-color: #000000 !important;border-right-style: solid !important;border-radius: 1px !important;}\" offset=\"vc_hidden-lg vc_hidden-md\"][vc_single_image image=\"3069\" img_size=\"full\" alignment=\"center\"][/vc_column_inner][vc_column_inner width=\"1/4\" offset=\"vc_hidden-lg vc_hidden-md\"][vc_single_image image=\"3070\" img_size=\"full\" alignment=\"center\"][/vc_column_inner][/vc_row_inner][vc_row_inner disable_element=\"yes\"][vc_column_inner width=\"1/3\"][vc_single_image image=\"2981\" img_size=\"full\"][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_single_image image=\"2982\" img_size=\"full\"][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_single_image image=\"2983\" img_size=\"full\"][/vc_column_inner][/vc_row_inner][vc_row_inner disable_element=\"yes\"][vc_column_inner width=\"1/6\"][/vc_column_inner][vc_column_inner width=\"2/3\"][vc_single_image image=\"2984\" img_size=\"full\"][/vc_column_inner][vc_column_inner width=\"1/6\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row full_width=\"stretch_row_content_no_spaces\"][vc_column offset=\"vc_hidden-sm vc_hidden-xs\"][vc_single_image image=\"3120\" img_size=\"full\" alignment=\"center\"][/vc_column][/vc_row][vc_row css=\".vc_custom_1689578794814{padding-top: 50px !important;padding-bottom: 50px !important;}\"][vc_column][ultimate_heading main_heading=\"Supplier selection and procurement criteria\" main_heading_color=\"#079547\" sub_heading_color=\"#792c8a\" alignment=\"left\"][/ultimate_heading][vc_row_inner css=\".vc_custom_1689578812611{margin-top: 50px !important;}\"][vc_column_inner width=\"1/2\"][dt_vc_list dividers=\"false\"]\r\n<ul>\r\n 	<li>Check supplier’s quality certification to ensure raw material quality</li>\r\n 	<li>New vendor validation protocol - In case of a change in the supplier, obtain samples and validate in the lab</li>\r\n</ul>\r\n[/dt_vc_list][/vc_column_inner][vc_column_inner width=\"1/2\"][dt_vc_list dividers=\"false\"]\r\n<ul>\r\n 	<li>Income inspection carried out on every consignment (Tested for Chemical Assay &amp; Physical Properties)</li>\r\n 	<li>Quality department approval required to be used in the production</li>\r\n</ul>\r\n[/dt_vc_list][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row css=\".vc_custom_1689578794814{padding-top: 50px !important;padding-bottom: 50px !important;}\"][vc_column][ultimate_heading main_heading=\"Please contact us to start your Marketing Journey with a reliable manufacturing partnership with FARMCHEMIE\" heading_tag=\"h3\" main_heading_color=\"#079547\" sub_heading_color=\"#792c8a\" alignment=\"left\"][/ultimate_heading][vc_row_inner css=\".vc_custom_1689578812611{margin-top: 50px !important;}\"][vc_column_inner width=\"1/2\"][bsf-info-box icon_size=\"32\" title=\"International Markets\" read_more=\"more\" read_text=\"Learn More\" pos=\"square_box\" box_border_width=\"1\" title_font_color=\"#ffffff\" desc_font_color=\"#ffffff\" title_font_size=\"desktop:25px;\"]<strong>Email :</strong> <a href=\"mailto:sales.export@farmchemie.com\"><u>sales.export@farmchemie.com</u></a>\r\n<strong>Tel No :</strong> + 94 76 577 2975[/bsf-info-box][/vc_column_inner][vc_column_inner width=\"1/2\"][bsf-info-box icon_size=\"32\" title=\"Sri Lankan Market\" pos=\"square_box\" box_border_style=\"solid\" box_border_width=\"1\" box_border_color=\"#079547\" title_font_color=\"#079547\" desc_font_color=\"#792c8a\" title_font_size=\"desktop:25px;\"]Email : <a href=\"mailto:sales.local@farmchemie.com\"><u>sales.local@farmchemie.com</u></a>\r\nTel No : +94 74 224 6947[/bsf-info-box][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row full_width=\"stretch_row_content\" equal_height=\"yes\"][vc_column width=\"1/2\" css=\".vc_custom_1693540291208{background-image: url(https://farmchemie.yasithawd.com/wp-content/uploads/2023/09/02International-Markets-Sri-Lankan-Market.png?id=3379) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\"][vc_empty_space height=\"600px\"][/vc_column][vc_column width=\"1/2\" css=\".vc_custom_1693540250450{background-color: #8d499b !important;}\"][vc_cta h2=\"Sri Lankan Markets\" h2_font_container=\"tag:h2|text_align:center|color:%23ffffff\" h2_use_theme_fonts=\"yes\" txt_align=\"center\" shape=\"square\" style=\"custom\" add_button=\"bottom\" btn_title=\"Learn More\" btn_style=\"custom\" btn_custom_background=\"#ffffff\" btn_custom_text=\"#8d499b\" btn_shape=\"round\" btn_size=\"lg\" btn_align=\"center\" use_custom_fonts_h2=\"true\" custom_background=\"rgba(0,0,0,0.01)\" custom_text=\"#ffffff\" btn_link=\"url:%23\" css=\".vc_custom_1693540668043{border: 0px initial rgba(0,0,0,0.01) !important;}\"]Email : <a href=\"mailto:sales.export@farmchemie.com\">sales.export@farmchemie.com</a>\r\nTel No : + 94 76 577 2975[/vc_cta][/vc_column][/vc_row][vc_row full_width=\"stretch_row_content\" equal_height=\"yes\"][vc_column width=\"1/2\" css=\".vc_custom_1693540116474{background-color: #039447 !important;}\"][vc_cta h2=\"International Markets\" h2_font_container=\"tag:h2|text_align:center|color:%23ffffff\" h2_use_theme_fonts=\"yes\" txt_align=\"center\" shape=\"square\" style=\"custom\" add_button=\"bottom\" btn_title=\"Learn More\" btn_style=\"custom\" btn_custom_background=\"#ffffff\" btn_custom_text=\"#039447\" btn_shape=\"round\" btn_size=\"lg\" btn_align=\"center\" use_custom_fonts_h2=\"true\" custom_background=\"rgba(0,0,0,0.01)\" custom_text=\"#ffffff\" btn_link=\"url:%23\" css=\".vc_custom_1693540678907{border: 0px initial !important;}\"]Email : <a href=\"mailto:sales.export@farmchemie.com\">sales.export@farmchemie.com</a>\r\nTel No : + 94 76 577 2975[/vc_cta][/vc_column][vc_column width=\"1/2\" css=\".vc_custom_1693540312642{background-image: url(https://farmchemie.yasithawd.com/wp-content/uploads/2023/09/01International-Markets-Sri-Lankan-Market.png?id=3378) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\"][vc_empty_space height=\"600px\"][/vc_column][/vc_row]','Manufacturing','','inherit','closed','closed','','2964-revision-v1','','','2023-09-01 03:59:08','2023-09-01 03:59:08','',2964,'https://farmchemie.yasithawd.com/?p=3383',0,'revision','',0),(3240,1,'2023-08-17 13:01:13','2023-08-17 13:01:13','[vc_row full_width=\"stretch_row_content_no_spaces\"][vc_column][ultimate_heading main_heading=\"Our History\" main_heading_color=\"#762888\" alignment=\"left\"][/ultimate_heading][vc_single_image image=\"3211\" img_size=\"full\" alignment=\"center\"][/vc_column][/vc_row][vc_row disable_element=\"yes\"][vc_column][vc_row_inner css=\".vc_custom_1686713784619{margin-top: 35px !important;}\"][vc_column_inner width=\"1/3\"][vc_single_image image=\"3106\" img_size=\"full\"][/vc_column_inner][vc_column_inner width=\"2/3\"][ultimate_heading main_heading=\"Founded in 2002\" heading_tag=\"h3\" main_heading_color=\"#039447\" alignment=\"left\" sub_heading_font_size=\"desktop:18px;\"]Founded in 2002 by Mr. Uditha Wanigasinghe, an agriculturist who had a mission to aid valuable livestock producers in the country to enhance the yield and profitability of production. FARMCHEMIE introduced unprecedented solutions and consistent technical services to gain our customers’ trust and became the market leader in animal health products in 2006 within just four years.[/ultimate_heading][/vc_column_inner][/vc_row_inner][vc_row_inner rtl_reverse=\"yes\" css=\".vc_custom_1686714025469{margin-top: 35px !important;}\"][vc_column_inner width=\"2/3\"][ultimate_heading main_heading=\"2006\" heading_tag=\"h3\" main_heading_color=\"#039447\" alignment=\"left\"]In 2006, the Sri Lankan poultry industry was affected with Avian Influenza which became a difficult period for the growth of FARMCHEMIE. This was the key factor in our decision to diversify into Agro Products. PLANTCHEM &amp; PLANTSEEDS were established to offer solutions in Agro specialty fertilizers, pesticides and seeds to invaluable cultivators.[/ultimate_heading][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_single_image image=\"3107\" img_size=\"full\"][/vc_column_inner][/vc_row_inner][vc_row_inner css=\".vc_custom_1686713784619{margin-top: 35px !important;}\"][vc_column_inner width=\"1/3\"][vc_single_image image=\"3108\" img_size=\"full\"][/vc_column_inner][vc_column_inner width=\"2/3\"][ultimate_heading main_heading=\"2010\" heading_tag=\"h3\" main_heading_color=\"#039447\" alignment=\"left\"]In 2010, FEED CHEMIE became the subsequent addition to ever-growing vision of Mr. Uditha Wanigasinghe and entered the Animal Feed Additives market.[/ultimate_heading][/vc_column_inner][/vc_row_inner][vc_row_inner rtl_reverse=\"yes\" css=\".vc_custom_1686714115148{margin-top: 35px !important;}\"][vc_column_inner width=\"2/3\"][ultimate_heading main_heading=\"2012\" heading_tag=\"h3\" main_heading_color=\"#039447\" alignment=\"left\"]The year 2012 is described as a turning point in our journey as FARMCHEMIE established our first production facility for the manufacturing and packing of animal health products. FARMCHEMIE became the first animal health organization in Sri Lanka to obtain ISO 9001:2015 and WHO GMP International Quality Certification. With our own formulation unit, FARMCHEMIE was able to offer customized solutions to cater the needs of the Sri Lankan Livestock Industry.[/ultimate_heading][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_single_image image=\"3111\" img_size=\"full\"][/vc_column_inner][/vc_row_inner][vc_row_inner css=\".vc_custom_1686713784619{margin-top: 35px !important;}\"][vc_column_inner width=\"1/3\"][vc_single_image image=\"3112\" img_size=\"full\"][/vc_column_inner][vc_column_inner width=\"2/3\"][ultimate_heading main_heading=\"2016\" heading_tag=\"h3\" main_heading_color=\"#039447\" alignment=\"left\"]The year 2016 was another key milestone with the entry to the International Markets. FARMCHEMIE exported our first Feed Premix consignment to India and in 2018 our export operation was distinctly established as FARMCHEMIE MANUFACTURERS, a Board of Investment (BOI) approved entity.[/ultimate_heading][/vc_column_inner][/vc_row_inner][vc_row_inner css=\".vc_custom_1686713784619{margin-top: 35px !important;}\"][vc_column_inner width=\"2/3\"][ultimate_heading main_heading=\"Fully automated manufacturing\" heading_tag=\"h3\" main_heading_color=\"#039447\" alignment=\"left\"]FARMCHEMIE MANUFACTURERS has invested in fully automated manufacturing facility from Bühler and became the first Sri Lankan owned company to obtain FAMI-QS International Quality Certification.[/ultimate_heading][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_single_image image=\"3110\" img_size=\"full\"][/vc_column_inner][/vc_row_inner][vc_row_inner css=\".vc_custom_1686713784619{margin-top: 35px !important;}\"][vc_column_inner width=\"1/3\"][vc_single_image image=\"3116\" img_size=\"full\"][/vc_column_inner][vc_column_inner width=\"2/3\"][ultimate_heading main_heading=\"Official toll manufacturer partner\" heading_tag=\"h3\" main_heading_color=\"#039447\" alignment=\"left\"]With the trust and reputation built as a reliable manufacturer of animal feed additives and supplements in the global market, several world-renowned international brands have appointed FARMCHEMIE MANUFACTURERS as the official toll manufacturer partner. FARMCHEMIE MANUFACTURERS exports a wide range of products consisting of premixes, specialty feed additives, oral liquid supplements and pet supplements to various markets in South Asia, East Asia, Middle East and Africa.\r\n\r\nFARMCHEMIE, FEED CHEMIE &amp; FARMCHEMIE MANUFACTURERS currently operate under the ownership of our holding company, DYVESTA.\r\n\r\nDYEVSTA has become the pinnacle of Animal Nutrition and Health.\r\n\r\nDYVESTA is Dynamic, through our continuous evolution, growth and progress. DYVESTA is Diverse, in terms of both our business strategy and our community. DYVESTA is Devoted to our valuable business partners through exceptional service.[/ultimate_heading][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row full_width=\"stretch_row\" equal_height=\"yes\" bg_type=\"image\" parallax_style=\"vcpb-vz-jquery\" bg_image_new=\"id^3236|url^https://farmchemie.yasithawd.com/wp-content/uploads/2023/08/VISION-MISIONFF.png|caption^null|alt^null|title^VISION-&amp;-MISIONFF|description^null\" bg_image_repeat=\"no-repeat\" enable_overlay=\"enable_overlay_value\" overlay_color=\"#000000\" overlay_pattern=\"01.png\" overlay_pattern_opacity=\"5\" css=\".vc_custom_1692198837685{margin-top: 35px !important;padding-top: 65px !important;padding-bottom: 100px !important;}\"][vc_column][vc_row_inner equal_height=\"yes\"][vc_column_inner width=\"1/2\"][ult_animation_block animation=\"fadeInLeft\" animation_duration=\"8\" animation_delay=\"1\" animation_iteration_count=\"1\"][ultimate_heading main_heading=\"Vision\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\"]To be the customers’ first and best choice by ensuring outstanding satisfaction through a well-trained and dedicated team. Prompt and quality solutions to our customers’ requirements will determine the increase of return on investment for us.[/ultimate_heading][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/2\"][ult_animation_block animation=\"fadeInRight\" animation_duration=\"8\" animation_delay=\"1\" animation_iteration_count=\"1\"][ultimate_heading main_heading=\"Mission\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\"]To become a world renowned manufacturer of Animal Health products and a trusted partner among our stakeholders for our integrity as well as for providing effective solutions[/ultimate_heading][/ult_animation_block][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row css=\".vc_custom_1684836308288{margin-top: 15px !important;}\"][vc_column][ultimate_heading main_heading=\"Achievements\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;\"][/ultimate_heading][vc_row_inner gap=\"20\"][vc_column_inner width=\"1/2\" css=\".vc_custom_1691995519863{background-color: #f4ab20 !important;border: 1px solid #f4ab20 !important;border-radius: 35px !important;}\"][bsf-info-box icon_type=\"custom\" icon_img=\"id^3117|url^https://farmchemie.yasithawd.com/wp-content/uploads/2023/08/Pink_-H.png|caption^null|alt^null|title^Pink_-H|description^null\" img_width=\"60\" icon_style=\"advanced\" icon_border_style=\"solid\" icon_color_border=\"#ffffff\" icon_border_size=\"1\" icon_border_radius=\"500\" icon_border_spacing=\"1\" title=\"First Free Sale Certificate obtained from Veterinary Drug Control Authority (VDCA) for Veterinary Pharmaceuticals\" title_font_style=\"font-weight:bold;\" title_font_size=\"desktop:20px;\"][/bsf-info-box][/vc_column_inner][vc_column_inner width=\"1/2\" css=\".vc_custom_1691995661095{background-color: #722f8b !important;border: 1px solid #722f8b !important;border-radius: 35px !important;}\"][bsf-info-box icon_type=\"custom\" icon_img=\"id^3117|url^https://farmchemie.yasithawd.com/wp-content/uploads/2023/08/Pink_-H.png|caption^null|alt^null|title^Pink_-H|description^null\" img_width=\"60\" icon_style=\"advanced\" icon_border_style=\"solid\" icon_color_border=\"#ffffff\" icon_border_size=\"1\" icon_border_radius=\"500\" icon_border_spacing=\"1\" title=\"First ISO 9001: 2015 ,WHO-GMP Quality Management systems certified Animal Health company in Sri Lanka since August, 2012\" title_font_style=\"font-weight:bold;\" title_font_color=\"#ffffff\" title_font_size=\"desktop:20px;\"][/bsf-info-box][/vc_column_inner][/vc_row_inner][vc_row_inner gap=\"20\"][vc_column_inner width=\"1/2\" css=\".vc_custom_1691995661095{background-color: #722f8b !important;border: 1px solid #722f8b !important;border-radius: 35px !important;}\"][bsf-info-box icon_type=\"custom\" icon_img=\"id^3117|url^https://farmchemie.yasithawd.com/wp-content/uploads/2023/08/Pink_-H.png|caption^null|alt^null|title^Pink_-H|description^null\" img_width=\"60\" icon_style=\"advanced\" icon_border_style=\"solid\" icon_color_border=\"#ffffff\" icon_border_size=\"1\" icon_border_radius=\"500\" icon_border_spacing=\"1\" title=\"First FAMI-QS certified company in sri lanka\" title_font_style=\"font-weight:bold;\" title_font_color=\"#ffffff\" title_font_size=\"desktop:20px;\"][/bsf-info-box][/vc_column_inner][vc_column_inner width=\"1/2\" css=\".vc_custom_1691995519863{background-color: #f4ab20 !important;border: 1px solid #f4ab20 !important;border-radius: 35px !important;}\"][bsf-info-box icon_type=\"custom\" icon_img=\"id^3117|url^https://farmchemie.yasithawd.com/wp-content/uploads/2023/08/Pink_-H.png|caption^null|alt^null|title^Pink_-H|description^null\" img_width=\"60\" icon_style=\"advanced\" icon_border_style=\"solid\" icon_color_border=\"#ffffff\" icon_border_size=\"1\" icon_border_radius=\"500\" icon_border_spacing=\"1\" title=\"First Certificate of Ethical Trading certified in Livestock industry\" title_font_style=\"font-weight:bold;\" title_font_size=\"desktop:20px;\"][/bsf-info-box][/vc_column_inner][/vc_row_inner][vc_row_inner gap=\"20\"][vc_column_inner width=\"1/4\" css=\".vc_custom_1691996718116{border-radius: 35px !important;}\"][/vc_column_inner][vc_column_inner width=\"2/4\" css=\".vc_custom_1691995519863{background-color: #f4ab20 !important;border: 1px solid #f4ab20 !important;border-radius: 35px !important;}\"][bsf-info-box icon_type=\"custom\" icon_img=\"id^3117|url^https://farmchemie.yasithawd.com/wp-content/uploads/2023/08/Pink_-H.png|caption^null|alt^null|title^Pink_-H|description^null\" img_width=\"60\" icon_style=\"advanced\" icon_border_style=\"solid\" icon_color_border=\"#ffffff\" icon_border_size=\"1\" icon_border_radius=\"500\" icon_border_spacing=\"1\" title=\"First Silver awarded company at National Exports Awards in Livestock industry\" title_font_style=\"font-weight:bold;\" title_font_size=\"desktop:20px;\"][/bsf-info-box][/vc_column_inner][vc_column_inner width=\"1/4\"][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner width=\"1/6\"][/vc_column_inner][vc_column_inner width=\"2/3\"][vc_single_image image=\"3126\" img_size=\"full\" alignment=\"center\"][vc_single_image image=\"3125\" img_size=\"full\" alignment=\"center\"][/vc_column_inner][vc_column_inner width=\"1/6\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row][vc_column][ultimate_heading main_heading=\"Board Of Directors\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;margin-bottom:35px;\"][/ultimate_heading][ultimate_carousel slides_on_desk=\"1\" slides_on_tabs=\"1\" slides_on_mob=\"1\" arrow_style=\"square-bg\" arrow_bg_color=\"#039447\" arrow_color=\"#ffffff\" next_icon=\"ultsl-arrow-right6\" prev_icon=\"ultsl-arrow-left6\" dots_color=\"#039447\" item_animation=\"fadeIn\"][vc_row_inner][vc_column_inner width=\"1/2\"][vc_single_image image=\"3170\" img_size=\"large\" alignment=\"center\" style=\"vc_box_outline_circle_2\" border_color=\"black\" image_hovers=\"false\"][/vc_column_inner][vc_column_inner width=\"1/2\"][ultimate_heading main_heading=\"Quisque sed nibh tristique\" heading_tag=\"h3\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;\"]Duis lorem risus, aliquet a auctor a, venenatis in dui. Praesent et eros et risus dapibus placerat hendrerit cursus magna.[/ultimate_heading][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner width=\"1/2\"][vc_single_image image=\"3171\" img_size=\"large\" alignment=\"center\" style=\"vc_box_outline_circle_2\" border_color=\"black\" image_hovers=\"false\"][/vc_column_inner][vc_column_inner width=\"1/2\"][ultimate_heading main_heading=\"Quisque sed nibh tristique\" heading_tag=\"h3\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;\"]Duis lorem risus, aliquet a auctor a, venenatis in dui. Praesent et eros et risus dapibus placerat hendrerit cursus magna.[/ultimate_heading][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner width=\"1/2\"][vc_single_image image=\"3173\" img_size=\"large\" alignment=\"center\" style=\"vc_box_outline_circle_2\" border_color=\"black\" image_hovers=\"false\"][/vc_column_inner][vc_column_inner width=\"1/2\"][ultimate_heading main_heading=\"Quisque sed nibh tristique\" heading_tag=\"h3\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;\"]Duis lorem risus, aliquet a auctor a, venenatis in dui. Praesent et eros et risus dapibus placerat hendrerit cursus magna.[/ultimate_heading][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner width=\"1/2\"][vc_single_image image=\"3172\" img_size=\"large\" alignment=\"center\" style=\"vc_box_outline_circle_2\" border_color=\"black\" image_hovers=\"false\"][/vc_column_inner][vc_column_inner width=\"1/2\"][ultimate_heading main_heading=\"Quisque sed nibh tristique\" heading_tag=\"h3\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;\"]Duis lorem risus, aliquet a auctor a, venenatis in dui. Praesent et eros et risus dapibus placerat hendrerit cursus magna.[/ultimate_heading][/vc_column_inner][/vc_row_inner][/ultimate_carousel][/vc_column][/vc_row]','About us','','inherit','closed','closed','','2917-revision-v1','','','2023-08-17 13:01:13','2023-08-17 13:01:13','',2917,'https://farmchemie.yasithawd.com/?p=3240',0,'revision','',0),(3215,1,'2023-08-16 12:27:37','2023-08-16 12:27:37','[vc_row][vc_column][ultimate_heading main_heading=\"Our History\" main_heading_color=\"#762888\" alignment=\"left\"][/ultimate_heading][vc_row_inner css=\".vc_custom_1686713784619{margin-top: 35px !important;}\"][vc_column_inner width=\"1/4\"][vc_single_image image=\"3106\" img_size=\"full\"][/vc_column_inner][vc_column_inner width=\"3/4\"][ultimate_heading main_heading=\"Founded in 2002\" heading_tag=\"h3\" main_heading_color=\"#039447\" alignment=\"left\" sub_heading_font_size=\"desktop:18px;\"]Founded in 2002 by Mr. Uditha Wanigasinghe, an agriculturist who had a mission to aid valuable livestock producers in the country to enhance the yield and profitability of production. FARMCHEMIE introduced unprecedented solutions and consistent technical services to gain our customers’ trust and became the market leader in animal health products in 2006 within just four years.[/ultimate_heading][/vc_column_inner][/vc_row_inner][vc_row_inner rtl_reverse=\"yes\" css=\".vc_custom_1686714025469{margin-top: 35px !important;}\"][vc_column_inner width=\"3/4\"][ultimate_heading main_heading=\"2006\" heading_tag=\"h3\" main_heading_color=\"#039447\" alignment=\"left\"]In 2006, the Sri Lankan poultry industry was affected with Avian Influenza which became a difficult period for the growth of FARMCHEMIE. This was the key factor in our decision to diversify into Agro Products. PLANTCHEM &amp; PLANTSEEDS were established to offer solutions in Agro specialty fertilizers, pesticides and seeds to invaluable cultivators.[/ultimate_heading][/vc_column_inner][vc_column_inner width=\"1/4\"][vc_single_image image=\"3107\" img_size=\"full\"][/vc_column_inner][/vc_row_inner][vc_row_inner css=\".vc_custom_1686713784619{margin-top: 35px !important;}\"][vc_column_inner width=\"1/4\"][vc_single_image image=\"3108\" img_size=\"full\"][/vc_column_inner][vc_column_inner width=\"3/4\"][ultimate_heading main_heading=\"2010\" heading_tag=\"h3\" main_heading_color=\"#039447\" alignment=\"left\"]In 2010, FEED CHEMIE became the subsequent addition to ever-growing vision of Mr. Uditha Wanigasinghe and entered the Animal Feed Additives market.[/ultimate_heading][/vc_column_inner][/vc_row_inner][vc_row_inner rtl_reverse=\"yes\" css=\".vc_custom_1686714115148{margin-top: 35px !important;}\"][vc_column_inner width=\"3/4\"][ultimate_heading main_heading=\"2012\" heading_tag=\"h3\" main_heading_color=\"#039447\" alignment=\"left\"]The year 2012 is described as a turning point in our journey as FARMCHEMIE established our first production facility for the manufacturing and packing of animal health products. FARMCHEMIE became the first animal health organization in Sri Lanka to obtain ISO 9001:2015 and WHO GMP International Quality Certification. With our own formulation unit, FARMCHEMIE was able to offer customized solutions to cater the needs of the Sri Lankan Livestock Industry.[/ultimate_heading][/vc_column_inner][vc_column_inner width=\"1/4\"][vc_single_image image=\"3111\" img_size=\"full\"][/vc_column_inner][/vc_row_inner][vc_row_inner css=\".vc_custom_1686713784619{margin-top: 35px !important;}\"][vc_column_inner width=\"1/4\"][vc_single_image image=\"3112\" img_size=\"full\"][/vc_column_inner][vc_column_inner width=\"3/4\"][ultimate_heading main_heading=\"2016\" heading_tag=\"h3\" main_heading_color=\"#039447\" alignment=\"left\"]The year 2016 was another key milestone with the entry to the International Markets. FARMCHEMIE exported our first Feed Premix consignment to India and in 2018 our export operation was distinctly established as FARMCHEMIE MANUFACTURERS, a Board of Investment (BOI) approved entity.[/ultimate_heading][/vc_column_inner][/vc_row_inner][vc_row_inner css=\".vc_custom_1686713784619{margin-top: 35px !important;}\"][vc_column_inner width=\"3/4\"][ultimate_heading main_heading=\"Fully automated manufacturing\" heading_tag=\"h3\" main_heading_color=\"#039447\" alignment=\"left\"]FARMCHEMIE MANUFACTURERS has invested in fully automated manufacturing facility from Bühler and became the first Sri Lankan owned company to obtain FAMI-QS International Quality Certification.[/ultimate_heading][/vc_column_inner][vc_column_inner width=\"1/4\"][vc_single_image image=\"3110\" img_size=\"full\"][/vc_column_inner][/vc_row_inner][vc_row_inner css=\".vc_custom_1686713784619{margin-top: 35px !important;}\"][vc_column_inner width=\"1/4\"][vc_single_image image=\"3116\" img_size=\"full\"][/vc_column_inner][vc_column_inner width=\"3/4\"][ultimate_heading main_heading=\"Official toll manufacturer partner\" heading_tag=\"h3\" main_heading_color=\"#039447\" alignment=\"left\"]With the trust and reputation built as a reliable manufacturer of animal feed additives and supplements in the global market, several world-renowned international brands have appointed FARMCHEMIE MANUFACTURERS as the official toll manufacturer partner. FARMCHEMIE MANUFACTURERS exports a wide range of products consisting of premixes, specialty feed additives, oral liquid supplements and pet supplements to various markets in South Asia, East Asia, Middle East and Africa.\r\n\r\nFARMCHEMIE, FEED CHEMIE &amp; FARMCHEMIE MANUFACTURERS currently operate under the ownership of our holding company, DYVESTA.\r\n\r\nDYEVSTA has become the pinnacle of Animal Nutrition and Health.\r\n\r\nDYVESTA is Dynamic, through our continuous evolution, growth and progress. DYVESTA is Diverse, in terms of both our business strategy and our community. DYVESTA is Devoted to our valuable business partners through exceptional service.[/ultimate_heading][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row full_width=\"stretch_row\" equal_height=\"yes\" bg_type=\"image\" parallax_style=\"vcpb-default\" bg_image_new=\"id^2524|url^https://farmchemie.yasithawd.com/wp-content/uploads/2022/09/marketbgimg1.png|caption^null|alt^null|title^marketbgimg1|description^null\" bg_image_repeat=\"no-repeat\" enable_overlay=\"enable_overlay_value\" overlay_color=\"#000000\" overlay_pattern=\"01.png\" overlay_pattern_opacity=\"5\" css=\".vc_custom_1686720701314{margin-top: 35px !important;padding-top: 65px !important;padding-bottom: 100px !important;}\"][vc_column][vc_row_inner equal_height=\"yes\"][vc_column_inner width=\"1/2\"][ultimate_heading main_heading=\"Vision\" main_heading_color=\"#039447\" sub_heading_color=\"#039447\"]To be the customers’ first and best choice by ensuring outstanding satisfaction through a well-trained and dedicated team. Prompt and quality solutions to our customers’ requirements will determine the increase of return on investment for us.[/ultimate_heading][/vc_column_inner][vc_column_inner width=\"1/2\"][ultimate_heading main_heading=\"Mission\" main_heading_color=\"#762888\" sub_heading_color=\"#762888\"]To become a world renowned manufacturer of Animal Health products and a trusted partner among our stakeholders for our integrity as well as for providing effective solutions[/ultimate_heading][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row css=\".vc_custom_1684836308288{margin-top: 15px !important;}\"][vc_column][ultimate_heading main_heading=\"Achievements\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;\"][/ultimate_heading][vc_row_inner gap=\"20\"][vc_column_inner width=\"1/2\" css=\".vc_custom_1691995519863{background-color: #f4ab20 !important;border: 1px solid #f4ab20 !important;border-radius: 35px !important;}\"][bsf-info-box icon_type=\"custom\" icon_img=\"id^3117|url^https://farmchemie.yasithawd.com/wp-content/uploads/2023/08/Pink_-H.png|caption^null|alt^null|title^Pink_-H|description^null\" img_width=\"60\" icon_style=\"advanced\" icon_border_style=\"solid\" icon_color_border=\"#ffffff\" icon_border_size=\"1\" icon_border_radius=\"500\" icon_border_spacing=\"1\" title=\"First Free Sale Certificate obtained from Veterinary Drug Control Authority (VDCA) for Veterinary Pharmaceuticals\" title_font_style=\"font-weight:bold;\" title_font_size=\"desktop:20px;\"][/bsf-info-box][/vc_column_inner][vc_column_inner width=\"1/2\" css=\".vc_custom_1691995661095{background-color: #722f8b !important;border: 1px solid #722f8b !important;border-radius: 35px !important;}\"][bsf-info-box icon_type=\"custom\" icon_img=\"id^3117|url^https://farmchemie.yasithawd.com/wp-content/uploads/2023/08/Pink_-H.png|caption^null|alt^null|title^Pink_-H|description^null\" img_width=\"60\" icon_style=\"advanced\" icon_border_style=\"solid\" icon_color_border=\"#ffffff\" icon_border_size=\"1\" icon_border_radius=\"500\" icon_border_spacing=\"1\" title=\"First ISO 9001: 2015 ,WHO-GMP Quality Management systems certified Animal Health company in Sri Lanka since August, 2012\" title_font_style=\"font-weight:bold;\" title_font_color=\"#ffffff\" title_font_size=\"desktop:20px;\"][/bsf-info-box][/vc_column_inner][/vc_row_inner][vc_row_inner gap=\"20\"][vc_column_inner width=\"1/2\" css=\".vc_custom_1691995661095{background-color: #722f8b !important;border: 1px solid #722f8b !important;border-radius: 35px !important;}\"][bsf-info-box icon_type=\"custom\" icon_img=\"id^3117|url^https://farmchemie.yasithawd.com/wp-content/uploads/2023/08/Pink_-H.png|caption^null|alt^null|title^Pink_-H|description^null\" img_width=\"60\" icon_style=\"advanced\" icon_border_style=\"solid\" icon_color_border=\"#ffffff\" icon_border_size=\"1\" icon_border_radius=\"500\" icon_border_spacing=\"1\" title=\"First FAMI-QS certified company in sri lanka\" title_font_style=\"font-weight:bold;\" title_font_color=\"#ffffff\" title_font_size=\"desktop:20px;\"][/bsf-info-box][/vc_column_inner][vc_column_inner width=\"1/2\" css=\".vc_custom_1691995519863{background-color: #f4ab20 !important;border: 1px solid #f4ab20 !important;border-radius: 35px !important;}\"][bsf-info-box icon_type=\"custom\" icon_img=\"id^3117|url^https://farmchemie.yasithawd.com/wp-content/uploads/2023/08/Pink_-H.png|caption^null|alt^null|title^Pink_-H|description^null\" img_width=\"60\" icon_style=\"advanced\" icon_border_style=\"solid\" icon_color_border=\"#ffffff\" icon_border_size=\"1\" icon_border_radius=\"500\" icon_border_spacing=\"1\" title=\"First Certificate of Ethical Trading certified in Livestock industry\" title_font_style=\"font-weight:bold;\" title_font_size=\"desktop:20px;\"][/bsf-info-box][/vc_column_inner][/vc_row_inner][vc_row_inner gap=\"20\"][vc_column_inner width=\"1/4\" css=\".vc_custom_1691996718116{border-radius: 35px !important;}\"][/vc_column_inner][vc_column_inner width=\"2/4\" css=\".vc_custom_1691995519863{background-color: #f4ab20 !important;border: 1px solid #f4ab20 !important;border-radius: 35px !important;}\"][bsf-info-box icon_type=\"custom\" icon_img=\"id^3117|url^https://farmchemie.yasithawd.com/wp-content/uploads/2023/08/Pink_-H.png|caption^null|alt^null|title^Pink_-H|description^null\" img_width=\"60\" icon_style=\"advanced\" icon_border_style=\"solid\" icon_color_border=\"#ffffff\" icon_border_size=\"1\" icon_border_radius=\"500\" icon_border_spacing=\"1\" title=\"First Silver awarded company at National Exports Awards in Livestock industry\" title_font_style=\"font-weight:bold;\" title_font_size=\"desktop:20px;\"][/bsf-info-box][/vc_column_inner][vc_column_inner width=\"1/4\"][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner width=\"1/6\"][/vc_column_inner][vc_column_inner width=\"2/3\"][vc_single_image image=\"3126\" img_size=\"full\" alignment=\"center\"][vc_single_image image=\"3125\" img_size=\"full\" alignment=\"center\"][/vc_column_inner][vc_column_inner width=\"1/6\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row][vc_column][ultimate_heading main_heading=\"Board Of Directors\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;margin-bottom:35px;\"][/ultimate_heading][ultimate_carousel slides_on_desk=\"1\" slides_on_tabs=\"1\" slides_on_mob=\"1\" arrow_style=\"square-bg\" arrow_bg_color=\"#039447\" arrow_color=\"#ffffff\" next_icon=\"ultsl-arrow-right6\" prev_icon=\"ultsl-arrow-left6\" dots_color=\"#039447\" item_animation=\"fadeIn\"][/ultimate_carousel][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_row_inner][vc_column_inner width=\"1/2\"][vc_single_image image=\"3172\" img_size=\"large\" alignment=\"center\" style=\"vc_box_outline_circle_2\" border_color=\"black\" image_hovers=\"false\"][/vc_column_inner][vc_column_inner width=\"1/2\"][ultimate_heading main_heading=\"Quisque sed nibh tristique\" heading_tag=\"h3\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;\"]Duis lorem risus, aliquet a auctor a, venenatis in dui. Praesent et eros et risus dapibus placerat hendrerit cursus magna.[/ultimate_heading][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/2\"][vc_row_inner][vc_column_inner width=\"1/2\"][vc_single_image image=\"3173\" img_size=\"large\" alignment=\"center\" style=\"vc_box_outline_circle_2\" border_color=\"black\" image_hovers=\"false\"][/vc_column_inner][vc_column_inner width=\"1/2\"][ultimate_heading main_heading=\"Quisque sed nibh tristique\" heading_tag=\"h3\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;\"]Duis lorem risus, aliquet a auctor a, venenatis in dui. Praesent et eros et risus dapibus placerat hendrerit cursus magna.[/ultimate_heading][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_row_inner][vc_column_inner width=\"1/2\"][vc_single_image image=\"3171\" img_size=\"large\" alignment=\"center\" style=\"vc_box_outline_circle_2\" border_color=\"black\" image_hovers=\"false\"][/vc_column_inner][vc_column_inner width=\"1/2\"][ultimate_heading main_heading=\"Quisque sed nibh tristique\" heading_tag=\"h3\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;\"]Duis lorem risus, aliquet a auctor a, venenatis in dui. Praesent et eros et risus dapibus placerat hendrerit cursus magna.[/ultimate_heading][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/2\"][vc_row_inner][vc_column_inner width=\"1/2\"][vc_single_image image=\"3170\" img_size=\"large\" alignment=\"center\" style=\"vc_box_outline_circle_2\" border_color=\"black\" image_hovers=\"false\"][/vc_column_inner][vc_column_inner width=\"1/2\"][ultimate_heading main_heading=\"Quisque sed nibh tristique\" heading_tag=\"h3\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;\"]Duis lorem risus, aliquet a auctor a, venenatis in dui. Praesent et eros et risus dapibus placerat hendrerit cursus magna.[/ultimate_heading][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row]','About Us','','inherit','closed','closed','','2633-autosave-v1','','','2023-08-16 12:27:37','2023-08-16 12:27:37','',2633,'https://farmchemie.yasithawd.com/?p=3215',0,'revision','',0),(2933,1,'2023-06-14 05:21:30','2023-06-14 05:21:30','[vc_row][vc_column][ultimate_heading main_heading=\"Our History\" main_heading_color=\"#762888\" alignment=\"left\"][/ultimate_heading][vc_row_inner css=\".vc_custom_1686713784619{margin-top: 35px !important;}\"][vc_column_inner width=\"1/3\"][vc_single_image image=\"2919\" img_size=\"full\"][/vc_column_inner][vc_column_inner width=\"2/3\"][ultimate_heading main_heading=\"Founded in 2002\" heading_tag=\"h3\" main_heading_color=\"#039447\" alignment=\"left\"]Founded in 2002 by Mr. Uditha Wanigasinghe, an agriculturist who had a mission to aid valuable livestock producers in the country to enhance the yield and profitability of production. FARMCHEMIE introduced unprecedented solutions and consistent technical services to gain our customers’ trust and became the market leader in animal health products in 2006 within just four years.[/ultimate_heading][/vc_column_inner][/vc_row_inner][vc_row_inner rtl_reverse=\"yes\" css=\".vc_custom_1686714025469{margin-top: 35px !important;}\"][vc_column_inner width=\"2/3\"][ultimate_heading main_heading=\"2006\" heading_tag=\"h3\" main_heading_color=\"#039447\" alignment=\"left\"]In 2006, the Sri Lankan poultry industry was affected with Avian Influenza which became a difficult period for the growth of FARMCHEMIE. This was the key factor in our decision to diversify into Agro Products. PLANTCHEM &amp; PLANTSEEDS were established to offer solutions in Agro specialty fertilizers, pesticides and seeds to invaluable cultivators.[/ultimate_heading][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_single_image image=\"2895\" img_size=\"full\"][/vc_column_inner][/vc_row_inner][vc_row_inner css=\".vc_custom_1686713784619{margin-top: 35px !important;}\"][vc_column_inner width=\"1/3\"][vc_single_image image=\"2896\" img_size=\"full\"][/vc_column_inner][vc_column_inner width=\"2/3\"][ultimate_heading main_heading=\"2010\" heading_tag=\"h3\" main_heading_color=\"#039447\" alignment=\"left\"]In 2010, FEED CHEMIE became the subsequent addition to ever-growing vision of Mr. Uditha Wanigasinghe and entered the Animal Feed Additives market.[/ultimate_heading][/vc_column_inner][/vc_row_inner][vc_row_inner rtl_reverse=\"yes\" css=\".vc_custom_1686714115148{margin-top: 35px !important;}\"][vc_column_inner width=\"2/3\"][ultimate_heading main_heading=\"2012\" heading_tag=\"h3\" main_heading_color=\"#039447\" alignment=\"left\"]The year 2012 is described as a turning point in our journey as FARMCHEMIE established our first production facility for the manufacturing and packing of animal health products. FARMCHEMIE became the first animal health organization in Sri Lanka to obtain ISO 9001:2015 and WHO GMP International Quality Certification. With our own formulation unit, FARMCHEMIE was able to offer customized solutions to cater the needs of the Sri Lankan Livestock Industry.[/ultimate_heading][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_single_image image=\"2897\" img_size=\"full\"][/vc_column_inner][/vc_row_inner][vc_row_inner css=\".vc_custom_1686713784619{margin-top: 35px !important;}\"][vc_column_inner width=\"1/3\"][vc_single_image image=\"2898\" img_size=\"full\"][/vc_column_inner][vc_column_inner width=\"2/3\"][ultimate_heading main_heading=\"2016\" heading_tag=\"h3\" main_heading_color=\"#039447\" alignment=\"left\"]The year 2016 was another key milestone with the entry to the International Markets. FARMCHEMIE exported our first Feed Premix consignment to India and in 2018 our export operation was distinctly established as FARMCHEMIE MANUFACTURERS, a Board of Investment (BOI) approved entity.[/ultimate_heading][/vc_column_inner][/vc_row_inner][vc_row_inner css=\".vc_custom_1686713784619{margin-top: 35px !important;}\"][vc_column_inner width=\"2/3\"][ultimate_heading main_heading=\"Fully automated manufacturing\" heading_tag=\"h3\" main_heading_color=\"#039447\" alignment=\"left\"]FARMCHEMIE MANUFACTURERS has invested in fully automated manufacturing facility from Bühler and became the first Sri Lankan owned company to obtain FAMI-QS International Quality Certification.[/ultimate_heading][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_single_image image=\"2899\" img_size=\"full\"][/vc_column_inner][/vc_row_inner][vc_row_inner css=\".vc_custom_1686713784619{margin-top: 35px !important;}\"][vc_column_inner width=\"1/3\"][vc_single_image image=\"2901\" img_size=\"full\"][/vc_column_inner][vc_column_inner width=\"2/3\"][ultimate_heading main_heading=\"Official toll manufacturer partner\" heading_tag=\"h3\" main_heading_color=\"#039447\" alignment=\"left\"]With the trust and reputation built as a reliable manufacturer of animal feed additives and supplements in the global market, several world-renowned international brands have appointed FARMCHEMIE MANUFACTURERS as the official toll manufacturer partner. FARMCHEMIE MANUFACTURERS exports a wide range of products consisting of premixes, specialty feed additives, oral liquid supplements and pet supplements to various markets in South Asia, East Asia, Middle East and Africa.\r\n\r\nFARMCHEMIE, FEED CHEMIE &amp; FARMCHEMIE MANUFACTURERS currently operate under the ownership of our holding company, DYVESTA.\r\n\r\nDYEVSTA has become the pinnacle of Animal Nutrition and Health.\r\n\r\nDYVESTA is Dynamic, through our continuous evolution, growth and progress. DYVESTA is Diverse, in terms of both our business strategy and our community. DYVESTA is Devoted to our valuable business partners through exceptional service.[/ultimate_heading][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row full_width=\"stretch_row\" equal_height=\"yes\" css=\".vc_custom_1686719341668{margin-top: 35px !important;padding-top: 65px !important;padding-bottom: 100px !important;}\"][vc_column][ultimate_dual_color dual_before_txt=\"Vision \" dual_high_txt=\"Mission\" heading_tag=\"h2\" dual_color_font_style=\"font-weight:bold;\" dual_color_high_font_style=\"font-weight:bold;\" dual_ba_color=\"#039447\" dual_high_color=\"#762888\"][vc_row_inner equal_height=\"yes\" gap=\"20\"][vc_column_inner width=\"1/2\"][ultimate_heading main_heading_color=\"#039447\" sub_heading_color=\"#039447\" alignment=\"right\" margin_design_tab_text=\"\"]To be the customers’ first and best choice by ensuring outstanding satisfaction through a well-trained and dedicated team. Prompt and quality solutions to our customers’ requirements will determine the increase of return on investment for us.[/ultimate_heading][/vc_column_inner][vc_column_inner width=\"1/2\"][ultimate_heading main_heading_color=\"#762888\" sub_heading_color=\"#762888\" alignment=\"left\" margin_design_tab_text=\"\"]To become a world renowned manufacturer of Animal Health products and a trusted partner among our stakeholders for our integrity as well as for providing effective solutions[/ultimate_heading][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row css=\".vc_custom_1684836308288{margin-top: 15px !important;}\"][vc_column][ultimate_heading main_heading=\"Achievements\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;\"][/ultimate_heading][/vc_column][/vc_row]','About us','','inherit','closed','closed','','2917-revision-v1','','','2023-06-14 05:21:30','2023-06-14 05:21:30','',2917,'https://farmchemie.yasithawd.com/?p=2933',0,'revision','',0),(2917,1,'2023-06-14 03:50:23','2023-06-14 03:50:23','[vc_row full_width=\"stretch_row_content_no_spaces\"][vc_column][ultimate_heading main_heading=\"Our History\" main_heading_color=\"#762888\"][/ultimate_heading][/vc_column][/vc_row][vc_row][vc_column][vc_row_inner equal_height=\"yes\" content_placement=\"middle\" css=\".vc_custom_1692359205466{margin-top: 35px !important;}\"][vc_column_inner width=\"1/2\"][ult_animation_block animation=\"fadeInLeftBig\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][vc_single_image image=\"3273\" img_size=\"full\" alignment=\"center\" style=\"vc_box_rounded\"][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/2\"][ult_animation_block animation=\"fadeInRightBig\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][ultimate_heading main_heading=\"Founded in 2002\" heading_tag=\"h3\" main_heading_color=\"#039447\" alignment=\"left\" sub_heading_font_size=\"desktop:18px;\"]Founded in 2002 by Mr. Uditha Wanigasinghe, an agriculturist who had a mission to aid valuable livestock producers in the country to enhance the yield and profitability of production. FARMCHEMIE introduced unprecedented solutions and consistent technical services to gain our customers’ trust and became the market leader in animal health products in 2006 within just four years.[/ultimate_heading][/ult_animation_block][/vc_column_inner][/vc_row_inner][vc_separator color=\"custom\" accent_color=\"#039447\"][vc_row_inner equal_height=\"yes\" rtl_reverse=\"yes\" content_placement=\"middle\" css=\".vc_custom_1692359216075{margin-top: 35px !important;}\"][vc_column_inner width=\"1/2\" offset=\"vc_hidden-xs\"][ult_animation_block animation=\"fadeInLeftBig\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][ultimate_heading main_heading=\"2006\" heading_tag=\"h3\" main_heading_color=\"#039447\" alignment=\"right\"]In 2006, the Sri Lankan poultry industry was affected with Avian Influenza which became a difficult period for the growth of FARMCHEMIE. This was the key factor in our decision to diversify into Agro Products. PLANTCHEM &amp; PLANTSEEDS were established to offer solutions in Agro specialty fertilizers, pesticides and seeds to invaluable cultivators.[/ultimate_heading][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/2\" offset=\"vc_hidden-xs\"][ult_animation_block animation=\"fadeInRightBig\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][vc_single_image image=\"3276\" img_size=\"full\" alignment=\"center\" style=\"vc_box_rounded\"][/ult_animation_block][/vc_column_inner][/vc_row_inner][vc_row_inner equal_height=\"yes\" rtl_reverse=\"yes\" content_placement=\"middle\" css=\".vc_custom_1692359216075{margin-top: 35px !important;}\"][vc_column_inner width=\"1/2\" offset=\"vc_hidden-lg vc_hidden-md vc_hidden-sm\"][ult_animation_block animation=\"fadeInRightBig\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][vc_single_image image=\"3276\" img_size=\"full\" alignment=\"center\" style=\"vc_box_rounded\"][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/2\" offset=\"vc_hidden-lg vc_hidden-md vc_hidden-sm\"][ult_animation_block animation=\"fadeInLeftBig\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][ultimate_heading main_heading=\"2006\" heading_tag=\"h3\" main_heading_color=\"#039447\" alignment=\"left\"]\r\n\r\nIn 2006, the Sri Lankan poultry industry was affected with Avian Influenza which became a difficult period for the growth of FARMCHEMIE. This was the key factor in our decision to diversify into Agro Products. PLANTCHEM &amp; PLANTSEEDS were established to offer solutions in Agro specialty fertilizers, pesticides and seeds to invaluable cultivators.\r\n\r\n[/ultimate_heading][/ult_animation_block][/vc_column_inner][/vc_row_inner][vc_separator color=\"custom\" accent_color=\"#039447\"][vc_row_inner equal_height=\"yes\" content_placement=\"middle\" css=\".vc_custom_1692359231594{margin-top: 35px !important;}\"][vc_column_inner width=\"1/2\"][ult_animation_block animation=\"fadeInLeftBig\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][vc_single_image image=\"3277\" img_size=\"full\" alignment=\"center\" style=\"vc_box_rounded\"][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/2\"][ult_animation_block animation=\"fadeInRightBig\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][ultimate_heading main_heading=\"2010\" heading_tag=\"h3\" main_heading_color=\"#039447\" alignment=\"left\"]In 2010, FEED CHEMIE became the subsequent addition to ever-growing vision of Mr. Uditha Wanigasinghe and entered the Animal Feed Additives market.[/ultimate_heading][/ult_animation_block][/vc_column_inner][/vc_row_inner][vc_separator color=\"custom\" accent_color=\"#039447\"][vc_row_inner equal_height=\"yes\" rtl_reverse=\"yes\" content_placement=\"middle\" css=\".vc_custom_1692359239274{margin-top: 35px !important;}\"][vc_column_inner width=\"1/2\" offset=\"vc_hidden-xs\"][ult_animation_block animation=\"fadeInLeftBig\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][ultimate_heading main_heading=\"2012\" heading_tag=\"h3\" main_heading_color=\"#039447\" alignment=\"right\"]The year 2012 is described as a turning point in our journey as FARMCHEMIE established our first production facility for the manufacturing and packing of animal health products. FARMCHEMIE became the first animal health organization in Sri Lanka to obtain ISO 9001:2015 and WHO GMP International Quality Certification. With our own formulation unit, FARMCHEMIE was able to offer customized solutions to cater the needs of the Sri Lankan Livestock Industry.[/ultimate_heading][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/2\" offset=\"vc_hidden-xs\"][ult_animation_block animation=\"fadeInRightBig\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][vc_single_image image=\"3278\" img_size=\"full\" alignment=\"center\" style=\"vc_box_rounded\"][/ult_animation_block][/vc_column_inner][/vc_row_inner][vc_row_inner equal_height=\"yes\" rtl_reverse=\"yes\" content_placement=\"middle\" css=\".vc_custom_1692359239274{margin-top: 35px !important;}\"][vc_column_inner width=\"1/2\" offset=\"vc_hidden-lg vc_hidden-md vc_hidden-sm\"][ult_animation_block animation=\"fadeInRightBig\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][vc_single_image image=\"3278\" img_size=\"full\" alignment=\"center\" style=\"vc_box_rounded\"][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/2\" offset=\"vc_hidden-lg vc_hidden-md vc_hidden-sm\"][ult_animation_block animation=\"fadeInLeftBig\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][ultimate_heading main_heading=\"2012\" heading_tag=\"h3\" main_heading_color=\"#039447\" alignment=\"left\"]The year 2012 is described as a turning point in our journey as FARMCHEMIE established our first production facility for the manufacturing and packing of animal health products. FARMCHEMIE became the first animal health organization in Sri Lanka to obtain ISO 9001:2015 and WHO GMP International Quality Certification. With our own formulation unit, FARMCHEMIE was able to offer customized solutions to cater the needs of the Sri Lankan Livestock Industry.[/ultimate_heading][/ult_animation_block][/vc_column_inner][/vc_row_inner][vc_separator color=\"custom\" accent_color=\"#039447\"][vc_row_inner content_placement=\"middle\" css=\".vc_custom_1692359246626{margin-top: 35px !important;}\"][vc_column_inner width=\"1/2\"][ult_animation_block animation=\"fadeInLeftBig\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][vc_single_image image=\"3279\" img_size=\"full\" alignment=\"center\" style=\"vc_box_rounded\"][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/2\"][ult_animation_block animation=\"fadeInRightBig\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][ultimate_heading main_heading=\"2016\" heading_tag=\"h3\" main_heading_color=\"#039447\" alignment=\"left\"]The year 2016 was another key milestone with the entry to the International Markets. FARMCHEMIE exported our first Feed Premix consignment to India and in 2018 our export operation was distinctly established as FARMCHEMIE MANUFACTURERS, a Board of Investment (BOI) approved entity.[/ultimate_heading][/ult_animation_block][/vc_column_inner][/vc_row_inner][vc_separator color=\"custom\" accent_color=\"#039447\"][vc_row_inner equal_height=\"yes\" rtl_reverse=\"yes\" content_placement=\"middle\" css=\".vc_custom_1695527931440{margin-top: 35px !important;}\"][vc_column_inner width=\"1/2\" offset=\"vc_hidden-xs\"][ult_animation_block animation=\"fadeInLeftBig\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][ultimate_heading main_heading=\"Fully automated manufacturing\" heading_tag=\"h3\" main_heading_color=\"#039447\" alignment=\"right\"]FARMCHEMIE MANUFACTURERS has invested in fully automated manufacturing facility from Bühler and became the first Sri Lankan owned company to obtain FAMI-QS International Quality Certification.[/ultimate_heading][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/2\" offset=\"vc_hidden-xs\"][ult_animation_block animation=\"fadeInRightBig\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][vc_single_image image=\"3280\" img_size=\"full\" alignment=\"center\" style=\"vc_box_rounded\"][/ult_animation_block][/vc_column_inner][/vc_row_inner][vc_row_inner equal_height=\"yes\" rtl_reverse=\"yes\" content_placement=\"middle\" css=\".vc_custom_1695527931440{margin-top: 35px !important;}\"][vc_column_inner width=\"1/2\" offset=\"vc_hidden-lg vc_hidden-md vc_hidden-sm\"][ult_animation_block animation=\"fadeInRightBig\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][vc_single_image image=\"3280\" img_size=\"full\" alignment=\"center\" style=\"vc_box_rounded\"][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/2\" offset=\"vc_hidden-lg vc_hidden-md vc_hidden-sm\"][ult_animation_block animation=\"fadeInLeftBig\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][ultimate_heading main_heading=\"Fully automated manufacturing\" heading_tag=\"h3\" main_heading_color=\"#039447\" alignment=\"left\"]FARMCHEMIE MANUFACTURERS has invested in fully automated manufacturing facility from Bühler and became the first Sri Lankan owned company to obtain FAMI-QS International Quality Certification.[/ultimate_heading][/ult_animation_block][/vc_column_inner][/vc_row_inner][vc_separator color=\"custom\" accent_color=\"#039447\"][vc_row_inner equal_height=\"yes\" content_placement=\"middle\" css=\".vc_custom_1692359258634{margin-top: 35px !important;}\"][vc_column_inner width=\"1/2\"][ult_animation_block animation=\"fadeInLeftBig\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][vc_single_image image=\"3281\" img_size=\"full\" alignment=\"center\" style=\"vc_box_rounded\"][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/2\"][ult_animation_block animation=\"fadeInRightBig\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][ultimate_heading main_heading=\"Official toll manufacturer partner\" heading_tag=\"h3\" main_heading_color=\"#039447\" alignment=\"left\"]With the trust and reputation built as a reliable manufacturer of animal feed additives and supplements in the global market, several world-renowned international brands have appointed FARMCHEMIE MANUFACTURERS as the official toll manufacturer partner. FARMCHEMIE MANUFACTURERS exports a wide range of products consisting of premixes, specialty feed additives, oral liquid supplements and pet supplements to various markets in South Asia, East Asia, Middle East and Africa.\r\n\r\nFARMCHEMIE, FEED CHEMIE &amp; FARMCHEMIE MANUFACTURERS currently operate under the ownership of our holding company, DYVESTA.\r\n\r\nDYEVSTA has become the pinnacle of Animal Nutrition and Health.\r\n\r\nDYVESTA is Dynamic, through our continuous evolution, growth and progress. DYVESTA is Diverse, in terms of both our business strategy and our community. DYVESTA is Devoted to our valuable business partners through exceptional service.[/ultimate_heading][/ult_animation_block][/vc_column_inner][/vc_row_inner][vc_separator color=\"custom\" accent_color=\"#039447\"][/vc_column][/vc_row][vc_row full_width=\"stretch_row\" equal_height=\"yes\" bg_type=\"image\" parallax_style=\"vcpb-vz-jquery\" bg_image_new=\"id^3256|url^https://farmchemie.yasithawd.com/wp-content/uploads/2023/08/Vision-Mission.png|caption^null|alt^null|title^Vision-&amp;-Mission|description^null\" bg_image_repeat=\"no-repeat\" enable_overlay=\"enable_overlay_value\" overlay_color=\"#000000\" overlay_pattern=\"01.png\" overlay_pattern_opacity=\"5\" css=\".vc_custom_1692366072362{margin-top: 35px !important;padding-top: 65px !important;padding-bottom: 100px !important;}\"][vc_column][vc_row_inner equal_height=\"yes\"][vc_column_inner width=\"1/2\"][ult_animation_block animation=\"fadeInLeftBig\" animation_duration=\"2\" animation_delay=\"0\" animation_iteration_count=\"1\"][ultimate_heading main_heading=\"Vision\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\"]To be the customers’ first and best choice by ensuring outstanding satisfaction through a well-trained and dedicated team. Prompt and quality solutions to our customers’ requirements will determine the increase of return on investment for us.[/ultimate_heading][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/2\"][ult_animation_block animation=\"fadeInRightBig\" animation_duration=\"2\" animation_delay=\"0\" animation_iteration_count=\"1\"][ultimate_heading main_heading=\"Mission\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\"]To become a world renowned manufacturer of Animal Health products and a trusted partner among our stakeholders for our integrity as well as for providing effective solutions[/ultimate_heading][/ult_animation_block][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row css=\".vc_custom_1695545208125{margin-top: 15px !important;margin-bottom: 15px !important;}\"][vc_column][ultimate_heading main_heading=\"Achievements\" main_heading_color=\"#762888\" main_heading_margin=\"margin-top:35px;\"][/ultimate_heading][vc_row_inner gap=\"20\"][vc_column_inner width=\"1/2\" css=\".vc_custom_1691995519863{background-color: #f4ab20 !important;border: 1px solid #f4ab20 !important;border-radius: 35px !important;}\"][ult_animation_block animation=\"fadeInLeftBig\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][bsf-info-box icon_type=\"custom\" icon_img=\"id^3117|url^https://farmchemie.yasithawd.com/wp-content/uploads/2023/08/Pink_-H.png|caption^null|alt^null|title^Pink_-H|description^null\" img_width=\"60\" icon_style=\"advanced\" icon_border_style=\"solid\" icon_color_border=\"#ffffff\" icon_border_size=\"1\" icon_border_radius=\"500\" icon_border_spacing=\"1\" title=\"First Free Sale Certificate obtained from Veterinary Drug Control Authority (VDCA) for Veterinary Pharmaceuticals\" title_font_style=\"font-weight:bold;\" title_font_size=\"desktop:20px;\"][/bsf-info-box][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/2\" css=\".vc_custom_1691995661095{background-color: #722f8b !important;border: 1px solid #722f8b !important;border-radius: 35px !important;}\"][ult_animation_block animation=\"fadeInRightBig\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][bsf-info-box icon_type=\"custom\" icon_img=\"id^3117|url^https://farmchemie.yasithawd.com/wp-content/uploads/2023/08/Pink_-H.png|caption^null|alt^null|title^Pink_-H|description^null\" img_width=\"60\" icon_style=\"advanced\" icon_border_style=\"solid\" icon_color_border=\"#ffffff\" icon_border_size=\"1\" icon_border_radius=\"500\" icon_border_spacing=\"1\" title=\"First ISO 9001: 2015 ,WHO-GMP Quality Management systems certified Animal Health company in Sri Lanka since August, 2012\" title_font_style=\"font-weight:bold;\" title_font_color=\"#ffffff\" title_font_size=\"desktop:20px;\"][/bsf-info-box][/ult_animation_block][/vc_column_inner][/vc_row_inner][vc_row_inner gap=\"20\"][vc_column_inner width=\"1/2\" css=\".vc_custom_1691995661095{background-color: #722f8b !important;border: 1px solid #722f8b !important;border-radius: 35px !important;}\"][ult_animation_block animation=\"fadeInLeftBig\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][bsf-info-box icon_type=\"custom\" icon_img=\"id^3117|url^https://farmchemie.yasithawd.com/wp-content/uploads/2023/08/Pink_-H.png|caption^null|alt^null|title^Pink_-H|description^null\" img_width=\"60\" icon_style=\"advanced\" icon_border_style=\"solid\" icon_color_border=\"#ffffff\" icon_border_size=\"1\" icon_border_radius=\"500\" icon_border_spacing=\"1\" title=\"First FAMI-QS certified company in sri lanka\" title_font_style=\"font-weight:bold;\" title_font_color=\"#ffffff\" title_font_size=\"desktop:20px;\"][/bsf-info-box][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/2\" css=\".vc_custom_1691995519863{background-color: #f4ab20 !important;border: 1px solid #f4ab20 !important;border-radius: 35px !important;}\"][ult_animation_block animation=\"fadeInRightBig\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][bsf-info-box icon_type=\"custom\" icon_img=\"id^3117|url^https://farmchemie.yasithawd.com/wp-content/uploads/2023/08/Pink_-H.png|caption^null|alt^null|title^Pink_-H|description^null\" img_width=\"60\" icon_style=\"advanced\" icon_border_style=\"solid\" icon_color_border=\"#ffffff\" icon_border_size=\"1\" icon_border_radius=\"500\" icon_border_spacing=\"1\" title=\"First Certificate of Ethical Trading certified in Livestock industry\" title_font_style=\"font-weight:bold;\" title_font_size=\"desktop:20px;\"][/bsf-info-box][/ult_animation_block][/vc_column_inner][/vc_row_inner][vc_row_inner gap=\"20\"][vc_column_inner width=\"1/4\" css=\".vc_custom_1695528026328{border-radius: 35px !important;}\" offset=\"vc_hidden-xs\"][/vc_column_inner][vc_column_inner width=\"2/4\" css=\".vc_custom_1691995519863{background-color: #f4ab20 !important;border: 1px solid #f4ab20 !important;border-radius: 35px !important;}\"][ult_animation_block animation=\"fadeInLeftBig\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][bsf-info-box icon_type=\"custom\" icon_img=\"id^3117|url^https://farmchemie.yasithawd.com/wp-content/uploads/2023/08/Pink_-H.png|caption^null|alt^null|title^Pink_-H|description^null\" img_width=\"60\" icon_style=\"advanced\" icon_border_style=\"solid\" icon_color_border=\"#ffffff\" icon_border_size=\"1\" icon_border_radius=\"500\" icon_border_spacing=\"1\" title=\"First Silver awarded company at National Exports Awards in Livestock industry\" title_font_style=\"font-weight:bold;\" title_font_size=\"desktop:20px;\"][/bsf-info-box][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/4\" offset=\"vc_hidden-xs\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row full_width=\"stretch_row_content\" equal_height=\"yes\" content_placement=\"bottom\" css=\".vc_custom_1695531973651{margin-top: 15px !important;padding-right: 5% !important;padding-left: 5% !important;}\"][vc_column][ultimate_heading main_heading=\"Certifications\" main_heading_color=\"#762888\" main_heading_margin=\"margin-top:35px;\"][/ultimate_heading][vc_row_inner content_placement=\"bottom\"][vc_column_inner width=\"1/6\"][dt_fancy_image image_id=\"3408\" width=\"300\" caption=\"off\"][/vc_column_inner][vc_column_inner width=\"1/6\"][dt_fancy_image image_id=\"3407\" width=\"150\" caption=\"off\"][/vc_column_inner][vc_column_inner width=\"1/6\"][dt_fancy_image image_id=\"3409\" width=\"150\" caption=\"off\"][/vc_column_inner][vc_column_inner width=\"1/6\"][dt_fancy_image image_id=\"3410\" width=\"130\" caption=\"off\"][/vc_column_inner][vc_column_inner width=\"1/6\"][dt_fancy_image image_id=\"3411\" width=\"150\" caption=\"off\"][/vc_column_inner][vc_column_inner width=\"1/6\"][dt_fancy_image image_id=\"3406\" width=\"150\" caption=\"off\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row full_width=\"stretch_row\" equal_height=\"yes\" content_placement=\"bottom\" css=\".vc_custom_1693625624233{margin-top: 15px !important;}\"][vc_column][ultimate_heading main_heading=\"Awards\" main_heading_color=\"#762888\" main_heading_margin=\"margin-top:35px;\"][/ultimate_heading][ultimate_carousel slide_to_scroll=\"single\" slides_on_mob=\"1\"][dt_fancy_image image_id=\"3412\" width=\"300\"][dt_fancy_image image_id=\"3413\" width=\"300\" caption=\"off\"][dt_fancy_image image_id=\"3414\" width=\"300\" caption=\"off\"][dt_fancy_image image_id=\"3415\" width=\"300\" caption=\"off\"][dt_fancy_image image_id=\"3416\" width=\"300\" caption=\"off\"][dt_fancy_image image_id=\"3417\" width=\"300\" caption=\"off\"][dt_fancy_image image_id=\"3418\" width=\"300\" caption=\"off\"][dt_fancy_image image_id=\"3420\" width=\"300\" caption=\"off\"][dt_fancy_image image_id=\"3419\" width=\"300\" caption=\"off\"][dt_fancy_image image_id=\"3422\" width=\"300\" caption=\"off\"][dt_fancy_image image_id=\"3421\" width=\"300\" caption=\"off\"][dt_fancy_image image_id=\"3422\" width=\"300\" caption=\"off\"][dt_fancy_image image_id=\"3423\" width=\"300\" caption=\"off\"][dt_fancy_image image_id=\"3424\" width=\"300\" caption=\"off\"][dt_fancy_image image_id=\"3425\" width=\"300\" caption=\"off\"][/ultimate_carousel][/vc_column][/vc_row][vc_row disable_element=\"yes\" css=\".vc_custom_1695294608306{margin-top: 15px !important;}\"][vc_column][ultimate_heading main_heading=\"Board Of Directors\" main_heading_color=\"#762888\" main_heading_margin=\"margin-top:35px;margin-bottom:35px;\"][/ultimate_heading][ultimate_carousel slides_on_desk=\"3\" slides_on_mob=\"1\" arrow_style=\"square-bg\" arrow_bg_color=\"#039447\" arrow_color=\"#ffffff\" next_icon=\"ultsl-arrow-right6\" prev_icon=\"ultsl-arrow-left6\" dots_color=\"#039447\" item_animation=\"fadeIn\" css_ad_caraousel=\".vc_custom_1694697209111{padding-right: 10px !important;padding-left: 10px !important;}\"][vc_row_inner][vc_column_inner][ultimate_heading main_heading=\"Uditha Wanigasinghe\" heading_tag=\"h3\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;\"]Managing Director[/ultimate_heading][ultimate_modal modal_title=\"Read more\" btn_size=\"md\" btn_bg_color=\"#089548\" btn_text=\"Read more\" overlay_bg_opacity=\"75\" img_size=\"80\" btn_txt_color=\"#ffffff\"]pretium mauris pretium mauris pretium mauris pretium mauris pretium mauris pretium mauris pretium mauris pretium mauris pretium mauris pretium mauris pretium mauris pretium mauris pretium mauris pretium mauris pretium mauris pretium mauris pretium mauris pretium mauris pretium mauris pretium mauris pretium mauris pretium mauris pretium mauris pretium mauris pretium mauris pretium mauris pretium mauris pretium mauris[/ultimate_modal][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner][ultimate_heading main_heading=\"Senitha Wanigasinghe\" heading_tag=\"h3\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;\"]Director/ CEO[/ultimate_heading][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner][ultimate_heading main_heading=\"Thulitha Wanigasinghe\" heading_tag=\"h3\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;\"]Director - Veterinary Services &amp; RA[/ultimate_heading][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner][ultimate_heading main_heading=\"Yvonne Van Cuylenberg\" heading_tag=\"h3\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;\"]Director - HR &amp; Administration[/ultimate_heading][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner][ultimate_heading main_heading=\"Gamini Wanigasinghe\" heading_tag=\"h3\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;\"]Director[/ultimate_heading][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner][ultimate_heading main_heading=\"Ajith Welianga\" heading_tag=\"h3\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;\"]Director - Marketing[/ultimate_heading][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner][ultimate_heading main_heading=\"Sunil Ranjith Guruge\" heading_tag=\"h3\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;\"]Director - Customer &amp; Employee Relations[/ultimate_heading][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner][ultimate_heading main_heading=\"Sampath Gunathilake\" heading_tag=\"h3\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;\"]Director - Sales[/ultimate_heading][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner][ultimate_heading main_heading=\"Chanaka Indrajith\" heading_tag=\"h3\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;\"]Director Production / COO[/ultimate_heading][/vc_column_inner][/vc_row_inner][/ultimate_carousel][/vc_column][/vc_row][vc_row disable_element=\"yes\"][vc_column][ultimate_heading main_heading=\"Board Of Directors\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;margin-bottom:35px;\"][/ultimate_heading][vc_row_inner][vc_column_inner width=\"1/3\"][ult_animation_block animation=\"fadeInUp\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][dt_fancy_image image_id=\"3172\" width=\"300\" border_radius=\"1px\" caption=\"off\" css=\".vc_custom_1692278922309{border-top-width: 1px !important;border-right-width: 1px !important;border-bottom-width: 1px !important;border-left-width: 1px !important;border-left-color: #059444 !important;border-left-style: solid !important;border-right-color: #059444 !important;border-right-style: solid !important;border-top-color: #059444 !important;border-top-style: solid !important;border-bottom-color: #059444 !important;border-bottom-style: solid !important;border-radius: 1px !important;}\"][ultimate_heading main_heading=\"Quisque sed nibh tristique\" heading_tag=\"h3\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;\"]\r\n<ul>\r\n 	<li>Duis lorem risus, aliquet a auctor a, venenatis in dui. Praesent et eros et risus dapibus placerat hendrerit cursus magna.</li>\r\n 	<li>Praesent et eros et risus dapibus placerat hendrerit cursus magna.</li>\r\n 	<li>aliquet a auctor a, venenatis in dui.</li>\r\n</ul>\r\n[/ultimate_heading][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/3\"][ult_animation_block animation=\"fadeInDown\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][dt_fancy_image image_id=\"3171\" width=\"300\" border_radius=\"1px\" caption=\"off\" css=\".vc_custom_1692278929158{border-top-width: 1px !important;border-right-width: 1px !important;border-bottom-width: 1px !important;border-left-width: 1px !important;border-left-color: #059444 !important;border-left-style: solid !important;border-right-color: #059444 !important;border-right-style: solid !important;border-top-color: #059444 !important;border-top-style: solid !important;border-bottom-color: #059444 !important;border-bottom-style: solid !important;border-radius: 1px !important;}\"][ultimate_heading main_heading=\"Quisque sed nibh tristique\" heading_tag=\"h3\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;\"]\r\n<ul>\r\n 	<li>Duis lorem risus, aliquet a auctor a, venenatis in dui. Praesent et eros et risus dapibus placerat hendrerit cursus magna.</li>\r\n 	<li>Praesent et eros et risus dapibus placerat hendrerit cursus magna.</li>\r\n 	<li>aliquet a auctor a, venenatis in dui.</li>\r\n</ul>\r\n[/ultimate_heading][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/3\"][ult_animation_block animation=\"fadeInUp\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][dt_fancy_image image_id=\"3170\" width=\"300\" border_radius=\"1px\" caption=\"off\" css=\".vc_custom_1692278936750{border-top-width: 1px !important;border-right-width: 1px !important;border-bottom-width: 1px !important;border-left-width: 1px !important;border-left-color: #059444 !important;border-left-style: solid !important;border-right-color: #059444 !important;border-right-style: solid !important;border-top-color: #059444 !important;border-top-style: solid !important;border-bottom-color: #059444 !important;border-bottom-style: solid !important;border-radius: 1px !important;}\"][ultimate_heading main_heading=\"Quisque sed nibh tristique\" heading_tag=\"h3\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;\"]\r\n<ul>\r\n 	<li>Duis lorem risus, aliquet a auctor a, venenatis in dui. Praesent et eros et risus dapibus placerat hendrerit cursus magna.</li>\r\n 	<li>Praesent et eros et risus dapibus placerat hendrerit cursus magna.</li>\r\n 	<li>aliquet a auctor a, venenatis in dui.</li>\r\n</ul>\r\n[/ultimate_heading][/ult_animation_block][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row disable_element=\"yes\"][vc_column][ultimate_heading main_heading=\"Executive Directors\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;margin-bottom:35px;\"][/ultimate_heading][vc_row_inner][vc_column_inner width=\"1/5\"][ult_animation_block animation=\"fadeInUp\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][dt_fancy_image image_id=\"3172\" width=\"300\" border_radius=\"1px\" caption=\"off\" css=\".vc_custom_1692278922309{border-top-width: 1px !important;border-right-width: 1px !important;border-bottom-width: 1px !important;border-left-width: 1px !important;border-left-color: #059444 !important;border-left-style: solid !important;border-right-color: #059444 !important;border-right-style: solid !important;border-top-color: #059444 !important;border-top-style: solid !important;border-bottom-color: #059444 !important;border-bottom-style: solid !important;border-radius: 1px !important;}\"][ultimate_heading main_heading=\"Quisque sed nibh tristique\" heading_tag=\"h3\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;\"]\r\n<ul>\r\n 	<li>Duis lorem risus, aliquet a auctor a, venenatis in dui. Praesent et eros et risus dapibus placerat hendrerit cursus magna.</li>\r\n 	<li>Praesent et eros et risus dapibus placerat hendrerit cursus magna.</li>\r\n 	<li>aliquet a auctor a, venenatis in dui.</li>\r\n</ul>\r\n[/ultimate_heading][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/5\"][ult_animation_block animation=\"fadeInDown\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][dt_fancy_image image_id=\"3171\" width=\"300\" border_radius=\"1px\" caption=\"off\" css=\".vc_custom_1692278929158{border-top-width: 1px !important;border-right-width: 1px !important;border-bottom-width: 1px !important;border-left-width: 1px !important;border-left-color: #059444 !important;border-left-style: solid !important;border-right-color: #059444 !important;border-right-style: solid !important;border-top-color: #059444 !important;border-top-style: solid !important;border-bottom-color: #059444 !important;border-bottom-style: solid !important;border-radius: 1px !important;}\"][ultimate_heading main_heading=\"Quisque sed nibh tristique\" heading_tag=\"h3\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;\"]\r\n<ul>\r\n 	<li>Duis lorem risus, aliquet a auctor a, venenatis in dui. Praesent et eros et risus dapibus placerat hendrerit cursus magna.</li>\r\n 	<li>Praesent et eros et risus dapibus placerat hendrerit cursus magna.</li>\r\n 	<li>aliquet a auctor a, venenatis in dui.</li>\r\n</ul>\r\n[/ultimate_heading][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/5\"][ult_animation_block animation=\"fadeInUp\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][dt_fancy_image image_id=\"3170\" width=\"300\" border_radius=\"1px\" caption=\"off\" css=\".vc_custom_1692278936750{border-top-width: 1px !important;border-right-width: 1px !important;border-bottom-width: 1px !important;border-left-width: 1px !important;border-left-color: #059444 !important;border-left-style: solid !important;border-right-color: #059444 !important;border-right-style: solid !important;border-top-color: #059444 !important;border-top-style: solid !important;border-bottom-color: #059444 !important;border-bottom-style: solid !important;border-radius: 1px !important;}\"][ultimate_heading main_heading=\"Quisque sed nibh tristique\" heading_tag=\"h3\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;\"]\r\n<ul>\r\n 	<li>Duis lorem risus, aliquet a auctor a, venenatis in dui. Praesent et eros et risus dapibus placerat hendrerit cursus magna.</li>\r\n 	<li>Praesent et eros et risus dapibus placerat hendrerit cursus magna.</li>\r\n 	<li>aliquet a auctor a, venenatis in dui.</li>\r\n</ul>\r\n[/ultimate_heading][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/5\"][ult_animation_block animation=\"fadeInDown\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][dt_fancy_image image_id=\"3170\" width=\"300\" border_radius=\"1px\" caption=\"off\" css=\".vc_custom_1692278936750{border-top-width: 1px !important;border-right-width: 1px !important;border-bottom-width: 1px !important;border-left-width: 1px !important;border-left-color: #059444 !important;border-left-style: solid !important;border-right-color: #059444 !important;border-right-style: solid !important;border-top-color: #059444 !important;border-top-style: solid !important;border-bottom-color: #059444 !important;border-bottom-style: solid !important;border-radius: 1px !important;}\"][ultimate_heading main_heading=\"Quisque sed nibh tristique\" heading_tag=\"h3\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;\"]\r\n<ul>\r\n 	<li>Duis lorem risus, aliquet a auctor a, venenatis in dui. Praesent et eros et risus dapibus placerat hendrerit cursus magna.</li>\r\n 	<li>Praesent et eros et risus dapibus placerat hendrerit cursus magna.</li>\r\n 	<li>aliquet a auctor a, venenatis in dui.</li>\r\n</ul>\r\n[/ultimate_heading][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/5\"][ult_animation_block animation=\"fadeInDown\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][dt_fancy_image image_id=\"3171\" width=\"300\" border_radius=\"1px\" caption=\"off\" css=\".vc_custom_1692278929158{border-top-width: 1px !important;border-right-width: 1px !important;border-bottom-width: 1px !important;border-left-width: 1px !important;border-left-color: #059444 !important;border-left-style: solid !important;border-right-color: #059444 !important;border-right-style: solid !important;border-top-color: #059444 !important;border-top-style: solid !important;border-bottom-color: #059444 !important;border-bottom-style: solid !important;border-radius: 1px !important;}\"][ultimate_heading main_heading=\"Quisque sed nibh tristique\" heading_tag=\"h3\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;\"]\r\n<ul>\r\n 	<li>Duis lorem risus, aliquet a auctor a, venenatis in dui. Praesent et eros et risus dapibus placerat hendrerit cursus magna.</li>\r\n 	<li>Praesent et eros et risus dapibus placerat hendrerit cursus magna.</li>\r\n 	<li>aliquet a auctor a, venenatis in dui.</li>\r\n</ul>\r\n[/ultimate_heading][/ult_animation_block][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner width=\"2/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row disable_element=\"yes\"][vc_column][ultimate_heading main_heading=\"Next Generation\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;margin-bottom:35px;\"][/ultimate_heading][vc_row_inner][vc_column_inner width=\"1/2\"][ult_animation_block animation=\"fadeInUp\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][dt_fancy_image image_id=\"3172\" width=\"300\" border_radius=\"1px\" caption=\"off\" css=\".vc_custom_1692278922309{border-top-width: 1px !important;border-right-width: 1px !important;border-bottom-width: 1px !important;border-left-width: 1px !important;border-left-color: #059444 !important;border-left-style: solid !important;border-right-color: #059444 !important;border-right-style: solid !important;border-top-color: #059444 !important;border-top-style: solid !important;border-bottom-color: #059444 !important;border-bottom-style: solid !important;border-radius: 1px !important;}\"][ultimate_heading main_heading=\"Quisque sed nibh tristique\" heading_tag=\"h3\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;\"]\r\n<ul>\r\n 	<li>Duis lorem risus, aliquet a auctor a, venenatis in dui. Praesent et eros et risus dapibus placerat hendrerit cursus magna.</li>\r\n 	<li>Praesent et eros et risus dapibus placerat hendrerit cursus magna.</li>\r\n 	<li>aliquet a auctor a, venenatis in dui.</li>\r\n</ul>\r\n[/ultimate_heading][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/2\"][ult_animation_block animation=\"fadeInDown\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][dt_fancy_image image_id=\"3171\" width=\"300\" border_radius=\"1px\" caption=\"off\" css=\".vc_custom_1692278929158{border-top-width: 1px !important;border-right-width: 1px !important;border-bottom-width: 1px !important;border-left-width: 1px !important;border-left-color: #059444 !important;border-left-style: solid !important;border-right-color: #059444 !important;border-right-style: solid !important;border-top-color: #059444 !important;border-top-style: solid !important;border-bottom-color: #059444 !important;border-bottom-style: solid !important;border-radius: 1px !important;}\"][ultimate_heading main_heading=\"Quisque sed nibh tristique\" heading_tag=\"h3\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;\"]\r\n<ul>\r\n 	<li>Duis lorem risus, aliquet a auctor a, venenatis in dui. Praesent et eros et risus dapibus placerat hendrerit cursus magna.</li>\r\n 	<li>Praesent et eros et risus dapibus placerat hendrerit cursus magna.</li>\r\n 	<li>aliquet a auctor a, venenatis in dui.</li>\r\n</ul>\r\n[/ultimate_heading][/ult_animation_block][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row]','About us','','publish','closed','closed','','about-us-2','','','2023-09-24 08:46:57','2023-09-24 08:46:57','',0,'https://farmchemie.yasithawd.com/?page_id=2917',0,'page','',0),(2818,1,'2023-05-11 15:01:43','2023-05-11 15:01:43','','Canvac-R','','inherit','open','closed','','canvac-r','','','2023-05-11 15:01:43','2023-05-11 15:01:43','',0,'https://farmchemie.yasithawd.com/wp-content/uploads/2023/05/Canvac-R.png',0,'attachment','image/png',0),(2822,1,'2023-05-11 15:08:49','2023-05-11 15:08:49','','GANADEXIL-ENROFLOXACINA-5%-INJECTABLE','','inherit','open','closed','','ganadexil-enrofloxacina-5-injectable','','','2023-05-11 15:08:49','2023-05-11 15:08:49','',0,'https://farmchemie.yasithawd.com/wp-content/uploads/2023/05/GANADEXIL-ENROFLOXACINA-5-INJECTABLE.png',0,'attachment','image/png',0),(2916,1,'2023-06-12 04:15:30','2023-06-12 04:15:30','[vc_row][vc_column][ultimate_heading main_heading=\"Our History\" main_heading_color=\"#762888\" alignment=\"left\"][/ultimate_heading][icon_timeline timeline_style=\"jstime\" timeline_line_color=\"#059444\" time_sep_color=\"#059444\" time_sep_bg_color=\"#059444\"][icon_timeline_sep time_sep_title=\"Founded in 2002\" font_size=\"desktop:13px;\"][icon_timeline_feat]Founded in 2002 by Mr. Uditha Wanigasinghe, an agriculturist who had a mission to aid valuable livestock producers in the country to enhance the yield and profitability of production. FARMCHEMIE introduced unprecedented solutions and consistent technical services to gain our customers’ trust and became the market leader in animal health products in 2006 within just four years.[/icon_timeline_feat][icon_timeline_item time_title=\"2006 Sri Lankan Avian Influenza\"]<img class=\"alignnone size-medium wp-image-2895\" src=\"https://farmchemie.yasithawd.com/wp-content/uploads/2023/05/WhatsApp-Image-2023-05-16-at-2.43.25-AM-300x225.jpeg\" alt=\"\" width=\"300\" height=\"225\" />\r\n\r\nIn 2006, the Sri Lankan poultry industry was affected with Avian Influenza which became a difficult period for the growth of FARMCHEMIE. This was the key factor in our decision to diversify into Agro Products. PLANTCHEM &amp; PLANTSEEDS were established to offer solutions in Agro specialty fertilizers, pesticides and seeds to invaluable cultivators.[/icon_timeline_item][icon_timeline_item time_title=\"2010 FEED CHEMIE\"]<img class=\"alignnone size-medium wp-image-2896\" src=\"https://farmchemie.yasithawd.com/wp-content/uploads/2023/05/WhatsApp-Image-2023-05-16-at-2.43.38-AM-300x225.jpeg\" alt=\"\" width=\"300\" height=\"225\" />\r\n\r\nIn 2010, FEED CHEMIE became the subsequent addition to ever-growing vision of Mr. Uditha Wanigasinghe and entered the Animal Feed Additives market.[/icon_timeline_item][icon_timeline_item time_title=\"2012 Production facility\"]<img class=\"alignnone wp-image-2897 size-medium\" src=\"https://farmchemie.yasithawd.com/wp-content/uploads/2023/05/WhatsApp-Image-2023-05-16-at-2.43.56-AM-300x254.jpeg\" alt=\"\" width=\"300\" height=\"254\" />\r\n\r\nThe year 2012 is described as a turning point in our journey as FARMCHEMIE established our first production facility for the manufacturing and packing of animal health products. FARMCHEMIE became the first animal health organization in Sri Lanka to obtain ISO 9001:2015 and WHO GMP International Quality Certification. With our own formulation unit, FARMCHEMIE was able to offer customized solutions to cater the needs of the Sri Lankan Livestock Industry.[/icon_timeline_item][icon_timeline_item time_title=\"2016 Another key milestone\"]<img class=\"alignnone wp-image-2898 size-medium\" src=\"https://farmchemie.yasithawd.com/wp-content/uploads/2023/05/WhatsApp-Image-2023-05-16-at-2.44.00-AM-229x300.jpeg\" alt=\"\" width=\"229\" height=\"300\" />\r\n\r\nThe year 2016 was another key milestone with the entry to the International Markets. FARMCHEMIE exported our first Feed Premix consignment to India and in 2018 our export operation was distinctly established as FARMCHEMIE MANUFACTURERS, a Board of Investment (BOI) approved entity.[/icon_timeline_item][icon_timeline_feat time_title=\"invested in fully automated manufacturing facility from Bühler\"]<img class=\"alignnone wp-image-2899 size-medium\" src=\"https://farmchemie.yasithawd.com/wp-content/uploads/2023/05/WhatsApp-Image-2023-05-16-at-2.44.14-AM-300x192.jpeg\" alt=\"\" width=\"300\" height=\"192\" />\r\n\r\nFARMCHEMIE MANUFACTURERS has invested in fully automated manufacturing facility from Bühler and became the first Sri Lankan owned company to obtain FAMI-QS International Quality Certification.[/icon_timeline_feat][icon_timeline_feat time_title=\"DYEVSTA\"]<img class=\"alignnone wp-image-2901 size-medium\" src=\"https://farmchemie.yasithawd.com/wp-content/uploads/2023/05/WhatsApp-Image-2023-05-16-at-2.45.03-AM-300x59.jpeg\" alt=\"\" width=\"300\" height=\"59\" />\r\n\r\nWith the trust and reputation built as a reliable manufacturer of animal feed additives and supplements in the global market, several world-renowned international brands have appointed FARMCHEMIE MANUFACTURERS as the official toll manufacturer partner. FARMCHEMIE MANUFACTURERS exports a wide range of products consisting of premixes, specialty feed additives, oral liquid supplements and pet supplements to various markets in South Asia, East Asia, Middle East and Africa.\r\n\r\nFARMCHEMIE, FEED CHEMIE &amp; FARMCHEMIE MANUFACTURERS currently operate under the ownership of our holding company, DYVESTA.\r\n\r\nDYEVSTA has become the pinnacle of Animal Nutrition and Health.\r\n\r\nDYVESTA is Dynamic, through our continuous evolution, growth and progress. DYVESTA is Diverse, in terms of both our business strategy and our community. DYVESTA is Devoted to our valuable business partners through exceptional service.[/icon_timeline_feat][/icon_timeline][/vc_column][/vc_row][vc_row full_width=\"stretch_row_content\" equal_height=\"yes\" bg_type=\"grad\" bg_override=\"ex-full\" bg_grad=\"background: -webkit-gradient(linear, left top, left bottom, color-stop(49%, #039447), color-stop(51%, #762888));background: -moz-linear-gradient(45deg,#039447 49%,#762888 51%);background: -webkit-linear-gradient(45deg,#039447 49%,#762888 51%);background: -o-linear-gradient(45deg,#039447 49%,#762888 51%);background: -ms-linear-gradient(45deg,#039447 49%,#762888 51%);background: linear-gradient(45deg,#039447 49%,#762888 51%);\" css=\".vc_custom_1686543324238{padding-top: 35px !important;padding-bottom: 70px !important;}\"][vc_column width=\"1/2\"][ultimate_heading main_heading=\"Vision\" main_heading_color=\"#762888\" sub_heading_color=\"#ffffff\" margin_design_tab_text=\"\"]To become a world renowned manufacturer of Animal Health products and a trusted partner among our stakeholders for our integrity as well as for providing effective solutions[/ultimate_heading][/vc_column][vc_column width=\"1/2\"][ultimate_heading main_heading=\"Mission\" main_heading_color=\"#039447\" sub_heading_color=\"#ffffff\" margin_design_tab_text=\"\"]To be the customers’ first and best choice by ensuring outstanding satisfaction through a well-trained and dedicated team. Prompt and quality solutions to our customers’ requirements will determine the increase of return on investment for us.[/ultimate_heading][/vc_column][/vc_row][vc_row css=\".vc_custom_1684836308288{margin-top: 15px !important;}\"][vc_column][ultimate_heading main_heading=\"Achievements\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;\"][/ultimate_heading][/vc_column][/vc_row]','About Us','','inherit','closed','closed','','2633-revision-v1','','','2023-06-12 04:15:30','2023-06-12 04:15:30','',2633,'https://farmchemie.yasithawd.com/?p=2916',0,'revision','',0),(3386,1,'2023-09-01 04:29:46','2023-09-01 04:29:46','[vc_row full_width=\"stretch_row\" css=\".vc_custom_1689577528817{padding-bottom: 50px !important;}\"][vc_column css=\".vc_custom_1689577454678{margin-bottom: 50px !important;}\"][vc_row_inner css=\".vc_custom_1692407941633{border-bottom-width: 1px !important;border-bottom-color: #079547 !important;border-bottom-style: solid !important;border-radius: 1px !important;}\"][vc_column_inner width=\"1/2\"][ult_animation_block animation=\"fadeInLeftBig\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][ultimate_heading main_heading=\"Feed Additives\" heading_tag=\"h3\" main_heading_color=\"#079547\" sub_heading_color=\"#792c8a\" alignment=\"left\"]<strong>Premixes/ Specialty Feed Additives/ Dilution of Active Ingredients/ Concentrates</strong><strong>\r\n</strong>Pack sizes – 1,000 kg, 500 kg, 50 kg, 25 kg, 15 kg, 10 kg, 5 kg, 1kg[/ultimate_heading][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_single_image image=\"3129\" img_size=\"full\" css_animation=\"fadeInRightBig\"][/vc_column_inner][/vc_row_inner][vc_row_inner css=\".vc_custom_1692407949383{border-bottom-width: 1px !important;border-bottom-color: #079547 !important;border-bottom-style: solid !important;border-radius: 1px !important;}\"][vc_column_inner width=\"1/2\"][vc_single_image image=\"3162\" img_size=\"full\" css_animation=\"fadeInLeftBig\"][/vc_column_inner][vc_column_inner width=\"1/2\"][ult_animation_block animation=\"fadeInRightBig\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][ultimate_heading main_heading=\"Oral Supplements\" heading_tag=\"h3\" main_heading_color=\"#079547\" sub_heading_color=\"#792c8a\" alignment=\"left\"]<strong>Liquids</strong><strong>\r\n</strong>Pack sizes – 1,000 L, 250 L, 50 L, 25 L, 5 L, 1 L, 500 mL, 250 mL, 100 mL, 50 mL\r\n\r\n<strong>Water soluble powders</strong><strong>\r\n</strong>Pack sizes – 25 kg, 15 kg, 10 kg, 5 kg, 1kg[/ultimate_heading][/ult_animation_block][/vc_column_inner][/vc_row_inner][vc_row_inner css=\".vc_custom_1692407957943{border-bottom-width: 1px !important;border-bottom-color: #079547 !important;border-bottom-style: solid !important;border-radius: 1px !important;}\"][vc_column_inner width=\"1/2\"][ult_animation_block animation=\"fadeInLeftBig\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][ultimate_heading main_heading=\"Tablets\" heading_tag=\"h3\" main_heading_color=\"#079547\" sub_heading_color=\"#792c8a\" alignment=\"left\"]<strong>Supplementary tablets for pet care</strong>\r\nTablet sizes – 1 to 5 g\r\n\r\n<strong>Boluses</strong><strong>\r\n</strong>Tablet sizes – 5 to 25 g[/ultimate_heading][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_single_image image=\"3163\" img_size=\"full\" css_animation=\"fadeInRightBig\"][/vc_column_inner][/vc_row_inner][vc_row_inner css=\".vc_custom_1692407970279{border-bottom-width: 1px !important;border-bottom-color: #079547 !important;border-bottom-style: solid !important;border-radius: 1px !important;}\"][vc_column_inner width=\"1/2\"][vc_single_image image=\"3164\" img_size=\"full\" css_animation=\"fadeInLeftBig\"][/vc_column_inner][vc_column_inner width=\"1/2\"][ult_animation_block animation=\"fadeInRightBig\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][ultimate_heading main_heading=\"Veterinary Pharmaceuticals\" heading_tag=\"h3\" main_heading_color=\"#079547\" sub_heading_color=\"#792c8a\" alignment=\"left\"]<strong>Deworming Solutions/ Antibiotics/ Antimicrobials/ Wound care solutions</strong><strong>\r\n</strong>Form – Liquid, WSP[/ultimate_heading][/ult_animation_block][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row full_width=\"stretch_row_content\" css=\".vc_custom_1693451731079{padding-top: 50px !important;padding-bottom: 50px !important;}\"][vc_column][ultimate_heading main_heading=\"Our manufacturing facility is certified with FAMI-QS, WHO GMP &amp; ISO 9001:2015 International Quality standards.\" main_heading_color=\"#079547\" sub_heading_color=\"#792c8a\"]We select only the <strong><em>best</em></strong> and <strong><em>most reputed</em></strong> Raw Material &amp; Packing Material Suppliers for the production of our finished goods.[/ultimate_heading][vc_row_inner equal_height=\"yes\" content_placement=\"middle\"][vc_column_inner width=\"1/5\" offset=\"vc_hidden-lg vc_hidden-md\"][vc_single_image image=\"3062\" img_size=\"full\" alignment=\"center\"][/vc_column_inner][vc_column_inner width=\"1/5\" css=\".vc_custom_1691846530645{border-right-width: 1px !important;border-left-width: 1px !important;border-left-color: #000000 !important;border-left-style: solid !important;border-right-color: #000000 !important;border-right-style: solid !important;border-radius: 1px !important;}\" offset=\"vc_hidden-lg vc_hidden-md\"][vc_single_image image=\"3063\" img_size=\"full\" alignment=\"center\"][/vc_column_inner][vc_column_inner width=\"1/5\" offset=\"vc_hidden-lg vc_hidden-md\"][vc_single_image image=\"3064\" img_size=\"full\" alignment=\"center\"][/vc_column_inner][vc_column_inner width=\"1/5\" css=\".vc_custom_1691846545469{border-right-width: 1px !important;border-left-width: 1px !important;border-left-color: #000000 !important;border-left-style: solid !important;border-right-color: #000000 !important;border-right-style: solid !important;border-radius: 1px !important;}\" offset=\"vc_hidden-lg vc_hidden-md\"][vc_single_image image=\"3065\" img_size=\"full\" alignment=\"center\"][/vc_column_inner][vc_column_inner width=\"1/5\" offset=\"vc_hidden-lg vc_hidden-md\"][vc_single_image image=\"3066\" img_size=\"full\" alignment=\"center\"][/vc_column_inner][/vc_row_inner][vc_row_inner equal_height=\"yes\" content_placement=\"middle\"][vc_column_inner width=\"1/4\" css=\".vc_custom_1691846563021{border-right-width: 1px !important;border-right-color: #000000 !important;border-right-style: solid !important;border-radius: 1px !important;}\" offset=\"vc_hidden-lg vc_hidden-md\"][vc_single_image image=\"3067\" img_size=\"full\" alignment=\"center\"][/vc_column_inner][vc_column_inner width=\"1/4\" css=\".vc_custom_1691846569845{border-right-width: 1px !important;border-right-color: #000000 !important;border-right-style: solid !important;border-radius: 1px !important;}\" offset=\"vc_hidden-lg vc_hidden-md\"][vc_single_image image=\"3068\" img_size=\"full\" alignment=\"center\"][/vc_column_inner][vc_column_inner width=\"1/4\" css=\".vc_custom_1691846576949{border-right-width: 1px !important;border-right-color: #000000 !important;border-right-style: solid !important;border-radius: 1px !important;}\" offset=\"vc_hidden-lg vc_hidden-md\"][vc_single_image image=\"3069\" img_size=\"full\" alignment=\"center\"][/vc_column_inner][vc_column_inner width=\"1/4\" offset=\"vc_hidden-lg vc_hidden-md\"][vc_single_image image=\"3070\" img_size=\"full\" alignment=\"center\"][/vc_column_inner][/vc_row_inner][vc_row_inner disable_element=\"yes\"][vc_column_inner width=\"1/3\"][vc_single_image image=\"2981\" img_size=\"full\"][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_single_image image=\"2982\" img_size=\"full\"][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_single_image image=\"2983\" img_size=\"full\"][/vc_column_inner][/vc_row_inner][vc_row_inner disable_element=\"yes\"][vc_column_inner width=\"1/6\"][/vc_column_inner][vc_column_inner width=\"2/3\"][vc_single_image image=\"2984\" img_size=\"full\"][/vc_column_inner][vc_column_inner width=\"1/6\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row full_width=\"stretch_row_content_no_spaces\"][vc_column offset=\"vc_hidden-sm vc_hidden-xs\"][vc_single_image image=\"3120\" img_size=\"full\" alignment=\"center\"][/vc_column][/vc_row][vc_row css=\".vc_custom_1689578794814{padding-top: 50px !important;padding-bottom: 50px !important;}\"][vc_column][ultimate_heading main_heading=\"Supplier selection and procurement criteria\" main_heading_color=\"#079547\" sub_heading_color=\"#792c8a\" alignment=\"left\"][/ultimate_heading][vc_row_inner css=\".vc_custom_1689578812611{margin-top: 50px !important;}\"][vc_column_inner width=\"1/2\"][dt_vc_list dividers=\"false\"]\r\n<ul>\r\n 	<li>Check supplier’s quality certification to ensure raw material quality</li>\r\n 	<li>New vendor validation protocol - In case of a change in the supplier, obtain samples and validate in the lab</li>\r\n</ul>\r\n[/dt_vc_list][/vc_column_inner][vc_column_inner width=\"1/2\"][dt_vc_list dividers=\"false\"]\r\n<ul>\r\n 	<li>Income inspection carried out on every consignment (Tested for Chemical Assay &amp; Physical Properties)</li>\r\n 	<li>Quality department approval required to be used in the production</li>\r\n</ul>\r\n[/dt_vc_list][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row css=\".vc_custom_1689578794814{padding-top: 50px !important;padding-bottom: 50px !important;}\"][vc_column][ultimate_heading main_heading=\"Please contact us to start your Marketing Journey with a reliable manufacturing partnership with FARMCHEMIE\" heading_tag=\"h3\" main_heading_color=\"#079547\" sub_heading_color=\"#792c8a\" alignment=\"left\"][/ultimate_heading][vc_row_inner css=\".vc_custom_1689578812611{margin-top: 50px !important;}\"][vc_column_inner width=\"1/2\"][bsf-info-box icon_size=\"32\" title=\"International Markets\" read_more=\"more\" read_text=\"Learn More\" pos=\"square_box\" box_border_width=\"1\" title_font_color=\"#ffffff\" desc_font_color=\"#ffffff\" title_font_size=\"desktop:25px;\"]<strong>Email :</strong> <a href=\"mailto:sales.export@farmchemie.com\"><u>sales.export@farmchemie.com</u></a>\r\n<strong>Tel No :</strong> + 94 76 577 2975[/bsf-info-box][/vc_column_inner][vc_column_inner width=\"1/2\"][bsf-info-box icon_size=\"32\" title=\"Sri Lankan Market\" pos=\"square_box\" box_border_style=\"solid\" box_border_width=\"1\" box_border_color=\"#079547\" title_font_color=\"#079547\" desc_font_color=\"#792c8a\" title_font_size=\"desktop:25px;\"]Email : <a href=\"mailto:sales.local@farmchemie.com\"><u>sales.local@farmchemie.com</u></a>\r\nTel No : +94 74 224 6947[/bsf-info-box][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row full_width=\"stretch_row_content\" equal_height=\"yes\" content_placement=\"middle\" css=\".vc_custom_1693540932074{margin-top: 10px !important;margin-bottom: 10px !important;}\"][vc_column width=\"1/2\" css=\".vc_custom_1693540291208{background-image: url(https://farmchemie.yasithawd.com/wp-content/uploads/2023/09/02International-Markets-Sri-Lankan-Market.png?id=3379) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\"][vc_empty_space height=\"300px\"][/vc_column][vc_column width=\"1/2\" css=\".vc_custom_1693540250450{background-color: #8d499b !important;}\"][ultimate_heading main_heading=\"Sri Lankan Markets\" heading_tag=\"h3\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\"]Email : <a href=\"mailto:sales.import@farmchemie.com\">sales.import@farmchemie.com</a>\r\nTel No : + 94 76 577 2975[/ultimate_heading][/vc_column][/vc_row][vc_row full_width=\"stretch_row_content\" equal_height=\"yes\" content_placement=\"middle\"][vc_column width=\"1/2\" css=\".vc_custom_1693540116474{background-color: #039447 !important;}\"][ultimate_heading main_heading=\"International Markets\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\"]Email : <a href=\"mailto:sales.export@farmchemie.com\">sales.export@farmchemie.com</a>\r\nTel No : + 94 76 577 2975[/ultimate_heading][dt_default_button size=\"big\" button_alignment=\"btn_center\"]Read More[/dt_default_button][/vc_column][vc_column width=\"1/2\" css=\".vc_custom_1693540312642{background-image: url(https://farmchemie.yasithawd.com/wp-content/uploads/2023/09/01International-Markets-Sri-Lankan-Market.png?id=3378) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\"][vc_empty_space height=\"300px\"][/vc_column][/vc_row]','Manufacturing','','inherit','closed','closed','','2964-revision-v1','','','2023-09-01 04:29:46','2023-09-01 04:29:46','',2964,'https://farmchemie.yasithawd.com/?p=3386',0,'revision','',0),(2857,1,'2023-05-12 02:01:07','2023-05-12 02:01:07','','CEVAC-BI-L','','inherit','open','closed','','cevac-bi-l','','','2023-05-12 02:01:07','2023-05-12 02:01:07','',0,'https://farmchemie.yasithawd.com/wp-content/uploads/2023/05/CEVAC-BI-L.png',0,'attachment','image/png',0),(2859,1,'2023-05-12 02:03:57','2023-05-12 02:03:57','','CEVAC-BRON-120-L','','inherit','open','closed','','cevac-bron-120-l','','','2023-05-12 02:03:57','2023-05-12 02:03:57','',0,'https://farmchemie.yasithawd.com/wp-content/uploads/2023/05/CEVAC-BRON-120-L.png',0,'attachment','image/png',0),(2861,1,'2023-05-12 02:18:32','2023-05-12 02:18:32','','CEVITC-FP-L-WITH-DILUENT-AND-APPLICATOR','','inherit','open','closed','','cevitc-fp-l-with-diluent-and-applicator','','','2023-05-12 02:18:32','2023-05-12 02:18:32','',0,'https://farmchemie.yasithawd.com/wp-content/uploads/2023/05/CEVITC-FP-L-WITH-DILUENT-AND-APPLICATOR.png',0,'attachment','image/png',0),(2863,1,'2023-05-12 02:20:35','2023-05-12 02:20:35','','CEVAC-GUMBO-L','','inherit','open','closed','','cevac-gumbo-l','','','2023-05-12 02:20:35','2023-05-12 02:20:35','',0,'https://farmchemie.yasithawd.com/wp-content/uploads/2023/05/CEVAC-GUMBO-L.png',0,'attachment','image/png',0),(2866,1,'2023-05-12 02:22:47','2023-05-12 02:22:47','','CEVAC-IBird','','inherit','open','closed','','cevac-ibird','','','2023-05-12 02:22:47','2023-05-12 02:22:47','',0,'https://farmchemie.yasithawd.com/wp-content/uploads/2023/05/CEVAC-IBird.png',0,'attachment','image/png',0),(2868,1,'2023-05-12 02:24:18','2023-05-12 02:24:18','','Cevac-ND--IB-K','','inherit','open','closed','','cevac-nd-ib-k','','','2023-05-12 02:24:18','2023-05-12 02:24:18','',0,'https://farmchemie.yasithawd.com/wp-content/uploads/2023/05/Cevac-ND-IB-K.png',0,'attachment','image/png',0),(2870,1,'2023-05-12 02:28:15','2023-05-12 02:28:15','','CEVAC-NEW-L','','inherit','open','closed','','cevac-new-l','','','2023-05-12 02:28:15','2023-05-12 02:28:15','',0,'https://farmchemie.yasithawd.com/wp-content/uploads/2023/05/CEVAC-NEW-L.png',0,'attachment','image/png',0),(2872,1,'2023-05-12 02:32:45','2023-05-12 02:32:45','','CEVAC-TRANSMUNE','','inherit','open','closed','','cevac-transmune','','','2023-05-12 02:32:45','2023-05-12 02:32:45','',0,'https://farmchemie.yasithawd.com/wp-content/uploads/2023/05/CEVAC-TRANSMUNE.png',0,'attachment','image/png',0),(2874,1,'2023-05-12 02:35:44','2023-05-12 02:35:44','','CEVAC-VITABRON','','inherit','open','closed','','cevac-vitabron','','','2023-05-12 02:35:44','2023-05-12 02:35:44','',0,'https://farmchemie.yasithawd.com/wp-content/uploads/2023/05/CEVAC-VITABRON.png',0,'attachment','image/png',0),(2879,1,'2023-05-12 02:41:36','2023-05-12 02:41:36','','MULTIMUNE-K5','','inherit','open','closed','','multimune-k5','','','2023-05-12 02:41:36','2023-05-12 02:41:36','',0,'https://farmchemie.yasithawd.com/wp-content/uploads/2023/05/MULTIMUNE-K5.png',0,'attachment','image/png',0),(3391,1,'2023-09-01 05:11:11','2023-09-01 05:11:11','[vc_row full_width=\"stretch_row\" css=\".vc_custom_1689577528817{padding-bottom: 50px !important;}\"][vc_column css=\".vc_custom_1689577454678{margin-bottom: 50px !important;}\"][vc_row_inner css=\".vc_custom_1692407941633{border-bottom-width: 1px !important;border-bottom-color: #079547 !important;border-bottom-style: solid !important;border-radius: 1px !important;}\"][vc_column_inner width=\"1/2\"][ult_animation_block animation=\"fadeInLeftBig\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][ultimate_heading main_heading=\"Feed Additives\" heading_tag=\"h3\" main_heading_color=\"#079547\" sub_heading_color=\"#792c8a\" alignment=\"right\"]<strong>Premixes/ Specialty Feed Additives/ Dilution of Active Ingredients/ Concentrates</strong><strong>\r\n</strong>Pack sizes – 1,000 kg, 500 kg, 50 kg, 25 kg, 15 kg, 10 kg, 5 kg, 1kg[/ultimate_heading][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_single_image image=\"3129\" img_size=\"full\" css_animation=\"fadeInRightBig\"][/vc_column_inner][/vc_row_inner][vc_row_inner css=\".vc_custom_1692407949383{border-bottom-width: 1px !important;border-bottom-color: #079547 !important;border-bottom-style: solid !important;border-radius: 1px !important;}\"][vc_column_inner width=\"1/2\"][vc_single_image image=\"3162\" img_size=\"full\" css_animation=\"fadeInLeftBig\"][/vc_column_inner][vc_column_inner width=\"1/2\"][ult_animation_block animation=\"fadeInRightBig\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][ultimate_heading main_heading=\"Oral Supplements\" heading_tag=\"h3\" main_heading_color=\"#079547\" sub_heading_color=\"#792c8a\" alignment=\"left\"]<strong>Liquids</strong><strong>\r\n</strong>Pack sizes – 1,000 L, 250 L, 50 L, 25 L, 5 L, 1 L, 500 mL, 250 mL, 100 mL, 50 mL\r\n\r\n<strong>Water soluble powders</strong><strong>\r\n</strong>Pack sizes – 25 kg, 15 kg, 10 kg, 5 kg, 1kg[/ultimate_heading][/ult_animation_block][/vc_column_inner][/vc_row_inner][vc_row_inner css=\".vc_custom_1692407957943{border-bottom-width: 1px !important;border-bottom-color: #079547 !important;border-bottom-style: solid !important;border-radius: 1px !important;}\"][vc_column_inner width=\"1/2\"][ult_animation_block animation=\"fadeInLeftBig\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][ultimate_heading main_heading=\"Tablets\" heading_tag=\"h3\" main_heading_color=\"#079547\" sub_heading_color=\"#792c8a\" alignment=\"right\"]<strong>Supplementary tablets for pet care</strong>\r\nTablet sizes – 1 to 5 g\r\n\r\n<strong>Boluses</strong><strong>\r\n</strong>Tablet sizes – 5 to 25 g[/ultimate_heading][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_single_image image=\"3163\" img_size=\"full\" css_animation=\"fadeInRightBig\"][/vc_column_inner][/vc_row_inner][vc_row_inner css=\".vc_custom_1692407970279{border-bottom-width: 1px !important;border-bottom-color: #079547 !important;border-bottom-style: solid !important;border-radius: 1px !important;}\"][vc_column_inner width=\"1/2\"][vc_single_image image=\"3164\" img_size=\"full\" css_animation=\"fadeInLeftBig\"][/vc_column_inner][vc_column_inner width=\"1/2\"][ult_animation_block animation=\"fadeInRightBig\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][ultimate_heading main_heading=\"Veterinary Pharmaceuticals\" heading_tag=\"h3\" main_heading_color=\"#079547\" sub_heading_color=\"#792c8a\" alignment=\"left\"]<strong>Deworming Solutions/ Antibiotics/ Antimicrobials/ Wound care solutions</strong><strong>\r\n</strong>Form – Liquid, WSP[/ultimate_heading][/ult_animation_block][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row full_width=\"stretch_row_content\" css=\".vc_custom_1693451731079{padding-top: 50px !important;padding-bottom: 50px !important;}\"][vc_column][ultimate_heading main_heading=\"Our manufacturing facility is certified with FAMI-QS, WHO GMP &amp; ISO 9001:2015 International Quality standards.\" main_heading_color=\"#079547\" sub_heading_color=\"#792c8a\"]We select only the <strong><em>best</em></strong> and <strong><em>most reputed</em></strong> Raw Material &amp; Packing Material Suppliers for the production of our finished goods.[/ultimate_heading][vc_row_inner equal_height=\"yes\" content_placement=\"middle\"][vc_column_inner width=\"1/5\" offset=\"vc_hidden-lg vc_hidden-md\"][vc_single_image image=\"3062\" img_size=\"full\" alignment=\"center\"][/vc_column_inner][vc_column_inner width=\"1/5\" css=\".vc_custom_1691846530645{border-right-width: 1px !important;border-left-width: 1px !important;border-left-color: #000000 !important;border-left-style: solid !important;border-right-color: #000000 !important;border-right-style: solid !important;border-radius: 1px !important;}\" offset=\"vc_hidden-lg vc_hidden-md\"][vc_single_image image=\"3063\" img_size=\"full\" alignment=\"center\"][/vc_column_inner][vc_column_inner width=\"1/5\" offset=\"vc_hidden-lg vc_hidden-md\"][vc_single_image image=\"3064\" img_size=\"full\" alignment=\"center\"][/vc_column_inner][vc_column_inner width=\"1/5\" css=\".vc_custom_1691846545469{border-right-width: 1px !important;border-left-width: 1px !important;border-left-color: #000000 !important;border-left-style: solid !important;border-right-color: #000000 !important;border-right-style: solid !important;border-radius: 1px !important;}\" offset=\"vc_hidden-lg vc_hidden-md\"][vc_single_image image=\"3065\" img_size=\"full\" alignment=\"center\"][/vc_column_inner][vc_column_inner width=\"1/5\" offset=\"vc_hidden-lg vc_hidden-md\"][vc_single_image image=\"3066\" img_size=\"full\" alignment=\"center\"][/vc_column_inner][/vc_row_inner][vc_row_inner equal_height=\"yes\" content_placement=\"middle\"][vc_column_inner width=\"1/4\" css=\".vc_custom_1691846563021{border-right-width: 1px !important;border-right-color: #000000 !important;border-right-style: solid !important;border-radius: 1px !important;}\" offset=\"vc_hidden-lg vc_hidden-md\"][vc_single_image image=\"3067\" img_size=\"full\" alignment=\"center\"][/vc_column_inner][vc_column_inner width=\"1/4\" css=\".vc_custom_1691846569845{border-right-width: 1px !important;border-right-color: #000000 !important;border-right-style: solid !important;border-radius: 1px !important;}\" offset=\"vc_hidden-lg vc_hidden-md\"][vc_single_image image=\"3068\" img_size=\"full\" alignment=\"center\"][/vc_column_inner][vc_column_inner width=\"1/4\" css=\".vc_custom_1691846576949{border-right-width: 1px !important;border-right-color: #000000 !important;border-right-style: solid !important;border-radius: 1px !important;}\" offset=\"vc_hidden-lg vc_hidden-md\"][vc_single_image image=\"3069\" img_size=\"full\" alignment=\"center\"][/vc_column_inner][vc_column_inner width=\"1/4\" offset=\"vc_hidden-lg vc_hidden-md\"][vc_single_image image=\"3070\" img_size=\"full\" alignment=\"center\"][/vc_column_inner][/vc_row_inner][vc_row_inner disable_element=\"yes\"][vc_column_inner width=\"1/3\"][vc_single_image image=\"2981\" img_size=\"full\"][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_single_image image=\"2982\" img_size=\"full\"][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_single_image image=\"2983\" img_size=\"full\"][/vc_column_inner][/vc_row_inner][vc_row_inner disable_element=\"yes\"][vc_column_inner width=\"1/6\"][/vc_column_inner][vc_column_inner width=\"2/3\"][vc_single_image image=\"2984\" img_size=\"full\"][/vc_column_inner][vc_column_inner width=\"1/6\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row full_width=\"stretch_row_content_no_spaces\"][vc_column offset=\"vc_hidden-sm vc_hidden-xs\"][vc_single_image image=\"3120\" img_size=\"full\" alignment=\"center\"][/vc_column][/vc_row][vc_row css=\".vc_custom_1689578794814{padding-top: 50px !important;padding-bottom: 50px !important;}\"][vc_column][ultimate_heading main_heading=\"Supplier selection and procurement criteria\" main_heading_color=\"#079547\" sub_heading_color=\"#792c8a\" alignment=\"left\"][/ultimate_heading][vc_row_inner css=\".vc_custom_1689578812611{margin-top: 50px !important;}\"][vc_column_inner width=\"1/2\"][dt_vc_list dividers=\"false\"]\r\n<ul>\r\n 	<li>Check supplier’s quality certification to ensure raw material quality</li>\r\n 	<li>New vendor validation protocol - In case of a change in the supplier, obtain samples and validate in the lab</li>\r\n</ul>\r\n[/dt_vc_list][/vc_column_inner][vc_column_inner width=\"1/2\"][dt_vc_list dividers=\"false\"]\r\n<ul>\r\n 	<li>Income inspection carried out on every consignment (Tested for Chemical Assay &amp; Physical Properties)</li>\r\n 	<li>Quality department approval required to be used in the production</li>\r\n</ul>\r\n[/dt_vc_list][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row css=\".vc_custom_1689578794814{padding-top: 50px !important;padding-bottom: 50px !important;}\"][vc_column][ultimate_heading main_heading=\"Please contact us to start your Marketing Journey with a reliable manufacturing partnership with FARMCHEMIE\" heading_tag=\"h3\" main_heading_color=\"#079547\" sub_heading_color=\"#792c8a\" alignment=\"left\"][/ultimate_heading][/vc_column][/vc_row][vc_row full_width=\"stretch_row_content\" equal_height=\"yes\" content_placement=\"middle\"][vc_column width=\"1/2\" css=\".vc_custom_1693540291208{background-image: url(https://farmchemie.yasithawd.com/wp-content/uploads/2023/09/02International-Markets-Sri-Lankan-Market.png?id=3379) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\"][vc_empty_space height=\"400px\"][/vc_column][vc_column width=\"1/2\" css=\".vc_custom_1693540250450{background-color: #8d499b !important;}\"][ultimate_heading main_heading=\"Sri Lankan Markets\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\"]Email : <a href=\"mailto:sales.import@farmchemie.com\">sales.import@farmchemie.com</a>\r\nTel No : + 94 76 577 2975[/ultimate_heading][dt_default_button size=\"big\" button_alignment=\"btn_center\"]Read More[/dt_default_button][/vc_column][/vc_row][vc_row full_width=\"stretch_row_content\" equal_height=\"yes\" content_placement=\"middle\"][vc_column width=\"1/2\" css=\".vc_custom_1693540116474{background-color: #039447 !important;}\"][ultimate_heading main_heading=\"International Markets\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\"]Email : <a href=\"mailto:sales.export@farmchemie.com\">sales.export@farmchemie.com</a>\r\nTel No : + 94 76 577 2975[/ultimate_heading][dt_default_button size=\"big\" button_alignment=\"btn_center\"]Read More[/dt_default_button][/vc_column][vc_column width=\"1/2\" css=\".vc_custom_1693540312642{background-image: url(https://farmchemie.yasithawd.com/wp-content/uploads/2023/09/01International-Markets-Sri-Lankan-Market.png?id=3378) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\"][vc_empty_space height=\"400px\"][/vc_column][/vc_row]','Manufacturing','','inherit','closed','closed','','2964-revision-v1','','','2023-09-01 05:11:11','2023-09-01 05:11:11','',2964,'https://farmchemie.yasithawd.com/?p=3391',0,'revision','',0),(3387,1,'2023-09-01 04:33:42','2023-09-01 04:33:42','[vc_row full_width=\"stretch_row\" css=\".vc_custom_1689577528817{padding-bottom: 50px !important;}\"][vc_column css=\".vc_custom_1689577454678{margin-bottom: 50px !important;}\"][vc_row_inner css=\".vc_custom_1692407941633{border-bottom-width: 1px !important;border-bottom-color: #079547 !important;border-bottom-style: solid !important;border-radius: 1px !important;}\"][vc_column_inner width=\"1/2\"][ult_animation_block animation=\"fadeInLeftBig\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][ultimate_heading main_heading=\"Feed Additives\" heading_tag=\"h3\" main_heading_color=\"#079547\" sub_heading_color=\"#792c8a\" alignment=\"left\"]<strong>Premixes/ Specialty Feed Additives/ Dilution of Active Ingredients/ Concentrates</strong><strong>\r\n</strong>Pack sizes – 1,000 kg, 500 kg, 50 kg, 25 kg, 15 kg, 10 kg, 5 kg, 1kg[/ultimate_heading][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_single_image image=\"3129\" img_size=\"full\" css_animation=\"fadeInRightBig\"][/vc_column_inner][/vc_row_inner][vc_row_inner css=\".vc_custom_1692407949383{border-bottom-width: 1px !important;border-bottom-color: #079547 !important;border-bottom-style: solid !important;border-radius: 1px !important;}\"][vc_column_inner width=\"1/2\"][vc_single_image image=\"3162\" img_size=\"full\" css_animation=\"fadeInLeftBig\"][/vc_column_inner][vc_column_inner width=\"1/2\"][ult_animation_block animation=\"fadeInRightBig\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][ultimate_heading main_heading=\"Oral Supplements\" heading_tag=\"h3\" main_heading_color=\"#079547\" sub_heading_color=\"#792c8a\" alignment=\"left\"]<strong>Liquids</strong><strong>\r\n</strong>Pack sizes – 1,000 L, 250 L, 50 L, 25 L, 5 L, 1 L, 500 mL, 250 mL, 100 mL, 50 mL\r\n\r\n<strong>Water soluble powders</strong><strong>\r\n</strong>Pack sizes – 25 kg, 15 kg, 10 kg, 5 kg, 1kg[/ultimate_heading][/ult_animation_block][/vc_column_inner][/vc_row_inner][vc_row_inner css=\".vc_custom_1692407957943{border-bottom-width: 1px !important;border-bottom-color: #079547 !important;border-bottom-style: solid !important;border-radius: 1px !important;}\"][vc_column_inner width=\"1/2\"][ult_animation_block animation=\"fadeInLeftBig\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][ultimate_heading main_heading=\"Tablets\" heading_tag=\"h3\" main_heading_color=\"#079547\" sub_heading_color=\"#792c8a\" alignment=\"left\"]<strong>Supplementary tablets for pet care</strong>\r\nTablet sizes – 1 to 5 g\r\n\r\n<strong>Boluses</strong><strong>\r\n</strong>Tablet sizes – 5 to 25 g[/ultimate_heading][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_single_image image=\"3163\" img_size=\"full\" css_animation=\"fadeInRightBig\"][/vc_column_inner][/vc_row_inner][vc_row_inner css=\".vc_custom_1692407970279{border-bottom-width: 1px !important;border-bottom-color: #079547 !important;border-bottom-style: solid !important;border-radius: 1px !important;}\"][vc_column_inner width=\"1/2\"][vc_single_image image=\"3164\" img_size=\"full\" css_animation=\"fadeInLeftBig\"][/vc_column_inner][vc_column_inner width=\"1/2\"][ult_animation_block animation=\"fadeInRightBig\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][ultimate_heading main_heading=\"Veterinary Pharmaceuticals\" heading_tag=\"h3\" main_heading_color=\"#079547\" sub_heading_color=\"#792c8a\" alignment=\"left\"]<strong>Deworming Solutions/ Antibiotics/ Antimicrobials/ Wound care solutions</strong><strong>\r\n</strong>Form – Liquid, WSP[/ultimate_heading][/ult_animation_block][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row full_width=\"stretch_row_content\" css=\".vc_custom_1693451731079{padding-top: 50px !important;padding-bottom: 50px !important;}\"][vc_column][ultimate_heading main_heading=\"Our manufacturing facility is certified with FAMI-QS, WHO GMP &amp; ISO 9001:2015 International Quality standards.\" main_heading_color=\"#079547\" sub_heading_color=\"#792c8a\"]We select only the <strong><em>best</em></strong> and <strong><em>most reputed</em></strong> Raw Material &amp; Packing Material Suppliers for the production of our finished goods.[/ultimate_heading][vc_row_inner equal_height=\"yes\" content_placement=\"middle\"][vc_column_inner width=\"1/5\" offset=\"vc_hidden-lg vc_hidden-md\"][vc_single_image image=\"3062\" img_size=\"full\" alignment=\"center\"][/vc_column_inner][vc_column_inner width=\"1/5\" css=\".vc_custom_1691846530645{border-right-width: 1px !important;border-left-width: 1px !important;border-left-color: #000000 !important;border-left-style: solid !important;border-right-color: #000000 !important;border-right-style: solid !important;border-radius: 1px !important;}\" offset=\"vc_hidden-lg vc_hidden-md\"][vc_single_image image=\"3063\" img_size=\"full\" alignment=\"center\"][/vc_column_inner][vc_column_inner width=\"1/5\" offset=\"vc_hidden-lg vc_hidden-md\"][vc_single_image image=\"3064\" img_size=\"full\" alignment=\"center\"][/vc_column_inner][vc_column_inner width=\"1/5\" css=\".vc_custom_1691846545469{border-right-width: 1px !important;border-left-width: 1px !important;border-left-color: #000000 !important;border-left-style: solid !important;border-right-color: #000000 !important;border-right-style: solid !important;border-radius: 1px !important;}\" offset=\"vc_hidden-lg vc_hidden-md\"][vc_single_image image=\"3065\" img_size=\"full\" alignment=\"center\"][/vc_column_inner][vc_column_inner width=\"1/5\" offset=\"vc_hidden-lg vc_hidden-md\"][vc_single_image image=\"3066\" img_size=\"full\" alignment=\"center\"][/vc_column_inner][/vc_row_inner][vc_row_inner equal_height=\"yes\" content_placement=\"middle\"][vc_column_inner width=\"1/4\" css=\".vc_custom_1691846563021{border-right-width: 1px !important;border-right-color: #000000 !important;border-right-style: solid !important;border-radius: 1px !important;}\" offset=\"vc_hidden-lg vc_hidden-md\"][vc_single_image image=\"3067\" img_size=\"full\" alignment=\"center\"][/vc_column_inner][vc_column_inner width=\"1/4\" css=\".vc_custom_1691846569845{border-right-width: 1px !important;border-right-color: #000000 !important;border-right-style: solid !important;border-radius: 1px !important;}\" offset=\"vc_hidden-lg vc_hidden-md\"][vc_single_image image=\"3068\" img_size=\"full\" alignment=\"center\"][/vc_column_inner][vc_column_inner width=\"1/4\" css=\".vc_custom_1691846576949{border-right-width: 1px !important;border-right-color: #000000 !important;border-right-style: solid !important;border-radius: 1px !important;}\" offset=\"vc_hidden-lg vc_hidden-md\"][vc_single_image image=\"3069\" img_size=\"full\" alignment=\"center\"][/vc_column_inner][vc_column_inner width=\"1/4\" offset=\"vc_hidden-lg vc_hidden-md\"][vc_single_image image=\"3070\" img_size=\"full\" alignment=\"center\"][/vc_column_inner][/vc_row_inner][vc_row_inner disable_element=\"yes\"][vc_column_inner width=\"1/3\"][vc_single_image image=\"2981\" img_size=\"full\"][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_single_image image=\"2982\" img_size=\"full\"][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_single_image image=\"2983\" img_size=\"full\"][/vc_column_inner][/vc_row_inner][vc_row_inner disable_element=\"yes\"][vc_column_inner width=\"1/6\"][/vc_column_inner][vc_column_inner width=\"2/3\"][vc_single_image image=\"2984\" img_size=\"full\"][/vc_column_inner][vc_column_inner width=\"1/6\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row full_width=\"stretch_row_content_no_spaces\"][vc_column offset=\"vc_hidden-sm vc_hidden-xs\"][vc_single_image image=\"3120\" img_size=\"full\" alignment=\"center\"][/vc_column][/vc_row][vc_row css=\".vc_custom_1689578794814{padding-top: 50px !important;padding-bottom: 50px !important;}\"][vc_column][ultimate_heading main_heading=\"Supplier selection and procurement criteria\" main_heading_color=\"#079547\" sub_heading_color=\"#792c8a\" alignment=\"left\"][/ultimate_heading][vc_row_inner css=\".vc_custom_1689578812611{margin-top: 50px !important;}\"][vc_column_inner width=\"1/2\"][dt_vc_list dividers=\"false\"]\r\n<ul>\r\n 	<li>Check supplier’s quality certification to ensure raw material quality</li>\r\n 	<li>New vendor validation protocol - In case of a change in the supplier, obtain samples and validate in the lab</li>\r\n</ul>\r\n[/dt_vc_list][/vc_column_inner][vc_column_inner width=\"1/2\"][dt_vc_list dividers=\"false\"]\r\n<ul>\r\n 	<li>Income inspection carried out on every consignment (Tested for Chemical Assay &amp; Physical Properties)</li>\r\n 	<li>Quality department approval required to be used in the production</li>\r\n</ul>\r\n[/dt_vc_list][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row css=\".vc_custom_1689578794814{padding-top: 50px !important;padding-bottom: 50px !important;}\"][vc_column][ultimate_heading main_heading=\"Please contact us to start your Marketing Journey with a reliable manufacturing partnership with FARMCHEMIE\" heading_tag=\"h3\" main_heading_color=\"#079547\" sub_heading_color=\"#792c8a\" alignment=\"left\"][/ultimate_heading][vc_row_inner css=\".vc_custom_1689578812611{margin-top: 50px !important;}\"][vc_column_inner width=\"1/2\"][bsf-info-box icon_size=\"32\" title=\"International Markets\" read_more=\"more\" read_text=\"Learn More\" pos=\"square_box\" box_border_width=\"1\" title_font_color=\"#ffffff\" desc_font_color=\"#ffffff\" title_font_size=\"desktop:25px;\"]<strong>Email :</strong> <a href=\"mailto:sales.export@farmchemie.com\"><u>sales.export@farmchemie.com</u></a>\r\n<strong>Tel No :</strong> + 94 76 577 2975[/bsf-info-box][/vc_column_inner][vc_column_inner width=\"1/2\"][bsf-info-box icon_size=\"32\" title=\"Sri Lankan Market\" pos=\"square_box\" box_border_style=\"solid\" box_border_width=\"1\" box_border_color=\"#079547\" title_font_color=\"#079547\" desc_font_color=\"#792c8a\" title_font_size=\"desktop:25px;\"]Email : <a href=\"mailto:sales.local@farmchemie.com\"><u>sales.local@farmchemie.com</u></a>\r\nTel No : +94 74 224 6947[/bsf-info-box][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row full_width=\"stretch_row_content\" equal_height=\"yes\" content_placement=\"middle\" css=\".vc_custom_1693540932074{margin-top: 10px !important;margin-bottom: 10px !important;}\"][vc_column width=\"1/2\" css=\".vc_custom_1693540291208{background-image: url(https://farmchemie.yasithawd.com/wp-content/uploads/2023/09/02International-Markets-Sri-Lankan-Market.png?id=3379) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\"][vc_empty_space height=\"300px\"][/vc_column][vc_column width=\"1/2\" css=\".vc_custom_1693540250450{background-color: #8d499b !important;}\"][ultimate_heading main_heading=\"Sri Lankan Markets\" heading_tag=\"h3\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\"]Email : <a href=\"mailto:sales.import@farmchemie.com\">sales.import@farmchemie.com</a>\r\nTel No : + 94 76 577 2975[/ultimate_heading][dt_default_button size=\"big\" button_alignment=\"btn_center\"]Read More[/dt_default_button][/vc_column][/vc_row][vc_row full_width=\"stretch_row_content\" equal_height=\"yes\" content_placement=\"middle\"][vc_column width=\"1/2\" css=\".vc_custom_1693540116474{background-color: #039447 !important;}\"][ultimate_heading main_heading=\"International Markets\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\"]Email : <a href=\"mailto:sales.export@farmchemie.com\">sales.export@farmchemie.com</a>\r\nTel No : + 94 76 577 2975[/ultimate_heading][dt_default_button size=\"big\" button_alignment=\"btn_center\"]Read More[/dt_default_button][/vc_column][vc_column width=\"1/2\" css=\".vc_custom_1693540312642{background-image: url(https://farmchemie.yasithawd.com/wp-content/uploads/2023/09/01International-Markets-Sri-Lankan-Market.png?id=3378) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\"][vc_empty_space height=\"300px\"][/vc_column][/vc_row]','Manufacturing','','inherit','closed','closed','','2964-revision-v1','','','2023-09-01 04:33:42','2023-09-01 04:33:42','',2964,'https://farmchemie.yasithawd.com/?p=3387',0,'revision','',0),(2935,1,'2023-09-11 10:41:48','2023-06-14 12:26:43','','Manufacturing','','publish','closed','closed','','manufacturing','','','2023-09-11 10:41:48','2023-09-11 10:41:48','',0,'https://farmchemie.yasithawd.com/?p=2935',9,'nav_menu_item','',0),(2894,1,'2023-05-15 08:26:27','2023-05-15 08:26:27','','VECTORMUNE-FP-MG-AE','','inherit','open','closed','','vectormune-fp-mg-ae','','','2023-05-15 08:26:27','2023-05-15 08:26:27','',0,'https://farmchemie.yasithawd.com/wp-content/uploads/2023/05/VECTORMUNE-FP-MG-AE.png',0,'attachment','image/png',0),(2897,1,'2023-05-19 05:27:37','2023-05-19 05:27:37','','WhatsApp Image 2023-05-16 at 2.43.56 AM','','inherit','open','closed','','whatsapp-image-2023-05-16-at-2-43-56-am','','','2023-05-19 05:27:37','2023-05-19 05:27:37','',2633,'https://farmchemie.yasithawd.com/wp-content/uploads/2023/05/WhatsApp-Image-2023-05-16-at-2.43.56-AM.jpeg',0,'attachment','image/jpeg',0),(2898,1,'2023-05-19 05:29:08','2023-05-19 05:29:08','','WhatsApp Image 2023-05-16 at 2.44.00 AM','','inherit','open','closed','','whatsapp-image-2023-05-16-at-2-44-00-am','','','2023-05-19 05:29:08','2023-05-19 05:29:08','',2633,'https://farmchemie.yasithawd.com/wp-content/uploads/2023/05/WhatsApp-Image-2023-05-16-at-2.44.00-AM.jpeg',0,'attachment','image/jpeg',0),(2899,1,'2023-05-19 05:30:22','2023-05-19 05:30:22','','WhatsApp Image 2023-05-16 at 2.44.14 AM','','inherit','open','closed','','whatsapp-image-2023-05-16-at-2-44-14-am','','','2023-05-19 05:30:22','2023-05-19 05:30:22','',2633,'https://farmchemie.yasithawd.com/wp-content/uploads/2023/05/WhatsApp-Image-2023-05-16-at-2.44.14-AM.jpeg',0,'attachment','image/jpeg',0),(2900,1,'2023-05-19 05:33:44','2023-05-19 05:33:44','[vc_row][vc_column][ultimate_heading main_heading=\"Our History\" alignment=\"left\"][/ultimate_heading][icon_timeline timeline_line_color=\"#059444\" time_sep_color=\"#059444\" time_sep_bg_color=\"#059444\"][icon_timeline_sep time_sep_title=\"Founded in 2002\"][icon_timeline_feat]Founded in 2002 by Mr. Uditha Wanigasinghe, an agriculturist who had a mission to aid valuable livestock producers in the country to enhance the yield and profitability of production. FARMCHEMIE introduced unprecedented solutions and consistent technical services to gain our customers’ trust and became the market leader in animal health products in 2006 within just four years.[/icon_timeline_feat][icon_timeline_item time_title=\"2006 Sri Lankan Avian Influenza\"]<img class=\"alignnone size-medium wp-image-2895\" src=\"https://farmchemie.yasithawd.com/wp-content/uploads/2023/05/WhatsApp-Image-2023-05-16-at-2.43.25-AM-300x225.jpeg\" alt=\"\" width=\"300\" height=\"225\" />\r\n\r\nIn 2006, the Sri Lankan poultry industry was affected with Avian Influenza which became a difficult period for the growth of FARMCHEMIE. This was the key factor in our decision to diversify into Agro Products. PLANTCHEM &amp; PLANTSEEDS were established to offer solutions in Agro specialty fertilizers, pesticides and seeds to invaluable cultivators.[/icon_timeline_item][icon_timeline_item time_title=\"2010 FEED CHEMIE\"]<img class=\"alignnone size-medium wp-image-2896\" src=\"https://farmchemie.yasithawd.com/wp-content/uploads/2023/05/WhatsApp-Image-2023-05-16-at-2.43.38-AM-300x225.jpeg\" alt=\"\" width=\"300\" height=\"225\" />\r\n\r\nIn 2010, FEED CHEMIE became the subsequent addition to ever-growing vision of Mr. Uditha Wanigasinghe and entered the Animal Feed Additives market.[/icon_timeline_item][icon_timeline_item time_title=\"2010 FEED CHEMIE\"]<img class=\"alignnone size-medium wp-image-2896\" src=\"https://farmchemie.yasithawd.com/wp-content/uploads/2023/05/WhatsApp-Image-2023-05-16-at-2.43.38-AM-300x225.jpeg\" alt=\"\" width=\"300\" height=\"225\" />\r\n\r\nIn 2010, FEED CHEMIE became the subsequent addition to ever-growing vision of Mr. Uditha Wanigasinghe and entered the Animal Feed Additives market.[/icon_timeline_item][icon_timeline_feat time_title=\"First production facility for the manufacturing and packing\"]<img class=\"alignnone size-medium wp-image-2897\" src=\"https://farmchemie.yasithawd.com/wp-content/uploads/2023/05/WhatsApp-Image-2023-05-16-at-2.43.56-AM-300x254.jpeg\" alt=\"\" width=\"300\" height=\"254\" />\r\n\r\nThe year 2012 is described as a turning point in our journey as FARMCHEMIE established our first production facility for the manufacturing and packing of animal health products. FARMCHEMIE became the first animal health organization in Sri Lanka to obtain ISO 9001:2015 and WHO GMP International Quality Certification. With our own formulation unit, FARMCHEMIE was able to offer customized solutions to cater the needs of the Sri Lankan Livestock Industry.[/icon_timeline_feat][icon_timeline_feat time_title=\"2016 Another key milestone\"]<img class=\"alignnone wp-image-2898 size-medium\" src=\"https://farmchemie.yasithawd.com/wp-content/uploads/2023/05/WhatsApp-Image-2023-05-16-at-2.44.00-AM-229x300.jpeg\" alt=\"\" width=\"229\" height=\"300\" />\r\n\r\nThe year 2016 was another key milestone with the entry to the International Markets. FARMCHEMIE exported our first Feed Premix consignment to India and in 2018 our export operation was distinctly established as FARMCHEMIE MANUFACTURERS, a Board of Investment (BOI) approved entity.[/icon_timeline_feat][icon_timeline_feat time_title=\"invested in fully automated manufacturing facility from Bühler\"]<img class=\"alignnone wp-image-2899 size-medium\" src=\"https://farmchemie.yasithawd.com/wp-content/uploads/2023/05/WhatsApp-Image-2023-05-16-at-2.44.14-AM-300x192.jpeg\" alt=\"\" width=\"300\" height=\"192\" />\r\n\r\nFARMCHEMIE MANUFACTURERS has invested in fully automated manufacturing facility from Bühler and became the first Sri Lankan owned company to obtain FAMI-QS International Quality Certification.[/icon_timeline_feat][icon_timeline_sep time_sep_title=\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vestibulum iaculis mollis leo, at pretium velit maximus vitae. Ut egestas laoreet mollis.\"][/icon_timeline][/vc_column][/vc_row][vc_row][vc_column][ultimate_heading main_heading=\"Vision and Mission\" alignment=\"left\"][/ultimate_heading][vc_row_inner][vc_column_inner width=\"1/2\"][ultimate_heading main_heading=\"Vision\" heading_tag=\"h3\" alignment=\"left\"]Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vestibulum iaculis mollis leo, at pretium velit maximus vitae. Ut egestas laoreet mollis.Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vestibulum iaculis mollis leo, at pretium velit maximus vitae. Ut egestas laoreet mollis.Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vestibulum iaculis mollis leo, at pretium velit maximus vitae. Ut egestas laoreet mollis.Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vestibulum iaculis mollis leo, at pretium velit maximus vitae. Ut egestas laoreet mollis.[/ultimate_heading][/vc_column_inner][vc_column_inner width=\"1/2\"][ultimate_heading main_heading=\"Mission\" heading_tag=\"h3\" alignment=\"left\"]Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vestibulum iaculis mollis leo, at pretium velit maximus vitae. Ut egestas laoreet mollis.Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vestibulum iaculis mollis leo, at pretium velit maximus vitae. Ut egestas laoreet mollis.Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vestibulum iaculis mollis leo, at pretium velit maximus vitae. Ut egestas laoreet mollis.Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vestibulum iaculis mollis leo, at pretium velit maximus vitae. Ut egestas laoreet mollis.[/ultimate_heading][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row][vc_column][ultimate_heading main_heading=\"Achievements\"][/ultimate_heading][vc_row_inner][vc_column_inner width=\"1/2\"][vc_single_image image=\"2404\" img_size=\"400x400\"][/vc_column_inner][vc_column_inner width=\"1/2\"][ultimate_heading main_heading=\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vestibulum iaculis mollis leo, at pretium velit maximus vitae. Ut egestas laoreet mollis.\" heading_tag=\"h3\" alignment=\"left\"]Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vestibulum iaculis mollis leo, at pretium velit maximus vitae. Ut egestas laoreet mollis. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vestibulum iaculis mollis leo, at pretium velit maximus vitae. Ut egestas laoreet mollis. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vestibulum iaculis mollis leo, at pretium velit maximus vitae. Ut egestas laoreet mollis. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vestibulum iaculis mollis leo, at pretium velit maximus vitae. Ut egestas laoreet mollis. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vestibulum iaculis mollis leo, at pretium velit maximus vitae. Ut egestas laoreet mollis.[/ultimate_heading][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner width=\"1/2\"][ultimate_heading main_heading=\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vestibulum iaculis mollis leo, at pretium velit maximus vitae. Ut egestas laoreet mollis.\" heading_tag=\"h3\" alignment=\"left\"]Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vestibulum iaculis mollis leo, at pretium velit maximus vitae. Ut egestas laoreet mollis. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vestibulum iaculis mollis leo, at pretium velit maximus vitae. Ut egestas laoreet mollis. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vestibulum iaculis mollis leo, at pretium velit maximus vitae. Ut egestas laoreet mollis. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vestibulum iaculis mollis leo, at pretium velit maximus vitae. Ut egestas laoreet mollis. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vestibulum iaculis mollis leo, at pretium velit maximus vitae. Ut egestas laoreet mollis.[/ultimate_heading][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_single_image image=\"2404\" img_size=\"400x400\"][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner width=\"1/2\"][vc_single_image image=\"2404\" img_size=\"400x400\"][/vc_column_inner][vc_column_inner width=\"1/2\"][ultimate_heading main_heading=\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vestibulum iaculis mollis leo, at pretium velit maximus vitae. Ut egestas laoreet mollis.\" heading_tag=\"h3\" alignment=\"left\"]Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vestibulum iaculis mollis leo, at pretium velit maximus vitae. Ut egestas laoreet mollis. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vestibulum iaculis mollis leo, at pretium velit maximus vitae. Ut egestas laoreet mollis. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vestibulum iaculis mollis leo, at pretium velit maximus vitae. Ut egestas laoreet mollis. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vestibulum iaculis mollis leo, at pretium velit maximus vitae. Ut egestas laoreet mollis. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vestibulum iaculis mollis leo, at pretium velit maximus vitae. Ut egestas laoreet mollis.[/ultimate_heading][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row]','About Us','','inherit','closed','closed','','2633-revision-v1','','','2023-05-19 05:33:44','2023-05-19 05:33:44','',2633,'https://farmchemie.yasithawd.com/?p=2900',0,'revision','',0),(2901,1,'2023-05-23 09:59:32','2023-05-23 09:59:32','','WhatsApp Image 2023-05-16 at 2.45.03 AM','','inherit','open','closed','','whatsapp-image-2023-05-16-at-2-45-03-am','','','2023-05-23 09:59:32','2023-05-23 09:59:32','',2633,'https://farmchemie.yasithawd.com/wp-content/uploads/2023/05/WhatsApp-Image-2023-05-16-at-2.45.03-AM.jpeg',0,'attachment','image/jpeg',0),(2906,1,'2023-05-23 10:09:05','2023-05-23 10:09:05','[vc_row][vc_column][ultimate_heading main_heading=\"Our History\" alignment=\"left\"][/ultimate_heading][icon_timeline timeline_line_color=\"#059444\" time_sep_color=\"#059444\" time_sep_bg_color=\"#059444\"][icon_timeline_sep time_sep_title=\"Founded in 2002\"][icon_timeline_feat]Founded in 2002 by Mr. Uditha Wanigasinghe, an agriculturist who had a mission to aid valuable livestock producers in the country to enhance the yield and profitability of production. FARMCHEMIE introduced unprecedented solutions and consistent technical services to gain our customers’ trust and became the market leader in animal health products in 2006 within just four years.[/icon_timeline_feat][icon_timeline_item time_title=\"2006 Sri Lankan Avian Influenza\"]<img class=\"alignnone size-medium wp-image-2895\" src=\"https://farmchemie.yasithawd.com/wp-content/uploads/2023/05/WhatsApp-Image-2023-05-16-at-2.43.25-AM-300x225.jpeg\" alt=\"\" width=\"300\" height=\"225\" />\r\n\r\nIn 2006, the Sri Lankan poultry industry was affected with Avian Influenza which became a difficult period for the growth of FARMCHEMIE. This was the key factor in our decision to diversify into Agro Products. PLANTCHEM &amp; PLANTSEEDS were established to offer solutions in Agro specialty fertilizers, pesticides and seeds to invaluable cultivators.[/icon_timeline_item][icon_timeline_item time_title=\"2010 FEED CHEMIE\"]<img class=\"alignnone size-medium wp-image-2896\" src=\"https://farmchemie.yasithawd.com/wp-content/uploads/2023/05/WhatsApp-Image-2023-05-16-at-2.43.38-AM-300x225.jpeg\" alt=\"\" width=\"300\" height=\"225\" />\r\n\r\nIn 2010, FEED CHEMIE became the subsequent addition to ever-growing vision of Mr. Uditha Wanigasinghe and entered the Animal Feed Additives market.[/icon_timeline_item][icon_timeline_item time_title=\"2012 Production facility\"]<img class=\"alignnone wp-image-2897 size-medium\" src=\"https://farmchemie.yasithawd.com/wp-content/uploads/2023/05/WhatsApp-Image-2023-05-16-at-2.43.56-AM-300x254.jpeg\" alt=\"\" width=\"300\" height=\"254\" />\r\n\r\nThe year 2012 is described as a turning point in our journey as FARMCHEMIE established our first production facility for the manufacturing and packing of animal health products. FARMCHEMIE became the first animal health organization in Sri Lanka to obtain ISO 9001:2015 and WHO GMP International Quality Certification. With our own formulation unit, FARMCHEMIE was able to offer customized solutions to cater the needs of the Sri Lankan Livestock Industry.[/icon_timeline_item][icon_timeline_item time_title=\"2016 Another key milestone\"]<img class=\"alignnone wp-image-2898 size-medium\" src=\"https://farmchemie.yasithawd.com/wp-content/uploads/2023/05/WhatsApp-Image-2023-05-16-at-2.44.00-AM-229x300.jpeg\" alt=\"\" width=\"229\" height=\"300\" />\r\n\r\nThe year 2016 was another key milestone with the entry to the International Markets. FARMCHEMIE exported our first Feed Premix consignment to India and in 2018 our export operation was distinctly established as FARMCHEMIE MANUFACTURERS, a Board of Investment (BOI) approved entity.[/icon_timeline_item][icon_timeline_feat time_title=\"invested in fully automated manufacturing facility from Bühler\"]<img class=\"alignnone wp-image-2899 size-medium\" src=\"https://farmchemie.yasithawd.com/wp-content/uploads/2023/05/WhatsApp-Image-2023-05-16-at-2.44.14-AM-300x192.jpeg\" alt=\"\" width=\"300\" height=\"192\" />\r\n\r\nFARMCHEMIE MANUFACTURERS has invested in fully automated manufacturing facility from Bühler and became the first Sri Lankan owned company to obtain FAMI-QS International Quality Certification.[/icon_timeline_feat][icon_timeline_feat time_title=\"DYEVSTA\"]<img class=\"alignnone wp-image-2901 size-medium\" src=\"https://farmchemie.yasithawd.com/wp-content/uploads/2023/05/WhatsApp-Image-2023-05-16-at-2.45.03-AM-300x59.jpeg\" alt=\"\" width=\"300\" height=\"59\" />\r\n\r\nWith the trust and reputation built as a reliable manufacturer of animal feed additives and supplements in the global market, several world-renowned international brands have appointed FARMCHEMIE MANUFACTURERS as the official toll manufacturer partner. FARMCHEMIE MANUFACTURERS exports a wide range of products consisting of premixes, specialty feed additives, oral liquid supplements and pet supplements to various markets in South Asia, East Asia, Middle East and Africa.\r\n\r\nFARMCHEMIE, FEED CHEMIE &amp; FARMCHEMIE MANUFACTURERS currently operate under the ownership of our holding company, DYVESTA.\r\n\r\nDYEVSTA has become the pinnacle of Animal Nutrition and Health.\r\n\r\nDYVESTA is Dynamic, through our continuous evolution, growth and progress. DYVESTA is Diverse, in terms of both our business strategy and our community. DYVESTA is Devoted to our valuable business partners through exceptional service.[/icon_timeline_feat][/icon_timeline][/vc_column][/vc_row][vc_row][vc_column css=\".vc_custom_1684836047081{margin-top: 15px !important;}\"][ultimate_heading main_heading=\"Vision and Mission\" main_heading_color=\"#079547\" alignment=\"left\"][/ultimate_heading][vc_row_inner css=\".vc_custom_1684836055469{margin-top: 15px !important;}\"][vc_column_inner width=\"1/2\"][ultimate_heading main_heading=\"Vision\" heading_tag=\"h3\" main_heading_color=\"#762888\" alignment=\"left\"]To become a world renowned manufacturer of Animal Health products and a trusted partner among our stakeholders for our integrity as well as for providing effective solutions[/ultimate_heading][/vc_column_inner][vc_column_inner width=\"1/2\"][ultimate_heading main_heading=\"Mission\" heading_tag=\"h3\" main_heading_color=\"#762888\" alignment=\"left\"]To be the customers’ first and best choice by ensuring outstanding satisfaction through a well-trained and dedicated team. Prompt and quality solutions to our customers’ requirements will determine the increase of return on investment for us.[/ultimate_heading][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row css=\".vc_custom_1684836308288{margin-top: 15px !important;}\"][vc_column][ultimate_heading main_heading=\"Achievements\" margin_design_tab_text=\"\" main_heading_margin=\"margin-top:35px;\"][/ultimate_heading][/vc_column][/vc_row]','About Us','','inherit','closed','closed','','2633-revision-v1','','','2023-05-23 10:09:05','2023-05-23 10:09:05','',2633,'https://farmchemie.yasithawd.com/?p=2906',0,'revision','',0),(2902,1,'2023-05-23 09:59:55','2023-05-23 09:59:55','[vc_row][vc_column][ultimate_heading main_heading=\"Our History\" alignment=\"left\"][/ultimate_heading][icon_timeline timeline_line_color=\"#059444\" time_sep_color=\"#059444\" time_sep_bg_color=\"#059444\"][icon_timeline_sep time_sep_title=\"Founded in 2002\"][icon_timeline_feat]Founded in 2002 by Mr. Uditha Wanigasinghe, an agriculturist who had a mission to aid valuable livestock producers in the country to enhance the yield and profitability of production. FARMCHEMIE introduced unprecedented solutions and consistent technical services to gain our customers’ trust and became the market leader in animal health products in 2006 within just four years.[/icon_timeline_feat][icon_timeline_item time_title=\"2006 Sri Lankan Avian Influenza\"]<img class=\"alignnone size-medium wp-image-2895\" src=\"https://farmchemie.yasithawd.com/wp-content/uploads/2023/05/WhatsApp-Image-2023-05-16-at-2.43.25-AM-300x225.jpeg\" alt=\"\" width=\"300\" height=\"225\" />\r\n\r\nIn 2006, the Sri Lankan poultry industry was affected with Avian Influenza which became a difficult period for the growth of FARMCHEMIE. This was the key factor in our decision to diversify into Agro Products. PLANTCHEM &amp; PLANTSEEDS were established to offer solutions in Agro specialty fertilizers, pesticides and seeds to invaluable cultivators.[/icon_timeline_item][icon_timeline_item time_title=\"2010 FEED CHEMIE\"]<img class=\"alignnone size-medium wp-image-2896\" src=\"https://farmchemie.yasithawd.com/wp-content/uploads/2023/05/WhatsApp-Image-2023-05-16-at-2.43.38-AM-300x225.jpeg\" alt=\"\" width=\"300\" height=\"225\" />\r\n\r\nIn 2010, FEED CHEMIE became the subsequent addition to ever-growing vision of Mr. Uditha Wanigasinghe and entered the Animal Feed Additives market.[/icon_timeline_item][icon_timeline_item time_title=\"2012 Production facility\"]<img class=\"alignnone wp-image-2897 size-medium\" src=\"https://farmchemie.yasithawd.com/wp-content/uploads/2023/05/WhatsApp-Image-2023-05-16-at-2.43.56-AM-300x254.jpeg\" alt=\"\" width=\"300\" height=\"254\" />\r\n\r\nThe year 2012 is described as a turning point in our journey as FARMCHEMIE established our first production facility for the manufacturing and packing of animal health products. FARMCHEMIE became the first animal health organization in Sri Lanka to obtain ISO 9001:2015 and WHO GMP International Quality Certification. With our own formulation unit, FARMCHEMIE was able to offer customized solutions to cater the needs of the Sri Lankan Livestock Industry.[/icon_timeline_item][icon_timeline_item time_title=\"2016 Another key milestone\"]<img class=\"alignnone wp-image-2898 size-medium\" src=\"https://farmchemie.yasithawd.com/wp-content/uploads/2023/05/WhatsApp-Image-2023-05-16-at-2.44.00-AM-229x300.jpeg\" alt=\"\" width=\"229\" height=\"300\" />\r\n\r\nThe year 2016 was another key milestone with the entry to the International Markets. FARMCHEMIE exported our first Feed Premix consignment to India and in 2018 our export operation was distinctly established as FARMCHEMIE MANUFACTURERS, a Board of Investment (BOI) approved entity.[/icon_timeline_item][icon_timeline_feat time_title=\"invested in fully automated manufacturing facility from Bühler\"]<img class=\"alignnone wp-image-2899 size-medium\" src=\"https://farmchemie.yasithawd.com/wp-content/uploads/2023/05/WhatsApp-Image-2023-05-16-at-2.44.14-AM-300x192.jpeg\" alt=\"\" width=\"300\" height=\"192\" />\r\n\r\nFARMCHEMIE MANUFACTURERS has invested in fully automated manufacturing facility from Bühler and became the first Sri Lankan owned company to obtain FAMI-QS International Quality Certification.[/icon_timeline_feat][icon_timeline_feat time_title=\"DYEVSTA\"]<img class=\"alignnone wp-image-2901 size-medium\" src=\"https://farmchemie.yasithawd.com/wp-content/uploads/2023/05/WhatsApp-Image-2023-05-16-at-2.45.03-AM-300x59.jpeg\" alt=\"\" width=\"300\" height=\"59\" />\r\n\r\nWith the trust and reputation built as a reliable manufacturer of animal feed additives and supplements in the global market, several world-renowned international brands have appointed FARMCHEMIE MANUFACTURERS as the official toll manufacturer partner. FARMCHEMIE MANUFACTURERS exports a wide range of products consisting of premixes, specialty feed additives, oral liquid supplements and pet supplements to various markets in South Asia, East Asia, Middle East and Africa.\r\n\r\nFARMCHEMIE, FEED CHEMIE &amp; FARMCHEMIE MANUFACTURERS currently operate under the ownership of our holding company, DYVESTA.\r\n\r\nDYEVSTA has become the pinnacle of Animal Nutrition and Health.\r\n\r\nDYVESTA is Dynamic, through our continuous evolution, growth and progress. DYVESTA is Diverse, in terms of both our business strategy and our community. DYVESTA is Devoted to our valuable business partners through exceptional service.[/icon_timeline_feat][/icon_timeline][/vc_column][/vc_row][vc_row][vc_column][ultimate_heading main_heading=\"Vision and Mission\" alignment=\"left\"][/ultimate_heading][vc_row_inner][vc_column_inner width=\"1/2\"][ultimate_heading main_heading=\"Vision\" heading_tag=\"h3\" alignment=\"left\"]Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vestibulum iaculis mollis leo, at pretium velit maximus vitae. Ut egestas laoreet mollis.Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vestibulum iaculis mollis leo, at pretium velit maximus vitae. Ut egestas laoreet mollis.Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vestibulum iaculis mollis leo, at pretium velit maximus vitae. Ut egestas laoreet mollis.Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vestibulum iaculis mollis leo, at pretium velit maximus vitae. Ut egestas laoreet mollis.[/ultimate_heading][/vc_column_inner][vc_column_inner width=\"1/2\"][ultimate_heading main_heading=\"Mission\" heading_tag=\"h3\" alignment=\"left\"]Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vestibulum iaculis mollis leo, at pretium velit maximus vitae. Ut egestas laoreet mollis.Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vestibulum iaculis mollis leo, at pretium velit maximus vitae. Ut egestas laoreet mollis.Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vestibulum iaculis mollis leo, at pretium velit maximus vitae. Ut egestas laoreet mollis.Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vestibulum iaculis mollis leo, at pretium velit maximus vitae. Ut egestas laoreet mollis.[/ultimate_heading][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row][vc_column][ultimate_heading main_heading=\"Achievements\"][/ultimate_heading][vc_row_inner][vc_column_inner width=\"1/2\"][vc_single_image image=\"2404\" img_size=\"400x400\"][/vc_column_inner][vc_column_inner width=\"1/2\"][ultimate_heading main_heading=\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vestibulum iaculis mollis leo, at pretium velit maximus vitae. Ut egestas laoreet mollis.\" heading_tag=\"h3\" alignment=\"left\"]Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vestibulum iaculis mollis leo, at pretium velit maximus vitae. Ut egestas laoreet mollis. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vestibulum iaculis mollis leo, at pretium velit maximus vitae. Ut egestas laoreet mollis. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vestibulum iaculis mollis leo, at pretium velit maximus vitae. Ut egestas laoreet mollis. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vestibulum iaculis mollis leo, at pretium velit maximus vitae. Ut egestas laoreet mollis. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vestibulum iaculis mollis leo, at pretium velit maximus vitae. Ut egestas laoreet mollis.[/ultimate_heading][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner width=\"1/2\"][ultimate_heading main_heading=\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vestibulum iaculis mollis leo, at pretium velit maximus vitae. Ut egestas laoreet mollis.\" heading_tag=\"h3\" alignment=\"left\"]Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vestibulum iaculis mollis leo, at pretium velit maximus vitae. Ut egestas laoreet mollis. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vestibulum iaculis mollis leo, at pretium velit maximus vitae. Ut egestas laoreet mollis. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vestibulum iaculis mollis leo, at pretium velit maximus vitae. Ut egestas laoreet mollis. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vestibulum iaculis mollis leo, at pretium velit maximus vitae. Ut egestas laoreet mollis. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vestibulum iaculis mollis leo, at pretium velit maximus vitae. Ut egestas laoreet mollis.[/ultimate_heading][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_single_image image=\"2404\" img_size=\"400x400\"][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner width=\"1/2\"][vc_single_image image=\"2404\" img_size=\"400x400\"][/vc_column_inner][vc_column_inner width=\"1/2\"][ultimate_heading main_heading=\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vestibulum iaculis mollis leo, at pretium velit maximus vitae. Ut egestas laoreet mollis.\" heading_tag=\"h3\" alignment=\"left\"]Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vestibulum iaculis mollis leo, at pretium velit maximus vitae. Ut egestas laoreet mollis. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vestibulum iaculis mollis leo, at pretium velit maximus vitae. Ut egestas laoreet mollis. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vestibulum iaculis mollis leo, at pretium velit maximus vitae. Ut egestas laoreet mollis. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vestibulum iaculis mollis leo, at pretium velit maximus vitae. Ut egestas laoreet mollis. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vestibulum iaculis mollis leo, at pretium velit maximus vitae. Ut egestas laoreet mollis.[/ultimate_heading][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row]','About Us','','inherit','closed','closed','','2633-revision-v1','','','2023-05-23 09:59:55','2023-05-23 09:59:55','',2633,'https://farmchemie.yasithawd.com/?p=2902',0,'revision','',0),(2903,1,'2023-05-23 10:05:16','2023-05-23 10:05:16','[vc_row][vc_column][ultimate_heading main_heading=\"Our History\" alignment=\"left\"][/ultimate_heading][icon_timeline timeline_line_color=\"#059444\" time_sep_color=\"#059444\" time_sep_bg_color=\"#059444\"][icon_timeline_sep time_sep_title=\"Founded in 2002\"][icon_timeline_feat]Founded in 2002 by Mr. Uditha Wanigasinghe, an agriculturist who had a mission to aid valuable livestock producers in the country to enhance the yield and profitability of production. FARMCHEMIE introduced unprecedented solutions and consistent technical services to gain our customers’ trust and became the market leader in animal health products in 2006 within just four years.[/icon_timeline_feat][icon_timeline_item time_title=\"2006 Sri Lankan Avian Influenza\"]<img class=\"alignnone size-medium wp-image-2895\" src=\"https://farmchemie.yasithawd.com/wp-content/uploads/2023/05/WhatsApp-Image-2023-05-16-at-2.43.25-AM-300x225.jpeg\" alt=\"\" width=\"300\" height=\"225\" />\r\n\r\nIn 2006, the Sri Lankan poultry industry was affected with Avian Influenza which became a difficult period for the growth of FARMCHEMIE. This was the key factor in our decision to diversify into Agro Products. PLANTCHEM &amp; PLANTSEEDS were established to offer solutions in Agro specialty fertilizers, pesticides and seeds to invaluable cultivators.[/icon_timeline_item][icon_timeline_item time_title=\"2010 FEED CHEMIE\"]<img class=\"alignnone size-medium wp-image-2896\" src=\"https://farmchemie.yasithawd.com/wp-content/uploads/2023/05/WhatsApp-Image-2023-05-16-at-2.43.38-AM-300x225.jpeg\" alt=\"\" width=\"300\" height=\"225\" />\r\n\r\nIn 2010, FEED CHEMIE became the subsequent addition to ever-growing vision of Mr. Uditha Wanigasinghe and entered the Animal Feed Additives market.[/icon_timeline_item][icon_timeline_item time_title=\"2012 Production facility\"]<img class=\"alignnone wp-image-2897 size-medium\" src=\"https://farmchemie.yasithawd.com/wp-content/uploads/2023/05/WhatsApp-Image-2023-05-16-at-2.43.56-AM-300x254.jpeg\" alt=\"\" width=\"300\" height=\"254\" />\r\n\r\nThe year 2012 is described as a turning point in our journey as FARMCHEMIE established our first production facility for the manufacturing and packing of animal health products. FARMCHEMIE became the first animal health organization in Sri Lanka to obtain ISO 9001:2015 and WHO GMP International Quality Certification. With our own formulation unit, FARMCHEMIE was able to offer customized solutions to cater the needs of the Sri Lankan Livestock Industry.[/icon_timeline_item][icon_timeline_item time_title=\"2016 Another key milestone\"]<img class=\"alignnone wp-image-2898 size-medium\" src=\"https://farmchemie.yasithawd.com/wp-content/uploads/2023/05/WhatsApp-Image-2023-05-16-at-2.44.00-AM-229x300.jpeg\" alt=\"\" width=\"229\" height=\"300\" />\r\n\r\nThe year 2016 was another key milestone with the entry to the International Markets. FARMCHEMIE exported our first Feed Premix consignment to India and in 2018 our export operation was distinctly established as FARMCHEMIE MANUFACTURERS, a Board of Investment (BOI) approved entity.[/icon_timeline_item][icon_timeline_feat time_title=\"invested in fully automated manufacturing facility from Bühler\"]<img class=\"alignnone wp-image-2899 size-medium\" src=\"https://farmchemie.yasithawd.com/wp-content/uploads/2023/05/WhatsApp-Image-2023-05-16-at-2.44.14-AM-300x192.jpeg\" alt=\"\" width=\"300\" height=\"192\" />\r\n\r\nFARMCHEMIE MANUFACTURERS has invested in fully automated manufacturing facility from Bühler and became the first Sri Lankan owned company to obtain FAMI-QS International Quality Certification.[/icon_timeline_feat][icon_timeline_feat time_title=\"DYEVSTA\"]<img class=\"alignnone wp-image-2901 size-medium\" src=\"https://farmchemie.yasithawd.com/wp-content/uploads/2023/05/WhatsApp-Image-2023-05-16-at-2.45.03-AM-300x59.jpeg\" alt=\"\" width=\"300\" height=\"59\" />\r\n\r\nWith the trust and reputation built as a reliable manufacturer of animal feed additives and supplements in the global market, several world-renowned international brands have appointed FARMCHEMIE MANUFACTURERS as the official toll manufacturer partner. FARMCHEMIE MANUFACTURERS exports a wide range of products consisting of premixes, specialty feed additives, oral liquid supplements and pet supplements to various markets in South Asia, East Asia, Middle East and Africa.\r\n\r\nFARMCHEMIE, FEED CHEMIE &amp; FARMCHEMIE MANUFACTURERS currently operate under the ownership of our holding company, DYVESTA.\r\n\r\nDYEVSTA has become the pinnacle of Animal Nutrition and Health.\r\n\r\nDYVESTA is Dynamic, through our continuous evolution, growth and progress. DYVESTA is Diverse, in terms of both our business strategy and our community. DYVESTA is Devoted to our valuable business partners through exceptional service.[/icon_timeline_feat][/icon_timeline][/vc_column][/vc_row][vc_row][vc_column css=\".vc_custom_1684836047081{margin-top: 15px !important;}\"][ultimate_heading main_heading=\"Vision and Mission\" main_heading_color=\"#079547\" alignment=\"left\" margin_design_tab_text=\"\"][/ultimate_heading][vc_row_inner css=\".vc_custom_1684836055469{margin-top: 15px !important;}\"][vc_column_inner width=\"1/2\"][ultimate_heading main_heading=\"Vision\" heading_tag=\"h3\" main_heading_color=\"#762888\" alignment=\"left\" margin_design_tab_text=\"\"]To become a world renowned manufacturer of Animal Health products and a trusted partner among our stakeholders for our integrity as well as for providing effective solutions[/ultimate_heading][/vc_column_inner][vc_column_inner width=\"1/2\"][ultimate_heading main_heading=\"Mission\" heading_tag=\"h3\" main_heading_color=\"#762888\" alignment=\"left\" margin_design_tab_text=\"\"]To be the customers’ first and best choice by ensuring outstanding satisfaction through a well-trained and dedicated team. Prompt and quality solutions to our customers’ requirements will determine the increase of return on investment for us.[/ultimate_heading][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row css=\".vc_custom_1684836308288{margin-top: 15px !important;}\"][vc_column][ultimate_heading main_heading=\"Achievements\"][/ultimate_heading][vc_row_inner][vc_column_inner width=\"1/2\"][vc_single_image image=\"2404\" img_size=\"400x400\"][/vc_column_inner][vc_column_inner width=\"1/2\"][ultimate_heading main_heading=\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vestibulum iaculis mollis leo, at pretium velit maximus vitae. Ut egestas laoreet mollis.\" heading_tag=\"h3\" alignment=\"left\"]Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vestibulum iaculis mollis leo, at pretium velit maximus vitae. Ut egestas laoreet mollis. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vestibulum iaculis mollis leo, at pretium velit maximus vitae. Ut egestas laoreet mollis. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vestibulum iaculis mollis leo, at pretium velit maximus vitae. Ut egestas laoreet mollis. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vestibulum iaculis mollis leo, at pretium velit maximus vitae. Ut egestas laoreet mollis. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vestibulum iaculis mollis leo, at pretium velit maximus vitae. Ut egestas laoreet mollis.[/ultimate_heading][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner width=\"1/2\"][ultimate_heading main_heading=\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vestibulum iaculis mollis leo, at pretium velit maximus vitae. Ut egestas laoreet mollis.\" heading_tag=\"h3\" alignment=\"left\"]Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vestibulum iaculis mollis leo, at pretium velit maximus vitae. Ut egestas laoreet mollis. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vestibulum iaculis mollis leo, at pretium velit maximus vitae. Ut egestas laoreet mollis. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vestibulum iaculis mollis leo, at pretium velit maximus vitae. Ut egestas laoreet mollis. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vestibulum iaculis mollis leo, at pretium velit maximus vitae. Ut egestas laoreet mollis. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vestibulum iaculis mollis leo, at pretium velit maximus vitae. Ut egestas laoreet mollis.[/ultimate_heading][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_single_image image=\"2404\" img_size=\"400x400\"][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner width=\"1/2\"][vc_single_image image=\"2404\" img_size=\"400x400\"][/vc_column_inner][vc_column_inner width=\"1/2\"][ultimate_heading main_heading=\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vestibulum iaculis mollis leo, at pretium velit maximus vitae. Ut egestas laoreet mollis.\" heading_tag=\"h3\" alignment=\"left\"]Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vestibulum iaculis mollis leo, at pretium velit maximus vitae. Ut egestas laoreet mollis. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vestibulum iaculis mollis leo, at pretium velit maximus vitae. Ut egestas laoreet mollis. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vestibulum iaculis mollis leo, at pretium velit maximus vitae. Ut egestas laoreet mollis. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vestibulum iaculis mollis leo, at pretium velit maximus vitae. Ut egestas laoreet mollis. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vestibulum iaculis mollis leo, at pretium velit maximus vitae. Ut egestas laoreet mollis.[/ultimate_heading][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row]','About Us','','inherit','closed','closed','','2633-revision-v1','','','2023-05-23 10:05:16','2023-05-23 10:05:16','',2633,'https://farmchemie.yasithawd.com/?p=2903',0,'revision','',0),(2910,1,'2023-05-24 09:04:17','2023-05-24 09:04:17','[vc_row][vc_column][ultimate_heading main_heading=\"Our History\" main_heading_color=\"#762888\" alignment=\"left\"][/ultimate_heading][icon_timeline timeline_style=\"jstime\" timeline_line_color=\"#059444\" time_sep_color=\"#059444\" time_sep_bg_color=\"#059444\"][icon_timeline_sep time_sep_title=\"Founded in 2002\" font_size=\"desktop:13px;\"][icon_timeline_feat]Founded in 2002 by Mr. Uditha Wanigasinghe, an agriculturist who had a mission to aid valuable livestock producers in the country to enhance the yield and profitability of production. FARMCHEMIE introduced unprecedented solutions and consistent technical services to gain our customers’ trust and became the market leader in animal health products in 2006 within just four years.[/icon_timeline_feat][icon_timeline_item time_title=\"2006 Sri Lankan Avian Influenza\"]<img class=\"alignnone size-medium wp-image-2895\" src=\"https://farmchemie.yasithawd.com/wp-content/uploads/2023/05/WhatsApp-Image-2023-05-16-at-2.43.25-AM-300x225.jpeg\" alt=\"\" width=\"300\" height=\"225\" />\r\n\r\nIn 2006, the Sri Lankan poultry industry was affected with Avian Influenza which became a difficult period for the growth of FARMCHEMIE. This was the key factor in our decision to diversify into Agro Products. PLANTCHEM &amp; PLANTSEEDS were established to offer solutions in Agro specialty fertilizers, pesticides and seeds to invaluable cultivators.[/icon_timeline_item][icon_timeline_item time_title=\"2010 FEED CHEMIE\"]<img class=\"alignnone size-medium wp-image-2896\" src=\"https://farmchemie.yasithawd.com/wp-content/uploads/2023/05/WhatsApp-Image-2023-05-16-at-2.43.38-AM-300x225.jpeg\" alt=\"\" width=\"300\" height=\"225\" />\r\n\r\nIn 2010, FEED CHEMIE became the subsequent addition to ever-growing vision of Mr. Uditha Wanigasinghe and entered the Animal Feed Additives market.[/icon_timeline_item][icon_timeline_item time_title=\"2012 Production facility\"]<img class=\"alignnone wp-image-2897 size-medium\" src=\"https://farmchemie.yasithawd.com/wp-content/uploads/2023/05/WhatsApp-Image-2023-05-16-at-2.43.56-AM-300x254.jpeg\" alt=\"\" width=\"300\" height=\"254\" />\r\n\r\nThe year 2012 is described as a turning point in our journey as FARMCHEMIE established our first production facility for the manufacturing and packing of animal health products. FARMCHEMIE became the first animal health organization in Sri Lanka to obtain ISO 9001:2015 and WHO GMP International Quality Certification. With our own formulation unit, FARMCHEMIE was able to offer customized solutions to cater the needs of the Sri Lankan Livestock Industry.[/icon_timeline_item][icon_timeline_item time_title=\"2016 Another key milestone\"]<img class=\"alignnone wp-image-2898 size-medium\" src=\"https://farmchemie.yasithawd.com/wp-content/uploads/2023/05/WhatsApp-Image-2023-05-16-at-2.44.00-AM-229x300.jpeg\" alt=\"\" width=\"229\" height=\"300\" />\r\n\r\nThe year 2016 was another key milestone with the entry to the International Markets. FARMCHEMIE exported our first Feed Premix consignment to India and in 2018 our export operation was distinctly established as FARMCHEMIE MANUFACTURERS, a Board of Investment (BOI) approved entity.[/icon_timeline_item][icon_timeline_feat time_title=\"invested in fully automated manufacturing facility from Bühler\"]<img class=\"alignnone wp-image-2899 size-medium\" src=\"https://farmchemie.yasithawd.com/wp-content/uploads/2023/05/WhatsApp-Image-2023-05-16-at-2.44.14-AM-300x192.jpeg\" alt=\"\" width=\"300\" height=\"192\" />\r\n\r\nFARMCHEMIE MANUFACTURERS has invested in fully automated manufacturing facility from Bühler and became the first Sri Lankan owned company to obtain FAMI-QS International Quality Certification.[/icon_timeline_feat][icon_timeline_feat time_title=\"DYEVSTA\"]<img class=\"alignnone wp-image-2901 size-medium\" src=\"https://farmchemie.yasithawd.com/wp-content/uploads/2023/05/WhatsApp-Image-2023-05-16-at-2.45.03-AM-300x59.jpeg\" alt=\"\" width=\"300\" height=\"59\" />\r\n\r\nWith the trust and reputation built as a reliable manufacturer of animal feed additives and supplements in the global market, several world-renowned international brands have appointed FARMCHEMIE MANUFACTURERS as the official toll manufacturer partner. FARMCHEMIE MANUFACTURERS exports a wide range of products consisting of premixes, specialty feed additives, oral liquid supplements and pet supplements to various markets in South Asia, East Asia, Middle East and Africa.\r\n\r\nFARMCHEMIE, FEED CHEMIE &amp; FARMCHEMIE MANUFACTURERS currently operate under the ownership of our holding company, DYVESTA.\r\n\r\nDYEVSTA has become the pinnacle of Animal Nutrition and Health.\r\n\r\nDYVESTA is Dynamic, through our continuous evolution, growth and progress. DYVESTA is Diverse, in terms of both our business strategy and our community. DYVESTA is Devoted to our valuable business partners through exceptional service.[/icon_timeline_feat][/icon_timeline][/vc_column][/vc_row][vc_row][vc_column css=\".vc_custom_1684836047081{margin-top: 15px !important;}\"][ultimate_heading main_heading=\"Vision and Mission\" main_heading_color=\"#079547\" alignment=\"left\"][/ultimate_heading][vc_row_inner css=\".vc_custom_1684836055469{margin-top: 15px !important;}\"][vc_column_inner width=\"1/2\"][ultimate_heading main_heading=\"Vision\" heading_tag=\"h3\" main_heading_color=\"#762888\" alignment=\"left\"]To become a world renowned manufacturer of Animal Health products and a trusted partner among our stakeholders for our integrity as well as for providing effective solutions[/ultimate_heading][/vc_column_inner][vc_column_inner width=\"1/2\"][ultimate_heading main_heading=\"Mission\" heading_tag=\"h3\" main_heading_color=\"#762888\" alignment=\"left\"]To be the customers’ first and best choice by ensuring outstanding satisfaction through a well-trained and dedicated team. Prompt and quality solutions to our customers’ requirements will determine the increase of return on investment for us.[/ultimate_heading][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row css=\".vc_custom_1684836308288{margin-top: 15px !important;}\"][vc_column][ultimate_heading main_heading=\"Achievements\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;\"][/ultimate_heading][/vc_column][/vc_row]','About Us','','inherit','closed','closed','','2633-revision-v1','','','2023-05-24 09:04:17','2023-05-24 09:04:17','',2633,'https://farmchemie.yasithawd.com/?p=2910',0,'revision','',0),(2904,1,'2023-05-23 10:07:17','2023-05-23 10:07:17','[vc_row][vc_column][ultimate_heading main_heading=\"Our History\" alignment=\"left\"][/ultimate_heading][icon_timeline timeline_line_color=\"#059444\" time_sep_color=\"#059444\" time_sep_bg_color=\"#059444\"][icon_timeline_sep time_sep_title=\"Founded in 2002\"][icon_timeline_feat]Founded in 2002 by Mr. Uditha Wanigasinghe, an agriculturist who had a mission to aid valuable livestock producers in the country to enhance the yield and profitability of production. FARMCHEMIE introduced unprecedented solutions and consistent technical services to gain our customers’ trust and became the market leader in animal health products in 2006 within just four years.[/icon_timeline_feat][icon_timeline_item time_title=\"2006 Sri Lankan Avian Influenza\"]<img class=\"alignnone size-medium wp-image-2895\" src=\"https://farmchemie.yasithawd.com/wp-content/uploads/2023/05/WhatsApp-Image-2023-05-16-at-2.43.25-AM-300x225.jpeg\" alt=\"\" width=\"300\" height=\"225\" />\r\n\r\nIn 2006, the Sri Lankan poultry industry was affected with Avian Influenza which became a difficult period for the growth of FARMCHEMIE. This was the key factor in our decision to diversify into Agro Products. PLANTCHEM &amp; PLANTSEEDS were established to offer solutions in Agro specialty fertilizers, pesticides and seeds to invaluable cultivators.[/icon_timeline_item][icon_timeline_item time_title=\"2010 FEED CHEMIE\"]<img class=\"alignnone size-medium wp-image-2896\" src=\"https://farmchemie.yasithawd.com/wp-content/uploads/2023/05/WhatsApp-Image-2023-05-16-at-2.43.38-AM-300x225.jpeg\" alt=\"\" width=\"300\" height=\"225\" />\r\n\r\nIn 2010, FEED CHEMIE became the subsequent addition to ever-growing vision of Mr. Uditha Wanigasinghe and entered the Animal Feed Additives market.[/icon_timeline_item][icon_timeline_item time_title=\"2012 Production facility\"]<img class=\"alignnone wp-image-2897 size-medium\" src=\"https://farmchemie.yasithawd.com/wp-content/uploads/2023/05/WhatsApp-Image-2023-05-16-at-2.43.56-AM-300x254.jpeg\" alt=\"\" width=\"300\" height=\"254\" />\r\n\r\nThe year 2012 is described as a turning point in our journey as FARMCHEMIE established our first production facility for the manufacturing and packing of animal health products. FARMCHEMIE became the first animal health organization in Sri Lanka to obtain ISO 9001:2015 and WHO GMP International Quality Certification. With our own formulation unit, FARMCHEMIE was able to offer customized solutions to cater the needs of the Sri Lankan Livestock Industry.[/icon_timeline_item][icon_timeline_item time_title=\"2016 Another key milestone\"]<img class=\"alignnone wp-image-2898 size-medium\" src=\"https://farmchemie.yasithawd.com/wp-content/uploads/2023/05/WhatsApp-Image-2023-05-16-at-2.44.00-AM-229x300.jpeg\" alt=\"\" width=\"229\" height=\"300\" />\r\n\r\nThe year 2016 was another key milestone with the entry to the International Markets. FARMCHEMIE exported our first Feed Premix consignment to India and in 2018 our export operation was distinctly established as FARMCHEMIE MANUFACTURERS, a Board of Investment (BOI) approved entity.[/icon_timeline_item][icon_timeline_feat time_title=\"invested in fully automated manufacturing facility from Bühler\"]<img class=\"alignnone wp-image-2899 size-medium\" src=\"https://farmchemie.yasithawd.com/wp-content/uploads/2023/05/WhatsApp-Image-2023-05-16-at-2.44.14-AM-300x192.jpeg\" alt=\"\" width=\"300\" height=\"192\" />\r\n\r\nFARMCHEMIE MANUFACTURERS has invested in fully automated manufacturing facility from Bühler and became the first Sri Lankan owned company to obtain FAMI-QS International Quality Certification.[/icon_timeline_feat][icon_timeline_feat time_title=\"DYEVSTA\"]<img class=\"alignnone wp-image-2901 size-medium\" src=\"https://farmchemie.yasithawd.com/wp-content/uploads/2023/05/WhatsApp-Image-2023-05-16-at-2.45.03-AM-300x59.jpeg\" alt=\"\" width=\"300\" height=\"59\" />\r\n\r\nWith the trust and reputation built as a reliable manufacturer of animal feed additives and supplements in the global market, several world-renowned international brands have appointed FARMCHEMIE MANUFACTURERS as the official toll manufacturer partner. FARMCHEMIE MANUFACTURERS exports a wide range of products consisting of premixes, specialty feed additives, oral liquid supplements and pet supplements to various markets in South Asia, East Asia, Middle East and Africa.\r\n\r\nFARMCHEMIE, FEED CHEMIE &amp; FARMCHEMIE MANUFACTURERS currently operate under the ownership of our holding company, DYVESTA.\r\n\r\nDYEVSTA has become the pinnacle of Animal Nutrition and Health.\r\n\r\nDYVESTA is Dynamic, through our continuous evolution, growth and progress. DYVESTA is Diverse, in terms of both our business strategy and our community. DYVESTA is Devoted to our valuable business partners through exceptional service.[/icon_timeline_feat][/icon_timeline][/vc_column][/vc_row][vc_row][vc_column css=\".vc_custom_1684836047081{margin-top: 15px !important;}\"][ultimate_heading main_heading=\"Vision and Mission\" main_heading_color=\"#079547\" alignment=\"left\"][/ultimate_heading][vc_row_inner css=\".vc_custom_1684836055469{margin-top: 15px !important;}\"][vc_column_inner width=\"1/2\"][ultimate_heading main_heading=\"Vision\" heading_tag=\"h3\" main_heading_color=\"#762888\" alignment=\"left\"]To become a world renowned manufacturer of Animal Health products and a trusted partner among our stakeholders for our integrity as well as for providing effective solutions[/ultimate_heading][/vc_column_inner][vc_column_inner width=\"1/2\"][ultimate_heading main_heading=\"Mission\" heading_tag=\"h3\" main_heading_color=\"#762888\" alignment=\"left\"]To be the customers’ first and best choice by ensuring outstanding satisfaction through a well-trained and dedicated team. Prompt and quality solutions to our customers’ requirements will determine the increase of return on investment for us.[/ultimate_heading][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row css=\".vc_custom_1684836308288{margin-top: 15px !important;}\"][vc_column][ultimate_heading main_heading=\"Achievements\" margin_design_tab_text=\"\" main_heading_margin=\"margin-top:15px;\"][/ultimate_heading][vc_row_inner][vc_column_inner width=\"1/2\"][vc_single_image image=\"2404\" img_size=\"400x400\"][/vc_column_inner][vc_column_inner width=\"1/2\"][ultimate_heading main_heading=\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vestibulum iaculis mollis leo, at pretium velit maximus vitae. Ut egestas laoreet mollis.\" heading_tag=\"h3\" alignment=\"left\"]Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vestibulum iaculis mollis leo, at pretium velit maximus vitae. Ut egestas laoreet mollis. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vestibulum iaculis mollis leo, at pretium velit maximus vitae. Ut egestas laoreet mollis. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vestibulum iaculis mollis leo, at pretium velit maximus vitae. Ut egestas laoreet mollis. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vestibulum iaculis mollis leo, at pretium velit maximus vitae. Ut egestas laoreet mollis. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vestibulum iaculis mollis leo, at pretium velit maximus vitae. Ut egestas laoreet mollis.[/ultimate_heading][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner width=\"1/2\"][ultimate_heading main_heading=\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vestibulum iaculis mollis leo, at pretium velit maximus vitae. Ut egestas laoreet mollis.\" heading_tag=\"h3\" alignment=\"left\"]Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vestibulum iaculis mollis leo, at pretium velit maximus vitae. Ut egestas laoreet mollis. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vestibulum iaculis mollis leo, at pretium velit maximus vitae. Ut egestas laoreet mollis. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vestibulum iaculis mollis leo, at pretium velit maximus vitae. Ut egestas laoreet mollis. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vestibulum iaculis mollis leo, at pretium velit maximus vitae. Ut egestas laoreet mollis. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vestibulum iaculis mollis leo, at pretium velit maximus vitae. Ut egestas laoreet mollis.[/ultimate_heading][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_single_image image=\"2404\" img_size=\"400x400\"][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner width=\"1/2\"][vc_single_image image=\"2404\" img_size=\"400x400\"][/vc_column_inner][vc_column_inner width=\"1/2\"][ultimate_heading main_heading=\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vestibulum iaculis mollis leo, at pretium velit maximus vitae. Ut egestas laoreet mollis.\" heading_tag=\"h3\" alignment=\"left\"]Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vestibulum iaculis mollis leo, at pretium velit maximus vitae. Ut egestas laoreet mollis. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vestibulum iaculis mollis leo, at pretium velit maximus vitae. Ut egestas laoreet mollis. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vestibulum iaculis mollis leo, at pretium velit maximus vitae. Ut egestas laoreet mollis. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vestibulum iaculis mollis leo, at pretium velit maximus vitae. Ut egestas laoreet mollis. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vestibulum iaculis mollis leo, at pretium velit maximus vitae. Ut egestas laoreet mollis.[/ultimate_heading][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row]','About Us','','inherit','closed','closed','','2633-revision-v1','','','2023-05-23 10:07:17','2023-05-23 10:07:17','',2633,'https://farmchemie.yasithawd.com/?p=2904',0,'revision','',0),(2905,1,'2023-05-23 10:07:58','2023-05-23 10:07:58','[vc_row][vc_column][ultimate_heading main_heading=\"Our History\" alignment=\"left\"][/ultimate_heading][icon_timeline timeline_line_color=\"#059444\" time_sep_color=\"#059444\" time_sep_bg_color=\"#059444\"][icon_timeline_sep time_sep_title=\"Founded in 2002\"][icon_timeline_feat]Founded in 2002 by Mr. Uditha Wanigasinghe, an agriculturist who had a mission to aid valuable livestock producers in the country to enhance the yield and profitability of production. FARMCHEMIE introduced unprecedented solutions and consistent technical services to gain our customers’ trust and became the market leader in animal health products in 2006 within just four years.[/icon_timeline_feat][icon_timeline_item time_title=\"2006 Sri Lankan Avian Influenza\"]<img class=\"alignnone size-medium wp-image-2895\" src=\"https://farmchemie.yasithawd.com/wp-content/uploads/2023/05/WhatsApp-Image-2023-05-16-at-2.43.25-AM-300x225.jpeg\" alt=\"\" width=\"300\" height=\"225\" />\r\n\r\nIn 2006, the Sri Lankan poultry industry was affected with Avian Influenza which became a difficult period for the growth of FARMCHEMIE. This was the key factor in our decision to diversify into Agro Products. PLANTCHEM &amp; PLANTSEEDS were established to offer solutions in Agro specialty fertilizers, pesticides and seeds to invaluable cultivators.[/icon_timeline_item][icon_timeline_item time_title=\"2010 FEED CHEMIE\"]<img class=\"alignnone size-medium wp-image-2896\" src=\"https://farmchemie.yasithawd.com/wp-content/uploads/2023/05/WhatsApp-Image-2023-05-16-at-2.43.38-AM-300x225.jpeg\" alt=\"\" width=\"300\" height=\"225\" />\r\n\r\nIn 2010, FEED CHEMIE became the subsequent addition to ever-growing vision of Mr. Uditha Wanigasinghe and entered the Animal Feed Additives market.[/icon_timeline_item][icon_timeline_item time_title=\"2012 Production facility\"]<img class=\"alignnone wp-image-2897 size-medium\" src=\"https://farmchemie.yasithawd.com/wp-content/uploads/2023/05/WhatsApp-Image-2023-05-16-at-2.43.56-AM-300x254.jpeg\" alt=\"\" width=\"300\" height=\"254\" />\r\n\r\nThe year 2012 is described as a turning point in our journey as FARMCHEMIE established our first production facility for the manufacturing and packing of animal health products. FARMCHEMIE became the first animal health organization in Sri Lanka to obtain ISO 9001:2015 and WHO GMP International Quality Certification. With our own formulation unit, FARMCHEMIE was able to offer customized solutions to cater the needs of the Sri Lankan Livestock Industry.[/icon_timeline_item][icon_timeline_item time_title=\"2016 Another key milestone\"]<img class=\"alignnone wp-image-2898 size-medium\" src=\"https://farmchemie.yasithawd.com/wp-content/uploads/2023/05/WhatsApp-Image-2023-05-16-at-2.44.00-AM-229x300.jpeg\" alt=\"\" width=\"229\" height=\"300\" />\r\n\r\nThe year 2016 was another key milestone with the entry to the International Markets. FARMCHEMIE exported our first Feed Premix consignment to India and in 2018 our export operation was distinctly established as FARMCHEMIE MANUFACTURERS, a Board of Investment (BOI) approved entity.[/icon_timeline_item][icon_timeline_feat time_title=\"invested in fully automated manufacturing facility from Bühler\"]<img class=\"alignnone wp-image-2899 size-medium\" src=\"https://farmchemie.yasithawd.com/wp-content/uploads/2023/05/WhatsApp-Image-2023-05-16-at-2.44.14-AM-300x192.jpeg\" alt=\"\" width=\"300\" height=\"192\" />\r\n\r\nFARMCHEMIE MANUFACTURERS has invested in fully automated manufacturing facility from Bühler and became the first Sri Lankan owned company to obtain FAMI-QS International Quality Certification.[/icon_timeline_feat][icon_timeline_feat time_title=\"DYEVSTA\"]<img class=\"alignnone wp-image-2901 size-medium\" src=\"https://farmchemie.yasithawd.com/wp-content/uploads/2023/05/WhatsApp-Image-2023-05-16-at-2.45.03-AM-300x59.jpeg\" alt=\"\" width=\"300\" height=\"59\" />\r\n\r\nWith the trust and reputation built as a reliable manufacturer of animal feed additives and supplements in the global market, several world-renowned international brands have appointed FARMCHEMIE MANUFACTURERS as the official toll manufacturer partner. FARMCHEMIE MANUFACTURERS exports a wide range of products consisting of premixes, specialty feed additives, oral liquid supplements and pet supplements to various markets in South Asia, East Asia, Middle East and Africa.\r\n\r\nFARMCHEMIE, FEED CHEMIE &amp; FARMCHEMIE MANUFACTURERS currently operate under the ownership of our holding company, DYVESTA.\r\n\r\nDYEVSTA has become the pinnacle of Animal Nutrition and Health.\r\n\r\nDYVESTA is Dynamic, through our continuous evolution, growth and progress. DYVESTA is Diverse, in terms of both our business strategy and our community. DYVESTA is Devoted to our valuable business partners through exceptional service.[/icon_timeline_feat][/icon_timeline][/vc_column][/vc_row][vc_row][vc_column css=\".vc_custom_1684836047081{margin-top: 15px !important;}\"][ultimate_heading main_heading=\"Vision and Mission\" main_heading_color=\"#079547\" alignment=\"left\"][/ultimate_heading][vc_row_inner css=\".vc_custom_1684836055469{margin-top: 15px !important;}\"][vc_column_inner width=\"1/2\"][ultimate_heading main_heading=\"Vision\" heading_tag=\"h3\" main_heading_color=\"#762888\" alignment=\"left\"]To become a world renowned manufacturer of Animal Health products and a trusted partner among our stakeholders for our integrity as well as for providing effective solutions[/ultimate_heading][/vc_column_inner][vc_column_inner width=\"1/2\"][ultimate_heading main_heading=\"Mission\" heading_tag=\"h3\" main_heading_color=\"#762888\" alignment=\"left\"]To be the customers’ first and best choice by ensuring outstanding satisfaction through a well-trained and dedicated team. Prompt and quality solutions to our customers’ requirements will determine the increase of return on investment for us.[/ultimate_heading][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row css=\".vc_custom_1684836308288{margin-top: 15px !important;}\"][vc_column][ultimate_heading main_heading=\"Achievements\" margin_design_tab_text=\"\" main_heading_margin=\"margin-top:35px;\"][/ultimate_heading][vc_row_inner][vc_column_inner width=\"1/2\"][vc_single_image image=\"2404\" img_size=\"400x400\"][/vc_column_inner][vc_column_inner width=\"1/2\"][ultimate_heading main_heading=\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vestibulum iaculis mollis leo, at pretium velit maximus vitae. Ut egestas laoreet mollis.\" heading_tag=\"h3\" alignment=\"left\"]Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vestibulum iaculis mollis leo, at pretium velit maximus vitae. Ut egestas laoreet mollis. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vestibulum iaculis mollis leo, at pretium velit maximus vitae. Ut egestas laoreet mollis. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vestibulum iaculis mollis leo, at pretium velit maximus vitae. Ut egestas laoreet mollis. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vestibulum iaculis mollis leo, at pretium velit maximus vitae. Ut egestas laoreet mollis. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vestibulum iaculis mollis leo, at pretium velit maximus vitae. Ut egestas laoreet mollis.[/ultimate_heading][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner width=\"1/2\"][ultimate_heading main_heading=\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vestibulum iaculis mollis leo, at pretium velit maximus vitae. Ut egestas laoreet mollis.\" heading_tag=\"h3\" alignment=\"left\"]Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vestibulum iaculis mollis leo, at pretium velit maximus vitae. Ut egestas laoreet mollis. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vestibulum iaculis mollis leo, at pretium velit maximus vitae. Ut egestas laoreet mollis. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vestibulum iaculis mollis leo, at pretium velit maximus vitae. Ut egestas laoreet mollis. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vestibulum iaculis mollis leo, at pretium velit maximus vitae. Ut egestas laoreet mollis. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vestibulum iaculis mollis leo, at pretium velit maximus vitae. Ut egestas laoreet mollis.[/ultimate_heading][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_single_image image=\"2404\" img_size=\"400x400\"][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner width=\"1/2\"][vc_single_image image=\"2404\" img_size=\"400x400\"][/vc_column_inner][vc_column_inner width=\"1/2\"][ultimate_heading main_heading=\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vestibulum iaculis mollis leo, at pretium velit maximus vitae. Ut egestas laoreet mollis.\" heading_tag=\"h3\" alignment=\"left\"]Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vestibulum iaculis mollis leo, at pretium velit maximus vitae. Ut egestas laoreet mollis. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vestibulum iaculis mollis leo, at pretium velit maximus vitae. Ut egestas laoreet mollis. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vestibulum iaculis mollis leo, at pretium velit maximus vitae. Ut egestas laoreet mollis. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vestibulum iaculis mollis leo, at pretium velit maximus vitae. Ut egestas laoreet mollis. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vestibulum iaculis mollis leo, at pretium velit maximus vitae. Ut egestas laoreet mollis.[/ultimate_heading][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row]','About Us','','inherit','closed','closed','','2633-revision-v1','','','2023-05-23 10:07:58','2023-05-23 10:07:58','',2633,'https://farmchemie.yasithawd.com/?p=2905',0,'revision','',0),(2909,1,'2023-05-23 10:15:24','2023-05-23 10:15:24','[vc_row][vc_column][ultimate_heading main_heading=\"Our History\" main_heading_color=\"#762888\" alignment=\"left\"][/ultimate_heading][icon_timeline timeline_line_color=\"#059444\" time_sep_color=\"#059444\" time_sep_bg_color=\"#059444\"][icon_timeline_sep time_sep_title=\"Founded in 2002\"][icon_timeline_feat]Founded in 2002 by Mr. Uditha Wanigasinghe, an agriculturist who had a mission to aid valuable livestock producers in the country to enhance the yield and profitability of production. FARMCHEMIE introduced unprecedented solutions and consistent technical services to gain our customers’ trust and became the market leader in animal health products in 2006 within just four years.[/icon_timeline_feat][icon_timeline_item time_title=\"2006 Sri Lankan Avian Influenza\"]<img class=\"alignnone size-medium wp-image-2895\" src=\"https://farmchemie.yasithawd.com/wp-content/uploads/2023/05/WhatsApp-Image-2023-05-16-at-2.43.25-AM-300x225.jpeg\" alt=\"\" width=\"300\" height=\"225\" />\r\n\r\nIn 2006, the Sri Lankan poultry industry was affected with Avian Influenza which became a difficult period for the growth of FARMCHEMIE. This was the key factor in our decision to diversify into Agro Products. PLANTCHEM &amp; PLANTSEEDS were established to offer solutions in Agro specialty fertilizers, pesticides and seeds to invaluable cultivators.[/icon_timeline_item][icon_timeline_item time_title=\"2010 FEED CHEMIE\"]<img class=\"alignnone size-medium wp-image-2896\" src=\"https://farmchemie.yasithawd.com/wp-content/uploads/2023/05/WhatsApp-Image-2023-05-16-at-2.43.38-AM-300x225.jpeg\" alt=\"\" width=\"300\" height=\"225\" />\r\n\r\nIn 2010, FEED CHEMIE became the subsequent addition to ever-growing vision of Mr. Uditha Wanigasinghe and entered the Animal Feed Additives market.[/icon_timeline_item][icon_timeline_item time_title=\"2012 Production facility\"]<img class=\"alignnone wp-image-2897 size-medium\" src=\"https://farmchemie.yasithawd.com/wp-content/uploads/2023/05/WhatsApp-Image-2023-05-16-at-2.43.56-AM-300x254.jpeg\" alt=\"\" width=\"300\" height=\"254\" />\r\n\r\nThe year 2012 is described as a turning point in our journey as FARMCHEMIE established our first production facility for the manufacturing and packing of animal health products. FARMCHEMIE became the first animal health organization in Sri Lanka to obtain ISO 9001:2015 and WHO GMP International Quality Certification. With our own formulation unit, FARMCHEMIE was able to offer customized solutions to cater the needs of the Sri Lankan Livestock Industry.[/icon_timeline_item][icon_timeline_item time_title=\"2016 Another key milestone\"]<img class=\"alignnone wp-image-2898 size-medium\" src=\"https://farmchemie.yasithawd.com/wp-content/uploads/2023/05/WhatsApp-Image-2023-05-16-at-2.44.00-AM-229x300.jpeg\" alt=\"\" width=\"229\" height=\"300\" />\r\n\r\nThe year 2016 was another key milestone with the entry to the International Markets. FARMCHEMIE exported our first Feed Premix consignment to India and in 2018 our export operation was distinctly established as FARMCHEMIE MANUFACTURERS, a Board of Investment (BOI) approved entity.[/icon_timeline_item][icon_timeline_feat time_title=\"invested in fully automated manufacturing facility from Bühler\"]<img class=\"alignnone wp-image-2899 size-medium\" src=\"https://farmchemie.yasithawd.com/wp-content/uploads/2023/05/WhatsApp-Image-2023-05-16-at-2.44.14-AM-300x192.jpeg\" alt=\"\" width=\"300\" height=\"192\" />\r\n\r\nFARMCHEMIE MANUFACTURERS has invested in fully automated manufacturing facility from Bühler and became the first Sri Lankan owned company to obtain FAMI-QS International Quality Certification.[/icon_timeline_feat][icon_timeline_feat time_title=\"DYEVSTA\"]<img class=\"alignnone wp-image-2901 size-medium\" src=\"https://farmchemie.yasithawd.com/wp-content/uploads/2023/05/WhatsApp-Image-2023-05-16-at-2.45.03-AM-300x59.jpeg\" alt=\"\" width=\"300\" height=\"59\" />\r\n\r\nWith the trust and reputation built as a reliable manufacturer of animal feed additives and supplements in the global market, several world-renowned international brands have appointed FARMCHEMIE MANUFACTURERS as the official toll manufacturer partner. FARMCHEMIE MANUFACTURERS exports a wide range of products consisting of premixes, specialty feed additives, oral liquid supplements and pet supplements to various markets in South Asia, East Asia, Middle East and Africa.\r\n\r\nFARMCHEMIE, FEED CHEMIE &amp; FARMCHEMIE MANUFACTURERS currently operate under the ownership of our holding company, DYVESTA.\r\n\r\nDYEVSTA has become the pinnacle of Animal Nutrition and Health.\r\n\r\nDYVESTA is Dynamic, through our continuous evolution, growth and progress. DYVESTA is Diverse, in terms of both our business strategy and our community. DYVESTA is Devoted to our valuable business partners through exceptional service.[/icon_timeline_feat][/icon_timeline][/vc_column][/vc_row][vc_row][vc_column css=\".vc_custom_1684836047081{margin-top: 15px !important;}\"][ultimate_heading main_heading=\"Vision and Mission\" main_heading_color=\"#079547\" alignment=\"left\"][/ultimate_heading][vc_row_inner css=\".vc_custom_1684836055469{margin-top: 15px !important;}\"][vc_column_inner width=\"1/2\"][ultimate_heading main_heading=\"Vision\" heading_tag=\"h3\" main_heading_color=\"#762888\" alignment=\"left\"]To become a world renowned manufacturer of Animal Health products and a trusted partner among our stakeholders for our integrity as well as for providing effective solutions[/ultimate_heading][/vc_column_inner][vc_column_inner width=\"1/2\"][ultimate_heading main_heading=\"Mission\" heading_tag=\"h3\" main_heading_color=\"#762888\" alignment=\"left\"]To be the customers’ first and best choice by ensuring outstanding satisfaction through a well-trained and dedicated team. Prompt and quality solutions to our customers’ requirements will determine the increase of return on investment for us.[/ultimate_heading][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row css=\".vc_custom_1684836308288{margin-top: 15px !important;}\"][vc_column][ultimate_heading main_heading=\"Achievements\" main_heading_color=\"#762888\" alignment=\"left\" margin_design_tab_text=\"\" main_heading_margin=\"margin-top:35px;\"][/ultimate_heading][/vc_column][/vc_row]','About Us','','inherit','closed','closed','','2633-revision-v1','','','2023-05-23 10:15:24','2023-05-23 10:15:24','',2633,'https://farmchemie.yasithawd.com/?p=2909',0,'revision','',0),(3216,1,'2023-08-16 12:22:09','2023-08-16 12:22:09','','Technical-Service','','inherit','open','closed','','technical-service-2','','','2023-08-16 12:22:09','2023-08-16 12:22:09','',2994,'https://farmchemie.yasithawd.com/wp-content/uploads/2023/08/Technical-Service.png',0,'attachment','image/png',0),(3217,1,'2023-08-16 12:23:31','2023-08-16 12:23:31','','FARMER-TRAINING','','inherit','open','closed','','farmer-training-2','','','2023-08-16 12:23:31','2023-08-16 12:23:31','',2998,'https://farmchemie.yasithawd.com/wp-content/uploads/2023/08/FARMER-TRAINING.png',0,'attachment','image/png',0),(2913,1,'2023-05-24 09:51:02','2023-05-24 09:51:02','[vc_row full_width=\"stretch_row_content\" bg_type=\"image\" parallax_style=\"vcpb-default\" bg_image_new=\"id^2524|url^https://farmchemie.yasithawd.com/wp-content/uploads/2022/09/marketbgimg1.png|caption^null|alt^null|title^marketbgimg1|description^null\" bg_image_repeat=\"no-repeat\" css=\".vc_custom_1662730336770{margin-right: 0px !important;margin-left: 0px !important;padding-right: 0px !important;padding-left: 0px !important;}\"][vc_column css=\".vc_custom_1662730433019{padding-right: 0px !important;padding-left: 0px !important;}\"][ultimate_heading main_heading=\"SELECT YOUR MARKET/REGION\" main_heading_color=\"#6e368d\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:48px;\"][/ultimate_heading][vc_empty_space height=\"300px\" css=\".vc_custom_1662447237222{margin: 0px !important;padding: 0px !important;background-image: url(https://farmchemie.yasithawd.com/wp-content/uploads/2022/09/marketbgimg1-sp.png?id=2527) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\"][vc_row_inner][vc_column_inner el_class=\"customborderradius1\" width=\"1/3\" css=\".vc_custom_1662539141341{background-color: #6e368d !important;}\"][ult_animation_block animation=\"fadeIn\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][bsf-info-box icon_type=\"custom\" icon_img=\"id^2537|url^https://farmchemie.yasithawd.com/wp-content/uploads/2022/09/earthicon-1.png|caption^null|alt^null|title^earthicon-1|description^null\" img_width=\"100\" title=\"Global\" pos=\"right\" title_font_style=\"font-weight:bold;\" title_font_size=\"desktop:48px;\" title_font_color=\"#ffffff\" desc_font_size=\"desktop:24px;\" desc_font_color=\"#ffffff\"]International Market[/bsf-info-box][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner el_class=\"customborderradius1\" width=\"1/3\" css=\".vc_custom_1662539133598{background-color: #059444 !important;}\"][ult_animation_block animation=\"fadeIn\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][bsf-info-box icon_type=\"custom\" icon_img=\"id^2536|url^https://farmchemie.yasithawd.com/wp-content/uploads/2022/09/srilankaicon-1.png|caption^null|alt^null|title^srilankaicon-1|description^null\" img_width=\"100\" title=\"Local\" pos=\"left\" title_font_style=\"font-weight:bold;\" title_font_size=\"desktop:48px;\" title_font_color=\"#ffffff\" desc_font_size=\"desktop:24px;\" desc_font_color=\"#ffffff\"]Sri Lankan Market[/bsf-info-box][/ult_animation_block][/vc_column_inner][/vc_row_inner][vc_row_inner equal_height=\"yes\" css=\".vc_custom_1662370166856{margin-top: 20px !important;margin-right: 50px !important;margin-left: 50px !important;}\"][vc_column_inner width=\"5/12\"][vc_column_text]FARMCHEMIE is a world-renowned manufacturer of feed additives and feed supplements. We offer our FarmStar and PetStar branded products to the international markets.[/vc_column_text][/vc_column_inner][vc_column_inner width=\"2/12\"][/vc_column_inner][vc_column_inner width=\"5/12\"][vc_column_text]FARMCHEMIE offers an island wide distribution, technical consultation and poultry vaccination services of high-quality animal healthcare products from world-renowned suppliers.[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_row_inner equal_height=\"yes\" content_placement=\"middle\" css=\".vc_custom_1662460080909{margin-top: 20px !important;margin-right: 50px !important;margin-bottom: 10px !important;margin-left: 50px !important;}\"][vc_column_inner width=\"2/12\"][vc_single_image image=\"2599\" img_size=\"full\"][/vc_column_inner][vc_column_inner width=\"1/12\"][/vc_column_inner][vc_column_inner width=\"2/12\"][vc_single_image image=\"2598\" img_size=\"full\"][/vc_column_inner][vc_column_inner width=\"2/12\"][/vc_column_inner][vc_column_inner width=\"1/12\"][/vc_column_inner][vc_column_inner width=\"1/12\"][vc_single_image image=\"2593\" img_size=\"full\"][vc_single_image image=\"2596\" img_size=\"full\"][/vc_column_inner][vc_column_inner width=\"1/12\"][vc_single_image image=\"2595\" img_size=\"full\"][/vc_column_inner][vc_column_inner width=\"1/12\"][vc_single_image image=\"2594\" img_size=\"full\"][vc_single_image image=\"2597\" img_size=\"full\"][/vc_column_inner][vc_column_inner width=\"1/12\"][/vc_column_inner][/vc_row_inner][vc_row_inner equal_height=\"yes\" css=\".vc_custom_1662370166856{margin-top: 20px !important;margin-right: 50px !important;margin-left: 50px !important;}\"][vc_column_inner width=\"5/12\"][vc_column_text]We provide toll-manufacturing services to globally recognized marketing companies for the Asian &amp; African markets. Our manufacturing plant is equipped with fully automated production lines from Bühler.[/vc_column_text][/vc_column_inner][vc_column_inner width=\"2/12\"][/vc_column_inner][vc_column_inner width=\"5/12\"][vc_column_text]We offer both locally manufactured and imported products to cater the poultry, dairy, swine, pet-care and aqua markets.[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_row_inner equal_height=\"yes\" content_placement=\"middle\" css=\".vc_custom_1662460080909{margin-top: 20px !important;margin-right: 50px !important;margin-bottom: 10px !important;margin-left: 50px !important;}\"][vc_column_inner width=\"5/12\"][vc_single_image image=\"2600\" img_size=\"full\" alignment=\"center\"][/vc_column_inner][vc_column_inner width=\"2/12\"][/vc_column_inner][vc_column_inner width=\"5/12\"][vc_single_image image=\"2615\" img_size=\"full\" alignment=\"center\"][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner width=\"1/2\"][ult_buttons btn_title=\"READ MORE\" btn_align=\"ubtn-center\" btn_size=\"ubtn-custom\" btn_width=\"300\" btn_height=\"60\" btn_title_color=\"#6e368d\" btn_bg_color=\"rgba(224,224,224,0.01)\" icon=\"dt-icon-the7-menu-014\" icon_size=\"40\" icon_color=\"#6e368d\" btn_icon_pos=\"ubtn-sep-icon-at-right\" btn_font_style=\"font-weight:bold;\" btn_font_size=\"desktop:24px;\"][/vc_column_inner][vc_column_inner width=\"1/2\"][ult_buttons btn_title=\"READ MORE\" btn_align=\"ubtn-center\" btn_size=\"ubtn-custom\" btn_width=\"300\" btn_height=\"60\" btn_title_color=\"#059444\" btn_bg_color=\"rgba(224,224,224,0.01)\" icon=\"dt-icon-the7-menu-013\" icon_size=\"40\" icon_color=\"#059444\" btn_icon_pos=\"ubtn-sep-icon-at-left\" btn_font_style=\"font-weight:bold;\" btn_font_size=\"desktop:24px;\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row full_width=\"stretch_row_content_no_spaces\" full_height=\"yes\" columns_placement=\"top\" bg_type=\"image\" parallax_style=\"vcpb-default\" bg_image_new=\"id^2604|url^https://farmchemie.yasithawd.com/wp-content/uploads/2022/09/rowimg_mod_4HigherRes1.jpg|caption^null|alt^null|title^rowimg_mod_4HigherRes1|description^null\" bg_image_repeat=\"no-repeat\"][vc_column][ultimate_heading main_heading=\"SPIRIT OF INNOVATION IN ANIMAL HEALTH\" main_heading_color=\"#6e368d\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:48px;\"][/ultimate_heading][vc_row_inner css=\".vc_custom_1662456998651{padding-bottom: 500px !important;}\"][vc_column_inner][/vc_column_inner][/vc_row_inner][vc_row_inner content_placement=\"bottom\" css=\".vc_custom_1662458571859{padding-right: 0px !important;padding-bottom: 10px !important;padding-left: 0px !important;}\"][vc_column_inner el_class=\"customborderradius1\" width=\"6/12\" css=\".vc_custom_1662539148421{background-color: rgba(255,255,255,0.5) !important;*background-color: rgb(255,255,255) !important;}\"][vc_single_image image=\"2567\" img_size=\"full\" alignment=\"center\"][/vc_column_inner][vc_column_inner width=\"3/12\"][/vc_column_inner][vc_column_inner width=\"3/12\" css=\".vc_custom_1662371690284{background-color: #6e368d !important;}\"][vc_single_image image=\"2566\" img_size=\"full\" alignment=\"center\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row]','Home','','inherit','closed','closed','','2525-revision-v1','','','2023-05-24 09:51:02','2023-05-24 09:51:02','',2525,'https://farmchemie.yasithawd.com/?p=2913',0,'revision','',0),(2914,1,'2023-05-24 10:02:50','2023-05-24 10:02:50','[vc_row full_width=\"stretch_row_content\" disable_element=\"yes\" bg_type=\"image\" parallax_style=\"vcpb-default\" bg_image_new=\"id^2524|url^https://farmchemie.yasithawd.com/wp-content/uploads/2022/09/marketbgimg1.png|caption^null|alt^null|title^marketbgimg1|description^null\" bg_image_repeat=\"no-repeat\" css=\".vc_custom_1684922556235{margin-right: 0px !important;margin-left: 0px !important;padding-right: 0px !important;padding-left: 0px !important;}\"][vc_column css=\".vc_custom_1662730433019{padding-right: 0px !important;padding-left: 0px !important;}\"][ultimate_heading main_heading=\"SELECT YOUR MARKET/REGION\" main_heading_color=\"#6e368d\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:48px;\"][/ultimate_heading][vc_empty_space height=\"300px\" css=\".vc_custom_1662447237222{margin: 0px !important;padding: 0px !important;background-image: url(https://farmchemie.yasithawd.com/wp-content/uploads/2022/09/marketbgimg1-sp.png?id=2527) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\"][vc_row_inner][vc_column_inner el_class=\"customborderradius1\" width=\"1/3\" css=\".vc_custom_1662539141341{background-color: #6e368d !important;}\"][ult_animation_block animation=\"fadeIn\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][bsf-info-box icon_type=\"custom\" icon_img=\"id^2537|url^https://farmchemie.yasithawd.com/wp-content/uploads/2022/09/earthicon-1.png|caption^null|alt^null|title^earthicon-1|description^null\" img_width=\"100\" title=\"Global\" pos=\"right\" title_font_style=\"font-weight:bold;\" title_font_size=\"desktop:48px;\" title_font_color=\"#ffffff\" desc_font_size=\"desktop:24px;\" desc_font_color=\"#ffffff\"]International Market[/bsf-info-box][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner el_class=\"customborderradius1\" width=\"1/3\" css=\".vc_custom_1662539133598{background-color: #059444 !important;}\"][ult_animation_block animation=\"fadeIn\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][bsf-info-box icon_type=\"custom\" icon_img=\"id^2536|url^https://farmchemie.yasithawd.com/wp-content/uploads/2022/09/srilankaicon-1.png|caption^null|alt^null|title^srilankaicon-1|description^null\" img_width=\"100\" title=\"Local\" pos=\"left\" title_font_style=\"font-weight:bold;\" title_font_size=\"desktop:48px;\" title_font_color=\"#ffffff\" desc_font_size=\"desktop:24px;\" desc_font_color=\"#ffffff\"]Sri Lankan Market[/bsf-info-box][/ult_animation_block][/vc_column_inner][/vc_row_inner][vc_row_inner equal_height=\"yes\" css=\".vc_custom_1662370166856{margin-top: 20px !important;margin-right: 50px !important;margin-left: 50px !important;}\"][vc_column_inner width=\"5/12\"][vc_column_text]FARMCHEMIE is a world-renowned manufacturer of feed additives and feed supplements. We offer our FarmStar and PetStar branded products to the international markets.[/vc_column_text][/vc_column_inner][vc_column_inner width=\"2/12\"][/vc_column_inner][vc_column_inner width=\"5/12\"][vc_column_text]FARMCHEMIE offers an island wide distribution, technical consultation and poultry vaccination services of high-quality animal healthcare products from world-renowned suppliers.[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_row_inner equal_height=\"yes\" content_placement=\"middle\" css=\".vc_custom_1662460080909{margin-top: 20px !important;margin-right: 50px !important;margin-bottom: 10px !important;margin-left: 50px !important;}\"][vc_column_inner width=\"2/12\"][vc_single_image image=\"2599\" img_size=\"full\"][/vc_column_inner][vc_column_inner width=\"1/12\"][/vc_column_inner][vc_column_inner width=\"2/12\"][vc_single_image image=\"2598\" img_size=\"full\"][/vc_column_inner][vc_column_inner width=\"2/12\"][/vc_column_inner][vc_column_inner width=\"1/12\"][/vc_column_inner][vc_column_inner width=\"1/12\"][vc_single_image image=\"2593\" img_size=\"full\"][vc_single_image image=\"2596\" img_size=\"full\"][/vc_column_inner][vc_column_inner width=\"1/12\"][vc_single_image image=\"2595\" img_size=\"full\"][/vc_column_inner][vc_column_inner width=\"1/12\"][vc_single_image image=\"2594\" img_size=\"full\"][vc_single_image image=\"2597\" img_size=\"full\"][/vc_column_inner][vc_column_inner width=\"1/12\"][/vc_column_inner][/vc_row_inner][vc_row_inner equal_height=\"yes\" css=\".vc_custom_1662370166856{margin-top: 20px !important;margin-right: 50px !important;margin-left: 50px !important;}\"][vc_column_inner width=\"5/12\"][vc_column_text]We provide toll-manufacturing services to globally recognized marketing companies for the Asian &amp; African markets. Our manufacturing plant is equipped with fully automated production lines from Bühler.[/vc_column_text][/vc_column_inner][vc_column_inner width=\"2/12\"][/vc_column_inner][vc_column_inner width=\"5/12\"][vc_column_text]We offer both locally manufactured and imported products to cater the poultry, dairy, swine, pet-care and aqua markets.[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_row_inner equal_height=\"yes\" content_placement=\"middle\" css=\".vc_custom_1662460080909{margin-top: 20px !important;margin-right: 50px !important;margin-bottom: 10px !important;margin-left: 50px !important;}\"][vc_column_inner width=\"5/12\"][vc_single_image image=\"2600\" img_size=\"full\" alignment=\"center\"][/vc_column_inner][vc_column_inner width=\"2/12\"][/vc_column_inner][vc_column_inner width=\"5/12\"][vc_single_image image=\"2615\" img_size=\"full\" alignment=\"center\"][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner width=\"1/2\"][ult_buttons btn_title=\"READ MORE\" btn_align=\"ubtn-center\" btn_size=\"ubtn-custom\" btn_width=\"300\" btn_height=\"60\" btn_title_color=\"#6e368d\" btn_bg_color=\"rgba(224,224,224,0.01)\" icon=\"dt-icon-the7-menu-014\" icon_size=\"40\" icon_color=\"#6e368d\" btn_icon_pos=\"ubtn-sep-icon-at-right\" btn_font_style=\"font-weight:bold;\" btn_font_size=\"desktop:24px;\"][/vc_column_inner][vc_column_inner width=\"1/2\"][ult_buttons btn_title=\"READ MORE\" btn_align=\"ubtn-center\" btn_size=\"ubtn-custom\" btn_width=\"300\" btn_height=\"60\" btn_title_color=\"#059444\" btn_bg_color=\"rgba(224,224,224,0.01)\" icon=\"dt-icon-the7-menu-013\" icon_size=\"40\" icon_color=\"#059444\" btn_icon_pos=\"ubtn-sep-icon-at-left\" btn_font_style=\"font-weight:bold;\" btn_font_size=\"desktop:24px;\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row full_width=\"stretch_row_content_no_spaces\" full_height=\"yes\" columns_placement=\"top\" disable_element=\"yes\" bg_type=\"image\" parallax_style=\"vcpb-default\" bg_image_new=\"id^2604|url^https://farmchemie.yasithawd.com/wp-content/uploads/2022/09/rowimg_mod_4HigherRes1.jpg|caption^null|alt^null|title^rowimg_mod_4HigherRes1|description^null\" bg_image_repeat=\"no-repeat\"][vc_column][ultimate_heading main_heading=\"SPIRIT OF INNOVATION IN ANIMAL HEALTH\" main_heading_color=\"#6e368d\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:48px;\"][/ultimate_heading][vc_row_inner css=\".vc_custom_1662456998651{padding-bottom: 500px !important;}\"][vc_column_inner][/vc_column_inner][/vc_row_inner][vc_row_inner content_placement=\"bottom\" css=\".vc_custom_1662458571859{padding-right: 0px !important;padding-bottom: 10px !important;padding-left: 0px !important;}\"][vc_column_inner el_class=\"customborderradius1\" width=\"6/12\" css=\".vc_custom_1662539148421{background-color: rgba(255,255,255,0.5) !important;*background-color: rgb(255,255,255) !important;}\"][vc_single_image image=\"2567\" img_size=\"full\" alignment=\"center\"][/vc_column_inner][vc_column_inner width=\"3/12\"][/vc_column_inner][vc_column_inner width=\"3/12\" css=\".vc_custom_1662371690284{background-color: #6e368d !important;}\"][vc_single_image image=\"2566\" img_size=\"full\" alignment=\"center\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row]','Home','','inherit','closed','closed','','2525-revision-v1','','','2023-05-24 10:02:50','2023-05-24 10:02:50','',2525,'https://farmchemie.yasithawd.com/?p=2914',0,'revision','',0),(2919,1,'2023-06-14 03:35:11','2023-06-14 03:35:11','','WhatsApp Image 2023-05-16 at 2.43.17 AM','','inherit','open','closed','','whatsapp-image-2023-05-16-at-2-43-17-am','','','2023-06-14 03:35:11','2023-06-14 03:35:11','',2917,'https://farmchemie.yasithawd.com/wp-content/uploads/2023/06/WhatsApp-Image-2023-05-16-at-2.43.17-AM.jpeg',0,'attachment','image/jpeg',0),(2920,1,'2023-06-14 03:35:21','2023-06-14 03:35:21','[vc_row][vc_column][ultimate_heading main_heading=\"Our History\" main_heading_color=\"#762888\" alignment=\"left\"][/ultimate_heading][vc_row_inner][vc_column_inner width=\"2/3\"][ultimate_heading main_heading=\"Our History\" heading_tag=\"h3\" main_heading_color=\"#039447\" alignment=\"left\" margin_design_tab_text=\"\"]Founded in 2002 by Mr. Uditha Wanigasinghe, an agriculturist who had a mission to aid valuable livestock producers in the country to enhance the yield and profitability of production. FARMCHEMIE introduced unprecedented solutions and consistent technical services to gain our customers’ trust and became the market leader in animal health products in 2006 within just four years.[/ultimate_heading][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_single_image image=\"2919\" img_size=\"full\"][/vc_column_inner][/vc_row_inner][icon_timeline timeline_style=\"jstime\" timeline_line_color=\"#059444\" time_sep_color=\"#059444\" time_sep_bg_color=\"#059444\"][icon_timeline_sep time_sep_title=\"Founded in 2002\" font_size=\"desktop:13px;\"][icon_timeline_feat]Founded in 2002 by Mr. Uditha Wanigasinghe, an agriculturist who had a mission to aid valuable livestock producers in the country to enhance the yield and profitability of production. FARMCHEMIE introduced unprecedented solutions and consistent technical services to gain our customers’ trust and became the market leader in animal health products in 2006 within just four years.[/icon_timeline_feat][icon_timeline_item time_title=\"2006 Sri Lankan Avian Influenza\"]<img class=\"alignnone size-medium wp-image-2895\" src=\"https://farmchemie.yasithawd.com/wp-content/uploads/2023/05/WhatsApp-Image-2023-05-16-at-2.43.25-AM-300x225.jpeg\" alt=\"\" width=\"300\" height=\"225\" />\r\n\r\nIn 2006, the Sri Lankan poultry industry was affected with Avian Influenza which became a difficult period for the growth of FARMCHEMIE. This was the key factor in our decision to diversify into Agro Products. PLANTCHEM &amp; PLANTSEEDS were established to offer solutions in Agro specialty fertilizers, pesticides and seeds to invaluable cultivators.[/icon_timeline_item][icon_timeline_item time_title=\"2010 FEED CHEMIE\"]<img class=\"alignnone size-medium wp-image-2896\" src=\"https://farmchemie.yasithawd.com/wp-content/uploads/2023/05/WhatsApp-Image-2023-05-16-at-2.43.38-AM-300x225.jpeg\" alt=\"\" width=\"300\" height=\"225\" />\r\n\r\nIn 2010, FEED CHEMIE became the subsequent addition to ever-growing vision of Mr. Uditha Wanigasinghe and entered the Animal Feed Additives market.[/icon_timeline_item][icon_timeline_item time_title=\"2012 Production facility\"]<img class=\"alignnone wp-image-2897 size-medium\" src=\"https://farmchemie.yasithawd.com/wp-content/uploads/2023/05/WhatsApp-Image-2023-05-16-at-2.43.56-AM-300x254.jpeg\" alt=\"\" width=\"300\" height=\"254\" />\r\n\r\nThe year 2012 is described as a turning point in our journey as FARMCHEMIE established our first production facility for the manufacturing and packing of animal health products. FARMCHEMIE became the first animal health organization in Sri Lanka to obtain ISO 9001:2015 and WHO GMP International Quality Certification. With our own formulation unit, FARMCHEMIE was able to offer customized solutions to cater the needs of the Sri Lankan Livestock Industry.[/icon_timeline_item][icon_timeline_item time_title=\"2016 Another key milestone\"]<img class=\"alignnone wp-image-2898 size-medium\" src=\"https://farmchemie.yasithawd.com/wp-content/uploads/2023/05/WhatsApp-Image-2023-05-16-at-2.44.00-AM-229x300.jpeg\" alt=\"\" width=\"229\" height=\"300\" />\r\n\r\nThe year 2016 was another key milestone with the entry to the International Markets. FARMCHEMIE exported our first Feed Premix consignment to India and in 2018 our export operation was distinctly established as FARMCHEMIE MANUFACTURERS, a Board of Investment (BOI) approved entity.[/icon_timeline_item][icon_timeline_feat time_title=\"invested in fully automated manufacturing facility from Bühler\"]<img class=\"alignnone wp-image-2899 size-medium\" src=\"https://farmchemie.yasithawd.com/wp-content/uploads/2023/05/WhatsApp-Image-2023-05-16-at-2.44.14-AM-300x192.jpeg\" alt=\"\" width=\"300\" height=\"192\" />\r\n\r\nFARMCHEMIE MANUFACTURERS has invested in fully automated manufacturing facility from Bühler and became the first Sri Lankan owned company to obtain FAMI-QS International Quality Certification.[/icon_timeline_feat][icon_timeline_feat time_title=\"DYEVSTA\"]<img class=\"alignnone wp-image-2901 size-medium\" src=\"https://farmchemie.yasithawd.com/wp-content/uploads/2023/05/WhatsApp-Image-2023-05-16-at-2.45.03-AM-300x59.jpeg\" alt=\"\" width=\"300\" height=\"59\" />\r\n\r\nWith the trust and reputation built as a reliable manufacturer of animal feed additives and supplements in the global market, several world-renowned international brands have appointed FARMCHEMIE MANUFACTURERS as the official toll manufacturer partner. FARMCHEMIE MANUFACTURERS exports a wide range of products consisting of premixes, specialty feed additives, oral liquid supplements and pet supplements to various markets in South Asia, East Asia, Middle East and Africa.\r\n\r\nFARMCHEMIE, FEED CHEMIE &amp; FARMCHEMIE MANUFACTURERS currently operate under the ownership of our holding company, DYVESTA.\r\n\r\nDYEVSTA has become the pinnacle of Animal Nutrition and Health.\r\n\r\nDYVESTA is Dynamic, through our continuous evolution, growth and progress. DYVESTA is Diverse, in terms of both our business strategy and our community. DYVESTA is Devoted to our valuable business partners through exceptional service.[/icon_timeline_feat][/icon_timeline][/vc_column][/vc_row][vc_row full_width=\"stretch_row_content\" equal_height=\"yes\" bg_type=\"grad\" bg_override=\"ex-full\" bg_grad=\"background: -webkit-gradient(linear, left top, left bottom, color-stop(49%, #039447), color-stop(51%, #762888));background: -moz-linear-gradient(45deg,#039447 49%,#762888 51%);background: -webkit-linear-gradient(45deg,#039447 49%,#762888 51%);background: -o-linear-gradient(45deg,#039447 49%,#762888 51%);background: -ms-linear-gradient(45deg,#039447 49%,#762888 51%);background: linear-gradient(45deg,#039447 49%,#762888 51%);\" css=\".vc_custom_1686543324238{padding-top: 35px !important;padding-bottom: 70px !important;}\"][vc_column width=\"1/2\"][ultimate_heading main_heading=\"Vision\" main_heading_color=\"#762888\" sub_heading_color=\"#ffffff\"]To become a world renowned manufacturer of Animal Health products and a trusted partner among our stakeholders for our integrity as well as for providing effective solutions[/ultimate_heading][/vc_column][vc_column width=\"1/2\"][ultimate_heading main_heading=\"Mission\" main_heading_color=\"#039447\" sub_heading_color=\"#ffffff\"]To be the customers’ first and best choice by ensuring outstanding satisfaction through a well-trained and dedicated team. Prompt and quality solutions to our customers’ requirements will determine the increase of return on investment for us.[/ultimate_heading][/vc_column][/vc_row][vc_row css=\".vc_custom_1684836308288{margin-top: 15px !important;}\"][vc_column][ultimate_heading main_heading=\"Achievements\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;\"][/ultimate_heading][/vc_column][/vc_row]','About us','','inherit','closed','closed','','2917-revision-v1','','','2023-06-14 03:35:21','2023-06-14 03:35:21','',2917,'https://farmchemie.yasithawd.com/?p=2920',0,'revision','',0),(2921,1,'2023-06-14 03:36:27','2023-06-14 03:36:27','[vc_row][vc_column][ultimate_heading main_heading=\"Our History\" main_heading_color=\"#762888\" alignment=\"left\"][/ultimate_heading][vc_row_inner css=\".vc_custom_1686713784619{margin-top: 35px !important;}\"][vc_column_inner width=\"2/3\"][ultimate_heading main_heading=\"Founded in 2002\" heading_tag=\"h3\" main_heading_color=\"#039447\" alignment=\"left\" margin_design_tab_text=\"\"]Founded in 2002 by Mr. Uditha Wanigasinghe, an agriculturist who had a mission to aid valuable livestock producers in the country to enhance the yield and profitability of production. FARMCHEMIE introduced unprecedented solutions and consistent technical services to gain our customers’ trust and became the market leader in animal health products in 2006 within just four years.[/ultimate_heading][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_single_image image=\"2919\" img_size=\"full\"][/vc_column_inner][/vc_row_inner][icon_timeline timeline_style=\"jstime\" timeline_line_color=\"#059444\" time_sep_color=\"#059444\" time_sep_bg_color=\"#059444\"][icon_timeline_sep time_sep_title=\"Founded in 2002\" font_size=\"desktop:13px;\"][icon_timeline_feat]Founded in 2002 by Mr. Uditha Wanigasinghe, an agriculturist who had a mission to aid valuable livestock producers in the country to enhance the yield and profitability of production. FARMCHEMIE introduced unprecedented solutions and consistent technical services to gain our customers’ trust and became the market leader in animal health products in 2006 within just four years.[/icon_timeline_feat][icon_timeline_item time_title=\"2006 Sri Lankan Avian Influenza\"]<img class=\"alignnone size-medium wp-image-2895\" src=\"https://farmchemie.yasithawd.com/wp-content/uploads/2023/05/WhatsApp-Image-2023-05-16-at-2.43.25-AM-300x225.jpeg\" alt=\"\" width=\"300\" height=\"225\" />\r\n\r\nIn 2006, the Sri Lankan poultry industry was affected with Avian Influenza which became a difficult period for the growth of FARMCHEMIE. This was the key factor in our decision to diversify into Agro Products. PLANTCHEM &amp; PLANTSEEDS were established to offer solutions in Agro specialty fertilizers, pesticides and seeds to invaluable cultivators.[/icon_timeline_item][icon_timeline_item time_title=\"2010 FEED CHEMIE\"]<img class=\"alignnone size-medium wp-image-2896\" src=\"https://farmchemie.yasithawd.com/wp-content/uploads/2023/05/WhatsApp-Image-2023-05-16-at-2.43.38-AM-300x225.jpeg\" alt=\"\" width=\"300\" height=\"225\" />\r\n\r\nIn 2010, FEED CHEMIE became the subsequent addition to ever-growing vision of Mr. Uditha Wanigasinghe and entered the Animal Feed Additives market.[/icon_timeline_item][icon_timeline_item time_title=\"2012 Production facility\"]<img class=\"alignnone wp-image-2897 size-medium\" src=\"https://farmchemie.yasithawd.com/wp-content/uploads/2023/05/WhatsApp-Image-2023-05-16-at-2.43.56-AM-300x254.jpeg\" alt=\"\" width=\"300\" height=\"254\" />\r\n\r\nThe year 2012 is described as a turning point in our journey as FARMCHEMIE established our first production facility for the manufacturing and packing of animal health products. FARMCHEMIE became the first animal health organization in Sri Lanka to obtain ISO 9001:2015 and WHO GMP International Quality Certification. With our own formulation unit, FARMCHEMIE was able to offer customized solutions to cater the needs of the Sri Lankan Livestock Industry.[/icon_timeline_item][icon_timeline_item time_title=\"2016 Another key milestone\"]<img class=\"alignnone wp-image-2898 size-medium\" src=\"https://farmchemie.yasithawd.com/wp-content/uploads/2023/05/WhatsApp-Image-2023-05-16-at-2.44.00-AM-229x300.jpeg\" alt=\"\" width=\"229\" height=\"300\" />\r\n\r\nThe year 2016 was another key milestone with the entry to the International Markets. FARMCHEMIE exported our first Feed Premix consignment to India and in 2018 our export operation was distinctly established as FARMCHEMIE MANUFACTURERS, a Board of Investment (BOI) approved entity.[/icon_timeline_item][icon_timeline_feat time_title=\"invested in fully automated manufacturing facility from Bühler\"]<img class=\"alignnone wp-image-2899 size-medium\" src=\"https://farmchemie.yasithawd.com/wp-content/uploads/2023/05/WhatsApp-Image-2023-05-16-at-2.44.14-AM-300x192.jpeg\" alt=\"\" width=\"300\" height=\"192\" />\r\n\r\nFARMCHEMIE MANUFACTURERS has invested in fully automated manufacturing facility from Bühler and became the first Sri Lankan owned company to obtain FAMI-QS International Quality Certification.[/icon_timeline_feat][icon_timeline_feat time_title=\"DYEVSTA\"]<img class=\"alignnone wp-image-2901 size-medium\" src=\"https://farmchemie.yasithawd.com/wp-content/uploads/2023/05/WhatsApp-Image-2023-05-16-at-2.45.03-AM-300x59.jpeg\" alt=\"\" width=\"300\" height=\"59\" />\r\n\r\nWith the trust and reputation built as a reliable manufacturer of animal feed additives and supplements in the global market, several world-renowned international brands have appointed FARMCHEMIE MANUFACTURERS as the official toll manufacturer partner. FARMCHEMIE MANUFACTURERS exports a wide range of products consisting of premixes, specialty feed additives, oral liquid supplements and pet supplements to various markets in South Asia, East Asia, Middle East and Africa.\r\n\r\nFARMCHEMIE, FEED CHEMIE &amp; FARMCHEMIE MANUFACTURERS currently operate under the ownership of our holding company, DYVESTA.\r\n\r\nDYEVSTA has become the pinnacle of Animal Nutrition and Health.\r\n\r\nDYVESTA is Dynamic, through our continuous evolution, growth and progress. DYVESTA is Diverse, in terms of both our business strategy and our community. DYVESTA is Devoted to our valuable business partners through exceptional service.[/icon_timeline_feat][/icon_timeline][/vc_column][/vc_row][vc_row full_width=\"stretch_row_content\" equal_height=\"yes\" bg_type=\"grad\" bg_override=\"ex-full\" bg_grad=\"background: -webkit-gradient(linear, left top, left bottom, color-stop(49%, #039447), color-stop(51%, #762888));background: -moz-linear-gradient(45deg,#039447 49%,#762888 51%);background: -webkit-linear-gradient(45deg,#039447 49%,#762888 51%);background: -o-linear-gradient(45deg,#039447 49%,#762888 51%);background: -ms-linear-gradient(45deg,#039447 49%,#762888 51%);background: linear-gradient(45deg,#039447 49%,#762888 51%);\" css=\".vc_custom_1686543324238{padding-top: 35px !important;padding-bottom: 70px !important;}\"][vc_column width=\"1/2\"][ultimate_heading main_heading=\"Vision\" main_heading_color=\"#762888\" sub_heading_color=\"#ffffff\"]To become a world renowned manufacturer of Animal Health products and a trusted partner among our stakeholders for our integrity as well as for providing effective solutions[/ultimate_heading][/vc_column][vc_column width=\"1/2\"][ultimate_heading main_heading=\"Mission\" main_heading_color=\"#039447\" sub_heading_color=\"#ffffff\"]To be the customers’ first and best choice by ensuring outstanding satisfaction through a well-trained and dedicated team. Prompt and quality solutions to our customers’ requirements will determine the increase of return on investment for us.[/ultimate_heading][/vc_column][/vc_row][vc_row css=\".vc_custom_1684836308288{margin-top: 15px !important;}\"][vc_column][ultimate_heading main_heading=\"Achievements\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;\"][/ultimate_heading][/vc_column][/vc_row]','About us','','inherit','closed','closed','','2917-revision-v1','','','2023-06-14 03:36:27','2023-06-14 03:36:27','',2917,'https://farmchemie.yasithawd.com/?p=2921',0,'revision','',0),(2922,1,'2023-06-14 03:39:09','2023-06-14 03:39:09','[vc_row][vc_column][ultimate_heading main_heading=\"Our History\" main_heading_color=\"#762888\" alignment=\"left\"][/ultimate_heading][vc_row_inner css=\".vc_custom_1686713784619{margin-top: 35px !important;}\"][vc_column_inner width=\"2/3\"][ultimate_heading main_heading=\"2006\" heading_tag=\"h3\" main_heading_color=\"#039447\" alignment=\"left\" margin_design_tab_text=\"\"]In 2006, the Sri Lankan poultry industry was affected with Avian Influenza which became a difficult period for the growth of FARMCHEMIE. This was the key factor in our decision to diversify into Agro Products. PLANTCHEM &amp; PLANTSEEDS were established to offer solutions in Agro specialty fertilizers, pesticides and seeds to invaluable cultivators.[/ultimate_heading][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_single_image image=\"2895\" img_size=\"full\"][/vc_column_inner][/vc_row_inner][vc_row_inner css=\".vc_custom_1686713784619{margin-top: 35px !important;}\"][vc_column_inner width=\"1/3\"][vc_single_image image=\"2919\" img_size=\"full\"][/vc_column_inner][vc_column_inner width=\"2/3\"][ultimate_heading main_heading=\"Founded in 2002\" heading_tag=\"h3\" main_heading_color=\"#039447\" alignment=\"left\" margin_design_tab_text=\"\"]Founded in 2002 by Mr. Uditha Wanigasinghe, an agriculturist who had a mission to aid valuable livestock producers in the country to enhance the yield and profitability of production. FARMCHEMIE introduced unprecedented solutions and consistent technical services to gain our customers’ trust and became the market leader in animal health products in 2006 within just four years.[/ultimate_heading][/vc_column_inner][/vc_row_inner][vc_row_inner css=\".vc_custom_1686713784619{margin-top: 35px !important;}\"][vc_column_inner width=\"2/3\"][ultimate_heading main_heading=\"2010\" heading_tag=\"h3\" main_heading_color=\"#039447\" alignment=\"left\" margin_design_tab_text=\"\"]In 2010, FEED CHEMIE became the subsequent addition to ever-growing vision of Mr. Uditha Wanigasinghe and entered the Animal Feed Additives market.[/ultimate_heading][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_single_image image=\"2896\" img_size=\"full\"][/vc_column_inner][/vc_row_inner][icon_timeline timeline_style=\"jstime\" timeline_line_color=\"#059444\" time_sep_color=\"#059444\" time_sep_bg_color=\"#059444\"][icon_timeline_sep time_sep_title=\"Founded in 2002\" font_size=\"desktop:13px;\"][icon_timeline_feat]Founded in 2002 by Mr. Uditha Wanigasinghe, an agriculturist who had a mission to aid valuable livestock producers in the country to enhance the yield and profitability of production. FARMCHEMIE introduced unprecedented solutions and consistent technical services to gain our customers’ trust and became the market leader in animal health products in 2006 within just four years.[/icon_timeline_feat][icon_timeline_item time_title=\"2006 Sri Lankan Avian Influenza\"]<img class=\"alignnone size-medium wp-image-2895\" src=\"https://farmchemie.yasithawd.com/wp-content/uploads/2023/05/WhatsApp-Image-2023-05-16-at-2.43.25-AM-300x225.jpeg\" alt=\"\" width=\"300\" height=\"225\" />\r\n\r\nIn 2006, the Sri Lankan poultry industry was affected with Avian Influenza which became a difficult period for the growth of FARMCHEMIE. This was the key factor in our decision to diversify into Agro Products. PLANTCHEM &amp; PLANTSEEDS were established to offer solutions in Agro specialty fertilizers, pesticides and seeds to invaluable cultivators.[/icon_timeline_item][icon_timeline_item time_title=\"2010 FEED CHEMIE\"]<img class=\"alignnone size-medium wp-image-2896\" src=\"https://farmchemie.yasithawd.com/wp-content/uploads/2023/05/WhatsApp-Image-2023-05-16-at-2.43.38-AM-300x225.jpeg\" alt=\"\" width=\"300\" height=\"225\" />\r\n\r\nIn 2010, FEED CHEMIE became the subsequent addition to ever-growing vision of Mr. Uditha Wanigasinghe and entered the Animal Feed Additives market.[/icon_timeline_item][icon_timeline_item time_title=\"2012 Production facility\"]<img class=\"alignnone wp-image-2897 size-medium\" src=\"https://farmchemie.yasithawd.com/wp-content/uploads/2023/05/WhatsApp-Image-2023-05-16-at-2.43.56-AM-300x254.jpeg\" alt=\"\" width=\"300\" height=\"254\" />\r\n\r\nThe year 2012 is described as a turning point in our journey as FARMCHEMIE established our first production facility for the manufacturing and packing of animal health products. FARMCHEMIE became the first animal health organization in Sri Lanka to obtain ISO 9001:2015 and WHO GMP International Quality Certification. With our own formulation unit, FARMCHEMIE was able to offer customized solutions to cater the needs of the Sri Lankan Livestock Industry.[/icon_timeline_item][icon_timeline_item time_title=\"2016 Another key milestone\"]<img class=\"alignnone wp-image-2898 size-medium\" src=\"https://farmchemie.yasithawd.com/wp-content/uploads/2023/05/WhatsApp-Image-2023-05-16-at-2.44.00-AM-229x300.jpeg\" alt=\"\" width=\"229\" height=\"300\" />\r\n\r\nThe year 2016 was another key milestone with the entry to the International Markets. FARMCHEMIE exported our first Feed Premix consignment to India and in 2018 our export operation was distinctly established as FARMCHEMIE MANUFACTURERS, a Board of Investment (BOI) approved entity.[/icon_timeline_item][icon_timeline_feat time_title=\"invested in fully automated manufacturing facility from Bühler\"]<img class=\"alignnone wp-image-2899 size-medium\" src=\"https://farmchemie.yasithawd.com/wp-content/uploads/2023/05/WhatsApp-Image-2023-05-16-at-2.44.14-AM-300x192.jpeg\" alt=\"\" width=\"300\" height=\"192\" />\r\n\r\nFARMCHEMIE MANUFACTURERS has invested in fully automated manufacturing facility from Bühler and became the first Sri Lankan owned company to obtain FAMI-QS International Quality Certification.[/icon_timeline_feat][icon_timeline_feat time_title=\"DYEVSTA\"]<img class=\"alignnone wp-image-2901 size-medium\" src=\"https://farmchemie.yasithawd.com/wp-content/uploads/2023/05/WhatsApp-Image-2023-05-16-at-2.45.03-AM-300x59.jpeg\" alt=\"\" width=\"300\" height=\"59\" />\r\n\r\nWith the trust and reputation built as a reliable manufacturer of animal feed additives and supplements in the global market, several world-renowned international brands have appointed FARMCHEMIE MANUFACTURERS as the official toll manufacturer partner. FARMCHEMIE MANUFACTURERS exports a wide range of products consisting of premixes, specialty feed additives, oral liquid supplements and pet supplements to various markets in South Asia, East Asia, Middle East and Africa.\r\n\r\nFARMCHEMIE, FEED CHEMIE &amp; FARMCHEMIE MANUFACTURERS currently operate under the ownership of our holding company, DYVESTA.\r\n\r\nDYEVSTA has become the pinnacle of Animal Nutrition and Health.\r\n\r\nDYVESTA is Dynamic, through our continuous evolution, growth and progress. DYVESTA is Diverse, in terms of both our business strategy and our community. DYVESTA is Devoted to our valuable business partners through exceptional service.[/icon_timeline_feat][/icon_timeline][/vc_column][/vc_row][vc_row full_width=\"stretch_row_content\" equal_height=\"yes\" bg_type=\"grad\" bg_override=\"ex-full\" bg_grad=\"background: -webkit-gradient(linear, left top, left bottom, color-stop(49%, #039447), color-stop(51%, #762888));background: -moz-linear-gradient(45deg,#039447 49%,#762888 51%);background: -webkit-linear-gradient(45deg,#039447 49%,#762888 51%);background: -o-linear-gradient(45deg,#039447 49%,#762888 51%);background: -ms-linear-gradient(45deg,#039447 49%,#762888 51%);background: linear-gradient(45deg,#039447 49%,#762888 51%);\" css=\".vc_custom_1686543324238{padding-top: 35px !important;padding-bottom: 70px !important;}\"][vc_column width=\"1/2\"][ultimate_heading main_heading=\"Vision\" main_heading_color=\"#762888\" sub_heading_color=\"#ffffff\"]To become a world renowned manufacturer of Animal Health products and a trusted partner among our stakeholders for our integrity as well as for providing effective solutions[/ultimate_heading][/vc_column][vc_column width=\"1/2\"][ultimate_heading main_heading=\"Mission\" main_heading_color=\"#039447\" sub_heading_color=\"#ffffff\"]To be the customers’ first and best choice by ensuring outstanding satisfaction through a well-trained and dedicated team. Prompt and quality solutions to our customers’ requirements will determine the increase of return on investment for us.[/ultimate_heading][/vc_column][/vc_row][vc_row css=\".vc_custom_1684836308288{margin-top: 15px !important;}\"][vc_column][ultimate_heading main_heading=\"Achievements\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;\"][/ultimate_heading][/vc_column][/vc_row]','About us','','inherit','closed','closed','','2917-revision-v1','','','2023-06-14 03:39:09','2023-06-14 03:39:09','',2917,'https://farmchemie.yasithawd.com/?p=2922',0,'revision','',0),(2923,1,'2023-06-14 03:39:38','2023-06-14 03:39:38','[vc_row][vc_column][ultimate_heading main_heading=\"Our History\" main_heading_color=\"#762888\" alignment=\"left\"][/ultimate_heading][vc_row_inner css=\".vc_custom_1686713784619{margin-top: 35px !important;}\"][vc_column_inner width=\"1/3\"][vc_single_image image=\"2919\" img_size=\"full\"][/vc_column_inner][vc_column_inner width=\"2/3\"][ultimate_heading main_heading=\"Founded in 2002\" heading_tag=\"h3\" main_heading_color=\"#039447\" alignment=\"left\" margin_design_tab_text=\"\"]Founded in 2002 by Mr. Uditha Wanigasinghe, an agriculturist who had a mission to aid valuable livestock producers in the country to enhance the yield and profitability of production. FARMCHEMIE introduced unprecedented solutions and consistent technical services to gain our customers’ trust and became the market leader in animal health products in 2006 within just four years.[/ultimate_heading][/vc_column_inner][/vc_row_inner][vc_row_inner css=\".vc_custom_1686713784619{margin-top: 35px !important;}\"][vc_column_inner width=\"2/3\"][ultimate_heading main_heading=\"2006\" heading_tag=\"h3\" main_heading_color=\"#039447\" alignment=\"left\" margin_design_tab_text=\"\"]In 2006, the Sri Lankan poultry industry was affected with Avian Influenza which became a difficult period for the growth of FARMCHEMIE. This was the key factor in our decision to diversify into Agro Products. PLANTCHEM &amp; PLANTSEEDS were established to offer solutions in Agro specialty fertilizers, pesticides and seeds to invaluable cultivators.[/ultimate_heading][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_single_image image=\"2895\" img_size=\"full\"][/vc_column_inner][/vc_row_inner][vc_row_inner css=\".vc_custom_1686713784619{margin-top: 35px !important;}\"][vc_column_inner width=\"1/3\"][vc_single_image image=\"2896\" img_size=\"full\"][/vc_column_inner][vc_column_inner width=\"2/3\"][ultimate_heading main_heading=\"2010\" heading_tag=\"h3\" main_heading_color=\"#039447\" alignment=\"left\" margin_design_tab_text=\"\"]In 2010, FEED CHEMIE became the subsequent addition to ever-growing vision of Mr. Uditha Wanigasinghe and entered the Animal Feed Additives market.[/ultimate_heading][/vc_column_inner][/vc_row_inner][icon_timeline timeline_style=\"jstime\" timeline_line_color=\"#059444\" time_sep_color=\"#059444\" time_sep_bg_color=\"#059444\"][icon_timeline_sep time_sep_title=\"Founded in 2002\" font_size=\"desktop:13px;\"][icon_timeline_feat]Founded in 2002 by Mr. Uditha Wanigasinghe, an agriculturist who had a mission to aid valuable livestock producers in the country to enhance the yield and profitability of production. FARMCHEMIE introduced unprecedented solutions and consistent technical services to gain our customers’ trust and became the market leader in animal health products in 2006 within just four years.[/icon_timeline_feat][icon_timeline_item time_title=\"2006 Sri Lankan Avian Influenza\"]<img class=\"alignnone size-medium wp-image-2895\" src=\"https://farmchemie.yasithawd.com/wp-content/uploads/2023/05/WhatsApp-Image-2023-05-16-at-2.43.25-AM-300x225.jpeg\" alt=\"\" width=\"300\" height=\"225\" />\r\n\r\nIn 2006, the Sri Lankan poultry industry was affected with Avian Influenza which became a difficult period for the growth of FARMCHEMIE. This was the key factor in our decision to diversify into Agro Products. PLANTCHEM &amp; PLANTSEEDS were established to offer solutions in Agro specialty fertilizers, pesticides and seeds to invaluable cultivators.[/icon_timeline_item][icon_timeline_item time_title=\"2010 FEED CHEMIE\"]<img class=\"alignnone size-medium wp-image-2896\" src=\"https://farmchemie.yasithawd.com/wp-content/uploads/2023/05/WhatsApp-Image-2023-05-16-at-2.43.38-AM-300x225.jpeg\" alt=\"\" width=\"300\" height=\"225\" />\r\n\r\nIn 2010, FEED CHEMIE became the subsequent addition to ever-growing vision of Mr. Uditha Wanigasinghe and entered the Animal Feed Additives market.[/icon_timeline_item][icon_timeline_item time_title=\"2012 Production facility\"]<img class=\"alignnone wp-image-2897 size-medium\" src=\"https://farmchemie.yasithawd.com/wp-content/uploads/2023/05/WhatsApp-Image-2023-05-16-at-2.43.56-AM-300x254.jpeg\" alt=\"\" width=\"300\" height=\"254\" />\r\n\r\nThe year 2012 is described as a turning point in our journey as FARMCHEMIE established our first production facility for the manufacturing and packing of animal health products. FARMCHEMIE became the first animal health organization in Sri Lanka to obtain ISO 9001:2015 and WHO GMP International Quality Certification. With our own formulation unit, FARMCHEMIE was able to offer customized solutions to cater the needs of the Sri Lankan Livestock Industry.[/icon_timeline_item][icon_timeline_item time_title=\"2016 Another key milestone\"]<img class=\"alignnone wp-image-2898 size-medium\" src=\"https://farmchemie.yasithawd.com/wp-content/uploads/2023/05/WhatsApp-Image-2023-05-16-at-2.44.00-AM-229x300.jpeg\" alt=\"\" width=\"229\" height=\"300\" />\r\n\r\nThe year 2016 was another key milestone with the entry to the International Markets. FARMCHEMIE exported our first Feed Premix consignment to India and in 2018 our export operation was distinctly established as FARMCHEMIE MANUFACTURERS, a Board of Investment (BOI) approved entity.[/icon_timeline_item][icon_timeline_feat time_title=\"invested in fully automated manufacturing facility from Bühler\"]<img class=\"alignnone wp-image-2899 size-medium\" src=\"https://farmchemie.yasithawd.com/wp-content/uploads/2023/05/WhatsApp-Image-2023-05-16-at-2.44.14-AM-300x192.jpeg\" alt=\"\" width=\"300\" height=\"192\" />\r\n\r\nFARMCHEMIE MANUFACTURERS has invested in fully automated manufacturing facility from Bühler and became the first Sri Lankan owned company to obtain FAMI-QS International Quality Certification.[/icon_timeline_feat][icon_timeline_feat time_title=\"DYEVSTA\"]<img class=\"alignnone wp-image-2901 size-medium\" src=\"https://farmchemie.yasithawd.com/wp-content/uploads/2023/05/WhatsApp-Image-2023-05-16-at-2.45.03-AM-300x59.jpeg\" alt=\"\" width=\"300\" height=\"59\" />\r\n\r\nWith the trust and reputation built as a reliable manufacturer of animal feed additives and supplements in the global market, several world-renowned international brands have appointed FARMCHEMIE MANUFACTURERS as the official toll manufacturer partner. FARMCHEMIE MANUFACTURERS exports a wide range of products consisting of premixes, specialty feed additives, oral liquid supplements and pet supplements to various markets in South Asia, East Asia, Middle East and Africa.\r\n\r\nFARMCHEMIE, FEED CHEMIE &amp; FARMCHEMIE MANUFACTURERS currently operate under the ownership of our holding company, DYVESTA.\r\n\r\nDYEVSTA has become the pinnacle of Animal Nutrition and Health.\r\n\r\nDYVESTA is Dynamic, through our continuous evolution, growth and progress. DYVESTA is Diverse, in terms of both our business strategy and our community. DYVESTA is Devoted to our valuable business partners through exceptional service.[/icon_timeline_feat][/icon_timeline][/vc_column][/vc_row][vc_row full_width=\"stretch_row_content\" equal_height=\"yes\" bg_type=\"grad\" bg_override=\"ex-full\" bg_grad=\"background: -webkit-gradient(linear, left top, left bottom, color-stop(49%, #039447), color-stop(51%, #762888));background: -moz-linear-gradient(45deg,#039447 49%,#762888 51%);background: -webkit-linear-gradient(45deg,#039447 49%,#762888 51%);background: -o-linear-gradient(45deg,#039447 49%,#762888 51%);background: -ms-linear-gradient(45deg,#039447 49%,#762888 51%);background: linear-gradient(45deg,#039447 49%,#762888 51%);\" css=\".vc_custom_1686543324238{padding-top: 35px !important;padding-bottom: 70px !important;}\"][vc_column width=\"1/2\"][ultimate_heading main_heading=\"Vision\" main_heading_color=\"#762888\" sub_heading_color=\"#ffffff\"]To become a world renowned manufacturer of Animal Health products and a trusted partner among our stakeholders for our integrity as well as for providing effective solutions[/ultimate_heading][/vc_column][vc_column width=\"1/2\"][ultimate_heading main_heading=\"Mission\" main_heading_color=\"#039447\" sub_heading_color=\"#ffffff\"]To be the customers’ first and best choice by ensuring outstanding satisfaction through a well-trained and dedicated team. Prompt and quality solutions to our customers’ requirements will determine the increase of return on investment for us.[/ultimate_heading][/vc_column][/vc_row][vc_row css=\".vc_custom_1684836308288{margin-top: 15px !important;}\"][vc_column][ultimate_heading main_heading=\"Achievements\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;\"][/ultimate_heading][/vc_column][/vc_row]','About us','','inherit','closed','closed','','2917-revision-v1','','','2023-06-14 03:39:38','2023-06-14 03:39:38','',2917,'https://farmchemie.yasithawd.com/?p=2923',0,'revision','',0),(2924,1,'2023-06-14 03:45:47','2023-06-14 03:45:47','[vc_row][vc_column][ultimate_heading main_heading=\"Our History\" main_heading_color=\"#762888\" alignment=\"left\"][/ultimate_heading][vc_row_inner css=\".vc_custom_1686713784619{margin-top: 35px !important;}\"][vc_column_inner width=\"1/3\"][vc_single_image image=\"2919\" img_size=\"full\"][/vc_column_inner][vc_column_inner width=\"2/3\"][ultimate_heading main_heading=\"Founded in 2002\" heading_tag=\"h3\" main_heading_color=\"#039447\" alignment=\"left\" margin_design_tab_text=\"\"]Founded in 2002 by Mr. Uditha Wanigasinghe, an agriculturist who had a mission to aid valuable livestock producers in the country to enhance the yield and profitability of production. FARMCHEMIE introduced unprecedented solutions and consistent technical services to gain our customers’ trust and became the market leader in animal health products in 2006 within just four years.[/ultimate_heading][/vc_column_inner][/vc_row_inner][vc_row_inner rtl_reverse=\"yes\" css=\".vc_custom_1686714025469{margin-top: 35px !important;}\"][vc_column_inner width=\"2/3\"][ultimate_heading main_heading=\"2006\" heading_tag=\"h3\" main_heading_color=\"#039447\" alignment=\"left\" margin_design_tab_text=\"\"]In 2006, the Sri Lankan poultry industry was affected with Avian Influenza which became a difficult period for the growth of FARMCHEMIE. This was the key factor in our decision to diversify into Agro Products. PLANTCHEM &amp; PLANTSEEDS were established to offer solutions in Agro specialty fertilizers, pesticides and seeds to invaluable cultivators.[/ultimate_heading][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_single_image image=\"2895\" img_size=\"full\"][/vc_column_inner][/vc_row_inner][vc_row_inner css=\".vc_custom_1686713784619{margin-top: 35px !important;}\"][vc_column_inner width=\"1/3\"][vc_single_image image=\"2896\" img_size=\"full\"][/vc_column_inner][vc_column_inner width=\"2/3\"][ultimate_heading main_heading=\"2010\" heading_tag=\"h3\" main_heading_color=\"#039447\" alignment=\"left\" margin_design_tab_text=\"\"]In 2010, FEED CHEMIE became the subsequent addition to ever-growing vision of Mr. Uditha Wanigasinghe and entered the Animal Feed Additives market.[/ultimate_heading][/vc_column_inner][/vc_row_inner][vc_row_inner rtl_reverse=\"yes\" css=\".vc_custom_1686714115148{margin-top: 35px !important;}\"][vc_column_inner width=\"2/3\"][ultimate_heading main_heading=\"2012\" heading_tag=\"h3\" main_heading_color=\"#039447\" alignment=\"left\" margin_design_tab_text=\"\"]The year 2012 is described as a turning point in our journey as FARMCHEMIE established our first production facility for the manufacturing and packing of animal health products. FARMCHEMIE became the first animal health organization in Sri Lanka to obtain ISO 9001:2015 and WHO GMP International Quality Certification. With our own formulation unit, FARMCHEMIE was able to offer customized solutions to cater the needs of the Sri Lankan Livestock Industry.[/ultimate_heading][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_single_image image=\"2897\" img_size=\"full\"][/vc_column_inner][/vc_row_inner][vc_row_inner css=\".vc_custom_1686713784619{margin-top: 35px !important;}\"][vc_column_inner width=\"1/3\"][vc_single_image image=\"2898\" img_size=\"full\"][/vc_column_inner][vc_column_inner width=\"2/3\"][ultimate_heading main_heading=\"2016\" heading_tag=\"h3\" main_heading_color=\"#039447\" alignment=\"left\" margin_design_tab_text=\"\"]The year 2016 was another key milestone with the entry to the International Markets. FARMCHEMIE exported our first Feed Premix consignment to India and in 2018 our export operation was distinctly established as FARMCHEMIE MANUFACTURERS, a Board of Investment (BOI) approved entity.[/ultimate_heading][/vc_column_inner][/vc_row_inner][vc_row_inner css=\".vc_custom_1686713784619{margin-top: 35px !important;}\"][vc_column_inner width=\"2/3\"][ultimate_heading main_heading=\"Fully automated manufacturing\" heading_tag=\"h3\" main_heading_color=\"#039447\" alignment=\"left\" margin_design_tab_text=\"\"]FARMCHEMIE MANUFACTURERS has invested in fully automated manufacturing facility from Bühler and became the first Sri Lankan owned company to obtain FAMI-QS International Quality Certification.[/ultimate_heading][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_single_image image=\"2899\" img_size=\"full\"][/vc_column_inner][/vc_row_inner][vc_row_inner css=\".vc_custom_1686713784619{margin-top: 35px !important;}\"][vc_column_inner width=\"1/3\"][vc_single_image image=\"2901\" img_size=\"full\"][/vc_column_inner][vc_column_inner width=\"2/3\"][ultimate_heading main_heading=\"Official toll manufacturer partner\" heading_tag=\"h3\" main_heading_color=\"#039447\" alignment=\"left\" margin_design_tab_text=\"\"]With the trust and reputation built as a reliable manufacturer of animal feed additives and supplements in the global market, several world-renowned international brands have appointed FARMCHEMIE MANUFACTURERS as the official toll manufacturer partner. FARMCHEMIE MANUFACTURERS exports a wide range of products consisting of premixes, specialty feed additives, oral liquid supplements and pet supplements to various markets in South Asia, East Asia, Middle East and Africa.\r\n\r\nFARMCHEMIE, FEED CHEMIE &amp; FARMCHEMIE MANUFACTURERS currently operate under the ownership of our holding company, DYVESTA.\r\n\r\nDYEVSTA has become the pinnacle of Animal Nutrition and Health.\r\n\r\nDYVESTA is Dynamic, through our continuous evolution, growth and progress. DYVESTA is Diverse, in terms of both our business strategy and our community. DYVESTA is Devoted to our valuable business partners through exceptional service.[/ultimate_heading][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row full_width=\"stretch_row_content\" equal_height=\"yes\" bg_type=\"grad\" bg_override=\"ex-full\" bg_grad=\"background: -webkit-gradient(linear, left top, left bottom, color-stop(49%, #039447), color-stop(51%, #762888));background: -moz-linear-gradient(45deg,#039447 49%,#762888 51%);background: -webkit-linear-gradient(45deg,#039447 49%,#762888 51%);background: -o-linear-gradient(45deg,#039447 49%,#762888 51%);background: -ms-linear-gradient(45deg,#039447 49%,#762888 51%);background: linear-gradient(45deg,#039447 49%,#762888 51%);\" css=\".vc_custom_1686543324238{padding-top: 35px !important;padding-bottom: 70px !important;}\"][vc_column width=\"1/2\"][ultimate_heading main_heading=\"Vision\" main_heading_color=\"#762888\" sub_heading_color=\"#ffffff\"]To become a world renowned manufacturer of Animal Health products and a trusted partner among our stakeholders for our integrity as well as for providing effective solutions[/ultimate_heading][/vc_column][vc_column width=\"1/2\"][ultimate_heading main_heading=\"Mission\" main_heading_color=\"#039447\" sub_heading_color=\"#ffffff\"]To be the customers’ first and best choice by ensuring outstanding satisfaction through a well-trained and dedicated team. Prompt and quality solutions to our customers’ requirements will determine the increase of return on investment for us.[/ultimate_heading][/vc_column][/vc_row][vc_row css=\".vc_custom_1684836308288{margin-top: 15px !important;}\"][vc_column][ultimate_heading main_heading=\"Achievements\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;\"][/ultimate_heading][/vc_column][/vc_row]','About us','','inherit','closed','closed','','2917-revision-v1','','','2023-06-14 03:45:47','2023-06-14 03:45:47','',2917,'https://farmchemie.yasithawd.com/?p=2924',0,'revision','',0),(2925,1,'2023-06-14 03:49:13','2023-06-14 03:49:13','[vc_row][vc_column][ultimate_heading main_heading=\"Our History\" main_heading_color=\"#762888\" alignment=\"left\"][/ultimate_heading][vc_row_inner css=\".vc_custom_1686713784619{margin-top: 35px !important;}\"][vc_column_inner width=\"1/3\"][vc_single_image image=\"2919\" img_size=\"full\"][/vc_column_inner][vc_column_inner width=\"2/3\"][ultimate_heading main_heading=\"Founded in 2002\" heading_tag=\"h3\" main_heading_color=\"#039447\" alignment=\"left\" margin_design_tab_text=\"\"]Founded in 2002 by Mr. Uditha Wanigasinghe, an agriculturist who had a mission to aid valuable livestock producers in the country to enhance the yield and profitability of production. FARMCHEMIE introduced unprecedented solutions and consistent technical services to gain our customers’ trust and became the market leader in animal health products in 2006 within just four years.[/ultimate_heading][/vc_column_inner][/vc_row_inner][vc_row_inner rtl_reverse=\"yes\" css=\".vc_custom_1686714025469{margin-top: 35px !important;}\"][vc_column_inner width=\"2/3\"][ultimate_heading main_heading=\"2006\" heading_tag=\"h3\" main_heading_color=\"#039447\" alignment=\"left\" margin_design_tab_text=\"\"]In 2006, the Sri Lankan poultry industry was affected with Avian Influenza which became a difficult period for the growth of FARMCHEMIE. This was the key factor in our decision to diversify into Agro Products. PLANTCHEM &amp; PLANTSEEDS were established to offer solutions in Agro specialty fertilizers, pesticides and seeds to invaluable cultivators.[/ultimate_heading][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_single_image image=\"2895\" img_size=\"full\"][/vc_column_inner][/vc_row_inner][vc_row_inner css=\".vc_custom_1686713784619{margin-top: 35px !important;}\"][vc_column_inner width=\"1/3\"][vc_single_image image=\"2896\" img_size=\"full\"][/vc_column_inner][vc_column_inner width=\"2/3\"][ultimate_heading main_heading=\"2010\" heading_tag=\"h3\" main_heading_color=\"#039447\" alignment=\"left\" margin_design_tab_text=\"\"]In 2010, FEED CHEMIE became the subsequent addition to ever-growing vision of Mr. Uditha Wanigasinghe and entered the Animal Feed Additives market.[/ultimate_heading][/vc_column_inner][/vc_row_inner][vc_row_inner rtl_reverse=\"yes\" css=\".vc_custom_1686714115148{margin-top: 35px !important;}\"][vc_column_inner width=\"2/3\"][ultimate_heading main_heading=\"2012\" heading_tag=\"h3\" main_heading_color=\"#039447\" alignment=\"left\" margin_design_tab_text=\"\"]The year 2012 is described as a turning point in our journey as FARMCHEMIE established our first production facility for the manufacturing and packing of animal health products. FARMCHEMIE became the first animal health organization in Sri Lanka to obtain ISO 9001:2015 and WHO GMP International Quality Certification. With our own formulation unit, FARMCHEMIE was able to offer customized solutions to cater the needs of the Sri Lankan Livestock Industry.[/ultimate_heading][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_single_image image=\"2897\" img_size=\"full\"][/vc_column_inner][/vc_row_inner][vc_row_inner css=\".vc_custom_1686713784619{margin-top: 35px !important;}\"][vc_column_inner width=\"1/3\"][vc_single_image image=\"2898\" img_size=\"full\"][/vc_column_inner][vc_column_inner width=\"2/3\"][ultimate_heading main_heading=\"2016\" heading_tag=\"h3\" main_heading_color=\"#039447\" alignment=\"left\" margin_design_tab_text=\"\"]The year 2016 was another key milestone with the entry to the International Markets. FARMCHEMIE exported our first Feed Premix consignment to India and in 2018 our export operation was distinctly established as FARMCHEMIE MANUFACTURERS, a Board of Investment (BOI) approved entity.[/ultimate_heading][/vc_column_inner][/vc_row_inner][vc_row_inner css=\".vc_custom_1686713784619{margin-top: 35px !important;}\"][vc_column_inner width=\"2/3\"][ultimate_heading main_heading=\"Fully automated manufacturing\" heading_tag=\"h3\" main_heading_color=\"#039447\" alignment=\"left\" margin_design_tab_text=\"\"]FARMCHEMIE MANUFACTURERS has invested in fully automated manufacturing facility from Bühler and became the first Sri Lankan owned company to obtain FAMI-QS International Quality Certification.[/ultimate_heading][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_single_image image=\"2899\" img_size=\"full\"][/vc_column_inner][/vc_row_inner][vc_row_inner css=\".vc_custom_1686713784619{margin-top: 35px !important;}\"][vc_column_inner width=\"1/3\"][vc_single_image image=\"2901\" img_size=\"full\"][/vc_column_inner][vc_column_inner width=\"2/3\"][ultimate_heading main_heading=\"Official toll manufacturer partner\" heading_tag=\"h3\" main_heading_color=\"#039447\" alignment=\"left\" margin_design_tab_text=\"\"]With the trust and reputation built as a reliable manufacturer of animal feed additives and supplements in the global market, several world-renowned international brands have appointed FARMCHEMIE MANUFACTURERS as the official toll manufacturer partner. FARMCHEMIE MANUFACTURERS exports a wide range of products consisting of premixes, specialty feed additives, oral liquid supplements and pet supplements to various markets in South Asia, East Asia, Middle East and Africa.\r\n\r\nFARMCHEMIE, FEED CHEMIE &amp; FARMCHEMIE MANUFACTURERS currently operate under the ownership of our holding company, DYVESTA.\r\n\r\nDYEVSTA has become the pinnacle of Animal Nutrition and Health.\r\n\r\nDYVESTA is Dynamic, through our continuous evolution, growth and progress. DYVESTA is Diverse, in terms of both our business strategy and our community. DYVESTA is Devoted to our valuable business partners through exceptional service.[/ultimate_heading][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row full_width=\"stretch_row_content\" equal_height=\"yes\" bg_type=\"grad\" bg_override=\"ex-full\" bg_grad=\"background: -webkit-gradient(linear, left top, left bottom, color-stop(49%, #039447), color-stop(51%, #762888));background: -moz-linear-gradient(45deg,#039447 49%,#762888 51%);background: -webkit-linear-gradient(45deg,#039447 49%,#762888 51%);background: -o-linear-gradient(45deg,#039447 49%,#762888 51%);background: -ms-linear-gradient(45deg,#039447 49%,#762888 51%);background: linear-gradient(45deg,#039447 49%,#762888 51%);\" css=\".vc_custom_1686714548041{margin-top: 35px !important;padding-top: 35px !important;padding-bottom: 70px !important;}\"][vc_column width=\"1/2\"][ultimate_heading main_heading=\"Vision\" main_heading_color=\"#762888\" sub_heading_color=\"#ffffff\"]To become a world renowned manufacturer of Animal Health products and a trusted partner among our stakeholders for our integrity as well as for providing effective solutions[/ultimate_heading][/vc_column][vc_column width=\"1/2\"][ultimate_heading main_heading=\"Mission\" main_heading_color=\"#039447\" sub_heading_color=\"#ffffff\"]To be the customers’ first and best choice by ensuring outstanding satisfaction through a well-trained and dedicated team. Prompt and quality solutions to our customers’ requirements will determine the increase of return on investment for us.[/ultimate_heading][/vc_column][/vc_row][vc_row css=\".vc_custom_1684836308288{margin-top: 15px !important;}\"][vc_column][ultimate_heading main_heading=\"Achievements\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;\"][/ultimate_heading][/vc_column][/vc_row]','About us','','inherit','closed','closed','','2917-revision-v1','','','2023-06-14 03:49:13','2023-06-14 03:49:13','',2917,'https://farmchemie.yasithawd.com/?p=2925',0,'revision','',0),(2927,1,'2023-06-14 03:55:15','2023-06-14 03:55:15','[vc_row][vc_column][ultimate_heading main_heading=\"Our History\" main_heading_color=\"#762888\" alignment=\"left\"][/ultimate_heading][vc_row_inner css=\".vc_custom_1686713784619{margin-top: 35px !important;}\"][vc_column_inner width=\"1/3\"][vc_single_image image=\"2919\" img_size=\"full\"][/vc_column_inner][vc_column_inner width=\"2/3\"][ultimate_heading main_heading=\"Founded in 2002\" heading_tag=\"h3\" main_heading_color=\"#039447\" alignment=\"left\"]Founded in 2002 by Mr. Uditha Wanigasinghe, an agriculturist who had a mission to aid valuable livestock producers in the country to enhance the yield and profitability of production. FARMCHEMIE introduced unprecedented solutions and consistent technical services to gain our customers’ trust and became the market leader in animal health products in 2006 within just four years.[/ultimate_heading][/vc_column_inner][/vc_row_inner][vc_row_inner rtl_reverse=\"yes\" css=\".vc_custom_1686714025469{margin-top: 35px !important;}\"][vc_column_inner width=\"2/3\"][ultimate_heading main_heading=\"2006\" heading_tag=\"h3\" main_heading_color=\"#039447\" alignment=\"left\"]In 2006, the Sri Lankan poultry industry was affected with Avian Influenza which became a difficult period for the growth of FARMCHEMIE. This was the key factor in our decision to diversify into Agro Products. PLANTCHEM &amp; PLANTSEEDS were established to offer solutions in Agro specialty fertilizers, pesticides and seeds to invaluable cultivators.[/ultimate_heading][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_single_image image=\"2895\" img_size=\"full\"][/vc_column_inner][/vc_row_inner][vc_row_inner css=\".vc_custom_1686713784619{margin-top: 35px !important;}\"][vc_column_inner width=\"1/3\"][vc_single_image image=\"2896\" img_size=\"full\"][/vc_column_inner][vc_column_inner width=\"2/3\"][ultimate_heading main_heading=\"2010\" heading_tag=\"h3\" main_heading_color=\"#039447\" alignment=\"left\"]In 2010, FEED CHEMIE became the subsequent addition to ever-growing vision of Mr. Uditha Wanigasinghe and entered the Animal Feed Additives market.[/ultimate_heading][/vc_column_inner][/vc_row_inner][vc_row_inner rtl_reverse=\"yes\" css=\".vc_custom_1686714115148{margin-top: 35px !important;}\"][vc_column_inner width=\"2/3\"][ultimate_heading main_heading=\"2012\" heading_tag=\"h3\" main_heading_color=\"#039447\" alignment=\"left\"]The year 2012 is described as a turning point in our journey as FARMCHEMIE established our first production facility for the manufacturing and packing of animal health products. FARMCHEMIE became the first animal health organization in Sri Lanka to obtain ISO 9001:2015 and WHO GMP International Quality Certification. With our own formulation unit, FARMCHEMIE was able to offer customized solutions to cater the needs of the Sri Lankan Livestock Industry.[/ultimate_heading][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_single_image image=\"2897\" img_size=\"full\"][/vc_column_inner][/vc_row_inner][vc_row_inner css=\".vc_custom_1686713784619{margin-top: 35px !important;}\"][vc_column_inner width=\"1/3\"][vc_single_image image=\"2898\" img_size=\"full\"][/vc_column_inner][vc_column_inner width=\"2/3\"][ultimate_heading main_heading=\"2016\" heading_tag=\"h3\" main_heading_color=\"#039447\" alignment=\"left\"]The year 2016 was another key milestone with the entry to the International Markets. FARMCHEMIE exported our first Feed Premix consignment to India and in 2018 our export operation was distinctly established as FARMCHEMIE MANUFACTURERS, a Board of Investment (BOI) approved entity.[/ultimate_heading][/vc_column_inner][/vc_row_inner][vc_row_inner css=\".vc_custom_1686713784619{margin-top: 35px !important;}\"][vc_column_inner width=\"2/3\"][ultimate_heading main_heading=\"Fully automated manufacturing\" heading_tag=\"h3\" main_heading_color=\"#039447\" alignment=\"left\"]FARMCHEMIE MANUFACTURERS has invested in fully automated manufacturing facility from Bühler and became the first Sri Lankan owned company to obtain FAMI-QS International Quality Certification.[/ultimate_heading][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_single_image image=\"2899\" img_size=\"full\"][/vc_column_inner][/vc_row_inner][vc_row_inner css=\".vc_custom_1686713784619{margin-top: 35px !important;}\"][vc_column_inner width=\"1/3\"][vc_single_image image=\"2901\" img_size=\"full\"][/vc_column_inner][vc_column_inner width=\"2/3\"][ultimate_heading main_heading=\"Official toll manufacturer partner\" heading_tag=\"h3\" main_heading_color=\"#039447\" alignment=\"left\"]With the trust and reputation built as a reliable manufacturer of animal feed additives and supplements in the global market, several world-renowned international brands have appointed FARMCHEMIE MANUFACTURERS as the official toll manufacturer partner. FARMCHEMIE MANUFACTURERS exports a wide range of products consisting of premixes, specialty feed additives, oral liquid supplements and pet supplements to various markets in South Asia, East Asia, Middle East and Africa.\r\n\r\nFARMCHEMIE, FEED CHEMIE &amp; FARMCHEMIE MANUFACTURERS currently operate under the ownership of our holding company, DYVESTA.\r\n\r\nDYEVSTA has become the pinnacle of Animal Nutrition and Health.\r\n\r\nDYVESTA is Dynamic, through our continuous evolution, growth and progress. DYVESTA is Diverse, in terms of both our business strategy and our community. DYVESTA is Devoted to our valuable business partners through exceptional service.[/ultimate_heading][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row full_width=\"stretch_row_content\" equal_height=\"yes\" bg_type=\"grad\" bg_override=\"ex-full\" bg_grad=\"background: -webkit-gradient(linear, left top, left bottom, color-stop(49%, #039447), color-stop(51%, #762888));background: -moz-linear-gradient(45deg,#039447 49%,#762888 51%);background: -webkit-linear-gradient(45deg,#039447 49%,#762888 51%);background: -o-linear-gradient(45deg,#039447 49%,#762888 51%);background: -ms-linear-gradient(45deg,#039447 49%,#762888 51%);background: linear-gradient(45deg,#039447 49%,#762888 51%);\" css=\".vc_custom_1686714785726{margin-top: 35px !important;padding-top: 100px !important;padding-bottom: 100px !important;}\"][vc_column width=\"1/2\"][ultimate_heading main_heading=\"Vision\" main_heading_color=\"#762888\" sub_heading_color=\"#ffffff\"]To become a world renowned manufacturer of Animal Health products and a trusted partner among our stakeholders for our integrity as well as for providing effective solutions[/ultimate_heading][/vc_column][vc_column width=\"1/2\"][ultimate_heading main_heading=\"Mission\" main_heading_color=\"#039447\" sub_heading_color=\"#ffffff\"]To be the customers’ first and best choice by ensuring outstanding satisfaction through a well-trained and dedicated team. Prompt and quality solutions to our customers’ requirements will determine the increase of return on investment for us.[/ultimate_heading][/vc_column][/vc_row][vc_row css=\".vc_custom_1684836308288{margin-top: 15px !important;}\"][vc_column][ultimate_heading main_heading=\"Achievements\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;\"][/ultimate_heading][/vc_column][/vc_row]','About us','','inherit','closed','closed','','2917-revision-v1','','','2023-06-14 03:55:15','2023-06-14 03:55:15','',2917,'https://farmchemie.yasithawd.com/?p=2927',0,'revision','',0),(2926,1,'2023-09-24 09:01:02','2023-09-24 09:01:02','[vc_row full_width=\"stretch_row_content_no_spaces\"][vc_column][ultimate_heading main_heading=\"Our History\" main_heading_color=\"#762888\"][/ultimate_heading][/vc_column][/vc_row][vc_row][vc_column][vc_row_inner equal_height=\"yes\" content_placement=\"middle\" css=\".vc_custom_1692359205466{margin-top: 35px !important;}\"][vc_column_inner width=\"1/2\"][ult_animation_block animation=\"fadeInLeftBig\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][vc_single_image image=\"3273\" img_size=\"full\" alignment=\"center\" style=\"vc_box_rounded\"][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/2\"][ult_animation_block animation=\"fadeInRightBig\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][ultimate_heading main_heading=\"Founded in 2002\" heading_tag=\"h3\" main_heading_color=\"#039447\" alignment=\"left\" sub_heading_font_size=\"desktop:18px;\"]Founded in 2002 by Mr. Uditha Wanigasinghe, an agriculturist who had a mission to aid valuable livestock producers in the country to enhance the yield and profitability of production. FARMCHEMIE introduced unprecedented solutions and consistent technical services to gain our customers’ trust and became the market leader in animal health products in 2006 within just four years.[/ultimate_heading][/ult_animation_block][/vc_column_inner][/vc_row_inner][vc_separator color=\"custom\" accent_color=\"#039447\"][vc_row_inner equal_height=\"yes\" rtl_reverse=\"yes\" content_placement=\"middle\" css=\".vc_custom_1692359216075{margin-top: 35px !important;}\"][vc_column_inner width=\"1/2\" offset=\"vc_hidden-xs\"][ult_animation_block animation=\"fadeInLeftBig\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][ultimate_heading main_heading=\"2006\" heading_tag=\"h3\" main_heading_color=\"#039447\" alignment=\"right\"]In 2006, the Sri Lankan poultry industry was affected with Avian Influenza which became a difficult period for the growth of FARMCHEMIE. This was the key factor in our decision to diversify into Agro Products. PLANTCHEM &amp; PLANTSEEDS were established to offer solutions in Agro specialty fertilizers, pesticides and seeds to invaluable cultivators.[/ultimate_heading][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/2\" offset=\"vc_hidden-xs\"][ult_animation_block animation=\"fadeInRightBig\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][vc_single_image image=\"3276\" img_size=\"full\" alignment=\"center\" style=\"vc_box_rounded\"][/ult_animation_block][/vc_column_inner][/vc_row_inner][vc_row_inner equal_height=\"yes\" rtl_reverse=\"yes\" content_placement=\"middle\" css=\".vc_custom_1692359216075{margin-top: 35px !important;}\"][vc_column_inner width=\"1/2\" offset=\"vc_hidden-lg vc_hidden-md vc_hidden-sm\"][ult_animation_block animation=\"fadeInRightBig\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][vc_single_image image=\"3276\" img_size=\"full\" alignment=\"center\" style=\"vc_box_rounded\"][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/2\" offset=\"vc_hidden-lg vc_hidden-md vc_hidden-sm\"][ult_animation_block animation=\"fadeInLeftBig\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][ultimate_heading main_heading=\"2006\" heading_tag=\"h3\" main_heading_color=\"#039447\" alignment=\"left\"]\n\nIn 2006, the Sri Lankan poultry industry was affected with Avian Influenza which became a difficult period for the growth of FARMCHEMIE. This was the key factor in our decision to diversify into Agro Products. PLANTCHEM &amp; PLANTSEEDS were established to offer solutions in Agro specialty fertilizers, pesticides and seeds to invaluable cultivators.\n\n[/ultimate_heading][/ult_animation_block][/vc_column_inner][/vc_row_inner][vc_separator color=\"custom\" accent_color=\"#039447\"][vc_row_inner equal_height=\"yes\" content_placement=\"middle\" css=\".vc_custom_1692359231594{margin-top: 35px !important;}\"][vc_column_inner width=\"1/2\"][ult_animation_block animation=\"fadeInLeftBig\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][vc_single_image image=\"3277\" img_size=\"full\" alignment=\"center\" style=\"vc_box_rounded\"][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/2\"][ult_animation_block animation=\"fadeInRightBig\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][ultimate_heading main_heading=\"2010\" heading_tag=\"h3\" main_heading_color=\"#039447\" alignment=\"left\"]In 2010, FEED CHEMIE became the subsequent addition to ever-growing vision of Mr. Uditha Wanigasinghe and entered the Animal Feed Additives market.[/ultimate_heading][/ult_animation_block][/vc_column_inner][/vc_row_inner][vc_separator color=\"custom\" accent_color=\"#039447\"][vc_row_inner equal_height=\"yes\" rtl_reverse=\"yes\" content_placement=\"middle\" css=\".vc_custom_1692359239274{margin-top: 35px !important;}\"][vc_column_inner width=\"1/2\" offset=\"vc_hidden-xs\"][ult_animation_block animation=\"fadeInLeftBig\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][ultimate_heading main_heading=\"2012\" heading_tag=\"h3\" main_heading_color=\"#039447\" alignment=\"right\"]The year 2012 is described as a turning point in our journey as FARMCHEMIE established our first production facility for the manufacturing and packing of animal health products. FARMCHEMIE became the first animal health organization in Sri Lanka to obtain ISO 9001:2015 and WHO GMP International Quality Certification. With our own formulation unit, FARMCHEMIE was able to offer customized solutions to cater the needs of the Sri Lankan Livestock Industry.[/ultimate_heading][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/2\" offset=\"vc_hidden-xs\"][ult_animation_block animation=\"fadeInRightBig\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][vc_single_image image=\"3278\" img_size=\"full\" alignment=\"center\" style=\"vc_box_rounded\"][/ult_animation_block][/vc_column_inner][/vc_row_inner][vc_row_inner equal_height=\"yes\" rtl_reverse=\"yes\" content_placement=\"middle\" css=\".vc_custom_1692359239274{margin-top: 35px !important;}\"][vc_column_inner width=\"1/2\" offset=\"vc_hidden-lg vc_hidden-md vc_hidden-sm\"][ult_animation_block animation=\"fadeInRightBig\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][vc_single_image image=\"3278\" img_size=\"full\" alignment=\"center\" style=\"vc_box_rounded\"][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/2\" offset=\"vc_hidden-lg vc_hidden-md vc_hidden-sm\"][ult_animation_block animation=\"fadeInLeftBig\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][ultimate_heading main_heading=\"2012\" heading_tag=\"h3\" main_heading_color=\"#039447\" alignment=\"left\"]The year 2012 is described as a turning point in our journey as FARMCHEMIE established our first production facility for the manufacturing and packing of animal health products. FARMCHEMIE became the first animal health organization in Sri Lanka to obtain ISO 9001:2015 and WHO GMP International Quality Certification. With our own formulation unit, FARMCHEMIE was able to offer customized solutions to cater the needs of the Sri Lankan Livestock Industry.[/ultimate_heading][/ult_animation_block][/vc_column_inner][/vc_row_inner][vc_separator color=\"custom\" accent_color=\"#039447\"][vc_row_inner content_placement=\"middle\" css=\".vc_custom_1692359246626{margin-top: 35px !important;}\"][vc_column_inner width=\"1/2\"][ult_animation_block animation=\"fadeInLeftBig\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][vc_single_image image=\"3279\" img_size=\"full\" alignment=\"center\" style=\"vc_box_rounded\"][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/2\"][ult_animation_block animation=\"fadeInRightBig\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][ultimate_heading main_heading=\"2016\" heading_tag=\"h3\" main_heading_color=\"#039447\" alignment=\"left\"]The year 2016 was another key milestone with the entry to the International Markets. FARMCHEMIE exported our first Feed Premix consignment to India and in 2018 our export operation was distinctly established as FARMCHEMIE MANUFACTURERS, a Board of Investment (BOI) approved entity.[/ultimate_heading][/ult_animation_block][/vc_column_inner][/vc_row_inner][vc_separator color=\"custom\" accent_color=\"#039447\"][vc_row_inner equal_height=\"yes\" rtl_reverse=\"yes\" content_placement=\"middle\" css=\".vc_custom_1695527931440{margin-top: 35px !important;}\"][vc_column_inner width=\"1/2\" offset=\"vc_hidden-xs\"][ult_animation_block animation=\"fadeInLeftBig\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][ultimate_heading main_heading=\"Fully automated manufacturing\" heading_tag=\"h3\" main_heading_color=\"#039447\" alignment=\"right\"]FARMCHEMIE MANUFACTURERS has invested in fully automated manufacturing facility from Bühler and became the first Sri Lankan owned company to obtain FAMI-QS International Quality Certification.[/ultimate_heading][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/2\" offset=\"vc_hidden-xs\"][ult_animation_block animation=\"fadeInRightBig\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][vc_single_image image=\"3280\" img_size=\"full\" alignment=\"center\" style=\"vc_box_rounded\"][/ult_animation_block][/vc_column_inner][/vc_row_inner][vc_row_inner equal_height=\"yes\" rtl_reverse=\"yes\" content_placement=\"middle\" css=\".vc_custom_1695527931440{margin-top: 35px !important;}\"][vc_column_inner width=\"1/2\" offset=\"vc_hidden-lg vc_hidden-md vc_hidden-sm\"][ult_animation_block animation=\"fadeInRightBig\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][vc_single_image image=\"3280\" img_size=\"full\" alignment=\"center\" style=\"vc_box_rounded\"][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/2\" offset=\"vc_hidden-lg vc_hidden-md vc_hidden-sm\"][ult_animation_block animation=\"fadeInLeftBig\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][ultimate_heading main_heading=\"Fully automated manufacturing\" heading_tag=\"h3\" main_heading_color=\"#039447\" alignment=\"left\"]FARMCHEMIE MANUFACTURERS has invested in fully automated manufacturing facility from Bühler and became the first Sri Lankan owned company to obtain FAMI-QS International Quality Certification.[/ultimate_heading][/ult_animation_block][/vc_column_inner][/vc_row_inner][vc_separator color=\"custom\" accent_color=\"#039447\"][vc_row_inner equal_height=\"yes\" content_placement=\"middle\" css=\".vc_custom_1692359258634{margin-top: 35px !important;}\"][vc_column_inner width=\"1/2\"][ult_animation_block animation=\"fadeInLeftBig\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][vc_single_image image=\"3281\" img_size=\"full\" alignment=\"center\" style=\"vc_box_rounded\"][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/2\"][ult_animation_block animation=\"fadeInRightBig\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][ultimate_heading main_heading=\"Official toll manufacturer partner\" heading_tag=\"h3\" main_heading_color=\"#039447\" alignment=\"left\"]With the trust and reputation built as a reliable manufacturer of animal feed additives and supplements in the global market, several world-renowned international brands have appointed FARMCHEMIE MANUFACTURERS as the official toll manufacturer partner. FARMCHEMIE MANUFACTURERS exports a wide range of products consisting of premixes, specialty feed additives, oral liquid supplements and pet supplements to various markets in South Asia, East Asia, Middle East and Africa.\n\nFARMCHEMIE, FEED CHEMIE &amp; FARMCHEMIE MANUFACTURERS currently operate under the ownership of our holding company, DYVESTA.\n\nDYEVSTA has become the pinnacle of Animal Nutrition and Health.\n\nDYVESTA is Dynamic, through our continuous evolution, growth and progress. DYVESTA is Diverse, in terms of both our business strategy and our community. DYVESTA is Devoted to our valuable business partners through exceptional service.[/ultimate_heading][/ult_animation_block][/vc_column_inner][/vc_row_inner][vc_separator color=\"custom\" accent_color=\"#039447\"][/vc_column][/vc_row][vc_row full_width=\"stretch_row\" equal_height=\"yes\" bg_type=\"image\" parallax_style=\"vcpb-vz-jquery\" bg_image_new=\"id^3256|url^https://farmchemie.yasithawd.com/wp-content/uploads/2023/08/Vision-Mission.png|caption^null|alt^null|title^Vision-&amp;-Mission|description^null\" bg_image_repeat=\"no-repeat\" enable_overlay=\"enable_overlay_value\" overlay_color=\"#000000\" overlay_pattern=\"01.png\" overlay_pattern_opacity=\"5\" css=\".vc_custom_1692366072362{margin-top: 35px !important;padding-top: 65px !important;padding-bottom: 100px !important;}\"][vc_column][vc_row_inner equal_height=\"yes\"][vc_column_inner width=\"1/2\"][ult_animation_block animation=\"fadeInLeftBig\" animation_duration=\"2\" animation_delay=\"0\" animation_iteration_count=\"1\"][ultimate_heading main_heading=\"Vision\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\"]To be the customers’ first and best choice by ensuring outstanding satisfaction through a well-trained and dedicated team. Prompt and quality solutions to our customers’ requirements will determine the increase of return on investment for us.[/ultimate_heading][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/2\"][ult_animation_block animation=\"fadeInRightBig\" animation_duration=\"2\" animation_delay=\"0\" animation_iteration_count=\"1\"][ultimate_heading main_heading=\"Mission\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\"]To become a world renowned manufacturer of Animal Health products and a trusted partner among our stakeholders for our integrity as well as for providing effective solutions[/ultimate_heading][/ult_animation_block][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row css=\".vc_custom_1695545208125{margin-top: 15px !important;margin-bottom: 15px !important;}\"][vc_column][ultimate_heading main_heading=\"Achievements\" main_heading_color=\"#762888\" main_heading_margin=\"margin-top:35px;\"][/ultimate_heading][vc_row_inner gap=\"20\"][vc_column_inner width=\"1/2\" css=\".vc_custom_1691995519863{background-color: #f4ab20 !important;border: 1px solid #f4ab20 !important;border-radius: 35px !important;}\"][ult_animation_block animation=\"fadeInLeftBig\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][bsf-info-box icon_type=\"custom\" icon_img=\"id^3117|url^https://farmchemie.yasithawd.com/wp-content/uploads/2023/08/Pink_-H.png|caption^null|alt^null|title^Pink_-H|description^null\" img_width=\"60\" icon_style=\"advanced\" icon_border_style=\"solid\" icon_color_border=\"#ffffff\" icon_border_size=\"1\" icon_border_radius=\"500\" icon_border_spacing=\"1\" title=\"First Free Sale Certificate obtained from Veterinary Drug Control Authority (VDCA) for Veterinary Pharmaceuticals\" title_font_style=\"font-weight:bold;\" title_font_size=\"desktop:20px;\"][/bsf-info-box][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/2\" css=\".vc_custom_1691995661095{background-color: #722f8b !important;border: 1px solid #722f8b !important;border-radius: 35px !important;}\"][ult_animation_block animation=\"fadeInRightBig\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][bsf-info-box icon_type=\"custom\" icon_img=\"id^3117|url^https://farmchemie.yasithawd.com/wp-content/uploads/2023/08/Pink_-H.png|caption^null|alt^null|title^Pink_-H|description^null\" img_width=\"60\" icon_style=\"advanced\" icon_border_style=\"solid\" icon_color_border=\"#ffffff\" icon_border_size=\"1\" icon_border_radius=\"500\" icon_border_spacing=\"1\" title=\"First ISO 9001: 2015 ,WHO-GMP Quality Management systems certified Animal Health company in Sri Lanka since August, 2012\" title_font_style=\"font-weight:bold;\" title_font_color=\"#ffffff\" title_font_size=\"desktop:20px;\"][/bsf-info-box][/ult_animation_block][/vc_column_inner][/vc_row_inner][vc_row_inner gap=\"20\"][vc_column_inner width=\"1/2\" css=\".vc_custom_1691995661095{background-color: #722f8b !important;border: 1px solid #722f8b !important;border-radius: 35px !important;}\"][ult_animation_block animation=\"fadeInLeftBig\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][bsf-info-box icon_type=\"custom\" icon_img=\"id^3117|url^https://farmchemie.yasithawd.com/wp-content/uploads/2023/08/Pink_-H.png|caption^null|alt^null|title^Pink_-H|description^null\" img_width=\"60\" icon_style=\"advanced\" icon_border_style=\"solid\" icon_color_border=\"#ffffff\" icon_border_size=\"1\" icon_border_radius=\"500\" icon_border_spacing=\"1\" title=\"First FAMI-QS certified company in sri lanka\" title_font_style=\"font-weight:bold;\" title_font_color=\"#ffffff\" title_font_size=\"desktop:20px;\"][/bsf-info-box][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/2\" css=\".vc_custom_1691995519863{background-color: #f4ab20 !important;border: 1px solid #f4ab20 !important;border-radius: 35px !important;}\"][ult_animation_block animation=\"fadeInRightBig\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][bsf-info-box icon_type=\"custom\" icon_img=\"id^3117|url^https://farmchemie.yasithawd.com/wp-content/uploads/2023/08/Pink_-H.png|caption^null|alt^null|title^Pink_-H|description^null\" img_width=\"60\" icon_style=\"advanced\" icon_border_style=\"solid\" icon_color_border=\"#ffffff\" icon_border_size=\"1\" icon_border_radius=\"500\" icon_border_spacing=\"1\" title=\"First Certificate of Ethical Trading certified in Livestock industry\" title_font_style=\"font-weight:bold;\" title_font_size=\"desktop:20px;\"][/bsf-info-box][/ult_animation_block][/vc_column_inner][/vc_row_inner][vc_row_inner gap=\"20\"][vc_column_inner width=\"1/4\" css=\".vc_custom_1695528026328{border-radius: 35px !important;}\" offset=\"vc_hidden-xs\"][/vc_column_inner][vc_column_inner width=\"2/4\" css=\".vc_custom_1691995519863{background-color: #f4ab20 !important;border: 1px solid #f4ab20 !important;border-radius: 35px !important;}\"][ult_animation_block animation=\"fadeInLeftBig\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][bsf-info-box icon_type=\"custom\" icon_img=\"id^3117|url^https://farmchemie.yasithawd.com/wp-content/uploads/2023/08/Pink_-H.png|caption^null|alt^null|title^Pink_-H|description^null\" img_width=\"60\" icon_style=\"advanced\" icon_border_style=\"solid\" icon_color_border=\"#ffffff\" icon_border_size=\"1\" icon_border_radius=\"500\" icon_border_spacing=\"1\" title=\"First Silver awarded company at National Exports Awards in Livestock industry\" title_font_style=\"font-weight:bold;\" title_font_size=\"desktop:20px;\"][/bsf-info-box][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/4\" offset=\"vc_hidden-xs\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row full_width=\"stretch_row_content\" equal_height=\"yes\" content_placement=\"bottom\" css=\".vc_custom_1695531973651{margin-top: 15px !important;padding-right: 5% !important;padding-left: 5% !important;}\"][vc_column][ultimate_heading main_heading=\"Certifications\" main_heading_color=\"#762888\" main_heading_margin=\"margin-top:35px;\"][/ultimate_heading][vc_row_inner content_placement=\"bottom\"][vc_column_inner width=\"1/6\"][dt_fancy_image image_id=\"3408\" width=\"300\" caption=\"off\"][/vc_column_inner][vc_column_inner width=\"1/6\"][dt_fancy_image image_id=\"3407\" width=\"150\" caption=\"off\"][/vc_column_inner][vc_column_inner width=\"1/6\"][dt_fancy_image image_id=\"3409\" width=\"150\" caption=\"off\"][/vc_column_inner][vc_column_inner width=\"1/6\"][dt_fancy_image image_id=\"3410\" width=\"130\" caption=\"off\"][/vc_column_inner][vc_column_inner width=\"1/6\"][dt_fancy_image image_id=\"3411\" width=\"150\" caption=\"off\"][/vc_column_inner][vc_column_inner width=\"1/6\"][dt_fancy_image image_id=\"3406\" width=\"150\" caption=\"off\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row full_width=\"stretch_row\" equal_height=\"yes\" content_placement=\"bottom\" css=\".vc_custom_1693625624233{margin-top: 15px !important;}\"][vc_column][ultimate_heading main_heading=\"Awards\" main_heading_color=\"#762888\" main_heading_margin=\"margin-top:35px;\"][/ultimate_heading][ultimate_carousel slide_to_scroll=\"single\" slides_on_mob=\"1\"][dt_fancy_image image_id=\"3412\" width=\"300\"][dt_fancy_image image_id=\"3413\" width=\"300\" caption=\"off\"][dt_fancy_image image_id=\"3414\" width=\"300\" caption=\"off\"][dt_fancy_image image_id=\"3415\" width=\"300\" caption=\"off\"][dt_fancy_image image_id=\"3416\" width=\"300\" caption=\"off\"][dt_fancy_image image_id=\"3417\" width=\"300\" caption=\"off\"][dt_fancy_image image_id=\"3418\" width=\"300\" caption=\"off\"][dt_fancy_image image_id=\"3420\" width=\"300\" caption=\"off\"][dt_fancy_image image_id=\"3419\" width=\"300\" caption=\"off\"][dt_fancy_image image_id=\"3422\" width=\"300\" caption=\"off\"][dt_fancy_image image_id=\"3421\" width=\"300\" caption=\"off\"][dt_fancy_image image_id=\"3422\" width=\"300\" caption=\"off\"][dt_fancy_image image_id=\"3423\" width=\"300\" caption=\"off\"][dt_fancy_image image_id=\"3424\" width=\"300\" caption=\"off\"][dt_fancy_image image_id=\"3425\" width=\"300\" caption=\"off\"][/ultimate_carousel][/vc_column][/vc_row][vc_row full_width=\"stretch_row_content\" equal_height=\"yes\" content_placement=\"bottom\" css=\".vc_custom_1695531973651{margin-top: 15px !important;padding-right: 5% !important;padding-left: 5% !important;}\"][vc_column][ultimate_heading main_heading=\"Our Companies\" main_heading_color=\"#762888\" main_heading_margin=\"margin-top:35px;\" margin_design_tab_text=\"\"][/ultimate_heading][vc_row_inner content_placement=\"bottom\"][vc_column_inner width=\"1/5\" offset=\"vc_hidden-xs\"][/vc_column_inner][vc_column_inner width=\"1/5\" offset=\"vc_hidden-xs\"][/vc_column_inner][vc_column_inner width=\"1/5\"][dt_fancy_image image_id=\"3921\" width=\"300\" caption=\"off\"][/vc_column_inner][vc_column_inner width=\"1/5\" offset=\"vc_hidden-xs\"][/vc_column_inner][vc_column_inner width=\"1/5\" offset=\"vc_hidden-xs\"][/vc_column_inner][/vc_row_inner][vc_row_inner content_placement=\"bottom\"][vc_column_inner width=\"1/5\"][dt_fancy_image image_id=\"3922\" width=\"300\" caption=\"off\"][/vc_column_inner][vc_column_inner width=\"1/5\"][dt_fancy_image image_id=\"3923\" width=\"300\" caption=\"off\"][/vc_column_inner][vc_column_inner width=\"1/5\"][dt_fancy_image image_id=\"3924\" width=\"300\" caption=\"off\"][/vc_column_inner][vc_column_inner width=\"1/5\"][dt_fancy_image image_id=\"3925\" width=\"300\" caption=\"off\"][/vc_column_inner][vc_column_inner width=\"1/5\"][dt_fancy_image image_id=\"3926\" width=\"300\" caption=\"off\"][/vc_column_inner][/vc_row_inner][vc_row_inner content_placement=\"bottom\"][vc_column_inner width=\"1/5\" offset=\"vc_hidden-xs\"][/vc_column_inner][vc_column_inner width=\"1/5\"][dt_fancy_image image_id=\"3927\" width=\"300\" caption=\"off\"][/vc_column_inner][vc_column_inner width=\"1/5\" offset=\"vc_hidden-xs\"][/vc_column_inner][vc_column_inner width=\"1/5\"][dt_fancy_image image_id=\"3928\" width=\"300\" caption=\"off\"][/vc_column_inner][vc_column_inner width=\"1/5\" offset=\"vc_hidden-xs\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row disable_element=\"yes\" css=\".vc_custom_1695294608306{margin-top: 15px !important;}\"][vc_column][ultimate_heading main_heading=\"Board Of Directors\" main_heading_color=\"#762888\" main_heading_margin=\"margin-top:35px;margin-bottom:35px;\"][/ultimate_heading][ultimate_carousel slides_on_desk=\"3\" slides_on_mob=\"1\" arrow_style=\"square-bg\" arrow_bg_color=\"#039447\" arrow_color=\"#ffffff\" next_icon=\"ultsl-arrow-right6\" prev_icon=\"ultsl-arrow-left6\" dots_color=\"#039447\" item_animation=\"fadeIn\" css_ad_caraousel=\".vc_custom_1694697209111{padding-right: 10px !important;padding-left: 10px !important;}\"][vc_row_inner][vc_column_inner][ultimate_heading main_heading=\"Uditha Wanigasinghe\" heading_tag=\"h3\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;\"]Managing Director[/ultimate_heading][ultimate_modal modal_title=\"Read more\" btn_size=\"md\" btn_bg_color=\"#089548\" btn_text=\"Read more\" overlay_bg_opacity=\"75\" img_size=\"80\" btn_txt_color=\"#ffffff\"]pretium mauris pretium mauris pretium mauris pretium mauris pretium mauris pretium mauris pretium mauris pretium mauris pretium mauris pretium mauris pretium mauris pretium mauris pretium mauris pretium mauris pretium mauris pretium mauris pretium mauris pretium mauris pretium mauris pretium mauris pretium mauris pretium mauris pretium mauris pretium mauris pretium mauris pretium mauris pretium mauris pretium mauris[/ultimate_modal][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner][ultimate_heading main_heading=\"Senitha Wanigasinghe\" heading_tag=\"h3\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;\"]Director/ CEO[/ultimate_heading][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner][ultimate_heading main_heading=\"Thulitha Wanigasinghe\" heading_tag=\"h3\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;\"]Director - Veterinary Services &amp; RA[/ultimate_heading][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner][ultimate_heading main_heading=\"Yvonne Van Cuylenberg\" heading_tag=\"h3\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;\"]Director - HR &amp; Administration[/ultimate_heading][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner][ultimate_heading main_heading=\"Gamini Wanigasinghe\" heading_tag=\"h3\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;\"]Director[/ultimate_heading][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner][ultimate_heading main_heading=\"Ajith Welianga\" heading_tag=\"h3\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;\"]Director - Marketing[/ultimate_heading][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner][ultimate_heading main_heading=\"Sunil Ranjith Guruge\" heading_tag=\"h3\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;\"]Director - Customer &amp; Employee Relations[/ultimate_heading][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner][ultimate_heading main_heading=\"Sampath Gunathilake\" heading_tag=\"h3\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;\"]Director - Sales[/ultimate_heading][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner][ultimate_heading main_heading=\"Chanaka Indrajith\" heading_tag=\"h3\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;\"]Director Production / COO[/ultimate_heading][/vc_column_inner][/vc_row_inner][/ultimate_carousel][/vc_column][/vc_row][vc_row disable_element=\"yes\"][vc_column][ultimate_heading main_heading=\"Board Of Directors\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;margin-bottom:35px;\"][/ultimate_heading][vc_row_inner][vc_column_inner width=\"1/3\"][ult_animation_block animation=\"fadeInUp\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][dt_fancy_image image_id=\"3172\" width=\"300\" border_radius=\"1px\" caption=\"off\" css=\".vc_custom_1692278922309{border-top-width: 1px !important;border-right-width: 1px !important;border-bottom-width: 1px !important;border-left-width: 1px !important;border-left-color: #059444 !important;border-left-style: solid !important;border-right-color: #059444 !important;border-right-style: solid !important;border-top-color: #059444 !important;border-top-style: solid !important;border-bottom-color: #059444 !important;border-bottom-style: solid !important;border-radius: 1px !important;}\"][ultimate_heading main_heading=\"Quisque sed nibh tristique\" heading_tag=\"h3\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;\"]\n<ul>\n 	<li>Duis lorem risus, aliquet a auctor a, venenatis in dui. Praesent et eros et risus dapibus placerat hendrerit cursus magna.</li>\n 	<li>Praesent et eros et risus dapibus placerat hendrerit cursus magna.</li>\n 	<li>aliquet a auctor a, venenatis in dui.</li>\n</ul>\n[/ultimate_heading][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/3\"][ult_animation_block animation=\"fadeInDown\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][dt_fancy_image image_id=\"3171\" width=\"300\" border_radius=\"1px\" caption=\"off\" css=\".vc_custom_1692278929158{border-top-width: 1px !important;border-right-width: 1px !important;border-bottom-width: 1px !important;border-left-width: 1px !important;border-left-color: #059444 !important;border-left-style: solid !important;border-right-color: #059444 !important;border-right-style: solid !important;border-top-color: #059444 !important;border-top-style: solid !important;border-bottom-color: #059444 !important;border-bottom-style: solid !important;border-radius: 1px !important;}\"][ultimate_heading main_heading=\"Quisque sed nibh tristique\" heading_tag=\"h3\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;\"]\n<ul>\n 	<li>Duis lorem risus, aliquet a auctor a, venenatis in dui. Praesent et eros et risus dapibus placerat hendrerit cursus magna.</li>\n 	<li>Praesent et eros et risus dapibus placerat hendrerit cursus magna.</li>\n 	<li>aliquet a auctor a, venenatis in dui.</li>\n</ul>\n[/ultimate_heading][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/3\"][ult_animation_block animation=\"fadeInUp\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][dt_fancy_image image_id=\"3170\" width=\"300\" border_radius=\"1px\" caption=\"off\" css=\".vc_custom_1692278936750{border-top-width: 1px !important;border-right-width: 1px !important;border-bottom-width: 1px !important;border-left-width: 1px !important;border-left-color: #059444 !important;border-left-style: solid !important;border-right-color: #059444 !important;border-right-style: solid !important;border-top-color: #059444 !important;border-top-style: solid !important;border-bottom-color: #059444 !important;border-bottom-style: solid !important;border-radius: 1px !important;}\"][ultimate_heading main_heading=\"Quisque sed nibh tristique\" heading_tag=\"h3\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;\"]\n<ul>\n 	<li>Duis lorem risus, aliquet a auctor a, venenatis in dui. Praesent et eros et risus dapibus placerat hendrerit cursus magna.</li>\n 	<li>Praesent et eros et risus dapibus placerat hendrerit cursus magna.</li>\n 	<li>aliquet a auctor a, venenatis in dui.</li>\n</ul>\n[/ultimate_heading][/ult_animation_block][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row disable_element=\"yes\"][vc_column][ultimate_heading main_heading=\"Executive Directors\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;margin-bottom:35px;\"][/ultimate_heading][vc_row_inner][vc_column_inner width=\"1/5\"][ult_animation_block animation=\"fadeInUp\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][dt_fancy_image image_id=\"3172\" width=\"300\" border_radius=\"1px\" caption=\"off\" css=\".vc_custom_1692278922309{border-top-width: 1px !important;border-right-width: 1px !important;border-bottom-width: 1px !important;border-left-width: 1px !important;border-left-color: #059444 !important;border-left-style: solid !important;border-right-color: #059444 !important;border-right-style: solid !important;border-top-color: #059444 !important;border-top-style: solid !important;border-bottom-color: #059444 !important;border-bottom-style: solid !important;border-radius: 1px !important;}\"][ultimate_heading main_heading=\"Quisque sed nibh tristique\" heading_tag=\"h3\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;\"]\n<ul>\n 	<li>Duis lorem risus, aliquet a auctor a, venenatis in dui. Praesent et eros et risus dapibus placerat hendrerit cursus magna.</li>\n 	<li>Praesent et eros et risus dapibus placerat hendrerit cursus magna.</li>\n 	<li>aliquet a auctor a, venenatis in dui.</li>\n</ul>\n[/ultimate_heading][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/5\"][ult_animation_block animation=\"fadeInDown\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][dt_fancy_image image_id=\"3171\" width=\"300\" border_radius=\"1px\" caption=\"off\" css=\".vc_custom_1692278929158{border-top-width: 1px !important;border-right-width: 1px !important;border-bottom-width: 1px !important;border-left-width: 1px !important;border-left-color: #059444 !important;border-left-style: solid !important;border-right-color: #059444 !important;border-right-style: solid !important;border-top-color: #059444 !important;border-top-style: solid !important;border-bottom-color: #059444 !important;border-bottom-style: solid !important;border-radius: 1px !important;}\"][ultimate_heading main_heading=\"Quisque sed nibh tristique\" heading_tag=\"h3\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;\"]\n<ul>\n 	<li>Duis lorem risus, aliquet a auctor a, venenatis in dui. Praesent et eros et risus dapibus placerat hendrerit cursus magna.</li>\n 	<li>Praesent et eros et risus dapibus placerat hendrerit cursus magna.</li>\n 	<li>aliquet a auctor a, venenatis in dui.</li>\n</ul>\n[/ultimate_heading][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/5\"][ult_animation_block animation=\"fadeInUp\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][dt_fancy_image image_id=\"3170\" width=\"300\" border_radius=\"1px\" caption=\"off\" css=\".vc_custom_1692278936750{border-top-width: 1px !important;border-right-width: 1px !important;border-bottom-width: 1px !important;border-left-width: 1px !important;border-left-color: #059444 !important;border-left-style: solid !important;border-right-color: #059444 !important;border-right-style: solid !important;border-top-color: #059444 !important;border-top-style: solid !important;border-bottom-color: #059444 !important;border-bottom-style: solid !important;border-radius: 1px !important;}\"][ultimate_heading main_heading=\"Quisque sed nibh tristique\" heading_tag=\"h3\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;\"]\n<ul>\n 	<li>Duis lorem risus, aliquet a auctor a, venenatis in dui. Praesent et eros et risus dapibus placerat hendrerit cursus magna.</li>\n 	<li>Praesent et eros et risus dapibus placerat hendrerit cursus magna.</li>\n 	<li>aliquet a auctor a, venenatis in dui.</li>\n</ul>\n[/ultimate_heading][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/5\"][ult_animation_block animation=\"fadeInDown\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][dt_fancy_image image_id=\"3170\" width=\"300\" border_radius=\"1px\" caption=\"off\" css=\".vc_custom_1692278936750{border-top-width: 1px !important;border-right-width: 1px !important;border-bottom-width: 1px !important;border-left-width: 1px !important;border-left-color: #059444 !important;border-left-style: solid !important;border-right-color: #059444 !important;border-right-style: solid !important;border-top-color: #059444 !important;border-top-style: solid !important;border-bottom-color: #059444 !important;border-bottom-style: solid !important;border-radius: 1px !important;}\"][ultimate_heading main_heading=\"Quisque sed nibh tristique\" heading_tag=\"h3\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;\"]\n<ul>\n 	<li>Duis lorem risus, aliquet a auctor a, venenatis in dui. Praesent et eros et risus dapibus placerat hendrerit cursus magna.</li>\n 	<li>Praesent et eros et risus dapibus placerat hendrerit cursus magna.</li>\n 	<li>aliquet a auctor a, venenatis in dui.</li>\n</ul>\n[/ultimate_heading][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/5\"][ult_animation_block animation=\"fadeInDown\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][dt_fancy_image image_id=\"3171\" width=\"300\" border_radius=\"1px\" caption=\"off\" css=\".vc_custom_1692278929158{border-top-width: 1px !important;border-right-width: 1px !important;border-bottom-width: 1px !important;border-left-width: 1px !important;border-left-color: #059444 !important;border-left-style: solid !important;border-right-color: #059444 !important;border-right-style: solid !important;border-top-color: #059444 !important;border-top-style: solid !important;border-bottom-color: #059444 !important;border-bottom-style: solid !important;border-radius: 1px !important;}\"][ultimate_heading main_heading=\"Quisque sed nibh tristique\" heading_tag=\"h3\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;\"]\n<ul>\n 	<li>Duis lorem risus, aliquet a auctor a, venenatis in dui. Praesent et eros et risus dapibus placerat hendrerit cursus magna.</li>\n 	<li>Praesent et eros et risus dapibus placerat hendrerit cursus magna.</li>\n 	<li>aliquet a auctor a, venenatis in dui.</li>\n</ul>\n[/ultimate_heading][/ult_animation_block][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner width=\"2/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row disable_element=\"yes\"][vc_column][ultimate_heading main_heading=\"Next Generation\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;margin-bottom:35px;\"][/ultimate_heading][vc_row_inner][vc_column_inner width=\"1/2\"][ult_animation_block animation=\"fadeInUp\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][dt_fancy_image image_id=\"3172\" width=\"300\" border_radius=\"1px\" caption=\"off\" css=\".vc_custom_1692278922309{border-top-width: 1px !important;border-right-width: 1px !important;border-bottom-width: 1px !important;border-left-width: 1px !important;border-left-color: #059444 !important;border-left-style: solid !important;border-right-color: #059444 !important;border-right-style: solid !important;border-top-color: #059444 !important;border-top-style: solid !important;border-bottom-color: #059444 !important;border-bottom-style: solid !important;border-radius: 1px !important;}\"][ultimate_heading main_heading=\"Quisque sed nibh tristique\" heading_tag=\"h3\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;\"]\n<ul>\n 	<li>Duis lorem risus, aliquet a auctor a, venenatis in dui. Praesent et eros et risus dapibus placerat hendrerit cursus magna.</li>\n 	<li>Praesent et eros et risus dapibus placerat hendrerit cursus magna.</li>\n 	<li>aliquet a auctor a, venenatis in dui.</li>\n</ul>\n[/ultimate_heading][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/2\"][ult_animation_block animation=\"fadeInDown\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][dt_fancy_image image_id=\"3171\" width=\"300\" border_radius=\"1px\" caption=\"off\" css=\".vc_custom_1692278929158{border-top-width: 1px !important;border-right-width: 1px !important;border-bottom-width: 1px !important;border-left-width: 1px !important;border-left-color: #059444 !important;border-left-style: solid !important;border-right-color: #059444 !important;border-right-style: solid !important;border-top-color: #059444 !important;border-top-style: solid !important;border-bottom-color: #059444 !important;border-bottom-style: solid !important;border-radius: 1px !important;}\"][ultimate_heading main_heading=\"Quisque sed nibh tristique\" heading_tag=\"h3\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;\"]\n<ul>\n 	<li>Duis lorem risus, aliquet a auctor a, venenatis in dui. Praesent et eros et risus dapibus placerat hendrerit cursus magna.</li>\n 	<li>Praesent et eros et risus dapibus placerat hendrerit cursus magna.</li>\n 	<li>aliquet a auctor a, venenatis in dui.</li>\n</ul>\n[/ultimate_heading][/ult_animation_block][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row]','About us','','inherit','closed','closed','','2917-autosave-v1','','','2023-09-24 09:01:02','2023-09-24 09:01:02','',2917,'https://farmchemie.yasithawd.com/?p=2926',0,'revision','',0),(2930,1,'2023-06-14 05:09:06','2023-06-14 05:09:06','[vc_row][vc_column][ultimate_heading main_heading=\"Our History\" main_heading_color=\"#762888\" alignment=\"left\"][/ultimate_heading][vc_row_inner css=\".vc_custom_1686713784619{margin-top: 35px !important;}\"][vc_column_inner width=\"1/3\"][vc_single_image image=\"2919\" img_size=\"full\"][/vc_column_inner][vc_column_inner width=\"2/3\"][ultimate_heading main_heading=\"Founded in 2002\" heading_tag=\"h3\" main_heading_color=\"#039447\" alignment=\"left\"]Founded in 2002 by Mr. Uditha Wanigasinghe, an agriculturist who had a mission to aid valuable livestock producers in the country to enhance the yield and profitability of production. FARMCHEMIE introduced unprecedented solutions and consistent technical services to gain our customers’ trust and became the market leader in animal health products in 2006 within just four years.[/ultimate_heading][/vc_column_inner][/vc_row_inner][vc_row_inner rtl_reverse=\"yes\" css=\".vc_custom_1686714025469{margin-top: 35px !important;}\"][vc_column_inner width=\"2/3\"][ultimate_heading main_heading=\"2006\" heading_tag=\"h3\" main_heading_color=\"#039447\" alignment=\"left\"]In 2006, the Sri Lankan poultry industry was affected with Avian Influenza which became a difficult period for the growth of FARMCHEMIE. This was the key factor in our decision to diversify into Agro Products. PLANTCHEM &amp; PLANTSEEDS were established to offer solutions in Agro specialty fertilizers, pesticides and seeds to invaluable cultivators.[/ultimate_heading][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_single_image image=\"2895\" img_size=\"full\"][/vc_column_inner][/vc_row_inner][vc_row_inner css=\".vc_custom_1686713784619{margin-top: 35px !important;}\"][vc_column_inner width=\"1/3\"][vc_single_image image=\"2896\" img_size=\"full\"][/vc_column_inner][vc_column_inner width=\"2/3\"][ultimate_heading main_heading=\"2010\" heading_tag=\"h3\" main_heading_color=\"#039447\" alignment=\"left\"]In 2010, FEED CHEMIE became the subsequent addition to ever-growing vision of Mr. Uditha Wanigasinghe and entered the Animal Feed Additives market.[/ultimate_heading][/vc_column_inner][/vc_row_inner][vc_row_inner rtl_reverse=\"yes\" css=\".vc_custom_1686714115148{margin-top: 35px !important;}\"][vc_column_inner width=\"2/3\"][ultimate_heading main_heading=\"2012\" heading_tag=\"h3\" main_heading_color=\"#039447\" alignment=\"left\"]The year 2012 is described as a turning point in our journey as FARMCHEMIE established our first production facility for the manufacturing and packing of animal health products. FARMCHEMIE became the first animal health organization in Sri Lanka to obtain ISO 9001:2015 and WHO GMP International Quality Certification. With our own formulation unit, FARMCHEMIE was able to offer customized solutions to cater the needs of the Sri Lankan Livestock Industry.[/ultimate_heading][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_single_image image=\"2897\" img_size=\"full\"][/vc_column_inner][/vc_row_inner][vc_row_inner css=\".vc_custom_1686713784619{margin-top: 35px !important;}\"][vc_column_inner width=\"1/3\"][vc_single_image image=\"2898\" img_size=\"full\"][/vc_column_inner][vc_column_inner width=\"2/3\"][ultimate_heading main_heading=\"2016\" heading_tag=\"h3\" main_heading_color=\"#039447\" alignment=\"left\"]The year 2016 was another key milestone with the entry to the International Markets. FARMCHEMIE exported our first Feed Premix consignment to India and in 2018 our export operation was distinctly established as FARMCHEMIE MANUFACTURERS, a Board of Investment (BOI) approved entity.[/ultimate_heading][/vc_column_inner][/vc_row_inner][vc_row_inner css=\".vc_custom_1686713784619{margin-top: 35px !important;}\"][vc_column_inner width=\"2/3\"][ultimate_heading main_heading=\"Fully automated manufacturing\" heading_tag=\"h3\" main_heading_color=\"#039447\" alignment=\"left\"]FARMCHEMIE MANUFACTURERS has invested in fully automated manufacturing facility from Bühler and became the first Sri Lankan owned company to obtain FAMI-QS International Quality Certification.[/ultimate_heading][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_single_image image=\"2899\" img_size=\"full\"][/vc_column_inner][/vc_row_inner][vc_row_inner css=\".vc_custom_1686713784619{margin-top: 35px !important;}\"][vc_column_inner width=\"1/3\"][vc_single_image image=\"2901\" img_size=\"full\"][/vc_column_inner][vc_column_inner width=\"2/3\"][ultimate_heading main_heading=\"Official toll manufacturer partner\" heading_tag=\"h3\" main_heading_color=\"#039447\" alignment=\"left\"]With the trust and reputation built as a reliable manufacturer of animal feed additives and supplements in the global market, several world-renowned international brands have appointed FARMCHEMIE MANUFACTURERS as the official toll manufacturer partner. FARMCHEMIE MANUFACTURERS exports a wide range of products consisting of premixes, specialty feed additives, oral liquid supplements and pet supplements to various markets in South Asia, East Asia, Middle East and Africa.\r\n\r\nFARMCHEMIE, FEED CHEMIE &amp; FARMCHEMIE MANUFACTURERS currently operate under the ownership of our holding company, DYVESTA.\r\n\r\nDYEVSTA has become the pinnacle of Animal Nutrition and Health.\r\n\r\nDYVESTA is Dynamic, through our continuous evolution, growth and progress. DYVESTA is Diverse, in terms of both our business strategy and our community. DYVESTA is Devoted to our valuable business partners through exceptional service.[/ultimate_heading][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row full_width=\"stretch_row\" equal_height=\"yes\" css=\".vc_custom_1686719341668{margin-top: 35px !important;padding-top: 65px !important;padding-bottom: 100px !important;}\"][vc_column][vc_row_inner equal_height=\"yes\" gap=\"20\"][vc_column_inner width=\"1/2\"][ultimate_heading main_heading=\"Mission\" main_heading_color=\"#039447\" sub_heading_color=\"#ffffff\"]To be the customers’ first and best choice by ensuring outstanding satisfaction through a well-trained and dedicated team. Prompt and quality solutions to our customers’ requirements will determine the increase of return on investment for us.[/ultimate_heading][/vc_column_inner][vc_column_inner width=\"1/2\"][ultimate_heading main_heading=\"Vision\" main_heading_color=\"#762888\" sub_heading_color=\"#ffffff\"]To become a world renowned manufacturer of Animal Health products and a trusted partner among our stakeholders for our integrity as well as for providing effective solutions[/ultimate_heading][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row css=\".vc_custom_1684836308288{margin-top: 15px !important;}\"][vc_column][ultimate_heading main_heading=\"Achievements\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;\"][/ultimate_heading][/vc_column][/vc_row]','About us','','inherit','closed','closed','','2917-revision-v1','','','2023-06-14 05:09:06','2023-06-14 05:09:06','',2917,'https://farmchemie.yasithawd.com/?p=2930',0,'revision','',0),(2928,1,'2023-06-14 04:32:20','2023-06-14 04:32:20','[vc_row][vc_column][ultimate_heading main_heading=\"Our History\" main_heading_color=\"#762888\" alignment=\"left\"][/ultimate_heading][vc_row_inner css=\".vc_custom_1686713784619{margin-top: 35px !important;}\"][vc_column_inner width=\"1/3\"][vc_single_image image=\"2919\" img_size=\"full\"][/vc_column_inner][vc_column_inner width=\"2/3\"][ultimate_heading main_heading=\"Founded in 2002\" heading_tag=\"h3\" main_heading_color=\"#039447\" alignment=\"left\"]Founded in 2002 by Mr. Uditha Wanigasinghe, an agriculturist who had a mission to aid valuable livestock producers in the country to enhance the yield and profitability of production. FARMCHEMIE introduced unprecedented solutions and consistent technical services to gain our customers’ trust and became the market leader in animal health products in 2006 within just four years.[/ultimate_heading][/vc_column_inner][/vc_row_inner][vc_row_inner rtl_reverse=\"yes\" css=\".vc_custom_1686714025469{margin-top: 35px !important;}\"][vc_column_inner width=\"2/3\"][ultimate_heading main_heading=\"2006\" heading_tag=\"h3\" main_heading_color=\"#039447\" alignment=\"left\"]In 2006, the Sri Lankan poultry industry was affected with Avian Influenza which became a difficult period for the growth of FARMCHEMIE. This was the key factor in our decision to diversify into Agro Products. PLANTCHEM &amp; PLANTSEEDS were established to offer solutions in Agro specialty fertilizers, pesticides and seeds to invaluable cultivators.[/ultimate_heading][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_single_image image=\"2895\" img_size=\"full\"][/vc_column_inner][/vc_row_inner][vc_row_inner css=\".vc_custom_1686713784619{margin-top: 35px !important;}\"][vc_column_inner width=\"1/3\"][vc_single_image image=\"2896\" img_size=\"full\"][/vc_column_inner][vc_column_inner width=\"2/3\"][ultimate_heading main_heading=\"2010\" heading_tag=\"h3\" main_heading_color=\"#039447\" alignment=\"left\"]In 2010, FEED CHEMIE became the subsequent addition to ever-growing vision of Mr. Uditha Wanigasinghe and entered the Animal Feed Additives market.[/ultimate_heading][/vc_column_inner][/vc_row_inner][vc_row_inner rtl_reverse=\"yes\" css=\".vc_custom_1686714115148{margin-top: 35px !important;}\"][vc_column_inner width=\"2/3\"][ultimate_heading main_heading=\"2012\" heading_tag=\"h3\" main_heading_color=\"#039447\" alignment=\"left\"]The year 2012 is described as a turning point in our journey as FARMCHEMIE established our first production facility for the manufacturing and packing of animal health products. FARMCHEMIE became the first animal health organization in Sri Lanka to obtain ISO 9001:2015 and WHO GMP International Quality Certification. With our own formulation unit, FARMCHEMIE was able to offer customized solutions to cater the needs of the Sri Lankan Livestock Industry.[/ultimate_heading][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_single_image image=\"2897\" img_size=\"full\"][/vc_column_inner][/vc_row_inner][vc_row_inner css=\".vc_custom_1686713784619{margin-top: 35px !important;}\"][vc_column_inner width=\"1/3\"][vc_single_image image=\"2898\" img_size=\"full\"][/vc_column_inner][vc_column_inner width=\"2/3\"][ultimate_heading main_heading=\"2016\" heading_tag=\"h3\" main_heading_color=\"#039447\" alignment=\"left\"]The year 2016 was another key milestone with the entry to the International Markets. FARMCHEMIE exported our first Feed Premix consignment to India and in 2018 our export operation was distinctly established as FARMCHEMIE MANUFACTURERS, a Board of Investment (BOI) approved entity.[/ultimate_heading][/vc_column_inner][/vc_row_inner][vc_row_inner css=\".vc_custom_1686713784619{margin-top: 35px !important;}\"][vc_column_inner width=\"2/3\"][ultimate_heading main_heading=\"Fully automated manufacturing\" heading_tag=\"h3\" main_heading_color=\"#039447\" alignment=\"left\"]FARMCHEMIE MANUFACTURERS has invested in fully automated manufacturing facility from Bühler and became the first Sri Lankan owned company to obtain FAMI-QS International Quality Certification.[/ultimate_heading][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_single_image image=\"2899\" img_size=\"full\"][/vc_column_inner][/vc_row_inner][vc_row_inner css=\".vc_custom_1686713784619{margin-top: 35px !important;}\"][vc_column_inner][vc_single_image image=\"2901\" img_size=\"full\"][ultimate_heading main_heading=\"Official toll manufacturer partner\" heading_tag=\"h3\" main_heading_color=\"#039447\" alignment=\"left\"]With the trust and reputation built as a reliable manufacturer of animal feed additives and supplements in the global market, several world-renowned international brands have appointed FARMCHEMIE MANUFACTURERS as the official toll manufacturer partner. FARMCHEMIE MANUFACTURERS exports a wide range of products consisting of premixes, specialty feed additives, oral liquid supplements and pet supplements to various markets in South Asia, East Asia, Middle East and Africa.\r\n\r\nFARMCHEMIE, FEED CHEMIE &amp; FARMCHEMIE MANUFACTURERS currently operate under the ownership of our holding company, DYVESTA.\r\n\r\nDYEVSTA has become the pinnacle of Animal Nutrition and Health.\r\n\r\nDYVESTA is Dynamic, through our continuous evolution, growth and progress. DYVESTA is Diverse, in terms of both our business strategy and our community. DYVESTA is Devoted to our valuable business partners through exceptional service.[/ultimate_heading][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row full_width=\"stretch_row\" equal_height=\"yes\" bg_type=\"grad\" bg_override=\"ex-full\" bg_grad=\"background: -webkit-gradient(linear, left top, left bottom, color-stop(50%, #762888), color-stop(51%, #039447));background: -moz-linear-gradient(90deg,#762888 50%,#039447 51%);background: -webkit-linear-gradient(90deg,#762888 50%,#039447 51%);background: -o-linear-gradient(90deg,#762888 50%,#039447 51%);background: -ms-linear-gradient(90deg,#762888 50%,#039447 51%);background: linear-gradient(90deg,#762888 50%,#039447 51%);\" css=\".vc_custom_1686717135130{margin-top: 35px !important;padding-top: 65px !important;padding-bottom: 100px !important;}\"][vc_column][vc_row_inner equal_height=\"yes\" gap=\"20\"][vc_column_inner width=\"1/2\"][ultimate_heading main_heading=\"Mission\" main_heading_color=\"#039447\" sub_heading_color=\"#ffffff\" margin_design_tab_text=\"\"]To be the customers’ first and best choice by ensuring outstanding satisfaction through a well-trained and dedicated team. Prompt and quality solutions to our customers’ requirements will determine the increase of return on investment for us.[/ultimate_heading][/vc_column_inner][vc_column_inner width=\"1/2\"][ultimate_heading main_heading=\"Vision\" main_heading_color=\"#762888\" sub_heading_color=\"#ffffff\" margin_design_tab_text=\"\"]To become a world renowned manufacturer of Animal Health products and a trusted partner among our stakeholders for our integrity as well as for providing effective solutions[/ultimate_heading][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row css=\".vc_custom_1684836308288{margin-top: 15px !important;}\"][vc_column][ultimate_heading main_heading=\"Achievements\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;\"][/ultimate_heading][/vc_column][/vc_row]','About us','','inherit','closed','closed','','2917-revision-v1','','','2023-06-14 04:32:20','2023-06-14 04:32:20','',2917,'https://farmchemie.yasithawd.com/?p=2928',0,'revision','',0),(2929,1,'2023-06-14 04:36:37','2023-06-14 04:36:37','[vc_row][vc_column][ultimate_heading main_heading=\"Our History\" main_heading_color=\"#762888\" alignment=\"left\"][/ultimate_heading][vc_row_inner css=\".vc_custom_1686713784619{margin-top: 35px !important;}\"][vc_column_inner width=\"1/3\"][vc_single_image image=\"2919\" img_size=\"full\"][/vc_column_inner][vc_column_inner width=\"2/3\"][ultimate_heading main_heading=\"Founded in 2002\" heading_tag=\"h3\" main_heading_color=\"#039447\" alignment=\"left\"]Founded in 2002 by Mr. Uditha Wanigasinghe, an agriculturist who had a mission to aid valuable livestock producers in the country to enhance the yield and profitability of production. FARMCHEMIE introduced unprecedented solutions and consistent technical services to gain our customers’ trust and became the market leader in animal health products in 2006 within just four years.[/ultimate_heading][/vc_column_inner][/vc_row_inner][vc_row_inner rtl_reverse=\"yes\" css=\".vc_custom_1686714025469{margin-top: 35px !important;}\"][vc_column_inner width=\"2/3\"][ultimate_heading main_heading=\"2006\" heading_tag=\"h3\" main_heading_color=\"#039447\" alignment=\"left\"]In 2006, the Sri Lankan poultry industry was affected with Avian Influenza which became a difficult period for the growth of FARMCHEMIE. This was the key factor in our decision to diversify into Agro Products. PLANTCHEM &amp; PLANTSEEDS were established to offer solutions in Agro specialty fertilizers, pesticides and seeds to invaluable cultivators.[/ultimate_heading][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_single_image image=\"2895\" img_size=\"full\"][/vc_column_inner][/vc_row_inner][vc_row_inner css=\".vc_custom_1686713784619{margin-top: 35px !important;}\"][vc_column_inner width=\"1/3\"][vc_single_image image=\"2896\" img_size=\"full\"][/vc_column_inner][vc_column_inner width=\"2/3\"][ultimate_heading main_heading=\"2010\" heading_tag=\"h3\" main_heading_color=\"#039447\" alignment=\"left\"]In 2010, FEED CHEMIE became the subsequent addition to ever-growing vision of Mr. Uditha Wanigasinghe and entered the Animal Feed Additives market.[/ultimate_heading][/vc_column_inner][/vc_row_inner][vc_row_inner rtl_reverse=\"yes\" css=\".vc_custom_1686714115148{margin-top: 35px !important;}\"][vc_column_inner width=\"2/3\"][ultimate_heading main_heading=\"2012\" heading_tag=\"h3\" main_heading_color=\"#039447\" alignment=\"left\"]The year 2012 is described as a turning point in our journey as FARMCHEMIE established our first production facility for the manufacturing and packing of animal health products. FARMCHEMIE became the first animal health organization in Sri Lanka to obtain ISO 9001:2015 and WHO GMP International Quality Certification. With our own formulation unit, FARMCHEMIE was able to offer customized solutions to cater the needs of the Sri Lankan Livestock Industry.[/ultimate_heading][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_single_image image=\"2897\" img_size=\"full\"][/vc_column_inner][/vc_row_inner][vc_row_inner css=\".vc_custom_1686713784619{margin-top: 35px !important;}\"][vc_column_inner width=\"1/3\"][vc_single_image image=\"2898\" img_size=\"full\"][/vc_column_inner][vc_column_inner width=\"2/3\"][ultimate_heading main_heading=\"2016\" heading_tag=\"h3\" main_heading_color=\"#039447\" alignment=\"left\"]The year 2016 was another key milestone with the entry to the International Markets. FARMCHEMIE exported our first Feed Premix consignment to India and in 2018 our export operation was distinctly established as FARMCHEMIE MANUFACTURERS, a Board of Investment (BOI) approved entity.[/ultimate_heading][/vc_column_inner][/vc_row_inner][vc_row_inner css=\".vc_custom_1686713784619{margin-top: 35px !important;}\"][vc_column_inner width=\"2/3\"][ultimate_heading main_heading=\"Fully automated manufacturing\" heading_tag=\"h3\" main_heading_color=\"#039447\" alignment=\"left\"]FARMCHEMIE MANUFACTURERS has invested in fully automated manufacturing facility from Bühler and became the first Sri Lankan owned company to obtain FAMI-QS International Quality Certification.[/ultimate_heading][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_single_image image=\"2899\" img_size=\"full\"][/vc_column_inner][/vc_row_inner][vc_row_inner css=\".vc_custom_1686713784619{margin-top: 35px !important;}\"][vc_column_inner width=\"1/3\"][vc_single_image image=\"2901\" img_size=\"full\"][/vc_column_inner][vc_column_inner width=\"2/3\"][ultimate_heading main_heading=\"Official toll manufacturer partner\" heading_tag=\"h3\" main_heading_color=\"#039447\" alignment=\"left\"]With the trust and reputation built as a reliable manufacturer of animal feed additives and supplements in the global market, several world-renowned international brands have appointed FARMCHEMIE MANUFACTURERS as the official toll manufacturer partner. FARMCHEMIE MANUFACTURERS exports a wide range of products consisting of premixes, specialty feed additives, oral liquid supplements and pet supplements to various markets in South Asia, East Asia, Middle East and Africa.\r\n\r\nFARMCHEMIE, FEED CHEMIE &amp; FARMCHEMIE MANUFACTURERS currently operate under the ownership of our holding company, DYVESTA.\r\n\r\nDYEVSTA has become the pinnacle of Animal Nutrition and Health.\r\n\r\nDYVESTA is Dynamic, through our continuous evolution, growth and progress. DYVESTA is Diverse, in terms of both our business strategy and our community. DYVESTA is Devoted to our valuable business partners through exceptional service.[/ultimate_heading][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row full_width=\"stretch_row\" equal_height=\"yes\" bg_type=\"grad\" bg_override=\"ex-full\" bg_grad=\"background: -webkit-gradient(linear, left top, left bottom, color-stop(50%, #762888), color-stop(51%, #039447));background: -moz-linear-gradient(90deg,#762888 50%,#039447 51%);background: -webkit-linear-gradient(90deg,#762888 50%,#039447 51%);background: -o-linear-gradient(90deg,#762888 50%,#039447 51%);background: -ms-linear-gradient(90deg,#762888 50%,#039447 51%);background: linear-gradient(90deg,#762888 50%,#039447 51%);\" css=\".vc_custom_1686717135130{margin-top: 35px !important;padding-top: 65px !important;padding-bottom: 100px !important;}\"][vc_column][vc_row_inner equal_height=\"yes\" gap=\"20\"][vc_column_inner width=\"1/2\"][ultimate_heading main_heading=\"Mission\" main_heading_color=\"#039447\" sub_heading_color=\"#ffffff\"]To be the customers’ first and best choice by ensuring outstanding satisfaction through a well-trained and dedicated team. Prompt and quality solutions to our customers’ requirements will determine the increase of return on investment for us.[/ultimate_heading][/vc_column_inner][vc_column_inner width=\"1/2\"][ultimate_heading main_heading=\"Vision\" main_heading_color=\"#762888\" sub_heading_color=\"#ffffff\"]To become a world renowned manufacturer of Animal Health products and a trusted partner among our stakeholders for our integrity as well as for providing effective solutions[/ultimate_heading][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row css=\".vc_custom_1684836308288{margin-top: 15px !important;}\"][vc_column][ultimate_heading main_heading=\"Achievements\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;\"][/ultimate_heading][/vc_column][/vc_row]','About us','','inherit','closed','closed','','2917-revision-v1','','','2023-06-14 04:36:37','2023-06-14 04:36:37','',2917,'https://farmchemie.yasithawd.com/?p=2929',0,'revision','',0),(2931,1,'2023-06-14 05:15:34','2023-06-14 05:15:34','[vc_row][vc_column][ultimate_heading main_heading=\"Our History\" main_heading_color=\"#762888\" alignment=\"left\"][/ultimate_heading][vc_row_inner css=\".vc_custom_1686713784619{margin-top: 35px !important;}\"][vc_column_inner width=\"1/3\"][vc_single_image image=\"2919\" img_size=\"full\"][/vc_column_inner][vc_column_inner width=\"2/3\"][ultimate_heading main_heading=\"Founded in 2002\" heading_tag=\"h3\" main_heading_color=\"#039447\" alignment=\"left\"]Founded in 2002 by Mr. Uditha Wanigasinghe, an agriculturist who had a mission to aid valuable livestock producers in the country to enhance the yield and profitability of production. FARMCHEMIE introduced unprecedented solutions and consistent technical services to gain our customers’ trust and became the market leader in animal health products in 2006 within just four years.[/ultimate_heading][/vc_column_inner][/vc_row_inner][vc_row_inner rtl_reverse=\"yes\" css=\".vc_custom_1686714025469{margin-top: 35px !important;}\"][vc_column_inner width=\"2/3\"][ultimate_heading main_heading=\"2006\" heading_tag=\"h3\" main_heading_color=\"#039447\" alignment=\"left\"]In 2006, the Sri Lankan poultry industry was affected with Avian Influenza which became a difficult period for the growth of FARMCHEMIE. This was the key factor in our decision to diversify into Agro Products. PLANTCHEM &amp; PLANTSEEDS were established to offer solutions in Agro specialty fertilizers, pesticides and seeds to invaluable cultivators.[/ultimate_heading][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_single_image image=\"2895\" img_size=\"full\"][/vc_column_inner][/vc_row_inner][vc_row_inner css=\".vc_custom_1686713784619{margin-top: 35px !important;}\"][vc_column_inner width=\"1/3\"][vc_single_image image=\"2896\" img_size=\"full\"][/vc_column_inner][vc_column_inner width=\"2/3\"][ultimate_heading main_heading=\"2010\" heading_tag=\"h3\" main_heading_color=\"#039447\" alignment=\"left\"]In 2010, FEED CHEMIE became the subsequent addition to ever-growing vision of Mr. Uditha Wanigasinghe and entered the Animal Feed Additives market.[/ultimate_heading][/vc_column_inner][/vc_row_inner][vc_row_inner rtl_reverse=\"yes\" css=\".vc_custom_1686714115148{margin-top: 35px !important;}\"][vc_column_inner width=\"2/3\"][ultimate_heading main_heading=\"2012\" heading_tag=\"h3\" main_heading_color=\"#039447\" alignment=\"left\"]The year 2012 is described as a turning point in our journey as FARMCHEMIE established our first production facility for the manufacturing and packing of animal health products. FARMCHEMIE became the first animal health organization in Sri Lanka to obtain ISO 9001:2015 and WHO GMP International Quality Certification. With our own formulation unit, FARMCHEMIE was able to offer customized solutions to cater the needs of the Sri Lankan Livestock Industry.[/ultimate_heading][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_single_image image=\"2897\" img_size=\"full\"][/vc_column_inner][/vc_row_inner][vc_row_inner css=\".vc_custom_1686713784619{margin-top: 35px !important;}\"][vc_column_inner width=\"1/3\"][vc_single_image image=\"2898\" img_size=\"full\"][/vc_column_inner][vc_column_inner width=\"2/3\"][ultimate_heading main_heading=\"2016\" heading_tag=\"h3\" main_heading_color=\"#039447\" alignment=\"left\"]The year 2016 was another key milestone with the entry to the International Markets. FARMCHEMIE exported our first Feed Premix consignment to India and in 2018 our export operation was distinctly established as FARMCHEMIE MANUFACTURERS, a Board of Investment (BOI) approved entity.[/ultimate_heading][/vc_column_inner][/vc_row_inner][vc_row_inner css=\".vc_custom_1686713784619{margin-top: 35px !important;}\"][vc_column_inner width=\"2/3\"][ultimate_heading main_heading=\"Fully automated manufacturing\" heading_tag=\"h3\" main_heading_color=\"#039447\" alignment=\"left\"]FARMCHEMIE MANUFACTURERS has invested in fully automated manufacturing facility from Bühler and became the first Sri Lankan owned company to obtain FAMI-QS International Quality Certification.[/ultimate_heading][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_single_image image=\"2899\" img_size=\"full\"][/vc_column_inner][/vc_row_inner][vc_row_inner css=\".vc_custom_1686713784619{margin-top: 35px !important;}\"][vc_column_inner width=\"1/3\"][vc_single_image image=\"2901\" img_size=\"full\"][/vc_column_inner][vc_column_inner width=\"2/3\"][ultimate_heading main_heading=\"Official toll manufacturer partner\" heading_tag=\"h3\" main_heading_color=\"#039447\" alignment=\"left\"]With the trust and reputation built as a reliable manufacturer of animal feed additives and supplements in the global market, several world-renowned international brands have appointed FARMCHEMIE MANUFACTURERS as the official toll manufacturer partner. FARMCHEMIE MANUFACTURERS exports a wide range of products consisting of premixes, specialty feed additives, oral liquid supplements and pet supplements to various markets in South Asia, East Asia, Middle East and Africa.\r\n\r\nFARMCHEMIE, FEED CHEMIE &amp; FARMCHEMIE MANUFACTURERS currently operate under the ownership of our holding company, DYVESTA.\r\n\r\nDYEVSTA has become the pinnacle of Animal Nutrition and Health.\r\n\r\nDYVESTA is Dynamic, through our continuous evolution, growth and progress. DYVESTA is Diverse, in terms of both our business strategy and our community. DYVESTA is Devoted to our valuable business partners through exceptional service.[/ultimate_heading][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row full_width=\"stretch_row\" equal_height=\"yes\" css=\".vc_custom_1686719341668{margin-top: 35px !important;padding-top: 65px !important;padding-bottom: 100px !important;}\"][vc_column][ultimate_dual_color dual_before_txt=\"Vision ,\" dual_high_txt=\"Mission\" heading_tag=\"h2\" dual_color_font_style=\"font-weight:bold;\" dual_color_high_font_style=\"font-weight:bold;\" dual_ba_color=\"#039447\" dual_high_color=\"#762888\"][vc_row_inner equal_height=\"yes\" gap=\"20\"][vc_column_inner width=\"1/2\"][ultimate_heading main_heading=\"Mission\" main_heading_color=\"#039447\" sub_heading_color=\"#039447\" margin_design_tab_text=\"\"]To be the customers’ first and best choice by ensuring outstanding satisfaction through a well-trained and dedicated team. Prompt and quality solutions to our customers’ requirements will determine the increase of return on investment for us.[/ultimate_heading][/vc_column_inner][vc_column_inner width=\"1/2\"][ultimate_heading main_heading=\"Vision\" main_heading_color=\"#762888\" sub_heading_color=\"#762888\" margin_design_tab_text=\"\"]To become a world renowned manufacturer of Animal Health products and a trusted partner among our stakeholders for our integrity as well as for providing effective solutions[/ultimate_heading][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row css=\".vc_custom_1684836308288{margin-top: 15px !important;}\"][vc_column][ultimate_heading main_heading=\"Achievements\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;\"][/ultimate_heading][/vc_column][/vc_row]','About us','','inherit','closed','closed','','2917-revision-v1','','','2023-06-14 05:15:34','2023-06-14 05:15:34','',2917,'https://farmchemie.yasithawd.com/?p=2931',0,'revision','',0),(2932,1,'2023-06-14 05:16:47','2023-06-14 05:16:47','[vc_row][vc_column][ultimate_heading main_heading=\"Our History\" main_heading_color=\"#762888\" alignment=\"left\"][/ultimate_heading][vc_row_inner css=\".vc_custom_1686713784619{margin-top: 35px !important;}\"][vc_column_inner width=\"1/3\"][vc_single_image image=\"2919\" img_size=\"full\"][/vc_column_inner][vc_column_inner width=\"2/3\"][ultimate_heading main_heading=\"Founded in 2002\" heading_tag=\"h3\" main_heading_color=\"#039447\" alignment=\"left\"]Founded in 2002 by Mr. Uditha Wanigasinghe, an agriculturist who had a mission to aid valuable livestock producers in the country to enhance the yield and profitability of production. FARMCHEMIE introduced unprecedented solutions and consistent technical services to gain our customers’ trust and became the market leader in animal health products in 2006 within just four years.[/ultimate_heading][/vc_column_inner][/vc_row_inner][vc_row_inner rtl_reverse=\"yes\" css=\".vc_custom_1686714025469{margin-top: 35px !important;}\"][vc_column_inner width=\"2/3\"][ultimate_heading main_heading=\"2006\" heading_tag=\"h3\" main_heading_color=\"#039447\" alignment=\"left\"]In 2006, the Sri Lankan poultry industry was affected with Avian Influenza which became a difficult period for the growth of FARMCHEMIE. This was the key factor in our decision to diversify into Agro Products. PLANTCHEM &amp; PLANTSEEDS were established to offer solutions in Agro specialty fertilizers, pesticides and seeds to invaluable cultivators.[/ultimate_heading][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_single_image image=\"2895\" img_size=\"full\"][/vc_column_inner][/vc_row_inner][vc_row_inner css=\".vc_custom_1686713784619{margin-top: 35px !important;}\"][vc_column_inner width=\"1/3\"][vc_single_image image=\"2896\" img_size=\"full\"][/vc_column_inner][vc_column_inner width=\"2/3\"][ultimate_heading main_heading=\"2010\" heading_tag=\"h3\" main_heading_color=\"#039447\" alignment=\"left\"]In 2010, FEED CHEMIE became the subsequent addition to ever-growing vision of Mr. Uditha Wanigasinghe and entered the Animal Feed Additives market.[/ultimate_heading][/vc_column_inner][/vc_row_inner][vc_row_inner rtl_reverse=\"yes\" css=\".vc_custom_1686714115148{margin-top: 35px !important;}\"][vc_column_inner width=\"2/3\"][ultimate_heading main_heading=\"2012\" heading_tag=\"h3\" main_heading_color=\"#039447\" alignment=\"left\"]The year 2012 is described as a turning point in our journey as FARMCHEMIE established our first production facility for the manufacturing and packing of animal health products. FARMCHEMIE became the first animal health organization in Sri Lanka to obtain ISO 9001:2015 and WHO GMP International Quality Certification. With our own formulation unit, FARMCHEMIE was able to offer customized solutions to cater the needs of the Sri Lankan Livestock Industry.[/ultimate_heading][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_single_image image=\"2897\" img_size=\"full\"][/vc_column_inner][/vc_row_inner][vc_row_inner css=\".vc_custom_1686713784619{margin-top: 35px !important;}\"][vc_column_inner width=\"1/3\"][vc_single_image image=\"2898\" img_size=\"full\"][/vc_column_inner][vc_column_inner width=\"2/3\"][ultimate_heading main_heading=\"2016\" heading_tag=\"h3\" main_heading_color=\"#039447\" alignment=\"left\"]The year 2016 was another key milestone with the entry to the International Markets. FARMCHEMIE exported our first Feed Premix consignment to India and in 2018 our export operation was distinctly established as FARMCHEMIE MANUFACTURERS, a Board of Investment (BOI) approved entity.[/ultimate_heading][/vc_column_inner][/vc_row_inner][vc_row_inner css=\".vc_custom_1686713784619{margin-top: 35px !important;}\"][vc_column_inner width=\"2/3\"][ultimate_heading main_heading=\"Fully automated manufacturing\" heading_tag=\"h3\" main_heading_color=\"#039447\" alignment=\"left\"]FARMCHEMIE MANUFACTURERS has invested in fully automated manufacturing facility from Bühler and became the first Sri Lankan owned company to obtain FAMI-QS International Quality Certification.[/ultimate_heading][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_single_image image=\"2899\" img_size=\"full\"][/vc_column_inner][/vc_row_inner][vc_row_inner css=\".vc_custom_1686713784619{margin-top: 35px !important;}\"][vc_column_inner width=\"1/3\"][vc_single_image image=\"2901\" img_size=\"full\"][/vc_column_inner][vc_column_inner width=\"2/3\"][ultimate_heading main_heading=\"Official toll manufacturer partner\" heading_tag=\"h3\" main_heading_color=\"#039447\" alignment=\"left\"]With the trust and reputation built as a reliable manufacturer of animal feed additives and supplements in the global market, several world-renowned international brands have appointed FARMCHEMIE MANUFACTURERS as the official toll manufacturer partner. FARMCHEMIE MANUFACTURERS exports a wide range of products consisting of premixes, specialty feed additives, oral liquid supplements and pet supplements to various markets in South Asia, East Asia, Middle East and Africa.\r\n\r\nFARMCHEMIE, FEED CHEMIE &amp; FARMCHEMIE MANUFACTURERS currently operate under the ownership of our holding company, DYVESTA.\r\n\r\nDYEVSTA has become the pinnacle of Animal Nutrition and Health.\r\n\r\nDYVESTA is Dynamic, through our continuous evolution, growth and progress. DYVESTA is Diverse, in terms of both our business strategy and our community. DYVESTA is Devoted to our valuable business partners through exceptional service.[/ultimate_heading][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row full_width=\"stretch_row\" equal_height=\"yes\" css=\".vc_custom_1686719341668{margin-top: 35px !important;padding-top: 65px !important;padding-bottom: 100px !important;}\"][vc_column][ultimate_dual_color dual_before_txt=\"Vision ,\" dual_high_txt=\"Mission\" heading_tag=\"h2\" dual_color_font_style=\"font-weight:bold;\" dual_color_high_font_style=\"font-weight:bold;\" dual_ba_color=\"#039447\" dual_high_color=\"#762888\"][vc_row_inner equal_height=\"yes\" gap=\"20\"][vc_column_inner width=\"1/2\"][ultimate_heading main_heading=\"Mission\" main_heading_color=\"#039447\" sub_heading_color=\"#039447\"]To be the customers’ first and best choice by ensuring outstanding satisfaction through a well-trained and dedicated team. Prompt and quality solutions to our customers’ requirements will determine the increase of return on investment for us.[/ultimate_heading][/vc_column_inner][vc_column_inner width=\"1/2\"][ultimate_heading main_heading=\"Vision\" main_heading_color=\"#762888\" sub_heading_color=\"#762888\" margin_design_tab_text=\"\"]To become a world renowned manufacturer of Animal Health products and a trusted partner among our stakeholders for our integrity as well as for providing effective solutions[/ultimate_heading][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row css=\".vc_custom_1684836308288{margin-top: 15px !important;}\"][vc_column][ultimate_heading main_heading=\"Achievements\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;\"][/ultimate_heading][/vc_column][/vc_row]','About us','','inherit','closed','closed','','2917-revision-v1','','','2023-06-14 05:16:47','2023-06-14 05:16:47','',2917,'https://farmchemie.yasithawd.com/?p=2932',0,'revision','',0),(3107,1,'2023-08-14 04:49:22','2023-08-14 04:49:22','','WhatsApp-Image-2023-05-16-at-2.43.25-AM','','inherit','open','closed','','whatsapp-image-2023-05-16-at-2-43-25-am-2','','','2023-08-14 04:49:22','2023-08-14 04:49:22','',2917,'https://farmchemie.yasithawd.com/wp-content/uploads/2023/08/WhatsApp-Image-2023-05-16-at-2.43.25-AM.jpeg',0,'attachment','image/jpeg',0),(3113,1,'2023-08-14 05:00:46','2023-08-14 05:00:46','[vc_row][vc_column][ultimate_heading main_heading=\"Our History\" main_heading_color=\"#762888\" alignment=\"left\"][/ultimate_heading][vc_row_inner css=\".vc_custom_1686713784619{margin-top: 35px !important;}\"][vc_column_inner width=\"1/3\"][vc_single_image image=\"3106\" img_size=\"full\"][/vc_column_inner][vc_column_inner width=\"2/3\"][ultimate_heading main_heading=\"Founded in 2002\" heading_tag=\"h3\" main_heading_color=\"#039447\" alignment=\"left\"]Founded in 2002 by Mr. Uditha Wanigasinghe, an agriculturist who had a mission to aid valuable livestock producers in the country to enhance the yield and profitability of production. FARMCHEMIE introduced unprecedented solutions and consistent technical services to gain our customers’ trust and became the market leader in animal health products in 2006 within just four years.[/ultimate_heading][/vc_column_inner][/vc_row_inner][vc_row_inner rtl_reverse=\"yes\" css=\".vc_custom_1686714025469{margin-top: 35px !important;}\"][vc_column_inner width=\"2/3\"][ultimate_heading main_heading=\"2006\" heading_tag=\"h3\" main_heading_color=\"#039447\" alignment=\"left\"]In 2006, the Sri Lankan poultry industry was affected with Avian Influenza which became a difficult period for the growth of FARMCHEMIE. This was the key factor in our decision to diversify into Agro Products. PLANTCHEM &amp; PLANTSEEDS were established to offer solutions in Agro specialty fertilizers, pesticides and seeds to invaluable cultivators.[/ultimate_heading][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_single_image image=\"3107\" img_size=\"full\"][/vc_column_inner][/vc_row_inner][vc_row_inner css=\".vc_custom_1686713784619{margin-top: 35px !important;}\"][vc_column_inner width=\"1/3\"][vc_single_image image=\"3108\" img_size=\"full\"][/vc_column_inner][vc_column_inner width=\"2/3\"][ultimate_heading main_heading=\"2010\" heading_tag=\"h3\" main_heading_color=\"#039447\" alignment=\"left\"]In 2010, FEED CHEMIE became the subsequent addition to ever-growing vision of Mr. Uditha Wanigasinghe and entered the Animal Feed Additives market.[/ultimate_heading][/vc_column_inner][/vc_row_inner][vc_row_inner rtl_reverse=\"yes\" css=\".vc_custom_1686714115148{margin-top: 35px !important;}\"][vc_column_inner width=\"2/3\"][ultimate_heading main_heading=\"2012\" heading_tag=\"h3\" main_heading_color=\"#039447\" alignment=\"left\"]The year 2012 is described as a turning point in our journey as FARMCHEMIE established our first production facility for the manufacturing and packing of animal health products. FARMCHEMIE became the first animal health organization in Sri Lanka to obtain ISO 9001:2015 and WHO GMP International Quality Certification. With our own formulation unit, FARMCHEMIE was able to offer customized solutions to cater the needs of the Sri Lankan Livestock Industry.[/ultimate_heading][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_single_image image=\"3111\" img_size=\"full\"][/vc_column_inner][/vc_row_inner][vc_row_inner css=\".vc_custom_1686713784619{margin-top: 35px !important;}\"][vc_column_inner width=\"1/3\"][vc_single_image image=\"3112\" img_size=\"full\"][/vc_column_inner][vc_column_inner width=\"2/3\"][ultimate_heading main_heading=\"2016\" heading_tag=\"h3\" main_heading_color=\"#039447\" alignment=\"left\"]The year 2016 was another key milestone with the entry to the International Markets. FARMCHEMIE exported our first Feed Premix consignment to India and in 2018 our export operation was distinctly established as FARMCHEMIE MANUFACTURERS, a Board of Investment (BOI) approved entity.[/ultimate_heading][/vc_column_inner][/vc_row_inner][vc_row_inner css=\".vc_custom_1686713784619{margin-top: 35px !important;}\"][vc_column_inner width=\"2/3\"][ultimate_heading main_heading=\"Fully automated manufacturing\" heading_tag=\"h3\" main_heading_color=\"#039447\" alignment=\"left\"]FARMCHEMIE MANUFACTURERS has invested in fully automated manufacturing facility from Bühler and became the first Sri Lankan owned company to obtain FAMI-QS International Quality Certification.[/ultimate_heading][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_single_image image=\"3110\" img_size=\"full\"][/vc_column_inner][/vc_row_inner][vc_row_inner css=\".vc_custom_1686713784619{margin-top: 35px !important;}\"][vc_column_inner width=\"1/3\"][vc_single_image image=\"2901\" img_size=\"full\"][/vc_column_inner][vc_column_inner width=\"2/3\"][ultimate_heading main_heading=\"Official toll manufacturer partner\" heading_tag=\"h3\" main_heading_color=\"#039447\" alignment=\"left\"]With the trust and reputation built as a reliable manufacturer of animal feed additives and supplements in the global market, several world-renowned international brands have appointed FARMCHEMIE MANUFACTURERS as the official toll manufacturer partner. FARMCHEMIE MANUFACTURERS exports a wide range of products consisting of premixes, specialty feed additives, oral liquid supplements and pet supplements to various markets in South Asia, East Asia, Middle East and Africa.\r\n\r\nFARMCHEMIE, FEED CHEMIE &amp; FARMCHEMIE MANUFACTURERS currently operate under the ownership of our holding company, DYVESTA.\r\n\r\nDYEVSTA has become the pinnacle of Animal Nutrition and Health.\r\n\r\nDYVESTA is Dynamic, through our continuous evolution, growth and progress. DYVESTA is Diverse, in terms of both our business strategy and our community. DYVESTA is Devoted to our valuable business partners through exceptional service.[/ultimate_heading][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row full_width=\"stretch_row\" equal_height=\"yes\" bg_type=\"image\" parallax_style=\"vcpb-default\" bg_image_new=\"id^2524|url^https://farmchemie.yasithawd.com/wp-content/uploads/2022/09/marketbgimg1.png|caption^null|alt^null|title^marketbgimg1|description^null\" bg_image_repeat=\"no-repeat\" enable_overlay=\"enable_overlay_value\" overlay_color=\"#000000\" overlay_pattern=\"01.png\" overlay_pattern_opacity=\"5\" css=\".vc_custom_1686720701314{margin-top: 35px !important;padding-top: 65px !important;padding-bottom: 100px !important;}\"][vc_column][vc_row_inner equal_height=\"yes\"][vc_column_inner width=\"1/2\"][ultimate_heading main_heading=\"Vision\" main_heading_color=\"#039447\" sub_heading_color=\"#039447\"]To be the customers’ first and best choice by ensuring outstanding satisfaction through a well-trained and dedicated team. Prompt and quality solutions to our customers’ requirements will determine the increase of return on investment for us.[/ultimate_heading][/vc_column_inner][vc_column_inner width=\"1/2\"][ultimate_heading main_heading=\"Mission\" main_heading_color=\"#762888\" sub_heading_color=\"#762888\"]To become a world renowned manufacturer of Animal Health products and a trusted partner among our stakeholders for our integrity as well as for providing effective solutions[/ultimate_heading][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row css=\".vc_custom_1684836308288{margin-top: 15px !important;}\"][vc_column][ultimate_heading main_heading=\"Achievements\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;\"][/ultimate_heading][/vc_column][/vc_row]','About us','','inherit','closed','closed','','2917-revision-v1','','','2023-08-14 05:00:46','2023-08-14 05:00:46','',2917,'https://farmchemie.yasithawd.com/?p=3113',0,'revision','',0),(3106,1,'2023-08-14 04:48:46','2023-08-14 04:48:46','','WhatsApp-Image-2023-05-16-at-2.43.17-AM','','inherit','open','closed','','whatsapp-image-2023-05-16-at-2-43-17-am-2','','','2023-08-14 04:48:46','2023-08-14 04:48:46','',2917,'https://farmchemie.yasithawd.com/wp-content/uploads/2023/08/WhatsApp-Image-2023-05-16-at-2.43.17-AM.jpeg',0,'attachment','image/jpeg',0),(2934,1,'2023-06-14 05:34:31','2023-06-14 05:34:31','[vc_row][vc_column][ultimate_heading main_heading=\"Our History\" main_heading_color=\"#762888\" alignment=\"left\"][/ultimate_heading][vc_row_inner css=\".vc_custom_1686713784619{margin-top: 35px !important;}\"][vc_column_inner width=\"1/3\"][vc_single_image image=\"2919\" img_size=\"full\"][/vc_column_inner][vc_column_inner width=\"2/3\"][ultimate_heading main_heading=\"Founded in 2002\" heading_tag=\"h3\" main_heading_color=\"#039447\" alignment=\"left\"]Founded in 2002 by Mr. Uditha Wanigasinghe, an agriculturist who had a mission to aid valuable livestock producers in the country to enhance the yield and profitability of production. FARMCHEMIE introduced unprecedented solutions and consistent technical services to gain our customers’ trust and became the market leader in animal health products in 2006 within just four years.[/ultimate_heading][/vc_column_inner][/vc_row_inner][vc_row_inner rtl_reverse=\"yes\" css=\".vc_custom_1686714025469{margin-top: 35px !important;}\"][vc_column_inner width=\"2/3\"][ultimate_heading main_heading=\"2006\" heading_tag=\"h3\" main_heading_color=\"#039447\" alignment=\"left\"]In 2006, the Sri Lankan poultry industry was affected with Avian Influenza which became a difficult period for the growth of FARMCHEMIE. This was the key factor in our decision to diversify into Agro Products. PLANTCHEM &amp; PLANTSEEDS were established to offer solutions in Agro specialty fertilizers, pesticides and seeds to invaluable cultivators.[/ultimate_heading][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_single_image image=\"2895\" img_size=\"full\"][/vc_column_inner][/vc_row_inner][vc_row_inner css=\".vc_custom_1686713784619{margin-top: 35px !important;}\"][vc_column_inner width=\"1/3\"][vc_single_image image=\"2896\" img_size=\"full\"][/vc_column_inner][vc_column_inner width=\"2/3\"][ultimate_heading main_heading=\"2010\" heading_tag=\"h3\" main_heading_color=\"#039447\" alignment=\"left\"]In 2010, FEED CHEMIE became the subsequent addition to ever-growing vision of Mr. Uditha Wanigasinghe and entered the Animal Feed Additives market.[/ultimate_heading][/vc_column_inner][/vc_row_inner][vc_row_inner rtl_reverse=\"yes\" css=\".vc_custom_1686714115148{margin-top: 35px !important;}\"][vc_column_inner width=\"2/3\"][ultimate_heading main_heading=\"2012\" heading_tag=\"h3\" main_heading_color=\"#039447\" alignment=\"left\"]The year 2012 is described as a turning point in our journey as FARMCHEMIE established our first production facility for the manufacturing and packing of animal health products. FARMCHEMIE became the first animal health organization in Sri Lanka to obtain ISO 9001:2015 and WHO GMP International Quality Certification. With our own formulation unit, FARMCHEMIE was able to offer customized solutions to cater the needs of the Sri Lankan Livestock Industry.[/ultimate_heading][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_single_image image=\"2897\" img_size=\"full\"][/vc_column_inner][/vc_row_inner][vc_row_inner css=\".vc_custom_1686713784619{margin-top: 35px !important;}\"][vc_column_inner width=\"1/3\"][vc_single_image image=\"2898\" img_size=\"full\"][/vc_column_inner][vc_column_inner width=\"2/3\"][ultimate_heading main_heading=\"2016\" heading_tag=\"h3\" main_heading_color=\"#039447\" alignment=\"left\"]The year 2016 was another key milestone with the entry to the International Markets. FARMCHEMIE exported our first Feed Premix consignment to India and in 2018 our export operation was distinctly established as FARMCHEMIE MANUFACTURERS, a Board of Investment (BOI) approved entity.[/ultimate_heading][/vc_column_inner][/vc_row_inner][vc_row_inner css=\".vc_custom_1686713784619{margin-top: 35px !important;}\"][vc_column_inner width=\"2/3\"][ultimate_heading main_heading=\"Fully automated manufacturing\" heading_tag=\"h3\" main_heading_color=\"#039447\" alignment=\"left\"]FARMCHEMIE MANUFACTURERS has invested in fully automated manufacturing facility from Bühler and became the first Sri Lankan owned company to obtain FAMI-QS International Quality Certification.[/ultimate_heading][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_single_image image=\"2899\" img_size=\"full\"][/vc_column_inner][/vc_row_inner][vc_row_inner css=\".vc_custom_1686713784619{margin-top: 35px !important;}\"][vc_column_inner width=\"1/3\"][vc_single_image image=\"2901\" img_size=\"full\"][/vc_column_inner][vc_column_inner width=\"2/3\"][ultimate_heading main_heading=\"Official toll manufacturer partner\" heading_tag=\"h3\" main_heading_color=\"#039447\" alignment=\"left\"]With the trust and reputation built as a reliable manufacturer of animal feed additives and supplements in the global market, several world-renowned international brands have appointed FARMCHEMIE MANUFACTURERS as the official toll manufacturer partner. FARMCHEMIE MANUFACTURERS exports a wide range of products consisting of premixes, specialty feed additives, oral liquid supplements and pet supplements to various markets in South Asia, East Asia, Middle East and Africa.\r\n\r\nFARMCHEMIE, FEED CHEMIE &amp; FARMCHEMIE MANUFACTURERS currently operate under the ownership of our holding company, DYVESTA.\r\n\r\nDYEVSTA has become the pinnacle of Animal Nutrition and Health.\r\n\r\nDYVESTA is Dynamic, through our continuous evolution, growth and progress. DYVESTA is Diverse, in terms of both our business strategy and our community. DYVESTA is Devoted to our valuable business partners through exceptional service.[/ultimate_heading][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row full_width=\"stretch_row\" equal_height=\"yes\" bg_type=\"image\" parallax_style=\"vcpb-default\" bg_image_new=\"id^2524|url^https://farmchemie.yasithawd.com/wp-content/uploads/2022/09/marketbgimg1.png|caption^null|alt^null|title^marketbgimg1|description^null\" bg_image_repeat=\"no-repeat\" enable_overlay=\"enable_overlay_value\" overlay_color=\"#000000\" overlay_pattern=\"01.png\" overlay_pattern_opacity=\"5\" css=\".vc_custom_1686720701314{margin-top: 35px !important;padding-top: 65px !important;padding-bottom: 100px !important;}\"][vc_column][vc_row_inner equal_height=\"yes\"][vc_column_inner width=\"1/2\"][ultimate_heading main_heading=\"Vision\" main_heading_color=\"#039447\" sub_heading_color=\"#039447\" margin_design_tab_text=\"\"]To be the customers’ first and best choice by ensuring outstanding satisfaction through a well-trained and dedicated team. Prompt and quality solutions to our customers’ requirements will determine the increase of return on investment for us.[/ultimate_heading][/vc_column_inner][vc_column_inner width=\"1/2\"][ultimate_heading main_heading=\"Mission\" main_heading_color=\"#762888\" sub_heading_color=\"#762888\" margin_design_tab_text=\"\"]To become a world renowned manufacturer of Animal Health products and a trusted partner among our stakeholders for our integrity as well as for providing effective solutions[/ultimate_heading][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row css=\".vc_custom_1684836308288{margin-top: 15px !important;}\"][vc_column][ultimate_heading main_heading=\"Achievements\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;\"][/ultimate_heading][/vc_column][/vc_row]','About us','','inherit','closed','closed','','2917-revision-v1','','','2023-06-14 05:34:31','2023-06-14 05:34:31','',2917,'https://farmchemie.yasithawd.com/?p=2934',0,'revision','',0),(3218,1,'2023-08-16 12:26:39','2023-08-16 12:26:39','[vc_row][vc_column][ultimate_heading main_heading=\"Our History\" main_heading_color=\"#762888\" alignment=\"left\"][/ultimate_heading][vc_row_inner css=\".vc_custom_1686713784619{margin-top: 35px !important;}\"][vc_column_inner width=\"1/4\"][vc_single_image image=\"3106\" img_size=\"full\"][/vc_column_inner][vc_column_inner width=\"3/4\"][ultimate_heading main_heading=\"Founded in 2002\" heading_tag=\"h3\" main_heading_color=\"#039447\" alignment=\"left\" sub_heading_font_size=\"desktop:18px;\"]Founded in 2002 by Mr. Uditha Wanigasinghe, an agriculturist who had a mission to aid valuable livestock producers in the country to enhance the yield and profitability of production. FARMCHEMIE introduced unprecedented solutions and consistent technical services to gain our customers’ trust and became the market leader in animal health products in 2006 within just four years.[/ultimate_heading][/vc_column_inner][/vc_row_inner][vc_row_inner rtl_reverse=\"yes\" css=\".vc_custom_1686714025469{margin-top: 35px !important;}\"][vc_column_inner width=\"3/4\"][ultimate_heading main_heading=\"2006\" heading_tag=\"h3\" main_heading_color=\"#039447\" alignment=\"left\"]In 2006, the Sri Lankan poultry industry was affected with Avian Influenza which became a difficult period for the growth of FARMCHEMIE. This was the key factor in our decision to diversify into Agro Products. PLANTCHEM &amp; PLANTSEEDS were established to offer solutions in Agro specialty fertilizers, pesticides and seeds to invaluable cultivators.[/ultimate_heading][/vc_column_inner][vc_column_inner width=\"1/4\"][vc_single_image image=\"3107\" img_size=\"full\"][/vc_column_inner][/vc_row_inner][vc_row_inner css=\".vc_custom_1686713784619{margin-top: 35px !important;}\"][vc_column_inner width=\"1/4\"][vc_single_image image=\"3108\" img_size=\"full\"][/vc_column_inner][vc_column_inner width=\"3/4\"][ultimate_heading main_heading=\"2010\" heading_tag=\"h3\" main_heading_color=\"#039447\" alignment=\"left\"]In 2010, FEED CHEMIE became the subsequent addition to ever-growing vision of Mr. Uditha Wanigasinghe and entered the Animal Feed Additives market.[/ultimate_heading][/vc_column_inner][/vc_row_inner][vc_row_inner rtl_reverse=\"yes\" css=\".vc_custom_1686714115148{margin-top: 35px !important;}\"][vc_column_inner width=\"3/4\"][ultimate_heading main_heading=\"2012\" heading_tag=\"h3\" main_heading_color=\"#039447\" alignment=\"left\"]The year 2012 is described as a turning point in our journey as FARMCHEMIE established our first production facility for the manufacturing and packing of animal health products. FARMCHEMIE became the first animal health organization in Sri Lanka to obtain ISO 9001:2015 and WHO GMP International Quality Certification. With our own formulation unit, FARMCHEMIE was able to offer customized solutions to cater the needs of the Sri Lankan Livestock Industry.[/ultimate_heading][/vc_column_inner][vc_column_inner width=\"1/4\"][vc_single_image image=\"3111\" img_size=\"full\"][/vc_column_inner][/vc_row_inner][vc_row_inner css=\".vc_custom_1686713784619{margin-top: 35px !important;}\"][vc_column_inner width=\"1/4\"][vc_single_image image=\"3112\" img_size=\"full\"][/vc_column_inner][vc_column_inner width=\"3/4\"][ultimate_heading main_heading=\"2016\" heading_tag=\"h3\" main_heading_color=\"#039447\" alignment=\"left\"]The year 2016 was another key milestone with the entry to the International Markets. FARMCHEMIE exported our first Feed Premix consignment to India and in 2018 our export operation was distinctly established as FARMCHEMIE MANUFACTURERS, a Board of Investment (BOI) approved entity.[/ultimate_heading][/vc_column_inner][/vc_row_inner][vc_row_inner css=\".vc_custom_1686713784619{margin-top: 35px !important;}\"][vc_column_inner width=\"3/4\"][ultimate_heading main_heading=\"Fully automated manufacturing\" heading_tag=\"h3\" main_heading_color=\"#039447\" alignment=\"left\"]FARMCHEMIE MANUFACTURERS has invested in fully automated manufacturing facility from Bühler and became the first Sri Lankan owned company to obtain FAMI-QS International Quality Certification.[/ultimate_heading][/vc_column_inner][vc_column_inner width=\"1/4\"][vc_single_image image=\"3110\" img_size=\"full\"][/vc_column_inner][/vc_row_inner][vc_row_inner css=\".vc_custom_1686713784619{margin-top: 35px !important;}\"][vc_column_inner width=\"1/4\"][vc_single_image image=\"3116\" img_size=\"full\"][/vc_column_inner][vc_column_inner width=\"3/4\"][ultimate_heading main_heading=\"Official toll manufacturer partner\" heading_tag=\"h3\" main_heading_color=\"#039447\" alignment=\"left\"]With the trust and reputation built as a reliable manufacturer of animal feed additives and supplements in the global market, several world-renowned international brands have appointed FARMCHEMIE MANUFACTURERS as the official toll manufacturer partner. FARMCHEMIE MANUFACTURERS exports a wide range of products consisting of premixes, specialty feed additives, oral liquid supplements and pet supplements to various markets in South Asia, East Asia, Middle East and Africa.\r\n\r\nFARMCHEMIE, FEED CHEMIE &amp; FARMCHEMIE MANUFACTURERS currently operate under the ownership of our holding company, DYVESTA.\r\n\r\nDYEVSTA has become the pinnacle of Animal Nutrition and Health.\r\n\r\nDYVESTA is Dynamic, through our continuous evolution, growth and progress. DYVESTA is Diverse, in terms of both our business strategy and our community. DYVESTA is Devoted to our valuable business partners through exceptional service.[/ultimate_heading][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row full_width=\"stretch_row\" equal_height=\"yes\" bg_type=\"image\" parallax_style=\"vcpb-default\" bg_image_new=\"id^2524|url^https://farmchemie.yasithawd.com/wp-content/uploads/2022/09/marketbgimg1.png|caption^null|alt^null|title^marketbgimg1|description^null\" bg_image_repeat=\"no-repeat\" enable_overlay=\"enable_overlay_value\" overlay_color=\"#000000\" overlay_pattern=\"01.png\" overlay_pattern_opacity=\"5\" css=\".vc_custom_1686720701314{margin-top: 35px !important;padding-top: 65px !important;padding-bottom: 100px !important;}\"][vc_column][vc_row_inner equal_height=\"yes\"][vc_column_inner width=\"1/2\"][ultimate_heading main_heading=\"Vision\" main_heading_color=\"#039447\" sub_heading_color=\"#039447\"]To be the customers’ first and best choice by ensuring outstanding satisfaction through a well-trained and dedicated team. Prompt and quality solutions to our customers’ requirements will determine the increase of return on investment for us.[/ultimate_heading][/vc_column_inner][vc_column_inner width=\"1/2\"][ultimate_heading main_heading=\"Mission\" main_heading_color=\"#762888\" sub_heading_color=\"#762888\"]To become a world renowned manufacturer of Animal Health products and a trusted partner among our stakeholders for our integrity as well as for providing effective solutions[/ultimate_heading][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row css=\".vc_custom_1684836308288{margin-top: 15px !important;}\"][vc_column][ultimate_heading main_heading=\"Achievements\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;\"][/ultimate_heading][vc_row_inner gap=\"20\"][vc_column_inner width=\"1/2\" css=\".vc_custom_1691995519863{background-color: #f4ab20 !important;border: 1px solid #f4ab20 !important;border-radius: 35px !important;}\"][bsf-info-box icon_type=\"custom\" icon_img=\"id^3117|url^https://farmchemie.yasithawd.com/wp-content/uploads/2023/08/Pink_-H.png|caption^null|alt^null|title^Pink_-H|description^null\" img_width=\"60\" icon_style=\"advanced\" icon_border_style=\"solid\" icon_color_border=\"#ffffff\" icon_border_size=\"1\" icon_border_radius=\"500\" icon_border_spacing=\"1\" title=\"First Free Sale Certificate obtained from Veterinary Drug Control Authority (VDCA) for Veterinary Pharmaceuticals\" title_font_style=\"font-weight:bold;\" title_font_size=\"desktop:20px;\"][/bsf-info-box][/vc_column_inner][vc_column_inner width=\"1/2\" css=\".vc_custom_1691995661095{background-color: #722f8b !important;border: 1px solid #722f8b !important;border-radius: 35px !important;}\"][bsf-info-box icon_type=\"custom\" icon_img=\"id^3117|url^https://farmchemie.yasithawd.com/wp-content/uploads/2023/08/Pink_-H.png|caption^null|alt^null|title^Pink_-H|description^null\" img_width=\"60\" icon_style=\"advanced\" icon_border_style=\"solid\" icon_color_border=\"#ffffff\" icon_border_size=\"1\" icon_border_radius=\"500\" icon_border_spacing=\"1\" title=\"First ISO 9001: 2015 ,WHO-GMP Quality Management systems certified Animal Health company in Sri Lanka since August, 2012\" title_font_style=\"font-weight:bold;\" title_font_color=\"#ffffff\" title_font_size=\"desktop:20px;\"][/bsf-info-box][/vc_column_inner][/vc_row_inner][vc_row_inner gap=\"20\"][vc_column_inner width=\"1/2\" css=\".vc_custom_1691995661095{background-color: #722f8b !important;border: 1px solid #722f8b !important;border-radius: 35px !important;}\"][bsf-info-box icon_type=\"custom\" icon_img=\"id^3117|url^https://farmchemie.yasithawd.com/wp-content/uploads/2023/08/Pink_-H.png|caption^null|alt^null|title^Pink_-H|description^null\" img_width=\"60\" icon_style=\"advanced\" icon_border_style=\"solid\" icon_color_border=\"#ffffff\" icon_border_size=\"1\" icon_border_radius=\"500\" icon_border_spacing=\"1\" title=\"First FAMI-QS certified company in sri lanka\" title_font_style=\"font-weight:bold;\" title_font_color=\"#ffffff\" title_font_size=\"desktop:20px;\"][/bsf-info-box][/vc_column_inner][vc_column_inner width=\"1/2\" css=\".vc_custom_1691995519863{background-color: #f4ab20 !important;border: 1px solid #f4ab20 !important;border-radius: 35px !important;}\"][bsf-info-box icon_type=\"custom\" icon_img=\"id^3117|url^https://farmchemie.yasithawd.com/wp-content/uploads/2023/08/Pink_-H.png|caption^null|alt^null|title^Pink_-H|description^null\" img_width=\"60\" icon_style=\"advanced\" icon_border_style=\"solid\" icon_color_border=\"#ffffff\" icon_border_size=\"1\" icon_border_radius=\"500\" icon_border_spacing=\"1\" title=\"First Certificate of Ethical Trading certified in Livestock industry\" title_font_style=\"font-weight:bold;\" title_font_size=\"desktop:20px;\"][/bsf-info-box][/vc_column_inner][/vc_row_inner][vc_row_inner gap=\"20\"][vc_column_inner width=\"1/4\" css=\".vc_custom_1691996718116{border-radius: 35px !important;}\"][/vc_column_inner][vc_column_inner width=\"2/4\" css=\".vc_custom_1691995519863{background-color: #f4ab20 !important;border: 1px solid #f4ab20 !important;border-radius: 35px !important;}\"][bsf-info-box icon_type=\"custom\" icon_img=\"id^3117|url^https://farmchemie.yasithawd.com/wp-content/uploads/2023/08/Pink_-H.png|caption^null|alt^null|title^Pink_-H|description^null\" img_width=\"60\" icon_style=\"advanced\" icon_border_style=\"solid\" icon_color_border=\"#ffffff\" icon_border_size=\"1\" icon_border_radius=\"500\" icon_border_spacing=\"1\" title=\"First Silver awarded company at National Exports Awards in Livestock industry\" title_font_style=\"font-weight:bold;\" title_font_size=\"desktop:20px;\"][/bsf-info-box][/vc_column_inner][vc_column_inner width=\"1/4\"][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner width=\"1/6\"][/vc_column_inner][vc_column_inner width=\"2/3\"][vc_single_image image=\"3126\" img_size=\"full\" alignment=\"center\"][vc_single_image image=\"3125\" img_size=\"full\" alignment=\"center\"][/vc_column_inner][vc_column_inner width=\"1/6\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row][vc_column][ultimate_heading main_heading=\"Board Of Directors\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;margin-bottom:35px;\"][/ultimate_heading][ultimate_carousel slides_on_desk=\"1\" slides_on_tabs=\"1\" slides_on_mob=\"1\" arrow_style=\"square-bg\" arrow_bg_color=\"#039447\" arrow_color=\"#ffffff\" next_icon=\"ultsl-arrow-right6\" prev_icon=\"ultsl-arrow-left6\" dots_color=\"#039447\" item_animation=\"fadeIn\"][vc_row_inner][vc_column_inner width=\"1/2\"][vc_single_image image=\"3170\" img_size=\"large\" alignment=\"center\" style=\"vc_box_outline_circle_2\" border_color=\"black\" image_hovers=\"false\"][/vc_column_inner][vc_column_inner width=\"1/2\"][ultimate_heading main_heading=\"Quisque sed nibh tristique\" heading_tag=\"h3\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;\"]Duis lorem risus, aliquet a auctor a, venenatis in dui. Praesent et eros et risus dapibus placerat hendrerit cursus magna.[/ultimate_heading][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner width=\"1/2\"][vc_single_image image=\"3171\" img_size=\"large\" alignment=\"center\" style=\"vc_box_outline_circle_2\" border_color=\"black\" image_hovers=\"false\"][/vc_column_inner][vc_column_inner width=\"1/2\"][ultimate_heading main_heading=\"Quisque sed nibh tristique\" heading_tag=\"h3\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;\"]Duis lorem risus, aliquet a auctor a, venenatis in dui. Praesent et eros et risus dapibus placerat hendrerit cursus magna.[/ultimate_heading][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner width=\"1/2\"][vc_single_image image=\"3173\" img_size=\"large\" alignment=\"center\" style=\"vc_box_outline_circle_2\" border_color=\"black\" image_hovers=\"false\"][/vc_column_inner][vc_column_inner width=\"1/2\"][ultimate_heading main_heading=\"Quisque sed nibh tristique\" heading_tag=\"h3\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;\"]Duis lorem risus, aliquet a auctor a, venenatis in dui. Praesent et eros et risus dapibus placerat hendrerit cursus magna.[/ultimate_heading][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner width=\"1/2\"][vc_single_image image=\"3172\" img_size=\"large\" alignment=\"center\" style=\"vc_box_outline_circle_2\" border_color=\"black\" image_hovers=\"false\"][/vc_column_inner][vc_column_inner width=\"1/2\"][ultimate_heading main_heading=\"Quisque sed nibh tristique\" heading_tag=\"h3\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;\"]Duis lorem risus, aliquet a auctor a, venenatis in dui. Praesent et eros et risus dapibus placerat hendrerit cursus magna.[/ultimate_heading][/vc_column_inner][/vc_row_inner][/ultimate_carousel][/vc_column][/vc_row]','About Us','','inherit','closed','closed','','2633-revision-v1','','','2023-08-16 12:26:39','2023-08-16 12:26:39','',2633,'https://farmchemie.yasithawd.com/?p=3218',0,'revision','',0),(3219,1,'2023-08-16 12:31:27','2023-08-16 12:31:27','','Quisque sed nibh tristique','','publish','open','closed','','quisque-sed-nibh-tristique','','','2023-08-16 12:31:27','2023-08-16 12:31:27','',0,'https://farmchemie.yasithawd.com/?post_type=dt_team&#038;p=3219',0,'dt_team','',0),(3221,1,'2023-08-16 12:46:22','2023-08-16 12:46:22','[vc_row][vc_column][ultimate_heading main_heading=\"Our History\" main_heading_color=\"#762888\" alignment=\"left\"][/ultimate_heading][vc_row_inner css=\".vc_custom_1686713784619{margin-top: 35px !important;}\"][vc_column_inner width=\"1/4\"][vc_single_image image=\"3106\" img_size=\"full\"][/vc_column_inner][vc_column_inner width=\"3/4\"][ultimate_heading main_heading=\"Founded in 2002\" heading_tag=\"h3\" main_heading_color=\"#039447\" alignment=\"left\" sub_heading_font_size=\"desktop:18px;\"]Founded in 2002 by Mr. Uditha Wanigasinghe, an agriculturist who had a mission to aid valuable livestock producers in the country to enhance the yield and profitability of production. FARMCHEMIE introduced unprecedented solutions and consistent technical services to gain our customers’ trust and became the market leader in animal health products in 2006 within just four years.[/ultimate_heading][/vc_column_inner][/vc_row_inner][vc_row_inner rtl_reverse=\"yes\" css=\".vc_custom_1686714025469{margin-top: 35px !important;}\"][vc_column_inner width=\"3/4\"][ultimate_heading main_heading=\"2006\" heading_tag=\"h3\" main_heading_color=\"#039447\" alignment=\"left\"]In 2006, the Sri Lankan poultry industry was affected with Avian Influenza which became a difficult period for the growth of FARMCHEMIE. This was the key factor in our decision to diversify into Agro Products. PLANTCHEM &amp; PLANTSEEDS were established to offer solutions in Agro specialty fertilizers, pesticides and seeds to invaluable cultivators.[/ultimate_heading][/vc_column_inner][vc_column_inner width=\"1/4\"][vc_single_image image=\"3107\" img_size=\"full\"][/vc_column_inner][/vc_row_inner][vc_row_inner css=\".vc_custom_1686713784619{margin-top: 35px !important;}\"][vc_column_inner width=\"1/4\"][vc_single_image image=\"3108\" img_size=\"full\"][/vc_column_inner][vc_column_inner width=\"3/4\"][ultimate_heading main_heading=\"2010\" heading_tag=\"h3\" main_heading_color=\"#039447\" alignment=\"left\"]In 2010, FEED CHEMIE became the subsequent addition to ever-growing vision of Mr. Uditha Wanigasinghe and entered the Animal Feed Additives market.[/ultimate_heading][/vc_column_inner][/vc_row_inner][vc_row_inner rtl_reverse=\"yes\" css=\".vc_custom_1686714115148{margin-top: 35px !important;}\"][vc_column_inner width=\"3/4\"][ultimate_heading main_heading=\"2012\" heading_tag=\"h3\" main_heading_color=\"#039447\" alignment=\"left\"]The year 2012 is described as a turning point in our journey as FARMCHEMIE established our first production facility for the manufacturing and packing of animal health products. FARMCHEMIE became the first animal health organization in Sri Lanka to obtain ISO 9001:2015 and WHO GMP International Quality Certification. With our own formulation unit, FARMCHEMIE was able to offer customized solutions to cater the needs of the Sri Lankan Livestock Industry.[/ultimate_heading][/vc_column_inner][vc_column_inner width=\"1/4\"][vc_single_image image=\"3111\" img_size=\"full\"][/vc_column_inner][/vc_row_inner][vc_row_inner css=\".vc_custom_1686713784619{margin-top: 35px !important;}\"][vc_column_inner width=\"1/4\"][vc_single_image image=\"3112\" img_size=\"full\"][/vc_column_inner][vc_column_inner width=\"3/4\"][ultimate_heading main_heading=\"2016\" heading_tag=\"h3\" main_heading_color=\"#039447\" alignment=\"left\"]The year 2016 was another key milestone with the entry to the International Markets. FARMCHEMIE exported our first Feed Premix consignment to India and in 2018 our export operation was distinctly established as FARMCHEMIE MANUFACTURERS, a Board of Investment (BOI) approved entity.[/ultimate_heading][/vc_column_inner][/vc_row_inner][vc_row_inner css=\".vc_custom_1686713784619{margin-top: 35px !important;}\"][vc_column_inner width=\"3/4\"][ultimate_heading main_heading=\"Fully automated manufacturing\" heading_tag=\"h3\" main_heading_color=\"#039447\" alignment=\"left\"]FARMCHEMIE MANUFACTURERS has invested in fully automated manufacturing facility from Bühler and became the first Sri Lankan owned company to obtain FAMI-QS International Quality Certification.[/ultimate_heading][/vc_column_inner][vc_column_inner width=\"1/4\"][vc_single_image image=\"3110\" img_size=\"full\"][/vc_column_inner][/vc_row_inner][vc_row_inner css=\".vc_custom_1686713784619{margin-top: 35px !important;}\"][vc_column_inner width=\"1/4\"][vc_single_image image=\"3116\" img_size=\"full\"][/vc_column_inner][vc_column_inner width=\"3/4\"][ultimate_heading main_heading=\"Official toll manufacturer partner\" heading_tag=\"h3\" main_heading_color=\"#039447\" alignment=\"left\"]With the trust and reputation built as a reliable manufacturer of animal feed additives and supplements in the global market, several world-renowned international brands have appointed FARMCHEMIE MANUFACTURERS as the official toll manufacturer partner. FARMCHEMIE MANUFACTURERS exports a wide range of products consisting of premixes, specialty feed additives, oral liquid supplements and pet supplements to various markets in South Asia, East Asia, Middle East and Africa.\r\n\r\nFARMCHEMIE, FEED CHEMIE &amp; FARMCHEMIE MANUFACTURERS currently operate under the ownership of our holding company, DYVESTA.\r\n\r\nDYEVSTA has become the pinnacle of Animal Nutrition and Health.\r\n\r\nDYVESTA is Dynamic, through our continuous evolution, growth and progress. DYVESTA is Diverse, in terms of both our business strategy and our community. DYVESTA is Devoted to our valuable business partners through exceptional service.[/ultimate_heading][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row full_width=\"stretch_row\" equal_height=\"yes\" bg_type=\"image\" parallax_style=\"vcpb-default\" bg_image_new=\"id^2524|url^https://farmchemie.yasithawd.com/wp-content/uploads/2022/09/marketbgimg1.png|caption^null|alt^null|title^marketbgimg1|description^null\" bg_image_repeat=\"no-repeat\" enable_overlay=\"enable_overlay_value\" overlay_color=\"#000000\" overlay_pattern=\"01.png\" overlay_pattern_opacity=\"5\" css=\".vc_custom_1686720701314{margin-top: 35px !important;padding-top: 65px !important;padding-bottom: 100px !important;}\"][vc_column][vc_row_inner equal_height=\"yes\"][vc_column_inner width=\"1/2\"][ultimate_heading main_heading=\"Vision\" main_heading_color=\"#039447\" sub_heading_color=\"#039447\"]To be the customers’ first and best choice by ensuring outstanding satisfaction through a well-trained and dedicated team. Prompt and quality solutions to our customers’ requirements will determine the increase of return on investment for us.[/ultimate_heading][/vc_column_inner][vc_column_inner width=\"1/2\"][ultimate_heading main_heading=\"Mission\" main_heading_color=\"#762888\" sub_heading_color=\"#762888\"]To become a world renowned manufacturer of Animal Health products and a trusted partner among our stakeholders for our integrity as well as for providing effective solutions[/ultimate_heading][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row css=\".vc_custom_1684836308288{margin-top: 15px !important;}\"][vc_column][ultimate_heading main_heading=\"Achievements\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;\"][/ultimate_heading][vc_row_inner gap=\"20\"][vc_column_inner width=\"1/2\" css=\".vc_custom_1691995519863{background-color: #f4ab20 !important;border: 1px solid #f4ab20 !important;border-radius: 35px !important;}\"][bsf-info-box icon_type=\"custom\" icon_img=\"id^3117|url^https://farmchemie.yasithawd.com/wp-content/uploads/2023/08/Pink_-H.png|caption^null|alt^null|title^Pink_-H|description^null\" img_width=\"60\" icon_style=\"advanced\" icon_border_style=\"solid\" icon_color_border=\"#ffffff\" icon_border_size=\"1\" icon_border_radius=\"500\" icon_border_spacing=\"1\" title=\"First Free Sale Certificate obtained from Veterinary Drug Control Authority (VDCA) for Veterinary Pharmaceuticals\" title_font_style=\"font-weight:bold;\" title_font_size=\"desktop:20px;\"][/bsf-info-box][/vc_column_inner][vc_column_inner width=\"1/2\" css=\".vc_custom_1691995661095{background-color: #722f8b !important;border: 1px solid #722f8b !important;border-radius: 35px !important;}\"][bsf-info-box icon_type=\"custom\" icon_img=\"id^3117|url^https://farmchemie.yasithawd.com/wp-content/uploads/2023/08/Pink_-H.png|caption^null|alt^null|title^Pink_-H|description^null\" img_width=\"60\" icon_style=\"advanced\" icon_border_style=\"solid\" icon_color_border=\"#ffffff\" icon_border_size=\"1\" icon_border_radius=\"500\" icon_border_spacing=\"1\" title=\"First ISO 9001: 2015 ,WHO-GMP Quality Management systems certified Animal Health company in Sri Lanka since August, 2012\" title_font_style=\"font-weight:bold;\" title_font_color=\"#ffffff\" title_font_size=\"desktop:20px;\"][/bsf-info-box][/vc_column_inner][/vc_row_inner][vc_row_inner gap=\"20\"][vc_column_inner width=\"1/2\" css=\".vc_custom_1691995661095{background-color: #722f8b !important;border: 1px solid #722f8b !important;border-radius: 35px !important;}\"][bsf-info-box icon_type=\"custom\" icon_img=\"id^3117|url^https://farmchemie.yasithawd.com/wp-content/uploads/2023/08/Pink_-H.png|caption^null|alt^null|title^Pink_-H|description^null\" img_width=\"60\" icon_style=\"advanced\" icon_border_style=\"solid\" icon_color_border=\"#ffffff\" icon_border_size=\"1\" icon_border_radius=\"500\" icon_border_spacing=\"1\" title=\"First FAMI-QS certified company in sri lanka\" title_font_style=\"font-weight:bold;\" title_font_color=\"#ffffff\" title_font_size=\"desktop:20px;\"][/bsf-info-box][/vc_column_inner][vc_column_inner width=\"1/2\" css=\".vc_custom_1691995519863{background-color: #f4ab20 !important;border: 1px solid #f4ab20 !important;border-radius: 35px !important;}\"][bsf-info-box icon_type=\"custom\" icon_img=\"id^3117|url^https://farmchemie.yasithawd.com/wp-content/uploads/2023/08/Pink_-H.png|caption^null|alt^null|title^Pink_-H|description^null\" img_width=\"60\" icon_style=\"advanced\" icon_border_style=\"solid\" icon_color_border=\"#ffffff\" icon_border_size=\"1\" icon_border_radius=\"500\" icon_border_spacing=\"1\" title=\"First Certificate of Ethical Trading certified in Livestock industry\" title_font_style=\"font-weight:bold;\" title_font_size=\"desktop:20px;\"][/bsf-info-box][/vc_column_inner][/vc_row_inner][vc_row_inner gap=\"20\"][vc_column_inner width=\"1/4\" css=\".vc_custom_1691996718116{border-radius: 35px !important;}\"][/vc_column_inner][vc_column_inner width=\"2/4\" css=\".vc_custom_1691995519863{background-color: #f4ab20 !important;border: 1px solid #f4ab20 !important;border-radius: 35px !important;}\"][bsf-info-box icon_type=\"custom\" icon_img=\"id^3117|url^https://farmchemie.yasithawd.com/wp-content/uploads/2023/08/Pink_-H.png|caption^null|alt^null|title^Pink_-H|description^null\" img_width=\"60\" icon_style=\"advanced\" icon_border_style=\"solid\" icon_color_border=\"#ffffff\" icon_border_size=\"1\" icon_border_radius=\"500\" icon_border_spacing=\"1\" title=\"First Silver awarded company at National Exports Awards in Livestock industry\" title_font_style=\"font-weight:bold;\" title_font_size=\"desktop:20px;\"][/bsf-info-box][/vc_column_inner][vc_column_inner width=\"1/4\"][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner width=\"1/6\"][/vc_column_inner][vc_column_inner width=\"2/3\"][vc_single_image image=\"3126\" img_size=\"full\" alignment=\"center\"][vc_single_image image=\"3125\" img_size=\"full\" alignment=\"center\"][/vc_column_inner][vc_column_inner width=\"1/6\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row][vc_column][ultimate_heading main_heading=\"Board Of Directors\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;margin-bottom:35px;\"][/ultimate_heading][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_row_inner][vc_column_inner width=\"1/2\"][vc_single_image image=\"3172\" img_size=\"large\" alignment=\"center\" style=\"vc_box_outline_circle_2\" border_color=\"black\" image_hovers=\"false\"][/vc_column_inner][vc_column_inner width=\"1/2\"][ultimate_heading main_heading=\"Quisque sed nibh tristique\" heading_tag=\"h3\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;\"]Duis lorem risus, aliquet a auctor a, venenatis in dui. Praesent et eros et risus dapibus placerat hendrerit cursus magna.[/ultimate_heading][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/2\"][vc_row_inner][vc_column_inner width=\"1/2\"][vc_single_image image=\"3173\" img_size=\"large\" alignment=\"center\" style=\"vc_box_outline_circle_2\" border_color=\"black\" image_hovers=\"false\"][/vc_column_inner][vc_column_inner width=\"1/2\"][ultimate_heading main_heading=\"Quisque sed nibh tristique\" heading_tag=\"h3\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;\"]Duis lorem risus, aliquet a auctor a, venenatis in dui. Praesent et eros et risus dapibus placerat hendrerit cursus magna.[/ultimate_heading][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_row_inner][vc_column_inner width=\"1/2\"][vc_single_image image=\"3171\" img_size=\"large\" alignment=\"center\" style=\"vc_box_outline_circle_2\" border_color=\"black\" image_hovers=\"false\"][/vc_column_inner][vc_column_inner width=\"1/2\"][ultimate_heading main_heading=\"Quisque sed nibh tristique\" heading_tag=\"h3\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;\"]Duis lorem risus, aliquet a auctor a, venenatis in dui. Praesent et eros et risus dapibus placerat hendrerit cursus magna.[/ultimate_heading][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/2\"][vc_row_inner][vc_column_inner width=\"1/2\"][vc_single_image image=\"3170\" img_size=\"large\" alignment=\"center\" style=\"vc_box_outline_circle_2\" border_color=\"black\" image_hovers=\"false\"][/vc_column_inner][vc_column_inner width=\"1/2\"][ultimate_heading main_heading=\"Quisque sed nibh tristique\" heading_tag=\"h3\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;\"]Duis lorem risus, aliquet a auctor a, venenatis in dui. Praesent et eros et risus dapibus placerat hendrerit cursus magna.[/ultimate_heading][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row]','About Us','','inherit','closed','closed','','2633-revision-v1','','','2023-08-16 12:46:22','2023-08-16 12:46:22','',2633,'https://farmchemie.yasithawd.com/?p=3221',0,'revision','',0),(3220,1,'2023-08-16 12:32:05','2023-08-16 12:32:05','[vc_row][vc_column][ultimate_heading main_heading=\"Our History\" main_heading_color=\"#762888\" alignment=\"left\"][/ultimate_heading][vc_row_inner css=\".vc_custom_1686713784619{margin-top: 35px !important;}\"][vc_column_inner width=\"1/4\"][vc_single_image image=\"3106\" img_size=\"full\"][/vc_column_inner][vc_column_inner width=\"3/4\"][ultimate_heading main_heading=\"Founded in 2002\" heading_tag=\"h3\" main_heading_color=\"#039447\" alignment=\"left\" sub_heading_font_size=\"desktop:18px;\"]Founded in 2002 by Mr. Uditha Wanigasinghe, an agriculturist who had a mission to aid valuable livestock producers in the country to enhance the yield and profitability of production. FARMCHEMIE introduced unprecedented solutions and consistent technical services to gain our customers’ trust and became the market leader in animal health products in 2006 within just four years.[/ultimate_heading][/vc_column_inner][/vc_row_inner][vc_row_inner rtl_reverse=\"yes\" css=\".vc_custom_1686714025469{margin-top: 35px !important;}\"][vc_column_inner width=\"3/4\"][ultimate_heading main_heading=\"2006\" heading_tag=\"h3\" main_heading_color=\"#039447\" alignment=\"left\"]In 2006, the Sri Lankan poultry industry was affected with Avian Influenza which became a difficult period for the growth of FARMCHEMIE. This was the key factor in our decision to diversify into Agro Products. PLANTCHEM &amp; PLANTSEEDS were established to offer solutions in Agro specialty fertilizers, pesticides and seeds to invaluable cultivators.[/ultimate_heading][/vc_column_inner][vc_column_inner width=\"1/4\"][vc_single_image image=\"3107\" img_size=\"full\"][/vc_column_inner][/vc_row_inner][vc_row_inner css=\".vc_custom_1686713784619{margin-top: 35px !important;}\"][vc_column_inner width=\"1/4\"][vc_single_image image=\"3108\" img_size=\"full\"][/vc_column_inner][vc_column_inner width=\"3/4\"][ultimate_heading main_heading=\"2010\" heading_tag=\"h3\" main_heading_color=\"#039447\" alignment=\"left\"]In 2010, FEED CHEMIE became the subsequent addition to ever-growing vision of Mr. Uditha Wanigasinghe and entered the Animal Feed Additives market.[/ultimate_heading][/vc_column_inner][/vc_row_inner][vc_row_inner rtl_reverse=\"yes\" css=\".vc_custom_1686714115148{margin-top: 35px !important;}\"][vc_column_inner width=\"3/4\"][ultimate_heading main_heading=\"2012\" heading_tag=\"h3\" main_heading_color=\"#039447\" alignment=\"left\"]The year 2012 is described as a turning point in our journey as FARMCHEMIE established our first production facility for the manufacturing and packing of animal health products. FARMCHEMIE became the first animal health organization in Sri Lanka to obtain ISO 9001:2015 and WHO GMP International Quality Certification. With our own formulation unit, FARMCHEMIE was able to offer customized solutions to cater the needs of the Sri Lankan Livestock Industry.[/ultimate_heading][/vc_column_inner][vc_column_inner width=\"1/4\"][vc_single_image image=\"3111\" img_size=\"full\"][/vc_column_inner][/vc_row_inner][vc_row_inner css=\".vc_custom_1686713784619{margin-top: 35px !important;}\"][vc_column_inner width=\"1/4\"][vc_single_image image=\"3112\" img_size=\"full\"][/vc_column_inner][vc_column_inner width=\"3/4\"][ultimate_heading main_heading=\"2016\" heading_tag=\"h3\" main_heading_color=\"#039447\" alignment=\"left\"]The year 2016 was another key milestone with the entry to the International Markets. FARMCHEMIE exported our first Feed Premix consignment to India and in 2018 our export operation was distinctly established as FARMCHEMIE MANUFACTURERS, a Board of Investment (BOI) approved entity.[/ultimate_heading][/vc_column_inner][/vc_row_inner][vc_row_inner css=\".vc_custom_1686713784619{margin-top: 35px !important;}\"][vc_column_inner width=\"3/4\"][ultimate_heading main_heading=\"Fully automated manufacturing\" heading_tag=\"h3\" main_heading_color=\"#039447\" alignment=\"left\"]FARMCHEMIE MANUFACTURERS has invested in fully automated manufacturing facility from Bühler and became the first Sri Lankan owned company to obtain FAMI-QS International Quality Certification.[/ultimate_heading][/vc_column_inner][vc_column_inner width=\"1/4\"][vc_single_image image=\"3110\" img_size=\"full\"][/vc_column_inner][/vc_row_inner][vc_row_inner css=\".vc_custom_1686713784619{margin-top: 35px !important;}\"][vc_column_inner width=\"1/4\"][vc_single_image image=\"3116\" img_size=\"full\"][/vc_column_inner][vc_column_inner width=\"3/4\"][ultimate_heading main_heading=\"Official toll manufacturer partner\" heading_tag=\"h3\" main_heading_color=\"#039447\" alignment=\"left\"]With the trust and reputation built as a reliable manufacturer of animal feed additives and supplements in the global market, several world-renowned international brands have appointed FARMCHEMIE MANUFACTURERS as the official toll manufacturer partner. FARMCHEMIE MANUFACTURERS exports a wide range of products consisting of premixes, specialty feed additives, oral liquid supplements and pet supplements to various markets in South Asia, East Asia, Middle East and Africa.\r\n\r\nFARMCHEMIE, FEED CHEMIE &amp; FARMCHEMIE MANUFACTURERS currently operate under the ownership of our holding company, DYVESTA.\r\n\r\nDYEVSTA has become the pinnacle of Animal Nutrition and Health.\r\n\r\nDYVESTA is Dynamic, through our continuous evolution, growth and progress. DYVESTA is Diverse, in terms of both our business strategy and our community. DYVESTA is Devoted to our valuable business partners through exceptional service.[/ultimate_heading][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row full_width=\"stretch_row\" equal_height=\"yes\" bg_type=\"image\" parallax_style=\"vcpb-default\" bg_image_new=\"id^2524|url^https://farmchemie.yasithawd.com/wp-content/uploads/2022/09/marketbgimg1.png|caption^null|alt^null|title^marketbgimg1|description^null\" bg_image_repeat=\"no-repeat\" enable_overlay=\"enable_overlay_value\" overlay_color=\"#000000\" overlay_pattern=\"01.png\" overlay_pattern_opacity=\"5\" css=\".vc_custom_1686720701314{margin-top: 35px !important;padding-top: 65px !important;padding-bottom: 100px !important;}\"][vc_column][vc_row_inner equal_height=\"yes\"][vc_column_inner width=\"1/2\"][ultimate_heading main_heading=\"Vision\" main_heading_color=\"#039447\" sub_heading_color=\"#039447\"]To be the customers’ first and best choice by ensuring outstanding satisfaction through a well-trained and dedicated team. Prompt and quality solutions to our customers’ requirements will determine the increase of return on investment for us.[/ultimate_heading][/vc_column_inner][vc_column_inner width=\"1/2\"][ultimate_heading main_heading=\"Mission\" main_heading_color=\"#762888\" sub_heading_color=\"#762888\"]To become a world renowned manufacturer of Animal Health products and a trusted partner among our stakeholders for our integrity as well as for providing effective solutions[/ultimate_heading][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row css=\".vc_custom_1684836308288{margin-top: 15px !important;}\"][vc_column][ultimate_heading main_heading=\"Achievements\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;\"][/ultimate_heading][vc_row_inner gap=\"20\"][vc_column_inner width=\"1/2\" css=\".vc_custom_1691995519863{background-color: #f4ab20 !important;border: 1px solid #f4ab20 !important;border-radius: 35px !important;}\"][bsf-info-box icon_type=\"custom\" icon_img=\"id^3117|url^https://farmchemie.yasithawd.com/wp-content/uploads/2023/08/Pink_-H.png|caption^null|alt^null|title^Pink_-H|description^null\" img_width=\"60\" icon_style=\"advanced\" icon_border_style=\"solid\" icon_color_border=\"#ffffff\" icon_border_size=\"1\" icon_border_radius=\"500\" icon_border_spacing=\"1\" title=\"First Free Sale Certificate obtained from Veterinary Drug Control Authority (VDCA) for Veterinary Pharmaceuticals\" title_font_style=\"font-weight:bold;\" title_font_size=\"desktop:20px;\"][/bsf-info-box][/vc_column_inner][vc_column_inner width=\"1/2\" css=\".vc_custom_1691995661095{background-color: #722f8b !important;border: 1px solid #722f8b !important;border-radius: 35px !important;}\"][bsf-info-box icon_type=\"custom\" icon_img=\"id^3117|url^https://farmchemie.yasithawd.com/wp-content/uploads/2023/08/Pink_-H.png|caption^null|alt^null|title^Pink_-H|description^null\" img_width=\"60\" icon_style=\"advanced\" icon_border_style=\"solid\" icon_color_border=\"#ffffff\" icon_border_size=\"1\" icon_border_radius=\"500\" icon_border_spacing=\"1\" title=\"First ISO 9001: 2015 ,WHO-GMP Quality Management systems certified Animal Health company in Sri Lanka since August, 2012\" title_font_style=\"font-weight:bold;\" title_font_color=\"#ffffff\" title_font_size=\"desktop:20px;\"][/bsf-info-box][/vc_column_inner][/vc_row_inner][vc_row_inner gap=\"20\"][vc_column_inner width=\"1/2\" css=\".vc_custom_1691995661095{background-color: #722f8b !important;border: 1px solid #722f8b !important;border-radius: 35px !important;}\"][bsf-info-box icon_type=\"custom\" icon_img=\"id^3117|url^https://farmchemie.yasithawd.com/wp-content/uploads/2023/08/Pink_-H.png|caption^null|alt^null|title^Pink_-H|description^null\" img_width=\"60\" icon_style=\"advanced\" icon_border_style=\"solid\" icon_color_border=\"#ffffff\" icon_border_size=\"1\" icon_border_radius=\"500\" icon_border_spacing=\"1\" title=\"First FAMI-QS certified company in sri lanka\" title_font_style=\"font-weight:bold;\" title_font_color=\"#ffffff\" title_font_size=\"desktop:20px;\"][/bsf-info-box][/vc_column_inner][vc_column_inner width=\"1/2\" css=\".vc_custom_1691995519863{background-color: #f4ab20 !important;border: 1px solid #f4ab20 !important;border-radius: 35px !important;}\"][bsf-info-box icon_type=\"custom\" icon_img=\"id^3117|url^https://farmchemie.yasithawd.com/wp-content/uploads/2023/08/Pink_-H.png|caption^null|alt^null|title^Pink_-H|description^null\" img_width=\"60\" icon_style=\"advanced\" icon_border_style=\"solid\" icon_color_border=\"#ffffff\" icon_border_size=\"1\" icon_border_radius=\"500\" icon_border_spacing=\"1\" title=\"First Certificate of Ethical Trading certified in Livestock industry\" title_font_style=\"font-weight:bold;\" title_font_size=\"desktop:20px;\"][/bsf-info-box][/vc_column_inner][/vc_row_inner][vc_row_inner gap=\"20\"][vc_column_inner width=\"1/4\" css=\".vc_custom_1691996718116{border-radius: 35px !important;}\"][/vc_column_inner][vc_column_inner width=\"2/4\" css=\".vc_custom_1691995519863{background-color: #f4ab20 !important;border: 1px solid #f4ab20 !important;border-radius: 35px !important;}\"][bsf-info-box icon_type=\"custom\" icon_img=\"id^3117|url^https://farmchemie.yasithawd.com/wp-content/uploads/2023/08/Pink_-H.png|caption^null|alt^null|title^Pink_-H|description^null\" img_width=\"60\" icon_style=\"advanced\" icon_border_style=\"solid\" icon_color_border=\"#ffffff\" icon_border_size=\"1\" icon_border_radius=\"500\" icon_border_spacing=\"1\" title=\"First Silver awarded company at National Exports Awards in Livestock industry\" title_font_style=\"font-weight:bold;\" title_font_size=\"desktop:20px;\"][/bsf-info-box][/vc_column_inner][vc_column_inner width=\"1/4\"][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner width=\"1/6\"][/vc_column_inner][vc_column_inner width=\"2/3\"][vc_single_image image=\"3126\" img_size=\"full\" alignment=\"center\"][vc_single_image image=\"3125\" img_size=\"full\" alignment=\"center\"][/vc_column_inner][vc_column_inner width=\"1/6\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row][vc_column][ultimate_heading main_heading=\"Board Of Directors\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;margin-bottom:35px;\"][/ultimate_heading][dt_team_carousel posts_offset=\"0\" img_border_radius=\"0px\" post_title_bottom_margin=\"0px\" show_soc_icon=\"n\" arrow_bg_width=\"36x\" arrow_border_width=\"0px\" r_arrow_icon_paddings=\"0px 0px 0px 0px\" r_arrow_v_offset=\"0px\" l_arrow_icon_paddings=\"0px 0px 0px 0px\" l_arrow_v_offset=\"0px\" category=\"\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_row_inner][vc_column_inner width=\"1/2\"][vc_single_image image=\"3172\" img_size=\"large\" alignment=\"center\" style=\"vc_box_outline_circle_2\" border_color=\"black\" image_hovers=\"false\"][/vc_column_inner][vc_column_inner width=\"1/2\"][ultimate_heading main_heading=\"Quisque sed nibh tristique\" heading_tag=\"h3\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;\"]Duis lorem risus, aliquet a auctor a, venenatis in dui. Praesent et eros et risus dapibus placerat hendrerit cursus magna.[/ultimate_heading][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/2\"][vc_row_inner][vc_column_inner width=\"1/2\"][vc_single_image image=\"3173\" img_size=\"large\" alignment=\"center\" style=\"vc_box_outline_circle_2\" border_color=\"black\" image_hovers=\"false\"][/vc_column_inner][vc_column_inner width=\"1/2\"][ultimate_heading main_heading=\"Quisque sed nibh tristique\" heading_tag=\"h3\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;\"]Duis lorem risus, aliquet a auctor a, venenatis in dui. Praesent et eros et risus dapibus placerat hendrerit cursus magna.[/ultimate_heading][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_row_inner][vc_column_inner width=\"1/2\"][vc_single_image image=\"3171\" img_size=\"large\" alignment=\"center\" style=\"vc_box_outline_circle_2\" border_color=\"black\" image_hovers=\"false\"][/vc_column_inner][vc_column_inner width=\"1/2\"][ultimate_heading main_heading=\"Quisque sed nibh tristique\" heading_tag=\"h3\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;\"]Duis lorem risus, aliquet a auctor a, venenatis in dui. Praesent et eros et risus dapibus placerat hendrerit cursus magna.[/ultimate_heading][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/2\"][vc_row_inner][vc_column_inner width=\"1/2\"][vc_single_image image=\"3170\" img_size=\"large\" alignment=\"center\" style=\"vc_box_outline_circle_2\" border_color=\"black\" image_hovers=\"false\"][/vc_column_inner][vc_column_inner width=\"1/2\"][ultimate_heading main_heading=\"Quisque sed nibh tristique\" heading_tag=\"h3\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;\"]Duis lorem risus, aliquet a auctor a, venenatis in dui. Praesent et eros et risus dapibus placerat hendrerit cursus magna.[/ultimate_heading][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row]','About Us','','inherit','closed','closed','','2633-revision-v1','','','2023-08-16 12:32:05','2023-08-16 12:32:05','',2633,'https://farmchemie.yasithawd.com/?p=3220',0,'revision','',0),(3223,1,'2023-08-16 14:30:22','2023-08-16 14:30:22','','VISION-&-MISION','','inherit','open','closed','','vision-mision','','','2023-08-16 14:30:22','2023-08-16 14:30:22','',2917,'https://farmchemie.yasithawd.com/wp-content/uploads/2023/08/VISION-MISION.png',0,'attachment','image/png',0),(3224,1,'2023-08-16 14:30:37','2023-08-16 14:30:37','[vc_row full_width=\"stretch_row_content_no_spaces\"][vc_column][ultimate_heading main_heading=\"Our History\" main_heading_color=\"#762888\" alignment=\"left\"][/ultimate_heading][vc_single_image image=\"3211\" img_size=\"full\" alignment=\"center\"][/vc_column][/vc_row][vc_row disable_element=\"yes\"][vc_column][vc_row_inner css=\".vc_custom_1686713784619{margin-top: 35px !important;}\"][vc_column_inner width=\"1/3\"][vc_single_image image=\"3106\" img_size=\"full\"][/vc_column_inner][vc_column_inner width=\"2/3\"][ultimate_heading main_heading=\"Founded in 2002\" heading_tag=\"h3\" main_heading_color=\"#039447\" alignment=\"left\" sub_heading_font_size=\"desktop:18px;\"]Founded in 2002 by Mr. Uditha Wanigasinghe, an agriculturist who had a mission to aid valuable livestock producers in the country to enhance the yield and profitability of production. FARMCHEMIE introduced unprecedented solutions and consistent technical services to gain our customers’ trust and became the market leader in animal health products in 2006 within just four years.[/ultimate_heading][/vc_column_inner][/vc_row_inner][vc_row_inner rtl_reverse=\"yes\" css=\".vc_custom_1686714025469{margin-top: 35px !important;}\"][vc_column_inner width=\"2/3\"][ultimate_heading main_heading=\"2006\" heading_tag=\"h3\" main_heading_color=\"#039447\" alignment=\"left\"]In 2006, the Sri Lankan poultry industry was affected with Avian Influenza which became a difficult period for the growth of FARMCHEMIE. This was the key factor in our decision to diversify into Agro Products. PLANTCHEM &amp; PLANTSEEDS were established to offer solutions in Agro specialty fertilizers, pesticides and seeds to invaluable cultivators.[/ultimate_heading][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_single_image image=\"3107\" img_size=\"full\"][/vc_column_inner][/vc_row_inner][vc_row_inner css=\".vc_custom_1686713784619{margin-top: 35px !important;}\"][vc_column_inner width=\"1/3\"][vc_single_image image=\"3108\" img_size=\"full\"][/vc_column_inner][vc_column_inner width=\"2/3\"][ultimate_heading main_heading=\"2010\" heading_tag=\"h3\" main_heading_color=\"#039447\" alignment=\"left\"]In 2010, FEED CHEMIE became the subsequent addition to ever-growing vision of Mr. Uditha Wanigasinghe and entered the Animal Feed Additives market.[/ultimate_heading][/vc_column_inner][/vc_row_inner][vc_row_inner rtl_reverse=\"yes\" css=\".vc_custom_1686714115148{margin-top: 35px !important;}\"][vc_column_inner width=\"2/3\"][ultimate_heading main_heading=\"2012\" heading_tag=\"h3\" main_heading_color=\"#039447\" alignment=\"left\"]The year 2012 is described as a turning point in our journey as FARMCHEMIE established our first production facility for the manufacturing and packing of animal health products. FARMCHEMIE became the first animal health organization in Sri Lanka to obtain ISO 9001:2015 and WHO GMP International Quality Certification. With our own formulation unit, FARMCHEMIE was able to offer customized solutions to cater the needs of the Sri Lankan Livestock Industry.[/ultimate_heading][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_single_image image=\"3111\" img_size=\"full\"][/vc_column_inner][/vc_row_inner][vc_row_inner css=\".vc_custom_1686713784619{margin-top: 35px !important;}\"][vc_column_inner width=\"1/3\"][vc_single_image image=\"3112\" img_size=\"full\"][/vc_column_inner][vc_column_inner width=\"2/3\"][ultimate_heading main_heading=\"2016\" heading_tag=\"h3\" main_heading_color=\"#039447\" alignment=\"left\"]The year 2016 was another key milestone with the entry to the International Markets. FARMCHEMIE exported our first Feed Premix consignment to India and in 2018 our export operation was distinctly established as FARMCHEMIE MANUFACTURERS, a Board of Investment (BOI) approved entity.[/ultimate_heading][/vc_column_inner][/vc_row_inner][vc_row_inner css=\".vc_custom_1686713784619{margin-top: 35px !important;}\"][vc_column_inner width=\"2/3\"][ultimate_heading main_heading=\"Fully automated manufacturing\" heading_tag=\"h3\" main_heading_color=\"#039447\" alignment=\"left\"]FARMCHEMIE MANUFACTURERS has invested in fully automated manufacturing facility from Bühler and became the first Sri Lankan owned company to obtain FAMI-QS International Quality Certification.[/ultimate_heading][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_single_image image=\"3110\" img_size=\"full\"][/vc_column_inner][/vc_row_inner][vc_row_inner css=\".vc_custom_1686713784619{margin-top: 35px !important;}\"][vc_column_inner width=\"1/3\"][vc_single_image image=\"3116\" img_size=\"full\"][/vc_column_inner][vc_column_inner width=\"2/3\"][ultimate_heading main_heading=\"Official toll manufacturer partner\" heading_tag=\"h3\" main_heading_color=\"#039447\" alignment=\"left\"]With the trust and reputation built as a reliable manufacturer of animal feed additives and supplements in the global market, several world-renowned international brands have appointed FARMCHEMIE MANUFACTURERS as the official toll manufacturer partner. FARMCHEMIE MANUFACTURERS exports a wide range of products consisting of premixes, specialty feed additives, oral liquid supplements and pet supplements to various markets in South Asia, East Asia, Middle East and Africa.\r\n\r\nFARMCHEMIE, FEED CHEMIE &amp; FARMCHEMIE MANUFACTURERS currently operate under the ownership of our holding company, DYVESTA.\r\n\r\nDYEVSTA has become the pinnacle of Animal Nutrition and Health.\r\n\r\nDYVESTA is Dynamic, through our continuous evolution, growth and progress. DYVESTA is Diverse, in terms of both our business strategy and our community. DYVESTA is Devoted to our valuable business partners through exceptional service.[/ultimate_heading][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row full_width=\"stretch_row\" equal_height=\"yes\" bg_type=\"image\" parallax_style=\"vcpb-default\" bg_image_new=\"id^3223|url^https://farmchemie.yasithawd.com/wp-content/uploads/2023/08/VISION-MISION.png|caption^null|alt^null|title^VISION-&amp;-MISION|description^null\" bg_image_repeat=\"no-repeat\" enable_overlay=\"enable_overlay_value\" overlay_color=\"#000000\" overlay_pattern=\"01.png\" overlay_pattern_opacity=\"5\" css=\".vc_custom_1692196231804{margin-top: 35px !important;padding-top: 65px !important;padding-bottom: 100px !important;}\"][vc_column][vc_row_inner equal_height=\"yes\"][vc_column_inner width=\"1/2\"][ultimate_heading main_heading=\"Vision\" main_heading_color=\"#039447\" sub_heading_color=\"#039447\"]To be the customers’ first and best choice by ensuring outstanding satisfaction through a well-trained and dedicated team. Prompt and quality solutions to our customers’ requirements will determine the increase of return on investment for us.[/ultimate_heading][/vc_column_inner][vc_column_inner width=\"1/2\"][ultimate_heading main_heading=\"Mission\" main_heading_color=\"#762888\" sub_heading_color=\"#762888\"]To become a world renowned manufacturer of Animal Health products and a trusted partner among our stakeholders for our integrity as well as for providing effective solutions[/ultimate_heading][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row css=\".vc_custom_1684836308288{margin-top: 15px !important;}\"][vc_column][ultimate_heading main_heading=\"Achievements\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;\"][/ultimate_heading][vc_row_inner gap=\"20\"][vc_column_inner width=\"1/2\" css=\".vc_custom_1691995519863{background-color: #f4ab20 !important;border: 1px solid #f4ab20 !important;border-radius: 35px !important;}\"][bsf-info-box icon_type=\"custom\" icon_img=\"id^3117|url^https://farmchemie.yasithawd.com/wp-content/uploads/2023/08/Pink_-H.png|caption^null|alt^null|title^Pink_-H|description^null\" img_width=\"60\" icon_style=\"advanced\" icon_border_style=\"solid\" icon_color_border=\"#ffffff\" icon_border_size=\"1\" icon_border_radius=\"500\" icon_border_spacing=\"1\" title=\"First Free Sale Certificate obtained from Veterinary Drug Control Authority (VDCA) for Veterinary Pharmaceuticals\" title_font_style=\"font-weight:bold;\" title_font_size=\"desktop:20px;\"][/bsf-info-box][/vc_column_inner][vc_column_inner width=\"1/2\" css=\".vc_custom_1691995661095{background-color: #722f8b !important;border: 1px solid #722f8b !important;border-radius: 35px !important;}\"][bsf-info-box icon_type=\"custom\" icon_img=\"id^3117|url^https://farmchemie.yasithawd.com/wp-content/uploads/2023/08/Pink_-H.png|caption^null|alt^null|title^Pink_-H|description^null\" img_width=\"60\" icon_style=\"advanced\" icon_border_style=\"solid\" icon_color_border=\"#ffffff\" icon_border_size=\"1\" icon_border_radius=\"500\" icon_border_spacing=\"1\" title=\"First ISO 9001: 2015 ,WHO-GMP Quality Management systems certified Animal Health company in Sri Lanka since August, 2012\" title_font_style=\"font-weight:bold;\" title_font_color=\"#ffffff\" title_font_size=\"desktop:20px;\"][/bsf-info-box][/vc_column_inner][/vc_row_inner][vc_row_inner gap=\"20\"][vc_column_inner width=\"1/2\" css=\".vc_custom_1691995661095{background-color: #722f8b !important;border: 1px solid #722f8b !important;border-radius: 35px !important;}\"][bsf-info-box icon_type=\"custom\" icon_img=\"id^3117|url^https://farmchemie.yasithawd.com/wp-content/uploads/2023/08/Pink_-H.png|caption^null|alt^null|title^Pink_-H|description^null\" img_width=\"60\" icon_style=\"advanced\" icon_border_style=\"solid\" icon_color_border=\"#ffffff\" icon_border_size=\"1\" icon_border_radius=\"500\" icon_border_spacing=\"1\" title=\"First FAMI-QS certified company in sri lanka\" title_font_style=\"font-weight:bold;\" title_font_color=\"#ffffff\" title_font_size=\"desktop:20px;\"][/bsf-info-box][/vc_column_inner][vc_column_inner width=\"1/2\" css=\".vc_custom_1691995519863{background-color: #f4ab20 !important;border: 1px solid #f4ab20 !important;border-radius: 35px !important;}\"][bsf-info-box icon_type=\"custom\" icon_img=\"id^3117|url^https://farmchemie.yasithawd.com/wp-content/uploads/2023/08/Pink_-H.png|caption^null|alt^null|title^Pink_-H|description^null\" img_width=\"60\" icon_style=\"advanced\" icon_border_style=\"solid\" icon_color_border=\"#ffffff\" icon_border_size=\"1\" icon_border_radius=\"500\" icon_border_spacing=\"1\" title=\"First Certificate of Ethical Trading certified in Livestock industry\" title_font_style=\"font-weight:bold;\" title_font_size=\"desktop:20px;\"][/bsf-info-box][/vc_column_inner][/vc_row_inner][vc_row_inner gap=\"20\"][vc_column_inner width=\"1/4\" css=\".vc_custom_1691996718116{border-radius: 35px !important;}\"][/vc_column_inner][vc_column_inner width=\"2/4\" css=\".vc_custom_1691995519863{background-color: #f4ab20 !important;border: 1px solid #f4ab20 !important;border-radius: 35px !important;}\"][bsf-info-box icon_type=\"custom\" icon_img=\"id^3117|url^https://farmchemie.yasithawd.com/wp-content/uploads/2023/08/Pink_-H.png|caption^null|alt^null|title^Pink_-H|description^null\" img_width=\"60\" icon_style=\"advanced\" icon_border_style=\"solid\" icon_color_border=\"#ffffff\" icon_border_size=\"1\" icon_border_radius=\"500\" icon_border_spacing=\"1\" title=\"First Silver awarded company at National Exports Awards in Livestock industry\" title_font_style=\"font-weight:bold;\" title_font_size=\"desktop:20px;\"][/bsf-info-box][/vc_column_inner][vc_column_inner width=\"1/4\"][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner width=\"1/6\"][/vc_column_inner][vc_column_inner width=\"2/3\"][vc_single_image image=\"3126\" img_size=\"full\" alignment=\"center\"][vc_single_image image=\"3125\" img_size=\"full\" alignment=\"center\"][/vc_column_inner][vc_column_inner width=\"1/6\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row][vc_column][ultimate_heading main_heading=\"Board Of Directors\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;margin-bottom:35px;\"][/ultimate_heading][ultimate_carousel slides_on_desk=\"1\" slides_on_tabs=\"1\" slides_on_mob=\"1\" arrow_style=\"square-bg\" arrow_bg_color=\"#039447\" arrow_color=\"#ffffff\" next_icon=\"ultsl-arrow-right6\" prev_icon=\"ultsl-arrow-left6\" dots_color=\"#039447\" item_animation=\"fadeIn\"][vc_row_inner][vc_column_inner width=\"1/2\"][vc_single_image image=\"3170\" img_size=\"large\" alignment=\"center\" style=\"vc_box_outline_circle_2\" border_color=\"black\" image_hovers=\"false\"][/vc_column_inner][vc_column_inner width=\"1/2\"][ultimate_heading main_heading=\"Quisque sed nibh tristique\" heading_tag=\"h3\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;\"]Duis lorem risus, aliquet a auctor a, venenatis in dui. Praesent et eros et risus dapibus placerat hendrerit cursus magna.[/ultimate_heading][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner width=\"1/2\"][vc_single_image image=\"3171\" img_size=\"large\" alignment=\"center\" style=\"vc_box_outline_circle_2\" border_color=\"black\" image_hovers=\"false\"][/vc_column_inner][vc_column_inner width=\"1/2\"][ultimate_heading main_heading=\"Quisque sed nibh tristique\" heading_tag=\"h3\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;\"]Duis lorem risus, aliquet a auctor a, venenatis in dui. Praesent et eros et risus dapibus placerat hendrerit cursus magna.[/ultimate_heading][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner width=\"1/2\"][vc_single_image image=\"3173\" img_size=\"large\" alignment=\"center\" style=\"vc_box_outline_circle_2\" border_color=\"black\" image_hovers=\"false\"][/vc_column_inner][vc_column_inner width=\"1/2\"][ultimate_heading main_heading=\"Quisque sed nibh tristique\" heading_tag=\"h3\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;\"]Duis lorem risus, aliquet a auctor a, venenatis in dui. Praesent et eros et risus dapibus placerat hendrerit cursus magna.[/ultimate_heading][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner width=\"1/2\"][vc_single_image image=\"3172\" img_size=\"large\" alignment=\"center\" style=\"vc_box_outline_circle_2\" border_color=\"black\" image_hovers=\"false\"][/vc_column_inner][vc_column_inner width=\"1/2\"][ultimate_heading main_heading=\"Quisque sed nibh tristique\" heading_tag=\"h3\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;\"]Duis lorem risus, aliquet a auctor a, venenatis in dui. Praesent et eros et risus dapibus placerat hendrerit cursus magna.[/ultimate_heading][/vc_column_inner][/vc_row_inner][/ultimate_carousel][/vc_column][/vc_row]','About us','','inherit','closed','closed','','2917-revision-v1','','','2023-08-16 14:30:37','2023-08-16 14:30:37','',2917,'https://farmchemie.yasithawd.com/?p=3224',0,'revision','',0),(3225,1,'2023-08-16 14:36:05','2023-08-16 14:36:05','[vc_row full_width=\"stretch_row_content_no_spaces\"][vc_column][ultimate_heading main_heading=\"Our History\" main_heading_color=\"#762888\" alignment=\"left\"][/ultimate_heading][vc_single_image image=\"3211\" img_size=\"full\" alignment=\"center\"][/vc_column][/vc_row][vc_row disable_element=\"yes\"][vc_column][vc_row_inner css=\".vc_custom_1686713784619{margin-top: 35px !important;}\"][vc_column_inner width=\"1/3\"][vc_single_image image=\"3106\" img_size=\"full\"][/vc_column_inner][vc_column_inner width=\"2/3\"][ultimate_heading main_heading=\"Founded in 2002\" heading_tag=\"h3\" main_heading_color=\"#039447\" alignment=\"left\" sub_heading_font_size=\"desktop:18px;\"]Founded in 2002 by Mr. Uditha Wanigasinghe, an agriculturist who had a mission to aid valuable livestock producers in the country to enhance the yield and profitability of production. FARMCHEMIE introduced unprecedented solutions and consistent technical services to gain our customers’ trust and became the market leader in animal health products in 2006 within just four years.[/ultimate_heading][/vc_column_inner][/vc_row_inner][vc_row_inner rtl_reverse=\"yes\" css=\".vc_custom_1686714025469{margin-top: 35px !important;}\"][vc_column_inner width=\"2/3\"][ultimate_heading main_heading=\"2006\" heading_tag=\"h3\" main_heading_color=\"#039447\" alignment=\"left\"]In 2006, the Sri Lankan poultry industry was affected with Avian Influenza which became a difficult period for the growth of FARMCHEMIE. This was the key factor in our decision to diversify into Agro Products. PLANTCHEM &amp; PLANTSEEDS were established to offer solutions in Agro specialty fertilizers, pesticides and seeds to invaluable cultivators.[/ultimate_heading][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_single_image image=\"3107\" img_size=\"full\"][/vc_column_inner][/vc_row_inner][vc_row_inner css=\".vc_custom_1686713784619{margin-top: 35px !important;}\"][vc_column_inner width=\"1/3\"][vc_single_image image=\"3108\" img_size=\"full\"][/vc_column_inner][vc_column_inner width=\"2/3\"][ultimate_heading main_heading=\"2010\" heading_tag=\"h3\" main_heading_color=\"#039447\" alignment=\"left\"]In 2010, FEED CHEMIE became the subsequent addition to ever-growing vision of Mr. Uditha Wanigasinghe and entered the Animal Feed Additives market.[/ultimate_heading][/vc_column_inner][/vc_row_inner][vc_row_inner rtl_reverse=\"yes\" css=\".vc_custom_1686714115148{margin-top: 35px !important;}\"][vc_column_inner width=\"2/3\"][ultimate_heading main_heading=\"2012\" heading_tag=\"h3\" main_heading_color=\"#039447\" alignment=\"left\"]The year 2012 is described as a turning point in our journey as FARMCHEMIE established our first production facility for the manufacturing and packing of animal health products. FARMCHEMIE became the first animal health organization in Sri Lanka to obtain ISO 9001:2015 and WHO GMP International Quality Certification. With our own formulation unit, FARMCHEMIE was able to offer customized solutions to cater the needs of the Sri Lankan Livestock Industry.[/ultimate_heading][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_single_image image=\"3111\" img_size=\"full\"][/vc_column_inner][/vc_row_inner][vc_row_inner css=\".vc_custom_1686713784619{margin-top: 35px !important;}\"][vc_column_inner width=\"1/3\"][vc_single_image image=\"3112\" img_size=\"full\"][/vc_column_inner][vc_column_inner width=\"2/3\"][ultimate_heading main_heading=\"2016\" heading_tag=\"h3\" main_heading_color=\"#039447\" alignment=\"left\"]The year 2016 was another key milestone with the entry to the International Markets. FARMCHEMIE exported our first Feed Premix consignment to India and in 2018 our export operation was distinctly established as FARMCHEMIE MANUFACTURERS, a Board of Investment (BOI) approved entity.[/ultimate_heading][/vc_column_inner][/vc_row_inner][vc_row_inner css=\".vc_custom_1686713784619{margin-top: 35px !important;}\"][vc_column_inner width=\"2/3\"][ultimate_heading main_heading=\"Fully automated manufacturing\" heading_tag=\"h3\" main_heading_color=\"#039447\" alignment=\"left\"]FARMCHEMIE MANUFACTURERS has invested in fully automated manufacturing facility from Bühler and became the first Sri Lankan owned company to obtain FAMI-QS International Quality Certification.[/ultimate_heading][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_single_image image=\"3110\" img_size=\"full\"][/vc_column_inner][/vc_row_inner][vc_row_inner css=\".vc_custom_1686713784619{margin-top: 35px !important;}\"][vc_column_inner width=\"1/3\"][vc_single_image image=\"3116\" img_size=\"full\"][/vc_column_inner][vc_column_inner width=\"2/3\"][ultimate_heading main_heading=\"Official toll manufacturer partner\" heading_tag=\"h3\" main_heading_color=\"#039447\" alignment=\"left\"]With the trust and reputation built as a reliable manufacturer of animal feed additives and supplements in the global market, several world-renowned international brands have appointed FARMCHEMIE MANUFACTURERS as the official toll manufacturer partner. FARMCHEMIE MANUFACTURERS exports a wide range of products consisting of premixes, specialty feed additives, oral liquid supplements and pet supplements to various markets in South Asia, East Asia, Middle East and Africa.\r\n\r\nFARMCHEMIE, FEED CHEMIE &amp; FARMCHEMIE MANUFACTURERS currently operate under the ownership of our holding company, DYVESTA.\r\n\r\nDYEVSTA has become the pinnacle of Animal Nutrition and Health.\r\n\r\nDYVESTA is Dynamic, through our continuous evolution, growth and progress. DYVESTA is Diverse, in terms of both our business strategy and our community. DYVESTA is Devoted to our valuable business partners through exceptional service.[/ultimate_heading][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row full_width=\"stretch_row\" equal_height=\"yes\" bg_type=\"image\" parallax_style=\"vcpb-default\" bg_image_new=\"id^3223|url^https://farmchemie.yasithawd.com/wp-content/uploads/2023/08/VISION-MISION.png|caption^null|alt^null|title^VISION-&amp;-MISION|description^null\" bg_image_repeat=\"no-repeat\" enable_overlay=\"enable_overlay_value\" overlay_color=\"#000000\" overlay_pattern=\"01.png\" overlay_pattern_opacity=\"5\" css=\".vc_custom_1692196231804{margin-top: 35px !important;padding-top: 65px !important;padding-bottom: 100px !important;}\"][vc_column][vc_row_inner equal_height=\"yes\"][vc_column_inner width=\"1/2\"][ult_animation_block animation=\"fadeIn\" animation_duration=\"8\" animation_delay=\"1\" animation_iteration_count=\"1\"][ultimate_heading main_heading=\"Vision\" main_heading_color=\"#039447\" sub_heading_color=\"#039447\"]To be the customers’ first and best choice by ensuring outstanding satisfaction through a well-trained and dedicated team. Prompt and quality solutions to our customers’ requirements will determine the increase of return on investment for us.[/ultimate_heading][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/2\"][ult_animation_block animation=\"fadeIn\" animation_duration=\"8\" animation_delay=\"1\" animation_iteration_count=\"1\"][ultimate_heading main_heading=\"Mission\" main_heading_color=\"#762888\" sub_heading_color=\"#762888\"]To become a world renowned manufacturer of Animal Health products and a trusted partner among our stakeholders for our integrity as well as for providing effective solutions[/ultimate_heading][/ult_animation_block][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row css=\".vc_custom_1684836308288{margin-top: 15px !important;}\"][vc_column][ultimate_heading main_heading=\"Achievements\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;\"][/ultimate_heading][vc_row_inner gap=\"20\"][vc_column_inner width=\"1/2\" css=\".vc_custom_1691995519863{background-color: #f4ab20 !important;border: 1px solid #f4ab20 !important;border-radius: 35px !important;}\"][bsf-info-box icon_type=\"custom\" icon_img=\"id^3117|url^https://farmchemie.yasithawd.com/wp-content/uploads/2023/08/Pink_-H.png|caption^null|alt^null|title^Pink_-H|description^null\" img_width=\"60\" icon_style=\"advanced\" icon_border_style=\"solid\" icon_color_border=\"#ffffff\" icon_border_size=\"1\" icon_border_radius=\"500\" icon_border_spacing=\"1\" title=\"First Free Sale Certificate obtained from Veterinary Drug Control Authority (VDCA) for Veterinary Pharmaceuticals\" title_font_style=\"font-weight:bold;\" title_font_size=\"desktop:20px;\"][/bsf-info-box][/vc_column_inner][vc_column_inner width=\"1/2\" css=\".vc_custom_1691995661095{background-color: #722f8b !important;border: 1px solid #722f8b !important;border-radius: 35px !important;}\"][bsf-info-box icon_type=\"custom\" icon_img=\"id^3117|url^https://farmchemie.yasithawd.com/wp-content/uploads/2023/08/Pink_-H.png|caption^null|alt^null|title^Pink_-H|description^null\" img_width=\"60\" icon_style=\"advanced\" icon_border_style=\"solid\" icon_color_border=\"#ffffff\" icon_border_size=\"1\" icon_border_radius=\"500\" icon_border_spacing=\"1\" title=\"First ISO 9001: 2015 ,WHO-GMP Quality Management systems certified Animal Health company in Sri Lanka since August, 2012\" title_font_style=\"font-weight:bold;\" title_font_color=\"#ffffff\" title_font_size=\"desktop:20px;\"][/bsf-info-box][/vc_column_inner][/vc_row_inner][vc_row_inner gap=\"20\"][vc_column_inner width=\"1/2\" css=\".vc_custom_1691995661095{background-color: #722f8b !important;border: 1px solid #722f8b !important;border-radius: 35px !important;}\"][bsf-info-box icon_type=\"custom\" icon_img=\"id^3117|url^https://farmchemie.yasithawd.com/wp-content/uploads/2023/08/Pink_-H.png|caption^null|alt^null|title^Pink_-H|description^null\" img_width=\"60\" icon_style=\"advanced\" icon_border_style=\"solid\" icon_color_border=\"#ffffff\" icon_border_size=\"1\" icon_border_radius=\"500\" icon_border_spacing=\"1\" title=\"First FAMI-QS certified company in sri lanka\" title_font_style=\"font-weight:bold;\" title_font_color=\"#ffffff\" title_font_size=\"desktop:20px;\"][/bsf-info-box][/vc_column_inner][vc_column_inner width=\"1/2\" css=\".vc_custom_1691995519863{background-color: #f4ab20 !important;border: 1px solid #f4ab20 !important;border-radius: 35px !important;}\"][bsf-info-box icon_type=\"custom\" icon_img=\"id^3117|url^https://farmchemie.yasithawd.com/wp-content/uploads/2023/08/Pink_-H.png|caption^null|alt^null|title^Pink_-H|description^null\" img_width=\"60\" icon_style=\"advanced\" icon_border_style=\"solid\" icon_color_border=\"#ffffff\" icon_border_size=\"1\" icon_border_radius=\"500\" icon_border_spacing=\"1\" title=\"First Certificate of Ethical Trading certified in Livestock industry\" title_font_style=\"font-weight:bold;\" title_font_size=\"desktop:20px;\"][/bsf-info-box][/vc_column_inner][/vc_row_inner][vc_row_inner gap=\"20\"][vc_column_inner width=\"1/4\" css=\".vc_custom_1691996718116{border-radius: 35px !important;}\"][/vc_column_inner][vc_column_inner width=\"2/4\" css=\".vc_custom_1691995519863{background-color: #f4ab20 !important;border: 1px solid #f4ab20 !important;border-radius: 35px !important;}\"][bsf-info-box icon_type=\"custom\" icon_img=\"id^3117|url^https://farmchemie.yasithawd.com/wp-content/uploads/2023/08/Pink_-H.png|caption^null|alt^null|title^Pink_-H|description^null\" img_width=\"60\" icon_style=\"advanced\" icon_border_style=\"solid\" icon_color_border=\"#ffffff\" icon_border_size=\"1\" icon_border_radius=\"500\" icon_border_spacing=\"1\" title=\"First Silver awarded company at National Exports Awards in Livestock industry\" title_font_style=\"font-weight:bold;\" title_font_size=\"desktop:20px;\"][/bsf-info-box][/vc_column_inner][vc_column_inner width=\"1/4\"][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner width=\"1/6\"][/vc_column_inner][vc_column_inner width=\"2/3\"][vc_single_image image=\"3126\" img_size=\"full\" alignment=\"center\"][vc_single_image image=\"3125\" img_size=\"full\" alignment=\"center\"][/vc_column_inner][vc_column_inner width=\"1/6\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row][vc_column][ultimate_heading main_heading=\"Board Of Directors\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;margin-bottom:35px;\"][/ultimate_heading][ultimate_carousel slides_on_desk=\"1\" slides_on_tabs=\"1\" slides_on_mob=\"1\" arrow_style=\"square-bg\" arrow_bg_color=\"#039447\" arrow_color=\"#ffffff\" next_icon=\"ultsl-arrow-right6\" prev_icon=\"ultsl-arrow-left6\" dots_color=\"#039447\" item_animation=\"fadeIn\"][vc_row_inner][vc_column_inner width=\"1/2\"][vc_single_image image=\"3170\" img_size=\"large\" alignment=\"center\" style=\"vc_box_outline_circle_2\" border_color=\"black\" image_hovers=\"false\"][/vc_column_inner][vc_column_inner width=\"1/2\"][ultimate_heading main_heading=\"Quisque sed nibh tristique\" heading_tag=\"h3\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;\"]Duis lorem risus, aliquet a auctor a, venenatis in dui. Praesent et eros et risus dapibus placerat hendrerit cursus magna.[/ultimate_heading][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner width=\"1/2\"][vc_single_image image=\"3171\" img_size=\"large\" alignment=\"center\" style=\"vc_box_outline_circle_2\" border_color=\"black\" image_hovers=\"false\"][/vc_column_inner][vc_column_inner width=\"1/2\"][ultimate_heading main_heading=\"Quisque sed nibh tristique\" heading_tag=\"h3\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;\"]Duis lorem risus, aliquet a auctor a, venenatis in dui. Praesent et eros et risus dapibus placerat hendrerit cursus magna.[/ultimate_heading][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner width=\"1/2\"][vc_single_image image=\"3173\" img_size=\"large\" alignment=\"center\" style=\"vc_box_outline_circle_2\" border_color=\"black\" image_hovers=\"false\"][/vc_column_inner][vc_column_inner width=\"1/2\"][ultimate_heading main_heading=\"Quisque sed nibh tristique\" heading_tag=\"h3\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;\"]Duis lorem risus, aliquet a auctor a, venenatis in dui. Praesent et eros et risus dapibus placerat hendrerit cursus magna.[/ultimate_heading][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner width=\"1/2\"][vc_single_image image=\"3172\" img_size=\"large\" alignment=\"center\" style=\"vc_box_outline_circle_2\" border_color=\"black\" image_hovers=\"false\"][/vc_column_inner][vc_column_inner width=\"1/2\"][ultimate_heading main_heading=\"Quisque sed nibh tristique\" heading_tag=\"h3\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;\"]Duis lorem risus, aliquet a auctor a, venenatis in dui. Praesent et eros et risus dapibus placerat hendrerit cursus magna.[/ultimate_heading][/vc_column_inner][/vc_row_inner][/ultimate_carousel][/vc_column][/vc_row]','About us','','inherit','closed','closed','','2917-revision-v1','','','2023-08-16 14:36:05','2023-08-16 14:36:05','',2917,'https://farmchemie.yasithawd.com/?p=3225',0,'revision','',0),(3226,1,'2023-08-16 14:42:36','2023-08-16 14:42:36','','Untitled design (9)','','inherit','open','closed','','untitled-design-9','','','2023-08-16 14:42:36','2023-08-16 14:42:36','',2917,'https://farmchemie.yasithawd.com/wp-content/uploads/2023/08/Untitled-design-9.jpg',0,'attachment','image/jpeg',0),(3227,1,'2023-08-16 14:42:47','2023-08-16 14:42:47','[vc_row full_width=\"stretch_row_content_no_spaces\"][vc_column][ultimate_heading main_heading=\"Our History\" main_heading_color=\"#762888\" alignment=\"left\"][/ultimate_heading][vc_single_image image=\"3211\" img_size=\"full\" alignment=\"center\"][/vc_column][/vc_row][vc_row disable_element=\"yes\"][vc_column][vc_row_inner css=\".vc_custom_1686713784619{margin-top: 35px !important;}\"][vc_column_inner width=\"1/3\"][vc_single_image image=\"3106\" img_size=\"full\"][/vc_column_inner][vc_column_inner width=\"2/3\"][ultimate_heading main_heading=\"Founded in 2002\" heading_tag=\"h3\" main_heading_color=\"#039447\" alignment=\"left\" sub_heading_font_size=\"desktop:18px;\"]Founded in 2002 by Mr. Uditha Wanigasinghe, an agriculturist who had a mission to aid valuable livestock producers in the country to enhance the yield and profitability of production. FARMCHEMIE introduced unprecedented solutions and consistent technical services to gain our customers’ trust and became the market leader in animal health products in 2006 within just four years.[/ultimate_heading][/vc_column_inner][/vc_row_inner][vc_row_inner rtl_reverse=\"yes\" css=\".vc_custom_1686714025469{margin-top: 35px !important;}\"][vc_column_inner width=\"2/3\"][ultimate_heading main_heading=\"2006\" heading_tag=\"h3\" main_heading_color=\"#039447\" alignment=\"left\"]In 2006, the Sri Lankan poultry industry was affected with Avian Influenza which became a difficult period for the growth of FARMCHEMIE. This was the key factor in our decision to diversify into Agro Products. PLANTCHEM &amp; PLANTSEEDS were established to offer solutions in Agro specialty fertilizers, pesticides and seeds to invaluable cultivators.[/ultimate_heading][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_single_image image=\"3107\" img_size=\"full\"][/vc_column_inner][/vc_row_inner][vc_row_inner css=\".vc_custom_1686713784619{margin-top: 35px !important;}\"][vc_column_inner width=\"1/3\"][vc_single_image image=\"3108\" img_size=\"full\"][/vc_column_inner][vc_column_inner width=\"2/3\"][ultimate_heading main_heading=\"2010\" heading_tag=\"h3\" main_heading_color=\"#039447\" alignment=\"left\"]In 2010, FEED CHEMIE became the subsequent addition to ever-growing vision of Mr. Uditha Wanigasinghe and entered the Animal Feed Additives market.[/ultimate_heading][/vc_column_inner][/vc_row_inner][vc_row_inner rtl_reverse=\"yes\" css=\".vc_custom_1686714115148{margin-top: 35px !important;}\"][vc_column_inner width=\"2/3\"][ultimate_heading main_heading=\"2012\" heading_tag=\"h3\" main_heading_color=\"#039447\" alignment=\"left\"]The year 2012 is described as a turning point in our journey as FARMCHEMIE established our first production facility for the manufacturing and packing of animal health products. FARMCHEMIE became the first animal health organization in Sri Lanka to obtain ISO 9001:2015 and WHO GMP International Quality Certification. With our own formulation unit, FARMCHEMIE was able to offer customized solutions to cater the needs of the Sri Lankan Livestock Industry.[/ultimate_heading][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_single_image image=\"3111\" img_size=\"full\"][/vc_column_inner][/vc_row_inner][vc_row_inner css=\".vc_custom_1686713784619{margin-top: 35px !important;}\"][vc_column_inner width=\"1/3\"][vc_single_image image=\"3112\" img_size=\"full\"][/vc_column_inner][vc_column_inner width=\"2/3\"][ultimate_heading main_heading=\"2016\" heading_tag=\"h3\" main_heading_color=\"#039447\" alignment=\"left\"]The year 2016 was another key milestone with the entry to the International Markets. FARMCHEMIE exported our first Feed Premix consignment to India and in 2018 our export operation was distinctly established as FARMCHEMIE MANUFACTURERS, a Board of Investment (BOI) approved entity.[/ultimate_heading][/vc_column_inner][/vc_row_inner][vc_row_inner css=\".vc_custom_1686713784619{margin-top: 35px !important;}\"][vc_column_inner width=\"2/3\"][ultimate_heading main_heading=\"Fully automated manufacturing\" heading_tag=\"h3\" main_heading_color=\"#039447\" alignment=\"left\"]FARMCHEMIE MANUFACTURERS has invested in fully automated manufacturing facility from Bühler and became the first Sri Lankan owned company to obtain FAMI-QS International Quality Certification.[/ultimate_heading][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_single_image image=\"3110\" img_size=\"full\"][/vc_column_inner][/vc_row_inner][vc_row_inner css=\".vc_custom_1686713784619{margin-top: 35px !important;}\"][vc_column_inner width=\"1/3\"][vc_single_image image=\"3116\" img_size=\"full\"][/vc_column_inner][vc_column_inner width=\"2/3\"][ultimate_heading main_heading=\"Official toll manufacturer partner\" heading_tag=\"h3\" main_heading_color=\"#039447\" alignment=\"left\"]With the trust and reputation built as a reliable manufacturer of animal feed additives and supplements in the global market, several world-renowned international brands have appointed FARMCHEMIE MANUFACTURERS as the official toll manufacturer partner. FARMCHEMIE MANUFACTURERS exports a wide range of products consisting of premixes, specialty feed additives, oral liquid supplements and pet supplements to various markets in South Asia, East Asia, Middle East and Africa.\r\n\r\nFARMCHEMIE, FEED CHEMIE &amp; FARMCHEMIE MANUFACTURERS currently operate under the ownership of our holding company, DYVESTA.\r\n\r\nDYEVSTA has become the pinnacle of Animal Nutrition and Health.\r\n\r\nDYVESTA is Dynamic, through our continuous evolution, growth and progress. DYVESTA is Diverse, in terms of both our business strategy and our community. DYVESTA is Devoted to our valuable business partners through exceptional service.[/ultimate_heading][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row full_width=\"stretch_row\" equal_height=\"yes\" bg_type=\"image\" parallax_style=\"vcpb-default\" bg_image_new=\"id^3226|url^https://farmchemie.yasithawd.com/wp-content/uploads/2023/08/Untitled-design-9.jpg|caption^null|alt^null|title^Untitled design (9)|description^null\" bg_image_repeat=\"no-repeat\" enable_overlay=\"enable_overlay_value\" overlay_color=\"#000000\" overlay_pattern=\"01.png\" overlay_pattern_opacity=\"5\" css=\".vc_custom_1692196960130{margin-top: 35px !important;padding-top: 65px !important;padding-bottom: 100px !important;}\"][vc_column][vc_row_inner equal_height=\"yes\"][vc_column_inner width=\"1/2\"][ult_animation_block animation=\"fadeIn\" animation_duration=\"8\" animation_delay=\"1\" animation_iteration_count=\"1\"][ultimate_heading main_heading=\"Vision\" main_heading_color=\"#039447\" sub_heading_color=\"#039447\"]To be the customers’ first and best choice by ensuring outstanding satisfaction through a well-trained and dedicated team. Prompt and quality solutions to our customers’ requirements will determine the increase of return on investment for us.[/ultimate_heading][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/2\"][ult_animation_block animation=\"fadeIn\" animation_duration=\"8\" animation_delay=\"1\" animation_iteration_count=\"1\"][ultimate_heading main_heading=\"Mission\" main_heading_color=\"#762888\" sub_heading_color=\"#762888\"]To become a world renowned manufacturer of Animal Health products and a trusted partner among our stakeholders for our integrity as well as for providing effective solutions[/ultimate_heading][/ult_animation_block][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row css=\".vc_custom_1684836308288{margin-top: 15px !important;}\"][vc_column][ultimate_heading main_heading=\"Achievements\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;\"][/ultimate_heading][vc_row_inner gap=\"20\"][vc_column_inner width=\"1/2\" css=\".vc_custom_1691995519863{background-color: #f4ab20 !important;border: 1px solid #f4ab20 !important;border-radius: 35px !important;}\"][bsf-info-box icon_type=\"custom\" icon_img=\"id^3117|url^https://farmchemie.yasithawd.com/wp-content/uploads/2023/08/Pink_-H.png|caption^null|alt^null|title^Pink_-H|description^null\" img_width=\"60\" icon_style=\"advanced\" icon_border_style=\"solid\" icon_color_border=\"#ffffff\" icon_border_size=\"1\" icon_border_radius=\"500\" icon_border_spacing=\"1\" title=\"First Free Sale Certificate obtained from Veterinary Drug Control Authority (VDCA) for Veterinary Pharmaceuticals\" title_font_style=\"font-weight:bold;\" title_font_size=\"desktop:20px;\"][/bsf-info-box][/vc_column_inner][vc_column_inner width=\"1/2\" css=\".vc_custom_1691995661095{background-color: #722f8b !important;border: 1px solid #722f8b !important;border-radius: 35px !important;}\"][bsf-info-box icon_type=\"custom\" icon_img=\"id^3117|url^https://farmchemie.yasithawd.com/wp-content/uploads/2023/08/Pink_-H.png|caption^null|alt^null|title^Pink_-H|description^null\" img_width=\"60\" icon_style=\"advanced\" icon_border_style=\"solid\" icon_color_border=\"#ffffff\" icon_border_size=\"1\" icon_border_radius=\"500\" icon_border_spacing=\"1\" title=\"First ISO 9001: 2015 ,WHO-GMP Quality Management systems certified Animal Health company in Sri Lanka since August, 2012\" title_font_style=\"font-weight:bold;\" title_font_color=\"#ffffff\" title_font_size=\"desktop:20px;\"][/bsf-info-box][/vc_column_inner][/vc_row_inner][vc_row_inner gap=\"20\"][vc_column_inner width=\"1/2\" css=\".vc_custom_1691995661095{background-color: #722f8b !important;border: 1px solid #722f8b !important;border-radius: 35px !important;}\"][bsf-info-box icon_type=\"custom\" icon_img=\"id^3117|url^https://farmchemie.yasithawd.com/wp-content/uploads/2023/08/Pink_-H.png|caption^null|alt^null|title^Pink_-H|description^null\" img_width=\"60\" icon_style=\"advanced\" icon_border_style=\"solid\" icon_color_border=\"#ffffff\" icon_border_size=\"1\" icon_border_radius=\"500\" icon_border_spacing=\"1\" title=\"First FAMI-QS certified company in sri lanka\" title_font_style=\"font-weight:bold;\" title_font_color=\"#ffffff\" title_font_size=\"desktop:20px;\"][/bsf-info-box][/vc_column_inner][vc_column_inner width=\"1/2\" css=\".vc_custom_1691995519863{background-color: #f4ab20 !important;border: 1px solid #f4ab20 !important;border-radius: 35px !important;}\"][bsf-info-box icon_type=\"custom\" icon_img=\"id^3117|url^https://farmchemie.yasithawd.com/wp-content/uploads/2023/08/Pink_-H.png|caption^null|alt^null|title^Pink_-H|description^null\" img_width=\"60\" icon_style=\"advanced\" icon_border_style=\"solid\" icon_color_border=\"#ffffff\" icon_border_size=\"1\" icon_border_radius=\"500\" icon_border_spacing=\"1\" title=\"First Certificate of Ethical Trading certified in Livestock industry\" title_font_style=\"font-weight:bold;\" title_font_size=\"desktop:20px;\"][/bsf-info-box][/vc_column_inner][/vc_row_inner][vc_row_inner gap=\"20\"][vc_column_inner width=\"1/4\" css=\".vc_custom_1691996718116{border-radius: 35px !important;}\"][/vc_column_inner][vc_column_inner width=\"2/4\" css=\".vc_custom_1691995519863{background-color: #f4ab20 !important;border: 1px solid #f4ab20 !important;border-radius: 35px !important;}\"][bsf-info-box icon_type=\"custom\" icon_img=\"id^3117|url^https://farmchemie.yasithawd.com/wp-content/uploads/2023/08/Pink_-H.png|caption^null|alt^null|title^Pink_-H|description^null\" img_width=\"60\" icon_style=\"advanced\" icon_border_style=\"solid\" icon_color_border=\"#ffffff\" icon_border_size=\"1\" icon_border_radius=\"500\" icon_border_spacing=\"1\" title=\"First Silver awarded company at National Exports Awards in Livestock industry\" title_font_style=\"font-weight:bold;\" title_font_size=\"desktop:20px;\"][/bsf-info-box][/vc_column_inner][vc_column_inner width=\"1/4\"][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner width=\"1/6\"][/vc_column_inner][vc_column_inner width=\"2/3\"][vc_single_image image=\"3126\" img_size=\"full\" alignment=\"center\"][vc_single_image image=\"3125\" img_size=\"full\" alignment=\"center\"][/vc_column_inner][vc_column_inner width=\"1/6\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row][vc_column][ultimate_heading main_heading=\"Board Of Directors\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;margin-bottom:35px;\"][/ultimate_heading][ultimate_carousel slides_on_desk=\"1\" slides_on_tabs=\"1\" slides_on_mob=\"1\" arrow_style=\"square-bg\" arrow_bg_color=\"#039447\" arrow_color=\"#ffffff\" next_icon=\"ultsl-arrow-right6\" prev_icon=\"ultsl-arrow-left6\" dots_color=\"#039447\" item_animation=\"fadeIn\"][vc_row_inner][vc_column_inner width=\"1/2\"][vc_single_image image=\"3170\" img_size=\"large\" alignment=\"center\" style=\"vc_box_outline_circle_2\" border_color=\"black\" image_hovers=\"false\"][/vc_column_inner][vc_column_inner width=\"1/2\"][ultimate_heading main_heading=\"Quisque sed nibh tristique\" heading_tag=\"h3\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;\"]Duis lorem risus, aliquet a auctor a, venenatis in dui. Praesent et eros et risus dapibus placerat hendrerit cursus magna.[/ultimate_heading][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner width=\"1/2\"][vc_single_image image=\"3171\" img_size=\"large\" alignment=\"center\" style=\"vc_box_outline_circle_2\" border_color=\"black\" image_hovers=\"false\"][/vc_column_inner][vc_column_inner width=\"1/2\"][ultimate_heading main_heading=\"Quisque sed nibh tristique\" heading_tag=\"h3\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;\"]Duis lorem risus, aliquet a auctor a, venenatis in dui. Praesent et eros et risus dapibus placerat hendrerit cursus magna.[/ultimate_heading][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner width=\"1/2\"][vc_single_image image=\"3173\" img_size=\"large\" alignment=\"center\" style=\"vc_box_outline_circle_2\" border_color=\"black\" image_hovers=\"false\"][/vc_column_inner][vc_column_inner width=\"1/2\"][ultimate_heading main_heading=\"Quisque sed nibh tristique\" heading_tag=\"h3\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;\"]Duis lorem risus, aliquet a auctor a, venenatis in dui. Praesent et eros et risus dapibus placerat hendrerit cursus magna.[/ultimate_heading][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner width=\"1/2\"][vc_single_image image=\"3172\" img_size=\"large\" alignment=\"center\" style=\"vc_box_outline_circle_2\" border_color=\"black\" image_hovers=\"false\"][/vc_column_inner][vc_column_inner width=\"1/2\"][ultimate_heading main_heading=\"Quisque sed nibh tristique\" heading_tag=\"h3\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;\"]Duis lorem risus, aliquet a auctor a, venenatis in dui. Praesent et eros et risus dapibus placerat hendrerit cursus magna.[/ultimate_heading][/vc_column_inner][/vc_row_inner][/ultimate_carousel][/vc_column][/vc_row]','About us','','inherit','closed','closed','','2917-revision-v1','','','2023-08-16 14:42:47','2023-08-16 14:42:47','',2917,'https://farmchemie.yasithawd.com/?p=3227',0,'revision','',0),(3228,1,'2023-08-16 14:44:22','2023-08-16 14:44:22','[vc_row full_width=\"stretch_row_content_no_spaces\"][vc_column][ultimate_heading main_heading=\"Our History\" main_heading_color=\"#762888\" alignment=\"left\"][/ultimate_heading][vc_single_image image=\"3211\" img_size=\"full\" alignment=\"center\"][/vc_column][/vc_row][vc_row disable_element=\"yes\"][vc_column][vc_row_inner css=\".vc_custom_1686713784619{margin-top: 35px !important;}\"][vc_column_inner width=\"1/3\"][vc_single_image image=\"3106\" img_size=\"full\"][/vc_column_inner][vc_column_inner width=\"2/3\"][ultimate_heading main_heading=\"Founded in 2002\" heading_tag=\"h3\" main_heading_color=\"#039447\" alignment=\"left\" sub_heading_font_size=\"desktop:18px;\"]Founded in 2002 by Mr. Uditha Wanigasinghe, an agriculturist who had a mission to aid valuable livestock producers in the country to enhance the yield and profitability of production. FARMCHEMIE introduced unprecedented solutions and consistent technical services to gain our customers’ trust and became the market leader in animal health products in 2006 within just four years.[/ultimate_heading][/vc_column_inner][/vc_row_inner][vc_row_inner rtl_reverse=\"yes\" css=\".vc_custom_1686714025469{margin-top: 35px !important;}\"][vc_column_inner width=\"2/3\"][ultimate_heading main_heading=\"2006\" heading_tag=\"h3\" main_heading_color=\"#039447\" alignment=\"left\"]In 2006, the Sri Lankan poultry industry was affected with Avian Influenza which became a difficult period for the growth of FARMCHEMIE. This was the key factor in our decision to diversify into Agro Products. PLANTCHEM &amp; PLANTSEEDS were established to offer solutions in Agro specialty fertilizers, pesticides and seeds to invaluable cultivators.[/ultimate_heading][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_single_image image=\"3107\" img_size=\"full\"][/vc_column_inner][/vc_row_inner][vc_row_inner css=\".vc_custom_1686713784619{margin-top: 35px !important;}\"][vc_column_inner width=\"1/3\"][vc_single_image image=\"3108\" img_size=\"full\"][/vc_column_inner][vc_column_inner width=\"2/3\"][ultimate_heading main_heading=\"2010\" heading_tag=\"h3\" main_heading_color=\"#039447\" alignment=\"left\"]In 2010, FEED CHEMIE became the subsequent addition to ever-growing vision of Mr. Uditha Wanigasinghe and entered the Animal Feed Additives market.[/ultimate_heading][/vc_column_inner][/vc_row_inner][vc_row_inner rtl_reverse=\"yes\" css=\".vc_custom_1686714115148{margin-top: 35px !important;}\"][vc_column_inner width=\"2/3\"][ultimate_heading main_heading=\"2012\" heading_tag=\"h3\" main_heading_color=\"#039447\" alignment=\"left\"]The year 2012 is described as a turning point in our journey as FARMCHEMIE established our first production facility for the manufacturing and packing of animal health products. FARMCHEMIE became the first animal health organization in Sri Lanka to obtain ISO 9001:2015 and WHO GMP International Quality Certification. With our own formulation unit, FARMCHEMIE was able to offer customized solutions to cater the needs of the Sri Lankan Livestock Industry.[/ultimate_heading][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_single_image image=\"3111\" img_size=\"full\"][/vc_column_inner][/vc_row_inner][vc_row_inner css=\".vc_custom_1686713784619{margin-top: 35px !important;}\"][vc_column_inner width=\"1/3\"][vc_single_image image=\"3112\" img_size=\"full\"][/vc_column_inner][vc_column_inner width=\"2/3\"][ultimate_heading main_heading=\"2016\" heading_tag=\"h3\" main_heading_color=\"#039447\" alignment=\"left\"]The year 2016 was another key milestone with the entry to the International Markets. FARMCHEMIE exported our first Feed Premix consignment to India and in 2018 our export operation was distinctly established as FARMCHEMIE MANUFACTURERS, a Board of Investment (BOI) approved entity.[/ultimate_heading][/vc_column_inner][/vc_row_inner][vc_row_inner css=\".vc_custom_1686713784619{margin-top: 35px !important;}\"][vc_column_inner width=\"2/3\"][ultimate_heading main_heading=\"Fully automated manufacturing\" heading_tag=\"h3\" main_heading_color=\"#039447\" alignment=\"left\"]FARMCHEMIE MANUFACTURERS has invested in fully automated manufacturing facility from Bühler and became the first Sri Lankan owned company to obtain FAMI-QS International Quality Certification.[/ultimate_heading][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_single_image image=\"3110\" img_size=\"full\"][/vc_column_inner][/vc_row_inner][vc_row_inner css=\".vc_custom_1686713784619{margin-top: 35px !important;}\"][vc_column_inner width=\"1/3\"][vc_single_image image=\"3116\" img_size=\"full\"][/vc_column_inner][vc_column_inner width=\"2/3\"][ultimate_heading main_heading=\"Official toll manufacturer partner\" heading_tag=\"h3\" main_heading_color=\"#039447\" alignment=\"left\"]With the trust and reputation built as a reliable manufacturer of animal feed additives and supplements in the global market, several world-renowned international brands have appointed FARMCHEMIE MANUFACTURERS as the official toll manufacturer partner. FARMCHEMIE MANUFACTURERS exports a wide range of products consisting of premixes, specialty feed additives, oral liquid supplements and pet supplements to various markets in South Asia, East Asia, Middle East and Africa.\r\n\r\nFARMCHEMIE, FEED CHEMIE &amp; FARMCHEMIE MANUFACTURERS currently operate under the ownership of our holding company, DYVESTA.\r\n\r\nDYEVSTA has become the pinnacle of Animal Nutrition and Health.\r\n\r\nDYVESTA is Dynamic, through our continuous evolution, growth and progress. DYVESTA is Diverse, in terms of both our business strategy and our community. DYVESTA is Devoted to our valuable business partners through exceptional service.[/ultimate_heading][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row full_width=\"stretch_row\" equal_height=\"yes\" bg_type=\"image\" parallax_style=\"vcpb-vz-jquery\" bg_image_new=\"id^3226|url^https://farmchemie.yasithawd.com/wp-content/uploads/2023/08/Untitled-design-9.jpg|caption^null|alt^null|title^Untitled design (9)|description^null\" bg_image_repeat=\"no-repeat\" enable_overlay=\"enable_overlay_value\" overlay_color=\"#000000\" overlay_pattern=\"01.png\" overlay_pattern_opacity=\"5\" css=\".vc_custom_1692197039769{margin-top: 35px !important;padding-top: 65px !important;padding-bottom: 100px !important;}\"][vc_column][vc_row_inner equal_height=\"yes\"][vc_column_inner width=\"1/2\"][ult_animation_block animation=\"fadeIn\" animation_duration=\"8\" animation_delay=\"1\" animation_iteration_count=\"1\"][ultimate_heading main_heading=\"Vision\" main_heading_color=\"#039447\" sub_heading_color=\"#039447\"]To be the customers’ first and best choice by ensuring outstanding satisfaction through a well-trained and dedicated team. Prompt and quality solutions to our customers’ requirements will determine the increase of return on investment for us.[/ultimate_heading][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/2\"][ult_animation_block animation=\"fadeIn\" animation_duration=\"8\" animation_delay=\"1\" animation_iteration_count=\"1\"][ultimate_heading main_heading=\"Mission\" main_heading_color=\"#762888\" sub_heading_color=\"#762888\"]To become a world renowned manufacturer of Animal Health products and a trusted partner among our stakeholders for our integrity as well as for providing effective solutions[/ultimate_heading][/ult_animation_block][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row css=\".vc_custom_1684836308288{margin-top: 15px !important;}\"][vc_column][ultimate_heading main_heading=\"Achievements\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;\"][/ultimate_heading][vc_row_inner gap=\"20\"][vc_column_inner width=\"1/2\" css=\".vc_custom_1691995519863{background-color: #f4ab20 !important;border: 1px solid #f4ab20 !important;border-radius: 35px !important;}\"][bsf-info-box icon_type=\"custom\" icon_img=\"id^3117|url^https://farmchemie.yasithawd.com/wp-content/uploads/2023/08/Pink_-H.png|caption^null|alt^null|title^Pink_-H|description^null\" img_width=\"60\" icon_style=\"advanced\" icon_border_style=\"solid\" icon_color_border=\"#ffffff\" icon_border_size=\"1\" icon_border_radius=\"500\" icon_border_spacing=\"1\" title=\"First Free Sale Certificate obtained from Veterinary Drug Control Authority (VDCA) for Veterinary Pharmaceuticals\" title_font_style=\"font-weight:bold;\" title_font_size=\"desktop:20px;\"][/bsf-info-box][/vc_column_inner][vc_column_inner width=\"1/2\" css=\".vc_custom_1691995661095{background-color: #722f8b !important;border: 1px solid #722f8b !important;border-radius: 35px !important;}\"][bsf-info-box icon_type=\"custom\" icon_img=\"id^3117|url^https://farmchemie.yasithawd.com/wp-content/uploads/2023/08/Pink_-H.png|caption^null|alt^null|title^Pink_-H|description^null\" img_width=\"60\" icon_style=\"advanced\" icon_border_style=\"solid\" icon_color_border=\"#ffffff\" icon_border_size=\"1\" icon_border_radius=\"500\" icon_border_spacing=\"1\" title=\"First ISO 9001: 2015 ,WHO-GMP Quality Management systems certified Animal Health company in Sri Lanka since August, 2012\" title_font_style=\"font-weight:bold;\" title_font_color=\"#ffffff\" title_font_size=\"desktop:20px;\"][/bsf-info-box][/vc_column_inner][/vc_row_inner][vc_row_inner gap=\"20\"][vc_column_inner width=\"1/2\" css=\".vc_custom_1691995661095{background-color: #722f8b !important;border: 1px solid #722f8b !important;border-radius: 35px !important;}\"][bsf-info-box icon_type=\"custom\" icon_img=\"id^3117|url^https://farmchemie.yasithawd.com/wp-content/uploads/2023/08/Pink_-H.png|caption^null|alt^null|title^Pink_-H|description^null\" img_width=\"60\" icon_style=\"advanced\" icon_border_style=\"solid\" icon_color_border=\"#ffffff\" icon_border_size=\"1\" icon_border_radius=\"500\" icon_border_spacing=\"1\" title=\"First FAMI-QS certified company in sri lanka\" title_font_style=\"font-weight:bold;\" title_font_color=\"#ffffff\" title_font_size=\"desktop:20px;\"][/bsf-info-box][/vc_column_inner][vc_column_inner width=\"1/2\" css=\".vc_custom_1691995519863{background-color: #f4ab20 !important;border: 1px solid #f4ab20 !important;border-radius: 35px !important;}\"][bsf-info-box icon_type=\"custom\" icon_img=\"id^3117|url^https://farmchemie.yasithawd.com/wp-content/uploads/2023/08/Pink_-H.png|caption^null|alt^null|title^Pink_-H|description^null\" img_width=\"60\" icon_style=\"advanced\" icon_border_style=\"solid\" icon_color_border=\"#ffffff\" icon_border_size=\"1\" icon_border_radius=\"500\" icon_border_spacing=\"1\" title=\"First Certificate of Ethical Trading certified in Livestock industry\" title_font_style=\"font-weight:bold;\" title_font_size=\"desktop:20px;\"][/bsf-info-box][/vc_column_inner][/vc_row_inner][vc_row_inner gap=\"20\"][vc_column_inner width=\"1/4\" css=\".vc_custom_1691996718116{border-radius: 35px !important;}\"][/vc_column_inner][vc_column_inner width=\"2/4\" css=\".vc_custom_1691995519863{background-color: #f4ab20 !important;border: 1px solid #f4ab20 !important;border-radius: 35px !important;}\"][bsf-info-box icon_type=\"custom\" icon_img=\"id^3117|url^https://farmchemie.yasithawd.com/wp-content/uploads/2023/08/Pink_-H.png|caption^null|alt^null|title^Pink_-H|description^null\" img_width=\"60\" icon_style=\"advanced\" icon_border_style=\"solid\" icon_color_border=\"#ffffff\" icon_border_size=\"1\" icon_border_radius=\"500\" icon_border_spacing=\"1\" title=\"First Silver awarded company at National Exports Awards in Livestock industry\" title_font_style=\"font-weight:bold;\" title_font_size=\"desktop:20px;\"][/bsf-info-box][/vc_column_inner][vc_column_inner width=\"1/4\"][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner width=\"1/6\"][/vc_column_inner][vc_column_inner width=\"2/3\"][vc_single_image image=\"3126\" img_size=\"full\" alignment=\"center\"][vc_single_image image=\"3125\" img_size=\"full\" alignment=\"center\"][/vc_column_inner][vc_column_inner width=\"1/6\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row][vc_column][ultimate_heading main_heading=\"Board Of Directors\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;margin-bottom:35px;\"][/ultimate_heading][ultimate_carousel slides_on_desk=\"1\" slides_on_tabs=\"1\" slides_on_mob=\"1\" arrow_style=\"square-bg\" arrow_bg_color=\"#039447\" arrow_color=\"#ffffff\" next_icon=\"ultsl-arrow-right6\" prev_icon=\"ultsl-arrow-left6\" dots_color=\"#039447\" item_animation=\"fadeIn\"][vc_row_inner][vc_column_inner width=\"1/2\"][vc_single_image image=\"3170\" img_size=\"large\" alignment=\"center\" style=\"vc_box_outline_circle_2\" border_color=\"black\" image_hovers=\"false\"][/vc_column_inner][vc_column_inner width=\"1/2\"][ultimate_heading main_heading=\"Quisque sed nibh tristique\" heading_tag=\"h3\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;\"]Duis lorem risus, aliquet a auctor a, venenatis in dui. Praesent et eros et risus dapibus placerat hendrerit cursus magna.[/ultimate_heading][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner width=\"1/2\"][vc_single_image image=\"3171\" img_size=\"large\" alignment=\"center\" style=\"vc_box_outline_circle_2\" border_color=\"black\" image_hovers=\"false\"][/vc_column_inner][vc_column_inner width=\"1/2\"][ultimate_heading main_heading=\"Quisque sed nibh tristique\" heading_tag=\"h3\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;\"]Duis lorem risus, aliquet a auctor a, venenatis in dui. Praesent et eros et risus dapibus placerat hendrerit cursus magna.[/ultimate_heading][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner width=\"1/2\"][vc_single_image image=\"3173\" img_size=\"large\" alignment=\"center\" style=\"vc_box_outline_circle_2\" border_color=\"black\" image_hovers=\"false\"][/vc_column_inner][vc_column_inner width=\"1/2\"][ultimate_heading main_heading=\"Quisque sed nibh tristique\" heading_tag=\"h3\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;\"]Duis lorem risus, aliquet a auctor a, venenatis in dui. Praesent et eros et risus dapibus placerat hendrerit cursus magna.[/ultimate_heading][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner width=\"1/2\"][vc_single_image image=\"3172\" img_size=\"large\" alignment=\"center\" style=\"vc_box_outline_circle_2\" border_color=\"black\" image_hovers=\"false\"][/vc_column_inner][vc_column_inner width=\"1/2\"][ultimate_heading main_heading=\"Quisque sed nibh tristique\" heading_tag=\"h3\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;\"]Duis lorem risus, aliquet a auctor a, venenatis in dui. Praesent et eros et risus dapibus placerat hendrerit cursus magna.[/ultimate_heading][/vc_column_inner][/vc_row_inner][/ultimate_carousel][/vc_column][/vc_row]','About us','','inherit','closed','closed','','2917-revision-v1','','','2023-08-16 14:44:22','2023-08-16 14:44:22','',2917,'https://farmchemie.yasithawd.com/?p=3228',0,'revision','',0),(3266,1,'2023-08-19 01:19:34','2023-08-19 01:19:34','[vc_row full_width=\"stretch_row\" css=\".vc_custom_1689577528817{padding-bottom: 50px !important;}\"][vc_column css=\".vc_custom_1689577454678{margin-bottom: 50px !important;}\"][vc_row_inner css=\".vc_custom_1692407941633{border-bottom-width: 1px !important;border-bottom-color: #079547 !important;border-bottom-style: solid !important;border-radius: 1px !important;}\"][vc_column_inner width=\"1/2\"][ultimate_heading main_heading=\"Feed Additives\" heading_tag=\"h3\" main_heading_color=\"#079547\" sub_heading_color=\"#792c8a\" alignment=\"left\"]<strong>Premixes/ Specialty Feed Additives/ Dilution of Active Ingredients/ Concentrates</strong><strong>\r\n</strong>Pack sizes – 1,000 kg, 500 kg, 50 kg, 25 kg, 15 kg, 10 kg, 5 kg, 1kg[/ultimate_heading][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_single_image image=\"3129\" img_size=\"full\"][/vc_column_inner][/vc_row_inner][vc_row_inner css=\".vc_custom_1692407949383{border-bottom-width: 1px !important;border-bottom-color: #079547 !important;border-bottom-style: solid !important;border-radius: 1px !important;}\"][vc_column_inner width=\"1/2\"][vc_single_image image=\"3162\" img_size=\"full\"][/vc_column_inner][vc_column_inner width=\"1/2\"][ultimate_heading main_heading=\"Oral Supplements\" heading_tag=\"h3\" main_heading_color=\"#079547\" sub_heading_color=\"#792c8a\" alignment=\"left\"]<strong>Liquids</strong><strong>\r\n</strong>Pack sizes – 1,000 L, 250 L, 50 L, 25 L, 5 L, 1 L, 500 mL, 250 mL, 100 mL, 50 mL\r\n\r\n<strong>Water soluble powders</strong><strong>\r\n</strong>Pack sizes – 25 kg, 15 kg, 10 kg, 5 kg, 1kg[/ultimate_heading][/vc_column_inner][/vc_row_inner][vc_row_inner css=\".vc_custom_1692407957943{border-bottom-width: 1px !important;border-bottom-color: #079547 !important;border-bottom-style: solid !important;border-radius: 1px !important;}\"][vc_column_inner width=\"1/2\"][ultimate_heading main_heading=\"Tablets\" heading_tag=\"h3\" main_heading_color=\"#079547\" sub_heading_color=\"#792c8a\" alignment=\"left\"]<strong>Supplementary tablets for pet care</strong>\r\nTablet sizes – 1 to 5 g\r\n\r\n<strong>Boluses</strong><strong>\r\n</strong>Tablet sizes – 5 to 25 g[/ultimate_heading][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_single_image image=\"3163\" img_size=\"full\"][/vc_column_inner][/vc_row_inner][vc_row_inner css=\".vc_custom_1692407970279{border-bottom-width: 1px !important;border-bottom-color: #079547 !important;border-bottom-style: solid !important;border-radius: 1px !important;}\"][vc_column_inner width=\"1/2\"][vc_single_image image=\"3164\" img_size=\"full\"][/vc_column_inner][vc_column_inner width=\"1/2\"][ultimate_heading main_heading=\"Veterinary Pharmaceuticals\" heading_tag=\"h3\" main_heading_color=\"#079547\" sub_heading_color=\"#792c8a\" alignment=\"left\"]<strong>Deworming Solutions/ Antibiotics/ Antimicrobials/ Wound care solutions</strong><strong>\r\n</strong>Form – Liquid, WSP[/ultimate_heading][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row full_width=\"stretch_row_content\" bg_type=\"image\" parallax_style=\"vcpb-vz-jquery\" bg_image_new=\"id^3234|url^https://farmchemie.yasithawd.com/wp-content/uploads/2023/08/123-1.png|caption^null|alt^null|title^123 (1)|description^null\" bg_image_repeat=\"no-repeat\" css=\".vc_custom_1692198551378{padding-top: 50px !important;padding-bottom: 50px !important;}\"][vc_column][ultimate_heading main_heading=\"Our manufacturing facility is certified with FAMI-QS, WHO GMP &amp; ISO 9001:2015 International Quality standards.\" main_heading_color=\"#079547\" sub_heading_color=\"#792c8a\"]We select only the <strong><em>best</em></strong> and <strong><em>most reputed</em></strong> Raw Material &amp; Packing Material Suppliers for the production of our finished goods.[/ultimate_heading][vc_row_inner equal_height=\"yes\" content_placement=\"middle\"][vc_column_inner width=\"1/5\" offset=\"vc_hidden-lg vc_hidden-md\"][vc_single_image image=\"3062\" img_size=\"full\" alignment=\"center\"][/vc_column_inner][vc_column_inner width=\"1/5\" css=\".vc_custom_1691846530645{border-right-width: 1px !important;border-left-width: 1px !important;border-left-color: #000000 !important;border-left-style: solid !important;border-right-color: #000000 !important;border-right-style: solid !important;border-radius: 1px !important;}\" offset=\"vc_hidden-lg vc_hidden-md\"][vc_single_image image=\"3063\" img_size=\"full\" alignment=\"center\"][/vc_column_inner][vc_column_inner width=\"1/5\" offset=\"vc_hidden-lg vc_hidden-md\"][vc_single_image image=\"3064\" img_size=\"full\" alignment=\"center\"][/vc_column_inner][vc_column_inner width=\"1/5\" css=\".vc_custom_1691846545469{border-right-width: 1px !important;border-left-width: 1px !important;border-left-color: #000000 !important;border-left-style: solid !important;border-right-color: #000000 !important;border-right-style: solid !important;border-radius: 1px !important;}\" offset=\"vc_hidden-lg vc_hidden-md\"][vc_single_image image=\"3065\" img_size=\"full\" alignment=\"center\"][/vc_column_inner][vc_column_inner width=\"1/5\" offset=\"vc_hidden-lg vc_hidden-md\"][vc_single_image image=\"3066\" img_size=\"full\" alignment=\"center\"][/vc_column_inner][/vc_row_inner][vc_row_inner equal_height=\"yes\" content_placement=\"middle\"][vc_column_inner width=\"1/4\" css=\".vc_custom_1691846563021{border-right-width: 1px !important;border-right-color: #000000 !important;border-right-style: solid !important;border-radius: 1px !important;}\" offset=\"vc_hidden-lg vc_hidden-md\"][vc_single_image image=\"3067\" img_size=\"full\" alignment=\"center\"][/vc_column_inner][vc_column_inner width=\"1/4\" css=\".vc_custom_1691846569845{border-right-width: 1px !important;border-right-color: #000000 !important;border-right-style: solid !important;border-radius: 1px !important;}\" offset=\"vc_hidden-lg vc_hidden-md\"][vc_single_image image=\"3068\" img_size=\"full\" alignment=\"center\"][/vc_column_inner][vc_column_inner width=\"1/4\" css=\".vc_custom_1691846576949{border-right-width: 1px !important;border-right-color: #000000 !important;border-right-style: solid !important;border-radius: 1px !important;}\" offset=\"vc_hidden-lg vc_hidden-md\"][vc_single_image image=\"3069\" img_size=\"full\" alignment=\"center\"][/vc_column_inner][vc_column_inner width=\"1/4\" offset=\"vc_hidden-lg vc_hidden-md\"][vc_single_image image=\"3070\" img_size=\"full\" alignment=\"center\"][/vc_column_inner][/vc_row_inner][vc_row_inner disable_element=\"yes\"][vc_column_inner width=\"1/3\"][vc_single_image image=\"2981\" img_size=\"full\"][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_single_image image=\"2982\" img_size=\"full\"][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_single_image image=\"2983\" img_size=\"full\"][/vc_column_inner][/vc_row_inner][vc_row_inner disable_element=\"yes\"][vc_column_inner width=\"1/6\"][/vc_column_inner][vc_column_inner width=\"2/3\"][vc_single_image image=\"2984\" img_size=\"full\"][/vc_column_inner][vc_column_inner width=\"1/6\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row full_width=\"stretch_row_content_no_spaces\"][vc_column offset=\"vc_hidden-sm vc_hidden-xs\"][vc_single_image image=\"3120\" img_size=\"full\" alignment=\"center\"][/vc_column][/vc_row][vc_row css=\".vc_custom_1689578794814{padding-top: 50px !important;padding-bottom: 50px !important;}\"][vc_column][ultimate_heading main_heading=\"Supplier selection and procurement criteria\" main_heading_color=\"#079547\" sub_heading_color=\"#792c8a\" alignment=\"left\"][/ultimate_heading][vc_row_inner css=\".vc_custom_1689578812611{margin-top: 50px !important;}\"][vc_column_inner width=\"1/2\"][dt_vc_list dividers=\"false\"]\r\n<ul>\r\n 	<li>Check supplier’s quality certification to ensure raw material quality</li>\r\n 	<li>New vendor validation protocol - In case of a change in the supplier, obtain samples and validate in the lab</li>\r\n</ul>\r\n[/dt_vc_list][/vc_column_inner][vc_column_inner width=\"1/2\"][dt_vc_list dividers=\"false\"]\r\n<ul>\r\n 	<li>Income inspection carried out on every consignment (Tested for Chemical Assay &amp; Physical Properties)</li>\r\n 	<li>Quality department approval required to be used in the production</li>\r\n</ul>\r\n[/dt_vc_list][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row css=\".vc_custom_1689578794814{padding-top: 50px !important;padding-bottom: 50px !important;}\"][vc_column][ultimate_heading main_heading=\"Please contact us to start your Marketing Journey with a reliable manufacturing partnership with FARMCHEMIE\" heading_tag=\"h3\" main_heading_color=\"#079547\" sub_heading_color=\"#792c8a\" alignment=\"left\"][/ultimate_heading][vc_row_inner css=\".vc_custom_1689578812611{margin-top: 50px !important;}\"][vc_column_inner width=\"1/2\"][bsf-info-box icon_size=\"32\" title=\"International Markets\" pos=\"square_box\" box_border_style=\"solid\" box_border_width=\"1\" box_border_color=\"#792c8a\" title_font_color=\"#079547\" desc_font_color=\"#792c8a\" title_font_size=\"desktop:25px;\"]<strong>Email :</strong> <a href=\"mailto:sales.export@farmchemie.com\"><u>sales.export@farmchemie.com</u></a>\r\n<strong>Tel No :</strong> + 94 76 577 2975[/bsf-info-box][/vc_column_inner][vc_column_inner width=\"1/2\"][bsf-info-box icon_size=\"32\" title=\"Sri Lankan Market\" pos=\"square_box\" box_border_style=\"solid\" box_border_width=\"1\" box_border_color=\"#079547\" title_font_color=\"#079547\" desc_font_color=\"#792c8a\" title_font_size=\"desktop:25px;\"]Email : <a href=\"mailto:sales.local@farmchemie.com\"><u>sales.local@farmchemie.com</u></a>\r\nTel No : +94 74 224 6947[/bsf-info-box][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row]','Manufacturing','','inherit','closed','closed','','2964-revision-v1','','','2023-08-19 01:19:34','2023-08-19 01:19:34','',2964,'https://farmchemie.yasithawd.com/?p=3266',0,'revision','',0),(3229,1,'2023-08-16 14:53:01','2023-08-16 14:53:01','[vc_row full_width=\"stretch_row\" css=\".vc_custom_1689577528817{padding-bottom: 50px !important;}\"][vc_column css=\".vc_custom_1689577454678{margin-bottom: 50px !important;}\"][vc_row_inner css=\".vc_custom_1689577559805{border-bottom-width: 1px !important;padding-top: 35px !important;padding-bottom: 35px !important;border-bottom-color: #079547 !important;border-bottom-style: solid !important;border-radius: 1px !important;}\"][vc_column_inner width=\"1/2\"][ultimate_heading main_heading=\"Feed Additives\" heading_tag=\"h3\" main_heading_color=\"#079547\" sub_heading_color=\"#792c8a\" alignment=\"left\"]<strong>Premixes/ Specialty Feed Additives/ Dilution of Active Ingredients/ Concentrates</strong><strong>\r\n</strong>Pack sizes – 1,000 kg, 500 kg, 50 kg, 25 kg, 15 kg, 10 kg, 5 kg, 1kg[/ultimate_heading][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_single_image image=\"3129\" img_size=\"full\"][/vc_column_inner][/vc_row_inner][vc_row_inner css=\".vc_custom_1689577609020{border-bottom-width: 1px !important;padding-top: 35px !important;padding-bottom: 35px !important;border-bottom-color: #079547 !important;border-bottom-style: solid !important;border-radius: 1px !important;}\"][vc_column_inner width=\"1/2\"][vc_single_image image=\"3162\" img_size=\"full\"][/vc_column_inner][vc_column_inner width=\"1/2\"][ultimate_heading main_heading=\"Oral Supplements\" heading_tag=\"h3\" main_heading_color=\"#079547\" sub_heading_color=\"#792c8a\" alignment=\"left\"]<strong>Liquids</strong><strong>\r\n</strong>Pack sizes – 1,000 L, 250 L, 50 L, 25 L, 5 L, 1 L, 500 mL, 250 mL, 100 mL, 50 mL\r\n\r\n<strong>Water soluble powders</strong><strong>\r\n</strong>Pack sizes – 25 kg, 15 kg, 10 kg, 5 kg, 1kg[/ultimate_heading][/vc_column_inner][/vc_row_inner][vc_row_inner css=\".vc_custom_1689577609020{border-bottom-width: 1px !important;padding-top: 35px !important;padding-bottom: 35px !important;border-bottom-color: #079547 !important;border-bottom-style: solid !important;border-radius: 1px !important;}\"][vc_column_inner width=\"1/2\"][ultimate_heading main_heading=\"Tablets\" heading_tag=\"h3\" main_heading_color=\"#079547\" sub_heading_color=\"#792c8a\" alignment=\"left\"]<strong>Supplementary tablets for pet care</strong>\r\nTablet sizes – 1 to 5 g\r\n\r\n<strong>Boluses</strong><strong>\r\n</strong>Tablet sizes – 5 to 25 g[/ultimate_heading][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_single_image image=\"3163\" img_size=\"full\"][/vc_column_inner][/vc_row_inner][vc_row_inner css=\".vc_custom_1689577609020{border-bottom-width: 1px !important;padding-top: 35px !important;padding-bottom: 35px !important;border-bottom-color: #079547 !important;border-bottom-style: solid !important;border-radius: 1px !important;}\"][vc_column_inner width=\"1/2\"][vc_single_image image=\"3164\" img_size=\"full\"][/vc_column_inner][vc_column_inner width=\"1/2\"][ultimate_heading main_heading=\"Veterinary Pharmaceuticals\" heading_tag=\"h3\" main_heading_color=\"#079547\" sub_heading_color=\"#792c8a\" alignment=\"left\"]<strong>Deworming Solutions/ Antibiotics/ Antimicrobials/ Wound care solutions</strong><strong>\r\n</strong>Form – Liquid, WSP[/ultimate_heading][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row full_width=\"stretch_row\" bg_type=\"image\" parallax_style=\"vcpb-vz-jquery\" bg_image_new=\"id^3226|url^https://farmchemie.yasithawd.com/wp-content/uploads/2023/08/Untitled-design-9.jpg|caption^null|alt^null|title^Untitled design (9)|description^null\" bg_image_repeat=\"no-repeat\" css=\".vc_custom_1692197574696{padding-top: 50px !important;padding-bottom: 50px !important;}\"][vc_column][ultimate_heading main_heading=\"Our manufacturing facility is certified with FAMI-QS, WHO GMP &amp; ISO 9001:2015 International Quality standards.\" main_heading_color=\"#079547\" sub_heading_color=\"#792c8a\" alignment=\"left\"]We select only the <strong><em>best</em></strong> and <strong><em>most reputed</em></strong> Raw Material &amp; Packing Material Suppliers for the production of our finished goods.[/ultimate_heading][vc_row_inner equal_height=\"yes\" content_placement=\"middle\"][vc_column_inner width=\"1/5\" offset=\"vc_hidden-lg vc_hidden-md\"][vc_single_image image=\"3062\" img_size=\"full\" alignment=\"center\"][/vc_column_inner][vc_column_inner width=\"1/5\" css=\".vc_custom_1691846530645{border-right-width: 1px !important;border-left-width: 1px !important;border-left-color: #000000 !important;border-left-style: solid !important;border-right-color: #000000 !important;border-right-style: solid !important;border-radius: 1px !important;}\" offset=\"vc_hidden-lg vc_hidden-md\"][vc_single_image image=\"3063\" img_size=\"full\" alignment=\"center\"][/vc_column_inner][vc_column_inner width=\"1/5\" offset=\"vc_hidden-lg vc_hidden-md\"][vc_single_image image=\"3064\" img_size=\"full\" alignment=\"center\"][/vc_column_inner][vc_column_inner width=\"1/5\" css=\".vc_custom_1691846545469{border-right-width: 1px !important;border-left-width: 1px !important;border-left-color: #000000 !important;border-left-style: solid !important;border-right-color: #000000 !important;border-right-style: solid !important;border-radius: 1px !important;}\" offset=\"vc_hidden-lg vc_hidden-md\"][vc_single_image image=\"3065\" img_size=\"full\" alignment=\"center\"][/vc_column_inner][vc_column_inner width=\"1/5\" offset=\"vc_hidden-lg vc_hidden-md\"][vc_single_image image=\"3066\" img_size=\"full\" alignment=\"center\"][/vc_column_inner][/vc_row_inner][vc_row_inner equal_height=\"yes\" content_placement=\"middle\"][vc_column_inner width=\"1/4\" css=\".vc_custom_1691846563021{border-right-width: 1px !important;border-right-color: #000000 !important;border-right-style: solid !important;border-radius: 1px !important;}\" offset=\"vc_hidden-lg vc_hidden-md\"][vc_single_image image=\"3067\" img_size=\"full\" alignment=\"center\"][/vc_column_inner][vc_column_inner width=\"1/4\" css=\".vc_custom_1691846569845{border-right-width: 1px !important;border-right-color: #000000 !important;border-right-style: solid !important;border-radius: 1px !important;}\" offset=\"vc_hidden-lg vc_hidden-md\"][vc_single_image image=\"3068\" img_size=\"full\" alignment=\"center\"][/vc_column_inner][vc_column_inner width=\"1/4\" css=\".vc_custom_1691846576949{border-right-width: 1px !important;border-right-color: #000000 !important;border-right-style: solid !important;border-radius: 1px !important;}\" offset=\"vc_hidden-lg vc_hidden-md\"][vc_single_image image=\"3069\" img_size=\"full\" alignment=\"center\"][/vc_column_inner][vc_column_inner width=\"1/4\" offset=\"vc_hidden-lg vc_hidden-md\"][vc_single_image image=\"3070\" img_size=\"full\" alignment=\"center\"][/vc_column_inner][/vc_row_inner][vc_row_inner disable_element=\"yes\"][vc_column_inner width=\"1/3\"][vc_single_image image=\"2981\" img_size=\"full\"][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_single_image image=\"2982\" img_size=\"full\"][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_single_image image=\"2983\" img_size=\"full\"][/vc_column_inner][/vc_row_inner][vc_row_inner disable_element=\"yes\"][vc_column_inner width=\"1/6\"][/vc_column_inner][vc_column_inner width=\"2/3\"][vc_single_image image=\"2984\" img_size=\"full\"][/vc_column_inner][vc_column_inner width=\"1/6\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row full_width=\"stretch_row_content_no_spaces\"][vc_column offset=\"vc_hidden-sm vc_hidden-xs\"][vc_single_image image=\"3120\" img_size=\"full\" alignment=\"center\"][/vc_column][/vc_row][vc_row css=\".vc_custom_1689578794814{padding-top: 50px !important;padding-bottom: 50px !important;}\"][vc_column][ultimate_heading main_heading=\"Supplier selection and procurement criteria\" main_heading_color=\"#079547\" sub_heading_color=\"#792c8a\" alignment=\"left\"][/ultimate_heading][vc_row_inner css=\".vc_custom_1689578812611{margin-top: 50px !important;}\"][vc_column_inner width=\"1/2\"][dt_vc_list dividers=\"false\"]\r\n<ul>\r\n 	<li>Check supplier’s quality certification to ensure raw material quality</li>\r\n 	<li>New vendor validation protocol - In case of a change in the supplier, obtain samples and validate in the lab</li>\r\n</ul>\r\n[/dt_vc_list][/vc_column_inner][vc_column_inner width=\"1/2\"][dt_vc_list dividers=\"false\"]\r\n<ul>\r\n 	<li>Income inspection carried out on every consignment (Tested for Chemical Assay &amp; Physical Properties)</li>\r\n 	<li>Quality department approval required to be used in the production</li>\r\n</ul>\r\n[/dt_vc_list][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row css=\".vc_custom_1689578794814{padding-top: 50px !important;padding-bottom: 50px !important;}\"][vc_column][ultimate_heading main_heading=\"Please contact us to start your Marketing Journey with a reliable manufacturing partnership with FARMCHEMIE\" heading_tag=\"h3\" main_heading_color=\"#079547\" sub_heading_color=\"#792c8a\" alignment=\"left\"][/ultimate_heading][vc_row_inner css=\".vc_custom_1689578812611{margin-top: 50px !important;}\"][vc_column_inner width=\"1/2\"][bsf-info-box icon_size=\"32\" title=\"International Markets\" pos=\"square_box\" box_border_style=\"solid\" box_border_width=\"1\" box_border_color=\"#792c8a\" title_font_color=\"#079547\" desc_font_color=\"#792c8a\" title_font_size=\"desktop:25px;\"]<strong>Email :</strong> <a href=\"mailto:sales.export@farmchemie.com\"><u>sales.export@farmchemie.com</u></a>\r\n<strong>Tel No :</strong> + 94 76 577 2975[/bsf-info-box][/vc_column_inner][vc_column_inner width=\"1/2\"][bsf-info-box icon_size=\"32\" title=\"Sri Lankan Market\" pos=\"square_box\" box_border_style=\"solid\" box_border_width=\"1\" box_border_color=\"#079547\" title_font_color=\"#079547\" desc_font_color=\"#792c8a\" title_font_size=\"desktop:25px;\"]Email : <a href=\"mailto:sales.local@farmchemie.com\"><u>sales.local@farmchemie.com</u></a>\r\nTel No : +94 74 224 6947[/bsf-info-box][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row]','Manufacturing','','inherit','closed','closed','','2964-revision-v1','','','2023-08-16 14:53:01','2023-08-16 14:53:01','',2964,'https://farmchemie.yasithawd.com/?p=3229',0,'revision','',0),(3233,1,'2023-08-16 15:05:34','2023-08-16 15:05:34','[vc_row full_width=\"stretch_row\" css=\".vc_custom_1689577528817{padding-bottom: 50px !important;}\"][vc_column css=\".vc_custom_1689577454678{margin-bottom: 50px !important;}\"][vc_row_inner css=\".vc_custom_1689577559805{border-bottom-width: 1px !important;padding-top: 35px !important;padding-bottom: 35px !important;border-bottom-color: #079547 !important;border-bottom-style: solid !important;border-radius: 1px !important;}\"][vc_column_inner width=\"1/2\"][ultimate_heading main_heading=\"Feed Additives\" heading_tag=\"h3\" main_heading_color=\"#079547\" sub_heading_color=\"#792c8a\" alignment=\"left\"]<strong>Premixes/ Specialty Feed Additives/ Dilution of Active Ingredients/ Concentrates</strong><strong>\r\n</strong>Pack sizes – 1,000 kg, 500 kg, 50 kg, 25 kg, 15 kg, 10 kg, 5 kg, 1kg[/ultimate_heading][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_single_image image=\"3129\" img_size=\"full\"][/vc_column_inner][/vc_row_inner][vc_row_inner css=\".vc_custom_1689577609020{border-bottom-width: 1px !important;padding-top: 35px !important;padding-bottom: 35px !important;border-bottom-color: #079547 !important;border-bottom-style: solid !important;border-radius: 1px !important;}\"][vc_column_inner width=\"1/2\"][vc_single_image image=\"3162\" img_size=\"full\"][/vc_column_inner][vc_column_inner width=\"1/2\"][ultimate_heading main_heading=\"Oral Supplements\" heading_tag=\"h3\" main_heading_color=\"#079547\" sub_heading_color=\"#792c8a\" alignment=\"left\"]<strong>Liquids</strong><strong>\r\n</strong>Pack sizes – 1,000 L, 250 L, 50 L, 25 L, 5 L, 1 L, 500 mL, 250 mL, 100 mL, 50 mL\r\n\r\n<strong>Water soluble powders</strong><strong>\r\n</strong>Pack sizes – 25 kg, 15 kg, 10 kg, 5 kg, 1kg[/ultimate_heading][/vc_column_inner][/vc_row_inner][vc_row_inner css=\".vc_custom_1689577609020{border-bottom-width: 1px !important;padding-top: 35px !important;padding-bottom: 35px !important;border-bottom-color: #079547 !important;border-bottom-style: solid !important;border-radius: 1px !important;}\"][vc_column_inner width=\"1/2\"][ultimate_heading main_heading=\"Tablets\" heading_tag=\"h3\" main_heading_color=\"#079547\" sub_heading_color=\"#792c8a\" alignment=\"left\"]<strong>Supplementary tablets for pet care</strong>\r\nTablet sizes – 1 to 5 g\r\n\r\n<strong>Boluses</strong><strong>\r\n</strong>Tablet sizes – 5 to 25 g[/ultimate_heading][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_single_image image=\"3163\" img_size=\"full\"][/vc_column_inner][/vc_row_inner][vc_row_inner css=\".vc_custom_1689577609020{border-bottom-width: 1px !important;padding-top: 35px !important;padding-bottom: 35px !important;border-bottom-color: #079547 !important;border-bottom-style: solid !important;border-radius: 1px !important;}\"][vc_column_inner width=\"1/2\"][vc_single_image image=\"3164\" img_size=\"full\"][/vc_column_inner][vc_column_inner width=\"1/2\"][ultimate_heading main_heading=\"Veterinary Pharmaceuticals\" heading_tag=\"h3\" main_heading_color=\"#079547\" sub_heading_color=\"#792c8a\" alignment=\"left\"]<strong>Deworming Solutions/ Antibiotics/ Antimicrobials/ Wound care solutions</strong><strong>\r\n</strong>Form – Liquid, WSP[/ultimate_heading][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row full_width=\"stretch_row_content\" bg_type=\"image\" parallax_style=\"vcpb-vz-jquery\" bg_image_new=\"id^3232|url^https://farmchemie.yasithawd.com/wp-content/uploads/2023/08/123.png|caption^null|alt^null|title^123|description^null\" bg_image_repeat=\"no-repeat\" css=\".vc_custom_1692198325204{padding-top: 50px !important;padding-bottom: 50px !important;}\"][vc_column][ultimate_heading main_heading=\"Our manufacturing facility is certified with FAMI-QS, WHO GMP &amp; ISO 9001:2015 International Quality standards.\" main_heading_color=\"#079547\" sub_heading_color=\"#792c8a\"]We select only the <strong><em>best</em></strong> and <strong><em>most reputed</em></strong> Raw Material &amp; Packing Material Suppliers for the production of our finished goods.[/ultimate_heading][vc_row_inner equal_height=\"yes\" content_placement=\"middle\"][vc_column_inner width=\"1/5\" offset=\"vc_hidden-lg vc_hidden-md\"][vc_single_image image=\"3062\" img_size=\"full\" alignment=\"center\"][/vc_column_inner][vc_column_inner width=\"1/5\" css=\".vc_custom_1691846530645{border-right-width: 1px !important;border-left-width: 1px !important;border-left-color: #000000 !important;border-left-style: solid !important;border-right-color: #000000 !important;border-right-style: solid !important;border-radius: 1px !important;}\" offset=\"vc_hidden-lg vc_hidden-md\"][vc_single_image image=\"3063\" img_size=\"full\" alignment=\"center\"][/vc_column_inner][vc_column_inner width=\"1/5\" offset=\"vc_hidden-lg vc_hidden-md\"][vc_single_image image=\"3064\" img_size=\"full\" alignment=\"center\"][/vc_column_inner][vc_column_inner width=\"1/5\" css=\".vc_custom_1691846545469{border-right-width: 1px !important;border-left-width: 1px !important;border-left-color: #000000 !important;border-left-style: solid !important;border-right-color: #000000 !important;border-right-style: solid !important;border-radius: 1px !important;}\" offset=\"vc_hidden-lg vc_hidden-md\"][vc_single_image image=\"3065\" img_size=\"full\" alignment=\"center\"][/vc_column_inner][vc_column_inner width=\"1/5\" offset=\"vc_hidden-lg vc_hidden-md\"][vc_single_image image=\"3066\" img_size=\"full\" alignment=\"center\"][/vc_column_inner][/vc_row_inner][vc_row_inner equal_height=\"yes\" content_placement=\"middle\"][vc_column_inner width=\"1/4\" css=\".vc_custom_1691846563021{border-right-width: 1px !important;border-right-color: #000000 !important;border-right-style: solid !important;border-radius: 1px !important;}\" offset=\"vc_hidden-lg vc_hidden-md\"][vc_single_image image=\"3067\" img_size=\"full\" alignment=\"center\"][/vc_column_inner][vc_column_inner width=\"1/4\" css=\".vc_custom_1691846569845{border-right-width: 1px !important;border-right-color: #000000 !important;border-right-style: solid !important;border-radius: 1px !important;}\" offset=\"vc_hidden-lg vc_hidden-md\"][vc_single_image image=\"3068\" img_size=\"full\" alignment=\"center\"][/vc_column_inner][vc_column_inner width=\"1/4\" css=\".vc_custom_1691846576949{border-right-width: 1px !important;border-right-color: #000000 !important;border-right-style: solid !important;border-radius: 1px !important;}\" offset=\"vc_hidden-lg vc_hidden-md\"][vc_single_image image=\"3069\" img_size=\"full\" alignment=\"center\"][/vc_column_inner][vc_column_inner width=\"1/4\" offset=\"vc_hidden-lg vc_hidden-md\"][vc_single_image image=\"3070\" img_size=\"full\" alignment=\"center\"][/vc_column_inner][/vc_row_inner][vc_row_inner disable_element=\"yes\"][vc_column_inner width=\"1/3\"][vc_single_image image=\"2981\" img_size=\"full\"][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_single_image image=\"2982\" img_size=\"full\"][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_single_image image=\"2983\" img_size=\"full\"][/vc_column_inner][/vc_row_inner][vc_row_inner disable_element=\"yes\"][vc_column_inner width=\"1/6\"][/vc_column_inner][vc_column_inner width=\"2/3\"][vc_single_image image=\"2984\" img_size=\"full\"][/vc_column_inner][vc_column_inner width=\"1/6\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row full_width=\"stretch_row_content_no_spaces\"][vc_column offset=\"vc_hidden-sm vc_hidden-xs\"][vc_single_image image=\"3120\" img_size=\"full\" alignment=\"center\"][/vc_column][/vc_row][vc_row css=\".vc_custom_1689578794814{padding-top: 50px !important;padding-bottom: 50px !important;}\"][vc_column][ultimate_heading main_heading=\"Supplier selection and procurement criteria\" main_heading_color=\"#079547\" sub_heading_color=\"#792c8a\" alignment=\"left\"][/ultimate_heading][vc_row_inner css=\".vc_custom_1689578812611{margin-top: 50px !important;}\"][vc_column_inner width=\"1/2\"][dt_vc_list dividers=\"false\"]\r\n<ul>\r\n 	<li>Check supplier’s quality certification to ensure raw material quality</li>\r\n 	<li>New vendor validation protocol - In case of a change in the supplier, obtain samples and validate in the lab</li>\r\n</ul>\r\n[/dt_vc_list][/vc_column_inner][vc_column_inner width=\"1/2\"][dt_vc_list dividers=\"false\"]\r\n<ul>\r\n 	<li>Income inspection carried out on every consignment (Tested for Chemical Assay &amp; Physical Properties)</li>\r\n 	<li>Quality department approval required to be used in the production</li>\r\n</ul>\r\n[/dt_vc_list][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row css=\".vc_custom_1689578794814{padding-top: 50px !important;padding-bottom: 50px !important;}\"][vc_column][ultimate_heading main_heading=\"Please contact us to start your Marketing Journey with a reliable manufacturing partnership with FARMCHEMIE\" heading_tag=\"h3\" main_heading_color=\"#079547\" sub_heading_color=\"#792c8a\" alignment=\"left\"][/ultimate_heading][vc_row_inner css=\".vc_custom_1689578812611{margin-top: 50px !important;}\"][vc_column_inner width=\"1/2\"][bsf-info-box icon_size=\"32\" title=\"International Markets\" pos=\"square_box\" box_border_style=\"solid\" box_border_width=\"1\" box_border_color=\"#792c8a\" title_font_color=\"#079547\" desc_font_color=\"#792c8a\" title_font_size=\"desktop:25px;\"]<strong>Email :</strong> <a href=\"mailto:sales.export@farmchemie.com\"><u>sales.export@farmchemie.com</u></a>\r\n<strong>Tel No :</strong> + 94 76 577 2975[/bsf-info-box][/vc_column_inner][vc_column_inner width=\"1/2\"][bsf-info-box icon_size=\"32\" title=\"Sri Lankan Market\" pos=\"square_box\" box_border_style=\"solid\" box_border_width=\"1\" box_border_color=\"#079547\" title_font_color=\"#079547\" desc_font_color=\"#792c8a\" title_font_size=\"desktop:25px;\"]Email : <a href=\"mailto:sales.local@farmchemie.com\"><u>sales.local@farmchemie.com</u></a>\r\nTel No : +94 74 224 6947[/bsf-info-box][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row]','Manufacturing','','inherit','closed','closed','','2964-revision-v1','','','2023-08-16 15:05:34','2023-08-16 15:05:34','',2964,'https://farmchemie.yasithawd.com/?p=3233',0,'revision','',0),(3230,1,'2023-08-16 14:57:36','2023-08-16 14:57:36','[vc_row full_width=\"stretch_row\" css=\".vc_custom_1689577528817{padding-bottom: 50px !important;}\"][vc_column css=\".vc_custom_1689577454678{margin-bottom: 50px !important;}\"][vc_row_inner css=\".vc_custom_1689577559805{border-bottom-width: 1px !important;padding-top: 35px !important;padding-bottom: 35px !important;border-bottom-color: #079547 !important;border-bottom-style: solid !important;border-radius: 1px !important;}\"][vc_column_inner width=\"1/2\"][ultimate_heading main_heading=\"Feed Additives\" heading_tag=\"h3\" main_heading_color=\"#079547\" sub_heading_color=\"#792c8a\" alignment=\"left\"]<strong>Premixes/ Specialty Feed Additives/ Dilution of Active Ingredients/ Concentrates</strong><strong>\r\n</strong>Pack sizes – 1,000 kg, 500 kg, 50 kg, 25 kg, 15 kg, 10 kg, 5 kg, 1kg[/ultimate_heading][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_single_image image=\"3129\" img_size=\"full\"][/vc_column_inner][/vc_row_inner][vc_row_inner css=\".vc_custom_1689577609020{border-bottom-width: 1px !important;padding-top: 35px !important;padding-bottom: 35px !important;border-bottom-color: #079547 !important;border-bottom-style: solid !important;border-radius: 1px !important;}\"][vc_column_inner width=\"1/2\"][vc_single_image image=\"3162\" img_size=\"full\"][/vc_column_inner][vc_column_inner width=\"1/2\"][ultimate_heading main_heading=\"Oral Supplements\" heading_tag=\"h3\" main_heading_color=\"#079547\" sub_heading_color=\"#792c8a\" alignment=\"left\"]<strong>Liquids</strong><strong>\r\n</strong>Pack sizes – 1,000 L, 250 L, 50 L, 25 L, 5 L, 1 L, 500 mL, 250 mL, 100 mL, 50 mL\r\n\r\n<strong>Water soluble powders</strong><strong>\r\n</strong>Pack sizes – 25 kg, 15 kg, 10 kg, 5 kg, 1kg[/ultimate_heading][/vc_column_inner][/vc_row_inner][vc_row_inner css=\".vc_custom_1689577609020{border-bottom-width: 1px !important;padding-top: 35px !important;padding-bottom: 35px !important;border-bottom-color: #079547 !important;border-bottom-style: solid !important;border-radius: 1px !important;}\"][vc_column_inner width=\"1/2\"][ultimate_heading main_heading=\"Tablets\" heading_tag=\"h3\" main_heading_color=\"#079547\" sub_heading_color=\"#792c8a\" alignment=\"left\"]<strong>Supplementary tablets for pet care</strong>\r\nTablet sizes – 1 to 5 g\r\n\r\n<strong>Boluses</strong><strong>\r\n</strong>Tablet sizes – 5 to 25 g[/ultimate_heading][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_single_image image=\"3163\" img_size=\"full\"][/vc_column_inner][/vc_row_inner][vc_row_inner css=\".vc_custom_1689577609020{border-bottom-width: 1px !important;padding-top: 35px !important;padding-bottom: 35px !important;border-bottom-color: #079547 !important;border-bottom-style: solid !important;border-radius: 1px !important;}\"][vc_column_inner width=\"1/2\"][vc_single_image image=\"3164\" img_size=\"full\"][/vc_column_inner][vc_column_inner width=\"1/2\"][ultimate_heading main_heading=\"Veterinary Pharmaceuticals\" heading_tag=\"h3\" main_heading_color=\"#079547\" sub_heading_color=\"#792c8a\" alignment=\"left\"]<strong>Deworming Solutions/ Antibiotics/ Antimicrobials/ Wound care solutions</strong><strong>\r\n</strong>Form – Liquid, WSP[/ultimate_heading][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row full_width=\"stretch_row_content\" bg_type=\"image\" parallax_style=\"vcpb-vz-jquery\" bg_image_new=\"id^3109|url^https://farmchemie.yasithawd.com/wp-content/uploads/2023/08/CNCI-2N7A3620-Edit-cmykss.png|caption^null|alt^null|title^CNCI 2N7A3620 Edit cmykss|description^null\" bg_image_repeat=\"no-repeat\" css=\".vc_custom_1692197848987{padding-top: 50px !important;padding-bottom: 50px !important;}\"][vc_column][ultimate_heading main_heading=\"Our manufacturing facility is certified with FAMI-QS, WHO GMP &amp; ISO 9001:2015 International Quality standards.\" main_heading_color=\"#079547\" sub_heading_color=\"#792c8a\" margin_design_tab_text=\"\"]We select only the <strong><em>best</em></strong> and <strong><em>most reputed</em></strong> Raw Material &amp; Packing Material Suppliers for the production of our finished goods.[/ultimate_heading][vc_single_image image=\"3120\" img_size=\"full\" alignment=\"center\"][vc_row_inner equal_height=\"yes\" content_placement=\"middle\"][vc_column_inner width=\"1/5\" offset=\"vc_hidden-lg vc_hidden-md\"][vc_single_image image=\"3062\" img_size=\"full\" alignment=\"center\"][/vc_column_inner][vc_column_inner width=\"1/5\" css=\".vc_custom_1691846530645{border-right-width: 1px !important;border-left-width: 1px !important;border-left-color: #000000 !important;border-left-style: solid !important;border-right-color: #000000 !important;border-right-style: solid !important;border-radius: 1px !important;}\" offset=\"vc_hidden-lg vc_hidden-md\"][vc_single_image image=\"3063\" img_size=\"full\" alignment=\"center\"][/vc_column_inner][vc_column_inner width=\"1/5\" offset=\"vc_hidden-lg vc_hidden-md\"][vc_single_image image=\"3064\" img_size=\"full\" alignment=\"center\"][/vc_column_inner][vc_column_inner width=\"1/5\" css=\".vc_custom_1691846545469{border-right-width: 1px !important;border-left-width: 1px !important;border-left-color: #000000 !important;border-left-style: solid !important;border-right-color: #000000 !important;border-right-style: solid !important;border-radius: 1px !important;}\" offset=\"vc_hidden-lg vc_hidden-md\"][vc_single_image image=\"3065\" img_size=\"full\" alignment=\"center\"][/vc_column_inner][vc_column_inner width=\"1/5\" offset=\"vc_hidden-lg vc_hidden-md\"][vc_single_image image=\"3066\" img_size=\"full\" alignment=\"center\"][/vc_column_inner][/vc_row_inner][vc_row_inner equal_height=\"yes\" content_placement=\"middle\"][vc_column_inner width=\"1/4\" css=\".vc_custom_1691846563021{border-right-width: 1px !important;border-right-color: #000000 !important;border-right-style: solid !important;border-radius: 1px !important;}\" offset=\"vc_hidden-lg vc_hidden-md\"][vc_single_image image=\"3067\" img_size=\"full\" alignment=\"center\"][/vc_column_inner][vc_column_inner width=\"1/4\" css=\".vc_custom_1691846569845{border-right-width: 1px !important;border-right-color: #000000 !important;border-right-style: solid !important;border-radius: 1px !important;}\" offset=\"vc_hidden-lg vc_hidden-md\"][vc_single_image image=\"3068\" img_size=\"full\" alignment=\"center\"][/vc_column_inner][vc_column_inner width=\"1/4\" css=\".vc_custom_1691846576949{border-right-width: 1px !important;border-right-color: #000000 !important;border-right-style: solid !important;border-radius: 1px !important;}\" offset=\"vc_hidden-lg vc_hidden-md\"][vc_single_image image=\"3069\" img_size=\"full\" alignment=\"center\"][/vc_column_inner][vc_column_inner width=\"1/4\" offset=\"vc_hidden-lg vc_hidden-md\"][vc_single_image image=\"3070\" img_size=\"full\" alignment=\"center\"][/vc_column_inner][/vc_row_inner][vc_row_inner disable_element=\"yes\"][vc_column_inner width=\"1/3\"][vc_single_image image=\"2981\" img_size=\"full\"][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_single_image image=\"2982\" img_size=\"full\"][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_single_image image=\"2983\" img_size=\"full\"][/vc_column_inner][/vc_row_inner][vc_row_inner disable_element=\"yes\"][vc_column_inner width=\"1/6\"][/vc_column_inner][vc_column_inner width=\"2/3\"][vc_single_image image=\"2984\" img_size=\"full\"][/vc_column_inner][vc_column_inner width=\"1/6\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row full_width=\"stretch_row_content_no_spaces\"][vc_column offset=\"vc_hidden-sm vc_hidden-xs\"][/vc_column][/vc_row][vc_row css=\".vc_custom_1689578794814{padding-top: 50px !important;padding-bottom: 50px !important;}\"][vc_column][ultimate_heading main_heading=\"Supplier selection and procurement criteria\" main_heading_color=\"#079547\" sub_heading_color=\"#792c8a\" alignment=\"left\"][/ultimate_heading][vc_row_inner css=\".vc_custom_1689578812611{margin-top: 50px !important;}\"][vc_column_inner width=\"1/2\"][dt_vc_list dividers=\"false\"]\r\n<ul>\r\n 	<li>Check supplier’s quality certification to ensure raw material quality</li>\r\n 	<li>New vendor validation protocol - In case of a change in the supplier, obtain samples and validate in the lab</li>\r\n</ul>\r\n[/dt_vc_list][/vc_column_inner][vc_column_inner width=\"1/2\"][dt_vc_list dividers=\"false\"]\r\n<ul>\r\n 	<li>Income inspection carried out on every consignment (Tested for Chemical Assay &amp; Physical Properties)</li>\r\n 	<li>Quality department approval required to be used in the production</li>\r\n</ul>\r\n[/dt_vc_list][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row css=\".vc_custom_1689578794814{padding-top: 50px !important;padding-bottom: 50px !important;}\"][vc_column][ultimate_heading main_heading=\"Please contact us to start your Marketing Journey with a reliable manufacturing partnership with FARMCHEMIE\" heading_tag=\"h3\" main_heading_color=\"#079547\" sub_heading_color=\"#792c8a\" alignment=\"left\"][/ultimate_heading][vc_row_inner css=\".vc_custom_1689578812611{margin-top: 50px !important;}\"][vc_column_inner width=\"1/2\"][bsf-info-box icon_size=\"32\" title=\"International Markets\" pos=\"square_box\" box_border_style=\"solid\" box_border_width=\"1\" box_border_color=\"#792c8a\" title_font_color=\"#079547\" desc_font_color=\"#792c8a\" title_font_size=\"desktop:25px;\"]<strong>Email :</strong> <a href=\"mailto:sales.export@farmchemie.com\"><u>sales.export@farmchemie.com</u></a>\r\n<strong>Tel No :</strong> + 94 76 577 2975[/bsf-info-box][/vc_column_inner][vc_column_inner width=\"1/2\"][bsf-info-box icon_size=\"32\" title=\"Sri Lankan Market\" pos=\"square_box\" box_border_style=\"solid\" box_border_width=\"1\" box_border_color=\"#079547\" title_font_color=\"#079547\" desc_font_color=\"#792c8a\" title_font_size=\"desktop:25px;\"]Email : <a href=\"mailto:sales.local@farmchemie.com\"><u>sales.local@farmchemie.com</u></a>\r\nTel No : +94 74 224 6947[/bsf-info-box][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row]','Manufacturing','','inherit','closed','closed','','2964-revision-v1','','','2023-08-16 14:57:36','2023-08-16 14:57:36','',2964,'https://farmchemie.yasithawd.com/?p=3230',0,'revision','',0),(3231,1,'2023-08-16 14:59:26','2023-08-16 14:59:26','[vc_row full_width=\"stretch_row\" css=\".vc_custom_1689577528817{padding-bottom: 50px !important;}\"][vc_column css=\".vc_custom_1689577454678{margin-bottom: 50px !important;}\"][vc_row_inner css=\".vc_custom_1689577559805{border-bottom-width: 1px !important;padding-top: 35px !important;padding-bottom: 35px !important;border-bottom-color: #079547 !important;border-bottom-style: solid !important;border-radius: 1px !important;}\"][vc_column_inner width=\"1/2\"][ultimate_heading main_heading=\"Feed Additives\" heading_tag=\"h3\" main_heading_color=\"#079547\" sub_heading_color=\"#792c8a\" alignment=\"left\"]<strong>Premixes/ Specialty Feed Additives/ Dilution of Active Ingredients/ Concentrates</strong><strong>\r\n</strong>Pack sizes – 1,000 kg, 500 kg, 50 kg, 25 kg, 15 kg, 10 kg, 5 kg, 1kg[/ultimate_heading][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_single_image image=\"3129\" img_size=\"full\"][/vc_column_inner][/vc_row_inner][vc_row_inner css=\".vc_custom_1689577609020{border-bottom-width: 1px !important;padding-top: 35px !important;padding-bottom: 35px !important;border-bottom-color: #079547 !important;border-bottom-style: solid !important;border-radius: 1px !important;}\"][vc_column_inner width=\"1/2\"][vc_single_image image=\"3162\" img_size=\"full\"][/vc_column_inner][vc_column_inner width=\"1/2\"][ultimate_heading main_heading=\"Oral Supplements\" heading_tag=\"h3\" main_heading_color=\"#079547\" sub_heading_color=\"#792c8a\" alignment=\"left\"]<strong>Liquids</strong><strong>\r\n</strong>Pack sizes – 1,000 L, 250 L, 50 L, 25 L, 5 L, 1 L, 500 mL, 250 mL, 100 mL, 50 mL\r\n\r\n<strong>Water soluble powders</strong><strong>\r\n</strong>Pack sizes – 25 kg, 15 kg, 10 kg, 5 kg, 1kg[/ultimate_heading][/vc_column_inner][/vc_row_inner][vc_row_inner css=\".vc_custom_1689577609020{border-bottom-width: 1px !important;padding-top: 35px !important;padding-bottom: 35px !important;border-bottom-color: #079547 !important;border-bottom-style: solid !important;border-radius: 1px !important;}\"][vc_column_inner width=\"1/2\"][ultimate_heading main_heading=\"Tablets\" heading_tag=\"h3\" main_heading_color=\"#079547\" sub_heading_color=\"#792c8a\" alignment=\"left\"]<strong>Supplementary tablets for pet care</strong>\r\nTablet sizes – 1 to 5 g\r\n\r\n<strong>Boluses</strong><strong>\r\n</strong>Tablet sizes – 5 to 25 g[/ultimate_heading][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_single_image image=\"3163\" img_size=\"full\"][/vc_column_inner][/vc_row_inner][vc_row_inner css=\".vc_custom_1689577609020{border-bottom-width: 1px !important;padding-top: 35px !important;padding-bottom: 35px !important;border-bottom-color: #079547 !important;border-bottom-style: solid !important;border-radius: 1px !important;}\"][vc_column_inner width=\"1/2\"][vc_single_image image=\"3164\" img_size=\"full\"][/vc_column_inner][vc_column_inner width=\"1/2\"][ultimate_heading main_heading=\"Veterinary Pharmaceuticals\" heading_tag=\"h3\" main_heading_color=\"#079547\" sub_heading_color=\"#792c8a\" alignment=\"left\"]<strong>Deworming Solutions/ Antibiotics/ Antimicrobials/ Wound care solutions</strong><strong>\r\n</strong>Form – Liquid, WSP[/ultimate_heading][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row full_width=\"stretch_row_content\" bg_type=\"image\" parallax_style=\"vcpb-vz-jquery\" bg_image_new=\"id^3109|url^https://farmchemie.yasithawd.com/wp-content/uploads/2023/08/CNCI-2N7A3620-Edit-cmykss.png|caption^null|alt^null|title^CNCI 2N7A3620 Edit cmykss|description^null\" bg_image_repeat=\"no-repeat\" css=\".vc_custom_1692197848987{padding-top: 50px !important;padding-bottom: 50px !important;}\"][vc_column][ultimate_heading main_heading=\"Our manufacturing facility is certified with FAMI-QS, WHO GMP &amp; ISO 9001:2015 International Quality standards.\" main_heading_color=\"#079547\" sub_heading_color=\"#792c8a\"]We select only the <strong><em>best</em></strong> and <strong><em>most reputed</em></strong> Raw Material &amp; Packing Material Suppliers for the production of our finished goods.[/ultimate_heading][vc_row_inner equal_height=\"yes\" content_placement=\"middle\"][vc_column_inner width=\"1/5\" offset=\"vc_hidden-lg vc_hidden-md\"][vc_single_image image=\"3062\" img_size=\"full\" alignment=\"center\"][/vc_column_inner][vc_column_inner width=\"1/5\" css=\".vc_custom_1691846530645{border-right-width: 1px !important;border-left-width: 1px !important;border-left-color: #000000 !important;border-left-style: solid !important;border-right-color: #000000 !important;border-right-style: solid !important;border-radius: 1px !important;}\" offset=\"vc_hidden-lg vc_hidden-md\"][vc_single_image image=\"3063\" img_size=\"full\" alignment=\"center\"][/vc_column_inner][vc_column_inner width=\"1/5\" offset=\"vc_hidden-lg vc_hidden-md\"][vc_single_image image=\"3064\" img_size=\"full\" alignment=\"center\"][/vc_column_inner][vc_column_inner width=\"1/5\" css=\".vc_custom_1691846545469{border-right-width: 1px !important;border-left-width: 1px !important;border-left-color: #000000 !important;border-left-style: solid !important;border-right-color: #000000 !important;border-right-style: solid !important;border-radius: 1px !important;}\" offset=\"vc_hidden-lg vc_hidden-md\"][vc_single_image image=\"3065\" img_size=\"full\" alignment=\"center\"][/vc_column_inner][vc_column_inner width=\"1/5\" offset=\"vc_hidden-lg vc_hidden-md\"][vc_single_image image=\"3066\" img_size=\"full\" alignment=\"center\"][/vc_column_inner][/vc_row_inner][vc_row_inner equal_height=\"yes\" content_placement=\"middle\"][vc_column_inner width=\"1/4\" css=\".vc_custom_1691846563021{border-right-width: 1px !important;border-right-color: #000000 !important;border-right-style: solid !important;border-radius: 1px !important;}\" offset=\"vc_hidden-lg vc_hidden-md\"][vc_single_image image=\"3067\" img_size=\"full\" alignment=\"center\"][/vc_column_inner][vc_column_inner width=\"1/4\" css=\".vc_custom_1691846569845{border-right-width: 1px !important;border-right-color: #000000 !important;border-right-style: solid !important;border-radius: 1px !important;}\" offset=\"vc_hidden-lg vc_hidden-md\"][vc_single_image image=\"3068\" img_size=\"full\" alignment=\"center\"][/vc_column_inner][vc_column_inner width=\"1/4\" css=\".vc_custom_1691846576949{border-right-width: 1px !important;border-right-color: #000000 !important;border-right-style: solid !important;border-radius: 1px !important;}\" offset=\"vc_hidden-lg vc_hidden-md\"][vc_single_image image=\"3069\" img_size=\"full\" alignment=\"center\"][/vc_column_inner][vc_column_inner width=\"1/4\" offset=\"vc_hidden-lg vc_hidden-md\"][vc_single_image image=\"3070\" img_size=\"full\" alignment=\"center\"][/vc_column_inner][/vc_row_inner][vc_row_inner disable_element=\"yes\"][vc_column_inner width=\"1/3\"][vc_single_image image=\"2981\" img_size=\"full\"][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_single_image image=\"2982\" img_size=\"full\"][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_single_image image=\"2983\" img_size=\"full\"][/vc_column_inner][/vc_row_inner][vc_row_inner disable_element=\"yes\"][vc_column_inner width=\"1/6\"][/vc_column_inner][vc_column_inner width=\"2/3\"][vc_single_image image=\"2984\" img_size=\"full\"][/vc_column_inner][vc_column_inner width=\"1/6\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row full_width=\"stretch_row_content_no_spaces\"][vc_column offset=\"vc_hidden-sm vc_hidden-xs\"][vc_single_image image=\"3120\" img_size=\"full\" alignment=\"center\"][/vc_column][/vc_row][vc_row css=\".vc_custom_1689578794814{padding-top: 50px !important;padding-bottom: 50px !important;}\"][vc_column][ultimate_heading main_heading=\"Supplier selection and procurement criteria\" main_heading_color=\"#079547\" sub_heading_color=\"#792c8a\" alignment=\"left\"][/ultimate_heading][vc_row_inner css=\".vc_custom_1689578812611{margin-top: 50px !important;}\"][vc_column_inner width=\"1/2\"][dt_vc_list dividers=\"false\"]\r\n<ul>\r\n 	<li>Check supplier’s quality certification to ensure raw material quality</li>\r\n 	<li>New vendor validation protocol - In case of a change in the supplier, obtain samples and validate in the lab</li>\r\n</ul>\r\n[/dt_vc_list][/vc_column_inner][vc_column_inner width=\"1/2\"][dt_vc_list dividers=\"false\"]\r\n<ul>\r\n 	<li>Income inspection carried out on every consignment (Tested for Chemical Assay &amp; Physical Properties)</li>\r\n 	<li>Quality department approval required to be used in the production</li>\r\n</ul>\r\n[/dt_vc_list][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row css=\".vc_custom_1689578794814{padding-top: 50px !important;padding-bottom: 50px !important;}\"][vc_column][ultimate_heading main_heading=\"Please contact us to start your Marketing Journey with a reliable manufacturing partnership with FARMCHEMIE\" heading_tag=\"h3\" main_heading_color=\"#079547\" sub_heading_color=\"#792c8a\" alignment=\"left\"][/ultimate_heading][vc_row_inner css=\".vc_custom_1689578812611{margin-top: 50px !important;}\"][vc_column_inner width=\"1/2\"][bsf-info-box icon_size=\"32\" title=\"International Markets\" pos=\"square_box\" box_border_style=\"solid\" box_border_width=\"1\" box_border_color=\"#792c8a\" title_font_color=\"#079547\" desc_font_color=\"#792c8a\" title_font_size=\"desktop:25px;\"]<strong>Email :</strong> <a href=\"mailto:sales.export@farmchemie.com\"><u>sales.export@farmchemie.com</u></a>\r\n<strong>Tel No :</strong> + 94 76 577 2975[/bsf-info-box][/vc_column_inner][vc_column_inner width=\"1/2\"][bsf-info-box icon_size=\"32\" title=\"Sri Lankan Market\" pos=\"square_box\" box_border_style=\"solid\" box_border_width=\"1\" box_border_color=\"#079547\" title_font_color=\"#079547\" desc_font_color=\"#792c8a\" title_font_size=\"desktop:25px;\"]Email : <a href=\"mailto:sales.local@farmchemie.com\"><u>sales.local@farmchemie.com</u></a>\r\nTel No : +94 74 224 6947[/bsf-info-box][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row]','Manufacturing','','inherit','closed','closed','','2964-revision-v1','','','2023-08-16 14:59:26','2023-08-16 14:59:26','',2964,'https://farmchemie.yasithawd.com/?p=3231',0,'revision','',0),(3232,1,'2023-08-16 15:05:12','2023-08-16 15:05:12','','123','','inherit','open','closed','','123','','','2023-08-16 15:05:12','2023-08-16 15:05:12','',2964,'https://farmchemie.yasithawd.com/wp-content/uploads/2023/08/123.png',0,'attachment','image/png',0),(3234,1,'2023-08-16 15:09:03','2023-08-16 15:09:03','','123 (1)','','inherit','open','closed','','123-1','','','2023-08-16 15:09:03','2023-08-16 15:09:03','',2964,'https://farmchemie.yasithawd.com/wp-content/uploads/2023/08/123-1.png',0,'attachment','image/png',0),(3235,1,'2023-08-16 15:09:17','2023-08-16 15:09:17','[vc_row full_width=\"stretch_row\" css=\".vc_custom_1689577528817{padding-bottom: 50px !important;}\"][vc_column css=\".vc_custom_1689577454678{margin-bottom: 50px !important;}\"][vc_row_inner css=\".vc_custom_1689577559805{border-bottom-width: 1px !important;padding-top: 35px !important;padding-bottom: 35px !important;border-bottom-color: #079547 !important;border-bottom-style: solid !important;border-radius: 1px !important;}\"][vc_column_inner width=\"1/2\"][ultimate_heading main_heading=\"Feed Additives\" heading_tag=\"h3\" main_heading_color=\"#079547\" sub_heading_color=\"#792c8a\" alignment=\"left\"]<strong>Premixes/ Specialty Feed Additives/ Dilution of Active Ingredients/ Concentrates</strong><strong>\r\n</strong>Pack sizes – 1,000 kg, 500 kg, 50 kg, 25 kg, 15 kg, 10 kg, 5 kg, 1kg[/ultimate_heading][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_single_image image=\"3129\" img_size=\"full\"][/vc_column_inner][/vc_row_inner][vc_row_inner css=\".vc_custom_1689577609020{border-bottom-width: 1px !important;padding-top: 35px !important;padding-bottom: 35px !important;border-bottom-color: #079547 !important;border-bottom-style: solid !important;border-radius: 1px !important;}\"][vc_column_inner width=\"1/2\"][vc_single_image image=\"3162\" img_size=\"full\"][/vc_column_inner][vc_column_inner width=\"1/2\"][ultimate_heading main_heading=\"Oral Supplements\" heading_tag=\"h3\" main_heading_color=\"#079547\" sub_heading_color=\"#792c8a\" alignment=\"left\"]<strong>Liquids</strong><strong>\r\n</strong>Pack sizes – 1,000 L, 250 L, 50 L, 25 L, 5 L, 1 L, 500 mL, 250 mL, 100 mL, 50 mL\r\n\r\n<strong>Water soluble powders</strong><strong>\r\n</strong>Pack sizes – 25 kg, 15 kg, 10 kg, 5 kg, 1kg[/ultimate_heading][/vc_column_inner][/vc_row_inner][vc_row_inner css=\".vc_custom_1689577609020{border-bottom-width: 1px !important;padding-top: 35px !important;padding-bottom: 35px !important;border-bottom-color: #079547 !important;border-bottom-style: solid !important;border-radius: 1px !important;}\"][vc_column_inner width=\"1/2\"][ultimate_heading main_heading=\"Tablets\" heading_tag=\"h3\" main_heading_color=\"#079547\" sub_heading_color=\"#792c8a\" alignment=\"left\"]<strong>Supplementary tablets for pet care</strong>\r\nTablet sizes – 1 to 5 g\r\n\r\n<strong>Boluses</strong><strong>\r\n</strong>Tablet sizes – 5 to 25 g[/ultimate_heading][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_single_image image=\"3163\" img_size=\"full\"][/vc_column_inner][/vc_row_inner][vc_row_inner css=\".vc_custom_1689577609020{border-bottom-width: 1px !important;padding-top: 35px !important;padding-bottom: 35px !important;border-bottom-color: #079547 !important;border-bottom-style: solid !important;border-radius: 1px !important;}\"][vc_column_inner width=\"1/2\"][vc_single_image image=\"3164\" img_size=\"full\"][/vc_column_inner][vc_column_inner width=\"1/2\"][ultimate_heading main_heading=\"Veterinary Pharmaceuticals\" heading_tag=\"h3\" main_heading_color=\"#079547\" sub_heading_color=\"#792c8a\" alignment=\"left\"]<strong>Deworming Solutions/ Antibiotics/ Antimicrobials/ Wound care solutions</strong><strong>\r\n</strong>Form – Liquid, WSP[/ultimate_heading][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row full_width=\"stretch_row_content\" bg_type=\"image\" parallax_style=\"vcpb-vz-jquery\" bg_image_new=\"id^3234|url^https://farmchemie.yasithawd.com/wp-content/uploads/2023/08/123-1.png|caption^null|alt^null|title^123 (1)|description^null\" bg_image_repeat=\"no-repeat\" css=\".vc_custom_1692198551378{padding-top: 50px !important;padding-bottom: 50px !important;}\"][vc_column][ultimate_heading main_heading=\"Our manufacturing facility is certified with FAMI-QS, WHO GMP &amp; ISO 9001:2015 International Quality standards.\" main_heading_color=\"#079547\" sub_heading_color=\"#792c8a\"]We select only the <strong><em>best</em></strong> and <strong><em>most reputed</em></strong> Raw Material &amp; Packing Material Suppliers for the production of our finished goods.[/ultimate_heading][vc_row_inner equal_height=\"yes\" content_placement=\"middle\"][vc_column_inner width=\"1/5\" offset=\"vc_hidden-lg vc_hidden-md\"][vc_single_image image=\"3062\" img_size=\"full\" alignment=\"center\"][/vc_column_inner][vc_column_inner width=\"1/5\" css=\".vc_custom_1691846530645{border-right-width: 1px !important;border-left-width: 1px !important;border-left-color: #000000 !important;border-left-style: solid !important;border-right-color: #000000 !important;border-right-style: solid !important;border-radius: 1px !important;}\" offset=\"vc_hidden-lg vc_hidden-md\"][vc_single_image image=\"3063\" img_size=\"full\" alignment=\"center\"][/vc_column_inner][vc_column_inner width=\"1/5\" offset=\"vc_hidden-lg vc_hidden-md\"][vc_single_image image=\"3064\" img_size=\"full\" alignment=\"center\"][/vc_column_inner][vc_column_inner width=\"1/5\" css=\".vc_custom_1691846545469{border-right-width: 1px !important;border-left-width: 1px !important;border-left-color: #000000 !important;border-left-style: solid !important;border-right-color: #000000 !important;border-right-style: solid !important;border-radius: 1px !important;}\" offset=\"vc_hidden-lg vc_hidden-md\"][vc_single_image image=\"3065\" img_size=\"full\" alignment=\"center\"][/vc_column_inner][vc_column_inner width=\"1/5\" offset=\"vc_hidden-lg vc_hidden-md\"][vc_single_image image=\"3066\" img_size=\"full\" alignment=\"center\"][/vc_column_inner][/vc_row_inner][vc_row_inner equal_height=\"yes\" content_placement=\"middle\"][vc_column_inner width=\"1/4\" css=\".vc_custom_1691846563021{border-right-width: 1px !important;border-right-color: #000000 !important;border-right-style: solid !important;border-radius: 1px !important;}\" offset=\"vc_hidden-lg vc_hidden-md\"][vc_single_image image=\"3067\" img_size=\"full\" alignment=\"center\"][/vc_column_inner][vc_column_inner width=\"1/4\" css=\".vc_custom_1691846569845{border-right-width: 1px !important;border-right-color: #000000 !important;border-right-style: solid !important;border-radius: 1px !important;}\" offset=\"vc_hidden-lg vc_hidden-md\"][vc_single_image image=\"3068\" img_size=\"full\" alignment=\"center\"][/vc_column_inner][vc_column_inner width=\"1/4\" css=\".vc_custom_1691846576949{border-right-width: 1px !important;border-right-color: #000000 !important;border-right-style: solid !important;border-radius: 1px !important;}\" offset=\"vc_hidden-lg vc_hidden-md\"][vc_single_image image=\"3069\" img_size=\"full\" alignment=\"center\"][/vc_column_inner][vc_column_inner width=\"1/4\" offset=\"vc_hidden-lg vc_hidden-md\"][vc_single_image image=\"3070\" img_size=\"full\" alignment=\"center\"][/vc_column_inner][/vc_row_inner][vc_row_inner disable_element=\"yes\"][vc_column_inner width=\"1/3\"][vc_single_image image=\"2981\" img_size=\"full\"][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_single_image image=\"2982\" img_size=\"full\"][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_single_image image=\"2983\" img_size=\"full\"][/vc_column_inner][/vc_row_inner][vc_row_inner disable_element=\"yes\"][vc_column_inner width=\"1/6\"][/vc_column_inner][vc_column_inner width=\"2/3\"][vc_single_image image=\"2984\" img_size=\"full\"][/vc_column_inner][vc_column_inner width=\"1/6\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row full_width=\"stretch_row_content_no_spaces\"][vc_column offset=\"vc_hidden-sm vc_hidden-xs\"][vc_single_image image=\"3120\" img_size=\"full\" alignment=\"center\"][/vc_column][/vc_row][vc_row css=\".vc_custom_1689578794814{padding-top: 50px !important;padding-bottom: 50px !important;}\"][vc_column][ultimate_heading main_heading=\"Supplier selection and procurement criteria\" main_heading_color=\"#079547\" sub_heading_color=\"#792c8a\" alignment=\"left\"][/ultimate_heading][vc_row_inner css=\".vc_custom_1689578812611{margin-top: 50px !important;}\"][vc_column_inner width=\"1/2\"][dt_vc_list dividers=\"false\"]\r\n<ul>\r\n 	<li>Check supplier’s quality certification to ensure raw material quality</li>\r\n 	<li>New vendor validation protocol - In case of a change in the supplier, obtain samples and validate in the lab</li>\r\n</ul>\r\n[/dt_vc_list][/vc_column_inner][vc_column_inner width=\"1/2\"][dt_vc_list dividers=\"false\"]\r\n<ul>\r\n 	<li>Income inspection carried out on every consignment (Tested for Chemical Assay &amp; Physical Properties)</li>\r\n 	<li>Quality department approval required to be used in the production</li>\r\n</ul>\r\n[/dt_vc_list][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row css=\".vc_custom_1689578794814{padding-top: 50px !important;padding-bottom: 50px !important;}\"][vc_column][ultimate_heading main_heading=\"Please contact us to start your Marketing Journey with a reliable manufacturing partnership with FARMCHEMIE\" heading_tag=\"h3\" main_heading_color=\"#079547\" sub_heading_color=\"#792c8a\" alignment=\"left\"][/ultimate_heading][vc_row_inner css=\".vc_custom_1689578812611{margin-top: 50px !important;}\"][vc_column_inner width=\"1/2\"][bsf-info-box icon_size=\"32\" title=\"International Markets\" pos=\"square_box\" box_border_style=\"solid\" box_border_width=\"1\" box_border_color=\"#792c8a\" title_font_color=\"#079547\" desc_font_color=\"#792c8a\" title_font_size=\"desktop:25px;\"]<strong>Email :</strong> <a href=\"mailto:sales.export@farmchemie.com\"><u>sales.export@farmchemie.com</u></a>\r\n<strong>Tel No :</strong> + 94 76 577 2975[/bsf-info-box][/vc_column_inner][vc_column_inner width=\"1/2\"][bsf-info-box icon_size=\"32\" title=\"Sri Lankan Market\" pos=\"square_box\" box_border_style=\"solid\" box_border_width=\"1\" box_border_color=\"#079547\" title_font_color=\"#079547\" desc_font_color=\"#792c8a\" title_font_size=\"desktop:25px;\"]Email : <a href=\"mailto:sales.local@farmchemie.com\"><u>sales.local@farmchemie.com</u></a>\r\nTel No : +94 74 224 6947[/bsf-info-box][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row]','Manufacturing','','inherit','closed','closed','','2964-revision-v1','','','2023-08-16 15:09:17','2023-08-16 15:09:17','',2964,'https://farmchemie.yasithawd.com/?p=3235',0,'revision','',0),(3236,1,'2023-08-16 15:13:48','2023-08-16 15:13:48','','VISION-&-MISIONFF','','inherit','open','closed','','vision-misionff','','','2023-08-16 15:13:48','2023-08-16 15:13:48','',2917,'https://farmchemie.yasithawd.com/wp-content/uploads/2023/08/VISION-MISIONFF.png',0,'attachment','image/png',0),(3237,1,'2023-08-16 15:14:02','2023-08-16 15:14:02','[vc_row full_width=\"stretch_row_content_no_spaces\"][vc_column][ultimate_heading main_heading=\"Our History\" main_heading_color=\"#762888\" alignment=\"left\"][/ultimate_heading][vc_single_image image=\"3211\" img_size=\"full\" alignment=\"center\"][/vc_column][/vc_row][vc_row disable_element=\"yes\"][vc_column][vc_row_inner css=\".vc_custom_1686713784619{margin-top: 35px !important;}\"][vc_column_inner width=\"1/3\"][vc_single_image image=\"3106\" img_size=\"full\"][/vc_column_inner][vc_column_inner width=\"2/3\"][ultimate_heading main_heading=\"Founded in 2002\" heading_tag=\"h3\" main_heading_color=\"#039447\" alignment=\"left\" sub_heading_font_size=\"desktop:18px;\"]Founded in 2002 by Mr. Uditha Wanigasinghe, an agriculturist who had a mission to aid valuable livestock producers in the country to enhance the yield and profitability of production. FARMCHEMIE introduced unprecedented solutions and consistent technical services to gain our customers’ trust and became the market leader in animal health products in 2006 within just four years.[/ultimate_heading][/vc_column_inner][/vc_row_inner][vc_row_inner rtl_reverse=\"yes\" css=\".vc_custom_1686714025469{margin-top: 35px !important;}\"][vc_column_inner width=\"2/3\"][ultimate_heading main_heading=\"2006\" heading_tag=\"h3\" main_heading_color=\"#039447\" alignment=\"left\"]In 2006, the Sri Lankan poultry industry was affected with Avian Influenza which became a difficult period for the growth of FARMCHEMIE. This was the key factor in our decision to diversify into Agro Products. PLANTCHEM &amp; PLANTSEEDS were established to offer solutions in Agro specialty fertilizers, pesticides and seeds to invaluable cultivators.[/ultimate_heading][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_single_image image=\"3107\" img_size=\"full\"][/vc_column_inner][/vc_row_inner][vc_row_inner css=\".vc_custom_1686713784619{margin-top: 35px !important;}\"][vc_column_inner width=\"1/3\"][vc_single_image image=\"3108\" img_size=\"full\"][/vc_column_inner][vc_column_inner width=\"2/3\"][ultimate_heading main_heading=\"2010\" heading_tag=\"h3\" main_heading_color=\"#039447\" alignment=\"left\"]In 2010, FEED CHEMIE became the subsequent addition to ever-growing vision of Mr. Uditha Wanigasinghe and entered the Animal Feed Additives market.[/ultimate_heading][/vc_column_inner][/vc_row_inner][vc_row_inner rtl_reverse=\"yes\" css=\".vc_custom_1686714115148{margin-top: 35px !important;}\"][vc_column_inner width=\"2/3\"][ultimate_heading main_heading=\"2012\" heading_tag=\"h3\" main_heading_color=\"#039447\" alignment=\"left\"]The year 2012 is described as a turning point in our journey as FARMCHEMIE established our first production facility for the manufacturing and packing of animal health products. FARMCHEMIE became the first animal health organization in Sri Lanka to obtain ISO 9001:2015 and WHO GMP International Quality Certification. With our own formulation unit, FARMCHEMIE was able to offer customized solutions to cater the needs of the Sri Lankan Livestock Industry.[/ultimate_heading][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_single_image image=\"3111\" img_size=\"full\"][/vc_column_inner][/vc_row_inner][vc_row_inner css=\".vc_custom_1686713784619{margin-top: 35px !important;}\"][vc_column_inner width=\"1/3\"][vc_single_image image=\"3112\" img_size=\"full\"][/vc_column_inner][vc_column_inner width=\"2/3\"][ultimate_heading main_heading=\"2016\" heading_tag=\"h3\" main_heading_color=\"#039447\" alignment=\"left\"]The year 2016 was another key milestone with the entry to the International Markets. FARMCHEMIE exported our first Feed Premix consignment to India and in 2018 our export operation was distinctly established as FARMCHEMIE MANUFACTURERS, a Board of Investment (BOI) approved entity.[/ultimate_heading][/vc_column_inner][/vc_row_inner][vc_row_inner css=\".vc_custom_1686713784619{margin-top: 35px !important;}\"][vc_column_inner width=\"2/3\"][ultimate_heading main_heading=\"Fully automated manufacturing\" heading_tag=\"h3\" main_heading_color=\"#039447\" alignment=\"left\"]FARMCHEMIE MANUFACTURERS has invested in fully automated manufacturing facility from Bühler and became the first Sri Lankan owned company to obtain FAMI-QS International Quality Certification.[/ultimate_heading][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_single_image image=\"3110\" img_size=\"full\"][/vc_column_inner][/vc_row_inner][vc_row_inner css=\".vc_custom_1686713784619{margin-top: 35px !important;}\"][vc_column_inner width=\"1/3\"][vc_single_image image=\"3116\" img_size=\"full\"][/vc_column_inner][vc_column_inner width=\"2/3\"][ultimate_heading main_heading=\"Official toll manufacturer partner\" heading_tag=\"h3\" main_heading_color=\"#039447\" alignment=\"left\"]With the trust and reputation built as a reliable manufacturer of animal feed additives and supplements in the global market, several world-renowned international brands have appointed FARMCHEMIE MANUFACTURERS as the official toll manufacturer partner. FARMCHEMIE MANUFACTURERS exports a wide range of products consisting of premixes, specialty feed additives, oral liquid supplements and pet supplements to various markets in South Asia, East Asia, Middle East and Africa.\r\n\r\nFARMCHEMIE, FEED CHEMIE &amp; FARMCHEMIE MANUFACTURERS currently operate under the ownership of our holding company, DYVESTA.\r\n\r\nDYEVSTA has become the pinnacle of Animal Nutrition and Health.\r\n\r\nDYVESTA is Dynamic, through our continuous evolution, growth and progress. DYVESTA is Diverse, in terms of both our business strategy and our community. DYVESTA is Devoted to our valuable business partners through exceptional service.[/ultimate_heading][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row full_width=\"stretch_row\" equal_height=\"yes\" bg_type=\"image\" parallax_style=\"vcpb-vz-jquery\" bg_image_new=\"id^3236|url^https://farmchemie.yasithawd.com/wp-content/uploads/2023/08/VISION-MISIONFF.png|caption^null|alt^null|title^VISION-&amp;-MISIONFF|description^null\" bg_image_repeat=\"no-repeat\" enable_overlay=\"enable_overlay_value\" overlay_color=\"#000000\" overlay_pattern=\"01.png\" overlay_pattern_opacity=\"5\" css=\".vc_custom_1692198837685{margin-top: 35px !important;padding-top: 65px !important;padding-bottom: 100px !important;}\"][vc_column][vc_row_inner equal_height=\"yes\"][vc_column_inner width=\"1/2\"][ult_animation_block animation=\"fadeIn\" animation_duration=\"8\" animation_delay=\"1\" animation_iteration_count=\"1\"][ultimate_heading main_heading=\"Vision\" main_heading_color=\"#039447\" sub_heading_color=\"#039447\"]To be the customers’ first and best choice by ensuring outstanding satisfaction through a well-trained and dedicated team. Prompt and quality solutions to our customers’ requirements will determine the increase of return on investment for us.[/ultimate_heading][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/2\"][ult_animation_block animation=\"fadeIn\" animation_duration=\"8\" animation_delay=\"1\" animation_iteration_count=\"1\"][ultimate_heading main_heading=\"Mission\" main_heading_color=\"#762888\" sub_heading_color=\"#762888\"]To become a world renowned manufacturer of Animal Health products and a trusted partner among our stakeholders for our integrity as well as for providing effective solutions[/ultimate_heading][/ult_animation_block][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row css=\".vc_custom_1684836308288{margin-top: 15px !important;}\"][vc_column][ultimate_heading main_heading=\"Achievements\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;\"][/ultimate_heading][vc_row_inner gap=\"20\"][vc_column_inner width=\"1/2\" css=\".vc_custom_1691995519863{background-color: #f4ab20 !important;border: 1px solid #f4ab20 !important;border-radius: 35px !important;}\"][bsf-info-box icon_type=\"custom\" icon_img=\"id^3117|url^https://farmchemie.yasithawd.com/wp-content/uploads/2023/08/Pink_-H.png|caption^null|alt^null|title^Pink_-H|description^null\" img_width=\"60\" icon_style=\"advanced\" icon_border_style=\"solid\" icon_color_border=\"#ffffff\" icon_border_size=\"1\" icon_border_radius=\"500\" icon_border_spacing=\"1\" title=\"First Free Sale Certificate obtained from Veterinary Drug Control Authority (VDCA) for Veterinary Pharmaceuticals\" title_font_style=\"font-weight:bold;\" title_font_size=\"desktop:20px;\"][/bsf-info-box][/vc_column_inner][vc_column_inner width=\"1/2\" css=\".vc_custom_1691995661095{background-color: #722f8b !important;border: 1px solid #722f8b !important;border-radius: 35px !important;}\"][bsf-info-box icon_type=\"custom\" icon_img=\"id^3117|url^https://farmchemie.yasithawd.com/wp-content/uploads/2023/08/Pink_-H.png|caption^null|alt^null|title^Pink_-H|description^null\" img_width=\"60\" icon_style=\"advanced\" icon_border_style=\"solid\" icon_color_border=\"#ffffff\" icon_border_size=\"1\" icon_border_radius=\"500\" icon_border_spacing=\"1\" title=\"First ISO 9001: 2015 ,WHO-GMP Quality Management systems certified Animal Health company in Sri Lanka since August, 2012\" title_font_style=\"font-weight:bold;\" title_font_color=\"#ffffff\" title_font_size=\"desktop:20px;\"][/bsf-info-box][/vc_column_inner][/vc_row_inner][vc_row_inner gap=\"20\"][vc_column_inner width=\"1/2\" css=\".vc_custom_1691995661095{background-color: #722f8b !important;border: 1px solid #722f8b !important;border-radius: 35px !important;}\"][bsf-info-box icon_type=\"custom\" icon_img=\"id^3117|url^https://farmchemie.yasithawd.com/wp-content/uploads/2023/08/Pink_-H.png|caption^null|alt^null|title^Pink_-H|description^null\" img_width=\"60\" icon_style=\"advanced\" icon_border_style=\"solid\" icon_color_border=\"#ffffff\" icon_border_size=\"1\" icon_border_radius=\"500\" icon_border_spacing=\"1\" title=\"First FAMI-QS certified company in sri lanka\" title_font_style=\"font-weight:bold;\" title_font_color=\"#ffffff\" title_font_size=\"desktop:20px;\"][/bsf-info-box][/vc_column_inner][vc_column_inner width=\"1/2\" css=\".vc_custom_1691995519863{background-color: #f4ab20 !important;border: 1px solid #f4ab20 !important;border-radius: 35px !important;}\"][bsf-info-box icon_type=\"custom\" icon_img=\"id^3117|url^https://farmchemie.yasithawd.com/wp-content/uploads/2023/08/Pink_-H.png|caption^null|alt^null|title^Pink_-H|description^null\" img_width=\"60\" icon_style=\"advanced\" icon_border_style=\"solid\" icon_color_border=\"#ffffff\" icon_border_size=\"1\" icon_border_radius=\"500\" icon_border_spacing=\"1\" title=\"First Certificate of Ethical Trading certified in Livestock industry\" title_font_style=\"font-weight:bold;\" title_font_size=\"desktop:20px;\"][/bsf-info-box][/vc_column_inner][/vc_row_inner][vc_row_inner gap=\"20\"][vc_column_inner width=\"1/4\" css=\".vc_custom_1691996718116{border-radius: 35px !important;}\"][/vc_column_inner][vc_column_inner width=\"2/4\" css=\".vc_custom_1691995519863{background-color: #f4ab20 !important;border: 1px solid #f4ab20 !important;border-radius: 35px !important;}\"][bsf-info-box icon_type=\"custom\" icon_img=\"id^3117|url^https://farmchemie.yasithawd.com/wp-content/uploads/2023/08/Pink_-H.png|caption^null|alt^null|title^Pink_-H|description^null\" img_width=\"60\" icon_style=\"advanced\" icon_border_style=\"solid\" icon_color_border=\"#ffffff\" icon_border_size=\"1\" icon_border_radius=\"500\" icon_border_spacing=\"1\" title=\"First Silver awarded company at National Exports Awards in Livestock industry\" title_font_style=\"font-weight:bold;\" title_font_size=\"desktop:20px;\"][/bsf-info-box][/vc_column_inner][vc_column_inner width=\"1/4\"][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner width=\"1/6\"][/vc_column_inner][vc_column_inner width=\"2/3\"][vc_single_image image=\"3126\" img_size=\"full\" alignment=\"center\"][vc_single_image image=\"3125\" img_size=\"full\" alignment=\"center\"][/vc_column_inner][vc_column_inner width=\"1/6\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row][vc_column][ultimate_heading main_heading=\"Board Of Directors\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;margin-bottom:35px;\"][/ultimate_heading][ultimate_carousel slides_on_desk=\"1\" slides_on_tabs=\"1\" slides_on_mob=\"1\" arrow_style=\"square-bg\" arrow_bg_color=\"#039447\" arrow_color=\"#ffffff\" next_icon=\"ultsl-arrow-right6\" prev_icon=\"ultsl-arrow-left6\" dots_color=\"#039447\" item_animation=\"fadeIn\"][vc_row_inner][vc_column_inner width=\"1/2\"][vc_single_image image=\"3170\" img_size=\"large\" alignment=\"center\" style=\"vc_box_outline_circle_2\" border_color=\"black\" image_hovers=\"false\"][/vc_column_inner][vc_column_inner width=\"1/2\"][ultimate_heading main_heading=\"Quisque sed nibh tristique\" heading_tag=\"h3\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;\"]Duis lorem risus, aliquet a auctor a, venenatis in dui. Praesent et eros et risus dapibus placerat hendrerit cursus magna.[/ultimate_heading][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner width=\"1/2\"][vc_single_image image=\"3171\" img_size=\"large\" alignment=\"center\" style=\"vc_box_outline_circle_2\" border_color=\"black\" image_hovers=\"false\"][/vc_column_inner][vc_column_inner width=\"1/2\"][ultimate_heading main_heading=\"Quisque sed nibh tristique\" heading_tag=\"h3\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;\"]Duis lorem risus, aliquet a auctor a, venenatis in dui. Praesent et eros et risus dapibus placerat hendrerit cursus magna.[/ultimate_heading][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner width=\"1/2\"][vc_single_image image=\"3173\" img_size=\"large\" alignment=\"center\" style=\"vc_box_outline_circle_2\" border_color=\"black\" image_hovers=\"false\"][/vc_column_inner][vc_column_inner width=\"1/2\"][ultimate_heading main_heading=\"Quisque sed nibh tristique\" heading_tag=\"h3\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;\"]Duis lorem risus, aliquet a auctor a, venenatis in dui. Praesent et eros et risus dapibus placerat hendrerit cursus magna.[/ultimate_heading][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner width=\"1/2\"][vc_single_image image=\"3172\" img_size=\"large\" alignment=\"center\" style=\"vc_box_outline_circle_2\" border_color=\"black\" image_hovers=\"false\"][/vc_column_inner][vc_column_inner width=\"1/2\"][ultimate_heading main_heading=\"Quisque sed nibh tristique\" heading_tag=\"h3\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;\"]Duis lorem risus, aliquet a auctor a, venenatis in dui. Praesent et eros et risus dapibus placerat hendrerit cursus magna.[/ultimate_heading][/vc_column_inner][/vc_row_inner][/ultimate_carousel][/vc_column][/vc_row]','About us','','inherit','closed','closed','','2917-revision-v1','','','2023-08-16 15:14:02','2023-08-16 15:14:02','',2917,'https://farmchemie.yasithawd.com/?p=3237',0,'revision','',0),(3238,1,'2023-08-16 15:15:10','2023-08-16 15:15:10','[vc_row full_width=\"stretch_row_content_no_spaces\"][vc_column][ultimate_heading main_heading=\"Our History\" main_heading_color=\"#762888\" alignment=\"left\"][/ultimate_heading][vc_single_image image=\"3211\" img_size=\"full\" alignment=\"center\"][/vc_column][/vc_row][vc_row disable_element=\"yes\"][vc_column][vc_row_inner css=\".vc_custom_1686713784619{margin-top: 35px !important;}\"][vc_column_inner width=\"1/3\"][vc_single_image image=\"3106\" img_size=\"full\"][/vc_column_inner][vc_column_inner width=\"2/3\"][ultimate_heading main_heading=\"Founded in 2002\" heading_tag=\"h3\" main_heading_color=\"#039447\" alignment=\"left\" sub_heading_font_size=\"desktop:18px;\"]Founded in 2002 by Mr. Uditha Wanigasinghe, an agriculturist who had a mission to aid valuable livestock producers in the country to enhance the yield and profitability of production. FARMCHEMIE introduced unprecedented solutions and consistent technical services to gain our customers’ trust and became the market leader in animal health products in 2006 within just four years.[/ultimate_heading][/vc_column_inner][/vc_row_inner][vc_row_inner rtl_reverse=\"yes\" css=\".vc_custom_1686714025469{margin-top: 35px !important;}\"][vc_column_inner width=\"2/3\"][ultimate_heading main_heading=\"2006\" heading_tag=\"h3\" main_heading_color=\"#039447\" alignment=\"left\"]In 2006, the Sri Lankan poultry industry was affected with Avian Influenza which became a difficult period for the growth of FARMCHEMIE. This was the key factor in our decision to diversify into Agro Products. PLANTCHEM &amp; PLANTSEEDS were established to offer solutions in Agro specialty fertilizers, pesticides and seeds to invaluable cultivators.[/ultimate_heading][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_single_image image=\"3107\" img_size=\"full\"][/vc_column_inner][/vc_row_inner][vc_row_inner css=\".vc_custom_1686713784619{margin-top: 35px !important;}\"][vc_column_inner width=\"1/3\"][vc_single_image image=\"3108\" img_size=\"full\"][/vc_column_inner][vc_column_inner width=\"2/3\"][ultimate_heading main_heading=\"2010\" heading_tag=\"h3\" main_heading_color=\"#039447\" alignment=\"left\"]In 2010, FEED CHEMIE became the subsequent addition to ever-growing vision of Mr. Uditha Wanigasinghe and entered the Animal Feed Additives market.[/ultimate_heading][/vc_column_inner][/vc_row_inner][vc_row_inner rtl_reverse=\"yes\" css=\".vc_custom_1686714115148{margin-top: 35px !important;}\"][vc_column_inner width=\"2/3\"][ultimate_heading main_heading=\"2012\" heading_tag=\"h3\" main_heading_color=\"#039447\" alignment=\"left\"]The year 2012 is described as a turning point in our journey as FARMCHEMIE established our first production facility for the manufacturing and packing of animal health products. FARMCHEMIE became the first animal health organization in Sri Lanka to obtain ISO 9001:2015 and WHO GMP International Quality Certification. With our own formulation unit, FARMCHEMIE was able to offer customized solutions to cater the needs of the Sri Lankan Livestock Industry.[/ultimate_heading][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_single_image image=\"3111\" img_size=\"full\"][/vc_column_inner][/vc_row_inner][vc_row_inner css=\".vc_custom_1686713784619{margin-top: 35px !important;}\"][vc_column_inner width=\"1/3\"][vc_single_image image=\"3112\" img_size=\"full\"][/vc_column_inner][vc_column_inner width=\"2/3\"][ultimate_heading main_heading=\"2016\" heading_tag=\"h3\" main_heading_color=\"#039447\" alignment=\"left\"]The year 2016 was another key milestone with the entry to the International Markets. FARMCHEMIE exported our first Feed Premix consignment to India and in 2018 our export operation was distinctly established as FARMCHEMIE MANUFACTURERS, a Board of Investment (BOI) approved entity.[/ultimate_heading][/vc_column_inner][/vc_row_inner][vc_row_inner css=\".vc_custom_1686713784619{margin-top: 35px !important;}\"][vc_column_inner width=\"2/3\"][ultimate_heading main_heading=\"Fully automated manufacturing\" heading_tag=\"h3\" main_heading_color=\"#039447\" alignment=\"left\"]FARMCHEMIE MANUFACTURERS has invested in fully automated manufacturing facility from Bühler and became the first Sri Lankan owned company to obtain FAMI-QS International Quality Certification.[/ultimate_heading][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_single_image image=\"3110\" img_size=\"full\"][/vc_column_inner][/vc_row_inner][vc_row_inner css=\".vc_custom_1686713784619{margin-top: 35px !important;}\"][vc_column_inner width=\"1/3\"][vc_single_image image=\"3116\" img_size=\"full\"][/vc_column_inner][vc_column_inner width=\"2/3\"][ultimate_heading main_heading=\"Official toll manufacturer partner\" heading_tag=\"h3\" main_heading_color=\"#039447\" alignment=\"left\"]With the trust and reputation built as a reliable manufacturer of animal feed additives and supplements in the global market, several world-renowned international brands have appointed FARMCHEMIE MANUFACTURERS as the official toll manufacturer partner. FARMCHEMIE MANUFACTURERS exports a wide range of products consisting of premixes, specialty feed additives, oral liquid supplements and pet supplements to various markets in South Asia, East Asia, Middle East and Africa.\r\n\r\nFARMCHEMIE, FEED CHEMIE &amp; FARMCHEMIE MANUFACTURERS currently operate under the ownership of our holding company, DYVESTA.\r\n\r\nDYEVSTA has become the pinnacle of Animal Nutrition and Health.\r\n\r\nDYVESTA is Dynamic, through our continuous evolution, growth and progress. DYVESTA is Diverse, in terms of both our business strategy and our community. DYVESTA is Devoted to our valuable business partners through exceptional service.[/ultimate_heading][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row full_width=\"stretch_row\" equal_height=\"yes\" bg_type=\"image\" parallax_style=\"vcpb-vz-jquery\" bg_image_new=\"id^3236|url^https://farmchemie.yasithawd.com/wp-content/uploads/2023/08/VISION-MISIONFF.png|caption^null|alt^null|title^VISION-&amp;-MISIONFF|description^null\" bg_image_repeat=\"no-repeat\" enable_overlay=\"enable_overlay_value\" overlay_color=\"#000000\" overlay_pattern=\"01.png\" overlay_pattern_opacity=\"5\" css=\".vc_custom_1692198837685{margin-top: 35px !important;padding-top: 65px !important;padding-bottom: 100px !important;}\"][vc_column][vc_row_inner equal_height=\"yes\"][vc_column_inner width=\"1/2\"][ult_animation_block animation=\"fadeIn\" animation_duration=\"8\" animation_delay=\"1\" animation_iteration_count=\"1\"][ultimate_heading main_heading=\"Vision\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" margin_design_tab_text=\"\"]To be the customers’ first and best choice by ensuring outstanding satisfaction through a well-trained and dedicated team. Prompt and quality solutions to our customers’ requirements will determine the increase of return on investment for us.[/ultimate_heading][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/2\"][ult_animation_block animation=\"fadeIn\" animation_duration=\"8\" animation_delay=\"1\" animation_iteration_count=\"1\"][ultimate_heading main_heading=\"Mission\" main_heading_color=\"#762888\" sub_heading_color=\"#762888\"]To become a world renowned manufacturer of Animal Health products and a trusted partner among our stakeholders for our integrity as well as for providing effective solutions[/ultimate_heading][/ult_animation_block][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row css=\".vc_custom_1684836308288{margin-top: 15px !important;}\"][vc_column][ultimate_heading main_heading=\"Achievements\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;\"][/ultimate_heading][vc_row_inner gap=\"20\"][vc_column_inner width=\"1/2\" css=\".vc_custom_1691995519863{background-color: #f4ab20 !important;border: 1px solid #f4ab20 !important;border-radius: 35px !important;}\"][bsf-info-box icon_type=\"custom\" icon_img=\"id^3117|url^https://farmchemie.yasithawd.com/wp-content/uploads/2023/08/Pink_-H.png|caption^null|alt^null|title^Pink_-H|description^null\" img_width=\"60\" icon_style=\"advanced\" icon_border_style=\"solid\" icon_color_border=\"#ffffff\" icon_border_size=\"1\" icon_border_radius=\"500\" icon_border_spacing=\"1\" title=\"First Free Sale Certificate obtained from Veterinary Drug Control Authority (VDCA) for Veterinary Pharmaceuticals\" title_font_style=\"font-weight:bold;\" title_font_size=\"desktop:20px;\"][/bsf-info-box][/vc_column_inner][vc_column_inner width=\"1/2\" css=\".vc_custom_1691995661095{background-color: #722f8b !important;border: 1px solid #722f8b !important;border-radius: 35px !important;}\"][bsf-info-box icon_type=\"custom\" icon_img=\"id^3117|url^https://farmchemie.yasithawd.com/wp-content/uploads/2023/08/Pink_-H.png|caption^null|alt^null|title^Pink_-H|description^null\" img_width=\"60\" icon_style=\"advanced\" icon_border_style=\"solid\" icon_color_border=\"#ffffff\" icon_border_size=\"1\" icon_border_radius=\"500\" icon_border_spacing=\"1\" title=\"First ISO 9001: 2015 ,WHO-GMP Quality Management systems certified Animal Health company in Sri Lanka since August, 2012\" title_font_style=\"font-weight:bold;\" title_font_color=\"#ffffff\" title_font_size=\"desktop:20px;\"][/bsf-info-box][/vc_column_inner][/vc_row_inner][vc_row_inner gap=\"20\"][vc_column_inner width=\"1/2\" css=\".vc_custom_1691995661095{background-color: #722f8b !important;border: 1px solid #722f8b !important;border-radius: 35px !important;}\"][bsf-info-box icon_type=\"custom\" icon_img=\"id^3117|url^https://farmchemie.yasithawd.com/wp-content/uploads/2023/08/Pink_-H.png|caption^null|alt^null|title^Pink_-H|description^null\" img_width=\"60\" icon_style=\"advanced\" icon_border_style=\"solid\" icon_color_border=\"#ffffff\" icon_border_size=\"1\" icon_border_radius=\"500\" icon_border_spacing=\"1\" title=\"First FAMI-QS certified company in sri lanka\" title_font_style=\"font-weight:bold;\" title_font_color=\"#ffffff\" title_font_size=\"desktop:20px;\"][/bsf-info-box][/vc_column_inner][vc_column_inner width=\"1/2\" css=\".vc_custom_1691995519863{background-color: #f4ab20 !important;border: 1px solid #f4ab20 !important;border-radius: 35px !important;}\"][bsf-info-box icon_type=\"custom\" icon_img=\"id^3117|url^https://farmchemie.yasithawd.com/wp-content/uploads/2023/08/Pink_-H.png|caption^null|alt^null|title^Pink_-H|description^null\" img_width=\"60\" icon_style=\"advanced\" icon_border_style=\"solid\" icon_color_border=\"#ffffff\" icon_border_size=\"1\" icon_border_radius=\"500\" icon_border_spacing=\"1\" title=\"First Certificate of Ethical Trading certified in Livestock industry\" title_font_style=\"font-weight:bold;\" title_font_size=\"desktop:20px;\"][/bsf-info-box][/vc_column_inner][/vc_row_inner][vc_row_inner gap=\"20\"][vc_column_inner width=\"1/4\" css=\".vc_custom_1691996718116{border-radius: 35px !important;}\"][/vc_column_inner][vc_column_inner width=\"2/4\" css=\".vc_custom_1691995519863{background-color: #f4ab20 !important;border: 1px solid #f4ab20 !important;border-radius: 35px !important;}\"][bsf-info-box icon_type=\"custom\" icon_img=\"id^3117|url^https://farmchemie.yasithawd.com/wp-content/uploads/2023/08/Pink_-H.png|caption^null|alt^null|title^Pink_-H|description^null\" img_width=\"60\" icon_style=\"advanced\" icon_border_style=\"solid\" icon_color_border=\"#ffffff\" icon_border_size=\"1\" icon_border_radius=\"500\" icon_border_spacing=\"1\" title=\"First Silver awarded company at National Exports Awards in Livestock industry\" title_font_style=\"font-weight:bold;\" title_font_size=\"desktop:20px;\"][/bsf-info-box][/vc_column_inner][vc_column_inner width=\"1/4\"][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner width=\"1/6\"][/vc_column_inner][vc_column_inner width=\"2/3\"][vc_single_image image=\"3126\" img_size=\"full\" alignment=\"center\"][vc_single_image image=\"3125\" img_size=\"full\" alignment=\"center\"][/vc_column_inner][vc_column_inner width=\"1/6\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row][vc_column][ultimate_heading main_heading=\"Board Of Directors\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;margin-bottom:35px;\"][/ultimate_heading][ultimate_carousel slides_on_desk=\"1\" slides_on_tabs=\"1\" slides_on_mob=\"1\" arrow_style=\"square-bg\" arrow_bg_color=\"#039447\" arrow_color=\"#ffffff\" next_icon=\"ultsl-arrow-right6\" prev_icon=\"ultsl-arrow-left6\" dots_color=\"#039447\" item_animation=\"fadeIn\"][vc_row_inner][vc_column_inner width=\"1/2\"][vc_single_image image=\"3170\" img_size=\"large\" alignment=\"center\" style=\"vc_box_outline_circle_2\" border_color=\"black\" image_hovers=\"false\"][/vc_column_inner][vc_column_inner width=\"1/2\"][ultimate_heading main_heading=\"Quisque sed nibh tristique\" heading_tag=\"h3\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;\"]Duis lorem risus, aliquet a auctor a, venenatis in dui. Praesent et eros et risus dapibus placerat hendrerit cursus magna.[/ultimate_heading][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner width=\"1/2\"][vc_single_image image=\"3171\" img_size=\"large\" alignment=\"center\" style=\"vc_box_outline_circle_2\" border_color=\"black\" image_hovers=\"false\"][/vc_column_inner][vc_column_inner width=\"1/2\"][ultimate_heading main_heading=\"Quisque sed nibh tristique\" heading_tag=\"h3\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;\"]Duis lorem risus, aliquet a auctor a, venenatis in dui. Praesent et eros et risus dapibus placerat hendrerit cursus magna.[/ultimate_heading][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner width=\"1/2\"][vc_single_image image=\"3173\" img_size=\"large\" alignment=\"center\" style=\"vc_box_outline_circle_2\" border_color=\"black\" image_hovers=\"false\"][/vc_column_inner][vc_column_inner width=\"1/2\"][ultimate_heading main_heading=\"Quisque sed nibh tristique\" heading_tag=\"h3\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;\"]Duis lorem risus, aliquet a auctor a, venenatis in dui. Praesent et eros et risus dapibus placerat hendrerit cursus magna.[/ultimate_heading][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner width=\"1/2\"][vc_single_image image=\"3172\" img_size=\"large\" alignment=\"center\" style=\"vc_box_outline_circle_2\" border_color=\"black\" image_hovers=\"false\"][/vc_column_inner][vc_column_inner width=\"1/2\"][ultimate_heading main_heading=\"Quisque sed nibh tristique\" heading_tag=\"h3\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;\"]Duis lorem risus, aliquet a auctor a, venenatis in dui. Praesent et eros et risus dapibus placerat hendrerit cursus magna.[/ultimate_heading][/vc_column_inner][/vc_row_inner][/ultimate_carousel][/vc_column][/vc_row]','About us','','inherit','closed','closed','','2917-revision-v1','','','2023-08-16 15:15:10','2023-08-16 15:15:10','',2917,'https://farmchemie.yasithawd.com/?p=3238',0,'revision','',0),(3239,1,'2023-08-16 15:16:11','2023-08-16 15:16:11','[vc_row full_width=\"stretch_row_content_no_spaces\"][vc_column][ultimate_heading main_heading=\"Our History\" main_heading_color=\"#762888\" alignment=\"left\"][/ultimate_heading][vc_single_image image=\"3211\" img_size=\"full\" alignment=\"center\"][/vc_column][/vc_row][vc_row disable_element=\"yes\"][vc_column][vc_row_inner css=\".vc_custom_1686713784619{margin-top: 35px !important;}\"][vc_column_inner width=\"1/3\"][vc_single_image image=\"3106\" img_size=\"full\"][/vc_column_inner][vc_column_inner width=\"2/3\"][ultimate_heading main_heading=\"Founded in 2002\" heading_tag=\"h3\" main_heading_color=\"#039447\" alignment=\"left\" sub_heading_font_size=\"desktop:18px;\"]Founded in 2002 by Mr. Uditha Wanigasinghe, an agriculturist who had a mission to aid valuable livestock producers in the country to enhance the yield and profitability of production. FARMCHEMIE introduced unprecedented solutions and consistent technical services to gain our customers’ trust and became the market leader in animal health products in 2006 within just four years.[/ultimate_heading][/vc_column_inner][/vc_row_inner][vc_row_inner rtl_reverse=\"yes\" css=\".vc_custom_1686714025469{margin-top: 35px !important;}\"][vc_column_inner width=\"2/3\"][ultimate_heading main_heading=\"2006\" heading_tag=\"h3\" main_heading_color=\"#039447\" alignment=\"left\"]In 2006, the Sri Lankan poultry industry was affected with Avian Influenza which became a difficult period for the growth of FARMCHEMIE. This was the key factor in our decision to diversify into Agro Products. PLANTCHEM &amp; PLANTSEEDS were established to offer solutions in Agro specialty fertilizers, pesticides and seeds to invaluable cultivators.[/ultimate_heading][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_single_image image=\"3107\" img_size=\"full\"][/vc_column_inner][/vc_row_inner][vc_row_inner css=\".vc_custom_1686713784619{margin-top: 35px !important;}\"][vc_column_inner width=\"1/3\"][vc_single_image image=\"3108\" img_size=\"full\"][/vc_column_inner][vc_column_inner width=\"2/3\"][ultimate_heading main_heading=\"2010\" heading_tag=\"h3\" main_heading_color=\"#039447\" alignment=\"left\"]In 2010, FEED CHEMIE became the subsequent addition to ever-growing vision of Mr. Uditha Wanigasinghe and entered the Animal Feed Additives market.[/ultimate_heading][/vc_column_inner][/vc_row_inner][vc_row_inner rtl_reverse=\"yes\" css=\".vc_custom_1686714115148{margin-top: 35px !important;}\"][vc_column_inner width=\"2/3\"][ultimate_heading main_heading=\"2012\" heading_tag=\"h3\" main_heading_color=\"#039447\" alignment=\"left\"]The year 2012 is described as a turning point in our journey as FARMCHEMIE established our first production facility for the manufacturing and packing of animal health products. FARMCHEMIE became the first animal health organization in Sri Lanka to obtain ISO 9001:2015 and WHO GMP International Quality Certification. With our own formulation unit, FARMCHEMIE was able to offer customized solutions to cater the needs of the Sri Lankan Livestock Industry.[/ultimate_heading][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_single_image image=\"3111\" img_size=\"full\"][/vc_column_inner][/vc_row_inner][vc_row_inner css=\".vc_custom_1686713784619{margin-top: 35px !important;}\"][vc_column_inner width=\"1/3\"][vc_single_image image=\"3112\" img_size=\"full\"][/vc_column_inner][vc_column_inner width=\"2/3\"][ultimate_heading main_heading=\"2016\" heading_tag=\"h3\" main_heading_color=\"#039447\" alignment=\"left\"]The year 2016 was another key milestone with the entry to the International Markets. FARMCHEMIE exported our first Feed Premix consignment to India and in 2018 our export operation was distinctly established as FARMCHEMIE MANUFACTURERS, a Board of Investment (BOI) approved entity.[/ultimate_heading][/vc_column_inner][/vc_row_inner][vc_row_inner css=\".vc_custom_1686713784619{margin-top: 35px !important;}\"][vc_column_inner width=\"2/3\"][ultimate_heading main_heading=\"Fully automated manufacturing\" heading_tag=\"h3\" main_heading_color=\"#039447\" alignment=\"left\"]FARMCHEMIE MANUFACTURERS has invested in fully automated manufacturing facility from Bühler and became the first Sri Lankan owned company to obtain FAMI-QS International Quality Certification.[/ultimate_heading][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_single_image image=\"3110\" img_size=\"full\"][/vc_column_inner][/vc_row_inner][vc_row_inner css=\".vc_custom_1686713784619{margin-top: 35px !important;}\"][vc_column_inner width=\"1/3\"][vc_single_image image=\"3116\" img_size=\"full\"][/vc_column_inner][vc_column_inner width=\"2/3\"][ultimate_heading main_heading=\"Official toll manufacturer partner\" heading_tag=\"h3\" main_heading_color=\"#039447\" alignment=\"left\"]With the trust and reputation built as a reliable manufacturer of animal feed additives and supplements in the global market, several world-renowned international brands have appointed FARMCHEMIE MANUFACTURERS as the official toll manufacturer partner. FARMCHEMIE MANUFACTURERS exports a wide range of products consisting of premixes, specialty feed additives, oral liquid supplements and pet supplements to various markets in South Asia, East Asia, Middle East and Africa.\r\n\r\nFARMCHEMIE, FEED CHEMIE &amp; FARMCHEMIE MANUFACTURERS currently operate under the ownership of our holding company, DYVESTA.\r\n\r\nDYEVSTA has become the pinnacle of Animal Nutrition and Health.\r\n\r\nDYVESTA is Dynamic, through our continuous evolution, growth and progress. DYVESTA is Diverse, in terms of both our business strategy and our community. DYVESTA is Devoted to our valuable business partners through exceptional service.[/ultimate_heading][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row full_width=\"stretch_row\" equal_height=\"yes\" bg_type=\"image\" parallax_style=\"vcpb-vz-jquery\" bg_image_new=\"id^3236|url^https://farmchemie.yasithawd.com/wp-content/uploads/2023/08/VISION-MISIONFF.png|caption^null|alt^null|title^VISION-&amp;-MISIONFF|description^null\" bg_image_repeat=\"no-repeat\" enable_overlay=\"enable_overlay_value\" overlay_color=\"#000000\" overlay_pattern=\"01.png\" overlay_pattern_opacity=\"5\" css=\".vc_custom_1692198837685{margin-top: 35px !important;padding-top: 65px !important;padding-bottom: 100px !important;}\"][vc_column][vc_row_inner equal_height=\"yes\"][vc_column_inner width=\"1/2\"][ult_animation_block animation=\"fadeIn\" animation_duration=\"8\" animation_delay=\"1\" animation_iteration_count=\"1\"][ultimate_heading main_heading=\"Vision\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\"]To be the customers’ first and best choice by ensuring outstanding satisfaction through a well-trained and dedicated team. Prompt and quality solutions to our customers’ requirements will determine the increase of return on investment for us.[/ultimate_heading][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/2\"][ult_animation_block animation=\"fadeIn\" animation_duration=\"8\" animation_delay=\"1\" animation_iteration_count=\"1\"][ultimate_heading main_heading=\"Mission\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" margin_design_tab_text=\"\"]To become a world renowned manufacturer of Animal Health products and a trusted partner among our stakeholders for our integrity as well as for providing effective solutions[/ultimate_heading][/ult_animation_block][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row css=\".vc_custom_1684836308288{margin-top: 15px !important;}\"][vc_column][ultimate_heading main_heading=\"Achievements\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;\"][/ultimate_heading][vc_row_inner gap=\"20\"][vc_column_inner width=\"1/2\" css=\".vc_custom_1691995519863{background-color: #f4ab20 !important;border: 1px solid #f4ab20 !important;border-radius: 35px !important;}\"][bsf-info-box icon_type=\"custom\" icon_img=\"id^3117|url^https://farmchemie.yasithawd.com/wp-content/uploads/2023/08/Pink_-H.png|caption^null|alt^null|title^Pink_-H|description^null\" img_width=\"60\" icon_style=\"advanced\" icon_border_style=\"solid\" icon_color_border=\"#ffffff\" icon_border_size=\"1\" icon_border_radius=\"500\" icon_border_spacing=\"1\" title=\"First Free Sale Certificate obtained from Veterinary Drug Control Authority (VDCA) for Veterinary Pharmaceuticals\" title_font_style=\"font-weight:bold;\" title_font_size=\"desktop:20px;\"][/bsf-info-box][/vc_column_inner][vc_column_inner width=\"1/2\" css=\".vc_custom_1691995661095{background-color: #722f8b !important;border: 1px solid #722f8b !important;border-radius: 35px !important;}\"][bsf-info-box icon_type=\"custom\" icon_img=\"id^3117|url^https://farmchemie.yasithawd.com/wp-content/uploads/2023/08/Pink_-H.png|caption^null|alt^null|title^Pink_-H|description^null\" img_width=\"60\" icon_style=\"advanced\" icon_border_style=\"solid\" icon_color_border=\"#ffffff\" icon_border_size=\"1\" icon_border_radius=\"500\" icon_border_spacing=\"1\" title=\"First ISO 9001: 2015 ,WHO-GMP Quality Management systems certified Animal Health company in Sri Lanka since August, 2012\" title_font_style=\"font-weight:bold;\" title_font_color=\"#ffffff\" title_font_size=\"desktop:20px;\"][/bsf-info-box][/vc_column_inner][/vc_row_inner][vc_row_inner gap=\"20\"][vc_column_inner width=\"1/2\" css=\".vc_custom_1691995661095{background-color: #722f8b !important;border: 1px solid #722f8b !important;border-radius: 35px !important;}\"][bsf-info-box icon_type=\"custom\" icon_img=\"id^3117|url^https://farmchemie.yasithawd.com/wp-content/uploads/2023/08/Pink_-H.png|caption^null|alt^null|title^Pink_-H|description^null\" img_width=\"60\" icon_style=\"advanced\" icon_border_style=\"solid\" icon_color_border=\"#ffffff\" icon_border_size=\"1\" icon_border_radius=\"500\" icon_border_spacing=\"1\" title=\"First FAMI-QS certified company in sri lanka\" title_font_style=\"font-weight:bold;\" title_font_color=\"#ffffff\" title_font_size=\"desktop:20px;\"][/bsf-info-box][/vc_column_inner][vc_column_inner width=\"1/2\" css=\".vc_custom_1691995519863{background-color: #f4ab20 !important;border: 1px solid #f4ab20 !important;border-radius: 35px !important;}\"][bsf-info-box icon_type=\"custom\" icon_img=\"id^3117|url^https://farmchemie.yasithawd.com/wp-content/uploads/2023/08/Pink_-H.png|caption^null|alt^null|title^Pink_-H|description^null\" img_width=\"60\" icon_style=\"advanced\" icon_border_style=\"solid\" icon_color_border=\"#ffffff\" icon_border_size=\"1\" icon_border_radius=\"500\" icon_border_spacing=\"1\" title=\"First Certificate of Ethical Trading certified in Livestock industry\" title_font_style=\"font-weight:bold;\" title_font_size=\"desktop:20px;\"][/bsf-info-box][/vc_column_inner][/vc_row_inner][vc_row_inner gap=\"20\"][vc_column_inner width=\"1/4\" css=\".vc_custom_1691996718116{border-radius: 35px !important;}\"][/vc_column_inner][vc_column_inner width=\"2/4\" css=\".vc_custom_1691995519863{background-color: #f4ab20 !important;border: 1px solid #f4ab20 !important;border-radius: 35px !important;}\"][bsf-info-box icon_type=\"custom\" icon_img=\"id^3117|url^https://farmchemie.yasithawd.com/wp-content/uploads/2023/08/Pink_-H.png|caption^null|alt^null|title^Pink_-H|description^null\" img_width=\"60\" icon_style=\"advanced\" icon_border_style=\"solid\" icon_color_border=\"#ffffff\" icon_border_size=\"1\" icon_border_radius=\"500\" icon_border_spacing=\"1\" title=\"First Silver awarded company at National Exports Awards in Livestock industry\" title_font_style=\"font-weight:bold;\" title_font_size=\"desktop:20px;\"][/bsf-info-box][/vc_column_inner][vc_column_inner width=\"1/4\"][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner width=\"1/6\"][/vc_column_inner][vc_column_inner width=\"2/3\"][vc_single_image image=\"3126\" img_size=\"full\" alignment=\"center\"][vc_single_image image=\"3125\" img_size=\"full\" alignment=\"center\"][/vc_column_inner][vc_column_inner width=\"1/6\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row][vc_column][ultimate_heading main_heading=\"Board Of Directors\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;margin-bottom:35px;\"][/ultimate_heading][ultimate_carousel slides_on_desk=\"1\" slides_on_tabs=\"1\" slides_on_mob=\"1\" arrow_style=\"square-bg\" arrow_bg_color=\"#039447\" arrow_color=\"#ffffff\" next_icon=\"ultsl-arrow-right6\" prev_icon=\"ultsl-arrow-left6\" dots_color=\"#039447\" item_animation=\"fadeIn\"][vc_row_inner][vc_column_inner width=\"1/2\"][vc_single_image image=\"3170\" img_size=\"large\" alignment=\"center\" style=\"vc_box_outline_circle_2\" border_color=\"black\" image_hovers=\"false\"][/vc_column_inner][vc_column_inner width=\"1/2\"][ultimate_heading main_heading=\"Quisque sed nibh tristique\" heading_tag=\"h3\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;\"]Duis lorem risus, aliquet a auctor a, venenatis in dui. Praesent et eros et risus dapibus placerat hendrerit cursus magna.[/ultimate_heading][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner width=\"1/2\"][vc_single_image image=\"3171\" img_size=\"large\" alignment=\"center\" style=\"vc_box_outline_circle_2\" border_color=\"black\" image_hovers=\"false\"][/vc_column_inner][vc_column_inner width=\"1/2\"][ultimate_heading main_heading=\"Quisque sed nibh tristique\" heading_tag=\"h3\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;\"]Duis lorem risus, aliquet a auctor a, venenatis in dui. Praesent et eros et risus dapibus placerat hendrerit cursus magna.[/ultimate_heading][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner width=\"1/2\"][vc_single_image image=\"3173\" img_size=\"large\" alignment=\"center\" style=\"vc_box_outline_circle_2\" border_color=\"black\" image_hovers=\"false\"][/vc_column_inner][vc_column_inner width=\"1/2\"][ultimate_heading main_heading=\"Quisque sed nibh tristique\" heading_tag=\"h3\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;\"]Duis lorem risus, aliquet a auctor a, venenatis in dui. Praesent et eros et risus dapibus placerat hendrerit cursus magna.[/ultimate_heading][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner width=\"1/2\"][vc_single_image image=\"3172\" img_size=\"large\" alignment=\"center\" style=\"vc_box_outline_circle_2\" border_color=\"black\" image_hovers=\"false\"][/vc_column_inner][vc_column_inner width=\"1/2\"][ultimate_heading main_heading=\"Quisque sed nibh tristique\" heading_tag=\"h3\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;\"]Duis lorem risus, aliquet a auctor a, venenatis in dui. Praesent et eros et risus dapibus placerat hendrerit cursus magna.[/ultimate_heading][/vc_column_inner][/vc_row_inner][/ultimate_carousel][/vc_column][/vc_row]','About us','','inherit','closed','closed','','2917-revision-v1','','','2023-08-16 15:16:11','2023-08-16 15:16:11','',2917,'https://farmchemie.yasithawd.com/?p=3239',0,'revision','',0),(3241,1,'2023-08-17 13:05:35','2023-08-17 13:05:35','[vc_row full_width=\"stretch_row_content_no_spaces\"][vc_column][ultimate_heading main_heading=\"Our History\" main_heading_color=\"#762888\" alignment=\"left\"][/ultimate_heading][vc_single_image image=\"3211\" img_size=\"full\" alignment=\"center\"][/vc_column][/vc_row][vc_row disable_element=\"yes\"][vc_column][vc_row_inner css=\".vc_custom_1686713784619{margin-top: 35px !important;}\"][vc_column_inner width=\"1/3\"][vc_single_image image=\"3106\" img_size=\"full\"][/vc_column_inner][vc_column_inner width=\"2/3\"][ultimate_heading main_heading=\"Founded in 2002\" heading_tag=\"h3\" main_heading_color=\"#039447\" alignment=\"left\" sub_heading_font_size=\"desktop:18px;\"]Founded in 2002 by Mr. Uditha Wanigasinghe, an agriculturist who had a mission to aid valuable livestock producers in the country to enhance the yield and profitability of production. FARMCHEMIE introduced unprecedented solutions and consistent technical services to gain our customers’ trust and became the market leader in animal health products in 2006 within just four years.[/ultimate_heading][/vc_column_inner][/vc_row_inner][vc_row_inner rtl_reverse=\"yes\" css=\".vc_custom_1686714025469{margin-top: 35px !important;}\"][vc_column_inner width=\"2/3\"][ultimate_heading main_heading=\"2006\" heading_tag=\"h3\" main_heading_color=\"#039447\" alignment=\"left\"]In 2006, the Sri Lankan poultry industry was affected with Avian Influenza which became a difficult period for the growth of FARMCHEMIE. This was the key factor in our decision to diversify into Agro Products. PLANTCHEM &amp; PLANTSEEDS were established to offer solutions in Agro specialty fertilizers, pesticides and seeds to invaluable cultivators.[/ultimate_heading][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_single_image image=\"3107\" img_size=\"full\"][/vc_column_inner][/vc_row_inner][vc_row_inner css=\".vc_custom_1686713784619{margin-top: 35px !important;}\"][vc_column_inner width=\"1/3\"][vc_single_image image=\"3108\" img_size=\"full\"][/vc_column_inner][vc_column_inner width=\"2/3\"][ultimate_heading main_heading=\"2010\" heading_tag=\"h3\" main_heading_color=\"#039447\" alignment=\"left\"]In 2010, FEED CHEMIE became the subsequent addition to ever-growing vision of Mr. Uditha Wanigasinghe and entered the Animal Feed Additives market.[/ultimate_heading][/vc_column_inner][/vc_row_inner][vc_row_inner rtl_reverse=\"yes\" css=\".vc_custom_1686714115148{margin-top: 35px !important;}\"][vc_column_inner width=\"2/3\"][ultimate_heading main_heading=\"2012\" heading_tag=\"h3\" main_heading_color=\"#039447\" alignment=\"left\"]The year 2012 is described as a turning point in our journey as FARMCHEMIE established our first production facility for the manufacturing and packing of animal health products. FARMCHEMIE became the first animal health organization in Sri Lanka to obtain ISO 9001:2015 and WHO GMP International Quality Certification. With our own formulation unit, FARMCHEMIE was able to offer customized solutions to cater the needs of the Sri Lankan Livestock Industry.[/ultimate_heading][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_single_image image=\"3111\" img_size=\"full\"][/vc_column_inner][/vc_row_inner][vc_row_inner css=\".vc_custom_1686713784619{margin-top: 35px !important;}\"][vc_column_inner width=\"1/3\"][vc_single_image image=\"3112\" img_size=\"full\"][/vc_column_inner][vc_column_inner width=\"2/3\"][ultimate_heading main_heading=\"2016\" heading_tag=\"h3\" main_heading_color=\"#039447\" alignment=\"left\"]The year 2016 was another key milestone with the entry to the International Markets. FARMCHEMIE exported our first Feed Premix consignment to India and in 2018 our export operation was distinctly established as FARMCHEMIE MANUFACTURERS, a Board of Investment (BOI) approved entity.[/ultimate_heading][/vc_column_inner][/vc_row_inner][vc_row_inner css=\".vc_custom_1686713784619{margin-top: 35px !important;}\"][vc_column_inner width=\"2/3\"][ultimate_heading main_heading=\"Fully automated manufacturing\" heading_tag=\"h3\" main_heading_color=\"#039447\" alignment=\"left\"]FARMCHEMIE MANUFACTURERS has invested in fully automated manufacturing facility from Bühler and became the first Sri Lankan owned company to obtain FAMI-QS International Quality Certification.[/ultimate_heading][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_single_image image=\"3110\" img_size=\"full\"][/vc_column_inner][/vc_row_inner][vc_row_inner css=\".vc_custom_1686713784619{margin-top: 35px !important;}\"][vc_column_inner width=\"1/3\"][vc_single_image image=\"3116\" img_size=\"full\"][/vc_column_inner][vc_column_inner width=\"2/3\"][ultimate_heading main_heading=\"Official toll manufacturer partner\" heading_tag=\"h3\" main_heading_color=\"#039447\" alignment=\"left\"]With the trust and reputation built as a reliable manufacturer of animal feed additives and supplements in the global market, several world-renowned international brands have appointed FARMCHEMIE MANUFACTURERS as the official toll manufacturer partner. FARMCHEMIE MANUFACTURERS exports a wide range of products consisting of premixes, specialty feed additives, oral liquid supplements and pet supplements to various markets in South Asia, East Asia, Middle East and Africa.\r\n\r\nFARMCHEMIE, FEED CHEMIE &amp; FARMCHEMIE MANUFACTURERS currently operate under the ownership of our holding company, DYVESTA.\r\n\r\nDYEVSTA has become the pinnacle of Animal Nutrition and Health.\r\n\r\nDYVESTA is Dynamic, through our continuous evolution, growth and progress. DYVESTA is Diverse, in terms of both our business strategy and our community. DYVESTA is Devoted to our valuable business partners through exceptional service.[/ultimate_heading][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row full_width=\"stretch_row\" equal_height=\"yes\" bg_type=\"image\" parallax_style=\"vcpb-vz-jquery\" bg_image_new=\"id^3236|url^https://farmchemie.yasithawd.com/wp-content/uploads/2023/08/VISION-MISIONFF.png|caption^null|alt^null|title^VISION-&amp;-MISIONFF|description^null\" bg_image_repeat=\"no-repeat\" enable_overlay=\"enable_overlay_value\" overlay_color=\"#000000\" overlay_pattern=\"01.png\" overlay_pattern_opacity=\"5\" css=\".vc_custom_1692198837685{margin-top: 35px !important;padding-top: 65px !important;padding-bottom: 100px !important;}\"][vc_column][vc_row_inner equal_height=\"yes\"][vc_column_inner width=\"1/2\"][ult_animation_block animation=\"fadeInLeft\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][ultimate_heading main_heading=\"Vision\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\"]To be the customers’ first and best choice by ensuring outstanding satisfaction through a well-trained and dedicated team. Prompt and quality solutions to our customers’ requirements will determine the increase of return on investment for us.[/ultimate_heading][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/2\"][ult_animation_block animation=\"fadeInRight\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][ultimate_heading main_heading=\"Mission\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\"]To become a world renowned manufacturer of Animal Health products and a trusted partner among our stakeholders for our integrity as well as for providing effective solutions[/ultimate_heading][/ult_animation_block][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row css=\".vc_custom_1684836308288{margin-top: 15px !important;}\"][vc_column][ultimate_heading main_heading=\"Achievements\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;\"][/ultimate_heading][vc_row_inner gap=\"20\"][vc_column_inner width=\"1/2\" css=\".vc_custom_1691995519863{background-color: #f4ab20 !important;border: 1px solid #f4ab20 !important;border-radius: 35px !important;}\"][bsf-info-box icon_type=\"custom\" icon_img=\"id^3117|url^https://farmchemie.yasithawd.com/wp-content/uploads/2023/08/Pink_-H.png|caption^null|alt^null|title^Pink_-H|description^null\" img_width=\"60\" icon_style=\"advanced\" icon_border_style=\"solid\" icon_color_border=\"#ffffff\" icon_border_size=\"1\" icon_border_radius=\"500\" icon_border_spacing=\"1\" title=\"First Free Sale Certificate obtained from Veterinary Drug Control Authority (VDCA) for Veterinary Pharmaceuticals\" title_font_style=\"font-weight:bold;\" title_font_size=\"desktop:20px;\"][/bsf-info-box][/vc_column_inner][vc_column_inner width=\"1/2\" css=\".vc_custom_1691995661095{background-color: #722f8b !important;border: 1px solid #722f8b !important;border-radius: 35px !important;}\"][bsf-info-box icon_type=\"custom\" icon_img=\"id^3117|url^https://farmchemie.yasithawd.com/wp-content/uploads/2023/08/Pink_-H.png|caption^null|alt^null|title^Pink_-H|description^null\" img_width=\"60\" icon_style=\"advanced\" icon_border_style=\"solid\" icon_color_border=\"#ffffff\" icon_border_size=\"1\" icon_border_radius=\"500\" icon_border_spacing=\"1\" title=\"First ISO 9001: 2015 ,WHO-GMP Quality Management systems certified Animal Health company in Sri Lanka since August, 2012\" title_font_style=\"font-weight:bold;\" title_font_color=\"#ffffff\" title_font_size=\"desktop:20px;\"][/bsf-info-box][/vc_column_inner][/vc_row_inner][vc_row_inner gap=\"20\"][vc_column_inner width=\"1/2\" css=\".vc_custom_1691995661095{background-color: #722f8b !important;border: 1px solid #722f8b !important;border-radius: 35px !important;}\"][bsf-info-box icon_type=\"custom\" icon_img=\"id^3117|url^https://farmchemie.yasithawd.com/wp-content/uploads/2023/08/Pink_-H.png|caption^null|alt^null|title^Pink_-H|description^null\" img_width=\"60\" icon_style=\"advanced\" icon_border_style=\"solid\" icon_color_border=\"#ffffff\" icon_border_size=\"1\" icon_border_radius=\"500\" icon_border_spacing=\"1\" title=\"First FAMI-QS certified company in sri lanka\" title_font_style=\"font-weight:bold;\" title_font_color=\"#ffffff\" title_font_size=\"desktop:20px;\"][/bsf-info-box][/vc_column_inner][vc_column_inner width=\"1/2\" css=\".vc_custom_1691995519863{background-color: #f4ab20 !important;border: 1px solid #f4ab20 !important;border-radius: 35px !important;}\"][bsf-info-box icon_type=\"custom\" icon_img=\"id^3117|url^https://farmchemie.yasithawd.com/wp-content/uploads/2023/08/Pink_-H.png|caption^null|alt^null|title^Pink_-H|description^null\" img_width=\"60\" icon_style=\"advanced\" icon_border_style=\"solid\" icon_color_border=\"#ffffff\" icon_border_size=\"1\" icon_border_radius=\"500\" icon_border_spacing=\"1\" title=\"First Certificate of Ethical Trading certified in Livestock industry\" title_font_style=\"font-weight:bold;\" title_font_size=\"desktop:20px;\"][/bsf-info-box][/vc_column_inner][/vc_row_inner][vc_row_inner gap=\"20\"][vc_column_inner width=\"1/4\" css=\".vc_custom_1691996718116{border-radius: 35px !important;}\"][/vc_column_inner][vc_column_inner width=\"2/4\" css=\".vc_custom_1691995519863{background-color: #f4ab20 !important;border: 1px solid #f4ab20 !important;border-radius: 35px !important;}\"][bsf-info-box icon_type=\"custom\" icon_img=\"id^3117|url^https://farmchemie.yasithawd.com/wp-content/uploads/2023/08/Pink_-H.png|caption^null|alt^null|title^Pink_-H|description^null\" img_width=\"60\" icon_style=\"advanced\" icon_border_style=\"solid\" icon_color_border=\"#ffffff\" icon_border_size=\"1\" icon_border_radius=\"500\" icon_border_spacing=\"1\" title=\"First Silver awarded company at National Exports Awards in Livestock industry\" title_font_style=\"font-weight:bold;\" title_font_size=\"desktop:20px;\"][/bsf-info-box][/vc_column_inner][vc_column_inner width=\"1/4\"][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner width=\"1/6\"][/vc_column_inner][vc_column_inner width=\"2/3\"][vc_single_image image=\"3126\" img_size=\"full\" alignment=\"center\"][vc_single_image image=\"3125\" img_size=\"full\" alignment=\"center\"][/vc_column_inner][vc_column_inner width=\"1/6\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row][vc_column][ultimate_heading main_heading=\"Board Of Directors\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;margin-bottom:35px;\"][/ultimate_heading][ultimate_carousel slides_on_desk=\"1\" slides_on_tabs=\"1\" slides_on_mob=\"1\" arrow_style=\"square-bg\" arrow_bg_color=\"#039447\" arrow_color=\"#ffffff\" next_icon=\"ultsl-arrow-right6\" prev_icon=\"ultsl-arrow-left6\" dots_color=\"#039447\" item_animation=\"fadeIn\"][vc_row_inner][vc_column_inner width=\"1/2\"][vc_single_image image=\"3170\" img_size=\"large\" alignment=\"center\" style=\"vc_box_outline_circle_2\" border_color=\"black\" image_hovers=\"false\"][/vc_column_inner][vc_column_inner width=\"1/2\"][ultimate_heading main_heading=\"Quisque sed nibh tristique\" heading_tag=\"h3\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;\"]Duis lorem risus, aliquet a auctor a, venenatis in dui. Praesent et eros et risus dapibus placerat hendrerit cursus magna.[/ultimate_heading][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner width=\"1/2\"][vc_single_image image=\"3171\" img_size=\"large\" alignment=\"center\" style=\"vc_box_outline_circle_2\" border_color=\"black\" image_hovers=\"false\"][/vc_column_inner][vc_column_inner width=\"1/2\"][ultimate_heading main_heading=\"Quisque sed nibh tristique\" heading_tag=\"h3\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;\"]Duis lorem risus, aliquet a auctor a, venenatis in dui. Praesent et eros et risus dapibus placerat hendrerit cursus magna.[/ultimate_heading][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner width=\"1/2\"][vc_single_image image=\"3173\" img_size=\"large\" alignment=\"center\" style=\"vc_box_outline_circle_2\" border_color=\"black\" image_hovers=\"false\"][/vc_column_inner][vc_column_inner width=\"1/2\"][ultimate_heading main_heading=\"Quisque sed nibh tristique\" heading_tag=\"h3\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;\"]Duis lorem risus, aliquet a auctor a, venenatis in dui. Praesent et eros et risus dapibus placerat hendrerit cursus magna.[/ultimate_heading][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner width=\"1/2\"][vc_single_image image=\"3172\" img_size=\"large\" alignment=\"center\" style=\"vc_box_outline_circle_2\" border_color=\"black\" image_hovers=\"false\"][/vc_column_inner][vc_column_inner width=\"1/2\"][ultimate_heading main_heading=\"Quisque sed nibh tristique\" heading_tag=\"h3\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;\"]Duis lorem risus, aliquet a auctor a, venenatis in dui. Praesent et eros et risus dapibus placerat hendrerit cursus magna.[/ultimate_heading][/vc_column_inner][/vc_row_inner][/ultimate_carousel][/vc_column][/vc_row]','About us','','inherit','closed','closed','','2917-revision-v1','','','2023-08-17 13:05:35','2023-08-17 13:05:35','',2917,'https://farmchemie.yasithawd.com/?p=3241',0,'revision','',0),(3242,1,'2023-08-17 13:07:33','2023-08-17 13:07:33','[vc_row full_width=\"stretch_row_content_no_spaces\"][vc_column][ultimate_heading main_heading=\"Our History\" main_heading_color=\"#762888\" alignment=\"left\"][/ultimate_heading][vc_single_image image=\"3211\" img_size=\"full\" alignment=\"center\"][/vc_column][/vc_row][vc_row disable_element=\"yes\"][vc_column][vc_row_inner css=\".vc_custom_1686713784619{margin-top: 35px !important;}\"][vc_column_inner width=\"1/3\"][vc_single_image image=\"3106\" img_size=\"full\"][/vc_column_inner][vc_column_inner width=\"2/3\"][ultimate_heading main_heading=\"Founded in 2002\" heading_tag=\"h3\" main_heading_color=\"#039447\" alignment=\"left\" sub_heading_font_size=\"desktop:18px;\"]Founded in 2002 by Mr. Uditha Wanigasinghe, an agriculturist who had a mission to aid valuable livestock producers in the country to enhance the yield and profitability of production. FARMCHEMIE introduced unprecedented solutions and consistent technical services to gain our customers’ trust and became the market leader in animal health products in 2006 within just four years.[/ultimate_heading][/vc_column_inner][/vc_row_inner][vc_row_inner rtl_reverse=\"yes\" css=\".vc_custom_1686714025469{margin-top: 35px !important;}\"][vc_column_inner width=\"2/3\"][ultimate_heading main_heading=\"2006\" heading_tag=\"h3\" main_heading_color=\"#039447\" alignment=\"left\"]In 2006, the Sri Lankan poultry industry was affected with Avian Influenza which became a difficult period for the growth of FARMCHEMIE. This was the key factor in our decision to diversify into Agro Products. PLANTCHEM &amp; PLANTSEEDS were established to offer solutions in Agro specialty fertilizers, pesticides and seeds to invaluable cultivators.[/ultimate_heading][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_single_image image=\"3107\" img_size=\"full\"][/vc_column_inner][/vc_row_inner][vc_row_inner css=\".vc_custom_1686713784619{margin-top: 35px !important;}\"][vc_column_inner width=\"1/3\"][vc_single_image image=\"3108\" img_size=\"full\"][/vc_column_inner][vc_column_inner width=\"2/3\"][ultimate_heading main_heading=\"2010\" heading_tag=\"h3\" main_heading_color=\"#039447\" alignment=\"left\"]In 2010, FEED CHEMIE became the subsequent addition to ever-growing vision of Mr. Uditha Wanigasinghe and entered the Animal Feed Additives market.[/ultimate_heading][/vc_column_inner][/vc_row_inner][vc_row_inner rtl_reverse=\"yes\" css=\".vc_custom_1686714115148{margin-top: 35px !important;}\"][vc_column_inner width=\"2/3\"][ultimate_heading main_heading=\"2012\" heading_tag=\"h3\" main_heading_color=\"#039447\" alignment=\"left\"]The year 2012 is described as a turning point in our journey as FARMCHEMIE established our first production facility for the manufacturing and packing of animal health products. FARMCHEMIE became the first animal health organization in Sri Lanka to obtain ISO 9001:2015 and WHO GMP International Quality Certification. With our own formulation unit, FARMCHEMIE was able to offer customized solutions to cater the needs of the Sri Lankan Livestock Industry.[/ultimate_heading][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_single_image image=\"3111\" img_size=\"full\"][/vc_column_inner][/vc_row_inner][vc_row_inner css=\".vc_custom_1686713784619{margin-top: 35px !important;}\"][vc_column_inner width=\"1/3\"][vc_single_image image=\"3112\" img_size=\"full\"][/vc_column_inner][vc_column_inner width=\"2/3\"][ultimate_heading main_heading=\"2016\" heading_tag=\"h3\" main_heading_color=\"#039447\" alignment=\"left\"]The year 2016 was another key milestone with the entry to the International Markets. FARMCHEMIE exported our first Feed Premix consignment to India and in 2018 our export operation was distinctly established as FARMCHEMIE MANUFACTURERS, a Board of Investment (BOI) approved entity.[/ultimate_heading][/vc_column_inner][/vc_row_inner][vc_row_inner css=\".vc_custom_1686713784619{margin-top: 35px !important;}\"][vc_column_inner width=\"2/3\"][ultimate_heading main_heading=\"Fully automated manufacturing\" heading_tag=\"h3\" main_heading_color=\"#039447\" alignment=\"left\"]FARMCHEMIE MANUFACTURERS has invested in fully automated manufacturing facility from Bühler and became the first Sri Lankan owned company to obtain FAMI-QS International Quality Certification.[/ultimate_heading][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_single_image image=\"3110\" img_size=\"full\"][/vc_column_inner][/vc_row_inner][vc_row_inner css=\".vc_custom_1686713784619{margin-top: 35px !important;}\"][vc_column_inner width=\"1/3\"][vc_single_image image=\"3116\" img_size=\"full\"][/vc_column_inner][vc_column_inner width=\"2/3\"][ultimate_heading main_heading=\"Official toll manufacturer partner\" heading_tag=\"h3\" main_heading_color=\"#039447\" alignment=\"left\"]With the trust and reputation built as a reliable manufacturer of animal feed additives and supplements in the global market, several world-renowned international brands have appointed FARMCHEMIE MANUFACTURERS as the official toll manufacturer partner. FARMCHEMIE MANUFACTURERS exports a wide range of products consisting of premixes, specialty feed additives, oral liquid supplements and pet supplements to various markets in South Asia, East Asia, Middle East and Africa.\r\n\r\nFARMCHEMIE, FEED CHEMIE &amp; FARMCHEMIE MANUFACTURERS currently operate under the ownership of our holding company, DYVESTA.\r\n\r\nDYEVSTA has become the pinnacle of Animal Nutrition and Health.\r\n\r\nDYVESTA is Dynamic, through our continuous evolution, growth and progress. DYVESTA is Diverse, in terms of both our business strategy and our community. DYVESTA is Devoted to our valuable business partners through exceptional service.[/ultimate_heading][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row full_width=\"stretch_row\" equal_height=\"yes\" bg_type=\"image\" parallax_style=\"vcpb-vz-jquery\" bg_image_new=\"id^3236|url^https://farmchemie.yasithawd.com/wp-content/uploads/2023/08/VISION-MISIONFF.png|caption^null|alt^null|title^VISION-&amp;-MISIONFF|description^null\" bg_image_repeat=\"no-repeat\" enable_overlay=\"enable_overlay_value\" overlay_color=\"#000000\" overlay_pattern=\"01.png\" overlay_pattern_opacity=\"5\" css=\".vc_custom_1692198837685{margin-top: 35px !important;padding-top: 65px !important;padding-bottom: 100px !important;}\"][vc_column][vc_row_inner equal_height=\"yes\"][vc_column_inner width=\"1/2\"][ult_animation_block animation=\"fadeInLeftBig\" animation_duration=\"2\" animation_delay=\"0\" animation_iteration_count=\"1\"][ultimate_heading main_heading=\"Vision\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\"]To be the customers’ first and best choice by ensuring outstanding satisfaction through a well-trained and dedicated team. Prompt and quality solutions to our customers’ requirements will determine the increase of return on investment for us.[/ultimate_heading][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/2\"][ult_animation_block animation=\"fadeInRightBig\" animation_duration=\"2\" animation_delay=\"1\" animation_iteration_count=\"1\"][ultimate_heading main_heading=\"Mission\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\"]To become a world renowned manufacturer of Animal Health products and a trusted partner among our stakeholders for our integrity as well as for providing effective solutions[/ultimate_heading][/ult_animation_block][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row css=\".vc_custom_1684836308288{margin-top: 15px !important;}\"][vc_column][ultimate_heading main_heading=\"Achievements\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;\"][/ultimate_heading][vc_row_inner gap=\"20\"][vc_column_inner width=\"1/2\" css=\".vc_custom_1691995519863{background-color: #f4ab20 !important;border: 1px solid #f4ab20 !important;border-radius: 35px !important;}\"][bsf-info-box icon_type=\"custom\" icon_img=\"id^3117|url^https://farmchemie.yasithawd.com/wp-content/uploads/2023/08/Pink_-H.png|caption^null|alt^null|title^Pink_-H|description^null\" img_width=\"60\" icon_style=\"advanced\" icon_border_style=\"solid\" icon_color_border=\"#ffffff\" icon_border_size=\"1\" icon_border_radius=\"500\" icon_border_spacing=\"1\" title=\"First Free Sale Certificate obtained from Veterinary Drug Control Authority (VDCA) for Veterinary Pharmaceuticals\" title_font_style=\"font-weight:bold;\" title_font_size=\"desktop:20px;\"][/bsf-info-box][/vc_column_inner][vc_column_inner width=\"1/2\" css=\".vc_custom_1691995661095{background-color: #722f8b !important;border: 1px solid #722f8b !important;border-radius: 35px !important;}\"][bsf-info-box icon_type=\"custom\" icon_img=\"id^3117|url^https://farmchemie.yasithawd.com/wp-content/uploads/2023/08/Pink_-H.png|caption^null|alt^null|title^Pink_-H|description^null\" img_width=\"60\" icon_style=\"advanced\" icon_border_style=\"solid\" icon_color_border=\"#ffffff\" icon_border_size=\"1\" icon_border_radius=\"500\" icon_border_spacing=\"1\" title=\"First ISO 9001: 2015 ,WHO-GMP Quality Management systems certified Animal Health company in Sri Lanka since August, 2012\" title_font_style=\"font-weight:bold;\" title_font_color=\"#ffffff\" title_font_size=\"desktop:20px;\"][/bsf-info-box][/vc_column_inner][/vc_row_inner][vc_row_inner gap=\"20\"][vc_column_inner width=\"1/2\" css=\".vc_custom_1691995661095{background-color: #722f8b !important;border: 1px solid #722f8b !important;border-radius: 35px !important;}\"][bsf-info-box icon_type=\"custom\" icon_img=\"id^3117|url^https://farmchemie.yasithawd.com/wp-content/uploads/2023/08/Pink_-H.png|caption^null|alt^null|title^Pink_-H|description^null\" img_width=\"60\" icon_style=\"advanced\" icon_border_style=\"solid\" icon_color_border=\"#ffffff\" icon_border_size=\"1\" icon_border_radius=\"500\" icon_border_spacing=\"1\" title=\"First FAMI-QS certified company in sri lanka\" title_font_style=\"font-weight:bold;\" title_font_color=\"#ffffff\" title_font_size=\"desktop:20px;\"][/bsf-info-box][/vc_column_inner][vc_column_inner width=\"1/2\" css=\".vc_custom_1691995519863{background-color: #f4ab20 !important;border: 1px solid #f4ab20 !important;border-radius: 35px !important;}\"][bsf-info-box icon_type=\"custom\" icon_img=\"id^3117|url^https://farmchemie.yasithawd.com/wp-content/uploads/2023/08/Pink_-H.png|caption^null|alt^null|title^Pink_-H|description^null\" img_width=\"60\" icon_style=\"advanced\" icon_border_style=\"solid\" icon_color_border=\"#ffffff\" icon_border_size=\"1\" icon_border_radius=\"500\" icon_border_spacing=\"1\" title=\"First Certificate of Ethical Trading certified in Livestock industry\" title_font_style=\"font-weight:bold;\" title_font_size=\"desktop:20px;\"][/bsf-info-box][/vc_column_inner][/vc_row_inner][vc_row_inner gap=\"20\"][vc_column_inner width=\"1/4\" css=\".vc_custom_1691996718116{border-radius: 35px !important;}\"][/vc_column_inner][vc_column_inner width=\"2/4\" css=\".vc_custom_1691995519863{background-color: #f4ab20 !important;border: 1px solid #f4ab20 !important;border-radius: 35px !important;}\"][bsf-info-box icon_type=\"custom\" icon_img=\"id^3117|url^https://farmchemie.yasithawd.com/wp-content/uploads/2023/08/Pink_-H.png|caption^null|alt^null|title^Pink_-H|description^null\" img_width=\"60\" icon_style=\"advanced\" icon_border_style=\"solid\" icon_color_border=\"#ffffff\" icon_border_size=\"1\" icon_border_radius=\"500\" icon_border_spacing=\"1\" title=\"First Silver awarded company at National Exports Awards in Livestock industry\" title_font_style=\"font-weight:bold;\" title_font_size=\"desktop:20px;\"][/bsf-info-box][/vc_column_inner][vc_column_inner width=\"1/4\"][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner width=\"1/6\"][/vc_column_inner][vc_column_inner width=\"2/3\"][vc_single_image image=\"3126\" img_size=\"full\" alignment=\"center\"][vc_single_image image=\"3125\" img_size=\"full\" alignment=\"center\"][/vc_column_inner][vc_column_inner width=\"1/6\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row][vc_column][ultimate_heading main_heading=\"Board Of Directors\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;margin-bottom:35px;\"][/ultimate_heading][ultimate_carousel slides_on_desk=\"1\" slides_on_tabs=\"1\" slides_on_mob=\"1\" arrow_style=\"square-bg\" arrow_bg_color=\"#039447\" arrow_color=\"#ffffff\" next_icon=\"ultsl-arrow-right6\" prev_icon=\"ultsl-arrow-left6\" dots_color=\"#039447\" item_animation=\"fadeIn\"][vc_row_inner][vc_column_inner width=\"1/2\"][vc_single_image image=\"3170\" img_size=\"large\" alignment=\"center\" style=\"vc_box_outline_circle_2\" border_color=\"black\" image_hovers=\"false\"][/vc_column_inner][vc_column_inner width=\"1/2\"][ultimate_heading main_heading=\"Quisque sed nibh tristique\" heading_tag=\"h3\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;\"]Duis lorem risus, aliquet a auctor a, venenatis in dui. Praesent et eros et risus dapibus placerat hendrerit cursus magna.[/ultimate_heading][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner width=\"1/2\"][vc_single_image image=\"3171\" img_size=\"large\" alignment=\"center\" style=\"vc_box_outline_circle_2\" border_color=\"black\" image_hovers=\"false\"][/vc_column_inner][vc_column_inner width=\"1/2\"][ultimate_heading main_heading=\"Quisque sed nibh tristique\" heading_tag=\"h3\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;\"]Duis lorem risus, aliquet a auctor a, venenatis in dui. Praesent et eros et risus dapibus placerat hendrerit cursus magna.[/ultimate_heading][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner width=\"1/2\"][vc_single_image image=\"3173\" img_size=\"large\" alignment=\"center\" style=\"vc_box_outline_circle_2\" border_color=\"black\" image_hovers=\"false\"][/vc_column_inner][vc_column_inner width=\"1/2\"][ultimate_heading main_heading=\"Quisque sed nibh tristique\" heading_tag=\"h3\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;\"]Duis lorem risus, aliquet a auctor a, venenatis in dui. Praesent et eros et risus dapibus placerat hendrerit cursus magna.[/ultimate_heading][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner width=\"1/2\"][vc_single_image image=\"3172\" img_size=\"large\" alignment=\"center\" style=\"vc_box_outline_circle_2\" border_color=\"black\" image_hovers=\"false\"][/vc_column_inner][vc_column_inner width=\"1/2\"][ultimate_heading main_heading=\"Quisque sed nibh tristique\" heading_tag=\"h3\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;\"]Duis lorem risus, aliquet a auctor a, venenatis in dui. Praesent et eros et risus dapibus placerat hendrerit cursus magna.[/ultimate_heading][/vc_column_inner][/vc_row_inner][/ultimate_carousel][/vc_column][/vc_row]','About us','','inherit','closed','closed','','2917-revision-v1','','','2023-08-17 13:07:33','2023-08-17 13:07:33','',2917,'https://farmchemie.yasithawd.com/?p=3242',0,'revision','',0),(3244,1,'2023-08-17 13:34:36','2023-08-17 13:34:36','[vc_row full_width=\"stretch_row_content_no_spaces\"][vc_column][ultimate_heading main_heading=\"Our History\" main_heading_color=\"#762888\" alignment=\"left\"][/ultimate_heading][vc_single_image image=\"3211\" img_size=\"full\" alignment=\"center\"][/vc_column][/vc_row][vc_row disable_element=\"yes\"][vc_column][vc_row_inner css=\".vc_custom_1686713784619{margin-top: 35px !important;}\"][vc_column_inner width=\"1/3\"][vc_single_image image=\"3106\" img_size=\"full\"][/vc_column_inner][vc_column_inner width=\"2/3\"][ultimate_heading main_heading=\"Founded in 2002\" heading_tag=\"h3\" main_heading_color=\"#039447\" alignment=\"left\" sub_heading_font_size=\"desktop:18px;\"]Founded in 2002 by Mr. Uditha Wanigasinghe, an agriculturist who had a mission to aid valuable livestock producers in the country to enhance the yield and profitability of production. FARMCHEMIE introduced unprecedented solutions and consistent technical services to gain our customers’ trust and became the market leader in animal health products in 2006 within just four years.[/ultimate_heading][/vc_column_inner][/vc_row_inner][vc_row_inner rtl_reverse=\"yes\" css=\".vc_custom_1686714025469{margin-top: 35px !important;}\"][vc_column_inner width=\"2/3\"][ultimate_heading main_heading=\"2006\" heading_tag=\"h3\" main_heading_color=\"#039447\" alignment=\"left\"]In 2006, the Sri Lankan poultry industry was affected with Avian Influenza which became a difficult period for the growth of FARMCHEMIE. This was the key factor in our decision to diversify into Agro Products. PLANTCHEM &amp; PLANTSEEDS were established to offer solutions in Agro specialty fertilizers, pesticides and seeds to invaluable cultivators.[/ultimate_heading][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_single_image image=\"3107\" img_size=\"full\"][/vc_column_inner][/vc_row_inner][vc_row_inner css=\".vc_custom_1686713784619{margin-top: 35px !important;}\"][vc_column_inner width=\"1/3\"][vc_single_image image=\"3108\" img_size=\"full\"][/vc_column_inner][vc_column_inner width=\"2/3\"][ultimate_heading main_heading=\"2010\" heading_tag=\"h3\" main_heading_color=\"#039447\" alignment=\"left\"]In 2010, FEED CHEMIE became the subsequent addition to ever-growing vision of Mr. Uditha Wanigasinghe and entered the Animal Feed Additives market.[/ultimate_heading][/vc_column_inner][/vc_row_inner][vc_row_inner rtl_reverse=\"yes\" css=\".vc_custom_1686714115148{margin-top: 35px !important;}\"][vc_column_inner width=\"2/3\"][ultimate_heading main_heading=\"2012\" heading_tag=\"h3\" main_heading_color=\"#039447\" alignment=\"left\"]The year 2012 is described as a turning point in our journey as FARMCHEMIE established our first production facility for the manufacturing and packing of animal health products. FARMCHEMIE became the first animal health organization in Sri Lanka to obtain ISO 9001:2015 and WHO GMP International Quality Certification. With our own formulation unit, FARMCHEMIE was able to offer customized solutions to cater the needs of the Sri Lankan Livestock Industry.[/ultimate_heading][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_single_image image=\"3111\" img_size=\"full\"][/vc_column_inner][/vc_row_inner][vc_row_inner css=\".vc_custom_1686713784619{margin-top: 35px !important;}\"][vc_column_inner width=\"1/3\"][vc_single_image image=\"3112\" img_size=\"full\"][/vc_column_inner][vc_column_inner width=\"2/3\"][ultimate_heading main_heading=\"2016\" heading_tag=\"h3\" main_heading_color=\"#039447\" alignment=\"left\"]The year 2016 was another key milestone with the entry to the International Markets. FARMCHEMIE exported our first Feed Premix consignment to India and in 2018 our export operation was distinctly established as FARMCHEMIE MANUFACTURERS, a Board of Investment (BOI) approved entity.[/ultimate_heading][/vc_column_inner][/vc_row_inner][vc_row_inner css=\".vc_custom_1686713784619{margin-top: 35px !important;}\"][vc_column_inner width=\"2/3\"][ultimate_heading main_heading=\"Fully automated manufacturing\" heading_tag=\"h3\" main_heading_color=\"#039447\" alignment=\"left\"]FARMCHEMIE MANUFACTURERS has invested in fully automated manufacturing facility from Bühler and became the first Sri Lankan owned company to obtain FAMI-QS International Quality Certification.[/ultimate_heading][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_single_image image=\"3110\" img_size=\"full\"][/vc_column_inner][/vc_row_inner][vc_row_inner css=\".vc_custom_1686713784619{margin-top: 35px !important;}\"][vc_column_inner width=\"1/3\"][vc_single_image image=\"3116\" img_size=\"full\"][/vc_column_inner][vc_column_inner width=\"2/3\"][ultimate_heading main_heading=\"Official toll manufacturer partner\" heading_tag=\"h3\" main_heading_color=\"#039447\" alignment=\"left\"]With the trust and reputation built as a reliable manufacturer of animal feed additives and supplements in the global market, several world-renowned international brands have appointed FARMCHEMIE MANUFACTURERS as the official toll manufacturer partner. FARMCHEMIE MANUFACTURERS exports a wide range of products consisting of premixes, specialty feed additives, oral liquid supplements and pet supplements to various markets in South Asia, East Asia, Middle East and Africa.\r\n\r\nFARMCHEMIE, FEED CHEMIE &amp; FARMCHEMIE MANUFACTURERS currently operate under the ownership of our holding company, DYVESTA.\r\n\r\nDYEVSTA has become the pinnacle of Animal Nutrition and Health.\r\n\r\nDYVESTA is Dynamic, through our continuous evolution, growth and progress. DYVESTA is Diverse, in terms of both our business strategy and our community. DYVESTA is Devoted to our valuable business partners through exceptional service.[/ultimate_heading][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row full_width=\"stretch_row\" equal_height=\"yes\" bg_type=\"image\" parallax_style=\"vcpb-vz-jquery\" bg_image_new=\"id^3236|url^https://farmchemie.yasithawd.com/wp-content/uploads/2023/08/VISION-MISIONFF.png|caption^null|alt^null|title^VISION-&amp;-MISIONFF|description^null\" bg_image_repeat=\"no-repeat\" enable_overlay=\"enable_overlay_value\" overlay_color=\"#000000\" overlay_pattern=\"01.png\" overlay_pattern_opacity=\"5\" css=\".vc_custom_1692198837685{margin-top: 35px !important;padding-top: 65px !important;padding-bottom: 100px !important;}\"][vc_column][vc_row_inner equal_height=\"yes\"][vc_column_inner width=\"1/2\"][ult_animation_block animation=\"fadeInLeftBig\" animation_duration=\"2\" animation_delay=\"0\" animation_iteration_count=\"1\"][ultimate_heading main_heading=\"Vision\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\"]To be the customers’ first and best choice by ensuring outstanding satisfaction through a well-trained and dedicated team. Prompt and quality solutions to our customers’ requirements will determine the increase of return on investment for us.[/ultimate_heading][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/2\"][ult_animation_block animation=\"fadeInRightBig\" animation_duration=\"2\" animation_delay=\"0\" animation_iteration_count=\"1\"][ultimate_heading main_heading=\"Mission\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\"]To become a world renowned manufacturer of Animal Health products and a trusted partner among our stakeholders for our integrity as well as for providing effective solutions[/ultimate_heading][/ult_animation_block][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row css=\".vc_custom_1684836308288{margin-top: 15px !important;}\"][vc_column][ultimate_heading main_heading=\"Achievements\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;\"][/ultimate_heading][vc_row_inner gap=\"20\"][vc_column_inner width=\"1/2\" css=\".vc_custom_1691995519863{background-color: #f4ab20 !important;border: 1px solid #f4ab20 !important;border-radius: 35px !important;}\"][bsf-info-box icon_type=\"custom\" icon_img=\"id^3117|url^https://farmchemie.yasithawd.com/wp-content/uploads/2023/08/Pink_-H.png|caption^null|alt^null|title^Pink_-H|description^null\" img_width=\"60\" icon_style=\"advanced\" icon_border_style=\"solid\" icon_color_border=\"#ffffff\" icon_border_size=\"1\" icon_border_radius=\"500\" icon_border_spacing=\"1\" title=\"First Free Sale Certificate obtained from Veterinary Drug Control Authority (VDCA) for Veterinary Pharmaceuticals\" title_font_style=\"font-weight:bold;\" title_font_size=\"desktop:20px;\"][/bsf-info-box][/vc_column_inner][vc_column_inner width=\"1/2\" css=\".vc_custom_1691995661095{background-color: #722f8b !important;border: 1px solid #722f8b !important;border-radius: 35px !important;}\"][bsf-info-box icon_type=\"custom\" icon_img=\"id^3117|url^https://farmchemie.yasithawd.com/wp-content/uploads/2023/08/Pink_-H.png|caption^null|alt^null|title^Pink_-H|description^null\" img_width=\"60\" icon_style=\"advanced\" icon_border_style=\"solid\" icon_color_border=\"#ffffff\" icon_border_size=\"1\" icon_border_radius=\"500\" icon_border_spacing=\"1\" title=\"First ISO 9001: 2015 ,WHO-GMP Quality Management systems certified Animal Health company in Sri Lanka since August, 2012\" title_font_style=\"font-weight:bold;\" title_font_color=\"#ffffff\" title_font_size=\"desktop:20px;\"][/bsf-info-box][/vc_column_inner][/vc_row_inner][vc_row_inner gap=\"20\"][vc_column_inner width=\"1/2\" css=\".vc_custom_1691995661095{background-color: #722f8b !important;border: 1px solid #722f8b !important;border-radius: 35px !important;}\"][bsf-info-box icon_type=\"custom\" icon_img=\"id^3117|url^https://farmchemie.yasithawd.com/wp-content/uploads/2023/08/Pink_-H.png|caption^null|alt^null|title^Pink_-H|description^null\" img_width=\"60\" icon_style=\"advanced\" icon_border_style=\"solid\" icon_color_border=\"#ffffff\" icon_border_size=\"1\" icon_border_radius=\"500\" icon_border_spacing=\"1\" title=\"First FAMI-QS certified company in sri lanka\" title_font_style=\"font-weight:bold;\" title_font_color=\"#ffffff\" title_font_size=\"desktop:20px;\"][/bsf-info-box][/vc_column_inner][vc_column_inner width=\"1/2\" css=\".vc_custom_1691995519863{background-color: #f4ab20 !important;border: 1px solid #f4ab20 !important;border-radius: 35px !important;}\"][bsf-info-box icon_type=\"custom\" icon_img=\"id^3117|url^https://farmchemie.yasithawd.com/wp-content/uploads/2023/08/Pink_-H.png|caption^null|alt^null|title^Pink_-H|description^null\" img_width=\"60\" icon_style=\"advanced\" icon_border_style=\"solid\" icon_color_border=\"#ffffff\" icon_border_size=\"1\" icon_border_radius=\"500\" icon_border_spacing=\"1\" title=\"First Certificate of Ethical Trading certified in Livestock industry\" title_font_style=\"font-weight:bold;\" title_font_size=\"desktop:20px;\"][/bsf-info-box][/vc_column_inner][/vc_row_inner][vc_row_inner gap=\"20\"][vc_column_inner width=\"1/4\" css=\".vc_custom_1691996718116{border-radius: 35px !important;}\"][/vc_column_inner][vc_column_inner width=\"2/4\" css=\".vc_custom_1691995519863{background-color: #f4ab20 !important;border: 1px solid #f4ab20 !important;border-radius: 35px !important;}\"][bsf-info-box icon_type=\"custom\" icon_img=\"id^3117|url^https://farmchemie.yasithawd.com/wp-content/uploads/2023/08/Pink_-H.png|caption^null|alt^null|title^Pink_-H|description^null\" img_width=\"60\" icon_style=\"advanced\" icon_border_style=\"solid\" icon_color_border=\"#ffffff\" icon_border_size=\"1\" icon_border_radius=\"500\" icon_border_spacing=\"1\" title=\"First Silver awarded company at National Exports Awards in Livestock industry\" title_font_style=\"font-weight:bold;\" title_font_size=\"desktop:20px;\"][/bsf-info-box][/vc_column_inner][vc_column_inner width=\"1/4\"][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner width=\"1/6\"][/vc_column_inner][vc_column_inner width=\"2/3\"][vc_single_image image=\"3126\" img_size=\"full\" alignment=\"center\"][vc_single_image image=\"3125\" img_size=\"full\" alignment=\"center\"][/vc_column_inner][vc_column_inner width=\"1/6\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row disable_element=\"yes\"][vc_column][ultimate_heading main_heading=\"Board Of Directors\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;margin-bottom:35px;\"][/ultimate_heading][ultimate_carousel slides_on_desk=\"1\" slides_on_tabs=\"1\" slides_on_mob=\"1\" arrow_style=\"square-bg\" arrow_bg_color=\"#039447\" arrow_color=\"#ffffff\" next_icon=\"ultsl-arrow-right6\" prev_icon=\"ultsl-arrow-left6\" dots_color=\"#039447\" item_animation=\"fadeIn\"][vc_row_inner][vc_column_inner width=\"1/2\"][vc_single_image image=\"3170\" img_size=\"large\" alignment=\"center\" style=\"vc_box_outline_circle_2\" border_color=\"black\" image_hovers=\"false\"][/vc_column_inner][vc_column_inner width=\"1/2\"][ultimate_heading main_heading=\"Quisque sed nibh tristique\" heading_tag=\"h3\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;\"]Duis lorem risus, aliquet a auctor a, venenatis in dui. Praesent et eros et risus dapibus placerat hendrerit cursus magna.[/ultimate_heading][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner width=\"1/2\"][vc_single_image image=\"3171\" img_size=\"large\" alignment=\"center\" style=\"vc_box_outline_circle_2\" border_color=\"black\" image_hovers=\"false\"][/vc_column_inner][vc_column_inner width=\"1/2\"][ultimate_heading main_heading=\"Quisque sed nibh tristique\" heading_tag=\"h3\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;\"]Duis lorem risus, aliquet a auctor a, venenatis in dui. Praesent et eros et risus dapibus placerat hendrerit cursus magna.[/ultimate_heading][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner width=\"1/2\"][vc_single_image image=\"3173\" img_size=\"large\" alignment=\"center\" style=\"vc_box_outline_circle_2\" border_color=\"black\" image_hovers=\"false\"][/vc_column_inner][vc_column_inner width=\"1/2\"][ultimate_heading main_heading=\"Quisque sed nibh tristique\" heading_tag=\"h3\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;\"]Duis lorem risus, aliquet a auctor a, venenatis in dui. Praesent et eros et risus dapibus placerat hendrerit cursus magna.[/ultimate_heading][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner width=\"1/2\"][vc_single_image image=\"3172\" img_size=\"large\" alignment=\"center\" style=\"vc_box_outline_circle_2\" border_color=\"black\" image_hovers=\"false\"][/vc_column_inner][vc_column_inner width=\"1/2\"][ultimate_heading main_heading=\"Quisque sed nibh tristique\" heading_tag=\"h3\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;\"]Duis lorem risus, aliquet a auctor a, venenatis in dui. Praesent et eros et risus dapibus placerat hendrerit cursus magna.[/ultimate_heading][/vc_column_inner][/vc_row_inner][/ultimate_carousel][/vc_column][/vc_row][vc_row][vc_column][ultimate_heading main_heading=\"Board Of Directors\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;margin-bottom:35px;\"][/ultimate_heading][vc_row_inner][vc_column_inner width=\"1/3\"][ult_animation_block animation=\"fadeInUp\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][dt_fancy_image image_id=\"3172\" width=\"300\" border_radius=\"1px\" caption=\"off\" css=\".vc_custom_1692278922309{border-top-width: 1px !important;border-right-width: 1px !important;border-bottom-width: 1px !important;border-left-width: 1px !important;border-left-color: #059444 !important;border-left-style: solid !important;border-right-color: #059444 !important;border-right-style: solid !important;border-top-color: #059444 !important;border-top-style: solid !important;border-bottom-color: #059444 !important;border-bottom-style: solid !important;border-radius: 1px !important;}\"][ultimate_heading main_heading=\"Quisque sed nibh tristique\" heading_tag=\"h3\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;\"]\r\n<ul>\r\n 	<li>Duis lorem risus, aliquet a auctor a, venenatis in dui. Praesent et eros et risus dapibus placerat hendrerit cursus magna.</li>\r\n 	<li>Praesent et eros et risus dapibus placerat hendrerit cursus magna.</li>\r\n 	<li>aliquet a auctor a, venenatis in dui.</li>\r\n</ul>\r\n[/ultimate_heading][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/3\"][ult_animation_block animation=\"fadeInDown\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][dt_fancy_image image_id=\"3171\" width=\"300\" border_radius=\"1px\" caption=\"off\" css=\".vc_custom_1692278929158{border-top-width: 1px !important;border-right-width: 1px !important;border-bottom-width: 1px !important;border-left-width: 1px !important;border-left-color: #059444 !important;border-left-style: solid !important;border-right-color: #059444 !important;border-right-style: solid !important;border-top-color: #059444 !important;border-top-style: solid !important;border-bottom-color: #059444 !important;border-bottom-style: solid !important;border-radius: 1px !important;}\"][ultimate_heading main_heading=\"Quisque sed nibh tristique\" heading_tag=\"h3\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;\"]\r\n<ul>\r\n 	<li>Duis lorem risus, aliquet a auctor a, venenatis in dui. Praesent et eros et risus dapibus placerat hendrerit cursus magna.</li>\r\n 	<li>Praesent et eros et risus dapibus placerat hendrerit cursus magna.</li>\r\n 	<li>aliquet a auctor a, venenatis in dui.</li>\r\n</ul>\r\n[/ultimate_heading][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/3\"][ult_animation_block animation=\"fadeInUp\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][dt_fancy_image image_id=\"3170\" width=\"300\" border_radius=\"1px\" caption=\"off\" css=\".vc_custom_1692278936750{border-top-width: 1px !important;border-right-width: 1px !important;border-bottom-width: 1px !important;border-left-width: 1px !important;border-left-color: #059444 !important;border-left-style: solid !important;border-right-color: #059444 !important;border-right-style: solid !important;border-top-color: #059444 !important;border-top-style: solid !important;border-bottom-color: #059444 !important;border-bottom-style: solid !important;border-radius: 1px !important;}\"][ultimate_heading main_heading=\"Quisque sed nibh tristique\" heading_tag=\"h3\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;\"]\r\n<ul>\r\n 	<li>Duis lorem risus, aliquet a auctor a, venenatis in dui. Praesent et eros et risus dapibus placerat hendrerit cursus magna.</li>\r\n 	<li>Praesent et eros et risus dapibus placerat hendrerit cursus magna.</li>\r\n 	<li>aliquet a auctor a, venenatis in dui.</li>\r\n</ul>\r\n[/ultimate_heading][/ult_animation_block][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row][vc_column][ultimate_heading main_heading=\"Executive Directors\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;margin-bottom:35px;\"][/ultimate_heading][vc_row_inner][vc_column_inner width=\"1/5\"][ult_animation_block animation=\"fadeInUp\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][dt_fancy_image image_id=\"3172\" width=\"300\" border_radius=\"1px\" caption=\"off\" css=\".vc_custom_1692278922309{border-top-width: 1px !important;border-right-width: 1px !important;border-bottom-width: 1px !important;border-left-width: 1px !important;border-left-color: #059444 !important;border-left-style: solid !important;border-right-color: #059444 !important;border-right-style: solid !important;border-top-color: #059444 !important;border-top-style: solid !important;border-bottom-color: #059444 !important;border-bottom-style: solid !important;border-radius: 1px !important;}\"][ultimate_heading main_heading=\"Quisque sed nibh tristique\" heading_tag=\"h3\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;\"]\r\n<ul>\r\n 	<li>Duis lorem risus, aliquet a auctor a, venenatis in dui. Praesent et eros et risus dapibus placerat hendrerit cursus magna.</li>\r\n 	<li>Praesent et eros et risus dapibus placerat hendrerit cursus magna.</li>\r\n 	<li>aliquet a auctor a, venenatis in dui.</li>\r\n</ul>\r\n[/ultimate_heading][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/5\"][ult_animation_block animation=\"fadeInDown\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][dt_fancy_image image_id=\"3171\" width=\"300\" border_radius=\"1px\" caption=\"off\" css=\".vc_custom_1692278929158{border-top-width: 1px !important;border-right-width: 1px !important;border-bottom-width: 1px !important;border-left-width: 1px !important;border-left-color: #059444 !important;border-left-style: solid !important;border-right-color: #059444 !important;border-right-style: solid !important;border-top-color: #059444 !important;border-top-style: solid !important;border-bottom-color: #059444 !important;border-bottom-style: solid !important;border-radius: 1px !important;}\"][ultimate_heading main_heading=\"Quisque sed nibh tristique\" heading_tag=\"h3\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;\"]\r\n<ul>\r\n 	<li>Duis lorem risus, aliquet a auctor a, venenatis in dui. Praesent et eros et risus dapibus placerat hendrerit cursus magna.</li>\r\n 	<li>Praesent et eros et risus dapibus placerat hendrerit cursus magna.</li>\r\n 	<li>aliquet a auctor a, venenatis in dui.</li>\r\n</ul>\r\n[/ultimate_heading][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/5\"][ult_animation_block animation=\"fadeInUp\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][dt_fancy_image image_id=\"3170\" width=\"300\" border_radius=\"1px\" caption=\"off\" css=\".vc_custom_1692278936750{border-top-width: 1px !important;border-right-width: 1px !important;border-bottom-width: 1px !important;border-left-width: 1px !important;border-left-color: #059444 !important;border-left-style: solid !important;border-right-color: #059444 !important;border-right-style: solid !important;border-top-color: #059444 !important;border-top-style: solid !important;border-bottom-color: #059444 !important;border-bottom-style: solid !important;border-radius: 1px !important;}\"][ultimate_heading main_heading=\"Quisque sed nibh tristique\" heading_tag=\"h3\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;\"]\r\n<ul>\r\n 	<li>Duis lorem risus, aliquet a auctor a, venenatis in dui. Praesent et eros et risus dapibus placerat hendrerit cursus magna.</li>\r\n 	<li>Praesent et eros et risus dapibus placerat hendrerit cursus magna.</li>\r\n 	<li>aliquet a auctor a, venenatis in dui.</li>\r\n</ul>\r\n[/ultimate_heading][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/5\"][ult_animation_block animation=\"fadeInDown\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][dt_fancy_image image_id=\"3170\" width=\"300\" border_radius=\"1px\" caption=\"off\" css=\".vc_custom_1692278936750{border-top-width: 1px !important;border-right-width: 1px !important;border-bottom-width: 1px !important;border-left-width: 1px !important;border-left-color: #059444 !important;border-left-style: solid !important;border-right-color: #059444 !important;border-right-style: solid !important;border-top-color: #059444 !important;border-top-style: solid !important;border-bottom-color: #059444 !important;border-bottom-style: solid !important;border-radius: 1px !important;}\"][ultimate_heading main_heading=\"Quisque sed nibh tristique\" heading_tag=\"h3\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;\"]\r\n<ul>\r\n 	<li>Duis lorem risus, aliquet a auctor a, venenatis in dui. Praesent et eros et risus dapibus placerat hendrerit cursus magna.</li>\r\n 	<li>Praesent et eros et risus dapibus placerat hendrerit cursus magna.</li>\r\n 	<li>aliquet a auctor a, venenatis in dui.</li>\r\n</ul>\r\n[/ultimate_heading][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/5\"][ult_animation_block animation=\"fadeInDown\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][dt_fancy_image image_id=\"3171\" width=\"300\" border_radius=\"1px\" caption=\"off\" css=\".vc_custom_1692278929158{border-top-width: 1px !important;border-right-width: 1px !important;border-bottom-width: 1px !important;border-left-width: 1px !important;border-left-color: #059444 !important;border-left-style: solid !important;border-right-color: #059444 !important;border-right-style: solid !important;border-top-color: #059444 !important;border-top-style: solid !important;border-bottom-color: #059444 !important;border-bottom-style: solid !important;border-radius: 1px !important;}\"][ultimate_heading main_heading=\"Quisque sed nibh tristique\" heading_tag=\"h3\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;\"]\r\n<ul>\r\n 	<li>Duis lorem risus, aliquet a auctor a, venenatis in dui. Praesent et eros et risus dapibus placerat hendrerit cursus magna.</li>\r\n 	<li>Praesent et eros et risus dapibus placerat hendrerit cursus magna.</li>\r\n 	<li>aliquet a auctor a, venenatis in dui.</li>\r\n</ul>\r\n[/ultimate_heading][/ult_animation_block][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row][vc_column][ultimate_heading main_heading=\"Next Generation\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;margin-bottom:35px;\"][/ultimate_heading][vc_row_inner][vc_column_inner width=\"1/2\"][ult_animation_block animation=\"fadeInUp\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][dt_fancy_image image_id=\"3172\" width=\"300\" border_radius=\"1px\" caption=\"off\" css=\".vc_custom_1692278922309{border-top-width: 1px !important;border-right-width: 1px !important;border-bottom-width: 1px !important;border-left-width: 1px !important;border-left-color: #059444 !important;border-left-style: solid !important;border-right-color: #059444 !important;border-right-style: solid !important;border-top-color: #059444 !important;border-top-style: solid !important;border-bottom-color: #059444 !important;border-bottom-style: solid !important;border-radius: 1px !important;}\"][ultimate_heading main_heading=\"Quisque sed nibh tristique\" heading_tag=\"h3\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;\"]\r\n<ul>\r\n 	<li>Duis lorem risus, aliquet a auctor a, venenatis in dui. Praesent et eros et risus dapibus placerat hendrerit cursus magna.</li>\r\n 	<li>Praesent et eros et risus dapibus placerat hendrerit cursus magna.</li>\r\n 	<li>aliquet a auctor a, venenatis in dui.</li>\r\n</ul>\r\n[/ultimate_heading][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/2\"][ult_animation_block animation=\"fadeInDown\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][dt_fancy_image image_id=\"3171\" width=\"300\" border_radius=\"1px\" caption=\"off\" css=\".vc_custom_1692278929158{border-top-width: 1px !important;border-right-width: 1px !important;border-bottom-width: 1px !important;border-left-width: 1px !important;border-left-color: #059444 !important;border-left-style: solid !important;border-right-color: #059444 !important;border-right-style: solid !important;border-top-color: #059444 !important;border-top-style: solid !important;border-bottom-color: #059444 !important;border-bottom-style: solid !important;border-radius: 1px !important;}\"][ultimate_heading main_heading=\"Quisque sed nibh tristique\" heading_tag=\"h3\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;\"]\r\n<ul>\r\n 	<li>Duis lorem risus, aliquet a auctor a, venenatis in dui. Praesent et eros et risus dapibus placerat hendrerit cursus magna.</li>\r\n 	<li>Praesent et eros et risus dapibus placerat hendrerit cursus magna.</li>\r\n 	<li>aliquet a auctor a, venenatis in dui.</li>\r\n</ul>\r\n[/ultimate_heading][/ult_animation_block][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row]','About us','','inherit','closed','closed','','2917-revision-v1','','','2023-08-17 13:34:36','2023-08-17 13:34:36','',2917,'https://farmchemie.yasithawd.com/?p=3244',0,'revision','',0),(3243,1,'2023-08-17 13:33:32','2023-08-17 13:33:32','[vc_row full_width=\"stretch_row_content_no_spaces\"][vc_column][ultimate_heading main_heading=\"Our History\" main_heading_color=\"#762888\" alignment=\"left\"][/ultimate_heading][vc_single_image image=\"3211\" img_size=\"full\" alignment=\"center\"][/vc_column][/vc_row][vc_row disable_element=\"yes\"][vc_column][vc_row_inner css=\".vc_custom_1686713784619{margin-top: 35px !important;}\"][vc_column_inner width=\"1/3\"][vc_single_image image=\"3106\" img_size=\"full\"][/vc_column_inner][vc_column_inner width=\"2/3\"][ultimate_heading main_heading=\"Founded in 2002\" heading_tag=\"h3\" main_heading_color=\"#039447\" alignment=\"left\" sub_heading_font_size=\"desktop:18px;\"]Founded in 2002 by Mr. Uditha Wanigasinghe, an agriculturist who had a mission to aid valuable livestock producers in the country to enhance the yield and profitability of production. FARMCHEMIE introduced unprecedented solutions and consistent technical services to gain our customers’ trust and became the market leader in animal health products in 2006 within just four years.[/ultimate_heading][/vc_column_inner][/vc_row_inner][vc_row_inner rtl_reverse=\"yes\" css=\".vc_custom_1686714025469{margin-top: 35px !important;}\"][vc_column_inner width=\"2/3\"][ultimate_heading main_heading=\"2006\" heading_tag=\"h3\" main_heading_color=\"#039447\" alignment=\"left\"]In 2006, the Sri Lankan poultry industry was affected with Avian Influenza which became a difficult period for the growth of FARMCHEMIE. This was the key factor in our decision to diversify into Agro Products. PLANTCHEM &amp; PLANTSEEDS were established to offer solutions in Agro specialty fertilizers, pesticides and seeds to invaluable cultivators.[/ultimate_heading][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_single_image image=\"3107\" img_size=\"full\"][/vc_column_inner][/vc_row_inner][vc_row_inner css=\".vc_custom_1686713784619{margin-top: 35px !important;}\"][vc_column_inner width=\"1/3\"][vc_single_image image=\"3108\" img_size=\"full\"][/vc_column_inner][vc_column_inner width=\"2/3\"][ultimate_heading main_heading=\"2010\" heading_tag=\"h3\" main_heading_color=\"#039447\" alignment=\"left\"]In 2010, FEED CHEMIE became the subsequent addition to ever-growing vision of Mr. Uditha Wanigasinghe and entered the Animal Feed Additives market.[/ultimate_heading][/vc_column_inner][/vc_row_inner][vc_row_inner rtl_reverse=\"yes\" css=\".vc_custom_1686714115148{margin-top: 35px !important;}\"][vc_column_inner width=\"2/3\"][ultimate_heading main_heading=\"2012\" heading_tag=\"h3\" main_heading_color=\"#039447\" alignment=\"left\"]The year 2012 is described as a turning point in our journey as FARMCHEMIE established our first production facility for the manufacturing and packing of animal health products. FARMCHEMIE became the first animal health organization in Sri Lanka to obtain ISO 9001:2015 and WHO GMP International Quality Certification. With our own formulation unit, FARMCHEMIE was able to offer customized solutions to cater the needs of the Sri Lankan Livestock Industry.[/ultimate_heading][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_single_image image=\"3111\" img_size=\"full\"][/vc_column_inner][/vc_row_inner][vc_row_inner css=\".vc_custom_1686713784619{margin-top: 35px !important;}\"][vc_column_inner width=\"1/3\"][vc_single_image image=\"3112\" img_size=\"full\"][/vc_column_inner][vc_column_inner width=\"2/3\"][ultimate_heading main_heading=\"2016\" heading_tag=\"h3\" main_heading_color=\"#039447\" alignment=\"left\"]The year 2016 was another key milestone with the entry to the International Markets. FARMCHEMIE exported our first Feed Premix consignment to India and in 2018 our export operation was distinctly established as FARMCHEMIE MANUFACTURERS, a Board of Investment (BOI) approved entity.[/ultimate_heading][/vc_column_inner][/vc_row_inner][vc_row_inner css=\".vc_custom_1686713784619{margin-top: 35px !important;}\"][vc_column_inner width=\"2/3\"][ultimate_heading main_heading=\"Fully automated manufacturing\" heading_tag=\"h3\" main_heading_color=\"#039447\" alignment=\"left\"]FARMCHEMIE MANUFACTURERS has invested in fully automated manufacturing facility from Bühler and became the first Sri Lankan owned company to obtain FAMI-QS International Quality Certification.[/ultimate_heading][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_single_image image=\"3110\" img_size=\"full\"][/vc_column_inner][/vc_row_inner][vc_row_inner css=\".vc_custom_1686713784619{margin-top: 35px !important;}\"][vc_column_inner width=\"1/3\"][vc_single_image image=\"3116\" img_size=\"full\"][/vc_column_inner][vc_column_inner width=\"2/3\"][ultimate_heading main_heading=\"Official toll manufacturer partner\" heading_tag=\"h3\" main_heading_color=\"#039447\" alignment=\"left\"]With the trust and reputation built as a reliable manufacturer of animal feed additives and supplements in the global market, several world-renowned international brands have appointed FARMCHEMIE MANUFACTURERS as the official toll manufacturer partner. FARMCHEMIE MANUFACTURERS exports a wide range of products consisting of premixes, specialty feed additives, oral liquid supplements and pet supplements to various markets in South Asia, East Asia, Middle East and Africa.\r\n\r\nFARMCHEMIE, FEED CHEMIE &amp; FARMCHEMIE MANUFACTURERS currently operate under the ownership of our holding company, DYVESTA.\r\n\r\nDYEVSTA has become the pinnacle of Animal Nutrition and Health.\r\n\r\nDYVESTA is Dynamic, through our continuous evolution, growth and progress. DYVESTA is Diverse, in terms of both our business strategy and our community. DYVESTA is Devoted to our valuable business partners through exceptional service.[/ultimate_heading][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row full_width=\"stretch_row\" equal_height=\"yes\" bg_type=\"image\" parallax_style=\"vcpb-vz-jquery\" bg_image_new=\"id^3236|url^https://farmchemie.yasithawd.com/wp-content/uploads/2023/08/VISION-MISIONFF.png|caption^null|alt^null|title^VISION-&amp;-MISIONFF|description^null\" bg_image_repeat=\"no-repeat\" enable_overlay=\"enable_overlay_value\" overlay_color=\"#000000\" overlay_pattern=\"01.png\" overlay_pattern_opacity=\"5\" css=\".vc_custom_1692198837685{margin-top: 35px !important;padding-top: 65px !important;padding-bottom: 100px !important;}\"][vc_column][vc_row_inner equal_height=\"yes\"][vc_column_inner width=\"1/2\"][ult_animation_block animation=\"fadeInLeftBig\" animation_duration=\"2\" animation_delay=\"0\" animation_iteration_count=\"1\"][ultimate_heading main_heading=\"Vision\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\"]To be the customers’ first and best choice by ensuring outstanding satisfaction through a well-trained and dedicated team. Prompt and quality solutions to our customers’ requirements will determine the increase of return on investment for us.[/ultimate_heading][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/2\"][ult_animation_block animation=\"fadeInRightBig\" animation_duration=\"2\" animation_delay=\"0\" animation_iteration_count=\"1\"][ultimate_heading main_heading=\"Mission\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\"]To become a world renowned manufacturer of Animal Health products and a trusted partner among our stakeholders for our integrity as well as for providing effective solutions[/ultimate_heading][/ult_animation_block][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row css=\".vc_custom_1684836308288{margin-top: 15px !important;}\"][vc_column][ultimate_heading main_heading=\"Achievements\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;\"][/ultimate_heading][vc_row_inner gap=\"20\"][vc_column_inner width=\"1/2\" css=\".vc_custom_1691995519863{background-color: #f4ab20 !important;border: 1px solid #f4ab20 !important;border-radius: 35px !important;}\"][bsf-info-box icon_type=\"custom\" icon_img=\"id^3117|url^https://farmchemie.yasithawd.com/wp-content/uploads/2023/08/Pink_-H.png|caption^null|alt^null|title^Pink_-H|description^null\" img_width=\"60\" icon_style=\"advanced\" icon_border_style=\"solid\" icon_color_border=\"#ffffff\" icon_border_size=\"1\" icon_border_radius=\"500\" icon_border_spacing=\"1\" title=\"First Free Sale Certificate obtained from Veterinary Drug Control Authority (VDCA) for Veterinary Pharmaceuticals\" title_font_style=\"font-weight:bold;\" title_font_size=\"desktop:20px;\"][/bsf-info-box][/vc_column_inner][vc_column_inner width=\"1/2\" css=\".vc_custom_1691995661095{background-color: #722f8b !important;border: 1px solid #722f8b !important;border-radius: 35px !important;}\"][bsf-info-box icon_type=\"custom\" icon_img=\"id^3117|url^https://farmchemie.yasithawd.com/wp-content/uploads/2023/08/Pink_-H.png|caption^null|alt^null|title^Pink_-H|description^null\" img_width=\"60\" icon_style=\"advanced\" icon_border_style=\"solid\" icon_color_border=\"#ffffff\" icon_border_size=\"1\" icon_border_radius=\"500\" icon_border_spacing=\"1\" title=\"First ISO 9001: 2015 ,WHO-GMP Quality Management systems certified Animal Health company in Sri Lanka since August, 2012\" title_font_style=\"font-weight:bold;\" title_font_color=\"#ffffff\" title_font_size=\"desktop:20px;\"][/bsf-info-box][/vc_column_inner][/vc_row_inner][vc_row_inner gap=\"20\"][vc_column_inner width=\"1/2\" css=\".vc_custom_1691995661095{background-color: #722f8b !important;border: 1px solid #722f8b !important;border-radius: 35px !important;}\"][bsf-info-box icon_type=\"custom\" icon_img=\"id^3117|url^https://farmchemie.yasithawd.com/wp-content/uploads/2023/08/Pink_-H.png|caption^null|alt^null|title^Pink_-H|description^null\" img_width=\"60\" icon_style=\"advanced\" icon_border_style=\"solid\" icon_color_border=\"#ffffff\" icon_border_size=\"1\" icon_border_radius=\"500\" icon_border_spacing=\"1\" title=\"First FAMI-QS certified company in sri lanka\" title_font_style=\"font-weight:bold;\" title_font_color=\"#ffffff\" title_font_size=\"desktop:20px;\"][/bsf-info-box][/vc_column_inner][vc_column_inner width=\"1/2\" css=\".vc_custom_1691995519863{background-color: #f4ab20 !important;border: 1px solid #f4ab20 !important;border-radius: 35px !important;}\"][bsf-info-box icon_type=\"custom\" icon_img=\"id^3117|url^https://farmchemie.yasithawd.com/wp-content/uploads/2023/08/Pink_-H.png|caption^null|alt^null|title^Pink_-H|description^null\" img_width=\"60\" icon_style=\"advanced\" icon_border_style=\"solid\" icon_color_border=\"#ffffff\" icon_border_size=\"1\" icon_border_radius=\"500\" icon_border_spacing=\"1\" title=\"First Certificate of Ethical Trading certified in Livestock industry\" title_font_style=\"font-weight:bold;\" title_font_size=\"desktop:20px;\"][/bsf-info-box][/vc_column_inner][/vc_row_inner][vc_row_inner gap=\"20\"][vc_column_inner width=\"1/4\" css=\".vc_custom_1691996718116{border-radius: 35px !important;}\"][/vc_column_inner][vc_column_inner width=\"2/4\" css=\".vc_custom_1691995519863{background-color: #f4ab20 !important;border: 1px solid #f4ab20 !important;border-radius: 35px !important;}\"][bsf-info-box icon_type=\"custom\" icon_img=\"id^3117|url^https://farmchemie.yasithawd.com/wp-content/uploads/2023/08/Pink_-H.png|caption^null|alt^null|title^Pink_-H|description^null\" img_width=\"60\" icon_style=\"advanced\" icon_border_style=\"solid\" icon_color_border=\"#ffffff\" icon_border_size=\"1\" icon_border_radius=\"500\" icon_border_spacing=\"1\" title=\"First Silver awarded company at National Exports Awards in Livestock industry\" title_font_style=\"font-weight:bold;\" title_font_size=\"desktop:20px;\"][/bsf-info-box][/vc_column_inner][vc_column_inner width=\"1/4\"][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner width=\"1/6\"][/vc_column_inner][vc_column_inner width=\"2/3\"][vc_single_image image=\"3126\" img_size=\"full\" alignment=\"center\"][vc_single_image image=\"3125\" img_size=\"full\" alignment=\"center\"][/vc_column_inner][vc_column_inner width=\"1/6\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row disable_element=\"yes\"][vc_column][ultimate_heading main_heading=\"Board Of Directors\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;margin-bottom:35px;\"][/ultimate_heading][ultimate_carousel slides_on_desk=\"1\" slides_on_tabs=\"1\" slides_on_mob=\"1\" arrow_style=\"square-bg\" arrow_bg_color=\"#039447\" arrow_color=\"#ffffff\" next_icon=\"ultsl-arrow-right6\" prev_icon=\"ultsl-arrow-left6\" dots_color=\"#039447\" item_animation=\"fadeIn\"][vc_row_inner][vc_column_inner width=\"1/2\"][vc_single_image image=\"3170\" img_size=\"large\" alignment=\"center\" style=\"vc_box_outline_circle_2\" border_color=\"black\" image_hovers=\"false\"][/vc_column_inner][vc_column_inner width=\"1/2\"][ultimate_heading main_heading=\"Quisque sed nibh tristique\" heading_tag=\"h3\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;\"]Duis lorem risus, aliquet a auctor a, venenatis in dui. Praesent et eros et risus dapibus placerat hendrerit cursus magna.[/ultimate_heading][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner width=\"1/2\"][vc_single_image image=\"3171\" img_size=\"large\" alignment=\"center\" style=\"vc_box_outline_circle_2\" border_color=\"black\" image_hovers=\"false\"][/vc_column_inner][vc_column_inner width=\"1/2\"][ultimate_heading main_heading=\"Quisque sed nibh tristique\" heading_tag=\"h3\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;\"]Duis lorem risus, aliquet a auctor a, venenatis in dui. Praesent et eros et risus dapibus placerat hendrerit cursus magna.[/ultimate_heading][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner width=\"1/2\"][vc_single_image image=\"3173\" img_size=\"large\" alignment=\"center\" style=\"vc_box_outline_circle_2\" border_color=\"black\" image_hovers=\"false\"][/vc_column_inner][vc_column_inner width=\"1/2\"][ultimate_heading main_heading=\"Quisque sed nibh tristique\" heading_tag=\"h3\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;\"]Duis lorem risus, aliquet a auctor a, venenatis in dui. Praesent et eros et risus dapibus placerat hendrerit cursus magna.[/ultimate_heading][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner width=\"1/2\"][vc_single_image image=\"3172\" img_size=\"large\" alignment=\"center\" style=\"vc_box_outline_circle_2\" border_color=\"black\" image_hovers=\"false\"][/vc_column_inner][vc_column_inner width=\"1/2\"][ultimate_heading main_heading=\"Quisque sed nibh tristique\" heading_tag=\"h3\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;\"]Duis lorem risus, aliquet a auctor a, venenatis in dui. Praesent et eros et risus dapibus placerat hendrerit cursus magna.[/ultimate_heading][/vc_column_inner][/vc_row_inner][/ultimate_carousel][/vc_column][/vc_row][vc_row][vc_column][ultimate_heading main_heading=\"Board Of Directors\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;margin-bottom:35px;\"][/ultimate_heading][vc_row_inner][vc_column_inner width=\"1/3\"][ult_animation_block animation=\"fadeInUp\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][dt_fancy_image image_id=\"3172\" width=\"300\" border_radius=\"1px\" caption=\"off\" css=\".vc_custom_1692278922309{border-top-width: 1px !important;border-right-width: 1px !important;border-bottom-width: 1px !important;border-left-width: 1px !important;border-left-color: #059444 !important;border-left-style: solid !important;border-right-color: #059444 !important;border-right-style: solid !important;border-top-color: #059444 !important;border-top-style: solid !important;border-bottom-color: #059444 !important;border-bottom-style: solid !important;border-radius: 1px !important;}\"][ultimate_heading main_heading=\"Quisque sed nibh tristique\" heading_tag=\"h3\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;\" margin_design_tab_text=\"\"]\r\n<ul>\r\n 	<li>Duis lorem risus, aliquet a auctor a, venenatis in dui. Praesent et eros et risus dapibus placerat hendrerit cursus magna.</li>\r\n 	<li>Praesent et eros et risus dapibus placerat hendrerit cursus magna.</li>\r\n 	<li>aliquet a auctor a, venenatis in dui.</li>\r\n</ul>\r\n[/ultimate_heading][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/3\"][ult_animation_block animation=\"fadeInDown\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][dt_fancy_image image_id=\"3171\" width=\"300\" border_radius=\"1px\" caption=\"off\" css=\".vc_custom_1692278929158{border-top-width: 1px !important;border-right-width: 1px !important;border-bottom-width: 1px !important;border-left-width: 1px !important;border-left-color: #059444 !important;border-left-style: solid !important;border-right-color: #059444 !important;border-right-style: solid !important;border-top-color: #059444 !important;border-top-style: solid !important;border-bottom-color: #059444 !important;border-bottom-style: solid !important;border-radius: 1px !important;}\"][ultimate_heading main_heading=\"Quisque sed nibh tristique\" heading_tag=\"h3\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;\" margin_design_tab_text=\"\"]\r\n<ul>\r\n 	<li>Duis lorem risus, aliquet a auctor a, venenatis in dui. Praesent et eros et risus dapibus placerat hendrerit cursus magna.</li>\r\n 	<li>Praesent et eros et risus dapibus placerat hendrerit cursus magna.</li>\r\n 	<li>aliquet a auctor a, venenatis in dui.</li>\r\n</ul>\r\n[/ultimate_heading][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/3\"][ult_animation_block animation=\"fadeInUp\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][dt_fancy_image image_id=\"3170\" width=\"300\" border_radius=\"1px\" caption=\"off\" css=\".vc_custom_1692278936750{border-top-width: 1px !important;border-right-width: 1px !important;border-bottom-width: 1px !important;border-left-width: 1px !important;border-left-color: #059444 !important;border-left-style: solid !important;border-right-color: #059444 !important;border-right-style: solid !important;border-top-color: #059444 !important;border-top-style: solid !important;border-bottom-color: #059444 !important;border-bottom-style: solid !important;border-radius: 1px !important;}\"][ultimate_heading main_heading=\"Quisque sed nibh tristique\" heading_tag=\"h3\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;\" margin_design_tab_text=\"\"]\r\n<ul>\r\n 	<li>Duis lorem risus, aliquet a auctor a, venenatis in dui. Praesent et eros et risus dapibus placerat hendrerit cursus magna.</li>\r\n 	<li>Praesent et eros et risus dapibus placerat hendrerit cursus magna.</li>\r\n 	<li>aliquet a auctor a, venenatis in dui.</li>\r\n</ul>\r\n[/ultimate_heading][/ult_animation_block][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row][vc_column][ultimate_heading main_heading=\"Next Generation\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;margin-bottom:35px;\" margin_design_tab_text=\"\"][/ultimate_heading][vc_row_inner][vc_column_inner width=\"1/2\"][ult_animation_block animation=\"fadeInUp\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][dt_fancy_image image_id=\"3172\" width=\"300\" border_radius=\"1px\" caption=\"off\" css=\".vc_custom_1692278922309{border-top-width: 1px !important;border-right-width: 1px !important;border-bottom-width: 1px !important;border-left-width: 1px !important;border-left-color: #059444 !important;border-left-style: solid !important;border-right-color: #059444 !important;border-right-style: solid !important;border-top-color: #059444 !important;border-top-style: solid !important;border-bottom-color: #059444 !important;border-bottom-style: solid !important;border-radius: 1px !important;}\"][ultimate_heading main_heading=\"Quisque sed nibh tristique\" heading_tag=\"h3\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;\" margin_design_tab_text=\"\"]\r\n<ul>\r\n 	<li>Duis lorem risus, aliquet a auctor a, venenatis in dui. Praesent et eros et risus dapibus placerat hendrerit cursus magna.</li>\r\n 	<li>Praesent et eros et risus dapibus placerat hendrerit cursus magna.</li>\r\n 	<li>aliquet a auctor a, venenatis in dui.</li>\r\n</ul>\r\n[/ultimate_heading][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/2\"][ult_animation_block animation=\"fadeInDown\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][dt_fancy_image image_id=\"3171\" width=\"300\" border_radius=\"1px\" caption=\"off\" css=\".vc_custom_1692278929158{border-top-width: 1px !important;border-right-width: 1px !important;border-bottom-width: 1px !important;border-left-width: 1px !important;border-left-color: #059444 !important;border-left-style: solid !important;border-right-color: #059444 !important;border-right-style: solid !important;border-top-color: #059444 !important;border-top-style: solid !important;border-bottom-color: #059444 !important;border-bottom-style: solid !important;border-radius: 1px !important;}\"][ultimate_heading main_heading=\"Quisque sed nibh tristique\" heading_tag=\"h3\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;\" margin_design_tab_text=\"\"]\r\n<ul>\r\n 	<li>Duis lorem risus, aliquet a auctor a, venenatis in dui. Praesent et eros et risus dapibus placerat hendrerit cursus magna.</li>\r\n 	<li>Praesent et eros et risus dapibus placerat hendrerit cursus magna.</li>\r\n 	<li>aliquet a auctor a, venenatis in dui.</li>\r\n</ul>\r\n[/ultimate_heading][/ult_animation_block][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row][vc_column][ultimate_heading main_heading=\"Executive Directors \" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;margin-bottom:35px;\" margin_design_tab_text=\"\"][/ultimate_heading][vc_row_inner][vc_column_inner width=\"1/5\"][ult_animation_block animation=\"fadeInUp\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][dt_fancy_image image_id=\"3172\" width=\"300\" border_radius=\"1px\" caption=\"off\" css=\".vc_custom_1692278922309{border-top-width: 1px !important;border-right-width: 1px !important;border-bottom-width: 1px !important;border-left-width: 1px !important;border-left-color: #059444 !important;border-left-style: solid !important;border-right-color: #059444 !important;border-right-style: solid !important;border-top-color: #059444 !important;border-top-style: solid !important;border-bottom-color: #059444 !important;border-bottom-style: solid !important;border-radius: 1px !important;}\"][ultimate_heading main_heading=\"Quisque sed nibh tristique\" heading_tag=\"h3\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;\" margin_design_tab_text=\"\"]\r\n<ul>\r\n 	<li>Duis lorem risus, aliquet a auctor a, venenatis in dui. Praesent et eros et risus dapibus placerat hendrerit cursus magna.</li>\r\n 	<li>Praesent et eros et risus dapibus placerat hendrerit cursus magna.</li>\r\n 	<li>aliquet a auctor a, venenatis in dui.</li>\r\n</ul>\r\n[/ultimate_heading][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/5\"][ult_animation_block animation=\"fadeInDown\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][dt_fancy_image image_id=\"3171\" width=\"300\" border_radius=\"1px\" caption=\"off\" css=\".vc_custom_1692278929158{border-top-width: 1px !important;border-right-width: 1px !important;border-bottom-width: 1px !important;border-left-width: 1px !important;border-left-color: #059444 !important;border-left-style: solid !important;border-right-color: #059444 !important;border-right-style: solid !important;border-top-color: #059444 !important;border-top-style: solid !important;border-bottom-color: #059444 !important;border-bottom-style: solid !important;border-radius: 1px !important;}\"][ultimate_heading main_heading=\"Quisque sed nibh tristique\" heading_tag=\"h3\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;\" margin_design_tab_text=\"\"]\r\n<ul>\r\n 	<li>Duis lorem risus, aliquet a auctor a, venenatis in dui. Praesent et eros et risus dapibus placerat hendrerit cursus magna.</li>\r\n 	<li>Praesent et eros et risus dapibus placerat hendrerit cursus magna.</li>\r\n 	<li>aliquet a auctor a, venenatis in dui.</li>\r\n</ul>\r\n[/ultimate_heading][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/5\"][ult_animation_block animation=\"fadeInUp\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][dt_fancy_image image_id=\"3170\" width=\"300\" border_radius=\"1px\" caption=\"off\" css=\".vc_custom_1692278936750{border-top-width: 1px !important;border-right-width: 1px !important;border-bottom-width: 1px !important;border-left-width: 1px !important;border-left-color: #059444 !important;border-left-style: solid !important;border-right-color: #059444 !important;border-right-style: solid !important;border-top-color: #059444 !important;border-top-style: solid !important;border-bottom-color: #059444 !important;border-bottom-style: solid !important;border-radius: 1px !important;}\"][ultimate_heading main_heading=\"Quisque sed nibh tristique\" heading_tag=\"h3\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;\" margin_design_tab_text=\"\"]\r\n<ul>\r\n 	<li>Duis lorem risus, aliquet a auctor a, venenatis in dui. Praesent et eros et risus dapibus placerat hendrerit cursus magna.</li>\r\n 	<li>Praesent et eros et risus dapibus placerat hendrerit cursus magna.</li>\r\n 	<li>aliquet a auctor a, venenatis in dui.</li>\r\n</ul>\r\n[/ultimate_heading][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/5\"][ult_animation_block animation=\"fadeInDown\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][dt_fancy_image image_id=\"3170\" width=\"300\" border_radius=\"1px\" caption=\"off\" css=\".vc_custom_1692278936750{border-top-width: 1px !important;border-right-width: 1px !important;border-bottom-width: 1px !important;border-left-width: 1px !important;border-left-color: #059444 !important;border-left-style: solid !important;border-right-color: #059444 !important;border-right-style: solid !important;border-top-color: #059444 !important;border-top-style: solid !important;border-bottom-color: #059444 !important;border-bottom-style: solid !important;border-radius: 1px !important;}\"][ultimate_heading main_heading=\"Quisque sed nibh tristique\" heading_tag=\"h3\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;\" margin_design_tab_text=\"\"]\r\n<ul>\r\n 	<li>Duis lorem risus, aliquet a auctor a, venenatis in dui. Praesent et eros et risus dapibus placerat hendrerit cursus magna.</li>\r\n 	<li>Praesent et eros et risus dapibus placerat hendrerit cursus magna.</li>\r\n 	<li>aliquet a auctor a, venenatis in dui.</li>\r\n</ul>\r\n[/ultimate_heading][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/5\"][ult_animation_block animation=\"fadeInDown\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][dt_fancy_image image_id=\"3171\" width=\"300\" border_radius=\"1px\" caption=\"off\" css=\".vc_custom_1692278929158{border-top-width: 1px !important;border-right-width: 1px !important;border-bottom-width: 1px !important;border-left-width: 1px !important;border-left-color: #059444 !important;border-left-style: solid !important;border-right-color: #059444 !important;border-right-style: solid !important;border-top-color: #059444 !important;border-top-style: solid !important;border-bottom-color: #059444 !important;border-bottom-style: solid !important;border-radius: 1px !important;}\"][ultimate_heading main_heading=\"Quisque sed nibh tristique\" heading_tag=\"h3\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;\" margin_design_tab_text=\"\"]\r\n<ul>\r\n 	<li>Duis lorem risus, aliquet a auctor a, venenatis in dui. Praesent et eros et risus dapibus placerat hendrerit cursus magna.</li>\r\n 	<li>Praesent et eros et risus dapibus placerat hendrerit cursus magna.</li>\r\n 	<li>aliquet a auctor a, venenatis in dui.</li>\r\n</ul>\r\n[/ultimate_heading][/ult_animation_block][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row]','About us','','inherit','closed','closed','','2917-revision-v1','','','2023-08-17 13:33:32','2023-08-17 13:33:32','',2917,'https://farmchemie.yasithawd.com/?p=3243',0,'revision','',0),(3245,1,'2023-08-17 13:44:31','2023-08-17 13:44:31','','Alverm-30_400px-200px','','inherit','open','closed','','alverm-30_400px-200px','','','2023-08-17 13:44:31','2023-08-17 13:44:31','',0,'https://farmchemie.yasithawd.com/wp-content/uploads/2023/04/Alverm-30_400px-200px.png',0,'attachment','image/png',0),(3247,1,'2023-08-17 14:00:36','2023-08-17 14:00:36','[vc_row full_width=\"stretch_row_content_no_spaces\"][vc_column][ultimate_heading main_heading=\"Our History\" main_heading_color=\"#762888\" alignment=\"left\"][/ultimate_heading][vc_single_image image=\"3211\" img_size=\"full\" alignment=\"center\"][/vc_column][/vc_row][vc_row disable_element=\"yes\"][vc_column][vc_row_inner css=\".vc_custom_1686713784619{margin-top: 35px !important;}\"][vc_column_inner width=\"1/3\"][vc_single_image image=\"3106\" img_size=\"full\"][/vc_column_inner][vc_column_inner width=\"2/3\"][ultimate_heading main_heading=\"Founded in 2002\" heading_tag=\"h3\" main_heading_color=\"#039447\" alignment=\"left\" sub_heading_font_size=\"desktop:18px;\"]Founded in 2002 by Mr. Uditha Wanigasinghe, an agriculturist who had a mission to aid valuable livestock producers in the country to enhance the yield and profitability of production. FARMCHEMIE introduced unprecedented solutions and consistent technical services to gain our customers’ trust and became the market leader in animal health products in 2006 within just four years.[/ultimate_heading][/vc_column_inner][/vc_row_inner][vc_row_inner rtl_reverse=\"yes\" css=\".vc_custom_1686714025469{margin-top: 35px !important;}\"][vc_column_inner width=\"2/3\"][ultimate_heading main_heading=\"2006\" heading_tag=\"h3\" main_heading_color=\"#039447\" alignment=\"left\"]In 2006, the Sri Lankan poultry industry was affected with Avian Influenza which became a difficult period for the growth of FARMCHEMIE. This was the key factor in our decision to diversify into Agro Products. PLANTCHEM &amp; PLANTSEEDS were established to offer solutions in Agro specialty fertilizers, pesticides and seeds to invaluable cultivators.[/ultimate_heading][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_single_image image=\"3107\" img_size=\"full\"][/vc_column_inner][/vc_row_inner][vc_row_inner css=\".vc_custom_1686713784619{margin-top: 35px !important;}\"][vc_column_inner width=\"1/3\"][vc_single_image image=\"3108\" img_size=\"full\"][/vc_column_inner][vc_column_inner width=\"2/3\"][ultimate_heading main_heading=\"2010\" heading_tag=\"h3\" main_heading_color=\"#039447\" alignment=\"left\"]In 2010, FEED CHEMIE became the subsequent addition to ever-growing vision of Mr. Uditha Wanigasinghe and entered the Animal Feed Additives market.[/ultimate_heading][/vc_column_inner][/vc_row_inner][vc_row_inner rtl_reverse=\"yes\" css=\".vc_custom_1686714115148{margin-top: 35px !important;}\"][vc_column_inner width=\"2/3\"][ultimate_heading main_heading=\"2012\" heading_tag=\"h3\" main_heading_color=\"#039447\" alignment=\"left\"]The year 2012 is described as a turning point in our journey as FARMCHEMIE established our first production facility for the manufacturing and packing of animal health products. FARMCHEMIE became the first animal health organization in Sri Lanka to obtain ISO 9001:2015 and WHO GMP International Quality Certification. With our own formulation unit, FARMCHEMIE was able to offer customized solutions to cater the needs of the Sri Lankan Livestock Industry.[/ultimate_heading][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_single_image image=\"3111\" img_size=\"full\"][/vc_column_inner][/vc_row_inner][vc_row_inner css=\".vc_custom_1686713784619{margin-top: 35px !important;}\"][vc_column_inner width=\"1/3\"][vc_single_image image=\"3112\" img_size=\"full\"][/vc_column_inner][vc_column_inner width=\"2/3\"][ultimate_heading main_heading=\"2016\" heading_tag=\"h3\" main_heading_color=\"#039447\" alignment=\"left\"]The year 2016 was another key milestone with the entry to the International Markets. FARMCHEMIE exported our first Feed Premix consignment to India and in 2018 our export operation was distinctly established as FARMCHEMIE MANUFACTURERS, a Board of Investment (BOI) approved entity.[/ultimate_heading][/vc_column_inner][/vc_row_inner][vc_row_inner css=\".vc_custom_1686713784619{margin-top: 35px !important;}\"][vc_column_inner width=\"2/3\"][ultimate_heading main_heading=\"Fully automated manufacturing\" heading_tag=\"h3\" main_heading_color=\"#039447\" alignment=\"left\"]FARMCHEMIE MANUFACTURERS has invested in fully automated manufacturing facility from Bühler and became the first Sri Lankan owned company to obtain FAMI-QS International Quality Certification.[/ultimate_heading][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_single_image image=\"3110\" img_size=\"full\"][/vc_column_inner][/vc_row_inner][vc_row_inner css=\".vc_custom_1686713784619{margin-top: 35px !important;}\"][vc_column_inner width=\"1/3\"][vc_single_image image=\"3116\" img_size=\"full\"][/vc_column_inner][vc_column_inner width=\"2/3\"][ultimate_heading main_heading=\"Official toll manufacturer partner\" heading_tag=\"h3\" main_heading_color=\"#039447\" alignment=\"left\"]With the trust and reputation built as a reliable manufacturer of animal feed additives and supplements in the global market, several world-renowned international brands have appointed FARMCHEMIE MANUFACTURERS as the official toll manufacturer partner. FARMCHEMIE MANUFACTURERS exports a wide range of products consisting of premixes, specialty feed additives, oral liquid supplements and pet supplements to various markets in South Asia, East Asia, Middle East and Africa.\r\n\r\nFARMCHEMIE, FEED CHEMIE &amp; FARMCHEMIE MANUFACTURERS currently operate under the ownership of our holding company, DYVESTA.\r\n\r\nDYEVSTA has become the pinnacle of Animal Nutrition and Health.\r\n\r\nDYVESTA is Dynamic, through our continuous evolution, growth and progress. DYVESTA is Diverse, in terms of both our business strategy and our community. DYVESTA is Devoted to our valuable business partners through exceptional service.[/ultimate_heading][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row full_width=\"stretch_row\" equal_height=\"yes\" bg_type=\"image\" parallax_style=\"vcpb-vz-jquery\" bg_image_new=\"id^3236|url^https://farmchemie.yasithawd.com/wp-content/uploads/2023/08/VISION-MISIONFF.png|caption^null|alt^null|title^VISION-&amp;-MISIONFF|description^null\" bg_image_repeat=\"no-repeat\" enable_overlay=\"enable_overlay_value\" overlay_color=\"#000000\" overlay_pattern=\"01.png\" overlay_pattern_opacity=\"5\" css=\".vc_custom_1692198837685{margin-top: 35px !important;padding-top: 65px !important;padding-bottom: 100px !important;}\"][vc_column][vc_row_inner equal_height=\"yes\"][vc_column_inner width=\"1/2\"][ult_animation_block animation=\"fadeInLeftBig\" animation_duration=\"2\" animation_delay=\"0\" animation_iteration_count=\"1\"][ultimate_heading main_heading=\"Vision\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\"]To be the customers’ first and best choice by ensuring outstanding satisfaction through a well-trained and dedicated team. Prompt and quality solutions to our customers’ requirements will determine the increase of return on investment for us.[/ultimate_heading][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/2\"][ult_animation_block animation=\"fadeInRightBig\" animation_duration=\"2\" animation_delay=\"0\" animation_iteration_count=\"1\"][ultimate_heading main_heading=\"Mission\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\"]To become a world renowned manufacturer of Animal Health products and a trusted partner among our stakeholders for our integrity as well as for providing effective solutions[/ultimate_heading][/ult_animation_block][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row css=\".vc_custom_1684836308288{margin-top: 15px !important;}\"][vc_column][ultimate_heading main_heading=\"Achievements\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;\"][/ultimate_heading][vc_row_inner gap=\"20\"][vc_column_inner width=\"1/2\" css=\".vc_custom_1691995519863{background-color: #f4ab20 !important;border: 1px solid #f4ab20 !important;border-radius: 35px !important;}\"][bsf-info-box icon_type=\"custom\" icon_img=\"id^3117|url^https://farmchemie.yasithawd.com/wp-content/uploads/2023/08/Pink_-H.png|caption^null|alt^null|title^Pink_-H|description^null\" img_width=\"60\" icon_style=\"advanced\" icon_border_style=\"solid\" icon_color_border=\"#ffffff\" icon_border_size=\"1\" icon_border_radius=\"500\" icon_border_spacing=\"1\" title=\"First Free Sale Certificate obtained from Veterinary Drug Control Authority (VDCA) for Veterinary Pharmaceuticals\" title_font_style=\"font-weight:bold;\" title_font_size=\"desktop:20px;\"][/bsf-info-box][/vc_column_inner][vc_column_inner width=\"1/2\" css=\".vc_custom_1691995661095{background-color: #722f8b !important;border: 1px solid #722f8b !important;border-radius: 35px !important;}\"][bsf-info-box icon_type=\"custom\" icon_img=\"id^3117|url^https://farmchemie.yasithawd.com/wp-content/uploads/2023/08/Pink_-H.png|caption^null|alt^null|title^Pink_-H|description^null\" img_width=\"60\" icon_style=\"advanced\" icon_border_style=\"solid\" icon_color_border=\"#ffffff\" icon_border_size=\"1\" icon_border_radius=\"500\" icon_border_spacing=\"1\" title=\"First ISO 9001: 2015 ,WHO-GMP Quality Management systems certified Animal Health company in Sri Lanka since August, 2012\" title_font_style=\"font-weight:bold;\" title_font_color=\"#ffffff\" title_font_size=\"desktop:20px;\"][/bsf-info-box][/vc_column_inner][/vc_row_inner][vc_row_inner gap=\"20\"][vc_column_inner width=\"1/2\" css=\".vc_custom_1691995661095{background-color: #722f8b !important;border: 1px solid #722f8b !important;border-radius: 35px !important;}\"][bsf-info-box icon_type=\"custom\" icon_img=\"id^3117|url^https://farmchemie.yasithawd.com/wp-content/uploads/2023/08/Pink_-H.png|caption^null|alt^null|title^Pink_-H|description^null\" img_width=\"60\" icon_style=\"advanced\" icon_border_style=\"solid\" icon_color_border=\"#ffffff\" icon_border_size=\"1\" icon_border_radius=\"500\" icon_border_spacing=\"1\" title=\"First FAMI-QS certified company in sri lanka\" title_font_style=\"font-weight:bold;\" title_font_color=\"#ffffff\" title_font_size=\"desktop:20px;\"][/bsf-info-box][/vc_column_inner][vc_column_inner width=\"1/2\" css=\".vc_custom_1691995519863{background-color: #f4ab20 !important;border: 1px solid #f4ab20 !important;border-radius: 35px !important;}\"][bsf-info-box icon_type=\"custom\" icon_img=\"id^3117|url^https://farmchemie.yasithawd.com/wp-content/uploads/2023/08/Pink_-H.png|caption^null|alt^null|title^Pink_-H|description^null\" img_width=\"60\" icon_style=\"advanced\" icon_border_style=\"solid\" icon_color_border=\"#ffffff\" icon_border_size=\"1\" icon_border_radius=\"500\" icon_border_spacing=\"1\" title=\"First Certificate of Ethical Trading certified in Livestock industry\" title_font_style=\"font-weight:bold;\" title_font_size=\"desktop:20px;\"][/bsf-info-box][/vc_column_inner][/vc_row_inner][vc_row_inner gap=\"20\"][vc_column_inner width=\"1/4\" css=\".vc_custom_1691996718116{border-radius: 35px !important;}\"][/vc_column_inner][vc_column_inner width=\"2/4\" css=\".vc_custom_1691995519863{background-color: #f4ab20 !important;border: 1px solid #f4ab20 !important;border-radius: 35px !important;}\"][bsf-info-box icon_type=\"custom\" icon_img=\"id^3117|url^https://farmchemie.yasithawd.com/wp-content/uploads/2023/08/Pink_-H.png|caption^null|alt^null|title^Pink_-H|description^null\" img_width=\"60\" icon_style=\"advanced\" icon_border_style=\"solid\" icon_color_border=\"#ffffff\" icon_border_size=\"1\" icon_border_radius=\"500\" icon_border_spacing=\"1\" title=\"First Silver awarded company at National Exports Awards in Livestock industry\" title_font_style=\"font-weight:bold;\" title_font_size=\"desktop:20px;\"][/bsf-info-box][/vc_column_inner][vc_column_inner width=\"1/4\"][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner width=\"1/6\"][/vc_column_inner][vc_column_inner width=\"2/3\"][vc_single_image image=\"3126\" img_size=\"full\" alignment=\"center\"][vc_single_image image=\"3125\" img_size=\"full\" alignment=\"center\"][/vc_column_inner][vc_column_inner width=\"1/6\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row][vc_column][ultimate_heading main_heading=\"Board Of Directors\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;margin-bottom:35px;\"][/ultimate_heading][ultimate_carousel slides_on_desk=\"3\" slides_on_mob=\"1\" arrow_style=\"square-bg\" arrow_bg_color=\"#039447\" arrow_color=\"#ffffff\" next_icon=\"ultsl-arrow-right6\" prev_icon=\"ultsl-arrow-left6\" dots_color=\"#039447\" item_animation=\"fadeIn\"][vc_row_inner][vc_column_inner][vc_single_image image=\"3170\" img_size=\"large\" alignment=\"center\" style=\"vc_box_outline_circle_2\" border_color=\"black\" image_hovers=\"false\"][ultimate_heading main_heading=\"Quisque sed nibh tristique\" heading_tag=\"h3\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;\"]Duis lorem risus, aliquet a auctor a, venenatis in dui. Praesent et eros et risus dapibus placerat hendrerit cursus magna.[/ultimate_heading][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner][vc_single_image image=\"3171\" img_size=\"large\" alignment=\"center\" style=\"vc_box_outline_circle_2\" border_color=\"black\" image_hovers=\"false\"][ultimate_heading main_heading=\"Quisque sed nibh tristique\" heading_tag=\"h3\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;\"]Duis lorem risus, aliquet a auctor a, venenatis in dui. Praesent et eros et risus dapibus placerat hendrerit cursus magna.[/ultimate_heading][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner][vc_single_image image=\"3173\" img_size=\"large\" alignment=\"center\" style=\"vc_box_outline_circle_2\" border_color=\"black\" image_hovers=\"false\"][ultimate_heading main_heading=\"Quisque sed nibh tristique\" heading_tag=\"h3\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;\"]Duis lorem risus, aliquet a auctor a, venenatis in dui. Praesent et eros et risus dapibus placerat hendrerit cursus magna.[/ultimate_heading][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner][vc_single_image image=\"3172\" img_size=\"large\" alignment=\"center\" style=\"vc_box_outline_circle_2\" border_color=\"black\" image_hovers=\"false\"][ultimate_heading main_heading=\"Quisque sed nibh tristique\" heading_tag=\"h3\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;\"]Duis lorem risus, aliquet a auctor a, venenatis in dui. Praesent et eros et risus dapibus placerat hendrerit cursus magna.[/ultimate_heading][/vc_column_inner][/vc_row_inner][/ultimate_carousel][/vc_column][/vc_row][vc_row][vc_column][ultimate_heading main_heading=\"Board Of Directors\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;margin-bottom:35px;\"][/ultimate_heading][vc_row_inner][vc_column_inner width=\"1/3\"][ult_animation_block animation=\"fadeInUp\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][dt_fancy_image image_id=\"3172\" width=\"300\" border_radius=\"1px\" caption=\"off\" css=\".vc_custom_1692278922309{border-top-width: 1px !important;border-right-width: 1px !important;border-bottom-width: 1px !important;border-left-width: 1px !important;border-left-color: #059444 !important;border-left-style: solid !important;border-right-color: #059444 !important;border-right-style: solid !important;border-top-color: #059444 !important;border-top-style: solid !important;border-bottom-color: #059444 !important;border-bottom-style: solid !important;border-radius: 1px !important;}\"][ultimate_heading main_heading=\"Quisque sed nibh tristique\" heading_tag=\"h3\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;\"]\r\n<ul>\r\n 	<li>Duis lorem risus, aliquet a auctor a, venenatis in dui. Praesent et eros et risus dapibus placerat hendrerit cursus magna.</li>\r\n 	<li>Praesent et eros et risus dapibus placerat hendrerit cursus magna.</li>\r\n 	<li>aliquet a auctor a, venenatis in dui.</li>\r\n</ul>\r\n[/ultimate_heading][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/3\"][ult_animation_block animation=\"fadeInDown\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][dt_fancy_image image_id=\"3171\" width=\"300\" border_radius=\"1px\" caption=\"off\" css=\".vc_custom_1692278929158{border-top-width: 1px !important;border-right-width: 1px !important;border-bottom-width: 1px !important;border-left-width: 1px !important;border-left-color: #059444 !important;border-left-style: solid !important;border-right-color: #059444 !important;border-right-style: solid !important;border-top-color: #059444 !important;border-top-style: solid !important;border-bottom-color: #059444 !important;border-bottom-style: solid !important;border-radius: 1px !important;}\"][ultimate_heading main_heading=\"Quisque sed nibh tristique\" heading_tag=\"h3\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;\"]\r\n<ul>\r\n 	<li>Duis lorem risus, aliquet a auctor a, venenatis in dui. Praesent et eros et risus dapibus placerat hendrerit cursus magna.</li>\r\n 	<li>Praesent et eros et risus dapibus placerat hendrerit cursus magna.</li>\r\n 	<li>aliquet a auctor a, venenatis in dui.</li>\r\n</ul>\r\n[/ultimate_heading][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/3\"][ult_animation_block animation=\"fadeInUp\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][dt_fancy_image image_id=\"3170\" width=\"300\" border_radius=\"1px\" caption=\"off\" css=\".vc_custom_1692278936750{border-top-width: 1px !important;border-right-width: 1px !important;border-bottom-width: 1px !important;border-left-width: 1px !important;border-left-color: #059444 !important;border-left-style: solid !important;border-right-color: #059444 !important;border-right-style: solid !important;border-top-color: #059444 !important;border-top-style: solid !important;border-bottom-color: #059444 !important;border-bottom-style: solid !important;border-radius: 1px !important;}\"][ultimate_heading main_heading=\"Quisque sed nibh tristique\" heading_tag=\"h3\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;\"]\r\n<ul>\r\n 	<li>Duis lorem risus, aliquet a auctor a, venenatis in dui. Praesent et eros et risus dapibus placerat hendrerit cursus magna.</li>\r\n 	<li>Praesent et eros et risus dapibus placerat hendrerit cursus magna.</li>\r\n 	<li>aliquet a auctor a, venenatis in dui.</li>\r\n</ul>\r\n[/ultimate_heading][/ult_animation_block][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row][vc_column][ultimate_heading main_heading=\"Executive Directors\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;margin-bottom:35px;\"][/ultimate_heading][vc_row_inner][vc_column_inner width=\"1/5\"][ult_animation_block animation=\"fadeInUp\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][dt_fancy_image image_id=\"3172\" width=\"300\" border_radius=\"1px\" caption=\"off\" css=\".vc_custom_1692278922309{border-top-width: 1px !important;border-right-width: 1px !important;border-bottom-width: 1px !important;border-left-width: 1px !important;border-left-color: #059444 !important;border-left-style: solid !important;border-right-color: #059444 !important;border-right-style: solid !important;border-top-color: #059444 !important;border-top-style: solid !important;border-bottom-color: #059444 !important;border-bottom-style: solid !important;border-radius: 1px !important;}\"][ultimate_heading main_heading=\"Quisque sed nibh tristique\" heading_tag=\"h3\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;\"]\r\n<ul>\r\n 	<li>Duis lorem risus, aliquet a auctor a, venenatis in dui. Praesent et eros et risus dapibus placerat hendrerit cursus magna.</li>\r\n 	<li>Praesent et eros et risus dapibus placerat hendrerit cursus magna.</li>\r\n 	<li>aliquet a auctor a, venenatis in dui.</li>\r\n</ul>\r\n[/ultimate_heading][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/5\"][ult_animation_block animation=\"fadeInDown\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][dt_fancy_image image_id=\"3171\" width=\"300\" border_radius=\"1px\" caption=\"off\" css=\".vc_custom_1692278929158{border-top-width: 1px !important;border-right-width: 1px !important;border-bottom-width: 1px !important;border-left-width: 1px !important;border-left-color: #059444 !important;border-left-style: solid !important;border-right-color: #059444 !important;border-right-style: solid !important;border-top-color: #059444 !important;border-top-style: solid !important;border-bottom-color: #059444 !important;border-bottom-style: solid !important;border-radius: 1px !important;}\"][ultimate_heading main_heading=\"Quisque sed nibh tristique\" heading_tag=\"h3\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;\"]\r\n<ul>\r\n 	<li>Duis lorem risus, aliquet a auctor a, venenatis in dui. Praesent et eros et risus dapibus placerat hendrerit cursus magna.</li>\r\n 	<li>Praesent et eros et risus dapibus placerat hendrerit cursus magna.</li>\r\n 	<li>aliquet a auctor a, venenatis in dui.</li>\r\n</ul>\r\n[/ultimate_heading][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/5\"][ult_animation_block animation=\"fadeInUp\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][dt_fancy_image image_id=\"3170\" width=\"300\" border_radius=\"1px\" caption=\"off\" css=\".vc_custom_1692278936750{border-top-width: 1px !important;border-right-width: 1px !important;border-bottom-width: 1px !important;border-left-width: 1px !important;border-left-color: #059444 !important;border-left-style: solid !important;border-right-color: #059444 !important;border-right-style: solid !important;border-top-color: #059444 !important;border-top-style: solid !important;border-bottom-color: #059444 !important;border-bottom-style: solid !important;border-radius: 1px !important;}\"][ultimate_heading main_heading=\"Quisque sed nibh tristique\" heading_tag=\"h3\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;\"]\r\n<ul>\r\n 	<li>Duis lorem risus, aliquet a auctor a, venenatis in dui. Praesent et eros et risus dapibus placerat hendrerit cursus magna.</li>\r\n 	<li>Praesent et eros et risus dapibus placerat hendrerit cursus magna.</li>\r\n 	<li>aliquet a auctor a, venenatis in dui.</li>\r\n</ul>\r\n[/ultimate_heading][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/5\"][ult_animation_block animation=\"fadeInDown\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][dt_fancy_image image_id=\"3170\" width=\"300\" border_radius=\"1px\" caption=\"off\" css=\".vc_custom_1692278936750{border-top-width: 1px !important;border-right-width: 1px !important;border-bottom-width: 1px !important;border-left-width: 1px !important;border-left-color: #059444 !important;border-left-style: solid !important;border-right-color: #059444 !important;border-right-style: solid !important;border-top-color: #059444 !important;border-top-style: solid !important;border-bottom-color: #059444 !important;border-bottom-style: solid !important;border-radius: 1px !important;}\"][ultimate_heading main_heading=\"Quisque sed nibh tristique\" heading_tag=\"h3\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;\"]\r\n<ul>\r\n 	<li>Duis lorem risus, aliquet a auctor a, venenatis in dui. Praesent et eros et risus dapibus placerat hendrerit cursus magna.</li>\r\n 	<li>Praesent et eros et risus dapibus placerat hendrerit cursus magna.</li>\r\n 	<li>aliquet a auctor a, venenatis in dui.</li>\r\n</ul>\r\n[/ultimate_heading][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/5\"][ult_animation_block animation=\"fadeInDown\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][dt_fancy_image image_id=\"3171\" width=\"300\" border_radius=\"1px\" caption=\"off\" css=\".vc_custom_1692278929158{border-top-width: 1px !important;border-right-width: 1px !important;border-bottom-width: 1px !important;border-left-width: 1px !important;border-left-color: #059444 !important;border-left-style: solid !important;border-right-color: #059444 !important;border-right-style: solid !important;border-top-color: #059444 !important;border-top-style: solid !important;border-bottom-color: #059444 !important;border-bottom-style: solid !important;border-radius: 1px !important;}\"][ultimate_heading main_heading=\"Quisque sed nibh tristique\" heading_tag=\"h3\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;\"]\r\n<ul>\r\n 	<li>Duis lorem risus, aliquet a auctor a, venenatis in dui. Praesent et eros et risus dapibus placerat hendrerit cursus magna.</li>\r\n 	<li>Praesent et eros et risus dapibus placerat hendrerit cursus magna.</li>\r\n 	<li>aliquet a auctor a, venenatis in dui.</li>\r\n</ul>\r\n[/ultimate_heading][/ult_animation_block][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner width=\"2/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row][vc_column][ultimate_heading main_heading=\"Next Generation\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;margin-bottom:35px;\"][/ultimate_heading][vc_row_inner][vc_column_inner width=\"1/2\"][ult_animation_block animation=\"fadeInUp\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][dt_fancy_image image_id=\"3172\" width=\"300\" border_radius=\"1px\" caption=\"off\" css=\".vc_custom_1692278922309{border-top-width: 1px !important;border-right-width: 1px !important;border-bottom-width: 1px !important;border-left-width: 1px !important;border-left-color: #059444 !important;border-left-style: solid !important;border-right-color: #059444 !important;border-right-style: solid !important;border-top-color: #059444 !important;border-top-style: solid !important;border-bottom-color: #059444 !important;border-bottom-style: solid !important;border-radius: 1px !important;}\"][ultimate_heading main_heading=\"Quisque sed nibh tristique\" heading_tag=\"h3\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;\"]\r\n<ul>\r\n 	<li>Duis lorem risus, aliquet a auctor a, venenatis in dui. Praesent et eros et risus dapibus placerat hendrerit cursus magna.</li>\r\n 	<li>Praesent et eros et risus dapibus placerat hendrerit cursus magna.</li>\r\n 	<li>aliquet a auctor a, venenatis in dui.</li>\r\n</ul>\r\n[/ultimate_heading][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/2\"][ult_animation_block animation=\"fadeInDown\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][dt_fancy_image image_id=\"3171\" width=\"300\" border_radius=\"1px\" caption=\"off\" css=\".vc_custom_1692278929158{border-top-width: 1px !important;border-right-width: 1px !important;border-bottom-width: 1px !important;border-left-width: 1px !important;border-left-color: #059444 !important;border-left-style: solid !important;border-right-color: #059444 !important;border-right-style: solid !important;border-top-color: #059444 !important;border-top-style: solid !important;border-bottom-color: #059444 !important;border-bottom-style: solid !important;border-radius: 1px !important;}\"][ultimate_heading main_heading=\"Quisque sed nibh tristique\" heading_tag=\"h3\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;\"]\r\n<ul>\r\n 	<li>Duis lorem risus, aliquet a auctor a, venenatis in dui. Praesent et eros et risus dapibus placerat hendrerit cursus magna.</li>\r\n 	<li>Praesent et eros et risus dapibus placerat hendrerit cursus magna.</li>\r\n 	<li>aliquet a auctor a, venenatis in dui.</li>\r\n</ul>\r\n[/ultimate_heading][/ult_animation_block][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row]','About us','','inherit','closed','closed','','2917-revision-v1','','','2023-08-17 14:00:36','2023-08-17 14:00:36','',2917,'https://farmchemie.yasithawd.com/?p=3247',0,'revision','',0),(3246,1,'2023-08-17 13:59:34','2023-08-17 13:59:34','[vc_row full_width=\"stretch_row_content_no_spaces\"][vc_column][ultimate_heading main_heading=\"Our History\" main_heading_color=\"#762888\" alignment=\"left\"][/ultimate_heading][vc_single_image image=\"3211\" img_size=\"full\" alignment=\"center\"][/vc_column][/vc_row][vc_row disable_element=\"yes\"][vc_column][vc_row_inner css=\".vc_custom_1686713784619{margin-top: 35px !important;}\"][vc_column_inner width=\"1/3\"][vc_single_image image=\"3106\" img_size=\"full\"][/vc_column_inner][vc_column_inner width=\"2/3\"][ultimate_heading main_heading=\"Founded in 2002\" heading_tag=\"h3\" main_heading_color=\"#039447\" alignment=\"left\" sub_heading_font_size=\"desktop:18px;\"]Founded in 2002 by Mr. Uditha Wanigasinghe, an agriculturist who had a mission to aid valuable livestock producers in the country to enhance the yield and profitability of production. FARMCHEMIE introduced unprecedented solutions and consistent technical services to gain our customers’ trust and became the market leader in animal health products in 2006 within just four years.[/ultimate_heading][/vc_column_inner][/vc_row_inner][vc_row_inner rtl_reverse=\"yes\" css=\".vc_custom_1686714025469{margin-top: 35px !important;}\"][vc_column_inner width=\"2/3\"][ultimate_heading main_heading=\"2006\" heading_tag=\"h3\" main_heading_color=\"#039447\" alignment=\"left\"]In 2006, the Sri Lankan poultry industry was affected with Avian Influenza which became a difficult period for the growth of FARMCHEMIE. This was the key factor in our decision to diversify into Agro Products. PLANTCHEM &amp; PLANTSEEDS were established to offer solutions in Agro specialty fertilizers, pesticides and seeds to invaluable cultivators.[/ultimate_heading][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_single_image image=\"3107\" img_size=\"full\"][/vc_column_inner][/vc_row_inner][vc_row_inner css=\".vc_custom_1686713784619{margin-top: 35px !important;}\"][vc_column_inner width=\"1/3\"][vc_single_image image=\"3108\" img_size=\"full\"][/vc_column_inner][vc_column_inner width=\"2/3\"][ultimate_heading main_heading=\"2010\" heading_tag=\"h3\" main_heading_color=\"#039447\" alignment=\"left\"]In 2010, FEED CHEMIE became the subsequent addition to ever-growing vision of Mr. Uditha Wanigasinghe and entered the Animal Feed Additives market.[/ultimate_heading][/vc_column_inner][/vc_row_inner][vc_row_inner rtl_reverse=\"yes\" css=\".vc_custom_1686714115148{margin-top: 35px !important;}\"][vc_column_inner width=\"2/3\"][ultimate_heading main_heading=\"2012\" heading_tag=\"h3\" main_heading_color=\"#039447\" alignment=\"left\"]The year 2012 is described as a turning point in our journey as FARMCHEMIE established our first production facility for the manufacturing and packing of animal health products. FARMCHEMIE became the first animal health organization in Sri Lanka to obtain ISO 9001:2015 and WHO GMP International Quality Certification. With our own formulation unit, FARMCHEMIE was able to offer customized solutions to cater the needs of the Sri Lankan Livestock Industry.[/ultimate_heading][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_single_image image=\"3111\" img_size=\"full\"][/vc_column_inner][/vc_row_inner][vc_row_inner css=\".vc_custom_1686713784619{margin-top: 35px !important;}\"][vc_column_inner width=\"1/3\"][vc_single_image image=\"3112\" img_size=\"full\"][/vc_column_inner][vc_column_inner width=\"2/3\"][ultimate_heading main_heading=\"2016\" heading_tag=\"h3\" main_heading_color=\"#039447\" alignment=\"left\"]The year 2016 was another key milestone with the entry to the International Markets. FARMCHEMIE exported our first Feed Premix consignment to India and in 2018 our export operation was distinctly established as FARMCHEMIE MANUFACTURERS, a Board of Investment (BOI) approved entity.[/ultimate_heading][/vc_column_inner][/vc_row_inner][vc_row_inner css=\".vc_custom_1686713784619{margin-top: 35px !important;}\"][vc_column_inner width=\"2/3\"][ultimate_heading main_heading=\"Fully automated manufacturing\" heading_tag=\"h3\" main_heading_color=\"#039447\" alignment=\"left\"]FARMCHEMIE MANUFACTURERS has invested in fully automated manufacturing facility from Bühler and became the first Sri Lankan owned company to obtain FAMI-QS International Quality Certification.[/ultimate_heading][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_single_image image=\"3110\" img_size=\"full\"][/vc_column_inner][/vc_row_inner][vc_row_inner css=\".vc_custom_1686713784619{margin-top: 35px !important;}\"][vc_column_inner width=\"1/3\"][vc_single_image image=\"3116\" img_size=\"full\"][/vc_column_inner][vc_column_inner width=\"2/3\"][ultimate_heading main_heading=\"Official toll manufacturer partner\" heading_tag=\"h3\" main_heading_color=\"#039447\" alignment=\"left\"]With the trust and reputation built as a reliable manufacturer of animal feed additives and supplements in the global market, several world-renowned international brands have appointed FARMCHEMIE MANUFACTURERS as the official toll manufacturer partner. FARMCHEMIE MANUFACTURERS exports a wide range of products consisting of premixes, specialty feed additives, oral liquid supplements and pet supplements to various markets in South Asia, East Asia, Middle East and Africa.\r\n\r\nFARMCHEMIE, FEED CHEMIE &amp; FARMCHEMIE MANUFACTURERS currently operate under the ownership of our holding company, DYVESTA.\r\n\r\nDYEVSTA has become the pinnacle of Animal Nutrition and Health.\r\n\r\nDYVESTA is Dynamic, through our continuous evolution, growth and progress. DYVESTA is Diverse, in terms of both our business strategy and our community. DYVESTA is Devoted to our valuable business partners through exceptional service.[/ultimate_heading][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row full_width=\"stretch_row\" equal_height=\"yes\" bg_type=\"image\" parallax_style=\"vcpb-vz-jquery\" bg_image_new=\"id^3236|url^https://farmchemie.yasithawd.com/wp-content/uploads/2023/08/VISION-MISIONFF.png|caption^null|alt^null|title^VISION-&amp;-MISIONFF|description^null\" bg_image_repeat=\"no-repeat\" enable_overlay=\"enable_overlay_value\" overlay_color=\"#000000\" overlay_pattern=\"01.png\" overlay_pattern_opacity=\"5\" css=\".vc_custom_1692198837685{margin-top: 35px !important;padding-top: 65px !important;padding-bottom: 100px !important;}\"][vc_column][vc_row_inner equal_height=\"yes\"][vc_column_inner width=\"1/2\"][ult_animation_block animation=\"fadeInLeftBig\" animation_duration=\"2\" animation_delay=\"0\" animation_iteration_count=\"1\"][ultimate_heading main_heading=\"Vision\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\"]To be the customers’ first and best choice by ensuring outstanding satisfaction through a well-trained and dedicated team. Prompt and quality solutions to our customers’ requirements will determine the increase of return on investment for us.[/ultimate_heading][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/2\"][ult_animation_block animation=\"fadeInRightBig\" animation_duration=\"2\" animation_delay=\"0\" animation_iteration_count=\"1\"][ultimate_heading main_heading=\"Mission\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\"]To become a world renowned manufacturer of Animal Health products and a trusted partner among our stakeholders for our integrity as well as for providing effective solutions[/ultimate_heading][/ult_animation_block][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row css=\".vc_custom_1684836308288{margin-top: 15px !important;}\"][vc_column][ultimate_heading main_heading=\"Achievements\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;\"][/ultimate_heading][vc_row_inner gap=\"20\"][vc_column_inner width=\"1/2\" css=\".vc_custom_1691995519863{background-color: #f4ab20 !important;border: 1px solid #f4ab20 !important;border-radius: 35px !important;}\"][bsf-info-box icon_type=\"custom\" icon_img=\"id^3117|url^https://farmchemie.yasithawd.com/wp-content/uploads/2023/08/Pink_-H.png|caption^null|alt^null|title^Pink_-H|description^null\" img_width=\"60\" icon_style=\"advanced\" icon_border_style=\"solid\" icon_color_border=\"#ffffff\" icon_border_size=\"1\" icon_border_radius=\"500\" icon_border_spacing=\"1\" title=\"First Free Sale Certificate obtained from Veterinary Drug Control Authority (VDCA) for Veterinary Pharmaceuticals\" title_font_style=\"font-weight:bold;\" title_font_size=\"desktop:20px;\"][/bsf-info-box][/vc_column_inner][vc_column_inner width=\"1/2\" css=\".vc_custom_1691995661095{background-color: #722f8b !important;border: 1px solid #722f8b !important;border-radius: 35px !important;}\"][bsf-info-box icon_type=\"custom\" icon_img=\"id^3117|url^https://farmchemie.yasithawd.com/wp-content/uploads/2023/08/Pink_-H.png|caption^null|alt^null|title^Pink_-H|description^null\" img_width=\"60\" icon_style=\"advanced\" icon_border_style=\"solid\" icon_color_border=\"#ffffff\" icon_border_size=\"1\" icon_border_radius=\"500\" icon_border_spacing=\"1\" title=\"First ISO 9001: 2015 ,WHO-GMP Quality Management systems certified Animal Health company in Sri Lanka since August, 2012\" title_font_style=\"font-weight:bold;\" title_font_color=\"#ffffff\" title_font_size=\"desktop:20px;\"][/bsf-info-box][/vc_column_inner][/vc_row_inner][vc_row_inner gap=\"20\"][vc_column_inner width=\"1/2\" css=\".vc_custom_1691995661095{background-color: #722f8b !important;border: 1px solid #722f8b !important;border-radius: 35px !important;}\"][bsf-info-box icon_type=\"custom\" icon_img=\"id^3117|url^https://farmchemie.yasithawd.com/wp-content/uploads/2023/08/Pink_-H.png|caption^null|alt^null|title^Pink_-H|description^null\" img_width=\"60\" icon_style=\"advanced\" icon_border_style=\"solid\" icon_color_border=\"#ffffff\" icon_border_size=\"1\" icon_border_radius=\"500\" icon_border_spacing=\"1\" title=\"First FAMI-QS certified company in sri lanka\" title_font_style=\"font-weight:bold;\" title_font_color=\"#ffffff\" title_font_size=\"desktop:20px;\"][/bsf-info-box][/vc_column_inner][vc_column_inner width=\"1/2\" css=\".vc_custom_1691995519863{background-color: #f4ab20 !important;border: 1px solid #f4ab20 !important;border-radius: 35px !important;}\"][bsf-info-box icon_type=\"custom\" icon_img=\"id^3117|url^https://farmchemie.yasithawd.com/wp-content/uploads/2023/08/Pink_-H.png|caption^null|alt^null|title^Pink_-H|description^null\" img_width=\"60\" icon_style=\"advanced\" icon_border_style=\"solid\" icon_color_border=\"#ffffff\" icon_border_size=\"1\" icon_border_radius=\"500\" icon_border_spacing=\"1\" title=\"First Certificate of Ethical Trading certified in Livestock industry\" title_font_style=\"font-weight:bold;\" title_font_size=\"desktop:20px;\"][/bsf-info-box][/vc_column_inner][/vc_row_inner][vc_row_inner gap=\"20\"][vc_column_inner width=\"1/4\" css=\".vc_custom_1691996718116{border-radius: 35px !important;}\"][/vc_column_inner][vc_column_inner width=\"2/4\" css=\".vc_custom_1691995519863{background-color: #f4ab20 !important;border: 1px solid #f4ab20 !important;border-radius: 35px !important;}\"][bsf-info-box icon_type=\"custom\" icon_img=\"id^3117|url^https://farmchemie.yasithawd.com/wp-content/uploads/2023/08/Pink_-H.png|caption^null|alt^null|title^Pink_-H|description^null\" img_width=\"60\" icon_style=\"advanced\" icon_border_style=\"solid\" icon_color_border=\"#ffffff\" icon_border_size=\"1\" icon_border_radius=\"500\" icon_border_spacing=\"1\" title=\"First Silver awarded company at National Exports Awards in Livestock industry\" title_font_style=\"font-weight:bold;\" title_font_size=\"desktop:20px;\"][/bsf-info-box][/vc_column_inner][vc_column_inner width=\"1/4\"][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner width=\"1/6\"][/vc_column_inner][vc_column_inner width=\"2/3\"][vc_single_image image=\"3126\" img_size=\"full\" alignment=\"center\"][vc_single_image image=\"3125\" img_size=\"full\" alignment=\"center\"][/vc_column_inner][vc_column_inner width=\"1/6\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row][vc_column][ultimate_heading main_heading=\"Board Of Directors\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;margin-bottom:35px;\"][/ultimate_heading][ultimate_carousel title_text_typography=\"\" slides_on_desk=\"3\" slides_on_mob=\"1\" arrow_style=\"square-bg\" arrow_bg_color=\"#039447\" arrow_color=\"#ffffff\" next_icon=\"ultsl-arrow-right6\" prev_icon=\"ultsl-arrow-left6\" dots_color=\"#039447\" item_animation=\"fadeIn\"][vc_row_inner][vc_column_inner width=\"1/2\"][vc_single_image image=\"3170\" img_size=\"large\" alignment=\"center\" style=\"vc_box_outline_circle_2\" border_color=\"black\" image_hovers=\"false\"][/vc_column_inner][vc_column_inner width=\"1/2\"][ultimate_heading main_heading=\"Quisque sed nibh tristique\" heading_tag=\"h3\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;\"]Duis lorem risus, aliquet a auctor a, venenatis in dui. Praesent et eros et risus dapibus placerat hendrerit cursus magna.[/ultimate_heading][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner width=\"1/2\"][vc_single_image image=\"3171\" img_size=\"large\" alignment=\"center\" style=\"vc_box_outline_circle_2\" border_color=\"black\" image_hovers=\"false\"][/vc_column_inner][vc_column_inner width=\"1/2\"][ultimate_heading main_heading=\"Quisque sed nibh tristique\" heading_tag=\"h3\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;\"]Duis lorem risus, aliquet a auctor a, venenatis in dui. Praesent et eros et risus dapibus placerat hendrerit cursus magna.[/ultimate_heading][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner width=\"1/2\"][vc_single_image image=\"3173\" img_size=\"large\" alignment=\"center\" style=\"vc_box_outline_circle_2\" border_color=\"black\" image_hovers=\"false\"][/vc_column_inner][vc_column_inner width=\"1/2\"][ultimate_heading main_heading=\"Quisque sed nibh tristique\" heading_tag=\"h3\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;\"]Duis lorem risus, aliquet a auctor a, venenatis in dui. Praesent et eros et risus dapibus placerat hendrerit cursus magna.[/ultimate_heading][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner width=\"1/2\"][vc_single_image image=\"3172\" img_size=\"large\" alignment=\"center\" style=\"vc_box_outline_circle_2\" border_color=\"black\" image_hovers=\"false\"][/vc_column_inner][vc_column_inner width=\"1/2\"][ultimate_heading main_heading=\"Quisque sed nibh tristique\" heading_tag=\"h3\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;\"]Duis lorem risus, aliquet a auctor a, venenatis in dui. Praesent et eros et risus dapibus placerat hendrerit cursus magna.[/ultimate_heading][/vc_column_inner][/vc_row_inner][/ultimate_carousel][/vc_column][/vc_row][vc_row][vc_column][ultimate_heading main_heading=\"Board Of Directors\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;margin-bottom:35px;\"][/ultimate_heading][vc_row_inner][vc_column_inner width=\"1/3\"][ult_animation_block animation=\"fadeInUp\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][dt_fancy_image image_id=\"3172\" width=\"300\" border_radius=\"1px\" caption=\"off\" css=\".vc_custom_1692278922309{border-top-width: 1px !important;border-right-width: 1px !important;border-bottom-width: 1px !important;border-left-width: 1px !important;border-left-color: #059444 !important;border-left-style: solid !important;border-right-color: #059444 !important;border-right-style: solid !important;border-top-color: #059444 !important;border-top-style: solid !important;border-bottom-color: #059444 !important;border-bottom-style: solid !important;border-radius: 1px !important;}\"][ultimate_heading main_heading=\"Quisque sed nibh tristique\" heading_tag=\"h3\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;\"]\r\n<ul>\r\n 	<li>Duis lorem risus, aliquet a auctor a, venenatis in dui. Praesent et eros et risus dapibus placerat hendrerit cursus magna.</li>\r\n 	<li>Praesent et eros et risus dapibus placerat hendrerit cursus magna.</li>\r\n 	<li>aliquet a auctor a, venenatis in dui.</li>\r\n</ul>\r\n[/ultimate_heading][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/3\"][ult_animation_block animation=\"fadeInDown\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][dt_fancy_image image_id=\"3171\" width=\"300\" border_radius=\"1px\" caption=\"off\" css=\".vc_custom_1692278929158{border-top-width: 1px !important;border-right-width: 1px !important;border-bottom-width: 1px !important;border-left-width: 1px !important;border-left-color: #059444 !important;border-left-style: solid !important;border-right-color: #059444 !important;border-right-style: solid !important;border-top-color: #059444 !important;border-top-style: solid !important;border-bottom-color: #059444 !important;border-bottom-style: solid !important;border-radius: 1px !important;}\"][ultimate_heading main_heading=\"Quisque sed nibh tristique\" heading_tag=\"h3\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;\"]\r\n<ul>\r\n 	<li>Duis lorem risus, aliquet a auctor a, venenatis in dui. Praesent et eros et risus dapibus placerat hendrerit cursus magna.</li>\r\n 	<li>Praesent et eros et risus dapibus placerat hendrerit cursus magna.</li>\r\n 	<li>aliquet a auctor a, venenatis in dui.</li>\r\n</ul>\r\n[/ultimate_heading][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/3\"][ult_animation_block animation=\"fadeInUp\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][dt_fancy_image image_id=\"3170\" width=\"300\" border_radius=\"1px\" caption=\"off\" css=\".vc_custom_1692278936750{border-top-width: 1px !important;border-right-width: 1px !important;border-bottom-width: 1px !important;border-left-width: 1px !important;border-left-color: #059444 !important;border-left-style: solid !important;border-right-color: #059444 !important;border-right-style: solid !important;border-top-color: #059444 !important;border-top-style: solid !important;border-bottom-color: #059444 !important;border-bottom-style: solid !important;border-radius: 1px !important;}\"][ultimate_heading main_heading=\"Quisque sed nibh tristique\" heading_tag=\"h3\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;\"]\r\n<ul>\r\n 	<li>Duis lorem risus, aliquet a auctor a, venenatis in dui. Praesent et eros et risus dapibus placerat hendrerit cursus magna.</li>\r\n 	<li>Praesent et eros et risus dapibus placerat hendrerit cursus magna.</li>\r\n 	<li>aliquet a auctor a, venenatis in dui.</li>\r\n</ul>\r\n[/ultimate_heading][/ult_animation_block][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row][vc_column][ultimate_heading main_heading=\"Executive Directors\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;margin-bottom:35px;\"][/ultimate_heading][vc_row_inner][vc_column_inner width=\"1/5\"][ult_animation_block animation=\"fadeInUp\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][dt_fancy_image image_id=\"3172\" width=\"300\" border_radius=\"1px\" caption=\"off\" css=\".vc_custom_1692278922309{border-top-width: 1px !important;border-right-width: 1px !important;border-bottom-width: 1px !important;border-left-width: 1px !important;border-left-color: #059444 !important;border-left-style: solid !important;border-right-color: #059444 !important;border-right-style: solid !important;border-top-color: #059444 !important;border-top-style: solid !important;border-bottom-color: #059444 !important;border-bottom-style: solid !important;border-radius: 1px !important;}\"][ultimate_heading main_heading=\"Quisque sed nibh tristique\" heading_tag=\"h3\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;\"]\r\n<ul>\r\n 	<li>Duis lorem risus, aliquet a auctor a, venenatis in dui. Praesent et eros et risus dapibus placerat hendrerit cursus magna.</li>\r\n 	<li>Praesent et eros et risus dapibus placerat hendrerit cursus magna.</li>\r\n 	<li>aliquet a auctor a, venenatis in dui.</li>\r\n</ul>\r\n[/ultimate_heading][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/5\"][ult_animation_block animation=\"fadeInDown\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][dt_fancy_image image_id=\"3171\" width=\"300\" border_radius=\"1px\" caption=\"off\" css=\".vc_custom_1692278929158{border-top-width: 1px !important;border-right-width: 1px !important;border-bottom-width: 1px !important;border-left-width: 1px !important;border-left-color: #059444 !important;border-left-style: solid !important;border-right-color: #059444 !important;border-right-style: solid !important;border-top-color: #059444 !important;border-top-style: solid !important;border-bottom-color: #059444 !important;border-bottom-style: solid !important;border-radius: 1px !important;}\"][ultimate_heading main_heading=\"Quisque sed nibh tristique\" heading_tag=\"h3\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;\"]\r\n<ul>\r\n 	<li>Duis lorem risus, aliquet a auctor a, venenatis in dui. Praesent et eros et risus dapibus placerat hendrerit cursus magna.</li>\r\n 	<li>Praesent et eros et risus dapibus placerat hendrerit cursus magna.</li>\r\n 	<li>aliquet a auctor a, venenatis in dui.</li>\r\n</ul>\r\n[/ultimate_heading][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/5\"][ult_animation_block animation=\"fadeInUp\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][dt_fancy_image image_id=\"3170\" width=\"300\" border_radius=\"1px\" caption=\"off\" css=\".vc_custom_1692278936750{border-top-width: 1px !important;border-right-width: 1px !important;border-bottom-width: 1px !important;border-left-width: 1px !important;border-left-color: #059444 !important;border-left-style: solid !important;border-right-color: #059444 !important;border-right-style: solid !important;border-top-color: #059444 !important;border-top-style: solid !important;border-bottom-color: #059444 !important;border-bottom-style: solid !important;border-radius: 1px !important;}\"][ultimate_heading main_heading=\"Quisque sed nibh tristique\" heading_tag=\"h3\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;\"]\r\n<ul>\r\n 	<li>Duis lorem risus, aliquet a auctor a, venenatis in dui. Praesent et eros et risus dapibus placerat hendrerit cursus magna.</li>\r\n 	<li>Praesent et eros et risus dapibus placerat hendrerit cursus magna.</li>\r\n 	<li>aliquet a auctor a, venenatis in dui.</li>\r\n</ul>\r\n[/ultimate_heading][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/5\"][ult_animation_block animation=\"fadeInDown\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][dt_fancy_image image_id=\"3170\" width=\"300\" border_radius=\"1px\" caption=\"off\" css=\".vc_custom_1692278936750{border-top-width: 1px !important;border-right-width: 1px !important;border-bottom-width: 1px !important;border-left-width: 1px !important;border-left-color: #059444 !important;border-left-style: solid !important;border-right-color: #059444 !important;border-right-style: solid !important;border-top-color: #059444 !important;border-top-style: solid !important;border-bottom-color: #059444 !important;border-bottom-style: solid !important;border-radius: 1px !important;}\"][ultimate_heading main_heading=\"Quisque sed nibh tristique\" heading_tag=\"h3\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;\"]\r\n<ul>\r\n 	<li>Duis lorem risus, aliquet a auctor a, venenatis in dui. Praesent et eros et risus dapibus placerat hendrerit cursus magna.</li>\r\n 	<li>Praesent et eros et risus dapibus placerat hendrerit cursus magna.</li>\r\n 	<li>aliquet a auctor a, venenatis in dui.</li>\r\n</ul>\r\n[/ultimate_heading][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/5\"][ult_animation_block animation=\"fadeInDown\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][dt_fancy_image image_id=\"3171\" width=\"300\" border_radius=\"1px\" caption=\"off\" css=\".vc_custom_1692278929158{border-top-width: 1px !important;border-right-width: 1px !important;border-bottom-width: 1px !important;border-left-width: 1px !important;border-left-color: #059444 !important;border-left-style: solid !important;border-right-color: #059444 !important;border-right-style: solid !important;border-top-color: #059444 !important;border-top-style: solid !important;border-bottom-color: #059444 !important;border-bottom-style: solid !important;border-radius: 1px !important;}\"][ultimate_heading main_heading=\"Quisque sed nibh tristique\" heading_tag=\"h3\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;\"]\r\n<ul>\r\n 	<li>Duis lorem risus, aliquet a auctor a, venenatis in dui. Praesent et eros et risus dapibus placerat hendrerit cursus magna.</li>\r\n 	<li>Praesent et eros et risus dapibus placerat hendrerit cursus magna.</li>\r\n 	<li>aliquet a auctor a, venenatis in dui.</li>\r\n</ul>\r\n[/ultimate_heading][/ult_animation_block][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner width=\"2/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row][vc_column][ultimate_heading main_heading=\"Next Generation\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;margin-bottom:35px;\"][/ultimate_heading][vc_row_inner][vc_column_inner width=\"1/2\"][ult_animation_block animation=\"fadeInUp\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][dt_fancy_image image_id=\"3172\" width=\"300\" border_radius=\"1px\" caption=\"off\" css=\".vc_custom_1692278922309{border-top-width: 1px !important;border-right-width: 1px !important;border-bottom-width: 1px !important;border-left-width: 1px !important;border-left-color: #059444 !important;border-left-style: solid !important;border-right-color: #059444 !important;border-right-style: solid !important;border-top-color: #059444 !important;border-top-style: solid !important;border-bottom-color: #059444 !important;border-bottom-style: solid !important;border-radius: 1px !important;}\"][ultimate_heading main_heading=\"Quisque sed nibh tristique\" heading_tag=\"h3\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;\"]\r\n<ul>\r\n 	<li>Duis lorem risus, aliquet a auctor a, venenatis in dui. Praesent et eros et risus dapibus placerat hendrerit cursus magna.</li>\r\n 	<li>Praesent et eros et risus dapibus placerat hendrerit cursus magna.</li>\r\n 	<li>aliquet a auctor a, venenatis in dui.</li>\r\n</ul>\r\n[/ultimate_heading][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/2\"][ult_animation_block animation=\"fadeInDown\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][dt_fancy_image image_id=\"3171\" width=\"300\" border_radius=\"1px\" caption=\"off\" css=\".vc_custom_1692278929158{border-top-width: 1px !important;border-right-width: 1px !important;border-bottom-width: 1px !important;border-left-width: 1px !important;border-left-color: #059444 !important;border-left-style: solid !important;border-right-color: #059444 !important;border-right-style: solid !important;border-top-color: #059444 !important;border-top-style: solid !important;border-bottom-color: #059444 !important;border-bottom-style: solid !important;border-radius: 1px !important;}\"][ultimate_heading main_heading=\"Quisque sed nibh tristique\" heading_tag=\"h3\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;\"]\r\n<ul>\r\n 	<li>Duis lorem risus, aliquet a auctor a, venenatis in dui. Praesent et eros et risus dapibus placerat hendrerit cursus magna.</li>\r\n 	<li>Praesent et eros et risus dapibus placerat hendrerit cursus magna.</li>\r\n 	<li>aliquet a auctor a, venenatis in dui.</li>\r\n</ul>\r\n[/ultimate_heading][/ult_animation_block][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row]','About us','','inherit','closed','closed','','2917-revision-v1','','','2023-08-17 13:59:34','2023-08-17 13:59:34','',2917,'https://farmchemie.yasithawd.com/?p=3246',0,'revision','',0),(3248,1,'2023-08-17 14:04:19','2023-08-17 14:04:19','[vc_row full_width=\"stretch_row_content_no_spaces\"][vc_column][ultimate_heading main_heading=\"Our History\" main_heading_color=\"#762888\" alignment=\"left\"][/ultimate_heading][vc_single_image image=\"3211\" img_size=\"full\" alignment=\"center\"][/vc_column][/vc_row][vc_row disable_element=\"yes\"][vc_column][vc_row_inner css=\".vc_custom_1686713784619{margin-top: 35px !important;}\"][vc_column_inner width=\"1/3\"][vc_single_image image=\"3106\" img_size=\"full\"][/vc_column_inner][vc_column_inner width=\"2/3\"][ultimate_heading main_heading=\"Founded in 2002\" heading_tag=\"h3\" main_heading_color=\"#039447\" alignment=\"left\" sub_heading_font_size=\"desktop:18px;\"]Founded in 2002 by Mr. Uditha Wanigasinghe, an agriculturist who had a mission to aid valuable livestock producers in the country to enhance the yield and profitability of production. FARMCHEMIE introduced unprecedented solutions and consistent technical services to gain our customers’ trust and became the market leader in animal health products in 2006 within just four years.[/ultimate_heading][/vc_column_inner][/vc_row_inner][vc_row_inner rtl_reverse=\"yes\" css=\".vc_custom_1686714025469{margin-top: 35px !important;}\"][vc_column_inner width=\"2/3\"][ultimate_heading main_heading=\"2006\" heading_tag=\"h3\" main_heading_color=\"#039447\" alignment=\"left\"]In 2006, the Sri Lankan poultry industry was affected with Avian Influenza which became a difficult period for the growth of FARMCHEMIE. This was the key factor in our decision to diversify into Agro Products. PLANTCHEM &amp; PLANTSEEDS were established to offer solutions in Agro specialty fertilizers, pesticides and seeds to invaluable cultivators.[/ultimate_heading][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_single_image image=\"3107\" img_size=\"full\"][/vc_column_inner][/vc_row_inner][vc_row_inner css=\".vc_custom_1686713784619{margin-top: 35px !important;}\"][vc_column_inner width=\"1/3\"][vc_single_image image=\"3108\" img_size=\"full\"][/vc_column_inner][vc_column_inner width=\"2/3\"][ultimate_heading main_heading=\"2010\" heading_tag=\"h3\" main_heading_color=\"#039447\" alignment=\"left\"]In 2010, FEED CHEMIE became the subsequent addition to ever-growing vision of Mr. Uditha Wanigasinghe and entered the Animal Feed Additives market.[/ultimate_heading][/vc_column_inner][/vc_row_inner][vc_row_inner rtl_reverse=\"yes\" css=\".vc_custom_1686714115148{margin-top: 35px !important;}\"][vc_column_inner width=\"2/3\"][ultimate_heading main_heading=\"2012\" heading_tag=\"h3\" main_heading_color=\"#039447\" alignment=\"left\"]The year 2012 is described as a turning point in our journey as FARMCHEMIE established our first production facility for the manufacturing and packing of animal health products. FARMCHEMIE became the first animal health organization in Sri Lanka to obtain ISO 9001:2015 and WHO GMP International Quality Certification. With our own formulation unit, FARMCHEMIE was able to offer customized solutions to cater the needs of the Sri Lankan Livestock Industry.[/ultimate_heading][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_single_image image=\"3111\" img_size=\"full\"][/vc_column_inner][/vc_row_inner][vc_row_inner css=\".vc_custom_1686713784619{margin-top: 35px !important;}\"][vc_column_inner width=\"1/3\"][vc_single_image image=\"3112\" img_size=\"full\"][/vc_column_inner][vc_column_inner width=\"2/3\"][ultimate_heading main_heading=\"2016\" heading_tag=\"h3\" main_heading_color=\"#039447\" alignment=\"left\"]The year 2016 was another key milestone with the entry to the International Markets. FARMCHEMIE exported our first Feed Premix consignment to India and in 2018 our export operation was distinctly established as FARMCHEMIE MANUFACTURERS, a Board of Investment (BOI) approved entity.[/ultimate_heading][/vc_column_inner][/vc_row_inner][vc_row_inner css=\".vc_custom_1686713784619{margin-top: 35px !important;}\"][vc_column_inner width=\"2/3\"][ultimate_heading main_heading=\"Fully automated manufacturing\" heading_tag=\"h3\" main_heading_color=\"#039447\" alignment=\"left\"]FARMCHEMIE MANUFACTURERS has invested in fully automated manufacturing facility from Bühler and became the first Sri Lankan owned company to obtain FAMI-QS International Quality Certification.[/ultimate_heading][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_single_image image=\"3110\" img_size=\"full\"][/vc_column_inner][/vc_row_inner][vc_row_inner css=\".vc_custom_1686713784619{margin-top: 35px !important;}\"][vc_column_inner width=\"1/3\"][vc_single_image image=\"3116\" img_size=\"full\"][/vc_column_inner][vc_column_inner width=\"2/3\"][ultimate_heading main_heading=\"Official toll manufacturer partner\" heading_tag=\"h3\" main_heading_color=\"#039447\" alignment=\"left\"]With the trust and reputation built as a reliable manufacturer of animal feed additives and supplements in the global market, several world-renowned international brands have appointed FARMCHEMIE MANUFACTURERS as the official toll manufacturer partner. FARMCHEMIE MANUFACTURERS exports a wide range of products consisting of premixes, specialty feed additives, oral liquid supplements and pet supplements to various markets in South Asia, East Asia, Middle East and Africa.\r\n\r\nFARMCHEMIE, FEED CHEMIE &amp; FARMCHEMIE MANUFACTURERS currently operate under the ownership of our holding company, DYVESTA.\r\n\r\nDYEVSTA has become the pinnacle of Animal Nutrition and Health.\r\n\r\nDYVESTA is Dynamic, through our continuous evolution, growth and progress. DYVESTA is Diverse, in terms of both our business strategy and our community. DYVESTA is Devoted to our valuable business partners through exceptional service.[/ultimate_heading][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row full_width=\"stretch_row\" equal_height=\"yes\" bg_type=\"image\" parallax_style=\"vcpb-vz-jquery\" bg_image_new=\"id^3236|url^https://farmchemie.yasithawd.com/wp-content/uploads/2023/08/VISION-MISIONFF.png|caption^null|alt^null|title^VISION-&amp;-MISIONFF|description^null\" bg_image_repeat=\"no-repeat\" enable_overlay=\"enable_overlay_value\" overlay_color=\"#000000\" overlay_pattern=\"01.png\" overlay_pattern_opacity=\"5\" css=\".vc_custom_1692198837685{margin-top: 35px !important;padding-top: 65px !important;padding-bottom: 100px !important;}\"][vc_column][vc_row_inner equal_height=\"yes\"][vc_column_inner width=\"1/2\"][ult_animation_block animation=\"fadeInLeftBig\" animation_duration=\"2\" animation_delay=\"0\" animation_iteration_count=\"1\"][ultimate_heading main_heading=\"Vision\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\"]To be the customers’ first and best choice by ensuring outstanding satisfaction through a well-trained and dedicated team. Prompt and quality solutions to our customers’ requirements will determine the increase of return on investment for us.[/ultimate_heading][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/2\"][ult_animation_block animation=\"fadeInRightBig\" animation_duration=\"2\" animation_delay=\"0\" animation_iteration_count=\"1\"][ultimate_heading main_heading=\"Mission\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\"]To become a world renowned manufacturer of Animal Health products and a trusted partner among our stakeholders for our integrity as well as for providing effective solutions[/ultimate_heading][/ult_animation_block][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row css=\".vc_custom_1684836308288{margin-top: 15px !important;}\"][vc_column][ultimate_heading main_heading=\"Achievements\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;\"][/ultimate_heading][vc_row_inner gap=\"20\"][vc_column_inner width=\"1/2\" css=\".vc_custom_1691995519863{background-color: #f4ab20 !important;border: 1px solid #f4ab20 !important;border-radius: 35px !important;}\"][bsf-info-box icon_type=\"custom\" icon_img=\"id^3117|url^https://farmchemie.yasithawd.com/wp-content/uploads/2023/08/Pink_-H.png|caption^null|alt^null|title^Pink_-H|description^null\" img_width=\"60\" icon_style=\"advanced\" icon_border_style=\"solid\" icon_color_border=\"#ffffff\" icon_border_size=\"1\" icon_border_radius=\"500\" icon_border_spacing=\"1\" title=\"First Free Sale Certificate obtained from Veterinary Drug Control Authority (VDCA) for Veterinary Pharmaceuticals\" title_font_style=\"font-weight:bold;\" title_font_size=\"desktop:20px;\"][/bsf-info-box][/vc_column_inner][vc_column_inner width=\"1/2\" css=\".vc_custom_1691995661095{background-color: #722f8b !important;border: 1px solid #722f8b !important;border-radius: 35px !important;}\"][bsf-info-box icon_type=\"custom\" icon_img=\"id^3117|url^https://farmchemie.yasithawd.com/wp-content/uploads/2023/08/Pink_-H.png|caption^null|alt^null|title^Pink_-H|description^null\" img_width=\"60\" icon_style=\"advanced\" icon_border_style=\"solid\" icon_color_border=\"#ffffff\" icon_border_size=\"1\" icon_border_radius=\"500\" icon_border_spacing=\"1\" title=\"First ISO 9001: 2015 ,WHO-GMP Quality Management systems certified Animal Health company in Sri Lanka since August, 2012\" title_font_style=\"font-weight:bold;\" title_font_color=\"#ffffff\" title_font_size=\"desktop:20px;\"][/bsf-info-box][/vc_column_inner][/vc_row_inner][vc_row_inner gap=\"20\"][vc_column_inner width=\"1/2\" css=\".vc_custom_1691995661095{background-color: #722f8b !important;border: 1px solid #722f8b !important;border-radius: 35px !important;}\"][bsf-info-box icon_type=\"custom\" icon_img=\"id^3117|url^https://farmchemie.yasithawd.com/wp-content/uploads/2023/08/Pink_-H.png|caption^null|alt^null|title^Pink_-H|description^null\" img_width=\"60\" icon_style=\"advanced\" icon_border_style=\"solid\" icon_color_border=\"#ffffff\" icon_border_size=\"1\" icon_border_radius=\"500\" icon_border_spacing=\"1\" title=\"First FAMI-QS certified company in sri lanka\" title_font_style=\"font-weight:bold;\" title_font_color=\"#ffffff\" title_font_size=\"desktop:20px;\"][/bsf-info-box][/vc_column_inner][vc_column_inner width=\"1/2\" css=\".vc_custom_1691995519863{background-color: #f4ab20 !important;border: 1px solid #f4ab20 !important;border-radius: 35px !important;}\"][bsf-info-box icon_type=\"custom\" icon_img=\"id^3117|url^https://farmchemie.yasithawd.com/wp-content/uploads/2023/08/Pink_-H.png|caption^null|alt^null|title^Pink_-H|description^null\" img_width=\"60\" icon_style=\"advanced\" icon_border_style=\"solid\" icon_color_border=\"#ffffff\" icon_border_size=\"1\" icon_border_radius=\"500\" icon_border_spacing=\"1\" title=\"First Certificate of Ethical Trading certified in Livestock industry\" title_font_style=\"font-weight:bold;\" title_font_size=\"desktop:20px;\"][/bsf-info-box][/vc_column_inner][/vc_row_inner][vc_row_inner gap=\"20\"][vc_column_inner width=\"1/4\" css=\".vc_custom_1691996718116{border-radius: 35px !important;}\"][/vc_column_inner][vc_column_inner width=\"2/4\" css=\".vc_custom_1691995519863{background-color: #f4ab20 !important;border: 1px solid #f4ab20 !important;border-radius: 35px !important;}\"][bsf-info-box icon_type=\"custom\" icon_img=\"id^3117|url^https://farmchemie.yasithawd.com/wp-content/uploads/2023/08/Pink_-H.png|caption^null|alt^null|title^Pink_-H|description^null\" img_width=\"60\" icon_style=\"advanced\" icon_border_style=\"solid\" icon_color_border=\"#ffffff\" icon_border_size=\"1\" icon_border_radius=\"500\" icon_border_spacing=\"1\" title=\"First Silver awarded company at National Exports Awards in Livestock industry\" title_font_style=\"font-weight:bold;\" title_font_size=\"desktop:20px;\"][/bsf-info-box][/vc_column_inner][vc_column_inner width=\"1/4\"][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner width=\"1/6\"][/vc_column_inner][vc_column_inner width=\"2/3\"][vc_single_image image=\"3126\" img_size=\"full\" alignment=\"center\"][vc_single_image image=\"3125\" img_size=\"full\" alignment=\"center\"][/vc_column_inner][vc_column_inner width=\"1/6\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row][vc_column][ultimate_heading main_heading=\"Board Of Directors\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;margin-bottom:35px;\"][/ultimate_heading][ultimate_carousel slides_on_desk=\"3\" slides_on_mob=\"1\" arrow_style=\"square-bg\" arrow_bg_color=\"#039447\" arrow_color=\"#ffffff\" next_icon=\"ultsl-arrow-right6\" prev_icon=\"ultsl-arrow-left6\" dots_color=\"#039447\" item_animation=\"fadeIn\"][vc_row_inner][vc_column_inner][dt_fancy_image image_id=\"3170\" width=\"300\" border_radius=\"1px\" caption=\"off\" css=\".vc_custom_1692278936750{border-top-width: 1px !important;border-right-width: 1px !important;border-bottom-width: 1px !important;border-left-width: 1px !important;border-left-color: #059444 !important;border-left-style: solid !important;border-right-color: #059444 !important;border-right-style: solid !important;border-top-color: #059444 !important;border-top-style: solid !important;border-bottom-color: #059444 !important;border-bottom-style: solid !important;border-radius: 1px !important;}\"][ultimate_heading main_heading=\"Quisque sed nibh tristique\" heading_tag=\"h3\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;\"]Duis lorem risus, aliquet a auctor a, venenatis in dui. Praesent et eros et risus dapibus placerat hendrerit cursus magna.[/ultimate_heading][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner][dt_fancy_image image_id=\"3170\" width=\"300\" border_radius=\"1px\" caption=\"off\" css=\".vc_custom_1692278936750{border-top-width: 1px !important;border-right-width: 1px !important;border-bottom-width: 1px !important;border-left-width: 1px !important;border-left-color: #059444 !important;border-left-style: solid !important;border-right-color: #059444 !important;border-right-style: solid !important;border-top-color: #059444 !important;border-top-style: solid !important;border-bottom-color: #059444 !important;border-bottom-style: solid !important;border-radius: 1px !important;}\"][ultimate_heading main_heading=\"Quisque sed nibh tristique\" heading_tag=\"h3\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;\"]Duis lorem risus, aliquet a auctor a, venenatis in dui. Praesent et eros et risus dapibus placerat hendrerit cursus magna.[/ultimate_heading][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner][dt_fancy_image image_id=\"3171\" width=\"300\" border_radius=\"1px\" caption=\"off\" css=\".vc_custom_1692278929158{border-top-width: 1px !important;border-right-width: 1px !important;border-bottom-width: 1px !important;border-left-width: 1px !important;border-left-color: #059444 !important;border-left-style: solid !important;border-right-color: #059444 !important;border-right-style: solid !important;border-top-color: #059444 !important;border-top-style: solid !important;border-bottom-color: #059444 !important;border-bottom-style: solid !important;border-radius: 1px !important;}\"][ultimate_heading main_heading=\"Quisque sed nibh tristique\" heading_tag=\"h3\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;\"]Duis lorem risus, aliquet a auctor a, venenatis in dui. Praesent et eros et risus dapibus placerat hendrerit cursus magna.[/ultimate_heading][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner][dt_fancy_image image_id=\"3172\" width=\"300\" border_radius=\"1px\" caption=\"off\" css=\".vc_custom_1692278922309{border-top-width: 1px !important;border-right-width: 1px !important;border-bottom-width: 1px !important;border-left-width: 1px !important;border-left-color: #059444 !important;border-left-style: solid !important;border-right-color: #059444 !important;border-right-style: solid !important;border-top-color: #059444 !important;border-top-style: solid !important;border-bottom-color: #059444 !important;border-bottom-style: solid !important;border-radius: 1px !important;}\"][ultimate_heading main_heading=\"Quisque sed nibh tristique\" heading_tag=\"h3\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;\"]Duis lorem risus, aliquet a auctor a, venenatis in dui. Praesent et eros et risus dapibus placerat hendrerit cursus magna.[/ultimate_heading][/vc_column_inner][/vc_row_inner][/ultimate_carousel][/vc_column][/vc_row][vc_row][vc_column][ultimate_heading main_heading=\"Board Of Directors\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;margin-bottom:35px;\"][/ultimate_heading][vc_row_inner][vc_column_inner width=\"1/3\"][ult_animation_block animation=\"fadeInUp\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][dt_fancy_image image_id=\"3172\" width=\"300\" border_radius=\"1px\" caption=\"off\" css=\".vc_custom_1692278922309{border-top-width: 1px !important;border-right-width: 1px !important;border-bottom-width: 1px !important;border-left-width: 1px !important;border-left-color: #059444 !important;border-left-style: solid !important;border-right-color: #059444 !important;border-right-style: solid !important;border-top-color: #059444 !important;border-top-style: solid !important;border-bottom-color: #059444 !important;border-bottom-style: solid !important;border-radius: 1px !important;}\"][ultimate_heading main_heading=\"Quisque sed nibh tristique\" heading_tag=\"h3\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;\"]\r\n<ul>\r\n 	<li>Duis lorem risus, aliquet a auctor a, venenatis in dui. Praesent et eros et risus dapibus placerat hendrerit cursus magna.</li>\r\n 	<li>Praesent et eros et risus dapibus placerat hendrerit cursus magna.</li>\r\n 	<li>aliquet a auctor a, venenatis in dui.</li>\r\n</ul>\r\n[/ultimate_heading][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/3\"][ult_animation_block animation=\"fadeInDown\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][dt_fancy_image image_id=\"3171\" width=\"300\" border_radius=\"1px\" caption=\"off\" css=\".vc_custom_1692278929158{border-top-width: 1px !important;border-right-width: 1px !important;border-bottom-width: 1px !important;border-left-width: 1px !important;border-left-color: #059444 !important;border-left-style: solid !important;border-right-color: #059444 !important;border-right-style: solid !important;border-top-color: #059444 !important;border-top-style: solid !important;border-bottom-color: #059444 !important;border-bottom-style: solid !important;border-radius: 1px !important;}\"][ultimate_heading main_heading=\"Quisque sed nibh tristique\" heading_tag=\"h3\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;\"]\r\n<ul>\r\n 	<li>Duis lorem risus, aliquet a auctor a, venenatis in dui. Praesent et eros et risus dapibus placerat hendrerit cursus magna.</li>\r\n 	<li>Praesent et eros et risus dapibus placerat hendrerit cursus magna.</li>\r\n 	<li>aliquet a auctor a, venenatis in dui.</li>\r\n</ul>\r\n[/ultimate_heading][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/3\"][ult_animation_block animation=\"fadeInUp\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][dt_fancy_image image_id=\"3170\" width=\"300\" border_radius=\"1px\" caption=\"off\" css=\".vc_custom_1692278936750{border-top-width: 1px !important;border-right-width: 1px !important;border-bottom-width: 1px !important;border-left-width: 1px !important;border-left-color: #059444 !important;border-left-style: solid !important;border-right-color: #059444 !important;border-right-style: solid !important;border-top-color: #059444 !important;border-top-style: solid !important;border-bottom-color: #059444 !important;border-bottom-style: solid !important;border-radius: 1px !important;}\"][ultimate_heading main_heading=\"Quisque sed nibh tristique\" heading_tag=\"h3\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;\"]\r\n<ul>\r\n 	<li>Duis lorem risus, aliquet a auctor a, venenatis in dui. Praesent et eros et risus dapibus placerat hendrerit cursus magna.</li>\r\n 	<li>Praesent et eros et risus dapibus placerat hendrerit cursus magna.</li>\r\n 	<li>aliquet a auctor a, venenatis in dui.</li>\r\n</ul>\r\n[/ultimate_heading][/ult_animation_block][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row][vc_column][ultimate_heading main_heading=\"Executive Directors\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;margin-bottom:35px;\"][/ultimate_heading][vc_row_inner][vc_column_inner width=\"1/5\"][ult_animation_block animation=\"fadeInUp\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][dt_fancy_image image_id=\"3172\" width=\"300\" border_radius=\"1px\" caption=\"off\" css=\".vc_custom_1692278922309{border-top-width: 1px !important;border-right-width: 1px !important;border-bottom-width: 1px !important;border-left-width: 1px !important;border-left-color: #059444 !important;border-left-style: solid !important;border-right-color: #059444 !important;border-right-style: solid !important;border-top-color: #059444 !important;border-top-style: solid !important;border-bottom-color: #059444 !important;border-bottom-style: solid !important;border-radius: 1px !important;}\"][ultimate_heading main_heading=\"Quisque sed nibh tristique\" heading_tag=\"h3\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;\"]\r\n<ul>\r\n 	<li>Duis lorem risus, aliquet a auctor a, venenatis in dui. Praesent et eros et risus dapibus placerat hendrerit cursus magna.</li>\r\n 	<li>Praesent et eros et risus dapibus placerat hendrerit cursus magna.</li>\r\n 	<li>aliquet a auctor a, venenatis in dui.</li>\r\n</ul>\r\n[/ultimate_heading][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/5\"][ult_animation_block animation=\"fadeInDown\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][dt_fancy_image image_id=\"3171\" width=\"300\" border_radius=\"1px\" caption=\"off\" css=\".vc_custom_1692278929158{border-top-width: 1px !important;border-right-width: 1px !important;border-bottom-width: 1px !important;border-left-width: 1px !important;border-left-color: #059444 !important;border-left-style: solid !important;border-right-color: #059444 !important;border-right-style: solid !important;border-top-color: #059444 !important;border-top-style: solid !important;border-bottom-color: #059444 !important;border-bottom-style: solid !important;border-radius: 1px !important;}\"][ultimate_heading main_heading=\"Quisque sed nibh tristique\" heading_tag=\"h3\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;\"]\r\n<ul>\r\n 	<li>Duis lorem risus, aliquet a auctor a, venenatis in dui. Praesent et eros et risus dapibus placerat hendrerit cursus magna.</li>\r\n 	<li>Praesent et eros et risus dapibus placerat hendrerit cursus magna.</li>\r\n 	<li>aliquet a auctor a, venenatis in dui.</li>\r\n</ul>\r\n[/ultimate_heading][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/5\"][ult_animation_block animation=\"fadeInUp\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][dt_fancy_image image_id=\"3170\" width=\"300\" border_radius=\"1px\" caption=\"off\" css=\".vc_custom_1692278936750{border-top-width: 1px !important;border-right-width: 1px !important;border-bottom-width: 1px !important;border-left-width: 1px !important;border-left-color: #059444 !important;border-left-style: solid !important;border-right-color: #059444 !important;border-right-style: solid !important;border-top-color: #059444 !important;border-top-style: solid !important;border-bottom-color: #059444 !important;border-bottom-style: solid !important;border-radius: 1px !important;}\"][ultimate_heading main_heading=\"Quisque sed nibh tristique\" heading_tag=\"h3\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;\"]\r\n<ul>\r\n 	<li>Duis lorem risus, aliquet a auctor a, venenatis in dui. Praesent et eros et risus dapibus placerat hendrerit cursus magna.</li>\r\n 	<li>Praesent et eros et risus dapibus placerat hendrerit cursus magna.</li>\r\n 	<li>aliquet a auctor a, venenatis in dui.</li>\r\n</ul>\r\n[/ultimate_heading][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/5\"][ult_animation_block animation=\"fadeInDown\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][dt_fancy_image image_id=\"3170\" width=\"300\" border_radius=\"1px\" caption=\"off\" css=\".vc_custom_1692278936750{border-top-width: 1px !important;border-right-width: 1px !important;border-bottom-width: 1px !important;border-left-width: 1px !important;border-left-color: #059444 !important;border-left-style: solid !important;border-right-color: #059444 !important;border-right-style: solid !important;border-top-color: #059444 !important;border-top-style: solid !important;border-bottom-color: #059444 !important;border-bottom-style: solid !important;border-radius: 1px !important;}\"][ultimate_heading main_heading=\"Quisque sed nibh tristique\" heading_tag=\"h3\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;\"]\r\n<ul>\r\n 	<li>Duis lorem risus, aliquet a auctor a, venenatis in dui. Praesent et eros et risus dapibus placerat hendrerit cursus magna.</li>\r\n 	<li>Praesent et eros et risus dapibus placerat hendrerit cursus magna.</li>\r\n 	<li>aliquet a auctor a, venenatis in dui.</li>\r\n</ul>\r\n[/ultimate_heading][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/5\"][ult_animation_block animation=\"fadeInDown\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][dt_fancy_image image_id=\"3171\" width=\"300\" border_radius=\"1px\" caption=\"off\" css=\".vc_custom_1692278929158{border-top-width: 1px !important;border-right-width: 1px !important;border-bottom-width: 1px !important;border-left-width: 1px !important;border-left-color: #059444 !important;border-left-style: solid !important;border-right-color: #059444 !important;border-right-style: solid !important;border-top-color: #059444 !important;border-top-style: solid !important;border-bottom-color: #059444 !important;border-bottom-style: solid !important;border-radius: 1px !important;}\"][ultimate_heading main_heading=\"Quisque sed nibh tristique\" heading_tag=\"h3\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;\"]\r\n<ul>\r\n 	<li>Duis lorem risus, aliquet a auctor a, venenatis in dui. Praesent et eros et risus dapibus placerat hendrerit cursus magna.</li>\r\n 	<li>Praesent et eros et risus dapibus placerat hendrerit cursus magna.</li>\r\n 	<li>aliquet a auctor a, venenatis in dui.</li>\r\n</ul>\r\n[/ultimate_heading][/ult_animation_block][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner width=\"2/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row][vc_column][ultimate_heading main_heading=\"Next Generation\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;margin-bottom:35px;\"][/ultimate_heading][vc_row_inner][vc_column_inner width=\"1/2\"][ult_animation_block animation=\"fadeInUp\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][dt_fancy_image image_id=\"3172\" width=\"300\" border_radius=\"1px\" caption=\"off\" css=\".vc_custom_1692278922309{border-top-width: 1px !important;border-right-width: 1px !important;border-bottom-width: 1px !important;border-left-width: 1px !important;border-left-color: #059444 !important;border-left-style: solid !important;border-right-color: #059444 !important;border-right-style: solid !important;border-top-color: #059444 !important;border-top-style: solid !important;border-bottom-color: #059444 !important;border-bottom-style: solid !important;border-radius: 1px !important;}\"][ultimate_heading main_heading=\"Quisque sed nibh tristique\" heading_tag=\"h3\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;\"]\r\n<ul>\r\n 	<li>Duis lorem risus, aliquet a auctor a, venenatis in dui. Praesent et eros et risus dapibus placerat hendrerit cursus magna.</li>\r\n 	<li>Praesent et eros et risus dapibus placerat hendrerit cursus magna.</li>\r\n 	<li>aliquet a auctor a, venenatis in dui.</li>\r\n</ul>\r\n[/ultimate_heading][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/2\"][ult_animation_block animation=\"fadeInDown\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][dt_fancy_image image_id=\"3171\" width=\"300\" border_radius=\"1px\" caption=\"off\" css=\".vc_custom_1692278929158{border-top-width: 1px !important;border-right-width: 1px !important;border-bottom-width: 1px !important;border-left-width: 1px !important;border-left-color: #059444 !important;border-left-style: solid !important;border-right-color: #059444 !important;border-right-style: solid !important;border-top-color: #059444 !important;border-top-style: solid !important;border-bottom-color: #059444 !important;border-bottom-style: solid !important;border-radius: 1px !important;}\"][ultimate_heading main_heading=\"Quisque sed nibh tristique\" heading_tag=\"h3\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;\"]\r\n<ul>\r\n 	<li>Duis lorem risus, aliquet a auctor a, venenatis in dui. Praesent et eros et risus dapibus placerat hendrerit cursus magna.</li>\r\n 	<li>Praesent et eros et risus dapibus placerat hendrerit cursus magna.</li>\r\n 	<li>aliquet a auctor a, venenatis in dui.</li>\r\n</ul>\r\n[/ultimate_heading][/ult_animation_block][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row]','About us','','inherit','closed','closed','','2917-revision-v1','','','2023-08-17 14:04:19','2023-08-17 14:04:19','',2917,'https://farmchemie.yasithawd.com/?p=3248',0,'revision','',0),(3249,1,'2023-08-17 14:06:12','2023-08-17 14:06:12','','Alverm-30_400px-140px','','inherit','open','closed','','alverm-30_400px-140px','','','2023-08-17 14:06:12','2023-08-17 14:06:12','',0,'https://farmchemie.yasithawd.com/wp-content/uploads/2023/04/Alverm-30_400px-140px.png',0,'attachment','image/png',0),(3250,1,'2023-08-17 14:17:17','2023-08-17 14:17:17','','AVI-B_-Logo (1)','','inherit','open','closed','','avi-b_-logo-1','','','2023-08-17 14:17:17','2023-08-17 14:17:17','',2774,'https://farmchemie.yasithawd.com/wp-content/uploads/2023/05/AVI-B_-Logo-1.png',0,'attachment','image/png',0),(3251,1,'2023-08-18 06:53:24','2023-08-18 06:53:24','','AVI-B_-Logo (2)','','inherit','open','closed','','avi-b_-logo-2','','','2023-08-18 06:53:24','2023-08-18 06:53:24','',2774,'https://farmchemie.yasithawd.com/wp-content/uploads/2023/05/AVI-B_-Logo-2.png',0,'attachment','image/png',0),(3252,1,'2023-08-18 06:53:39','2023-08-18 06:53:39','','AVI B','','inherit','open','closed','','avi-b-2','','','2023-08-18 06:53:39','2023-08-18 06:53:39','',2774,'https://farmchemie.yasithawd.com/wp-content/uploads/2023/05/AVI-B.pdf',0,'attachment','application/pdf',0),(3254,1,'2023-08-18 12:00:27','2023-08-18 12:00:27','[vc_row full_width=\"stretch_row_content_no_spaces\"][vc_column][ultimate_heading main_heading=\"Our History\" main_heading_color=\"#762888\" margin_design_tab_text=\"\"][/ultimate_heading][/vc_column][/vc_row][vc_row][vc_column][vc_row_inner equal_height=\"yes\" content_placement=\"middle\" css=\".vc_custom_1692359205466{margin-top: 35px !important;}\"][vc_column_inner width=\"1/2\"][ult_animation_block animation=\"fadeInLeftBig\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][vc_single_image image=\"3106\" img_size=\"full\" style=\"vc_box_border_circle_2\"][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/2\"][ult_animation_block animation=\"fadeInRightBig\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][ultimate_heading main_heading=\"Founded in 2002\" heading_tag=\"h3\" main_heading_color=\"#039447\" alignment=\"left\" sub_heading_font_size=\"desktop:18px;\"]Founded in 2002 by Mr. Uditha Wanigasinghe, an agriculturist who had a mission to aid valuable livestock producers in the country to enhance the yield and profitability of production. FARMCHEMIE introduced unprecedented solutions and consistent technical services to gain our customers’ trust and became the market leader in animal health products in 2006 within just four years.[/ultimate_heading][/ult_animation_block][/vc_column_inner][/vc_row_inner][vc_row_inner equal_height=\"yes\" rtl_reverse=\"yes\" content_placement=\"middle\" css=\".vc_custom_1692359216075{margin-top: 35px !important;}\"][vc_column_inner width=\"1/2\"][ult_animation_block animation=\"fadeInLeftBig\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][ultimate_heading main_heading=\"2006\" heading_tag=\"h3\" main_heading_color=\"#039447\" alignment=\"left\"]In 2006, the Sri Lankan poultry industry was affected with Avian Influenza which became a difficult period for the growth of FARMCHEMIE. This was the key factor in our decision to diversify into Agro Products. PLANTCHEM &amp; PLANTSEEDS were established to offer solutions in Agro specialty fertilizers, pesticides and seeds to invaluable cultivators.[/ultimate_heading][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/2\"][ult_animation_block animation=\"fadeInRightBig\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][vc_single_image image=\"3107\" img_size=\"full\" style=\"vc_box_border_circle_2\"][/ult_animation_block][/vc_column_inner][/vc_row_inner][vc_row_inner equal_height=\"yes\" content_placement=\"middle\" css=\".vc_custom_1692359231594{margin-top: 35px !important;}\"][vc_column_inner width=\"1/2\"][vc_single_image image=\"3108\" img_size=\"full\" style=\"vc_box_border_circle_2\"][/vc_column_inner][vc_column_inner width=\"1/2\"][ultimate_heading main_heading=\"2010\" heading_tag=\"h3\" main_heading_color=\"#039447\" alignment=\"left\"]In 2010, FEED CHEMIE became the subsequent addition to ever-growing vision of Mr. Uditha Wanigasinghe and entered the Animal Feed Additives market.[/ultimate_heading][/vc_column_inner][/vc_row_inner][vc_row_inner equal_height=\"yes\" rtl_reverse=\"yes\" content_placement=\"middle\" css=\".vc_custom_1692359239274{margin-top: 35px !important;}\"][vc_column_inner width=\"1/2\"][ultimate_heading main_heading=\"2012\" heading_tag=\"h3\" main_heading_color=\"#039447\" alignment=\"left\"]The year 2012 is described as a turning point in our journey as FARMCHEMIE established our first production facility for the manufacturing and packing of animal health products. FARMCHEMIE became the first animal health organization in Sri Lanka to obtain ISO 9001:2015 and WHO GMP International Quality Certification. With our own formulation unit, FARMCHEMIE was able to offer customized solutions to cater the needs of the Sri Lankan Livestock Industry.[/ultimate_heading][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_single_image image=\"3111\" img_size=\"full\" style=\"vc_box_border_circle_2\"][/vc_column_inner][/vc_row_inner][vc_row_inner content_placement=\"middle\" css=\".vc_custom_1692359246626{margin-top: 35px !important;}\"][vc_column_inner width=\"1/2\"][vc_single_image image=\"3112\" img_size=\"full\" style=\"vc_box_border_circle_2\"][/vc_column_inner][vc_column_inner width=\"1/2\"][ultimate_heading main_heading=\"2016\" heading_tag=\"h3\" main_heading_color=\"#039447\" alignment=\"left\"]The year 2016 was another key milestone with the entry to the International Markets. FARMCHEMIE exported our first Feed Premix consignment to India and in 2018 our export operation was distinctly established as FARMCHEMIE MANUFACTURERS, a Board of Investment (BOI) approved entity.[/ultimate_heading][/vc_column_inner][/vc_row_inner][vc_row_inner equal_height=\"yes\" css=\".vc_custom_1692359252258{margin-top: 35px !important;}\"][vc_column_inner width=\"1/2\"][ultimate_heading main_heading=\"Fully automated manufacturing\" heading_tag=\"h3\" main_heading_color=\"#039447\" alignment=\"left\"]FARMCHEMIE MANUFACTURERS has invested in fully automated manufacturing facility from Bühler and became the first Sri Lankan owned company to obtain FAMI-QS International Quality Certification.[/ultimate_heading][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_single_image image=\"3110\" img_size=\"full\" style=\"vc_box_border_circle_2\"][/vc_column_inner][/vc_row_inner][vc_row_inner equal_height=\"yes\" content_placement=\"middle\" css=\".vc_custom_1692359258634{margin-top: 35px !important;}\"][vc_column_inner width=\"1/2\"][vc_single_image image=\"3116\" img_size=\"full\" style=\"vc_box_border_circle_2\"][/vc_column_inner][vc_column_inner width=\"1/2\"][ultimate_heading main_heading=\"Official toll manufacturer partner\" heading_tag=\"h3\" main_heading_color=\"#039447\" alignment=\"left\"]With the trust and reputation built as a reliable manufacturer of animal feed additives and supplements in the global market, several world-renowned international brands have appointed FARMCHEMIE MANUFACTURERS as the official toll manufacturer partner. FARMCHEMIE MANUFACTURERS exports a wide range of products consisting of premixes, specialty feed additives, oral liquid supplements and pet supplements to various markets in South Asia, East Asia, Middle East and Africa.\r\n\r\nFARMCHEMIE, FEED CHEMIE &amp; FARMCHEMIE MANUFACTURERS currently operate under the ownership of our holding company, DYVESTA.\r\n\r\nDYEVSTA has become the pinnacle of Animal Nutrition and Health.\r\n\r\nDYVESTA is Dynamic, through our continuous evolution, growth and progress. DYVESTA is Diverse, in terms of both our business strategy and our community. DYVESTA is Devoted to our valuable business partners through exceptional service.[/ultimate_heading][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row full_width=\"stretch_row\" equal_height=\"yes\" bg_type=\"image\" parallax_style=\"vcpb-vz-jquery\" bg_image_new=\"id^3236|url^https://farmchemie.yasithawd.com/wp-content/uploads/2023/08/VISION-MISIONFF.png|caption^null|alt^null|title^VISION-&amp;-MISIONFF|description^null\" bg_image_repeat=\"no-repeat\" enable_overlay=\"enable_overlay_value\" overlay_color=\"#000000\" overlay_pattern=\"01.png\" overlay_pattern_opacity=\"5\" css=\".vc_custom_1692198837685{margin-top: 35px !important;padding-top: 65px !important;padding-bottom: 100px !important;}\"][vc_column][vc_row_inner equal_height=\"yes\"][vc_column_inner width=\"1/2\"][ult_animation_block animation=\"fadeInLeftBig\" animation_duration=\"2\" animation_delay=\"0\" animation_iteration_count=\"1\"][ultimate_heading main_heading=\"Vision\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\"]To be the customers’ first and best choice by ensuring outstanding satisfaction through a well-trained and dedicated team. Prompt and quality solutions to our customers’ requirements will determine the increase of return on investment for us.[/ultimate_heading][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/2\"][ult_animation_block animation=\"fadeInRightBig\" animation_duration=\"2\" animation_delay=\"0\" animation_iteration_count=\"1\"][ultimate_heading main_heading=\"Mission\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\"]To become a world renowned manufacturer of Animal Health products and a trusted partner among our stakeholders for our integrity as well as for providing effective solutions[/ultimate_heading][/ult_animation_block][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row css=\".vc_custom_1684836308288{margin-top: 15px !important;}\"][vc_column][ultimate_heading main_heading=\"Achievements\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;\"][/ultimate_heading][vc_row_inner gap=\"20\"][vc_column_inner width=\"1/2\" css=\".vc_custom_1691995519863{background-color: #f4ab20 !important;border: 1px solid #f4ab20 !important;border-radius: 35px !important;}\"][bsf-info-box icon_type=\"custom\" icon_img=\"id^3117|url^https://farmchemie.yasithawd.com/wp-content/uploads/2023/08/Pink_-H.png|caption^null|alt^null|title^Pink_-H|description^null\" img_width=\"60\" icon_style=\"advanced\" icon_border_style=\"solid\" icon_color_border=\"#ffffff\" icon_border_size=\"1\" icon_border_radius=\"500\" icon_border_spacing=\"1\" title=\"First Free Sale Certificate obtained from Veterinary Drug Control Authority (VDCA) for Veterinary Pharmaceuticals\" title_font_style=\"font-weight:bold;\" title_font_size=\"desktop:20px;\"][/bsf-info-box][/vc_column_inner][vc_column_inner width=\"1/2\" css=\".vc_custom_1691995661095{background-color: #722f8b !important;border: 1px solid #722f8b !important;border-radius: 35px !important;}\"][bsf-info-box icon_type=\"custom\" icon_img=\"id^3117|url^https://farmchemie.yasithawd.com/wp-content/uploads/2023/08/Pink_-H.png|caption^null|alt^null|title^Pink_-H|description^null\" img_width=\"60\" icon_style=\"advanced\" icon_border_style=\"solid\" icon_color_border=\"#ffffff\" icon_border_size=\"1\" icon_border_radius=\"500\" icon_border_spacing=\"1\" title=\"First ISO 9001: 2015 ,WHO-GMP Quality Management systems certified Animal Health company in Sri Lanka since August, 2012\" title_font_style=\"font-weight:bold;\" title_font_color=\"#ffffff\" title_font_size=\"desktop:20px;\"][/bsf-info-box][/vc_column_inner][/vc_row_inner][vc_row_inner gap=\"20\"][vc_column_inner width=\"1/2\" css=\".vc_custom_1691995661095{background-color: #722f8b !important;border: 1px solid #722f8b !important;border-radius: 35px !important;}\"][bsf-info-box icon_type=\"custom\" icon_img=\"id^3117|url^https://farmchemie.yasithawd.com/wp-content/uploads/2023/08/Pink_-H.png|caption^null|alt^null|title^Pink_-H|description^null\" img_width=\"60\" icon_style=\"advanced\" icon_border_style=\"solid\" icon_color_border=\"#ffffff\" icon_border_size=\"1\" icon_border_radius=\"500\" icon_border_spacing=\"1\" title=\"First FAMI-QS certified company in sri lanka\" title_font_style=\"font-weight:bold;\" title_font_color=\"#ffffff\" title_font_size=\"desktop:20px;\"][/bsf-info-box][/vc_column_inner][vc_column_inner width=\"1/2\" css=\".vc_custom_1691995519863{background-color: #f4ab20 !important;border: 1px solid #f4ab20 !important;border-radius: 35px !important;}\"][bsf-info-box icon_type=\"custom\" icon_img=\"id^3117|url^https://farmchemie.yasithawd.com/wp-content/uploads/2023/08/Pink_-H.png|caption^null|alt^null|title^Pink_-H|description^null\" img_width=\"60\" icon_style=\"advanced\" icon_border_style=\"solid\" icon_color_border=\"#ffffff\" icon_border_size=\"1\" icon_border_radius=\"500\" icon_border_spacing=\"1\" title=\"First Certificate of Ethical Trading certified in Livestock industry\" title_font_style=\"font-weight:bold;\" title_font_size=\"desktop:20px;\"][/bsf-info-box][/vc_column_inner][/vc_row_inner][vc_row_inner gap=\"20\"][vc_column_inner width=\"1/4\" css=\".vc_custom_1691996718116{border-radius: 35px !important;}\"][/vc_column_inner][vc_column_inner width=\"2/4\" css=\".vc_custom_1691995519863{background-color: #f4ab20 !important;border: 1px solid #f4ab20 !important;border-radius: 35px !important;}\"][bsf-info-box icon_type=\"custom\" icon_img=\"id^3117|url^https://farmchemie.yasithawd.com/wp-content/uploads/2023/08/Pink_-H.png|caption^null|alt^null|title^Pink_-H|description^null\" img_width=\"60\" icon_style=\"advanced\" icon_border_style=\"solid\" icon_color_border=\"#ffffff\" icon_border_size=\"1\" icon_border_radius=\"500\" icon_border_spacing=\"1\" title=\"First Silver awarded company at National Exports Awards in Livestock industry\" title_font_style=\"font-weight:bold;\" title_font_size=\"desktop:20px;\"][/bsf-info-box][/vc_column_inner][vc_column_inner width=\"1/4\"][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner width=\"1/6\"][/vc_column_inner][vc_column_inner width=\"2/3\"][vc_single_image image=\"3126\" img_size=\"full\" alignment=\"center\"][vc_single_image image=\"3125\" img_size=\"full\" alignment=\"center\"][/vc_column_inner][vc_column_inner width=\"1/6\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row][vc_column][ultimate_heading main_heading=\"Board Of Directors\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;margin-bottom:35px;\"][/ultimate_heading][ultimate_carousel slides_on_desk=\"3\" slides_on_mob=\"1\" arrow_style=\"square-bg\" arrow_bg_color=\"#039447\" arrow_color=\"#ffffff\" next_icon=\"ultsl-arrow-right6\" prev_icon=\"ultsl-arrow-left6\" dots_color=\"#039447\" item_animation=\"fadeIn\"][vc_row_inner][vc_column_inner][dt_fancy_image image_id=\"3170\" width=\"300\" border_radius=\"1px\" caption=\"off\" css=\".vc_custom_1692278936750{border-top-width: 1px !important;border-right-width: 1px !important;border-bottom-width: 1px !important;border-left-width: 1px !important;border-left-color: #059444 !important;border-left-style: solid !important;border-right-color: #059444 !important;border-right-style: solid !important;border-top-color: #059444 !important;border-top-style: solid !important;border-bottom-color: #059444 !important;border-bottom-style: solid !important;border-radius: 1px !important;}\"][ultimate_heading main_heading=\"Quisque sed nibh tristique\" heading_tag=\"h3\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;\"]Duis lorem risus, aliquet a auctor a, venenatis in dui. Praesent et eros et risus dapibus placerat hendrerit cursus magna.[/ultimate_heading][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner][dt_fancy_image image_id=\"3170\" width=\"300\" border_radius=\"1px\" caption=\"off\" css=\".vc_custom_1692278936750{border-top-width: 1px !important;border-right-width: 1px !important;border-bottom-width: 1px !important;border-left-width: 1px !important;border-left-color: #059444 !important;border-left-style: solid !important;border-right-color: #059444 !important;border-right-style: solid !important;border-top-color: #059444 !important;border-top-style: solid !important;border-bottom-color: #059444 !important;border-bottom-style: solid !important;border-radius: 1px !important;}\"][ultimate_heading main_heading=\"Quisque sed nibh tristique\" heading_tag=\"h3\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;\"]Duis lorem risus, aliquet a auctor a, venenatis in dui. Praesent et eros et risus dapibus placerat hendrerit cursus magna.[/ultimate_heading][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner][dt_fancy_image image_id=\"3171\" width=\"300\" border_radius=\"1px\" caption=\"off\" css=\".vc_custom_1692278929158{border-top-width: 1px !important;border-right-width: 1px !important;border-bottom-width: 1px !important;border-left-width: 1px !important;border-left-color: #059444 !important;border-left-style: solid !important;border-right-color: #059444 !important;border-right-style: solid !important;border-top-color: #059444 !important;border-top-style: solid !important;border-bottom-color: #059444 !important;border-bottom-style: solid !important;border-radius: 1px !important;}\"][ultimate_heading main_heading=\"Quisque sed nibh tristique\" heading_tag=\"h3\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;\"]Duis lorem risus, aliquet a auctor a, venenatis in dui. Praesent et eros et risus dapibus placerat hendrerit cursus magna.[/ultimate_heading][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner][dt_fancy_image image_id=\"3172\" width=\"300\" border_radius=\"1px\" caption=\"off\" css=\".vc_custom_1692278922309{border-top-width: 1px !important;border-right-width: 1px !important;border-bottom-width: 1px !important;border-left-width: 1px !important;border-left-color: #059444 !important;border-left-style: solid !important;border-right-color: #059444 !important;border-right-style: solid !important;border-top-color: #059444 !important;border-top-style: solid !important;border-bottom-color: #059444 !important;border-bottom-style: solid !important;border-radius: 1px !important;}\"][ultimate_heading main_heading=\"Quisque sed nibh tristique\" heading_tag=\"h3\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;\"]Duis lorem risus, aliquet a auctor a, venenatis in dui. Praesent et eros et risus dapibus placerat hendrerit cursus magna.[/ultimate_heading][/vc_column_inner][/vc_row_inner][/ultimate_carousel][/vc_column][/vc_row][vc_row][vc_column][ultimate_heading main_heading=\"Board Of Directors\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;margin-bottom:35px;\"][/ultimate_heading][vc_row_inner][vc_column_inner width=\"1/3\"][ult_animation_block animation=\"fadeInUp\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][dt_fancy_image image_id=\"3172\" width=\"300\" border_radius=\"1px\" caption=\"off\" css=\".vc_custom_1692278922309{border-top-width: 1px !important;border-right-width: 1px !important;border-bottom-width: 1px !important;border-left-width: 1px !important;border-left-color: #059444 !important;border-left-style: solid !important;border-right-color: #059444 !important;border-right-style: solid !important;border-top-color: #059444 !important;border-top-style: solid !important;border-bottom-color: #059444 !important;border-bottom-style: solid !important;border-radius: 1px !important;}\"][ultimate_heading main_heading=\"Quisque sed nibh tristique\" heading_tag=\"h3\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;\"]\r\n<ul>\r\n 	<li>Duis lorem risus, aliquet a auctor a, venenatis in dui. Praesent et eros et risus dapibus placerat hendrerit cursus magna.</li>\r\n 	<li>Praesent et eros et risus dapibus placerat hendrerit cursus magna.</li>\r\n 	<li>aliquet a auctor a, venenatis in dui.</li>\r\n</ul>\r\n[/ultimate_heading][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/3\"][ult_animation_block animation=\"fadeInDown\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][dt_fancy_image image_id=\"3171\" width=\"300\" border_radius=\"1px\" caption=\"off\" css=\".vc_custom_1692278929158{border-top-width: 1px !important;border-right-width: 1px !important;border-bottom-width: 1px !important;border-left-width: 1px !important;border-left-color: #059444 !important;border-left-style: solid !important;border-right-color: #059444 !important;border-right-style: solid !important;border-top-color: #059444 !important;border-top-style: solid !important;border-bottom-color: #059444 !important;border-bottom-style: solid !important;border-radius: 1px !important;}\"][ultimate_heading main_heading=\"Quisque sed nibh tristique\" heading_tag=\"h3\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;\"]\r\n<ul>\r\n 	<li>Duis lorem risus, aliquet a auctor a, venenatis in dui. Praesent et eros et risus dapibus placerat hendrerit cursus magna.</li>\r\n 	<li>Praesent et eros et risus dapibus placerat hendrerit cursus magna.</li>\r\n 	<li>aliquet a auctor a, venenatis in dui.</li>\r\n</ul>\r\n[/ultimate_heading][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/3\"][ult_animation_block animation=\"fadeInUp\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][dt_fancy_image image_id=\"3170\" width=\"300\" border_radius=\"1px\" caption=\"off\" css=\".vc_custom_1692278936750{border-top-width: 1px !important;border-right-width: 1px !important;border-bottom-width: 1px !important;border-left-width: 1px !important;border-left-color: #059444 !important;border-left-style: solid !important;border-right-color: #059444 !important;border-right-style: solid !important;border-top-color: #059444 !important;border-top-style: solid !important;border-bottom-color: #059444 !important;border-bottom-style: solid !important;border-radius: 1px !important;}\"][ultimate_heading main_heading=\"Quisque sed nibh tristique\" heading_tag=\"h3\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;\"]\r\n<ul>\r\n 	<li>Duis lorem risus, aliquet a auctor a, venenatis in dui. Praesent et eros et risus dapibus placerat hendrerit cursus magna.</li>\r\n 	<li>Praesent et eros et risus dapibus placerat hendrerit cursus magna.</li>\r\n 	<li>aliquet a auctor a, venenatis in dui.</li>\r\n</ul>\r\n[/ultimate_heading][/ult_animation_block][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row][vc_column][ultimate_heading main_heading=\"Executive Directors\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;margin-bottom:35px;\"][/ultimate_heading][vc_row_inner][vc_column_inner width=\"1/5\"][ult_animation_block animation=\"fadeInUp\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][dt_fancy_image image_id=\"3172\" width=\"300\" border_radius=\"1px\" caption=\"off\" css=\".vc_custom_1692278922309{border-top-width: 1px !important;border-right-width: 1px !important;border-bottom-width: 1px !important;border-left-width: 1px !important;border-left-color: #059444 !important;border-left-style: solid !important;border-right-color: #059444 !important;border-right-style: solid !important;border-top-color: #059444 !important;border-top-style: solid !important;border-bottom-color: #059444 !important;border-bottom-style: solid !important;border-radius: 1px !important;}\"][ultimate_heading main_heading=\"Quisque sed nibh tristique\" heading_tag=\"h3\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;\"]\r\n<ul>\r\n 	<li>Duis lorem risus, aliquet a auctor a, venenatis in dui. Praesent et eros et risus dapibus placerat hendrerit cursus magna.</li>\r\n 	<li>Praesent et eros et risus dapibus placerat hendrerit cursus magna.</li>\r\n 	<li>aliquet a auctor a, venenatis in dui.</li>\r\n</ul>\r\n[/ultimate_heading][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/5\"][ult_animation_block animation=\"fadeInDown\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][dt_fancy_image image_id=\"3171\" width=\"300\" border_radius=\"1px\" caption=\"off\" css=\".vc_custom_1692278929158{border-top-width: 1px !important;border-right-width: 1px !important;border-bottom-width: 1px !important;border-left-width: 1px !important;border-left-color: #059444 !important;border-left-style: solid !important;border-right-color: #059444 !important;border-right-style: solid !important;border-top-color: #059444 !important;border-top-style: solid !important;border-bottom-color: #059444 !important;border-bottom-style: solid !important;border-radius: 1px !important;}\"][ultimate_heading main_heading=\"Quisque sed nibh tristique\" heading_tag=\"h3\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;\"]\r\n<ul>\r\n 	<li>Duis lorem risus, aliquet a auctor a, venenatis in dui. Praesent et eros et risus dapibus placerat hendrerit cursus magna.</li>\r\n 	<li>Praesent et eros et risus dapibus placerat hendrerit cursus magna.</li>\r\n 	<li>aliquet a auctor a, venenatis in dui.</li>\r\n</ul>\r\n[/ultimate_heading][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/5\"][ult_animation_block animation=\"fadeInUp\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][dt_fancy_image image_id=\"3170\" width=\"300\" border_radius=\"1px\" caption=\"off\" css=\".vc_custom_1692278936750{border-top-width: 1px !important;border-right-width: 1px !important;border-bottom-width: 1px !important;border-left-width: 1px !important;border-left-color: #059444 !important;border-left-style: solid !important;border-right-color: #059444 !important;border-right-style: solid !important;border-top-color: #059444 !important;border-top-style: solid !important;border-bottom-color: #059444 !important;border-bottom-style: solid !important;border-radius: 1px !important;}\"][ultimate_heading main_heading=\"Quisque sed nibh tristique\" heading_tag=\"h3\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;\"]\r\n<ul>\r\n 	<li>Duis lorem risus, aliquet a auctor a, venenatis in dui. Praesent et eros et risus dapibus placerat hendrerit cursus magna.</li>\r\n 	<li>Praesent et eros et risus dapibus placerat hendrerit cursus magna.</li>\r\n 	<li>aliquet a auctor a, venenatis in dui.</li>\r\n</ul>\r\n[/ultimate_heading][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/5\"][ult_animation_block animation=\"fadeInDown\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][dt_fancy_image image_id=\"3170\" width=\"300\" border_radius=\"1px\" caption=\"off\" css=\".vc_custom_1692278936750{border-top-width: 1px !important;border-right-width: 1px !important;border-bottom-width: 1px !important;border-left-width: 1px !important;border-left-color: #059444 !important;border-left-style: solid !important;border-right-color: #059444 !important;border-right-style: solid !important;border-top-color: #059444 !important;border-top-style: solid !important;border-bottom-color: #059444 !important;border-bottom-style: solid !important;border-radius: 1px !important;}\"][ultimate_heading main_heading=\"Quisque sed nibh tristique\" heading_tag=\"h3\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;\"]\r\n<ul>\r\n 	<li>Duis lorem risus, aliquet a auctor a, venenatis in dui. Praesent et eros et risus dapibus placerat hendrerit cursus magna.</li>\r\n 	<li>Praesent et eros et risus dapibus placerat hendrerit cursus magna.</li>\r\n 	<li>aliquet a auctor a, venenatis in dui.</li>\r\n</ul>\r\n[/ultimate_heading][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/5\"][ult_animation_block animation=\"fadeInDown\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][dt_fancy_image image_id=\"3171\" width=\"300\" border_radius=\"1px\" caption=\"off\" css=\".vc_custom_1692278929158{border-top-width: 1px !important;border-right-width: 1px !important;border-bottom-width: 1px !important;border-left-width: 1px !important;border-left-color: #059444 !important;border-left-style: solid !important;border-right-color: #059444 !important;border-right-style: solid !important;border-top-color: #059444 !important;border-top-style: solid !important;border-bottom-color: #059444 !important;border-bottom-style: solid !important;border-radius: 1px !important;}\"][ultimate_heading main_heading=\"Quisque sed nibh tristique\" heading_tag=\"h3\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;\"]\r\n<ul>\r\n 	<li>Duis lorem risus, aliquet a auctor a, venenatis in dui. Praesent et eros et risus dapibus placerat hendrerit cursus magna.</li>\r\n 	<li>Praesent et eros et risus dapibus placerat hendrerit cursus magna.</li>\r\n 	<li>aliquet a auctor a, venenatis in dui.</li>\r\n</ul>\r\n[/ultimate_heading][/ult_animation_block][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner width=\"2/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row][vc_column][ultimate_heading main_heading=\"Next Generation\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;margin-bottom:35px;\"][/ultimate_heading][vc_row_inner][vc_column_inner width=\"1/2\"][ult_animation_block animation=\"fadeInUp\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][dt_fancy_image image_id=\"3172\" width=\"300\" border_radius=\"1px\" caption=\"off\" css=\".vc_custom_1692278922309{border-top-width: 1px !important;border-right-width: 1px !important;border-bottom-width: 1px !important;border-left-width: 1px !important;border-left-color: #059444 !important;border-left-style: solid !important;border-right-color: #059444 !important;border-right-style: solid !important;border-top-color: #059444 !important;border-top-style: solid !important;border-bottom-color: #059444 !important;border-bottom-style: solid !important;border-radius: 1px !important;}\"][ultimate_heading main_heading=\"Quisque sed nibh tristique\" heading_tag=\"h3\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;\"]\r\n<ul>\r\n 	<li>Duis lorem risus, aliquet a auctor a, venenatis in dui. Praesent et eros et risus dapibus placerat hendrerit cursus magna.</li>\r\n 	<li>Praesent et eros et risus dapibus placerat hendrerit cursus magna.</li>\r\n 	<li>aliquet a auctor a, venenatis in dui.</li>\r\n</ul>\r\n[/ultimate_heading][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/2\"][ult_animation_block animation=\"fadeInDown\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][dt_fancy_image image_id=\"3171\" width=\"300\" border_radius=\"1px\" caption=\"off\" css=\".vc_custom_1692278929158{border-top-width: 1px !important;border-right-width: 1px !important;border-bottom-width: 1px !important;border-left-width: 1px !important;border-left-color: #059444 !important;border-left-style: solid !important;border-right-color: #059444 !important;border-right-style: solid !important;border-top-color: #059444 !important;border-top-style: solid !important;border-bottom-color: #059444 !important;border-bottom-style: solid !important;border-radius: 1px !important;}\"][ultimate_heading main_heading=\"Quisque sed nibh tristique\" heading_tag=\"h3\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;\"]\r\n<ul>\r\n 	<li>Duis lorem risus, aliquet a auctor a, venenatis in dui. Praesent et eros et risus dapibus placerat hendrerit cursus magna.</li>\r\n 	<li>Praesent et eros et risus dapibus placerat hendrerit cursus magna.</li>\r\n 	<li>aliquet a auctor a, venenatis in dui.</li>\r\n</ul>\r\n[/ultimate_heading][/ult_animation_block][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row]','About us','','inherit','closed','closed','','2917-revision-v1','','','2023-08-18 12:00:27','2023-08-18 12:00:27','',2917,'https://farmchemie.yasithawd.com/?p=3254',0,'revision','',0),(3255,1,'2023-08-18 12:13:11','2023-08-18 12:13:11','[vc_row full_width=\"stretch_row_content_no_spaces\"][vc_column][ultimate_heading main_heading=\"Our History\" main_heading_color=\"#762888\"][/ultimate_heading][/vc_column][/vc_row][vc_row][vc_column][vc_row_inner equal_height=\"yes\" content_placement=\"middle\" css=\".vc_custom_1692359205466{margin-top: 35px !important;}\"][vc_column_inner width=\"1/2\"][ult_animation_block animation=\"fadeInLeftBig\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][vc_single_image image=\"3106\" img_size=\"full\" style=\"vc_box_border_circle_2\"][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/2\"][ult_animation_block animation=\"fadeInRightBig\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][ultimate_heading main_heading=\"Founded in 2002\" heading_tag=\"h3\" main_heading_color=\"#039447\" alignment=\"left\" sub_heading_font_size=\"desktop:18px;\"]Founded in 2002 by Mr. Uditha Wanigasinghe, an agriculturist who had a mission to aid valuable livestock producers in the country to enhance the yield and profitability of production. FARMCHEMIE introduced unprecedented solutions and consistent technical services to gain our customers’ trust and became the market leader in animal health products in 2006 within just four years.[/ultimate_heading][/ult_animation_block][/vc_column_inner][/vc_row_inner][vc_row_inner equal_height=\"yes\" rtl_reverse=\"yes\" content_placement=\"middle\" css=\".vc_custom_1692359216075{margin-top: 35px !important;}\"][vc_column_inner width=\"1/2\"][ult_animation_block animation=\"fadeInLeftBig\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][ultimate_heading main_heading=\"2006\" heading_tag=\"h3\" main_heading_color=\"#039447\" alignment=\"left\"]In 2006, the Sri Lankan poultry industry was affected with Avian Influenza which became a difficult period for the growth of FARMCHEMIE. This was the key factor in our decision to diversify into Agro Products. PLANTCHEM &amp; PLANTSEEDS were established to offer solutions in Agro specialty fertilizers, pesticides and seeds to invaluable cultivators.[/ultimate_heading][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/2\"][ult_animation_block animation=\"fadeInRightBig\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][vc_single_image image=\"3107\" img_size=\"full\" style=\"vc_box_border_circle_2\"][/ult_animation_block][/vc_column_inner][/vc_row_inner][vc_row_inner equal_height=\"yes\" content_placement=\"middle\" css=\".vc_custom_1692359231594{margin-top: 35px !important;}\"][vc_column_inner width=\"1/2\"][ult_animation_block animation=\"fadeInLeftBig\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][vc_single_image image=\"3108\" img_size=\"full\" style=\"vc_box_border_circle_2\"][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/2\"][ultimate_heading main_heading=\"2010\" heading_tag=\"h3\" main_heading_color=\"#039447\" alignment=\"left\"]In 2010, FEED CHEMIE became the subsequent addition to ever-growing vision of Mr. Uditha Wanigasinghe and entered the Animal Feed Additives market.[/ultimate_heading][/vc_column_inner][/vc_row_inner][vc_row_inner equal_height=\"yes\" rtl_reverse=\"yes\" content_placement=\"middle\" css=\".vc_custom_1692359239274{margin-top: 35px !important;}\"][vc_column_inner width=\"1/2\"][ult_animation_block animation=\"fadeInLeftBig\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][ultimate_heading main_heading=\"2012\" heading_tag=\"h3\" main_heading_color=\"#039447\" alignment=\"left\"]The year 2012 is described as a turning point in our journey as FARMCHEMIE established our first production facility for the manufacturing and packing of animal health products. FARMCHEMIE became the first animal health organization in Sri Lanka to obtain ISO 9001:2015 and WHO GMP International Quality Certification. With our own formulation unit, FARMCHEMIE was able to offer customized solutions to cater the needs of the Sri Lankan Livestock Industry.[/ultimate_heading][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_single_image image=\"3111\" img_size=\"full\" style=\"vc_box_border_circle_2\"][/vc_column_inner][/vc_row_inner][vc_row_inner content_placement=\"middle\" css=\".vc_custom_1692359246626{margin-top: 35px !important;}\"][vc_column_inner width=\"1/2\"][ult_animation_block animation=\"fadeInLeftBig\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][vc_single_image image=\"3112\" img_size=\"full\" style=\"vc_box_border_circle_2\"][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/2\"][ultimate_heading main_heading=\"2016\" heading_tag=\"h3\" main_heading_color=\"#039447\" alignment=\"left\"]The year 2016 was another key milestone with the entry to the International Markets. FARMCHEMIE exported our first Feed Premix consignment to India and in 2018 our export operation was distinctly established as FARMCHEMIE MANUFACTURERS, a Board of Investment (BOI) approved entity.[/ultimate_heading][/vc_column_inner][/vc_row_inner][vc_row_inner equal_height=\"yes\" css=\".vc_custom_1692359252258{margin-top: 35px !important;}\"][vc_column_inner width=\"1/2\"][ult_animation_block animation=\"fadeInLeftBig\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][ultimate_heading main_heading=\"Fully automated manufacturing\" heading_tag=\"h3\" main_heading_color=\"#039447\" alignment=\"left\"]FARMCHEMIE MANUFACTURERS has invested in fully automated manufacturing facility from Bühler and became the first Sri Lankan owned company to obtain FAMI-QS International Quality Certification.[/ultimate_heading][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_single_image image=\"3110\" img_size=\"full\" style=\"vc_box_border_circle_2\"][/vc_column_inner][/vc_row_inner][vc_row_inner equal_height=\"yes\" content_placement=\"middle\" css=\".vc_custom_1692359258634{margin-top: 35px !important;}\"][vc_column_inner width=\"1/2\"][ult_animation_block animation=\"fadeInLeftBig\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][vc_single_image image=\"3116\" img_size=\"full\" style=\"vc_box_border_circle_2\"][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/2\"][ultimate_heading main_heading=\"Official toll manufacturer partner\" heading_tag=\"h3\" main_heading_color=\"#039447\" alignment=\"left\"]With the trust and reputation built as a reliable manufacturer of animal feed additives and supplements in the global market, several world-renowned international brands have appointed FARMCHEMIE MANUFACTURERS as the official toll manufacturer partner. FARMCHEMIE MANUFACTURERS exports a wide range of products consisting of premixes, specialty feed additives, oral liquid supplements and pet supplements to various markets in South Asia, East Asia, Middle East and Africa.\r\n\r\nFARMCHEMIE, FEED CHEMIE &amp; FARMCHEMIE MANUFACTURERS currently operate under the ownership of our holding company, DYVESTA.\r\n\r\nDYEVSTA has become the pinnacle of Animal Nutrition and Health.\r\n\r\nDYVESTA is Dynamic, through our continuous evolution, growth and progress. DYVESTA is Diverse, in terms of both our business strategy and our community. DYVESTA is Devoted to our valuable business partners through exceptional service.[/ultimate_heading][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row full_width=\"stretch_row\" equal_height=\"yes\" bg_type=\"image\" parallax_style=\"vcpb-vz-jquery\" bg_image_new=\"id^3236|url^https://farmchemie.yasithawd.com/wp-content/uploads/2023/08/VISION-MISIONFF.png|caption^null|alt^null|title^VISION-&amp;-MISIONFF|description^null\" bg_image_repeat=\"no-repeat\" enable_overlay=\"enable_overlay_value\" overlay_color=\"#000000\" overlay_pattern=\"01.png\" overlay_pattern_opacity=\"5\" css=\".vc_custom_1692198837685{margin-top: 35px !important;padding-top: 65px !important;padding-bottom: 100px !important;}\"][vc_column][vc_row_inner equal_height=\"yes\"][vc_column_inner width=\"1/2\"][ult_animation_block animation=\"fadeInLeftBig\" animation_duration=\"2\" animation_delay=\"0\" animation_iteration_count=\"1\"][ultimate_heading main_heading=\"Vision\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\"]To be the customers’ first and best choice by ensuring outstanding satisfaction through a well-trained and dedicated team. Prompt and quality solutions to our customers’ requirements will determine the increase of return on investment for us.[/ultimate_heading][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/2\"][ult_animation_block animation=\"fadeInRightBig\" animation_duration=\"2\" animation_delay=\"0\" animation_iteration_count=\"1\"][ultimate_heading main_heading=\"Mission\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\"]To become a world renowned manufacturer of Animal Health products and a trusted partner among our stakeholders for our integrity as well as for providing effective solutions[/ultimate_heading][/ult_animation_block][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row css=\".vc_custom_1684836308288{margin-top: 15px !important;}\"][vc_column][ultimate_heading main_heading=\"Achievements\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;\"][/ultimate_heading][vc_row_inner gap=\"20\"][vc_column_inner width=\"1/2\" css=\".vc_custom_1691995519863{background-color: #f4ab20 !important;border: 1px solid #f4ab20 !important;border-radius: 35px !important;}\"][bsf-info-box icon_type=\"custom\" icon_img=\"id^3117|url^https://farmchemie.yasithawd.com/wp-content/uploads/2023/08/Pink_-H.png|caption^null|alt^null|title^Pink_-H|description^null\" img_width=\"60\" icon_style=\"advanced\" icon_border_style=\"solid\" icon_color_border=\"#ffffff\" icon_border_size=\"1\" icon_border_radius=\"500\" icon_border_spacing=\"1\" title=\"First Free Sale Certificate obtained from Veterinary Drug Control Authority (VDCA) for Veterinary Pharmaceuticals\" title_font_style=\"font-weight:bold;\" title_font_size=\"desktop:20px;\"][/bsf-info-box][/vc_column_inner][vc_column_inner width=\"1/2\" css=\".vc_custom_1691995661095{background-color: #722f8b !important;border: 1px solid #722f8b !important;border-radius: 35px !important;}\"][bsf-info-box icon_type=\"custom\" icon_img=\"id^3117|url^https://farmchemie.yasithawd.com/wp-content/uploads/2023/08/Pink_-H.png|caption^null|alt^null|title^Pink_-H|description^null\" img_width=\"60\" icon_style=\"advanced\" icon_border_style=\"solid\" icon_color_border=\"#ffffff\" icon_border_size=\"1\" icon_border_radius=\"500\" icon_border_spacing=\"1\" title=\"First ISO 9001: 2015 ,WHO-GMP Quality Management systems certified Animal Health company in Sri Lanka since August, 2012\" title_font_style=\"font-weight:bold;\" title_font_color=\"#ffffff\" title_font_size=\"desktop:20px;\"][/bsf-info-box][/vc_column_inner][/vc_row_inner][vc_row_inner gap=\"20\"][vc_column_inner width=\"1/2\" css=\".vc_custom_1691995661095{background-color: #722f8b !important;border: 1px solid #722f8b !important;border-radius: 35px !important;}\"][bsf-info-box icon_type=\"custom\" icon_img=\"id^3117|url^https://farmchemie.yasithawd.com/wp-content/uploads/2023/08/Pink_-H.png|caption^null|alt^null|title^Pink_-H|description^null\" img_width=\"60\" icon_style=\"advanced\" icon_border_style=\"solid\" icon_color_border=\"#ffffff\" icon_border_size=\"1\" icon_border_radius=\"500\" icon_border_spacing=\"1\" title=\"First FAMI-QS certified company in sri lanka\" title_font_style=\"font-weight:bold;\" title_font_color=\"#ffffff\" title_font_size=\"desktop:20px;\"][/bsf-info-box][/vc_column_inner][vc_column_inner width=\"1/2\" css=\".vc_custom_1691995519863{background-color: #f4ab20 !important;border: 1px solid #f4ab20 !important;border-radius: 35px !important;}\"][bsf-info-box icon_type=\"custom\" icon_img=\"id^3117|url^https://farmchemie.yasithawd.com/wp-content/uploads/2023/08/Pink_-H.png|caption^null|alt^null|title^Pink_-H|description^null\" img_width=\"60\" icon_style=\"advanced\" icon_border_style=\"solid\" icon_color_border=\"#ffffff\" icon_border_size=\"1\" icon_border_radius=\"500\" icon_border_spacing=\"1\" title=\"First Certificate of Ethical Trading certified in Livestock industry\" title_font_style=\"font-weight:bold;\" title_font_size=\"desktop:20px;\"][/bsf-info-box][/vc_column_inner][/vc_row_inner][vc_row_inner gap=\"20\"][vc_column_inner width=\"1/4\" css=\".vc_custom_1691996718116{border-radius: 35px !important;}\"][/vc_column_inner][vc_column_inner width=\"2/4\" css=\".vc_custom_1691995519863{background-color: #f4ab20 !important;border: 1px solid #f4ab20 !important;border-radius: 35px !important;}\"][bsf-info-box icon_type=\"custom\" icon_img=\"id^3117|url^https://farmchemie.yasithawd.com/wp-content/uploads/2023/08/Pink_-H.png|caption^null|alt^null|title^Pink_-H|description^null\" img_width=\"60\" icon_style=\"advanced\" icon_border_style=\"solid\" icon_color_border=\"#ffffff\" icon_border_size=\"1\" icon_border_radius=\"500\" icon_border_spacing=\"1\" title=\"First Silver awarded company at National Exports Awards in Livestock industry\" title_font_style=\"font-weight:bold;\" title_font_size=\"desktop:20px;\"][/bsf-info-box][/vc_column_inner][vc_column_inner width=\"1/4\"][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner width=\"1/6\"][/vc_column_inner][vc_column_inner width=\"2/3\"][vc_single_image image=\"3126\" img_size=\"full\" alignment=\"center\"][vc_single_image image=\"3125\" img_size=\"full\" alignment=\"center\"][/vc_column_inner][vc_column_inner width=\"1/6\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row][vc_column][ultimate_heading main_heading=\"Board Of Directors\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;margin-bottom:35px;\"][/ultimate_heading][ultimate_carousel slides_on_desk=\"3\" slides_on_mob=\"1\" arrow_style=\"square-bg\" arrow_bg_color=\"#039447\" arrow_color=\"#ffffff\" next_icon=\"ultsl-arrow-right6\" prev_icon=\"ultsl-arrow-left6\" dots_color=\"#039447\" item_animation=\"fadeIn\"][vc_row_inner][vc_column_inner][dt_fancy_image image_id=\"3170\" width=\"300\" border_radius=\"1px\" caption=\"off\" css=\".vc_custom_1692278936750{border-top-width: 1px !important;border-right-width: 1px !important;border-bottom-width: 1px !important;border-left-width: 1px !important;border-left-color: #059444 !important;border-left-style: solid !important;border-right-color: #059444 !important;border-right-style: solid !important;border-top-color: #059444 !important;border-top-style: solid !important;border-bottom-color: #059444 !important;border-bottom-style: solid !important;border-radius: 1px !important;}\"][ultimate_heading main_heading=\"Quisque sed nibh tristique\" heading_tag=\"h3\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;\"]Duis lorem risus, aliquet a auctor a, venenatis in dui. Praesent et eros et risus dapibus placerat hendrerit cursus magna.[/ultimate_heading][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner][dt_fancy_image image_id=\"3170\" width=\"300\" border_radius=\"1px\" caption=\"off\" css=\".vc_custom_1692278936750{border-top-width: 1px !important;border-right-width: 1px !important;border-bottom-width: 1px !important;border-left-width: 1px !important;border-left-color: #059444 !important;border-left-style: solid !important;border-right-color: #059444 !important;border-right-style: solid !important;border-top-color: #059444 !important;border-top-style: solid !important;border-bottom-color: #059444 !important;border-bottom-style: solid !important;border-radius: 1px !important;}\"][ultimate_heading main_heading=\"Quisque sed nibh tristique\" heading_tag=\"h3\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;\"]Duis lorem risus, aliquet a auctor a, venenatis in dui. Praesent et eros et risus dapibus placerat hendrerit cursus magna.[/ultimate_heading][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner][dt_fancy_image image_id=\"3171\" width=\"300\" border_radius=\"1px\" caption=\"off\" css=\".vc_custom_1692278929158{border-top-width: 1px !important;border-right-width: 1px !important;border-bottom-width: 1px !important;border-left-width: 1px !important;border-left-color: #059444 !important;border-left-style: solid !important;border-right-color: #059444 !important;border-right-style: solid !important;border-top-color: #059444 !important;border-top-style: solid !important;border-bottom-color: #059444 !important;border-bottom-style: solid !important;border-radius: 1px !important;}\"][ultimate_heading main_heading=\"Quisque sed nibh tristique\" heading_tag=\"h3\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;\"]Duis lorem risus, aliquet a auctor a, venenatis in dui. Praesent et eros et risus dapibus placerat hendrerit cursus magna.[/ultimate_heading][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner][dt_fancy_image image_id=\"3172\" width=\"300\" border_radius=\"1px\" caption=\"off\" css=\".vc_custom_1692278922309{border-top-width: 1px !important;border-right-width: 1px !important;border-bottom-width: 1px !important;border-left-width: 1px !important;border-left-color: #059444 !important;border-left-style: solid !important;border-right-color: #059444 !important;border-right-style: solid !important;border-top-color: #059444 !important;border-top-style: solid !important;border-bottom-color: #059444 !important;border-bottom-style: solid !important;border-radius: 1px !important;}\"][ultimate_heading main_heading=\"Quisque sed nibh tristique\" heading_tag=\"h3\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;\"]Duis lorem risus, aliquet a auctor a, venenatis in dui. Praesent et eros et risus dapibus placerat hendrerit cursus magna.[/ultimate_heading][/vc_column_inner][/vc_row_inner][/ultimate_carousel][/vc_column][/vc_row][vc_row][vc_column][ultimate_heading main_heading=\"Board Of Directors\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;margin-bottom:35px;\"][/ultimate_heading][vc_row_inner][vc_column_inner width=\"1/3\"][ult_animation_block animation=\"fadeInUp\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][dt_fancy_image image_id=\"3172\" width=\"300\" border_radius=\"1px\" caption=\"off\" css=\".vc_custom_1692278922309{border-top-width: 1px !important;border-right-width: 1px !important;border-bottom-width: 1px !important;border-left-width: 1px !important;border-left-color: #059444 !important;border-left-style: solid !important;border-right-color: #059444 !important;border-right-style: solid !important;border-top-color: #059444 !important;border-top-style: solid !important;border-bottom-color: #059444 !important;border-bottom-style: solid !important;border-radius: 1px !important;}\"][ultimate_heading main_heading=\"Quisque sed nibh tristique\" heading_tag=\"h3\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;\"]\r\n<ul>\r\n 	<li>Duis lorem risus, aliquet a auctor a, venenatis in dui. Praesent et eros et risus dapibus placerat hendrerit cursus magna.</li>\r\n 	<li>Praesent et eros et risus dapibus placerat hendrerit cursus magna.</li>\r\n 	<li>aliquet a auctor a, venenatis in dui.</li>\r\n</ul>\r\n[/ultimate_heading][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/3\"][ult_animation_block animation=\"fadeInDown\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][dt_fancy_image image_id=\"3171\" width=\"300\" border_radius=\"1px\" caption=\"off\" css=\".vc_custom_1692278929158{border-top-width: 1px !important;border-right-width: 1px !important;border-bottom-width: 1px !important;border-left-width: 1px !important;border-left-color: #059444 !important;border-left-style: solid !important;border-right-color: #059444 !important;border-right-style: solid !important;border-top-color: #059444 !important;border-top-style: solid !important;border-bottom-color: #059444 !important;border-bottom-style: solid !important;border-radius: 1px !important;}\"][ultimate_heading main_heading=\"Quisque sed nibh tristique\" heading_tag=\"h3\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;\"]\r\n<ul>\r\n 	<li>Duis lorem risus, aliquet a auctor a, venenatis in dui. Praesent et eros et risus dapibus placerat hendrerit cursus magna.</li>\r\n 	<li>Praesent et eros et risus dapibus placerat hendrerit cursus magna.</li>\r\n 	<li>aliquet a auctor a, venenatis in dui.</li>\r\n</ul>\r\n[/ultimate_heading][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/3\"][ult_animation_block animation=\"fadeInUp\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][dt_fancy_image image_id=\"3170\" width=\"300\" border_radius=\"1px\" caption=\"off\" css=\".vc_custom_1692278936750{border-top-width: 1px !important;border-right-width: 1px !important;border-bottom-width: 1px !important;border-left-width: 1px !important;border-left-color: #059444 !important;border-left-style: solid !important;border-right-color: #059444 !important;border-right-style: solid !important;border-top-color: #059444 !important;border-top-style: solid !important;border-bottom-color: #059444 !important;border-bottom-style: solid !important;border-radius: 1px !important;}\"][ultimate_heading main_heading=\"Quisque sed nibh tristique\" heading_tag=\"h3\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;\"]\r\n<ul>\r\n 	<li>Duis lorem risus, aliquet a auctor a, venenatis in dui. Praesent et eros et risus dapibus placerat hendrerit cursus magna.</li>\r\n 	<li>Praesent et eros et risus dapibus placerat hendrerit cursus magna.</li>\r\n 	<li>aliquet a auctor a, venenatis in dui.</li>\r\n</ul>\r\n[/ultimate_heading][/ult_animation_block][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row][vc_column][ultimate_heading main_heading=\"Executive Directors\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;margin-bottom:35px;\"][/ultimate_heading][vc_row_inner][vc_column_inner width=\"1/5\"][ult_animation_block animation=\"fadeInUp\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][dt_fancy_image image_id=\"3172\" width=\"300\" border_radius=\"1px\" caption=\"off\" css=\".vc_custom_1692278922309{border-top-width: 1px !important;border-right-width: 1px !important;border-bottom-width: 1px !important;border-left-width: 1px !important;border-left-color: #059444 !important;border-left-style: solid !important;border-right-color: #059444 !important;border-right-style: solid !important;border-top-color: #059444 !important;border-top-style: solid !important;border-bottom-color: #059444 !important;border-bottom-style: solid !important;border-radius: 1px !important;}\"][ultimate_heading main_heading=\"Quisque sed nibh tristique\" heading_tag=\"h3\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;\"]\r\n<ul>\r\n 	<li>Duis lorem risus, aliquet a auctor a, venenatis in dui. Praesent et eros et risus dapibus placerat hendrerit cursus magna.</li>\r\n 	<li>Praesent et eros et risus dapibus placerat hendrerit cursus magna.</li>\r\n 	<li>aliquet a auctor a, venenatis in dui.</li>\r\n</ul>\r\n[/ultimate_heading][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/5\"][ult_animation_block animation=\"fadeInDown\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][dt_fancy_image image_id=\"3171\" width=\"300\" border_radius=\"1px\" caption=\"off\" css=\".vc_custom_1692278929158{border-top-width: 1px !important;border-right-width: 1px !important;border-bottom-width: 1px !important;border-left-width: 1px !important;border-left-color: #059444 !important;border-left-style: solid !important;border-right-color: #059444 !important;border-right-style: solid !important;border-top-color: #059444 !important;border-top-style: solid !important;border-bottom-color: #059444 !important;border-bottom-style: solid !important;border-radius: 1px !important;}\"][ultimate_heading main_heading=\"Quisque sed nibh tristique\" heading_tag=\"h3\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;\"]\r\n<ul>\r\n 	<li>Duis lorem risus, aliquet a auctor a, venenatis in dui. Praesent et eros et risus dapibus placerat hendrerit cursus magna.</li>\r\n 	<li>Praesent et eros et risus dapibus placerat hendrerit cursus magna.</li>\r\n 	<li>aliquet a auctor a, venenatis in dui.</li>\r\n</ul>\r\n[/ultimate_heading][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/5\"][ult_animation_block animation=\"fadeInUp\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][dt_fancy_image image_id=\"3170\" width=\"300\" border_radius=\"1px\" caption=\"off\" css=\".vc_custom_1692278936750{border-top-width: 1px !important;border-right-width: 1px !important;border-bottom-width: 1px !important;border-left-width: 1px !important;border-left-color: #059444 !important;border-left-style: solid !important;border-right-color: #059444 !important;border-right-style: solid !important;border-top-color: #059444 !important;border-top-style: solid !important;border-bottom-color: #059444 !important;border-bottom-style: solid !important;border-radius: 1px !important;}\"][ultimate_heading main_heading=\"Quisque sed nibh tristique\" heading_tag=\"h3\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;\"]\r\n<ul>\r\n 	<li>Duis lorem risus, aliquet a auctor a, venenatis in dui. Praesent et eros et risus dapibus placerat hendrerit cursus magna.</li>\r\n 	<li>Praesent et eros et risus dapibus placerat hendrerit cursus magna.</li>\r\n 	<li>aliquet a auctor a, venenatis in dui.</li>\r\n</ul>\r\n[/ultimate_heading][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/5\"][ult_animation_block animation=\"fadeInDown\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][dt_fancy_image image_id=\"3170\" width=\"300\" border_radius=\"1px\" caption=\"off\" css=\".vc_custom_1692278936750{border-top-width: 1px !important;border-right-width: 1px !important;border-bottom-width: 1px !important;border-left-width: 1px !important;border-left-color: #059444 !important;border-left-style: solid !important;border-right-color: #059444 !important;border-right-style: solid !important;border-top-color: #059444 !important;border-top-style: solid !important;border-bottom-color: #059444 !important;border-bottom-style: solid !important;border-radius: 1px !important;}\"][ultimate_heading main_heading=\"Quisque sed nibh tristique\" heading_tag=\"h3\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;\"]\r\n<ul>\r\n 	<li>Duis lorem risus, aliquet a auctor a, venenatis in dui. Praesent et eros et risus dapibus placerat hendrerit cursus magna.</li>\r\n 	<li>Praesent et eros et risus dapibus placerat hendrerit cursus magna.</li>\r\n 	<li>aliquet a auctor a, venenatis in dui.</li>\r\n</ul>\r\n[/ultimate_heading][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/5\"][ult_animation_block animation=\"fadeInDown\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][dt_fancy_image image_id=\"3171\" width=\"300\" border_radius=\"1px\" caption=\"off\" css=\".vc_custom_1692278929158{border-top-width: 1px !important;border-right-width: 1px !important;border-bottom-width: 1px !important;border-left-width: 1px !important;border-left-color: #059444 !important;border-left-style: solid !important;border-right-color: #059444 !important;border-right-style: solid !important;border-top-color: #059444 !important;border-top-style: solid !important;border-bottom-color: #059444 !important;border-bottom-style: solid !important;border-radius: 1px !important;}\"][ultimate_heading main_heading=\"Quisque sed nibh tristique\" heading_tag=\"h3\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;\"]\r\n<ul>\r\n 	<li>Duis lorem risus, aliquet a auctor a, venenatis in dui. Praesent et eros et risus dapibus placerat hendrerit cursus magna.</li>\r\n 	<li>Praesent et eros et risus dapibus placerat hendrerit cursus magna.</li>\r\n 	<li>aliquet a auctor a, venenatis in dui.</li>\r\n</ul>\r\n[/ultimate_heading][/ult_animation_block][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner width=\"2/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row][vc_column][ultimate_heading main_heading=\"Next Generation\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;margin-bottom:35px;\"][/ultimate_heading][vc_row_inner][vc_column_inner width=\"1/2\"][ult_animation_block animation=\"fadeInUp\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][dt_fancy_image image_id=\"3172\" width=\"300\" border_radius=\"1px\" caption=\"off\" css=\".vc_custom_1692278922309{border-top-width: 1px !important;border-right-width: 1px !important;border-bottom-width: 1px !important;border-left-width: 1px !important;border-left-color: #059444 !important;border-left-style: solid !important;border-right-color: #059444 !important;border-right-style: solid !important;border-top-color: #059444 !important;border-top-style: solid !important;border-bottom-color: #059444 !important;border-bottom-style: solid !important;border-radius: 1px !important;}\"][ultimate_heading main_heading=\"Quisque sed nibh tristique\" heading_tag=\"h3\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;\"]\r\n<ul>\r\n 	<li>Duis lorem risus, aliquet a auctor a, venenatis in dui. Praesent et eros et risus dapibus placerat hendrerit cursus magna.</li>\r\n 	<li>Praesent et eros et risus dapibus placerat hendrerit cursus magna.</li>\r\n 	<li>aliquet a auctor a, venenatis in dui.</li>\r\n</ul>\r\n[/ultimate_heading][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/2\"][ult_animation_block animation=\"fadeInDown\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][dt_fancy_image image_id=\"3171\" width=\"300\" border_radius=\"1px\" caption=\"off\" css=\".vc_custom_1692278929158{border-top-width: 1px !important;border-right-width: 1px !important;border-bottom-width: 1px !important;border-left-width: 1px !important;border-left-color: #059444 !important;border-left-style: solid !important;border-right-color: #059444 !important;border-right-style: solid !important;border-top-color: #059444 !important;border-top-style: solid !important;border-bottom-color: #059444 !important;border-bottom-style: solid !important;border-radius: 1px !important;}\"][ultimate_heading main_heading=\"Quisque sed nibh tristique\" heading_tag=\"h3\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;\"]\r\n<ul>\r\n 	<li>Duis lorem risus, aliquet a auctor a, venenatis in dui. Praesent et eros et risus dapibus placerat hendrerit cursus magna.</li>\r\n 	<li>Praesent et eros et risus dapibus placerat hendrerit cursus magna.</li>\r\n 	<li>aliquet a auctor a, venenatis in dui.</li>\r\n</ul>\r\n[/ultimate_heading][/ult_animation_block][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row]','About us','','inherit','closed','closed','','2917-revision-v1','','','2023-08-18 12:13:11','2023-08-18 12:13:11','',2917,'https://farmchemie.yasithawd.com/?p=3255',0,'revision','',0);
INSERT INTO `wplf_posts` VALUES (3256,1,'2023-08-18 13:41:00','2023-08-18 13:41:00','','Vision-&-Mission','','inherit','open','closed','','vision-mission','','','2023-08-18 13:41:00','2023-08-18 13:41:00','',2917,'https://farmchemie.yasithawd.com/wp-content/uploads/2023/08/Vision-Mission.png',0,'attachment','image/png',0),(3257,1,'2023-08-18 13:41:24','2023-08-18 13:41:24','[vc_row full_width=\"stretch_row_content_no_spaces\"][vc_column][ultimate_heading main_heading=\"Our History\" main_heading_color=\"#762888\"][/ultimate_heading][/vc_column][/vc_row][vc_row][vc_column][vc_row_inner equal_height=\"yes\" content_placement=\"middle\" css=\".vc_custom_1692359205466{margin-top: 35px !important;}\"][vc_column_inner width=\"1/2\"][ult_animation_block animation=\"fadeInLeftBig\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][vc_single_image image=\"3106\" img_size=\"full\" style=\"vc_box_border_circle_2\"][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/2\"][ult_animation_block animation=\"fadeInRightBig\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][ultimate_heading main_heading=\"Founded in 2002\" heading_tag=\"h3\" main_heading_color=\"#039447\" alignment=\"left\" sub_heading_font_size=\"desktop:18px;\"]Founded in 2002 by Mr. Uditha Wanigasinghe, an agriculturist who had a mission to aid valuable livestock producers in the country to enhance the yield and profitability of production. FARMCHEMIE introduced unprecedented solutions and consistent technical services to gain our customers’ trust and became the market leader in animal health products in 2006 within just four years.[/ultimate_heading][/ult_animation_block][/vc_column_inner][/vc_row_inner][vc_row_inner equal_height=\"yes\" rtl_reverse=\"yes\" content_placement=\"middle\" css=\".vc_custom_1692359216075{margin-top: 35px !important;}\"][vc_column_inner width=\"1/2\"][ult_animation_block animation=\"fadeInLeftBig\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][ultimate_heading main_heading=\"2006\" heading_tag=\"h3\" main_heading_color=\"#039447\" alignment=\"left\"]In 2006, the Sri Lankan poultry industry was affected with Avian Influenza which became a difficult period for the growth of FARMCHEMIE. This was the key factor in our decision to diversify into Agro Products. PLANTCHEM &amp; PLANTSEEDS were established to offer solutions in Agro specialty fertilizers, pesticides and seeds to invaluable cultivators.[/ultimate_heading][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/2\"][ult_animation_block animation=\"fadeInRightBig\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][vc_single_image image=\"3107\" img_size=\"full\" style=\"vc_box_border_circle_2\"][/ult_animation_block][/vc_column_inner][/vc_row_inner][vc_row_inner equal_height=\"yes\" content_placement=\"middle\" css=\".vc_custom_1692359231594{margin-top: 35px !important;}\"][vc_column_inner width=\"1/2\"][ult_animation_block animation=\"fadeInLeftBig\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][vc_single_image image=\"3108\" img_size=\"full\" style=\"vc_box_border_circle_2\"][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/2\"][ult_animation_block animation=\"fadeInRightBig\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][ultimate_heading main_heading=\"2010\" heading_tag=\"h3\" main_heading_color=\"#039447\" alignment=\"left\"]In 2010, FEED CHEMIE became the subsequent addition to ever-growing vision of Mr. Uditha Wanigasinghe and entered the Animal Feed Additives market.[/ultimate_heading][/ult_animation_block][/vc_column_inner][/vc_row_inner][vc_row_inner equal_height=\"yes\" rtl_reverse=\"yes\" content_placement=\"middle\" css=\".vc_custom_1692359239274{margin-top: 35px !important;}\"][vc_column_inner width=\"1/2\"][ult_animation_block animation=\"fadeInLeftBig\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][ultimate_heading main_heading=\"2012\" heading_tag=\"h3\" main_heading_color=\"#039447\" alignment=\"left\"]The year 2012 is described as a turning point in our journey as FARMCHEMIE established our first production facility for the manufacturing and packing of animal health products. FARMCHEMIE became the first animal health organization in Sri Lanka to obtain ISO 9001:2015 and WHO GMP International Quality Certification. With our own formulation unit, FARMCHEMIE was able to offer customized solutions to cater the needs of the Sri Lankan Livestock Industry.[/ultimate_heading][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/2\"][ult_animation_block animation=\"fadeInRightBig\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][vc_single_image image=\"3111\" img_size=\"full\" style=\"vc_box_border_circle_2\"][/ult_animation_block][/vc_column_inner][/vc_row_inner][vc_row_inner content_placement=\"middle\" css=\".vc_custom_1692359246626{margin-top: 35px !important;}\"][vc_column_inner width=\"1/2\"][ult_animation_block animation=\"fadeInLeftBig\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][vc_single_image image=\"3112\" img_size=\"full\" style=\"vc_box_border_circle_2\"][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/2\"][ult_animation_block animation=\"fadeInRightBig\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][ultimate_heading main_heading=\"2016\" heading_tag=\"h3\" main_heading_color=\"#039447\" alignment=\"left\"]The year 2016 was another key milestone with the entry to the International Markets. FARMCHEMIE exported our first Feed Premix consignment to India and in 2018 our export operation was distinctly established as FARMCHEMIE MANUFACTURERS, a Board of Investment (BOI) approved entity.[/ultimate_heading][/ult_animation_block][/vc_column_inner][/vc_row_inner][vc_row_inner equal_height=\"yes\" css=\".vc_custom_1692359252258{margin-top: 35px !important;}\"][vc_column_inner width=\"1/2\"][ult_animation_block animation=\"fadeInLeftBig\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][ultimate_heading main_heading=\"Fully automated manufacturing\" heading_tag=\"h3\" main_heading_color=\"#039447\" alignment=\"left\"]FARMCHEMIE MANUFACTURERS has invested in fully automated manufacturing facility from Bühler and became the first Sri Lankan owned company to obtain FAMI-QS International Quality Certification.[/ultimate_heading][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/2\"][ult_animation_block animation=\"fadeInRightBig\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][vc_single_image image=\"3110\" img_size=\"full\" style=\"vc_box_border_circle_2\"][/ult_animation_block][/vc_column_inner][/vc_row_inner][vc_row_inner equal_height=\"yes\" content_placement=\"middle\" css=\".vc_custom_1692359258634{margin-top: 35px !important;}\"][vc_column_inner width=\"1/2\"][ult_animation_block animation=\"fadeInLeftBig\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][vc_single_image image=\"3116\" img_size=\"full\" style=\"vc_box_border_circle_2\"][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/2\"][ultimate_heading main_heading=\"Official toll manufacturer partner\" heading_tag=\"h3\" main_heading_color=\"#039447\" alignment=\"left\"]With the trust and reputation built as a reliable manufacturer of animal feed additives and supplements in the global market, several world-renowned international brands have appointed FARMCHEMIE MANUFACTURERS as the official toll manufacturer partner. FARMCHEMIE MANUFACTURERS exports a wide range of products consisting of premixes, specialty feed additives, oral liquid supplements and pet supplements to various markets in South Asia, East Asia, Middle East and Africa.\r\n\r\nFARMCHEMIE, FEED CHEMIE &amp; FARMCHEMIE MANUFACTURERS currently operate under the ownership of our holding company, DYVESTA.\r\n\r\nDYEVSTA has become the pinnacle of Animal Nutrition and Health.\r\n\r\nDYVESTA is Dynamic, through our continuous evolution, growth and progress. DYVESTA is Diverse, in terms of both our business strategy and our community. DYVESTA is Devoted to our valuable business partners through exceptional service.[/ultimate_heading][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row full_width=\"stretch_row\" equal_height=\"yes\" bg_type=\"image\" parallax_style=\"vcpb-vz-jquery\" bg_image_new=\"id^3256|url^https://farmchemie.yasithawd.com/wp-content/uploads/2023/08/Vision-Mission.png|caption^null|alt^null|title^Vision-&amp;-Mission|description^null\" bg_image_repeat=\"no-repeat\" enable_overlay=\"enable_overlay_value\" overlay_color=\"#000000\" overlay_pattern=\"01.png\" overlay_pattern_opacity=\"5\" css=\".vc_custom_1692366072362{margin-top: 35px !important;padding-top: 65px !important;padding-bottom: 100px !important;}\"][vc_column][vc_row_inner equal_height=\"yes\"][vc_column_inner width=\"1/2\"][ult_animation_block animation=\"fadeInLeftBig\" animation_duration=\"2\" animation_delay=\"0\" animation_iteration_count=\"1\"][ultimate_heading main_heading=\"Vision\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\"]To be the customers’ first and best choice by ensuring outstanding satisfaction through a well-trained and dedicated team. Prompt and quality solutions to our customers’ requirements will determine the increase of return on investment for us.[/ultimate_heading][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/2\"][ult_animation_block animation=\"fadeInRightBig\" animation_duration=\"2\" animation_delay=\"0\" animation_iteration_count=\"1\"][ultimate_heading main_heading=\"Mission\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\"]To become a world renowned manufacturer of Animal Health products and a trusted partner among our stakeholders for our integrity as well as for providing effective solutions[/ultimate_heading][/ult_animation_block][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row css=\".vc_custom_1684836308288{margin-top: 15px !important;}\"][vc_column][ultimate_heading main_heading=\"Achievements\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;\"][/ultimate_heading][vc_row_inner gap=\"20\"][vc_column_inner width=\"1/2\" css=\".vc_custom_1691995519863{background-color: #f4ab20 !important;border: 1px solid #f4ab20 !important;border-radius: 35px !important;}\"][bsf-info-box icon_type=\"custom\" icon_img=\"id^3117|url^https://farmchemie.yasithawd.com/wp-content/uploads/2023/08/Pink_-H.png|caption^null|alt^null|title^Pink_-H|description^null\" img_width=\"60\" icon_style=\"advanced\" icon_border_style=\"solid\" icon_color_border=\"#ffffff\" icon_border_size=\"1\" icon_border_radius=\"500\" icon_border_spacing=\"1\" title=\"First Free Sale Certificate obtained from Veterinary Drug Control Authority (VDCA) for Veterinary Pharmaceuticals\" title_font_style=\"font-weight:bold;\" title_font_size=\"desktop:20px;\"][/bsf-info-box][/vc_column_inner][vc_column_inner width=\"1/2\" css=\".vc_custom_1691995661095{background-color: #722f8b !important;border: 1px solid #722f8b !important;border-radius: 35px !important;}\"][bsf-info-box icon_type=\"custom\" icon_img=\"id^3117|url^https://farmchemie.yasithawd.com/wp-content/uploads/2023/08/Pink_-H.png|caption^null|alt^null|title^Pink_-H|description^null\" img_width=\"60\" icon_style=\"advanced\" icon_border_style=\"solid\" icon_color_border=\"#ffffff\" icon_border_size=\"1\" icon_border_radius=\"500\" icon_border_spacing=\"1\" title=\"First ISO 9001: 2015 ,WHO-GMP Quality Management systems certified Animal Health company in Sri Lanka since August, 2012\" title_font_style=\"font-weight:bold;\" title_font_color=\"#ffffff\" title_font_size=\"desktop:20px;\"][/bsf-info-box][/vc_column_inner][/vc_row_inner][vc_row_inner gap=\"20\"][vc_column_inner width=\"1/2\" css=\".vc_custom_1691995661095{background-color: #722f8b !important;border: 1px solid #722f8b !important;border-radius: 35px !important;}\"][bsf-info-box icon_type=\"custom\" icon_img=\"id^3117|url^https://farmchemie.yasithawd.com/wp-content/uploads/2023/08/Pink_-H.png|caption^null|alt^null|title^Pink_-H|description^null\" img_width=\"60\" icon_style=\"advanced\" icon_border_style=\"solid\" icon_color_border=\"#ffffff\" icon_border_size=\"1\" icon_border_radius=\"500\" icon_border_spacing=\"1\" title=\"First FAMI-QS certified company in sri lanka\" title_font_style=\"font-weight:bold;\" title_font_color=\"#ffffff\" title_font_size=\"desktop:20px;\"][/bsf-info-box][/vc_column_inner][vc_column_inner width=\"1/2\" css=\".vc_custom_1691995519863{background-color: #f4ab20 !important;border: 1px solid #f4ab20 !important;border-radius: 35px !important;}\"][bsf-info-box icon_type=\"custom\" icon_img=\"id^3117|url^https://farmchemie.yasithawd.com/wp-content/uploads/2023/08/Pink_-H.png|caption^null|alt^null|title^Pink_-H|description^null\" img_width=\"60\" icon_style=\"advanced\" icon_border_style=\"solid\" icon_color_border=\"#ffffff\" icon_border_size=\"1\" icon_border_radius=\"500\" icon_border_spacing=\"1\" title=\"First Certificate of Ethical Trading certified in Livestock industry\" title_font_style=\"font-weight:bold;\" title_font_size=\"desktop:20px;\"][/bsf-info-box][/vc_column_inner][/vc_row_inner][vc_row_inner gap=\"20\"][vc_column_inner width=\"1/4\" css=\".vc_custom_1691996718116{border-radius: 35px !important;}\"][/vc_column_inner][vc_column_inner width=\"2/4\" css=\".vc_custom_1691995519863{background-color: #f4ab20 !important;border: 1px solid #f4ab20 !important;border-radius: 35px !important;}\"][bsf-info-box icon_type=\"custom\" icon_img=\"id^3117|url^https://farmchemie.yasithawd.com/wp-content/uploads/2023/08/Pink_-H.png|caption^null|alt^null|title^Pink_-H|description^null\" img_width=\"60\" icon_style=\"advanced\" icon_border_style=\"solid\" icon_color_border=\"#ffffff\" icon_border_size=\"1\" icon_border_radius=\"500\" icon_border_spacing=\"1\" title=\"First Silver awarded company at National Exports Awards in Livestock industry\" title_font_style=\"font-weight:bold;\" title_font_size=\"desktop:20px;\"][/bsf-info-box][/vc_column_inner][vc_column_inner width=\"1/4\"][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner width=\"1/6\"][/vc_column_inner][vc_column_inner width=\"2/3\"][vc_single_image image=\"3126\" img_size=\"full\" alignment=\"center\"][vc_single_image image=\"3125\" img_size=\"full\" alignment=\"center\"][/vc_column_inner][vc_column_inner width=\"1/6\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row][vc_column][ultimate_heading main_heading=\"Board Of Directors\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;margin-bottom:35px;\"][/ultimate_heading][ultimate_carousel slides_on_desk=\"3\" slides_on_mob=\"1\" arrow_style=\"square-bg\" arrow_bg_color=\"#039447\" arrow_color=\"#ffffff\" next_icon=\"ultsl-arrow-right6\" prev_icon=\"ultsl-arrow-left6\" dots_color=\"#039447\" item_animation=\"fadeIn\"][vc_row_inner][vc_column_inner][dt_fancy_image image_id=\"3170\" width=\"300\" border_radius=\"1px\" caption=\"off\" css=\".vc_custom_1692278936750{border-top-width: 1px !important;border-right-width: 1px !important;border-bottom-width: 1px !important;border-left-width: 1px !important;border-left-color: #059444 !important;border-left-style: solid !important;border-right-color: #059444 !important;border-right-style: solid !important;border-top-color: #059444 !important;border-top-style: solid !important;border-bottom-color: #059444 !important;border-bottom-style: solid !important;border-radius: 1px !important;}\"][ultimate_heading main_heading=\"Quisque sed nibh tristique\" heading_tag=\"h3\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;\"]Duis lorem risus, aliquet a auctor a, venenatis in dui. Praesent et eros et risus dapibus placerat hendrerit cursus magna.[/ultimate_heading][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner][dt_fancy_image image_id=\"3170\" width=\"300\" border_radius=\"1px\" caption=\"off\" css=\".vc_custom_1692278936750{border-top-width: 1px !important;border-right-width: 1px !important;border-bottom-width: 1px !important;border-left-width: 1px !important;border-left-color: #059444 !important;border-left-style: solid !important;border-right-color: #059444 !important;border-right-style: solid !important;border-top-color: #059444 !important;border-top-style: solid !important;border-bottom-color: #059444 !important;border-bottom-style: solid !important;border-radius: 1px !important;}\"][ultimate_heading main_heading=\"Quisque sed nibh tristique\" heading_tag=\"h3\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;\"]Duis lorem risus, aliquet a auctor a, venenatis in dui. Praesent et eros et risus dapibus placerat hendrerit cursus magna.[/ultimate_heading][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner][dt_fancy_image image_id=\"3171\" width=\"300\" border_radius=\"1px\" caption=\"off\" css=\".vc_custom_1692278929158{border-top-width: 1px !important;border-right-width: 1px !important;border-bottom-width: 1px !important;border-left-width: 1px !important;border-left-color: #059444 !important;border-left-style: solid !important;border-right-color: #059444 !important;border-right-style: solid !important;border-top-color: #059444 !important;border-top-style: solid !important;border-bottom-color: #059444 !important;border-bottom-style: solid !important;border-radius: 1px !important;}\"][ultimate_heading main_heading=\"Quisque sed nibh tristique\" heading_tag=\"h3\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;\"]Duis lorem risus, aliquet a auctor a, venenatis in dui. Praesent et eros et risus dapibus placerat hendrerit cursus magna.[/ultimate_heading][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner][dt_fancy_image image_id=\"3172\" width=\"300\" border_radius=\"1px\" caption=\"off\" css=\".vc_custom_1692278922309{border-top-width: 1px !important;border-right-width: 1px !important;border-bottom-width: 1px !important;border-left-width: 1px !important;border-left-color: #059444 !important;border-left-style: solid !important;border-right-color: #059444 !important;border-right-style: solid !important;border-top-color: #059444 !important;border-top-style: solid !important;border-bottom-color: #059444 !important;border-bottom-style: solid !important;border-radius: 1px !important;}\"][ultimate_heading main_heading=\"Quisque sed nibh tristique\" heading_tag=\"h3\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;\"]Duis lorem risus, aliquet a auctor a, venenatis in dui. Praesent et eros et risus dapibus placerat hendrerit cursus magna.[/ultimate_heading][/vc_column_inner][/vc_row_inner][/ultimate_carousel][/vc_column][/vc_row][vc_row][vc_column][ultimate_heading main_heading=\"Board Of Directors\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;margin-bottom:35px;\"][/ultimate_heading][vc_row_inner][vc_column_inner width=\"1/3\"][ult_animation_block animation=\"fadeInUp\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][dt_fancy_image image_id=\"3172\" width=\"300\" border_radius=\"1px\" caption=\"off\" css=\".vc_custom_1692278922309{border-top-width: 1px !important;border-right-width: 1px !important;border-bottom-width: 1px !important;border-left-width: 1px !important;border-left-color: #059444 !important;border-left-style: solid !important;border-right-color: #059444 !important;border-right-style: solid !important;border-top-color: #059444 !important;border-top-style: solid !important;border-bottom-color: #059444 !important;border-bottom-style: solid !important;border-radius: 1px !important;}\"][ultimate_heading main_heading=\"Quisque sed nibh tristique\" heading_tag=\"h3\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;\"]\r\n<ul>\r\n 	<li>Duis lorem risus, aliquet a auctor a, venenatis in dui. Praesent et eros et risus dapibus placerat hendrerit cursus magna.</li>\r\n 	<li>Praesent et eros et risus dapibus placerat hendrerit cursus magna.</li>\r\n 	<li>aliquet a auctor a, venenatis in dui.</li>\r\n</ul>\r\n[/ultimate_heading][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/3\"][ult_animation_block animation=\"fadeInDown\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][dt_fancy_image image_id=\"3171\" width=\"300\" border_radius=\"1px\" caption=\"off\" css=\".vc_custom_1692278929158{border-top-width: 1px !important;border-right-width: 1px !important;border-bottom-width: 1px !important;border-left-width: 1px !important;border-left-color: #059444 !important;border-left-style: solid !important;border-right-color: #059444 !important;border-right-style: solid !important;border-top-color: #059444 !important;border-top-style: solid !important;border-bottom-color: #059444 !important;border-bottom-style: solid !important;border-radius: 1px !important;}\"][ultimate_heading main_heading=\"Quisque sed nibh tristique\" heading_tag=\"h3\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;\"]\r\n<ul>\r\n 	<li>Duis lorem risus, aliquet a auctor a, venenatis in dui. Praesent et eros et risus dapibus placerat hendrerit cursus magna.</li>\r\n 	<li>Praesent et eros et risus dapibus placerat hendrerit cursus magna.</li>\r\n 	<li>aliquet a auctor a, venenatis in dui.</li>\r\n</ul>\r\n[/ultimate_heading][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/3\"][ult_animation_block animation=\"fadeInUp\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][dt_fancy_image image_id=\"3170\" width=\"300\" border_radius=\"1px\" caption=\"off\" css=\".vc_custom_1692278936750{border-top-width: 1px !important;border-right-width: 1px !important;border-bottom-width: 1px !important;border-left-width: 1px !important;border-left-color: #059444 !important;border-left-style: solid !important;border-right-color: #059444 !important;border-right-style: solid !important;border-top-color: #059444 !important;border-top-style: solid !important;border-bottom-color: #059444 !important;border-bottom-style: solid !important;border-radius: 1px !important;}\"][ultimate_heading main_heading=\"Quisque sed nibh tristique\" heading_tag=\"h3\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;\"]\r\n<ul>\r\n 	<li>Duis lorem risus, aliquet a auctor a, venenatis in dui. Praesent et eros et risus dapibus placerat hendrerit cursus magna.</li>\r\n 	<li>Praesent et eros et risus dapibus placerat hendrerit cursus magna.</li>\r\n 	<li>aliquet a auctor a, venenatis in dui.</li>\r\n</ul>\r\n[/ultimate_heading][/ult_animation_block][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row][vc_column][ultimate_heading main_heading=\"Executive Directors\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;margin-bottom:35px;\"][/ultimate_heading][vc_row_inner][vc_column_inner width=\"1/5\"][ult_animation_block animation=\"fadeInUp\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][dt_fancy_image image_id=\"3172\" width=\"300\" border_radius=\"1px\" caption=\"off\" css=\".vc_custom_1692278922309{border-top-width: 1px !important;border-right-width: 1px !important;border-bottom-width: 1px !important;border-left-width: 1px !important;border-left-color: #059444 !important;border-left-style: solid !important;border-right-color: #059444 !important;border-right-style: solid !important;border-top-color: #059444 !important;border-top-style: solid !important;border-bottom-color: #059444 !important;border-bottom-style: solid !important;border-radius: 1px !important;}\"][ultimate_heading main_heading=\"Quisque sed nibh tristique\" heading_tag=\"h3\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;\"]\r\n<ul>\r\n 	<li>Duis lorem risus, aliquet a auctor a, venenatis in dui. Praesent et eros et risus dapibus placerat hendrerit cursus magna.</li>\r\n 	<li>Praesent et eros et risus dapibus placerat hendrerit cursus magna.</li>\r\n 	<li>aliquet a auctor a, venenatis in dui.</li>\r\n</ul>\r\n[/ultimate_heading][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/5\"][ult_animation_block animation=\"fadeInDown\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][dt_fancy_image image_id=\"3171\" width=\"300\" border_radius=\"1px\" caption=\"off\" css=\".vc_custom_1692278929158{border-top-width: 1px !important;border-right-width: 1px !important;border-bottom-width: 1px !important;border-left-width: 1px !important;border-left-color: #059444 !important;border-left-style: solid !important;border-right-color: #059444 !important;border-right-style: solid !important;border-top-color: #059444 !important;border-top-style: solid !important;border-bottom-color: #059444 !important;border-bottom-style: solid !important;border-radius: 1px !important;}\"][ultimate_heading main_heading=\"Quisque sed nibh tristique\" heading_tag=\"h3\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;\"]\r\n<ul>\r\n 	<li>Duis lorem risus, aliquet a auctor a, venenatis in dui. Praesent et eros et risus dapibus placerat hendrerit cursus magna.</li>\r\n 	<li>Praesent et eros et risus dapibus placerat hendrerit cursus magna.</li>\r\n 	<li>aliquet a auctor a, venenatis in dui.</li>\r\n</ul>\r\n[/ultimate_heading][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/5\"][ult_animation_block animation=\"fadeInUp\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][dt_fancy_image image_id=\"3170\" width=\"300\" border_radius=\"1px\" caption=\"off\" css=\".vc_custom_1692278936750{border-top-width: 1px !important;border-right-width: 1px !important;border-bottom-width: 1px !important;border-left-width: 1px !important;border-left-color: #059444 !important;border-left-style: solid !important;border-right-color: #059444 !important;border-right-style: solid !important;border-top-color: #059444 !important;border-top-style: solid !important;border-bottom-color: #059444 !important;border-bottom-style: solid !important;border-radius: 1px !important;}\"][ultimate_heading main_heading=\"Quisque sed nibh tristique\" heading_tag=\"h3\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;\"]\r\n<ul>\r\n 	<li>Duis lorem risus, aliquet a auctor a, venenatis in dui. Praesent et eros et risus dapibus placerat hendrerit cursus magna.</li>\r\n 	<li>Praesent et eros et risus dapibus placerat hendrerit cursus magna.</li>\r\n 	<li>aliquet a auctor a, venenatis in dui.</li>\r\n</ul>\r\n[/ultimate_heading][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/5\"][ult_animation_block animation=\"fadeInDown\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][dt_fancy_image image_id=\"3170\" width=\"300\" border_radius=\"1px\" caption=\"off\" css=\".vc_custom_1692278936750{border-top-width: 1px !important;border-right-width: 1px !important;border-bottom-width: 1px !important;border-left-width: 1px !important;border-left-color: #059444 !important;border-left-style: solid !important;border-right-color: #059444 !important;border-right-style: solid !important;border-top-color: #059444 !important;border-top-style: solid !important;border-bottom-color: #059444 !important;border-bottom-style: solid !important;border-radius: 1px !important;}\"][ultimate_heading main_heading=\"Quisque sed nibh tristique\" heading_tag=\"h3\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;\"]\r\n<ul>\r\n 	<li>Duis lorem risus, aliquet a auctor a, venenatis in dui. Praesent et eros et risus dapibus placerat hendrerit cursus magna.</li>\r\n 	<li>Praesent et eros et risus dapibus placerat hendrerit cursus magna.</li>\r\n 	<li>aliquet a auctor a, venenatis in dui.</li>\r\n</ul>\r\n[/ultimate_heading][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/5\"][ult_animation_block animation=\"fadeInDown\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][dt_fancy_image image_id=\"3171\" width=\"300\" border_radius=\"1px\" caption=\"off\" css=\".vc_custom_1692278929158{border-top-width: 1px !important;border-right-width: 1px !important;border-bottom-width: 1px !important;border-left-width: 1px !important;border-left-color: #059444 !important;border-left-style: solid !important;border-right-color: #059444 !important;border-right-style: solid !important;border-top-color: #059444 !important;border-top-style: solid !important;border-bottom-color: #059444 !important;border-bottom-style: solid !important;border-radius: 1px !important;}\"][ultimate_heading main_heading=\"Quisque sed nibh tristique\" heading_tag=\"h3\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;\"]\r\n<ul>\r\n 	<li>Duis lorem risus, aliquet a auctor a, venenatis in dui. Praesent et eros et risus dapibus placerat hendrerit cursus magna.</li>\r\n 	<li>Praesent et eros et risus dapibus placerat hendrerit cursus magna.</li>\r\n 	<li>aliquet a auctor a, venenatis in dui.</li>\r\n</ul>\r\n[/ultimate_heading][/ult_animation_block][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner width=\"2/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row][vc_column][ultimate_heading main_heading=\"Next Generation\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;margin-bottom:35px;\"][/ultimate_heading][vc_row_inner][vc_column_inner width=\"1/2\"][ult_animation_block animation=\"fadeInUp\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][dt_fancy_image image_id=\"3172\" width=\"300\" border_radius=\"1px\" caption=\"off\" css=\".vc_custom_1692278922309{border-top-width: 1px !important;border-right-width: 1px !important;border-bottom-width: 1px !important;border-left-width: 1px !important;border-left-color: #059444 !important;border-left-style: solid !important;border-right-color: #059444 !important;border-right-style: solid !important;border-top-color: #059444 !important;border-top-style: solid !important;border-bottom-color: #059444 !important;border-bottom-style: solid !important;border-radius: 1px !important;}\"][ultimate_heading main_heading=\"Quisque sed nibh tristique\" heading_tag=\"h3\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;\"]\r\n<ul>\r\n 	<li>Duis lorem risus, aliquet a auctor a, venenatis in dui. Praesent et eros et risus dapibus placerat hendrerit cursus magna.</li>\r\n 	<li>Praesent et eros et risus dapibus placerat hendrerit cursus magna.</li>\r\n 	<li>aliquet a auctor a, venenatis in dui.</li>\r\n</ul>\r\n[/ultimate_heading][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/2\"][ult_animation_block animation=\"fadeInDown\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][dt_fancy_image image_id=\"3171\" width=\"300\" border_radius=\"1px\" caption=\"off\" css=\".vc_custom_1692278929158{border-top-width: 1px !important;border-right-width: 1px !important;border-bottom-width: 1px !important;border-left-width: 1px !important;border-left-color: #059444 !important;border-left-style: solid !important;border-right-color: #059444 !important;border-right-style: solid !important;border-top-color: #059444 !important;border-top-style: solid !important;border-bottom-color: #059444 !important;border-bottom-style: solid !important;border-radius: 1px !important;}\"][ultimate_heading main_heading=\"Quisque sed nibh tristique\" heading_tag=\"h3\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;\"]\r\n<ul>\r\n 	<li>Duis lorem risus, aliquet a auctor a, venenatis in dui. Praesent et eros et risus dapibus placerat hendrerit cursus magna.</li>\r\n 	<li>Praesent et eros et risus dapibus placerat hendrerit cursus magna.</li>\r\n 	<li>aliquet a auctor a, venenatis in dui.</li>\r\n</ul>\r\n[/ultimate_heading][/ult_animation_block][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row]','About us','','inherit','closed','closed','','2917-revision-v1','','','2023-08-18 13:41:24','2023-08-18 13:41:24','',2917,'https://farmchemie.yasithawd.com/?p=3257',0,'revision','',0),(3258,1,'2023-08-18 13:43:38','2023-08-18 13:43:38','[vc_row full_width=\"stretch_row_content_no_spaces\"][vc_column][ultimate_heading main_heading=\"Our History\" main_heading_color=\"#762888\"][/ultimate_heading][/vc_column][/vc_row][vc_row][vc_column][vc_row_inner equal_height=\"yes\" content_placement=\"middle\" css=\".vc_custom_1692359205466{margin-top: 35px !important;}\"][vc_column_inner width=\"1/2\"][ult_animation_block animation=\"fadeInLeftBig\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][vc_single_image image=\"3106\" img_size=\"full\" style=\"vc_box_rounded\"][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/2\"][ult_animation_block animation=\"fadeInRightBig\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][ultimate_heading main_heading=\"Founded in 2002\" heading_tag=\"h3\" main_heading_color=\"#039447\" alignment=\"left\" sub_heading_font_size=\"desktop:18px;\"]Founded in 2002 by Mr. Uditha Wanigasinghe, an agriculturist who had a mission to aid valuable livestock producers in the country to enhance the yield and profitability of production. FARMCHEMIE introduced unprecedented solutions and consistent technical services to gain our customers’ trust and became the market leader in animal health products in 2006 within just four years.[/ultimate_heading][/ult_animation_block][/vc_column_inner][/vc_row_inner][vc_row_inner equal_height=\"yes\" rtl_reverse=\"yes\" content_placement=\"middle\" css=\".vc_custom_1692359216075{margin-top: 35px !important;}\"][vc_column_inner width=\"1/2\"][ult_animation_block animation=\"fadeInLeftBig\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][ultimate_heading main_heading=\"2006\" heading_tag=\"h3\" main_heading_color=\"#039447\" alignment=\"left\"]In 2006, the Sri Lankan poultry industry was affected with Avian Influenza which became a difficult period for the growth of FARMCHEMIE. This was the key factor in our decision to diversify into Agro Products. PLANTCHEM &amp; PLANTSEEDS were established to offer solutions in Agro specialty fertilizers, pesticides and seeds to invaluable cultivators.[/ultimate_heading][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/2\"][ult_animation_block animation=\"fadeInRightBig\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][vc_single_image image=\"3107\" img_size=\"full\" style=\"vc_box_border_circle_2\"][/ult_animation_block][/vc_column_inner][/vc_row_inner][vc_row_inner equal_height=\"yes\" content_placement=\"middle\" css=\".vc_custom_1692359231594{margin-top: 35px !important;}\"][vc_column_inner width=\"1/2\"][ult_animation_block animation=\"fadeInLeftBig\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][vc_single_image image=\"3108\" img_size=\"full\" style=\"vc_box_border_circle_2\"][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/2\"][ult_animation_block animation=\"fadeInRightBig\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][ultimate_heading main_heading=\"2010\" heading_tag=\"h3\" main_heading_color=\"#039447\" alignment=\"left\"]In 2010, FEED CHEMIE became the subsequent addition to ever-growing vision of Mr. Uditha Wanigasinghe and entered the Animal Feed Additives market.[/ultimate_heading][/ult_animation_block][/vc_column_inner][/vc_row_inner][vc_row_inner equal_height=\"yes\" rtl_reverse=\"yes\" content_placement=\"middle\" css=\".vc_custom_1692359239274{margin-top: 35px !important;}\"][vc_column_inner width=\"1/2\"][ult_animation_block animation=\"fadeInLeftBig\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][ultimate_heading main_heading=\"2012\" heading_tag=\"h3\" main_heading_color=\"#039447\" alignment=\"left\"]The year 2012 is described as a turning point in our journey as FARMCHEMIE established our first production facility for the manufacturing and packing of animal health products. FARMCHEMIE became the first animal health organization in Sri Lanka to obtain ISO 9001:2015 and WHO GMP International Quality Certification. With our own formulation unit, FARMCHEMIE was able to offer customized solutions to cater the needs of the Sri Lankan Livestock Industry.[/ultimate_heading][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/2\"][ult_animation_block animation=\"fadeInRightBig\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][vc_single_image image=\"3111\" img_size=\"full\" style=\"vc_box_border_circle_2\"][/ult_animation_block][/vc_column_inner][/vc_row_inner][vc_row_inner content_placement=\"middle\" css=\".vc_custom_1692359246626{margin-top: 35px !important;}\"][vc_column_inner width=\"1/2\"][ult_animation_block animation=\"fadeInLeftBig\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][vc_single_image image=\"3112\" img_size=\"full\" style=\"vc_box_border_circle_2\"][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/2\"][ult_animation_block animation=\"fadeInRightBig\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][ultimate_heading main_heading=\"2016\" heading_tag=\"h3\" main_heading_color=\"#039447\" alignment=\"left\"]The year 2016 was another key milestone with the entry to the International Markets. FARMCHEMIE exported our first Feed Premix consignment to India and in 2018 our export operation was distinctly established as FARMCHEMIE MANUFACTURERS, a Board of Investment (BOI) approved entity.[/ultimate_heading][/ult_animation_block][/vc_column_inner][/vc_row_inner][vc_row_inner equal_height=\"yes\" css=\".vc_custom_1692359252258{margin-top: 35px !important;}\"][vc_column_inner width=\"1/2\"][ult_animation_block animation=\"fadeInLeftBig\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][ultimate_heading main_heading=\"Fully automated manufacturing\" heading_tag=\"h3\" main_heading_color=\"#039447\" alignment=\"left\"]FARMCHEMIE MANUFACTURERS has invested in fully automated manufacturing facility from Bühler and became the first Sri Lankan owned company to obtain FAMI-QS International Quality Certification.[/ultimate_heading][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/2\"][ult_animation_block animation=\"fadeInRightBig\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][vc_single_image image=\"3110\" img_size=\"full\" style=\"vc_box_border_circle_2\"][/ult_animation_block][/vc_column_inner][/vc_row_inner][vc_row_inner equal_height=\"yes\" content_placement=\"middle\" css=\".vc_custom_1692359258634{margin-top: 35px !important;}\"][vc_column_inner width=\"1/2\"][ult_animation_block animation=\"fadeInLeftBig\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][vc_single_image image=\"3116\" img_size=\"full\" style=\"vc_box_border_circle_2\"][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/2\"][ult_animation_block animation=\"fadeInRightBig\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][ultimate_heading main_heading=\"Official toll manufacturer partner\" heading_tag=\"h3\" main_heading_color=\"#039447\" alignment=\"left\"]With the trust and reputation built as a reliable manufacturer of animal feed additives and supplements in the global market, several world-renowned international brands have appointed FARMCHEMIE MANUFACTURERS as the official toll manufacturer partner. FARMCHEMIE MANUFACTURERS exports a wide range of products consisting of premixes, specialty feed additives, oral liquid supplements and pet supplements to various markets in South Asia, East Asia, Middle East and Africa.\r\n\r\nFARMCHEMIE, FEED CHEMIE &amp; FARMCHEMIE MANUFACTURERS currently operate under the ownership of our holding company, DYVESTA.\r\n\r\nDYEVSTA has become the pinnacle of Animal Nutrition and Health.\r\n\r\nDYVESTA is Dynamic, through our continuous evolution, growth and progress. DYVESTA is Diverse, in terms of both our business strategy and our community. DYVESTA is Devoted to our valuable business partners through exceptional service.[/ultimate_heading][/ult_animation_block][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row full_width=\"stretch_row\" equal_height=\"yes\" bg_type=\"image\" parallax_style=\"vcpb-vz-jquery\" bg_image_new=\"id^3256|url^https://farmchemie.yasithawd.com/wp-content/uploads/2023/08/Vision-Mission.png|caption^null|alt^null|title^Vision-&amp;-Mission|description^null\" bg_image_repeat=\"no-repeat\" enable_overlay=\"enable_overlay_value\" overlay_color=\"#000000\" overlay_pattern=\"01.png\" overlay_pattern_opacity=\"5\" css=\".vc_custom_1692366072362{margin-top: 35px !important;padding-top: 65px !important;padding-bottom: 100px !important;}\"][vc_column][vc_row_inner equal_height=\"yes\"][vc_column_inner width=\"1/2\"][ult_animation_block animation=\"fadeInLeftBig\" animation_duration=\"2\" animation_delay=\"0\" animation_iteration_count=\"1\"][ultimate_heading main_heading=\"Vision\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\"]To be the customers’ first and best choice by ensuring outstanding satisfaction through a well-trained and dedicated team. Prompt and quality solutions to our customers’ requirements will determine the increase of return on investment for us.[/ultimate_heading][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/2\"][ult_animation_block animation=\"fadeInRightBig\" animation_duration=\"2\" animation_delay=\"0\" animation_iteration_count=\"1\"][ultimate_heading main_heading=\"Mission\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\"]To become a world renowned manufacturer of Animal Health products and a trusted partner among our stakeholders for our integrity as well as for providing effective solutions[/ultimate_heading][/ult_animation_block][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row css=\".vc_custom_1684836308288{margin-top: 15px !important;}\"][vc_column][ultimate_heading main_heading=\"Achievements\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;\"][/ultimate_heading][vc_row_inner gap=\"20\"][vc_column_inner width=\"1/2\" css=\".vc_custom_1691995519863{background-color: #f4ab20 !important;border: 1px solid #f4ab20 !important;border-radius: 35px !important;}\"][bsf-info-box icon_type=\"custom\" icon_img=\"id^3117|url^https://farmchemie.yasithawd.com/wp-content/uploads/2023/08/Pink_-H.png|caption^null|alt^null|title^Pink_-H|description^null\" img_width=\"60\" icon_style=\"advanced\" icon_border_style=\"solid\" icon_color_border=\"#ffffff\" icon_border_size=\"1\" icon_border_radius=\"500\" icon_border_spacing=\"1\" title=\"First Free Sale Certificate obtained from Veterinary Drug Control Authority (VDCA) for Veterinary Pharmaceuticals\" title_font_style=\"font-weight:bold;\" title_font_size=\"desktop:20px;\"][/bsf-info-box][/vc_column_inner][vc_column_inner width=\"1/2\" css=\".vc_custom_1691995661095{background-color: #722f8b !important;border: 1px solid #722f8b !important;border-radius: 35px !important;}\"][bsf-info-box icon_type=\"custom\" icon_img=\"id^3117|url^https://farmchemie.yasithawd.com/wp-content/uploads/2023/08/Pink_-H.png|caption^null|alt^null|title^Pink_-H|description^null\" img_width=\"60\" icon_style=\"advanced\" icon_border_style=\"solid\" icon_color_border=\"#ffffff\" icon_border_size=\"1\" icon_border_radius=\"500\" icon_border_spacing=\"1\" title=\"First ISO 9001: 2015 ,WHO-GMP Quality Management systems certified Animal Health company in Sri Lanka since August, 2012\" title_font_style=\"font-weight:bold;\" title_font_color=\"#ffffff\" title_font_size=\"desktop:20px;\"][/bsf-info-box][/vc_column_inner][/vc_row_inner][vc_row_inner gap=\"20\"][vc_column_inner width=\"1/2\" css=\".vc_custom_1691995661095{background-color: #722f8b !important;border: 1px solid #722f8b !important;border-radius: 35px !important;}\"][bsf-info-box icon_type=\"custom\" icon_img=\"id^3117|url^https://farmchemie.yasithawd.com/wp-content/uploads/2023/08/Pink_-H.png|caption^null|alt^null|title^Pink_-H|description^null\" img_width=\"60\" icon_style=\"advanced\" icon_border_style=\"solid\" icon_color_border=\"#ffffff\" icon_border_size=\"1\" icon_border_radius=\"500\" icon_border_spacing=\"1\" title=\"First FAMI-QS certified company in sri lanka\" title_font_style=\"font-weight:bold;\" title_font_color=\"#ffffff\" title_font_size=\"desktop:20px;\"][/bsf-info-box][/vc_column_inner][vc_column_inner width=\"1/2\" css=\".vc_custom_1691995519863{background-color: #f4ab20 !important;border: 1px solid #f4ab20 !important;border-radius: 35px !important;}\"][bsf-info-box icon_type=\"custom\" icon_img=\"id^3117|url^https://farmchemie.yasithawd.com/wp-content/uploads/2023/08/Pink_-H.png|caption^null|alt^null|title^Pink_-H|description^null\" img_width=\"60\" icon_style=\"advanced\" icon_border_style=\"solid\" icon_color_border=\"#ffffff\" icon_border_size=\"1\" icon_border_radius=\"500\" icon_border_spacing=\"1\" title=\"First Certificate of Ethical Trading certified in Livestock industry\" title_font_style=\"font-weight:bold;\" title_font_size=\"desktop:20px;\"][/bsf-info-box][/vc_column_inner][/vc_row_inner][vc_row_inner gap=\"20\"][vc_column_inner width=\"1/4\" css=\".vc_custom_1691996718116{border-radius: 35px !important;}\"][/vc_column_inner][vc_column_inner width=\"2/4\" css=\".vc_custom_1691995519863{background-color: #f4ab20 !important;border: 1px solid #f4ab20 !important;border-radius: 35px !important;}\"][bsf-info-box icon_type=\"custom\" icon_img=\"id^3117|url^https://farmchemie.yasithawd.com/wp-content/uploads/2023/08/Pink_-H.png|caption^null|alt^null|title^Pink_-H|description^null\" img_width=\"60\" icon_style=\"advanced\" icon_border_style=\"solid\" icon_color_border=\"#ffffff\" icon_border_size=\"1\" icon_border_radius=\"500\" icon_border_spacing=\"1\" title=\"First Silver awarded company at National Exports Awards in Livestock industry\" title_font_style=\"font-weight:bold;\" title_font_size=\"desktop:20px;\"][/bsf-info-box][/vc_column_inner][vc_column_inner width=\"1/4\"][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner width=\"1/6\"][/vc_column_inner][vc_column_inner width=\"2/3\"][vc_single_image image=\"3126\" img_size=\"full\" alignment=\"center\"][vc_single_image image=\"3125\" img_size=\"full\" alignment=\"center\"][/vc_column_inner][vc_column_inner width=\"1/6\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row][vc_column][ultimate_heading main_heading=\"Board Of Directors\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;margin-bottom:35px;\"][/ultimate_heading][ultimate_carousel slides_on_desk=\"3\" slides_on_mob=\"1\" arrow_style=\"square-bg\" arrow_bg_color=\"#039447\" arrow_color=\"#ffffff\" next_icon=\"ultsl-arrow-right6\" prev_icon=\"ultsl-arrow-left6\" dots_color=\"#039447\" item_animation=\"fadeIn\"][vc_row_inner][vc_column_inner][dt_fancy_image image_id=\"3170\" width=\"300\" border_radius=\"1px\" caption=\"off\" css=\".vc_custom_1692278936750{border-top-width: 1px !important;border-right-width: 1px !important;border-bottom-width: 1px !important;border-left-width: 1px !important;border-left-color: #059444 !important;border-left-style: solid !important;border-right-color: #059444 !important;border-right-style: solid !important;border-top-color: #059444 !important;border-top-style: solid !important;border-bottom-color: #059444 !important;border-bottom-style: solid !important;border-radius: 1px !important;}\"][ultimate_heading main_heading=\"Quisque sed nibh tristique\" heading_tag=\"h3\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;\"]Duis lorem risus, aliquet a auctor a, venenatis in dui. Praesent et eros et risus dapibus placerat hendrerit cursus magna.[/ultimate_heading][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner][dt_fancy_image image_id=\"3170\" width=\"300\" border_radius=\"1px\" caption=\"off\" css=\".vc_custom_1692278936750{border-top-width: 1px !important;border-right-width: 1px !important;border-bottom-width: 1px !important;border-left-width: 1px !important;border-left-color: #059444 !important;border-left-style: solid !important;border-right-color: #059444 !important;border-right-style: solid !important;border-top-color: #059444 !important;border-top-style: solid !important;border-bottom-color: #059444 !important;border-bottom-style: solid !important;border-radius: 1px !important;}\"][ultimate_heading main_heading=\"Quisque sed nibh tristique\" heading_tag=\"h3\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;\"]Duis lorem risus, aliquet a auctor a, venenatis in dui. Praesent et eros et risus dapibus placerat hendrerit cursus magna.[/ultimate_heading][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner][dt_fancy_image image_id=\"3171\" width=\"300\" border_radius=\"1px\" caption=\"off\" css=\".vc_custom_1692278929158{border-top-width: 1px !important;border-right-width: 1px !important;border-bottom-width: 1px !important;border-left-width: 1px !important;border-left-color: #059444 !important;border-left-style: solid !important;border-right-color: #059444 !important;border-right-style: solid !important;border-top-color: #059444 !important;border-top-style: solid !important;border-bottom-color: #059444 !important;border-bottom-style: solid !important;border-radius: 1px !important;}\"][ultimate_heading main_heading=\"Quisque sed nibh tristique\" heading_tag=\"h3\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;\"]Duis lorem risus, aliquet a auctor a, venenatis in dui. Praesent et eros et risus dapibus placerat hendrerit cursus magna.[/ultimate_heading][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner][dt_fancy_image image_id=\"3172\" width=\"300\" border_radius=\"1px\" caption=\"off\" css=\".vc_custom_1692278922309{border-top-width: 1px !important;border-right-width: 1px !important;border-bottom-width: 1px !important;border-left-width: 1px !important;border-left-color: #059444 !important;border-left-style: solid !important;border-right-color: #059444 !important;border-right-style: solid !important;border-top-color: #059444 !important;border-top-style: solid !important;border-bottom-color: #059444 !important;border-bottom-style: solid !important;border-radius: 1px !important;}\"][ultimate_heading main_heading=\"Quisque sed nibh tristique\" heading_tag=\"h3\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;\"]Duis lorem risus, aliquet a auctor a, venenatis in dui. Praesent et eros et risus dapibus placerat hendrerit cursus magna.[/ultimate_heading][/vc_column_inner][/vc_row_inner][/ultimate_carousel][/vc_column][/vc_row][vc_row][vc_column][ultimate_heading main_heading=\"Board Of Directors\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;margin-bottom:35px;\"][/ultimate_heading][vc_row_inner][vc_column_inner width=\"1/3\"][ult_animation_block animation=\"fadeInUp\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][dt_fancy_image image_id=\"3172\" width=\"300\" border_radius=\"1px\" caption=\"off\" css=\".vc_custom_1692278922309{border-top-width: 1px !important;border-right-width: 1px !important;border-bottom-width: 1px !important;border-left-width: 1px !important;border-left-color: #059444 !important;border-left-style: solid !important;border-right-color: #059444 !important;border-right-style: solid !important;border-top-color: #059444 !important;border-top-style: solid !important;border-bottom-color: #059444 !important;border-bottom-style: solid !important;border-radius: 1px !important;}\"][ultimate_heading main_heading=\"Quisque sed nibh tristique\" heading_tag=\"h3\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;\"]\r\n<ul>\r\n 	<li>Duis lorem risus, aliquet a auctor a, venenatis in dui. Praesent et eros et risus dapibus placerat hendrerit cursus magna.</li>\r\n 	<li>Praesent et eros et risus dapibus placerat hendrerit cursus magna.</li>\r\n 	<li>aliquet a auctor a, venenatis in dui.</li>\r\n</ul>\r\n[/ultimate_heading][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/3\"][ult_animation_block animation=\"fadeInDown\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][dt_fancy_image image_id=\"3171\" width=\"300\" border_radius=\"1px\" caption=\"off\" css=\".vc_custom_1692278929158{border-top-width: 1px !important;border-right-width: 1px !important;border-bottom-width: 1px !important;border-left-width: 1px !important;border-left-color: #059444 !important;border-left-style: solid !important;border-right-color: #059444 !important;border-right-style: solid !important;border-top-color: #059444 !important;border-top-style: solid !important;border-bottom-color: #059444 !important;border-bottom-style: solid !important;border-radius: 1px !important;}\"][ultimate_heading main_heading=\"Quisque sed nibh tristique\" heading_tag=\"h3\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;\"]\r\n<ul>\r\n 	<li>Duis lorem risus, aliquet a auctor a, venenatis in dui. Praesent et eros et risus dapibus placerat hendrerit cursus magna.</li>\r\n 	<li>Praesent et eros et risus dapibus placerat hendrerit cursus magna.</li>\r\n 	<li>aliquet a auctor a, venenatis in dui.</li>\r\n</ul>\r\n[/ultimate_heading][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/3\"][ult_animation_block animation=\"fadeInUp\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][dt_fancy_image image_id=\"3170\" width=\"300\" border_radius=\"1px\" caption=\"off\" css=\".vc_custom_1692278936750{border-top-width: 1px !important;border-right-width: 1px !important;border-bottom-width: 1px !important;border-left-width: 1px !important;border-left-color: #059444 !important;border-left-style: solid !important;border-right-color: #059444 !important;border-right-style: solid !important;border-top-color: #059444 !important;border-top-style: solid !important;border-bottom-color: #059444 !important;border-bottom-style: solid !important;border-radius: 1px !important;}\"][ultimate_heading main_heading=\"Quisque sed nibh tristique\" heading_tag=\"h3\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;\"]\r\n<ul>\r\n 	<li>Duis lorem risus, aliquet a auctor a, venenatis in dui. Praesent et eros et risus dapibus placerat hendrerit cursus magna.</li>\r\n 	<li>Praesent et eros et risus dapibus placerat hendrerit cursus magna.</li>\r\n 	<li>aliquet a auctor a, venenatis in dui.</li>\r\n</ul>\r\n[/ultimate_heading][/ult_animation_block][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row][vc_column][ultimate_heading main_heading=\"Executive Directors\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;margin-bottom:35px;\"][/ultimate_heading][vc_row_inner][vc_column_inner width=\"1/5\"][ult_animation_block animation=\"fadeInUp\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][dt_fancy_image image_id=\"3172\" width=\"300\" border_radius=\"1px\" caption=\"off\" css=\".vc_custom_1692278922309{border-top-width: 1px !important;border-right-width: 1px !important;border-bottom-width: 1px !important;border-left-width: 1px !important;border-left-color: #059444 !important;border-left-style: solid !important;border-right-color: #059444 !important;border-right-style: solid !important;border-top-color: #059444 !important;border-top-style: solid !important;border-bottom-color: #059444 !important;border-bottom-style: solid !important;border-radius: 1px !important;}\"][ultimate_heading main_heading=\"Quisque sed nibh tristique\" heading_tag=\"h3\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;\"]\r\n<ul>\r\n 	<li>Duis lorem risus, aliquet a auctor a, venenatis in dui. Praesent et eros et risus dapibus placerat hendrerit cursus magna.</li>\r\n 	<li>Praesent et eros et risus dapibus placerat hendrerit cursus magna.</li>\r\n 	<li>aliquet a auctor a, venenatis in dui.</li>\r\n</ul>\r\n[/ultimate_heading][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/5\"][ult_animation_block animation=\"fadeInDown\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][dt_fancy_image image_id=\"3171\" width=\"300\" border_radius=\"1px\" caption=\"off\" css=\".vc_custom_1692278929158{border-top-width: 1px !important;border-right-width: 1px !important;border-bottom-width: 1px !important;border-left-width: 1px !important;border-left-color: #059444 !important;border-left-style: solid !important;border-right-color: #059444 !important;border-right-style: solid !important;border-top-color: #059444 !important;border-top-style: solid !important;border-bottom-color: #059444 !important;border-bottom-style: solid !important;border-radius: 1px !important;}\"][ultimate_heading main_heading=\"Quisque sed nibh tristique\" heading_tag=\"h3\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;\"]\r\n<ul>\r\n 	<li>Duis lorem risus, aliquet a auctor a, venenatis in dui. Praesent et eros et risus dapibus placerat hendrerit cursus magna.</li>\r\n 	<li>Praesent et eros et risus dapibus placerat hendrerit cursus magna.</li>\r\n 	<li>aliquet a auctor a, venenatis in dui.</li>\r\n</ul>\r\n[/ultimate_heading][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/5\"][ult_animation_block animation=\"fadeInUp\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][dt_fancy_image image_id=\"3170\" width=\"300\" border_radius=\"1px\" caption=\"off\" css=\".vc_custom_1692278936750{border-top-width: 1px !important;border-right-width: 1px !important;border-bottom-width: 1px !important;border-left-width: 1px !important;border-left-color: #059444 !important;border-left-style: solid !important;border-right-color: #059444 !important;border-right-style: solid !important;border-top-color: #059444 !important;border-top-style: solid !important;border-bottom-color: #059444 !important;border-bottom-style: solid !important;border-radius: 1px !important;}\"][ultimate_heading main_heading=\"Quisque sed nibh tristique\" heading_tag=\"h3\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;\"]\r\n<ul>\r\n 	<li>Duis lorem risus, aliquet a auctor a, venenatis in dui. Praesent et eros et risus dapibus placerat hendrerit cursus magna.</li>\r\n 	<li>Praesent et eros et risus dapibus placerat hendrerit cursus magna.</li>\r\n 	<li>aliquet a auctor a, venenatis in dui.</li>\r\n</ul>\r\n[/ultimate_heading][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/5\"][ult_animation_block animation=\"fadeInDown\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][dt_fancy_image image_id=\"3170\" width=\"300\" border_radius=\"1px\" caption=\"off\" css=\".vc_custom_1692278936750{border-top-width: 1px !important;border-right-width: 1px !important;border-bottom-width: 1px !important;border-left-width: 1px !important;border-left-color: #059444 !important;border-left-style: solid !important;border-right-color: #059444 !important;border-right-style: solid !important;border-top-color: #059444 !important;border-top-style: solid !important;border-bottom-color: #059444 !important;border-bottom-style: solid !important;border-radius: 1px !important;}\"][ultimate_heading main_heading=\"Quisque sed nibh tristique\" heading_tag=\"h3\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;\"]\r\n<ul>\r\n 	<li>Duis lorem risus, aliquet a auctor a, venenatis in dui. Praesent et eros et risus dapibus placerat hendrerit cursus magna.</li>\r\n 	<li>Praesent et eros et risus dapibus placerat hendrerit cursus magna.</li>\r\n 	<li>aliquet a auctor a, venenatis in dui.</li>\r\n</ul>\r\n[/ultimate_heading][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/5\"][ult_animation_block animation=\"fadeInDown\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][dt_fancy_image image_id=\"3171\" width=\"300\" border_radius=\"1px\" caption=\"off\" css=\".vc_custom_1692278929158{border-top-width: 1px !important;border-right-width: 1px !important;border-bottom-width: 1px !important;border-left-width: 1px !important;border-left-color: #059444 !important;border-left-style: solid !important;border-right-color: #059444 !important;border-right-style: solid !important;border-top-color: #059444 !important;border-top-style: solid !important;border-bottom-color: #059444 !important;border-bottom-style: solid !important;border-radius: 1px !important;}\"][ultimate_heading main_heading=\"Quisque sed nibh tristique\" heading_tag=\"h3\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;\"]\r\n<ul>\r\n 	<li>Duis lorem risus, aliquet a auctor a, venenatis in dui. Praesent et eros et risus dapibus placerat hendrerit cursus magna.</li>\r\n 	<li>Praesent et eros et risus dapibus placerat hendrerit cursus magna.</li>\r\n 	<li>aliquet a auctor a, venenatis in dui.</li>\r\n</ul>\r\n[/ultimate_heading][/ult_animation_block][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner width=\"2/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row][vc_column][ultimate_heading main_heading=\"Next Generation\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;margin-bottom:35px;\"][/ultimate_heading][vc_row_inner][vc_column_inner width=\"1/2\"][ult_animation_block animation=\"fadeInUp\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][dt_fancy_image image_id=\"3172\" width=\"300\" border_radius=\"1px\" caption=\"off\" css=\".vc_custom_1692278922309{border-top-width: 1px !important;border-right-width: 1px !important;border-bottom-width: 1px !important;border-left-width: 1px !important;border-left-color: #059444 !important;border-left-style: solid !important;border-right-color: #059444 !important;border-right-style: solid !important;border-top-color: #059444 !important;border-top-style: solid !important;border-bottom-color: #059444 !important;border-bottom-style: solid !important;border-radius: 1px !important;}\"][ultimate_heading main_heading=\"Quisque sed nibh tristique\" heading_tag=\"h3\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;\"]\r\n<ul>\r\n 	<li>Duis lorem risus, aliquet a auctor a, venenatis in dui. Praesent et eros et risus dapibus placerat hendrerit cursus magna.</li>\r\n 	<li>Praesent et eros et risus dapibus placerat hendrerit cursus magna.</li>\r\n 	<li>aliquet a auctor a, venenatis in dui.</li>\r\n</ul>\r\n[/ultimate_heading][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/2\"][ult_animation_block animation=\"fadeInDown\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][dt_fancy_image image_id=\"3171\" width=\"300\" border_radius=\"1px\" caption=\"off\" css=\".vc_custom_1692278929158{border-top-width: 1px !important;border-right-width: 1px !important;border-bottom-width: 1px !important;border-left-width: 1px !important;border-left-color: #059444 !important;border-left-style: solid !important;border-right-color: #059444 !important;border-right-style: solid !important;border-top-color: #059444 !important;border-top-style: solid !important;border-bottom-color: #059444 !important;border-bottom-style: solid !important;border-radius: 1px !important;}\"][ultimate_heading main_heading=\"Quisque sed nibh tristique\" heading_tag=\"h3\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;\"]\r\n<ul>\r\n 	<li>Duis lorem risus, aliquet a auctor a, venenatis in dui. Praesent et eros et risus dapibus placerat hendrerit cursus magna.</li>\r\n 	<li>Praesent et eros et risus dapibus placerat hendrerit cursus magna.</li>\r\n 	<li>aliquet a auctor a, venenatis in dui.</li>\r\n</ul>\r\n[/ultimate_heading][/ult_animation_block][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row]','About us','','inherit','closed','closed','','2917-revision-v1','','','2023-08-18 13:43:38','2023-08-18 13:43:38','',2917,'https://farmchemie.yasithawd.com/?p=3258',0,'revision','',0),(3259,1,'2023-08-18 13:44:56','2023-08-18 13:44:56','[vc_row full_width=\"stretch_row_content_no_spaces\"][vc_column][ultimate_heading main_heading=\"Our History\" main_heading_color=\"#762888\"][/ultimate_heading][/vc_column][/vc_row][vc_row][vc_column][vc_row_inner equal_height=\"yes\" content_placement=\"middle\" css=\".vc_custom_1692359205466{margin-top: 35px !important;}\"][vc_column_inner width=\"1/2\"][ult_animation_block animation=\"fadeInLeftBig\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][vc_single_image image=\"3106\" img_size=\"medium\" style=\"vc_box_rounded\"][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/2\"][ult_animation_block animation=\"fadeInRightBig\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][ultimate_heading main_heading=\"Founded in 2002\" heading_tag=\"h3\" main_heading_color=\"#039447\" alignment=\"left\" sub_heading_font_size=\"desktop:18px;\"]Founded in 2002 by Mr. Uditha Wanigasinghe, an agriculturist who had a mission to aid valuable livestock producers in the country to enhance the yield and profitability of production. FARMCHEMIE introduced unprecedented solutions and consistent technical services to gain our customers’ trust and became the market leader in animal health products in 2006 within just four years.[/ultimate_heading][/ult_animation_block][/vc_column_inner][/vc_row_inner][vc_row_inner equal_height=\"yes\" rtl_reverse=\"yes\" content_placement=\"middle\" css=\".vc_custom_1692359216075{margin-top: 35px !important;}\"][vc_column_inner width=\"1/2\"][ult_animation_block animation=\"fadeInLeftBig\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][ultimate_heading main_heading=\"2006\" heading_tag=\"h3\" main_heading_color=\"#039447\" alignment=\"left\"]In 2006, the Sri Lankan poultry industry was affected with Avian Influenza which became a difficult period for the growth of FARMCHEMIE. This was the key factor in our decision to diversify into Agro Products. PLANTCHEM &amp; PLANTSEEDS were established to offer solutions in Agro specialty fertilizers, pesticides and seeds to invaluable cultivators.[/ultimate_heading][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/2\"][ult_animation_block animation=\"fadeInRightBig\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][vc_single_image image=\"3107\" img_size=\"full\" style=\"vc_box_border_circle_2\"][/ult_animation_block][/vc_column_inner][/vc_row_inner][vc_row_inner equal_height=\"yes\" content_placement=\"middle\" css=\".vc_custom_1692359231594{margin-top: 35px !important;}\"][vc_column_inner width=\"1/2\"][ult_animation_block animation=\"fadeInLeftBig\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][vc_single_image image=\"3108\" img_size=\"full\" style=\"vc_box_border_circle_2\"][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/2\"][ult_animation_block animation=\"fadeInRightBig\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][ultimate_heading main_heading=\"2010\" heading_tag=\"h3\" main_heading_color=\"#039447\" alignment=\"left\"]In 2010, FEED CHEMIE became the subsequent addition to ever-growing vision of Mr. Uditha Wanigasinghe and entered the Animal Feed Additives market.[/ultimate_heading][/ult_animation_block][/vc_column_inner][/vc_row_inner][vc_row_inner equal_height=\"yes\" rtl_reverse=\"yes\" content_placement=\"middle\" css=\".vc_custom_1692359239274{margin-top: 35px !important;}\"][vc_column_inner width=\"1/2\"][ult_animation_block animation=\"fadeInLeftBig\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][ultimate_heading main_heading=\"2012\" heading_tag=\"h3\" main_heading_color=\"#039447\" alignment=\"left\"]The year 2012 is described as a turning point in our journey as FARMCHEMIE established our first production facility for the manufacturing and packing of animal health products. FARMCHEMIE became the first animal health organization in Sri Lanka to obtain ISO 9001:2015 and WHO GMP International Quality Certification. With our own formulation unit, FARMCHEMIE was able to offer customized solutions to cater the needs of the Sri Lankan Livestock Industry.[/ultimate_heading][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/2\"][ult_animation_block animation=\"fadeInRightBig\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][vc_single_image image=\"3111\" img_size=\"full\" style=\"vc_box_border_circle_2\"][/ult_animation_block][/vc_column_inner][/vc_row_inner][vc_row_inner content_placement=\"middle\" css=\".vc_custom_1692359246626{margin-top: 35px !important;}\"][vc_column_inner width=\"1/2\"][ult_animation_block animation=\"fadeInLeftBig\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][vc_single_image image=\"3112\" img_size=\"full\" style=\"vc_box_border_circle_2\"][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/2\"][ult_animation_block animation=\"fadeInRightBig\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][ultimate_heading main_heading=\"2016\" heading_tag=\"h3\" main_heading_color=\"#039447\" alignment=\"left\"]The year 2016 was another key milestone with the entry to the International Markets. FARMCHEMIE exported our first Feed Premix consignment to India and in 2018 our export operation was distinctly established as FARMCHEMIE MANUFACTURERS, a Board of Investment (BOI) approved entity.[/ultimate_heading][/ult_animation_block][/vc_column_inner][/vc_row_inner][vc_row_inner equal_height=\"yes\" css=\".vc_custom_1692359252258{margin-top: 35px !important;}\"][vc_column_inner width=\"1/2\"][ult_animation_block animation=\"fadeInLeftBig\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][ultimate_heading main_heading=\"Fully automated manufacturing\" heading_tag=\"h3\" main_heading_color=\"#039447\" alignment=\"left\"]FARMCHEMIE MANUFACTURERS has invested in fully automated manufacturing facility from Bühler and became the first Sri Lankan owned company to obtain FAMI-QS International Quality Certification.[/ultimate_heading][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/2\"][ult_animation_block animation=\"fadeInRightBig\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][vc_single_image image=\"3110\" img_size=\"full\" style=\"vc_box_border_circle_2\"][/ult_animation_block][/vc_column_inner][/vc_row_inner][vc_row_inner equal_height=\"yes\" content_placement=\"middle\" css=\".vc_custom_1692359258634{margin-top: 35px !important;}\"][vc_column_inner width=\"1/2\"][ult_animation_block animation=\"fadeInLeftBig\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][vc_single_image image=\"3116\" img_size=\"full\" style=\"vc_box_border_circle_2\"][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/2\"][ult_animation_block animation=\"fadeInRightBig\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][ultimate_heading main_heading=\"Official toll manufacturer partner\" heading_tag=\"h3\" main_heading_color=\"#039447\" alignment=\"left\"]With the trust and reputation built as a reliable manufacturer of animal feed additives and supplements in the global market, several world-renowned international brands have appointed FARMCHEMIE MANUFACTURERS as the official toll manufacturer partner. FARMCHEMIE MANUFACTURERS exports a wide range of products consisting of premixes, specialty feed additives, oral liquid supplements and pet supplements to various markets in South Asia, East Asia, Middle East and Africa.\r\n\r\nFARMCHEMIE, FEED CHEMIE &amp; FARMCHEMIE MANUFACTURERS currently operate under the ownership of our holding company, DYVESTA.\r\n\r\nDYEVSTA has become the pinnacle of Animal Nutrition and Health.\r\n\r\nDYVESTA is Dynamic, through our continuous evolution, growth and progress. DYVESTA is Diverse, in terms of both our business strategy and our community. DYVESTA is Devoted to our valuable business partners through exceptional service.[/ultimate_heading][/ult_animation_block][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row full_width=\"stretch_row\" equal_height=\"yes\" bg_type=\"image\" parallax_style=\"vcpb-vz-jquery\" bg_image_new=\"id^3256|url^https://farmchemie.yasithawd.com/wp-content/uploads/2023/08/Vision-Mission.png|caption^null|alt^null|title^Vision-&amp;-Mission|description^null\" bg_image_repeat=\"no-repeat\" enable_overlay=\"enable_overlay_value\" overlay_color=\"#000000\" overlay_pattern=\"01.png\" overlay_pattern_opacity=\"5\" css=\".vc_custom_1692366072362{margin-top: 35px !important;padding-top: 65px !important;padding-bottom: 100px !important;}\"][vc_column][vc_row_inner equal_height=\"yes\"][vc_column_inner width=\"1/2\"][ult_animation_block animation=\"fadeInLeftBig\" animation_duration=\"2\" animation_delay=\"0\" animation_iteration_count=\"1\"][ultimate_heading main_heading=\"Vision\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\"]To be the customers’ first and best choice by ensuring outstanding satisfaction through a well-trained and dedicated team. Prompt and quality solutions to our customers’ requirements will determine the increase of return on investment for us.[/ultimate_heading][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/2\"][ult_animation_block animation=\"fadeInRightBig\" animation_duration=\"2\" animation_delay=\"0\" animation_iteration_count=\"1\"][ultimate_heading main_heading=\"Mission\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\"]To become a world renowned manufacturer of Animal Health products and a trusted partner among our stakeholders for our integrity as well as for providing effective solutions[/ultimate_heading][/ult_animation_block][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row css=\".vc_custom_1684836308288{margin-top: 15px !important;}\"][vc_column][ultimate_heading main_heading=\"Achievements\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;\"][/ultimate_heading][vc_row_inner gap=\"20\"][vc_column_inner width=\"1/2\" css=\".vc_custom_1691995519863{background-color: #f4ab20 !important;border: 1px solid #f4ab20 !important;border-radius: 35px !important;}\"][bsf-info-box icon_type=\"custom\" icon_img=\"id^3117|url^https://farmchemie.yasithawd.com/wp-content/uploads/2023/08/Pink_-H.png|caption^null|alt^null|title^Pink_-H|description^null\" img_width=\"60\" icon_style=\"advanced\" icon_border_style=\"solid\" icon_color_border=\"#ffffff\" icon_border_size=\"1\" icon_border_radius=\"500\" icon_border_spacing=\"1\" title=\"First Free Sale Certificate obtained from Veterinary Drug Control Authority (VDCA) for Veterinary Pharmaceuticals\" title_font_style=\"font-weight:bold;\" title_font_size=\"desktop:20px;\"][/bsf-info-box][/vc_column_inner][vc_column_inner width=\"1/2\" css=\".vc_custom_1691995661095{background-color: #722f8b !important;border: 1px solid #722f8b !important;border-radius: 35px !important;}\"][bsf-info-box icon_type=\"custom\" icon_img=\"id^3117|url^https://farmchemie.yasithawd.com/wp-content/uploads/2023/08/Pink_-H.png|caption^null|alt^null|title^Pink_-H|description^null\" img_width=\"60\" icon_style=\"advanced\" icon_border_style=\"solid\" icon_color_border=\"#ffffff\" icon_border_size=\"1\" icon_border_radius=\"500\" icon_border_spacing=\"1\" title=\"First ISO 9001: 2015 ,WHO-GMP Quality Management systems certified Animal Health company in Sri Lanka since August, 2012\" title_font_style=\"font-weight:bold;\" title_font_color=\"#ffffff\" title_font_size=\"desktop:20px;\"][/bsf-info-box][/vc_column_inner][/vc_row_inner][vc_row_inner gap=\"20\"][vc_column_inner width=\"1/2\" css=\".vc_custom_1691995661095{background-color: #722f8b !important;border: 1px solid #722f8b !important;border-radius: 35px !important;}\"][bsf-info-box icon_type=\"custom\" icon_img=\"id^3117|url^https://farmchemie.yasithawd.com/wp-content/uploads/2023/08/Pink_-H.png|caption^null|alt^null|title^Pink_-H|description^null\" img_width=\"60\" icon_style=\"advanced\" icon_border_style=\"solid\" icon_color_border=\"#ffffff\" icon_border_size=\"1\" icon_border_radius=\"500\" icon_border_spacing=\"1\" title=\"First FAMI-QS certified company in sri lanka\" title_font_style=\"font-weight:bold;\" title_font_color=\"#ffffff\" title_font_size=\"desktop:20px;\"][/bsf-info-box][/vc_column_inner][vc_column_inner width=\"1/2\" css=\".vc_custom_1691995519863{background-color: #f4ab20 !important;border: 1px solid #f4ab20 !important;border-radius: 35px !important;}\"][bsf-info-box icon_type=\"custom\" icon_img=\"id^3117|url^https://farmchemie.yasithawd.com/wp-content/uploads/2023/08/Pink_-H.png|caption^null|alt^null|title^Pink_-H|description^null\" img_width=\"60\" icon_style=\"advanced\" icon_border_style=\"solid\" icon_color_border=\"#ffffff\" icon_border_size=\"1\" icon_border_radius=\"500\" icon_border_spacing=\"1\" title=\"First Certificate of Ethical Trading certified in Livestock industry\" title_font_style=\"font-weight:bold;\" title_font_size=\"desktop:20px;\"][/bsf-info-box][/vc_column_inner][/vc_row_inner][vc_row_inner gap=\"20\"][vc_column_inner width=\"1/4\" css=\".vc_custom_1691996718116{border-radius: 35px !important;}\"][/vc_column_inner][vc_column_inner width=\"2/4\" css=\".vc_custom_1691995519863{background-color: #f4ab20 !important;border: 1px solid #f4ab20 !important;border-radius: 35px !important;}\"][bsf-info-box icon_type=\"custom\" icon_img=\"id^3117|url^https://farmchemie.yasithawd.com/wp-content/uploads/2023/08/Pink_-H.png|caption^null|alt^null|title^Pink_-H|description^null\" img_width=\"60\" icon_style=\"advanced\" icon_border_style=\"solid\" icon_color_border=\"#ffffff\" icon_border_size=\"1\" icon_border_radius=\"500\" icon_border_spacing=\"1\" title=\"First Silver awarded company at National Exports Awards in Livestock industry\" title_font_style=\"font-weight:bold;\" title_font_size=\"desktop:20px;\"][/bsf-info-box][/vc_column_inner][vc_column_inner width=\"1/4\"][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner width=\"1/6\"][/vc_column_inner][vc_column_inner width=\"2/3\"][vc_single_image image=\"3126\" img_size=\"full\" alignment=\"center\"][vc_single_image image=\"3125\" img_size=\"full\" alignment=\"center\"][/vc_column_inner][vc_column_inner width=\"1/6\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row][vc_column][ultimate_heading main_heading=\"Board Of Directors\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;margin-bottom:35px;\"][/ultimate_heading][ultimate_carousel slides_on_desk=\"3\" slides_on_mob=\"1\" arrow_style=\"square-bg\" arrow_bg_color=\"#039447\" arrow_color=\"#ffffff\" next_icon=\"ultsl-arrow-right6\" prev_icon=\"ultsl-arrow-left6\" dots_color=\"#039447\" item_animation=\"fadeIn\"][vc_row_inner][vc_column_inner][dt_fancy_image image_id=\"3170\" width=\"300\" border_radius=\"1px\" caption=\"off\" css=\".vc_custom_1692278936750{border-top-width: 1px !important;border-right-width: 1px !important;border-bottom-width: 1px !important;border-left-width: 1px !important;border-left-color: #059444 !important;border-left-style: solid !important;border-right-color: #059444 !important;border-right-style: solid !important;border-top-color: #059444 !important;border-top-style: solid !important;border-bottom-color: #059444 !important;border-bottom-style: solid !important;border-radius: 1px !important;}\"][ultimate_heading main_heading=\"Quisque sed nibh tristique\" heading_tag=\"h3\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;\"]Duis lorem risus, aliquet a auctor a, venenatis in dui. Praesent et eros et risus dapibus placerat hendrerit cursus magna.[/ultimate_heading][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner][dt_fancy_image image_id=\"3170\" width=\"300\" border_radius=\"1px\" caption=\"off\" css=\".vc_custom_1692278936750{border-top-width: 1px !important;border-right-width: 1px !important;border-bottom-width: 1px !important;border-left-width: 1px !important;border-left-color: #059444 !important;border-left-style: solid !important;border-right-color: #059444 !important;border-right-style: solid !important;border-top-color: #059444 !important;border-top-style: solid !important;border-bottom-color: #059444 !important;border-bottom-style: solid !important;border-radius: 1px !important;}\"][ultimate_heading main_heading=\"Quisque sed nibh tristique\" heading_tag=\"h3\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;\"]Duis lorem risus, aliquet a auctor a, venenatis in dui. Praesent et eros et risus dapibus placerat hendrerit cursus magna.[/ultimate_heading][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner][dt_fancy_image image_id=\"3171\" width=\"300\" border_radius=\"1px\" caption=\"off\" css=\".vc_custom_1692278929158{border-top-width: 1px !important;border-right-width: 1px !important;border-bottom-width: 1px !important;border-left-width: 1px !important;border-left-color: #059444 !important;border-left-style: solid !important;border-right-color: #059444 !important;border-right-style: solid !important;border-top-color: #059444 !important;border-top-style: solid !important;border-bottom-color: #059444 !important;border-bottom-style: solid !important;border-radius: 1px !important;}\"][ultimate_heading main_heading=\"Quisque sed nibh tristique\" heading_tag=\"h3\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;\"]Duis lorem risus, aliquet a auctor a, venenatis in dui. Praesent et eros et risus dapibus placerat hendrerit cursus magna.[/ultimate_heading][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner][dt_fancy_image image_id=\"3172\" width=\"300\" border_radius=\"1px\" caption=\"off\" css=\".vc_custom_1692278922309{border-top-width: 1px !important;border-right-width: 1px !important;border-bottom-width: 1px !important;border-left-width: 1px !important;border-left-color: #059444 !important;border-left-style: solid !important;border-right-color: #059444 !important;border-right-style: solid !important;border-top-color: #059444 !important;border-top-style: solid !important;border-bottom-color: #059444 !important;border-bottom-style: solid !important;border-radius: 1px !important;}\"][ultimate_heading main_heading=\"Quisque sed nibh tristique\" heading_tag=\"h3\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;\"]Duis lorem risus, aliquet a auctor a, venenatis in dui. Praesent et eros et risus dapibus placerat hendrerit cursus magna.[/ultimate_heading][/vc_column_inner][/vc_row_inner][/ultimate_carousel][/vc_column][/vc_row][vc_row][vc_column][ultimate_heading main_heading=\"Board Of Directors\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;margin-bottom:35px;\"][/ultimate_heading][vc_row_inner][vc_column_inner width=\"1/3\"][ult_animation_block animation=\"fadeInUp\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][dt_fancy_image image_id=\"3172\" width=\"300\" border_radius=\"1px\" caption=\"off\" css=\".vc_custom_1692278922309{border-top-width: 1px !important;border-right-width: 1px !important;border-bottom-width: 1px !important;border-left-width: 1px !important;border-left-color: #059444 !important;border-left-style: solid !important;border-right-color: #059444 !important;border-right-style: solid !important;border-top-color: #059444 !important;border-top-style: solid !important;border-bottom-color: #059444 !important;border-bottom-style: solid !important;border-radius: 1px !important;}\"][ultimate_heading main_heading=\"Quisque sed nibh tristique\" heading_tag=\"h3\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;\"]\r\n<ul>\r\n 	<li>Duis lorem risus, aliquet a auctor a, venenatis in dui. Praesent et eros et risus dapibus placerat hendrerit cursus magna.</li>\r\n 	<li>Praesent et eros et risus dapibus placerat hendrerit cursus magna.</li>\r\n 	<li>aliquet a auctor a, venenatis in dui.</li>\r\n</ul>\r\n[/ultimate_heading][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/3\"][ult_animation_block animation=\"fadeInDown\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][dt_fancy_image image_id=\"3171\" width=\"300\" border_radius=\"1px\" caption=\"off\" css=\".vc_custom_1692278929158{border-top-width: 1px !important;border-right-width: 1px !important;border-bottom-width: 1px !important;border-left-width: 1px !important;border-left-color: #059444 !important;border-left-style: solid !important;border-right-color: #059444 !important;border-right-style: solid !important;border-top-color: #059444 !important;border-top-style: solid !important;border-bottom-color: #059444 !important;border-bottom-style: solid !important;border-radius: 1px !important;}\"][ultimate_heading main_heading=\"Quisque sed nibh tristique\" heading_tag=\"h3\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;\"]\r\n<ul>\r\n 	<li>Duis lorem risus, aliquet a auctor a, venenatis in dui. Praesent et eros et risus dapibus placerat hendrerit cursus magna.</li>\r\n 	<li>Praesent et eros et risus dapibus placerat hendrerit cursus magna.</li>\r\n 	<li>aliquet a auctor a, venenatis in dui.</li>\r\n</ul>\r\n[/ultimate_heading][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/3\"][ult_animation_block animation=\"fadeInUp\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][dt_fancy_image image_id=\"3170\" width=\"300\" border_radius=\"1px\" caption=\"off\" css=\".vc_custom_1692278936750{border-top-width: 1px !important;border-right-width: 1px !important;border-bottom-width: 1px !important;border-left-width: 1px !important;border-left-color: #059444 !important;border-left-style: solid !important;border-right-color: #059444 !important;border-right-style: solid !important;border-top-color: #059444 !important;border-top-style: solid !important;border-bottom-color: #059444 !important;border-bottom-style: solid !important;border-radius: 1px !important;}\"][ultimate_heading main_heading=\"Quisque sed nibh tristique\" heading_tag=\"h3\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;\"]\r\n<ul>\r\n 	<li>Duis lorem risus, aliquet a auctor a, venenatis in dui. Praesent et eros et risus dapibus placerat hendrerit cursus magna.</li>\r\n 	<li>Praesent et eros et risus dapibus placerat hendrerit cursus magna.</li>\r\n 	<li>aliquet a auctor a, venenatis in dui.</li>\r\n</ul>\r\n[/ultimate_heading][/ult_animation_block][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row][vc_column][ultimate_heading main_heading=\"Executive Directors\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;margin-bottom:35px;\"][/ultimate_heading][vc_row_inner][vc_column_inner width=\"1/5\"][ult_animation_block animation=\"fadeInUp\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][dt_fancy_image image_id=\"3172\" width=\"300\" border_radius=\"1px\" caption=\"off\" css=\".vc_custom_1692278922309{border-top-width: 1px !important;border-right-width: 1px !important;border-bottom-width: 1px !important;border-left-width: 1px !important;border-left-color: #059444 !important;border-left-style: solid !important;border-right-color: #059444 !important;border-right-style: solid !important;border-top-color: #059444 !important;border-top-style: solid !important;border-bottom-color: #059444 !important;border-bottom-style: solid !important;border-radius: 1px !important;}\"][ultimate_heading main_heading=\"Quisque sed nibh tristique\" heading_tag=\"h3\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;\"]\r\n<ul>\r\n 	<li>Duis lorem risus, aliquet a auctor a, venenatis in dui. Praesent et eros et risus dapibus placerat hendrerit cursus magna.</li>\r\n 	<li>Praesent et eros et risus dapibus placerat hendrerit cursus magna.</li>\r\n 	<li>aliquet a auctor a, venenatis in dui.</li>\r\n</ul>\r\n[/ultimate_heading][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/5\"][ult_animation_block animation=\"fadeInDown\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][dt_fancy_image image_id=\"3171\" width=\"300\" border_radius=\"1px\" caption=\"off\" css=\".vc_custom_1692278929158{border-top-width: 1px !important;border-right-width: 1px !important;border-bottom-width: 1px !important;border-left-width: 1px !important;border-left-color: #059444 !important;border-left-style: solid !important;border-right-color: #059444 !important;border-right-style: solid !important;border-top-color: #059444 !important;border-top-style: solid !important;border-bottom-color: #059444 !important;border-bottom-style: solid !important;border-radius: 1px !important;}\"][ultimate_heading main_heading=\"Quisque sed nibh tristique\" heading_tag=\"h3\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;\"]\r\n<ul>\r\n 	<li>Duis lorem risus, aliquet a auctor a, venenatis in dui. Praesent et eros et risus dapibus placerat hendrerit cursus magna.</li>\r\n 	<li>Praesent et eros et risus dapibus placerat hendrerit cursus magna.</li>\r\n 	<li>aliquet a auctor a, venenatis in dui.</li>\r\n</ul>\r\n[/ultimate_heading][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/5\"][ult_animation_block animation=\"fadeInUp\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][dt_fancy_image image_id=\"3170\" width=\"300\" border_radius=\"1px\" caption=\"off\" css=\".vc_custom_1692278936750{border-top-width: 1px !important;border-right-width: 1px !important;border-bottom-width: 1px !important;border-left-width: 1px !important;border-left-color: #059444 !important;border-left-style: solid !important;border-right-color: #059444 !important;border-right-style: solid !important;border-top-color: #059444 !important;border-top-style: solid !important;border-bottom-color: #059444 !important;border-bottom-style: solid !important;border-radius: 1px !important;}\"][ultimate_heading main_heading=\"Quisque sed nibh tristique\" heading_tag=\"h3\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;\"]\r\n<ul>\r\n 	<li>Duis lorem risus, aliquet a auctor a, venenatis in dui. Praesent et eros et risus dapibus placerat hendrerit cursus magna.</li>\r\n 	<li>Praesent et eros et risus dapibus placerat hendrerit cursus magna.</li>\r\n 	<li>aliquet a auctor a, venenatis in dui.</li>\r\n</ul>\r\n[/ultimate_heading][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/5\"][ult_animation_block animation=\"fadeInDown\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][dt_fancy_image image_id=\"3170\" width=\"300\" border_radius=\"1px\" caption=\"off\" css=\".vc_custom_1692278936750{border-top-width: 1px !important;border-right-width: 1px !important;border-bottom-width: 1px !important;border-left-width: 1px !important;border-left-color: #059444 !important;border-left-style: solid !important;border-right-color: #059444 !important;border-right-style: solid !important;border-top-color: #059444 !important;border-top-style: solid !important;border-bottom-color: #059444 !important;border-bottom-style: solid !important;border-radius: 1px !important;}\"][ultimate_heading main_heading=\"Quisque sed nibh tristique\" heading_tag=\"h3\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;\"]\r\n<ul>\r\n 	<li>Duis lorem risus, aliquet a auctor a, venenatis in dui. Praesent et eros et risus dapibus placerat hendrerit cursus magna.</li>\r\n 	<li>Praesent et eros et risus dapibus placerat hendrerit cursus magna.</li>\r\n 	<li>aliquet a auctor a, venenatis in dui.</li>\r\n</ul>\r\n[/ultimate_heading][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/5\"][ult_animation_block animation=\"fadeInDown\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][dt_fancy_image image_id=\"3171\" width=\"300\" border_radius=\"1px\" caption=\"off\" css=\".vc_custom_1692278929158{border-top-width: 1px !important;border-right-width: 1px !important;border-bottom-width: 1px !important;border-left-width: 1px !important;border-left-color: #059444 !important;border-left-style: solid !important;border-right-color: #059444 !important;border-right-style: solid !important;border-top-color: #059444 !important;border-top-style: solid !important;border-bottom-color: #059444 !important;border-bottom-style: solid !important;border-radius: 1px !important;}\"][ultimate_heading main_heading=\"Quisque sed nibh tristique\" heading_tag=\"h3\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;\"]\r\n<ul>\r\n 	<li>Duis lorem risus, aliquet a auctor a, venenatis in dui. Praesent et eros et risus dapibus placerat hendrerit cursus magna.</li>\r\n 	<li>Praesent et eros et risus dapibus placerat hendrerit cursus magna.</li>\r\n 	<li>aliquet a auctor a, venenatis in dui.</li>\r\n</ul>\r\n[/ultimate_heading][/ult_animation_block][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner width=\"2/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row][vc_column][ultimate_heading main_heading=\"Next Generation\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;margin-bottom:35px;\"][/ultimate_heading][vc_row_inner][vc_column_inner width=\"1/2\"][ult_animation_block animation=\"fadeInUp\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][dt_fancy_image image_id=\"3172\" width=\"300\" border_radius=\"1px\" caption=\"off\" css=\".vc_custom_1692278922309{border-top-width: 1px !important;border-right-width: 1px !important;border-bottom-width: 1px !important;border-left-width: 1px !important;border-left-color: #059444 !important;border-left-style: solid !important;border-right-color: #059444 !important;border-right-style: solid !important;border-top-color: #059444 !important;border-top-style: solid !important;border-bottom-color: #059444 !important;border-bottom-style: solid !important;border-radius: 1px !important;}\"][ultimate_heading main_heading=\"Quisque sed nibh tristique\" heading_tag=\"h3\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;\"]\r\n<ul>\r\n 	<li>Duis lorem risus, aliquet a auctor a, venenatis in dui. Praesent et eros et risus dapibus placerat hendrerit cursus magna.</li>\r\n 	<li>Praesent et eros et risus dapibus placerat hendrerit cursus magna.</li>\r\n 	<li>aliquet a auctor a, venenatis in dui.</li>\r\n</ul>\r\n[/ultimate_heading][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/2\"][ult_animation_block animation=\"fadeInDown\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][dt_fancy_image image_id=\"3171\" width=\"300\" border_radius=\"1px\" caption=\"off\" css=\".vc_custom_1692278929158{border-top-width: 1px !important;border-right-width: 1px !important;border-bottom-width: 1px !important;border-left-width: 1px !important;border-left-color: #059444 !important;border-left-style: solid !important;border-right-color: #059444 !important;border-right-style: solid !important;border-top-color: #059444 !important;border-top-style: solid !important;border-bottom-color: #059444 !important;border-bottom-style: solid !important;border-radius: 1px !important;}\"][ultimate_heading main_heading=\"Quisque sed nibh tristique\" heading_tag=\"h3\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;\"]\r\n<ul>\r\n 	<li>Duis lorem risus, aliquet a auctor a, venenatis in dui. Praesent et eros et risus dapibus placerat hendrerit cursus magna.</li>\r\n 	<li>Praesent et eros et risus dapibus placerat hendrerit cursus magna.</li>\r\n 	<li>aliquet a auctor a, venenatis in dui.</li>\r\n</ul>\r\n[/ultimate_heading][/ult_animation_block][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row]','About us','','inherit','closed','closed','','2917-revision-v1','','','2023-08-18 13:44:56','2023-08-18 13:44:56','',2917,'https://farmchemie.yasithawd.com/?p=3259',0,'revision','',0),(3260,1,'2023-08-18 14:08:20','2023-08-18 14:08:20','','Founded-in-2002','','inherit','open','closed','','founded-in-2002','','','2023-08-18 14:08:20','2023-08-18 14:08:20','',2917,'https://farmchemie.yasithawd.com/wp-content/uploads/2023/08/Founded-in-2002.png',0,'attachment','image/png',0),(3261,1,'2023-08-18 14:08:41','2023-08-18 14:08:41','[vc_row full_width=\"stretch_row_content_no_spaces\"][vc_column][ultimate_heading main_heading=\"Our History\" main_heading_color=\"#762888\"][/ultimate_heading][/vc_column][/vc_row][vc_row][vc_column][vc_row_inner equal_height=\"yes\" content_placement=\"middle\" css=\".vc_custom_1692359205466{margin-top: 35px !important;}\"][vc_column_inner width=\"1/2\"][ult_animation_block animation=\"fadeInLeftBig\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][vc_single_image image=\"3260\" img_size=\"full\" style=\"vc_box_rounded\"][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/2\"][ult_animation_block animation=\"fadeInRightBig\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][ultimate_heading main_heading=\"Founded in 2002\" heading_tag=\"h3\" main_heading_color=\"#039447\" alignment=\"left\" sub_heading_font_size=\"desktop:18px;\"]Founded in 2002 by Mr. Uditha Wanigasinghe, an agriculturist who had a mission to aid valuable livestock producers in the country to enhance the yield and profitability of production. FARMCHEMIE introduced unprecedented solutions and consistent technical services to gain our customers’ trust and became the market leader in animal health products in 2006 within just four years.[/ultimate_heading][/ult_animation_block][/vc_column_inner][/vc_row_inner][vc_row_inner equal_height=\"yes\" rtl_reverse=\"yes\" content_placement=\"middle\" css=\".vc_custom_1692359216075{margin-top: 35px !important;}\"][vc_column_inner width=\"1/2\"][ult_animation_block animation=\"fadeInLeftBig\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][ultimate_heading main_heading=\"2006\" heading_tag=\"h3\" main_heading_color=\"#039447\" alignment=\"left\"]In 2006, the Sri Lankan poultry industry was affected with Avian Influenza which became a difficult period for the growth of FARMCHEMIE. This was the key factor in our decision to diversify into Agro Products. PLANTCHEM &amp; PLANTSEEDS were established to offer solutions in Agro specialty fertilizers, pesticides and seeds to invaluable cultivators.[/ultimate_heading][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/2\"][ult_animation_block animation=\"fadeInRightBig\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][vc_single_image image=\"3107\" img_size=\"full\" style=\"vc_box_border_circle_2\"][/ult_animation_block][/vc_column_inner][/vc_row_inner][vc_row_inner equal_height=\"yes\" content_placement=\"middle\" css=\".vc_custom_1692359231594{margin-top: 35px !important;}\"][vc_column_inner width=\"1/2\"][ult_animation_block animation=\"fadeInLeftBig\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][vc_single_image image=\"3108\" img_size=\"full\" style=\"vc_box_border_circle_2\"][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/2\"][ult_animation_block animation=\"fadeInRightBig\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][ultimate_heading main_heading=\"2010\" heading_tag=\"h3\" main_heading_color=\"#039447\" alignment=\"left\"]In 2010, FEED CHEMIE became the subsequent addition to ever-growing vision of Mr. Uditha Wanigasinghe and entered the Animal Feed Additives market.[/ultimate_heading][/ult_animation_block][/vc_column_inner][/vc_row_inner][vc_row_inner equal_height=\"yes\" rtl_reverse=\"yes\" content_placement=\"middle\" css=\".vc_custom_1692359239274{margin-top: 35px !important;}\"][vc_column_inner width=\"1/2\"][ult_animation_block animation=\"fadeInLeftBig\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][ultimate_heading main_heading=\"2012\" heading_tag=\"h3\" main_heading_color=\"#039447\" alignment=\"left\"]The year 2012 is described as a turning point in our journey as FARMCHEMIE established our first production facility for the manufacturing and packing of animal health products. FARMCHEMIE became the first animal health organization in Sri Lanka to obtain ISO 9001:2015 and WHO GMP International Quality Certification. With our own formulation unit, FARMCHEMIE was able to offer customized solutions to cater the needs of the Sri Lankan Livestock Industry.[/ultimate_heading][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/2\"][ult_animation_block animation=\"fadeInRightBig\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][vc_single_image image=\"3111\" img_size=\"full\" style=\"vc_box_border_circle_2\"][/ult_animation_block][/vc_column_inner][/vc_row_inner][vc_row_inner content_placement=\"middle\" css=\".vc_custom_1692359246626{margin-top: 35px !important;}\"][vc_column_inner width=\"1/2\"][ult_animation_block animation=\"fadeInLeftBig\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][vc_single_image image=\"3112\" img_size=\"full\" style=\"vc_box_border_circle_2\"][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/2\"][ult_animation_block animation=\"fadeInRightBig\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][ultimate_heading main_heading=\"2016\" heading_tag=\"h3\" main_heading_color=\"#039447\" alignment=\"left\"]The year 2016 was another key milestone with the entry to the International Markets. FARMCHEMIE exported our first Feed Premix consignment to India and in 2018 our export operation was distinctly established as FARMCHEMIE MANUFACTURERS, a Board of Investment (BOI) approved entity.[/ultimate_heading][/ult_animation_block][/vc_column_inner][/vc_row_inner][vc_row_inner equal_height=\"yes\" css=\".vc_custom_1692359252258{margin-top: 35px !important;}\"][vc_column_inner width=\"1/2\"][ult_animation_block animation=\"fadeInLeftBig\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][ultimate_heading main_heading=\"Fully automated manufacturing\" heading_tag=\"h3\" main_heading_color=\"#039447\" alignment=\"left\"]FARMCHEMIE MANUFACTURERS has invested in fully automated manufacturing facility from Bühler and became the first Sri Lankan owned company to obtain FAMI-QS International Quality Certification.[/ultimate_heading][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/2\"][ult_animation_block animation=\"fadeInRightBig\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][vc_single_image image=\"3110\" img_size=\"full\" style=\"vc_box_border_circle_2\"][/ult_animation_block][/vc_column_inner][/vc_row_inner][vc_row_inner equal_height=\"yes\" content_placement=\"middle\" css=\".vc_custom_1692359258634{margin-top: 35px !important;}\"][vc_column_inner width=\"1/2\"][ult_animation_block animation=\"fadeInLeftBig\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][vc_single_image image=\"3116\" img_size=\"full\" style=\"vc_box_border_circle_2\"][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/2\"][ult_animation_block animation=\"fadeInRightBig\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][ultimate_heading main_heading=\"Official toll manufacturer partner\" heading_tag=\"h3\" main_heading_color=\"#039447\" alignment=\"left\"]With the trust and reputation built as a reliable manufacturer of animal feed additives and supplements in the global market, several world-renowned international brands have appointed FARMCHEMIE MANUFACTURERS as the official toll manufacturer partner. FARMCHEMIE MANUFACTURERS exports a wide range of products consisting of premixes, specialty feed additives, oral liquid supplements and pet supplements to various markets in South Asia, East Asia, Middle East and Africa.\r\n\r\nFARMCHEMIE, FEED CHEMIE &amp; FARMCHEMIE MANUFACTURERS currently operate under the ownership of our holding company, DYVESTA.\r\n\r\nDYEVSTA has become the pinnacle of Animal Nutrition and Health.\r\n\r\nDYVESTA is Dynamic, through our continuous evolution, growth and progress. DYVESTA is Diverse, in terms of both our business strategy and our community. DYVESTA is Devoted to our valuable business partners through exceptional service.[/ultimate_heading][/ult_animation_block][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row full_width=\"stretch_row\" equal_height=\"yes\" bg_type=\"image\" parallax_style=\"vcpb-vz-jquery\" bg_image_new=\"id^3256|url^https://farmchemie.yasithawd.com/wp-content/uploads/2023/08/Vision-Mission.png|caption^null|alt^null|title^Vision-&amp;-Mission|description^null\" bg_image_repeat=\"no-repeat\" enable_overlay=\"enable_overlay_value\" overlay_color=\"#000000\" overlay_pattern=\"01.png\" overlay_pattern_opacity=\"5\" css=\".vc_custom_1692366072362{margin-top: 35px !important;padding-top: 65px !important;padding-bottom: 100px !important;}\"][vc_column][vc_row_inner equal_height=\"yes\"][vc_column_inner width=\"1/2\"][ult_animation_block animation=\"fadeInLeftBig\" animation_duration=\"2\" animation_delay=\"0\" animation_iteration_count=\"1\"][ultimate_heading main_heading=\"Vision\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\"]To be the customers’ first and best choice by ensuring outstanding satisfaction through a well-trained and dedicated team. Prompt and quality solutions to our customers’ requirements will determine the increase of return on investment for us.[/ultimate_heading][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/2\"][ult_animation_block animation=\"fadeInRightBig\" animation_duration=\"2\" animation_delay=\"0\" animation_iteration_count=\"1\"][ultimate_heading main_heading=\"Mission\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\"]To become a world renowned manufacturer of Animal Health products and a trusted partner among our stakeholders for our integrity as well as for providing effective solutions[/ultimate_heading][/ult_animation_block][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row css=\".vc_custom_1684836308288{margin-top: 15px !important;}\"][vc_column][ultimate_heading main_heading=\"Achievements\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;\"][/ultimate_heading][vc_row_inner gap=\"20\"][vc_column_inner width=\"1/2\" css=\".vc_custom_1691995519863{background-color: #f4ab20 !important;border: 1px solid #f4ab20 !important;border-radius: 35px !important;}\"][bsf-info-box icon_type=\"custom\" icon_img=\"id^3117|url^https://farmchemie.yasithawd.com/wp-content/uploads/2023/08/Pink_-H.png|caption^null|alt^null|title^Pink_-H|description^null\" img_width=\"60\" icon_style=\"advanced\" icon_border_style=\"solid\" icon_color_border=\"#ffffff\" icon_border_size=\"1\" icon_border_radius=\"500\" icon_border_spacing=\"1\" title=\"First Free Sale Certificate obtained from Veterinary Drug Control Authority (VDCA) for Veterinary Pharmaceuticals\" title_font_style=\"font-weight:bold;\" title_font_size=\"desktop:20px;\"][/bsf-info-box][/vc_column_inner][vc_column_inner width=\"1/2\" css=\".vc_custom_1691995661095{background-color: #722f8b !important;border: 1px solid #722f8b !important;border-radius: 35px !important;}\"][bsf-info-box icon_type=\"custom\" icon_img=\"id^3117|url^https://farmchemie.yasithawd.com/wp-content/uploads/2023/08/Pink_-H.png|caption^null|alt^null|title^Pink_-H|description^null\" img_width=\"60\" icon_style=\"advanced\" icon_border_style=\"solid\" icon_color_border=\"#ffffff\" icon_border_size=\"1\" icon_border_radius=\"500\" icon_border_spacing=\"1\" title=\"First ISO 9001: 2015 ,WHO-GMP Quality Management systems certified Animal Health company in Sri Lanka since August, 2012\" title_font_style=\"font-weight:bold;\" title_font_color=\"#ffffff\" title_font_size=\"desktop:20px;\"][/bsf-info-box][/vc_column_inner][/vc_row_inner][vc_row_inner gap=\"20\"][vc_column_inner width=\"1/2\" css=\".vc_custom_1691995661095{background-color: #722f8b !important;border: 1px solid #722f8b !important;border-radius: 35px !important;}\"][bsf-info-box icon_type=\"custom\" icon_img=\"id^3117|url^https://farmchemie.yasithawd.com/wp-content/uploads/2023/08/Pink_-H.png|caption^null|alt^null|title^Pink_-H|description^null\" img_width=\"60\" icon_style=\"advanced\" icon_border_style=\"solid\" icon_color_border=\"#ffffff\" icon_border_size=\"1\" icon_border_radius=\"500\" icon_border_spacing=\"1\" title=\"First FAMI-QS certified company in sri lanka\" title_font_style=\"font-weight:bold;\" title_font_color=\"#ffffff\" title_font_size=\"desktop:20px;\"][/bsf-info-box][/vc_column_inner][vc_column_inner width=\"1/2\" css=\".vc_custom_1691995519863{background-color: #f4ab20 !important;border: 1px solid #f4ab20 !important;border-radius: 35px !important;}\"][bsf-info-box icon_type=\"custom\" icon_img=\"id^3117|url^https://farmchemie.yasithawd.com/wp-content/uploads/2023/08/Pink_-H.png|caption^null|alt^null|title^Pink_-H|description^null\" img_width=\"60\" icon_style=\"advanced\" icon_border_style=\"solid\" icon_color_border=\"#ffffff\" icon_border_size=\"1\" icon_border_radius=\"500\" icon_border_spacing=\"1\" title=\"First Certificate of Ethical Trading certified in Livestock industry\" title_font_style=\"font-weight:bold;\" title_font_size=\"desktop:20px;\"][/bsf-info-box][/vc_column_inner][/vc_row_inner][vc_row_inner gap=\"20\"][vc_column_inner width=\"1/4\" css=\".vc_custom_1691996718116{border-radius: 35px !important;}\"][/vc_column_inner][vc_column_inner width=\"2/4\" css=\".vc_custom_1691995519863{background-color: #f4ab20 !important;border: 1px solid #f4ab20 !important;border-radius: 35px !important;}\"][bsf-info-box icon_type=\"custom\" icon_img=\"id^3117|url^https://farmchemie.yasithawd.com/wp-content/uploads/2023/08/Pink_-H.png|caption^null|alt^null|title^Pink_-H|description^null\" img_width=\"60\" icon_style=\"advanced\" icon_border_style=\"solid\" icon_color_border=\"#ffffff\" icon_border_size=\"1\" icon_border_radius=\"500\" icon_border_spacing=\"1\" title=\"First Silver awarded company at National Exports Awards in Livestock industry\" title_font_style=\"font-weight:bold;\" title_font_size=\"desktop:20px;\"][/bsf-info-box][/vc_column_inner][vc_column_inner width=\"1/4\"][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner width=\"1/6\"][/vc_column_inner][vc_column_inner width=\"2/3\"][vc_single_image image=\"3126\" img_size=\"full\" alignment=\"center\"][vc_single_image image=\"3125\" img_size=\"full\" alignment=\"center\"][/vc_column_inner][vc_column_inner width=\"1/6\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row][vc_column][ultimate_heading main_heading=\"Board Of Directors\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;margin-bottom:35px;\"][/ultimate_heading][ultimate_carousel slides_on_desk=\"3\" slides_on_mob=\"1\" arrow_style=\"square-bg\" arrow_bg_color=\"#039447\" arrow_color=\"#ffffff\" next_icon=\"ultsl-arrow-right6\" prev_icon=\"ultsl-arrow-left6\" dots_color=\"#039447\" item_animation=\"fadeIn\"][vc_row_inner][vc_column_inner][dt_fancy_image image_id=\"3170\" width=\"300\" border_radius=\"1px\" caption=\"off\" css=\".vc_custom_1692278936750{border-top-width: 1px !important;border-right-width: 1px !important;border-bottom-width: 1px !important;border-left-width: 1px !important;border-left-color: #059444 !important;border-left-style: solid !important;border-right-color: #059444 !important;border-right-style: solid !important;border-top-color: #059444 !important;border-top-style: solid !important;border-bottom-color: #059444 !important;border-bottom-style: solid !important;border-radius: 1px !important;}\"][ultimate_heading main_heading=\"Quisque sed nibh tristique\" heading_tag=\"h3\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;\"]Duis lorem risus, aliquet a auctor a, venenatis in dui. Praesent et eros et risus dapibus placerat hendrerit cursus magna.[/ultimate_heading][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner][dt_fancy_image image_id=\"3170\" width=\"300\" border_radius=\"1px\" caption=\"off\" css=\".vc_custom_1692278936750{border-top-width: 1px !important;border-right-width: 1px !important;border-bottom-width: 1px !important;border-left-width: 1px !important;border-left-color: #059444 !important;border-left-style: solid !important;border-right-color: #059444 !important;border-right-style: solid !important;border-top-color: #059444 !important;border-top-style: solid !important;border-bottom-color: #059444 !important;border-bottom-style: solid !important;border-radius: 1px !important;}\"][ultimate_heading main_heading=\"Quisque sed nibh tristique\" heading_tag=\"h3\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;\"]Duis lorem risus, aliquet a auctor a, venenatis in dui. Praesent et eros et risus dapibus placerat hendrerit cursus magna.[/ultimate_heading][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner][dt_fancy_image image_id=\"3171\" width=\"300\" border_radius=\"1px\" caption=\"off\" css=\".vc_custom_1692278929158{border-top-width: 1px !important;border-right-width: 1px !important;border-bottom-width: 1px !important;border-left-width: 1px !important;border-left-color: #059444 !important;border-left-style: solid !important;border-right-color: #059444 !important;border-right-style: solid !important;border-top-color: #059444 !important;border-top-style: solid !important;border-bottom-color: #059444 !important;border-bottom-style: solid !important;border-radius: 1px !important;}\"][ultimate_heading main_heading=\"Quisque sed nibh tristique\" heading_tag=\"h3\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;\"]Duis lorem risus, aliquet a auctor a, venenatis in dui. Praesent et eros et risus dapibus placerat hendrerit cursus magna.[/ultimate_heading][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner][dt_fancy_image image_id=\"3172\" width=\"300\" border_radius=\"1px\" caption=\"off\" css=\".vc_custom_1692278922309{border-top-width: 1px !important;border-right-width: 1px !important;border-bottom-width: 1px !important;border-left-width: 1px !important;border-left-color: #059444 !important;border-left-style: solid !important;border-right-color: #059444 !important;border-right-style: solid !important;border-top-color: #059444 !important;border-top-style: solid !important;border-bottom-color: #059444 !important;border-bottom-style: solid !important;border-radius: 1px !important;}\"][ultimate_heading main_heading=\"Quisque sed nibh tristique\" heading_tag=\"h3\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;\"]Duis lorem risus, aliquet a auctor a, venenatis in dui. Praesent et eros et risus dapibus placerat hendrerit cursus magna.[/ultimate_heading][/vc_column_inner][/vc_row_inner][/ultimate_carousel][/vc_column][/vc_row][vc_row][vc_column][ultimate_heading main_heading=\"Board Of Directors\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;margin-bottom:35px;\"][/ultimate_heading][vc_row_inner][vc_column_inner width=\"1/3\"][ult_animation_block animation=\"fadeInUp\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][dt_fancy_image image_id=\"3172\" width=\"300\" border_radius=\"1px\" caption=\"off\" css=\".vc_custom_1692278922309{border-top-width: 1px !important;border-right-width: 1px !important;border-bottom-width: 1px !important;border-left-width: 1px !important;border-left-color: #059444 !important;border-left-style: solid !important;border-right-color: #059444 !important;border-right-style: solid !important;border-top-color: #059444 !important;border-top-style: solid !important;border-bottom-color: #059444 !important;border-bottom-style: solid !important;border-radius: 1px !important;}\"][ultimate_heading main_heading=\"Quisque sed nibh tristique\" heading_tag=\"h3\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;\"]\r\n<ul>\r\n 	<li>Duis lorem risus, aliquet a auctor a, venenatis in dui. Praesent et eros et risus dapibus placerat hendrerit cursus magna.</li>\r\n 	<li>Praesent et eros et risus dapibus placerat hendrerit cursus magna.</li>\r\n 	<li>aliquet a auctor a, venenatis in dui.</li>\r\n</ul>\r\n[/ultimate_heading][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/3\"][ult_animation_block animation=\"fadeInDown\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][dt_fancy_image image_id=\"3171\" width=\"300\" border_radius=\"1px\" caption=\"off\" css=\".vc_custom_1692278929158{border-top-width: 1px !important;border-right-width: 1px !important;border-bottom-width: 1px !important;border-left-width: 1px !important;border-left-color: #059444 !important;border-left-style: solid !important;border-right-color: #059444 !important;border-right-style: solid !important;border-top-color: #059444 !important;border-top-style: solid !important;border-bottom-color: #059444 !important;border-bottom-style: solid !important;border-radius: 1px !important;}\"][ultimate_heading main_heading=\"Quisque sed nibh tristique\" heading_tag=\"h3\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;\"]\r\n<ul>\r\n 	<li>Duis lorem risus, aliquet a auctor a, venenatis in dui. Praesent et eros et risus dapibus placerat hendrerit cursus magna.</li>\r\n 	<li>Praesent et eros et risus dapibus placerat hendrerit cursus magna.</li>\r\n 	<li>aliquet a auctor a, venenatis in dui.</li>\r\n</ul>\r\n[/ultimate_heading][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/3\"][ult_animation_block animation=\"fadeInUp\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][dt_fancy_image image_id=\"3170\" width=\"300\" border_radius=\"1px\" caption=\"off\" css=\".vc_custom_1692278936750{border-top-width: 1px !important;border-right-width: 1px !important;border-bottom-width: 1px !important;border-left-width: 1px !important;border-left-color: #059444 !important;border-left-style: solid !important;border-right-color: #059444 !important;border-right-style: solid !important;border-top-color: #059444 !important;border-top-style: solid !important;border-bottom-color: #059444 !important;border-bottom-style: solid !important;border-radius: 1px !important;}\"][ultimate_heading main_heading=\"Quisque sed nibh tristique\" heading_tag=\"h3\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;\"]\r\n<ul>\r\n 	<li>Duis lorem risus, aliquet a auctor a, venenatis in dui. Praesent et eros et risus dapibus placerat hendrerit cursus magna.</li>\r\n 	<li>Praesent et eros et risus dapibus placerat hendrerit cursus magna.</li>\r\n 	<li>aliquet a auctor a, venenatis in dui.</li>\r\n</ul>\r\n[/ultimate_heading][/ult_animation_block][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row][vc_column][ultimate_heading main_heading=\"Executive Directors\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;margin-bottom:35px;\"][/ultimate_heading][vc_row_inner][vc_column_inner width=\"1/5\"][ult_animation_block animation=\"fadeInUp\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][dt_fancy_image image_id=\"3172\" width=\"300\" border_radius=\"1px\" caption=\"off\" css=\".vc_custom_1692278922309{border-top-width: 1px !important;border-right-width: 1px !important;border-bottom-width: 1px !important;border-left-width: 1px !important;border-left-color: #059444 !important;border-left-style: solid !important;border-right-color: #059444 !important;border-right-style: solid !important;border-top-color: #059444 !important;border-top-style: solid !important;border-bottom-color: #059444 !important;border-bottom-style: solid !important;border-radius: 1px !important;}\"][ultimate_heading main_heading=\"Quisque sed nibh tristique\" heading_tag=\"h3\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;\"]\r\n<ul>\r\n 	<li>Duis lorem risus, aliquet a auctor a, venenatis in dui. Praesent et eros et risus dapibus placerat hendrerit cursus magna.</li>\r\n 	<li>Praesent et eros et risus dapibus placerat hendrerit cursus magna.</li>\r\n 	<li>aliquet a auctor a, venenatis in dui.</li>\r\n</ul>\r\n[/ultimate_heading][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/5\"][ult_animation_block animation=\"fadeInDown\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][dt_fancy_image image_id=\"3171\" width=\"300\" border_radius=\"1px\" caption=\"off\" css=\".vc_custom_1692278929158{border-top-width: 1px !important;border-right-width: 1px !important;border-bottom-width: 1px !important;border-left-width: 1px !important;border-left-color: #059444 !important;border-left-style: solid !important;border-right-color: #059444 !important;border-right-style: solid !important;border-top-color: #059444 !important;border-top-style: solid !important;border-bottom-color: #059444 !important;border-bottom-style: solid !important;border-radius: 1px !important;}\"][ultimate_heading main_heading=\"Quisque sed nibh tristique\" heading_tag=\"h3\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;\"]\r\n<ul>\r\n 	<li>Duis lorem risus, aliquet a auctor a, venenatis in dui. Praesent et eros et risus dapibus placerat hendrerit cursus magna.</li>\r\n 	<li>Praesent et eros et risus dapibus placerat hendrerit cursus magna.</li>\r\n 	<li>aliquet a auctor a, venenatis in dui.</li>\r\n</ul>\r\n[/ultimate_heading][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/5\"][ult_animation_block animation=\"fadeInUp\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][dt_fancy_image image_id=\"3170\" width=\"300\" border_radius=\"1px\" caption=\"off\" css=\".vc_custom_1692278936750{border-top-width: 1px !important;border-right-width: 1px !important;border-bottom-width: 1px !important;border-left-width: 1px !important;border-left-color: #059444 !important;border-left-style: solid !important;border-right-color: #059444 !important;border-right-style: solid !important;border-top-color: #059444 !important;border-top-style: solid !important;border-bottom-color: #059444 !important;border-bottom-style: solid !important;border-radius: 1px !important;}\"][ultimate_heading main_heading=\"Quisque sed nibh tristique\" heading_tag=\"h3\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;\"]\r\n<ul>\r\n 	<li>Duis lorem risus, aliquet a auctor a, venenatis in dui. Praesent et eros et risus dapibus placerat hendrerit cursus magna.</li>\r\n 	<li>Praesent et eros et risus dapibus placerat hendrerit cursus magna.</li>\r\n 	<li>aliquet a auctor a, venenatis in dui.</li>\r\n</ul>\r\n[/ultimate_heading][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/5\"][ult_animation_block animation=\"fadeInDown\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][dt_fancy_image image_id=\"3170\" width=\"300\" border_radius=\"1px\" caption=\"off\" css=\".vc_custom_1692278936750{border-top-width: 1px !important;border-right-width: 1px !important;border-bottom-width: 1px !important;border-left-width: 1px !important;border-left-color: #059444 !important;border-left-style: solid !important;border-right-color: #059444 !important;border-right-style: solid !important;border-top-color: #059444 !important;border-top-style: solid !important;border-bottom-color: #059444 !important;border-bottom-style: solid !important;border-radius: 1px !important;}\"][ultimate_heading main_heading=\"Quisque sed nibh tristique\" heading_tag=\"h3\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;\"]\r\n<ul>\r\n 	<li>Duis lorem risus, aliquet a auctor a, venenatis in dui. Praesent et eros et risus dapibus placerat hendrerit cursus magna.</li>\r\n 	<li>Praesent et eros et risus dapibus placerat hendrerit cursus magna.</li>\r\n 	<li>aliquet a auctor a, venenatis in dui.</li>\r\n</ul>\r\n[/ultimate_heading][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/5\"][ult_animation_block animation=\"fadeInDown\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][dt_fancy_image image_id=\"3171\" width=\"300\" border_radius=\"1px\" caption=\"off\" css=\".vc_custom_1692278929158{border-top-width: 1px !important;border-right-width: 1px !important;border-bottom-width: 1px !important;border-left-width: 1px !important;border-left-color: #059444 !important;border-left-style: solid !important;border-right-color: #059444 !important;border-right-style: solid !important;border-top-color: #059444 !important;border-top-style: solid !important;border-bottom-color: #059444 !important;border-bottom-style: solid !important;border-radius: 1px !important;}\"][ultimate_heading main_heading=\"Quisque sed nibh tristique\" heading_tag=\"h3\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;\"]\r\n<ul>\r\n 	<li>Duis lorem risus, aliquet a auctor a, venenatis in dui. Praesent et eros et risus dapibus placerat hendrerit cursus magna.</li>\r\n 	<li>Praesent et eros et risus dapibus placerat hendrerit cursus magna.</li>\r\n 	<li>aliquet a auctor a, venenatis in dui.</li>\r\n</ul>\r\n[/ultimate_heading][/ult_animation_block][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner width=\"2/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row][vc_column][ultimate_heading main_heading=\"Next Generation\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;margin-bottom:35px;\"][/ultimate_heading][vc_row_inner][vc_column_inner width=\"1/2\"][ult_animation_block animation=\"fadeInUp\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][dt_fancy_image image_id=\"3172\" width=\"300\" border_radius=\"1px\" caption=\"off\" css=\".vc_custom_1692278922309{border-top-width: 1px !important;border-right-width: 1px !important;border-bottom-width: 1px !important;border-left-width: 1px !important;border-left-color: #059444 !important;border-left-style: solid !important;border-right-color: #059444 !important;border-right-style: solid !important;border-top-color: #059444 !important;border-top-style: solid !important;border-bottom-color: #059444 !important;border-bottom-style: solid !important;border-radius: 1px !important;}\"][ultimate_heading main_heading=\"Quisque sed nibh tristique\" heading_tag=\"h3\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;\"]\r\n<ul>\r\n 	<li>Duis lorem risus, aliquet a auctor a, venenatis in dui. Praesent et eros et risus dapibus placerat hendrerit cursus magna.</li>\r\n 	<li>Praesent et eros et risus dapibus placerat hendrerit cursus magna.</li>\r\n 	<li>aliquet a auctor a, venenatis in dui.</li>\r\n</ul>\r\n[/ultimate_heading][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/2\"][ult_animation_block animation=\"fadeInDown\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][dt_fancy_image image_id=\"3171\" width=\"300\" border_radius=\"1px\" caption=\"off\" css=\".vc_custom_1692278929158{border-top-width: 1px !important;border-right-width: 1px !important;border-bottom-width: 1px !important;border-left-width: 1px !important;border-left-color: #059444 !important;border-left-style: solid !important;border-right-color: #059444 !important;border-right-style: solid !important;border-top-color: #059444 !important;border-top-style: solid !important;border-bottom-color: #059444 !important;border-bottom-style: solid !important;border-radius: 1px !important;}\"][ultimate_heading main_heading=\"Quisque sed nibh tristique\" heading_tag=\"h3\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;\"]\r\n<ul>\r\n 	<li>Duis lorem risus, aliquet a auctor a, venenatis in dui. Praesent et eros et risus dapibus placerat hendrerit cursus magna.</li>\r\n 	<li>Praesent et eros et risus dapibus placerat hendrerit cursus magna.</li>\r\n 	<li>aliquet a auctor a, venenatis in dui.</li>\r\n</ul>\r\n[/ultimate_heading][/ult_animation_block][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row]','About us','','inherit','closed','closed','','2917-revision-v1','','','2023-08-18 14:08:41','2023-08-18 14:08:41','',2917,'https://farmchemie.yasithawd.com/?p=3261',0,'revision','',0),(3262,1,'2023-08-18 14:26:23','2023-08-18 14:26:23','','Fully-automated-manufacturing','','inherit','open','closed','','fully-automated-manufacturing','','','2023-08-18 14:26:23','2023-08-18 14:26:23','',2917,'https://farmchemie.yasithawd.com/wp-content/uploads/2023/08/Fully-automated-manufacturing.png',0,'attachment','image/png',0),(3263,1,'2023-08-18 14:26:36','2023-08-18 14:26:36','[vc_row full_width=\"stretch_row_content_no_spaces\"][vc_column][ultimate_heading main_heading=\"Our History\" main_heading_color=\"#762888\"][/ultimate_heading][/vc_column][/vc_row][vc_row][vc_column][vc_row_inner equal_height=\"yes\" content_placement=\"middle\" css=\".vc_custom_1692359205466{margin-top: 35px !important;}\"][vc_column_inner width=\"1/2\"][ult_animation_block animation=\"fadeInLeftBig\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][vc_single_image image=\"3260\" img_size=\"full\" style=\"vc_box_rounded\"][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/2\"][ult_animation_block animation=\"fadeInRightBig\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][ultimate_heading main_heading=\"Founded in 2002\" heading_tag=\"h3\" main_heading_color=\"#039447\" alignment=\"left\" sub_heading_font_size=\"desktop:18px;\"]Founded in 2002 by Mr. Uditha Wanigasinghe, an agriculturist who had a mission to aid valuable livestock producers in the country to enhance the yield and profitability of production. FARMCHEMIE introduced unprecedented solutions and consistent technical services to gain our customers’ trust and became the market leader in animal health products in 2006 within just four years.[/ultimate_heading][/ult_animation_block][/vc_column_inner][/vc_row_inner][vc_row_inner equal_height=\"yes\" rtl_reverse=\"yes\" content_placement=\"middle\" css=\".vc_custom_1692359216075{margin-top: 35px !important;}\"][vc_column_inner width=\"1/2\"][ult_animation_block animation=\"fadeInLeftBig\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][ultimate_heading main_heading=\"2006\" heading_tag=\"h3\" main_heading_color=\"#039447\" alignment=\"left\"]In 2006, the Sri Lankan poultry industry was affected with Avian Influenza which became a difficult period for the growth of FARMCHEMIE. This was the key factor in our decision to diversify into Agro Products. PLANTCHEM &amp; PLANTSEEDS were established to offer solutions in Agro specialty fertilizers, pesticides and seeds to invaluable cultivators.[/ultimate_heading][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/2\"][ult_animation_block animation=\"fadeInRightBig\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][vc_single_image image=\"3107\" img_size=\"full\" style=\"vc_box_border_circle_2\"][/ult_animation_block][/vc_column_inner][/vc_row_inner][vc_row_inner equal_height=\"yes\" content_placement=\"middle\" css=\".vc_custom_1692359231594{margin-top: 35px !important;}\"][vc_column_inner width=\"1/2\"][ult_animation_block animation=\"fadeInLeftBig\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][vc_single_image image=\"3108\" img_size=\"full\" style=\"vc_box_border_circle_2\"][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/2\"][ult_animation_block animation=\"fadeInRightBig\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][ultimate_heading main_heading=\"2010\" heading_tag=\"h3\" main_heading_color=\"#039447\" alignment=\"left\"]In 2010, FEED CHEMIE became the subsequent addition to ever-growing vision of Mr. Uditha Wanigasinghe and entered the Animal Feed Additives market.[/ultimate_heading][/ult_animation_block][/vc_column_inner][/vc_row_inner][vc_row_inner equal_height=\"yes\" rtl_reverse=\"yes\" content_placement=\"middle\" css=\".vc_custom_1692359239274{margin-top: 35px !important;}\"][vc_column_inner width=\"1/2\"][ult_animation_block animation=\"fadeInLeftBig\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][ultimate_heading main_heading=\"2012\" heading_tag=\"h3\" main_heading_color=\"#039447\" alignment=\"left\"]The year 2012 is described as a turning point in our journey as FARMCHEMIE established our first production facility for the manufacturing and packing of animal health products. FARMCHEMIE became the first animal health organization in Sri Lanka to obtain ISO 9001:2015 and WHO GMP International Quality Certification. With our own formulation unit, FARMCHEMIE was able to offer customized solutions to cater the needs of the Sri Lankan Livestock Industry.[/ultimate_heading][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/2\"][ult_animation_block animation=\"fadeInRightBig\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][vc_single_image image=\"3111\" img_size=\"full\" style=\"vc_box_border_circle_2\"][/ult_animation_block][/vc_column_inner][/vc_row_inner][vc_row_inner content_placement=\"middle\" css=\".vc_custom_1692359246626{margin-top: 35px !important;}\"][vc_column_inner width=\"1/2\"][ult_animation_block animation=\"fadeInLeftBig\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][vc_single_image image=\"3112\" img_size=\"full\" style=\"vc_box_border_circle_2\"][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/2\"][ult_animation_block animation=\"fadeInRightBig\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][ultimate_heading main_heading=\"2016\" heading_tag=\"h3\" main_heading_color=\"#039447\" alignment=\"left\"]The year 2016 was another key milestone with the entry to the International Markets. FARMCHEMIE exported our first Feed Premix consignment to India and in 2018 our export operation was distinctly established as FARMCHEMIE MANUFACTURERS, a Board of Investment (BOI) approved entity.[/ultimate_heading][/ult_animation_block][/vc_column_inner][/vc_row_inner][vc_row_inner equal_height=\"yes\" css=\".vc_custom_1692359252258{margin-top: 35px !important;}\"][vc_column_inner width=\"1/2\"][ult_animation_block animation=\"fadeInLeftBig\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][ultimate_heading main_heading=\"Fully automated manufacturing\" heading_tag=\"h3\" main_heading_color=\"#039447\" alignment=\"left\"]FARMCHEMIE MANUFACTURERS has invested in fully automated manufacturing facility from Bühler and became the first Sri Lankan owned company to obtain FAMI-QS International Quality Certification.[/ultimate_heading][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/2\"][ult_animation_block animation=\"fadeInRightBig\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][vc_single_image image=\"3262\" img_size=\"full\" style=\"vc_box_border_circle_2\"][/ult_animation_block][/vc_column_inner][/vc_row_inner][vc_row_inner equal_height=\"yes\" content_placement=\"middle\" css=\".vc_custom_1692359258634{margin-top: 35px !important;}\"][vc_column_inner width=\"1/2\"][ult_animation_block animation=\"fadeInLeftBig\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][vc_single_image image=\"3116\" img_size=\"full\" style=\"vc_box_border_circle_2\"][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/2\"][ult_animation_block animation=\"fadeInRightBig\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][ultimate_heading main_heading=\"Official toll manufacturer partner\" heading_tag=\"h3\" main_heading_color=\"#039447\" alignment=\"left\"]With the trust and reputation built as a reliable manufacturer of animal feed additives and supplements in the global market, several world-renowned international brands have appointed FARMCHEMIE MANUFACTURERS as the official toll manufacturer partner. FARMCHEMIE MANUFACTURERS exports a wide range of products consisting of premixes, specialty feed additives, oral liquid supplements and pet supplements to various markets in South Asia, East Asia, Middle East and Africa.\r\n\r\nFARMCHEMIE, FEED CHEMIE &amp; FARMCHEMIE MANUFACTURERS currently operate under the ownership of our holding company, DYVESTA.\r\n\r\nDYEVSTA has become the pinnacle of Animal Nutrition and Health.\r\n\r\nDYVESTA is Dynamic, through our continuous evolution, growth and progress. DYVESTA is Diverse, in terms of both our business strategy and our community. DYVESTA is Devoted to our valuable business partners through exceptional service.[/ultimate_heading][/ult_animation_block][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row full_width=\"stretch_row\" equal_height=\"yes\" bg_type=\"image\" parallax_style=\"vcpb-vz-jquery\" bg_image_new=\"id^3256|url^https://farmchemie.yasithawd.com/wp-content/uploads/2023/08/Vision-Mission.png|caption^null|alt^null|title^Vision-&amp;-Mission|description^null\" bg_image_repeat=\"no-repeat\" enable_overlay=\"enable_overlay_value\" overlay_color=\"#000000\" overlay_pattern=\"01.png\" overlay_pattern_opacity=\"5\" css=\".vc_custom_1692366072362{margin-top: 35px !important;padding-top: 65px !important;padding-bottom: 100px !important;}\"][vc_column][vc_row_inner equal_height=\"yes\"][vc_column_inner width=\"1/2\"][ult_animation_block animation=\"fadeInLeftBig\" animation_duration=\"2\" animation_delay=\"0\" animation_iteration_count=\"1\"][ultimate_heading main_heading=\"Vision\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\"]To be the customers’ first and best choice by ensuring outstanding satisfaction through a well-trained and dedicated team. Prompt and quality solutions to our customers’ requirements will determine the increase of return on investment for us.[/ultimate_heading][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/2\"][ult_animation_block animation=\"fadeInRightBig\" animation_duration=\"2\" animation_delay=\"0\" animation_iteration_count=\"1\"][ultimate_heading main_heading=\"Mission\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\"]To become a world renowned manufacturer of Animal Health products and a trusted partner among our stakeholders for our integrity as well as for providing effective solutions[/ultimate_heading][/ult_animation_block][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row css=\".vc_custom_1684836308288{margin-top: 15px !important;}\"][vc_column][ultimate_heading main_heading=\"Achievements\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;\"][/ultimate_heading][vc_row_inner gap=\"20\"][vc_column_inner width=\"1/2\" css=\".vc_custom_1691995519863{background-color: #f4ab20 !important;border: 1px solid #f4ab20 !important;border-radius: 35px !important;}\"][bsf-info-box icon_type=\"custom\" icon_img=\"id^3117|url^https://farmchemie.yasithawd.com/wp-content/uploads/2023/08/Pink_-H.png|caption^null|alt^null|title^Pink_-H|description^null\" img_width=\"60\" icon_style=\"advanced\" icon_border_style=\"solid\" icon_color_border=\"#ffffff\" icon_border_size=\"1\" icon_border_radius=\"500\" icon_border_spacing=\"1\" title=\"First Free Sale Certificate obtained from Veterinary Drug Control Authority (VDCA) for Veterinary Pharmaceuticals\" title_font_style=\"font-weight:bold;\" title_font_size=\"desktop:20px;\"][/bsf-info-box][/vc_column_inner][vc_column_inner width=\"1/2\" css=\".vc_custom_1691995661095{background-color: #722f8b !important;border: 1px solid #722f8b !important;border-radius: 35px !important;}\"][bsf-info-box icon_type=\"custom\" icon_img=\"id^3117|url^https://farmchemie.yasithawd.com/wp-content/uploads/2023/08/Pink_-H.png|caption^null|alt^null|title^Pink_-H|description^null\" img_width=\"60\" icon_style=\"advanced\" icon_border_style=\"solid\" icon_color_border=\"#ffffff\" icon_border_size=\"1\" icon_border_radius=\"500\" icon_border_spacing=\"1\" title=\"First ISO 9001: 2015 ,WHO-GMP Quality Management systems certified Animal Health company in Sri Lanka since August, 2012\" title_font_style=\"font-weight:bold;\" title_font_color=\"#ffffff\" title_font_size=\"desktop:20px;\"][/bsf-info-box][/vc_column_inner][/vc_row_inner][vc_row_inner gap=\"20\"][vc_column_inner width=\"1/2\" css=\".vc_custom_1691995661095{background-color: #722f8b !important;border: 1px solid #722f8b !important;border-radius: 35px !important;}\"][bsf-info-box icon_type=\"custom\" icon_img=\"id^3117|url^https://farmchemie.yasithawd.com/wp-content/uploads/2023/08/Pink_-H.png|caption^null|alt^null|title^Pink_-H|description^null\" img_width=\"60\" icon_style=\"advanced\" icon_border_style=\"solid\" icon_color_border=\"#ffffff\" icon_border_size=\"1\" icon_border_radius=\"500\" icon_border_spacing=\"1\" title=\"First FAMI-QS certified company in sri lanka\" title_font_style=\"font-weight:bold;\" title_font_color=\"#ffffff\" title_font_size=\"desktop:20px;\"][/bsf-info-box][/vc_column_inner][vc_column_inner width=\"1/2\" css=\".vc_custom_1691995519863{background-color: #f4ab20 !important;border: 1px solid #f4ab20 !important;border-radius: 35px !important;}\"][bsf-info-box icon_type=\"custom\" icon_img=\"id^3117|url^https://farmchemie.yasithawd.com/wp-content/uploads/2023/08/Pink_-H.png|caption^null|alt^null|title^Pink_-H|description^null\" img_width=\"60\" icon_style=\"advanced\" icon_border_style=\"solid\" icon_color_border=\"#ffffff\" icon_border_size=\"1\" icon_border_radius=\"500\" icon_border_spacing=\"1\" title=\"First Certificate of Ethical Trading certified in Livestock industry\" title_font_style=\"font-weight:bold;\" title_font_size=\"desktop:20px;\"][/bsf-info-box][/vc_column_inner][/vc_row_inner][vc_row_inner gap=\"20\"][vc_column_inner width=\"1/4\" css=\".vc_custom_1691996718116{border-radius: 35px !important;}\"][/vc_column_inner][vc_column_inner width=\"2/4\" css=\".vc_custom_1691995519863{background-color: #f4ab20 !important;border: 1px solid #f4ab20 !important;border-radius: 35px !important;}\"][bsf-info-box icon_type=\"custom\" icon_img=\"id^3117|url^https://farmchemie.yasithawd.com/wp-content/uploads/2023/08/Pink_-H.png|caption^null|alt^null|title^Pink_-H|description^null\" img_width=\"60\" icon_style=\"advanced\" icon_border_style=\"solid\" icon_color_border=\"#ffffff\" icon_border_size=\"1\" icon_border_radius=\"500\" icon_border_spacing=\"1\" title=\"First Silver awarded company at National Exports Awards in Livestock industry\" title_font_style=\"font-weight:bold;\" title_font_size=\"desktop:20px;\"][/bsf-info-box][/vc_column_inner][vc_column_inner width=\"1/4\"][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner width=\"1/6\"][/vc_column_inner][vc_column_inner width=\"2/3\"][vc_single_image image=\"3126\" img_size=\"full\" alignment=\"center\"][vc_single_image image=\"3125\" img_size=\"full\" alignment=\"center\"][/vc_column_inner][vc_column_inner width=\"1/6\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row][vc_column][ultimate_heading main_heading=\"Board Of Directors\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;margin-bottom:35px;\"][/ultimate_heading][ultimate_carousel slides_on_desk=\"3\" slides_on_mob=\"1\" arrow_style=\"square-bg\" arrow_bg_color=\"#039447\" arrow_color=\"#ffffff\" next_icon=\"ultsl-arrow-right6\" prev_icon=\"ultsl-arrow-left6\" dots_color=\"#039447\" item_animation=\"fadeIn\"][vc_row_inner][vc_column_inner][dt_fancy_image image_id=\"3170\" width=\"300\" border_radius=\"1px\" caption=\"off\" css=\".vc_custom_1692278936750{border-top-width: 1px !important;border-right-width: 1px !important;border-bottom-width: 1px !important;border-left-width: 1px !important;border-left-color: #059444 !important;border-left-style: solid !important;border-right-color: #059444 !important;border-right-style: solid !important;border-top-color: #059444 !important;border-top-style: solid !important;border-bottom-color: #059444 !important;border-bottom-style: solid !important;border-radius: 1px !important;}\"][ultimate_heading main_heading=\"Quisque sed nibh tristique\" heading_tag=\"h3\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;\"]Duis lorem risus, aliquet a auctor a, venenatis in dui. Praesent et eros et risus dapibus placerat hendrerit cursus magna.[/ultimate_heading][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner][dt_fancy_image image_id=\"3170\" width=\"300\" border_radius=\"1px\" caption=\"off\" css=\".vc_custom_1692278936750{border-top-width: 1px !important;border-right-width: 1px !important;border-bottom-width: 1px !important;border-left-width: 1px !important;border-left-color: #059444 !important;border-left-style: solid !important;border-right-color: #059444 !important;border-right-style: solid !important;border-top-color: #059444 !important;border-top-style: solid !important;border-bottom-color: #059444 !important;border-bottom-style: solid !important;border-radius: 1px !important;}\"][ultimate_heading main_heading=\"Quisque sed nibh tristique\" heading_tag=\"h3\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;\"]Duis lorem risus, aliquet a auctor a, venenatis in dui. Praesent et eros et risus dapibus placerat hendrerit cursus magna.[/ultimate_heading][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner][dt_fancy_image image_id=\"3171\" width=\"300\" border_radius=\"1px\" caption=\"off\" css=\".vc_custom_1692278929158{border-top-width: 1px !important;border-right-width: 1px !important;border-bottom-width: 1px !important;border-left-width: 1px !important;border-left-color: #059444 !important;border-left-style: solid !important;border-right-color: #059444 !important;border-right-style: solid !important;border-top-color: #059444 !important;border-top-style: solid !important;border-bottom-color: #059444 !important;border-bottom-style: solid !important;border-radius: 1px !important;}\"][ultimate_heading main_heading=\"Quisque sed nibh tristique\" heading_tag=\"h3\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;\"]Duis lorem risus, aliquet a auctor a, venenatis in dui. Praesent et eros et risus dapibus placerat hendrerit cursus magna.[/ultimate_heading][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner][dt_fancy_image image_id=\"3172\" width=\"300\" border_radius=\"1px\" caption=\"off\" css=\".vc_custom_1692278922309{border-top-width: 1px !important;border-right-width: 1px !important;border-bottom-width: 1px !important;border-left-width: 1px !important;border-left-color: #059444 !important;border-left-style: solid !important;border-right-color: #059444 !important;border-right-style: solid !important;border-top-color: #059444 !important;border-top-style: solid !important;border-bottom-color: #059444 !important;border-bottom-style: solid !important;border-radius: 1px !important;}\"][ultimate_heading main_heading=\"Quisque sed nibh tristique\" heading_tag=\"h3\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;\"]Duis lorem risus, aliquet a auctor a, venenatis in dui. Praesent et eros et risus dapibus placerat hendrerit cursus magna.[/ultimate_heading][/vc_column_inner][/vc_row_inner][/ultimate_carousel][/vc_column][/vc_row][vc_row][vc_column][ultimate_heading main_heading=\"Board Of Directors\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;margin-bottom:35px;\"][/ultimate_heading][vc_row_inner][vc_column_inner width=\"1/3\"][ult_animation_block animation=\"fadeInUp\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][dt_fancy_image image_id=\"3172\" width=\"300\" border_radius=\"1px\" caption=\"off\" css=\".vc_custom_1692278922309{border-top-width: 1px !important;border-right-width: 1px !important;border-bottom-width: 1px !important;border-left-width: 1px !important;border-left-color: #059444 !important;border-left-style: solid !important;border-right-color: #059444 !important;border-right-style: solid !important;border-top-color: #059444 !important;border-top-style: solid !important;border-bottom-color: #059444 !important;border-bottom-style: solid !important;border-radius: 1px !important;}\"][ultimate_heading main_heading=\"Quisque sed nibh tristique\" heading_tag=\"h3\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;\"]\r\n<ul>\r\n 	<li>Duis lorem risus, aliquet a auctor a, venenatis in dui. Praesent et eros et risus dapibus placerat hendrerit cursus magna.</li>\r\n 	<li>Praesent et eros et risus dapibus placerat hendrerit cursus magna.</li>\r\n 	<li>aliquet a auctor a, venenatis in dui.</li>\r\n</ul>\r\n[/ultimate_heading][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/3\"][ult_animation_block animation=\"fadeInDown\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][dt_fancy_image image_id=\"3171\" width=\"300\" border_radius=\"1px\" caption=\"off\" css=\".vc_custom_1692278929158{border-top-width: 1px !important;border-right-width: 1px !important;border-bottom-width: 1px !important;border-left-width: 1px !important;border-left-color: #059444 !important;border-left-style: solid !important;border-right-color: #059444 !important;border-right-style: solid !important;border-top-color: #059444 !important;border-top-style: solid !important;border-bottom-color: #059444 !important;border-bottom-style: solid !important;border-radius: 1px !important;}\"][ultimate_heading main_heading=\"Quisque sed nibh tristique\" heading_tag=\"h3\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;\"]\r\n<ul>\r\n 	<li>Duis lorem risus, aliquet a auctor a, venenatis in dui. Praesent et eros et risus dapibus placerat hendrerit cursus magna.</li>\r\n 	<li>Praesent et eros et risus dapibus placerat hendrerit cursus magna.</li>\r\n 	<li>aliquet a auctor a, venenatis in dui.</li>\r\n</ul>\r\n[/ultimate_heading][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/3\"][ult_animation_block animation=\"fadeInUp\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][dt_fancy_image image_id=\"3170\" width=\"300\" border_radius=\"1px\" caption=\"off\" css=\".vc_custom_1692278936750{border-top-width: 1px !important;border-right-width: 1px !important;border-bottom-width: 1px !important;border-left-width: 1px !important;border-left-color: #059444 !important;border-left-style: solid !important;border-right-color: #059444 !important;border-right-style: solid !important;border-top-color: #059444 !important;border-top-style: solid !important;border-bottom-color: #059444 !important;border-bottom-style: solid !important;border-radius: 1px !important;}\"][ultimate_heading main_heading=\"Quisque sed nibh tristique\" heading_tag=\"h3\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;\"]\r\n<ul>\r\n 	<li>Duis lorem risus, aliquet a auctor a, venenatis in dui. Praesent et eros et risus dapibus placerat hendrerit cursus magna.</li>\r\n 	<li>Praesent et eros et risus dapibus placerat hendrerit cursus magna.</li>\r\n 	<li>aliquet a auctor a, venenatis in dui.</li>\r\n</ul>\r\n[/ultimate_heading][/ult_animation_block][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row][vc_column][ultimate_heading main_heading=\"Executive Directors\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;margin-bottom:35px;\"][/ultimate_heading][vc_row_inner][vc_column_inner width=\"1/5\"][ult_animation_block animation=\"fadeInUp\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][dt_fancy_image image_id=\"3172\" width=\"300\" border_radius=\"1px\" caption=\"off\" css=\".vc_custom_1692278922309{border-top-width: 1px !important;border-right-width: 1px !important;border-bottom-width: 1px !important;border-left-width: 1px !important;border-left-color: #059444 !important;border-left-style: solid !important;border-right-color: #059444 !important;border-right-style: solid !important;border-top-color: #059444 !important;border-top-style: solid !important;border-bottom-color: #059444 !important;border-bottom-style: solid !important;border-radius: 1px !important;}\"][ultimate_heading main_heading=\"Quisque sed nibh tristique\" heading_tag=\"h3\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;\"]\r\n<ul>\r\n 	<li>Duis lorem risus, aliquet a auctor a, venenatis in dui. Praesent et eros et risus dapibus placerat hendrerit cursus magna.</li>\r\n 	<li>Praesent et eros et risus dapibus placerat hendrerit cursus magna.</li>\r\n 	<li>aliquet a auctor a, venenatis in dui.</li>\r\n</ul>\r\n[/ultimate_heading][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/5\"][ult_animation_block animation=\"fadeInDown\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][dt_fancy_image image_id=\"3171\" width=\"300\" border_radius=\"1px\" caption=\"off\" css=\".vc_custom_1692278929158{border-top-width: 1px !important;border-right-width: 1px !important;border-bottom-width: 1px !important;border-left-width: 1px !important;border-left-color: #059444 !important;border-left-style: solid !important;border-right-color: #059444 !important;border-right-style: solid !important;border-top-color: #059444 !important;border-top-style: solid !important;border-bottom-color: #059444 !important;border-bottom-style: solid !important;border-radius: 1px !important;}\"][ultimate_heading main_heading=\"Quisque sed nibh tristique\" heading_tag=\"h3\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;\"]\r\n<ul>\r\n 	<li>Duis lorem risus, aliquet a auctor a, venenatis in dui. Praesent et eros et risus dapibus placerat hendrerit cursus magna.</li>\r\n 	<li>Praesent et eros et risus dapibus placerat hendrerit cursus magna.</li>\r\n 	<li>aliquet a auctor a, venenatis in dui.</li>\r\n</ul>\r\n[/ultimate_heading][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/5\"][ult_animation_block animation=\"fadeInUp\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][dt_fancy_image image_id=\"3170\" width=\"300\" border_radius=\"1px\" caption=\"off\" css=\".vc_custom_1692278936750{border-top-width: 1px !important;border-right-width: 1px !important;border-bottom-width: 1px !important;border-left-width: 1px !important;border-left-color: #059444 !important;border-left-style: solid !important;border-right-color: #059444 !important;border-right-style: solid !important;border-top-color: #059444 !important;border-top-style: solid !important;border-bottom-color: #059444 !important;border-bottom-style: solid !important;border-radius: 1px !important;}\"][ultimate_heading main_heading=\"Quisque sed nibh tristique\" heading_tag=\"h3\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;\"]\r\n<ul>\r\n 	<li>Duis lorem risus, aliquet a auctor a, venenatis in dui. Praesent et eros et risus dapibus placerat hendrerit cursus magna.</li>\r\n 	<li>Praesent et eros et risus dapibus placerat hendrerit cursus magna.</li>\r\n 	<li>aliquet a auctor a, venenatis in dui.</li>\r\n</ul>\r\n[/ultimate_heading][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/5\"][ult_animation_block animation=\"fadeInDown\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][dt_fancy_image image_id=\"3170\" width=\"300\" border_radius=\"1px\" caption=\"off\" css=\".vc_custom_1692278936750{border-top-width: 1px !important;border-right-width: 1px !important;border-bottom-width: 1px !important;border-left-width: 1px !important;border-left-color: #059444 !important;border-left-style: solid !important;border-right-color: #059444 !important;border-right-style: solid !important;border-top-color: #059444 !important;border-top-style: solid !important;border-bottom-color: #059444 !important;border-bottom-style: solid !important;border-radius: 1px !important;}\"][ultimate_heading main_heading=\"Quisque sed nibh tristique\" heading_tag=\"h3\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;\"]\r\n<ul>\r\n 	<li>Duis lorem risus, aliquet a auctor a, venenatis in dui. Praesent et eros et risus dapibus placerat hendrerit cursus magna.</li>\r\n 	<li>Praesent et eros et risus dapibus placerat hendrerit cursus magna.</li>\r\n 	<li>aliquet a auctor a, venenatis in dui.</li>\r\n</ul>\r\n[/ultimate_heading][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/5\"][ult_animation_block animation=\"fadeInDown\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][dt_fancy_image image_id=\"3171\" width=\"300\" border_radius=\"1px\" caption=\"off\" css=\".vc_custom_1692278929158{border-top-width: 1px !important;border-right-width: 1px !important;border-bottom-width: 1px !important;border-left-width: 1px !important;border-left-color: #059444 !important;border-left-style: solid !important;border-right-color: #059444 !important;border-right-style: solid !important;border-top-color: #059444 !important;border-top-style: solid !important;border-bottom-color: #059444 !important;border-bottom-style: solid !important;border-radius: 1px !important;}\"][ultimate_heading main_heading=\"Quisque sed nibh tristique\" heading_tag=\"h3\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;\"]\r\n<ul>\r\n 	<li>Duis lorem risus, aliquet a auctor a, venenatis in dui. Praesent et eros et risus dapibus placerat hendrerit cursus magna.</li>\r\n 	<li>Praesent et eros et risus dapibus placerat hendrerit cursus magna.</li>\r\n 	<li>aliquet a auctor a, venenatis in dui.</li>\r\n</ul>\r\n[/ultimate_heading][/ult_animation_block][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner width=\"2/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row][vc_column][ultimate_heading main_heading=\"Next Generation\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;margin-bottom:35px;\"][/ultimate_heading][vc_row_inner][vc_column_inner width=\"1/2\"][ult_animation_block animation=\"fadeInUp\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][dt_fancy_image image_id=\"3172\" width=\"300\" border_radius=\"1px\" caption=\"off\" css=\".vc_custom_1692278922309{border-top-width: 1px !important;border-right-width: 1px !important;border-bottom-width: 1px !important;border-left-width: 1px !important;border-left-color: #059444 !important;border-left-style: solid !important;border-right-color: #059444 !important;border-right-style: solid !important;border-top-color: #059444 !important;border-top-style: solid !important;border-bottom-color: #059444 !important;border-bottom-style: solid !important;border-radius: 1px !important;}\"][ultimate_heading main_heading=\"Quisque sed nibh tristique\" heading_tag=\"h3\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;\"]\r\n<ul>\r\n 	<li>Duis lorem risus, aliquet a auctor a, venenatis in dui. Praesent et eros et risus dapibus placerat hendrerit cursus magna.</li>\r\n 	<li>Praesent et eros et risus dapibus placerat hendrerit cursus magna.</li>\r\n 	<li>aliquet a auctor a, venenatis in dui.</li>\r\n</ul>\r\n[/ultimate_heading][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/2\"][ult_animation_block animation=\"fadeInDown\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][dt_fancy_image image_id=\"3171\" width=\"300\" border_radius=\"1px\" caption=\"off\" css=\".vc_custom_1692278929158{border-top-width: 1px !important;border-right-width: 1px !important;border-bottom-width: 1px !important;border-left-width: 1px !important;border-left-color: #059444 !important;border-left-style: solid !important;border-right-color: #059444 !important;border-right-style: solid !important;border-top-color: #059444 !important;border-top-style: solid !important;border-bottom-color: #059444 !important;border-bottom-style: solid !important;border-radius: 1px !important;}\"][ultimate_heading main_heading=\"Quisque sed nibh tristique\" heading_tag=\"h3\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;\"]\r\n<ul>\r\n 	<li>Duis lorem risus, aliquet a auctor a, venenatis in dui. Praesent et eros et risus dapibus placerat hendrerit cursus magna.</li>\r\n 	<li>Praesent et eros et risus dapibus placerat hendrerit cursus magna.</li>\r\n 	<li>aliquet a auctor a, venenatis in dui.</li>\r\n</ul>\r\n[/ultimate_heading][/ult_animation_block][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row]','About us','','inherit','closed','closed','','2917-revision-v1','','','2023-08-18 14:26:36','2023-08-18 14:26:36','',2917,'https://farmchemie.yasithawd.com/?p=3263',0,'revision','',0),(3264,1,'2023-08-19 01:17:49','2023-08-19 01:17:49','[vc_row][vc_column][dt_products_masonry show_products=\"categories_products\" layout=\"btn_on_img_hover\" bwb_columns=\"desktop:3|h_tablet:3|v_tablet:2|phone:1\" loading_mode=\"standard\" st_posts_per_page=\"9\" show_categories_filter=\"y\" product_rating=\"n\" category_ids=\"65\"][/vc_column][/vc_row]','Poultry','','inherit','closed','closed','','3027-revision-v1','','','2023-08-19 01:17:49','2023-08-19 01:17:49','',3027,'https://farmchemie.yasithawd.com/?p=3264',0,'revision','',0),(3267,1,'2023-08-19 01:20:28','2023-08-19 01:20:28','[vc_row][vc_column][dt_products_masonry mode=\"grid\" layout=\"btn_on_img_hover\" bwb_columns=\"desktop:3|h_tablet:3|v_tablet:2|phone:1\" loading_mode=\"standard\" st_posts_per_page=\"9\" st_show_all_pages=\"y\" show_categories_filter=\"y\" product_rating=\"n\" ids=\"\"][/vc_column][/vc_row]','Poultry','','inherit','closed','closed','','3027-revision-v1','','','2023-08-19 01:20:28','2023-08-19 01:20:28','',3027,'https://farmchemie.yasithawd.com/?p=3267',0,'revision','',0),(3265,1,'2023-08-19 01:18:41','2023-08-19 01:18:41','[vc_row][vc_column][dt_products_masonry show_products=\"categories_products\" layout=\"btn_on_img_hover\" bwb_columns=\"desktop:3|h_tablet:3|v_tablet:2|phone:1\" loading_mode=\"standard\" st_posts_per_page=\"9\" st_show_all_pages=\"y\" show_categories_filter=\"y\" product_rating=\"n\" category_ids=\"65\"][/vc_column][/vc_row]','Poultry','','inherit','closed','closed','','3027-revision-v1','','','2023-08-19 01:18:41','2023-08-19 01:18:41','',3027,'https://farmchemie.yasithawd.com/?p=3265',0,'revision','',0),(3271,1,'2023-08-19 02:48:55','2023-08-19 02:48:55','[vc_row full_width=\"stretch_row_content_no_spaces\"][vc_column][ultimate_heading main_heading=\"Our History\" main_heading_color=\"#762888\"][/ultimate_heading][/vc_column][/vc_row][vc_row][vc_column][vc_row_inner equal_height=\"yes\" content_placement=\"middle\" css=\".vc_custom_1692359205466{margin-top: 35px !important;}\"][vc_column_inner width=\"1/2\"][ult_animation_block animation=\"fadeInLeftBig\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][vc_single_image image=\"3260\" img_size=\"full\" alignment=\"center\" style=\"vc_box_rounded\"][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/2\"][ult_animation_block animation=\"fadeInRightBig\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][ultimate_heading main_heading=\"Founded in 2002\" heading_tag=\"h3\" main_heading_color=\"#039447\" alignment=\"left\" sub_heading_font_size=\"desktop:18px;\"]Founded in 2002 by Mr. Uditha Wanigasinghe, an agriculturist who had a mission to aid valuable livestock producers in the country to enhance the yield and profitability of production. FARMCHEMIE introduced unprecedented solutions and consistent technical services to gain our customers’ trust and became the market leader in animal health products in 2006 within just four years.[/ultimate_heading][/ult_animation_block][/vc_column_inner][/vc_row_inner][vc_row_inner equal_height=\"yes\" rtl_reverse=\"yes\" content_placement=\"middle\" css=\".vc_custom_1692359216075{margin-top: 35px !important;}\"][vc_column_inner width=\"1/2\"][ult_animation_block animation=\"fadeInLeftBig\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][ultimate_heading main_heading=\"2006\" heading_tag=\"h3\" main_heading_color=\"#039447\" alignment=\"left\"]In 2006, the Sri Lankan poultry industry was affected with Avian Influenza which became a difficult period for the growth of FARMCHEMIE. This was the key factor in our decision to diversify into Agro Products. PLANTCHEM &amp; PLANTSEEDS were established to offer solutions in Agro specialty fertilizers, pesticides and seeds to invaluable cultivators.[/ultimate_heading][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/2\"][ult_animation_block animation=\"fadeInRightBig\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][vc_single_image image=\"3107\" img_size=\"full\" style=\"vc_box_border_circle_2\"][/ult_animation_block][/vc_column_inner][/vc_row_inner][vc_row_inner equal_height=\"yes\" content_placement=\"middle\" css=\".vc_custom_1692359231594{margin-top: 35px !important;}\"][vc_column_inner width=\"1/2\"][ult_animation_block animation=\"fadeInLeftBig\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][vc_single_image image=\"3108\" img_size=\"full\" style=\"vc_box_border_circle_2\"][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/2\"][ult_animation_block animation=\"fadeInRightBig\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][ultimate_heading main_heading=\"2010\" heading_tag=\"h3\" main_heading_color=\"#039447\" alignment=\"left\"]In 2010, FEED CHEMIE became the subsequent addition to ever-growing vision of Mr. Uditha Wanigasinghe and entered the Animal Feed Additives market.[/ultimate_heading][/ult_animation_block][/vc_column_inner][/vc_row_inner][vc_row_inner equal_height=\"yes\" rtl_reverse=\"yes\" content_placement=\"middle\" css=\".vc_custom_1692359239274{margin-top: 35px !important;}\"][vc_column_inner width=\"1/2\"][ult_animation_block animation=\"fadeInLeftBig\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][ultimate_heading main_heading=\"2012\" heading_tag=\"h3\" main_heading_color=\"#039447\" alignment=\"left\"]The year 2012 is described as a turning point in our journey as FARMCHEMIE established our first production facility for the manufacturing and packing of animal health products. FARMCHEMIE became the first animal health organization in Sri Lanka to obtain ISO 9001:2015 and WHO GMP International Quality Certification. With our own formulation unit, FARMCHEMIE was able to offer customized solutions to cater the needs of the Sri Lankan Livestock Industry.[/ultimate_heading][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/2\"][ult_animation_block animation=\"fadeInRightBig\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][vc_single_image image=\"3111\" img_size=\"full\" style=\"vc_box_border_circle_2\"][/ult_animation_block][/vc_column_inner][/vc_row_inner][vc_row_inner content_placement=\"middle\" css=\".vc_custom_1692359246626{margin-top: 35px !important;}\"][vc_column_inner width=\"1/2\"][ult_animation_block animation=\"fadeInLeftBig\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][vc_single_image image=\"3112\" img_size=\"full\" style=\"vc_box_border_circle_2\"][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/2\"][ult_animation_block animation=\"fadeInRightBig\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][ultimate_heading main_heading=\"2016\" heading_tag=\"h3\" main_heading_color=\"#039447\" alignment=\"left\"]The year 2016 was another key milestone with the entry to the International Markets. FARMCHEMIE exported our first Feed Premix consignment to India and in 2018 our export operation was distinctly established as FARMCHEMIE MANUFACTURERS, a Board of Investment (BOI) approved entity.[/ultimate_heading][/ult_animation_block][/vc_column_inner][/vc_row_inner][vc_row_inner equal_height=\"yes\" css=\".vc_custom_1692359252258{margin-top: 35px !important;}\"][vc_column_inner width=\"1/2\"][ult_animation_block animation=\"fadeInLeftBig\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][ultimate_heading main_heading=\"Fully automated manufacturing\" heading_tag=\"h3\" main_heading_color=\"#039447\" alignment=\"left\"]FARMCHEMIE MANUFACTURERS has invested in fully automated manufacturing facility from Bühler and became the first Sri Lankan owned company to obtain FAMI-QS International Quality Certification.[/ultimate_heading][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/2\"][ult_animation_block animation=\"fadeInRightBig\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][vc_single_image image=\"3262\" img_size=\"full\" style=\"vc_box_border_circle_2\"][/ult_animation_block][/vc_column_inner][/vc_row_inner][vc_row_inner equal_height=\"yes\" content_placement=\"middle\" css=\".vc_custom_1692359258634{margin-top: 35px !important;}\"][vc_column_inner width=\"1/2\"][ult_animation_block animation=\"fadeInLeftBig\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][vc_single_image image=\"3116\" img_size=\"full\" style=\"vc_box_border_circle_2\"][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/2\"][ult_animation_block animation=\"fadeInRightBig\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][ultimate_heading main_heading=\"Official toll manufacturer partner\" heading_tag=\"h3\" main_heading_color=\"#039447\" alignment=\"left\"]With the trust and reputation built as a reliable manufacturer of animal feed additives and supplements in the global market, several world-renowned international brands have appointed FARMCHEMIE MANUFACTURERS as the official toll manufacturer partner. FARMCHEMIE MANUFACTURERS exports a wide range of products consisting of premixes, specialty feed additives, oral liquid supplements and pet supplements to various markets in South Asia, East Asia, Middle East and Africa.\r\n\r\nFARMCHEMIE, FEED CHEMIE &amp; FARMCHEMIE MANUFACTURERS currently operate under the ownership of our holding company, DYVESTA.\r\n\r\nDYEVSTA has become the pinnacle of Animal Nutrition and Health.\r\n\r\nDYVESTA is Dynamic, through our continuous evolution, growth and progress. DYVESTA is Diverse, in terms of both our business strategy and our community. DYVESTA is Devoted to our valuable business partners through exceptional service.[/ultimate_heading][/ult_animation_block][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row full_width=\"stretch_row\" equal_height=\"yes\" bg_type=\"image\" parallax_style=\"vcpb-vz-jquery\" bg_image_new=\"id^3256|url^https://farmchemie.yasithawd.com/wp-content/uploads/2023/08/Vision-Mission.png|caption^null|alt^null|title^Vision-&amp;-Mission|description^null\" bg_image_repeat=\"no-repeat\" enable_overlay=\"enable_overlay_value\" overlay_color=\"#000000\" overlay_pattern=\"01.png\" overlay_pattern_opacity=\"5\" css=\".vc_custom_1692366072362{margin-top: 35px !important;padding-top: 65px !important;padding-bottom: 100px !important;}\"][vc_column][vc_row_inner equal_height=\"yes\"][vc_column_inner width=\"1/2\"][ult_animation_block animation=\"fadeInLeftBig\" animation_duration=\"2\" animation_delay=\"0\" animation_iteration_count=\"1\"][ultimate_heading main_heading=\"Vision\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\"]To be the customers’ first and best choice by ensuring outstanding satisfaction through a well-trained and dedicated team. Prompt and quality solutions to our customers’ requirements will determine the increase of return on investment for us.[/ultimate_heading][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/2\"][ult_animation_block animation=\"fadeInRightBig\" animation_duration=\"2\" animation_delay=\"0\" animation_iteration_count=\"1\"][ultimate_heading main_heading=\"Mission\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\"]To become a world renowned manufacturer of Animal Health products and a trusted partner among our stakeholders for our integrity as well as for providing effective solutions[/ultimate_heading][/ult_animation_block][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row css=\".vc_custom_1684836308288{margin-top: 15px !important;}\"][vc_column][ultimate_heading main_heading=\"Achievements\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;\"][/ultimate_heading][vc_row_inner gap=\"20\"][vc_column_inner width=\"1/2\" css=\".vc_custom_1691995519863{background-color: #f4ab20 !important;border: 1px solid #f4ab20 !important;border-radius: 35px !important;}\"][ult_animation_block animation=\"fadeOutLeftBig\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][bsf-info-box icon_type=\"custom\" icon_img=\"id^3117|url^https://farmchemie.yasithawd.com/wp-content/uploads/2023/08/Pink_-H.png|caption^null|alt^null|title^Pink_-H|description^null\" img_width=\"60\" icon_style=\"advanced\" icon_border_style=\"solid\" icon_color_border=\"#ffffff\" icon_border_size=\"1\" icon_border_radius=\"500\" icon_border_spacing=\"1\" title=\"First Free Sale Certificate obtained from Veterinary Drug Control Authority (VDCA) for Veterinary Pharmaceuticals\" title_font_style=\"font-weight:bold;\" title_font_size=\"desktop:20px;\"][/bsf-info-box][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/2\" css=\".vc_custom_1691995661095{background-color: #722f8b !important;border: 1px solid #722f8b !important;border-radius: 35px !important;}\"][ult_animation_block animation=\"fadeInRightBig\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][bsf-info-box icon_type=\"custom\" icon_img=\"id^3117|url^https://farmchemie.yasithawd.com/wp-content/uploads/2023/08/Pink_-H.png|caption^null|alt^null|title^Pink_-H|description^null\" img_width=\"60\" icon_style=\"advanced\" icon_border_style=\"solid\" icon_color_border=\"#ffffff\" icon_border_size=\"1\" icon_border_radius=\"500\" icon_border_spacing=\"1\" title=\"First ISO 9001: 2015 ,WHO-GMP Quality Management systems certified Animal Health company in Sri Lanka since August, 2012\" title_font_style=\"font-weight:bold;\" title_font_color=\"#ffffff\" title_font_size=\"desktop:20px;\"][/bsf-info-box][/ult_animation_block][/vc_column_inner][/vc_row_inner][vc_row_inner gap=\"20\"][vc_column_inner width=\"1/2\" css=\".vc_custom_1691995661095{background-color: #722f8b !important;border: 1px solid #722f8b !important;border-radius: 35px !important;}\"][ult_animation_block animation=\"fadeInLeftBig\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][bsf-info-box icon_type=\"custom\" icon_img=\"id^3117|url^https://farmchemie.yasithawd.com/wp-content/uploads/2023/08/Pink_-H.png|caption^null|alt^null|title^Pink_-H|description^null\" img_width=\"60\" icon_style=\"advanced\" icon_border_style=\"solid\" icon_color_border=\"#ffffff\" icon_border_size=\"1\" icon_border_radius=\"500\" icon_border_spacing=\"1\" title=\"First FAMI-QS certified company in sri lanka\" title_font_style=\"font-weight:bold;\" title_font_color=\"#ffffff\" title_font_size=\"desktop:20px;\"][/bsf-info-box][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/2\" css=\".vc_custom_1691995519863{background-color: #f4ab20 !important;border: 1px solid #f4ab20 !important;border-radius: 35px !important;}\"][ult_animation_block animation=\"fadeInRightBig\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][bsf-info-box icon_type=\"custom\" icon_img=\"id^3117|url^https://farmchemie.yasithawd.com/wp-content/uploads/2023/08/Pink_-H.png|caption^null|alt^null|title^Pink_-H|description^null\" img_width=\"60\" icon_style=\"advanced\" icon_border_style=\"solid\" icon_color_border=\"#ffffff\" icon_border_size=\"1\" icon_border_radius=\"500\" icon_border_spacing=\"1\" title=\"First Certificate of Ethical Trading certified in Livestock industry\" title_font_style=\"font-weight:bold;\" title_font_size=\"desktop:20px;\"][/bsf-info-box][/ult_animation_block][/vc_column_inner][/vc_row_inner][vc_row_inner gap=\"20\"][vc_column_inner width=\"1/4\" css=\".vc_custom_1691996718116{border-radius: 35px !important;}\"][/vc_column_inner][vc_column_inner width=\"2/4\" css=\".vc_custom_1691995519863{background-color: #f4ab20 !important;border: 1px solid #f4ab20 !important;border-radius: 35px !important;}\"][ult_animation_block animation=\"fadeInUpBig\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][bsf-info-box icon_type=\"custom\" icon_img=\"id^3117|url^https://farmchemie.yasithawd.com/wp-content/uploads/2023/08/Pink_-H.png|caption^null|alt^null|title^Pink_-H|description^null\" img_width=\"60\" icon_style=\"advanced\" icon_border_style=\"solid\" icon_color_border=\"#ffffff\" icon_border_size=\"1\" icon_border_radius=\"500\" icon_border_spacing=\"1\" title=\"First Silver awarded company at National Exports Awards in Livestock industry\" title_font_style=\"font-weight:bold;\" title_font_size=\"desktop:20px;\"][/bsf-info-box][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/4\"][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner width=\"1/6\"][/vc_column_inner][vc_column_inner width=\"2/3\"][vc_single_image image=\"3126\" img_size=\"full\" alignment=\"center\"][vc_single_image image=\"3125\" img_size=\"full\" alignment=\"center\"][/vc_column_inner][vc_column_inner width=\"1/6\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row][vc_column][ultimate_heading main_heading=\"Board Of Directors\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;margin-bottom:35px;\"][/ultimate_heading][ultimate_carousel slides_on_desk=\"3\" slides_on_mob=\"1\" arrow_style=\"square-bg\" arrow_bg_color=\"#039447\" arrow_color=\"#ffffff\" next_icon=\"ultsl-arrow-right6\" prev_icon=\"ultsl-arrow-left6\" dots_color=\"#039447\" item_animation=\"fadeIn\"][vc_row_inner][vc_column_inner][dt_fancy_image image_id=\"3173\" width=\"300\" border_radius=\"1px\" caption=\"off\"][ultimate_heading main_heading=\"Quisque sed nibh tristique\" heading_tag=\"h3\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;\"]Duis lorem risus, aliquet a auctor a, venenatis in dui. Praesent et eros et risus dapibus placerat hendrerit cursus magna.[/ultimate_heading][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner][dt_fancy_image image_id=\"3170\" width=\"300\" border_radius=\"1px\" caption=\"off\"][ultimate_heading main_heading=\"Quisque sed nibh tristique\" heading_tag=\"h3\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;\"]Duis lorem risus, aliquet a auctor a, venenatis in dui. Praesent et eros et risus dapibus placerat hendrerit cursus magna.[/ultimate_heading][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner][dt_fancy_image image_id=\"3171\" width=\"300\" border_radius=\"1px\" caption=\"off\"][ultimate_heading main_heading=\"Quisque sed nibh tristique\" heading_tag=\"h3\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;\"]Duis lorem risus, aliquet a auctor a, venenatis in dui. Praesent et eros et risus dapibus placerat hendrerit cursus magna.[/ultimate_heading][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner][dt_fancy_image image_id=\"3172\" width=\"300\" border_radius=\"1px\" caption=\"off\"][ultimate_heading main_heading=\"Quisque sed nibh tristique\" heading_tag=\"h3\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;\"]Duis lorem risus, aliquet a auctor a, venenatis in dui. Praesent et eros et risus dapibus placerat hendrerit cursus magna.[/ultimate_heading][/vc_column_inner][/vc_row_inner][/ultimate_carousel][/vc_column][/vc_row][vc_row disable_element=\"yes\"][vc_column][ultimate_heading main_heading=\"Board Of Directors\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;margin-bottom:35px;\"][/ultimate_heading][vc_row_inner][vc_column_inner width=\"1/3\"][ult_animation_block animation=\"fadeInUp\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][dt_fancy_image image_id=\"3172\" width=\"300\" border_radius=\"1px\" caption=\"off\" css=\".vc_custom_1692278922309{border-top-width: 1px !important;border-right-width: 1px !important;border-bottom-width: 1px !important;border-left-width: 1px !important;border-left-color: #059444 !important;border-left-style: solid !important;border-right-color: #059444 !important;border-right-style: solid !important;border-top-color: #059444 !important;border-top-style: solid !important;border-bottom-color: #059444 !important;border-bottom-style: solid !important;border-radius: 1px !important;}\"][ultimate_heading main_heading=\"Quisque sed nibh tristique\" heading_tag=\"h3\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;\"]\r\n<ul>\r\n 	<li>Duis lorem risus, aliquet a auctor a, venenatis in dui. Praesent et eros et risus dapibus placerat hendrerit cursus magna.</li>\r\n 	<li>Praesent et eros et risus dapibus placerat hendrerit cursus magna.</li>\r\n 	<li>aliquet a auctor a, venenatis in dui.</li>\r\n</ul>\r\n[/ultimate_heading][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/3\"][ult_animation_block animation=\"fadeInDown\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][dt_fancy_image image_id=\"3171\" width=\"300\" border_radius=\"1px\" caption=\"off\" css=\".vc_custom_1692278929158{border-top-width: 1px !important;border-right-width: 1px !important;border-bottom-width: 1px !important;border-left-width: 1px !important;border-left-color: #059444 !important;border-left-style: solid !important;border-right-color: #059444 !important;border-right-style: solid !important;border-top-color: #059444 !important;border-top-style: solid !important;border-bottom-color: #059444 !important;border-bottom-style: solid !important;border-radius: 1px !important;}\"][ultimate_heading main_heading=\"Quisque sed nibh tristique\" heading_tag=\"h3\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;\"]\r\n<ul>\r\n 	<li>Duis lorem risus, aliquet a auctor a, venenatis in dui. Praesent et eros et risus dapibus placerat hendrerit cursus magna.</li>\r\n 	<li>Praesent et eros et risus dapibus placerat hendrerit cursus magna.</li>\r\n 	<li>aliquet a auctor a, venenatis in dui.</li>\r\n</ul>\r\n[/ultimate_heading][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/3\"][ult_animation_block animation=\"fadeInUp\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][dt_fancy_image image_id=\"3170\" width=\"300\" border_radius=\"1px\" caption=\"off\" css=\".vc_custom_1692278936750{border-top-width: 1px !important;border-right-width: 1px !important;border-bottom-width: 1px !important;border-left-width: 1px !important;border-left-color: #059444 !important;border-left-style: solid !important;border-right-color: #059444 !important;border-right-style: solid !important;border-top-color: #059444 !important;border-top-style: solid !important;border-bottom-color: #059444 !important;border-bottom-style: solid !important;border-radius: 1px !important;}\"][ultimate_heading main_heading=\"Quisque sed nibh tristique\" heading_tag=\"h3\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;\"]\r\n<ul>\r\n 	<li>Duis lorem risus, aliquet a auctor a, venenatis in dui. Praesent et eros et risus dapibus placerat hendrerit cursus magna.</li>\r\n 	<li>Praesent et eros et risus dapibus placerat hendrerit cursus magna.</li>\r\n 	<li>aliquet a auctor a, venenatis in dui.</li>\r\n</ul>\r\n[/ultimate_heading][/ult_animation_block][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row disable_element=\"yes\"][vc_column][ultimate_heading main_heading=\"Executive Directors\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;margin-bottom:35px;\"][/ultimate_heading][vc_row_inner][vc_column_inner width=\"1/5\"][ult_animation_block animation=\"fadeInUp\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][dt_fancy_image image_id=\"3172\" width=\"300\" border_radius=\"1px\" caption=\"off\" css=\".vc_custom_1692278922309{border-top-width: 1px !important;border-right-width: 1px !important;border-bottom-width: 1px !important;border-left-width: 1px !important;border-left-color: #059444 !important;border-left-style: solid !important;border-right-color: #059444 !important;border-right-style: solid !important;border-top-color: #059444 !important;border-top-style: solid !important;border-bottom-color: #059444 !important;border-bottom-style: solid !important;border-radius: 1px !important;}\"][ultimate_heading main_heading=\"Quisque sed nibh tristique\" heading_tag=\"h3\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;\"]\r\n<ul>\r\n 	<li>Duis lorem risus, aliquet a auctor a, venenatis in dui. Praesent et eros et risus dapibus placerat hendrerit cursus magna.</li>\r\n 	<li>Praesent et eros et risus dapibus placerat hendrerit cursus magna.</li>\r\n 	<li>aliquet a auctor a, venenatis in dui.</li>\r\n</ul>\r\n[/ultimate_heading][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/5\"][ult_animation_block animation=\"fadeInDown\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][dt_fancy_image image_id=\"3171\" width=\"300\" border_radius=\"1px\" caption=\"off\" css=\".vc_custom_1692278929158{border-top-width: 1px !important;border-right-width: 1px !important;border-bottom-width: 1px !important;border-left-width: 1px !important;border-left-color: #059444 !important;border-left-style: solid !important;border-right-color: #059444 !important;border-right-style: solid !important;border-top-color: #059444 !important;border-top-style: solid !important;border-bottom-color: #059444 !important;border-bottom-style: solid !important;border-radius: 1px !important;}\"][ultimate_heading main_heading=\"Quisque sed nibh tristique\" heading_tag=\"h3\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;\"]\r\n<ul>\r\n 	<li>Duis lorem risus, aliquet a auctor a, venenatis in dui. Praesent et eros et risus dapibus placerat hendrerit cursus magna.</li>\r\n 	<li>Praesent et eros et risus dapibus placerat hendrerit cursus magna.</li>\r\n 	<li>aliquet a auctor a, venenatis in dui.</li>\r\n</ul>\r\n[/ultimate_heading][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/5\"][ult_animation_block animation=\"fadeInUp\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][dt_fancy_image image_id=\"3170\" width=\"300\" border_radius=\"1px\" caption=\"off\" css=\".vc_custom_1692278936750{border-top-width: 1px !important;border-right-width: 1px !important;border-bottom-width: 1px !important;border-left-width: 1px !important;border-left-color: #059444 !important;border-left-style: solid !important;border-right-color: #059444 !important;border-right-style: solid !important;border-top-color: #059444 !important;border-top-style: solid !important;border-bottom-color: #059444 !important;border-bottom-style: solid !important;border-radius: 1px !important;}\"][ultimate_heading main_heading=\"Quisque sed nibh tristique\" heading_tag=\"h3\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;\"]\r\n<ul>\r\n 	<li>Duis lorem risus, aliquet a auctor a, venenatis in dui. Praesent et eros et risus dapibus placerat hendrerit cursus magna.</li>\r\n 	<li>Praesent et eros et risus dapibus placerat hendrerit cursus magna.</li>\r\n 	<li>aliquet a auctor a, venenatis in dui.</li>\r\n</ul>\r\n[/ultimate_heading][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/5\"][ult_animation_block animation=\"fadeInDown\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][dt_fancy_image image_id=\"3170\" width=\"300\" border_radius=\"1px\" caption=\"off\" css=\".vc_custom_1692278936750{border-top-width: 1px !important;border-right-width: 1px !important;border-bottom-width: 1px !important;border-left-width: 1px !important;border-left-color: #059444 !important;border-left-style: solid !important;border-right-color: #059444 !important;border-right-style: solid !important;border-top-color: #059444 !important;border-top-style: solid !important;border-bottom-color: #059444 !important;border-bottom-style: solid !important;border-radius: 1px !important;}\"][ultimate_heading main_heading=\"Quisque sed nibh tristique\" heading_tag=\"h3\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;\"]\r\n<ul>\r\n 	<li>Duis lorem risus, aliquet a auctor a, venenatis in dui. Praesent et eros et risus dapibus placerat hendrerit cursus magna.</li>\r\n 	<li>Praesent et eros et risus dapibus placerat hendrerit cursus magna.</li>\r\n 	<li>aliquet a auctor a, venenatis in dui.</li>\r\n</ul>\r\n[/ultimate_heading][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/5\"][ult_animation_block animation=\"fadeInDown\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][dt_fancy_image image_id=\"3171\" width=\"300\" border_radius=\"1px\" caption=\"off\" css=\".vc_custom_1692278929158{border-top-width: 1px !important;border-right-width: 1px !important;border-bottom-width: 1px !important;border-left-width: 1px !important;border-left-color: #059444 !important;border-left-style: solid !important;border-right-color: #059444 !important;border-right-style: solid !important;border-top-color: #059444 !important;border-top-style: solid !important;border-bottom-color: #059444 !important;border-bottom-style: solid !important;border-radius: 1px !important;}\"][ultimate_heading main_heading=\"Quisque sed nibh tristique\" heading_tag=\"h3\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;\"]\r\n<ul>\r\n 	<li>Duis lorem risus, aliquet a auctor a, venenatis in dui. Praesent et eros et risus dapibus placerat hendrerit cursus magna.</li>\r\n 	<li>Praesent et eros et risus dapibus placerat hendrerit cursus magna.</li>\r\n 	<li>aliquet a auctor a, venenatis in dui.</li>\r\n</ul>\r\n[/ultimate_heading][/ult_animation_block][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner width=\"2/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row disable_element=\"yes\"][vc_column][ultimate_heading main_heading=\"Next Generation\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;margin-bottom:35px;\"][/ultimate_heading][vc_row_inner][vc_column_inner width=\"1/2\"][ult_animation_block animation=\"fadeInUp\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][dt_fancy_image image_id=\"3172\" width=\"300\" border_radius=\"1px\" caption=\"off\" css=\".vc_custom_1692278922309{border-top-width: 1px !important;border-right-width: 1px !important;border-bottom-width: 1px !important;border-left-width: 1px !important;border-left-color: #059444 !important;border-left-style: solid !important;border-right-color: #059444 !important;border-right-style: solid !important;border-top-color: #059444 !important;border-top-style: solid !important;border-bottom-color: #059444 !important;border-bottom-style: solid !important;border-radius: 1px !important;}\"][ultimate_heading main_heading=\"Quisque sed nibh tristique\" heading_tag=\"h3\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;\"]\r\n<ul>\r\n 	<li>Duis lorem risus, aliquet a auctor a, venenatis in dui. Praesent et eros et risus dapibus placerat hendrerit cursus magna.</li>\r\n 	<li>Praesent et eros et risus dapibus placerat hendrerit cursus magna.</li>\r\n 	<li>aliquet a auctor a, venenatis in dui.</li>\r\n</ul>\r\n[/ultimate_heading][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/2\"][ult_animation_block animation=\"fadeInDown\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][dt_fancy_image image_id=\"3171\" width=\"300\" border_radius=\"1px\" caption=\"off\" css=\".vc_custom_1692278929158{border-top-width: 1px !important;border-right-width: 1px !important;border-bottom-width: 1px !important;border-left-width: 1px !important;border-left-color: #059444 !important;border-left-style: solid !important;border-right-color: #059444 !important;border-right-style: solid !important;border-top-color: #059444 !important;border-top-style: solid !important;border-bottom-color: #059444 !important;border-bottom-style: solid !important;border-radius: 1px !important;}\"][ultimate_heading main_heading=\"Quisque sed nibh tristique\" heading_tag=\"h3\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;\"]\r\n<ul>\r\n 	<li>Duis lorem risus, aliquet a auctor a, venenatis in dui. Praesent et eros et risus dapibus placerat hendrerit cursus magna.</li>\r\n 	<li>Praesent et eros et risus dapibus placerat hendrerit cursus magna.</li>\r\n 	<li>aliquet a auctor a, venenatis in dui.</li>\r\n</ul>\r\n[/ultimate_heading][/ult_animation_block][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row]','About us','','inherit','closed','closed','','2917-revision-v1','','','2023-08-19 02:48:55','2023-08-19 02:48:55','',2917,'https://farmchemie.yasithawd.com/?p=3271',0,'revision','',0),(3268,1,'2023-08-19 01:22:33','2023-08-19 01:22:33','[vc_row full_width=\"stretch_row_content_no_spaces\"][vc_column][ultimate_heading main_heading=\"Our History\" main_heading_color=\"#762888\"][/ultimate_heading][/vc_column][/vc_row][vc_row][vc_column][vc_row_inner equal_height=\"yes\" content_placement=\"middle\" css=\".vc_custom_1692359205466{margin-top: 35px !important;}\"][vc_column_inner width=\"1/2\"][ult_animation_block animation=\"fadeInLeftBig\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][vc_single_image image=\"3260\" img_size=\"full\" alignment=\"center\" style=\"vc_box_rounded\"][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/2\"][ult_animation_block animation=\"fadeInRightBig\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][ultimate_heading main_heading=\"Founded in 2002\" heading_tag=\"h3\" main_heading_color=\"#039447\" alignment=\"left\" sub_heading_font_size=\"desktop:18px;\"]Founded in 2002 by Mr. Uditha Wanigasinghe, an agriculturist who had a mission to aid valuable livestock producers in the country to enhance the yield and profitability of production. FARMCHEMIE introduced unprecedented solutions and consistent technical services to gain our customers’ trust and became the market leader in animal health products in 2006 within just four years.[/ultimate_heading][/ult_animation_block][/vc_column_inner][/vc_row_inner][vc_row_inner equal_height=\"yes\" rtl_reverse=\"yes\" content_placement=\"middle\" css=\".vc_custom_1692359216075{margin-top: 35px !important;}\"][vc_column_inner width=\"1/2\"][ult_animation_block animation=\"fadeInLeftBig\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][ultimate_heading main_heading=\"2006\" heading_tag=\"h3\" main_heading_color=\"#039447\" alignment=\"left\"]In 2006, the Sri Lankan poultry industry was affected with Avian Influenza which became a difficult period for the growth of FARMCHEMIE. This was the key factor in our decision to diversify into Agro Products. PLANTCHEM &amp; PLANTSEEDS were established to offer solutions in Agro specialty fertilizers, pesticides and seeds to invaluable cultivators.[/ultimate_heading][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/2\"][ult_animation_block animation=\"fadeInRightBig\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][vc_single_image image=\"3107\" img_size=\"full\" style=\"vc_box_border_circle_2\"][/ult_animation_block][/vc_column_inner][/vc_row_inner][vc_row_inner equal_height=\"yes\" content_placement=\"middle\" css=\".vc_custom_1692359231594{margin-top: 35px !important;}\"][vc_column_inner width=\"1/2\"][ult_animation_block animation=\"fadeInLeftBig\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][vc_single_image image=\"3108\" img_size=\"full\" style=\"vc_box_border_circle_2\"][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/2\"][ult_animation_block animation=\"fadeInRightBig\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][ultimate_heading main_heading=\"2010\" heading_tag=\"h3\" main_heading_color=\"#039447\" alignment=\"left\"]In 2010, FEED CHEMIE became the subsequent addition to ever-growing vision of Mr. Uditha Wanigasinghe and entered the Animal Feed Additives market.[/ultimate_heading][/ult_animation_block][/vc_column_inner][/vc_row_inner][vc_row_inner equal_height=\"yes\" rtl_reverse=\"yes\" content_placement=\"middle\" css=\".vc_custom_1692359239274{margin-top: 35px !important;}\"][vc_column_inner width=\"1/2\"][ult_animation_block animation=\"fadeInLeftBig\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][ultimate_heading main_heading=\"2012\" heading_tag=\"h3\" main_heading_color=\"#039447\" alignment=\"left\"]The year 2012 is described as a turning point in our journey as FARMCHEMIE established our first production facility for the manufacturing and packing of animal health products. FARMCHEMIE became the first animal health organization in Sri Lanka to obtain ISO 9001:2015 and WHO GMP International Quality Certification. With our own formulation unit, FARMCHEMIE was able to offer customized solutions to cater the needs of the Sri Lankan Livestock Industry.[/ultimate_heading][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/2\"][ult_animation_block animation=\"fadeInRightBig\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][vc_single_image image=\"3111\" img_size=\"full\" style=\"vc_box_border_circle_2\"][/ult_animation_block][/vc_column_inner][/vc_row_inner][vc_row_inner content_placement=\"middle\" css=\".vc_custom_1692359246626{margin-top: 35px !important;}\"][vc_column_inner width=\"1/2\"][ult_animation_block animation=\"fadeInLeftBig\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][vc_single_image image=\"3112\" img_size=\"full\" style=\"vc_box_border_circle_2\"][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/2\"][ult_animation_block animation=\"fadeInRightBig\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][ultimate_heading main_heading=\"2016\" heading_tag=\"h3\" main_heading_color=\"#039447\" alignment=\"left\"]The year 2016 was another key milestone with the entry to the International Markets. FARMCHEMIE exported our first Feed Premix consignment to India and in 2018 our export operation was distinctly established as FARMCHEMIE MANUFACTURERS, a Board of Investment (BOI) approved entity.[/ultimate_heading][/ult_animation_block][/vc_column_inner][/vc_row_inner][vc_row_inner equal_height=\"yes\" css=\".vc_custom_1692359252258{margin-top: 35px !important;}\"][vc_column_inner width=\"1/2\"][ult_animation_block animation=\"fadeInLeftBig\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][ultimate_heading main_heading=\"Fully automated manufacturing\" heading_tag=\"h3\" main_heading_color=\"#039447\" alignment=\"left\"]FARMCHEMIE MANUFACTURERS has invested in fully automated manufacturing facility from Bühler and became the first Sri Lankan owned company to obtain FAMI-QS International Quality Certification.[/ultimate_heading][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/2\"][ult_animation_block animation=\"fadeInRightBig\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][vc_single_image image=\"3262\" img_size=\"full\" style=\"vc_box_border_circle_2\"][/ult_animation_block][/vc_column_inner][/vc_row_inner][vc_row_inner equal_height=\"yes\" content_placement=\"middle\" css=\".vc_custom_1692359258634{margin-top: 35px !important;}\"][vc_column_inner width=\"1/2\"][ult_animation_block animation=\"fadeInLeftBig\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][vc_single_image image=\"3116\" img_size=\"full\" style=\"vc_box_border_circle_2\"][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/2\"][ult_animation_block animation=\"fadeInRightBig\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][ultimate_heading main_heading=\"Official toll manufacturer partner\" heading_tag=\"h3\" main_heading_color=\"#039447\" alignment=\"left\"]With the trust and reputation built as a reliable manufacturer of animal feed additives and supplements in the global market, several world-renowned international brands have appointed FARMCHEMIE MANUFACTURERS as the official toll manufacturer partner. FARMCHEMIE MANUFACTURERS exports a wide range of products consisting of premixes, specialty feed additives, oral liquid supplements and pet supplements to various markets in South Asia, East Asia, Middle East and Africa.\r\n\r\nFARMCHEMIE, FEED CHEMIE &amp; FARMCHEMIE MANUFACTURERS currently operate under the ownership of our holding company, DYVESTA.\r\n\r\nDYEVSTA has become the pinnacle of Animal Nutrition and Health.\r\n\r\nDYVESTA is Dynamic, through our continuous evolution, growth and progress. DYVESTA is Diverse, in terms of both our business strategy and our community. DYVESTA is Devoted to our valuable business partners through exceptional service.[/ultimate_heading][/ult_animation_block][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row full_width=\"stretch_row\" equal_height=\"yes\" bg_type=\"image\" parallax_style=\"vcpb-vz-jquery\" bg_image_new=\"id^3256|url^https://farmchemie.yasithawd.com/wp-content/uploads/2023/08/Vision-Mission.png|caption^null|alt^null|title^Vision-&amp;-Mission|description^null\" bg_image_repeat=\"no-repeat\" enable_overlay=\"enable_overlay_value\" overlay_color=\"#000000\" overlay_pattern=\"01.png\" overlay_pattern_opacity=\"5\" css=\".vc_custom_1692366072362{margin-top: 35px !important;padding-top: 65px !important;padding-bottom: 100px !important;}\"][vc_column][vc_row_inner equal_height=\"yes\"][vc_column_inner width=\"1/2\"][ult_animation_block animation=\"fadeInLeftBig\" animation_duration=\"2\" animation_delay=\"0\" animation_iteration_count=\"1\"][ultimate_heading main_heading=\"Vision\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\"]To be the customers’ first and best choice by ensuring outstanding satisfaction through a well-trained and dedicated team. Prompt and quality solutions to our customers’ requirements will determine the increase of return on investment for us.[/ultimate_heading][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/2\"][ult_animation_block animation=\"fadeInRightBig\" animation_duration=\"2\" animation_delay=\"0\" animation_iteration_count=\"1\"][ultimate_heading main_heading=\"Mission\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\"]To become a world renowned manufacturer of Animal Health products and a trusted partner among our stakeholders for our integrity as well as for providing effective solutions[/ultimate_heading][/ult_animation_block][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row css=\".vc_custom_1684836308288{margin-top: 15px !important;}\"][vc_column][ultimate_heading main_heading=\"Achievements\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;\"][/ultimate_heading][vc_row_inner gap=\"20\"][vc_column_inner width=\"1/2\" css=\".vc_custom_1691995519863{background-color: #f4ab20 !important;border: 1px solid #f4ab20 !important;border-radius: 35px !important;}\"][bsf-info-box icon_type=\"custom\" icon_img=\"id^3117|url^https://farmchemie.yasithawd.com/wp-content/uploads/2023/08/Pink_-H.png|caption^null|alt^null|title^Pink_-H|description^null\" img_width=\"60\" icon_style=\"advanced\" icon_border_style=\"solid\" icon_color_border=\"#ffffff\" icon_border_size=\"1\" icon_border_radius=\"500\" icon_border_spacing=\"1\" title=\"First Free Sale Certificate obtained from Veterinary Drug Control Authority (VDCA) for Veterinary Pharmaceuticals\" title_font_style=\"font-weight:bold;\" title_font_size=\"desktop:20px;\"][/bsf-info-box][/vc_column_inner][vc_column_inner width=\"1/2\" css=\".vc_custom_1691995661095{background-color: #722f8b !important;border: 1px solid #722f8b !important;border-radius: 35px !important;}\"][bsf-info-box icon_type=\"custom\" icon_img=\"id^3117|url^https://farmchemie.yasithawd.com/wp-content/uploads/2023/08/Pink_-H.png|caption^null|alt^null|title^Pink_-H|description^null\" img_width=\"60\" icon_style=\"advanced\" icon_border_style=\"solid\" icon_color_border=\"#ffffff\" icon_border_size=\"1\" icon_border_radius=\"500\" icon_border_spacing=\"1\" title=\"First ISO 9001: 2015 ,WHO-GMP Quality Management systems certified Animal Health company in Sri Lanka since August, 2012\" title_font_style=\"font-weight:bold;\" title_font_color=\"#ffffff\" title_font_size=\"desktop:20px;\"][/bsf-info-box][/vc_column_inner][/vc_row_inner][vc_row_inner gap=\"20\"][vc_column_inner width=\"1/2\" css=\".vc_custom_1691995661095{background-color: #722f8b !important;border: 1px solid #722f8b !important;border-radius: 35px !important;}\"][bsf-info-box icon_type=\"custom\" icon_img=\"id^3117|url^https://farmchemie.yasithawd.com/wp-content/uploads/2023/08/Pink_-H.png|caption^null|alt^null|title^Pink_-H|description^null\" img_width=\"60\" icon_style=\"advanced\" icon_border_style=\"solid\" icon_color_border=\"#ffffff\" icon_border_size=\"1\" icon_border_radius=\"500\" icon_border_spacing=\"1\" title=\"First FAMI-QS certified company in sri lanka\" title_font_style=\"font-weight:bold;\" title_font_color=\"#ffffff\" title_font_size=\"desktop:20px;\"][/bsf-info-box][/vc_column_inner][vc_column_inner width=\"1/2\" css=\".vc_custom_1691995519863{background-color: #f4ab20 !important;border: 1px solid #f4ab20 !important;border-radius: 35px !important;}\"][bsf-info-box icon_type=\"custom\" icon_img=\"id^3117|url^https://farmchemie.yasithawd.com/wp-content/uploads/2023/08/Pink_-H.png|caption^null|alt^null|title^Pink_-H|description^null\" img_width=\"60\" icon_style=\"advanced\" icon_border_style=\"solid\" icon_color_border=\"#ffffff\" icon_border_size=\"1\" icon_border_radius=\"500\" icon_border_spacing=\"1\" title=\"First Certificate of Ethical Trading certified in Livestock industry\" title_font_style=\"font-weight:bold;\" title_font_size=\"desktop:20px;\"][/bsf-info-box][/vc_column_inner][/vc_row_inner][vc_row_inner gap=\"20\"][vc_column_inner width=\"1/4\" css=\".vc_custom_1691996718116{border-radius: 35px !important;}\"][/vc_column_inner][vc_column_inner width=\"2/4\" css=\".vc_custom_1691995519863{background-color: #f4ab20 !important;border: 1px solid #f4ab20 !important;border-radius: 35px !important;}\"][bsf-info-box icon_type=\"custom\" icon_img=\"id^3117|url^https://farmchemie.yasithawd.com/wp-content/uploads/2023/08/Pink_-H.png|caption^null|alt^null|title^Pink_-H|description^null\" img_width=\"60\" icon_style=\"advanced\" icon_border_style=\"solid\" icon_color_border=\"#ffffff\" icon_border_size=\"1\" icon_border_radius=\"500\" icon_border_spacing=\"1\" title=\"First Silver awarded company at National Exports Awards in Livestock industry\" title_font_style=\"font-weight:bold;\" title_font_size=\"desktop:20px;\"][/bsf-info-box][/vc_column_inner][vc_column_inner width=\"1/4\"][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner width=\"1/6\"][/vc_column_inner][vc_column_inner width=\"2/3\"][vc_single_image image=\"3126\" img_size=\"full\" alignment=\"center\"][vc_single_image image=\"3125\" img_size=\"full\" alignment=\"center\"][/vc_column_inner][vc_column_inner width=\"1/6\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row][vc_column][ultimate_heading main_heading=\"Board Of Directors\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;margin-bottom:35px;\"][/ultimate_heading][ultimate_carousel slides_on_desk=\"3\" slides_on_mob=\"1\" arrow_style=\"square-bg\" arrow_bg_color=\"#039447\" arrow_color=\"#ffffff\" next_icon=\"ultsl-arrow-right6\" prev_icon=\"ultsl-arrow-left6\" dots_color=\"#039447\" item_animation=\"fadeIn\"][vc_row_inner][vc_column_inner][dt_fancy_image image_id=\"3170\" width=\"300\" border_radius=\"1px\" caption=\"off\" css=\".vc_custom_1692278936750{border-top-width: 1px !important;border-right-width: 1px !important;border-bottom-width: 1px !important;border-left-width: 1px !important;border-left-color: #059444 !important;border-left-style: solid !important;border-right-color: #059444 !important;border-right-style: solid !important;border-top-color: #059444 !important;border-top-style: solid !important;border-bottom-color: #059444 !important;border-bottom-style: solid !important;border-radius: 1px !important;}\"][ultimate_heading main_heading=\"Quisque sed nibh tristique\" heading_tag=\"h3\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;\"]Duis lorem risus, aliquet a auctor a, venenatis in dui. Praesent et eros et risus dapibus placerat hendrerit cursus magna.[/ultimate_heading][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner][dt_fancy_image image_id=\"3170\" width=\"300\" border_radius=\"1px\" caption=\"off\" css=\".vc_custom_1692278936750{border-top-width: 1px !important;border-right-width: 1px !important;border-bottom-width: 1px !important;border-left-width: 1px !important;border-left-color: #059444 !important;border-left-style: solid !important;border-right-color: #059444 !important;border-right-style: solid !important;border-top-color: #059444 !important;border-top-style: solid !important;border-bottom-color: #059444 !important;border-bottom-style: solid !important;border-radius: 1px !important;}\"][ultimate_heading main_heading=\"Quisque sed nibh tristique\" heading_tag=\"h3\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;\"]Duis lorem risus, aliquet a auctor a, venenatis in dui. Praesent et eros et risus dapibus placerat hendrerit cursus magna.[/ultimate_heading][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner][dt_fancy_image image_id=\"3171\" width=\"300\" border_radius=\"1px\" caption=\"off\" css=\".vc_custom_1692278929158{border-top-width: 1px !important;border-right-width: 1px !important;border-bottom-width: 1px !important;border-left-width: 1px !important;border-left-color: #059444 !important;border-left-style: solid !important;border-right-color: #059444 !important;border-right-style: solid !important;border-top-color: #059444 !important;border-top-style: solid !important;border-bottom-color: #059444 !important;border-bottom-style: solid !important;border-radius: 1px !important;}\"][ultimate_heading main_heading=\"Quisque sed nibh tristique\" heading_tag=\"h3\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;\"]Duis lorem risus, aliquet a auctor a, venenatis in dui. Praesent et eros et risus dapibus placerat hendrerit cursus magna.[/ultimate_heading][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner][dt_fancy_image image_id=\"3172\" width=\"300\" border_radius=\"1px\" caption=\"off\" css=\".vc_custom_1692278922309{border-top-width: 1px !important;border-right-width: 1px !important;border-bottom-width: 1px !important;border-left-width: 1px !important;border-left-color: #059444 !important;border-left-style: solid !important;border-right-color: #059444 !important;border-right-style: solid !important;border-top-color: #059444 !important;border-top-style: solid !important;border-bottom-color: #059444 !important;border-bottom-style: solid !important;border-radius: 1px !important;}\"][ultimate_heading main_heading=\"Quisque sed nibh tristique\" heading_tag=\"h3\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;\"]Duis lorem risus, aliquet a auctor a, venenatis in dui. Praesent et eros et risus dapibus placerat hendrerit cursus magna.[/ultimate_heading][/vc_column_inner][/vc_row_inner][/ultimate_carousel][/vc_column][/vc_row][vc_row][vc_column][ultimate_heading main_heading=\"Board Of Directors\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;margin-bottom:35px;\"][/ultimate_heading][vc_row_inner][vc_column_inner width=\"1/3\"][ult_animation_block animation=\"fadeInUp\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][dt_fancy_image image_id=\"3172\" width=\"300\" border_radius=\"1px\" caption=\"off\" css=\".vc_custom_1692278922309{border-top-width: 1px !important;border-right-width: 1px !important;border-bottom-width: 1px !important;border-left-width: 1px !important;border-left-color: #059444 !important;border-left-style: solid !important;border-right-color: #059444 !important;border-right-style: solid !important;border-top-color: #059444 !important;border-top-style: solid !important;border-bottom-color: #059444 !important;border-bottom-style: solid !important;border-radius: 1px !important;}\"][ultimate_heading main_heading=\"Quisque sed nibh tristique\" heading_tag=\"h3\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;\"]\r\n<ul>\r\n 	<li>Duis lorem risus, aliquet a auctor a, venenatis in dui. Praesent et eros et risus dapibus placerat hendrerit cursus magna.</li>\r\n 	<li>Praesent et eros et risus dapibus placerat hendrerit cursus magna.</li>\r\n 	<li>aliquet a auctor a, venenatis in dui.</li>\r\n</ul>\r\n[/ultimate_heading][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/3\"][ult_animation_block animation=\"fadeInDown\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][dt_fancy_image image_id=\"3171\" width=\"300\" border_radius=\"1px\" caption=\"off\" css=\".vc_custom_1692278929158{border-top-width: 1px !important;border-right-width: 1px !important;border-bottom-width: 1px !important;border-left-width: 1px !important;border-left-color: #059444 !important;border-left-style: solid !important;border-right-color: #059444 !important;border-right-style: solid !important;border-top-color: #059444 !important;border-top-style: solid !important;border-bottom-color: #059444 !important;border-bottom-style: solid !important;border-radius: 1px !important;}\"][ultimate_heading main_heading=\"Quisque sed nibh tristique\" heading_tag=\"h3\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;\"]\r\n<ul>\r\n 	<li>Duis lorem risus, aliquet a auctor a, venenatis in dui. Praesent et eros et risus dapibus placerat hendrerit cursus magna.</li>\r\n 	<li>Praesent et eros et risus dapibus placerat hendrerit cursus magna.</li>\r\n 	<li>aliquet a auctor a, venenatis in dui.</li>\r\n</ul>\r\n[/ultimate_heading][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/3\"][ult_animation_block animation=\"fadeInUp\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][dt_fancy_image image_id=\"3170\" width=\"300\" border_radius=\"1px\" caption=\"off\" css=\".vc_custom_1692278936750{border-top-width: 1px !important;border-right-width: 1px !important;border-bottom-width: 1px !important;border-left-width: 1px !important;border-left-color: #059444 !important;border-left-style: solid !important;border-right-color: #059444 !important;border-right-style: solid !important;border-top-color: #059444 !important;border-top-style: solid !important;border-bottom-color: #059444 !important;border-bottom-style: solid !important;border-radius: 1px !important;}\"][ultimate_heading main_heading=\"Quisque sed nibh tristique\" heading_tag=\"h3\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;\"]\r\n<ul>\r\n 	<li>Duis lorem risus, aliquet a auctor a, venenatis in dui. Praesent et eros et risus dapibus placerat hendrerit cursus magna.</li>\r\n 	<li>Praesent et eros et risus dapibus placerat hendrerit cursus magna.</li>\r\n 	<li>aliquet a auctor a, venenatis in dui.</li>\r\n</ul>\r\n[/ultimate_heading][/ult_animation_block][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row][vc_column][ultimate_heading main_heading=\"Executive Directors\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;margin-bottom:35px;\"][/ultimate_heading][vc_row_inner][vc_column_inner width=\"1/5\"][ult_animation_block animation=\"fadeInUp\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][dt_fancy_image image_id=\"3172\" width=\"300\" border_radius=\"1px\" caption=\"off\" css=\".vc_custom_1692278922309{border-top-width: 1px !important;border-right-width: 1px !important;border-bottom-width: 1px !important;border-left-width: 1px !important;border-left-color: #059444 !important;border-left-style: solid !important;border-right-color: #059444 !important;border-right-style: solid !important;border-top-color: #059444 !important;border-top-style: solid !important;border-bottom-color: #059444 !important;border-bottom-style: solid !important;border-radius: 1px !important;}\"][ultimate_heading main_heading=\"Quisque sed nibh tristique\" heading_tag=\"h3\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;\"]\r\n<ul>\r\n 	<li>Duis lorem risus, aliquet a auctor a, venenatis in dui. Praesent et eros et risus dapibus placerat hendrerit cursus magna.</li>\r\n 	<li>Praesent et eros et risus dapibus placerat hendrerit cursus magna.</li>\r\n 	<li>aliquet a auctor a, venenatis in dui.</li>\r\n</ul>\r\n[/ultimate_heading][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/5\"][ult_animation_block animation=\"fadeInDown\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][dt_fancy_image image_id=\"3171\" width=\"300\" border_radius=\"1px\" caption=\"off\" css=\".vc_custom_1692278929158{border-top-width: 1px !important;border-right-width: 1px !important;border-bottom-width: 1px !important;border-left-width: 1px !important;border-left-color: #059444 !important;border-left-style: solid !important;border-right-color: #059444 !important;border-right-style: solid !important;border-top-color: #059444 !important;border-top-style: solid !important;border-bottom-color: #059444 !important;border-bottom-style: solid !important;border-radius: 1px !important;}\"][ultimate_heading main_heading=\"Quisque sed nibh tristique\" heading_tag=\"h3\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;\"]\r\n<ul>\r\n 	<li>Duis lorem risus, aliquet a auctor a, venenatis in dui. Praesent et eros et risus dapibus placerat hendrerit cursus magna.</li>\r\n 	<li>Praesent et eros et risus dapibus placerat hendrerit cursus magna.</li>\r\n 	<li>aliquet a auctor a, venenatis in dui.</li>\r\n</ul>\r\n[/ultimate_heading][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/5\"][ult_animation_block animation=\"fadeInUp\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][dt_fancy_image image_id=\"3170\" width=\"300\" border_radius=\"1px\" caption=\"off\" css=\".vc_custom_1692278936750{border-top-width: 1px !important;border-right-width: 1px !important;border-bottom-width: 1px !important;border-left-width: 1px !important;border-left-color: #059444 !important;border-left-style: solid !important;border-right-color: #059444 !important;border-right-style: solid !important;border-top-color: #059444 !important;border-top-style: solid !important;border-bottom-color: #059444 !important;border-bottom-style: solid !important;border-radius: 1px !important;}\"][ultimate_heading main_heading=\"Quisque sed nibh tristique\" heading_tag=\"h3\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;\"]\r\n<ul>\r\n 	<li>Duis lorem risus, aliquet a auctor a, venenatis in dui. Praesent et eros et risus dapibus placerat hendrerit cursus magna.</li>\r\n 	<li>Praesent et eros et risus dapibus placerat hendrerit cursus magna.</li>\r\n 	<li>aliquet a auctor a, venenatis in dui.</li>\r\n</ul>\r\n[/ultimate_heading][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/5\"][ult_animation_block animation=\"fadeInDown\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][dt_fancy_image image_id=\"3170\" width=\"300\" border_radius=\"1px\" caption=\"off\" css=\".vc_custom_1692278936750{border-top-width: 1px !important;border-right-width: 1px !important;border-bottom-width: 1px !important;border-left-width: 1px !important;border-left-color: #059444 !important;border-left-style: solid !important;border-right-color: #059444 !important;border-right-style: solid !important;border-top-color: #059444 !important;border-top-style: solid !important;border-bottom-color: #059444 !important;border-bottom-style: solid !important;border-radius: 1px !important;}\"][ultimate_heading main_heading=\"Quisque sed nibh tristique\" heading_tag=\"h3\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;\"]\r\n<ul>\r\n 	<li>Duis lorem risus, aliquet a auctor a, venenatis in dui. Praesent et eros et risus dapibus placerat hendrerit cursus magna.</li>\r\n 	<li>Praesent et eros et risus dapibus placerat hendrerit cursus magna.</li>\r\n 	<li>aliquet a auctor a, venenatis in dui.</li>\r\n</ul>\r\n[/ultimate_heading][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/5\"][ult_animation_block animation=\"fadeInDown\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][dt_fancy_image image_id=\"3171\" width=\"300\" border_radius=\"1px\" caption=\"off\" css=\".vc_custom_1692278929158{border-top-width: 1px !important;border-right-width: 1px !important;border-bottom-width: 1px !important;border-left-width: 1px !important;border-left-color: #059444 !important;border-left-style: solid !important;border-right-color: #059444 !important;border-right-style: solid !important;border-top-color: #059444 !important;border-top-style: solid !important;border-bottom-color: #059444 !important;border-bottom-style: solid !important;border-radius: 1px !important;}\"][ultimate_heading main_heading=\"Quisque sed nibh tristique\" heading_tag=\"h3\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;\"]\r\n<ul>\r\n 	<li>Duis lorem risus, aliquet a auctor a, venenatis in dui. Praesent et eros et risus dapibus placerat hendrerit cursus magna.</li>\r\n 	<li>Praesent et eros et risus dapibus placerat hendrerit cursus magna.</li>\r\n 	<li>aliquet a auctor a, venenatis in dui.</li>\r\n</ul>\r\n[/ultimate_heading][/ult_animation_block][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner width=\"2/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row][vc_column][ultimate_heading main_heading=\"Next Generation\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;margin-bottom:35px;\"][/ultimate_heading][vc_row_inner][vc_column_inner width=\"1/2\"][ult_animation_block animation=\"fadeInUp\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][dt_fancy_image image_id=\"3172\" width=\"300\" border_radius=\"1px\" caption=\"off\" css=\".vc_custom_1692278922309{border-top-width: 1px !important;border-right-width: 1px !important;border-bottom-width: 1px !important;border-left-width: 1px !important;border-left-color: #059444 !important;border-left-style: solid !important;border-right-color: #059444 !important;border-right-style: solid !important;border-top-color: #059444 !important;border-top-style: solid !important;border-bottom-color: #059444 !important;border-bottom-style: solid !important;border-radius: 1px !important;}\"][ultimate_heading main_heading=\"Quisque sed nibh tristique\" heading_tag=\"h3\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;\"]\r\n<ul>\r\n 	<li>Duis lorem risus, aliquet a auctor a, venenatis in dui. Praesent et eros et risus dapibus placerat hendrerit cursus magna.</li>\r\n 	<li>Praesent et eros et risus dapibus placerat hendrerit cursus magna.</li>\r\n 	<li>aliquet a auctor a, venenatis in dui.</li>\r\n</ul>\r\n[/ultimate_heading][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/2\"][ult_animation_block animation=\"fadeInDown\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][dt_fancy_image image_id=\"3171\" width=\"300\" border_radius=\"1px\" caption=\"off\" css=\".vc_custom_1692278929158{border-top-width: 1px !important;border-right-width: 1px !important;border-bottom-width: 1px !important;border-left-width: 1px !important;border-left-color: #059444 !important;border-left-style: solid !important;border-right-color: #059444 !important;border-right-style: solid !important;border-top-color: #059444 !important;border-top-style: solid !important;border-bottom-color: #059444 !important;border-bottom-style: solid !important;border-radius: 1px !important;}\"][ultimate_heading main_heading=\"Quisque sed nibh tristique\" heading_tag=\"h3\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;\"]\r\n<ul>\r\n 	<li>Duis lorem risus, aliquet a auctor a, venenatis in dui. Praesent et eros et risus dapibus placerat hendrerit cursus magna.</li>\r\n 	<li>Praesent et eros et risus dapibus placerat hendrerit cursus magna.</li>\r\n 	<li>aliquet a auctor a, venenatis in dui.</li>\r\n</ul>\r\n[/ultimate_heading][/ult_animation_block][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row]','About us','','inherit','closed','closed','','2917-revision-v1','','','2023-08-19 01:22:33','2023-08-19 01:22:33','',2917,'https://farmchemie.yasithawd.com/?p=3268',0,'revision','',0),(3269,1,'2023-08-19 01:27:03','2023-08-19 01:27:03','[vc_row][vc_column][dt_products_masonry show_products=\"categories_products\" mode=\"grid\" layout=\"btn_on_img_hover\" bwb_columns=\"desktop:3|h_tablet:3|v_tablet:2|phone:1\" loading_mode=\"standard\" st_posts_per_page=\"9\" st_show_all_pages=\"y\" show_categories_filter=\"y\" product_rating=\"n\" category_ids=\"65\"][/vc_column][/vc_row]','Poultry','','inherit','closed','closed','','3027-revision-v1','','','2023-08-19 01:27:03','2023-08-19 01:27:03','',3027,'https://farmchemie.yasithawd.com/?p=3269',0,'revision','',0),(3295,1,'2023-09-18 09:01:43','2023-09-18 09:01:43','<p>[vc_row disable_element=\"yes\"][vc_column][ult_tab_element tab_style=\"Style_4\" tab_animation=\"Fade\" tab_title_color=\"#ffffff\" tab_background_color=\"#039447\" tab_hover_title_color=\"#ffffff\" tab_hover_background_color=\"#853497\" acttab_title=\"#ffffff\" acttab_background=\"#853497\" disp_icon=\"Disables\"][single_tab title=\"All\" tab_id=\"1692579230326-8\"][dt_products_masonry show_products=\"categories_products\" mode=\"grid\" layout=\"btn_on_img_hover\" bwb_columns=\"desktop:3|h_tablet:3|v_tablet:2|phone:1\" dis_posts_total=\"\" category_ids=\"64\"][/single_tab][single_tab title=\"Cat\" tab_id=\"1692579230334-3\"][dt_products_masonry show_products=\"categories_products\" mode=\"grid\" layout=\"btn_on_img_hover\" bwb_columns=\"desktop:3|h_tablet:3|v_tablet:2|phone:1\" dis_posts_total=\"\" category_ids=\"114\"][/single_tab][single_tab title=\"Dog\" tab_id=\"1692579268639-2-10\"][dt_products_masonry show_products=\"categories_products\" mode=\"grid\" layout=\"btn_on_img_hover\" bwb_columns=\"desktop:3|h_tablet:3|v_tablet:2|phone:1\" dis_posts_total=\"\" category_ids=\"102\"][/single_tab][single_tab title=\"Exotic Birds\" tab_id=\"1692579279159-3-2\"][dt_products_masonry show_products=\"categories_products\" mode=\"grid\" layout=\"btn_on_img_hover\" bwb_columns=\"desktop:3|h_tablet:3|v_tablet:2|phone:1\" dis_posts_total=\"\" category_ids=\"121\"][/single_tab][/ult_tab_element][/vc_column][/vc_row][vc_row][vc_column][dt_products_masonry show_products=\"categories_products\" mode=\"grid\" bwb_columns=\"desktop:3|h_tablet:3|v_tablet:2|phone:1\" loading_mode=\"standard\" st_posts_per_page=\"9\" st_show_all_pages=\"y\" category_ids=\"64\"][/vc_column][/vc_row]</p>\n','Pet Care','','inherit','closed','closed','','3039-autosave-v1','','','2023-09-18 09:01:43','2023-09-18 09:01:43','',3039,'https://farmchemie.yasithawd.com/?p=3295',0,'revision','',0),(3327,1,'2023-08-26 03:33:25','2023-08-26 03:33:25','','AVI-V&E_logo','','inherit','open','closed','','avi-ve_logo','','','2023-08-26 03:33:25','2023-08-26 03:33:25','',3324,'https://farmchemie.yasithawd.com/wp-content/uploads/2023/08/AVI-VE_logo.png',0,'attachment','image/png',0),(3328,1,'2023-08-26 03:35:06','2023-08-26 03:35:06','','AVI V&E','','inherit','open','closed','','avi-ve','','','2023-08-26 03:35:06','2023-08-26 03:35:06','',0,'https://farmchemie.yasithawd.com/wp-content/uploads/2023/08/AVI-VE.pdf',0,'attachment','application/pdf',0),(3272,1,'2023-08-19 04:47:42','2023-08-19 04:47:42','[vc_row full_width=\"stretch_row_content_no_spaces\"][vc_column][ultimate_heading main_heading=\"Our History\" main_heading_color=\"#762888\"][/ultimate_heading][/vc_column][/vc_row][vc_row][vc_column][vc_row_inner equal_height=\"yes\" content_placement=\"middle\" css=\".vc_custom_1692359205466{margin-top: 35px !important;}\"][vc_column_inner width=\"1/2\"][ult_animation_block animation=\"fadeInLeftBig\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][vc_single_image image=\"3260\" img_size=\"full\" alignment=\"center\" style=\"vc_box_rounded\"][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/2\"][ult_animation_block animation=\"fadeInRightBig\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][ultimate_heading main_heading=\"Founded in 2002\" heading_tag=\"h3\" main_heading_color=\"#039447\" alignment=\"left\" sub_heading_font_size=\"desktop:18px;\"]Founded in 2002 by Mr. Uditha Wanigasinghe, an agriculturist who had a mission to aid valuable livestock producers in the country to enhance the yield and profitability of production. FARMCHEMIE introduced unprecedented solutions and consistent technical services to gain our customers’ trust and became the market leader in animal health products in 2006 within just four years.[/ultimate_heading][/ult_animation_block][/vc_column_inner][/vc_row_inner][vc_separator color=\"custom\" accent_color=\"#039447\"][vc_row_inner equal_height=\"yes\" rtl_reverse=\"yes\" content_placement=\"middle\" css=\".vc_custom_1692359216075{margin-top: 35px !important;}\"][vc_column_inner width=\"1/2\"][ult_animation_block animation=\"fadeInLeftBig\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][ultimate_heading main_heading=\"2006\" heading_tag=\"h3\" main_heading_color=\"#039447\" alignment=\"left\"]In 2006, the Sri Lankan poultry industry was affected with Avian Influenza which became a difficult period for the growth of FARMCHEMIE. This was the key factor in our decision to diversify into Agro Products. PLANTCHEM &amp; PLANTSEEDS were established to offer solutions in Agro specialty fertilizers, pesticides and seeds to invaluable cultivators.[/ultimate_heading][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/2\"][ult_animation_block animation=\"fadeInRightBig\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][vc_single_image image=\"3107\" img_size=\"full\" style=\"vc_box_border_circle_2\"][/ult_animation_block][/vc_column_inner][/vc_row_inner][vc_separator color=\"custom\" accent_color=\"#039447\"][vc_row_inner equal_height=\"yes\" content_placement=\"middle\" css=\".vc_custom_1692359231594{margin-top: 35px !important;}\"][vc_column_inner width=\"1/2\"][ult_animation_block animation=\"fadeInLeftBig\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][vc_single_image image=\"3108\" img_size=\"full\" style=\"vc_box_border_circle_2\"][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/2\"][ult_animation_block animation=\"fadeInRightBig\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][ultimate_heading main_heading=\"2010\" heading_tag=\"h3\" main_heading_color=\"#039447\" alignment=\"left\"]In 2010, FEED CHEMIE became the subsequent addition to ever-growing vision of Mr. Uditha Wanigasinghe and entered the Animal Feed Additives market.[/ultimate_heading][/ult_animation_block][/vc_column_inner][/vc_row_inner][vc_separator color=\"custom\" accent_color=\"#039447\"][vc_row_inner equal_height=\"yes\" rtl_reverse=\"yes\" content_placement=\"middle\" css=\".vc_custom_1692359239274{margin-top: 35px !important;}\"][vc_column_inner width=\"1/2\"][ult_animation_block animation=\"fadeInLeftBig\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][ultimate_heading main_heading=\"2012\" heading_tag=\"h3\" main_heading_color=\"#039447\" alignment=\"left\"]The year 2012 is described as a turning point in our journey as FARMCHEMIE established our first production facility for the manufacturing and packing of animal health products. FARMCHEMIE became the first animal health organization in Sri Lanka to obtain ISO 9001:2015 and WHO GMP International Quality Certification. With our own formulation unit, FARMCHEMIE was able to offer customized solutions to cater the needs of the Sri Lankan Livestock Industry.[/ultimate_heading][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/2\"][ult_animation_block animation=\"fadeInRightBig\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][vc_single_image image=\"3111\" img_size=\"full\" style=\"vc_box_border_circle_2\"][/ult_animation_block][/vc_column_inner][/vc_row_inner][vc_separator color=\"custom\" accent_color=\"#039447\"][vc_row_inner content_placement=\"middle\" css=\".vc_custom_1692359246626{margin-top: 35px !important;}\"][vc_column_inner width=\"1/2\"][ult_animation_block animation=\"fadeInLeftBig\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][vc_single_image image=\"3112\" img_size=\"full\" style=\"vc_box_border_circle_2\"][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/2\"][ult_animation_block animation=\"fadeInRightBig\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][ultimate_heading main_heading=\"2016\" heading_tag=\"h3\" main_heading_color=\"#039447\" alignment=\"left\"]The year 2016 was another key milestone with the entry to the International Markets. FARMCHEMIE exported our first Feed Premix consignment to India and in 2018 our export operation was distinctly established as FARMCHEMIE MANUFACTURERS, a Board of Investment (BOI) approved entity.[/ultimate_heading][/ult_animation_block][/vc_column_inner][/vc_row_inner][vc_separator color=\"custom\" accent_color=\"#039447\"][vc_row_inner equal_height=\"yes\" css=\".vc_custom_1692359252258{margin-top: 35px !important;}\"][vc_column_inner width=\"1/2\"][ult_animation_block animation=\"fadeInLeftBig\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][ultimate_heading main_heading=\"Fully automated manufacturing\" heading_tag=\"h3\" main_heading_color=\"#039447\" alignment=\"left\"]FARMCHEMIE MANUFACTURERS has invested in fully automated manufacturing facility from Bühler and became the first Sri Lankan owned company to obtain FAMI-QS International Quality Certification.[/ultimate_heading][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/2\"][ult_animation_block animation=\"fadeInRightBig\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][vc_single_image image=\"3262\" img_size=\"full\" style=\"vc_box_border_circle_2\"][/ult_animation_block][/vc_column_inner][/vc_row_inner][vc_separator color=\"custom\" accent_color=\"#039447\"][vc_row_inner equal_height=\"yes\" content_placement=\"middle\" css=\".vc_custom_1692359258634{margin-top: 35px !important;}\"][vc_column_inner width=\"1/2\"][ult_animation_block animation=\"fadeInLeftBig\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][vc_single_image image=\"3116\" img_size=\"full\" style=\"vc_box_border_circle_2\"][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/2\"][ult_animation_block animation=\"fadeInRightBig\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][ultimate_heading main_heading=\"Official toll manufacturer partner\" heading_tag=\"h3\" main_heading_color=\"#039447\" alignment=\"left\"]With the trust and reputation built as a reliable manufacturer of animal feed additives and supplements in the global market, several world-renowned international brands have appointed FARMCHEMIE MANUFACTURERS as the official toll manufacturer partner. FARMCHEMIE MANUFACTURERS exports a wide range of products consisting of premixes, specialty feed additives, oral liquid supplements and pet supplements to various markets in South Asia, East Asia, Middle East and Africa.\r\n\r\nFARMCHEMIE, FEED CHEMIE &amp; FARMCHEMIE MANUFACTURERS currently operate under the ownership of our holding company, DYVESTA.\r\n\r\nDYEVSTA has become the pinnacle of Animal Nutrition and Health.\r\n\r\nDYVESTA is Dynamic, through our continuous evolution, growth and progress. DYVESTA is Diverse, in terms of both our business strategy and our community. DYVESTA is Devoted to our valuable business partners through exceptional service.[/ultimate_heading][/ult_animation_block][/vc_column_inner][/vc_row_inner][vc_separator color=\"custom\" accent_color=\"#039447\"][/vc_column][/vc_row][vc_row full_width=\"stretch_row\" equal_height=\"yes\" bg_type=\"image\" parallax_style=\"vcpb-vz-jquery\" bg_image_new=\"id^3256|url^https://farmchemie.yasithawd.com/wp-content/uploads/2023/08/Vision-Mission.png|caption^null|alt^null|title^Vision-&amp;-Mission|description^null\" bg_image_repeat=\"no-repeat\" enable_overlay=\"enable_overlay_value\" overlay_color=\"#000000\" overlay_pattern=\"01.png\" overlay_pattern_opacity=\"5\" css=\".vc_custom_1692366072362{margin-top: 35px !important;padding-top: 65px !important;padding-bottom: 100px !important;}\"][vc_column][vc_row_inner equal_height=\"yes\"][vc_column_inner width=\"1/2\"][ult_animation_block animation=\"fadeInLeftBig\" animation_duration=\"2\" animation_delay=\"0\" animation_iteration_count=\"1\"][ultimate_heading main_heading=\"Vision\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\"]To be the customers’ first and best choice by ensuring outstanding satisfaction through a well-trained and dedicated team. Prompt and quality solutions to our customers’ requirements will determine the increase of return on investment for us.[/ultimate_heading][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/2\"][ult_animation_block animation=\"fadeInRightBig\" animation_duration=\"2\" animation_delay=\"0\" animation_iteration_count=\"1\"][ultimate_heading main_heading=\"Mission\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\"]To become a world renowned manufacturer of Animal Health products and a trusted partner among our stakeholders for our integrity as well as for providing effective solutions[/ultimate_heading][/ult_animation_block][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row css=\".vc_custom_1684836308288{margin-top: 15px !important;}\"][vc_column][ultimate_heading main_heading=\"Achievements\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;\"][/ultimate_heading][vc_row_inner gap=\"20\"][vc_column_inner width=\"1/2\" css=\".vc_custom_1691995519863{background-color: #f4ab20 !important;border: 1px solid #f4ab20 !important;border-radius: 35px !important;}\"][ult_animation_block animation=\"fadeOutLeftBig\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][bsf-info-box icon_type=\"custom\" icon_img=\"id^3117|url^https://farmchemie.yasithawd.com/wp-content/uploads/2023/08/Pink_-H.png|caption^null|alt^null|title^Pink_-H|description^null\" img_width=\"60\" icon_style=\"advanced\" icon_border_style=\"solid\" icon_color_border=\"#ffffff\" icon_border_size=\"1\" icon_border_radius=\"500\" icon_border_spacing=\"1\" title=\"First Free Sale Certificate obtained from Veterinary Drug Control Authority (VDCA) for Veterinary Pharmaceuticals\" title_font_style=\"font-weight:bold;\" title_font_size=\"desktop:20px;\"][/bsf-info-box][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/2\" css=\".vc_custom_1691995661095{background-color: #722f8b !important;border: 1px solid #722f8b !important;border-radius: 35px !important;}\"][ult_animation_block animation=\"fadeInRightBig\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][bsf-info-box icon_type=\"custom\" icon_img=\"id^3117|url^https://farmchemie.yasithawd.com/wp-content/uploads/2023/08/Pink_-H.png|caption^null|alt^null|title^Pink_-H|description^null\" img_width=\"60\" icon_style=\"advanced\" icon_border_style=\"solid\" icon_color_border=\"#ffffff\" icon_border_size=\"1\" icon_border_radius=\"500\" icon_border_spacing=\"1\" title=\"First ISO 9001: 2015 ,WHO-GMP Quality Management systems certified Animal Health company in Sri Lanka since August, 2012\" title_font_style=\"font-weight:bold;\" title_font_color=\"#ffffff\" title_font_size=\"desktop:20px;\"][/bsf-info-box][/ult_animation_block][/vc_column_inner][/vc_row_inner][vc_row_inner gap=\"20\"][vc_column_inner width=\"1/2\" css=\".vc_custom_1691995661095{background-color: #722f8b !important;border: 1px solid #722f8b !important;border-radius: 35px !important;}\"][ult_animation_block animation=\"fadeInLeftBig\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][bsf-info-box icon_type=\"custom\" icon_img=\"id^3117|url^https://farmchemie.yasithawd.com/wp-content/uploads/2023/08/Pink_-H.png|caption^null|alt^null|title^Pink_-H|description^null\" img_width=\"60\" icon_style=\"advanced\" icon_border_style=\"solid\" icon_color_border=\"#ffffff\" icon_border_size=\"1\" icon_border_radius=\"500\" icon_border_spacing=\"1\" title=\"First FAMI-QS certified company in sri lanka\" title_font_style=\"font-weight:bold;\" title_font_color=\"#ffffff\" title_font_size=\"desktop:20px;\"][/bsf-info-box][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/2\" css=\".vc_custom_1691995519863{background-color: #f4ab20 !important;border: 1px solid #f4ab20 !important;border-radius: 35px !important;}\"][ult_animation_block animation=\"fadeInRightBig\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][bsf-info-box icon_type=\"custom\" icon_img=\"id^3117|url^https://farmchemie.yasithawd.com/wp-content/uploads/2023/08/Pink_-H.png|caption^null|alt^null|title^Pink_-H|description^null\" img_width=\"60\" icon_style=\"advanced\" icon_border_style=\"solid\" icon_color_border=\"#ffffff\" icon_border_size=\"1\" icon_border_radius=\"500\" icon_border_spacing=\"1\" title=\"First Certificate of Ethical Trading certified in Livestock industry\" title_font_style=\"font-weight:bold;\" title_font_size=\"desktop:20px;\"][/bsf-info-box][/ult_animation_block][/vc_column_inner][/vc_row_inner][vc_row_inner gap=\"20\"][vc_column_inner width=\"1/4\" css=\".vc_custom_1691996718116{border-radius: 35px !important;}\"][/vc_column_inner][vc_column_inner width=\"2/4\" css=\".vc_custom_1691995519863{background-color: #f4ab20 !important;border: 1px solid #f4ab20 !important;border-radius: 35px !important;}\"][ult_animation_block animation=\"fadeInUpBig\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][bsf-info-box icon_type=\"custom\" icon_img=\"id^3117|url^https://farmchemie.yasithawd.com/wp-content/uploads/2023/08/Pink_-H.png|caption^null|alt^null|title^Pink_-H|description^null\" img_width=\"60\" icon_style=\"advanced\" icon_border_style=\"solid\" icon_color_border=\"#ffffff\" icon_border_size=\"1\" icon_border_radius=\"500\" icon_border_spacing=\"1\" title=\"First Silver awarded company at National Exports Awards in Livestock industry\" title_font_style=\"font-weight:bold;\" title_font_size=\"desktop:20px;\"][/bsf-info-box][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/4\"][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner width=\"1/6\"][/vc_column_inner][vc_column_inner width=\"2/3\"][vc_single_image image=\"3126\" img_size=\"full\" alignment=\"center\"][vc_single_image image=\"3125\" img_size=\"full\" alignment=\"center\"][/vc_column_inner][vc_column_inner width=\"1/6\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row][vc_column][ultimate_heading main_heading=\"Board Of Directors\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;margin-bottom:35px;\"][/ultimate_heading][ultimate_carousel slides_on_desk=\"3\" slides_on_mob=\"1\" arrow_style=\"square-bg\" arrow_bg_color=\"#039447\" arrow_color=\"#ffffff\" next_icon=\"ultsl-arrow-right6\" prev_icon=\"ultsl-arrow-left6\" dots_color=\"#039447\" item_animation=\"fadeIn\"][vc_row_inner][vc_column_inner][dt_fancy_image image_id=\"3173\" width=\"300\" border_radius=\"1px\" caption=\"off\"][ultimate_heading main_heading=\"Quisque sed nibh tristique\" heading_tag=\"h3\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;\"]Duis lorem risus, aliquet a auctor a, venenatis in dui. Praesent et eros et risus dapibus placerat hendrerit cursus magna.[/ultimate_heading][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner][dt_fancy_image image_id=\"3170\" width=\"300\" border_radius=\"1px\" caption=\"off\"][ultimate_heading main_heading=\"Quisque sed nibh tristique\" heading_tag=\"h3\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;\"]Duis lorem risus, aliquet a auctor a, venenatis in dui. Praesent et eros et risus dapibus placerat hendrerit cursus magna.[/ultimate_heading][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner][dt_fancy_image image_id=\"3171\" width=\"300\" border_radius=\"1px\" caption=\"off\"][ultimate_heading main_heading=\"Quisque sed nibh tristique\" heading_tag=\"h3\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;\"]Duis lorem risus, aliquet a auctor a, venenatis in dui. Praesent et eros et risus dapibus placerat hendrerit cursus magna.[/ultimate_heading][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner][dt_fancy_image image_id=\"3172\" width=\"300\" border_radius=\"1px\" caption=\"off\"][ultimate_heading main_heading=\"Quisque sed nibh tristique\" heading_tag=\"h3\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;\"]Duis lorem risus, aliquet a auctor a, venenatis in dui. Praesent et eros et risus dapibus placerat hendrerit cursus magna.[/ultimate_heading][/vc_column_inner][/vc_row_inner][/ultimate_carousel][/vc_column][/vc_row][vc_row disable_element=\"yes\"][vc_column][ultimate_heading main_heading=\"Board Of Directors\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;margin-bottom:35px;\"][/ultimate_heading][vc_row_inner][vc_column_inner width=\"1/3\"][ult_animation_block animation=\"fadeInUp\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][dt_fancy_image image_id=\"3172\" width=\"300\" border_radius=\"1px\" caption=\"off\" css=\".vc_custom_1692278922309{border-top-width: 1px !important;border-right-width: 1px !important;border-bottom-width: 1px !important;border-left-width: 1px !important;border-left-color: #059444 !important;border-left-style: solid !important;border-right-color: #059444 !important;border-right-style: solid !important;border-top-color: #059444 !important;border-top-style: solid !important;border-bottom-color: #059444 !important;border-bottom-style: solid !important;border-radius: 1px !important;}\"][ultimate_heading main_heading=\"Quisque sed nibh tristique\" heading_tag=\"h3\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;\"]\r\n<ul>\r\n 	<li>Duis lorem risus, aliquet a auctor a, venenatis in dui. Praesent et eros et risus dapibus placerat hendrerit cursus magna.</li>\r\n 	<li>Praesent et eros et risus dapibus placerat hendrerit cursus magna.</li>\r\n 	<li>aliquet a auctor a, venenatis in dui.</li>\r\n</ul>\r\n[/ultimate_heading][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/3\"][ult_animation_block animation=\"fadeInDown\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][dt_fancy_image image_id=\"3171\" width=\"300\" border_radius=\"1px\" caption=\"off\" css=\".vc_custom_1692278929158{border-top-width: 1px !important;border-right-width: 1px !important;border-bottom-width: 1px !important;border-left-width: 1px !important;border-left-color: #059444 !important;border-left-style: solid !important;border-right-color: #059444 !important;border-right-style: solid !important;border-top-color: #059444 !important;border-top-style: solid !important;border-bottom-color: #059444 !important;border-bottom-style: solid !important;border-radius: 1px !important;}\"][ultimate_heading main_heading=\"Quisque sed nibh tristique\" heading_tag=\"h3\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;\"]\r\n<ul>\r\n 	<li>Duis lorem risus, aliquet a auctor a, venenatis in dui. Praesent et eros et risus dapibus placerat hendrerit cursus magna.</li>\r\n 	<li>Praesent et eros et risus dapibus placerat hendrerit cursus magna.</li>\r\n 	<li>aliquet a auctor a, venenatis in dui.</li>\r\n</ul>\r\n[/ultimate_heading][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/3\"][ult_animation_block animation=\"fadeInUp\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][dt_fancy_image image_id=\"3170\" width=\"300\" border_radius=\"1px\" caption=\"off\" css=\".vc_custom_1692278936750{border-top-width: 1px !important;border-right-width: 1px !important;border-bottom-width: 1px !important;border-left-width: 1px !important;border-left-color: #059444 !important;border-left-style: solid !important;border-right-color: #059444 !important;border-right-style: solid !important;border-top-color: #059444 !important;border-top-style: solid !important;border-bottom-color: #059444 !important;border-bottom-style: solid !important;border-radius: 1px !important;}\"][ultimate_heading main_heading=\"Quisque sed nibh tristique\" heading_tag=\"h3\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;\"]\r\n<ul>\r\n 	<li>Duis lorem risus, aliquet a auctor a, venenatis in dui. Praesent et eros et risus dapibus placerat hendrerit cursus magna.</li>\r\n 	<li>Praesent et eros et risus dapibus placerat hendrerit cursus magna.</li>\r\n 	<li>aliquet a auctor a, venenatis in dui.</li>\r\n</ul>\r\n[/ultimate_heading][/ult_animation_block][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row disable_element=\"yes\"][vc_column][ultimate_heading main_heading=\"Executive Directors\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;margin-bottom:35px;\"][/ultimate_heading][vc_row_inner][vc_column_inner width=\"1/5\"][ult_animation_block animation=\"fadeInUp\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][dt_fancy_image image_id=\"3172\" width=\"300\" border_radius=\"1px\" caption=\"off\" css=\".vc_custom_1692278922309{border-top-width: 1px !important;border-right-width: 1px !important;border-bottom-width: 1px !important;border-left-width: 1px !important;border-left-color: #059444 !important;border-left-style: solid !important;border-right-color: #059444 !important;border-right-style: solid !important;border-top-color: #059444 !important;border-top-style: solid !important;border-bottom-color: #059444 !important;border-bottom-style: solid !important;border-radius: 1px !important;}\"][ultimate_heading main_heading=\"Quisque sed nibh tristique\" heading_tag=\"h3\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;\"]\r\n<ul>\r\n 	<li>Duis lorem risus, aliquet a auctor a, venenatis in dui. Praesent et eros et risus dapibus placerat hendrerit cursus magna.</li>\r\n 	<li>Praesent et eros et risus dapibus placerat hendrerit cursus magna.</li>\r\n 	<li>aliquet a auctor a, venenatis in dui.</li>\r\n</ul>\r\n[/ultimate_heading][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/5\"][ult_animation_block animation=\"fadeInDown\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][dt_fancy_image image_id=\"3171\" width=\"300\" border_radius=\"1px\" caption=\"off\" css=\".vc_custom_1692278929158{border-top-width: 1px !important;border-right-width: 1px !important;border-bottom-width: 1px !important;border-left-width: 1px !important;border-left-color: #059444 !important;border-left-style: solid !important;border-right-color: #059444 !important;border-right-style: solid !important;border-top-color: #059444 !important;border-top-style: solid !important;border-bottom-color: #059444 !important;border-bottom-style: solid !important;border-radius: 1px !important;}\"][ultimate_heading main_heading=\"Quisque sed nibh tristique\" heading_tag=\"h3\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;\"]\r\n<ul>\r\n 	<li>Duis lorem risus, aliquet a auctor a, venenatis in dui. Praesent et eros et risus dapibus placerat hendrerit cursus magna.</li>\r\n 	<li>Praesent et eros et risus dapibus placerat hendrerit cursus magna.</li>\r\n 	<li>aliquet a auctor a, venenatis in dui.</li>\r\n</ul>\r\n[/ultimate_heading][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/5\"][ult_animation_block animation=\"fadeInUp\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][dt_fancy_image image_id=\"3170\" width=\"300\" border_radius=\"1px\" caption=\"off\" css=\".vc_custom_1692278936750{border-top-width: 1px !important;border-right-width: 1px !important;border-bottom-width: 1px !important;border-left-width: 1px !important;border-left-color: #059444 !important;border-left-style: solid !important;border-right-color: #059444 !important;border-right-style: solid !important;border-top-color: #059444 !important;border-top-style: solid !important;border-bottom-color: #059444 !important;border-bottom-style: solid !important;border-radius: 1px !important;}\"][ultimate_heading main_heading=\"Quisque sed nibh tristique\" heading_tag=\"h3\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;\"]\r\n<ul>\r\n 	<li>Duis lorem risus, aliquet a auctor a, venenatis in dui. Praesent et eros et risus dapibus placerat hendrerit cursus magna.</li>\r\n 	<li>Praesent et eros et risus dapibus placerat hendrerit cursus magna.</li>\r\n 	<li>aliquet a auctor a, venenatis in dui.</li>\r\n</ul>\r\n[/ultimate_heading][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/5\"][ult_animation_block animation=\"fadeInDown\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][dt_fancy_image image_id=\"3170\" width=\"300\" border_radius=\"1px\" caption=\"off\" css=\".vc_custom_1692278936750{border-top-width: 1px !important;border-right-width: 1px !important;border-bottom-width: 1px !important;border-left-width: 1px !important;border-left-color: #059444 !important;border-left-style: solid !important;border-right-color: #059444 !important;border-right-style: solid !important;border-top-color: #059444 !important;border-top-style: solid !important;border-bottom-color: #059444 !important;border-bottom-style: solid !important;border-radius: 1px !important;}\"][ultimate_heading main_heading=\"Quisque sed nibh tristique\" heading_tag=\"h3\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;\"]\r\n<ul>\r\n 	<li>Duis lorem risus, aliquet a auctor a, venenatis in dui. Praesent et eros et risus dapibus placerat hendrerit cursus magna.</li>\r\n 	<li>Praesent et eros et risus dapibus placerat hendrerit cursus magna.</li>\r\n 	<li>aliquet a auctor a, venenatis in dui.</li>\r\n</ul>\r\n[/ultimate_heading][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/5\"][ult_animation_block animation=\"fadeInDown\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][dt_fancy_image image_id=\"3171\" width=\"300\" border_radius=\"1px\" caption=\"off\" css=\".vc_custom_1692278929158{border-top-width: 1px !important;border-right-width: 1px !important;border-bottom-width: 1px !important;border-left-width: 1px !important;border-left-color: #059444 !important;border-left-style: solid !important;border-right-color: #059444 !important;border-right-style: solid !important;border-top-color: #059444 !important;border-top-style: solid !important;border-bottom-color: #059444 !important;border-bottom-style: solid !important;border-radius: 1px !important;}\"][ultimate_heading main_heading=\"Quisque sed nibh tristique\" heading_tag=\"h3\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;\"]\r\n<ul>\r\n 	<li>Duis lorem risus, aliquet a auctor a, venenatis in dui. Praesent et eros et risus dapibus placerat hendrerit cursus magna.</li>\r\n 	<li>Praesent et eros et risus dapibus placerat hendrerit cursus magna.</li>\r\n 	<li>aliquet a auctor a, venenatis in dui.</li>\r\n</ul>\r\n[/ultimate_heading][/ult_animation_block][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner width=\"2/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row disable_element=\"yes\"][vc_column][ultimate_heading main_heading=\"Next Generation\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;margin-bottom:35px;\"][/ultimate_heading][vc_row_inner][vc_column_inner width=\"1/2\"][ult_animation_block animation=\"fadeInUp\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][dt_fancy_image image_id=\"3172\" width=\"300\" border_radius=\"1px\" caption=\"off\" css=\".vc_custom_1692278922309{border-top-width: 1px !important;border-right-width: 1px !important;border-bottom-width: 1px !important;border-left-width: 1px !important;border-left-color: #059444 !important;border-left-style: solid !important;border-right-color: #059444 !important;border-right-style: solid !important;border-top-color: #059444 !important;border-top-style: solid !important;border-bottom-color: #059444 !important;border-bottom-style: solid !important;border-radius: 1px !important;}\"][ultimate_heading main_heading=\"Quisque sed nibh tristique\" heading_tag=\"h3\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;\"]\r\n<ul>\r\n 	<li>Duis lorem risus, aliquet a auctor a, venenatis in dui. Praesent et eros et risus dapibus placerat hendrerit cursus magna.</li>\r\n 	<li>Praesent et eros et risus dapibus placerat hendrerit cursus magna.</li>\r\n 	<li>aliquet a auctor a, venenatis in dui.</li>\r\n</ul>\r\n[/ultimate_heading][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/2\"][ult_animation_block animation=\"fadeInDown\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][dt_fancy_image image_id=\"3171\" width=\"300\" border_radius=\"1px\" caption=\"off\" css=\".vc_custom_1692278929158{border-top-width: 1px !important;border-right-width: 1px !important;border-bottom-width: 1px !important;border-left-width: 1px !important;border-left-color: #059444 !important;border-left-style: solid !important;border-right-color: #059444 !important;border-right-style: solid !important;border-top-color: #059444 !important;border-top-style: solid !important;border-bottom-color: #059444 !important;border-bottom-style: solid !important;border-radius: 1px !important;}\"][ultimate_heading main_heading=\"Quisque sed nibh tristique\" heading_tag=\"h3\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;\"]\r\n<ul>\r\n 	<li>Duis lorem risus, aliquet a auctor a, venenatis in dui. Praesent et eros et risus dapibus placerat hendrerit cursus magna.</li>\r\n 	<li>Praesent et eros et risus dapibus placerat hendrerit cursus magna.</li>\r\n 	<li>aliquet a auctor a, venenatis in dui.</li>\r\n</ul>\r\n[/ultimate_heading][/ult_animation_block][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row]','About us','','inherit','closed','closed','','2917-revision-v1','','','2023-08-19 04:47:42','2023-08-19 04:47:42','',2917,'https://farmchemie.yasithawd.com/?p=3272',0,'revision','',0),(3273,1,'2023-08-19 04:58:02','2023-08-19 04:58:02','','Founded-in-2002 (2)','','inherit','open','closed','','founded-in-2002-2','','','2023-08-19 04:58:02','2023-08-19 04:58:02','',2917,'https://farmchemie.yasithawd.com/wp-content/uploads/2023/08/Founded-in-2002-2.png',0,'attachment','image/png',0),(3279,1,'2023-08-19 05:16:07','2023-08-19 05:16:07','','2016','','inherit','open','closed','','2016','','','2023-08-19 05:16:07','2023-08-19 05:16:07','',2917,'https://farmchemie.yasithawd.com/wp-content/uploads/2023/08/2016.png',0,'attachment','image/png',0),(3276,1,'2023-08-19 05:14:12','2023-08-19 05:14:12','','2006','','inherit','open','closed','','2006','','','2023-08-19 05:14:12','2023-08-19 05:14:12','',2917,'https://farmchemie.yasithawd.com/wp-content/uploads/2023/08/2006.png',0,'attachment','image/png',0),(3274,1,'2023-08-19 04:59:13','2023-08-19 04:59:13','[vc_row full_width=\"stretch_row_content_no_spaces\"][vc_column][ultimate_heading main_heading=\"Our History\" main_heading_color=\"#762888\"][/ultimate_heading][/vc_column][/vc_row][vc_row][vc_column][vc_row_inner equal_height=\"yes\" content_placement=\"middle\" css=\".vc_custom_1692359205466{margin-top: 35px !important;}\"][vc_column_inner width=\"1/2\"][ult_animation_block animation=\"fadeInLeftBig\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][vc_single_image image=\"3273\" img_size=\"full\" alignment=\"center\" style=\"vc_box_rounded\"][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/2\"][ult_animation_block animation=\"fadeInRightBig\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][ultimate_heading main_heading=\"Founded in 2002\" heading_tag=\"h3\" main_heading_color=\"#039447\" alignment=\"left\" sub_heading_font_size=\"desktop:18px;\"]Founded in 2002 by Mr. Uditha Wanigasinghe, an agriculturist who had a mission to aid valuable livestock producers in the country to enhance the yield and profitability of production. FARMCHEMIE introduced unprecedented solutions and consistent technical services to gain our customers’ trust and became the market leader in animal health products in 2006 within just four years.[/ultimate_heading][/ult_animation_block][/vc_column_inner][/vc_row_inner][vc_separator color=\"custom\" accent_color=\"#039447\"][vc_row_inner equal_height=\"yes\" rtl_reverse=\"yes\" content_placement=\"middle\" css=\".vc_custom_1692359216075{margin-top: 35px !important;}\"][vc_column_inner width=\"1/2\"][ult_animation_block animation=\"fadeInLeftBig\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][ultimate_heading main_heading=\"2006\" heading_tag=\"h3\" main_heading_color=\"#039447\" alignment=\"left\"]In 2006, the Sri Lankan poultry industry was affected with Avian Influenza which became a difficult period for the growth of FARMCHEMIE. This was the key factor in our decision to diversify into Agro Products. PLANTCHEM &amp; PLANTSEEDS were established to offer solutions in Agro specialty fertilizers, pesticides and seeds to invaluable cultivators.[/ultimate_heading][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/2\"][ult_animation_block animation=\"fadeInRightBig\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][vc_single_image image=\"3107\" img_size=\"full\" style=\"vc_box_border_circle_2\"][/ult_animation_block][/vc_column_inner][/vc_row_inner][vc_separator color=\"custom\" accent_color=\"#039447\"][vc_row_inner equal_height=\"yes\" content_placement=\"middle\" css=\".vc_custom_1692359231594{margin-top: 35px !important;}\"][vc_column_inner width=\"1/2\"][ult_animation_block animation=\"fadeInLeftBig\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][vc_single_image image=\"3108\" img_size=\"full\" style=\"vc_box_border_circle_2\"][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/2\"][ult_animation_block animation=\"fadeInRightBig\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][ultimate_heading main_heading=\"2010\" heading_tag=\"h3\" main_heading_color=\"#039447\" alignment=\"left\"]In 2010, FEED CHEMIE became the subsequent addition to ever-growing vision of Mr. Uditha Wanigasinghe and entered the Animal Feed Additives market.[/ultimate_heading][/ult_animation_block][/vc_column_inner][/vc_row_inner][vc_separator color=\"custom\" accent_color=\"#039447\"][vc_row_inner equal_height=\"yes\" rtl_reverse=\"yes\" content_placement=\"middle\" css=\".vc_custom_1692359239274{margin-top: 35px !important;}\"][vc_column_inner width=\"1/2\"][ult_animation_block animation=\"fadeInLeftBig\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][ultimate_heading main_heading=\"2012\" heading_tag=\"h3\" main_heading_color=\"#039447\" alignment=\"left\"]The year 2012 is described as a turning point in our journey as FARMCHEMIE established our first production facility for the manufacturing and packing of animal health products. FARMCHEMIE became the first animal health organization in Sri Lanka to obtain ISO 9001:2015 and WHO GMP International Quality Certification. With our own formulation unit, FARMCHEMIE was able to offer customized solutions to cater the needs of the Sri Lankan Livestock Industry.[/ultimate_heading][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/2\"][ult_animation_block animation=\"fadeInRightBig\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][vc_single_image image=\"3111\" img_size=\"full\" style=\"vc_box_border_circle_2\"][/ult_animation_block][/vc_column_inner][/vc_row_inner][vc_separator color=\"custom\" accent_color=\"#039447\"][vc_row_inner content_placement=\"middle\" css=\".vc_custom_1692359246626{margin-top: 35px !important;}\"][vc_column_inner width=\"1/2\"][ult_animation_block animation=\"fadeInLeftBig\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][vc_single_image image=\"3112\" img_size=\"full\" style=\"vc_box_border_circle_2\"][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/2\"][ult_animation_block animation=\"fadeInRightBig\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][ultimate_heading main_heading=\"2016\" heading_tag=\"h3\" main_heading_color=\"#039447\" alignment=\"left\"]The year 2016 was another key milestone with the entry to the International Markets. FARMCHEMIE exported our first Feed Premix consignment to India and in 2018 our export operation was distinctly established as FARMCHEMIE MANUFACTURERS, a Board of Investment (BOI) approved entity.[/ultimate_heading][/ult_animation_block][/vc_column_inner][/vc_row_inner][vc_separator color=\"custom\" accent_color=\"#039447\"][vc_row_inner equal_height=\"yes\" css=\".vc_custom_1692359252258{margin-top: 35px !important;}\"][vc_column_inner width=\"1/2\"][ult_animation_block animation=\"fadeInLeftBig\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][ultimate_heading main_heading=\"Fully automated manufacturing\" heading_tag=\"h3\" main_heading_color=\"#039447\" alignment=\"left\"]FARMCHEMIE MANUFACTURERS has invested in fully automated manufacturing facility from Bühler and became the first Sri Lankan owned company to obtain FAMI-QS International Quality Certification.[/ultimate_heading][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/2\"][ult_animation_block animation=\"fadeInRightBig\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][vc_single_image image=\"3262\" img_size=\"full\" style=\"vc_box_border_circle_2\"][/ult_animation_block][/vc_column_inner][/vc_row_inner][vc_separator color=\"custom\" accent_color=\"#039447\"][vc_row_inner equal_height=\"yes\" content_placement=\"middle\" css=\".vc_custom_1692359258634{margin-top: 35px !important;}\"][vc_column_inner width=\"1/2\"][ult_animation_block animation=\"fadeInLeftBig\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][vc_single_image image=\"3116\" img_size=\"full\" style=\"vc_box_border_circle_2\"][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/2\"][ult_animation_block animation=\"fadeInRightBig\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][ultimate_heading main_heading=\"Official toll manufacturer partner\" heading_tag=\"h3\" main_heading_color=\"#039447\" alignment=\"left\"]With the trust and reputation built as a reliable manufacturer of animal feed additives and supplements in the global market, several world-renowned international brands have appointed FARMCHEMIE MANUFACTURERS as the official toll manufacturer partner. FARMCHEMIE MANUFACTURERS exports a wide range of products consisting of premixes, specialty feed additives, oral liquid supplements and pet supplements to various markets in South Asia, East Asia, Middle East and Africa.\r\n\r\nFARMCHEMIE, FEED CHEMIE &amp; FARMCHEMIE MANUFACTURERS currently operate under the ownership of our holding company, DYVESTA.\r\n\r\nDYEVSTA has become the pinnacle of Animal Nutrition and Health.\r\n\r\nDYVESTA is Dynamic, through our continuous evolution, growth and progress. DYVESTA is Diverse, in terms of both our business strategy and our community. DYVESTA is Devoted to our valuable business partners through exceptional service.[/ultimate_heading][/ult_animation_block][/vc_column_inner][/vc_row_inner][vc_separator color=\"custom\" accent_color=\"#039447\"][/vc_column][/vc_row][vc_row full_width=\"stretch_row\" equal_height=\"yes\" bg_type=\"image\" parallax_style=\"vcpb-vz-jquery\" bg_image_new=\"id^3256|url^https://farmchemie.yasithawd.com/wp-content/uploads/2023/08/Vision-Mission.png|caption^null|alt^null|title^Vision-&amp;-Mission|description^null\" bg_image_repeat=\"no-repeat\" enable_overlay=\"enable_overlay_value\" overlay_color=\"#000000\" overlay_pattern=\"01.png\" overlay_pattern_opacity=\"5\" css=\".vc_custom_1692366072362{margin-top: 35px !important;padding-top: 65px !important;padding-bottom: 100px !important;}\"][vc_column][vc_row_inner equal_height=\"yes\"][vc_column_inner width=\"1/2\"][ult_animation_block animation=\"fadeInLeftBig\" animation_duration=\"2\" animation_delay=\"0\" animation_iteration_count=\"1\"][ultimate_heading main_heading=\"Vision\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\"]To be the customers’ first and best choice by ensuring outstanding satisfaction through a well-trained and dedicated team. Prompt and quality solutions to our customers’ requirements will determine the increase of return on investment for us.[/ultimate_heading][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/2\"][ult_animation_block animation=\"fadeInRightBig\" animation_duration=\"2\" animation_delay=\"0\" animation_iteration_count=\"1\"][ultimate_heading main_heading=\"Mission\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\"]To become a world renowned manufacturer of Animal Health products and a trusted partner among our stakeholders for our integrity as well as for providing effective solutions[/ultimate_heading][/ult_animation_block][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row css=\".vc_custom_1684836308288{margin-top: 15px !important;}\"][vc_column][ultimate_heading main_heading=\"Achievements\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;\"][/ultimate_heading][vc_row_inner gap=\"20\"][vc_column_inner width=\"1/2\" css=\".vc_custom_1691995519863{background-color: #f4ab20 !important;border: 1px solid #f4ab20 !important;border-radius: 35px !important;}\"][ult_animation_block animation=\"fadeOutLeftBig\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][bsf-info-box icon_type=\"custom\" icon_img=\"id^3117|url^https://farmchemie.yasithawd.com/wp-content/uploads/2023/08/Pink_-H.png|caption^null|alt^null|title^Pink_-H|description^null\" img_width=\"60\" icon_style=\"advanced\" icon_border_style=\"solid\" icon_color_border=\"#ffffff\" icon_border_size=\"1\" icon_border_radius=\"500\" icon_border_spacing=\"1\" title=\"First Free Sale Certificate obtained from Veterinary Drug Control Authority (VDCA) for Veterinary Pharmaceuticals\" title_font_style=\"font-weight:bold;\" title_font_size=\"desktop:20px;\"][/bsf-info-box][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/2\" css=\".vc_custom_1691995661095{background-color: #722f8b !important;border: 1px solid #722f8b !important;border-radius: 35px !important;}\"][ult_animation_block animation=\"fadeInRightBig\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][bsf-info-box icon_type=\"custom\" icon_img=\"id^3117|url^https://farmchemie.yasithawd.com/wp-content/uploads/2023/08/Pink_-H.png|caption^null|alt^null|title^Pink_-H|description^null\" img_width=\"60\" icon_style=\"advanced\" icon_border_style=\"solid\" icon_color_border=\"#ffffff\" icon_border_size=\"1\" icon_border_radius=\"500\" icon_border_spacing=\"1\" title=\"First ISO 9001: 2015 ,WHO-GMP Quality Management systems certified Animal Health company in Sri Lanka since August, 2012\" title_font_style=\"font-weight:bold;\" title_font_color=\"#ffffff\" title_font_size=\"desktop:20px;\"][/bsf-info-box][/ult_animation_block][/vc_column_inner][/vc_row_inner][vc_row_inner gap=\"20\"][vc_column_inner width=\"1/2\" css=\".vc_custom_1691995661095{background-color: #722f8b !important;border: 1px solid #722f8b !important;border-radius: 35px !important;}\"][ult_animation_block animation=\"fadeInLeftBig\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][bsf-info-box icon_type=\"custom\" icon_img=\"id^3117|url^https://farmchemie.yasithawd.com/wp-content/uploads/2023/08/Pink_-H.png|caption^null|alt^null|title^Pink_-H|description^null\" img_width=\"60\" icon_style=\"advanced\" icon_border_style=\"solid\" icon_color_border=\"#ffffff\" icon_border_size=\"1\" icon_border_radius=\"500\" icon_border_spacing=\"1\" title=\"First FAMI-QS certified company in sri lanka\" title_font_style=\"font-weight:bold;\" title_font_color=\"#ffffff\" title_font_size=\"desktop:20px;\"][/bsf-info-box][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/2\" css=\".vc_custom_1691995519863{background-color: #f4ab20 !important;border: 1px solid #f4ab20 !important;border-radius: 35px !important;}\"][ult_animation_block animation=\"fadeInRightBig\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][bsf-info-box icon_type=\"custom\" icon_img=\"id^3117|url^https://farmchemie.yasithawd.com/wp-content/uploads/2023/08/Pink_-H.png|caption^null|alt^null|title^Pink_-H|description^null\" img_width=\"60\" icon_style=\"advanced\" icon_border_style=\"solid\" icon_color_border=\"#ffffff\" icon_border_size=\"1\" icon_border_radius=\"500\" icon_border_spacing=\"1\" title=\"First Certificate of Ethical Trading certified in Livestock industry\" title_font_style=\"font-weight:bold;\" title_font_size=\"desktop:20px;\"][/bsf-info-box][/ult_animation_block][/vc_column_inner][/vc_row_inner][vc_row_inner gap=\"20\"][vc_column_inner width=\"1/4\" css=\".vc_custom_1691996718116{border-radius: 35px !important;}\"][/vc_column_inner][vc_column_inner width=\"2/4\" css=\".vc_custom_1691995519863{background-color: #f4ab20 !important;border: 1px solid #f4ab20 !important;border-radius: 35px !important;}\"][ult_animation_block animation=\"fadeInUpBig\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][bsf-info-box icon_type=\"custom\" icon_img=\"id^3117|url^https://farmchemie.yasithawd.com/wp-content/uploads/2023/08/Pink_-H.png|caption^null|alt^null|title^Pink_-H|description^null\" img_width=\"60\" icon_style=\"advanced\" icon_border_style=\"solid\" icon_color_border=\"#ffffff\" icon_border_size=\"1\" icon_border_radius=\"500\" icon_border_spacing=\"1\" title=\"First Silver awarded company at National Exports Awards in Livestock industry\" title_font_style=\"font-weight:bold;\" title_font_size=\"desktop:20px;\"][/bsf-info-box][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/4\"][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner width=\"1/6\"][/vc_column_inner][vc_column_inner width=\"2/3\"][vc_single_image image=\"3126\" img_size=\"full\" alignment=\"center\"][vc_single_image image=\"3125\" img_size=\"full\" alignment=\"center\"][/vc_column_inner][vc_column_inner width=\"1/6\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row][vc_column][ultimate_heading main_heading=\"Board Of Directors\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;margin-bottom:35px;\"][/ultimate_heading][ultimate_carousel slides_on_desk=\"3\" slides_on_mob=\"1\" arrow_style=\"square-bg\" arrow_bg_color=\"#039447\" arrow_color=\"#ffffff\" next_icon=\"ultsl-arrow-right6\" prev_icon=\"ultsl-arrow-left6\" dots_color=\"#039447\" item_animation=\"fadeIn\"][vc_row_inner][vc_column_inner][dt_fancy_image image_id=\"3173\" width=\"300\" border_radius=\"1px\" caption=\"off\"][ultimate_heading main_heading=\"Quisque sed nibh tristique\" heading_tag=\"h3\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;\"]Duis lorem risus, aliquet a auctor a, venenatis in dui. Praesent et eros et risus dapibus placerat hendrerit cursus magna.[/ultimate_heading][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner][dt_fancy_image image_id=\"3170\" width=\"300\" border_radius=\"1px\" caption=\"off\"][ultimate_heading main_heading=\"Quisque sed nibh tristique\" heading_tag=\"h3\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;\"]Duis lorem risus, aliquet a auctor a, venenatis in dui. Praesent et eros et risus dapibus placerat hendrerit cursus magna.[/ultimate_heading][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner][dt_fancy_image image_id=\"3171\" width=\"300\" border_radius=\"1px\" caption=\"off\"][ultimate_heading main_heading=\"Quisque sed nibh tristique\" heading_tag=\"h3\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;\"]Duis lorem risus, aliquet a auctor a, venenatis in dui. Praesent et eros et risus dapibus placerat hendrerit cursus magna.[/ultimate_heading][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner][dt_fancy_image image_id=\"3172\" width=\"300\" border_radius=\"1px\" caption=\"off\"][ultimate_heading main_heading=\"Quisque sed nibh tristique\" heading_tag=\"h3\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;\"]Duis lorem risus, aliquet a auctor a, venenatis in dui. Praesent et eros et risus dapibus placerat hendrerit cursus magna.[/ultimate_heading][/vc_column_inner][/vc_row_inner][/ultimate_carousel][/vc_column][/vc_row][vc_row disable_element=\"yes\"][vc_column][ultimate_heading main_heading=\"Board Of Directors\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;margin-bottom:35px;\"][/ultimate_heading][vc_row_inner][vc_column_inner width=\"1/3\"][ult_animation_block animation=\"fadeInUp\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][dt_fancy_image image_id=\"3172\" width=\"300\" border_radius=\"1px\" caption=\"off\" css=\".vc_custom_1692278922309{border-top-width: 1px !important;border-right-width: 1px !important;border-bottom-width: 1px !important;border-left-width: 1px !important;border-left-color: #059444 !important;border-left-style: solid !important;border-right-color: #059444 !important;border-right-style: solid !important;border-top-color: #059444 !important;border-top-style: solid !important;border-bottom-color: #059444 !important;border-bottom-style: solid !important;border-radius: 1px !important;}\"][ultimate_heading main_heading=\"Quisque sed nibh tristique\" heading_tag=\"h3\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;\"]\r\n<ul>\r\n 	<li>Duis lorem risus, aliquet a auctor a, venenatis in dui. Praesent et eros et risus dapibus placerat hendrerit cursus magna.</li>\r\n 	<li>Praesent et eros et risus dapibus placerat hendrerit cursus magna.</li>\r\n 	<li>aliquet a auctor a, venenatis in dui.</li>\r\n</ul>\r\n[/ultimate_heading][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/3\"][ult_animation_block animation=\"fadeInDown\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][dt_fancy_image image_id=\"3171\" width=\"300\" border_radius=\"1px\" caption=\"off\" css=\".vc_custom_1692278929158{border-top-width: 1px !important;border-right-width: 1px !important;border-bottom-width: 1px !important;border-left-width: 1px !important;border-left-color: #059444 !important;border-left-style: solid !important;border-right-color: #059444 !important;border-right-style: solid !important;border-top-color: #059444 !important;border-top-style: solid !important;border-bottom-color: #059444 !important;border-bottom-style: solid !important;border-radius: 1px !important;}\"][ultimate_heading main_heading=\"Quisque sed nibh tristique\" heading_tag=\"h3\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;\"]\r\n<ul>\r\n 	<li>Duis lorem risus, aliquet a auctor a, venenatis in dui. Praesent et eros et risus dapibus placerat hendrerit cursus magna.</li>\r\n 	<li>Praesent et eros et risus dapibus placerat hendrerit cursus magna.</li>\r\n 	<li>aliquet a auctor a, venenatis in dui.</li>\r\n</ul>\r\n[/ultimate_heading][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/3\"][ult_animation_block animation=\"fadeInUp\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][dt_fancy_image image_id=\"3170\" width=\"300\" border_radius=\"1px\" caption=\"off\" css=\".vc_custom_1692278936750{border-top-width: 1px !important;border-right-width: 1px !important;border-bottom-width: 1px !important;border-left-width: 1px !important;border-left-color: #059444 !important;border-left-style: solid !important;border-right-color: #059444 !important;border-right-style: solid !important;border-top-color: #059444 !important;border-top-style: solid !important;border-bottom-color: #059444 !important;border-bottom-style: solid !important;border-radius: 1px !important;}\"][ultimate_heading main_heading=\"Quisque sed nibh tristique\" heading_tag=\"h3\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;\"]\r\n<ul>\r\n 	<li>Duis lorem risus, aliquet a auctor a, venenatis in dui. Praesent et eros et risus dapibus placerat hendrerit cursus magna.</li>\r\n 	<li>Praesent et eros et risus dapibus placerat hendrerit cursus magna.</li>\r\n 	<li>aliquet a auctor a, venenatis in dui.</li>\r\n</ul>\r\n[/ultimate_heading][/ult_animation_block][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row disable_element=\"yes\"][vc_column][ultimate_heading main_heading=\"Executive Directors\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;margin-bottom:35px;\"][/ultimate_heading][vc_row_inner][vc_column_inner width=\"1/5\"][ult_animation_block animation=\"fadeInUp\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][dt_fancy_image image_id=\"3172\" width=\"300\" border_radius=\"1px\" caption=\"off\" css=\".vc_custom_1692278922309{border-top-width: 1px !important;border-right-width: 1px !important;border-bottom-width: 1px !important;border-left-width: 1px !important;border-left-color: #059444 !important;border-left-style: solid !important;border-right-color: #059444 !important;border-right-style: solid !important;border-top-color: #059444 !important;border-top-style: solid !important;border-bottom-color: #059444 !important;border-bottom-style: solid !important;border-radius: 1px !important;}\"][ultimate_heading main_heading=\"Quisque sed nibh tristique\" heading_tag=\"h3\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;\"]\r\n<ul>\r\n 	<li>Duis lorem risus, aliquet a auctor a, venenatis in dui. Praesent et eros et risus dapibus placerat hendrerit cursus magna.</li>\r\n 	<li>Praesent et eros et risus dapibus placerat hendrerit cursus magna.</li>\r\n 	<li>aliquet a auctor a, venenatis in dui.</li>\r\n</ul>\r\n[/ultimate_heading][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/5\"][ult_animation_block animation=\"fadeInDown\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][dt_fancy_image image_id=\"3171\" width=\"300\" border_radius=\"1px\" caption=\"off\" css=\".vc_custom_1692278929158{border-top-width: 1px !important;border-right-width: 1px !important;border-bottom-width: 1px !important;border-left-width: 1px !important;border-left-color: #059444 !important;border-left-style: solid !important;border-right-color: #059444 !important;border-right-style: solid !important;border-top-color: #059444 !important;border-top-style: solid !important;border-bottom-color: #059444 !important;border-bottom-style: solid !important;border-radius: 1px !important;}\"][ultimate_heading main_heading=\"Quisque sed nibh tristique\" heading_tag=\"h3\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;\"]\r\n<ul>\r\n 	<li>Duis lorem risus, aliquet a auctor a, venenatis in dui. Praesent et eros et risus dapibus placerat hendrerit cursus magna.</li>\r\n 	<li>Praesent et eros et risus dapibus placerat hendrerit cursus magna.</li>\r\n 	<li>aliquet a auctor a, venenatis in dui.</li>\r\n</ul>\r\n[/ultimate_heading][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/5\"][ult_animation_block animation=\"fadeInUp\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][dt_fancy_image image_id=\"3170\" width=\"300\" border_radius=\"1px\" caption=\"off\" css=\".vc_custom_1692278936750{border-top-width: 1px !important;border-right-width: 1px !important;border-bottom-width: 1px !important;border-left-width: 1px !important;border-left-color: #059444 !important;border-left-style: solid !important;border-right-color: #059444 !important;border-right-style: solid !important;border-top-color: #059444 !important;border-top-style: solid !important;border-bottom-color: #059444 !important;border-bottom-style: solid !important;border-radius: 1px !important;}\"][ultimate_heading main_heading=\"Quisque sed nibh tristique\" heading_tag=\"h3\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;\"]\r\n<ul>\r\n 	<li>Duis lorem risus, aliquet a auctor a, venenatis in dui. Praesent et eros et risus dapibus placerat hendrerit cursus magna.</li>\r\n 	<li>Praesent et eros et risus dapibus placerat hendrerit cursus magna.</li>\r\n 	<li>aliquet a auctor a, venenatis in dui.</li>\r\n</ul>\r\n[/ultimate_heading][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/5\"][ult_animation_block animation=\"fadeInDown\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][dt_fancy_image image_id=\"3170\" width=\"300\" border_radius=\"1px\" caption=\"off\" css=\".vc_custom_1692278936750{border-top-width: 1px !important;border-right-width: 1px !important;border-bottom-width: 1px !important;border-left-width: 1px !important;border-left-color: #059444 !important;border-left-style: solid !important;border-right-color: #059444 !important;border-right-style: solid !important;border-top-color: #059444 !important;border-top-style: solid !important;border-bottom-color: #059444 !important;border-bottom-style: solid !important;border-radius: 1px !important;}\"][ultimate_heading main_heading=\"Quisque sed nibh tristique\" heading_tag=\"h3\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;\"]\r\n<ul>\r\n 	<li>Duis lorem risus, aliquet a auctor a, venenatis in dui. Praesent et eros et risus dapibus placerat hendrerit cursus magna.</li>\r\n 	<li>Praesent et eros et risus dapibus placerat hendrerit cursus magna.</li>\r\n 	<li>aliquet a auctor a, venenatis in dui.</li>\r\n</ul>\r\n[/ultimate_heading][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/5\"][ult_animation_block animation=\"fadeInDown\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][dt_fancy_image image_id=\"3171\" width=\"300\" border_radius=\"1px\" caption=\"off\" css=\".vc_custom_1692278929158{border-top-width: 1px !important;border-right-width: 1px !important;border-bottom-width: 1px !important;border-left-width: 1px !important;border-left-color: #059444 !important;border-left-style: solid !important;border-right-color: #059444 !important;border-right-style: solid !important;border-top-color: #059444 !important;border-top-style: solid !important;border-bottom-color: #059444 !important;border-bottom-style: solid !important;border-radius: 1px !important;}\"][ultimate_heading main_heading=\"Quisque sed nibh tristique\" heading_tag=\"h3\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;\"]\r\n<ul>\r\n 	<li>Duis lorem risus, aliquet a auctor a, venenatis in dui. Praesent et eros et risus dapibus placerat hendrerit cursus magna.</li>\r\n 	<li>Praesent et eros et risus dapibus placerat hendrerit cursus magna.</li>\r\n 	<li>aliquet a auctor a, venenatis in dui.</li>\r\n</ul>\r\n[/ultimate_heading][/ult_animation_block][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner width=\"2/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row disable_element=\"yes\"][vc_column][ultimate_heading main_heading=\"Next Generation\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;margin-bottom:35px;\"][/ultimate_heading][vc_row_inner][vc_column_inner width=\"1/2\"][ult_animation_block animation=\"fadeInUp\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][dt_fancy_image image_id=\"3172\" width=\"300\" border_radius=\"1px\" caption=\"off\" css=\".vc_custom_1692278922309{border-top-width: 1px !important;border-right-width: 1px !important;border-bottom-width: 1px !important;border-left-width: 1px !important;border-left-color: #059444 !important;border-left-style: solid !important;border-right-color: #059444 !important;border-right-style: solid !important;border-top-color: #059444 !important;border-top-style: solid !important;border-bottom-color: #059444 !important;border-bottom-style: solid !important;border-radius: 1px !important;}\"][ultimate_heading main_heading=\"Quisque sed nibh tristique\" heading_tag=\"h3\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;\"]\r\n<ul>\r\n 	<li>Duis lorem risus, aliquet a auctor a, venenatis in dui. Praesent et eros et risus dapibus placerat hendrerit cursus magna.</li>\r\n 	<li>Praesent et eros et risus dapibus placerat hendrerit cursus magna.</li>\r\n 	<li>aliquet a auctor a, venenatis in dui.</li>\r\n</ul>\r\n[/ultimate_heading][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/2\"][ult_animation_block animation=\"fadeInDown\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][dt_fancy_image image_id=\"3171\" width=\"300\" border_radius=\"1px\" caption=\"off\" css=\".vc_custom_1692278929158{border-top-width: 1px !important;border-right-width: 1px !important;border-bottom-width: 1px !important;border-left-width: 1px !important;border-left-color: #059444 !important;border-left-style: solid !important;border-right-color: #059444 !important;border-right-style: solid !important;border-top-color: #059444 !important;border-top-style: solid !important;border-bottom-color: #059444 !important;border-bottom-style: solid !important;border-radius: 1px !important;}\"][ultimate_heading main_heading=\"Quisque sed nibh tristique\" heading_tag=\"h3\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;\"]\r\n<ul>\r\n 	<li>Duis lorem risus, aliquet a auctor a, venenatis in dui. Praesent et eros et risus dapibus placerat hendrerit cursus magna.</li>\r\n 	<li>Praesent et eros et risus dapibus placerat hendrerit cursus magna.</li>\r\n 	<li>aliquet a auctor a, venenatis in dui.</li>\r\n</ul>\r\n[/ultimate_heading][/ult_animation_block][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row]','About us','','inherit','closed','closed','','2917-revision-v1','','','2023-08-19 04:59:13','2023-08-19 04:59:13','',2917,'https://farmchemie.yasithawd.com/?p=3274',0,'revision','',0),(3275,1,'2023-08-19 05:01:01','2023-08-19 05:01:01','[vc_row full_width=\"stretch_row_content_no_spaces\"][vc_column][ultimate_heading main_heading=\"Our History\" main_heading_color=\"#762888\"][/ultimate_heading][/vc_column][/vc_row][vc_row][vc_column][vc_row_inner equal_height=\"yes\" content_placement=\"middle\" css=\".vc_custom_1692359205466{margin-top: 35px !important;}\"][vc_column_inner width=\"1/2\"][ult_animation_block animation=\"fadeInLeftBig\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][vc_single_image image=\"3273\" img_size=\"full\" alignment=\"center\" style=\"vc_box_rounded\"][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/2\"][ult_animation_block animation=\"fadeInRightBig\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][ultimate_heading main_heading=\"Founded in 2002\" heading_tag=\"h3\" main_heading_color=\"#039447\" alignment=\"left\" sub_heading_font_size=\"desktop:18px;\"]Founded in 2002 by Mr. Uditha Wanigasinghe, an agriculturist who had a mission to aid valuable livestock producers in the country to enhance the yield and profitability of production. FARMCHEMIE introduced unprecedented solutions and consistent technical services to gain our customers’ trust and became the market leader in animal health products in 2006 within just four years.[/ultimate_heading][/ult_animation_block][/vc_column_inner][/vc_row_inner][vc_separator color=\"custom\" accent_color=\"#039447\"][vc_row_inner equal_height=\"yes\" rtl_reverse=\"yes\" content_placement=\"middle\" css=\".vc_custom_1692359216075{margin-top: 35px !important;}\"][vc_column_inner width=\"1/2\"][ult_animation_block animation=\"fadeInLeftBig\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][ultimate_heading main_heading=\"2006\" heading_tag=\"h3\" main_heading_color=\"#039447\" alignment=\"left\"]In 2006, the Sri Lankan poultry industry was affected with Avian Influenza which became a difficult period for the growth of FARMCHEMIE. This was the key factor in our decision to diversify into Agro Products. PLANTCHEM &amp; PLANTSEEDS were established to offer solutions in Agro specialty fertilizers, pesticides and seeds to invaluable cultivators.[/ultimate_heading][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/2\"][ult_animation_block animation=\"fadeInRightBig\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][vc_single_image image=\"3107\" img_size=\"full\" style=\"vc_box_border_circle_2\"][/ult_animation_block][/vc_column_inner][/vc_row_inner][vc_separator color=\"custom\" accent_color=\"#039447\"][vc_row_inner equal_height=\"yes\" content_placement=\"middle\" css=\".vc_custom_1692359231594{margin-top: 35px !important;}\"][vc_column_inner width=\"1/2\"][ult_animation_block animation=\"fadeInLeftBig\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][vc_single_image image=\"3108\" img_size=\"full\" style=\"vc_box_border_circle_2\"][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/2\"][ult_animation_block animation=\"fadeInRightBig\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][ultimate_heading main_heading=\"2010\" heading_tag=\"h3\" main_heading_color=\"#039447\" alignment=\"left\"]In 2010, FEED CHEMIE became the subsequent addition to ever-growing vision of Mr. Uditha Wanigasinghe and entered the Animal Feed Additives market.[/ultimate_heading][/ult_animation_block][/vc_column_inner][/vc_row_inner][vc_separator color=\"custom\" accent_color=\"#039447\"][vc_row_inner equal_height=\"yes\" rtl_reverse=\"yes\" content_placement=\"middle\" css=\".vc_custom_1692359239274{margin-top: 35px !important;}\"][vc_column_inner width=\"1/2\"][ult_animation_block animation=\"fadeInLeftBig\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][ultimate_heading main_heading=\"2012\" heading_tag=\"h3\" main_heading_color=\"#039447\" alignment=\"left\"]The year 2012 is described as a turning point in our journey as FARMCHEMIE established our first production facility for the manufacturing and packing of animal health products. FARMCHEMIE became the first animal health organization in Sri Lanka to obtain ISO 9001:2015 and WHO GMP International Quality Certification. With our own formulation unit, FARMCHEMIE was able to offer customized solutions to cater the needs of the Sri Lankan Livestock Industry.[/ultimate_heading][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/2\"][ult_animation_block animation=\"fadeInRightBig\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][vc_single_image image=\"3111\" img_size=\"full\" style=\"vc_box_border_circle_2\"][/ult_animation_block][/vc_column_inner][/vc_row_inner][vc_separator color=\"custom\" accent_color=\"#039447\"][vc_row_inner content_placement=\"middle\" css=\".vc_custom_1692359246626{margin-top: 35px !important;}\"][vc_column_inner width=\"1/2\"][ult_animation_block animation=\"fadeInLeftBig\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][vc_single_image image=\"3112\" img_size=\"full\" style=\"vc_box_border_circle_2\"][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/2\"][ult_animation_block animation=\"fadeInRightBig\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][ultimate_heading main_heading=\"2016\" heading_tag=\"h3\" main_heading_color=\"#039447\" alignment=\"left\"]The year 2016 was another key milestone with the entry to the International Markets. FARMCHEMIE exported our first Feed Premix consignment to India and in 2018 our export operation was distinctly established as FARMCHEMIE MANUFACTURERS, a Board of Investment (BOI) approved entity.[/ultimate_heading][/ult_animation_block][/vc_column_inner][/vc_row_inner][vc_separator color=\"custom\" accent_color=\"#039447\"][vc_row_inner equal_height=\"yes\" css=\".vc_custom_1692359252258{margin-top: 35px !important;}\"][vc_column_inner width=\"1/2\"][ult_animation_block animation=\"fadeInLeftBig\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][ultimate_heading main_heading=\"Fully automated manufacturing\" heading_tag=\"h3\" main_heading_color=\"#039447\" alignment=\"left\"]FARMCHEMIE MANUFACTURERS has invested in fully automated manufacturing facility from Bühler and became the first Sri Lankan owned company to obtain FAMI-QS International Quality Certification.[/ultimate_heading][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/2\"][ult_animation_block animation=\"fadeInRightBig\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][vc_single_image image=\"3262\" img_size=\"full\" style=\"vc_box_border_circle_2\"][/ult_animation_block][/vc_column_inner][/vc_row_inner][vc_separator color=\"custom\" accent_color=\"#039447\"][vc_row_inner equal_height=\"yes\" content_placement=\"middle\" css=\".vc_custom_1692359258634{margin-top: 35px !important;}\"][vc_column_inner width=\"1/2\"][ult_animation_block animation=\"fadeInLeftBig\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][vc_single_image image=\"3116\" img_size=\"full\" style=\"vc_box_border_circle_2\"][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/2\"][ult_animation_block animation=\"fadeInRightBig\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][ultimate_heading main_heading=\"Official toll manufacturer partner\" heading_tag=\"h3\" main_heading_color=\"#039447\" alignment=\"left\"]With the trust and reputation built as a reliable manufacturer of animal feed additives and supplements in the global market, several world-renowned international brands have appointed FARMCHEMIE MANUFACTURERS as the official toll manufacturer partner. FARMCHEMIE MANUFACTURERS exports a wide range of products consisting of premixes, specialty feed additives, oral liquid supplements and pet supplements to various markets in South Asia, East Asia, Middle East and Africa.\r\n\r\nFARMCHEMIE, FEED CHEMIE &amp; FARMCHEMIE MANUFACTURERS currently operate under the ownership of our holding company, DYVESTA.\r\n\r\nDYEVSTA has become the pinnacle of Animal Nutrition and Health.\r\n\r\nDYVESTA is Dynamic, through our continuous evolution, growth and progress. DYVESTA is Diverse, in terms of both our business strategy and our community. DYVESTA is Devoted to our valuable business partners through exceptional service.[/ultimate_heading][/ult_animation_block][/vc_column_inner][/vc_row_inner][vc_separator color=\"custom\" accent_color=\"#039447\"][/vc_column][/vc_row][vc_row full_width=\"stretch_row\" equal_height=\"yes\" bg_type=\"image\" parallax_style=\"vcpb-vz-jquery\" bg_image_new=\"id^3256|url^https://farmchemie.yasithawd.com/wp-content/uploads/2023/08/Vision-Mission.png|caption^null|alt^null|title^Vision-&amp;-Mission|description^null\" bg_image_repeat=\"no-repeat\" enable_overlay=\"enable_overlay_value\" overlay_color=\"#000000\" overlay_pattern=\"01.png\" overlay_pattern_opacity=\"5\" css=\".vc_custom_1692366072362{margin-top: 35px !important;padding-top: 65px !important;padding-bottom: 100px !important;}\"][vc_column][vc_row_inner equal_height=\"yes\"][vc_column_inner width=\"1/2\"][ult_animation_block animation=\"fadeInLeftBig\" animation_duration=\"2\" animation_delay=\"0\" animation_iteration_count=\"1\"][ultimate_heading main_heading=\"Vision\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\"]To be the customers’ first and best choice by ensuring outstanding satisfaction through a well-trained and dedicated team. Prompt and quality solutions to our customers’ requirements will determine the increase of return on investment for us.[/ultimate_heading][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/2\"][ult_animation_block animation=\"fadeInRightBig\" animation_duration=\"2\" animation_delay=\"0\" animation_iteration_count=\"1\"][ultimate_heading main_heading=\"Mission\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\"]To become a world renowned manufacturer of Animal Health products and a trusted partner among our stakeholders for our integrity as well as for providing effective solutions[/ultimate_heading][/ult_animation_block][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row css=\".vc_custom_1684836308288{margin-top: 15px !important;}\"][vc_column][ultimate_heading main_heading=\"Achievements\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;\"][/ultimate_heading][vc_row_inner gap=\"20\"][vc_column_inner width=\"1/2\" css=\".vc_custom_1691995519863{background-color: #f4ab20 !important;border: 1px solid #f4ab20 !important;border-radius: 35px !important;}\"][ult_animation_block animation=\"fadeInLeftBig\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][bsf-info-box icon_type=\"custom\" icon_img=\"id^3117|url^https://farmchemie.yasithawd.com/wp-content/uploads/2023/08/Pink_-H.png|caption^null|alt^null|title^Pink_-H|description^null\" img_width=\"60\" icon_style=\"advanced\" icon_border_style=\"solid\" icon_color_border=\"#ffffff\" icon_border_size=\"1\" icon_border_radius=\"500\" icon_border_spacing=\"1\" title=\"First Free Sale Certificate obtained from Veterinary Drug Control Authority (VDCA) for Veterinary Pharmaceuticals\" title_font_style=\"font-weight:bold;\" title_font_size=\"desktop:20px;\"][/bsf-info-box][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/2\" css=\".vc_custom_1691995661095{background-color: #722f8b !important;border: 1px solid #722f8b !important;border-radius: 35px !important;}\"][ult_animation_block animation=\"fadeInRightBig\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][bsf-info-box icon_type=\"custom\" icon_img=\"id^3117|url^https://farmchemie.yasithawd.com/wp-content/uploads/2023/08/Pink_-H.png|caption^null|alt^null|title^Pink_-H|description^null\" img_width=\"60\" icon_style=\"advanced\" icon_border_style=\"solid\" icon_color_border=\"#ffffff\" icon_border_size=\"1\" icon_border_radius=\"500\" icon_border_spacing=\"1\" title=\"First ISO 9001: 2015 ,WHO-GMP Quality Management systems certified Animal Health company in Sri Lanka since August, 2012\" title_font_style=\"font-weight:bold;\" title_font_color=\"#ffffff\" title_font_size=\"desktop:20px;\"][/bsf-info-box][/ult_animation_block][/vc_column_inner][/vc_row_inner][vc_row_inner gap=\"20\"][vc_column_inner width=\"1/2\" css=\".vc_custom_1691995661095{background-color: #722f8b !important;border: 1px solid #722f8b !important;border-radius: 35px !important;}\"][ult_animation_block animation=\"fadeInLeftBig\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][bsf-info-box icon_type=\"custom\" icon_img=\"id^3117|url^https://farmchemie.yasithawd.com/wp-content/uploads/2023/08/Pink_-H.png|caption^null|alt^null|title^Pink_-H|description^null\" img_width=\"60\" icon_style=\"advanced\" icon_border_style=\"solid\" icon_color_border=\"#ffffff\" icon_border_size=\"1\" icon_border_radius=\"500\" icon_border_spacing=\"1\" title=\"First FAMI-QS certified company in sri lanka\" title_font_style=\"font-weight:bold;\" title_font_color=\"#ffffff\" title_font_size=\"desktop:20px;\"][/bsf-info-box][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/2\" css=\".vc_custom_1691995519863{background-color: #f4ab20 !important;border: 1px solid #f4ab20 !important;border-radius: 35px !important;}\"][ult_animation_block animation=\"fadeInRightBig\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][bsf-info-box icon_type=\"custom\" icon_img=\"id^3117|url^https://farmchemie.yasithawd.com/wp-content/uploads/2023/08/Pink_-H.png|caption^null|alt^null|title^Pink_-H|description^null\" img_width=\"60\" icon_style=\"advanced\" icon_border_style=\"solid\" icon_color_border=\"#ffffff\" icon_border_size=\"1\" icon_border_radius=\"500\" icon_border_spacing=\"1\" title=\"First Certificate of Ethical Trading certified in Livestock industry\" title_font_style=\"font-weight:bold;\" title_font_size=\"desktop:20px;\"][/bsf-info-box][/ult_animation_block][/vc_column_inner][/vc_row_inner][vc_row_inner gap=\"20\"][vc_column_inner width=\"1/4\" css=\".vc_custom_1691996718116{border-radius: 35px !important;}\"][/vc_column_inner][vc_column_inner width=\"2/4\" css=\".vc_custom_1691995519863{background-color: #f4ab20 !important;border: 1px solid #f4ab20 !important;border-radius: 35px !important;}\"][ult_animation_block animation=\"fadeInUpBig\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][bsf-info-box icon_type=\"custom\" icon_img=\"id^3117|url^https://farmchemie.yasithawd.com/wp-content/uploads/2023/08/Pink_-H.png|caption^null|alt^null|title^Pink_-H|description^null\" img_width=\"60\" icon_style=\"advanced\" icon_border_style=\"solid\" icon_color_border=\"#ffffff\" icon_border_size=\"1\" icon_border_radius=\"500\" icon_border_spacing=\"1\" title=\"First Silver awarded company at National Exports Awards in Livestock industry\" title_font_style=\"font-weight:bold;\" title_font_size=\"desktop:20px;\"][/bsf-info-box][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/4\"][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner width=\"1/6\"][/vc_column_inner][vc_column_inner width=\"2/3\"][vc_single_image image=\"3126\" img_size=\"full\" alignment=\"center\"][vc_single_image image=\"3125\" img_size=\"full\" alignment=\"center\"][/vc_column_inner][vc_column_inner width=\"1/6\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row][vc_column][ultimate_heading main_heading=\"Board Of Directors\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;margin-bottom:35px;\"][/ultimate_heading][ultimate_carousel slides_on_desk=\"3\" slides_on_mob=\"1\" arrow_style=\"square-bg\" arrow_bg_color=\"#039447\" arrow_color=\"#ffffff\" next_icon=\"ultsl-arrow-right6\" prev_icon=\"ultsl-arrow-left6\" dots_color=\"#039447\" item_animation=\"fadeIn\"][vc_row_inner][vc_column_inner][dt_fancy_image image_id=\"3173\" width=\"300\" border_radius=\"1px\" caption=\"off\"][ultimate_heading main_heading=\"Quisque sed nibh tristique\" heading_tag=\"h3\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;\"]Duis lorem risus, aliquet a auctor a, venenatis in dui. Praesent et eros et risus dapibus placerat hendrerit cursus magna.[/ultimate_heading][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner][dt_fancy_image image_id=\"3170\" width=\"300\" border_radius=\"1px\" caption=\"off\"][ultimate_heading main_heading=\"Quisque sed nibh tristique\" heading_tag=\"h3\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;\"]Duis lorem risus, aliquet a auctor a, venenatis in dui. Praesent et eros et risus dapibus placerat hendrerit cursus magna.[/ultimate_heading][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner][dt_fancy_image image_id=\"3171\" width=\"300\" border_radius=\"1px\" caption=\"off\"][ultimate_heading main_heading=\"Quisque sed nibh tristique\" heading_tag=\"h3\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;\"]Duis lorem risus, aliquet a auctor a, venenatis in dui. Praesent et eros et risus dapibus placerat hendrerit cursus magna.[/ultimate_heading][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner][dt_fancy_image image_id=\"3172\" width=\"300\" border_radius=\"1px\" caption=\"off\"][ultimate_heading main_heading=\"Quisque sed nibh tristique\" heading_tag=\"h3\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;\"]Duis lorem risus, aliquet a auctor a, venenatis in dui. Praesent et eros et risus dapibus placerat hendrerit cursus magna.[/ultimate_heading][/vc_column_inner][/vc_row_inner][/ultimate_carousel][/vc_column][/vc_row][vc_row disable_element=\"yes\"][vc_column][ultimate_heading main_heading=\"Board Of Directors\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;margin-bottom:35px;\"][/ultimate_heading][vc_row_inner][vc_column_inner width=\"1/3\"][ult_animation_block animation=\"fadeInUp\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][dt_fancy_image image_id=\"3172\" width=\"300\" border_radius=\"1px\" caption=\"off\" css=\".vc_custom_1692278922309{border-top-width: 1px !important;border-right-width: 1px !important;border-bottom-width: 1px !important;border-left-width: 1px !important;border-left-color: #059444 !important;border-left-style: solid !important;border-right-color: #059444 !important;border-right-style: solid !important;border-top-color: #059444 !important;border-top-style: solid !important;border-bottom-color: #059444 !important;border-bottom-style: solid !important;border-radius: 1px !important;}\"][ultimate_heading main_heading=\"Quisque sed nibh tristique\" heading_tag=\"h3\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;\"]\r\n<ul>\r\n 	<li>Duis lorem risus, aliquet a auctor a, venenatis in dui. Praesent et eros et risus dapibus placerat hendrerit cursus magna.</li>\r\n 	<li>Praesent et eros et risus dapibus placerat hendrerit cursus magna.</li>\r\n 	<li>aliquet a auctor a, venenatis in dui.</li>\r\n</ul>\r\n[/ultimate_heading][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/3\"][ult_animation_block animation=\"fadeInDown\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][dt_fancy_image image_id=\"3171\" width=\"300\" border_radius=\"1px\" caption=\"off\" css=\".vc_custom_1692278929158{border-top-width: 1px !important;border-right-width: 1px !important;border-bottom-width: 1px !important;border-left-width: 1px !important;border-left-color: #059444 !important;border-left-style: solid !important;border-right-color: #059444 !important;border-right-style: solid !important;border-top-color: #059444 !important;border-top-style: solid !important;border-bottom-color: #059444 !important;border-bottom-style: solid !important;border-radius: 1px !important;}\"][ultimate_heading main_heading=\"Quisque sed nibh tristique\" heading_tag=\"h3\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;\"]\r\n<ul>\r\n 	<li>Duis lorem risus, aliquet a auctor a, venenatis in dui. Praesent et eros et risus dapibus placerat hendrerit cursus magna.</li>\r\n 	<li>Praesent et eros et risus dapibus placerat hendrerit cursus magna.</li>\r\n 	<li>aliquet a auctor a, venenatis in dui.</li>\r\n</ul>\r\n[/ultimate_heading][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/3\"][ult_animation_block animation=\"fadeInUp\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][dt_fancy_image image_id=\"3170\" width=\"300\" border_radius=\"1px\" caption=\"off\" css=\".vc_custom_1692278936750{border-top-width: 1px !important;border-right-width: 1px !important;border-bottom-width: 1px !important;border-left-width: 1px !important;border-left-color: #059444 !important;border-left-style: solid !important;border-right-color: #059444 !important;border-right-style: solid !important;border-top-color: #059444 !important;border-top-style: solid !important;border-bottom-color: #059444 !important;border-bottom-style: solid !important;border-radius: 1px !important;}\"][ultimate_heading main_heading=\"Quisque sed nibh tristique\" heading_tag=\"h3\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;\"]\r\n<ul>\r\n 	<li>Duis lorem risus, aliquet a auctor a, venenatis in dui. Praesent et eros et risus dapibus placerat hendrerit cursus magna.</li>\r\n 	<li>Praesent et eros et risus dapibus placerat hendrerit cursus magna.</li>\r\n 	<li>aliquet a auctor a, venenatis in dui.</li>\r\n</ul>\r\n[/ultimate_heading][/ult_animation_block][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row disable_element=\"yes\"][vc_column][ultimate_heading main_heading=\"Executive Directors\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;margin-bottom:35px;\"][/ultimate_heading][vc_row_inner][vc_column_inner width=\"1/5\"][ult_animation_block animation=\"fadeInUp\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][dt_fancy_image image_id=\"3172\" width=\"300\" border_radius=\"1px\" caption=\"off\" css=\".vc_custom_1692278922309{border-top-width: 1px !important;border-right-width: 1px !important;border-bottom-width: 1px !important;border-left-width: 1px !important;border-left-color: #059444 !important;border-left-style: solid !important;border-right-color: #059444 !important;border-right-style: solid !important;border-top-color: #059444 !important;border-top-style: solid !important;border-bottom-color: #059444 !important;border-bottom-style: solid !important;border-radius: 1px !important;}\"][ultimate_heading main_heading=\"Quisque sed nibh tristique\" heading_tag=\"h3\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;\"]\r\n<ul>\r\n 	<li>Duis lorem risus, aliquet a auctor a, venenatis in dui. Praesent et eros et risus dapibus placerat hendrerit cursus magna.</li>\r\n 	<li>Praesent et eros et risus dapibus placerat hendrerit cursus magna.</li>\r\n 	<li>aliquet a auctor a, venenatis in dui.</li>\r\n</ul>\r\n[/ultimate_heading][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/5\"][ult_animation_block animation=\"fadeInDown\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][dt_fancy_image image_id=\"3171\" width=\"300\" border_radius=\"1px\" caption=\"off\" css=\".vc_custom_1692278929158{border-top-width: 1px !important;border-right-width: 1px !important;border-bottom-width: 1px !important;border-left-width: 1px !important;border-left-color: #059444 !important;border-left-style: solid !important;border-right-color: #059444 !important;border-right-style: solid !important;border-top-color: #059444 !important;border-top-style: solid !important;border-bottom-color: #059444 !important;border-bottom-style: solid !important;border-radius: 1px !important;}\"][ultimate_heading main_heading=\"Quisque sed nibh tristique\" heading_tag=\"h3\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;\"]\r\n<ul>\r\n 	<li>Duis lorem risus, aliquet a auctor a, venenatis in dui. Praesent et eros et risus dapibus placerat hendrerit cursus magna.</li>\r\n 	<li>Praesent et eros et risus dapibus placerat hendrerit cursus magna.</li>\r\n 	<li>aliquet a auctor a, venenatis in dui.</li>\r\n</ul>\r\n[/ultimate_heading][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/5\"][ult_animation_block animation=\"fadeInUp\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][dt_fancy_image image_id=\"3170\" width=\"300\" border_radius=\"1px\" caption=\"off\" css=\".vc_custom_1692278936750{border-top-width: 1px !important;border-right-width: 1px !important;border-bottom-width: 1px !important;border-left-width: 1px !important;border-left-color: #059444 !important;border-left-style: solid !important;border-right-color: #059444 !important;border-right-style: solid !important;border-top-color: #059444 !important;border-top-style: solid !important;border-bottom-color: #059444 !important;border-bottom-style: solid !important;border-radius: 1px !important;}\"][ultimate_heading main_heading=\"Quisque sed nibh tristique\" heading_tag=\"h3\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;\"]\r\n<ul>\r\n 	<li>Duis lorem risus, aliquet a auctor a, venenatis in dui. Praesent et eros et risus dapibus placerat hendrerit cursus magna.</li>\r\n 	<li>Praesent et eros et risus dapibus placerat hendrerit cursus magna.</li>\r\n 	<li>aliquet a auctor a, venenatis in dui.</li>\r\n</ul>\r\n[/ultimate_heading][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/5\"][ult_animation_block animation=\"fadeInDown\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][dt_fancy_image image_id=\"3170\" width=\"300\" border_radius=\"1px\" caption=\"off\" css=\".vc_custom_1692278936750{border-top-width: 1px !important;border-right-width: 1px !important;border-bottom-width: 1px !important;border-left-width: 1px !important;border-left-color: #059444 !important;border-left-style: solid !important;border-right-color: #059444 !important;border-right-style: solid !important;border-top-color: #059444 !important;border-top-style: solid !important;border-bottom-color: #059444 !important;border-bottom-style: solid !important;border-radius: 1px !important;}\"][ultimate_heading main_heading=\"Quisque sed nibh tristique\" heading_tag=\"h3\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;\"]\r\n<ul>\r\n 	<li>Duis lorem risus, aliquet a auctor a, venenatis in dui. Praesent et eros et risus dapibus placerat hendrerit cursus magna.</li>\r\n 	<li>Praesent et eros et risus dapibus placerat hendrerit cursus magna.</li>\r\n 	<li>aliquet a auctor a, venenatis in dui.</li>\r\n</ul>\r\n[/ultimate_heading][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/5\"][ult_animation_block animation=\"fadeInDown\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][dt_fancy_image image_id=\"3171\" width=\"300\" border_radius=\"1px\" caption=\"off\" css=\".vc_custom_1692278929158{border-top-width: 1px !important;border-right-width: 1px !important;border-bottom-width: 1px !important;border-left-width: 1px !important;border-left-color: #059444 !important;border-left-style: solid !important;border-right-color: #059444 !important;border-right-style: solid !important;border-top-color: #059444 !important;border-top-style: solid !important;border-bottom-color: #059444 !important;border-bottom-style: solid !important;border-radius: 1px !important;}\"][ultimate_heading main_heading=\"Quisque sed nibh tristique\" heading_tag=\"h3\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;\"]\r\n<ul>\r\n 	<li>Duis lorem risus, aliquet a auctor a, venenatis in dui. Praesent et eros et risus dapibus placerat hendrerit cursus magna.</li>\r\n 	<li>Praesent et eros et risus dapibus placerat hendrerit cursus magna.</li>\r\n 	<li>aliquet a auctor a, venenatis in dui.</li>\r\n</ul>\r\n[/ultimate_heading][/ult_animation_block][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner width=\"2/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row disable_element=\"yes\"][vc_column][ultimate_heading main_heading=\"Next Generation\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;margin-bottom:35px;\"][/ultimate_heading][vc_row_inner][vc_column_inner width=\"1/2\"][ult_animation_block animation=\"fadeInUp\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][dt_fancy_image image_id=\"3172\" width=\"300\" border_radius=\"1px\" caption=\"off\" css=\".vc_custom_1692278922309{border-top-width: 1px !important;border-right-width: 1px !important;border-bottom-width: 1px !important;border-left-width: 1px !important;border-left-color: #059444 !important;border-left-style: solid !important;border-right-color: #059444 !important;border-right-style: solid !important;border-top-color: #059444 !important;border-top-style: solid !important;border-bottom-color: #059444 !important;border-bottom-style: solid !important;border-radius: 1px !important;}\"][ultimate_heading main_heading=\"Quisque sed nibh tristique\" heading_tag=\"h3\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;\"]\r\n<ul>\r\n 	<li>Duis lorem risus, aliquet a auctor a, venenatis in dui. Praesent et eros et risus dapibus placerat hendrerit cursus magna.</li>\r\n 	<li>Praesent et eros et risus dapibus placerat hendrerit cursus magna.</li>\r\n 	<li>aliquet a auctor a, venenatis in dui.</li>\r\n</ul>\r\n[/ultimate_heading][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/2\"][ult_animation_block animation=\"fadeInDown\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][dt_fancy_image image_id=\"3171\" width=\"300\" border_radius=\"1px\" caption=\"off\" css=\".vc_custom_1692278929158{border-top-width: 1px !important;border-right-width: 1px !important;border-bottom-width: 1px !important;border-left-width: 1px !important;border-left-color: #059444 !important;border-left-style: solid !important;border-right-color: #059444 !important;border-right-style: solid !important;border-top-color: #059444 !important;border-top-style: solid !important;border-bottom-color: #059444 !important;border-bottom-style: solid !important;border-radius: 1px !important;}\"][ultimate_heading main_heading=\"Quisque sed nibh tristique\" heading_tag=\"h3\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;\"]\r\n<ul>\r\n 	<li>Duis lorem risus, aliquet a auctor a, venenatis in dui. Praesent et eros et risus dapibus placerat hendrerit cursus magna.</li>\r\n 	<li>Praesent et eros et risus dapibus placerat hendrerit cursus magna.</li>\r\n 	<li>aliquet a auctor a, venenatis in dui.</li>\r\n</ul>\r\n[/ultimate_heading][/ult_animation_block][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row]','About us','','inherit','closed','closed','','2917-revision-v1','','','2023-08-19 05:01:01','2023-08-19 05:01:01','',2917,'https://farmchemie.yasithawd.com/?p=3275',0,'revision','',0),(3277,1,'2023-08-19 05:14:56','2023-08-19 05:14:56','','2010','','inherit','open','closed','','2010','','','2023-08-19 05:14:56','2023-08-19 05:14:56','',2917,'https://farmchemie.yasithawd.com/wp-content/uploads/2023/08/2010.png',0,'attachment','image/png',0),(3278,1,'2023-08-19 05:15:22','2023-08-19 05:15:22','','2012','','inherit','open','closed','','2012','','','2023-08-19 05:15:22','2023-08-19 05:15:22','',2917,'https://farmchemie.yasithawd.com/wp-content/uploads/2023/08/2012.png',0,'attachment','image/png',0),(3280,1,'2023-08-19 05:16:38','2023-08-19 05:16:38','','Fully-automated-manufacturing (1)','','inherit','open','closed','','fully-automated-manufacturing-1','','','2023-08-19 05:16:38','2023-08-19 05:16:38','',2917,'https://farmchemie.yasithawd.com/wp-content/uploads/2023/08/Fully-automated-manufacturing-1.png',0,'attachment','image/png',0),(3281,1,'2023-08-19 05:17:04','2023-08-19 05:17:04','','Dyvesta','','inherit','open','closed','','dyvesta','','','2023-08-19 05:17:04','2023-08-19 05:17:04','',2917,'https://farmchemie.yasithawd.com/wp-content/uploads/2023/08/Dyvesta.png',0,'attachment','image/png',0),(3282,1,'2023-08-19 05:17:29','2023-08-19 05:17:29','[vc_row full_width=\"stretch_row_content_no_spaces\"][vc_column][ultimate_heading main_heading=\"Our History\" main_heading_color=\"#762888\"][/ultimate_heading][/vc_column][/vc_row][vc_row][vc_column][vc_row_inner equal_height=\"yes\" content_placement=\"middle\" css=\".vc_custom_1692359205466{margin-top: 35px !important;}\"][vc_column_inner width=\"1/2\"][ult_animation_block animation=\"fadeInLeftBig\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][vc_single_image image=\"3273\" img_size=\"full\" alignment=\"center\" style=\"vc_box_rounded\"][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/2\"][ult_animation_block animation=\"fadeInRightBig\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][ultimate_heading main_heading=\"Founded in 2002\" heading_tag=\"h3\" main_heading_color=\"#039447\" alignment=\"left\" sub_heading_font_size=\"desktop:18px;\"]Founded in 2002 by Mr. Uditha Wanigasinghe, an agriculturist who had a mission to aid valuable livestock producers in the country to enhance the yield and profitability of production. FARMCHEMIE introduced unprecedented solutions and consistent technical services to gain our customers’ trust and became the market leader in animal health products in 2006 within just four years.[/ultimate_heading][/ult_animation_block][/vc_column_inner][/vc_row_inner][vc_separator color=\"custom\" accent_color=\"#039447\"][vc_row_inner equal_height=\"yes\" rtl_reverse=\"yes\" content_placement=\"middle\" css=\".vc_custom_1692359216075{margin-top: 35px !important;}\"][vc_column_inner width=\"1/2\"][ult_animation_block animation=\"fadeInLeftBig\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][ultimate_heading main_heading=\"2006\" heading_tag=\"h3\" main_heading_color=\"#039447\" alignment=\"left\"]In 2006, the Sri Lankan poultry industry was affected with Avian Influenza which became a difficult period for the growth of FARMCHEMIE. This was the key factor in our decision to diversify into Agro Products. PLANTCHEM &amp; PLANTSEEDS were established to offer solutions in Agro specialty fertilizers, pesticides and seeds to invaluable cultivators.[/ultimate_heading][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/2\"][ult_animation_block animation=\"fadeInRightBig\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][vc_single_image image=\"3276\" img_size=\"full\" alignment=\"center\" style=\"vc_box_rounded\"][/ult_animation_block][/vc_column_inner][/vc_row_inner][vc_separator color=\"custom\" accent_color=\"#039447\"][vc_row_inner equal_height=\"yes\" content_placement=\"middle\" css=\".vc_custom_1692359231594{margin-top: 35px !important;}\"][vc_column_inner width=\"1/2\"][ult_animation_block animation=\"fadeInLeftBig\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][vc_single_image image=\"3277\" img_size=\"full\" alignment=\"center\" style=\"vc_box_rounded\"][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/2\"][ult_animation_block animation=\"fadeInRightBig\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][ultimate_heading main_heading=\"2010\" heading_tag=\"h3\" main_heading_color=\"#039447\" alignment=\"left\"]In 2010, FEED CHEMIE became the subsequent addition to ever-growing vision of Mr. Uditha Wanigasinghe and entered the Animal Feed Additives market.[/ultimate_heading][/ult_animation_block][/vc_column_inner][/vc_row_inner][vc_separator color=\"custom\" accent_color=\"#039447\"][vc_row_inner equal_height=\"yes\" rtl_reverse=\"yes\" content_placement=\"middle\" css=\".vc_custom_1692359239274{margin-top: 35px !important;}\"][vc_column_inner width=\"1/2\"][ult_animation_block animation=\"fadeInLeftBig\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][ultimate_heading main_heading=\"2012\" heading_tag=\"h3\" main_heading_color=\"#039447\" alignment=\"left\"]The year 2012 is described as a turning point in our journey as FARMCHEMIE established our first production facility for the manufacturing and packing of animal health products. FARMCHEMIE became the first animal health organization in Sri Lanka to obtain ISO 9001:2015 and WHO GMP International Quality Certification. With our own formulation unit, FARMCHEMIE was able to offer customized solutions to cater the needs of the Sri Lankan Livestock Industry.[/ultimate_heading][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/2\"][ult_animation_block animation=\"fadeInRightBig\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][vc_single_image image=\"3278\" img_size=\"full\" alignment=\"center\" style=\"vc_box_rounded\"][/ult_animation_block][/vc_column_inner][/vc_row_inner][vc_separator color=\"custom\" accent_color=\"#039447\"][vc_row_inner content_placement=\"middle\" css=\".vc_custom_1692359246626{margin-top: 35px !important;}\"][vc_column_inner width=\"1/2\"][ult_animation_block animation=\"fadeInLeftBig\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][vc_single_image image=\"3279\" img_size=\"full\" alignment=\"center\" style=\"vc_box_rounded\"][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/2\"][ult_animation_block animation=\"fadeInRightBig\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][ultimate_heading main_heading=\"2016\" heading_tag=\"h3\" main_heading_color=\"#039447\" alignment=\"left\"]The year 2016 was another key milestone with the entry to the International Markets. FARMCHEMIE exported our first Feed Premix consignment to India and in 2018 our export operation was distinctly established as FARMCHEMIE MANUFACTURERS, a Board of Investment (BOI) approved entity.[/ultimate_heading][/ult_animation_block][/vc_column_inner][/vc_row_inner][vc_separator color=\"custom\" accent_color=\"#039447\"][vc_row_inner equal_height=\"yes\" css=\".vc_custom_1692359252258{margin-top: 35px !important;}\"][vc_column_inner width=\"1/2\"][ult_animation_block animation=\"fadeInLeftBig\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][ultimate_heading main_heading=\"Fully automated manufacturing\" heading_tag=\"h3\" main_heading_color=\"#039447\" alignment=\"left\"]FARMCHEMIE MANUFACTURERS has invested in fully automated manufacturing facility from Bühler and became the first Sri Lankan owned company to obtain FAMI-QS International Quality Certification.[/ultimate_heading][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/2\"][ult_animation_block animation=\"fadeInRightBig\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][vc_single_image image=\"3280\" img_size=\"full\" alignment=\"center\" style=\"vc_box_rounded\"][/ult_animation_block][/vc_column_inner][/vc_row_inner][vc_separator color=\"custom\" accent_color=\"#039447\"][vc_row_inner equal_height=\"yes\" content_placement=\"middle\" css=\".vc_custom_1692359258634{margin-top: 35px !important;}\"][vc_column_inner width=\"1/2\"][ult_animation_block animation=\"fadeInLeftBig\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][vc_single_image image=\"3281\" img_size=\"full\" alignment=\"center\" style=\"vc_box_rounded\"][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/2\"][ult_animation_block animation=\"fadeInRightBig\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][ultimate_heading main_heading=\"Official toll manufacturer partner\" heading_tag=\"h3\" main_heading_color=\"#039447\" alignment=\"left\"]With the trust and reputation built as a reliable manufacturer of animal feed additives and supplements in the global market, several world-renowned international brands have appointed FARMCHEMIE MANUFACTURERS as the official toll manufacturer partner. FARMCHEMIE MANUFACTURERS exports a wide range of products consisting of premixes, specialty feed additives, oral liquid supplements and pet supplements to various markets in South Asia, East Asia, Middle East and Africa.\r\n\r\nFARMCHEMIE, FEED CHEMIE &amp; FARMCHEMIE MANUFACTURERS currently operate under the ownership of our holding company, DYVESTA.\r\n\r\nDYEVSTA has become the pinnacle of Animal Nutrition and Health.\r\n\r\nDYVESTA is Dynamic, through our continuous evolution, growth and progress. DYVESTA is Diverse, in terms of both our business strategy and our community. DYVESTA is Devoted to our valuable business partners through exceptional service.[/ultimate_heading][/ult_animation_block][/vc_column_inner][/vc_row_inner][vc_separator color=\"custom\" accent_color=\"#039447\"][/vc_column][/vc_row][vc_row full_width=\"stretch_row\" equal_height=\"yes\" bg_type=\"image\" parallax_style=\"vcpb-vz-jquery\" bg_image_new=\"id^3256|url^https://farmchemie.yasithawd.com/wp-content/uploads/2023/08/Vision-Mission.png|caption^null|alt^null|title^Vision-&amp;-Mission|description^null\" bg_image_repeat=\"no-repeat\" enable_overlay=\"enable_overlay_value\" overlay_color=\"#000000\" overlay_pattern=\"01.png\" overlay_pattern_opacity=\"5\" css=\".vc_custom_1692366072362{margin-top: 35px !important;padding-top: 65px !important;padding-bottom: 100px !important;}\"][vc_column][vc_row_inner equal_height=\"yes\"][vc_column_inner width=\"1/2\"][ult_animation_block animation=\"fadeInLeftBig\" animation_duration=\"2\" animation_delay=\"0\" animation_iteration_count=\"1\"][ultimate_heading main_heading=\"Vision\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\"]To be the customers’ first and best choice by ensuring outstanding satisfaction through a well-trained and dedicated team. Prompt and quality solutions to our customers’ requirements will determine the increase of return on investment for us.[/ultimate_heading][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/2\"][ult_animation_block animation=\"fadeInRightBig\" animation_duration=\"2\" animation_delay=\"0\" animation_iteration_count=\"1\"][ultimate_heading main_heading=\"Mission\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\"]To become a world renowned manufacturer of Animal Health products and a trusted partner among our stakeholders for our integrity as well as for providing effective solutions[/ultimate_heading][/ult_animation_block][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row css=\".vc_custom_1684836308288{margin-top: 15px !important;}\"][vc_column][ultimate_heading main_heading=\"Achievements\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;\"][/ultimate_heading][vc_row_inner gap=\"20\"][vc_column_inner width=\"1/2\" css=\".vc_custom_1691995519863{background-color: #f4ab20 !important;border: 1px solid #f4ab20 !important;border-radius: 35px !important;}\"][ult_animation_block animation=\"fadeInLeftBig\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][bsf-info-box icon_type=\"custom\" icon_img=\"id^3117|url^https://farmchemie.yasithawd.com/wp-content/uploads/2023/08/Pink_-H.png|caption^null|alt^null|title^Pink_-H|description^null\" img_width=\"60\" icon_style=\"advanced\" icon_border_style=\"solid\" icon_color_border=\"#ffffff\" icon_border_size=\"1\" icon_border_radius=\"500\" icon_border_spacing=\"1\" title=\"First Free Sale Certificate obtained from Veterinary Drug Control Authority (VDCA) for Veterinary Pharmaceuticals\" title_font_style=\"font-weight:bold;\" title_font_size=\"desktop:20px;\"][/bsf-info-box][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/2\" css=\".vc_custom_1691995661095{background-color: #722f8b !important;border: 1px solid #722f8b !important;border-radius: 35px !important;}\"][ult_animation_block animation=\"fadeInRightBig\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][bsf-info-box icon_type=\"custom\" icon_img=\"id^3117|url^https://farmchemie.yasithawd.com/wp-content/uploads/2023/08/Pink_-H.png|caption^null|alt^null|title^Pink_-H|description^null\" img_width=\"60\" icon_style=\"advanced\" icon_border_style=\"solid\" icon_color_border=\"#ffffff\" icon_border_size=\"1\" icon_border_radius=\"500\" icon_border_spacing=\"1\" title=\"First ISO 9001: 2015 ,WHO-GMP Quality Management systems certified Animal Health company in Sri Lanka since August, 2012\" title_font_style=\"font-weight:bold;\" title_font_color=\"#ffffff\" title_font_size=\"desktop:20px;\"][/bsf-info-box][/ult_animation_block][/vc_column_inner][/vc_row_inner][vc_row_inner gap=\"20\"][vc_column_inner width=\"1/2\" css=\".vc_custom_1691995661095{background-color: #722f8b !important;border: 1px solid #722f8b !important;border-radius: 35px !important;}\"][ult_animation_block animation=\"fadeInLeftBig\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][bsf-info-box icon_type=\"custom\" icon_img=\"id^3117|url^https://farmchemie.yasithawd.com/wp-content/uploads/2023/08/Pink_-H.png|caption^null|alt^null|title^Pink_-H|description^null\" img_width=\"60\" icon_style=\"advanced\" icon_border_style=\"solid\" icon_color_border=\"#ffffff\" icon_border_size=\"1\" icon_border_radius=\"500\" icon_border_spacing=\"1\" title=\"First FAMI-QS certified company in sri lanka\" title_font_style=\"font-weight:bold;\" title_font_color=\"#ffffff\" title_font_size=\"desktop:20px;\"][/bsf-info-box][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/2\" css=\".vc_custom_1691995519863{background-color: #f4ab20 !important;border: 1px solid #f4ab20 !important;border-radius: 35px !important;}\"][ult_animation_block animation=\"fadeInRightBig\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][bsf-info-box icon_type=\"custom\" icon_img=\"id^3117|url^https://farmchemie.yasithawd.com/wp-content/uploads/2023/08/Pink_-H.png|caption^null|alt^null|title^Pink_-H|description^null\" img_width=\"60\" icon_style=\"advanced\" icon_border_style=\"solid\" icon_color_border=\"#ffffff\" icon_border_size=\"1\" icon_border_radius=\"500\" icon_border_spacing=\"1\" title=\"First Certificate of Ethical Trading certified in Livestock industry\" title_font_style=\"font-weight:bold;\" title_font_size=\"desktop:20px;\"][/bsf-info-box][/ult_animation_block][/vc_column_inner][/vc_row_inner][vc_row_inner gap=\"20\"][vc_column_inner width=\"1/4\" css=\".vc_custom_1691996718116{border-radius: 35px !important;}\"][/vc_column_inner][vc_column_inner width=\"2/4\" css=\".vc_custom_1691995519863{background-color: #f4ab20 !important;border: 1px solid #f4ab20 !important;border-radius: 35px !important;}\"][ult_animation_block animation=\"fadeInUpBig\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][bsf-info-box icon_type=\"custom\" icon_img=\"id^3117|url^https://farmchemie.yasithawd.com/wp-content/uploads/2023/08/Pink_-H.png|caption^null|alt^null|title^Pink_-H|description^null\" img_width=\"60\" icon_style=\"advanced\" icon_border_style=\"solid\" icon_color_border=\"#ffffff\" icon_border_size=\"1\" icon_border_radius=\"500\" icon_border_spacing=\"1\" title=\"First Silver awarded company at National Exports Awards in Livestock industry\" title_font_style=\"font-weight:bold;\" title_font_size=\"desktop:20px;\"][/bsf-info-box][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/4\"][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner width=\"1/6\"][/vc_column_inner][vc_column_inner width=\"2/3\"][vc_single_image image=\"3126\" img_size=\"full\" alignment=\"center\"][vc_single_image image=\"3125\" img_size=\"full\" alignment=\"center\"][/vc_column_inner][vc_column_inner width=\"1/6\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row][vc_column][ultimate_heading main_heading=\"Board Of Directors\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;margin-bottom:35px;\"][/ultimate_heading][ultimate_carousel slides_on_desk=\"3\" slides_on_mob=\"1\" arrow_style=\"square-bg\" arrow_bg_color=\"#039447\" arrow_color=\"#ffffff\" next_icon=\"ultsl-arrow-right6\" prev_icon=\"ultsl-arrow-left6\" dots_color=\"#039447\" item_animation=\"fadeIn\"][vc_row_inner][vc_column_inner][dt_fancy_image image_id=\"3173\" width=\"300\" border_radius=\"1px\" caption=\"off\"][ultimate_heading main_heading=\"Quisque sed nibh tristique\" heading_tag=\"h3\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;\"]Duis lorem risus, aliquet a auctor a, venenatis in dui. Praesent et eros et risus dapibus placerat hendrerit cursus magna.[/ultimate_heading][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner][dt_fancy_image image_id=\"3170\" width=\"300\" border_radius=\"1px\" caption=\"off\"][ultimate_heading main_heading=\"Quisque sed nibh tristique\" heading_tag=\"h3\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;\"]Duis lorem risus, aliquet a auctor a, venenatis in dui. Praesent et eros et risus dapibus placerat hendrerit cursus magna.[/ultimate_heading][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner][dt_fancy_image image_id=\"3171\" width=\"300\" border_radius=\"1px\" caption=\"off\"][ultimate_heading main_heading=\"Quisque sed nibh tristique\" heading_tag=\"h3\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;\"]Duis lorem risus, aliquet a auctor a, venenatis in dui. Praesent et eros et risus dapibus placerat hendrerit cursus magna.[/ultimate_heading][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner][dt_fancy_image image_id=\"3172\" width=\"300\" border_radius=\"1px\" caption=\"off\"][ultimate_heading main_heading=\"Quisque sed nibh tristique\" heading_tag=\"h3\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;\"]Duis lorem risus, aliquet a auctor a, venenatis in dui. Praesent et eros et risus dapibus placerat hendrerit cursus magna.[/ultimate_heading][/vc_column_inner][/vc_row_inner][/ultimate_carousel][/vc_column][/vc_row][vc_row disable_element=\"yes\"][vc_column][ultimate_heading main_heading=\"Board Of Directors\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;margin-bottom:35px;\"][/ultimate_heading][vc_row_inner][vc_column_inner width=\"1/3\"][ult_animation_block animation=\"fadeInUp\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][dt_fancy_image image_id=\"3172\" width=\"300\" border_radius=\"1px\" caption=\"off\" css=\".vc_custom_1692278922309{border-top-width: 1px !important;border-right-width: 1px !important;border-bottom-width: 1px !important;border-left-width: 1px !important;border-left-color: #059444 !important;border-left-style: solid !important;border-right-color: #059444 !important;border-right-style: solid !important;border-top-color: #059444 !important;border-top-style: solid !important;border-bottom-color: #059444 !important;border-bottom-style: solid !important;border-radius: 1px !important;}\"][ultimate_heading main_heading=\"Quisque sed nibh tristique\" heading_tag=\"h3\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;\"]\r\n<ul>\r\n 	<li>Duis lorem risus, aliquet a auctor a, venenatis in dui. Praesent et eros et risus dapibus placerat hendrerit cursus magna.</li>\r\n 	<li>Praesent et eros et risus dapibus placerat hendrerit cursus magna.</li>\r\n 	<li>aliquet a auctor a, venenatis in dui.</li>\r\n</ul>\r\n[/ultimate_heading][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/3\"][ult_animation_block animation=\"fadeInDown\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][dt_fancy_image image_id=\"3171\" width=\"300\" border_radius=\"1px\" caption=\"off\" css=\".vc_custom_1692278929158{border-top-width: 1px !important;border-right-width: 1px !important;border-bottom-width: 1px !important;border-left-width: 1px !important;border-left-color: #059444 !important;border-left-style: solid !important;border-right-color: #059444 !important;border-right-style: solid !important;border-top-color: #059444 !important;border-top-style: solid !important;border-bottom-color: #059444 !important;border-bottom-style: solid !important;border-radius: 1px !important;}\"][ultimate_heading main_heading=\"Quisque sed nibh tristique\" heading_tag=\"h3\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;\"]\r\n<ul>\r\n 	<li>Duis lorem risus, aliquet a auctor a, venenatis in dui. Praesent et eros et risus dapibus placerat hendrerit cursus magna.</li>\r\n 	<li>Praesent et eros et risus dapibus placerat hendrerit cursus magna.</li>\r\n 	<li>aliquet a auctor a, venenatis in dui.</li>\r\n</ul>\r\n[/ultimate_heading][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/3\"][ult_animation_block animation=\"fadeInUp\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][dt_fancy_image image_id=\"3170\" width=\"300\" border_radius=\"1px\" caption=\"off\" css=\".vc_custom_1692278936750{border-top-width: 1px !important;border-right-width: 1px !important;border-bottom-width: 1px !important;border-left-width: 1px !important;border-left-color: #059444 !important;border-left-style: solid !important;border-right-color: #059444 !important;border-right-style: solid !important;border-top-color: #059444 !important;border-top-style: solid !important;border-bottom-color: #059444 !important;border-bottom-style: solid !important;border-radius: 1px !important;}\"][ultimate_heading main_heading=\"Quisque sed nibh tristique\" heading_tag=\"h3\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;\"]\r\n<ul>\r\n 	<li>Duis lorem risus, aliquet a auctor a, venenatis in dui. Praesent et eros et risus dapibus placerat hendrerit cursus magna.</li>\r\n 	<li>Praesent et eros et risus dapibus placerat hendrerit cursus magna.</li>\r\n 	<li>aliquet a auctor a, venenatis in dui.</li>\r\n</ul>\r\n[/ultimate_heading][/ult_animation_block][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row disable_element=\"yes\"][vc_column][ultimate_heading main_heading=\"Executive Directors\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;margin-bottom:35px;\"][/ultimate_heading][vc_row_inner][vc_column_inner width=\"1/5\"][ult_animation_block animation=\"fadeInUp\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][dt_fancy_image image_id=\"3172\" width=\"300\" border_radius=\"1px\" caption=\"off\" css=\".vc_custom_1692278922309{border-top-width: 1px !important;border-right-width: 1px !important;border-bottom-width: 1px !important;border-left-width: 1px !important;border-left-color: #059444 !important;border-left-style: solid !important;border-right-color: #059444 !important;border-right-style: solid !important;border-top-color: #059444 !important;border-top-style: solid !important;border-bottom-color: #059444 !important;border-bottom-style: solid !important;border-radius: 1px !important;}\"][ultimate_heading main_heading=\"Quisque sed nibh tristique\" heading_tag=\"h3\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;\"]\r\n<ul>\r\n 	<li>Duis lorem risus, aliquet a auctor a, venenatis in dui. Praesent et eros et risus dapibus placerat hendrerit cursus magna.</li>\r\n 	<li>Praesent et eros et risus dapibus placerat hendrerit cursus magna.</li>\r\n 	<li>aliquet a auctor a, venenatis in dui.</li>\r\n</ul>\r\n[/ultimate_heading][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/5\"][ult_animation_block animation=\"fadeInDown\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][dt_fancy_image image_id=\"3171\" width=\"300\" border_radius=\"1px\" caption=\"off\" css=\".vc_custom_1692278929158{border-top-width: 1px !important;border-right-width: 1px !important;border-bottom-width: 1px !important;border-left-width: 1px !important;border-left-color: #059444 !important;border-left-style: solid !important;border-right-color: #059444 !important;border-right-style: solid !important;border-top-color: #059444 !important;border-top-style: solid !important;border-bottom-color: #059444 !important;border-bottom-style: solid !important;border-radius: 1px !important;}\"][ultimate_heading main_heading=\"Quisque sed nibh tristique\" heading_tag=\"h3\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;\"]\r\n<ul>\r\n 	<li>Duis lorem risus, aliquet a auctor a, venenatis in dui. Praesent et eros et risus dapibus placerat hendrerit cursus magna.</li>\r\n 	<li>Praesent et eros et risus dapibus placerat hendrerit cursus magna.</li>\r\n 	<li>aliquet a auctor a, venenatis in dui.</li>\r\n</ul>\r\n[/ultimate_heading][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/5\"][ult_animation_block animation=\"fadeInUp\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][dt_fancy_image image_id=\"3170\" width=\"300\" border_radius=\"1px\" caption=\"off\" css=\".vc_custom_1692278936750{border-top-width: 1px !important;border-right-width: 1px !important;border-bottom-width: 1px !important;border-left-width: 1px !important;border-left-color: #059444 !important;border-left-style: solid !important;border-right-color: #059444 !important;border-right-style: solid !important;border-top-color: #059444 !important;border-top-style: solid !important;border-bottom-color: #059444 !important;border-bottom-style: solid !important;border-radius: 1px !important;}\"][ultimate_heading main_heading=\"Quisque sed nibh tristique\" heading_tag=\"h3\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;\"]\r\n<ul>\r\n 	<li>Duis lorem risus, aliquet a auctor a, venenatis in dui. Praesent et eros et risus dapibus placerat hendrerit cursus magna.</li>\r\n 	<li>Praesent et eros et risus dapibus placerat hendrerit cursus magna.</li>\r\n 	<li>aliquet a auctor a, venenatis in dui.</li>\r\n</ul>\r\n[/ultimate_heading][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/5\"][ult_animation_block animation=\"fadeInDown\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][dt_fancy_image image_id=\"3170\" width=\"300\" border_radius=\"1px\" caption=\"off\" css=\".vc_custom_1692278936750{border-top-width: 1px !important;border-right-width: 1px !important;border-bottom-width: 1px !important;border-left-width: 1px !important;border-left-color: #059444 !important;border-left-style: solid !important;border-right-color: #059444 !important;border-right-style: solid !important;border-top-color: #059444 !important;border-top-style: solid !important;border-bottom-color: #059444 !important;border-bottom-style: solid !important;border-radius: 1px !important;}\"][ultimate_heading main_heading=\"Quisque sed nibh tristique\" heading_tag=\"h3\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;\"]\r\n<ul>\r\n 	<li>Duis lorem risus, aliquet a auctor a, venenatis in dui. Praesent et eros et risus dapibus placerat hendrerit cursus magna.</li>\r\n 	<li>Praesent et eros et risus dapibus placerat hendrerit cursus magna.</li>\r\n 	<li>aliquet a auctor a, venenatis in dui.</li>\r\n</ul>\r\n[/ultimate_heading][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/5\"][ult_animation_block animation=\"fadeInDown\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][dt_fancy_image image_id=\"3171\" width=\"300\" border_radius=\"1px\" caption=\"off\" css=\".vc_custom_1692278929158{border-top-width: 1px !important;border-right-width: 1px !important;border-bottom-width: 1px !important;border-left-width: 1px !important;border-left-color: #059444 !important;border-left-style: solid !important;border-right-color: #059444 !important;border-right-style: solid !important;border-top-color: #059444 !important;border-top-style: solid !important;border-bottom-color: #059444 !important;border-bottom-style: solid !important;border-radius: 1px !important;}\"][ultimate_heading main_heading=\"Quisque sed nibh tristique\" heading_tag=\"h3\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;\"]\r\n<ul>\r\n 	<li>Duis lorem risus, aliquet a auctor a, venenatis in dui. Praesent et eros et risus dapibus placerat hendrerit cursus magna.</li>\r\n 	<li>Praesent et eros et risus dapibus placerat hendrerit cursus magna.</li>\r\n 	<li>aliquet a auctor a, venenatis in dui.</li>\r\n</ul>\r\n[/ultimate_heading][/ult_animation_block][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner width=\"2/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row disable_element=\"yes\"][vc_column][ultimate_heading main_heading=\"Next Generation\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;margin-bottom:35px;\"][/ultimate_heading][vc_row_inner][vc_column_inner width=\"1/2\"][ult_animation_block animation=\"fadeInUp\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][dt_fancy_image image_id=\"3172\" width=\"300\" border_radius=\"1px\" caption=\"off\" css=\".vc_custom_1692278922309{border-top-width: 1px !important;border-right-width: 1px !important;border-bottom-width: 1px !important;border-left-width: 1px !important;border-left-color: #059444 !important;border-left-style: solid !important;border-right-color: #059444 !important;border-right-style: solid !important;border-top-color: #059444 !important;border-top-style: solid !important;border-bottom-color: #059444 !important;border-bottom-style: solid !important;border-radius: 1px !important;}\"][ultimate_heading main_heading=\"Quisque sed nibh tristique\" heading_tag=\"h3\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;\"]\r\n<ul>\r\n 	<li>Duis lorem risus, aliquet a auctor a, venenatis in dui. Praesent et eros et risus dapibus placerat hendrerit cursus magna.</li>\r\n 	<li>Praesent et eros et risus dapibus placerat hendrerit cursus magna.</li>\r\n 	<li>aliquet a auctor a, venenatis in dui.</li>\r\n</ul>\r\n[/ultimate_heading][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/2\"][ult_animation_block animation=\"fadeInDown\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][dt_fancy_image image_id=\"3171\" width=\"300\" border_radius=\"1px\" caption=\"off\" css=\".vc_custom_1692278929158{border-top-width: 1px !important;border-right-width: 1px !important;border-bottom-width: 1px !important;border-left-width: 1px !important;border-left-color: #059444 !important;border-left-style: solid !important;border-right-color: #059444 !important;border-right-style: solid !important;border-top-color: #059444 !important;border-top-style: solid !important;border-bottom-color: #059444 !important;border-bottom-style: solid !important;border-radius: 1px !important;}\"][ultimate_heading main_heading=\"Quisque sed nibh tristique\" heading_tag=\"h3\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;\"]\r\n<ul>\r\n 	<li>Duis lorem risus, aliquet a auctor a, venenatis in dui. Praesent et eros et risus dapibus placerat hendrerit cursus magna.</li>\r\n 	<li>Praesent et eros et risus dapibus placerat hendrerit cursus magna.</li>\r\n 	<li>aliquet a auctor a, venenatis in dui.</li>\r\n</ul>\r\n[/ultimate_heading][/ult_animation_block][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row]','About us','','inherit','closed','closed','','2917-revision-v1','','','2023-08-19 05:17:29','2023-08-19 05:17:29','',2917,'https://farmchemie.yasithawd.com/?p=3282',0,'revision','',0),(3283,1,'2023-08-19 05:21:10','2023-08-19 05:21:10','','ABOUT-US_1 (1)','','inherit','open','closed','','about-us_1-1','','','2023-08-19 05:21:10','2023-08-19 05:21:10','',2917,'https://farmchemie.yasithawd.com/wp-content/uploads/2023/08/ABOUT-US_1-1.png',0,'attachment','image/png',0),(3284,1,'2023-08-19 05:23:30','2023-08-19 05:23:30','[vc_row full_width=\"stretch_row_content_no_spaces\"][vc_column][ultimate_heading main_heading=\"Our History\" main_heading_color=\"#762888\"][/ultimate_heading][/vc_column][/vc_row][vc_row][vc_column][vc_row_inner equal_height=\"yes\" content_placement=\"middle\" css=\".vc_custom_1692359205466{margin-top: 35px !important;}\"][vc_column_inner width=\"1/2\"][ult_animation_block animation=\"fadeInLeftBig\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][vc_single_image image=\"3273\" img_size=\"full\" alignment=\"center\" style=\"vc_box_rounded\"][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/2\"][ult_animation_block animation=\"fadeInRightBig\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][ultimate_heading main_heading=\"Founded in 2002\" heading_tag=\"h3\" main_heading_color=\"#039447\" alignment=\"left\" sub_heading_font_size=\"desktop:18px;\"]Founded in 2002 by Mr. Uditha Wanigasinghe, an agriculturist who had a mission to aid valuable livestock producers in the country to enhance the yield and profitability of production. FARMCHEMIE introduced unprecedented solutions and consistent technical services to gain our customers’ trust and became the market leader in animal health products in 2006 within just four years.[/ultimate_heading][/ult_animation_block][/vc_column_inner][/vc_row_inner][vc_separator color=\"custom\" accent_color=\"#039447\"][vc_row_inner equal_height=\"yes\" rtl_reverse=\"yes\" content_placement=\"middle\" css=\".vc_custom_1692359216075{margin-top: 35px !important;}\"][vc_column_inner width=\"1/2\"][ult_animation_block animation=\"fadeInLeftBig\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][ultimate_heading main_heading=\"2006\" heading_tag=\"h3\" main_heading_color=\"#039447\" alignment=\"left\"]In 2006, the Sri Lankan poultry industry was affected with Avian Influenza which became a difficult period for the growth of FARMCHEMIE. This was the key factor in our decision to diversify into Agro Products. PLANTCHEM &amp; PLANTSEEDS were established to offer solutions in Agro specialty fertilizers, pesticides and seeds to invaluable cultivators.[/ultimate_heading][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/2\"][ult_animation_block animation=\"fadeInRightBig\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][vc_single_image image=\"3276\" img_size=\"full\" alignment=\"center\" style=\"vc_box_rounded\"][/ult_animation_block][/vc_column_inner][/vc_row_inner][vc_separator color=\"custom\" accent_color=\"#039447\"][vc_row_inner equal_height=\"yes\" content_placement=\"middle\" css=\".vc_custom_1692359231594{margin-top: 35px !important;}\"][vc_column_inner width=\"1/2\"][ult_animation_block animation=\"fadeInLeftBig\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][vc_single_image image=\"3277\" img_size=\"full\" alignment=\"center\" style=\"vc_box_rounded\"][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/2\"][ult_animation_block animation=\"fadeInRightBig\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][ultimate_heading main_heading=\"2010\" heading_tag=\"h3\" main_heading_color=\"#039447\" alignment=\"left\"]In 2010, FEED CHEMIE became the subsequent addition to ever-growing vision of Mr. Uditha Wanigasinghe and entered the Animal Feed Additives market.[/ultimate_heading][/ult_animation_block][/vc_column_inner][/vc_row_inner][vc_separator color=\"custom\" accent_color=\"#039447\"][vc_row_inner equal_height=\"yes\" rtl_reverse=\"yes\" content_placement=\"middle\" css=\".vc_custom_1692359239274{margin-top: 35px !important;}\"][vc_column_inner width=\"1/2\"][ult_animation_block animation=\"fadeInLeftBig\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][ultimate_heading main_heading=\"2012\" heading_tag=\"h3\" main_heading_color=\"#039447\" alignment=\"left\"]The year 2012 is described as a turning point in our journey as FARMCHEMIE established our first production facility for the manufacturing and packing of animal health products. FARMCHEMIE became the first animal health organization in Sri Lanka to obtain ISO 9001:2015 and WHO GMP International Quality Certification. With our own formulation unit, FARMCHEMIE was able to offer customized solutions to cater the needs of the Sri Lankan Livestock Industry.[/ultimate_heading][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/2\"][ult_animation_block animation=\"fadeInRightBig\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][vc_single_image image=\"3278\" img_size=\"full\" alignment=\"center\" style=\"vc_box_rounded\"][/ult_animation_block][/vc_column_inner][/vc_row_inner][vc_separator color=\"custom\" accent_color=\"#039447\"][vc_row_inner content_placement=\"middle\" css=\".vc_custom_1692359246626{margin-top: 35px !important;}\"][vc_column_inner width=\"1/2\"][ult_animation_block animation=\"fadeInLeftBig\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][vc_single_image image=\"3279\" img_size=\"full\" alignment=\"center\" style=\"vc_box_rounded\"][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/2\"][ult_animation_block animation=\"fadeInRightBig\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][ultimate_heading main_heading=\"2016\" heading_tag=\"h3\" main_heading_color=\"#039447\" alignment=\"left\"]The year 2016 was another key milestone with the entry to the International Markets. FARMCHEMIE exported our first Feed Premix consignment to India and in 2018 our export operation was distinctly established as FARMCHEMIE MANUFACTURERS, a Board of Investment (BOI) approved entity.[/ultimate_heading][/ult_animation_block][/vc_column_inner][/vc_row_inner][vc_separator color=\"custom\" accent_color=\"#039447\"][vc_row_inner equal_height=\"yes\" content_placement=\"middle\" css=\".vc_custom_1692422601938{margin-top: 35px !important;}\"][vc_column_inner width=\"1/2\"][ult_animation_block animation=\"fadeInLeftBig\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][ultimate_heading main_heading=\"Fully automated manufacturing\" heading_tag=\"h3\" main_heading_color=\"#039447\" alignment=\"left\"]FARMCHEMIE MANUFACTURERS has invested in fully automated manufacturing facility from Bühler and became the first Sri Lankan owned company to obtain FAMI-QS International Quality Certification.[/ultimate_heading][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/2\"][ult_animation_block animation=\"fadeInRightBig\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][vc_single_image image=\"3280\" img_size=\"full\" alignment=\"center\" style=\"vc_box_rounded\"][/ult_animation_block][/vc_column_inner][/vc_row_inner][vc_separator color=\"custom\" accent_color=\"#039447\"][vc_row_inner equal_height=\"yes\" content_placement=\"middle\" css=\".vc_custom_1692359258634{margin-top: 35px !important;}\"][vc_column_inner width=\"1/2\"][ult_animation_block animation=\"fadeInLeftBig\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][vc_single_image image=\"3281\" img_size=\"full\" alignment=\"center\" style=\"vc_box_rounded\"][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/2\"][ult_animation_block animation=\"fadeInRightBig\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][ultimate_heading main_heading=\"Official toll manufacturer partner\" heading_tag=\"h3\" main_heading_color=\"#039447\" alignment=\"left\"]With the trust and reputation built as a reliable manufacturer of animal feed additives and supplements in the global market, several world-renowned international brands have appointed FARMCHEMIE MANUFACTURERS as the official toll manufacturer partner. FARMCHEMIE MANUFACTURERS exports a wide range of products consisting of premixes, specialty feed additives, oral liquid supplements and pet supplements to various markets in South Asia, East Asia, Middle East and Africa.\r\n\r\nFARMCHEMIE, FEED CHEMIE &amp; FARMCHEMIE MANUFACTURERS currently operate under the ownership of our holding company, DYVESTA.\r\n\r\nDYEVSTA has become the pinnacle of Animal Nutrition and Health.\r\n\r\nDYVESTA is Dynamic, through our continuous evolution, growth and progress. DYVESTA is Diverse, in terms of both our business strategy and our community. DYVESTA is Devoted to our valuable business partners through exceptional service.[/ultimate_heading][/ult_animation_block][/vc_column_inner][/vc_row_inner][vc_separator color=\"custom\" accent_color=\"#039447\"][/vc_column][/vc_row][vc_row full_width=\"stretch_row\" equal_height=\"yes\" bg_type=\"image\" parallax_style=\"vcpb-vz-jquery\" bg_image_new=\"id^3256|url^https://farmchemie.yasithawd.com/wp-content/uploads/2023/08/Vision-Mission.png|caption^null|alt^null|title^Vision-&amp;-Mission|description^null\" bg_image_repeat=\"no-repeat\" enable_overlay=\"enable_overlay_value\" overlay_color=\"#000000\" overlay_pattern=\"01.png\" overlay_pattern_opacity=\"5\" css=\".vc_custom_1692366072362{margin-top: 35px !important;padding-top: 65px !important;padding-bottom: 100px !important;}\"][vc_column][vc_row_inner equal_height=\"yes\"][vc_column_inner width=\"1/2\"][ult_animation_block animation=\"fadeInLeftBig\" animation_duration=\"2\" animation_delay=\"0\" animation_iteration_count=\"1\"][ultimate_heading main_heading=\"Vision\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\"]To be the customers’ first and best choice by ensuring outstanding satisfaction through a well-trained and dedicated team. Prompt and quality solutions to our customers’ requirements will determine the increase of return on investment for us.[/ultimate_heading][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/2\"][ult_animation_block animation=\"fadeInRightBig\" animation_duration=\"2\" animation_delay=\"0\" animation_iteration_count=\"1\"][ultimate_heading main_heading=\"Mission\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\"]To become a world renowned manufacturer of Animal Health products and a trusted partner among our stakeholders for our integrity as well as for providing effective solutions[/ultimate_heading][/ult_animation_block][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row css=\".vc_custom_1684836308288{margin-top: 15px !important;}\"][vc_column][ultimate_heading main_heading=\"Achievements\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;\"][/ultimate_heading][vc_row_inner gap=\"20\"][vc_column_inner width=\"1/2\" css=\".vc_custom_1691995519863{background-color: #f4ab20 !important;border: 1px solid #f4ab20 !important;border-radius: 35px !important;}\"][ult_animation_block animation=\"fadeInLeftBig\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][bsf-info-box icon_type=\"custom\" icon_img=\"id^3117|url^https://farmchemie.yasithawd.com/wp-content/uploads/2023/08/Pink_-H.png|caption^null|alt^null|title^Pink_-H|description^null\" img_width=\"60\" icon_style=\"advanced\" icon_border_style=\"solid\" icon_color_border=\"#ffffff\" icon_border_size=\"1\" icon_border_radius=\"500\" icon_border_spacing=\"1\" title=\"First Free Sale Certificate obtained from Veterinary Drug Control Authority (VDCA) for Veterinary Pharmaceuticals\" title_font_style=\"font-weight:bold;\" title_font_size=\"desktop:20px;\"][/bsf-info-box][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/2\" css=\".vc_custom_1691995661095{background-color: #722f8b !important;border: 1px solid #722f8b !important;border-radius: 35px !important;}\"][ult_animation_block animation=\"fadeInRightBig\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][bsf-info-box icon_type=\"custom\" icon_img=\"id^3117|url^https://farmchemie.yasithawd.com/wp-content/uploads/2023/08/Pink_-H.png|caption^null|alt^null|title^Pink_-H|description^null\" img_width=\"60\" icon_style=\"advanced\" icon_border_style=\"solid\" icon_color_border=\"#ffffff\" icon_border_size=\"1\" icon_border_radius=\"500\" icon_border_spacing=\"1\" title=\"First ISO 9001: 2015 ,WHO-GMP Quality Management systems certified Animal Health company in Sri Lanka since August, 2012\" title_font_style=\"font-weight:bold;\" title_font_color=\"#ffffff\" title_font_size=\"desktop:20px;\"][/bsf-info-box][/ult_animation_block][/vc_column_inner][/vc_row_inner][vc_row_inner gap=\"20\"][vc_column_inner width=\"1/2\" css=\".vc_custom_1691995661095{background-color: #722f8b !important;border: 1px solid #722f8b !important;border-radius: 35px !important;}\"][ult_animation_block animation=\"fadeInLeftBig\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][bsf-info-box icon_type=\"custom\" icon_img=\"id^3117|url^https://farmchemie.yasithawd.com/wp-content/uploads/2023/08/Pink_-H.png|caption^null|alt^null|title^Pink_-H|description^null\" img_width=\"60\" icon_style=\"advanced\" icon_border_style=\"solid\" icon_color_border=\"#ffffff\" icon_border_size=\"1\" icon_border_radius=\"500\" icon_border_spacing=\"1\" title=\"First FAMI-QS certified company in sri lanka\" title_font_style=\"font-weight:bold;\" title_font_color=\"#ffffff\" title_font_size=\"desktop:20px;\"][/bsf-info-box][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/2\" css=\".vc_custom_1691995519863{background-color: #f4ab20 !important;border: 1px solid #f4ab20 !important;border-radius: 35px !important;}\"][ult_animation_block animation=\"fadeInRightBig\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][bsf-info-box icon_type=\"custom\" icon_img=\"id^3117|url^https://farmchemie.yasithawd.com/wp-content/uploads/2023/08/Pink_-H.png|caption^null|alt^null|title^Pink_-H|description^null\" img_width=\"60\" icon_style=\"advanced\" icon_border_style=\"solid\" icon_color_border=\"#ffffff\" icon_border_size=\"1\" icon_border_radius=\"500\" icon_border_spacing=\"1\" title=\"First Certificate of Ethical Trading certified in Livestock industry\" title_font_style=\"font-weight:bold;\" title_font_size=\"desktop:20px;\"][/bsf-info-box][/ult_animation_block][/vc_column_inner][/vc_row_inner][vc_row_inner gap=\"20\"][vc_column_inner width=\"1/4\" css=\".vc_custom_1691996718116{border-radius: 35px !important;}\"][/vc_column_inner][vc_column_inner width=\"2/4\" css=\".vc_custom_1691995519863{background-color: #f4ab20 !important;border: 1px solid #f4ab20 !important;border-radius: 35px !important;}\"][ult_animation_block animation=\"fadeInUpBig\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][bsf-info-box icon_type=\"custom\" icon_img=\"id^3117|url^https://farmchemie.yasithawd.com/wp-content/uploads/2023/08/Pink_-H.png|caption^null|alt^null|title^Pink_-H|description^null\" img_width=\"60\" icon_style=\"advanced\" icon_border_style=\"solid\" icon_color_border=\"#ffffff\" icon_border_size=\"1\" icon_border_radius=\"500\" icon_border_spacing=\"1\" title=\"First Silver awarded company at National Exports Awards in Livestock industry\" title_font_style=\"font-weight:bold;\" title_font_size=\"desktop:20px;\"][/bsf-info-box][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/4\"][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner width=\"1/6\"][/vc_column_inner][vc_column_inner width=\"2/3\"][vc_single_image image=\"3126\" img_size=\"full\" alignment=\"center\"][vc_single_image image=\"3125\" img_size=\"full\" alignment=\"center\"][/vc_column_inner][vc_column_inner width=\"1/6\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row][vc_column][ultimate_heading main_heading=\"Board Of Directors\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;margin-bottom:35px;\"][/ultimate_heading][ultimate_carousel slides_on_desk=\"3\" slides_on_mob=\"1\" arrow_style=\"square-bg\" arrow_bg_color=\"#039447\" arrow_color=\"#ffffff\" next_icon=\"ultsl-arrow-right6\" prev_icon=\"ultsl-arrow-left6\" dots_color=\"#039447\" item_animation=\"fadeIn\"][vc_row_inner][vc_column_inner][dt_fancy_image image_id=\"3173\" width=\"300\" border_radius=\"1px\" caption=\"off\"][ultimate_heading main_heading=\"Quisque sed nibh tristique\" heading_tag=\"h3\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;\"]Duis lorem risus, aliquet a auctor a, venenatis in dui. Praesent et eros et risus dapibus placerat hendrerit cursus magna.[/ultimate_heading][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner][dt_fancy_image image_id=\"3170\" width=\"300\" border_radius=\"1px\" caption=\"off\"][ultimate_heading main_heading=\"Quisque sed nibh tristique\" heading_tag=\"h3\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;\"]Duis lorem risus, aliquet a auctor a, venenatis in dui. Praesent et eros et risus dapibus placerat hendrerit cursus magna.[/ultimate_heading][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner][dt_fancy_image image_id=\"3171\" width=\"300\" border_radius=\"1px\" caption=\"off\"][ultimate_heading main_heading=\"Quisque sed nibh tristique\" heading_tag=\"h3\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;\"]Duis lorem risus, aliquet a auctor a, venenatis in dui. Praesent et eros et risus dapibus placerat hendrerit cursus magna.[/ultimate_heading][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner][dt_fancy_image image_id=\"3172\" width=\"300\" border_radius=\"1px\" caption=\"off\"][ultimate_heading main_heading=\"Quisque sed nibh tristique\" heading_tag=\"h3\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;\"]Duis lorem risus, aliquet a auctor a, venenatis in dui. Praesent et eros et risus dapibus placerat hendrerit cursus magna.[/ultimate_heading][/vc_column_inner][/vc_row_inner][/ultimate_carousel][/vc_column][/vc_row][vc_row disable_element=\"yes\"][vc_column][ultimate_heading main_heading=\"Board Of Directors\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;margin-bottom:35px;\"][/ultimate_heading][vc_row_inner][vc_column_inner width=\"1/3\"][ult_animation_block animation=\"fadeInUp\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][dt_fancy_image image_id=\"3172\" width=\"300\" border_radius=\"1px\" caption=\"off\" css=\".vc_custom_1692278922309{border-top-width: 1px !important;border-right-width: 1px !important;border-bottom-width: 1px !important;border-left-width: 1px !important;border-left-color: #059444 !important;border-left-style: solid !important;border-right-color: #059444 !important;border-right-style: solid !important;border-top-color: #059444 !important;border-top-style: solid !important;border-bottom-color: #059444 !important;border-bottom-style: solid !important;border-radius: 1px !important;}\"][ultimate_heading main_heading=\"Quisque sed nibh tristique\" heading_tag=\"h3\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;\"]\r\n<ul>\r\n 	<li>Duis lorem risus, aliquet a auctor a, venenatis in dui. Praesent et eros et risus dapibus placerat hendrerit cursus magna.</li>\r\n 	<li>Praesent et eros et risus dapibus placerat hendrerit cursus magna.</li>\r\n 	<li>aliquet a auctor a, venenatis in dui.</li>\r\n</ul>\r\n[/ultimate_heading][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/3\"][ult_animation_block animation=\"fadeInDown\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][dt_fancy_image image_id=\"3171\" width=\"300\" border_radius=\"1px\" caption=\"off\" css=\".vc_custom_1692278929158{border-top-width: 1px !important;border-right-width: 1px !important;border-bottom-width: 1px !important;border-left-width: 1px !important;border-left-color: #059444 !important;border-left-style: solid !important;border-right-color: #059444 !important;border-right-style: solid !important;border-top-color: #059444 !important;border-top-style: solid !important;border-bottom-color: #059444 !important;border-bottom-style: solid !important;border-radius: 1px !important;}\"][ultimate_heading main_heading=\"Quisque sed nibh tristique\" heading_tag=\"h3\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;\"]\r\n<ul>\r\n 	<li>Duis lorem risus, aliquet a auctor a, venenatis in dui. Praesent et eros et risus dapibus placerat hendrerit cursus magna.</li>\r\n 	<li>Praesent et eros et risus dapibus placerat hendrerit cursus magna.</li>\r\n 	<li>aliquet a auctor a, venenatis in dui.</li>\r\n</ul>\r\n[/ultimate_heading][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/3\"][ult_animation_block animation=\"fadeInUp\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][dt_fancy_image image_id=\"3170\" width=\"300\" border_radius=\"1px\" caption=\"off\" css=\".vc_custom_1692278936750{border-top-width: 1px !important;border-right-width: 1px !important;border-bottom-width: 1px !important;border-left-width: 1px !important;border-left-color: #059444 !important;border-left-style: solid !important;border-right-color: #059444 !important;border-right-style: solid !important;border-top-color: #059444 !important;border-top-style: solid !important;border-bottom-color: #059444 !important;border-bottom-style: solid !important;border-radius: 1px !important;}\"][ultimate_heading main_heading=\"Quisque sed nibh tristique\" heading_tag=\"h3\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;\"]\r\n<ul>\r\n 	<li>Duis lorem risus, aliquet a auctor a, venenatis in dui. Praesent et eros et risus dapibus placerat hendrerit cursus magna.</li>\r\n 	<li>Praesent et eros et risus dapibus placerat hendrerit cursus magna.</li>\r\n 	<li>aliquet a auctor a, venenatis in dui.</li>\r\n</ul>\r\n[/ultimate_heading][/ult_animation_block][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row disable_element=\"yes\"][vc_column][ultimate_heading main_heading=\"Executive Directors\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;margin-bottom:35px;\"][/ultimate_heading][vc_row_inner][vc_column_inner width=\"1/5\"][ult_animation_block animation=\"fadeInUp\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][dt_fancy_image image_id=\"3172\" width=\"300\" border_radius=\"1px\" caption=\"off\" css=\".vc_custom_1692278922309{border-top-width: 1px !important;border-right-width: 1px !important;border-bottom-width: 1px !important;border-left-width: 1px !important;border-left-color: #059444 !important;border-left-style: solid !important;border-right-color: #059444 !important;border-right-style: solid !important;border-top-color: #059444 !important;border-top-style: solid !important;border-bottom-color: #059444 !important;border-bottom-style: solid !important;border-radius: 1px !important;}\"][ultimate_heading main_heading=\"Quisque sed nibh tristique\" heading_tag=\"h3\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;\"]\r\n<ul>\r\n 	<li>Duis lorem risus, aliquet a auctor a, venenatis in dui. Praesent et eros et risus dapibus placerat hendrerit cursus magna.</li>\r\n 	<li>Praesent et eros et risus dapibus placerat hendrerit cursus magna.</li>\r\n 	<li>aliquet a auctor a, venenatis in dui.</li>\r\n</ul>\r\n[/ultimate_heading][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/5\"][ult_animation_block animation=\"fadeInDown\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][dt_fancy_image image_id=\"3171\" width=\"300\" border_radius=\"1px\" caption=\"off\" css=\".vc_custom_1692278929158{border-top-width: 1px !important;border-right-width: 1px !important;border-bottom-width: 1px !important;border-left-width: 1px !important;border-left-color: #059444 !important;border-left-style: solid !important;border-right-color: #059444 !important;border-right-style: solid !important;border-top-color: #059444 !important;border-top-style: solid !important;border-bottom-color: #059444 !important;border-bottom-style: solid !important;border-radius: 1px !important;}\"][ultimate_heading main_heading=\"Quisque sed nibh tristique\" heading_tag=\"h3\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;\"]\r\n<ul>\r\n 	<li>Duis lorem risus, aliquet a auctor a, venenatis in dui. Praesent et eros et risus dapibus placerat hendrerit cursus magna.</li>\r\n 	<li>Praesent et eros et risus dapibus placerat hendrerit cursus magna.</li>\r\n 	<li>aliquet a auctor a, venenatis in dui.</li>\r\n</ul>\r\n[/ultimate_heading][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/5\"][ult_animation_block animation=\"fadeInUp\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][dt_fancy_image image_id=\"3170\" width=\"300\" border_radius=\"1px\" caption=\"off\" css=\".vc_custom_1692278936750{border-top-width: 1px !important;border-right-width: 1px !important;border-bottom-width: 1px !important;border-left-width: 1px !important;border-left-color: #059444 !important;border-left-style: solid !important;border-right-color: #059444 !important;border-right-style: solid !important;border-top-color: #059444 !important;border-top-style: solid !important;border-bottom-color: #059444 !important;border-bottom-style: solid !important;border-radius: 1px !important;}\"][ultimate_heading main_heading=\"Quisque sed nibh tristique\" heading_tag=\"h3\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;\"]\r\n<ul>\r\n 	<li>Duis lorem risus, aliquet a auctor a, venenatis in dui. Praesent et eros et risus dapibus placerat hendrerit cursus magna.</li>\r\n 	<li>Praesent et eros et risus dapibus placerat hendrerit cursus magna.</li>\r\n 	<li>aliquet a auctor a, venenatis in dui.</li>\r\n</ul>\r\n[/ultimate_heading][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/5\"][ult_animation_block animation=\"fadeInDown\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][dt_fancy_image image_id=\"3170\" width=\"300\" border_radius=\"1px\" caption=\"off\" css=\".vc_custom_1692278936750{border-top-width: 1px !important;border-right-width: 1px !important;border-bottom-width: 1px !important;border-left-width: 1px !important;border-left-color: #059444 !important;border-left-style: solid !important;border-right-color: #059444 !important;border-right-style: solid !important;border-top-color: #059444 !important;border-top-style: solid !important;border-bottom-color: #059444 !important;border-bottom-style: solid !important;border-radius: 1px !important;}\"][ultimate_heading main_heading=\"Quisque sed nibh tristique\" heading_tag=\"h3\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;\"]\r\n<ul>\r\n 	<li>Duis lorem risus, aliquet a auctor a, venenatis in dui. Praesent et eros et risus dapibus placerat hendrerit cursus magna.</li>\r\n 	<li>Praesent et eros et risus dapibus placerat hendrerit cursus magna.</li>\r\n 	<li>aliquet a auctor a, venenatis in dui.</li>\r\n</ul>\r\n[/ultimate_heading][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/5\"][ult_animation_block animation=\"fadeInDown\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][dt_fancy_image image_id=\"3171\" width=\"300\" border_radius=\"1px\" caption=\"off\" css=\".vc_custom_1692278929158{border-top-width: 1px !important;border-right-width: 1px !important;border-bottom-width: 1px !important;border-left-width: 1px !important;border-left-color: #059444 !important;border-left-style: solid !important;border-right-color: #059444 !important;border-right-style: solid !important;border-top-color: #059444 !important;border-top-style: solid !important;border-bottom-color: #059444 !important;border-bottom-style: solid !important;border-radius: 1px !important;}\"][ultimate_heading main_heading=\"Quisque sed nibh tristique\" heading_tag=\"h3\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;\"]\r\n<ul>\r\n 	<li>Duis lorem risus, aliquet a auctor a, venenatis in dui. Praesent et eros et risus dapibus placerat hendrerit cursus magna.</li>\r\n 	<li>Praesent et eros et risus dapibus placerat hendrerit cursus magna.</li>\r\n 	<li>aliquet a auctor a, venenatis in dui.</li>\r\n</ul>\r\n[/ultimate_heading][/ult_animation_block][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner width=\"2/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row disable_element=\"yes\"][vc_column][ultimate_heading main_heading=\"Next Generation\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;margin-bottom:35px;\"][/ultimate_heading][vc_row_inner][vc_column_inner width=\"1/2\"][ult_animation_block animation=\"fadeInUp\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][dt_fancy_image image_id=\"3172\" width=\"300\" border_radius=\"1px\" caption=\"off\" css=\".vc_custom_1692278922309{border-top-width: 1px !important;border-right-width: 1px !important;border-bottom-width: 1px !important;border-left-width: 1px !important;border-left-color: #059444 !important;border-left-style: solid !important;border-right-color: #059444 !important;border-right-style: solid !important;border-top-color: #059444 !important;border-top-style: solid !important;border-bottom-color: #059444 !important;border-bottom-style: solid !important;border-radius: 1px !important;}\"][ultimate_heading main_heading=\"Quisque sed nibh tristique\" heading_tag=\"h3\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;\"]\r\n<ul>\r\n 	<li>Duis lorem risus, aliquet a auctor a, venenatis in dui. Praesent et eros et risus dapibus placerat hendrerit cursus magna.</li>\r\n 	<li>Praesent et eros et risus dapibus placerat hendrerit cursus magna.</li>\r\n 	<li>aliquet a auctor a, venenatis in dui.</li>\r\n</ul>\r\n[/ultimate_heading][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/2\"][ult_animation_block animation=\"fadeInDown\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][dt_fancy_image image_id=\"3171\" width=\"300\" border_radius=\"1px\" caption=\"off\" css=\".vc_custom_1692278929158{border-top-width: 1px !important;border-right-width: 1px !important;border-bottom-width: 1px !important;border-left-width: 1px !important;border-left-color: #059444 !important;border-left-style: solid !important;border-right-color: #059444 !important;border-right-style: solid !important;border-top-color: #059444 !important;border-top-style: solid !important;border-bottom-color: #059444 !important;border-bottom-style: solid !important;border-radius: 1px !important;}\"][ultimate_heading main_heading=\"Quisque sed nibh tristique\" heading_tag=\"h3\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;\"]\r\n<ul>\r\n 	<li>Duis lorem risus, aliquet a auctor a, venenatis in dui. Praesent et eros et risus dapibus placerat hendrerit cursus magna.</li>\r\n 	<li>Praesent et eros et risus dapibus placerat hendrerit cursus magna.</li>\r\n 	<li>aliquet a auctor a, venenatis in dui.</li>\r\n</ul>\r\n[/ultimate_heading][/ult_animation_block][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row]','About us','','inherit','closed','closed','','2917-revision-v1','','','2023-08-19 05:23:30','2023-08-19 05:23:30','',2917,'https://farmchemie.yasithawd.com/?p=3284',0,'revision','',0),(3286,1,'2023-08-19 05:27:15','2023-08-19 05:27:15','[vc_row full_width=\"stretch_row_content_no_spaces\"][vc_column][ultimate_heading main_heading=\"Our History\" main_heading_color=\"#762888\"][/ultimate_heading][/vc_column][/vc_row][vc_row][vc_column][vc_row_inner equal_height=\"yes\" content_placement=\"middle\" css=\".vc_custom_1692359205466{margin-top: 35px !important;}\"][vc_column_inner width=\"1/2\"][ult_animation_block animation=\"fadeInLeftBig\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][vc_single_image image=\"3273\" img_size=\"full\" alignment=\"center\" style=\"vc_box_rounded\"][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/2\"][ult_animation_block animation=\"fadeInRightBig\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][ultimate_heading main_heading=\"Founded in 2002\" heading_tag=\"h3\" main_heading_color=\"#039447\" alignment=\"left\" sub_heading_font_size=\"desktop:18px;\"]Founded in 2002 by Mr. Uditha Wanigasinghe, an agriculturist who had a mission to aid valuable livestock producers in the country to enhance the yield and profitability of production. FARMCHEMIE introduced unprecedented solutions and consistent technical services to gain our customers’ trust and became the market leader in animal health products in 2006 within just four years.[/ultimate_heading][/ult_animation_block][/vc_column_inner][/vc_row_inner][vc_separator color=\"custom\" accent_color=\"#039447\"][vc_row_inner equal_height=\"yes\" rtl_reverse=\"yes\" content_placement=\"middle\" css=\".vc_custom_1692359216075{margin-top: 35px !important;}\"][vc_column_inner width=\"1/2\"][ult_animation_block animation=\"fadeInLeftBig\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][ultimate_heading main_heading=\"2006\" heading_tag=\"h3\" main_heading_color=\"#039447\" alignment=\"right\"]In 2006, the Sri Lankan poultry industry was affected with Avian Influenza which became a difficult period for the growth of FARMCHEMIE. This was the key factor in our decision to diversify into Agro Products. PLANTCHEM &amp; PLANTSEEDS were established to offer solutions in Agro specialty fertilizers, pesticides and seeds to invaluable cultivators.[/ultimate_heading][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/2\"][ult_animation_block animation=\"fadeInRightBig\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][vc_single_image image=\"3276\" img_size=\"full\" alignment=\"center\" style=\"vc_box_rounded\"][/ult_animation_block][/vc_column_inner][/vc_row_inner][vc_separator color=\"custom\" accent_color=\"#039447\"][vc_row_inner equal_height=\"yes\" content_placement=\"middle\" css=\".vc_custom_1692359231594{margin-top: 35px !important;}\"][vc_column_inner width=\"1/2\"][ult_animation_block animation=\"fadeInLeftBig\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][vc_single_image image=\"3277\" img_size=\"full\" alignment=\"center\" style=\"vc_box_rounded\"][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/2\"][ult_animation_block animation=\"fadeInRightBig\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][ultimate_heading main_heading=\"2010\" heading_tag=\"h3\" main_heading_color=\"#039447\" alignment=\"left\"]In 2010, FEED CHEMIE became the subsequent addition to ever-growing vision of Mr. Uditha Wanigasinghe and entered the Animal Feed Additives market.[/ultimate_heading][/ult_animation_block][/vc_column_inner][/vc_row_inner][vc_separator color=\"custom\" accent_color=\"#039447\"][vc_row_inner equal_height=\"yes\" rtl_reverse=\"yes\" content_placement=\"middle\" css=\".vc_custom_1692359239274{margin-top: 35px !important;}\"][vc_column_inner width=\"1/2\"][ult_animation_block animation=\"fadeInLeftBig\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][ultimate_heading main_heading=\"2012\" heading_tag=\"h3\" main_heading_color=\"#039447\" alignment=\"right\"]The year 2012 is described as a turning point in our journey as FARMCHEMIE established our first production facility for the manufacturing and packing of animal health products. FARMCHEMIE became the first animal health organization in Sri Lanka to obtain ISO 9001:2015 and WHO GMP International Quality Certification. With our own formulation unit, FARMCHEMIE was able to offer customized solutions to cater the needs of the Sri Lankan Livestock Industry.[/ultimate_heading][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/2\"][ult_animation_block animation=\"fadeInRightBig\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][vc_single_image image=\"3278\" img_size=\"full\" alignment=\"center\" style=\"vc_box_rounded\"][/ult_animation_block][/vc_column_inner][/vc_row_inner][vc_separator color=\"custom\" accent_color=\"#039447\"][vc_row_inner content_placement=\"middle\" css=\".vc_custom_1692359246626{margin-top: 35px !important;}\"][vc_column_inner width=\"1/2\"][ult_animation_block animation=\"fadeInLeftBig\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][vc_single_image image=\"3279\" img_size=\"full\" alignment=\"center\" style=\"vc_box_rounded\"][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/2\"][ult_animation_block animation=\"fadeInRightBig\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][ultimate_heading main_heading=\"2016\" heading_tag=\"h3\" main_heading_color=\"#039447\" alignment=\"left\"]The year 2016 was another key milestone with the entry to the International Markets. FARMCHEMIE exported our first Feed Premix consignment to India and in 2018 our export operation was distinctly established as FARMCHEMIE MANUFACTURERS, a Board of Investment (BOI) approved entity.[/ultimate_heading][/ult_animation_block][/vc_column_inner][/vc_row_inner][vc_separator color=\"custom\" accent_color=\"#039447\"][vc_row_inner equal_height=\"yes\" content_placement=\"middle\" css=\".vc_custom_1692422601938{margin-top: 35px !important;}\"][vc_column_inner width=\"1/2\"][ult_animation_block animation=\"fadeInLeftBig\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][ultimate_heading main_heading=\"Fully automated manufacturing\" heading_tag=\"h3\" main_heading_color=\"#039447\" alignment=\"right\"]FARMCHEMIE MANUFACTURERS has invested in fully automated manufacturing facility from Bühler and became the first Sri Lankan owned company to obtain FAMI-QS International Quality Certification.[/ultimate_heading][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/2\"][ult_animation_block animation=\"fadeInRightBig\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][vc_single_image image=\"3280\" img_size=\"full\" alignment=\"center\" style=\"vc_box_rounded\"][/ult_animation_block][/vc_column_inner][/vc_row_inner][vc_separator color=\"custom\" accent_color=\"#039447\"][vc_row_inner equal_height=\"yes\" content_placement=\"middle\" css=\".vc_custom_1692359258634{margin-top: 35px !important;}\"][vc_column_inner width=\"1/2\"][ult_animation_block animation=\"fadeInLeftBig\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][vc_single_image image=\"3281\" img_size=\"full\" alignment=\"center\" style=\"vc_box_rounded\"][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/2\"][ult_animation_block animation=\"fadeInRightBig\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][ultimate_heading main_heading=\"Official toll manufacturer partner\" heading_tag=\"h3\" main_heading_color=\"#039447\" alignment=\"left\"]With the trust and reputation built as a reliable manufacturer of animal feed additives and supplements in the global market, several world-renowned international brands have appointed FARMCHEMIE MANUFACTURERS as the official toll manufacturer partner. FARMCHEMIE MANUFACTURERS exports a wide range of products consisting of premixes, specialty feed additives, oral liquid supplements and pet supplements to various markets in South Asia, East Asia, Middle East and Africa.\r\n\r\nFARMCHEMIE, FEED CHEMIE &amp; FARMCHEMIE MANUFACTURERS currently operate under the ownership of our holding company, DYVESTA.\r\n\r\nDYEVSTA has become the pinnacle of Animal Nutrition and Health.\r\n\r\nDYVESTA is Dynamic, through our continuous evolution, growth and progress. DYVESTA is Diverse, in terms of both our business strategy and our community. DYVESTA is Devoted to our valuable business partners through exceptional service.[/ultimate_heading][/ult_animation_block][/vc_column_inner][/vc_row_inner][vc_separator color=\"custom\" accent_color=\"#039447\"][/vc_column][/vc_row][vc_row full_width=\"stretch_row\" equal_height=\"yes\" bg_type=\"image\" parallax_style=\"vcpb-vz-jquery\" bg_image_new=\"id^3256|url^https://farmchemie.yasithawd.com/wp-content/uploads/2023/08/Vision-Mission.png|caption^null|alt^null|title^Vision-&amp;-Mission|description^null\" bg_image_repeat=\"no-repeat\" enable_overlay=\"enable_overlay_value\" overlay_color=\"#000000\" overlay_pattern=\"01.png\" overlay_pattern_opacity=\"5\" css=\".vc_custom_1692366072362{margin-top: 35px !important;padding-top: 65px !important;padding-bottom: 100px !important;}\"][vc_column][vc_row_inner equal_height=\"yes\"][vc_column_inner width=\"1/2\"][ult_animation_block animation=\"fadeInLeftBig\" animation_duration=\"2\" animation_delay=\"0\" animation_iteration_count=\"1\"][ultimate_heading main_heading=\"Vision\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\"]To be the customers’ first and best choice by ensuring outstanding satisfaction through a well-trained and dedicated team. Prompt and quality solutions to our customers’ requirements will determine the increase of return on investment for us.[/ultimate_heading][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/2\"][ult_animation_block animation=\"fadeInRightBig\" animation_duration=\"2\" animation_delay=\"0\" animation_iteration_count=\"1\"][ultimate_heading main_heading=\"Mission\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\"]To become a world renowned manufacturer of Animal Health products and a trusted partner among our stakeholders for our integrity as well as for providing effective solutions[/ultimate_heading][/ult_animation_block][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row css=\".vc_custom_1684836308288{margin-top: 15px !important;}\"][vc_column][ultimate_heading main_heading=\"Achievements\" main_heading_color=\"#762888\" main_heading_margin=\"margin-top:35px;\" margin_design_tab_text=\"\"][/ultimate_heading][vc_row_inner gap=\"20\"][vc_column_inner width=\"1/2\" css=\".vc_custom_1691995519863{background-color: #f4ab20 !important;border: 1px solid #f4ab20 !important;border-radius: 35px !important;}\"][ult_animation_block animation=\"fadeInLeftBig\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][bsf-info-box icon_type=\"custom\" icon_img=\"id^3117|url^https://farmchemie.yasithawd.com/wp-content/uploads/2023/08/Pink_-H.png|caption^null|alt^null|title^Pink_-H|description^null\" img_width=\"60\" icon_style=\"advanced\" icon_border_style=\"solid\" icon_color_border=\"#ffffff\" icon_border_size=\"1\" icon_border_radius=\"500\" icon_border_spacing=\"1\" title=\"First Free Sale Certificate obtained from Veterinary Drug Control Authority (VDCA) for Veterinary Pharmaceuticals\" title_font_style=\"font-weight:bold;\" title_font_size=\"desktop:20px;\"][/bsf-info-box][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/2\" css=\".vc_custom_1691995661095{background-color: #722f8b !important;border: 1px solid #722f8b !important;border-radius: 35px !important;}\"][ult_animation_block animation=\"fadeInRightBig\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][bsf-info-box icon_type=\"custom\" icon_img=\"id^3117|url^https://farmchemie.yasithawd.com/wp-content/uploads/2023/08/Pink_-H.png|caption^null|alt^null|title^Pink_-H|description^null\" img_width=\"60\" icon_style=\"advanced\" icon_border_style=\"solid\" icon_color_border=\"#ffffff\" icon_border_size=\"1\" icon_border_radius=\"500\" icon_border_spacing=\"1\" title=\"First ISO 9001: 2015 ,WHO-GMP Quality Management systems certified Animal Health company in Sri Lanka since August, 2012\" title_font_style=\"font-weight:bold;\" title_font_color=\"#ffffff\" title_font_size=\"desktop:20px;\"][/bsf-info-box][/ult_animation_block][/vc_column_inner][/vc_row_inner][vc_row_inner gap=\"20\"][vc_column_inner width=\"1/2\" css=\".vc_custom_1691995661095{background-color: #722f8b !important;border: 1px solid #722f8b !important;border-radius: 35px !important;}\"][ult_animation_block animation=\"fadeInLeftBig\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][bsf-info-box icon_type=\"custom\" icon_img=\"id^3117|url^https://farmchemie.yasithawd.com/wp-content/uploads/2023/08/Pink_-H.png|caption^null|alt^null|title^Pink_-H|description^null\" img_width=\"60\" icon_style=\"advanced\" icon_border_style=\"solid\" icon_color_border=\"#ffffff\" icon_border_size=\"1\" icon_border_radius=\"500\" icon_border_spacing=\"1\" title=\"First FAMI-QS certified company in sri lanka\" title_font_style=\"font-weight:bold;\" title_font_color=\"#ffffff\" title_font_size=\"desktop:20px;\"][/bsf-info-box][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/2\" css=\".vc_custom_1691995519863{background-color: #f4ab20 !important;border: 1px solid #f4ab20 !important;border-radius: 35px !important;}\"][ult_animation_block animation=\"fadeInRightBig\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][bsf-info-box icon_type=\"custom\" icon_img=\"id^3117|url^https://farmchemie.yasithawd.com/wp-content/uploads/2023/08/Pink_-H.png|caption^null|alt^null|title^Pink_-H|description^null\" img_width=\"60\" icon_style=\"advanced\" icon_border_style=\"solid\" icon_color_border=\"#ffffff\" icon_border_size=\"1\" icon_border_radius=\"500\" icon_border_spacing=\"1\" title=\"First Certificate of Ethical Trading certified in Livestock industry\" title_font_style=\"font-weight:bold;\" title_font_size=\"desktop:20px;\"][/bsf-info-box][/ult_animation_block][/vc_column_inner][/vc_row_inner][vc_row_inner gap=\"20\"][vc_column_inner width=\"1/4\" css=\".vc_custom_1691996718116{border-radius: 35px !important;}\"][/vc_column_inner][vc_column_inner width=\"2/4\" css=\".vc_custom_1691995519863{background-color: #f4ab20 !important;border: 1px solid #f4ab20 !important;border-radius: 35px !important;}\"][ult_animation_block animation=\"fadeInUpBig\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][bsf-info-box icon_type=\"custom\" icon_img=\"id^3117|url^https://farmchemie.yasithawd.com/wp-content/uploads/2023/08/Pink_-H.png|caption^null|alt^null|title^Pink_-H|description^null\" img_width=\"60\" icon_style=\"advanced\" icon_border_style=\"solid\" icon_color_border=\"#ffffff\" icon_border_size=\"1\" icon_border_radius=\"500\" icon_border_spacing=\"1\" title=\"First Silver awarded company at National Exports Awards in Livestock industry\" title_font_style=\"font-weight:bold;\" title_font_size=\"desktop:20px;\"][/bsf-info-box][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/4\"][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner width=\"1/6\"][/vc_column_inner][vc_column_inner width=\"2/3\"][vc_single_image image=\"3126\" img_size=\"full\" alignment=\"center\"][vc_single_image image=\"3125\" img_size=\"full\" alignment=\"center\"][/vc_column_inner][vc_column_inner width=\"1/6\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row][vc_column][ultimate_heading main_heading=\"Board Of Directors\" main_heading_color=\"#762888\" main_heading_margin=\"margin-top:35px;margin-bottom:35px;\" margin_design_tab_text=\"\"][/ultimate_heading][ultimate_carousel slides_on_desk=\"3\" slides_on_mob=\"1\" arrow_style=\"square-bg\" arrow_bg_color=\"#039447\" arrow_color=\"#ffffff\" next_icon=\"ultsl-arrow-right6\" prev_icon=\"ultsl-arrow-left6\" dots_color=\"#039447\" item_animation=\"fadeIn\"][vc_row_inner][vc_column_inner][dt_fancy_image image_id=\"3173\" width=\"300\" border_radius=\"1px\" caption=\"off\"][ultimate_heading main_heading=\"Quisque sed nibh tristique\" heading_tag=\"h3\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;\"]Duis lorem risus, aliquet a auctor a, venenatis in dui. Praesent et eros et risus dapibus placerat hendrerit cursus magna.[/ultimate_heading][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner][dt_fancy_image image_id=\"3170\" width=\"300\" border_radius=\"1px\" caption=\"off\"][ultimate_heading main_heading=\"Quisque sed nibh tristique\" heading_tag=\"h3\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;\"]Duis lorem risus, aliquet a auctor a, venenatis in dui. Praesent et eros et risus dapibus placerat hendrerit cursus magna.[/ultimate_heading][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner][dt_fancy_image image_id=\"3171\" width=\"300\" border_radius=\"1px\" caption=\"off\"][ultimate_heading main_heading=\"Quisque sed nibh tristique\" heading_tag=\"h3\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;\"]Duis lorem risus, aliquet a auctor a, venenatis in dui. Praesent et eros et risus dapibus placerat hendrerit cursus magna.[/ultimate_heading][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner][dt_fancy_image image_id=\"3172\" width=\"300\" border_radius=\"1px\" caption=\"off\"][ultimate_heading main_heading=\"Quisque sed nibh tristique\" heading_tag=\"h3\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;\"]Duis lorem risus, aliquet a auctor a, venenatis in dui. Praesent et eros et risus dapibus placerat hendrerit cursus magna.[/ultimate_heading][/vc_column_inner][/vc_row_inner][/ultimate_carousel][/vc_column][/vc_row][vc_row disable_element=\"yes\"][vc_column][ultimate_heading main_heading=\"Board Of Directors\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;margin-bottom:35px;\"][/ultimate_heading][vc_row_inner][vc_column_inner width=\"1/3\"][ult_animation_block animation=\"fadeInUp\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][dt_fancy_image image_id=\"3172\" width=\"300\" border_radius=\"1px\" caption=\"off\" css=\".vc_custom_1692278922309{border-top-width: 1px !important;border-right-width: 1px !important;border-bottom-width: 1px !important;border-left-width: 1px !important;border-left-color: #059444 !important;border-left-style: solid !important;border-right-color: #059444 !important;border-right-style: solid !important;border-top-color: #059444 !important;border-top-style: solid !important;border-bottom-color: #059444 !important;border-bottom-style: solid !important;border-radius: 1px !important;}\"][ultimate_heading main_heading=\"Quisque sed nibh tristique\" heading_tag=\"h3\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;\"]\r\n<ul>\r\n 	<li>Duis lorem risus, aliquet a auctor a, venenatis in dui. Praesent et eros et risus dapibus placerat hendrerit cursus magna.</li>\r\n 	<li>Praesent et eros et risus dapibus placerat hendrerit cursus magna.</li>\r\n 	<li>aliquet a auctor a, venenatis in dui.</li>\r\n</ul>\r\n[/ultimate_heading][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/3\"][ult_animation_block animation=\"fadeInDown\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][dt_fancy_image image_id=\"3171\" width=\"300\" border_radius=\"1px\" caption=\"off\" css=\".vc_custom_1692278929158{border-top-width: 1px !important;border-right-width: 1px !important;border-bottom-width: 1px !important;border-left-width: 1px !important;border-left-color: #059444 !important;border-left-style: solid !important;border-right-color: #059444 !important;border-right-style: solid !important;border-top-color: #059444 !important;border-top-style: solid !important;border-bottom-color: #059444 !important;border-bottom-style: solid !important;border-radius: 1px !important;}\"][ultimate_heading main_heading=\"Quisque sed nibh tristique\" heading_tag=\"h3\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;\"]\r\n<ul>\r\n 	<li>Duis lorem risus, aliquet a auctor a, venenatis in dui. Praesent et eros et risus dapibus placerat hendrerit cursus magna.</li>\r\n 	<li>Praesent et eros et risus dapibus placerat hendrerit cursus magna.</li>\r\n 	<li>aliquet a auctor a, venenatis in dui.</li>\r\n</ul>\r\n[/ultimate_heading][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/3\"][ult_animation_block animation=\"fadeInUp\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][dt_fancy_image image_id=\"3170\" width=\"300\" border_radius=\"1px\" caption=\"off\" css=\".vc_custom_1692278936750{border-top-width: 1px !important;border-right-width: 1px !important;border-bottom-width: 1px !important;border-left-width: 1px !important;border-left-color: #059444 !important;border-left-style: solid !important;border-right-color: #059444 !important;border-right-style: solid !important;border-top-color: #059444 !important;border-top-style: solid !important;border-bottom-color: #059444 !important;border-bottom-style: solid !important;border-radius: 1px !important;}\"][ultimate_heading main_heading=\"Quisque sed nibh tristique\" heading_tag=\"h3\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;\"]\r\n<ul>\r\n 	<li>Duis lorem risus, aliquet a auctor a, venenatis in dui. Praesent et eros et risus dapibus placerat hendrerit cursus magna.</li>\r\n 	<li>Praesent et eros et risus dapibus placerat hendrerit cursus magna.</li>\r\n 	<li>aliquet a auctor a, venenatis in dui.</li>\r\n</ul>\r\n[/ultimate_heading][/ult_animation_block][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row disable_element=\"yes\"][vc_column][ultimate_heading main_heading=\"Executive Directors\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;margin-bottom:35px;\"][/ultimate_heading][vc_row_inner][vc_column_inner width=\"1/5\"][ult_animation_block animation=\"fadeInUp\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][dt_fancy_image image_id=\"3172\" width=\"300\" border_radius=\"1px\" caption=\"off\" css=\".vc_custom_1692278922309{border-top-width: 1px !important;border-right-width: 1px !important;border-bottom-width: 1px !important;border-left-width: 1px !important;border-left-color: #059444 !important;border-left-style: solid !important;border-right-color: #059444 !important;border-right-style: solid !important;border-top-color: #059444 !important;border-top-style: solid !important;border-bottom-color: #059444 !important;border-bottom-style: solid !important;border-radius: 1px !important;}\"][ultimate_heading main_heading=\"Quisque sed nibh tristique\" heading_tag=\"h3\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;\"]\r\n<ul>\r\n 	<li>Duis lorem risus, aliquet a auctor a, venenatis in dui. Praesent et eros et risus dapibus placerat hendrerit cursus magna.</li>\r\n 	<li>Praesent et eros et risus dapibus placerat hendrerit cursus magna.</li>\r\n 	<li>aliquet a auctor a, venenatis in dui.</li>\r\n</ul>\r\n[/ultimate_heading][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/5\"][ult_animation_block animation=\"fadeInDown\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][dt_fancy_image image_id=\"3171\" width=\"300\" border_radius=\"1px\" caption=\"off\" css=\".vc_custom_1692278929158{border-top-width: 1px !important;border-right-width: 1px !important;border-bottom-width: 1px !important;border-left-width: 1px !important;border-left-color: #059444 !important;border-left-style: solid !important;border-right-color: #059444 !important;border-right-style: solid !important;border-top-color: #059444 !important;border-top-style: solid !important;border-bottom-color: #059444 !important;border-bottom-style: solid !important;border-radius: 1px !important;}\"][ultimate_heading main_heading=\"Quisque sed nibh tristique\" heading_tag=\"h3\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;\"]\r\n<ul>\r\n 	<li>Duis lorem risus, aliquet a auctor a, venenatis in dui. Praesent et eros et risus dapibus placerat hendrerit cursus magna.</li>\r\n 	<li>Praesent et eros et risus dapibus placerat hendrerit cursus magna.</li>\r\n 	<li>aliquet a auctor a, venenatis in dui.</li>\r\n</ul>\r\n[/ultimate_heading][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/5\"][ult_animation_block animation=\"fadeInUp\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][dt_fancy_image image_id=\"3170\" width=\"300\" border_radius=\"1px\" caption=\"off\" css=\".vc_custom_1692278936750{border-top-width: 1px !important;border-right-width: 1px !important;border-bottom-width: 1px !important;border-left-width: 1px !important;border-left-color: #059444 !important;border-left-style: solid !important;border-right-color: #059444 !important;border-right-style: solid !important;border-top-color: #059444 !important;border-top-style: solid !important;border-bottom-color: #059444 !important;border-bottom-style: solid !important;border-radius: 1px !important;}\"][ultimate_heading main_heading=\"Quisque sed nibh tristique\" heading_tag=\"h3\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;\"]\r\n<ul>\r\n 	<li>Duis lorem risus, aliquet a auctor a, venenatis in dui. Praesent et eros et risus dapibus placerat hendrerit cursus magna.</li>\r\n 	<li>Praesent et eros et risus dapibus placerat hendrerit cursus magna.</li>\r\n 	<li>aliquet a auctor a, venenatis in dui.</li>\r\n</ul>\r\n[/ultimate_heading][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/5\"][ult_animation_block animation=\"fadeInDown\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][dt_fancy_image image_id=\"3170\" width=\"300\" border_radius=\"1px\" caption=\"off\" css=\".vc_custom_1692278936750{border-top-width: 1px !important;border-right-width: 1px !important;border-bottom-width: 1px !important;border-left-width: 1px !important;border-left-color: #059444 !important;border-left-style: solid !important;border-right-color: #059444 !important;border-right-style: solid !important;border-top-color: #059444 !important;border-top-style: solid !important;border-bottom-color: #059444 !important;border-bottom-style: solid !important;border-radius: 1px !important;}\"][ultimate_heading main_heading=\"Quisque sed nibh tristique\" heading_tag=\"h3\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;\"]\r\n<ul>\r\n 	<li>Duis lorem risus, aliquet a auctor a, venenatis in dui. Praesent et eros et risus dapibus placerat hendrerit cursus magna.</li>\r\n 	<li>Praesent et eros et risus dapibus placerat hendrerit cursus magna.</li>\r\n 	<li>aliquet a auctor a, venenatis in dui.</li>\r\n</ul>\r\n[/ultimate_heading][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/5\"][ult_animation_block animation=\"fadeInDown\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][dt_fancy_image image_id=\"3171\" width=\"300\" border_radius=\"1px\" caption=\"off\" css=\".vc_custom_1692278929158{border-top-width: 1px !important;border-right-width: 1px !important;border-bottom-width: 1px !important;border-left-width: 1px !important;border-left-color: #059444 !important;border-left-style: solid !important;border-right-color: #059444 !important;border-right-style: solid !important;border-top-color: #059444 !important;border-top-style: solid !important;border-bottom-color: #059444 !important;border-bottom-style: solid !important;border-radius: 1px !important;}\"][ultimate_heading main_heading=\"Quisque sed nibh tristique\" heading_tag=\"h3\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;\"]\r\n<ul>\r\n 	<li>Duis lorem risus, aliquet a auctor a, venenatis in dui. Praesent et eros et risus dapibus placerat hendrerit cursus magna.</li>\r\n 	<li>Praesent et eros et risus dapibus placerat hendrerit cursus magna.</li>\r\n 	<li>aliquet a auctor a, venenatis in dui.</li>\r\n</ul>\r\n[/ultimate_heading][/ult_animation_block][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner width=\"2/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row disable_element=\"yes\"][vc_column][ultimate_heading main_heading=\"Next Generation\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;margin-bottom:35px;\"][/ultimate_heading][vc_row_inner][vc_column_inner width=\"1/2\"][ult_animation_block animation=\"fadeInUp\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][dt_fancy_image image_id=\"3172\" width=\"300\" border_radius=\"1px\" caption=\"off\" css=\".vc_custom_1692278922309{border-top-width: 1px !important;border-right-width: 1px !important;border-bottom-width: 1px !important;border-left-width: 1px !important;border-left-color: #059444 !important;border-left-style: solid !important;border-right-color: #059444 !important;border-right-style: solid !important;border-top-color: #059444 !important;border-top-style: solid !important;border-bottom-color: #059444 !important;border-bottom-style: solid !important;border-radius: 1px !important;}\"][ultimate_heading main_heading=\"Quisque sed nibh tristique\" heading_tag=\"h3\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;\"]\r\n<ul>\r\n 	<li>Duis lorem risus, aliquet a auctor a, venenatis in dui. Praesent et eros et risus dapibus placerat hendrerit cursus magna.</li>\r\n 	<li>Praesent et eros et risus dapibus placerat hendrerit cursus magna.</li>\r\n 	<li>aliquet a auctor a, venenatis in dui.</li>\r\n</ul>\r\n[/ultimate_heading][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/2\"][ult_animation_block animation=\"fadeInDown\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][dt_fancy_image image_id=\"3171\" width=\"300\" border_radius=\"1px\" caption=\"off\" css=\".vc_custom_1692278929158{border-top-width: 1px !important;border-right-width: 1px !important;border-bottom-width: 1px !important;border-left-width: 1px !important;border-left-color: #059444 !important;border-left-style: solid !important;border-right-color: #059444 !important;border-right-style: solid !important;border-top-color: #059444 !important;border-top-style: solid !important;border-bottom-color: #059444 !important;border-bottom-style: solid !important;border-radius: 1px !important;}\"][ultimate_heading main_heading=\"Quisque sed nibh tristique\" heading_tag=\"h3\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;\"]\r\n<ul>\r\n 	<li>Duis lorem risus, aliquet a auctor a, venenatis in dui. Praesent et eros et risus dapibus placerat hendrerit cursus magna.</li>\r\n 	<li>Praesent et eros et risus dapibus placerat hendrerit cursus magna.</li>\r\n 	<li>aliquet a auctor a, venenatis in dui.</li>\r\n</ul>\r\n[/ultimate_heading][/ult_animation_block][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row]','About us','','inherit','closed','closed','','2917-revision-v1','','','2023-08-19 05:27:15','2023-08-19 05:27:15','',2917,'https://farmchemie.yasithawd.com/?p=3286',0,'revision','',0),(3285,1,'2023-08-19 05:25:58','2023-08-19 05:25:58','[vc_row full_width=\"stretch_row_content_no_spaces\"][vc_column][ultimate_heading main_heading=\"Our History\" main_heading_color=\"#762888\"][/ultimate_heading][/vc_column][/vc_row][vc_row][vc_column][vc_row_inner equal_height=\"yes\" content_placement=\"middle\" css=\".vc_custom_1692359205466{margin-top: 35px !important;}\"][vc_column_inner width=\"1/2\"][ult_animation_block animation=\"fadeInLeftBig\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][vc_single_image image=\"3273\" img_size=\"full\" alignment=\"center\" style=\"vc_box_rounded\"][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/2\"][ult_animation_block animation=\"fadeInRightBig\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][ultimate_heading main_heading=\"Founded in 2002\" heading_tag=\"h3\" main_heading_color=\"#039447\" alignment=\"left\" sub_heading_font_size=\"desktop:18px;\"]Founded in 2002 by Mr. Uditha Wanigasinghe, an agriculturist who had a mission to aid valuable livestock producers in the country to enhance the yield and profitability of production. FARMCHEMIE introduced unprecedented solutions and consistent technical services to gain our customers’ trust and became the market leader in animal health products in 2006 within just four years.[/ultimate_heading][/ult_animation_block][/vc_column_inner][/vc_row_inner][vc_separator color=\"custom\" accent_color=\"#039447\"][vc_row_inner equal_height=\"yes\" rtl_reverse=\"yes\" content_placement=\"middle\" css=\".vc_custom_1692359216075{margin-top: 35px !important;}\"][vc_column_inner width=\"1/2\"][ult_animation_block animation=\"fadeInLeftBig\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][ultimate_heading main_heading=\"2006\" heading_tag=\"h3\" main_heading_color=\"#039447\" alignment=\"right\" margin_design_tab_text=\"\"]In 2006, the Sri Lankan poultry industry was affected with Avian Influenza which became a difficult period for the growth of FARMCHEMIE. This was the key factor in our decision to diversify into Agro Products. PLANTCHEM &amp; PLANTSEEDS were established to offer solutions in Agro specialty fertilizers, pesticides and seeds to invaluable cultivators.[/ultimate_heading][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/2\"][ult_animation_block animation=\"fadeInRightBig\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][vc_single_image image=\"3276\" img_size=\"full\" alignment=\"center\" style=\"vc_box_rounded\"][/ult_animation_block][/vc_column_inner][/vc_row_inner][vc_separator color=\"custom\" accent_color=\"#039447\"][vc_row_inner equal_height=\"yes\" content_placement=\"middle\" css=\".vc_custom_1692359231594{margin-top: 35px !important;}\"][vc_column_inner width=\"1/2\"][ult_animation_block animation=\"fadeInLeftBig\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][vc_single_image image=\"3277\" img_size=\"full\" alignment=\"center\" style=\"vc_box_rounded\"][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/2\"][ult_animation_block animation=\"fadeInRightBig\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][ultimate_heading main_heading=\"2010\" heading_tag=\"h3\" main_heading_color=\"#039447\" alignment=\"left\"]In 2010, FEED CHEMIE became the subsequent addition to ever-growing vision of Mr. Uditha Wanigasinghe and entered the Animal Feed Additives market.[/ultimate_heading][/ult_animation_block][/vc_column_inner][/vc_row_inner][vc_separator color=\"custom\" accent_color=\"#039447\"][vc_row_inner equal_height=\"yes\" rtl_reverse=\"yes\" content_placement=\"middle\" css=\".vc_custom_1692359239274{margin-top: 35px !important;}\"][vc_column_inner width=\"1/2\"][ult_animation_block animation=\"fadeInLeftBig\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][ultimate_heading main_heading=\"2012\" heading_tag=\"h3\" main_heading_color=\"#039447\" alignment=\"right\" margin_design_tab_text=\"\"]The year 2012 is described as a turning point in our journey as FARMCHEMIE established our first production facility for the manufacturing and packing of animal health products. FARMCHEMIE became the first animal health organization in Sri Lanka to obtain ISO 9001:2015 and WHO GMP International Quality Certification. With our own formulation unit, FARMCHEMIE was able to offer customized solutions to cater the needs of the Sri Lankan Livestock Industry.[/ultimate_heading][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/2\"][ult_animation_block animation=\"fadeInRightBig\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][vc_single_image image=\"3278\" img_size=\"full\" alignment=\"center\" style=\"vc_box_rounded\"][/ult_animation_block][/vc_column_inner][/vc_row_inner][vc_separator color=\"custom\" accent_color=\"#039447\"][vc_row_inner content_placement=\"middle\" css=\".vc_custom_1692359246626{margin-top: 35px !important;}\"][vc_column_inner width=\"1/2\"][ult_animation_block animation=\"fadeInLeftBig\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][vc_single_image image=\"3279\" img_size=\"full\" alignment=\"center\" style=\"vc_box_rounded\"][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/2\"][ult_animation_block animation=\"fadeInRightBig\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][ultimate_heading main_heading=\"2016\" heading_tag=\"h3\" main_heading_color=\"#039447\" alignment=\"left\"]The year 2016 was another key milestone with the entry to the International Markets. FARMCHEMIE exported our first Feed Premix consignment to India and in 2018 our export operation was distinctly established as FARMCHEMIE MANUFACTURERS, a Board of Investment (BOI) approved entity.[/ultimate_heading][/ult_animation_block][/vc_column_inner][/vc_row_inner][vc_separator color=\"custom\" accent_color=\"#039447\"][vc_row_inner equal_height=\"yes\" content_placement=\"middle\" css=\".vc_custom_1692422601938{margin-top: 35px !important;}\"][vc_column_inner width=\"1/2\"][ult_animation_block animation=\"fadeInLeftBig\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][ultimate_heading main_heading=\"Fully automated manufacturing\" heading_tag=\"h3\" main_heading_color=\"#039447\" alignment=\"right\" margin_design_tab_text=\"\"]FARMCHEMIE MANUFACTURERS has invested in fully automated manufacturing facility from Bühler and became the first Sri Lankan owned company to obtain FAMI-QS International Quality Certification.[/ultimate_heading][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/2\"][ult_animation_block animation=\"fadeInRightBig\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][vc_single_image image=\"3280\" img_size=\"full\" alignment=\"center\" style=\"vc_box_rounded\"][/ult_animation_block][/vc_column_inner][/vc_row_inner][vc_separator color=\"custom\" accent_color=\"#039447\"][vc_row_inner equal_height=\"yes\" content_placement=\"middle\" css=\".vc_custom_1692359258634{margin-top: 35px !important;}\"][vc_column_inner width=\"1/2\"][ult_animation_block animation=\"fadeInLeftBig\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][vc_single_image image=\"3281\" img_size=\"full\" alignment=\"center\" style=\"vc_box_rounded\"][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/2\"][ult_animation_block animation=\"fadeInRightBig\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][ultimate_heading main_heading=\"Official toll manufacturer partner\" heading_tag=\"h3\" main_heading_color=\"#039447\" alignment=\"left\"]With the trust and reputation built as a reliable manufacturer of animal feed additives and supplements in the global market, several world-renowned international brands have appointed FARMCHEMIE MANUFACTURERS as the official toll manufacturer partner. FARMCHEMIE MANUFACTURERS exports a wide range of products consisting of premixes, specialty feed additives, oral liquid supplements and pet supplements to various markets in South Asia, East Asia, Middle East and Africa.\r\n\r\nFARMCHEMIE, FEED CHEMIE &amp; FARMCHEMIE MANUFACTURERS currently operate under the ownership of our holding company, DYVESTA.\r\n\r\nDYEVSTA has become the pinnacle of Animal Nutrition and Health.\r\n\r\nDYVESTA is Dynamic, through our continuous evolution, growth and progress. DYVESTA is Diverse, in terms of both our business strategy and our community. DYVESTA is Devoted to our valuable business partners through exceptional service.[/ultimate_heading][/ult_animation_block][/vc_column_inner][/vc_row_inner][vc_separator color=\"custom\" accent_color=\"#039447\"][/vc_column][/vc_row][vc_row full_width=\"stretch_row\" equal_height=\"yes\" bg_type=\"image\" parallax_style=\"vcpb-vz-jquery\" bg_image_new=\"id^3256|url^https://farmchemie.yasithawd.com/wp-content/uploads/2023/08/Vision-Mission.png|caption^null|alt^null|title^Vision-&amp;-Mission|description^null\" bg_image_repeat=\"no-repeat\" enable_overlay=\"enable_overlay_value\" overlay_color=\"#000000\" overlay_pattern=\"01.png\" overlay_pattern_opacity=\"5\" css=\".vc_custom_1692366072362{margin-top: 35px !important;padding-top: 65px !important;padding-bottom: 100px !important;}\"][vc_column][vc_row_inner equal_height=\"yes\"][vc_column_inner width=\"1/2\"][ult_animation_block animation=\"fadeInLeftBig\" animation_duration=\"2\" animation_delay=\"0\" animation_iteration_count=\"1\"][ultimate_heading main_heading=\"Vision\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\"]To be the customers’ first and best choice by ensuring outstanding satisfaction through a well-trained and dedicated team. Prompt and quality solutions to our customers’ requirements will determine the increase of return on investment for us.[/ultimate_heading][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/2\"][ult_animation_block animation=\"fadeInRightBig\" animation_duration=\"2\" animation_delay=\"0\" animation_iteration_count=\"1\"][ultimate_heading main_heading=\"Mission\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\"]To become a world renowned manufacturer of Animal Health products and a trusted partner among our stakeholders for our integrity as well as for providing effective solutions[/ultimate_heading][/ult_animation_block][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row css=\".vc_custom_1684836308288{margin-top: 15px !important;}\"][vc_column][ultimate_heading main_heading=\"Achievements\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;\"][/ultimate_heading][vc_row_inner gap=\"20\"][vc_column_inner width=\"1/2\" css=\".vc_custom_1691995519863{background-color: #f4ab20 !important;border: 1px solid #f4ab20 !important;border-radius: 35px !important;}\"][ult_animation_block animation=\"fadeInLeftBig\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][bsf-info-box icon_type=\"custom\" icon_img=\"id^3117|url^https://farmchemie.yasithawd.com/wp-content/uploads/2023/08/Pink_-H.png|caption^null|alt^null|title^Pink_-H|description^null\" img_width=\"60\" icon_style=\"advanced\" icon_border_style=\"solid\" icon_color_border=\"#ffffff\" icon_border_size=\"1\" icon_border_radius=\"500\" icon_border_spacing=\"1\" title=\"First Free Sale Certificate obtained from Veterinary Drug Control Authority (VDCA) for Veterinary Pharmaceuticals\" title_font_style=\"font-weight:bold;\" title_font_size=\"desktop:20px;\"][/bsf-info-box][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/2\" css=\".vc_custom_1691995661095{background-color: #722f8b !important;border: 1px solid #722f8b !important;border-radius: 35px !important;}\"][ult_animation_block animation=\"fadeInRightBig\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][bsf-info-box icon_type=\"custom\" icon_img=\"id^3117|url^https://farmchemie.yasithawd.com/wp-content/uploads/2023/08/Pink_-H.png|caption^null|alt^null|title^Pink_-H|description^null\" img_width=\"60\" icon_style=\"advanced\" icon_border_style=\"solid\" icon_color_border=\"#ffffff\" icon_border_size=\"1\" icon_border_radius=\"500\" icon_border_spacing=\"1\" title=\"First ISO 9001: 2015 ,WHO-GMP Quality Management systems certified Animal Health company in Sri Lanka since August, 2012\" title_font_style=\"font-weight:bold;\" title_font_color=\"#ffffff\" title_font_size=\"desktop:20px;\"][/bsf-info-box][/ult_animation_block][/vc_column_inner][/vc_row_inner][vc_row_inner gap=\"20\"][vc_column_inner width=\"1/2\" css=\".vc_custom_1691995661095{background-color: #722f8b !important;border: 1px solid #722f8b !important;border-radius: 35px !important;}\"][ult_animation_block animation=\"fadeInLeftBig\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][bsf-info-box icon_type=\"custom\" icon_img=\"id^3117|url^https://farmchemie.yasithawd.com/wp-content/uploads/2023/08/Pink_-H.png|caption^null|alt^null|title^Pink_-H|description^null\" img_width=\"60\" icon_style=\"advanced\" icon_border_style=\"solid\" icon_color_border=\"#ffffff\" icon_border_size=\"1\" icon_border_radius=\"500\" icon_border_spacing=\"1\" title=\"First FAMI-QS certified company in sri lanka\" title_font_style=\"font-weight:bold;\" title_font_color=\"#ffffff\" title_font_size=\"desktop:20px;\"][/bsf-info-box][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/2\" css=\".vc_custom_1691995519863{background-color: #f4ab20 !important;border: 1px solid #f4ab20 !important;border-radius: 35px !important;}\"][ult_animation_block animation=\"fadeInRightBig\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][bsf-info-box icon_type=\"custom\" icon_img=\"id^3117|url^https://farmchemie.yasithawd.com/wp-content/uploads/2023/08/Pink_-H.png|caption^null|alt^null|title^Pink_-H|description^null\" img_width=\"60\" icon_style=\"advanced\" icon_border_style=\"solid\" icon_color_border=\"#ffffff\" icon_border_size=\"1\" icon_border_radius=\"500\" icon_border_spacing=\"1\" title=\"First Certificate of Ethical Trading certified in Livestock industry\" title_font_style=\"font-weight:bold;\" title_font_size=\"desktop:20px;\"][/bsf-info-box][/ult_animation_block][/vc_column_inner][/vc_row_inner][vc_row_inner gap=\"20\"][vc_column_inner width=\"1/4\" css=\".vc_custom_1691996718116{border-radius: 35px !important;}\"][/vc_column_inner][vc_column_inner width=\"2/4\" css=\".vc_custom_1691995519863{background-color: #f4ab20 !important;border: 1px solid #f4ab20 !important;border-radius: 35px !important;}\"][ult_animation_block animation=\"fadeInUpBig\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][bsf-info-box icon_type=\"custom\" icon_img=\"id^3117|url^https://farmchemie.yasithawd.com/wp-content/uploads/2023/08/Pink_-H.png|caption^null|alt^null|title^Pink_-H|description^null\" img_width=\"60\" icon_style=\"advanced\" icon_border_style=\"solid\" icon_color_border=\"#ffffff\" icon_border_size=\"1\" icon_border_radius=\"500\" icon_border_spacing=\"1\" title=\"First Silver awarded company at National Exports Awards in Livestock industry\" title_font_style=\"font-weight:bold;\" title_font_size=\"desktop:20px;\"][/bsf-info-box][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/4\"][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner width=\"1/6\"][/vc_column_inner][vc_column_inner width=\"2/3\"][vc_single_image image=\"3126\" img_size=\"full\" alignment=\"center\"][vc_single_image image=\"3125\" img_size=\"full\" alignment=\"center\"][/vc_column_inner][vc_column_inner width=\"1/6\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row][vc_column][ultimate_heading main_heading=\"Board Of Directors\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;margin-bottom:35px;\"][/ultimate_heading][ultimate_carousel slides_on_desk=\"3\" slides_on_mob=\"1\" arrow_style=\"square-bg\" arrow_bg_color=\"#039447\" arrow_color=\"#ffffff\" next_icon=\"ultsl-arrow-right6\" prev_icon=\"ultsl-arrow-left6\" dots_color=\"#039447\" item_animation=\"fadeIn\"][vc_row_inner][vc_column_inner][dt_fancy_image image_id=\"3173\" width=\"300\" border_radius=\"1px\" caption=\"off\"][ultimate_heading main_heading=\"Quisque sed nibh tristique\" heading_tag=\"h3\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;\"]Duis lorem risus, aliquet a auctor a, venenatis in dui. Praesent et eros et risus dapibus placerat hendrerit cursus magna.[/ultimate_heading][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner][dt_fancy_image image_id=\"3170\" width=\"300\" border_radius=\"1px\" caption=\"off\"][ultimate_heading main_heading=\"Quisque sed nibh tristique\" heading_tag=\"h3\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;\"]Duis lorem risus, aliquet a auctor a, venenatis in dui. Praesent et eros et risus dapibus placerat hendrerit cursus magna.[/ultimate_heading][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner][dt_fancy_image image_id=\"3171\" width=\"300\" border_radius=\"1px\" caption=\"off\"][ultimate_heading main_heading=\"Quisque sed nibh tristique\" heading_tag=\"h3\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;\"]Duis lorem risus, aliquet a auctor a, venenatis in dui. Praesent et eros et risus dapibus placerat hendrerit cursus magna.[/ultimate_heading][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner][dt_fancy_image image_id=\"3172\" width=\"300\" border_radius=\"1px\" caption=\"off\"][ultimate_heading main_heading=\"Quisque sed nibh tristique\" heading_tag=\"h3\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;\"]Duis lorem risus, aliquet a auctor a, venenatis in dui. Praesent et eros et risus dapibus placerat hendrerit cursus magna.[/ultimate_heading][/vc_column_inner][/vc_row_inner][/ultimate_carousel][/vc_column][/vc_row][vc_row disable_element=\"yes\"][vc_column][ultimate_heading main_heading=\"Board Of Directors\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;margin-bottom:35px;\"][/ultimate_heading][vc_row_inner][vc_column_inner width=\"1/3\"][ult_animation_block animation=\"fadeInUp\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][dt_fancy_image image_id=\"3172\" width=\"300\" border_radius=\"1px\" caption=\"off\" css=\".vc_custom_1692278922309{border-top-width: 1px !important;border-right-width: 1px !important;border-bottom-width: 1px !important;border-left-width: 1px !important;border-left-color: #059444 !important;border-left-style: solid !important;border-right-color: #059444 !important;border-right-style: solid !important;border-top-color: #059444 !important;border-top-style: solid !important;border-bottom-color: #059444 !important;border-bottom-style: solid !important;border-radius: 1px !important;}\"][ultimate_heading main_heading=\"Quisque sed nibh tristique\" heading_tag=\"h3\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;\"]\r\n<ul>\r\n 	<li>Duis lorem risus, aliquet a auctor a, venenatis in dui. Praesent et eros et risus dapibus placerat hendrerit cursus magna.</li>\r\n 	<li>Praesent et eros et risus dapibus placerat hendrerit cursus magna.</li>\r\n 	<li>aliquet a auctor a, venenatis in dui.</li>\r\n</ul>\r\n[/ultimate_heading][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/3\"][ult_animation_block animation=\"fadeInDown\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][dt_fancy_image image_id=\"3171\" width=\"300\" border_radius=\"1px\" caption=\"off\" css=\".vc_custom_1692278929158{border-top-width: 1px !important;border-right-width: 1px !important;border-bottom-width: 1px !important;border-left-width: 1px !important;border-left-color: #059444 !important;border-left-style: solid !important;border-right-color: #059444 !important;border-right-style: solid !important;border-top-color: #059444 !important;border-top-style: solid !important;border-bottom-color: #059444 !important;border-bottom-style: solid !important;border-radius: 1px !important;}\"][ultimate_heading main_heading=\"Quisque sed nibh tristique\" heading_tag=\"h3\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;\"]\r\n<ul>\r\n 	<li>Duis lorem risus, aliquet a auctor a, venenatis in dui. Praesent et eros et risus dapibus placerat hendrerit cursus magna.</li>\r\n 	<li>Praesent et eros et risus dapibus placerat hendrerit cursus magna.</li>\r\n 	<li>aliquet a auctor a, venenatis in dui.</li>\r\n</ul>\r\n[/ultimate_heading][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/3\"][ult_animation_block animation=\"fadeInUp\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][dt_fancy_image image_id=\"3170\" width=\"300\" border_radius=\"1px\" caption=\"off\" css=\".vc_custom_1692278936750{border-top-width: 1px !important;border-right-width: 1px !important;border-bottom-width: 1px !important;border-left-width: 1px !important;border-left-color: #059444 !important;border-left-style: solid !important;border-right-color: #059444 !important;border-right-style: solid !important;border-top-color: #059444 !important;border-top-style: solid !important;border-bottom-color: #059444 !important;border-bottom-style: solid !important;border-radius: 1px !important;}\"][ultimate_heading main_heading=\"Quisque sed nibh tristique\" heading_tag=\"h3\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;\"]\r\n<ul>\r\n 	<li>Duis lorem risus, aliquet a auctor a, venenatis in dui. Praesent et eros et risus dapibus placerat hendrerit cursus magna.</li>\r\n 	<li>Praesent et eros et risus dapibus placerat hendrerit cursus magna.</li>\r\n 	<li>aliquet a auctor a, venenatis in dui.</li>\r\n</ul>\r\n[/ultimate_heading][/ult_animation_block][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row disable_element=\"yes\"][vc_column][ultimate_heading main_heading=\"Executive Directors\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;margin-bottom:35px;\"][/ultimate_heading][vc_row_inner][vc_column_inner width=\"1/5\"][ult_animation_block animation=\"fadeInUp\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][dt_fancy_image image_id=\"3172\" width=\"300\" border_radius=\"1px\" caption=\"off\" css=\".vc_custom_1692278922309{border-top-width: 1px !important;border-right-width: 1px !important;border-bottom-width: 1px !important;border-left-width: 1px !important;border-left-color: #059444 !important;border-left-style: solid !important;border-right-color: #059444 !important;border-right-style: solid !important;border-top-color: #059444 !important;border-top-style: solid !important;border-bottom-color: #059444 !important;border-bottom-style: solid !important;border-radius: 1px !important;}\"][ultimate_heading main_heading=\"Quisque sed nibh tristique\" heading_tag=\"h3\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;\"]\r\n<ul>\r\n 	<li>Duis lorem risus, aliquet a auctor a, venenatis in dui. Praesent et eros et risus dapibus placerat hendrerit cursus magna.</li>\r\n 	<li>Praesent et eros et risus dapibus placerat hendrerit cursus magna.</li>\r\n 	<li>aliquet a auctor a, venenatis in dui.</li>\r\n</ul>\r\n[/ultimate_heading][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/5\"][ult_animation_block animation=\"fadeInDown\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][dt_fancy_image image_id=\"3171\" width=\"300\" border_radius=\"1px\" caption=\"off\" css=\".vc_custom_1692278929158{border-top-width: 1px !important;border-right-width: 1px !important;border-bottom-width: 1px !important;border-left-width: 1px !important;border-left-color: #059444 !important;border-left-style: solid !important;border-right-color: #059444 !important;border-right-style: solid !important;border-top-color: #059444 !important;border-top-style: solid !important;border-bottom-color: #059444 !important;border-bottom-style: solid !important;border-radius: 1px !important;}\"][ultimate_heading main_heading=\"Quisque sed nibh tristique\" heading_tag=\"h3\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;\"]\r\n<ul>\r\n 	<li>Duis lorem risus, aliquet a auctor a, venenatis in dui. Praesent et eros et risus dapibus placerat hendrerit cursus magna.</li>\r\n 	<li>Praesent et eros et risus dapibus placerat hendrerit cursus magna.</li>\r\n 	<li>aliquet a auctor a, venenatis in dui.</li>\r\n</ul>\r\n[/ultimate_heading][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/5\"][ult_animation_block animation=\"fadeInUp\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][dt_fancy_image image_id=\"3170\" width=\"300\" border_radius=\"1px\" caption=\"off\" css=\".vc_custom_1692278936750{border-top-width: 1px !important;border-right-width: 1px !important;border-bottom-width: 1px !important;border-left-width: 1px !important;border-left-color: #059444 !important;border-left-style: solid !important;border-right-color: #059444 !important;border-right-style: solid !important;border-top-color: #059444 !important;border-top-style: solid !important;border-bottom-color: #059444 !important;border-bottom-style: solid !important;border-radius: 1px !important;}\"][ultimate_heading main_heading=\"Quisque sed nibh tristique\" heading_tag=\"h3\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;\"]\r\n<ul>\r\n 	<li>Duis lorem risus, aliquet a auctor a, venenatis in dui. Praesent et eros et risus dapibus placerat hendrerit cursus magna.</li>\r\n 	<li>Praesent et eros et risus dapibus placerat hendrerit cursus magna.</li>\r\n 	<li>aliquet a auctor a, venenatis in dui.</li>\r\n</ul>\r\n[/ultimate_heading][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/5\"][ult_animation_block animation=\"fadeInDown\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][dt_fancy_image image_id=\"3170\" width=\"300\" border_radius=\"1px\" caption=\"off\" css=\".vc_custom_1692278936750{border-top-width: 1px !important;border-right-width: 1px !important;border-bottom-width: 1px !important;border-left-width: 1px !important;border-left-color: #059444 !important;border-left-style: solid !important;border-right-color: #059444 !important;border-right-style: solid !important;border-top-color: #059444 !important;border-top-style: solid !important;border-bottom-color: #059444 !important;border-bottom-style: solid !important;border-radius: 1px !important;}\"][ultimate_heading main_heading=\"Quisque sed nibh tristique\" heading_tag=\"h3\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;\"]\r\n<ul>\r\n 	<li>Duis lorem risus, aliquet a auctor a, venenatis in dui. Praesent et eros et risus dapibus placerat hendrerit cursus magna.</li>\r\n 	<li>Praesent et eros et risus dapibus placerat hendrerit cursus magna.</li>\r\n 	<li>aliquet a auctor a, venenatis in dui.</li>\r\n</ul>\r\n[/ultimate_heading][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/5\"][ult_animation_block animation=\"fadeInDown\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][dt_fancy_image image_id=\"3171\" width=\"300\" border_radius=\"1px\" caption=\"off\" css=\".vc_custom_1692278929158{border-top-width: 1px !important;border-right-width: 1px !important;border-bottom-width: 1px !important;border-left-width: 1px !important;border-left-color: #059444 !important;border-left-style: solid !important;border-right-color: #059444 !important;border-right-style: solid !important;border-top-color: #059444 !important;border-top-style: solid !important;border-bottom-color: #059444 !important;border-bottom-style: solid !important;border-radius: 1px !important;}\"][ultimate_heading main_heading=\"Quisque sed nibh tristique\" heading_tag=\"h3\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;\"]\r\n<ul>\r\n 	<li>Duis lorem risus, aliquet a auctor a, venenatis in dui. Praesent et eros et risus dapibus placerat hendrerit cursus magna.</li>\r\n 	<li>Praesent et eros et risus dapibus placerat hendrerit cursus magna.</li>\r\n 	<li>aliquet a auctor a, venenatis in dui.</li>\r\n</ul>\r\n[/ultimate_heading][/ult_animation_block][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner width=\"2/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row disable_element=\"yes\"][vc_column][ultimate_heading main_heading=\"Next Generation\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;margin-bottom:35px;\"][/ultimate_heading][vc_row_inner][vc_column_inner width=\"1/2\"][ult_animation_block animation=\"fadeInUp\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][dt_fancy_image image_id=\"3172\" width=\"300\" border_radius=\"1px\" caption=\"off\" css=\".vc_custom_1692278922309{border-top-width: 1px !important;border-right-width: 1px !important;border-bottom-width: 1px !important;border-left-width: 1px !important;border-left-color: #059444 !important;border-left-style: solid !important;border-right-color: #059444 !important;border-right-style: solid !important;border-top-color: #059444 !important;border-top-style: solid !important;border-bottom-color: #059444 !important;border-bottom-style: solid !important;border-radius: 1px !important;}\"][ultimate_heading main_heading=\"Quisque sed nibh tristique\" heading_tag=\"h3\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;\"]\r\n<ul>\r\n 	<li>Duis lorem risus, aliquet a auctor a, venenatis in dui. Praesent et eros et risus dapibus placerat hendrerit cursus magna.</li>\r\n 	<li>Praesent et eros et risus dapibus placerat hendrerit cursus magna.</li>\r\n 	<li>aliquet a auctor a, venenatis in dui.</li>\r\n</ul>\r\n[/ultimate_heading][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/2\"][ult_animation_block animation=\"fadeInDown\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][dt_fancy_image image_id=\"3171\" width=\"300\" border_radius=\"1px\" caption=\"off\" css=\".vc_custom_1692278929158{border-top-width: 1px !important;border-right-width: 1px !important;border-bottom-width: 1px !important;border-left-width: 1px !important;border-left-color: #059444 !important;border-left-style: solid !important;border-right-color: #059444 !important;border-right-style: solid !important;border-top-color: #059444 !important;border-top-style: solid !important;border-bottom-color: #059444 !important;border-bottom-style: solid !important;border-radius: 1px !important;}\"][ultimate_heading main_heading=\"Quisque sed nibh tristique\" heading_tag=\"h3\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;\"]\r\n<ul>\r\n 	<li>Duis lorem risus, aliquet a auctor a, venenatis in dui. Praesent et eros et risus dapibus placerat hendrerit cursus magna.</li>\r\n 	<li>Praesent et eros et risus dapibus placerat hendrerit cursus magna.</li>\r\n 	<li>aliquet a auctor a, venenatis in dui.</li>\r\n</ul>\r\n[/ultimate_heading][/ult_animation_block][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row]','About us','','inherit','closed','closed','','2917-revision-v1','','','2023-08-19 05:25:58','2023-08-19 05:25:58','',2917,'https://farmchemie.yasithawd.com/?p=3285',0,'revision','',0),(3287,1,'2023-08-19 05:29:26','2023-08-19 05:29:26','','Medivesta-Banner_1','','inherit','open','closed','','medivesta-banner_1','','','2023-08-19 05:29:26','2023-08-19 05:29:26','',2990,'https://farmchemie.yasithawd.com/wp-content/uploads/2023/08/Medivesta-Banner_1.png',0,'attachment','image/png',0),(3288,1,'2023-08-31 07:46:13','2023-08-31 07:46:13','<p>[vc_row][vc_column][vc_column_text]Farmchemie along with the leading veterinary vaccine solution provider in the world, CEVA established our partnership in 2013 to become the first animal health input supplier in Sri Lanka to offer vaccination services to poultry farmers. This innovative solution tackles the burden of individually vaccinating animals on farms and introduces advanced equipment for precise vaccine administration. By addressing the limitations of traditional vaccination methods, Farmchemie\'s services have gained popularity within a short period.[/vc_column_text][/vc_column][/vc_row][vc_row css=\".vc_custom_1689580294399{padding-top: 50px !important;padding-bottom: 50px !important;}\"][vc_column][vc_row_inner content_placement=\"middle\" css=\".vc_custom_1692423054521{border-top-width: 1px !important;border-top-color: #079547 !important;border-top-style: solid !important;border-radius: 1px !important;}\"][vc_column_inner width=\"2/3\"][vc_column_text]after 10 years from 2013-2023 Farmchemie achieved 500Mn doses of vaccines from Transmune IBD vaccine which is administrated to prevent a deadly disease called Infectious Bursal Disease in broiler birds of Sri Lanka and holding the number 01 position in vaccination service in the county since the beginning.[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_single_image image=\"3007\" img_size=\"full\"][/vc_column_inner][/vc_row_inner][vc_row_inner content_placement=\"middle\" css=\".vc_custom_1692423045746{border-top-width: 1px !important;border-top-color: #079547 !important;border-top-style: solid !important;border-radius: 1px !important;}\"][vc_column_inner width=\"1/3\"][vc_single_image image=\"3008\" img_size=\"full\" css_animation=\"fadeInLeftBig\"][/vc_column_inner][vc_column_inner width=\"2/3\"][vc_column_text css_animation=\"fadeInRightBig\"]Farmchemie\'s approach focuses on accurate vaccine delivery and robust cold chain management. The company regularly conducts audits to ensure the quality and integrity of vaccines. The maintenance of proper temperature and storage conditions guarantees vaccine potency and enhances their efficacy during administration.[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_row_inner content_placement=\"middle\" css=\".vc_custom_1692423061906{border-top-width: 1px !important;border-top-color: #079547 !important;border-top-style: solid !important;border-radius: 1px !important;}\"][vc_column_inner width=\"2/3\"][vc_column_text css_animation=\"fadeInLeftBig\"]One of the key strengths of Farmchemie is its team of highly qualified staff, who have received training overseas. These professionals possess the expertise to administer vaccines effectively and efficiently, providing exceptional care to the animals. The investment in their education and training reflects Farmchemie\'s commitment to delivering superior services.[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_single_image image=\"3009\" img_size=\"full\" css_animation=\"fadeInRightBig\"][/vc_column_inner][/vc_row_inner][vc_row_inner content_placement=\"middle\" css=\".vc_custom_1692423068642{border-top-width: 1px !important;border-top-color: #079547 !important;border-top-style: solid !important;border-radius: 1px !important;}\"][vc_column_inner width=\"1/3\"][vc_single_image image=\"3010\" img_size=\"full\" css_animation=\"fadeInLeftBig\"][/vc_column_inner][vc_column_inner width=\"2/3\"][vc_column_text]The accuracy and the quality of the vaccination is always highly concerned and that is monitored by regular audits which supervised by the CEVA and for each vaccination audit report can be shared to the customer which leads them to get better understanding about the vaccination proces and administration[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_row_inner content_placement=\"middle\" css=\".vc_custom_1692423075811{border-top-width: 1px !important;border-top-color: #079547 !important;border-top-style: solid !important;border-radius: 1px !important;}\"][vc_column_inner width=\"2/3\"][vc_column_text]The impact of Farmchemie\'s vaccination services on poultry farmers has been substantial. By eliminating the burden of individual vaccinations, farmers can allocate their time and resources to other essential aspects of poultry farming. The accuracy of vaccine delivery, coupled with stringent cold chain management practices, has led to increased customer satisfaction and improved overall poultry health outcomes.[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_single_image image=\"3011\" img_size=\"full\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row css=\".vc_custom_1691129087062{border-top-width: 1px !important;border-top-color: #079547 !important;border-top-style: solid !important;border-radius: 1px !important;}\"][vc_column][vc_column_text]Farmchemie\'s pioneering role in the industry has revolutionized poultry farming in Sri Lanka. Through advanced vaccination techniques, quality assurance, and well-trained staff, the company has overcome the limitations of conventional procedures. By consistently innovating and prioritizing customer satisfaction, Farmchemie continues to shape and improve the health and welfare of poultry in the country.[/vc_column_text][/vc_column][/vc_row]</p>\n','Vaccination Service','','inherit','closed','closed','','2996-autosave-v1','','','2023-08-31 07:46:13','2023-08-31 07:46:13','',2996,'https://farmchemie.yasithawd.com/?p=3288',0,'revision','',0),(3289,1,'2023-08-19 05:31:21','2023-08-19 05:31:21','[vc_row][vc_column][vc_column_text]Farmchemie along with the leading veterinary vaccine solution provider in the world, CEVA established our partnership in 2013 to become the first animal health input supplier in Sri Lanka to offer vaccination services to poultry farmers. This innovative solution tackles the burden of individually vaccinating animals on farms and introduces advanced equipment for precise vaccine administration. By addressing the limitations of traditional vaccination methods, Farmchemie\'s services have gained popularity within a short period.[/vc_column_text][/vc_column][/vc_row][vc_row css=\".vc_custom_1689580294399{padding-top: 50px !important;padding-bottom: 50px !important;}\"][vc_column][vc_row_inner content_placement=\"middle\" css=\".vc_custom_1692423054521{border-top-width: 1px !important;border-top-color: #079547 !important;border-top-style: solid !important;border-radius: 1px !important;}\"][vc_column_inner width=\"2/3\"][vc_column_text]after 10 years from 2013-2023 Farmchemie achieved 500Mn doses of vaccines from Transmune IBD vaccine which is administrated to prevent a deadly disease called Infectious Bursal Disease in broiler birds of Sri Lanka and holding the number 01 position in vaccination service in the county since the beginning.[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_single_image image=\"3007\" img_size=\"full\"][/vc_column_inner][/vc_row_inner][vc_row_inner content_placement=\"middle\" css=\".vc_custom_1692423045746{border-top-width: 1px !important;border-top-color: #079547 !important;border-top-style: solid !important;border-radius: 1px !important;}\"][vc_column_inner width=\"1/3\"][vc_single_image image=\"3008\" img_size=\"full\"][/vc_column_inner][vc_column_inner width=\"2/3\"][vc_column_text]Farmchemie\'s approach focuses on accurate vaccine delivery and robust cold chain management. The company regularly conducts audits to ensure the quality and integrity of vaccines. The maintenance of proper temperature and storage conditions guarantees vaccine potency and enhances their efficacy during administration.\r\n\r\n[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_row_inner content_placement=\"middle\" css=\".vc_custom_1692423061906{border-top-width: 1px !important;border-top-color: #079547 !important;border-top-style: solid !important;border-radius: 1px !important;}\"][vc_column_inner width=\"2/3\"][vc_column_text]One of the key strengths of Farmchemie is its team of highly qualified staff, who have received training overseas. These professionals possess the expertise to administer vaccines effectively and efficiently, providing exceptional care to the animals. The investment in their education and training reflects Farmchemie\'s commitment to delivering superior services.[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_single_image image=\"3009\" img_size=\"full\"][/vc_column_inner][/vc_row_inner][vc_row_inner content_placement=\"middle\" css=\".vc_custom_1692423068642{border-top-width: 1px !important;border-top-color: #079547 !important;border-top-style: solid !important;border-radius: 1px !important;}\"][vc_column_inner width=\"1/3\"][vc_single_image image=\"3010\" img_size=\"full\"][/vc_column_inner][vc_column_inner width=\"2/3\"][vc_column_text]The accuracy and the quality of the vaccination is always highly concerned and that is monitored by regular audits which supervised by the CEVA and for each vaccination audit report can be shared to the customer which leads them to get better understanding about the vaccination proces and administration[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_row_inner content_placement=\"middle\" css=\".vc_custom_1692423075811{border-top-width: 1px !important;border-top-color: #079547 !important;border-top-style: solid !important;border-radius: 1px !important;}\"][vc_column_inner width=\"2/3\"][vc_column_text]The impact of Farmchemie\'s vaccination services on poultry farmers has been substantial. By eliminating the burden of individual vaccinations, farmers can allocate their time and resources to other essential aspects of poultry farming. The accuracy of vaccine delivery, coupled with stringent cold chain management practices, has led to increased customer satisfaction and improved overall poultry health outcomes.[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_single_image image=\"3011\" img_size=\"full\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row css=\".vc_custom_1691129087062{border-top-width: 1px !important;border-top-color: #079547 !important;border-top-style: solid !important;border-radius: 1px !important;}\"][vc_column][vc_column_text]Farmchemie\'s pioneering role in the industry has revolutionized poultry farming in Sri Lanka. Through advanced vaccination techniques, quality assurance, and well-trained staff, the company has overcome the limitations of conventional procedures. By consistently innovating and prioritizing customer satisfaction, Farmchemie continues to shape and improve the health and welfare of poultry in the country.[/vc_column_text][/vc_column][/vc_row]','Vaccination Service','','inherit','closed','closed','','2996-revision-v1','','','2023-08-19 05:31:21','2023-08-19 05:31:21','',2996,'https://farmchemie.yasithawd.com/?p=3289',0,'revision','',0),(3290,1,'2023-08-19 05:32:01','2023-08-19 05:32:01','','Vaccination-Service_1','','inherit','open','closed','','vaccination-service_1','','','2023-08-19 05:32:01','2023-08-19 05:32:01','',2996,'https://farmchemie.yasithawd.com/wp-content/uploads/2023/08/Vaccination-Service_1.png',0,'attachment','image/png',0),(3291,1,'2023-08-19 05:34:09','2023-08-19 05:34:09','[vc_row css=\".vc_custom_1689579703311{padding-top: 50px !important;padding-bottom: 50px !important;}\"][vc_column][vc_column_text]Medivesta Laboratories (Pvt) Ltd. offers high quality analytical service in the field of Pharmaceutical, Food and Feed analysis. We specialize in analysis of Active pharmaceutical Ingredients, Vitamins, Amino acids, Mycotoxins and Microbiological analysis and so on.\r\nBy using the latest technologies, we are continuously expanding our range of analysis in industry. We are committed to provide you with Best service.[/vc_column_text][vc_row_inner][vc_column_inner width=\"1/3\"][vc_single_image image=\"3015\" img_size=\"full\"][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_single_image image=\"3016\" img_size=\"full\"][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_single_image image=\"3017\" img_size=\"full\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row css=\".vc_custom_1689579703311{padding-top: 50px !important;padding-bottom: 50px !important;}\"][vc_column][ultimate_heading main_heading=\"Contact us:\" heading_tag=\"h3\" main_heading_color=\"#079547\" alignment=\"left\"][/ultimate_heading][vc_row_inner css=\".vc_custom_1689579850874{margin-top: 35px !important;margin-bottom: 35px !important;}\"][vc_column_inner width=\"1/3\"][bsf-info-box icon_size=\"32\" title=\"Inquiries\"][/bsf-info-box][/vc_column_inner][vc_column_inner width=\"1/3\"][bsf-info-box icon_size=\"32\" title=\"Test Request form\"][/bsf-info-box][/vc_column_inner][vc_column_inner width=\"1/3\"][bsf-info-box icon_size=\"32\" title=\"Accreditation\"][/bsf-info-box][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row]','Medivesta Laboratories','','inherit','closed','closed','','2990-revision-v1','','','2023-08-19 05:34:09','2023-08-19 05:34:09','',2990,'https://farmchemie.yasithawd.com/?p=3291',0,'revision','',0),(3292,1,'2023-08-19 05:35:25','2023-08-19 05:35:25','','Technical-Service_1','','inherit','open','closed','','technical-service_1','','','2023-08-19 05:35:25','2023-08-19 05:35:25','',2994,'https://farmchemie.yasithawd.com/wp-content/uploads/2023/08/Technical-Service_1.png',0,'attachment','image/png',0),(3293,1,'2023-08-19 05:36:12','2023-08-19 05:36:12','','FARMER-TRAINING_1','','inherit','open','closed','','farmer-training_1','','','2023-08-19 05:36:12','2023-08-19 05:36:12','',2998,'https://farmchemie.yasithawd.com/wp-content/uploads/2023/08/FARMER-TRAINING_1.png',0,'attachment','image/png',0),(3296,1,'2023-08-21 01:02:35','2023-08-21 01:02:35','[vc_row][vc_column][ult_tab_element tab_style=\"Style_4\" tab_animation=\"Fade\" tab_title_color=\"#ffffff\" tab_background_color=\"#039447\" tab_hover_title_color=\"#ffffff\" tab_hover_background_color=\"#853497\" acttab_title=\"#ffffff\" acttab_background=\"#853497\" disp_icon=\"Disables\" main_title_typograpy=\"\" main_desc_typograpy=\"\"][single_tab title=\"All\" tab_id=\"1692579230326-8\"][dt_products_masonry show_products=\"categories_products\" mode=\"grid\" layout=\"btn_on_img_hover\" bwb_columns=\"desktop:3|h_tablet:3|v_tablet:2|phone:1\" dis_posts_total=\"\" category_ids=\"64\"][/single_tab][single_tab title=\"Cat\" tab_id=\"1692579230334-3\"][dt_products_masonry show_products=\"categories_products\" mode=\"grid\" layout=\"btn_on_img_hover\" bwb_columns=\"desktop:3|h_tablet:3|v_tablet:2|phone:1\" dis_posts_total=\"\" category_ids=\"114\"][/single_tab][single_tab title=\"Dog\" tab_id=\"1692579268639-2-10\"][dt_products_masonry show_products=\"categories_products\" mode=\"grid\" layout=\"btn_on_img_hover\" bwb_columns=\"desktop:3|h_tablet:3|v_tablet:2|phone:1\" dis_posts_total=\"\" category_ids=\"102\"][/single_tab][single_tab title=\"Exotic Birds\" tab_id=\"1692579279159-3-2\"][dt_products_masonry show_products=\"categories_products\" mode=\"grid\" layout=\"btn_on_img_hover\" bwb_columns=\"desktop:3|h_tablet:3|v_tablet:2|phone:1\" dis_posts_total=\"\" category_ids=\"121\"][/single_tab][/ult_tab_element][/vc_column][/vc_row]','Pet Care','','inherit','closed','closed','','3039-revision-v1','','','2023-08-21 01:02:35','2023-08-21 01:02:35','',3039,'https://farmchemie.yasithawd.com/?p=3296',0,'revision','',0),(3297,1,'2023-08-21 01:04:35','2023-08-21 01:04:35','','PET-CARE_1','','inherit','open','closed','','pet-care_1','','','2023-08-21 01:04:35','2023-08-21 01:04:35','',3039,'https://farmchemie.yasithawd.com/wp-content/uploads/2023/08/PET-CARE_1.png',0,'attachment','image/png',0),(3298,1,'2023-08-21 02:50:19','2023-08-21 02:50:19','[vc_row full_width=\"stretch_row_content\"][vc_column width=\"2/3\"][/vc_column][vc_column width=\"1/3\"][vc_widget_sidebar sidebar_id=\"sidebar_1\"][/vc_column][/vc_row]','Products','','inherit','closed','closed','','2655-revision-v1','','','2023-08-21 02:50:19','2023-08-21 02:50:19','',2655,'https://farmchemie.yasithawd.com/?p=3298',0,'revision','',0),(3299,1,'2023-08-21 02:50:45','2023-08-21 02:50:45','[vc_row full_width=\"stretch_row_content\"][vc_column width=\"1/3\"][vc_widget_sidebar sidebar_id=\"sidebar_1\"][/vc_column][vc_column width=\"2/3\"][/vc_column][/vc_row]','Products','','inherit','closed','closed','','2655-revision-v1','','','2023-08-21 02:50:45','2023-08-21 02:50:45','',2655,'https://farmchemie.yasithawd.com/?p=3299',0,'revision','',0),(3301,1,'2023-08-21 09:39:30','2023-08-21 09:39:30','[vc_row full_width=\"stretch_row_content_no_spaces\"][vc_column][vc_gmaps link=\"#E-8_JTNDaWZyYW1lJTIwc3JjJTNEJTIyaHR0cHMlM0ElMkYlMkZ3d3cuZ29vZ2xlLmNvbSUyRm1hcHMlMkZlbWJlZCUzRnBiJTNEJTIxMW0xOCUyMTFtMTIlMjExbTMlMjExZDM5NjEuNDkyNzAyNjUzODQyJTIxMmQ4MC4wMDU1NTMyNTA5NzkzNiUyMTNkNi44MzEzNzM2MjEzNzcxMSUyMTJtMyUyMTFmMCUyMTJmMCUyMTNmMCUyMTNtMiUyMTFpMTAyNCUyMTJpNzY4JTIxNGYxMy4xJTIxM20zJTIxMW0yJTIxMXMweDNhZTI1MWY2M2RlZjc3NGYlMjUzQTB4OTI5MjYyZGQ3OGNmZjViZSUyMTJzRmFybWNoZW1pZSUyNTIwJTI4UHJpdmF0ZSUyOSUyNTIwTGltaXRlZCUyMTVlMCUyMTNtMiUyMTFzZW4lMjEyc2xrJTIxNHYxNjY4NzQ0NzQ2NDk0JTIxNW0yJTIxMXNlbiUyMTJzbGslMjIlMjB3aWR0aCUzRCUyMjE5MjAlMjIlMjBoZWlnaHQlM0QlMjI1MDAlMjIlMjBzdHlsZSUzRCUyMmJvcmRlciUzQTAlM0IlMjIlMjBhbGxvd2Z1bGxzY3JlZW4lM0QlMjIlMjIlMjBsb2FkaW5nJTNEJTIybGF6eSUyMiUyMHJlZmVycmVycG9saWN5JTNEJTIybm8tcmVmZXJyZXItd2hlbi1kb3duZ3JhZGUlMjIlM0UlM0MlMkZpZnJhbWUlM0U=\"][/vc_column][/vc_row][vc_row][vc_column][ultimate_heading main_heading=\"Contact Us\" alignment=\"left\" main_heading_margin=\"margin-bottom:35px;\"][/ultimate_heading][vc_row_inner][vc_column_inner width=\"1/2\"][contact-form-7 id=\"12\"][/vc_column_inner][vc_column_inner width=\"1/2\"][bsf-info-box icon=\"icomoon-the7-font-the7-phone-04\" icon_size=\"32\" icon_color=\"#059444\" title=\"Phone\"]<strong>+94 (0) 11 298 3922</strong>[/bsf-info-box][bsf-info-box icon=\"icomoon-the7-font-the7-mail-01\" icon_size=\"32\" icon_color=\"#059444\" title=\"Email Address\"]info@farmchemie.com[/bsf-info-box][bsf-info-box icon=\"icomoon-the7-font-the7-map-02\" icon_size=\"32\" icon_color=\"#059444\" title=\"Address\"]No. 78, Industrial Zone, Katuwana, Homagama[/bsf-info-box][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row]','Contact Us','','inherit','closed','closed','','2622-revision-v1','','','2023-08-21 09:39:30','2023-08-21 09:39:30','',2622,'https://farmchemie.yasithawd.com/?p=3301',0,'revision','',0),(3303,1,'2023-08-21 09:44:46','2023-08-21 09:44:46','<p>[vc_row full_width=\"stretch_row_content\"][vc_column][vc_widget_sidebar sidebar_id=\"sidebar_1\"][/vc_column][/vc_row]</p>\r\n','Products','','inherit','closed','closed','','2655-revision-v1','','','2023-08-21 09:44:46','2023-08-21 09:44:46','',2655,'https://farmchemie.yasithawd.com/?p=3303',0,'revision','',0),(3302,1,'2023-08-21 09:44:29','2023-08-21 09:44:29','[vc_row full_width=\"stretch_row_content\"][vc_column width=\"1/3\"][/vc_column][vc_column width=\"1/3\"][vc_widget_sidebar sidebar_id=\"sidebar_1\"][/vc_column][vc_column width=\"1/3\"][/vc_column][/vc_row]','Products','','inherit','closed','closed','','2655-revision-v1','','','2023-08-21 09:44:29','2023-08-21 09:44:29','',2655,'https://farmchemie.yasithawd.com/?p=3302',0,'revision','',0),(3348,1,'2023-08-26 07:59:15','2023-08-26 07:59:15','','Products','','inherit','closed','closed','','2655-revision-v1','','','2023-08-26 07:59:15','2023-08-26 07:59:15','',2655,'https://farmchemie.yasithawd.com/?p=3348',0,'revision','',0),(3304,1,'2023-08-21 09:45:20','2023-08-21 09:45:20','[vc_row full_width=\"stretch_row_content\"][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_widget_sidebar sidebar_id=\"sidebar_1\"][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row]','Products','','inherit','closed','closed','','2655-revision-v1','','','2023-08-21 09:45:20','2023-08-21 09:45:20','',2655,'https://farmchemie.yasithawd.com/?p=3304',0,'revision','',0),(3689,1,'2023-09-14 13:34:00','2023-09-14 13:34:00','','Canny Flexi Join','','inherit','closed','closed','','2454-revision-v1','','','2023-09-14 13:34:00','2023-09-14 13:34:00','',2454,'https://farmchemie.yasithawd.com/?p=3689',0,'revision','',0),(3500,1,'2023-09-11 08:44:02','2023-09-11 08:44:02','[vc_gitem c_zone_position=\"bottom\"][vc_gitem_animated_block][vc_gitem_zone_a link=\"post_link\" featured_image=\"yes\"][vc_gitem_row position=\"top\"][vc_gitem_col][/vc_gitem_col][/vc_gitem_row][vc_gitem_row position=\"middle\"][vc_gitem_col width=\"1/2\"][/vc_gitem_col][vc_gitem_col width=\"1/2\"][/vc_gitem_col][/vc_gitem_row][vc_gitem_row position=\"bottom\"][vc_gitem_col][/vc_gitem_col][/vc_gitem_row][/vc_gitem_zone_a][vc_gitem_zone_b][vc_gitem_row position=\"top\"][vc_gitem_col][/vc_gitem_col][/vc_gitem_row][vc_gitem_row position=\"middle\"][vc_gitem_col width=\"1/2\"][/vc_gitem_col][vc_gitem_col width=\"1/2\"][/vc_gitem_col][/vc_gitem_row][vc_gitem_row position=\"bottom\"][vc_gitem_col][/vc_gitem_col][/vc_gitem_row][/vc_gitem_zone_b][/vc_gitem_animated_block][vc_gitem_zone_c css=\".vc_custom_1419240516480{background-color: #f9f9f9 !important;}\"][vc_gitem_row][vc_gitem_col][vc_gitem_post_title font_container=\"tag:h4|text_align:left\"][vc_gitem_post_excerpt font_container=\"tag:p|text_align:left\"][vc_btn link=\"post_link\" title=\"Read more\" style=\"custom\" custom_background=\"#089548\" custom_text=\"#ffffff\" align=\"left\"][/vc_gitem_col][/vc_gitem_row][/vc_gitem_zone_c][/vc_gitem]','','','publish','closed','closed','','3500','','','2023-09-11 08:44:02','2023-09-11 08:44:02','',0,'https://farmchemie.yasithawd.com/?post_type=vc_grid_item&#038;p=3500',0,'vc_grid_item','',0),(3308,1,'2023-08-22 07:41:22','2023-08-22 07:41:22','','ABOUT US','','inherit','open','closed','','about-us-4','','','2023-08-22 07:41:22','2023-08-22 07:41:22','',2917,'https://farmchemie.yasithawd.com/wp-content/uploads/2023/08/ABOUT-US.gif',0,'attachment','image/gif',0),(3355,1,'2023-08-27 09:56:17','2023-08-27 09:56:17','','AVI POLLODOXIN','<h3><em>Doxycycline 10% Oral Solution </em></h3>\r\n[dt_divider style=\"thick\" /]\r\n\r\n&nbsp;\r\n\r\n<strong>Composition: </strong>\r\n\r\nEach 1 mL contains,\r\nDxycycline hyclate – 100 mg\r\n\r\n[dt_divider style=\"thin\" /]\r\n\r\n<strong>Indication: </strong>\r\n\r\nTreatment of Colibacillosis, CRD and Mycoplasmosis caused by germs sensitive to doxycycline\r\n\r\n[dt_divider style=\"thin\" /]\r\n\r\n<strong>Contraindication:</strong>\r\n\r\nDo not administer in animal with known sensitivity to tetracyclines.\r\nDo not administer in animals with hepatic disturbances.\r\n\r\n[dt_divider style=\"thin\" /]\r\n\r\n<strong>Dosage: </strong>\r\n\r\n1 mL of Pollodoxin per Litre of Drinking water for 3 to 5 days\r\nOral route in Drinking water\r\n\r\n[dt_divider style=\"thin\" /]\r\n\r\n<strong>Pack sizes: </strong>\r\n\r\n10 mL\r\n\r\n&nbsp;\r\n\r\n[dt_divider style=\"thick\" /]\r\n\r\n&nbsp;\r\n\r\n<a href=\"/wp-content/uploads/2023/08/AVI-VE.pdf\"><i class=\"fa-solid fa-file-pdf fa-2xl\" style=\"color: #039447;\"> pdf</i></a> <a href=\"//wp-content/uploads/2023/08/AVI-3-folding-brochure-SInhala-Final-outline_compressed-4.pdf\"><i class=\"fa-solid fa-file-pdf fa-2xl\" style=\"color: #039447;\"> pdf</i></a>','publish','closed','closed','','avi-pollodoxin','','','2023-09-16 10:10:06','2023-09-16 10:10:06','',0,'https://farmchemie.yasithawd.com/?post_type=product&#038;p=3355',0,'product','',0),(3353,1,'2023-08-27 09:23:31','2023-08-27 09:23:31','','AVI-Ganadexil_logo','','inherit','open','closed','','avi-ganadexil_logo-2','','','2023-08-27 09:23:31','2023-08-27 09:23:31','',3352,'https://farmchemie.yasithawd.com/wp-content/uploads/2023/08/AVI-Ganadexil_logo.png',0,'attachment','image/png',0),(3394,1,'2023-09-01 07:48:37','2023-09-01 07:48:37','[vc_row full_width=\"stretch_row\" css=\".vc_custom_1689577528817{padding-bottom: 50px !important;}\"][vc_column css=\".vc_custom_1689577454678{margin-bottom: 50px !important;}\"][vc_row_inner css=\".vc_custom_1692407941633{border-bottom-width: 1px !important;border-bottom-color: #079547 !important;border-bottom-style: solid !important;border-radius: 1px !important;}\"][vc_column_inner width=\"1/2\"][ult_animation_block animation=\"fadeInLeftBig\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][ultimate_heading main_heading=\"Feed Additives\" heading_tag=\"h3\" main_heading_color=\"#079547\" sub_heading_color=\"#792c8a\" alignment=\"right\"]<strong>Premixes/ Specialty Feed Additives/ Dilution of Active Ingredients/ Concentrates</strong><strong>\r\n</strong>Pack sizes – 1,000 kg, 500 kg, 50 kg, 25 kg, 15 kg, 10 kg, 5 kg, 1kg[/ultimate_heading][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_single_image image=\"3129\" img_size=\"full\" css_animation=\"fadeInRightBig\"][/vc_column_inner][/vc_row_inner][vc_row_inner css=\".vc_custom_1692407949383{border-bottom-width: 1px !important;border-bottom-color: #079547 !important;border-bottom-style: solid !important;border-radius: 1px !important;}\"][vc_column_inner width=\"1/2\"][vc_single_image image=\"3162\" img_size=\"full\" css_animation=\"fadeInLeftBig\"][/vc_column_inner][vc_column_inner width=\"1/2\"][ult_animation_block animation=\"fadeInRightBig\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][ultimate_heading main_heading=\"Oral Supplements\" heading_tag=\"h3\" main_heading_color=\"#079547\" sub_heading_color=\"#792c8a\" alignment=\"left\"]<strong>Liquids</strong><strong>\r\n</strong>Pack sizes – 1,000 L, 250 L, 50 L, 25 L, 5 L, 1 L, 500 mL, 250 mL, 100 mL, 50 mL\r\n\r\n<strong>Water soluble powders</strong><strong>\r\n</strong>Pack sizes – 25 kg, 15 kg, 10 kg, 5 kg, 1kg[/ultimate_heading][/ult_animation_block][/vc_column_inner][/vc_row_inner][vc_row_inner css=\".vc_custom_1692407957943{border-bottom-width: 1px !important;border-bottom-color: #079547 !important;border-bottom-style: solid !important;border-radius: 1px !important;}\"][vc_column_inner width=\"1/2\"][ult_animation_block animation=\"fadeInLeftBig\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][ultimate_heading main_heading=\"Tablets\" heading_tag=\"h3\" main_heading_color=\"#079547\" sub_heading_color=\"#792c8a\" alignment=\"right\"]<strong>Supplementary tablets for pet care</strong>\r\nTablet sizes – 1 to 5 g\r\n\r\n<strong>Boluses</strong><strong>\r\n</strong>Tablet sizes – 5 to 25 g[/ultimate_heading][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_single_image image=\"3163\" img_size=\"full\" css_animation=\"fadeInRightBig\"][/vc_column_inner][/vc_row_inner][vc_row_inner css=\".vc_custom_1692407970279{border-bottom-width: 1px !important;border-bottom-color: #079547 !important;border-bottom-style: solid !important;border-radius: 1px !important;}\"][vc_column_inner width=\"1/2\"][vc_single_image image=\"3164\" img_size=\"full\" css_animation=\"fadeInLeftBig\"][/vc_column_inner][vc_column_inner width=\"1/2\"][ult_animation_block animation=\"fadeInRightBig\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][ultimate_heading main_heading=\"Veterinary Pharmaceuticals\" heading_tag=\"h3\" main_heading_color=\"#079547\" sub_heading_color=\"#792c8a\" alignment=\"left\"]<strong>Deworming Solutions/ Antibiotics/ Antimicrobials/ Wound care solutions</strong><strong>\r\n</strong>Form – Liquid, WSP[/ultimate_heading][/ult_animation_block][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row full_width=\"stretch_row_content\" css=\".vc_custom_1693451731079{padding-top: 50px !important;padding-bottom: 50px !important;}\"][vc_column][ultimate_heading main_heading=\"Our manufacturing facility is certified with FAMI-QS, WHO GMP &amp; ISO 9001:2015 International Quality standards.\" main_heading_color=\"#079547\" sub_heading_color=\"#792c8a\"]We select only the <strong><em>best</em></strong> and <strong><em>most reputed</em></strong> Raw Material &amp; Packing Material Suppliers for the production of our finished goods.[/ultimate_heading][vc_row_inner equal_height=\"yes\" content_placement=\"middle\"][vc_column_inner width=\"1/5\" offset=\"vc_hidden-lg vc_hidden-md\"][vc_single_image image=\"3062\" img_size=\"full\" alignment=\"center\"][/vc_column_inner][vc_column_inner width=\"1/5\" css=\".vc_custom_1691846530645{border-right-width: 1px !important;border-left-width: 1px !important;border-left-color: #000000 !important;border-left-style: solid !important;border-right-color: #000000 !important;border-right-style: solid !important;border-radius: 1px !important;}\" offset=\"vc_hidden-lg vc_hidden-md\"][vc_single_image image=\"3063\" img_size=\"full\" alignment=\"center\"][/vc_column_inner][vc_column_inner width=\"1/5\" offset=\"vc_hidden-lg vc_hidden-md\"][vc_single_image image=\"3064\" img_size=\"full\" alignment=\"center\"][/vc_column_inner][vc_column_inner width=\"1/5\" css=\".vc_custom_1691846545469{border-right-width: 1px !important;border-left-width: 1px !important;border-left-color: #000000 !important;border-left-style: solid !important;border-right-color: #000000 !important;border-right-style: solid !important;border-radius: 1px !important;}\" offset=\"vc_hidden-lg vc_hidden-md\"][vc_single_image image=\"3065\" img_size=\"full\" alignment=\"center\"][/vc_column_inner][vc_column_inner width=\"1/5\" offset=\"vc_hidden-lg vc_hidden-md\"][vc_single_image image=\"3066\" img_size=\"full\" alignment=\"center\"][/vc_column_inner][/vc_row_inner][vc_row_inner equal_height=\"yes\" content_placement=\"middle\"][vc_column_inner width=\"1/4\" css=\".vc_custom_1691846563021{border-right-width: 1px !important;border-right-color: #000000 !important;border-right-style: solid !important;border-radius: 1px !important;}\" offset=\"vc_hidden-lg vc_hidden-md\"][vc_single_image image=\"3067\" img_size=\"full\" alignment=\"center\"][/vc_column_inner][vc_column_inner width=\"1/4\" css=\".vc_custom_1691846569845{border-right-width: 1px !important;border-right-color: #000000 !important;border-right-style: solid !important;border-radius: 1px !important;}\" offset=\"vc_hidden-lg vc_hidden-md\"][vc_single_image image=\"3068\" img_size=\"full\" alignment=\"center\"][/vc_column_inner][vc_column_inner width=\"1/4\" css=\".vc_custom_1691846576949{border-right-width: 1px !important;border-right-color: #000000 !important;border-right-style: solid !important;border-radius: 1px !important;}\" offset=\"vc_hidden-lg vc_hidden-md\"][vc_single_image image=\"3069\" img_size=\"full\" alignment=\"center\"][/vc_column_inner][vc_column_inner width=\"1/4\" offset=\"vc_hidden-lg vc_hidden-md\"][vc_single_image image=\"3070\" img_size=\"full\" alignment=\"center\"][/vc_column_inner][/vc_row_inner][vc_row_inner disable_element=\"yes\"][vc_column_inner width=\"1/3\"][vc_single_image image=\"2981\" img_size=\"full\"][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_single_image image=\"2982\" img_size=\"full\"][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_single_image image=\"2983\" img_size=\"full\"][/vc_column_inner][/vc_row_inner][vc_row_inner disable_element=\"yes\"][vc_column_inner width=\"1/6\"][/vc_column_inner][vc_column_inner width=\"2/3\"][vc_single_image image=\"2984\" img_size=\"full\"][/vc_column_inner][vc_column_inner width=\"1/6\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row full_width=\"stretch_row_content_no_spaces\"][vc_column offset=\"vc_hidden-sm vc_hidden-xs\"][vc_single_image image=\"3120\" img_size=\"full\" alignment=\"center\"][/vc_column][/vc_row][vc_row css=\".vc_custom_1689578794814{padding-top: 50px !important;padding-bottom: 50px !important;}\"][vc_column][ultimate_heading main_heading=\"Supplier selection and procurement criteria\" main_heading_color=\"#079547\" sub_heading_color=\"#792c8a\" alignment=\"left\"][/ultimate_heading][vc_row_inner css=\".vc_custom_1689578812611{margin-top: 50px !important;}\"][vc_column_inner width=\"1/2\"][dt_vc_list dividers=\"false\"]\r\n<ul>\r\n 	<li>Check supplier’s quality certification to ensure raw material quality</li>\r\n 	<li>New vendor validation protocol - In case of a change in the supplier, obtain samples and validate in the lab</li>\r\n</ul>\r\n[/dt_vc_list][/vc_column_inner][vc_column_inner width=\"1/2\"][dt_vc_list dividers=\"false\"]\r\n<ul>\r\n 	<li>Income inspection carried out on every consignment (Tested for Chemical Assay &amp; Physical Properties)</li>\r\n 	<li>Quality department approval required to be used in the production</li>\r\n</ul>\r\n[/dt_vc_list][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row css=\".vc_custom_1689578794814{padding-top: 50px !important;padding-bottom: 50px !important;}\"][vc_column][ultimate_heading main_heading=\"Please contact us to start your Marketing Journey with a reliable manufacturing partnership with FARMCHEMIE\" heading_tag=\"h3\" main_heading_color=\"#079547\" sub_heading_color=\"#792c8a\" alignment=\"left\"][/ultimate_heading][/vc_column][/vc_row][vc_row full_width=\"stretch_row_content\" equal_height=\"yes\" content_placement=\"middle\"][vc_column width=\"1/2\" css=\".vc_custom_1693540291208{background-image: url(https://farmchemie.yasithawd.com/wp-content/uploads/2023/09/02International-Markets-Sri-Lankan-Market.png?id=3379) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\"][vc_empty_space height=\"400px\"][/vc_column][vc_column width=\"1/2\" css=\".vc_custom_1693540250450{background-color: #8d499b !important;}\"][ultimate_heading main_heading=\"Sri Lankan Markets\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" margin_design_tab_text=\"\" main_heading_margin=\"margin-bottom:35px;\" sub_heading_margin=\"margin-bottom:10px;\"]Email : <a href=\"mailto:sales.import@farmchemie.com\">sales.import@farmchemie.com</a>\r\nTel No : + 94 76 577 2975[/ultimate_heading][vc_btn title=\"Read More\" style=\"outline-custom\" outline_custom_color=\"#ffffff\" outline_custom_hover_background=\"#039447\" outline_custom_hover_text=\"#ffffff\" shape=\"round\" align=\"center\"][/vc_column][/vc_row][vc_row full_width=\"stretch_row_content\" equal_height=\"yes\" content_placement=\"middle\"][vc_column width=\"1/2\" css=\".vc_custom_1693540116474{background-color: #039447 !important;}\"][ultimate_heading main_heading=\"International Markets\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" margin_design_tab_text=\"\" el_class=\"whitetxt\" main_heading_margin=\"margin-bottom:35px;\" sub_heading_margin=\"margin-bottom:10px;\"]Email : <a href=\"mailto:sales.export@farmchemie.com\">sales.export@farmchemie.com</a>\r\nTel No : + 94 76 577 2975[/ultimate_heading][vc_btn title=\"Read More\" style=\"outline-custom\" outline_custom_color=\"#ffffff\" outline_custom_hover_background=\"#8d499b\" outline_custom_hover_text=\"#ffffff\" shape=\"round\" align=\"center\"][/vc_column][vc_column width=\"1/2\" css=\".vc_custom_1693540312642{background-image: url(https://farmchemie.yasithawd.com/wp-content/uploads/2023/09/01International-Markets-Sri-Lankan-Market.png?id=3378) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\"][vc_empty_space height=\"400px\"][/vc_column][/vc_row]','Manufacturing','','inherit','closed','closed','','2964-revision-v1','','','2023-09-01 07:48:37','2023-09-01 07:48:37','',2964,'https://farmchemie.yasithawd.com/?p=3394',0,'revision','',0),(3395,1,'2023-09-01 07:49:35','2023-09-01 07:49:35','[vc_row full_width=\"stretch_row\" css=\".vc_custom_1689577528817{padding-bottom: 50px !important;}\"][vc_column css=\".vc_custom_1689577454678{margin-bottom: 50px !important;}\"][vc_row_inner css=\".vc_custom_1692407941633{border-bottom-width: 1px !important;border-bottom-color: #079547 !important;border-bottom-style: solid !important;border-radius: 1px !important;}\"][vc_column_inner width=\"1/2\"][ult_animation_block animation=\"fadeInLeftBig\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][ultimate_heading main_heading=\"Feed Additives\" heading_tag=\"h3\" main_heading_color=\"#079547\" sub_heading_color=\"#792c8a\" alignment=\"right\"]<strong>Premixes/ Specialty Feed Additives/ Dilution of Active Ingredients/ Concentrates</strong><strong>\r\n</strong>Pack sizes – 1,000 kg, 500 kg, 50 kg, 25 kg, 15 kg, 10 kg, 5 kg, 1kg[/ultimate_heading][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_single_image image=\"3129\" img_size=\"full\" css_animation=\"fadeInRightBig\"][/vc_column_inner][/vc_row_inner][vc_row_inner css=\".vc_custom_1692407949383{border-bottom-width: 1px !important;border-bottom-color: #079547 !important;border-bottom-style: solid !important;border-radius: 1px !important;}\"][vc_column_inner width=\"1/2\"][vc_single_image image=\"3162\" img_size=\"full\" css_animation=\"fadeInLeftBig\"][/vc_column_inner][vc_column_inner width=\"1/2\"][ult_animation_block animation=\"fadeInRightBig\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][ultimate_heading main_heading=\"Oral Supplements\" heading_tag=\"h3\" main_heading_color=\"#079547\" sub_heading_color=\"#792c8a\" alignment=\"left\"]<strong>Liquids</strong><strong>\r\n</strong>Pack sizes – 1,000 L, 250 L, 50 L, 25 L, 5 L, 1 L, 500 mL, 250 mL, 100 mL, 50 mL\r\n\r\n<strong>Water soluble powders</strong><strong>\r\n</strong>Pack sizes – 25 kg, 15 kg, 10 kg, 5 kg, 1kg[/ultimate_heading][/ult_animation_block][/vc_column_inner][/vc_row_inner][vc_row_inner css=\".vc_custom_1692407957943{border-bottom-width: 1px !important;border-bottom-color: #079547 !important;border-bottom-style: solid !important;border-radius: 1px !important;}\"][vc_column_inner width=\"1/2\"][ult_animation_block animation=\"fadeInLeftBig\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][ultimate_heading main_heading=\"Tablets\" heading_tag=\"h3\" main_heading_color=\"#079547\" sub_heading_color=\"#792c8a\" alignment=\"right\"]<strong>Supplementary tablets for pet care</strong>\r\nTablet sizes – 1 to 5 g\r\n\r\n<strong>Boluses</strong><strong>\r\n</strong>Tablet sizes – 5 to 25 g[/ultimate_heading][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_single_image image=\"3163\" img_size=\"full\" css_animation=\"fadeInRightBig\"][/vc_column_inner][/vc_row_inner][vc_row_inner css=\".vc_custom_1692407970279{border-bottom-width: 1px !important;border-bottom-color: #079547 !important;border-bottom-style: solid !important;border-radius: 1px !important;}\"][vc_column_inner width=\"1/2\"][vc_single_image image=\"3164\" img_size=\"full\" css_animation=\"fadeInLeftBig\"][/vc_column_inner][vc_column_inner width=\"1/2\"][ult_animation_block animation=\"fadeInRightBig\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][ultimate_heading main_heading=\"Veterinary Pharmaceuticals\" heading_tag=\"h3\" main_heading_color=\"#079547\" sub_heading_color=\"#792c8a\" alignment=\"left\"]<strong>Deworming Solutions/ Antibiotics/ Antimicrobials/ Wound care solutions</strong><strong>\r\n</strong>Form – Liquid, WSP[/ultimate_heading][/ult_animation_block][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row full_width=\"stretch_row_content\" css=\".vc_custom_1693451731079{padding-top: 50px !important;padding-bottom: 50px !important;}\"][vc_column][ultimate_heading main_heading=\"Our manufacturing facility is certified with FAMI-QS, WHO GMP &amp; ISO 9001:2015 International Quality standards.\" main_heading_color=\"#079547\" sub_heading_color=\"#792c8a\"]We select only the <strong><em>best</em></strong> and <strong><em>most reputed</em></strong> Raw Material &amp; Packing Material Suppliers for the production of our finished goods.[/ultimate_heading][vc_row_inner equal_height=\"yes\" content_placement=\"middle\"][vc_column_inner width=\"1/5\" offset=\"vc_hidden-lg vc_hidden-md\"][vc_single_image image=\"3062\" img_size=\"full\" alignment=\"center\"][/vc_column_inner][vc_column_inner width=\"1/5\" css=\".vc_custom_1691846530645{border-right-width: 1px !important;border-left-width: 1px !important;border-left-color: #000000 !important;border-left-style: solid !important;border-right-color: #000000 !important;border-right-style: solid !important;border-radius: 1px !important;}\" offset=\"vc_hidden-lg vc_hidden-md\"][vc_single_image image=\"3063\" img_size=\"full\" alignment=\"center\"][/vc_column_inner][vc_column_inner width=\"1/5\" offset=\"vc_hidden-lg vc_hidden-md\"][vc_single_image image=\"3064\" img_size=\"full\" alignment=\"center\"][/vc_column_inner][vc_column_inner width=\"1/5\" css=\".vc_custom_1691846545469{border-right-width: 1px !important;border-left-width: 1px !important;border-left-color: #000000 !important;border-left-style: solid !important;border-right-color: #000000 !important;border-right-style: solid !important;border-radius: 1px !important;}\" offset=\"vc_hidden-lg vc_hidden-md\"][vc_single_image image=\"3065\" img_size=\"full\" alignment=\"center\"][/vc_column_inner][vc_column_inner width=\"1/5\" offset=\"vc_hidden-lg vc_hidden-md\"][vc_single_image image=\"3066\" img_size=\"full\" alignment=\"center\"][/vc_column_inner][/vc_row_inner][vc_row_inner equal_height=\"yes\" content_placement=\"middle\"][vc_column_inner width=\"1/4\" css=\".vc_custom_1691846563021{border-right-width: 1px !important;border-right-color: #000000 !important;border-right-style: solid !important;border-radius: 1px !important;}\" offset=\"vc_hidden-lg vc_hidden-md\"][vc_single_image image=\"3067\" img_size=\"full\" alignment=\"center\"][/vc_column_inner][vc_column_inner width=\"1/4\" css=\".vc_custom_1691846569845{border-right-width: 1px !important;border-right-color: #000000 !important;border-right-style: solid !important;border-radius: 1px !important;}\" offset=\"vc_hidden-lg vc_hidden-md\"][vc_single_image image=\"3068\" img_size=\"full\" alignment=\"center\"][/vc_column_inner][vc_column_inner width=\"1/4\" css=\".vc_custom_1691846576949{border-right-width: 1px !important;border-right-color: #000000 !important;border-right-style: solid !important;border-radius: 1px !important;}\" offset=\"vc_hidden-lg vc_hidden-md\"][vc_single_image image=\"3069\" img_size=\"full\" alignment=\"center\"][/vc_column_inner][vc_column_inner width=\"1/4\" offset=\"vc_hidden-lg vc_hidden-md\"][vc_single_image image=\"3070\" img_size=\"full\" alignment=\"center\"][/vc_column_inner][/vc_row_inner][vc_row_inner disable_element=\"yes\"][vc_column_inner width=\"1/3\"][vc_single_image image=\"2981\" img_size=\"full\"][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_single_image image=\"2982\" img_size=\"full\"][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_single_image image=\"2983\" img_size=\"full\"][/vc_column_inner][/vc_row_inner][vc_row_inner disable_element=\"yes\"][vc_column_inner width=\"1/6\"][/vc_column_inner][vc_column_inner width=\"2/3\"][vc_single_image image=\"2984\" img_size=\"full\"][/vc_column_inner][vc_column_inner width=\"1/6\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row full_width=\"stretch_row_content_no_spaces\"][vc_column offset=\"vc_hidden-sm vc_hidden-xs\"][vc_single_image image=\"3120\" img_size=\"full\" alignment=\"center\"][/vc_column][/vc_row][vc_row css=\".vc_custom_1689578794814{padding-top: 50px !important;padding-bottom: 50px !important;}\"][vc_column][ultimate_heading main_heading=\"Supplier selection and procurement criteria\" main_heading_color=\"#079547\" sub_heading_color=\"#792c8a\" alignment=\"left\"][/ultimate_heading][vc_row_inner css=\".vc_custom_1689578812611{margin-top: 50px !important;}\"][vc_column_inner width=\"1/2\"][dt_vc_list dividers=\"false\"]\r\n<ul>\r\n 	<li>Check supplier’s quality certification to ensure raw material quality</li>\r\n 	<li>New vendor validation protocol - In case of a change in the supplier, obtain samples and validate in the lab</li>\r\n</ul>\r\n[/dt_vc_list][/vc_column_inner][vc_column_inner width=\"1/2\"][dt_vc_list dividers=\"false\"]\r\n<ul>\r\n 	<li>Income inspection carried out on every consignment (Tested for Chemical Assay &amp; Physical Properties)</li>\r\n 	<li>Quality department approval required to be used in the production</li>\r\n</ul>\r\n[/dt_vc_list][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row css=\".vc_custom_1689578794814{padding-top: 50px !important;padding-bottom: 50px !important;}\"][vc_column][ultimate_heading main_heading=\"Please contact us to start your Marketing Journey with a reliable manufacturing partnership with FARMCHEMIE\" heading_tag=\"h3\" main_heading_color=\"#079547\" sub_heading_color=\"#792c8a\" alignment=\"left\"][/ultimate_heading][/vc_column][/vc_row][vc_row full_width=\"stretch_row_content\" equal_height=\"yes\" content_placement=\"middle\"][vc_column width=\"1/2\" css=\".vc_custom_1693540291208{background-image: url(https://farmchemie.yasithawd.com/wp-content/uploads/2023/09/02International-Markets-Sri-Lankan-Market.png?id=3379) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\"][vc_empty_space height=\"400px\"][/vc_column][vc_column width=\"1/2\" css=\".vc_custom_1693540250450{background-color: #8d499b !important;}\"][ultimate_heading main_heading=\"Sri Lankan Markets\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" main_heading_margin=\"margin-bottom:35px;\" sub_heading_margin=\"margin-bottom:10px;\"]Email : <a href=\"mailto:sales.import@farmchemie.com\">sales.import@farmchemie.com</a>\r\nTel No : + 94 76 577 2975[/ultimate_heading][vc_btn title=\"Read More\" style=\"outline-custom\" outline_custom_color=\"#ffffff\" outline_custom_hover_background=\"#039447\" outline_custom_hover_text=\"#ffffff\" shape=\"round\" align=\"center\"][/vc_column][/vc_row][vc_row full_width=\"stretch_row_content\" equal_height=\"yes\" rtl_reverse=\"yes\" content_placement=\"middle\"][vc_column width=\"1/2\" css=\".vc_custom_1693540116474{background-color: #039447 !important;}\"][ultimate_heading main_heading=\"International Markets\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" el_class=\"whitetxt\" main_heading_margin=\"margin-bottom:35px;\" sub_heading_margin=\"margin-bottom:10px;\"]Email : <a href=\"mailto:sales.export@farmchemie.com\">sales.export@farmchemie.com</a>\r\nTel No : + 94 76 577 2975[/ultimate_heading][vc_btn title=\"Read More\" style=\"outline-custom\" outline_custom_color=\"#ffffff\" outline_custom_hover_background=\"#8d499b\" outline_custom_hover_text=\"#ffffff\" shape=\"round\" align=\"center\"][/vc_column][vc_column width=\"1/2\" css=\".vc_custom_1693540312642{background-image: url(https://farmchemie.yasithawd.com/wp-content/uploads/2023/09/01International-Markets-Sri-Lankan-Market.png?id=3378) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\"][vc_empty_space height=\"400px\"][/vc_column][/vc_row]','Manufacturing','','inherit','closed','closed','','2964-revision-v1','','','2023-09-01 07:49:35','2023-09-01 07:49:35','',2964,'https://farmchemie.yasithawd.com/?p=3395',0,'revision','',0),(3397,1,'2023-09-01 09:10:08','2023-09-01 09:10:08','','WhatsApp Image 2023-09-01 at 2.36.27 PM (1)','','inherit','open','closed','','whatsapp-image-2023-09-01-at-2-36-27-pm-1','','','2023-09-01 09:10:08','2023-09-01 09:10:08','',2964,'https://farmchemie.yasithawd.com/wp-content/uploads/2023/09/WhatsApp-Image-2023-09-01-at-2.36.27-PM-1.jpeg',0,'attachment','image/jpeg',0),(3398,1,'2023-09-01 09:10:19','2023-09-01 09:10:19','[vc_row full_width=\"stretch_row\" css=\".vc_custom_1689577528817{padding-bottom: 50px !important;}\"][vc_column css=\".vc_custom_1689577454678{margin-bottom: 50px !important;}\"][vc_row_inner css=\".vc_custom_1692407941633{border-bottom-width: 1px !important;border-bottom-color: #079547 !important;border-bottom-style: solid !important;border-radius: 1px !important;}\"][vc_column_inner width=\"1/2\"][ult_animation_block animation=\"fadeInLeftBig\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][ultimate_heading main_heading=\"Feed Additives\" heading_tag=\"h3\" main_heading_color=\"#079547\" sub_heading_color=\"#792c8a\" alignment=\"right\"]<strong>Premixes/ Specialty Feed Additives/ Dilution of Active Ingredients/ Concentrates</strong><strong>\r\n</strong>Pack sizes – 1,000 kg, 500 kg, 50 kg, 25 kg, 15 kg, 10 kg, 5 kg, 1kg[/ultimate_heading][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_single_image image=\"3129\" img_size=\"full\" css_animation=\"fadeInRightBig\"][/vc_column_inner][/vc_row_inner][vc_row_inner css=\".vc_custom_1692407949383{border-bottom-width: 1px !important;border-bottom-color: #079547 !important;border-bottom-style: solid !important;border-radius: 1px !important;}\"][vc_column_inner width=\"1/2\"][vc_single_image image=\"3162\" img_size=\"full\" css_animation=\"fadeInLeftBig\"][/vc_column_inner][vc_column_inner width=\"1/2\"][ult_animation_block animation=\"fadeInRightBig\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][ultimate_heading main_heading=\"Oral Supplements\" heading_tag=\"h3\" main_heading_color=\"#079547\" sub_heading_color=\"#792c8a\" alignment=\"left\"]<strong>Liquids</strong><strong>\r\n</strong>Pack sizes – 1,000 L, 250 L, 50 L, 25 L, 5 L, 1 L, 500 mL, 250 mL, 100 mL, 50 mL\r\n\r\n<strong>Water soluble powders</strong><strong>\r\n</strong>Pack sizes – 25 kg, 15 kg, 10 kg, 5 kg, 1kg[/ultimate_heading][/ult_animation_block][/vc_column_inner][/vc_row_inner][vc_row_inner css=\".vc_custom_1692407957943{border-bottom-width: 1px !important;border-bottom-color: #079547 !important;border-bottom-style: solid !important;border-radius: 1px !important;}\"][vc_column_inner width=\"1/2\"][ult_animation_block animation=\"fadeInLeftBig\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][ultimate_heading main_heading=\"Tablets\" heading_tag=\"h3\" main_heading_color=\"#079547\" sub_heading_color=\"#792c8a\" alignment=\"right\"]<strong>Supplementary tablets for pet care</strong>\r\nTablet sizes – 1 to 5 g\r\n\r\n<strong>Boluses</strong><strong>\r\n</strong>Tablet sizes – 5 to 25 g[/ultimate_heading][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_single_image image=\"3397\" img_size=\"full\" css_animation=\"fadeInRightBig\"][/vc_column_inner][/vc_row_inner][vc_row_inner css=\".vc_custom_1692407970279{border-bottom-width: 1px !important;border-bottom-color: #079547 !important;border-bottom-style: solid !important;border-radius: 1px !important;}\"][vc_column_inner width=\"1/2\"][vc_single_image image=\"3396\" img_size=\"full\" css_animation=\"fadeInLeftBig\"][/vc_column_inner][vc_column_inner width=\"1/2\"][ult_animation_block animation=\"fadeInRightBig\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][ultimate_heading main_heading=\"Veterinary Pharmaceuticals\" heading_tag=\"h3\" main_heading_color=\"#079547\" sub_heading_color=\"#792c8a\" alignment=\"left\"]<strong>Deworming Solutions/ Antibiotics/ Antimicrobials/ Wound care solutions</strong><strong>\r\n</strong>Form – Liquid, WSP[/ultimate_heading][/ult_animation_block][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row full_width=\"stretch_row_content\" css=\".vc_custom_1693451731079{padding-top: 50px !important;padding-bottom: 50px !important;}\"][vc_column][ultimate_heading main_heading=\"Our manufacturing facility is certified with FAMI-QS, WHO GMP &amp; ISO 9001:2015 International Quality standards.\" main_heading_color=\"#079547\" sub_heading_color=\"#792c8a\"]We select only the <strong><em>best</em></strong> and <strong><em>most reputed</em></strong> Raw Material &amp; Packing Material Suppliers for the production of our finished goods.[/ultimate_heading][vc_row_inner equal_height=\"yes\" content_placement=\"middle\"][vc_column_inner width=\"1/5\" offset=\"vc_hidden-lg vc_hidden-md\"][vc_single_image image=\"3062\" img_size=\"full\" alignment=\"center\"][/vc_column_inner][vc_column_inner width=\"1/5\" css=\".vc_custom_1691846530645{border-right-width: 1px !important;border-left-width: 1px !important;border-left-color: #000000 !important;border-left-style: solid !important;border-right-color: #000000 !important;border-right-style: solid !important;border-radius: 1px !important;}\" offset=\"vc_hidden-lg vc_hidden-md\"][vc_single_image image=\"3063\" img_size=\"full\" alignment=\"center\"][/vc_column_inner][vc_column_inner width=\"1/5\" offset=\"vc_hidden-lg vc_hidden-md\"][vc_single_image image=\"3064\" img_size=\"full\" alignment=\"center\"][/vc_column_inner][vc_column_inner width=\"1/5\" css=\".vc_custom_1691846545469{border-right-width: 1px !important;border-left-width: 1px !important;border-left-color: #000000 !important;border-left-style: solid !important;border-right-color: #000000 !important;border-right-style: solid !important;border-radius: 1px !important;}\" offset=\"vc_hidden-lg vc_hidden-md\"][vc_single_image image=\"3065\" img_size=\"full\" alignment=\"center\"][/vc_column_inner][vc_column_inner width=\"1/5\" offset=\"vc_hidden-lg vc_hidden-md\"][vc_single_image image=\"3066\" img_size=\"full\" alignment=\"center\"][/vc_column_inner][/vc_row_inner][vc_row_inner equal_height=\"yes\" content_placement=\"middle\"][vc_column_inner width=\"1/4\" css=\".vc_custom_1691846563021{border-right-width: 1px !important;border-right-color: #000000 !important;border-right-style: solid !important;border-radius: 1px !important;}\" offset=\"vc_hidden-lg vc_hidden-md\"][vc_single_image image=\"3067\" img_size=\"full\" alignment=\"center\"][/vc_column_inner][vc_column_inner width=\"1/4\" css=\".vc_custom_1691846569845{border-right-width: 1px !important;border-right-color: #000000 !important;border-right-style: solid !important;border-radius: 1px !important;}\" offset=\"vc_hidden-lg vc_hidden-md\"][vc_single_image image=\"3068\" img_size=\"full\" alignment=\"center\"][/vc_column_inner][vc_column_inner width=\"1/4\" css=\".vc_custom_1691846576949{border-right-width: 1px !important;border-right-color: #000000 !important;border-right-style: solid !important;border-radius: 1px !important;}\" offset=\"vc_hidden-lg vc_hidden-md\"][vc_single_image image=\"3069\" img_size=\"full\" alignment=\"center\"][/vc_column_inner][vc_column_inner width=\"1/4\" offset=\"vc_hidden-lg vc_hidden-md\"][vc_single_image image=\"3070\" img_size=\"full\" alignment=\"center\"][/vc_column_inner][/vc_row_inner][vc_row_inner disable_element=\"yes\"][vc_column_inner width=\"1/3\"][vc_single_image image=\"2981\" img_size=\"full\"][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_single_image image=\"2982\" img_size=\"full\"][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_single_image image=\"2983\" img_size=\"full\"][/vc_column_inner][/vc_row_inner][vc_row_inner disable_element=\"yes\"][vc_column_inner width=\"1/6\"][/vc_column_inner][vc_column_inner width=\"2/3\"][vc_single_image image=\"2984\" img_size=\"full\"][/vc_column_inner][vc_column_inner width=\"1/6\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row full_width=\"stretch_row_content_no_spaces\"][vc_column offset=\"vc_hidden-sm vc_hidden-xs\"][vc_single_image image=\"3120\" img_size=\"full\" alignment=\"center\"][/vc_column][/vc_row][vc_row css=\".vc_custom_1689578794814{padding-top: 50px !important;padding-bottom: 50px !important;}\"][vc_column][ultimate_heading main_heading=\"Supplier selection and procurement criteria\" main_heading_color=\"#079547\" sub_heading_color=\"#792c8a\" alignment=\"left\"][/ultimate_heading][vc_row_inner css=\".vc_custom_1689578812611{margin-top: 50px !important;}\"][vc_column_inner width=\"1/2\"][dt_vc_list dividers=\"false\"]\r\n<ul>\r\n 	<li>Check supplier’s quality certification to ensure raw material quality</li>\r\n 	<li>New vendor validation protocol - In case of a change in the supplier, obtain samples and validate in the lab</li>\r\n</ul>\r\n[/dt_vc_list][/vc_column_inner][vc_column_inner width=\"1/2\"][dt_vc_list dividers=\"false\"]\r\n<ul>\r\n 	<li>Income inspection carried out on every consignment (Tested for Chemical Assay &amp; Physical Properties)</li>\r\n 	<li>Quality department approval required to be used in the production</li>\r\n</ul>\r\n[/dt_vc_list][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row css=\".vc_custom_1689578794814{padding-top: 50px !important;padding-bottom: 50px !important;}\"][vc_column][ultimate_heading main_heading=\"Please contact us to start your Marketing Journey with a reliable manufacturing partnership with FARMCHEMIE\" heading_tag=\"h3\" main_heading_color=\"#079547\" sub_heading_color=\"#792c8a\" alignment=\"left\"][/ultimate_heading][/vc_column][/vc_row][vc_row full_width=\"stretch_row_content\" equal_height=\"yes\" content_placement=\"middle\"][vc_column width=\"1/2\" css=\".vc_custom_1693540291208{background-image: url(https://farmchemie.yasithawd.com/wp-content/uploads/2023/09/02International-Markets-Sri-Lankan-Market.png?id=3379) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\"][vc_empty_space height=\"400px\"][/vc_column][vc_column width=\"1/2\" css=\".vc_custom_1693540250450{background-color: #8d499b !important;}\"][ultimate_heading main_heading=\"Sri Lankan Markets\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" main_heading_margin=\"margin-bottom:35px;\" sub_heading_margin=\"margin-bottom:10px;\"]Email : <a href=\"mailto:sales.import@farmchemie.com\">sales.import@farmchemie.com</a>\r\nTel No : + 94 76 577 2975[/ultimate_heading][vc_btn title=\"Read More\" style=\"outline-custom\" outline_custom_color=\"#ffffff\" outline_custom_hover_background=\"#039447\" outline_custom_hover_text=\"#ffffff\" shape=\"round\" align=\"center\"][/vc_column][/vc_row][vc_row full_width=\"stretch_row_content\" equal_height=\"yes\" rtl_reverse=\"yes\" content_placement=\"middle\"][vc_column width=\"1/2\" css=\".vc_custom_1693540116474{background-color: #039447 !important;}\"][ultimate_heading main_heading=\"International Markets\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" el_class=\"whitetxt\" main_heading_margin=\"margin-bottom:35px;\" sub_heading_margin=\"margin-bottom:10px;\"]Email : <a href=\"mailto:sales.export@farmchemie.com\">sales.export@farmchemie.com</a>\r\nTel No : + 94 76 577 2975[/ultimate_heading][vc_btn title=\"Read More\" style=\"outline-custom\" outline_custom_color=\"#ffffff\" outline_custom_hover_background=\"#8d499b\" outline_custom_hover_text=\"#ffffff\" shape=\"round\" align=\"center\"][/vc_column][vc_column width=\"1/2\" css=\".vc_custom_1693540312642{background-image: url(https://farmchemie.yasithawd.com/wp-content/uploads/2023/09/01International-Markets-Sri-Lankan-Market.png?id=3378) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\"][vc_empty_space height=\"400px\"][/vc_column][/vc_row]','Manufacturing','','inherit','closed','closed','','2964-revision-v1','','','2023-09-01 09:10:19','2023-09-01 09:10:19','',2964,'https://farmchemie.yasithawd.com/?p=3398',0,'revision','',0),(3399,1,'2023-09-01 10:04:45','2023-09-01 10:04:45','','Veterinary-Pharmaceuticals (1)','','inherit','open','closed','','veterinary-pharmaceuticals-1','','','2023-09-01 10:04:45','2023-09-01 10:04:45','',2964,'https://farmchemie.yasithawd.com/wp-content/uploads/2023/09/Veterinary-Pharmaceuticals-1.png',0,'attachment','image/png',0),(3400,1,'2023-09-01 10:05:30','2023-09-01 10:05:30','','Tablets (2)','','inherit','open','closed','','tablets-2','','','2023-09-01 10:05:30','2023-09-01 10:05:30','',2964,'https://farmchemie.yasithawd.com/wp-content/uploads/2023/09/Tablets-2.png',0,'attachment','image/png',0),(3401,1,'2023-09-01 10:06:21','2023-09-01 10:06:21','','Oral-Supplements (2)','','inherit','open','closed','','oral-supplements-2','','','2023-09-01 10:06:21','2023-09-01 10:06:21','',2964,'https://farmchemie.yasithawd.com/wp-content/uploads/2023/09/Oral-Supplements-2.png',0,'attachment','image/png',0),(3402,1,'2023-09-01 10:07:41','2023-09-01 10:07:41','[vc_row full_width=\"stretch_row\" css=\".vc_custom_1689577528817{padding-bottom: 50px !important;}\"][vc_column css=\".vc_custom_1689577454678{margin-bottom: 50px !important;}\"][vc_row_inner css=\".vc_custom_1692407941633{border-bottom-width: 1px !important;border-bottom-color: #079547 !important;border-bottom-style: solid !important;border-radius: 1px !important;}\"][vc_column_inner width=\"1/2\"][ult_animation_block animation=\"fadeInLeftBig\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][ultimate_heading main_heading=\"Feed Additives\" heading_tag=\"h3\" main_heading_color=\"#079547\" sub_heading_color=\"#792c8a\" alignment=\"right\"]<strong>Premixes/ Specialty Feed Additives/ Dilution of Active Ingredients/ Concentrates</strong><strong>\r\n</strong>Pack sizes – 1,000 kg, 500 kg, 50 kg, 25 kg, 15 kg, 10 kg, 5 kg, 1kg[/ultimate_heading][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_single_image image=\"3129\" img_size=\"full\" css_animation=\"fadeInRightBig\"][/vc_column_inner][/vc_row_inner][vc_row_inner css=\".vc_custom_1692407949383{border-bottom-width: 1px !important;border-bottom-color: #079547 !important;border-bottom-style: solid !important;border-radius: 1px !important;}\"][vc_column_inner width=\"1/2\"][vc_single_image image=\"3401\" img_size=\"full\" css_animation=\"fadeInLeftBig\"][/vc_column_inner][vc_column_inner width=\"1/2\"][ult_animation_block animation=\"fadeInRightBig\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][ultimate_heading main_heading=\"Oral Supplements\" heading_tag=\"h3\" main_heading_color=\"#079547\" sub_heading_color=\"#792c8a\" alignment=\"left\"]<strong>Liquids</strong><strong>\r\n</strong>Pack sizes – 1,000 L, 250 L, 50 L, 25 L, 5 L, 1 L, 500 mL, 250 mL, 100 mL, 50 mL\r\n\r\n<strong>Water soluble powders</strong><strong>\r\n</strong>Pack sizes – 25 kg, 15 kg, 10 kg, 5 kg, 1kg[/ultimate_heading][/ult_animation_block][/vc_column_inner][/vc_row_inner][vc_row_inner css=\".vc_custom_1692407957943{border-bottom-width: 1px !important;border-bottom-color: #079547 !important;border-bottom-style: solid !important;border-radius: 1px !important;}\"][vc_column_inner width=\"1/2\"][ult_animation_block animation=\"fadeInLeftBig\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][ultimate_heading main_heading=\"Tablets\" heading_tag=\"h3\" main_heading_color=\"#079547\" sub_heading_color=\"#792c8a\" alignment=\"right\"]<strong>Supplementary tablets for pet care</strong>\r\nTablet sizes – 1 to 5 g\r\n\r\n<strong>Boluses</strong><strong>\r\n</strong>Tablet sizes – 5 to 25 g[/ultimate_heading][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_single_image image=\"3400\" img_size=\"full\" css_animation=\"fadeInRightBig\"][/vc_column_inner][/vc_row_inner][vc_row_inner css=\".vc_custom_1692407970279{border-bottom-width: 1px !important;border-bottom-color: #079547 !important;border-bottom-style: solid !important;border-radius: 1px !important;}\"][vc_column_inner width=\"1/2\"][vc_single_image image=\"3399\" img_size=\"full\" css_animation=\"fadeInLeftBig\"][/vc_column_inner][vc_column_inner width=\"1/2\"][ult_animation_block animation=\"fadeInRightBig\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][ultimate_heading main_heading=\"Veterinary Pharmaceuticals\" heading_tag=\"h3\" main_heading_color=\"#079547\" sub_heading_color=\"#792c8a\" alignment=\"left\"]<strong>Deworming Solutions/ Antibiotics/ Antimicrobials/ Wound care solutions</strong><strong>\r\n</strong>Form – Liquid, WSP[/ultimate_heading][/ult_animation_block][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row full_width=\"stretch_row_content\" css=\".vc_custom_1693451731079{padding-top: 50px !important;padding-bottom: 50px !important;}\"][vc_column][ultimate_heading main_heading=\"Our manufacturing facility is certified with FAMI-QS, WHO GMP &amp; ISO 9001:2015 International Quality standards.\" main_heading_color=\"#079547\" sub_heading_color=\"#792c8a\"]We select only the <strong><em>best</em></strong> and <strong><em>most reputed</em></strong> Raw Material &amp; Packing Material Suppliers for the production of our finished goods.[/ultimate_heading][vc_row_inner equal_height=\"yes\" content_placement=\"middle\"][vc_column_inner width=\"1/5\" offset=\"vc_hidden-lg vc_hidden-md\"][vc_single_image image=\"3062\" img_size=\"full\" alignment=\"center\"][/vc_column_inner][vc_column_inner width=\"1/5\" css=\".vc_custom_1691846530645{border-right-width: 1px !important;border-left-width: 1px !important;border-left-color: #000000 !important;border-left-style: solid !important;border-right-color: #000000 !important;border-right-style: solid !important;border-radius: 1px !important;}\" offset=\"vc_hidden-lg vc_hidden-md\"][vc_single_image image=\"3063\" img_size=\"full\" alignment=\"center\"][/vc_column_inner][vc_column_inner width=\"1/5\" offset=\"vc_hidden-lg vc_hidden-md\"][vc_single_image image=\"3064\" img_size=\"full\" alignment=\"center\"][/vc_column_inner][vc_column_inner width=\"1/5\" css=\".vc_custom_1691846545469{border-right-width: 1px !important;border-left-width: 1px !important;border-left-color: #000000 !important;border-left-style: solid !important;border-right-color: #000000 !important;border-right-style: solid !important;border-radius: 1px !important;}\" offset=\"vc_hidden-lg vc_hidden-md\"][vc_single_image image=\"3065\" img_size=\"full\" alignment=\"center\"][/vc_column_inner][vc_column_inner width=\"1/5\" offset=\"vc_hidden-lg vc_hidden-md\"][vc_single_image image=\"3066\" img_size=\"full\" alignment=\"center\"][/vc_column_inner][/vc_row_inner][vc_row_inner equal_height=\"yes\" content_placement=\"middle\"][vc_column_inner width=\"1/4\" css=\".vc_custom_1691846563021{border-right-width: 1px !important;border-right-color: #000000 !important;border-right-style: solid !important;border-radius: 1px !important;}\" offset=\"vc_hidden-lg vc_hidden-md\"][vc_single_image image=\"3067\" img_size=\"full\" alignment=\"center\"][/vc_column_inner][vc_column_inner width=\"1/4\" css=\".vc_custom_1691846569845{border-right-width: 1px !important;border-right-color: #000000 !important;border-right-style: solid !important;border-radius: 1px !important;}\" offset=\"vc_hidden-lg vc_hidden-md\"][vc_single_image image=\"3068\" img_size=\"full\" alignment=\"center\"][/vc_column_inner][vc_column_inner width=\"1/4\" css=\".vc_custom_1691846576949{border-right-width: 1px !important;border-right-color: #000000 !important;border-right-style: solid !important;border-radius: 1px !important;}\" offset=\"vc_hidden-lg vc_hidden-md\"][vc_single_image image=\"3069\" img_size=\"full\" alignment=\"center\"][/vc_column_inner][vc_column_inner width=\"1/4\" offset=\"vc_hidden-lg vc_hidden-md\"][vc_single_image image=\"3070\" img_size=\"full\" alignment=\"center\"][/vc_column_inner][/vc_row_inner][vc_row_inner disable_element=\"yes\"][vc_column_inner width=\"1/3\"][vc_single_image image=\"2981\" img_size=\"full\"][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_single_image image=\"2982\" img_size=\"full\"][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_single_image image=\"2983\" img_size=\"full\"][/vc_column_inner][/vc_row_inner][vc_row_inner disable_element=\"yes\"][vc_column_inner width=\"1/6\"][/vc_column_inner][vc_column_inner width=\"2/3\"][vc_single_image image=\"2984\" img_size=\"full\"][/vc_column_inner][vc_column_inner width=\"1/6\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row full_width=\"stretch_row_content_no_spaces\"][vc_column offset=\"vc_hidden-sm vc_hidden-xs\"][vc_single_image image=\"3120\" img_size=\"full\" alignment=\"center\"][/vc_column][/vc_row][vc_row css=\".vc_custom_1689578794814{padding-top: 50px !important;padding-bottom: 50px !important;}\"][vc_column][ultimate_heading main_heading=\"Supplier selection and procurement criteria\" main_heading_color=\"#079547\" sub_heading_color=\"#792c8a\" alignment=\"left\"][/ultimate_heading][vc_row_inner css=\".vc_custom_1689578812611{margin-top: 50px !important;}\"][vc_column_inner width=\"1/2\"][dt_vc_list dividers=\"false\"]\r\n<ul>\r\n 	<li>Check supplier’s quality certification to ensure raw material quality</li>\r\n 	<li>New vendor validation protocol - In case of a change in the supplier, obtain samples and validate in the lab</li>\r\n</ul>\r\n[/dt_vc_list][/vc_column_inner][vc_column_inner width=\"1/2\"][dt_vc_list dividers=\"false\"]\r\n<ul>\r\n 	<li>Income inspection carried out on every consignment (Tested for Chemical Assay &amp; Physical Properties)</li>\r\n 	<li>Quality department approval required to be used in the production</li>\r\n</ul>\r\n[/dt_vc_list][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row css=\".vc_custom_1689578794814{padding-top: 50px !important;padding-bottom: 50px !important;}\"][vc_column][ultimate_heading main_heading=\"Please contact us to start your Marketing Journey with a reliable manufacturing partnership with FARMCHEMIE\" heading_tag=\"h3\" main_heading_color=\"#079547\" sub_heading_color=\"#792c8a\" alignment=\"left\"][/ultimate_heading][/vc_column][/vc_row][vc_row full_width=\"stretch_row_content\" equal_height=\"yes\" content_placement=\"middle\"][vc_column width=\"1/2\" css=\".vc_custom_1693540291208{background-image: url(https://farmchemie.yasithawd.com/wp-content/uploads/2023/09/02International-Markets-Sri-Lankan-Market.png?id=3379) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\"][vc_empty_space height=\"400px\"][/vc_column][vc_column width=\"1/2\" css=\".vc_custom_1693540250450{background-color: #8d499b !important;}\"][ultimate_heading main_heading=\"Sri Lankan Markets\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" main_heading_margin=\"margin-bottom:35px;\" sub_heading_margin=\"margin-bottom:10px;\"]Email : <a href=\"mailto:sales.import@farmchemie.com\">sales.import@farmchemie.com</a>\r\nTel No : + 94 76 577 2975[/ultimate_heading][vc_btn title=\"Read More\" style=\"outline-custom\" outline_custom_color=\"#ffffff\" outline_custom_hover_background=\"#039447\" outline_custom_hover_text=\"#ffffff\" shape=\"round\" align=\"center\"][/vc_column][/vc_row][vc_row full_width=\"stretch_row_content\" equal_height=\"yes\" rtl_reverse=\"yes\" content_placement=\"middle\"][vc_column width=\"1/2\" css=\".vc_custom_1693540116474{background-color: #039447 !important;}\"][ultimate_heading main_heading=\"International Markets\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" el_class=\"whitetxt\" main_heading_margin=\"margin-bottom:35px;\" sub_heading_margin=\"margin-bottom:10px;\"]Email : <a href=\"mailto:sales.export@farmchemie.com\">sales.export@farmchemie.com</a>\r\nTel No : + 94 76 577 2975[/ultimate_heading][vc_btn title=\"Read More\" style=\"outline-custom\" outline_custom_color=\"#ffffff\" outline_custom_hover_background=\"#8d499b\" outline_custom_hover_text=\"#ffffff\" shape=\"round\" align=\"center\"][/vc_column][vc_column width=\"1/2\" css=\".vc_custom_1693540312642{background-image: url(https://farmchemie.yasithawd.com/wp-content/uploads/2023/09/01International-Markets-Sri-Lankan-Market.png?id=3378) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\"][vc_empty_space height=\"400px\"][/vc_column][/vc_row]','Manufacturing','','inherit','closed','closed','','2964-revision-v1','','','2023-09-01 10:07:41','2023-09-01 10:07:41','',2964,'https://farmchemie.yasithawd.com/?p=3402',0,'revision','',0),(3403,1,'2023-09-01 11:58:11','2023-09-01 11:58:11','','022International-Markets-&-Sri-Lankan-Market','','inherit','open','closed','','022international-markets-sri-lankan-market','','','2023-09-01 11:58:11','2023-09-01 11:58:11','',2964,'https://farmchemie.yasithawd.com/wp-content/uploads/2023/09/022International-Markets-Sri-Lankan-Market.png',0,'attachment','image/png',0),(3404,1,'2023-09-01 11:58:45','2023-09-01 11:58:45','','011International-Markets-&-Sri-Lankan-Market','','inherit','open','closed','','011international-markets-sri-lankan-market','','','2023-09-01 11:58:45','2023-09-01 11:58:45','',2964,'https://farmchemie.yasithawd.com/wp-content/uploads/2023/09/011International-Markets-Sri-Lankan-Market.png',0,'attachment','image/png',0),(3405,1,'2023-09-01 11:59:24','2023-09-01 11:59:24','[vc_row full_width=\"stretch_row\" css=\".vc_custom_1689577528817{padding-bottom: 50px !important;}\"][vc_column css=\".vc_custom_1689577454678{margin-bottom: 50px !important;}\"][vc_row_inner css=\".vc_custom_1692407941633{border-bottom-width: 1px !important;border-bottom-color: #079547 !important;border-bottom-style: solid !important;border-radius: 1px !important;}\"][vc_column_inner width=\"1/2\"][ult_animation_block animation=\"fadeInLeftBig\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][ultimate_heading main_heading=\"Feed Additives\" heading_tag=\"h3\" main_heading_color=\"#079547\" sub_heading_color=\"#792c8a\" alignment=\"right\"]<strong>Premixes/ Specialty Feed Additives/ Dilution of Active Ingredients/ Concentrates</strong><strong>\r\n</strong>Pack sizes – 1,000 kg, 500 kg, 50 kg, 25 kg, 15 kg, 10 kg, 5 kg, 1kg[/ultimate_heading][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_single_image image=\"3129\" img_size=\"full\" css_animation=\"fadeInRightBig\"][/vc_column_inner][/vc_row_inner][vc_row_inner css=\".vc_custom_1692407949383{border-bottom-width: 1px !important;border-bottom-color: #079547 !important;border-bottom-style: solid !important;border-radius: 1px !important;}\"][vc_column_inner width=\"1/2\"][vc_single_image image=\"3401\" img_size=\"full\" css_animation=\"fadeInLeftBig\"][/vc_column_inner][vc_column_inner width=\"1/2\"][ult_animation_block animation=\"fadeInRightBig\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][ultimate_heading main_heading=\"Oral Supplements\" heading_tag=\"h3\" main_heading_color=\"#079547\" sub_heading_color=\"#792c8a\" alignment=\"left\"]<strong>Liquids</strong><strong>\r\n</strong>Pack sizes – 1,000 L, 250 L, 50 L, 25 L, 5 L, 1 L, 500 mL, 250 mL, 100 mL, 50 mL\r\n\r\n<strong>Water soluble powders</strong><strong>\r\n</strong>Pack sizes – 25 kg, 15 kg, 10 kg, 5 kg, 1kg[/ultimate_heading][/ult_animation_block][/vc_column_inner][/vc_row_inner][vc_row_inner css=\".vc_custom_1692407957943{border-bottom-width: 1px !important;border-bottom-color: #079547 !important;border-bottom-style: solid !important;border-radius: 1px !important;}\"][vc_column_inner width=\"1/2\"][ult_animation_block animation=\"fadeInLeftBig\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][ultimate_heading main_heading=\"Tablets\" heading_tag=\"h3\" main_heading_color=\"#079547\" sub_heading_color=\"#792c8a\" alignment=\"right\"]<strong>Supplementary tablets for pet care</strong>\r\nTablet sizes – 1 to 5 g\r\n\r\n<strong>Boluses</strong><strong>\r\n</strong>Tablet sizes – 5 to 25 g[/ultimate_heading][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_single_image image=\"3400\" img_size=\"full\" css_animation=\"fadeInRightBig\"][/vc_column_inner][/vc_row_inner][vc_row_inner css=\".vc_custom_1692407970279{border-bottom-width: 1px !important;border-bottom-color: #079547 !important;border-bottom-style: solid !important;border-radius: 1px !important;}\"][vc_column_inner width=\"1/2\"][vc_single_image image=\"3399\" img_size=\"full\" css_animation=\"fadeInLeftBig\"][/vc_column_inner][vc_column_inner width=\"1/2\"][ult_animation_block animation=\"fadeInRightBig\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][ultimate_heading main_heading=\"Veterinary Pharmaceuticals\" heading_tag=\"h3\" main_heading_color=\"#079547\" sub_heading_color=\"#792c8a\" alignment=\"left\"]<strong>Deworming Solutions/ Antibiotics/ Antimicrobials/ Wound care solutions</strong><strong>\r\n</strong>Form – Liquid, WSP[/ultimate_heading][/ult_animation_block][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row full_width=\"stretch_row_content\" css=\".vc_custom_1693451731079{padding-top: 50px !important;padding-bottom: 50px !important;}\"][vc_column][ultimate_heading main_heading=\"Our manufacturing facility is certified with FAMI-QS, WHO GMP &amp; ISO 9001:2015 International Quality standards.\" main_heading_color=\"#079547\" sub_heading_color=\"#792c8a\"]We select only the <strong><em>best</em></strong> and <strong><em>most reputed</em></strong> Raw Material &amp; Packing Material Suppliers for the production of our finished goods.[/ultimate_heading][vc_row_inner equal_height=\"yes\" content_placement=\"middle\"][vc_column_inner width=\"1/5\" offset=\"vc_hidden-lg vc_hidden-md\"][vc_single_image image=\"3062\" img_size=\"full\" alignment=\"center\"][/vc_column_inner][vc_column_inner width=\"1/5\" css=\".vc_custom_1691846530645{border-right-width: 1px !important;border-left-width: 1px !important;border-left-color: #000000 !important;border-left-style: solid !important;border-right-color: #000000 !important;border-right-style: solid !important;border-radius: 1px !important;}\" offset=\"vc_hidden-lg vc_hidden-md\"][vc_single_image image=\"3063\" img_size=\"full\" alignment=\"center\"][/vc_column_inner][vc_column_inner width=\"1/5\" offset=\"vc_hidden-lg vc_hidden-md\"][vc_single_image image=\"3064\" img_size=\"full\" alignment=\"center\"][/vc_column_inner][vc_column_inner width=\"1/5\" css=\".vc_custom_1691846545469{border-right-width: 1px !important;border-left-width: 1px !important;border-left-color: #000000 !important;border-left-style: solid !important;border-right-color: #000000 !important;border-right-style: solid !important;border-radius: 1px !important;}\" offset=\"vc_hidden-lg vc_hidden-md\"][vc_single_image image=\"3065\" img_size=\"full\" alignment=\"center\"][/vc_column_inner][vc_column_inner width=\"1/5\" offset=\"vc_hidden-lg vc_hidden-md\"][vc_single_image image=\"3066\" img_size=\"full\" alignment=\"center\"][/vc_column_inner][/vc_row_inner][vc_row_inner equal_height=\"yes\" content_placement=\"middle\"][vc_column_inner width=\"1/4\" css=\".vc_custom_1691846563021{border-right-width: 1px !important;border-right-color: #000000 !important;border-right-style: solid !important;border-radius: 1px !important;}\" offset=\"vc_hidden-lg vc_hidden-md\"][vc_single_image image=\"3067\" img_size=\"full\" alignment=\"center\"][/vc_column_inner][vc_column_inner width=\"1/4\" css=\".vc_custom_1691846569845{border-right-width: 1px !important;border-right-color: #000000 !important;border-right-style: solid !important;border-radius: 1px !important;}\" offset=\"vc_hidden-lg vc_hidden-md\"][vc_single_image image=\"3068\" img_size=\"full\" alignment=\"center\"][/vc_column_inner][vc_column_inner width=\"1/4\" css=\".vc_custom_1691846576949{border-right-width: 1px !important;border-right-color: #000000 !important;border-right-style: solid !important;border-radius: 1px !important;}\" offset=\"vc_hidden-lg vc_hidden-md\"][vc_single_image image=\"3069\" img_size=\"full\" alignment=\"center\"][/vc_column_inner][vc_column_inner width=\"1/4\" offset=\"vc_hidden-lg vc_hidden-md\"][vc_single_image image=\"3070\" img_size=\"full\" alignment=\"center\"][/vc_column_inner][/vc_row_inner][vc_row_inner disable_element=\"yes\"][vc_column_inner width=\"1/3\"][vc_single_image image=\"2981\" img_size=\"full\"][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_single_image image=\"2982\" img_size=\"full\"][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_single_image image=\"2983\" img_size=\"full\"][/vc_column_inner][/vc_row_inner][vc_row_inner disable_element=\"yes\"][vc_column_inner width=\"1/6\"][/vc_column_inner][vc_column_inner width=\"2/3\"][vc_single_image image=\"2984\" img_size=\"full\"][/vc_column_inner][vc_column_inner width=\"1/6\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row full_width=\"stretch_row_content_no_spaces\"][vc_column offset=\"vc_hidden-sm vc_hidden-xs\"][vc_single_image image=\"3120\" img_size=\"full\" alignment=\"center\"][/vc_column][/vc_row][vc_row css=\".vc_custom_1689578794814{padding-top: 50px !important;padding-bottom: 50px !important;}\"][vc_column][ultimate_heading main_heading=\"Supplier selection and procurement criteria\" main_heading_color=\"#079547\" sub_heading_color=\"#792c8a\" alignment=\"left\"][/ultimate_heading][vc_row_inner css=\".vc_custom_1689578812611{margin-top: 50px !important;}\"][vc_column_inner width=\"1/2\"][dt_vc_list dividers=\"false\"]\r\n<ul>\r\n 	<li>Check supplier’s quality certification to ensure raw material quality</li>\r\n 	<li>New vendor validation protocol - In case of a change in the supplier, obtain samples and validate in the lab</li>\r\n</ul>\r\n[/dt_vc_list][/vc_column_inner][vc_column_inner width=\"1/2\"][dt_vc_list dividers=\"false\"]\r\n<ul>\r\n 	<li>Income inspection carried out on every consignment (Tested for Chemical Assay &amp; Physical Properties)</li>\r\n 	<li>Quality department approval required to be used in the production</li>\r\n</ul>\r\n[/dt_vc_list][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row css=\".vc_custom_1689578794814{padding-top: 50px !important;padding-bottom: 50px !important;}\"][vc_column][ultimate_heading main_heading=\"Please contact us to start your Marketing Journey with a reliable manufacturing partnership with FARMCHEMIE\" heading_tag=\"h3\" main_heading_color=\"#079547\" sub_heading_color=\"#792c8a\" alignment=\"left\"][/ultimate_heading][/vc_column][/vc_row][vc_row full_width=\"stretch_row_content\" equal_height=\"yes\" content_placement=\"middle\"][vc_column width=\"1/2\" css=\".vc_custom_1693569503225{background-image: url(https://farmchemie.yasithawd.com/wp-content/uploads/2023/09/022International-Markets-Sri-Lankan-Market.png?id=3403) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\"][vc_empty_space height=\"400px\"][/vc_column][vc_column width=\"1/2\" css=\".vc_custom_1693540250450{background-color: #8d499b !important;}\"][ultimate_heading main_heading=\"Sri Lankan Markets\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" main_heading_margin=\"margin-bottom:35px;\" sub_heading_margin=\"margin-bottom:10px;\"]Email : <a href=\"mailto:sales.import@farmchemie.com\">sales.import@farmchemie.com</a>\r\nTel No : + 94 76 577 2975[/ultimate_heading][vc_btn title=\"Read More\" style=\"outline-custom\" outline_custom_color=\"#ffffff\" outline_custom_hover_background=\"#039447\" outline_custom_hover_text=\"#ffffff\" shape=\"round\" align=\"center\"][/vc_column][/vc_row][vc_row full_width=\"stretch_row_content\" equal_height=\"yes\" rtl_reverse=\"yes\" content_placement=\"middle\"][vc_column width=\"1/2\" css=\".vc_custom_1693540116474{background-color: #039447 !important;}\"][ultimate_heading main_heading=\"International Markets\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" el_class=\"whitetxt\" main_heading_margin=\"margin-bottom:35px;\" sub_heading_margin=\"margin-bottom:10px;\"]Email : <a href=\"mailto:sales.export@farmchemie.com\">sales.export@farmchemie.com</a>\r\nTel No : + 94 76 577 2975[/ultimate_heading][vc_btn title=\"Read More\" style=\"outline-custom\" outline_custom_color=\"#ffffff\" outline_custom_hover_background=\"#8d499b\" outline_custom_hover_text=\"#ffffff\" shape=\"round\" align=\"center\"][/vc_column][vc_column width=\"1/2\" css=\".vc_custom_1693569558281{background-image: url(https://farmchemie.yasithawd.com/wp-content/uploads/2023/09/011International-Markets-Sri-Lankan-Market.png?id=3404) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\"][vc_empty_space height=\"400px\"][/vc_column][/vc_row]','Manufacturing','','inherit','closed','closed','','2964-revision-v1','','','2023-09-01 11:59:24','2023-09-01 11:59:24','',2964,'https://farmchemie.yasithawd.com/?p=3405',0,'revision','',0),(3432,1,'2023-09-04 04:46:57','2023-09-04 04:46:57','','GANADEXIL ENROFLOXACINA 5% INJECTABLE','<h3><em>Long-acting Solution for Injection</em></h3>\r\n[dt_divider style=\"thick\" /]\r\n\r\n&nbsp;\r\n\r\n<strong>Composition: </strong>\r\n\r\nEach 1 mL contains,\r\nEnrofloxacin – 50 mg\r\n\r\n[dt_divider style=\"thin\" /]\r\n\r\n<strong>Indication: </strong>\r\n\r\nCattle (calves): Respiratory tract infections: Bronchopneumonia, Pasteurellosis, Mycoplasmosis. Gastrointestinal tract infections: Diarrhea caused by <em>Colibacilli</em>, Colibacillosis, Colisepticemia.\r\n\r\nSwine: Treatment of Piglet diarrhea, Diarrhea, and Enterotoxemia caused by E. <em>coli</em> and <em>Salmonella</em> spp., MMA syndrome\r\n\r\nDogs: Treatment of respiratory, digestive, urinary, and skin infections caused by microorganisms sensitive to enrofloxacin.\r\n\r\n[dt_divider style=\"thin\" /]\r\n\r\n<strong>Withdrawal time:</strong>\r\n\r\nFor meat – 7 days\r\n\r\n[dt_divider style=\"thin\" /]\r\n\r\n<strong>Dosage: </strong>\r\n\r\nCattle (calves): Administer 0.5 – 1 ml of GANADEXIL ENROFLOXACINA 5% (equivalent to 25 – 50 mg of enrofloxacin)/10 kg of b.w. daily for 3 days. In the case of salmonellosis or severe infections, the length of treatment is 5 days.\r\nSUBCUTANEOUS ROUTE\r\nDo not apply more than 10 ml at the same injection site.\r\n\r\nSwine: Administer 0.5 – 1 ml of GANADEXIL ENROFLOXACINA 5% (equivalent to 25 – 50 mg of enrofloxacin)/10 kg of b.w. daily for 3 days. In the case of salmonellosis or severe infections, the length of treatment is 5 days.\r\nINTRAMUSCULAR ROUTE\r\nDo not apply more than 2.5 ml at the same injection site.\r\n\r\nDogs: Administer 0.1 ml of GANADEXIL ENROFLOXACINA 5% (equivalent to 5 mg of enrofloxacin)/kg of b.w. daily for 5 days.\r\nSUBCUTANEOUS ROUTE\r\nIf recovery does not occur in 3 days, treatment should be reconsidered.\r\n\r\n[dt_divider style=\"thin\" /]\r\n\r\n<strong>Pack sizes: </strong>\r\n\r\n100 mL\r\n\r\n&nbsp;\r\n\r\n[dt_divider style=\"thick\" /]\r\n\r\n&nbsp;\r\n\r\n<a href=\"/wp-content/uploads/2023/08/AVI-VE.pdf\"><i class=\"fa-solid fa-file-pdf fa-2xl\" style=\"color: #039447\"> pdf</i></a> <a href=\"//wp-content/uploads/2023/08/AVI-3-folding-brochure-SInhala-Final-outline_compressed-4.pdf\"><i class=\"fa-solid fa-file-pdf fa-2xl\" style=\"color: #039447\"> pdf</i></a>','publish','closed','closed','','ganadexil-enrofloxacina-5-injectable','','','2023-09-24 00:26:44','2023-09-24 00:26:44','',0,'https://farmchemie.yasithawd.com/?post_type=product&#038;p=3432',0,'product','',0),(3406,1,'2023-09-02 03:09:43','2023-09-02 03:09:43','','Asset-6@300x','','inherit','open','closed','','asset-6300x','','','2023-09-02 03:09:43','2023-09-02 03:09:43','',2917,'https://farmchemie.yasithawd.com/wp-content/uploads/2023/09/Asset-6@300x.png',0,'attachment','image/png',0),(3407,1,'2023-09-02 03:09:48','2023-09-02 03:09:48','','Asset 2@300x','','inherit','open','closed','','asset-2300x','','','2023-09-02 03:09:48','2023-09-02 03:09:48','',2917,'https://farmchemie.yasithawd.com/wp-content/uploads/2023/09/Asset-2@300x.png',0,'attachment','image/png',0),(3408,1,'2023-09-02 03:09:53','2023-09-02 03:09:53','','Asset-1@300x','','inherit','open','closed','','asset-1300x-3','','','2023-09-02 03:09:53','2023-09-02 03:09:53','',2917,'https://farmchemie.yasithawd.com/wp-content/uploads/2023/09/Asset-1@300x.png',0,'attachment','image/png',0),(3409,1,'2023-09-02 03:09:58','2023-09-02 03:09:58','','Asset-3@300x','','inherit','open','closed','','asset-3300x','','','2023-09-02 03:09:58','2023-09-02 03:09:58','',2917,'https://farmchemie.yasithawd.com/wp-content/uploads/2023/09/Asset-3@300x.png',0,'attachment','image/png',0),(3410,1,'2023-09-02 03:10:01','2023-09-02 03:10:01','','Asset-4@300x','','inherit','open','closed','','asset-4300x','','','2023-09-02 03:10:01','2023-09-02 03:10:01','',2917,'https://farmchemie.yasithawd.com/wp-content/uploads/2023/09/Asset-4@300x.png',0,'attachment','image/png',0),(3411,1,'2023-09-02 03:10:06','2023-09-02 03:10:06','','Asset-5@300x','','inherit','open','closed','','asset-5300x','','','2023-09-02 03:10:06','2023-09-02 03:10:06','',2917,'https://farmchemie.yasithawd.com/wp-content/uploads/2023/09/Asset-5@300x.png',0,'attachment','image/png',0),(3412,1,'2023-09-02 04:10:03','2023-09-02 04:10:03','Vestibulum et tempor mauris. ','2008_SVA_FCL','Vestibulum pretium mauris et massa ullamcorper lacinia. Pellentesque','inherit','open','closed','','2008_sva_fcl','','','2023-09-12 13:34:43','2023-09-12 13:34:43','',2917,'https://farmchemie.yasithawd.com/wp-content/uploads/2023/09/2008_SVA_FCL.png',0,'attachment','image/png',0),(3413,1,'2023-09-02 04:10:27','2023-09-02 04:10:27',' pretium mauris ','2021_CNCI Achiever Awards',' pretium mauris ','inherit','open','closed','','2021_cnci-achiever-awards','','','2023-09-12 13:35:19','2023-09-12 13:35:19','',2917,'https://farmchemie.yasithawd.com/wp-content/uploads/2023/09/2021_CNCI-Achiever-Awards.png',0,'attachment','image/png',0),(3414,1,'2023-09-02 04:10:30','2023-09-02 04:10:30','','2021_handing over fuction','','inherit','open','closed','','2021_handing-over-fuction','','','2023-09-02 04:10:30','2023-09-02 04:10:30','',2917,'https://farmchemie.yasithawd.com/wp-content/uploads/2023/09/2021_handing-over-fuction.png',0,'attachment','image/png',0),(3415,1,'2023-09-02 04:10:32','2023-09-02 04:10:32','','2022_Extra-Large Category_Silver','','inherit','open','closed','','2022_extra-large-category_silver','','','2023-09-02 04:10:32','2023-09-02 04:10:32','',2917,'https://farmchemie.yasithawd.com/wp-content/uploads/2023/09/2022_Extra-Large-Category_Silver.png',0,'attachment','image/png',0),(3416,1,'2023-09-02 04:10:34','2023-09-02 04:10:34','','2022_FCL','','inherit','open','closed','','2022_fcl','','','2023-09-02 04:10:34','2023-09-02 04:10:34','',2917,'https://farmchemie.yasithawd.com/wp-content/uploads/2023/09/2022_FCL.png',0,'attachment','image/png',0),(3417,1,'2023-09-02 04:10:36','2023-09-02 04:10:36','','2022_FCL_-TOP10','','inherit','open','closed','','2022_fcl_-top10','','','2023-09-02 04:10:36','2023-09-02 04:10:36','',2917,'https://farmchemie.yasithawd.com/wp-content/uploads/2023/09/2022_FCL_-TOP10.png',0,'attachment','image/png',0),(3418,1,'2023-09-02 04:10:38','2023-09-02 04:10:38','','2022_FDL','','inherit','open','closed','','2022_fdl','','','2023-09-02 04:10:38','2023-09-02 04:10:38','',2917,'https://farmchemie.yasithawd.com/wp-content/uploads/2023/09/2022_FDL.png',0,'attachment','image/png',0),(3419,1,'2023-09-02 04:10:41','2023-09-02 04:10:41','','2014_APEA','','inherit','open','closed','','2014_apea','','','2023-09-02 04:10:41','2023-09-02 04:10:41','',2917,'https://farmchemie.yasithawd.com/wp-content/uploads/2023/09/2014_APEA.png',0,'attachment','image/png',0),(3420,1,'2023-09-02 04:10:43','2023-09-02 04:10:43','','2014_Ceva_Best Distributor','','inherit','open','closed','','2014_ceva_best-distributor','','','2023-09-02 04:10:43','2023-09-02 04:10:43','',2917,'https://farmchemie.yasithawd.com/wp-content/uploads/2023/09/2014_Ceva_Best-Distributor.png',0,'attachment','image/png',0),(3421,1,'2023-09-02 04:10:45','2023-09-02 04:10:45','','2014_National Agribusiness Awards','','inherit','open','closed','','2014_national-agribusiness-awards','','','2023-09-02 04:10:45','2023-09-02 04:10:45','',2917,'https://farmchemie.yasithawd.com/wp-content/uploads/2023/09/2014_National-Agribusiness-Awards.png',0,'attachment','image/png',0),(3422,1,'2023-09-02 04:10:47','2023-09-02 04:10:47','','2018_SVA_Bronze Sponsor','','inherit','open','closed','','2018_sva_bronze-sponsor','','','2023-09-02 04:10:47','2023-09-02 04:10:47','',2917,'https://farmchemie.yasithawd.com/wp-content/uploads/2023/09/2018_SVA_Bronze-Sponsor.png',0,'attachment','image/png',0),(3423,1,'2023-09-02 04:10:49','2023-09-02 04:10:49','','2019_CNCI Achiever Awards','','inherit','open','closed','','2019_cnci-achiever-awards','','','2023-09-02 04:10:49','2023-09-02 04:10:49','',2917,'https://farmchemie.yasithawd.com/wp-content/uploads/2023/09/2019_CNCI-Achiever-Awards-.png',0,'attachment','image/png',0),(3424,1,'2023-09-02 04:10:51','2023-09-02 04:10:51','','2019_Poultry Science for enhancement of Poultry Industry in Sri lanka','','inherit','open','closed','','2019_poultry-science-for-enhancement-of-poultry-industry-in-sri-lanka','','','2023-09-02 04:10:51','2023-09-02 04:10:51','',2917,'https://farmchemie.yasithawd.com/wp-content/uploads/2023/09/2019_Poultry-Science-for-enhancement-of-Poultry-Industry-in-Sri-lanka.png',0,'attachment','image/png',0),(3425,1,'2023-09-02 04:10:56','2023-09-02 04:10:56','','2020_CNCI Achiever Awards','','inherit','open','closed','','2020_cnci-achiever-awards','','','2023-09-02 04:10:56','2023-09-02 04:10:56','',2917,'https://farmchemie.yasithawd.com/wp-content/uploads/2023/09/2020_CNCI-Achiever-Awards-.png',0,'attachment','image/png',0),(3426,1,'2023-09-02 04:15:38','2023-09-02 04:15:38','[vc_row full_width=\"stretch_row_content_no_spaces\"][vc_column][ultimate_heading main_heading=\"Our History\" main_heading_color=\"#762888\"][/ultimate_heading][/vc_column][/vc_row][vc_row][vc_column][vc_row_inner equal_height=\"yes\" content_placement=\"middle\" css=\".vc_custom_1692359205466{margin-top: 35px !important;}\"][vc_column_inner width=\"1/2\"][ult_animation_block animation=\"fadeInLeftBig\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][vc_single_image image=\"3273\" img_size=\"full\" alignment=\"center\" style=\"vc_box_rounded\"][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/2\"][ult_animation_block animation=\"fadeInRightBig\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][ultimate_heading main_heading=\"Founded in 2002\" heading_tag=\"h3\" main_heading_color=\"#039447\" alignment=\"left\" sub_heading_font_size=\"desktop:18px;\"]Founded in 2002 by Mr. Uditha Wanigasinghe, an agriculturist who had a mission to aid valuable livestock producers in the country to enhance the yield and profitability of production. FARMCHEMIE introduced unprecedented solutions and consistent technical services to gain our customers’ trust and became the market leader in animal health products in 2006 within just four years.[/ultimate_heading][/ult_animation_block][/vc_column_inner][/vc_row_inner][vc_separator color=\"custom\" accent_color=\"#039447\"][vc_row_inner equal_height=\"yes\" rtl_reverse=\"yes\" content_placement=\"middle\" css=\".vc_custom_1692359216075{margin-top: 35px !important;}\"][vc_column_inner width=\"1/2\"][ult_animation_block animation=\"fadeInLeftBig\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][ultimate_heading main_heading=\"2006\" heading_tag=\"h3\" main_heading_color=\"#039447\" alignment=\"right\"]In 2006, the Sri Lankan poultry industry was affected with Avian Influenza which became a difficult period for the growth of FARMCHEMIE. This was the key factor in our decision to diversify into Agro Products. PLANTCHEM &amp; PLANTSEEDS were established to offer solutions in Agro specialty fertilizers, pesticides and seeds to invaluable cultivators.[/ultimate_heading][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/2\"][ult_animation_block animation=\"fadeInRightBig\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][vc_single_image image=\"3276\" img_size=\"full\" alignment=\"center\" style=\"vc_box_rounded\"][/ult_animation_block][/vc_column_inner][/vc_row_inner][vc_separator color=\"custom\" accent_color=\"#039447\"][vc_row_inner equal_height=\"yes\" content_placement=\"middle\" css=\".vc_custom_1692359231594{margin-top: 35px !important;}\"][vc_column_inner width=\"1/2\"][ult_animation_block animation=\"fadeInLeftBig\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][vc_single_image image=\"3277\" img_size=\"full\" alignment=\"center\" style=\"vc_box_rounded\"][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/2\"][ult_animation_block animation=\"fadeInRightBig\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][ultimate_heading main_heading=\"2010\" heading_tag=\"h3\" main_heading_color=\"#039447\" alignment=\"left\"]In 2010, FEED CHEMIE became the subsequent addition to ever-growing vision of Mr. Uditha Wanigasinghe and entered the Animal Feed Additives market.[/ultimate_heading][/ult_animation_block][/vc_column_inner][/vc_row_inner][vc_separator color=\"custom\" accent_color=\"#039447\"][vc_row_inner equal_height=\"yes\" rtl_reverse=\"yes\" content_placement=\"middle\" css=\".vc_custom_1692359239274{margin-top: 35px !important;}\"][vc_column_inner width=\"1/2\"][ult_animation_block animation=\"fadeInLeftBig\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][ultimate_heading main_heading=\"2012\" heading_tag=\"h3\" main_heading_color=\"#039447\" alignment=\"right\"]The year 2012 is described as a turning point in our journey as FARMCHEMIE established our first production facility for the manufacturing and packing of animal health products. FARMCHEMIE became the first animal health organization in Sri Lanka to obtain ISO 9001:2015 and WHO GMP International Quality Certification. With our own formulation unit, FARMCHEMIE was able to offer customized solutions to cater the needs of the Sri Lankan Livestock Industry.[/ultimate_heading][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/2\"][ult_animation_block animation=\"fadeInRightBig\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][vc_single_image image=\"3278\" img_size=\"full\" alignment=\"center\" style=\"vc_box_rounded\"][/ult_animation_block][/vc_column_inner][/vc_row_inner][vc_separator color=\"custom\" accent_color=\"#039447\"][vc_row_inner content_placement=\"middle\" css=\".vc_custom_1692359246626{margin-top: 35px !important;}\"][vc_column_inner width=\"1/2\"][ult_animation_block animation=\"fadeInLeftBig\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][vc_single_image image=\"3279\" img_size=\"full\" alignment=\"center\" style=\"vc_box_rounded\"][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/2\"][ult_animation_block animation=\"fadeInRightBig\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][ultimate_heading main_heading=\"2016\" heading_tag=\"h3\" main_heading_color=\"#039447\" alignment=\"left\"]The year 2016 was another key milestone with the entry to the International Markets. FARMCHEMIE exported our first Feed Premix consignment to India and in 2018 our export operation was distinctly established as FARMCHEMIE MANUFACTURERS, a Board of Investment (BOI) approved entity.[/ultimate_heading][/ult_animation_block][/vc_column_inner][/vc_row_inner][vc_separator color=\"custom\" accent_color=\"#039447\"][vc_row_inner equal_height=\"yes\" content_placement=\"middle\" css=\".vc_custom_1692422601938{margin-top: 35px !important;}\"][vc_column_inner width=\"1/2\"][ult_animation_block animation=\"fadeInLeftBig\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][ultimate_heading main_heading=\"Fully automated manufacturing\" heading_tag=\"h3\" main_heading_color=\"#039447\" alignment=\"right\"]FARMCHEMIE MANUFACTURERS has invested in fully automated manufacturing facility from Bühler and became the first Sri Lankan owned company to obtain FAMI-QS International Quality Certification.[/ultimate_heading][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/2\"][ult_animation_block animation=\"fadeInRightBig\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][vc_single_image image=\"3280\" img_size=\"full\" alignment=\"center\" style=\"vc_box_rounded\"][/ult_animation_block][/vc_column_inner][/vc_row_inner][vc_separator color=\"custom\" accent_color=\"#039447\"][vc_row_inner equal_height=\"yes\" content_placement=\"middle\" css=\".vc_custom_1692359258634{margin-top: 35px !important;}\"][vc_column_inner width=\"1/2\"][ult_animation_block animation=\"fadeInLeftBig\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][vc_single_image image=\"3281\" img_size=\"full\" alignment=\"center\" style=\"vc_box_rounded\"][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/2\"][ult_animation_block animation=\"fadeInRightBig\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][ultimate_heading main_heading=\"Official toll manufacturer partner\" heading_tag=\"h3\" main_heading_color=\"#039447\" alignment=\"left\"]With the trust and reputation built as a reliable manufacturer of animal feed additives and supplements in the global market, several world-renowned international brands have appointed FARMCHEMIE MANUFACTURERS as the official toll manufacturer partner. FARMCHEMIE MANUFACTURERS exports a wide range of products consisting of premixes, specialty feed additives, oral liquid supplements and pet supplements to various markets in South Asia, East Asia, Middle East and Africa.\r\n\r\nFARMCHEMIE, FEED CHEMIE &amp; FARMCHEMIE MANUFACTURERS currently operate under the ownership of our holding company, DYVESTA.\r\n\r\nDYEVSTA has become the pinnacle of Animal Nutrition and Health.\r\n\r\nDYVESTA is Dynamic, through our continuous evolution, growth and progress. DYVESTA is Diverse, in terms of both our business strategy and our community. DYVESTA is Devoted to our valuable business partners through exceptional service.[/ultimate_heading][/ult_animation_block][/vc_column_inner][/vc_row_inner][vc_separator color=\"custom\" accent_color=\"#039447\"][/vc_column][/vc_row][vc_row full_width=\"stretch_row\" equal_height=\"yes\" bg_type=\"image\" parallax_style=\"vcpb-vz-jquery\" bg_image_new=\"id^3256|url^https://farmchemie.yasithawd.com/wp-content/uploads/2023/08/Vision-Mission.png|caption^null|alt^null|title^Vision-&amp;-Mission|description^null\" bg_image_repeat=\"no-repeat\" enable_overlay=\"enable_overlay_value\" overlay_color=\"#000000\" overlay_pattern=\"01.png\" overlay_pattern_opacity=\"5\" css=\".vc_custom_1692366072362{margin-top: 35px !important;padding-top: 65px !important;padding-bottom: 100px !important;}\"][vc_column][vc_row_inner equal_height=\"yes\"][vc_column_inner width=\"1/2\"][ult_animation_block animation=\"fadeInLeftBig\" animation_duration=\"2\" animation_delay=\"0\" animation_iteration_count=\"1\"][ultimate_heading main_heading=\"Vision\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\"]To be the customers’ first and best choice by ensuring outstanding satisfaction through a well-trained and dedicated team. Prompt and quality solutions to our customers’ requirements will determine the increase of return on investment for us.[/ultimate_heading][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/2\"][ult_animation_block animation=\"fadeInRightBig\" animation_duration=\"2\" animation_delay=\"0\" animation_iteration_count=\"1\"][ultimate_heading main_heading=\"Mission\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\"]To become a world renowned manufacturer of Animal Health products and a trusted partner among our stakeholders for our integrity as well as for providing effective solutions[/ultimate_heading][/ult_animation_block][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row css=\".vc_custom_1684836308288{margin-top: 15px !important;}\"][vc_column][ultimate_heading main_heading=\"Achievements\" main_heading_color=\"#762888\" main_heading_margin=\"margin-top:35px;\"][/ultimate_heading][vc_row_inner gap=\"20\"][vc_column_inner width=\"1/2\" css=\".vc_custom_1691995519863{background-color: #f4ab20 !important;border: 1px solid #f4ab20 !important;border-radius: 35px !important;}\"][ult_animation_block animation=\"fadeInLeftBig\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][bsf-info-box icon_type=\"custom\" icon_img=\"id^3117|url^https://farmchemie.yasithawd.com/wp-content/uploads/2023/08/Pink_-H.png|caption^null|alt^null|title^Pink_-H|description^null\" img_width=\"60\" icon_style=\"advanced\" icon_border_style=\"solid\" icon_color_border=\"#ffffff\" icon_border_size=\"1\" icon_border_radius=\"500\" icon_border_spacing=\"1\" title=\"First Free Sale Certificate obtained from Veterinary Drug Control Authority (VDCA) for Veterinary Pharmaceuticals\" title_font_style=\"font-weight:bold;\" title_font_size=\"desktop:20px;\"][/bsf-info-box][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/2\" css=\".vc_custom_1691995661095{background-color: #722f8b !important;border: 1px solid #722f8b !important;border-radius: 35px !important;}\"][ult_animation_block animation=\"fadeInRightBig\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][bsf-info-box icon_type=\"custom\" icon_img=\"id^3117|url^https://farmchemie.yasithawd.com/wp-content/uploads/2023/08/Pink_-H.png|caption^null|alt^null|title^Pink_-H|description^null\" img_width=\"60\" icon_style=\"advanced\" icon_border_style=\"solid\" icon_color_border=\"#ffffff\" icon_border_size=\"1\" icon_border_radius=\"500\" icon_border_spacing=\"1\" title=\"First ISO 9001: 2015 ,WHO-GMP Quality Management systems certified Animal Health company in Sri Lanka since August, 2012\" title_font_style=\"font-weight:bold;\" title_font_color=\"#ffffff\" title_font_size=\"desktop:20px;\"][/bsf-info-box][/ult_animation_block][/vc_column_inner][/vc_row_inner][vc_row_inner gap=\"20\"][vc_column_inner width=\"1/2\" css=\".vc_custom_1691995661095{background-color: #722f8b !important;border: 1px solid #722f8b !important;border-radius: 35px !important;}\"][ult_animation_block animation=\"fadeInLeftBig\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][bsf-info-box icon_type=\"custom\" icon_img=\"id^3117|url^https://farmchemie.yasithawd.com/wp-content/uploads/2023/08/Pink_-H.png|caption^null|alt^null|title^Pink_-H|description^null\" img_width=\"60\" icon_style=\"advanced\" icon_border_style=\"solid\" icon_color_border=\"#ffffff\" icon_border_size=\"1\" icon_border_radius=\"500\" icon_border_spacing=\"1\" title=\"First FAMI-QS certified company in sri lanka\" title_font_style=\"font-weight:bold;\" title_font_color=\"#ffffff\" title_font_size=\"desktop:20px;\"][/bsf-info-box][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/2\" css=\".vc_custom_1691995519863{background-color: #f4ab20 !important;border: 1px solid #f4ab20 !important;border-radius: 35px !important;}\"][ult_animation_block animation=\"fadeInRightBig\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][bsf-info-box icon_type=\"custom\" icon_img=\"id^3117|url^https://farmchemie.yasithawd.com/wp-content/uploads/2023/08/Pink_-H.png|caption^null|alt^null|title^Pink_-H|description^null\" img_width=\"60\" icon_style=\"advanced\" icon_border_style=\"solid\" icon_color_border=\"#ffffff\" icon_border_size=\"1\" icon_border_radius=\"500\" icon_border_spacing=\"1\" title=\"First Certificate of Ethical Trading certified in Livestock industry\" title_font_style=\"font-weight:bold;\" title_font_size=\"desktop:20px;\"][/bsf-info-box][/ult_animation_block][/vc_column_inner][/vc_row_inner][vc_row_inner gap=\"20\"][vc_column_inner width=\"1/4\" css=\".vc_custom_1691996718116{border-radius: 35px !important;}\"][/vc_column_inner][vc_column_inner width=\"2/4\" css=\".vc_custom_1691995519863{background-color: #f4ab20 !important;border: 1px solid #f4ab20 !important;border-radius: 35px !important;}\"][ult_animation_block animation=\"fadeInUpBig\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][bsf-info-box icon_type=\"custom\" icon_img=\"id^3117|url^https://farmchemie.yasithawd.com/wp-content/uploads/2023/08/Pink_-H.png|caption^null|alt^null|title^Pink_-H|description^null\" img_width=\"60\" icon_style=\"advanced\" icon_border_style=\"solid\" icon_color_border=\"#ffffff\" icon_border_size=\"1\" icon_border_radius=\"500\" icon_border_spacing=\"1\" title=\"First Silver awarded company at National Exports Awards in Livestock industry\" title_font_style=\"font-weight:bold;\" title_font_size=\"desktop:20px;\"][/bsf-info-box][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/4\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row full_width=\"stretch_row\" equal_height=\"yes\" content_placement=\"bottom\" css=\".vc_custom_1693625624233{margin-top: 15px !important;}\"][vc_column][ultimate_heading main_heading=\"Certifications \" main_heading_color=\"#762888\" main_heading_margin=\"margin-top:35px;\" margin_design_tab_text=\"\"][/ultimate_heading][vc_row_inner content_placement=\"bottom\"][vc_column_inner width=\"1/3\"][dt_fancy_image image_id=\"3407\" width=\"300\" caption=\"off\"][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_fancy_image image_id=\"3408\" width=\"300\" caption=\"off\"][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_fancy_image image_id=\"3409\" width=\"300\" caption=\"off\"][/vc_column_inner][/vc_row_inner][vc_row_inner content_placement=\"bottom\"][vc_column_inner width=\"1/3\"][dt_fancy_image image_id=\"3411\" width=\"300\" caption=\"off\"][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_fancy_image image_id=\"3410\" width=\"300\" caption=\"off\"][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_fancy_image image_id=\"3406\" width=\"300\" caption=\"off\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row full_width=\"stretch_row\" equal_height=\"yes\" content_placement=\"bottom\" css=\".vc_custom_1693627699480{margin-top: 15px !important;}\"][vc_column][ultimate_heading main_heading=\"Certifications \" main_heading_color=\"#762888\" main_heading_margin=\"margin-top:35px;\" margin_design_tab_text=\"\"][/ultimate_heading][vc_row_inner content_placement=\"bottom\"][vc_column_inner width=\"1/6\"][dt_fancy_image image_id=\"3407\" width=\"300\" caption=\"off\"][/vc_column_inner][vc_column_inner width=\"1/6\"][dt_fancy_image image_id=\"3408\" width=\"300\" caption=\"off\"][/vc_column_inner][vc_column_inner width=\"1/6\"][dt_fancy_image image_id=\"3409\" width=\"300\" caption=\"off\"][/vc_column_inner][vc_column_inner width=\"1/6\"][dt_fancy_image image_id=\"3411\" width=\"300\" caption=\"off\"][/vc_column_inner][vc_column_inner width=\"1/6\"][dt_fancy_image image_id=\"3410\" width=\"300\" caption=\"off\"][/vc_column_inner][vc_column_inner width=\"1/6\"][dt_fancy_image image_id=\"3406\" width=\"300\" caption=\"off\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row full_width=\"stretch_row\" equal_height=\"yes\" content_placement=\"bottom\" css=\".vc_custom_1693625624233{margin-top: 15px !important;}\"][vc_column][ultimate_heading main_heading=\"Awards\" main_heading_color=\"#762888\" main_heading_margin=\"margin-top:35px;\" margin_design_tab_text=\"\"][/ultimate_heading][ultimate_carousel title_text_typography=\"\"][dt_fancy_image image_id=\"3412\" width=\"300\" caption=\"off\"][dt_fancy_image image_id=\"3413\" width=\"300\" caption=\"off\"][dt_fancy_image image_id=\"3414\" width=\"300\" caption=\"off\"][dt_fancy_image image_id=\"3415\" width=\"300\" caption=\"off\"][dt_fancy_image image_id=\"3416\" width=\"300\" caption=\"off\"][dt_fancy_image image_id=\"3417\" width=\"300\" caption=\"off\"][dt_fancy_image image_id=\"3418\" width=\"300\" caption=\"off\"][dt_fancy_image image_id=\"3420\" width=\"300\" caption=\"off\"][dt_fancy_image image_id=\"3419\" width=\"300\" caption=\"off\"][dt_fancy_image image_id=\"3422\" width=\"300\" caption=\"off\"][dt_fancy_image image_id=\"3421\" width=\"300\" caption=\"off\"][/ultimate_carousel][/vc_column][/vc_row][vc_row css=\".vc_custom_1693625068958{margin-top: 15px !important;}\"][vc_column][ultimate_heading main_heading=\"Board Of Directors\" main_heading_color=\"#762888\" main_heading_margin=\"margin-top:35px;margin-bottom:35px;\"][/ultimate_heading][ultimate_carousel slides_on_desk=\"3\" slides_on_mob=\"1\" arrow_style=\"square-bg\" arrow_bg_color=\"#039447\" arrow_color=\"#ffffff\" next_icon=\"ultsl-arrow-right6\" prev_icon=\"ultsl-arrow-left6\" dots_color=\"#039447\" item_animation=\"fadeIn\"][vc_row_inner][vc_column_inner][dt_fancy_image image_id=\"3173\" width=\"300\" border_radius=\"1px\" caption=\"off\"][ultimate_heading main_heading=\"Quisque sed nibh tristique\" heading_tag=\"h3\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;\"]Duis lorem risus, aliquet a auctor a, venenatis in dui. Praesent et eros et risus dapibus placerat hendrerit cursus magna.[/ultimate_heading][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner][dt_fancy_image image_id=\"3170\" width=\"300\" border_radius=\"1px\" caption=\"off\"][ultimate_heading main_heading=\"Quisque sed nibh tristique\" heading_tag=\"h3\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;\"]Duis lorem risus, aliquet a auctor a, venenatis in dui. Praesent et eros et risus dapibus placerat hendrerit cursus magna.[/ultimate_heading][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner][dt_fancy_image image_id=\"3171\" width=\"300\" border_radius=\"1px\" caption=\"off\"][ultimate_heading main_heading=\"Quisque sed nibh tristique\" heading_tag=\"h3\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;\"]Duis lorem risus, aliquet a auctor a, venenatis in dui. Praesent et eros et risus dapibus placerat hendrerit cursus magna.[/ultimate_heading][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner][dt_fancy_image image_id=\"3172\" width=\"300\" border_radius=\"1px\" caption=\"off\"][ultimate_heading main_heading=\"Quisque sed nibh tristique\" heading_tag=\"h3\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;\"]Duis lorem risus, aliquet a auctor a, venenatis in dui. Praesent et eros et risus dapibus placerat hendrerit cursus magna.[/ultimate_heading][/vc_column_inner][/vc_row_inner][/ultimate_carousel][/vc_column][/vc_row][vc_row disable_element=\"yes\"][vc_column][ultimate_heading main_heading=\"Board Of Directors\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;margin-bottom:35px;\"][/ultimate_heading][vc_row_inner][vc_column_inner width=\"1/3\"][ult_animation_block animation=\"fadeInUp\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][dt_fancy_image image_id=\"3172\" width=\"300\" border_radius=\"1px\" caption=\"off\" css=\".vc_custom_1692278922309{border-top-width: 1px !important;border-right-width: 1px !important;border-bottom-width: 1px !important;border-left-width: 1px !important;border-left-color: #059444 !important;border-left-style: solid !important;border-right-color: #059444 !important;border-right-style: solid !important;border-top-color: #059444 !important;border-top-style: solid !important;border-bottom-color: #059444 !important;border-bottom-style: solid !important;border-radius: 1px !important;}\"][ultimate_heading main_heading=\"Quisque sed nibh tristique\" heading_tag=\"h3\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;\"]\r\n<ul>\r\n 	<li>Duis lorem risus, aliquet a auctor a, venenatis in dui. Praesent et eros et risus dapibus placerat hendrerit cursus magna.</li>\r\n 	<li>Praesent et eros et risus dapibus placerat hendrerit cursus magna.</li>\r\n 	<li>aliquet a auctor a, venenatis in dui.</li>\r\n</ul>\r\n[/ultimate_heading][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/3\"][ult_animation_block animation=\"fadeInDown\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][dt_fancy_image image_id=\"3171\" width=\"300\" border_radius=\"1px\" caption=\"off\" css=\".vc_custom_1692278929158{border-top-width: 1px !important;border-right-width: 1px !important;border-bottom-width: 1px !important;border-left-width: 1px !important;border-left-color: #059444 !important;border-left-style: solid !important;border-right-color: #059444 !important;border-right-style: solid !important;border-top-color: #059444 !important;border-top-style: solid !important;border-bottom-color: #059444 !important;border-bottom-style: solid !important;border-radius: 1px !important;}\"][ultimate_heading main_heading=\"Quisque sed nibh tristique\" heading_tag=\"h3\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;\"]\r\n<ul>\r\n 	<li>Duis lorem risus, aliquet a auctor a, venenatis in dui. Praesent et eros et risus dapibus placerat hendrerit cursus magna.</li>\r\n 	<li>Praesent et eros et risus dapibus placerat hendrerit cursus magna.</li>\r\n 	<li>aliquet a auctor a, venenatis in dui.</li>\r\n</ul>\r\n[/ultimate_heading][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/3\"][ult_animation_block animation=\"fadeInUp\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][dt_fancy_image image_id=\"3170\" width=\"300\" border_radius=\"1px\" caption=\"off\" css=\".vc_custom_1692278936750{border-top-width: 1px !important;border-right-width: 1px !important;border-bottom-width: 1px !important;border-left-width: 1px !important;border-left-color: #059444 !important;border-left-style: solid !important;border-right-color: #059444 !important;border-right-style: solid !important;border-top-color: #059444 !important;border-top-style: solid !important;border-bottom-color: #059444 !important;border-bottom-style: solid !important;border-radius: 1px !important;}\"][ultimate_heading main_heading=\"Quisque sed nibh tristique\" heading_tag=\"h3\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;\"]\r\n<ul>\r\n 	<li>Duis lorem risus, aliquet a auctor a, venenatis in dui. Praesent et eros et risus dapibus placerat hendrerit cursus magna.</li>\r\n 	<li>Praesent et eros et risus dapibus placerat hendrerit cursus magna.</li>\r\n 	<li>aliquet a auctor a, venenatis in dui.</li>\r\n</ul>\r\n[/ultimate_heading][/ult_animation_block][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row disable_element=\"yes\"][vc_column][ultimate_heading main_heading=\"Executive Directors\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;margin-bottom:35px;\"][/ultimate_heading][vc_row_inner][vc_column_inner width=\"1/5\"][ult_animation_block animation=\"fadeInUp\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][dt_fancy_image image_id=\"3172\" width=\"300\" border_radius=\"1px\" caption=\"off\" css=\".vc_custom_1692278922309{border-top-width: 1px !important;border-right-width: 1px !important;border-bottom-width: 1px !important;border-left-width: 1px !important;border-left-color: #059444 !important;border-left-style: solid !important;border-right-color: #059444 !important;border-right-style: solid !important;border-top-color: #059444 !important;border-top-style: solid !important;border-bottom-color: #059444 !important;border-bottom-style: solid !important;border-radius: 1px !important;}\"][ultimate_heading main_heading=\"Quisque sed nibh tristique\" heading_tag=\"h3\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;\"]\r\n<ul>\r\n 	<li>Duis lorem risus, aliquet a auctor a, venenatis in dui. Praesent et eros et risus dapibus placerat hendrerit cursus magna.</li>\r\n 	<li>Praesent et eros et risus dapibus placerat hendrerit cursus magna.</li>\r\n 	<li>aliquet a auctor a, venenatis in dui.</li>\r\n</ul>\r\n[/ultimate_heading][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/5\"][ult_animation_block animation=\"fadeInDown\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][dt_fancy_image image_id=\"3171\" width=\"300\" border_radius=\"1px\" caption=\"off\" css=\".vc_custom_1692278929158{border-top-width: 1px !important;border-right-width: 1px !important;border-bottom-width: 1px !important;border-left-width: 1px !important;border-left-color: #059444 !important;border-left-style: solid !important;border-right-color: #059444 !important;border-right-style: solid !important;border-top-color: #059444 !important;border-top-style: solid !important;border-bottom-color: #059444 !important;border-bottom-style: solid !important;border-radius: 1px !important;}\"][ultimate_heading main_heading=\"Quisque sed nibh tristique\" heading_tag=\"h3\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;\"]\r\n<ul>\r\n 	<li>Duis lorem risus, aliquet a auctor a, venenatis in dui. Praesent et eros et risus dapibus placerat hendrerit cursus magna.</li>\r\n 	<li>Praesent et eros et risus dapibus placerat hendrerit cursus magna.</li>\r\n 	<li>aliquet a auctor a, venenatis in dui.</li>\r\n</ul>\r\n[/ultimate_heading][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/5\"][ult_animation_block animation=\"fadeInUp\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][dt_fancy_image image_id=\"3170\" width=\"300\" border_radius=\"1px\" caption=\"off\" css=\".vc_custom_1692278936750{border-top-width: 1px !important;border-right-width: 1px !important;border-bottom-width: 1px !important;border-left-width: 1px !important;border-left-color: #059444 !important;border-left-style: solid !important;border-right-color: #059444 !important;border-right-style: solid !important;border-top-color: #059444 !important;border-top-style: solid !important;border-bottom-color: #059444 !important;border-bottom-style: solid !important;border-radius: 1px !important;}\"][ultimate_heading main_heading=\"Quisque sed nibh tristique\" heading_tag=\"h3\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;\"]\r\n<ul>\r\n 	<li>Duis lorem risus, aliquet a auctor a, venenatis in dui. Praesent et eros et risus dapibus placerat hendrerit cursus magna.</li>\r\n 	<li>Praesent et eros et risus dapibus placerat hendrerit cursus magna.</li>\r\n 	<li>aliquet a auctor a, venenatis in dui.</li>\r\n</ul>\r\n[/ultimate_heading][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/5\"][ult_animation_block animation=\"fadeInDown\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][dt_fancy_image image_id=\"3170\" width=\"300\" border_radius=\"1px\" caption=\"off\" css=\".vc_custom_1692278936750{border-top-width: 1px !important;border-right-width: 1px !important;border-bottom-width: 1px !important;border-left-width: 1px !important;border-left-color: #059444 !important;border-left-style: solid !important;border-right-color: #059444 !important;border-right-style: solid !important;border-top-color: #059444 !important;border-top-style: solid !important;border-bottom-color: #059444 !important;border-bottom-style: solid !important;border-radius: 1px !important;}\"][ultimate_heading main_heading=\"Quisque sed nibh tristique\" heading_tag=\"h3\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;\"]\r\n<ul>\r\n 	<li>Duis lorem risus, aliquet a auctor a, venenatis in dui. Praesent et eros et risus dapibus placerat hendrerit cursus magna.</li>\r\n 	<li>Praesent et eros et risus dapibus placerat hendrerit cursus magna.</li>\r\n 	<li>aliquet a auctor a, venenatis in dui.</li>\r\n</ul>\r\n[/ultimate_heading][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/5\"][ult_animation_block animation=\"fadeInDown\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][dt_fancy_image image_id=\"3171\" width=\"300\" border_radius=\"1px\" caption=\"off\" css=\".vc_custom_1692278929158{border-top-width: 1px !important;border-right-width: 1px !important;border-bottom-width: 1px !important;border-left-width: 1px !important;border-left-color: #059444 !important;border-left-style: solid !important;border-right-color: #059444 !important;border-right-style: solid !important;border-top-color: #059444 !important;border-top-style: solid !important;border-bottom-color: #059444 !important;border-bottom-style: solid !important;border-radius: 1px !important;}\"][ultimate_heading main_heading=\"Quisque sed nibh tristique\" heading_tag=\"h3\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;\"]\r\n<ul>\r\n 	<li>Duis lorem risus, aliquet a auctor a, venenatis in dui. Praesent et eros et risus dapibus placerat hendrerit cursus magna.</li>\r\n 	<li>Praesent et eros et risus dapibus placerat hendrerit cursus magna.</li>\r\n 	<li>aliquet a auctor a, venenatis in dui.</li>\r\n</ul>\r\n[/ultimate_heading][/ult_animation_block][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner width=\"2/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row disable_element=\"yes\"][vc_column][ultimate_heading main_heading=\"Next Generation\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;margin-bottom:35px;\"][/ultimate_heading][vc_row_inner][vc_column_inner width=\"1/2\"][ult_animation_block animation=\"fadeInUp\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][dt_fancy_image image_id=\"3172\" width=\"300\" border_radius=\"1px\" caption=\"off\" css=\".vc_custom_1692278922309{border-top-width: 1px !important;border-right-width: 1px !important;border-bottom-width: 1px !important;border-left-width: 1px !important;border-left-color: #059444 !important;border-left-style: solid !important;border-right-color: #059444 !important;border-right-style: solid !important;border-top-color: #059444 !important;border-top-style: solid !important;border-bottom-color: #059444 !important;border-bottom-style: solid !important;border-radius: 1px !important;}\"][ultimate_heading main_heading=\"Quisque sed nibh tristique\" heading_tag=\"h3\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;\"]\r\n<ul>\r\n 	<li>Duis lorem risus, aliquet a auctor a, venenatis in dui. Praesent et eros et risus dapibus placerat hendrerit cursus magna.</li>\r\n 	<li>Praesent et eros et risus dapibus placerat hendrerit cursus magna.</li>\r\n 	<li>aliquet a auctor a, venenatis in dui.</li>\r\n</ul>\r\n[/ultimate_heading][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/2\"][ult_animation_block animation=\"fadeInDown\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][dt_fancy_image image_id=\"3171\" width=\"300\" border_radius=\"1px\" caption=\"off\" css=\".vc_custom_1692278929158{border-top-width: 1px !important;border-right-width: 1px !important;border-bottom-width: 1px !important;border-left-width: 1px !important;border-left-color: #059444 !important;border-left-style: solid !important;border-right-color: #059444 !important;border-right-style: solid !important;border-top-color: #059444 !important;border-top-style: solid !important;border-bottom-color: #059444 !important;border-bottom-style: solid !important;border-radius: 1px !important;}\"][ultimate_heading main_heading=\"Quisque sed nibh tristique\" heading_tag=\"h3\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;\"]\r\n<ul>\r\n 	<li>Duis lorem risus, aliquet a auctor a, venenatis in dui. Praesent et eros et risus dapibus placerat hendrerit cursus magna.</li>\r\n 	<li>Praesent et eros et risus dapibus placerat hendrerit cursus magna.</li>\r\n 	<li>aliquet a auctor a, venenatis in dui.</li>\r\n</ul>\r\n[/ultimate_heading][/ult_animation_block][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row]','About us','','inherit','closed','closed','','2917-revision-v1','','','2023-09-02 04:15:38','2023-09-02 04:15:38','',2917,'https://farmchemie.yasithawd.com/?p=3426',0,'revision','',0),(3428,1,'2023-09-02 04:48:49','2023-09-02 04:48:49','[vc_row full_width=\"stretch_row_content_no_spaces\"][vc_column][ultimate_heading main_heading=\"Our History\" main_heading_color=\"#762888\"][/ultimate_heading][/vc_column][/vc_row][vc_row][vc_column][vc_row_inner equal_height=\"yes\" content_placement=\"middle\" css=\".vc_custom_1692359205466{margin-top: 35px !important;}\"][vc_column_inner width=\"1/2\"][ult_animation_block animation=\"fadeInLeftBig\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][vc_single_image image=\"3273\" img_size=\"full\" alignment=\"center\" style=\"vc_box_rounded\"][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/2\"][ult_animation_block animation=\"fadeInRightBig\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][ultimate_heading main_heading=\"Founded in 2002\" heading_tag=\"h3\" main_heading_color=\"#039447\" alignment=\"left\" sub_heading_font_size=\"desktop:18px;\"]Founded in 2002 by Mr. Uditha Wanigasinghe, an agriculturist who had a mission to aid valuable livestock producers in the country to enhance the yield and profitability of production. FARMCHEMIE introduced unprecedented solutions and consistent technical services to gain our customers’ trust and became the market leader in animal health products in 2006 within just four years.[/ultimate_heading][/ult_animation_block][/vc_column_inner][/vc_row_inner][vc_separator color=\"custom\" accent_color=\"#039447\"][vc_row_inner equal_height=\"yes\" rtl_reverse=\"yes\" content_placement=\"middle\" css=\".vc_custom_1692359216075{margin-top: 35px !important;}\"][vc_column_inner width=\"1/2\"][ult_animation_block animation=\"fadeInLeftBig\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][ultimate_heading main_heading=\"2006\" heading_tag=\"h3\" main_heading_color=\"#039447\" alignment=\"right\"]In 2006, the Sri Lankan poultry industry was affected with Avian Influenza which became a difficult period for the growth of FARMCHEMIE. This was the key factor in our decision to diversify into Agro Products. PLANTCHEM &amp; PLANTSEEDS were established to offer solutions in Agro specialty fertilizers, pesticides and seeds to invaluable cultivators.[/ultimate_heading][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/2\"][ult_animation_block animation=\"fadeInRightBig\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][vc_single_image image=\"3276\" img_size=\"full\" alignment=\"center\" style=\"vc_box_rounded\"][/ult_animation_block][/vc_column_inner][/vc_row_inner][vc_separator color=\"custom\" accent_color=\"#039447\"][vc_row_inner equal_height=\"yes\" content_placement=\"middle\" css=\".vc_custom_1692359231594{margin-top: 35px !important;}\"][vc_column_inner width=\"1/2\"][ult_animation_block animation=\"fadeInLeftBig\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][vc_single_image image=\"3277\" img_size=\"full\" alignment=\"center\" style=\"vc_box_rounded\"][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/2\"][ult_animation_block animation=\"fadeInRightBig\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][ultimate_heading main_heading=\"2010\" heading_tag=\"h3\" main_heading_color=\"#039447\" alignment=\"left\"]In 2010, FEED CHEMIE became the subsequent addition to ever-growing vision of Mr. Uditha Wanigasinghe and entered the Animal Feed Additives market.[/ultimate_heading][/ult_animation_block][/vc_column_inner][/vc_row_inner][vc_separator color=\"custom\" accent_color=\"#039447\"][vc_row_inner equal_height=\"yes\" rtl_reverse=\"yes\" content_placement=\"middle\" css=\".vc_custom_1692359239274{margin-top: 35px !important;}\"][vc_column_inner width=\"1/2\"][ult_animation_block animation=\"fadeInLeftBig\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][ultimate_heading main_heading=\"2012\" heading_tag=\"h3\" main_heading_color=\"#039447\" alignment=\"right\"]The year 2012 is described as a turning point in our journey as FARMCHEMIE established our first production facility for the manufacturing and packing of animal health products. FARMCHEMIE became the first animal health organization in Sri Lanka to obtain ISO 9001:2015 and WHO GMP International Quality Certification. With our own formulation unit, FARMCHEMIE was able to offer customized solutions to cater the needs of the Sri Lankan Livestock Industry.[/ultimate_heading][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/2\"][ult_animation_block animation=\"fadeInRightBig\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][vc_single_image image=\"3278\" img_size=\"full\" alignment=\"center\" style=\"vc_box_rounded\"][/ult_animation_block][/vc_column_inner][/vc_row_inner][vc_separator color=\"custom\" accent_color=\"#039447\"][vc_row_inner content_placement=\"middle\" css=\".vc_custom_1692359246626{margin-top: 35px !important;}\"][vc_column_inner width=\"1/2\"][ult_animation_block animation=\"fadeInLeftBig\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][vc_single_image image=\"3279\" img_size=\"full\" alignment=\"center\" style=\"vc_box_rounded\"][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/2\"][ult_animation_block animation=\"fadeInRightBig\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][ultimate_heading main_heading=\"2016\" heading_tag=\"h3\" main_heading_color=\"#039447\" alignment=\"left\"]The year 2016 was another key milestone with the entry to the International Markets. FARMCHEMIE exported our first Feed Premix consignment to India and in 2018 our export operation was distinctly established as FARMCHEMIE MANUFACTURERS, a Board of Investment (BOI) approved entity.[/ultimate_heading][/ult_animation_block][/vc_column_inner][/vc_row_inner][vc_separator color=\"custom\" accent_color=\"#039447\"][vc_row_inner equal_height=\"yes\" content_placement=\"middle\" css=\".vc_custom_1692422601938{margin-top: 35px !important;}\"][vc_column_inner width=\"1/2\"][ult_animation_block animation=\"fadeInLeftBig\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][ultimate_heading main_heading=\"Fully automated manufacturing\" heading_tag=\"h3\" main_heading_color=\"#039447\" alignment=\"right\"]FARMCHEMIE MANUFACTURERS has invested in fully automated manufacturing facility from Bühler and became the first Sri Lankan owned company to obtain FAMI-QS International Quality Certification.[/ultimate_heading][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/2\"][ult_animation_block animation=\"fadeInRightBig\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][vc_single_image image=\"3280\" img_size=\"full\" alignment=\"center\" style=\"vc_box_rounded\"][/ult_animation_block][/vc_column_inner][/vc_row_inner][vc_separator color=\"custom\" accent_color=\"#039447\"][vc_row_inner equal_height=\"yes\" content_placement=\"middle\" css=\".vc_custom_1692359258634{margin-top: 35px !important;}\"][vc_column_inner width=\"1/2\"][ult_animation_block animation=\"fadeInLeftBig\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][vc_single_image image=\"3281\" img_size=\"full\" alignment=\"center\" style=\"vc_box_rounded\"][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/2\"][ult_animation_block animation=\"fadeInRightBig\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][ultimate_heading main_heading=\"Official toll manufacturer partner\" heading_tag=\"h3\" main_heading_color=\"#039447\" alignment=\"left\"]With the trust and reputation built as a reliable manufacturer of animal feed additives and supplements in the global market, several world-renowned international brands have appointed FARMCHEMIE MANUFACTURERS as the official toll manufacturer partner. FARMCHEMIE MANUFACTURERS exports a wide range of products consisting of premixes, specialty feed additives, oral liquid supplements and pet supplements to various markets in South Asia, East Asia, Middle East and Africa.\r\n\r\nFARMCHEMIE, FEED CHEMIE &amp; FARMCHEMIE MANUFACTURERS currently operate under the ownership of our holding company, DYVESTA.\r\n\r\nDYEVSTA has become the pinnacle of Animal Nutrition and Health.\r\n\r\nDYVESTA is Dynamic, through our continuous evolution, growth and progress. DYVESTA is Diverse, in terms of both our business strategy and our community. DYVESTA is Devoted to our valuable business partners through exceptional service.[/ultimate_heading][/ult_animation_block][/vc_column_inner][/vc_row_inner][vc_separator color=\"custom\" accent_color=\"#039447\"][/vc_column][/vc_row][vc_row full_width=\"stretch_row\" equal_height=\"yes\" bg_type=\"image\" parallax_style=\"vcpb-vz-jquery\" bg_image_new=\"id^3256|url^https://farmchemie.yasithawd.com/wp-content/uploads/2023/08/Vision-Mission.png|caption^null|alt^null|title^Vision-&amp;-Mission|description^null\" bg_image_repeat=\"no-repeat\" enable_overlay=\"enable_overlay_value\" overlay_color=\"#000000\" overlay_pattern=\"01.png\" overlay_pattern_opacity=\"5\" css=\".vc_custom_1692366072362{margin-top: 35px !important;padding-top: 65px !important;padding-bottom: 100px !important;}\"][vc_column][vc_row_inner equal_height=\"yes\"][vc_column_inner width=\"1/2\"][ult_animation_block animation=\"fadeInLeftBig\" animation_duration=\"2\" animation_delay=\"0\" animation_iteration_count=\"1\"][ultimate_heading main_heading=\"Vision\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\"]To be the customers’ first and best choice by ensuring outstanding satisfaction through a well-trained and dedicated team. Prompt and quality solutions to our customers’ requirements will determine the increase of return on investment for us.[/ultimate_heading][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/2\"][ult_animation_block animation=\"fadeInRightBig\" animation_duration=\"2\" animation_delay=\"0\" animation_iteration_count=\"1\"][ultimate_heading main_heading=\"Mission\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\"]To become a world renowned manufacturer of Animal Health products and a trusted partner among our stakeholders for our integrity as well as for providing effective solutions[/ultimate_heading][/ult_animation_block][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row css=\".vc_custom_1684836308288{margin-top: 15px !important;}\"][vc_column][ultimate_heading main_heading=\"Achievements\" main_heading_color=\"#762888\" main_heading_margin=\"margin-top:35px;\"][/ultimate_heading][vc_row_inner gap=\"20\"][vc_column_inner width=\"1/2\" css=\".vc_custom_1691995519863{background-color: #f4ab20 !important;border: 1px solid #f4ab20 !important;border-radius: 35px !important;}\"][ult_animation_block animation=\"fadeInLeftBig\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][bsf-info-box icon_type=\"custom\" icon_img=\"id^3117|url^https://farmchemie.yasithawd.com/wp-content/uploads/2023/08/Pink_-H.png|caption^null|alt^null|title^Pink_-H|description^null\" img_width=\"60\" icon_style=\"advanced\" icon_border_style=\"solid\" icon_color_border=\"#ffffff\" icon_border_size=\"1\" icon_border_radius=\"500\" icon_border_spacing=\"1\" title=\"First Free Sale Certificate obtained from Veterinary Drug Control Authority (VDCA) for Veterinary Pharmaceuticals\" title_font_style=\"font-weight:bold;\" title_font_size=\"desktop:20px;\"][/bsf-info-box][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/2\" css=\".vc_custom_1691995661095{background-color: #722f8b !important;border: 1px solid #722f8b !important;border-radius: 35px !important;}\"][ult_animation_block animation=\"fadeInRightBig\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][bsf-info-box icon_type=\"custom\" icon_img=\"id^3117|url^https://farmchemie.yasithawd.com/wp-content/uploads/2023/08/Pink_-H.png|caption^null|alt^null|title^Pink_-H|description^null\" img_width=\"60\" icon_style=\"advanced\" icon_border_style=\"solid\" icon_color_border=\"#ffffff\" icon_border_size=\"1\" icon_border_radius=\"500\" icon_border_spacing=\"1\" title=\"First ISO 9001: 2015 ,WHO-GMP Quality Management systems certified Animal Health company in Sri Lanka since August, 2012\" title_font_style=\"font-weight:bold;\" title_font_color=\"#ffffff\" title_font_size=\"desktop:20px;\"][/bsf-info-box][/ult_animation_block][/vc_column_inner][/vc_row_inner][vc_row_inner gap=\"20\"][vc_column_inner width=\"1/2\" css=\".vc_custom_1691995661095{background-color: #722f8b !important;border: 1px solid #722f8b !important;border-radius: 35px !important;}\"][ult_animation_block animation=\"fadeInLeftBig\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][bsf-info-box icon_type=\"custom\" icon_img=\"id^3117|url^https://farmchemie.yasithawd.com/wp-content/uploads/2023/08/Pink_-H.png|caption^null|alt^null|title^Pink_-H|description^null\" img_width=\"60\" icon_style=\"advanced\" icon_border_style=\"solid\" icon_color_border=\"#ffffff\" icon_border_size=\"1\" icon_border_radius=\"500\" icon_border_spacing=\"1\" title=\"First FAMI-QS certified company in sri lanka\" title_font_style=\"font-weight:bold;\" title_font_color=\"#ffffff\" title_font_size=\"desktop:20px;\"][/bsf-info-box][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/2\" css=\".vc_custom_1691995519863{background-color: #f4ab20 !important;border: 1px solid #f4ab20 !important;border-radius: 35px !important;}\"][ult_animation_block animation=\"fadeInRightBig\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][bsf-info-box icon_type=\"custom\" icon_img=\"id^3117|url^https://farmchemie.yasithawd.com/wp-content/uploads/2023/08/Pink_-H.png|caption^null|alt^null|title^Pink_-H|description^null\" img_width=\"60\" icon_style=\"advanced\" icon_border_style=\"solid\" icon_color_border=\"#ffffff\" icon_border_size=\"1\" icon_border_radius=\"500\" icon_border_spacing=\"1\" title=\"First Certificate of Ethical Trading certified in Livestock industry\" title_font_style=\"font-weight:bold;\" title_font_size=\"desktop:20px;\"][/bsf-info-box][/ult_animation_block][/vc_column_inner][/vc_row_inner][vc_row_inner gap=\"20\"][vc_column_inner width=\"1/4\" css=\".vc_custom_1691996718116{border-radius: 35px !important;}\"][/vc_column_inner][vc_column_inner width=\"2/4\" css=\".vc_custom_1691995519863{background-color: #f4ab20 !important;border: 1px solid #f4ab20 !important;border-radius: 35px !important;}\"][ult_animation_block animation=\"fadeInUpBig\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][bsf-info-box icon_type=\"custom\" icon_img=\"id^3117|url^https://farmchemie.yasithawd.com/wp-content/uploads/2023/08/Pink_-H.png|caption^null|alt^null|title^Pink_-H|description^null\" img_width=\"60\" icon_style=\"advanced\" icon_border_style=\"solid\" icon_color_border=\"#ffffff\" icon_border_size=\"1\" icon_border_radius=\"500\" icon_border_spacing=\"1\" title=\"First Silver awarded company at National Exports Awards in Livestock industry\" title_font_style=\"font-weight:bold;\" title_font_size=\"desktop:20px;\"][/bsf-info-box][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/4\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row full_width=\"stretch_row\" equal_height=\"yes\" content_placement=\"bottom\" css=\".vc_custom_1693627699480{margin-top: 15px !important;}\"][vc_column][ultimate_heading main_heading=\"Certifications\" main_heading_color=\"#762888\" main_heading_margin=\"margin-top:35px;\"][/ultimate_heading][vc_row_inner content_placement=\"bottom\"][vc_column_inner width=\"1/6\"][dt_fancy_image image_id=\"3407\" width=\"300\" caption=\"off\"][/vc_column_inner][vc_column_inner width=\"1/6\"][dt_fancy_image image_id=\"3408\" width=\"300\" caption=\"off\"][/vc_column_inner][vc_column_inner width=\"1/6\"][dt_fancy_image image_id=\"3409\" width=\"300\" caption=\"off\"][/vc_column_inner][vc_column_inner width=\"1/6\"][dt_fancy_image image_id=\"3411\" width=\"300\" caption=\"off\"][/vc_column_inner][vc_column_inner width=\"1/6\"][dt_fancy_image image_id=\"3410\" width=\"300\" caption=\"off\"][/vc_column_inner][vc_column_inner width=\"1/6\"][dt_fancy_image image_id=\"3406\" width=\"300\" caption=\"off\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row full_width=\"stretch_row\" equal_height=\"yes\" content_placement=\"bottom\" css=\".vc_custom_1693625624233{margin-top: 15px !important;}\"][vc_column][ultimate_heading main_heading=\"Awards\" main_heading_color=\"#762888\" main_heading_margin=\"margin-top:35px;\"][/ultimate_heading][ultimate_carousel][dt_fancy_image image_id=\"3412\" width=\"300\" caption=\"off\"][dt_fancy_image image_id=\"3413\" width=\"300\" caption=\"off\"][dt_fancy_image image_id=\"3414\" width=\"300\" caption=\"off\"][dt_fancy_image image_id=\"3415\" width=\"300\" caption=\"off\"][dt_fancy_image image_id=\"3416\" width=\"300\" caption=\"off\"][dt_fancy_image image_id=\"3417\" width=\"300\" caption=\"off\"][dt_fancy_image image_id=\"3418\" width=\"300\" caption=\"off\"][dt_fancy_image image_id=\"3420\" width=\"300\" caption=\"off\"][dt_fancy_image image_id=\"3419\" width=\"300\" caption=\"off\"][dt_fancy_image image_id=\"3422\" width=\"300\" caption=\"off\"][dt_fancy_image image_id=\"3421\" width=\"300\" caption=\"off\"][dt_fancy_image image_id=\"3422\" width=\"300\" caption=\"off\"][dt_fancy_image image_id=\"3423\" width=\"300\" caption=\"off\"][dt_fancy_image image_id=\"3424\" width=\"300\" caption=\"off\"][dt_fancy_image image_id=\"3425\" width=\"300\" caption=\"off\"][/ultimate_carousel][/vc_column][/vc_row][vc_row css=\".vc_custom_1693625068958{margin-top: 15px !important;}\"][vc_column][ultimate_heading main_heading=\"Board Of Directors\" main_heading_color=\"#762888\" main_heading_margin=\"margin-top:35px;margin-bottom:35px;\"][/ultimate_heading][ultimate_carousel slides_on_desk=\"3\" slides_on_mob=\"1\" arrow_style=\"square-bg\" arrow_bg_color=\"#039447\" arrow_color=\"#ffffff\" next_icon=\"ultsl-arrow-right6\" prev_icon=\"ultsl-arrow-left6\" dots_color=\"#039447\" item_animation=\"fadeIn\"][vc_row_inner][vc_column_inner][dt_fancy_image image_id=\"3173\" width=\"300\" border_radius=\"1px\" caption=\"off\"][ultimate_heading main_heading=\"Quisque sed nibh tristique\" heading_tag=\"h3\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;\"]Duis lorem risus, aliquet a auctor a, venenatis in dui. Praesent et eros et risus dapibus placerat hendrerit cursus magna.[/ultimate_heading][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner][dt_fancy_image image_id=\"3170\" width=\"300\" border_radius=\"1px\" caption=\"off\"][ultimate_heading main_heading=\"Quisque sed nibh tristique\" heading_tag=\"h3\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;\"]Duis lorem risus, aliquet a auctor a, venenatis in dui. Praesent et eros et risus dapibus placerat hendrerit cursus magna.[/ultimate_heading][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner][dt_fancy_image image_id=\"3171\" width=\"300\" border_radius=\"1px\" caption=\"off\"][ultimate_heading main_heading=\"Quisque sed nibh tristique\" heading_tag=\"h3\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;\"]Duis lorem risus, aliquet a auctor a, venenatis in dui. Praesent et eros et risus dapibus placerat hendrerit cursus magna.[/ultimate_heading][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner][dt_fancy_image image_id=\"3172\" width=\"300\" border_radius=\"1px\" caption=\"off\"][ultimate_heading main_heading=\"Quisque sed nibh tristique\" heading_tag=\"h3\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;\"]Duis lorem risus, aliquet a auctor a, venenatis in dui. Praesent et eros et risus dapibus placerat hendrerit cursus magna.[/ultimate_heading][/vc_column_inner][/vc_row_inner][/ultimate_carousel][/vc_column][/vc_row][vc_row disable_element=\"yes\"][vc_column][ultimate_heading main_heading=\"Board Of Directors\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;margin-bottom:35px;\"][/ultimate_heading][vc_row_inner][vc_column_inner width=\"1/3\"][ult_animation_block animation=\"fadeInUp\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][dt_fancy_image image_id=\"3172\" width=\"300\" border_radius=\"1px\" caption=\"off\" css=\".vc_custom_1692278922309{border-top-width: 1px !important;border-right-width: 1px !important;border-bottom-width: 1px !important;border-left-width: 1px !important;border-left-color: #059444 !important;border-left-style: solid !important;border-right-color: #059444 !important;border-right-style: solid !important;border-top-color: #059444 !important;border-top-style: solid !important;border-bottom-color: #059444 !important;border-bottom-style: solid !important;border-radius: 1px !important;}\"][ultimate_heading main_heading=\"Quisque sed nibh tristique\" heading_tag=\"h3\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;\"]\r\n<ul>\r\n 	<li>Duis lorem risus, aliquet a auctor a, venenatis in dui. Praesent et eros et risus dapibus placerat hendrerit cursus magna.</li>\r\n 	<li>Praesent et eros et risus dapibus placerat hendrerit cursus magna.</li>\r\n 	<li>aliquet a auctor a, venenatis in dui.</li>\r\n</ul>\r\n[/ultimate_heading][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/3\"][ult_animation_block animation=\"fadeInDown\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][dt_fancy_image image_id=\"3171\" width=\"300\" border_radius=\"1px\" caption=\"off\" css=\".vc_custom_1692278929158{border-top-width: 1px !important;border-right-width: 1px !important;border-bottom-width: 1px !important;border-left-width: 1px !important;border-left-color: #059444 !important;border-left-style: solid !important;border-right-color: #059444 !important;border-right-style: solid !important;border-top-color: #059444 !important;border-top-style: solid !important;border-bottom-color: #059444 !important;border-bottom-style: solid !important;border-radius: 1px !important;}\"][ultimate_heading main_heading=\"Quisque sed nibh tristique\" heading_tag=\"h3\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;\"]\r\n<ul>\r\n 	<li>Duis lorem risus, aliquet a auctor a, venenatis in dui. Praesent et eros et risus dapibus placerat hendrerit cursus magna.</li>\r\n 	<li>Praesent et eros et risus dapibus placerat hendrerit cursus magna.</li>\r\n 	<li>aliquet a auctor a, venenatis in dui.</li>\r\n</ul>\r\n[/ultimate_heading][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/3\"][ult_animation_block animation=\"fadeInUp\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][dt_fancy_image image_id=\"3170\" width=\"300\" border_radius=\"1px\" caption=\"off\" css=\".vc_custom_1692278936750{border-top-width: 1px !important;border-right-width: 1px !important;border-bottom-width: 1px !important;border-left-width: 1px !important;border-left-color: #059444 !important;border-left-style: solid !important;border-right-color: #059444 !important;border-right-style: solid !important;border-top-color: #059444 !important;border-top-style: solid !important;border-bottom-color: #059444 !important;border-bottom-style: solid !important;border-radius: 1px !important;}\"][ultimate_heading main_heading=\"Quisque sed nibh tristique\" heading_tag=\"h3\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;\"]\r\n<ul>\r\n 	<li>Duis lorem risus, aliquet a auctor a, venenatis in dui. Praesent et eros et risus dapibus placerat hendrerit cursus magna.</li>\r\n 	<li>Praesent et eros et risus dapibus placerat hendrerit cursus magna.</li>\r\n 	<li>aliquet a auctor a, venenatis in dui.</li>\r\n</ul>\r\n[/ultimate_heading][/ult_animation_block][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row disable_element=\"yes\"][vc_column][ultimate_heading main_heading=\"Executive Directors\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;margin-bottom:35px;\"][/ultimate_heading][vc_row_inner][vc_column_inner width=\"1/5\"][ult_animation_block animation=\"fadeInUp\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][dt_fancy_image image_id=\"3172\" width=\"300\" border_radius=\"1px\" caption=\"off\" css=\".vc_custom_1692278922309{border-top-width: 1px !important;border-right-width: 1px !important;border-bottom-width: 1px !important;border-left-width: 1px !important;border-left-color: #059444 !important;border-left-style: solid !important;border-right-color: #059444 !important;border-right-style: solid !important;border-top-color: #059444 !important;border-top-style: solid !important;border-bottom-color: #059444 !important;border-bottom-style: solid !important;border-radius: 1px !important;}\"][ultimate_heading main_heading=\"Quisque sed nibh tristique\" heading_tag=\"h3\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;\"]\r\n<ul>\r\n 	<li>Duis lorem risus, aliquet a auctor a, venenatis in dui. Praesent et eros et risus dapibus placerat hendrerit cursus magna.</li>\r\n 	<li>Praesent et eros et risus dapibus placerat hendrerit cursus magna.</li>\r\n 	<li>aliquet a auctor a, venenatis in dui.</li>\r\n</ul>\r\n[/ultimate_heading][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/5\"][ult_animation_block animation=\"fadeInDown\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][dt_fancy_image image_id=\"3171\" width=\"300\" border_radius=\"1px\" caption=\"off\" css=\".vc_custom_1692278929158{border-top-width: 1px !important;border-right-width: 1px !important;border-bottom-width: 1px !important;border-left-width: 1px !important;border-left-color: #059444 !important;border-left-style: solid !important;border-right-color: #059444 !important;border-right-style: solid !important;border-top-color: #059444 !important;border-top-style: solid !important;border-bottom-color: #059444 !important;border-bottom-style: solid !important;border-radius: 1px !important;}\"][ultimate_heading main_heading=\"Quisque sed nibh tristique\" heading_tag=\"h3\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;\"]\r\n<ul>\r\n 	<li>Duis lorem risus, aliquet a auctor a, venenatis in dui. Praesent et eros et risus dapibus placerat hendrerit cursus magna.</li>\r\n 	<li>Praesent et eros et risus dapibus placerat hendrerit cursus magna.</li>\r\n 	<li>aliquet a auctor a, venenatis in dui.</li>\r\n</ul>\r\n[/ultimate_heading][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/5\"][ult_animation_block animation=\"fadeInUp\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][dt_fancy_image image_id=\"3170\" width=\"300\" border_radius=\"1px\" caption=\"off\" css=\".vc_custom_1692278936750{border-top-width: 1px !important;border-right-width: 1px !important;border-bottom-width: 1px !important;border-left-width: 1px !important;border-left-color: #059444 !important;border-left-style: solid !important;border-right-color: #059444 !important;border-right-style: solid !important;border-top-color: #059444 !important;border-top-style: solid !important;border-bottom-color: #059444 !important;border-bottom-style: solid !important;border-radius: 1px !important;}\"][ultimate_heading main_heading=\"Quisque sed nibh tristique\" heading_tag=\"h3\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;\"]\r\n<ul>\r\n 	<li>Duis lorem risus, aliquet a auctor a, venenatis in dui. Praesent et eros et risus dapibus placerat hendrerit cursus magna.</li>\r\n 	<li>Praesent et eros et risus dapibus placerat hendrerit cursus magna.</li>\r\n 	<li>aliquet a auctor a, venenatis in dui.</li>\r\n</ul>\r\n[/ultimate_heading][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/5\"][ult_animation_block animation=\"fadeInDown\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][dt_fancy_image image_id=\"3170\" width=\"300\" border_radius=\"1px\" caption=\"off\" css=\".vc_custom_1692278936750{border-top-width: 1px !important;border-right-width: 1px !important;border-bottom-width: 1px !important;border-left-width: 1px !important;border-left-color: #059444 !important;border-left-style: solid !important;border-right-color: #059444 !important;border-right-style: solid !important;border-top-color: #059444 !important;border-top-style: solid !important;border-bottom-color: #059444 !important;border-bottom-style: solid !important;border-radius: 1px !important;}\"][ultimate_heading main_heading=\"Quisque sed nibh tristique\" heading_tag=\"h3\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;\"]\r\n<ul>\r\n 	<li>Duis lorem risus, aliquet a auctor a, venenatis in dui. Praesent et eros et risus dapibus placerat hendrerit cursus magna.</li>\r\n 	<li>Praesent et eros et risus dapibus placerat hendrerit cursus magna.</li>\r\n 	<li>aliquet a auctor a, venenatis in dui.</li>\r\n</ul>\r\n[/ultimate_heading][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/5\"][ult_animation_block animation=\"fadeInDown\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][dt_fancy_image image_id=\"3171\" width=\"300\" border_radius=\"1px\" caption=\"off\" css=\".vc_custom_1692278929158{border-top-width: 1px !important;border-right-width: 1px !important;border-bottom-width: 1px !important;border-left-width: 1px !important;border-left-color: #059444 !important;border-left-style: solid !important;border-right-color: #059444 !important;border-right-style: solid !important;border-top-color: #059444 !important;border-top-style: solid !important;border-bottom-color: #059444 !important;border-bottom-style: solid !important;border-radius: 1px !important;}\"][ultimate_heading main_heading=\"Quisque sed nibh tristique\" heading_tag=\"h3\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;\"]\r\n<ul>\r\n 	<li>Duis lorem risus, aliquet a auctor a, venenatis in dui. Praesent et eros et risus dapibus placerat hendrerit cursus magna.</li>\r\n 	<li>Praesent et eros et risus dapibus placerat hendrerit cursus magna.</li>\r\n 	<li>aliquet a auctor a, venenatis in dui.</li>\r\n</ul>\r\n[/ultimate_heading][/ult_animation_block][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner width=\"2/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row disable_element=\"yes\"][vc_column][ultimate_heading main_heading=\"Next Generation\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;margin-bottom:35px;\"][/ultimate_heading][vc_row_inner][vc_column_inner width=\"1/2\"][ult_animation_block animation=\"fadeInUp\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][dt_fancy_image image_id=\"3172\" width=\"300\" border_radius=\"1px\" caption=\"off\" css=\".vc_custom_1692278922309{border-top-width: 1px !important;border-right-width: 1px !important;border-bottom-width: 1px !important;border-left-width: 1px !important;border-left-color: #059444 !important;border-left-style: solid !important;border-right-color: #059444 !important;border-right-style: solid !important;border-top-color: #059444 !important;border-top-style: solid !important;border-bottom-color: #059444 !important;border-bottom-style: solid !important;border-radius: 1px !important;}\"][ultimate_heading main_heading=\"Quisque sed nibh tristique\" heading_tag=\"h3\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;\"]\r\n<ul>\r\n 	<li>Duis lorem risus, aliquet a auctor a, venenatis in dui. Praesent et eros et risus dapibus placerat hendrerit cursus magna.</li>\r\n 	<li>Praesent et eros et risus dapibus placerat hendrerit cursus magna.</li>\r\n 	<li>aliquet a auctor a, venenatis in dui.</li>\r\n</ul>\r\n[/ultimate_heading][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/2\"][ult_animation_block animation=\"fadeInDown\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][dt_fancy_image image_id=\"3171\" width=\"300\" border_radius=\"1px\" caption=\"off\" css=\".vc_custom_1692278929158{border-top-width: 1px !important;border-right-width: 1px !important;border-bottom-width: 1px !important;border-left-width: 1px !important;border-left-color: #059444 !important;border-left-style: solid !important;border-right-color: #059444 !important;border-right-style: solid !important;border-top-color: #059444 !important;border-top-style: solid !important;border-bottom-color: #059444 !important;border-bottom-style: solid !important;border-radius: 1px !important;}\"][ultimate_heading main_heading=\"Quisque sed nibh tristique\" heading_tag=\"h3\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;\"]\r\n<ul>\r\n 	<li>Duis lorem risus, aliquet a auctor a, venenatis in dui. Praesent et eros et risus dapibus placerat hendrerit cursus magna.</li>\r\n 	<li>Praesent et eros et risus dapibus placerat hendrerit cursus magna.</li>\r\n 	<li>aliquet a auctor a, venenatis in dui.</li>\r\n</ul>\r\n[/ultimate_heading][/ult_animation_block][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row]','About us','','inherit','closed','closed','','2917-revision-v1','','','2023-09-02 04:48:49','2023-09-02 04:48:49','',2917,'https://farmchemie.yasithawd.com/?p=3428',0,'revision','',0),(3427,1,'2023-09-02 04:24:09','2023-09-02 04:24:09','[vc_row full_width=\"stretch_row_content_no_spaces\"][vc_column][ultimate_heading main_heading=\"Our History\" main_heading_color=\"#762888\"][/ultimate_heading][/vc_column][/vc_row][vc_row][vc_column][vc_row_inner equal_height=\"yes\" content_placement=\"middle\" css=\".vc_custom_1692359205466{margin-top: 35px !important;}\"][vc_column_inner width=\"1/2\"][ult_animation_block animation=\"fadeInLeftBig\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][vc_single_image image=\"3273\" img_size=\"full\" alignment=\"center\" style=\"vc_box_rounded\"][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/2\"][ult_animation_block animation=\"fadeInRightBig\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][ultimate_heading main_heading=\"Founded in 2002\" heading_tag=\"h3\" main_heading_color=\"#039447\" alignment=\"left\" sub_heading_font_size=\"desktop:18px;\"]Founded in 2002 by Mr. Uditha Wanigasinghe, an agriculturist who had a mission to aid valuable livestock producers in the country to enhance the yield and profitability of production. FARMCHEMIE introduced unprecedented solutions and consistent technical services to gain our customers’ trust and became the market leader in animal health products in 2006 within just four years.[/ultimate_heading][/ult_animation_block][/vc_column_inner][/vc_row_inner][vc_separator color=\"custom\" accent_color=\"#039447\"][vc_row_inner equal_height=\"yes\" rtl_reverse=\"yes\" content_placement=\"middle\" css=\".vc_custom_1692359216075{margin-top: 35px !important;}\"][vc_column_inner width=\"1/2\"][ult_animation_block animation=\"fadeInLeftBig\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][ultimate_heading main_heading=\"2006\" heading_tag=\"h3\" main_heading_color=\"#039447\" alignment=\"right\"]In 2006, the Sri Lankan poultry industry was affected with Avian Influenza which became a difficult period for the growth of FARMCHEMIE. This was the key factor in our decision to diversify into Agro Products. PLANTCHEM &amp; PLANTSEEDS were established to offer solutions in Agro specialty fertilizers, pesticides and seeds to invaluable cultivators.[/ultimate_heading][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/2\"][ult_animation_block animation=\"fadeInRightBig\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][vc_single_image image=\"3276\" img_size=\"full\" alignment=\"center\" style=\"vc_box_rounded\"][/ult_animation_block][/vc_column_inner][/vc_row_inner][vc_separator color=\"custom\" accent_color=\"#039447\"][vc_row_inner equal_height=\"yes\" content_placement=\"middle\" css=\".vc_custom_1692359231594{margin-top: 35px !important;}\"][vc_column_inner width=\"1/2\"][ult_animation_block animation=\"fadeInLeftBig\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][vc_single_image image=\"3277\" img_size=\"full\" alignment=\"center\" style=\"vc_box_rounded\"][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/2\"][ult_animation_block animation=\"fadeInRightBig\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][ultimate_heading main_heading=\"2010\" heading_tag=\"h3\" main_heading_color=\"#039447\" alignment=\"left\"]In 2010, FEED CHEMIE became the subsequent addition to ever-growing vision of Mr. Uditha Wanigasinghe and entered the Animal Feed Additives market.[/ultimate_heading][/ult_animation_block][/vc_column_inner][/vc_row_inner][vc_separator color=\"custom\" accent_color=\"#039447\"][vc_row_inner equal_height=\"yes\" rtl_reverse=\"yes\" content_placement=\"middle\" css=\".vc_custom_1692359239274{margin-top: 35px !important;}\"][vc_column_inner width=\"1/2\"][ult_animation_block animation=\"fadeInLeftBig\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][ultimate_heading main_heading=\"2012\" heading_tag=\"h3\" main_heading_color=\"#039447\" alignment=\"right\"]The year 2012 is described as a turning point in our journey as FARMCHEMIE established our first production facility for the manufacturing and packing of animal health products. FARMCHEMIE became the first animal health organization in Sri Lanka to obtain ISO 9001:2015 and WHO GMP International Quality Certification. With our own formulation unit, FARMCHEMIE was able to offer customized solutions to cater the needs of the Sri Lankan Livestock Industry.[/ultimate_heading][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/2\"][ult_animation_block animation=\"fadeInRightBig\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][vc_single_image image=\"3278\" img_size=\"full\" alignment=\"center\" style=\"vc_box_rounded\"][/ult_animation_block][/vc_column_inner][/vc_row_inner][vc_separator color=\"custom\" accent_color=\"#039447\"][vc_row_inner content_placement=\"middle\" css=\".vc_custom_1692359246626{margin-top: 35px !important;}\"][vc_column_inner width=\"1/2\"][ult_animation_block animation=\"fadeInLeftBig\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][vc_single_image image=\"3279\" img_size=\"full\" alignment=\"center\" style=\"vc_box_rounded\"][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/2\"][ult_animation_block animation=\"fadeInRightBig\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][ultimate_heading main_heading=\"2016\" heading_tag=\"h3\" main_heading_color=\"#039447\" alignment=\"left\"]The year 2016 was another key milestone with the entry to the International Markets. FARMCHEMIE exported our first Feed Premix consignment to India and in 2018 our export operation was distinctly established as FARMCHEMIE MANUFACTURERS, a Board of Investment (BOI) approved entity.[/ultimate_heading][/ult_animation_block][/vc_column_inner][/vc_row_inner][vc_separator color=\"custom\" accent_color=\"#039447\"][vc_row_inner equal_height=\"yes\" content_placement=\"middle\" css=\".vc_custom_1692422601938{margin-top: 35px !important;}\"][vc_column_inner width=\"1/2\"][ult_animation_block animation=\"fadeInLeftBig\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][ultimate_heading main_heading=\"Fully automated manufacturing\" heading_tag=\"h3\" main_heading_color=\"#039447\" alignment=\"right\"]FARMCHEMIE MANUFACTURERS has invested in fully automated manufacturing facility from Bühler and became the first Sri Lankan owned company to obtain FAMI-QS International Quality Certification.[/ultimate_heading][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/2\"][ult_animation_block animation=\"fadeInRightBig\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][vc_single_image image=\"3280\" img_size=\"full\" alignment=\"center\" style=\"vc_box_rounded\"][/ult_animation_block][/vc_column_inner][/vc_row_inner][vc_separator color=\"custom\" accent_color=\"#039447\"][vc_row_inner equal_height=\"yes\" content_placement=\"middle\" css=\".vc_custom_1692359258634{margin-top: 35px !important;}\"][vc_column_inner width=\"1/2\"][ult_animation_block animation=\"fadeInLeftBig\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][vc_single_image image=\"3281\" img_size=\"full\" alignment=\"center\" style=\"vc_box_rounded\"][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/2\"][ult_animation_block animation=\"fadeInRightBig\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][ultimate_heading main_heading=\"Official toll manufacturer partner\" heading_tag=\"h3\" main_heading_color=\"#039447\" alignment=\"left\"]With the trust and reputation built as a reliable manufacturer of animal feed additives and supplements in the global market, several world-renowned international brands have appointed FARMCHEMIE MANUFACTURERS as the official toll manufacturer partner. FARMCHEMIE MANUFACTURERS exports a wide range of products consisting of premixes, specialty feed additives, oral liquid supplements and pet supplements to various markets in South Asia, East Asia, Middle East and Africa.\r\n\r\nFARMCHEMIE, FEED CHEMIE &amp; FARMCHEMIE MANUFACTURERS currently operate under the ownership of our holding company, DYVESTA.\r\n\r\nDYEVSTA has become the pinnacle of Animal Nutrition and Health.\r\n\r\nDYVESTA is Dynamic, through our continuous evolution, growth and progress. DYVESTA is Diverse, in terms of both our business strategy and our community. DYVESTA is Devoted to our valuable business partners through exceptional service.[/ultimate_heading][/ult_animation_block][/vc_column_inner][/vc_row_inner][vc_separator color=\"custom\" accent_color=\"#039447\"][/vc_column][/vc_row][vc_row full_width=\"stretch_row\" equal_height=\"yes\" bg_type=\"image\" parallax_style=\"vcpb-vz-jquery\" bg_image_new=\"id^3256|url^https://farmchemie.yasithawd.com/wp-content/uploads/2023/08/Vision-Mission.png|caption^null|alt^null|title^Vision-&amp;-Mission|description^null\" bg_image_repeat=\"no-repeat\" enable_overlay=\"enable_overlay_value\" overlay_color=\"#000000\" overlay_pattern=\"01.png\" overlay_pattern_opacity=\"5\" css=\".vc_custom_1692366072362{margin-top: 35px !important;padding-top: 65px !important;padding-bottom: 100px !important;}\"][vc_column][vc_row_inner equal_height=\"yes\"][vc_column_inner width=\"1/2\"][ult_animation_block animation=\"fadeInLeftBig\" animation_duration=\"2\" animation_delay=\"0\" animation_iteration_count=\"1\"][ultimate_heading main_heading=\"Vision\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\"]To be the customers’ first and best choice by ensuring outstanding satisfaction through a well-trained and dedicated team. Prompt and quality solutions to our customers’ requirements will determine the increase of return on investment for us.[/ultimate_heading][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/2\"][ult_animation_block animation=\"fadeInRightBig\" animation_duration=\"2\" animation_delay=\"0\" animation_iteration_count=\"1\"][ultimate_heading main_heading=\"Mission\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\"]To become a world renowned manufacturer of Animal Health products and a trusted partner among our stakeholders for our integrity as well as for providing effective solutions[/ultimate_heading][/ult_animation_block][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row css=\".vc_custom_1684836308288{margin-top: 15px !important;}\"][vc_column][ultimate_heading main_heading=\"Achievements\" main_heading_color=\"#762888\" main_heading_margin=\"margin-top:35px;\"][/ultimate_heading][vc_row_inner gap=\"20\"][vc_column_inner width=\"1/2\" css=\".vc_custom_1691995519863{background-color: #f4ab20 !important;border: 1px solid #f4ab20 !important;border-radius: 35px !important;}\"][ult_animation_block animation=\"fadeInLeftBig\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][bsf-info-box icon_type=\"custom\" icon_img=\"id^3117|url^https://farmchemie.yasithawd.com/wp-content/uploads/2023/08/Pink_-H.png|caption^null|alt^null|title^Pink_-H|description^null\" img_width=\"60\" icon_style=\"advanced\" icon_border_style=\"solid\" icon_color_border=\"#ffffff\" icon_border_size=\"1\" icon_border_radius=\"500\" icon_border_spacing=\"1\" title=\"First Free Sale Certificate obtained from Veterinary Drug Control Authority (VDCA) for Veterinary Pharmaceuticals\" title_font_style=\"font-weight:bold;\" title_font_size=\"desktop:20px;\"][/bsf-info-box][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/2\" css=\".vc_custom_1691995661095{background-color: #722f8b !important;border: 1px solid #722f8b !important;border-radius: 35px !important;}\"][ult_animation_block animation=\"fadeInRightBig\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][bsf-info-box icon_type=\"custom\" icon_img=\"id^3117|url^https://farmchemie.yasithawd.com/wp-content/uploads/2023/08/Pink_-H.png|caption^null|alt^null|title^Pink_-H|description^null\" img_width=\"60\" icon_style=\"advanced\" icon_border_style=\"solid\" icon_color_border=\"#ffffff\" icon_border_size=\"1\" icon_border_radius=\"500\" icon_border_spacing=\"1\" title=\"First ISO 9001: 2015 ,WHO-GMP Quality Management systems certified Animal Health company in Sri Lanka since August, 2012\" title_font_style=\"font-weight:bold;\" title_font_color=\"#ffffff\" title_font_size=\"desktop:20px;\"][/bsf-info-box][/ult_animation_block][/vc_column_inner][/vc_row_inner][vc_row_inner gap=\"20\"][vc_column_inner width=\"1/2\" css=\".vc_custom_1691995661095{background-color: #722f8b !important;border: 1px solid #722f8b !important;border-radius: 35px !important;}\"][ult_animation_block animation=\"fadeInLeftBig\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][bsf-info-box icon_type=\"custom\" icon_img=\"id^3117|url^https://farmchemie.yasithawd.com/wp-content/uploads/2023/08/Pink_-H.png|caption^null|alt^null|title^Pink_-H|description^null\" img_width=\"60\" icon_style=\"advanced\" icon_border_style=\"solid\" icon_color_border=\"#ffffff\" icon_border_size=\"1\" icon_border_radius=\"500\" icon_border_spacing=\"1\" title=\"First FAMI-QS certified company in sri lanka\" title_font_style=\"font-weight:bold;\" title_font_color=\"#ffffff\" title_font_size=\"desktop:20px;\"][/bsf-info-box][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/2\" css=\".vc_custom_1691995519863{background-color: #f4ab20 !important;border: 1px solid #f4ab20 !important;border-radius: 35px !important;}\"][ult_animation_block animation=\"fadeInRightBig\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][bsf-info-box icon_type=\"custom\" icon_img=\"id^3117|url^https://farmchemie.yasithawd.com/wp-content/uploads/2023/08/Pink_-H.png|caption^null|alt^null|title^Pink_-H|description^null\" img_width=\"60\" icon_style=\"advanced\" icon_border_style=\"solid\" icon_color_border=\"#ffffff\" icon_border_size=\"1\" icon_border_radius=\"500\" icon_border_spacing=\"1\" title=\"First Certificate of Ethical Trading certified in Livestock industry\" title_font_style=\"font-weight:bold;\" title_font_size=\"desktop:20px;\"][/bsf-info-box][/ult_animation_block][/vc_column_inner][/vc_row_inner][vc_row_inner gap=\"20\"][vc_column_inner width=\"1/4\" css=\".vc_custom_1691996718116{border-radius: 35px !important;}\"][/vc_column_inner][vc_column_inner width=\"2/4\" css=\".vc_custom_1691995519863{background-color: #f4ab20 !important;border: 1px solid #f4ab20 !important;border-radius: 35px !important;}\"][ult_animation_block animation=\"fadeInUpBig\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][bsf-info-box icon_type=\"custom\" icon_img=\"id^3117|url^https://farmchemie.yasithawd.com/wp-content/uploads/2023/08/Pink_-H.png|caption^null|alt^null|title^Pink_-H|description^null\" img_width=\"60\" icon_style=\"advanced\" icon_border_style=\"solid\" icon_color_border=\"#ffffff\" icon_border_size=\"1\" icon_border_radius=\"500\" icon_border_spacing=\"1\" title=\"First Silver awarded company at National Exports Awards in Livestock industry\" title_font_style=\"font-weight:bold;\" title_font_size=\"desktop:20px;\"][/bsf-info-box][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/4\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row full_width=\"stretch_row\" equal_height=\"yes\" content_placement=\"bottom\" css=\".vc_custom_1693625624233{margin-top: 15px !important;}\"][vc_column][ultimate_heading main_heading=\"Certifications\" main_heading_color=\"#762888\" main_heading_margin=\"margin-top:35px;\"][/ultimate_heading][vc_row_inner content_placement=\"bottom\"][vc_column_inner width=\"1/3\"][dt_fancy_image image_id=\"3407\" width=\"300\" caption=\"off\"][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_fancy_image image_id=\"3408\" width=\"300\" caption=\"off\"][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_fancy_image image_id=\"3409\" width=\"300\" caption=\"off\"][/vc_column_inner][/vc_row_inner][vc_row_inner content_placement=\"bottom\"][vc_column_inner width=\"1/3\"][dt_fancy_image image_id=\"3411\" width=\"300\" caption=\"off\"][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_fancy_image image_id=\"3410\" width=\"300\" caption=\"off\"][/vc_column_inner][vc_column_inner width=\"1/3\"][dt_fancy_image image_id=\"3406\" width=\"300\" caption=\"off\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row full_width=\"stretch_row\" equal_height=\"yes\" content_placement=\"bottom\" css=\".vc_custom_1693627699480{margin-top: 15px !important;}\"][vc_column][ultimate_heading main_heading=\"Certifications\" main_heading_color=\"#762888\" main_heading_margin=\"margin-top:35px;\"][/ultimate_heading][vc_row_inner content_placement=\"bottom\"][vc_column_inner width=\"1/6\"][dt_fancy_image image_id=\"3407\" width=\"300\" caption=\"off\"][/vc_column_inner][vc_column_inner width=\"1/6\"][dt_fancy_image image_id=\"3408\" width=\"300\" caption=\"off\"][/vc_column_inner][vc_column_inner width=\"1/6\"][dt_fancy_image image_id=\"3409\" width=\"300\" caption=\"off\"][/vc_column_inner][vc_column_inner width=\"1/6\"][dt_fancy_image image_id=\"3411\" width=\"300\" caption=\"off\"][/vc_column_inner][vc_column_inner width=\"1/6\"][dt_fancy_image image_id=\"3410\" width=\"300\" caption=\"off\"][/vc_column_inner][vc_column_inner width=\"1/6\"][dt_fancy_image image_id=\"3406\" width=\"300\" caption=\"off\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row full_width=\"stretch_row\" equal_height=\"yes\" content_placement=\"bottom\" css=\".vc_custom_1693625624233{margin-top: 15px !important;}\"][vc_column][ultimate_heading main_heading=\"Awards\" main_heading_color=\"#762888\" main_heading_margin=\"margin-top:35px;\"][/ultimate_heading][ultimate_carousel][dt_fancy_image image_id=\"3412\" width=\"300\" caption=\"off\"][dt_fancy_image image_id=\"3413\" width=\"300\" caption=\"off\"][dt_fancy_image image_id=\"3414\" width=\"300\" caption=\"off\"][dt_fancy_image image_id=\"3415\" width=\"300\" caption=\"off\"][dt_fancy_image image_id=\"3416\" width=\"300\" caption=\"off\"][dt_fancy_image image_id=\"3417\" width=\"300\" caption=\"off\"][dt_fancy_image image_id=\"3418\" width=\"300\" caption=\"off\"][dt_fancy_image image_id=\"3420\" width=\"300\" caption=\"off\"][dt_fancy_image image_id=\"3419\" width=\"300\" caption=\"off\"][dt_fancy_image image_id=\"3422\" width=\"300\" caption=\"off\"][dt_fancy_image image_id=\"3421\" width=\"300\" caption=\"off\"][dt_fancy_image image_id=\"3422\" width=\"300\" caption=\"off\"][dt_fancy_image image_id=\"3423\" width=\"300\" caption=\"off\"][dt_fancy_image image_id=\"3424\" width=\"300\" caption=\"off\"][dt_fancy_image image_id=\"3425\" width=\"300\" caption=\"off\"][/ultimate_carousel][/vc_column][/vc_row][vc_row css=\".vc_custom_1693625068958{margin-top: 15px !important;}\"][vc_column][ultimate_heading main_heading=\"Board Of Directors\" main_heading_color=\"#762888\" main_heading_margin=\"margin-top:35px;margin-bottom:35px;\"][/ultimate_heading][ultimate_carousel slides_on_desk=\"3\" slides_on_mob=\"1\" arrow_style=\"square-bg\" arrow_bg_color=\"#039447\" arrow_color=\"#ffffff\" next_icon=\"ultsl-arrow-right6\" prev_icon=\"ultsl-arrow-left6\" dots_color=\"#039447\" item_animation=\"fadeIn\"][vc_row_inner][vc_column_inner][dt_fancy_image image_id=\"3173\" width=\"300\" border_radius=\"1px\" caption=\"off\"][ultimate_heading main_heading=\"Quisque sed nibh tristique\" heading_tag=\"h3\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;\"]Duis lorem risus, aliquet a auctor a, venenatis in dui. Praesent et eros et risus dapibus placerat hendrerit cursus magna.[/ultimate_heading][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner][dt_fancy_image image_id=\"3170\" width=\"300\" border_radius=\"1px\" caption=\"off\"][ultimate_heading main_heading=\"Quisque sed nibh tristique\" heading_tag=\"h3\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;\"]Duis lorem risus, aliquet a auctor a, venenatis in dui. Praesent et eros et risus dapibus placerat hendrerit cursus magna.[/ultimate_heading][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner][dt_fancy_image image_id=\"3171\" width=\"300\" border_radius=\"1px\" caption=\"off\"][ultimate_heading main_heading=\"Quisque sed nibh tristique\" heading_tag=\"h3\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;\"]Duis lorem risus, aliquet a auctor a, venenatis in dui. Praesent et eros et risus dapibus placerat hendrerit cursus magna.[/ultimate_heading][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner][dt_fancy_image image_id=\"3172\" width=\"300\" border_radius=\"1px\" caption=\"off\"][ultimate_heading main_heading=\"Quisque sed nibh tristique\" heading_tag=\"h3\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;\"]Duis lorem risus, aliquet a auctor a, venenatis in dui. Praesent et eros et risus dapibus placerat hendrerit cursus magna.[/ultimate_heading][/vc_column_inner][/vc_row_inner][/ultimate_carousel][/vc_column][/vc_row][vc_row disable_element=\"yes\"][vc_column][ultimate_heading main_heading=\"Board Of Directors\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;margin-bottom:35px;\"][/ultimate_heading][vc_row_inner][vc_column_inner width=\"1/3\"][ult_animation_block animation=\"fadeInUp\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][dt_fancy_image image_id=\"3172\" width=\"300\" border_radius=\"1px\" caption=\"off\" css=\".vc_custom_1692278922309{border-top-width: 1px !important;border-right-width: 1px !important;border-bottom-width: 1px !important;border-left-width: 1px !important;border-left-color: #059444 !important;border-left-style: solid !important;border-right-color: #059444 !important;border-right-style: solid !important;border-top-color: #059444 !important;border-top-style: solid !important;border-bottom-color: #059444 !important;border-bottom-style: solid !important;border-radius: 1px !important;}\"][ultimate_heading main_heading=\"Quisque sed nibh tristique\" heading_tag=\"h3\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;\"]\r\n<ul>\r\n 	<li>Duis lorem risus, aliquet a auctor a, venenatis in dui. Praesent et eros et risus dapibus placerat hendrerit cursus magna.</li>\r\n 	<li>Praesent et eros et risus dapibus placerat hendrerit cursus magna.</li>\r\n 	<li>aliquet a auctor a, venenatis in dui.</li>\r\n</ul>\r\n[/ultimate_heading][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/3\"][ult_animation_block animation=\"fadeInDown\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][dt_fancy_image image_id=\"3171\" width=\"300\" border_radius=\"1px\" caption=\"off\" css=\".vc_custom_1692278929158{border-top-width: 1px !important;border-right-width: 1px !important;border-bottom-width: 1px !important;border-left-width: 1px !important;border-left-color: #059444 !important;border-left-style: solid !important;border-right-color: #059444 !important;border-right-style: solid !important;border-top-color: #059444 !important;border-top-style: solid !important;border-bottom-color: #059444 !important;border-bottom-style: solid !important;border-radius: 1px !important;}\"][ultimate_heading main_heading=\"Quisque sed nibh tristique\" heading_tag=\"h3\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;\"]\r\n<ul>\r\n 	<li>Duis lorem risus, aliquet a auctor a, venenatis in dui. Praesent et eros et risus dapibus placerat hendrerit cursus magna.</li>\r\n 	<li>Praesent et eros et risus dapibus placerat hendrerit cursus magna.</li>\r\n 	<li>aliquet a auctor a, venenatis in dui.</li>\r\n</ul>\r\n[/ultimate_heading][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/3\"][ult_animation_block animation=\"fadeInUp\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][dt_fancy_image image_id=\"3170\" width=\"300\" border_radius=\"1px\" caption=\"off\" css=\".vc_custom_1692278936750{border-top-width: 1px !important;border-right-width: 1px !important;border-bottom-width: 1px !important;border-left-width: 1px !important;border-left-color: #059444 !important;border-left-style: solid !important;border-right-color: #059444 !important;border-right-style: solid !important;border-top-color: #059444 !important;border-top-style: solid !important;border-bottom-color: #059444 !important;border-bottom-style: solid !important;border-radius: 1px !important;}\"][ultimate_heading main_heading=\"Quisque sed nibh tristique\" heading_tag=\"h3\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;\"]\r\n<ul>\r\n 	<li>Duis lorem risus, aliquet a auctor a, venenatis in dui. Praesent et eros et risus dapibus placerat hendrerit cursus magna.</li>\r\n 	<li>Praesent et eros et risus dapibus placerat hendrerit cursus magna.</li>\r\n 	<li>aliquet a auctor a, venenatis in dui.</li>\r\n</ul>\r\n[/ultimate_heading][/ult_animation_block][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row disable_element=\"yes\"][vc_column][ultimate_heading main_heading=\"Executive Directors\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;margin-bottom:35px;\"][/ultimate_heading][vc_row_inner][vc_column_inner width=\"1/5\"][ult_animation_block animation=\"fadeInUp\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][dt_fancy_image image_id=\"3172\" width=\"300\" border_radius=\"1px\" caption=\"off\" css=\".vc_custom_1692278922309{border-top-width: 1px !important;border-right-width: 1px !important;border-bottom-width: 1px !important;border-left-width: 1px !important;border-left-color: #059444 !important;border-left-style: solid !important;border-right-color: #059444 !important;border-right-style: solid !important;border-top-color: #059444 !important;border-top-style: solid !important;border-bottom-color: #059444 !important;border-bottom-style: solid !important;border-radius: 1px !important;}\"][ultimate_heading main_heading=\"Quisque sed nibh tristique\" heading_tag=\"h3\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;\"]\r\n<ul>\r\n 	<li>Duis lorem risus, aliquet a auctor a, venenatis in dui. Praesent et eros et risus dapibus placerat hendrerit cursus magna.</li>\r\n 	<li>Praesent et eros et risus dapibus placerat hendrerit cursus magna.</li>\r\n 	<li>aliquet a auctor a, venenatis in dui.</li>\r\n</ul>\r\n[/ultimate_heading][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/5\"][ult_animation_block animation=\"fadeInDown\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][dt_fancy_image image_id=\"3171\" width=\"300\" border_radius=\"1px\" caption=\"off\" css=\".vc_custom_1692278929158{border-top-width: 1px !important;border-right-width: 1px !important;border-bottom-width: 1px !important;border-left-width: 1px !important;border-left-color: #059444 !important;border-left-style: solid !important;border-right-color: #059444 !important;border-right-style: solid !important;border-top-color: #059444 !important;border-top-style: solid !important;border-bottom-color: #059444 !important;border-bottom-style: solid !important;border-radius: 1px !important;}\"][ultimate_heading main_heading=\"Quisque sed nibh tristique\" heading_tag=\"h3\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;\"]\r\n<ul>\r\n 	<li>Duis lorem risus, aliquet a auctor a, venenatis in dui. Praesent et eros et risus dapibus placerat hendrerit cursus magna.</li>\r\n 	<li>Praesent et eros et risus dapibus placerat hendrerit cursus magna.</li>\r\n 	<li>aliquet a auctor a, venenatis in dui.</li>\r\n</ul>\r\n[/ultimate_heading][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/5\"][ult_animation_block animation=\"fadeInUp\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][dt_fancy_image image_id=\"3170\" width=\"300\" border_radius=\"1px\" caption=\"off\" css=\".vc_custom_1692278936750{border-top-width: 1px !important;border-right-width: 1px !important;border-bottom-width: 1px !important;border-left-width: 1px !important;border-left-color: #059444 !important;border-left-style: solid !important;border-right-color: #059444 !important;border-right-style: solid !important;border-top-color: #059444 !important;border-top-style: solid !important;border-bottom-color: #059444 !important;border-bottom-style: solid !important;border-radius: 1px !important;}\"][ultimate_heading main_heading=\"Quisque sed nibh tristique\" heading_tag=\"h3\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;\"]\r\n<ul>\r\n 	<li>Duis lorem risus, aliquet a auctor a, venenatis in dui. Praesent et eros et risus dapibus placerat hendrerit cursus magna.</li>\r\n 	<li>Praesent et eros et risus dapibus placerat hendrerit cursus magna.</li>\r\n 	<li>aliquet a auctor a, venenatis in dui.</li>\r\n</ul>\r\n[/ultimate_heading][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/5\"][ult_animation_block animation=\"fadeInDown\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][dt_fancy_image image_id=\"3170\" width=\"300\" border_radius=\"1px\" caption=\"off\" css=\".vc_custom_1692278936750{border-top-width: 1px !important;border-right-width: 1px !important;border-bottom-width: 1px !important;border-left-width: 1px !important;border-left-color: #059444 !important;border-left-style: solid !important;border-right-color: #059444 !important;border-right-style: solid !important;border-top-color: #059444 !important;border-top-style: solid !important;border-bottom-color: #059444 !important;border-bottom-style: solid !important;border-radius: 1px !important;}\"][ultimate_heading main_heading=\"Quisque sed nibh tristique\" heading_tag=\"h3\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;\"]\r\n<ul>\r\n 	<li>Duis lorem risus, aliquet a auctor a, venenatis in dui. Praesent et eros et risus dapibus placerat hendrerit cursus magna.</li>\r\n 	<li>Praesent et eros et risus dapibus placerat hendrerit cursus magna.</li>\r\n 	<li>aliquet a auctor a, venenatis in dui.</li>\r\n</ul>\r\n[/ultimate_heading][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/5\"][ult_animation_block animation=\"fadeInDown\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][dt_fancy_image image_id=\"3171\" width=\"300\" border_radius=\"1px\" caption=\"off\" css=\".vc_custom_1692278929158{border-top-width: 1px !important;border-right-width: 1px !important;border-bottom-width: 1px !important;border-left-width: 1px !important;border-left-color: #059444 !important;border-left-style: solid !important;border-right-color: #059444 !important;border-right-style: solid !important;border-top-color: #059444 !important;border-top-style: solid !important;border-bottom-color: #059444 !important;border-bottom-style: solid !important;border-radius: 1px !important;}\"][ultimate_heading main_heading=\"Quisque sed nibh tristique\" heading_tag=\"h3\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;\"]\r\n<ul>\r\n 	<li>Duis lorem risus, aliquet a auctor a, venenatis in dui. Praesent et eros et risus dapibus placerat hendrerit cursus magna.</li>\r\n 	<li>Praesent et eros et risus dapibus placerat hendrerit cursus magna.</li>\r\n 	<li>aliquet a auctor a, venenatis in dui.</li>\r\n</ul>\r\n[/ultimate_heading][/ult_animation_block][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner width=\"2/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row disable_element=\"yes\"][vc_column][ultimate_heading main_heading=\"Next Generation\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;margin-bottom:35px;\"][/ultimate_heading][vc_row_inner][vc_column_inner width=\"1/2\"][ult_animation_block animation=\"fadeInUp\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][dt_fancy_image image_id=\"3172\" width=\"300\" border_radius=\"1px\" caption=\"off\" css=\".vc_custom_1692278922309{border-top-width: 1px !important;border-right-width: 1px !important;border-bottom-width: 1px !important;border-left-width: 1px !important;border-left-color: #059444 !important;border-left-style: solid !important;border-right-color: #059444 !important;border-right-style: solid !important;border-top-color: #059444 !important;border-top-style: solid !important;border-bottom-color: #059444 !important;border-bottom-style: solid !important;border-radius: 1px !important;}\"][ultimate_heading main_heading=\"Quisque sed nibh tristique\" heading_tag=\"h3\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;\"]\r\n<ul>\r\n 	<li>Duis lorem risus, aliquet a auctor a, venenatis in dui. Praesent et eros et risus dapibus placerat hendrerit cursus magna.</li>\r\n 	<li>Praesent et eros et risus dapibus placerat hendrerit cursus magna.</li>\r\n 	<li>aliquet a auctor a, venenatis in dui.</li>\r\n</ul>\r\n[/ultimate_heading][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/2\"][ult_animation_block animation=\"fadeInDown\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][dt_fancy_image image_id=\"3171\" width=\"300\" border_radius=\"1px\" caption=\"off\" css=\".vc_custom_1692278929158{border-top-width: 1px !important;border-right-width: 1px !important;border-bottom-width: 1px !important;border-left-width: 1px !important;border-left-color: #059444 !important;border-left-style: solid !important;border-right-color: #059444 !important;border-right-style: solid !important;border-top-color: #059444 !important;border-top-style: solid !important;border-bottom-color: #059444 !important;border-bottom-style: solid !important;border-radius: 1px !important;}\"][ultimate_heading main_heading=\"Quisque sed nibh tristique\" heading_tag=\"h3\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;\"]\r\n<ul>\r\n 	<li>Duis lorem risus, aliquet a auctor a, venenatis in dui. Praesent et eros et risus dapibus placerat hendrerit cursus magna.</li>\r\n 	<li>Praesent et eros et risus dapibus placerat hendrerit cursus magna.</li>\r\n 	<li>aliquet a auctor a, venenatis in dui.</li>\r\n</ul>\r\n[/ultimate_heading][/ult_animation_block][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row]','About us','','inherit','closed','closed','','2917-revision-v1','','','2023-09-02 04:24:09','2023-09-02 04:24:09','',2917,'https://farmchemie.yasithawd.com/?p=3427',0,'revision','',0),(3560,1,'2023-09-12 13:32:59','2023-09-12 13:32:59','[vc_row full_width=\"stretch_row_content_no_spaces\"][vc_column][ultimate_heading main_heading=\"Our History\" main_heading_color=\"#762888\"][/ultimate_heading][/vc_column][/vc_row][vc_row][vc_column][vc_row_inner equal_height=\"yes\" content_placement=\"middle\" css=\".vc_custom_1692359205466{margin-top: 35px !important;}\"][vc_column_inner width=\"1/2\"][ult_animation_block animation=\"fadeInLeftBig\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][vc_single_image image=\"3273\" img_size=\"full\" alignment=\"center\" style=\"vc_box_rounded\"][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/2\"][ult_animation_block animation=\"fadeInRightBig\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][ultimate_heading main_heading=\"Founded in 2002\" heading_tag=\"h3\" main_heading_color=\"#039447\" alignment=\"left\" sub_heading_font_size=\"desktop:18px;\"]Founded in 2002 by Mr. Uditha Wanigasinghe, an agriculturist who had a mission to aid valuable livestock producers in the country to enhance the yield and profitability of production. FARMCHEMIE introduced unprecedented solutions and consistent technical services to gain our customers’ trust and became the market leader in animal health products in 2006 within just four years.[/ultimate_heading][/ult_animation_block][/vc_column_inner][/vc_row_inner][vc_separator color=\"custom\" accent_color=\"#039447\"][vc_row_inner equal_height=\"yes\" rtl_reverse=\"yes\" content_placement=\"middle\" css=\".vc_custom_1692359216075{margin-top: 35px !important;}\"][vc_column_inner width=\"1/2\"][ult_animation_block animation=\"fadeInLeftBig\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][ultimate_heading main_heading=\"2006\" heading_tag=\"h3\" main_heading_color=\"#039447\" alignment=\"right\"]In 2006, the Sri Lankan poultry industry was affected with Avian Influenza which became a difficult period for the growth of FARMCHEMIE. This was the key factor in our decision to diversify into Agro Products. PLANTCHEM &amp; PLANTSEEDS were established to offer solutions in Agro specialty fertilizers, pesticides and seeds to invaluable cultivators.[/ultimate_heading][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/2\"][ult_animation_block animation=\"fadeInRightBig\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][vc_single_image image=\"3276\" img_size=\"full\" alignment=\"center\" style=\"vc_box_rounded\"][/ult_animation_block][/vc_column_inner][/vc_row_inner][vc_separator color=\"custom\" accent_color=\"#039447\"][vc_row_inner equal_height=\"yes\" content_placement=\"middle\" css=\".vc_custom_1692359231594{margin-top: 35px !important;}\"][vc_column_inner width=\"1/2\"][ult_animation_block animation=\"fadeInLeftBig\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][vc_single_image image=\"3277\" img_size=\"full\" alignment=\"center\" style=\"vc_box_rounded\"][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/2\"][ult_animation_block animation=\"fadeInRightBig\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][ultimate_heading main_heading=\"2010\" heading_tag=\"h3\" main_heading_color=\"#039447\" alignment=\"left\"]In 2010, FEED CHEMIE became the subsequent addition to ever-growing vision of Mr. Uditha Wanigasinghe and entered the Animal Feed Additives market.[/ultimate_heading][/ult_animation_block][/vc_column_inner][/vc_row_inner][vc_separator color=\"custom\" accent_color=\"#039447\"][vc_row_inner equal_height=\"yes\" rtl_reverse=\"yes\" content_placement=\"middle\" css=\".vc_custom_1692359239274{margin-top: 35px !important;}\"][vc_column_inner width=\"1/2\"][ult_animation_block animation=\"fadeInLeftBig\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][ultimate_heading main_heading=\"2012\" heading_tag=\"h3\" main_heading_color=\"#039447\" alignment=\"right\"]The year 2012 is described as a turning point in our journey as FARMCHEMIE established our first production facility for the manufacturing and packing of animal health products. FARMCHEMIE became the first animal health organization in Sri Lanka to obtain ISO 9001:2015 and WHO GMP International Quality Certification. With our own formulation unit, FARMCHEMIE was able to offer customized solutions to cater the needs of the Sri Lankan Livestock Industry.[/ultimate_heading][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/2\"][ult_animation_block animation=\"fadeInRightBig\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][vc_single_image image=\"3278\" img_size=\"full\" alignment=\"center\" style=\"vc_box_rounded\"][/ult_animation_block][/vc_column_inner][/vc_row_inner][vc_separator color=\"custom\" accent_color=\"#039447\"][vc_row_inner content_placement=\"middle\" css=\".vc_custom_1692359246626{margin-top: 35px !important;}\"][vc_column_inner width=\"1/2\"][ult_animation_block animation=\"fadeInLeftBig\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][vc_single_image image=\"3279\" img_size=\"full\" alignment=\"center\" style=\"vc_box_rounded\"][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/2\"][ult_animation_block animation=\"fadeInRightBig\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][ultimate_heading main_heading=\"2016\" heading_tag=\"h3\" main_heading_color=\"#039447\" alignment=\"left\"]The year 2016 was another key milestone with the entry to the International Markets. FARMCHEMIE exported our first Feed Premix consignment to India and in 2018 our export operation was distinctly established as FARMCHEMIE MANUFACTURERS, a Board of Investment (BOI) approved entity.[/ultimate_heading][/ult_animation_block][/vc_column_inner][/vc_row_inner][vc_separator color=\"custom\" accent_color=\"#039447\"][vc_row_inner equal_height=\"yes\" content_placement=\"middle\" css=\".vc_custom_1692422601938{margin-top: 35px !important;}\"][vc_column_inner width=\"1/2\"][ult_animation_block animation=\"fadeInLeftBig\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][ultimate_heading main_heading=\"Fully automated manufacturing\" heading_tag=\"h3\" main_heading_color=\"#039447\" alignment=\"right\"]FARMCHEMIE MANUFACTURERS has invested in fully automated manufacturing facility from Bühler and became the first Sri Lankan owned company to obtain FAMI-QS International Quality Certification.[/ultimate_heading][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/2\"][ult_animation_block animation=\"fadeInRightBig\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][vc_single_image image=\"3280\" img_size=\"full\" alignment=\"center\" style=\"vc_box_rounded\"][/ult_animation_block][/vc_column_inner][/vc_row_inner][vc_separator color=\"custom\" accent_color=\"#039447\"][vc_row_inner equal_height=\"yes\" content_placement=\"middle\" css=\".vc_custom_1692359258634{margin-top: 35px !important;}\"][vc_column_inner width=\"1/2\"][ult_animation_block animation=\"fadeInLeftBig\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][vc_single_image image=\"3281\" img_size=\"full\" alignment=\"center\" style=\"vc_box_rounded\"][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/2\"][ult_animation_block animation=\"fadeInRightBig\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][ultimate_heading main_heading=\"Official toll manufacturer partner\" heading_tag=\"h3\" main_heading_color=\"#039447\" alignment=\"left\"]With the trust and reputation built as a reliable manufacturer of animal feed additives and supplements in the global market, several world-renowned international brands have appointed FARMCHEMIE MANUFACTURERS as the official toll manufacturer partner. FARMCHEMIE MANUFACTURERS exports a wide range of products consisting of premixes, specialty feed additives, oral liquid supplements and pet supplements to various markets in South Asia, East Asia, Middle East and Africa.\r\n\r\nFARMCHEMIE, FEED CHEMIE &amp; FARMCHEMIE MANUFACTURERS currently operate under the ownership of our holding company, DYVESTA.\r\n\r\nDYEVSTA has become the pinnacle of Animal Nutrition and Health.\r\n\r\nDYVESTA is Dynamic, through our continuous evolution, growth and progress. DYVESTA is Diverse, in terms of both our business strategy and our community. DYVESTA is Devoted to our valuable business partners through exceptional service.[/ultimate_heading][/ult_animation_block][/vc_column_inner][/vc_row_inner][vc_separator color=\"custom\" accent_color=\"#039447\"][/vc_column][/vc_row][vc_row full_width=\"stretch_row\" equal_height=\"yes\" bg_type=\"image\" parallax_style=\"vcpb-vz-jquery\" bg_image_new=\"id^3256|url^https://farmchemie.yasithawd.com/wp-content/uploads/2023/08/Vision-Mission.png|caption^null|alt^null|title^Vision-&amp;-Mission|description^null\" bg_image_repeat=\"no-repeat\" enable_overlay=\"enable_overlay_value\" overlay_color=\"#000000\" overlay_pattern=\"01.png\" overlay_pattern_opacity=\"5\" css=\".vc_custom_1692366072362{margin-top: 35px !important;padding-top: 65px !important;padding-bottom: 100px !important;}\"][vc_column][vc_row_inner equal_height=\"yes\"][vc_column_inner width=\"1/2\"][ult_animation_block animation=\"fadeInLeftBig\" animation_duration=\"2\" animation_delay=\"0\" animation_iteration_count=\"1\"][ultimate_heading main_heading=\"Vision\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\"]To be the customers’ first and best choice by ensuring outstanding satisfaction through a well-trained and dedicated team. Prompt and quality solutions to our customers’ requirements will determine the increase of return on investment for us.[/ultimate_heading][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/2\"][ult_animation_block animation=\"fadeInRightBig\" animation_duration=\"2\" animation_delay=\"0\" animation_iteration_count=\"1\"][ultimate_heading main_heading=\"Mission\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\"]To become a world renowned manufacturer of Animal Health products and a trusted partner among our stakeholders for our integrity as well as for providing effective solutions[/ultimate_heading][/ult_animation_block][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row css=\".vc_custom_1684836308288{margin-top: 15px !important;}\"][vc_column][ultimate_heading main_heading=\"Achievements\" main_heading_color=\"#762888\" main_heading_margin=\"margin-top:35px;\"][/ultimate_heading][vc_row_inner gap=\"20\"][vc_column_inner width=\"1/2\" css=\".vc_custom_1691995519863{background-color: #f4ab20 !important;border: 1px solid #f4ab20 !important;border-radius: 35px !important;}\"][ult_animation_block animation=\"fadeInLeftBig\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][bsf-info-box icon_type=\"custom\" icon_img=\"id^3117|url^https://farmchemie.yasithawd.com/wp-content/uploads/2023/08/Pink_-H.png|caption^null|alt^null|title^Pink_-H|description^null\" img_width=\"60\" icon_style=\"advanced\" icon_border_style=\"solid\" icon_color_border=\"#ffffff\" icon_border_size=\"1\" icon_border_radius=\"500\" icon_border_spacing=\"1\" title=\"First Free Sale Certificate obtained from Veterinary Drug Control Authority (VDCA) for Veterinary Pharmaceuticals\" title_font_style=\"font-weight:bold;\" title_font_size=\"desktop:20px;\"][/bsf-info-box][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/2\" css=\".vc_custom_1691995661095{background-color: #722f8b !important;border: 1px solid #722f8b !important;border-radius: 35px !important;}\"][ult_animation_block animation=\"fadeInRightBig\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][bsf-info-box icon_type=\"custom\" icon_img=\"id^3117|url^https://farmchemie.yasithawd.com/wp-content/uploads/2023/08/Pink_-H.png|caption^null|alt^null|title^Pink_-H|description^null\" img_width=\"60\" icon_style=\"advanced\" icon_border_style=\"solid\" icon_color_border=\"#ffffff\" icon_border_size=\"1\" icon_border_radius=\"500\" icon_border_spacing=\"1\" title=\"First ISO 9001: 2015 ,WHO-GMP Quality Management systems certified Animal Health company in Sri Lanka since August, 2012\" title_font_style=\"font-weight:bold;\" title_font_color=\"#ffffff\" title_font_size=\"desktop:20px;\"][/bsf-info-box][/ult_animation_block][/vc_column_inner][/vc_row_inner][vc_row_inner gap=\"20\"][vc_column_inner width=\"1/2\" css=\".vc_custom_1691995661095{background-color: #722f8b !important;border: 1px solid #722f8b !important;border-radius: 35px !important;}\"][ult_animation_block animation=\"fadeInLeftBig\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][bsf-info-box icon_type=\"custom\" icon_img=\"id^3117|url^https://farmchemie.yasithawd.com/wp-content/uploads/2023/08/Pink_-H.png|caption^null|alt^null|title^Pink_-H|description^null\" img_width=\"60\" icon_style=\"advanced\" icon_border_style=\"solid\" icon_color_border=\"#ffffff\" icon_border_size=\"1\" icon_border_radius=\"500\" icon_border_spacing=\"1\" title=\"First FAMI-QS certified company in sri lanka\" title_font_style=\"font-weight:bold;\" title_font_color=\"#ffffff\" title_font_size=\"desktop:20px;\"][/bsf-info-box][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/2\" css=\".vc_custom_1691995519863{background-color: #f4ab20 !important;border: 1px solid #f4ab20 !important;border-radius: 35px !important;}\"][ult_animation_block animation=\"fadeInRightBig\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][bsf-info-box icon_type=\"custom\" icon_img=\"id^3117|url^https://farmchemie.yasithawd.com/wp-content/uploads/2023/08/Pink_-H.png|caption^null|alt^null|title^Pink_-H|description^null\" img_width=\"60\" icon_style=\"advanced\" icon_border_style=\"solid\" icon_color_border=\"#ffffff\" icon_border_size=\"1\" icon_border_radius=\"500\" icon_border_spacing=\"1\" title=\"First Certificate of Ethical Trading certified in Livestock industry\" title_font_style=\"font-weight:bold;\" title_font_size=\"desktop:20px;\"][/bsf-info-box][/ult_animation_block][/vc_column_inner][/vc_row_inner][vc_row_inner gap=\"20\"][vc_column_inner width=\"1/4\" css=\".vc_custom_1691996718116{border-radius: 35px !important;}\"][/vc_column_inner][vc_column_inner width=\"2/4\" css=\".vc_custom_1691995519863{background-color: #f4ab20 !important;border: 1px solid #f4ab20 !important;border-radius: 35px !important;}\"][ult_animation_block animation=\"fadeInUpBig\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][bsf-info-box icon_type=\"custom\" icon_img=\"id^3117|url^https://farmchemie.yasithawd.com/wp-content/uploads/2023/08/Pink_-H.png|caption^null|alt^null|title^Pink_-H|description^null\" img_width=\"60\" icon_style=\"advanced\" icon_border_style=\"solid\" icon_color_border=\"#ffffff\" icon_border_size=\"1\" icon_border_radius=\"500\" icon_border_spacing=\"1\" title=\"First Silver awarded company at National Exports Awards in Livestock industry\" title_font_style=\"font-weight:bold;\" title_font_size=\"desktop:20px;\"][/bsf-info-box][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/4\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row full_width=\"stretch_row\" equal_height=\"yes\" content_placement=\"bottom\" css=\".vc_custom_1693627699480{margin-top: 15px !important;}\"][vc_column][ultimate_heading main_heading=\"Certifications\" main_heading_color=\"#762888\" main_heading_margin=\"margin-top:35px;\"][/ultimate_heading][vc_row_inner content_placement=\"bottom\"][vc_column_inner width=\"1/6\"][dt_fancy_image image_id=\"3407\" width=\"300\" caption=\"off\"][/vc_column_inner][vc_column_inner width=\"1/6\"][dt_fancy_image image_id=\"3408\" width=\"300\" caption=\"off\"][/vc_column_inner][vc_column_inner width=\"1/6\"][dt_fancy_image image_id=\"3409\" width=\"300\" caption=\"off\"][/vc_column_inner][vc_column_inner width=\"1/6\"][dt_fancy_image image_id=\"3411\" width=\"300\" caption=\"off\"][/vc_column_inner][vc_column_inner width=\"1/6\"][dt_fancy_image image_id=\"3410\" width=\"300\" caption=\"off\"][/vc_column_inner][vc_column_inner width=\"1/6\"][dt_fancy_image image_id=\"3406\" width=\"300\" caption=\"off\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row full_width=\"stretch_row\" equal_height=\"yes\" content_placement=\"bottom\" css=\".vc_custom_1693625624233{margin-top: 15px !important;}\"][vc_column][ultimate_heading main_heading=\"Awards\" main_heading_color=\"#762888\" main_heading_margin=\"margin-top:35px;\"][/ultimate_heading][ultimate_carousel slide_to_scroll=\"single\"][dt_fancy_image image_id=\"3412\" width=\"300\"][dt_fancy_image image_id=\"3413\" width=\"300\" caption=\"off\"][dt_fancy_image image_id=\"3414\" width=\"300\" caption=\"off\"][dt_fancy_image image_id=\"3415\" width=\"300\" caption=\"off\"][dt_fancy_image image_id=\"3416\" width=\"300\" caption=\"off\"][dt_fancy_image image_id=\"3417\" width=\"300\" caption=\"off\"][dt_fancy_image image_id=\"3418\" width=\"300\" caption=\"off\"][dt_fancy_image image_id=\"3420\" width=\"300\" caption=\"off\"][dt_fancy_image image_id=\"3419\" width=\"300\" caption=\"off\"][dt_fancy_image image_id=\"3422\" width=\"300\" caption=\"off\"][dt_fancy_image image_id=\"3421\" width=\"300\" caption=\"off\"][dt_fancy_image image_id=\"3422\" width=\"300\" caption=\"off\"][dt_fancy_image image_id=\"3423\" width=\"300\" caption=\"off\"][dt_fancy_image image_id=\"3424\" width=\"300\" caption=\"off\"][dt_fancy_image image_id=\"3425\" width=\"300\" caption=\"off\"][/ultimate_carousel][/vc_column][/vc_row][vc_row css=\".vc_custom_1693625068958{margin-top: 15px !important;}\"][vc_column][ultimate_heading main_heading=\"Board Of Directors\" main_heading_color=\"#762888\" main_heading_margin=\"margin-top:35px;margin-bottom:35px;\"][/ultimate_heading][ultimate_carousel slides_on_desk=\"3\" slides_on_mob=\"1\" arrow_style=\"square-bg\" arrow_bg_color=\"#039447\" arrow_color=\"#ffffff\" next_icon=\"ultsl-arrow-right6\" prev_icon=\"ultsl-arrow-left6\" dots_color=\"#039447\" item_animation=\"fadeIn\"][vc_row_inner][vc_column_inner][dt_fancy_image image_id=\"3173\" width=\"300\" border_radius=\"1px\" caption=\"off\"][ultimate_heading main_heading=\"Quisque sed nibh tristique\" heading_tag=\"h3\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;\"]Duis lorem risus, aliquet a auctor a, venenatis in dui. Praesent et eros et risus dapibus placerat hendrerit cursus magna.[/ultimate_heading][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner][dt_fancy_image image_id=\"3170\" width=\"300\" border_radius=\"1px\" caption=\"off\"][ultimate_heading main_heading=\"Quisque sed nibh tristique\" heading_tag=\"h3\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;\"]Duis lorem risus, aliquet a auctor a, venenatis in dui. Praesent et eros et risus dapibus placerat hendrerit cursus magna.[/ultimate_heading][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner][dt_fancy_image image_id=\"3171\" width=\"300\" border_radius=\"1px\" caption=\"off\"][ultimate_heading main_heading=\"Quisque sed nibh tristique\" heading_tag=\"h3\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;\"]Duis lorem risus, aliquet a auctor a, venenatis in dui. Praesent et eros et risus dapibus placerat hendrerit cursus magna.[/ultimate_heading][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner][dt_fancy_image image_id=\"3172\" width=\"300\" border_radius=\"1px\" caption=\"off\"][ultimate_heading main_heading=\"Quisque sed nibh tristique\" heading_tag=\"h3\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;\"]Duis lorem risus, aliquet a auctor a, venenatis in dui. Praesent et eros et risus dapibus placerat hendrerit cursus magna.[/ultimate_heading][/vc_column_inner][/vc_row_inner][/ultimate_carousel][/vc_column][/vc_row][vc_row disable_element=\"yes\"][vc_column][ultimate_heading main_heading=\"Board Of Directors\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;margin-bottom:35px;\"][/ultimate_heading][vc_row_inner][vc_column_inner width=\"1/3\"][ult_animation_block animation=\"fadeInUp\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][dt_fancy_image image_id=\"3172\" width=\"300\" border_radius=\"1px\" caption=\"off\" css=\".vc_custom_1692278922309{border-top-width: 1px !important;border-right-width: 1px !important;border-bottom-width: 1px !important;border-left-width: 1px !important;border-left-color: #059444 !important;border-left-style: solid !important;border-right-color: #059444 !important;border-right-style: solid !important;border-top-color: #059444 !important;border-top-style: solid !important;border-bottom-color: #059444 !important;border-bottom-style: solid !important;border-radius: 1px !important;}\"][ultimate_heading main_heading=\"Quisque sed nibh tristique\" heading_tag=\"h3\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;\"]\r\n<ul>\r\n 	<li>Duis lorem risus, aliquet a auctor a, venenatis in dui. Praesent et eros et risus dapibus placerat hendrerit cursus magna.</li>\r\n 	<li>Praesent et eros et risus dapibus placerat hendrerit cursus magna.</li>\r\n 	<li>aliquet a auctor a, venenatis in dui.</li>\r\n</ul>\r\n[/ultimate_heading][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/3\"][ult_animation_block animation=\"fadeInDown\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][dt_fancy_image image_id=\"3171\" width=\"300\" border_radius=\"1px\" caption=\"off\" css=\".vc_custom_1692278929158{border-top-width: 1px !important;border-right-width: 1px !important;border-bottom-width: 1px !important;border-left-width: 1px !important;border-left-color: #059444 !important;border-left-style: solid !important;border-right-color: #059444 !important;border-right-style: solid !important;border-top-color: #059444 !important;border-top-style: solid !important;border-bottom-color: #059444 !important;border-bottom-style: solid !important;border-radius: 1px !important;}\"][ultimate_heading main_heading=\"Quisque sed nibh tristique\" heading_tag=\"h3\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;\"]\r\n<ul>\r\n 	<li>Duis lorem risus, aliquet a auctor a, venenatis in dui. Praesent et eros et risus dapibus placerat hendrerit cursus magna.</li>\r\n 	<li>Praesent et eros et risus dapibus placerat hendrerit cursus magna.</li>\r\n 	<li>aliquet a auctor a, venenatis in dui.</li>\r\n</ul>\r\n[/ultimate_heading][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/3\"][ult_animation_block animation=\"fadeInUp\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][dt_fancy_image image_id=\"3170\" width=\"300\" border_radius=\"1px\" caption=\"off\" css=\".vc_custom_1692278936750{border-top-width: 1px !important;border-right-width: 1px !important;border-bottom-width: 1px !important;border-left-width: 1px !important;border-left-color: #059444 !important;border-left-style: solid !important;border-right-color: #059444 !important;border-right-style: solid !important;border-top-color: #059444 !important;border-top-style: solid !important;border-bottom-color: #059444 !important;border-bottom-style: solid !important;border-radius: 1px !important;}\"][ultimate_heading main_heading=\"Quisque sed nibh tristique\" heading_tag=\"h3\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;\"]\r\n<ul>\r\n 	<li>Duis lorem risus, aliquet a auctor a, venenatis in dui. Praesent et eros et risus dapibus placerat hendrerit cursus magna.</li>\r\n 	<li>Praesent et eros et risus dapibus placerat hendrerit cursus magna.</li>\r\n 	<li>aliquet a auctor a, venenatis in dui.</li>\r\n</ul>\r\n[/ultimate_heading][/ult_animation_block][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row disable_element=\"yes\"][vc_column][ultimate_heading main_heading=\"Executive Directors\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;margin-bottom:35px;\"][/ultimate_heading][vc_row_inner][vc_column_inner width=\"1/5\"][ult_animation_block animation=\"fadeInUp\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][dt_fancy_image image_id=\"3172\" width=\"300\" border_radius=\"1px\" caption=\"off\" css=\".vc_custom_1692278922309{border-top-width: 1px !important;border-right-width: 1px !important;border-bottom-width: 1px !important;border-left-width: 1px !important;border-left-color: #059444 !important;border-left-style: solid !important;border-right-color: #059444 !important;border-right-style: solid !important;border-top-color: #059444 !important;border-top-style: solid !important;border-bottom-color: #059444 !important;border-bottom-style: solid !important;border-radius: 1px !important;}\"][ultimate_heading main_heading=\"Quisque sed nibh tristique\" heading_tag=\"h3\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;\"]\r\n<ul>\r\n 	<li>Duis lorem risus, aliquet a auctor a, venenatis in dui. Praesent et eros et risus dapibus placerat hendrerit cursus magna.</li>\r\n 	<li>Praesent et eros et risus dapibus placerat hendrerit cursus magna.</li>\r\n 	<li>aliquet a auctor a, venenatis in dui.</li>\r\n</ul>\r\n[/ultimate_heading][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/5\"][ult_animation_block animation=\"fadeInDown\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][dt_fancy_image image_id=\"3171\" width=\"300\" border_radius=\"1px\" caption=\"off\" css=\".vc_custom_1692278929158{border-top-width: 1px !important;border-right-width: 1px !important;border-bottom-width: 1px !important;border-left-width: 1px !important;border-left-color: #059444 !important;border-left-style: solid !important;border-right-color: #059444 !important;border-right-style: solid !important;border-top-color: #059444 !important;border-top-style: solid !important;border-bottom-color: #059444 !important;border-bottom-style: solid !important;border-radius: 1px !important;}\"][ultimate_heading main_heading=\"Quisque sed nibh tristique\" heading_tag=\"h3\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;\"]\r\n<ul>\r\n 	<li>Duis lorem risus, aliquet a auctor a, venenatis in dui. Praesent et eros et risus dapibus placerat hendrerit cursus magna.</li>\r\n 	<li>Praesent et eros et risus dapibus placerat hendrerit cursus magna.</li>\r\n 	<li>aliquet a auctor a, venenatis in dui.</li>\r\n</ul>\r\n[/ultimate_heading][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/5\"][ult_animation_block animation=\"fadeInUp\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][dt_fancy_image image_id=\"3170\" width=\"300\" border_radius=\"1px\" caption=\"off\" css=\".vc_custom_1692278936750{border-top-width: 1px !important;border-right-width: 1px !important;border-bottom-width: 1px !important;border-left-width: 1px !important;border-left-color: #059444 !important;border-left-style: solid !important;border-right-color: #059444 !important;border-right-style: solid !important;border-top-color: #059444 !important;border-top-style: solid !important;border-bottom-color: #059444 !important;border-bottom-style: solid !important;border-radius: 1px !important;}\"][ultimate_heading main_heading=\"Quisque sed nibh tristique\" heading_tag=\"h3\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;\"]\r\n<ul>\r\n 	<li>Duis lorem risus, aliquet a auctor a, venenatis in dui. Praesent et eros et risus dapibus placerat hendrerit cursus magna.</li>\r\n 	<li>Praesent et eros et risus dapibus placerat hendrerit cursus magna.</li>\r\n 	<li>aliquet a auctor a, venenatis in dui.</li>\r\n</ul>\r\n[/ultimate_heading][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/5\"][ult_animation_block animation=\"fadeInDown\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][dt_fancy_image image_id=\"3170\" width=\"300\" border_radius=\"1px\" caption=\"off\" css=\".vc_custom_1692278936750{border-top-width: 1px !important;border-right-width: 1px !important;border-bottom-width: 1px !important;border-left-width: 1px !important;border-left-color: #059444 !important;border-left-style: solid !important;border-right-color: #059444 !important;border-right-style: solid !important;border-top-color: #059444 !important;border-top-style: solid !important;border-bottom-color: #059444 !important;border-bottom-style: solid !important;border-radius: 1px !important;}\"][ultimate_heading main_heading=\"Quisque sed nibh tristique\" heading_tag=\"h3\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;\"]\r\n<ul>\r\n 	<li>Duis lorem risus, aliquet a auctor a, venenatis in dui. Praesent et eros et risus dapibus placerat hendrerit cursus magna.</li>\r\n 	<li>Praesent et eros et risus dapibus placerat hendrerit cursus magna.</li>\r\n 	<li>aliquet a auctor a, venenatis in dui.</li>\r\n</ul>\r\n[/ultimate_heading][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/5\"][ult_animation_block animation=\"fadeInDown\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][dt_fancy_image image_id=\"3171\" width=\"300\" border_radius=\"1px\" caption=\"off\" css=\".vc_custom_1692278929158{border-top-width: 1px !important;border-right-width: 1px !important;border-bottom-width: 1px !important;border-left-width: 1px !important;border-left-color: #059444 !important;border-left-style: solid !important;border-right-color: #059444 !important;border-right-style: solid !important;border-top-color: #059444 !important;border-top-style: solid !important;border-bottom-color: #059444 !important;border-bottom-style: solid !important;border-radius: 1px !important;}\"][ultimate_heading main_heading=\"Quisque sed nibh tristique\" heading_tag=\"h3\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;\"]\r\n<ul>\r\n 	<li>Duis lorem risus, aliquet a auctor a, venenatis in dui. Praesent et eros et risus dapibus placerat hendrerit cursus magna.</li>\r\n 	<li>Praesent et eros et risus dapibus placerat hendrerit cursus magna.</li>\r\n 	<li>aliquet a auctor a, venenatis in dui.</li>\r\n</ul>\r\n[/ultimate_heading][/ult_animation_block][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner width=\"2/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row disable_element=\"yes\"][vc_column][ultimate_heading main_heading=\"Next Generation\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;margin-bottom:35px;\"][/ultimate_heading][vc_row_inner][vc_column_inner width=\"1/2\"][ult_animation_block animation=\"fadeInUp\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][dt_fancy_image image_id=\"3172\" width=\"300\" border_radius=\"1px\" caption=\"off\" css=\".vc_custom_1692278922309{border-top-width: 1px !important;border-right-width: 1px !important;border-bottom-width: 1px !important;border-left-width: 1px !important;border-left-color: #059444 !important;border-left-style: solid !important;border-right-color: #059444 !important;border-right-style: solid !important;border-top-color: #059444 !important;border-top-style: solid !important;border-bottom-color: #059444 !important;border-bottom-style: solid !important;border-radius: 1px !important;}\"][ultimate_heading main_heading=\"Quisque sed nibh tristique\" heading_tag=\"h3\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;\"]\r\n<ul>\r\n 	<li>Duis lorem risus, aliquet a auctor a, venenatis in dui. Praesent et eros et risus dapibus placerat hendrerit cursus magna.</li>\r\n 	<li>Praesent et eros et risus dapibus placerat hendrerit cursus magna.</li>\r\n 	<li>aliquet a auctor a, venenatis in dui.</li>\r\n</ul>\r\n[/ultimate_heading][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/2\"][ult_animation_block animation=\"fadeInDown\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][dt_fancy_image image_id=\"3171\" width=\"300\" border_radius=\"1px\" caption=\"off\" css=\".vc_custom_1692278929158{border-top-width: 1px !important;border-right-width: 1px !important;border-bottom-width: 1px !important;border-left-width: 1px !important;border-left-color: #059444 !important;border-left-style: solid !important;border-right-color: #059444 !important;border-right-style: solid !important;border-top-color: #059444 !important;border-top-style: solid !important;border-bottom-color: #059444 !important;border-bottom-style: solid !important;border-radius: 1px !important;}\"][ultimate_heading main_heading=\"Quisque sed nibh tristique\" heading_tag=\"h3\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;\"]\r\n<ul>\r\n 	<li>Duis lorem risus, aliquet a auctor a, venenatis in dui. Praesent et eros et risus dapibus placerat hendrerit cursus magna.</li>\r\n 	<li>Praesent et eros et risus dapibus placerat hendrerit cursus magna.</li>\r\n 	<li>aliquet a auctor a, venenatis in dui.</li>\r\n</ul>\r\n[/ultimate_heading][/ult_animation_block][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row]','About us','','inherit','closed','closed','','2917-revision-v1','','','2023-09-12 13:32:59','2023-09-12 13:32:59','',2917,'https://farmchemie.yasithawd.com/?p=3560',0,'revision','',0),(3429,1,'2023-09-02 06:29:42','2023-09-02 06:29:42','[vc_row full_width=\"stretch_row_content_no_spaces\"][vc_column][ultimate_heading main_heading=\"Our History\" main_heading_color=\"#762888\"][/ultimate_heading][/vc_column][/vc_row][vc_row][vc_column][vc_row_inner equal_height=\"yes\" content_placement=\"middle\" css=\".vc_custom_1692359205466{margin-top: 35px !important;}\"][vc_column_inner width=\"1/2\"][ult_animation_block animation=\"fadeInLeftBig\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][vc_single_image image=\"3273\" img_size=\"full\" alignment=\"center\" style=\"vc_box_rounded\"][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/2\"][ult_animation_block animation=\"fadeInRightBig\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][ultimate_heading main_heading=\"Founded in 2002\" heading_tag=\"h3\" main_heading_color=\"#039447\" alignment=\"left\" sub_heading_font_size=\"desktop:18px;\"]Founded in 2002 by Mr. Uditha Wanigasinghe, an agriculturist who had a mission to aid valuable livestock producers in the country to enhance the yield and profitability of production. FARMCHEMIE introduced unprecedented solutions and consistent technical services to gain our customers’ trust and became the market leader in animal health products in 2006 within just four years.[/ultimate_heading][/ult_animation_block][/vc_column_inner][/vc_row_inner][vc_separator color=\"custom\" accent_color=\"#039447\"][vc_row_inner equal_height=\"yes\" rtl_reverse=\"yes\" content_placement=\"middle\" css=\".vc_custom_1692359216075{margin-top: 35px !important;}\"][vc_column_inner width=\"1/2\"][ult_animation_block animation=\"fadeInLeftBig\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][ultimate_heading main_heading=\"2006\" heading_tag=\"h3\" main_heading_color=\"#039447\" alignment=\"right\"]In 2006, the Sri Lankan poultry industry was affected with Avian Influenza which became a difficult period for the growth of FARMCHEMIE. This was the key factor in our decision to diversify into Agro Products. PLANTCHEM &amp; PLANTSEEDS were established to offer solutions in Agro specialty fertilizers, pesticides and seeds to invaluable cultivators.[/ultimate_heading][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/2\"][ult_animation_block animation=\"fadeInRightBig\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][vc_single_image image=\"3276\" img_size=\"full\" alignment=\"center\" style=\"vc_box_rounded\"][/ult_animation_block][/vc_column_inner][/vc_row_inner][vc_separator color=\"custom\" accent_color=\"#039447\"][vc_row_inner equal_height=\"yes\" content_placement=\"middle\" css=\".vc_custom_1692359231594{margin-top: 35px !important;}\"][vc_column_inner width=\"1/2\"][ult_animation_block animation=\"fadeInLeftBig\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][vc_single_image image=\"3277\" img_size=\"full\" alignment=\"center\" style=\"vc_box_rounded\"][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/2\"][ult_animation_block animation=\"fadeInRightBig\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][ultimate_heading main_heading=\"2010\" heading_tag=\"h3\" main_heading_color=\"#039447\" alignment=\"left\"]In 2010, FEED CHEMIE became the subsequent addition to ever-growing vision of Mr. Uditha Wanigasinghe and entered the Animal Feed Additives market.[/ultimate_heading][/ult_animation_block][/vc_column_inner][/vc_row_inner][vc_separator color=\"custom\" accent_color=\"#039447\"][vc_row_inner equal_height=\"yes\" rtl_reverse=\"yes\" content_placement=\"middle\" css=\".vc_custom_1692359239274{margin-top: 35px !important;}\"][vc_column_inner width=\"1/2\"][ult_animation_block animation=\"fadeInLeftBig\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][ultimate_heading main_heading=\"2012\" heading_tag=\"h3\" main_heading_color=\"#039447\" alignment=\"right\"]The year 2012 is described as a turning point in our journey as FARMCHEMIE established our first production facility for the manufacturing and packing of animal health products. FARMCHEMIE became the first animal health organization in Sri Lanka to obtain ISO 9001:2015 and WHO GMP International Quality Certification. With our own formulation unit, FARMCHEMIE was able to offer customized solutions to cater the needs of the Sri Lankan Livestock Industry.[/ultimate_heading][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/2\"][ult_animation_block animation=\"fadeInRightBig\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][vc_single_image image=\"3278\" img_size=\"full\" alignment=\"center\" style=\"vc_box_rounded\"][/ult_animation_block][/vc_column_inner][/vc_row_inner][vc_separator color=\"custom\" accent_color=\"#039447\"][vc_row_inner content_placement=\"middle\" css=\".vc_custom_1692359246626{margin-top: 35px !important;}\"][vc_column_inner width=\"1/2\"][ult_animation_block animation=\"fadeInLeftBig\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][vc_single_image image=\"3279\" img_size=\"full\" alignment=\"center\" style=\"vc_box_rounded\"][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/2\"][ult_animation_block animation=\"fadeInRightBig\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][ultimate_heading main_heading=\"2016\" heading_tag=\"h3\" main_heading_color=\"#039447\" alignment=\"left\"]The year 2016 was another key milestone with the entry to the International Markets. FARMCHEMIE exported our first Feed Premix consignment to India and in 2018 our export operation was distinctly established as FARMCHEMIE MANUFACTURERS, a Board of Investment (BOI) approved entity.[/ultimate_heading][/ult_animation_block][/vc_column_inner][/vc_row_inner][vc_separator color=\"custom\" accent_color=\"#039447\"][vc_row_inner equal_height=\"yes\" content_placement=\"middle\" css=\".vc_custom_1692422601938{margin-top: 35px !important;}\"][vc_column_inner width=\"1/2\"][ult_animation_block animation=\"fadeInLeftBig\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][ultimate_heading main_heading=\"Fully automated manufacturing\" heading_tag=\"h3\" main_heading_color=\"#039447\" alignment=\"right\"]FARMCHEMIE MANUFACTURERS has invested in fully automated manufacturing facility from Bühler and became the first Sri Lankan owned company to obtain FAMI-QS International Quality Certification.[/ultimate_heading][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/2\"][ult_animation_block animation=\"fadeInRightBig\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][vc_single_image image=\"3280\" img_size=\"full\" alignment=\"center\" style=\"vc_box_rounded\"][/ult_animation_block][/vc_column_inner][/vc_row_inner][vc_separator color=\"custom\" accent_color=\"#039447\"][vc_row_inner equal_height=\"yes\" content_placement=\"middle\" css=\".vc_custom_1692359258634{margin-top: 35px !important;}\"][vc_column_inner width=\"1/2\"][ult_animation_block animation=\"fadeInLeftBig\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][vc_single_image image=\"3281\" img_size=\"full\" alignment=\"center\" style=\"vc_box_rounded\"][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/2\"][ult_animation_block animation=\"fadeInRightBig\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][ultimate_heading main_heading=\"Official toll manufacturer partner\" heading_tag=\"h3\" main_heading_color=\"#039447\" alignment=\"left\"]With the trust and reputation built as a reliable manufacturer of animal feed additives and supplements in the global market, several world-renowned international brands have appointed FARMCHEMIE MANUFACTURERS as the official toll manufacturer partner. FARMCHEMIE MANUFACTURERS exports a wide range of products consisting of premixes, specialty feed additives, oral liquid supplements and pet supplements to various markets in South Asia, East Asia, Middle East and Africa.\r\n\r\nFARMCHEMIE, FEED CHEMIE &amp; FARMCHEMIE MANUFACTURERS currently operate under the ownership of our holding company, DYVESTA.\r\n\r\nDYEVSTA has become the pinnacle of Animal Nutrition and Health.\r\n\r\nDYVESTA is Dynamic, through our continuous evolution, growth and progress. DYVESTA is Diverse, in terms of both our business strategy and our community. DYVESTA is Devoted to our valuable business partners through exceptional service.[/ultimate_heading][/ult_animation_block][/vc_column_inner][/vc_row_inner][vc_separator color=\"custom\" accent_color=\"#039447\"][/vc_column][/vc_row][vc_row full_width=\"stretch_row\" equal_height=\"yes\" bg_type=\"image\" parallax_style=\"vcpb-vz-jquery\" bg_image_new=\"id^3256|url^https://farmchemie.yasithawd.com/wp-content/uploads/2023/08/Vision-Mission.png|caption^null|alt^null|title^Vision-&amp;-Mission|description^null\" bg_image_repeat=\"no-repeat\" enable_overlay=\"enable_overlay_value\" overlay_color=\"#000000\" overlay_pattern=\"01.png\" overlay_pattern_opacity=\"5\" css=\".vc_custom_1692366072362{margin-top: 35px !important;padding-top: 65px !important;padding-bottom: 100px !important;}\"][vc_column][vc_row_inner equal_height=\"yes\"][vc_column_inner width=\"1/2\"][ult_animation_block animation=\"fadeInLeftBig\" animation_duration=\"2\" animation_delay=\"0\" animation_iteration_count=\"1\"][ultimate_heading main_heading=\"Vision\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\"]To be the customers’ first and best choice by ensuring outstanding satisfaction through a well-trained and dedicated team. Prompt and quality solutions to our customers’ requirements will determine the increase of return on investment for us.[/ultimate_heading][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/2\"][ult_animation_block animation=\"fadeInRightBig\" animation_duration=\"2\" animation_delay=\"0\" animation_iteration_count=\"1\"][ultimate_heading main_heading=\"Mission\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\"]To become a world renowned manufacturer of Animal Health products and a trusted partner among our stakeholders for our integrity as well as for providing effective solutions[/ultimate_heading][/ult_animation_block][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row css=\".vc_custom_1684836308288{margin-top: 15px !important;}\"][vc_column][ultimate_heading main_heading=\"Achievements\" main_heading_color=\"#762888\" main_heading_margin=\"margin-top:35px;\"][/ultimate_heading][vc_row_inner gap=\"20\"][vc_column_inner width=\"1/2\" css=\".vc_custom_1691995519863{background-color: #f4ab20 !important;border: 1px solid #f4ab20 !important;border-radius: 35px !important;}\"][ult_animation_block animation=\"fadeInLeftBig\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][bsf-info-box icon_type=\"custom\" icon_img=\"id^3117|url^https://farmchemie.yasithawd.com/wp-content/uploads/2023/08/Pink_-H.png|caption^null|alt^null|title^Pink_-H|description^null\" img_width=\"60\" icon_style=\"advanced\" icon_border_style=\"solid\" icon_color_border=\"#ffffff\" icon_border_size=\"1\" icon_border_radius=\"500\" icon_border_spacing=\"1\" title=\"First Free Sale Certificate obtained from Veterinary Drug Control Authority (VDCA) for Veterinary Pharmaceuticals\" title_font_style=\"font-weight:bold;\" title_font_size=\"desktop:20px;\"][/bsf-info-box][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/2\" css=\".vc_custom_1691995661095{background-color: #722f8b !important;border: 1px solid #722f8b !important;border-radius: 35px !important;}\"][ult_animation_block animation=\"fadeInRightBig\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][bsf-info-box icon_type=\"custom\" icon_img=\"id^3117|url^https://farmchemie.yasithawd.com/wp-content/uploads/2023/08/Pink_-H.png|caption^null|alt^null|title^Pink_-H|description^null\" img_width=\"60\" icon_style=\"advanced\" icon_border_style=\"solid\" icon_color_border=\"#ffffff\" icon_border_size=\"1\" icon_border_radius=\"500\" icon_border_spacing=\"1\" title=\"First ISO 9001: 2015 ,WHO-GMP Quality Management systems certified Animal Health company in Sri Lanka since August, 2012\" title_font_style=\"font-weight:bold;\" title_font_color=\"#ffffff\" title_font_size=\"desktop:20px;\"][/bsf-info-box][/ult_animation_block][/vc_column_inner][/vc_row_inner][vc_row_inner gap=\"20\"][vc_column_inner width=\"1/2\" css=\".vc_custom_1691995661095{background-color: #722f8b !important;border: 1px solid #722f8b !important;border-radius: 35px !important;}\"][ult_animation_block animation=\"fadeInLeftBig\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][bsf-info-box icon_type=\"custom\" icon_img=\"id^3117|url^https://farmchemie.yasithawd.com/wp-content/uploads/2023/08/Pink_-H.png|caption^null|alt^null|title^Pink_-H|description^null\" img_width=\"60\" icon_style=\"advanced\" icon_border_style=\"solid\" icon_color_border=\"#ffffff\" icon_border_size=\"1\" icon_border_radius=\"500\" icon_border_spacing=\"1\" title=\"First FAMI-QS certified company in sri lanka\" title_font_style=\"font-weight:bold;\" title_font_color=\"#ffffff\" title_font_size=\"desktop:20px;\"][/bsf-info-box][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/2\" css=\".vc_custom_1691995519863{background-color: #f4ab20 !important;border: 1px solid #f4ab20 !important;border-radius: 35px !important;}\"][ult_animation_block animation=\"fadeInRightBig\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][bsf-info-box icon_type=\"custom\" icon_img=\"id^3117|url^https://farmchemie.yasithawd.com/wp-content/uploads/2023/08/Pink_-H.png|caption^null|alt^null|title^Pink_-H|description^null\" img_width=\"60\" icon_style=\"advanced\" icon_border_style=\"solid\" icon_color_border=\"#ffffff\" icon_border_size=\"1\" icon_border_radius=\"500\" icon_border_spacing=\"1\" title=\"First Certificate of Ethical Trading certified in Livestock industry\" title_font_style=\"font-weight:bold;\" title_font_size=\"desktop:20px;\"][/bsf-info-box][/ult_animation_block][/vc_column_inner][/vc_row_inner][vc_row_inner gap=\"20\"][vc_column_inner width=\"1/4\" css=\".vc_custom_1691996718116{border-radius: 35px !important;}\"][/vc_column_inner][vc_column_inner width=\"2/4\" css=\".vc_custom_1691995519863{background-color: #f4ab20 !important;border: 1px solid #f4ab20 !important;border-radius: 35px !important;}\"][ult_animation_block animation=\"fadeInUpBig\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][bsf-info-box icon_type=\"custom\" icon_img=\"id^3117|url^https://farmchemie.yasithawd.com/wp-content/uploads/2023/08/Pink_-H.png|caption^null|alt^null|title^Pink_-H|description^null\" img_width=\"60\" icon_style=\"advanced\" icon_border_style=\"solid\" icon_color_border=\"#ffffff\" icon_border_size=\"1\" icon_border_radius=\"500\" icon_border_spacing=\"1\" title=\"First Silver awarded company at National Exports Awards in Livestock industry\" title_font_style=\"font-weight:bold;\" title_font_size=\"desktop:20px;\"][/bsf-info-box][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/4\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row full_width=\"stretch_row\" equal_height=\"yes\" content_placement=\"bottom\" css=\".vc_custom_1693627699480{margin-top: 15px !important;}\"][vc_column][ultimate_heading main_heading=\"Certifications\" main_heading_color=\"#762888\" main_heading_margin=\"margin-top:35px;\"][/ultimate_heading][vc_row_inner content_placement=\"bottom\"][vc_column_inner width=\"1/6\"][dt_fancy_image image_id=\"3407\" width=\"300\" caption=\"off\"][/vc_column_inner][vc_column_inner width=\"1/6\"][dt_fancy_image image_id=\"3408\" width=\"300\" caption=\"off\"][/vc_column_inner][vc_column_inner width=\"1/6\"][dt_fancy_image image_id=\"3409\" width=\"300\" caption=\"off\"][/vc_column_inner][vc_column_inner width=\"1/6\"][dt_fancy_image image_id=\"3411\" width=\"300\" caption=\"off\"][/vc_column_inner][vc_column_inner width=\"1/6\"][dt_fancy_image image_id=\"3410\" width=\"300\" caption=\"off\"][/vc_column_inner][vc_column_inner width=\"1/6\"][dt_fancy_image image_id=\"3406\" width=\"300\" caption=\"off\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row full_width=\"stretch_row\" equal_height=\"yes\" content_placement=\"bottom\" css=\".vc_custom_1693625624233{margin-top: 15px !important;}\"][vc_column][ultimate_heading main_heading=\"Awards\" main_heading_color=\"#762888\" main_heading_margin=\"margin-top:35px;\"][/ultimate_heading][ultimate_carousel slide_to_scroll=\"single\" title_text_typography=\"\"][dt_fancy_image image_id=\"3412\" width=\"300\" caption=\"off\"][dt_fancy_image image_id=\"3413\" width=\"300\" caption=\"off\"][dt_fancy_image image_id=\"3414\" width=\"300\" caption=\"off\"][dt_fancy_image image_id=\"3415\" width=\"300\" caption=\"off\"][dt_fancy_image image_id=\"3416\" width=\"300\" caption=\"off\"][dt_fancy_image image_id=\"3417\" width=\"300\" caption=\"off\"][dt_fancy_image image_id=\"3418\" width=\"300\" caption=\"off\"][dt_fancy_image image_id=\"3420\" width=\"300\" caption=\"off\"][dt_fancy_image image_id=\"3419\" width=\"300\" caption=\"off\"][dt_fancy_image image_id=\"3422\" width=\"300\" caption=\"off\"][dt_fancy_image image_id=\"3421\" width=\"300\" caption=\"off\"][dt_fancy_image image_id=\"3422\" width=\"300\" caption=\"off\"][dt_fancy_image image_id=\"3423\" width=\"300\" caption=\"off\"][dt_fancy_image image_id=\"3424\" width=\"300\" caption=\"off\"][dt_fancy_image image_id=\"3425\" width=\"300\" caption=\"off\"][/ultimate_carousel][/vc_column][/vc_row][vc_row css=\".vc_custom_1693625068958{margin-top: 15px !important;}\"][vc_column][ultimate_heading main_heading=\"Board Of Directors\" main_heading_color=\"#762888\" main_heading_margin=\"margin-top:35px;margin-bottom:35px;\"][/ultimate_heading][ultimate_carousel slides_on_desk=\"3\" slides_on_mob=\"1\" arrow_style=\"square-bg\" arrow_bg_color=\"#039447\" arrow_color=\"#ffffff\" next_icon=\"ultsl-arrow-right6\" prev_icon=\"ultsl-arrow-left6\" dots_color=\"#039447\" item_animation=\"fadeIn\"][vc_row_inner][vc_column_inner][dt_fancy_image image_id=\"3173\" width=\"300\" border_radius=\"1px\" caption=\"off\"][ultimate_heading main_heading=\"Quisque sed nibh tristique\" heading_tag=\"h3\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;\"]Duis lorem risus, aliquet a auctor a, venenatis in dui. Praesent et eros et risus dapibus placerat hendrerit cursus magna.[/ultimate_heading][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner][dt_fancy_image image_id=\"3170\" width=\"300\" border_radius=\"1px\" caption=\"off\"][ultimate_heading main_heading=\"Quisque sed nibh tristique\" heading_tag=\"h3\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;\"]Duis lorem risus, aliquet a auctor a, venenatis in dui. Praesent et eros et risus dapibus placerat hendrerit cursus magna.[/ultimate_heading][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner][dt_fancy_image image_id=\"3171\" width=\"300\" border_radius=\"1px\" caption=\"off\"][ultimate_heading main_heading=\"Quisque sed nibh tristique\" heading_tag=\"h3\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;\"]Duis lorem risus, aliquet a auctor a, venenatis in dui. Praesent et eros et risus dapibus placerat hendrerit cursus magna.[/ultimate_heading][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner][dt_fancy_image image_id=\"3172\" width=\"300\" border_radius=\"1px\" caption=\"off\"][ultimate_heading main_heading=\"Quisque sed nibh tristique\" heading_tag=\"h3\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;\"]Duis lorem risus, aliquet a auctor a, venenatis in dui. Praesent et eros et risus dapibus placerat hendrerit cursus magna.[/ultimate_heading][/vc_column_inner][/vc_row_inner][/ultimate_carousel][/vc_column][/vc_row][vc_row disable_element=\"yes\"][vc_column][ultimate_heading main_heading=\"Board Of Directors\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;margin-bottom:35px;\"][/ultimate_heading][vc_row_inner][vc_column_inner width=\"1/3\"][ult_animation_block animation=\"fadeInUp\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][dt_fancy_image image_id=\"3172\" width=\"300\" border_radius=\"1px\" caption=\"off\" css=\".vc_custom_1692278922309{border-top-width: 1px !important;border-right-width: 1px !important;border-bottom-width: 1px !important;border-left-width: 1px !important;border-left-color: #059444 !important;border-left-style: solid !important;border-right-color: #059444 !important;border-right-style: solid !important;border-top-color: #059444 !important;border-top-style: solid !important;border-bottom-color: #059444 !important;border-bottom-style: solid !important;border-radius: 1px !important;}\"][ultimate_heading main_heading=\"Quisque sed nibh tristique\" heading_tag=\"h3\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;\"]\r\n<ul>\r\n 	<li>Duis lorem risus, aliquet a auctor a, venenatis in dui. Praesent et eros et risus dapibus placerat hendrerit cursus magna.</li>\r\n 	<li>Praesent et eros et risus dapibus placerat hendrerit cursus magna.</li>\r\n 	<li>aliquet a auctor a, venenatis in dui.</li>\r\n</ul>\r\n[/ultimate_heading][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/3\"][ult_animation_block animation=\"fadeInDown\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][dt_fancy_image image_id=\"3171\" width=\"300\" border_radius=\"1px\" caption=\"off\" css=\".vc_custom_1692278929158{border-top-width: 1px !important;border-right-width: 1px !important;border-bottom-width: 1px !important;border-left-width: 1px !important;border-left-color: #059444 !important;border-left-style: solid !important;border-right-color: #059444 !important;border-right-style: solid !important;border-top-color: #059444 !important;border-top-style: solid !important;border-bottom-color: #059444 !important;border-bottom-style: solid !important;border-radius: 1px !important;}\"][ultimate_heading main_heading=\"Quisque sed nibh tristique\" heading_tag=\"h3\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;\"]\r\n<ul>\r\n 	<li>Duis lorem risus, aliquet a auctor a, venenatis in dui. Praesent et eros et risus dapibus placerat hendrerit cursus magna.</li>\r\n 	<li>Praesent et eros et risus dapibus placerat hendrerit cursus magna.</li>\r\n 	<li>aliquet a auctor a, venenatis in dui.</li>\r\n</ul>\r\n[/ultimate_heading][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/3\"][ult_animation_block animation=\"fadeInUp\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][dt_fancy_image image_id=\"3170\" width=\"300\" border_radius=\"1px\" caption=\"off\" css=\".vc_custom_1692278936750{border-top-width: 1px !important;border-right-width: 1px !important;border-bottom-width: 1px !important;border-left-width: 1px !important;border-left-color: #059444 !important;border-left-style: solid !important;border-right-color: #059444 !important;border-right-style: solid !important;border-top-color: #059444 !important;border-top-style: solid !important;border-bottom-color: #059444 !important;border-bottom-style: solid !important;border-radius: 1px !important;}\"][ultimate_heading main_heading=\"Quisque sed nibh tristique\" heading_tag=\"h3\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;\"]\r\n<ul>\r\n 	<li>Duis lorem risus, aliquet a auctor a, venenatis in dui. Praesent et eros et risus dapibus placerat hendrerit cursus magna.</li>\r\n 	<li>Praesent et eros et risus dapibus placerat hendrerit cursus magna.</li>\r\n 	<li>aliquet a auctor a, venenatis in dui.</li>\r\n</ul>\r\n[/ultimate_heading][/ult_animation_block][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row disable_element=\"yes\"][vc_column][ultimate_heading main_heading=\"Executive Directors\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;margin-bottom:35px;\"][/ultimate_heading][vc_row_inner][vc_column_inner width=\"1/5\"][ult_animation_block animation=\"fadeInUp\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][dt_fancy_image image_id=\"3172\" width=\"300\" border_radius=\"1px\" caption=\"off\" css=\".vc_custom_1692278922309{border-top-width: 1px !important;border-right-width: 1px !important;border-bottom-width: 1px !important;border-left-width: 1px !important;border-left-color: #059444 !important;border-left-style: solid !important;border-right-color: #059444 !important;border-right-style: solid !important;border-top-color: #059444 !important;border-top-style: solid !important;border-bottom-color: #059444 !important;border-bottom-style: solid !important;border-radius: 1px !important;}\"][ultimate_heading main_heading=\"Quisque sed nibh tristique\" heading_tag=\"h3\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;\"]\r\n<ul>\r\n 	<li>Duis lorem risus, aliquet a auctor a, venenatis in dui. Praesent et eros et risus dapibus placerat hendrerit cursus magna.</li>\r\n 	<li>Praesent et eros et risus dapibus placerat hendrerit cursus magna.</li>\r\n 	<li>aliquet a auctor a, venenatis in dui.</li>\r\n</ul>\r\n[/ultimate_heading][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/5\"][ult_animation_block animation=\"fadeInDown\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][dt_fancy_image image_id=\"3171\" width=\"300\" border_radius=\"1px\" caption=\"off\" css=\".vc_custom_1692278929158{border-top-width: 1px !important;border-right-width: 1px !important;border-bottom-width: 1px !important;border-left-width: 1px !important;border-left-color: #059444 !important;border-left-style: solid !important;border-right-color: #059444 !important;border-right-style: solid !important;border-top-color: #059444 !important;border-top-style: solid !important;border-bottom-color: #059444 !important;border-bottom-style: solid !important;border-radius: 1px !important;}\"][ultimate_heading main_heading=\"Quisque sed nibh tristique\" heading_tag=\"h3\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;\"]\r\n<ul>\r\n 	<li>Duis lorem risus, aliquet a auctor a, venenatis in dui. Praesent et eros et risus dapibus placerat hendrerit cursus magna.</li>\r\n 	<li>Praesent et eros et risus dapibus placerat hendrerit cursus magna.</li>\r\n 	<li>aliquet a auctor a, venenatis in dui.</li>\r\n</ul>\r\n[/ultimate_heading][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/5\"][ult_animation_block animation=\"fadeInUp\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][dt_fancy_image image_id=\"3170\" width=\"300\" border_radius=\"1px\" caption=\"off\" css=\".vc_custom_1692278936750{border-top-width: 1px !important;border-right-width: 1px !important;border-bottom-width: 1px !important;border-left-width: 1px !important;border-left-color: #059444 !important;border-left-style: solid !important;border-right-color: #059444 !important;border-right-style: solid !important;border-top-color: #059444 !important;border-top-style: solid !important;border-bottom-color: #059444 !important;border-bottom-style: solid !important;border-radius: 1px !important;}\"][ultimate_heading main_heading=\"Quisque sed nibh tristique\" heading_tag=\"h3\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;\"]\r\n<ul>\r\n 	<li>Duis lorem risus, aliquet a auctor a, venenatis in dui. Praesent et eros et risus dapibus placerat hendrerit cursus magna.</li>\r\n 	<li>Praesent et eros et risus dapibus placerat hendrerit cursus magna.</li>\r\n 	<li>aliquet a auctor a, venenatis in dui.</li>\r\n</ul>\r\n[/ultimate_heading][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/5\"][ult_animation_block animation=\"fadeInDown\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][dt_fancy_image image_id=\"3170\" width=\"300\" border_radius=\"1px\" caption=\"off\" css=\".vc_custom_1692278936750{border-top-width: 1px !important;border-right-width: 1px !important;border-bottom-width: 1px !important;border-left-width: 1px !important;border-left-color: #059444 !important;border-left-style: solid !important;border-right-color: #059444 !important;border-right-style: solid !important;border-top-color: #059444 !important;border-top-style: solid !important;border-bottom-color: #059444 !important;border-bottom-style: solid !important;border-radius: 1px !important;}\"][ultimate_heading main_heading=\"Quisque sed nibh tristique\" heading_tag=\"h3\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;\"]\r\n<ul>\r\n 	<li>Duis lorem risus, aliquet a auctor a, venenatis in dui. Praesent et eros et risus dapibus placerat hendrerit cursus magna.</li>\r\n 	<li>Praesent et eros et risus dapibus placerat hendrerit cursus magna.</li>\r\n 	<li>aliquet a auctor a, venenatis in dui.</li>\r\n</ul>\r\n[/ultimate_heading][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/5\"][ult_animation_block animation=\"fadeInDown\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][dt_fancy_image image_id=\"3171\" width=\"300\" border_radius=\"1px\" caption=\"off\" css=\".vc_custom_1692278929158{border-top-width: 1px !important;border-right-width: 1px !important;border-bottom-width: 1px !important;border-left-width: 1px !important;border-left-color: #059444 !important;border-left-style: solid !important;border-right-color: #059444 !important;border-right-style: solid !important;border-top-color: #059444 !important;border-top-style: solid !important;border-bottom-color: #059444 !important;border-bottom-style: solid !important;border-radius: 1px !important;}\"][ultimate_heading main_heading=\"Quisque sed nibh tristique\" heading_tag=\"h3\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;\"]\r\n<ul>\r\n 	<li>Duis lorem risus, aliquet a auctor a, venenatis in dui. Praesent et eros et risus dapibus placerat hendrerit cursus magna.</li>\r\n 	<li>Praesent et eros et risus dapibus placerat hendrerit cursus magna.</li>\r\n 	<li>aliquet a auctor a, venenatis in dui.</li>\r\n</ul>\r\n[/ultimate_heading][/ult_animation_block][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner width=\"2/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row disable_element=\"yes\"][vc_column][ultimate_heading main_heading=\"Next Generation\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;margin-bottom:35px;\"][/ultimate_heading][vc_row_inner][vc_column_inner width=\"1/2\"][ult_animation_block animation=\"fadeInUp\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][dt_fancy_image image_id=\"3172\" width=\"300\" border_radius=\"1px\" caption=\"off\" css=\".vc_custom_1692278922309{border-top-width: 1px !important;border-right-width: 1px !important;border-bottom-width: 1px !important;border-left-width: 1px !important;border-left-color: #059444 !important;border-left-style: solid !important;border-right-color: #059444 !important;border-right-style: solid !important;border-top-color: #059444 !important;border-top-style: solid !important;border-bottom-color: #059444 !important;border-bottom-style: solid !important;border-radius: 1px !important;}\"][ultimate_heading main_heading=\"Quisque sed nibh tristique\" heading_tag=\"h3\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;\"]\r\n<ul>\r\n 	<li>Duis lorem risus, aliquet a auctor a, venenatis in dui. Praesent et eros et risus dapibus placerat hendrerit cursus magna.</li>\r\n 	<li>Praesent et eros et risus dapibus placerat hendrerit cursus magna.</li>\r\n 	<li>aliquet a auctor a, venenatis in dui.</li>\r\n</ul>\r\n[/ultimate_heading][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/2\"][ult_animation_block animation=\"fadeInDown\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][dt_fancy_image image_id=\"3171\" width=\"300\" border_radius=\"1px\" caption=\"off\" css=\".vc_custom_1692278929158{border-top-width: 1px !important;border-right-width: 1px !important;border-bottom-width: 1px !important;border-left-width: 1px !important;border-left-color: #059444 !important;border-left-style: solid !important;border-right-color: #059444 !important;border-right-style: solid !important;border-top-color: #059444 !important;border-top-style: solid !important;border-bottom-color: #059444 !important;border-bottom-style: solid !important;border-radius: 1px !important;}\"][ultimate_heading main_heading=\"Quisque sed nibh tristique\" heading_tag=\"h3\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;\"]\r\n<ul>\r\n 	<li>Duis lorem risus, aliquet a auctor a, venenatis in dui. Praesent et eros et risus dapibus placerat hendrerit cursus magna.</li>\r\n 	<li>Praesent et eros et risus dapibus placerat hendrerit cursus magna.</li>\r\n 	<li>aliquet a auctor a, venenatis in dui.</li>\r\n</ul>\r\n[/ultimate_heading][/ult_animation_block][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row]','About us','','inherit','closed','closed','','2917-revision-v1','','','2023-09-02 06:29:42','2023-09-02 06:29:42','',2917,'https://farmchemie.yasithawd.com/?p=3429',0,'revision','',0),(3430,1,'2023-09-02 06:43:25','2023-09-02 06:43:25','','Prazimec-D_600px','','inherit','open','closed','','prazimec-d_600px','','','2023-09-02 06:43:25','2023-09-02 06:43:25','',3373,'https://farmchemie.yasithawd.com/wp-content/uploads/2023/08/Prazimec-D_600px.png',0,'attachment','image/png',0),(3431,1,'2023-09-02 06:43:45','2023-09-02 06:43:45','','Prazimec-D_logo','','inherit','open','closed','','prazimec-d_logo','','','2023-09-02 06:43:45','2023-09-02 06:43:45','',3373,'https://farmchemie.yasithawd.com/wp-content/uploads/2023/08/Prazimec-D_logo.png',0,'attachment','image/png',0),(3433,1,'2023-09-04 04:53:16','2023-09-04 04:53:16','','IMIDOCARB - LH','<h3>Injectable Solution Imidocarb</h3>\r\n[dt_divider style=\"thick\" /]\r\n\r\n&nbsp;\r\n\r\n<strong>Composition: </strong>\r\n\r\nEach 1 mL contains,\r\nImidocarb dipropionate – 120 mg\r\n\r\n[dt_divider style=\"thin\" /]\r\n\r\n<strong>Indication: </strong>\r\n\r\nTreatment of babesiosis and anaplasmosis produced by: <em>Babesia bovis, Babesia bigemina, Babesiaequi, Babesia caballi, Babesia canis, Anaplasma </em>sp.,<em> Anaplasma marginale</em>.Chemoprophylactic control of babesiosis when moving animals from clean areas to endemic areas of babesiosis and anaplasmosis.\r\n\r\n[dt_divider style=\"thin\" /]\r\n\r\n<strong>Contraindication:</strong>\r\n\r\nThe safety and effectiveness of imidocarb has not been determined in puppies or in breeding, lactating or pregnant animals. Risk versus benefits should be considered before using this drug in dogs with impaired lung, liver or kidney function.\r\n\r\n[dt_divider style=\"thin\" /]\r\n\r\n<strong>Withdrawal time:</strong>\r\n\r\nAnimals must not be slaughtered for human consumption until a period of at least 90 days from the last administration has passed. Milk intended for human consumption must not be taken during treatment.\r\n\r\n[dt_divider style=\"thin\" /]\r\n\r\n<strong>Dosage: </strong>\r\n\r\nCattle and dogs: Subcutaneously behind the shoulder\r\nHorses: Intramuscular.\r\n\r\nBabesiosis\r\nCattle: 1.0 ml/100 Kg (Equivalent to 1.2 mg/Kg\r\nHorses: 2.0 ml/100 Kg (Equivalent to 2.4 mg/Kg)\r\nDogs: 0.5 ml/20 Kg (Equivalent to 3 mg/Kg)\r\n\r\nAnaplasmosis\r\nCattle: 2.5 ml/100 Kg (Equivalent to 3 mg/Kg)\r\n\r\nBabesiosis-Anaplasmosis\r\nCattle: 2.5 ml/100 Kg (Equivalent to 3 mg/Kg)\r\n\r\nChemoprophylaxis\r\nCattle: 2.5 ml/100 Kg (Equivalent to 3 mg/Kg\r\nHorses: 2.0 ml/100 Kg (Equivalent to 24 mg/Kg)\r\nUsually, a single dose of Imidocarb-LH is required, although the treatment of infections on horses may require 2 doses with an interval of 48 hours. When animals free of Babesiosis are moved to endemic areas.\r\n\r\n[dt_divider style=\"thin\" /]\r\n\r\n<strong>Pack sizes: </strong>\r\n\r\n10 mL, 50 mL and 100 mL\r\n\r\n&nbsp;\r\n\r\n[dt_divider style=\"thick\" /]\r\n\r\n&nbsp;\r\n\r\n<a href=\"/wp-content/uploads/2023/08/AVI-VE.pdf\"><i class=\"fa-solid fa-file-pdf fa-2xl\" style=\"color: #039447\"> pdf</i></a> <a href=\"//wp-content/uploads/2023/08/AVI-3-folding-brochure-SInhala-Final-outline_compressed-4.pdf\"><i class=\"fa-solid fa-file-pdf fa-2xl\" style=\"color: #039447\"> pdf</i></a>','publish','closed','closed','','imidocarb-lh','','','2023-09-24 01:37:39','2023-09-24 01:37:39','',0,'https://farmchemie.yasithawd.com/?post_type=product&#038;p=3433',0,'product','',0),(3434,1,'2023-09-04 05:20:58','2023-09-04 05:20:58','','INVEMOX 15% L.A','<h3><em>Long Acting Injectable Amoxicillin.</em></h3>\r\n[dt_divider style=\"thick\" /]\r\n\r\n&nbsp;\r\n\r\n<strong>Composition: </strong>\r\n\r\nEach 1 mL contains,\r\nAmoxicillin trihydrate – 150 mg\r\n\r\n[dt_divider style=\"thin\" /]\r\n\r\n<strong>Indication: </strong>\r\n\r\nNVEMOX 15% L.A. is indicated in infections caused by sensitive germs in the digestive, respiratory and urogenital tracts, skin and soft tissue as well as diseases complicated by bacteria susceptible to Amoxicillin.\r\n\r\n[dt_divider style=\"thin\" /]\r\n\r\n<strong>Contraindication:</strong>\r\n\r\nDo not administer in rabbits, guinea – pigs and hamsters. Do not administer in animals with a history of allergies to β – lactamics.\r\n\r\n[dt_divider style=\"thin\" /]\r\n\r\n<strong>Withdrawal time:</strong>\r\n\r\nFor meat – 14 days\r\nFor milk – 48 hours (4 milkings)\r\n\r\n[dt_divider style=\"thin\" /]\r\n\r\n<strong>Dosage: </strong>\r\n\r\nAdminister 1 ml INVEMOX 15% L.A. /10 kg b.w./day. (Equivalent to 15 mg amoxicillin per kg b.w.). If necessary, the dosage may be repeated in 48 hours. (Intramuscular or Subcutaneous Route). Do not extend treatment for more than 5-7 days. If recovery does not occur in 48 hours, treatment should be reconsidered. Dose and/or frequency may be increased by veterinarian advice.\r\n\r\n[dt_divider style=\"thin\" /]\r\n\r\n<strong>Pack sizes: </strong>\r\n\r\n50 mL, 100 mL and 250 mL\r\n\r\n&nbsp;\r\n\r\n[dt_divider style=\"thick\" /]\r\n\r\n&nbsp;\r\n\r\n<a href=\"/wp-content/uploads/2023/08/AVI-VE.pdf\"><i class=\"fa-solid fa-file-pdf fa-2xl\" style=\"color: #039447;\"> pdf</i></a> <a href=\"//wp-content/uploads/2023/08/AVI-3-folding-brochure-SInhala-Final-outline_compressed-4.pdf\"><i class=\"fa-solid fa-file-pdf fa-2xl\" style=\"color: #039447;\"> pdf</i></a>','publish','closed','closed','','invemox-15-l-a','','','2023-09-16 03:41:23','2023-09-16 03:41:23','',0,'https://farmchemie.yasithawd.com/?post_type=product&#038;p=3434',0,'product','',0),(3435,1,'2023-09-04 05:27:05','2023-09-04 05:27:05','','KETINK','<h3><em>Solution for Injection for Cattle, Horses and Pigs. </em></h3>\r\n[dt_divider style=\"thick\" /]\r\n\r\n&nbsp;\r\n\r\n<strong>Composition: </strong>\r\n\r\nEach 1 mL contains,\r\nKetoprofen – 100 mg\r\n\r\n[dt_divider style=\"thin\" /]\r\n\r\n<strong>Indication: </strong>\r\n\r\nCattle: Anti-inflammatory and analgesic treatment of diseases in the musculoskeletal system and the udder.\r\n\r\nPigs: Anti-inflammatory and antipyretic treatment of Mastitis Metritis Agalactia Syndrome and respiratory diseases.\r\n\r\nHorses: Anti-inflammatory and analgesic treatment of diseases in the musculature, joints and skeleton. Symptomatic analgesic treatment for colic. Postoperative pain and swelling.\r\n\r\n[dt_divider style=\"thin\" /]\r\n\r\n<strong>Contraindication:</strong>\r\n\r\nDo not use in case of hypersensitivity to the active substance or to any of the excipients. Do not use in animals suffering from gastrointestinal lesions, heamorrhagic diathesis, blood dyscrasia, impaired hepatic, and cardiac or renal function. Do not use other non-steroidal anti-inflammatory drugs (NSAID) concurrently or within 24 hours of each other.\r\n\r\n[dt_divider style=\"thin\" /]\r\n\r\n<strong>Withdrawal time:</strong>\r\n\r\nFor meat and offal – 4 days\r\nFor milk – Zero hours; Not authorized for use in mares producing milk for human consumption.\r\n\r\n[dt_divider style=\"thin\" /]\r\n\r\n<strong>Dosage: </strong>\r\n\r\nCattle: Intramuscular or Intravenous use. 3 mL / 100 kg body weight once a day for up to 3 days\r\nHorses: Intravenous use. 1 mL / 45 kg body weight once per day for 3-5 days\r\nPig: Intramuscular use. 3 mL / 100 kg body weight administered once\r\n\r\n[dt_divider style=\"thin\" /]\r\n\r\n<strong>Pack sizes: </strong>\r\n\r\n100 mL and 250 mL\r\n\r\n&nbsp;\r\n\r\n[dt_divider style=\"thick\" /]\r\n\r\n&nbsp;\r\n\r\n<a href=\"/wp-content/uploads/2023/08/AVI-VE.pdf\"><i class=\"fa-solid fa-file-pdf fa-2xl\" style=\"color: #039447;\"> pdf</i></a> <a href=\"//wp-content/uploads/2023/08/AVI-3-folding-brochure-SInhala-Final-outline_compressed-4.pdf\"><i class=\"fa-solid fa-file-pdf fa-2xl\" style=\"color: #039447;\"> pdf</i></a>','publish','closed','closed','','ketink','','','2023-09-16 03:40:11','2023-09-16 03:40:11','',0,'https://farmchemie.yasithawd.com/?post_type=product&#038;p=3435',0,'product','',0),(3436,1,'2023-09-04 05:31:48','2023-09-04 05:31:48','','MAXUVOL','<h3><em>Estradial Injectable Solution </em></h3>\r\n[dt_divider style=\"thick\" /]\r\n\r\n&nbsp;\r\n\r\n<strong>Composition: </strong>\r\n\r\nEach 1 mL contains,\r\nEstradiol – 2 mg\r\n\r\n[dt_divider style=\"thin\" /]\r\n\r\n<strong>Indication: </strong>\r\n\r\nFor their biological activity, estrogens are used to stimulate the myometrial muscular tone, cause regression of the persistent corpus luteum, and improve the function of the corpus luteum in the sows causing relaxing of the cervix and in the treatment of the following conditions, accompanied by antibiotic therapy metritis, pyometra, aid in the expulsion of mummified or macerated fetuses, retained placenta and uterine exudates, is effective in the treatment of uterine incontinence and at the end of the period of pseudopregnancy, to relieve the congestion of the udder in female dogs. lndicated in therapeutic abortion for domestic animals\r\n\r\n[dt_divider style=\"thin\" /]\r\n\r\n<strong>Contraindication:</strong>\r\n\r\nPregnancy and lactation, estrogen-dependent tumors. Undetermined etiology genital hemorrhage. Thromboembolic and liver sicknesses, diabetes, epilepsy and asthma.\r\n\r\n[dt_divider style=\"thin\" /]\r\n\r\n<strong>Withdrawal time:</strong>\r\n\r\nDo not use this product 70 days before the slaughter of animals intended for human consumption.\r\n\r\n[dt_divider style=\"thin\" /]\r\n\r\n<strong>Dosage: </strong>\r\n\r\nAdminister as an intramuscular injection.\r\nAdult cows: 1.5 to 5.0 ml\r\nYoung cows: 1.5 to 2.0 ml\r\nSows: 1.0 to 3 ml\r\nFemale dogs: 0.05 to 0.25 ml.\r\nIf necessary repeat the dose at 7 days after the first application.\r\n\r\n[dt_divider style=\"thin\" /]\r\n\r\n<strong>Pack sizes: </strong>\r\n\r\n20 mL\r\n\r\n&nbsp;\r\n\r\n[dt_divider style=\"thick\" /]\r\n\r\n&nbsp;\r\n\r\n<a href=\"/wp-content/uploads/2023/08/AVI-VE.pdf\"><i class=\"fa-solid fa-file-pdf fa-2xl\" style=\"color: #039447;\"> pdf</i></a> <a href=\"//wp-content/uploads/2023/08/AVI-3-folding-brochure-SInhala-Final-outline_compressed-4.pdf\"><i class=\"fa-solid fa-file-pdf fa-2xl\" style=\"color: #039447;\"> pdf</i></a>','publish','closed','closed','','maxuvol','','','2023-09-16 03:39:09','2023-09-16 03:39:09','',0,'https://farmchemie.yasithawd.com/?post_type=product&#038;p=3436',0,'product','',0),(3437,1,'2023-09-04 05:36:11','2023-09-04 05:36:11','','OXITETRACICLINA 200 L.A','<h3><em>Long-acting Solution for Injection </em></h3>\r\n[dt_divider style=\"thick\" /]\r\n\r\n&nbsp;\r\n\r\n<strong>Composition: </strong>\r\n\r\nEach 1 mL contains,\r\nOxytetracycline – 200 mg\r\n\r\n[dt_divider style=\"thin\" /]\r\n\r\n<strong>Indication: </strong>\r\n\r\nCattle: Shipping fever, enteritis and gastroenteritis, infectious pneumonia, metritis and mastitis.\r\n\r\nPigs: Bronchopulmonary infections, infectious enteritis and gastroenteritis, metritis, pasteurellosis, arthritis and MMA syndrome.\r\n\r\nSheep and goats: Respiratory infections, enteritis, infectious abortion, pyelonephritis and brucellosis\r\n\r\n[dt_divider style=\"thin\" /]\r\n\r\n<strong>Contraindication:</strong>\r\n\r\nDo not administer in animals with renal failure or during the first months of life.\r\n\r\n[dt_divider style=\"thin\" /]\r\n\r\n<strong>Withdrawal time:</strong>\r\n\r\nFor meat – 22 days\r\nFor milk – 3 days (6 milkings)\r\n\r\n[dt_divider style=\"thin\" /]\r\n\r\n<strong>Dosage: </strong>\r\n\r\nIntramuscular use. Inject 1 ml per 10 kg of body weight in a single dose. In severe cases, the injection may be repeated in 72 hours. If doses are higher than 20 ml in cattle, 10 ml in pigs and 5 ml in sheep and goats, it is recommended to divide the dose into two injection sites.\r\n\r\n[dt_divider style=\"thin\" /]\r\n\r\n<strong>Pack sizes: </strong>\r\n\r\n50 mL, 100 mL and 250 mL\r\n\r\n&nbsp;\r\n\r\n[dt_divider style=\"thick\" /]\r\n\r\n&nbsp;\r\n\r\n<a href=\"/wp-content/uploads/2023/08/AVI-VE.pdf\"><i class=\"fa-solid fa-file-pdf fa-2xl\" style=\"color: #039447;\"> pdf</i></a> <a href=\"//wp-content/uploads/2023/08/AVI-3-folding-brochure-SInhala-Final-outline_compressed-4.pdf\"><i class=\"fa-solid fa-file-pdf fa-2xl\" style=\"color: #039447;\"> pdf</i></a>','publish','closed','closed','','oxitetraciclina-200-l-a','','','2023-09-16 03:38:01','2023-09-16 03:38:01','',0,'https://farmchemie.yasithawd.com/?post_type=product&#038;p=3437',0,'product','',0),(3438,1,'2023-09-04 05:39:44','2023-09-04 05:39:44','','PANDEX','<h3><em>Ivermectin 1% Injectable Solution </em></h3>\r\n[dt_divider style=\"thick\" /]\r\n\r\n&nbsp;\r\n\r\n<strong>Composition: </strong>\r\n\r\nEach 1 tablet contains,\r\nIvermectin – 0.01 g\r\n\r\n[dt_divider style=\"thin\" /]\r\n\r\n<strong>Indication: </strong>\r\n\r\nGastrointestinal and pulmonary nematodiasis, invasions with insects and ascarids, etc.\r\n\r\n[dt_divider style=\"thin\" /]\r\n\r\n<strong>Contraindication:</strong>\r\n\r\nThe product must not be applied to dogs breeds Collie, Shelti and Bobtail as well as to tortoises\r\n\r\n[dt_divider style=\"thin\" /]\r\n\r\n<strong>Withdrawal time:</strong>\r\n\r\nFor meat – 14 days\r\nFor milk – 28 days\r\n\r\n[dt_divider style=\"thin\" /]\r\n\r\n<strong>Dosage: </strong>\r\n\r\nFor large ruminants: 1.0 mL/50 kg b.w\r\n\r\nFor small ruminants: 1.0 mL/50 kg b.w\r\n\r\nFor pigs: 1.0 mL / 33 kg b.w\r\n\r\n[dt_divider style=\"thin\" /]\r\n\r\n<strong>Pack sizes: </strong>\r\n\r\n25 mL, 50 mL and 100 mL\r\n\r\n&nbsp;\r\n\r\n[dt_divider style=\"thick\" /]\r\n\r\n&nbsp;\r\n\r\n<a href=\"/wp-content/uploads/2023/08/AVI-VE.pdf\"><i class=\"fa-solid fa-file-pdf fa-2xl\" style=\"color: #039447;\"> pdf</i></a> <a href=\"//wp-content/uploads/2023/08/AVI-3-folding-brochure-SInhala-Final-outline_compressed-4.pdf\"><i class=\"fa-solid fa-file-pdf fa-2xl\" style=\"color: #039447;\"> pdf</i></a>','publish','closed','closed','','pandex','','','2023-09-16 03:36:45','2023-09-16 03:36:45','',0,'https://farmchemie.yasithawd.com/?post_type=product&#038;p=3438',0,'product','',0),(3439,1,'2023-09-04 05:46:45','2023-09-04 05:46:45','','TYLOVET B 200','<h3><em>Antibiotic Solution for Injection </em></h3>\r\n[dt_divider style=\"thick\" /]\r\n\r\n&nbsp;\r\n\r\n<strong>Composition: </strong>\r\n\r\nEach 1 mL contains,\r\nTylosin – 200 mg\r\n\r\n[dt_divider style=\"thin\" /]\r\n\r\n<strong>Indication: </strong>\r\n\r\nRespiratory diseases in large and small ruminants, pigs, dogs, cats (rhinitis, tonsillitis, laryngitis, bronchitis, pneumonia, etc.); necrotic enteritis, erythema, enzootic bronchopneumonia, dysentery in pigs; mastitis and endometritis, infectious agalactia in sheep and goats; arthritis of mycoplasmic origin; vibriosis in cows and sheep; panaritium, otitis, and infected wounds; leptospirosis; infectious conjunctivitis in calves and cows.\r\n\r\n[dt_divider style=\"thin\" /]\r\n\r\n<strong>Contraindication:</strong>\r\n\r\nThe product should not be applied to horses, rabbits, guinea pigs, hamsters as well as to newborn animals.\r\n\r\n[dt_divider style=\"thin\" /]\r\n\r\n<strong>Withdrawal time:</strong>\r\n\r\nFor meat and offal: Large ruminants: 21 days. Sheep, goats: 8 days. Pigs: 14 days.\r\nFor milk: Cows, sheep, goats: 5 days.\r\n\r\n[dt_divider style=\"thin\" /]\r\n\r\n<strong>Dosage: </strong>\r\n\r\nYLOVET B-200 injectable solution is administered only once in 24 hours at the following doses:\r\n\r\nLarge ruminants: 2.5 ml per 100 kg bodyweight (equivalent to 5 mg tylosin per kg bodyweight) administered in a single treatment. Small ruminants (sheep, goats): 0.5 - 0.6 ml per 10 kg bodyweight (equivalent to 10-12 mg tylosin per kg bodyweight) administered in a single treatment.\r\n\r\nPigs, dogs: 0.5 ml per 10 kg bodyweight (equivalent to 10 mg tylosin per kg bodyweight) administered in a single treatment. Continue treatment for at least 24 hours after disappearance of the symptoms of the disease but for not more than 5 days. If used repeatedly, change the site of injection.\r\n\r\n[dt_divider style=\"thin\" /]\r\n\r\n<strong>Pack sizes: </strong>\r\n\r\n50 mL, and 100 mL\r\n\r\n&nbsp;\r\n\r\n[dt_divider style=\"thick\" /]\r\n\r\n&nbsp;\r\n\r\n<a href=\"/wp-content/uploads/2023/08/AVI-VE.pdf\"><i class=\"fa-solid fa-file-pdf fa-2xl\" style=\"color: #039447;\"> pdf</i></a> <a href=\"//wp-content/uploads/2023/08/AVI-3-folding-brochure-SInhala-Final-outline_compressed-4.pdf\"><i class=\"fa-solid fa-file-pdf fa-2xl\" style=\"color: #039447;\"> pdf</i></a>','publish','closed','closed','','tylovet-b-200','','','2023-09-16 03:18:07','2023-09-16 03:18:07','',0,'https://farmchemie.yasithawd.com/?post_type=product&#038;p=3439',0,'product','',0),(3440,1,'2023-09-04 05:50:13','2023-09-04 05:50:13','','HEMO BOOS','<h3><em>Liquid nutritional supplement rich in Iron and Vitamins for Dogs and Cats</em></h3>\r\n[dt_divider style=\"thick\" /]\r\n\r\n&nbsp;\r\n\r\n<strong>Composition: </strong>\r\n\r\nEach 1 L contains,\r\nIron (as ferrous glycinate) -2.0 g\r\nCopper (as copper glycinate) -1.0 g\r\nCobalt (as cobalt glycinate) -0.4 g\r\nVitamin B2 -0.1 g\r\nVitamin B3 -0.5 g\r\nVitamin B6 -0.05 g\r\nVitamin B12 -0.002 g\r\nFolic Acid -0.02 g\r\nVitamin D3 -250 IU\r\nLecithin -2.5 mg\r\nInositol - 2 mg\r\nBetaine hydrochloride - 2.5 mg\r\n\r\n[dt_divider style=\"thin\" /]\r\n\r\n<strong>Indication: </strong>\r\n\r\nUse in anemic conditions like nutritional deficiency. Parasitic infestations, debility and convalescence\r\n\r\n[dt_divider style=\"thin\" /]\r\n\r\n<strong>Dosage: </strong>\r\n\r\nDogs: 5 mL / 20 kg B.W twice a day\r\nCats: 0.5 mL / 5 kg B.W twice a day\r\nFor pups and kittens feed according to the B.W\r\nCan be given in feed or water or directly into the mouth or as directed by veterinarian.\r\n\r\n[dt_divider style=\"thin\" /]\r\n\r\n<strong>Pack sizes: </strong>\r\n\r\n200 mL\r\n\r\n&nbsp;\r\n\r\n[dt_divider style=\"thick\" /]\r\n\r\n&nbsp;\r\n\r\n<a href=\"/wp-content/uploads/2023/08/AVI-VE.pdf\"><i class=\"fa-solid fa-file-pdf fa-2xl\" style=\"color: #039447;\"> pdf</i></a> <a href=\"//wp-content/uploads/2023/08/AVI-3-folding-brochure-SInhala-Final-outline_compressed-4.pdf\"><i class=\"fa-solid fa-file-pdf fa-2xl\" style=\"color: #039447;\"> pdf</i></a>','publish','closed','closed','','hemo-boos','','','2023-09-16 08:36:10','2023-09-16 08:36:10','',0,'https://farmchemie.yasithawd.com/?post_type=product&#038;p=3440',0,'product','',0),(3441,1,'2023-09-04 05:55:41','2023-09-04 05:55:41','','SUPER PUP','<h3><em>Vitamin and Amino Acid Supplement for Dog and Cat</em></h3>\r\n[dt_divider style=\"thick\" /]\r\n\r\n&nbsp;\r\n\r\n<strong>Composition: </strong>\r\n\r\nEach 15 mL contains,\r\nL-Leucine - 18.3 mg\r\nL-Isoleucine - 5.9 mg\r\nL-Lysine HCL 25 - mg\r\nL-Phenylalanine - 5 mg\r\nL-Threonine - 4.2 mg\r\nL-Methionine - 9.2 mg\r\nL-Tryptophan - 5 mg\r\nL-Valine - 6.7 mg\r\nVitamin B 1 - 5.5 mg\r\nVitamin B2 - 3 mg\r\nVitamini B6 - 1.2 mg\r\nVitamin B3 - 25 mg\r\nVitamin B5 - 5 mg\r\nVitamin B12 - 2.5 mcg\r\nFolic acid - 0.8 mg\r\nAscorbic Acid - 40 mg\r\nVitamin D3 - 200 IU\r\nVitamin E - 7.5 IU\r\n\r\n[dt_divider style=\"thin\" /]\r\n\r\n<strong>Indication: </strong>\r\n\r\nAs a nutritional supplement for deficiencies in vitamins and amino acids. To be used I young &amp; adult pets. To increase alertness and mental development, growth &amp; development. To increase absolute muscle mass. For proper digestion and utilization of feed. Helps in blood system. To improve defense mechanisms of pet’s body by anti- oxidant in the syrup. Helps pets to recover from weaknesses caused by deadly diseases like Pavo virus and Tick fever.\r\n\r\n[dt_divider style=\"thin\" /]\r\n\r\n<strong>Dosage: </strong>\r\n\r\n0.5 ml/Kg body weight. To be fed mixed with food or water\r\n\r\n[dt_divider style=\"thin\" /]\r\n\r\n<strong>Pack sizes: </strong>\r\n\r\n200 mL\r\n\r\n&nbsp;\r\n\r\n[dt_divider style=\"thick\" /]\r\n\r\n&nbsp;\r\n\r\n<a href=\"/wp-content/uploads/2023/08/AVI-VE.pdf\"><i class=\"fa-solid fa-file-pdf fa-2xl\" style=\"color: #039447;\"> pdf</i></a> <a href=\"//wp-content/uploads/2023/08/AVI-3-folding-brochure-SInhala-Final-outline_compressed-4.pdf\"><i class=\"fa-solid fa-file-pdf fa-2xl\" style=\"color: #039447;\"> pdf</i></a>','publish','closed','closed','','super-pup','','','2023-09-16 08:37:09','2023-09-16 08:37:09','',0,'https://farmchemie.yasithawd.com/?post_type=product&#038;p=3441',0,'product','',0),(3442,1,'2023-09-04 05:59:37','2023-09-04 05:59:37','','CANNY BOOST','<h3><em>Vitamin, Mineral &amp; Amino Acid Blend for Complete Nutritional Supplement </em></h3>\r\n[dt_divider style=\"thick\" /]\r\n\r\n&nbsp;\r\n\r\n<strong>Composition: </strong>\r\n\r\nEach 1 kg contains,\r\nVitamin A - 200,000 IU\r\nVitamin D - 50,000 IU\r\nVitamin E - 1,000 mg\r\nVitamin K - 21.5 mg\r\nVitamin C - 150 mg\r\nVitamin B1 - 2,000 mg\r\nVitamin B2 - 100 mg\r\nVitamin B3 - 150 mg\r\nVitamin B5 - 200 mg\r\nVitamin B6 - 100 mg\r\nVitamin B12 - 20 mg\r\nBiotin - 100 mg\r\nFolic acid - 120 mg\r\nIron - 1,000 mg\r\nCopper - 500 mg\r\nZinc - 2,000 mg\r\nManganese - 100 mg\r\nMagnesium - 5 g\r\nPotassium - 360 mg\r\nLodine - 50 mg\r\nCobalt - 10 mg\r\nSelenium - 2.25 mg\r\nPhosphorus - 92 g\r\nCalcium - 153 g\r\nSodium - 52 g\r\nCholine Chloride - 1,000 mg\r\nDL-Methionine - 6 g\r\nL-Lysine - 8.5 g\r\nHydrolysed Animal Protein - 85.636 g\r\nYeast Extract - 50 mg\r\n\r\n[dt_divider style=\"thin\" /]\r\n\r\n<strong>Indication: </strong>\r\n\r\nFor faster growth in pups. For aged animals unable to chew hard tablets. For recovery of animals after disease and surgery. For stronger bones and healthy teeth. To overcome weakness and debility. For a shiny &amp; healthy coat. To increase the appetite. To improve fertility in bitches and breeder dogs.\r\n\r\n[dt_divider style=\"thin\" /]\r\n\r\n<strong>Dosage: </strong>\r\n\r\nAdult Dogs\r\nSmall &amp; Medium Breeds...............5 g\r\nLarge Breeds.............................. 10 g\r\nPregnant &amp; Nursing bitches: 7-7.5 g\r\nPuppies\r\nSmaller puppies............................2 g\r\nMedium puppies........................3.5 g\r\nLarger puppies............................. 6 g\r\nCats\r\nAdult Cats..................................4-5 g\r\nKittens....................................... 2-3 g\r\nPregnant &amp; Nursing queens.........6 g\r\n\r\nFeeding Advices: Feed daily with food /milk/ water or directly as per your veterinarian’s advice.\r\n\r\n[dt_divider style=\"thin\" /]\r\n\r\n<strong>Pack sizes: </strong>\r\n\r\n300 g\r\n\r\n&nbsp;\r\n\r\n[dt_divider style=\"thick\" /]\r\n\r\n&nbsp;\r\n\r\n<a href=\"/wp-content/uploads/2023/08/AVI-VE.pdf\"><i class=\"fa-solid fa-file-pdf fa-2xl\" style=\"color: #039447;\"> pdf</i></a> <a href=\"//wp-content/uploads/2023/08/AVI-3-folding-brochure-SInhala-Final-outline_compressed-4.pdf\"><i class=\"fa-solid fa-file-pdf fa-2xl\" style=\"color: #039447;\"> pdf</i></a>','publish','closed','closed','','canny-boost','','','2023-09-12 02:25:31','2023-09-12 02:25:31','',0,'https://farmchemie.yasithawd.com/?post_type=product&#038;p=3442',0,'product','',0),(3443,1,'2023-09-04 06:04:57','2023-09-04 06:04:57','','Super-PUP_Box_600px','','inherit','open','closed','','super-pup_box_600px','','','2023-09-04 06:04:57','2023-09-04 06:04:57','',3441,'https://farmchemie.yasithawd.com/wp-content/uploads/2023/09/Super-PUP_Box_600px.png',0,'attachment','image/png',0),(3444,1,'2023-09-04 06:05:14','2023-09-04 06:05:14','','Super-PUP_logo','','inherit','open','closed','','super-pup_logo','','','2023-09-04 06:05:14','2023-09-04 06:05:14','',3441,'https://farmchemie.yasithawd.com/wp-content/uploads/2023/09/Super-PUP_logo.png',0,'attachment','image/png',0),(3445,1,'2023-09-04 06:07:48','2023-09-04 06:07:48','','Canny-Boost_600px','','inherit','open','closed','','canny-boost_600px','','','2023-09-04 06:07:48','2023-09-04 06:07:48','',3442,'https://farmchemie.yasithawd.com/wp-content/uploads/2023/09/Canny-Boost_600px.png',0,'attachment','image/png',0),(3446,1,'2023-09-04 06:08:10','2023-09-04 06:08:10','','Canny-Boost_logo','','inherit','open','closed','','canny-boost_logo','','','2023-09-04 06:08:10','2023-09-04 06:08:10','',3442,'https://farmchemie.yasithawd.com/wp-content/uploads/2023/09/Canny-Boost_logo.png',0,'attachment','image/png',0),(3447,1,'2023-09-04 06:09:40','2023-09-04 06:09:40','','CANNY B & E','<h3><em>Vitamin and Mineral supplement for healthy growth, muscle tone and shiny skin coat</em></h3>\r\n[dt_divider style=\"thick\" /]\r\n\r\n&nbsp;\r\n\r\n<strong>Composition: </strong>\r\n\r\nEach 1 tablet contains,\r\nSelenium - 0.0225 mg\r\nZinc - 30.0 mg\r\nMagnesium - 0.3 mg\r\nVitamin E - 10.0 mg\r\nThiamin (B1) - 0.1325 mg\r\nRiboflavin (B2) - 0.4 mg\r\nNiacin (B3) - 1.75 mg\r\nPyridoxine (B6) - 0.173 mg\r\nFolic acid - 0.0272 mg\r\nCyanocobalamin (Vitamin B12) - 0.00425 mg\r\nTraces of Inositol, Choline, Biotin and PABA\r\n\r\n[dt_divider style=\"thin\" /]\r\n\r\n<strong>Indication: </strong>\r\n\r\nStimulate nervous system. Maintain shiny and Healthy Skin Coat. Support to maintain healthy immune system and blood circulation\r\n\r\n[dt_divider style=\"thin\" /]\r\n\r\n<strong>Dosage: </strong>\r\n\r\n1-5 kg small breed - 1/2 -1 Tab\r\n6-15 kg Medium breeds - 1-2 Tabs\r\n16-30 kg Large breed - 3 Tabs\r\nMore than 30 kg\r\nExtra-large Breeds - 4 Tabs\r\n\r\n[dt_divider style=\"thin\" /]\r\n\r\n<strong>Pack sizes: </strong>\r\n\r\n60 tablets and 90 tablets\r\n\r\n&nbsp;\r\n\r\n[dt_divider style=\"thick\" /]\r\n\r\n&nbsp;\r\n\r\n<a href=\"/wp-content/uploads/2023/08/AVI-VE.pdf\"><i class=\"fa-solid fa-file-pdf fa-2xl\" style=\"color: #039447;\"> pdf</i></a> <a href=\"//wp-content/uploads/2023/08/AVI-3-folding-brochure-SInhala-Final-outline_compressed-4.pdf\"><i class=\"fa-solid fa-file-pdf fa-2xl\" style=\"color: #039447;\"> pdf</i></a>','publish','closed','closed','','canny-b-e','','','2023-09-12 02:27:50','2023-09-12 02:27:50','',0,'https://farmchemie.yasithawd.com/?post_type=product&#038;p=3447',0,'product','',0),(3450,1,'2023-09-04 06:14:57','2023-09-04 06:14:57','','CANNY BREW','<h3><em>Garlic, Vitamin B &amp; Mineral Supplement enrich with Brewer’s yeast for Skin , Coat &amp; Gut Health </em></h3>\r\n[dt_divider style=\"thick\" /]\r\n\r\n&nbsp;\r\n\r\n<strong>Composition: </strong>\r\n\r\nEach 1 tablet contains,\r\nCrude Protein - 20 %\r\nCrude Fat - 3 %\r\nCrude Fiber - 10 %\r\nIron - 2 mg\r\nCopper - 220 mcg\r\nManganese - 440 mcg\r\nZinc - 3.0 mg\r\nThiamine - 440 mcg\r\nRiboflavin - 440 mcg\r\nPantothenic acid - 880 mcg\r\nNiacin - 1100 mcg\r\nPyridoxine - 40 mcg\r\nFolic acid - 18 mcg\r\nVitamin B12 - 0.18 mcg\r\n\r\n[dt_divider style=\"thin\" /]\r\n\r\n<strong>Indication: </strong>\r\n\r\nAs a vitamin and mineral supplement Support for Skin &amp; Coat Health\r\n\r\n[dt_divider style=\"thin\" /]\r\n\r\n<strong>Dosage: </strong>\r\n\r\nDirectly feed to the animals. One (1) tablet daily per 10 kg of body weight.\r\n\r\n[dt_divider style=\"thin\" /]\r\n\r\n<strong>Pack sizes: </strong>\r\n\r\n60 tablets and 90 tablets\r\n\r\n&nbsp;\r\n\r\n[dt_divider style=\"thick\" /]\r\n\r\n&nbsp;\r\n\r\n<a href=\"/wp-content/uploads/2023/08/AVI-VE.pdf\"><i class=\"fa-solid fa-file-pdf fa-2xl\" style=\"color: #039447;\"> pdf</i></a> <a href=\"//wp-content/uploads/2023/08/AVI-3-folding-brochure-SInhala-Final-outline_compressed-4.pdf\"><i class=\"fa-solid fa-file-pdf fa-2xl\" style=\"color: #039447;\"> pdf</i></a>','publish','closed','closed','','canny-brew','','','2023-09-12 02:29:05','2023-09-12 02:29:05','',0,'https://farmchemie.yasithawd.com/?post_type=product&#038;p=3450',0,'product','',0),(3448,1,'2023-09-04 06:12:16','2023-09-04 06:12:16','','Canny-B&E_90_600px','','inherit','open','closed','','canny-be_90_600px','','','2023-09-04 06:12:16','2023-09-04 06:12:16','',3447,'https://farmchemie.yasithawd.com/wp-content/uploads/2023/09/Canny-BE_90_600px.png',0,'attachment','image/png',0),(3449,1,'2023-09-04 06:12:33','2023-09-04 06:12:33','','Canny-B&E_90','','inherit','open','closed','','canny-be_90','','','2023-09-04 06:12:33','2023-09-04 06:12:33','',3447,'https://farmchemie.yasithawd.com/wp-content/uploads/2023/09/Canny-BE_90.png',0,'attachment','image/png',0),(3453,1,'2023-09-04 06:19:18','2023-09-04 06:19:18','','CANNY CAP','<h3><em>Calcium &amp; Phosphorus Supplement Enrich with Vitamins for Early Bone Growth </em></h3>\r\n[dt_divider style=\"thick\" /]\r\n\r\n&nbsp;\r\n\r\n<strong>Composition: </strong>\r\n\r\nEach 1 tablet contains,\r\nCalcium - 231 mg\r\nPhosphorous - 187 mg\r\nSodium - 38.53 mg\r\nMagnesium - 31.5 mg\r\nIron - 0.825 mg\r\nZinc - 0.275 mg\r\nManganese - 0.275 mg\r\nCopper - 0.2075 mg\r\nIodine - 0.0825 mg\r\nCobalt - 0.07 mg\r\nVitamin A - 2000 IU\r\nVitamin D3 - 500 IU\r\nVitamin B12 - 20 mcg\r\n\r\n[dt_divider style=\"thin\" /]\r\n\r\n<strong>Indication: </strong>\r\n\r\nPromote strong teeth and bones. Maintain healthy locomotive system. Fufill special Ca &amp; P requirement in Gestation, lactation and illness.\r\n\r\n[dt_divider style=\"thin\" /]\r\n\r\n<strong>Dosage: </strong>\r\n\r\nSmall puppies &amp; kittens\r\n(Less than 1 kg of BW)................1/2 Tablet\r\nMedium puppies\r\n(about 1-3 kg of BW)......................1 Tablet\r\nLarge Puppies\r\n(about 3-5 kg of BW).....................2 Tablets\r\nAdult dog................. 1 Tab per 10 kg of BW\r\nAdult cat..........................................½ Tablet\r\nPregnant &amp; 1.5Tablets per\r\nNursing Bitch.............................10 kg of BW\r\nPregnant &amp;\r\nNursing Queen..................................1 Tablet\r\n\r\n[dt_divider style=\"thin\" /]\r\n\r\n<strong>Pack sizes: </strong>\r\n\r\n60 tablets and 90 tablets\r\n\r\n&nbsp;\r\n\r\n[dt_divider style=\"thick\" /]\r\n\r\n&nbsp;\r\n\r\n<a href=\"/wp-content/uploads/2023/08/AVI-VE.pdf\"><i class=\"fa-solid fa-file-pdf fa-2xl\" style=\"color: #039447;\"> pdf</i></a> <a href=\"//wp-content/uploads/2023/08/AVI-3-folding-brochure-SInhala-Final-outline_compressed-4.pdf\"><i class=\"fa-solid fa-file-pdf fa-2xl\" style=\"color: #039447;\"> pdf</i></a>','publish','closed','closed','','canny-cap','','','2023-09-12 02:33:18','2023-09-12 02:33:18','',0,'https://farmchemie.yasithawd.com/?post_type=product&#038;p=3453',0,'product','',0),(3451,1,'2023-09-04 06:17:20','2023-09-04 06:17:20','','Canny-BREW_90_600px','','inherit','open','closed','','canny-brew_90_600px','','','2023-09-04 06:17:20','2023-09-04 06:17:20','',3450,'https://farmchemie.yasithawd.com/wp-content/uploads/2023/09/Canny-BREW_90_600px.png',0,'attachment','image/png',0),(3452,1,'2023-09-04 06:17:35','2023-09-04 06:17:35','','Canny-BREW_Logo','','inherit','open','closed','','canny-brew_logo','','','2023-09-04 06:17:35','2023-09-04 06:17:35','',3450,'https://farmchemie.yasithawd.com/wp-content/uploads/2023/09/Canny-BREW_Logo.png',0,'attachment','image/png',0),(3454,1,'2023-09-04 06:23:51','2023-09-04 06:23:51','','Canny-CaP_90_600px','','inherit','open','closed','','canny-cap_90_600px','','','2023-09-04 06:23:51','2023-09-04 06:23:51','',3453,'https://farmchemie.yasithawd.com/wp-content/uploads/2023/09/Canny-CaP_90_600px.png',0,'attachment','image/png',0),(3455,1,'2023-09-04 06:24:13','2023-09-04 06:24:13','','Canny-CaP_60_logo','','inherit','open','closed','','canny-cap_60_logo','','','2023-09-04 06:24:13','2023-09-04 06:24:13','',3453,'https://farmchemie.yasithawd.com/wp-content/uploads/2023/09/Canny-CaP_60_logo.png',0,'attachment','image/png',0),(3456,1,'2023-09-04 09:14:45','2023-09-04 09:14:45','[vc_row disable_element=\"yes\"][vc_column][ult_tab_element tab_style=\"Style_4\" tab_animation=\"Fade\" tab_title_color=\"#ffffff\" tab_background_color=\"#039447\" tab_hover_title_color=\"#ffffff\" tab_hover_background_color=\"#853497\" acttab_title=\"#ffffff\" acttab_background=\"#853497\" disp_icon=\"Disables\"][single_tab title=\"All\" tab_id=\"1692579230326-8\"][dt_products_masonry show_products=\"categories_products\" mode=\"grid\" layout=\"btn_on_img_hover\" bwb_columns=\"desktop:3|h_tablet:3|v_tablet:2|phone:1\" dis_posts_total=\"\" category_ids=\"64\"][/single_tab][single_tab title=\"Cat\" tab_id=\"1692579230334-3\"][dt_products_masonry show_products=\"categories_products\" mode=\"grid\" layout=\"btn_on_img_hover\" bwb_columns=\"desktop:3|h_tablet:3|v_tablet:2|phone:1\" dis_posts_total=\"\" category_ids=\"114\"][/single_tab][single_tab title=\"Dog\" tab_id=\"1692579268639-2-10\"][dt_products_masonry show_products=\"categories_products\" mode=\"grid\" layout=\"btn_on_img_hover\" bwb_columns=\"desktop:3|h_tablet:3|v_tablet:2|phone:1\" dis_posts_total=\"\" category_ids=\"102\"][/single_tab][single_tab title=\"Exotic Birds\" tab_id=\"1692579279159-3-2\"][dt_products_masonry show_products=\"categories_products\" mode=\"grid\" layout=\"btn_on_img_hover\" bwb_columns=\"desktop:3|h_tablet:3|v_tablet:2|phone:1\" dis_posts_total=\"\" category_ids=\"121\"][/single_tab][/ult_tab_element][/vc_column][/vc_row][vc_row][vc_column][product_category per_page=\"\" orderby=\"menu_order title\" order=\"ASC\" category=\"pet-care\"][/vc_column][/vc_row]','Pet Care','','inherit','closed','closed','','3039-revision-v1','','','2023-09-04 09:14:45','2023-09-04 09:14:45','',3039,'https://farmchemie.yasithawd.com/?p=3456',0,'revision','',0),(3558,1,'2023-09-12 13:06:03','2023-09-12 13:06:03','[vc_row][vc_column][vc_basic_grid post_type=\"post\" max_items=\"\" element_width=\"6\" item=\"3501\" grid_id=\"vc_gid:1694523878045-b2f5c526-497b-10\"][/vc_column][/vc_row]','CSR','','inherit','closed','closed','','3468-revision-v1','','','2023-09-12 13:06:03','2023-09-12 13:06:03','',3468,'https://farmchemie.yasithawd.com/?p=3558',0,'revision','',0),(3477,1,'2023-09-11 04:22:49','2023-09-11 04:22:49','[vc_row full_width=\"stretch_row\"][vc_column][dt_products_masonry show_products=\"categories_products\" mode=\"grid\" bwb_columns=\"desktop:3|h_tablet:3|v_tablet:2|phone:1\" loading_mode=\"standard\" st_posts_per_page=\"9\" st_show_all_pages=\"y\" show_categories_filter=\"y\" product_rating=\"n\" category_ids=\"65\"][/vc_column][/vc_row]','Poultry','','inherit','closed','closed','','3027-revision-v1','','','2023-09-11 04:22:49','2023-09-11 04:22:49','',3027,'https://farmchemie.yasithawd.com/?p=3477',0,'revision','',0),(3468,1,'2023-09-11 02:24:50','2023-09-11 02:24:50','[vc_row][vc_column][vc_basic_grid post_type=\"post\" max_items=\"\" item=\"3501\" initial_loading_animation=\"fadeInUp\" grid_id=\"vc_gid:1695628071841-097dfc92-54f6-2\" taxonomies=\"155\"][/vc_column][/vc_row]','CSR','','publish','closed','closed','','csr','','','2023-09-25 07:49:59','2023-09-25 07:49:59','',0,'https://farmchemie.yasithawd.com/?page_id=3468',0,'page','',0),(3469,1,'2023-09-11 02:24:50','2023-09-11 02:24:50','[vc_row][vc_column][vc_basic_grid post_type=\"post\" max_items=\"\" grid_id=\"vc_gid:1694399009732-bb33a4b6-45b6-1\"][/vc_column][/vc_row]','','','inherit','closed','closed','','3468-revision-v1','','','2023-09-11 02:24:50','2023-09-11 02:24:50','',3468,'https://farmchemie.yasithawd.com/?p=3469',0,'revision','',0),(3458,1,'2023-09-06 03:29:16','2023-09-06 03:29:16','[vc_row][vc_column][ult_tab_element tab_style=\"Style_4\" tab_background_color=\"#039447\" tab_hover_background_color=\"#039447\" acttab_background=\"#782d88\" main_title_typograpy=\"\" main_desc_typograpy=\"\"][single_tab title=\"All\" tab_id=\"1693970747848-2\"][dt_products_masonry show_products=\"categories_products\" mode=\"grid\" layout=\"btn_on_img_hover\" bwb_columns=\"desktop:3|h_tablet:3|v_tablet:2|phone:1\" loading_mode=\"standard\" st_posts_per_page=\"9\" st_show_all_pages=\"y\" show_categories_filter=\"y\" product_rating=\"n\" category_ids=\"65\"][/single_tab][single_tab title=\"Vaccine\" tab_id=\"1693970747859-5\"][/single_tab][single_tab title=\"Mycoplasma Antimicrobials\" tab_id=\"1693970864793-2-1\"][/single_tab][single_tab title=\"Supplements \" tab_id=\"1693970877345-3-8\"][/single_tab][single_tab title=\"Dewormer\" tab_id=\"1693970886825-4-6\"][/single_tab][single_tab title=\"Antibacterials\" tab_id=\"1693970896305-5-7\"][/single_tab][single_tab title=\"Disinfectant\" tab_id=\"1693970912794-6-4\"][/single_tab][single_tab title=\"Coccidiocidal\" tab_id=\"1693970919386-7-8\"][/single_tab][single_tab title=\"Acidifiers\" tab_id=\"1693970929034-8-3\"][/single_tab][single_tab title=\"Endo - Ecto Parasiticides\" tab_id=\"1693970936482-9-8\"][/single_tab][/ult_tab_element][/vc_column][/vc_row]','Poultry','','inherit','closed','closed','','3027-revision-v1','','','2023-09-06 03:29:16','2023-09-06 03:29:16','',3027,'https://farmchemie.yasithawd.com/?p=3458',0,'revision','',0),(3466,1,'2023-09-11 02:18:56','2023-09-11 02:18:56','[vc_row full_width=\"stretch_row\"][vc_column][dt_products_masonry show_products=\"categories_products\" mode=\"grid\" layout=\"btn_on_img_hover\" bwb_columns=\"desktop:3|h_tablet:3|v_tablet:2|phone:1\" loading_mode=\"standard\" st_posts_per_page=\"9\" st_show_all_pages=\"y\" show_categories_filter=\"y\" product_rating=\"n\" category_ids=\"65\"][/vc_column][/vc_row]','Poultry','','inherit','closed','closed','','3027-revision-v1','','','2023-09-11 02:18:56','2023-09-11 02:18:56','',3027,'https://farmchemie.yasithawd.com/?p=3466',0,'revision','',0),(3460,1,'2023-09-06 04:18:34','2023-09-06 04:18:34','[vc_row full_width=\"stretch_row\"][vc_column][ult_tab_element tab_style=\"Style_4\" tab_title_color=\"#ffffff\" tab_background_color=\"#039447\" tab_hover_title_color=\"#ffffff\" tab_hover_background_color=\"#039447\" acttab_title=\"#ffffff\" acttab_background=\"#782d88\"][single_tab title=\"All\" tab_id=\"1693970747848-2\"][dt_products_masonry show_products=\"categories_products\" mode=\"grid\" layout=\"btn_on_img_hover\" bwb_columns=\"desktop:3|h_tablet:3|v_tablet:2|phone:1\" loading_mode=\"standard\" st_posts_per_page=\"9\" st_show_all_pages=\"y\" show_categories_filter=\"y\" product_rating=\"n\" category_ids=\"65\"][/single_tab][single_tab title=\"Vaccine\" tab_id=\"1693970747859-5\"][/single_tab][single_tab title=\"Mycoplasma Antimicrobials\" tab_id=\"1693970864793-2-1\"][/single_tab][single_tab title=\"Supplements\" tab_id=\"1693970877345-3-8\"][/single_tab][single_tab title=\"Dewormer\" tab_id=\"1693970886825-4-6\"][/single_tab][single_tab title=\"Antibacterials\" tab_id=\"1693970896305-5-7\"][/single_tab][single_tab title=\"Disinfectant\" tab_id=\"1693970912794-6-4\"][/single_tab][single_tab title=\"Coccidiocidal\" tab_id=\"1693970919386-7-8\"][/single_tab][single_tab title=\"Acidifiers\" tab_id=\"1693970929034-8-3\"][/single_tab][single_tab title=\"Endo - Ecto Parasiticides\" tab_id=\"1693970936482-9-8\"][/single_tab][/ult_tab_element][/vc_column][/vc_row]','Poultry','','inherit','closed','closed','','3027-revision-v1','','','2023-09-06 04:18:34','2023-09-06 04:18:34','',3027,'https://farmchemie.yasithawd.com/?p=3460',0,'revision','',0),(3459,1,'2023-09-06 03:30:23','2023-09-06 03:30:23','[vc_row full_width=\"stretch_row_content\"][vc_column][ult_tab_element tab_style=\"Style_4\" tab_title_color=\"#ffffff\" tab_background_color=\"#039447\" tab_hover_title_color=\"#ffffff\" tab_hover_background_color=\"#039447\" acttab_title=\"#ffffff\" acttab_background=\"#782d88\" main_title_typograpy=\"\" main_desc_typograpy=\"\"][single_tab title=\"All\" tab_id=\"1693970747848-2\"][dt_products_masonry show_products=\"categories_products\" mode=\"grid\" layout=\"btn_on_img_hover\" bwb_columns=\"desktop:3|h_tablet:3|v_tablet:2|phone:1\" loading_mode=\"standard\" st_posts_per_page=\"9\" st_show_all_pages=\"y\" show_categories_filter=\"y\" product_rating=\"n\" category_ids=\"65\"][/single_tab][single_tab title=\"Vaccine\" tab_id=\"1693970747859-5\"][/single_tab][single_tab title=\"Mycoplasma Antimicrobials\" tab_id=\"1693970864793-2-1\"][/single_tab][single_tab title=\"Supplements\" tab_id=\"1693970877345-3-8\"][/single_tab][single_tab title=\"Dewormer\" tab_id=\"1693970886825-4-6\"][/single_tab][single_tab title=\"Antibacterials\" tab_id=\"1693970896305-5-7\"][/single_tab][single_tab title=\"Disinfectant\" tab_id=\"1693970912794-6-4\"][/single_tab][single_tab title=\"Coccidiocidal\" tab_id=\"1693970919386-7-8\"][/single_tab][single_tab title=\"Acidifiers\" tab_id=\"1693970929034-8-3\"][/single_tab][single_tab title=\"Endo - Ecto Parasiticides\" tab_id=\"1693970936482-9-8\"][/single_tab][/ult_tab_element][/vc_column][/vc_row]','Poultry','','inherit','closed','closed','','3027-revision-v1','','','2023-09-06 03:30:23','2023-09-06 03:30:23','',3027,'https://farmchemie.yasithawd.com/?p=3459',0,'revision','',0),(3461,1,'2023-09-06 04:46:13','2023-09-06 04:46:13','','tag test','<h3><em>Calcium &amp; Phosphorus Supplement Enrich with Vitamins for Early Bone Growth </em></h3>\r\n[dt_divider style=\"thick\" /]\r\n\r\n&nbsp;\r\n\r\n<strong>Composition: </strong>\r\n\r\nEach 1 tablet contains,\r\nCalcium - 231 mg\r\nPhosphorous - 187 mg\r\nSodium - 38.53 mg\r\nMagnesium - 31.5 mg\r\nIron - 0.825 mg\r\nZinc - 0.275 mg\r\nManganese - 0.275 mg\r\nCopper - 0.2075 mg\r\nIodine - 0.0825 mg\r\nCobalt - 0.07 mg\r\nVitamin A - 2000 IU\r\nVitamin D3 - 500 IU\r\nVitamin B12 - 20 mcg\r\n\r\n[dt_divider style=\"thin\" /]\r\n\r\n<strong>Indication: </strong>\r\n\r\nPromote strong teeth and bones. Maintain healthy locomotive system. Fufill special Ca &amp; P requirement in Gestation, lactation and illness.\r\n\r\n[dt_divider style=\"thin\" /]\r\n\r\n<strong>Dosage: </strong>\r\n\r\nSmall puppies &amp; kittens\r\n(Less than 1 kg of BW)................1/2 Tablet\r\nMedium puppies\r\n(about 1-3 kg of BW)......................1 Tablet\r\nLarge Puppies\r\n(about 3-5 kg of BW).....................2 Tablets\r\nAdult dog................. 1 Tab per 10 kg of BW\r\nAdult cat..........................................½ Tablet\r\nPregnant &amp; 1.5Tablets per\r\nNursing Bitch.............................10 kg of BW\r\nPregnant &amp;\r\nNursing Queen..................................1 Tablet\r\n\r\n[dt_divider style=\"thin\" /]\r\n\r\n<strong>Pack sizes: </strong>\r\n\r\n60 tablets and 90 tablets\r\n\r\n&nbsp;\r\n\r\n[dt_divider style=\"thick\" /]\r\n\r\n&nbsp;\r\n\r\n<a href=\"/wp-content/uploads/2023/08/AVI-VE.pdf\"><i class=\"fa-solid fa-file-pdf fa-2xl\" style=\"color: #039447;\"> pdf</i></a> <a href=\"//wp-content/uploads/2023/08/AVI-3-folding-brochure-SInhala-Final-outline_compressed-4.pdf\"><i class=\"fa-solid fa-file-pdf fa-2xl\" style=\"color: #039447;\"> pdf</i></a>','trash','closed','closed','','tag-test__trashed','','','2023-09-11 09:46:16','2023-09-11 09:46:16','',0,'https://farmchemie.yasithawd.com/?post_type=product&#038;p=3461',0,'product','',0),(3462,1,'2023-09-06 04:51:06','2023-09-06 04:51:06','','tag test','<h3><em>Calcium &amp; Phosphorus Supplement Enrich with Vitamins for Early Bone Growth </em></h3>\r\n[dt_divider style=\"thick\" /]\r\n\r\n&nbsp;\r\n\r\n<strong>Composition: </strong>\r\n\r\nEach 1 tablet contains,\r\nCalcium - 231 mg\r\nPhosphorous - 187 mg\r\nSodium - 38.53 mg\r\nMagnesium - 31.5 mg\r\nIron - 0.825 mg\r\nZinc - 0.275 mg\r\nManganese - 0.275 mg\r\nCopper - 0.2075 mg\r\nIodine - 0.0825 mg\r\nCobalt - 0.07 mg\r\nVitamin A - 2000 IU\r\nVitamin D3 - 500 IU\r\nVitamin B12 - 20 mcg\r\n\r\n[dt_divider style=\"thin\" /]\r\n\r\n<strong>Indication: </strong>\r\n\r\nPromote strong teeth and bones. Maintain healthy locomotive system. Fufill special Ca &amp; P requirement in Gestation, lactation and illness.\r\n\r\n[dt_divider style=\"thin\" /]\r\n\r\n<strong>Dosage: </strong>\r\n\r\nSmall puppies &amp; kittens\r\n(Less than 1 kg of BW)................1/2 Tablet\r\nMedium puppies\r\n(about 1-3 kg of BW)......................1 Tablet\r\nLarge Puppies\r\n(about 3-5 kg of BW).....................2 Tablets\r\nAdult dog................. 1 Tab per 10 kg of BW\r\nAdult cat..........................................½ Tablet\r\nPregnant &amp; 1.5Tablets per\r\nNursing Bitch.............................10 kg of BW\r\nPregnant &amp;\r\nNursing Queen..................................1 Tablet\r\n\r\n[dt_divider style=\"thin\" /]\r\n\r\n<strong>Pack sizes: </strong>\r\n\r\n60 tablets and 90 tablets\r\n\r\n&nbsp;\r\n\r\n[dt_divider style=\"thick\" /]\r\n\r\n&nbsp;\r\n\r\n<a href=\"/wp-content/uploads/2023/08/AVI-VE.pdf\"><i class=\"fa-solid fa-file-pdf fa-2xl\" style=\"color: #039447;\"> pdf</i></a> <a href=\"//wp-content/uploads/2023/08/AVI-3-folding-brochure-SInhala-Final-outline_compressed-4.pdf\"><i class=\"fa-solid fa-file-pdf fa-2xl\" style=\"color: #039447;\"> pdf</i></a>','inherit','closed','closed','','3461-revision-v1','','','2023-09-06 04:51:06','2023-09-06 04:51:06','',3461,'https://farmchemie.yasithawd.com/?p=3462',0,'revision','',0),(3463,1,'2023-09-11 02:18:24','2023-09-11 02:18:24','<p>[vc_row][vc_column][dt_products_masonry show_products=\"categories_products\" bwb_columns=\"desktop:3|h_tablet:3|v_tablet:2|phone:1\" dis_posts_total=\"12\" show_categories_filter=\"y\" category_ids=\"63\"][/vc_column][/vc_row]</p>\n','Dairy & Large Animals','','inherit','closed','closed','','3032-autosave-v1','','','2023-09-11 02:18:24','2023-09-11 02:18:24','',3032,'https://farmchemie.yasithawd.com/?p=3463',0,'revision','',0),(3782,1,'2023-09-18 10:24:39','2023-09-18 10:24:39','','Vermxil_300px','','inherit','','closed','','vermxil_300px','','','2023-09-18 10:24:39','2023-09-18 10:24:39','',3640,'https://farmchemie.yasithawd.com/wp-content/uploads/2023/09/Vermxil_300px.png',0,'attachment','image/png',0),(3474,1,'2023-09-11 04:19:09','2023-09-11 04:19:09','<label> Your name\r\n    [text* your-name autocomplete:name] </label>\r\n\r\n<label> Phone Number\r\n    [number* number-818 autocomplete:number-818]</label>\r\n\r\n<label> Your email\r\n    [email* your-email autocomplete:email] </label>\r\n\r\n<label> Product Name :- [text product-name] </label>\r\n\r\n<label> Your message\r\n    [textarea* your-message] </label>\r\n\r\n[submit \"Submit\"]\n1\n[_site_title] \"[text product-name]\"\n[_site_title] <wordpress@farmchemie.yasithawd.com>\n[_site_admin_email]\nFrom: [your-name] [your-email]\r\nProduct Name :- [text product-name]\r\n\r\nMessage Body:\r\n[your-message]\r\n\r\n-- \r\nThis e-mail was sent from a contact form on [_site_title] ([_site_url])\nReply-To: [your-email]\n\n\n\n\n[_site_title] \"[your-subject]\"\n[_site_title] <wordpress@farmchemie.yasithawd.com>\n[your-email]\nMessage Body:\r\n[your-message]\r\n\r\n-- \r\nThis e-mail was sent from a contact form on [_site_title] ([_site_url])\nReply-To: [_site_admin_email]\n\n\n\nThank you for your message. It has been sent.\nThere was an error trying to send your message. Please try again later.\nOne or more fields have an error. Please check and try again.\nThere was an error trying to send your message. Please try again later.\nYou must accept the terms and conditions before sending your message.\nPlease fill out this field.\nThis field has a too long input.\nThis field has a too short input.\nThere was an unknown error uploading the file.\nYou are not allowed to upload files of this type.\nThe uploaded file is too large.\nThere was an error uploading the file.\nPlease enter a date in YYYY-MM-DD format.\nThis field has a too early date.\nThis field has a too late date.\nPlease enter a number.\nThis field has a too small number.\nThis field has a too large number.\nThe answer to the quiz is incorrect.\nPlease enter an email address.\nPlease enter a URL.\nPlease enter a telephone number.','product inquiry','','publish','closed','closed','','product-inquiry','','','2023-09-11 14:32:40','2023-09-11 14:32:40','',0,'https://farmchemie.yasithawd.com/?post_type=wpcf7_contact_form&#038;p=3474',0,'wpcf7_contact_form','',0),(3465,1,'2023-09-11 02:18:29','2023-09-11 02:18:29','[vc_row][vc_column][dt_products_masonry show_products=\"categories_products\" bwb_columns=\"desktop:3|h_tablet:3|v_tablet:2|phone:1\" dis_posts_total=\"12\" show_categories_filter=\"y\" category_ids=\"63\"][/vc_column][/vc_row]','Dairy & Large Animals','','inherit','closed','closed','','3032-revision-v1','','','2023-09-11 02:18:29','2023-09-11 02:18:29','',3032,'https://farmchemie.yasithawd.com/?p=3465',0,'revision','',0),(3783,1,'2023-09-18 10:25:10','2023-09-18 10:25:10','','Vermxil_600px-600px','','inherit','','closed','','vermxil_600px-600px','','','2023-09-18 10:25:10','2023-09-18 10:25:10','',3640,'https://farmchemie.yasithawd.com/wp-content/uploads/2023/09/Vermxil_600px-600px.png',0,'attachment','image/png',0),(3471,1,'2023-09-11 02:28:11','2023-09-11 02:28:11','[vc_row][vc_column][vc_basic_grid post_type=\"post\" max_items=\"\" grid_id=\"vc_gid:1694399009732-bb33a4b6-45b6-1\"][/vc_column][/vc_row]','CSR','','inherit','closed','closed','','3468-revision-v1','','','2023-09-11 02:28:11','2023-09-11 02:28:11','',3468,'https://farmchemie.yasithawd.com/?p=3471',0,'revision','',0),(3464,1,'2023-09-07 08:29:47','2023-09-07 08:29:47','[vc_row][vc_column][ult_tab_element tab_style=\"Style_4\" tab_title_color=\"#ffffff\" tab_background_color=\"#039447\" tab_hover_title_color=\"#ffffff\" tab_hover_background_color=\"#039447\" acttab_title=\"#ffffff\" acttab_background=\"#782d88\" main_title_typograpy=\"\" main_desc_typograpy=\"\"][single_tab title=\"Supplements\" tab_id=\"1694075156322-10\"][/single_tab][single_tab title=\"Dewormer\" tab_id=\"1694075156332-7\"][/single_tab][single_tab title=\"Antibacterials\" tab_id=\"1694075260650-2-3\"][/single_tab][single_tab title=\"Antidiarreheoal\" tab_id=\"1694075269897-3-6\"][/single_tab][single_tab title=\"Antiprotozoals\" tab_id=\"1694075279592-4-10\"][/single_tab][single_tab title=\"Antimastitis Treatment\" tab_id=\"1694075292009-5-9\"][/single_tab][single_tab title=\"Injectable Antiprotozoals\" tab_id=\"1694075302872-6-7\"][/single_tab][single_tab title=\"Antibloat\" tab_id=\"1694075311313-7-7\"][/single_tab][single_tab title=\"Bypass Fat\" tab_id=\"1694075321489-8-3\"][/single_tab][single_tab title=\"Injectables\" tab_id=\"1694075332105-9-7\"][/single_tab][single_tab title=\"Ecto Parasiticides\" tab_id=\"1694075342705-10-10\"][/single_tab][single_tab title=\"Topical Wound Care\" tab_id=\"1694075353449-11-1\"][/single_tab][single_tab title=\"Intra-uterine Antimicrobial\" tab_id=\"1694075364377-12-10\"][/single_tab][single_tab title=\"Endo - Ecto Parasiticides\" tab_id=\"1694075372634-13-8\"][/single_tab][/ult_tab_element][/vc_column][/vc_row]','Dairy & Large Animals','','inherit','closed','closed','','3032-revision-v1','','','2023-09-07 08:29:47','2023-09-07 08:29:47','',3032,'https://farmchemie.yasithawd.com/?p=3464',0,'revision','',0),(3475,1,'2023-09-11 04:22:01','2023-09-11 04:22:01','[vc_row full_width=\"stretch_row\"][vc_column][dt_products_masonry show_products=\"categories_products\" mode=\"grid\" layout=\"btn_on_img\" bwb_columns=\"desktop:3|h_tablet:3|v_tablet:2|phone:1\" loading_mode=\"standard\" st_posts_per_page=\"9\" st_show_all_pages=\"y\" show_categories_filter=\"y\" product_rating=\"n\" category_ids=\"65\"][/vc_column][/vc_row]','Poultry','','inherit','closed','closed','','3027-revision-v1','','','2023-09-11 04:22:01','2023-09-11 04:22:01','',3027,'https://farmchemie.yasithawd.com/?p=3475',0,'revision','',0),(3781,1,'2023-09-18 10:03:37','2023-09-18 10:03:37','','CHICKTONIC_300px','','inherit','','closed','','chicktonic_300px','','','2023-09-18 10:03:37','2023-09-18 10:03:37','',3646,'https://farmchemie.yasithawd.com/wp-content/uploads/2023/09/CHICKTONIC_300px.png',0,'attachment','image/png',0),(3479,1,'2023-09-11 04:39:30','2023-09-11 04:39:30','[vc_row full_width=\"stretch_row\"][vc_column][dt_products_masonry show_products=\"categories_products\" mode=\"grid\" bwb_columns=\"desktop:3|h_tablet:3|v_tablet:2|phone:1\" loading_mode=\"standard\" st_posts_per_page=\"9\" st_show_all_pages=\"y\" show_categories_filter=\"y\" product_rating=\"n\" category_ids=\"65\"][/vc_column][/vc_row]','Poultry','','inherit','closed','closed','','3027-revision-v1','','','2023-09-11 04:39:30','2023-09-11 04:39:30','',3027,'https://farmchemie.yasithawd.com/?p=3479',0,'revision','',0),(3478,1,'2023-09-11 04:26:47','2023-09-11 04:26:47','[vc_row full_width=\"stretch_row\"][vc_column][dt_products_masonry show_products=\"categories_products\" mode=\"grid\" bwb_columns=\"desktop:3|h_tablet:3|v_tablet:2|phone:1\" loading_mode=\"standard\" st_posts_per_page=\"9\" st_show_all_pages=\"y\" show_categories_filter=\"y\" product_rating=\"n\" category_ids=\"65\"][product_category per_page=\"\" orderby=\"date\" order=\"ASC\" category=\"poultry\"][/vc_column][/vc_row]','Poultry','','inherit','closed','closed','','3027-revision-v1','','','2023-09-11 04:26:47','2023-09-11 04:26:47','',3027,'https://farmchemie.yasithawd.com/?p=3478',0,'revision','',0),(3481,1,'2023-09-11 04:55:00','2023-09-11 04:55:00','[vc_row][vc_column][dt_products_masonry show_products=\"categories_products\" bwb_columns=\"desktop:3|h_tablet:3|v_tablet:2|phone:1\" dis_posts_total=\"\" product_rating=\"n\" category_ids=\"74\"][/vc_column][/vc_row]','Feed Additives','','inherit','closed','closed','','3098-revision-v1','','','2023-09-11 04:55:00','2023-09-11 04:55:00','',3098,'https://farmchemie.yasithawd.com/?p=3481',0,'revision','',0),(3482,1,'2023-09-11 05:32:03','2023-09-11 05:32:03','','GANADEXIL ENROFLOXACINA 5% INJECTABLE','<h3><em>Long-acting Solution for Injection</em></h3>\r\n[dt_divider style=\"thick\" /]\r\n\r\n&nbsp;\r\n\r\n<strong>Composition: </strong>\r\n\r\nEach 1 mL contains,\r\nEnrofloxacin – 50 mg\r\n\r\n[dt_divider style=\"thin\" /]\r\n\r\n<strong>Indication: </strong>\r\n\r\nCattle (calves): Respiratory tract infections: Bronchopneumonia, Pasteurellosis, Mycoplasmosis. Gastrointestinal tract infections: Diarrhea caused by Colibacilli, Colibacillosis, Colisepticemia.\r\n\r\nSwine: Treatment of Piglet diarrhea, Diarrhea, and Enterotoxemia caused by E. coli and Salmonella spp., MMA syndrome\r\n\r\nDogs: Treatment of respiratory, digestive, urinary, and skin infections caused by microorganisms sensitive to enrofloxacin.\r\n\r\n[dt_divider style=\"thin\" /]\r\n\r\n<strong>Withdrawal time:</strong>\r\n\r\nFor meat – 7 days\r\n\r\n[dt_divider style=\"thin\" /]\r\n\r\n<strong>Dosage: </strong>\r\n\r\nCattle (calves): Administer 0.5 – 1 ml of GANADEXIL ENROFLOXACINA 5% (equivalent to 25 – 50 mg of enrofloxacin)/10 kg of b.w. daily for 3 days. In the case of salmonellosis or severe infections, the length of treatment is 5 days.\r\nSUBCUTANEOUS ROUTE\r\nDo not apply more than 10 ml at the same injection site.\r\n\r\nSwine: Administer 0.5 – 1 ml of GANADEXIL ENROFLOXACINA 5% (equivalent to 25 – 50 mg of enrofloxacin)/10 kg of b.w. daily for 3 days. In the case of salmonellosis or severe infections, the length of treatment is 5 days.\r\nINTRAMUSCULAR ROUTE\r\nDo not apply more than 2.5 ml at the same injection site.\r\n\r\nDogs: Administer 0.1 ml of GANADEXIL ENROFLOXACINA 5% (equivalent to 5 mg of enrofloxacin)/kg of b.w. daily for 5 days.\r\nSUBCUTANEOUS ROUTE\r\nIf recovery does not occur in 3 days, treatment should be reconsidered.\r\n\r\n[dt_divider style=\"thin\" /]\r\n\r\n<strong>Pack sizes: </strong>\r\n\r\n100 mL\r\n\r\n&nbsp;\r\n\r\n[dt_divider style=\"thick\" /]\r\n\r\n&nbsp;\r\n\r\n<a href=\"/wp-content/uploads/2023/08/AVI-VE.pdf\"><i class=\"fa-solid fa-file-pdf fa-2xl\" style=\"color: #039447;\"> pdf</i></a> <a href=\"//wp-content/uploads/2023/08/AVI-3-folding-brochure-SInhala-Final-outline_compressed-4.pdf\"><i class=\"fa-solid fa-file-pdf fa-2xl\" style=\"color: #039447;\"> pdf<a href=\"http://wp-content/uploads/2023/08/AVI-3-folding-brochure-SInhala-Final-outline_compressed-4.pdf\">wp-content/uploads/2023/08/AVI-3-folding-brochure-SInhala-Final-outline_compressed-4.pdf</a></i></a>','inherit','closed','closed','','3432-autosave-v1','','','2023-09-11 05:32:03','2023-09-11 05:32:03','',3432,'https://farmchemie.yasithawd.com/?p=3482',0,'revision','',0),(3484,1,'2023-09-11 08:30:52','2023-09-11 08:30:52','[vc_row][vc_column][vc_media_grid element_width=\"3\" grid_id=\"vc_gid:1694419814425-e2033f42-e96e-3\" include=\"3485,3486,3487,3488,3489,3490,3491,3492,3493,3494,3495\"][/vc_column][/vc_row]','RENOVATION AND FURNISHING SCIENCE LABORATORY AND BUILDING NEW TOILETS AT MAWATHGAMA KANISHTA VIDYALAYA -HOMAGAMA','','trash','open','open','','renovation-and-furnishing-science-laboratory-and-building-new-toilets-at-mawathgama-kanishta-vidyalaya-homagama__trashed','','','2023-09-11 08:37:36','2023-09-11 08:37:36','',0,'https://farmchemie.yasithawd.com/?p=3484',0,'post','',0),(3485,1,'2023-09-11 08:23:38','2023-09-11 08:23:38','','Untitled-6','','inherit','open','closed','','untitled-6','','','2023-09-11 08:23:38','2023-09-11 08:23:38','',3484,'https://farmchemie.yasithawd.com/wp-content/uploads/2023/09/Untitled-6.jpg',0,'attachment','image/jpeg',0),(3486,1,'2023-09-11 08:23:43','2023-09-11 08:23:43','','Untitled-7','','inherit','open','closed','','untitled-7','','','2023-09-11 08:23:43','2023-09-11 08:23:43','',3484,'https://farmchemie.yasithawd.com/wp-content/uploads/2023/09/Untitled-7.jpg',0,'attachment','image/jpeg',0),(3487,1,'2023-09-11 08:23:50','2023-09-11 08:23:50','','Untitled-8','','inherit','open','closed','','untitled-8','','','2023-09-11 08:23:50','2023-09-11 08:23:50','',3484,'https://farmchemie.yasithawd.com/wp-content/uploads/2023/09/Untitled-8.jpg',0,'attachment','image/jpeg',0),(3488,1,'2023-09-11 08:23:56','2023-09-11 08:23:56','','Untitled-9','','inherit','open','closed','','untitled-9','','','2023-09-11 08:23:56','2023-09-11 08:23:56','',3484,'https://farmchemie.yasithawd.com/wp-content/uploads/2023/09/Untitled-9.jpg',0,'attachment','image/jpeg',0),(3489,1,'2023-09-11 08:24:09','2023-09-11 08:24:09','','Untitled-10','','inherit','open','closed','','untitled-10','','','2023-09-11 08:24:09','2023-09-11 08:24:09','',3484,'https://farmchemie.yasithawd.com/wp-content/uploads/2023/09/Untitled-10.jpg',0,'attachment','image/jpeg',0),(3490,1,'2023-09-11 08:24:17','2023-09-11 08:24:17','','Untitled-11','','inherit','open','closed','','untitled-11','','','2023-09-11 08:24:17','2023-09-11 08:24:17','',3484,'https://farmchemie.yasithawd.com/wp-content/uploads/2023/09/Untitled-11.jpg',0,'attachment','image/jpeg',0),(3491,1,'2023-09-11 08:24:23','2023-09-11 08:24:23','','Untitled-1','','inherit','open','closed','','untitled-1','','','2023-09-11 08:24:23','2023-09-11 08:24:23','',3484,'https://farmchemie.yasithawd.com/wp-content/uploads/2023/09/Untitled-1.jpg',0,'attachment','image/jpeg',0),(3492,1,'2023-09-11 08:24:28','2023-09-11 08:24:28','','Untitled-2','','inherit','open','closed','','untitled-2','','','2023-09-11 08:24:28','2023-09-11 08:24:28','',3484,'https://farmchemie.yasithawd.com/wp-content/uploads/2023/09/Untitled-2.jpg',0,'attachment','image/jpeg',0),(3493,1,'2023-09-11 08:24:38','2023-09-11 08:24:38','','Untitled-3','','inherit','open','closed','','untitled-3','','','2023-09-11 08:24:38','2023-09-11 08:24:38','',3484,'https://farmchemie.yasithawd.com/wp-content/uploads/2023/09/Untitled-3.jpg',0,'attachment','image/jpeg',0),(3494,1,'2023-09-11 08:24:43','2023-09-11 08:24:43','','Untitled-4','','inherit','open','closed','','untitled-4','','','2023-09-11 08:24:43','2023-09-11 08:24:43','',3484,'https://farmchemie.yasithawd.com/wp-content/uploads/2023/09/Untitled-4.jpg',0,'attachment','image/jpeg',0),(3495,1,'2023-09-11 08:24:50','2023-09-11 08:24:50','','Untitled-5','','inherit','open','closed','','untitled-5','','','2023-09-11 08:24:50','2023-09-11 08:24:50','',3484,'https://farmchemie.yasithawd.com/wp-content/uploads/2023/09/Untitled-5.jpg',0,'attachment','image/jpeg',0),(3496,1,'2023-09-11 08:30:52','2023-09-11 08:30:52','[vc_row][vc_column][vc_media_grid element_width=\"3\" grid_id=\"vc_gid:1694419814425-e2033f42-e96e-3\" include=\"3485,3486,3487,3488,3489,3490,3491,3492,3493,3494,3495\"][/vc_column][/vc_row]','RENOVATION AND FURNISHING SCIENCE LABORATORY AND BUILDING NEW TOILETS AT MAWATHGAMA KANISHTA VIDYALAYA -HOMAGAMA','','inherit','closed','closed','','3484-revision-v1','','','2023-09-11 08:30:52','2023-09-11 08:30:52','',3484,'https://farmchemie.yasithawd.com/?p=3496',0,'revision','',0),(3497,1,'2023-09-11 08:39:45','2023-09-11 08:39:45','[vc_row][vc_column][vc_media_grid grid_id=\"vc_gid:1694421541717-76252a0b-7ecc-7\" include=\"3495,3485,3494,3493,3492,3491,3489,3490,3488,3487,3486\"][/vc_column][/vc_row]','RENOVATION AND FURNISHING SCIENCE LABORATORY AND BUILDING NEW TOILETS AT MAWATHGAMA KANISHTA VIDYALAYA -HOMAGAMA','','publish','closed','closed','','renovation-and-furnishing-science-laboratory-and-building-new-toilets-at-mawathgama-kanishta-vidyalaya-homagama','','','2023-09-11 08:39:45','2023-09-11 08:39:45','',0,'https://farmchemie.yasithawd.com/?p=3497',0,'post','',0),(3498,1,'2023-09-11 08:39:45','2023-09-11 08:39:45','[vc_row][vc_column][vc_media_grid grid_id=\"vc_gid:1694421541717-76252a0b-7ecc-7\" include=\"3495,3485,3494,3493,3492,3491,3489,3490,3488,3487,3486\"][/vc_column][/vc_row]','RENOVATION AND FURNISHING SCIENCE LABORATORY AND BUILDING NEW TOILETS AT MAWATHGAMA KANISHTA VIDYALAYA -HOMAGAMA','','inherit','closed','closed','','3497-revision-v1','','','2023-09-11 08:39:45','2023-09-11 08:39:45','',3497,'https://farmchemie.yasithawd.com/?p=3498',0,'revision','',0),(3499,1,'2023-09-11 10:41:48','2023-09-11 08:40:42',' ','','','publish','closed','closed','','3499','','','2023-09-11 10:41:48','2023-09-11 10:41:48','',0,'https://farmchemie.yasithawd.com/?p=3499',3,'nav_menu_item','',0),(3501,1,'2023-09-11 08:47:07','2023-09-11 08:47:07','[vc_gitem c_zone_position=\"bottom\"][vc_gitem_animated_block][vc_gitem_zone_a link=\"post_link\" featured_image=\"yes\"][vc_gitem_row position=\"top\"][vc_gitem_col][/vc_gitem_col][/vc_gitem_row][vc_gitem_row position=\"middle\"][vc_gitem_col width=\"1/2\"][/vc_gitem_col][vc_gitem_col width=\"1/2\"][/vc_gitem_col][/vc_gitem_row][vc_gitem_row position=\"bottom\"][vc_gitem_col][/vc_gitem_col][/vc_gitem_row][/vc_gitem_zone_a][vc_gitem_zone_b][vc_gitem_row position=\"top\"][vc_gitem_col][/vc_gitem_col][/vc_gitem_row][vc_gitem_row position=\"middle\"][vc_gitem_col width=\"1/2\"][/vc_gitem_col][vc_gitem_col width=\"1/2\"][/vc_gitem_col][/vc_gitem_row][vc_gitem_row position=\"bottom\"][vc_gitem_col][/vc_gitem_col][/vc_gitem_row][/vc_gitem_zone_b][/vc_gitem_animated_block][vc_gitem_zone_c css=\".vc_custom_1419240516480{background-color: #f9f9f9 !important;}\"][vc_gitem_row][vc_gitem_col][vc_gitem_post_title font_container=\"tag:h5|text_align:left\"][vc_gitem_post_excerpt font_container=\"tag:p|text_align:left\"][vc_btn link=\"post_link\" title=\"Read more\" style=\"custom\" custom_background=\"#089548\" custom_text=\"#ffffff\" align=\"left\"][/vc_gitem_col][/vc_gitem_row][/vc_gitem_zone_c][/vc_gitem]','new design 2','','publish','closed','closed','','new-design-2','','','2023-09-25 07:51:56','2023-09-25 07:51:56','',0,'https://farmchemie.yasithawd.com/?post_type=vc_grid_item&#038;p=3501',0,'vc_grid_item','',0),(3502,1,'2023-09-11 08:47:53','2023-09-11 08:47:53','[vc_row][vc_column][vc_basic_grid post_type=\"post\" max_items=\"\" item=\"3501\" grid_id=\"vc_gid:1694422048858-12e4d7fa-dd48-10\"][/vc_column][/vc_row]','CSR','','inherit','closed','closed','','3468-revision-v1','','','2023-09-11 08:47:53','2023-09-11 08:47:53','',3468,'https://farmchemie.yasithawd.com/?p=3502',0,'revision','',0),(3503,1,'2023-09-11 09:06:53','2023-09-11 09:06:53','[vc_row][vc_column][vc_media_grid grid_id=\"vc_gid:1694423023036-f0c8f13d-3ea7-0\" include=\"3505,3506,3507,3508,3509,3510,3511,3512,3513,3514,3515,3516,3517,3518,3519,3520\"][/vc_column][/vc_row]','ROOFING AND RENOVATING TOILETS AND BUILDING AN ARTESIAN WELL AT HETTIGAMA KANISHTA VIDYALAYA – KURUNEGALA','','publish','closed','closed','','roofing-and-renovating-toilets-and-building-an-artesian-well-at-hettigama-kanishta-vidyalaya-kurunegala','','','2023-09-11 09:07:56','2023-09-11 09:07:56','',0,'https://farmchemie.yasithawd.com/?p=3503',0,'post','',0),(3785,1,'2023-09-19 11:27:54','2023-09-19 11:27:54','','Avishield-ND-B1_300px','','inherit','','closed','','avishield-nd-b1_300px','','','2023-09-19 11:27:54','2023-09-19 11:27:54','',3651,'https://farmchemie.yasithawd.com/wp-content/uploads/2023/09/Avishield-ND-B1_300px.png',0,'attachment','image/png',0),(3505,1,'2023-09-11 09:04:04','2023-09-11 09:04:04','','16','','inherit','','closed','','16','','','2023-09-11 09:04:04','2023-09-11 09:04:04','',3503,'https://farmchemie.yasithawd.com/wp-content/uploads/2023/09/16.jpg',0,'attachment','image/jpeg',0),(3506,1,'2023-09-11 09:04:09','2023-09-11 09:04:09','','1','','inherit','','closed','','1','','','2023-09-11 09:04:09','2023-09-11 09:04:09','',3503,'https://farmchemie.yasithawd.com/wp-content/uploads/2023/09/1.jpg',0,'attachment','image/jpeg',0),(3507,1,'2023-09-11 09:04:17','2023-09-11 09:04:17','','2','','inherit','','closed','','2','','','2023-09-11 09:04:17','2023-09-11 09:04:17','',3503,'https://farmchemie.yasithawd.com/wp-content/uploads/2023/09/2.jpg',0,'attachment','image/jpeg',0),(3508,1,'2023-09-11 09:04:24','2023-09-11 09:04:24','','3','','inherit','','closed','','3','','','2023-09-11 09:04:24','2023-09-11 09:04:24','',3503,'https://farmchemie.yasithawd.com/wp-content/uploads/2023/09/3.jpg',0,'attachment','image/jpeg',0),(3509,1,'2023-09-11 09:04:30','2023-09-11 09:04:30','','4','','inherit','','closed','','4','','','2023-09-11 09:04:30','2023-09-11 09:04:30','',3503,'https://farmchemie.yasithawd.com/wp-content/uploads/2023/09/4.jpg',0,'attachment','image/jpeg',0),(3510,1,'2023-09-11 09:04:36','2023-09-11 09:04:36','','5','','inherit','','closed','','5','','','2023-09-11 09:04:36','2023-09-11 09:04:36','',3503,'https://farmchemie.yasithawd.com/wp-content/uploads/2023/09/5.jpg',0,'attachment','image/jpeg',0),(3511,1,'2023-09-11 09:04:44','2023-09-11 09:04:44','','6','','inherit','','closed','','6','','','2023-09-11 09:04:44','2023-09-11 09:04:44','',3503,'https://farmchemie.yasithawd.com/wp-content/uploads/2023/09/6.jpg',0,'attachment','image/jpeg',0),(3512,1,'2023-09-11 09:04:50','2023-09-11 09:04:50','','7','','inherit','','closed','','7','','','2023-09-11 09:04:50','2023-09-11 09:04:50','',3503,'https://farmchemie.yasithawd.com/wp-content/uploads/2023/09/7.jpg',0,'attachment','image/jpeg',0),(3513,1,'2023-09-11 09:04:59','2023-09-11 09:04:59','','8','','inherit','','closed','','8','','','2023-09-11 09:04:59','2023-09-11 09:04:59','',3503,'https://farmchemie.yasithawd.com/wp-content/uploads/2023/09/8.jpg',0,'attachment','image/jpeg',0),(3514,1,'2023-09-11 09:05:10','2023-09-11 09:05:10','','9','','inherit','','closed','','9','','','2023-09-11 09:05:10','2023-09-11 09:05:10','',3503,'https://farmchemie.yasithawd.com/wp-content/uploads/2023/09/9.jpg',0,'attachment','image/jpeg',0),(3515,1,'2023-09-11 09:05:21','2023-09-11 09:05:21','','10','','inherit','','closed','','10','','','2023-09-11 09:05:21','2023-09-11 09:05:21','',3503,'https://farmchemie.yasithawd.com/wp-content/uploads/2023/09/10.jpg',0,'attachment','image/jpeg',0),(3516,1,'2023-09-11 09:05:30','2023-09-11 09:05:30','','11','','inherit','','closed','','11','','','2023-09-11 09:05:30','2023-09-11 09:05:30','',3503,'https://farmchemie.yasithawd.com/wp-content/uploads/2023/09/11.jpg',0,'attachment','image/jpeg',0),(3517,1,'2023-09-11 09:05:37','2023-09-11 09:05:37','','12','','inherit','','closed','','12','','','2023-09-11 09:05:37','2023-09-11 09:05:37','',3503,'https://farmchemie.yasithawd.com/wp-content/uploads/2023/09/12.jpg',0,'attachment','image/jpeg',0),(3518,1,'2023-09-11 09:05:46','2023-09-11 09:05:46','','13','','inherit','','closed','','13','','','2023-09-11 09:05:46','2023-09-11 09:05:46','',3503,'https://farmchemie.yasithawd.com/wp-content/uploads/2023/09/13.jpg',0,'attachment','image/jpeg',0),(3519,1,'2023-09-11 09:05:58','2023-09-11 09:05:58','','14','','inherit','','closed','','14','','','2023-09-11 09:05:58','2023-09-11 09:05:58','',3503,'https://farmchemie.yasithawd.com/wp-content/uploads/2023/09/14.jpg',0,'attachment','image/jpeg',0),(3520,1,'2023-09-11 09:06:05','2023-09-11 09:06:05','','15','','inherit','','closed','','15','','','2023-09-11 09:06:05','2023-09-11 09:06:05','',3503,'https://farmchemie.yasithawd.com/wp-content/uploads/2023/09/15.jpg',0,'attachment','image/jpeg',0),(3521,1,'2023-09-11 09:06:53','2023-09-11 09:06:53','[vc_row][vc_column][vc_media_grid grid_id=\"vc_gid:1694423023036-f0c8f13d-3ea7-0\" include=\"3505,3506,3507,3508,3509,3510,3511,3512,3513,3514,3515,3516,3517,3518,3519,3520\"][/vc_column][/vc_row]','ROOFING AND RENOVATING TOILETS AND BUILDING AN ARTESIAN WELL AT HETTIGAMA KANISHTA VIDYALAYA – KURUNEGALA','','inherit','closed','closed','','3503-revision-v1','','','2023-09-11 09:06:53','2023-09-11 09:06:53','',3503,'https://farmchemie.yasithawd.com/?p=3521',0,'revision','',0),(3522,1,'2023-09-11 09:24:09','2023-09-11 09:24:09','[vc_row][vc_column][vc_media_grid grid_id=\"vc_gid:1694423374318-afd73027-bd9b-5\" include=\"3523,3524,3525,3526,3527,3528,3529,3530,3531,3532,3533,3534\"][/vc_column][/vc_row]','DONATING A HOUSE TO A WAR HERO','','publish','closed','closed','','donating-a-house-to-a-war-hero','','','2023-09-11 09:24:09','2023-09-11 09:24:09','',0,'https://farmchemie.yasithawd.com/?p=3522',0,'post','',0),(3523,1,'2023-09-11 09:21:27','2023-09-11 09:21:27','','a8','','inherit','','closed','','a8','','','2023-09-11 09:21:27','2023-09-11 09:21:27','',3522,'https://farmchemie.yasithawd.com/wp-content/uploads/2023/09/a8.jpg',0,'attachment','image/jpeg',0),(3524,1,'2023-09-11 09:21:34','2023-09-11 09:21:34','','a9','','inherit','','closed','','a9','','','2023-09-11 09:21:34','2023-09-11 09:21:34','',3522,'https://farmchemie.yasithawd.com/wp-content/uploads/2023/09/a9.jpg',0,'attachment','image/jpeg',0),(3525,1,'2023-09-11 09:21:40','2023-09-11 09:21:40','','a10','','inherit','','closed','','a10','','','2023-09-11 09:21:40','2023-09-11 09:21:40','',3522,'https://farmchemie.yasithawd.com/wp-content/uploads/2023/09/a10.jpg',0,'attachment','image/jpeg',0),(3526,1,'2023-09-11 09:21:47','2023-09-11 09:21:47','','a11','','inherit','','closed','','a11','','','2023-09-11 09:21:47','2023-09-11 09:21:47','',3522,'https://farmchemie.yasithawd.com/wp-content/uploads/2023/09/a11.jpg',0,'attachment','image/jpeg',0),(3527,1,'2023-09-11 09:21:53','2023-09-11 09:21:53','','a12','','inherit','','closed','','a12','','','2023-09-11 09:21:53','2023-09-11 09:21:53','',3522,'https://farmchemie.yasithawd.com/wp-content/uploads/2023/09/a12.jpg',0,'attachment','image/jpeg',0),(3528,1,'2023-09-11 09:22:00','2023-09-11 09:22:00','','A1','','inherit','','closed','','a1','','','2023-09-11 09:22:00','2023-09-11 09:22:00','',3522,'https://farmchemie.yasithawd.com/wp-content/uploads/2023/09/A1.jpg',0,'attachment','image/jpeg',0),(3529,1,'2023-09-11 09:22:09','2023-09-11 09:22:09','','a2','','inherit','','closed','','a2','','','2023-09-11 09:22:09','2023-09-11 09:22:09','',3522,'https://farmchemie.yasithawd.com/wp-content/uploads/2023/09/a2.jpg',0,'attachment','image/jpeg',0),(3530,1,'2023-09-11 09:22:16','2023-09-11 09:22:16','','a3','','inherit','','closed','','a3','','','2023-09-11 09:22:16','2023-09-11 09:22:16','',3522,'https://farmchemie.yasithawd.com/wp-content/uploads/2023/09/a3.jpg',0,'attachment','image/jpeg',0),(3531,1,'2023-09-11 09:22:23','2023-09-11 09:22:23','','a4','','inherit','','closed','','a4','','','2023-09-11 09:22:23','2023-09-11 09:22:23','',3522,'https://farmchemie.yasithawd.com/wp-content/uploads/2023/09/a4.jpg',0,'attachment','image/jpeg',0),(3532,1,'2023-09-11 09:22:30','2023-09-11 09:22:30','','a5','','inherit','','closed','','a5','','','2023-09-11 09:22:30','2023-09-11 09:22:30','',3522,'https://farmchemie.yasithawd.com/wp-content/uploads/2023/09/a5.jpg',0,'attachment','image/jpeg',0),(3533,1,'2023-09-11 09:22:37','2023-09-11 09:22:37','','a6','','inherit','','closed','','a6','','','2023-09-11 09:22:37','2023-09-11 09:22:37','',3522,'https://farmchemie.yasithawd.com/wp-content/uploads/2023/09/a6.jpg',0,'attachment','image/jpeg',0),(3534,1,'2023-09-11 09:22:44','2023-09-11 09:22:44','','a7','','inherit','','closed','','a7','','','2023-09-11 09:22:44','2023-09-11 09:22:44','',3522,'https://farmchemie.yasithawd.com/wp-content/uploads/2023/09/a7.jpg',0,'attachment','image/jpeg',0),(3535,1,'2023-09-11 09:24:09','2023-09-11 09:24:09','[vc_row][vc_column][vc_media_grid grid_id=\"vc_gid:1694423374318-afd73027-bd9b-5\" include=\"3523,3524,3525,3526,3527,3528,3529,3530,3531,3532,3533,3534\"][/vc_column][/vc_row]','DONATING A HOUSE TO A WAR HERO','','inherit','closed','closed','','3522-revision-v1','','','2023-09-11 09:24:09','2023-09-11 09:24:09','',3522,'https://farmchemie.yasithawd.com/?p=3535',0,'revision','',0),(3536,1,'2023-09-11 09:29:40','2023-09-11 09:29:40','[vc_row][vc_column][vc_media_grid grid_id=\"vc_gid:1694424438131-e6c38eb6-84ee-9\" include=\"3537,3538,3539\"][/vc_column][/vc_row]','SEMI INTENSIVE FARM FOR Mr.T. RANJAN','','publish','closed','closed','','semi-intensive-farm-for-mr-t-ranjan','','','2023-09-11 09:29:40','2023-09-11 09:29:40','',0,'https://farmchemie.yasithawd.com/?p=3536',0,'post','',0),(3537,1,'2023-09-11 09:28:25','2023-09-11 09:28:25','','b1','','inherit','','closed','','b1','','','2023-09-11 09:28:25','2023-09-11 09:28:25','',3536,'https://farmchemie.yasithawd.com/wp-content/uploads/2023/09/b1.jpg',0,'attachment','image/jpeg',0),(3538,1,'2023-09-11 09:28:32','2023-09-11 09:28:32','','2','','inherit','','closed','','2-2','','','2023-09-11 09:28:32','2023-09-11 09:28:32','',3536,'https://farmchemie.yasithawd.com/wp-content/uploads/2023/09/2-1.jpg',0,'attachment','image/jpeg',0),(3539,1,'2023-09-11 09:28:38','2023-09-11 09:28:38','','3','','inherit','','closed','','3-2','','','2023-09-11 09:28:38','2023-09-11 09:28:38','',3536,'https://farmchemie.yasithawd.com/wp-content/uploads/2023/09/3-1.jpg',0,'attachment','image/jpeg',0),(3540,1,'2023-09-11 09:29:20','2023-09-11 09:29:20','','3','','inherit','','closed','','3-3','','','2023-09-11 09:29:20','2023-09-11 09:29:20','',3536,'https://farmchemie.yasithawd.com/wp-content/uploads/2023/09/3-2.jpg',0,'attachment','image/jpeg',0),(3541,1,'2023-09-11 09:29:40','2023-09-11 09:29:40','[vc_row][vc_column][vc_media_grid grid_id=\"vc_gid:1694424438131-e6c38eb6-84ee-9\" include=\"3537,3538,3539\"][/vc_column][/vc_row]','SEMI INTENSIVE FARM FOR Mr.T. RANJAN','','inherit','closed','closed','','3536-revision-v1','','','2023-09-11 09:29:40','2023-09-11 09:29:40','',3536,'https://farmchemie.yasithawd.com/?p=3541',0,'revision','',0),(3542,1,'2023-09-11 09:48:48','2023-09-11 09:48:48','','AVI POLLODOXIN','<h3><em>Doxycycline 10% Oral Solution </em></h3>\r\n[dt_divider style=\"thick\" /]\r\n\r\n&nbsp;\r\n\r\n<strong>Composition: </strong>\r\n\r\nEach 1 mL contains,\r\nDxycycline hyclate – 100 mg\r\n\r\n[dt_divider style=\"thin\" /]\r\n\r\n<strong>Indication: </strong>\r\n\r\nTreatment of Colibacillosis, CRD and Mycoplasmosis caused by germs sensitive to doxycycline\r\n\r\n[dt_divider style=\"thin\" /]\r\n\r\n<strong>Contraindication:</strong>\r\n\r\nDo not administer in animal with known sensitivity to tetracyclines.\r\nDo not administer in animals with hepatic disturbances.\r\n\r\n[dt_divider style=\"thin\" /]\r\n\r\n<strong>Dosage: </strong>\r\n\r\n1 mL of Pollodoxin per Litre of Drinking water for 3 to 5 days\r\nOral route in Drinking water\r\n\r\n[dt_divider style=\"thin\" /]\r\n\r\n<strong>Pack sizes: </strong>\r\n\r\n10 mL\r\n\r\n&nbsp;\r\n\r\n[dt_divider style=\"thick\" /]\r\n\r\n&nbsp;\r\n\r\n<a href=\"/wp-content/uploads/2023/08/AVI-VE.pdf\"><i class=\"fa-solid fa-file-pdf fa-2xl\" style=\"color: #039447;\"> pdf</i></a> <a href=\"//wp-content/uploads/2023/08/AVI-3-folding-brochure-SInhala-Final-outline_compressed-4.pdf\"><i class=\"fa-solid fa-file-pdf fa-2xl\" style=\"color: #039447;\"> pdf</i></a>','inherit','closed','closed','','3355-revision-v1','','','2023-09-11 09:48:48','2023-09-11 09:48:48','',3355,'https://farmchemie.yasithawd.com/?p=3542',0,'revision','',0),(3543,1,'2023-09-11 10:06:14','2023-09-11 10:06:14','','AVI TRIMETHOSULFA','<h3><em>Doxycycline 10% Oral Solution </em></h3>\r\n[dt_divider style=\"thick\" /]\r\n\r\n&nbsp;\r\n\r\n<strong>Composition: </strong>\r\n\r\nEach 1 mL contains,\r\nSulfadiazine – 200 mg\r\nTrimethoprim – 40 mg\r\n\r\n[dt_divider style=\"thin\" /]\r\n\r\n<strong>Indication: </strong>\r\n\r\nTreatment for Primary or Secondary bacterial infections to viral infections, septicemic or localized, affecting the respiratory, digestive, genital, urinary, cutaneous and motor apparatus and in the coccidiosis.\r\n\r\n[dt_divider style=\"thin\" /]\r\n\r\n<strong>Contraindication:</strong>\r\n\r\nDo not administer to animals with hypersensitivity to Sulphonamides or to any of the excipients. Do not use in case of infection by germs resistant to Sulphonamides. Do not administer to animals with impaired liver, kidney functions or blood disorders.\r\n\r\n[dt_divider style=\"thin\" /]\r\n\r\n<strong>Dosage: </strong>\r\n\r\nAvian - 1 ml per 2-5L of Drinking water daily for 5 days, medicated water must be the only source of drinking.\r\n\r\n[dt_divider style=\"thin\" /]\r\n\r\n<strong>Pack sizes: </strong>\r\n\r\n10 mL\r\n\r\n&nbsp;\r\n\r\n[dt_divider style=\"thick\" /]\r\n\r\n&nbsp;\r\n\r\n<a href=\"/wp-content/uploads/2023/08/AVI-VE.pdf\"><i class=\"fa-solid fa-file-pdf fa-2xl\" style=\"color: #039447;\"> pdf</i></a> <a href=\"//wp-content/uploads/2023/08/AVI-3-folding-brochure-SInhala-Final-outline_compressed-4.pdf\"><i class=\"fa-solid fa-file-pdf fa-2xl\" style=\"color: #039447;\"> pdf</i></a>','inherit','closed','closed','','3361-revision-v1','','','2023-09-11 10:06:14','2023-09-11 10:06:14','',3361,'https://farmchemie.yasithawd.com/?p=3543',0,'revision','',0),(3544,1,'2023-09-11 10:23:56','2023-09-11 10:23:56','','AVI GANADEXIL','<h3><em>Enrofloxacin 10% Oral Solution for Poultryr</em></h3>\r\n[dt_divider style=\"thick\" /]\r\n\r\n&nbsp;\r\n\r\n<strong>Composition: </strong>\r\n\r\nEach 1 mL contains,\r\nEnrofloxacin – 100 mg\r\n\r\n[dt_divider style=\"thin\" /]\r\n\r\n<strong>Indication: </strong>\r\n\r\nTreatment of colibacillosis, salmonellosis and infections caused by <em>Mycoplasma</em> spp.\r\n\r\n[dt_divider style=\"thin\" /]\r\n\r\n<strong>Contraindication:</strong>\r\n\r\nDo not use in case of resistance to other quinolones, because of cross-resistance. I relation to fluoroquinolones, a complete cross-resistance exists. Do not use in animals with previous case of streptococcal infections.\r\n\r\n[dt_divider style=\"thin\" /]\r\n\r\n<strong>Dosage: </strong>\r\n\r\n1 mL per 2 L of drinking water daily for 3 – 5 days.\r\nRenew medicated water every 24 hours.\r\n\r\n[dt_divider style=\"thin\" /]\r\n\r\n<strong>Pack sizes: </strong>\r\n\r\n10 mL\r\n\r\n&nbsp;\r\n\r\n[dt_divider style=\"thick\" /]\r\n\r\n&nbsp;\r\n\r\n<a href=\"/wp-content/uploads/2023/08/AVI-VE.pdf\"><i class=\"fa-solid fa-file-pdf fa-2xl\" style=\"color: #039447;\"> pdf</i></a> <a href=\"//wp-content/uploads/2023/08/AVI-3-folding-brochure-SInhala-Final-outline_compressed-4.pdf\"><i class=\"fa-solid fa-file-pdf fa-2xl\" style=\"color: #039447;\"> pdf</i></a>','inherit','closed','closed','','3352-revision-v1','','','2023-09-11 10:23:56','2023-09-11 10:23:56','',3352,'https://farmchemie.yasithawd.com/?p=3544',0,'revision','',0),(3545,1,'2023-09-11 10:41:48','2023-09-11 10:41:48','','Products','','publish','closed','closed','','products-2','','','2023-09-11 10:41:48','2023-09-11 10:41:48','',0,'https://farmchemie.yasithawd.com/?p=3545',4,'nav_menu_item','',0),(3547,1,'2023-09-12 02:33:22','2023-09-12 02:33:22','','CANNY FLEXI JOINT','<h3><em>Specifically formulated Tablets with Glucosamine, Chondroitin, MSM and Omega 3</em></h3>\r\n[dt_divider style=\"thick\" /]\r\n\r\n&nbsp;\r\n\r\n<strong>Composition: </strong>\r\n\r\nEach 1 tablet contains,\r\nGlucosamine sulphate - 750.00 mg\r\nChondroitin sulphate - 450.00 mg\r\nMSM (Methylsulfonylmethane) - 100.00 mg\r\nOmega 3 nutrients - 5.00 mg\r\nCalcium - 10.00 mg\r\nPhosphorous - 8.00 mg\r\nFolic Acid - 30.00 mcg\r\nVitamin E - 20 IU\r\nVitamin - 10.00 mg\r\nMangane - 10.00 mg\r\nZinc - 2.00 mg\r\nManganese - 10.00 mg\r\n\r\n[dt_divider style=\"thin\" /]\r\n\r\n<strong>Indication: </strong>\r\n\r\nHelps to maintain normal healthy cartilage, connective tissue and to improve joint mobility. Glucosamine helps to maintain synovial fluid that lubricates the joints. Minerals to support strong, healthy bones and muscles. Antioxidants &amp; Vitamins help to remove free radicals and to improve healthy lifestyle.\r\n\r\n[dt_divider style=\"thin\" /]\r\n\r\n<strong>Dosage: </strong>\r\n\r\n1-5kg Small Breeds: ½-1 Tab\r\n6-15kg Medium Breeds: 1-2 Tabs\r\n&gt;15kg Large Breeds: 2 Tabs\r\n(1tab per 10kg body weight or as prescribed by your veterinarian)\r\n\r\n[dt_divider style=\"thin\" /]\r\n\r\n<strong>Pack sizes: </strong>\r\n\r\n30 tablets, 60 tablets and 90 tablets.\r\n\r\n&nbsp;\r\n\r\n[dt_divider style=\"thick\" /]\r\n\r\n&nbsp;','publish','closed','closed','','canny-flexi-joint','','','2023-09-16 08:22:07','2023-09-16 08:22:07','',0,'https://farmchemie.yasithawd.com/?post_type=product&#038;p=3547',0,'product','',0),(3548,1,'2023-09-12 02:36:05','2023-09-12 02:36:05','','CANNY VIT','<h3><em>Daily Multi – Vitamin and Mineral Support</em></h3>\r\n[dt_divider style=\"thick\" /]\r\n\r\n&nbsp;\r\n\r\n<strong>Composition: </strong>\r\n\r\nEach 1 tablet contains,\r\nCrude protein - 13 %\r\nCrude fat - 8 %\r\nCrude fiber - 8 %\r\nCalcium - 3.50 %\r\nPhosphorus - 2.70 %\r\nPotassium - 0.50 %\r\nChoride - 0.50 %\r\nIron - 3 mg\r\nCopper - 100 mcg\r\nManganese - 0.25 mg\r\nZinc - 1.5 mg\r\nIodine - 50 mcg\r\nSelenium - 2 mcg\r\nCobalt - 30 mcg\r\nMagnesium - 3.2 mg\r\nVitamin A - 1000 IU\r\nThiamine - 0.81 mg\r\nRiboflavin - 1 mg\r\nNiacin - 10 mg\r\nVitamin B5 - 2 mg\r\nPyridoxine - 0.2 mg\r\nVitamin B12 - 2 mcg\r\nAscorbic acid - 50 mg\r\nVitamin D3 - 100 IU\r\nVitamin E - 2 IU\r\nFolic acid - 2 mcg\r\nBiotin - 2 mcg\r\nCholine - 2.5 mg\r\nMethionine - 3.2 mg\r\nLinoleic acid - 6.4 mg\r\nP-Amino benzoic acid - 3.75 mg\r\nLecithin 2.5 mg\r\nInositol 2 mg\r\nBetaine hydrochloride 2.5 mg\r\n\r\n[dt_divider style=\"thin\" /]\r\n\r\n<strong>Indication: </strong>\r\n\r\nAs a Vitamin and Mineral supplement\r\n\r\n[dt_divider style=\"thin\" /]\r\n\r\n<strong>Dosage: </strong>\r\n\r\nDirectly feed to the animals\r\nUp to 5 kg B.W - Half (1/2) Tablet daily\r\n5-10 kg B.W - One (1) Tablet daily\r\nOne (1) Tablet per 10 kg of Body Weight for dogs over 10 kg.\r\n\r\n[dt_divider style=\"thin\" /]\r\n\r\n<strong>Pack sizes: </strong>\r\n\r\n60 tablets and 90 tablets\r\n\r\n&nbsp;\r\n\r\n[dt_divider style=\"thick\" /]\r\n\r\n&nbsp;','publish','closed','closed','','canny-vit','','','2023-09-16 03:24:08','2023-09-16 03:24:08','',0,'https://farmchemie.yasithawd.com/?post_type=product&#038;p=3548',0,'product','',0),(3549,1,'2023-09-12 02:38:38','2023-09-12 02:38:38','','ORONDO SPRAY','<h3><em>Chlorotetracycline antibiotic Spray with Fly Repellent</em></h3>\r\n[dt_divider style=\"thick\" /]\r\n\r\n&nbsp;\r\n\r\n<strong>Composition: </strong>\r\n\r\nChlortetracycline hydrochloride 2% W / V\r\n\r\n[dt_divider style=\"thin\" /]\r\n\r\n<strong>Indication: </strong>\r\n\r\nORONDO SPRAY is indicated in the treatment of surgical or superficial wounds, and as a coadjuvant in the treatment of foot rot, and other interdigital infections caused by sensitive microorganisms.\r\n\r\n[dt_divider style=\"thin\" /]\r\n\r\n<strong>Method of application and species of administration: </strong>\r\n\r\nShake well before using. Spray the affected area at a distance of 15-20 cm until cover it. Repeat treatment depending on the evolution and on the gravity of wounds.\r\n\r\n[dt_divider style=\"thin\" /]\r\n\r\n<strong>Pack sizes: </strong>\r\n\r\n250 mL\r\n\r\n&nbsp;\r\n\r\n[dt_divider style=\"thick\" /]\r\n\r\n&nbsp;','publish','closed','closed','','orondo-spray','','','2023-09-16 16:08:58','2023-09-16 16:08:58','',0,'https://farmchemie.yasithawd.com/?post_type=product&#038;p=3549',0,'product','',0),(3550,1,'2023-09-12 02:46:06','2023-09-12 02:46:06','','Regen','<h3><em>WOUND HEALING POWDER for chronic &amp; surgical wounds, cuts, bites and scratches on animals</em></h3>\r\n[dt_divider style=\"thick\" /]\r\n\r\n&nbsp;\r\n\r\n<strong>Composition: </strong>\r\n\r\nEach 1 g contains,\r\nNeomycin sulphate - 3,300 IU\r\nBacitracin zinc - 250 IU\r\nGlycine - 10 mg\r\nL-Cysteine - 2 mg\r\nThreonine - 1 mg\r\n\r\n[dt_divider style=\"thin\" /]\r\n\r\n<strong>Indication: </strong>\r\n\r\nTreatment for external wounds on animals.\r\n\r\n[dt_divider style=\"thin\" /]\r\n\r\n<strong>Method of application and species of administration: </strong>\r\n\r\nClean the wounds carefully and dry them. Apply only external wounds in cattle, goats, pigs, horses and dogs twice daily until the recovery.\r\n\r\n[dt_divider style=\"thin\" /]\r\n\r\n<strong>Pack sizes: </strong>\r\n\r\n40 g\r\n\r\n&nbsp;\r\n\r\n[dt_divider style=\"thick\" /]\r\n\r\n&nbsp;','publish','closed','closed','','regen','','','2023-09-16 08:09:12','2023-09-16 08:09:12','',0,'https://farmchemie.yasithawd.com/?post_type=product&#038;p=3550',0,'product','',0),(3551,1,'2023-09-12 03:04:04','2023-09-12 03:04:04','','Cardisure','<h3><em>Treatment of canine congestive heart failure</em></h3>\r\n[dt_divider style=\"thick\" /]\r\n\r\n&nbsp;\r\n\r\n<strong>Composition: </strong>\r\n\r\nEach 1 tablet contains,\r\nPimobendan - 5 mg and 10 mg\r\n\r\n[dt_divider style=\"thin\" /]\r\n\r\n<strong>Indication: </strong>\r\n\r\nFor the treatment of canine congestive heart failure originating from valvular insufciency (mitral and/or tricuspid regurgitation) or dilated cardiomyopathy\r\n\r\n[dt_divider style=\"thin\" /]\r\n\r\n<strong>Contraindication:</strong>\r\n\r\nDo not use in cases of hypertrophic cardiomyopathies or clinical conditions where an augmentation of cardiac output is not possible for functional or anatomical reasons (e.g. aortic stenosis).\r\n\r\n[dt_divider style=\"thin\" /]\r\n\r\n<strong>Dosage: </strong>\r\n\r\nThe tablets should be administered orally at a dose range of 0.2 mg to 0.6 mg pimobendan/kg body weight per day. The preferable daily dose is 0.5 mg pimobendan/kg body weight. The dose should be divided into two administrations (0.25 mg/kg body weight each), one half of the dose in the morning and the other half approximately 12 hours later. The maintenance dose should be individually adjusted according to the severity of the disease. The product may be combined with a diuretic treatment, e.g. furosemide. To break a tablet into two halves, place the tablet on an even surface with the scored side up, hold one half of the tablet and press down on the other half. To break a double scored tablet into quarters, place the tablet on an even surface with the scored side up and apply pressure on the middle with your thumb. Each dose should be given approximately one hour before feeding.\r\n\r\n[dt_divider style=\"thin\" /]\r\n\r\n<strong>Pack sizes: </strong>\r\n\r\n100 tablets\r\n\r\n&nbsp;\r\n\r\n[dt_divider style=\"thick\" /]\r\n\r\n&nbsp;','publish','closed','closed','','cardisure','','','2023-09-16 08:08:09','2023-09-16 08:08:09','',0,'https://farmchemie.yasithawd.com/?post_type=product&#038;p=3551',0,'product','',0),(3552,1,'2023-09-12 03:15:34','2023-09-12 03:15:34','','CANVAC R','<h3><em>Inactivated Rabies Virus </em></h3>\r\n[dt_divider style=\"thick\" /]\r\n\r\n&nbsp;\r\n\r\n<strong>Composition: </strong>\r\n\r\nVirus Rabies inactivate to an amount of NLT 2lU\r\n\r\n[dt_divider style=\"thin\" /]\r\n\r\n<strong>Indication: </strong>\r\n\r\nFor an active immunization of dogs from 6 weeks of age against distemper, infectious hepatitis, infectious laryngotracheitis of dogs, parvoviruses of dogs and leptospirosis caused by L. <em>serovars Icterohaemorrhagiae</em>, L. <em>grippotyphosa</em> and L. <em>sejroe</em>\r\n\r\n[dt_divider style=\"thin\" /]\r\n\r\n<strong>Dosage: </strong>\r\n\r\nAs per the recommendation of the veterinarian.\r\n\r\n[dt_divider style=\"thin\" /]\r\n\r\n<strong>Pack sizes: </strong>\r\n\r\n1 dose in 1 mL vial and 10 doses in 10 mL vial\r\n\r\n&nbsp;\r\n\r\n[dt_divider style=\"thick\" /]\r\n\r\n&nbsp;','publish','closed','closed','','canvac-r','','','2023-09-24 00:43:28','2023-09-24 00:43:28','',0,'https://farmchemie.yasithawd.com/?post_type=product&#038;p=3552',0,'product','',0),(3553,1,'2023-09-12 04:16:56','2023-09-12 04:16:56','','Breeder Concentrate - Grower','<h3><em>Grower</em></h3>\r\n[dt_divider style=\"thick\" /]\r\n\r\n&nbsp;\r\n\r\n<strong>Composition: </strong>\r\n\r\nEach 1 kg contains,\r\nFarmStar Broiler Vitamin Premix – 40,000 mg\r\nMineral Premix MinaMax - 55,000 mg\r\nToxin binder - 42,500 mg\r\nAcidifier - 80,000 mg\r\nDicalcium Phosphate - 400,400 mg\r\nSodium Butyrate - 60,000 mg\r\nDL Methionine - 76,100 mg\r\nAntioxidant - 5,000 mg\r\nCholine chloride 50% - 48,000 mg\r\nFeed emulsifier - 20,000 mg\r\nPotassium Magnesium sulphate - 120,000 mg\r\nFarm Ase XG Thermo 200 - 8,000 mg\r\nHydroxyselenomethionine - 22,000 mg\r\n\r\n[dt_divider style=\"thin\" /]\r\n\r\n<strong>Indication: </strong>\r\n\r\nBreeder concentrates focus on animals’ reproduction health with all the necessary vitamins, minerals and other nutrients for hormonal balance.\r\n\r\n[dt_divider style=\"thin\" /]\r\n\r\n<strong>Dosage: </strong>\r\n\r\n10 to 25 kg per ton of feed. Or as directly by poultry nutritionists.\r\n\r\n[dt_divider style=\"thin\" /]\r\n\r\n<strong>Pack sizes: </strong>\r\n\r\n25 kg bag\r\n\r\n&nbsp;\r\n\r\n[dt_divider style=\"thick\" /]\r\n\r\n&nbsp;','publish','closed','closed','','breeder-concentrate-grower','','','2023-09-24 11:20:30','2023-09-24 11:20:30','',0,'https://farmchemie.yasithawd.com/?post_type=product&#038;p=3553',0,'product','',0),(3554,1,'2023-09-12 04:38:18','2023-09-12 04:38:18','','Breeder Concentrate-Starter','<h3><em>Grower</em></h3>\r\n[dt_divider style=\"thick\" /]\r\n\r\n&nbsp;\r\n\r\n<strong>Composition: </strong>\r\n\r\nEach 1 kg contains,\r\nFarmStar Broiler Vitamin Premix - 44,500 mg\r\nMineral Premix MinaMax - 55,000 mg\r\nToxin binder - 42,500 mg\r\nAcidifier - 89,000 mg\r\nDicalcium Phosphate - 434,450 mg\r\nSodium Butyrate - 111,000 mg\r\nDL Methionine - 35,600 mg\r\nAntioxidant - 5,600 mg\r\nCholine chloride 50% - 53,400 mg\r\nFeed emulsifier - 22,000 mg\r\nPotassium Magnesium sulphate - 89,000 mg\r\nFarm Ase XG Thermo 200 - 8,000 mg\r\nHydroxyselenomethionine - 20,000 mg\r\n\r\n[dt_divider style=\"thin\" /]\r\n\r\n<strong>Indication: </strong>\r\n\r\nBreeder concentrates focus on animals’ reproduction health with all the necessary vitamins, minerals and other nutrients for hormonal balance.\r\n\r\n[dt_divider style=\"thin\" /]\r\n\r\n<strong>Dosage: </strong>\r\n\r\n10 to 25 kg per ton of feed. Or as directly by poultry nutritionists.\r\n\r\n[dt_divider style=\"thin\" /]\r\n\r\n<strong>Pack sizes: </strong>\r\n\r\n25 kg bag\r\n\r\n&nbsp;\r\n\r\n[dt_divider style=\"thick\" /]\r\n\r\n&nbsp;','publish','closed','closed','','breeder-concentrate-starter','','','2023-09-24 11:23:46','2023-09-24 11:23:46','',0,'https://farmchemie.yasithawd.com/?post_type=product&#038;p=3554',0,'product','',0),(3555,1,'2023-09-12 04:51:58','2023-09-12 04:51:58','','Breeder Concentrate-Starter','<h3><em>Grower</em></h3>\n[dt_divider style=\"thick\" /]\n\n&nbsp;\n\n<strong>Composition: </strong>\n\nEach 1 kg contains,\nFarmStar Broiler Vitamin Premix - 44,500 mg\nMineral Premix MinaMax - 55,000 mg\nToxin binder - 42,500 mg\nAcidifier - 89,000 mg\nDicalcium Phosphate - 434,450 mg\nSodium Butyrate - 111,000 mg\nDL Methionine - 35,600 mg\nAntioxidant - 5,600 mg\nCholine chloride 50% - 53,400 mg\nFeed emulsifier - 22,000 mg\nPotassium Magnesium sulphate - 89,000 mg\nFarm Ase XG Thermo 200 - 8,000 mg\nHydroxyselenomethionine - 20,000 mg\n\n[dt_divider style=\"thin\" /]\n\n<strong>Indication: </strong>\n\nBreeder concentrates focus on animals’ reproduction health with all the necessary vitamins, minerals and other nutrients for hormonal balance.\n\n[dt_divider style=\"thin\" /]\n\n<strong>Dosage: </strong>\n\n10 to 25 kg per ton of feed. Or as directly by poultry nutritionists.\n\n[dt_divider style=\"thin\" /]\n\n<strong>Pack sizes: </strong>\n\n25 kg bag\n\n&nbsp;\n\n[dt_divider style=\"thick\" /]\n\n&nbsp;','inherit','closed','closed','','3554-autosave-v1','','','2023-09-12 04:51:58','2023-09-12 04:51:58','',3554,'https://farmchemie.yasithawd.com/?p=3555',0,'revision','',0),(3556,1,'2023-09-12 07:03:37','2023-09-12 07:03:37','','Broiler Concentrate Grower','<h3><em>Grower</em></h3>\r\n[dt_divider style=\"thick\" /]\r\n\r\n&nbsp;\r\n\r\n<strong>Composition: </strong>\r\n\r\nEach 1 kg contains,\r\nFarmStar Broiler Vitamin Premix - 50,000 mg\r\nMineral Premix MinaMax - 63,000 mg\r\nToxin binder - 50,000 mg\r\nDicalcium Phosphate - 473,000 mg\r\nSodium Butyrate - 83,000 mg\r\nDL Methionine - 78,00 mg\r\nLysine - 55,000 mg\r\nThreonine - 5,000 mg\r\nAntioxidant - 6,000 mg\r\nCholine chloride 50% - 50,000 mg\r\nVitamin E 50% - 8,000 mg\r\nFarm Ase XG Thermo 200 - 20,000 mg\r\n\r\n[dt_divider style=\"thin\" /]\r\n\r\n<strong>Indication: </strong>\r\n\r\nBroiler concentrates is the right way to introduce all the micro-nutrient requirements for enhanced growth rate ensuring that there are no deficiencies in any stage of the broiler life cycle.\r\n\r\n[dt_divider style=\"thin\" /]\r\n\r\n<strong>Dosage: </strong>\r\n\r\n10 to 25 kg per ton of feed. Or as directly by poultry nutritionists.\r\n\r\n[dt_divider style=\"thin\" /]\r\n\r\n<strong>Pack sizes: </strong>\r\n\r\n25 kg bag\r\n\r\n&nbsp;\r\n\r\n[dt_divider style=\"thick\" /]\r\n\r\n&nbsp;','publish','closed','closed','','broiler-concentrate-grower','','','2023-09-24 11:27:05','2023-09-24 11:27:05','',0,'https://farmchemie.yasithawd.com/?post_type=product&#038;p=3556',0,'product','',0),(3557,1,'2023-09-12 07:20:39','2023-09-12 07:20:39','','Broiler Concentrate Starter','<h3><em>Starter</em></h3>\r\n[dt_divider style=\"thick\" /]\r\n\r\n&nbsp;\r\n\r\n<strong>Composition: </strong>\r\n\r\nEach 1 kg contains,\r\nFarmStar Broiler Vitamin Premix - 50,000 mg\r\nMineral Premix MinaMax - 62,000 mg\r\nToxin binder - 62,000 mg\r\nDicalcium Phosphate - 344,000 mg\r\nSodium Butyrate - 78,000 mg\r\nDL Methionine - 163,00 mg\r\nLysine - 111,000 mg\r\nThreonine - 32,000 mg\r\nAntioxidant - 6,300 mg\r\nCholine chloride 50% - 50,000 mg\r\nVitamin E 50% - 7,500 mg\r\nFarm Ase XG Thermo 200 - 20,000 mg\r\n\r\n[dt_divider style=\"thin\" /]\r\n\r\n<strong>Indication: </strong>\r\n\r\nBroiler concentrates is the right way to introduce all the micro-nutrient requirements for enhanced growth rate ensuring that there are no deficiencies in any stage of the broiler life cycle.\r\n\r\n[dt_divider style=\"thin\" /]\r\n\r\n<strong>Dosage: </strong>\r\n\r\n10 to 25 kg per ton of feed. Or as directly by poultry nutritionists.\r\n\r\n[dt_divider style=\"thin\" /]\r\n\r\n<strong>Pack sizes: </strong>\r\n\r\n25 kg bag\r\n\r\n&nbsp;\r\n\r\n[dt_divider style=\"thick\" /]\r\n\r\n&nbsp;','publish','closed','closed','','broiler-concentrate-starter','','','2023-09-24 11:27:53','2023-09-24 11:27:53','',0,'https://farmchemie.yasithawd.com/?post_type=product&#038;p=3557',0,'product','',0),(3559,1,'2023-09-12 13:16:23','2023-09-12 13:16:23','[vc_row][vc_column][vc_basic_grid post_type=\"post\" max_items=\"\" element_width=\"6\" item=\"3501\" initial_loading_animation=\"fadeInUp\" grid_id=\"vc_gid:1694523969089-068b9d5e-cb88-6\"][/vc_column][/vc_row]','CSR','','inherit','closed','closed','','3468-revision-v1','','','2023-09-12 13:16:23','2023-09-12 13:16:23','',3468,'https://farmchemie.yasithawd.com/?p=3559',0,'revision','',0),(3656,1,'2023-09-14 10:49:51','2023-09-14 10:49:51','','CEVAC ND – IB K','<h3>Inactivated Oil Ajuvanted Vaccine against Newcastle Disease (ND) and Infectious Bronchitis (IB)</h3>\r\n[dt_divider style=\"thick\" /]\r\n\r\n&nbsp;\r\n\r\n<strong>Composition: </strong>\r\n\r\nInactivated Newcastle Disease virus strain NDV-SZ lasota-min.4 log2 HI or min. 50PD50 and inactivated avian Infectious Bronchitis virus strain M-41-min.6 log2 HI per dose\r\n\r\n[dt_divider style=\"thin\" /]\r\n\r\n<strong>Indication: </strong>\r\n\r\nRecommended for the vaccination of breeder and laying-type chicken flocks, previously immunized against infectious bronchitis (IB) and Newcastle disease (ND) with Attenuated live virus vaccines\r\n\r\n[dt_divider style=\"thin\" /]\r\n\r\n<strong>Dosage:</strong>\r\n\r\nAs per the recommendation of the veterinarian.\r\n\r\n[dt_divider style=\"thin\" /]\r\n\r\n<strong>Pack sizes: </strong>\r\n\r\n500 doses, 1000 doses and 3000 doses.\r\n\r\n&nbsp;\r\n\r\n[dt_divider style=\"thick\" /]\r\n\r\n&nbsp;','publish','closed','closed','','cevac-nd-ib-k','','','2023-09-19 12:00:10','2023-09-19 12:00:10','',0,'https://farmchemie.yasithawd.com/?post_type=product&#038;p=3656',0,'product','',0),(3561,1,'2023-09-12 13:39:50','2023-09-12 13:39:50','[vc_row full_width=\"stretch_row_content_no_spaces\"][vc_column][ultimate_heading main_heading=\"Our History\" main_heading_color=\"#762888\"][/ultimate_heading][/vc_column][/vc_row][vc_row][vc_column][vc_row_inner equal_height=\"yes\" content_placement=\"middle\" css=\".vc_custom_1692359205466{margin-top: 35px !important;}\"][vc_column_inner width=\"1/2\"][ult_animation_block animation=\"fadeInLeftBig\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][vc_single_image image=\"3273\" img_size=\"full\" alignment=\"center\" style=\"vc_box_rounded\"][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/2\"][ult_animation_block animation=\"fadeInRightBig\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][ultimate_heading main_heading=\"Founded in 2002\" heading_tag=\"h3\" main_heading_color=\"#039447\" alignment=\"left\" sub_heading_font_size=\"desktop:18px;\"]Founded in 2002 by Mr. Uditha Wanigasinghe, an agriculturist who had a mission to aid valuable livestock producers in the country to enhance the yield and profitability of production. FARMCHEMIE introduced unprecedented solutions and consistent technical services to gain our customers’ trust and became the market leader in animal health products in 2006 within just four years.[/ultimate_heading][/ult_animation_block][/vc_column_inner][/vc_row_inner][vc_separator color=\"custom\" accent_color=\"#039447\"][vc_row_inner equal_height=\"yes\" rtl_reverse=\"yes\" content_placement=\"middle\" css=\".vc_custom_1692359216075{margin-top: 35px !important;}\"][vc_column_inner width=\"1/2\"][ult_animation_block animation=\"fadeInLeftBig\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][ultimate_heading main_heading=\"2006\" heading_tag=\"h3\" main_heading_color=\"#039447\" alignment=\"right\"]In 2006, the Sri Lankan poultry industry was affected with Avian Influenza which became a difficult period for the growth of FARMCHEMIE. This was the key factor in our decision to diversify into Agro Products. PLANTCHEM &amp; PLANTSEEDS were established to offer solutions in Agro specialty fertilizers, pesticides and seeds to invaluable cultivators.[/ultimate_heading][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/2\"][ult_animation_block animation=\"fadeInRightBig\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][vc_single_image image=\"3276\" img_size=\"full\" alignment=\"center\" style=\"vc_box_rounded\"][/ult_animation_block][/vc_column_inner][/vc_row_inner][vc_separator color=\"custom\" accent_color=\"#039447\"][vc_row_inner equal_height=\"yes\" content_placement=\"middle\" css=\".vc_custom_1692359231594{margin-top: 35px !important;}\"][vc_column_inner width=\"1/2\"][ult_animation_block animation=\"fadeInLeftBig\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][vc_single_image image=\"3277\" img_size=\"full\" alignment=\"center\" style=\"vc_box_rounded\"][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/2\"][ult_animation_block animation=\"fadeInRightBig\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][ultimate_heading main_heading=\"2010\" heading_tag=\"h3\" main_heading_color=\"#039447\" alignment=\"left\"]In 2010, FEED CHEMIE became the subsequent addition to ever-growing vision of Mr. Uditha Wanigasinghe and entered the Animal Feed Additives market.[/ultimate_heading][/ult_animation_block][/vc_column_inner][/vc_row_inner][vc_separator color=\"custom\" accent_color=\"#039447\"][vc_row_inner equal_height=\"yes\" rtl_reverse=\"yes\" content_placement=\"middle\" css=\".vc_custom_1692359239274{margin-top: 35px !important;}\"][vc_column_inner width=\"1/2\"][ult_animation_block animation=\"fadeInLeftBig\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][ultimate_heading main_heading=\"2012\" heading_tag=\"h3\" main_heading_color=\"#039447\" alignment=\"right\"]The year 2012 is described as a turning point in our journey as FARMCHEMIE established our first production facility for the manufacturing and packing of animal health products. FARMCHEMIE became the first animal health organization in Sri Lanka to obtain ISO 9001:2015 and WHO GMP International Quality Certification. With our own formulation unit, FARMCHEMIE was able to offer customized solutions to cater the needs of the Sri Lankan Livestock Industry.[/ultimate_heading][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/2\"][ult_animation_block animation=\"fadeInRightBig\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][vc_single_image image=\"3278\" img_size=\"full\" alignment=\"center\" style=\"vc_box_rounded\"][/ult_animation_block][/vc_column_inner][/vc_row_inner][vc_separator color=\"custom\" accent_color=\"#039447\"][vc_row_inner content_placement=\"middle\" css=\".vc_custom_1692359246626{margin-top: 35px !important;}\"][vc_column_inner width=\"1/2\"][ult_animation_block animation=\"fadeInLeftBig\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][vc_single_image image=\"3279\" img_size=\"full\" alignment=\"center\" style=\"vc_box_rounded\"][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/2\"][ult_animation_block animation=\"fadeInRightBig\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][ultimate_heading main_heading=\"2016\" heading_tag=\"h3\" main_heading_color=\"#039447\" alignment=\"left\"]The year 2016 was another key milestone with the entry to the International Markets. FARMCHEMIE exported our first Feed Premix consignment to India and in 2018 our export operation was distinctly established as FARMCHEMIE MANUFACTURERS, a Board of Investment (BOI) approved entity.[/ultimate_heading][/ult_animation_block][/vc_column_inner][/vc_row_inner][vc_separator color=\"custom\" accent_color=\"#039447\"][vc_row_inner equal_height=\"yes\" content_placement=\"middle\" css=\".vc_custom_1692422601938{margin-top: 35px !important;}\"][vc_column_inner width=\"1/2\"][ult_animation_block animation=\"fadeInLeftBig\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][ultimate_heading main_heading=\"Fully automated manufacturing\" heading_tag=\"h3\" main_heading_color=\"#039447\" alignment=\"right\"]FARMCHEMIE MANUFACTURERS has invested in fully automated manufacturing facility from Bühler and became the first Sri Lankan owned company to obtain FAMI-QS International Quality Certification.[/ultimate_heading][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/2\"][ult_animation_block animation=\"fadeInRightBig\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][vc_single_image image=\"3280\" img_size=\"full\" alignment=\"center\" style=\"vc_box_rounded\"][/ult_animation_block][/vc_column_inner][/vc_row_inner][vc_separator color=\"custom\" accent_color=\"#039447\"][vc_row_inner equal_height=\"yes\" content_placement=\"middle\" css=\".vc_custom_1692359258634{margin-top: 35px !important;}\"][vc_column_inner width=\"1/2\"][ult_animation_block animation=\"fadeInLeftBig\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][vc_single_image image=\"3281\" img_size=\"full\" alignment=\"center\" style=\"vc_box_rounded\"][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/2\"][ult_animation_block animation=\"fadeInRightBig\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][ultimate_heading main_heading=\"Official toll manufacturer partner\" heading_tag=\"h3\" main_heading_color=\"#039447\" alignment=\"left\"]With the trust and reputation built as a reliable manufacturer of animal feed additives and supplements in the global market, several world-renowned international brands have appointed FARMCHEMIE MANUFACTURERS as the official toll manufacturer partner. FARMCHEMIE MANUFACTURERS exports a wide range of products consisting of premixes, specialty feed additives, oral liquid supplements and pet supplements to various markets in South Asia, East Asia, Middle East and Africa.\r\n\r\nFARMCHEMIE, FEED CHEMIE &amp; FARMCHEMIE MANUFACTURERS currently operate under the ownership of our holding company, DYVESTA.\r\n\r\nDYEVSTA has become the pinnacle of Animal Nutrition and Health.\r\n\r\nDYVESTA is Dynamic, through our continuous evolution, growth and progress. DYVESTA is Diverse, in terms of both our business strategy and our community. DYVESTA is Devoted to our valuable business partners through exceptional service.[/ultimate_heading][/ult_animation_block][/vc_column_inner][/vc_row_inner][vc_separator color=\"custom\" accent_color=\"#039447\"][/vc_column][/vc_row][vc_row full_width=\"stretch_row\" equal_height=\"yes\" bg_type=\"image\" parallax_style=\"vcpb-vz-jquery\" bg_image_new=\"id^3256|url^https://farmchemie.yasithawd.com/wp-content/uploads/2023/08/Vision-Mission.png|caption^null|alt^null|title^Vision-&amp;-Mission|description^null\" bg_image_repeat=\"no-repeat\" enable_overlay=\"enable_overlay_value\" overlay_color=\"#000000\" overlay_pattern=\"01.png\" overlay_pattern_opacity=\"5\" css=\".vc_custom_1692366072362{margin-top: 35px !important;padding-top: 65px !important;padding-bottom: 100px !important;}\"][vc_column][vc_row_inner equal_height=\"yes\"][vc_column_inner width=\"1/2\"][ult_animation_block animation=\"fadeInLeftBig\" animation_duration=\"2\" animation_delay=\"0\" animation_iteration_count=\"1\"][ultimate_heading main_heading=\"Vision\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\"]To be the customers’ first and best choice by ensuring outstanding satisfaction through a well-trained and dedicated team. Prompt and quality solutions to our customers’ requirements will determine the increase of return on investment for us.[/ultimate_heading][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/2\"][ult_animation_block animation=\"fadeInRightBig\" animation_duration=\"2\" animation_delay=\"0\" animation_iteration_count=\"1\"][ultimate_heading main_heading=\"Mission\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\"]To become a world renowned manufacturer of Animal Health products and a trusted partner among our stakeholders for our integrity as well as for providing effective solutions[/ultimate_heading][/ult_animation_block][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row css=\".vc_custom_1684836308288{margin-top: 15px !important;}\"][vc_column][ultimate_heading main_heading=\"Achievements\" main_heading_color=\"#762888\" main_heading_margin=\"margin-top:35px;\"][/ultimate_heading][vc_row_inner gap=\"20\"][vc_column_inner width=\"1/2\" css=\".vc_custom_1691995519863{background-color: #f4ab20 !important;border: 1px solid #f4ab20 !important;border-radius: 35px !important;}\"][ult_animation_block animation=\"fadeInLeftBig\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][bsf-info-box icon_type=\"custom\" icon_img=\"id^3117|url^https://farmchemie.yasithawd.com/wp-content/uploads/2023/08/Pink_-H.png|caption^null|alt^null|title^Pink_-H|description^null\" img_width=\"60\" icon_style=\"advanced\" icon_border_style=\"solid\" icon_color_border=\"#ffffff\" icon_border_size=\"1\" icon_border_radius=\"500\" icon_border_spacing=\"1\" title=\"First Free Sale Certificate obtained from Veterinary Drug Control Authority (VDCA) for Veterinary Pharmaceuticals\" title_font_style=\"font-weight:bold;\" title_font_size=\"desktop:20px;\"][/bsf-info-box][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/2\" css=\".vc_custom_1691995661095{background-color: #722f8b !important;border: 1px solid #722f8b !important;border-radius: 35px !important;}\"][ult_animation_block animation=\"fadeInRightBig\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][bsf-info-box icon_type=\"custom\" icon_img=\"id^3117|url^https://farmchemie.yasithawd.com/wp-content/uploads/2023/08/Pink_-H.png|caption^null|alt^null|title^Pink_-H|description^null\" img_width=\"60\" icon_style=\"advanced\" icon_border_style=\"solid\" icon_color_border=\"#ffffff\" icon_border_size=\"1\" icon_border_radius=\"500\" icon_border_spacing=\"1\" title=\"First ISO 9001: 2015 ,WHO-GMP Quality Management systems certified Animal Health company in Sri Lanka since August, 2012\" title_font_style=\"font-weight:bold;\" title_font_color=\"#ffffff\" title_font_size=\"desktop:20px;\"][/bsf-info-box][/ult_animation_block][/vc_column_inner][/vc_row_inner][vc_row_inner gap=\"20\"][vc_column_inner width=\"1/2\" css=\".vc_custom_1691995661095{background-color: #722f8b !important;border: 1px solid #722f8b !important;border-radius: 35px !important;}\"][ult_animation_block animation=\"fadeInLeftBig\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][bsf-info-box icon_type=\"custom\" icon_img=\"id^3117|url^https://farmchemie.yasithawd.com/wp-content/uploads/2023/08/Pink_-H.png|caption^null|alt^null|title^Pink_-H|description^null\" img_width=\"60\" icon_style=\"advanced\" icon_border_style=\"solid\" icon_color_border=\"#ffffff\" icon_border_size=\"1\" icon_border_radius=\"500\" icon_border_spacing=\"1\" title=\"First FAMI-QS certified company in sri lanka\" title_font_style=\"font-weight:bold;\" title_font_color=\"#ffffff\" title_font_size=\"desktop:20px;\"][/bsf-info-box][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/2\" css=\".vc_custom_1691995519863{background-color: #f4ab20 !important;border: 1px solid #f4ab20 !important;border-radius: 35px !important;}\"][ult_animation_block animation=\"fadeInRightBig\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][bsf-info-box icon_type=\"custom\" icon_img=\"id^3117|url^https://farmchemie.yasithawd.com/wp-content/uploads/2023/08/Pink_-H.png|caption^null|alt^null|title^Pink_-H|description^null\" img_width=\"60\" icon_style=\"advanced\" icon_border_style=\"solid\" icon_color_border=\"#ffffff\" icon_border_size=\"1\" icon_border_radius=\"500\" icon_border_spacing=\"1\" title=\"First Certificate of Ethical Trading certified in Livestock industry\" title_font_style=\"font-weight:bold;\" title_font_size=\"desktop:20px;\"][/bsf-info-box][/ult_animation_block][/vc_column_inner][/vc_row_inner][vc_row_inner gap=\"20\"][vc_column_inner width=\"1/4\" css=\".vc_custom_1691996718116{border-radius: 35px !important;}\"][/vc_column_inner][vc_column_inner width=\"2/4\" css=\".vc_custom_1691995519863{background-color: #f4ab20 !important;border: 1px solid #f4ab20 !important;border-radius: 35px !important;}\"][ult_animation_block animation=\"fadeInUpBig\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][bsf-info-box icon_type=\"custom\" icon_img=\"id^3117|url^https://farmchemie.yasithawd.com/wp-content/uploads/2023/08/Pink_-H.png|caption^null|alt^null|title^Pink_-H|description^null\" img_width=\"60\" icon_style=\"advanced\" icon_border_style=\"solid\" icon_color_border=\"#ffffff\" icon_border_size=\"1\" icon_border_radius=\"500\" icon_border_spacing=\"1\" title=\"First Silver awarded company at National Exports Awards in Livestock industry\" title_font_style=\"font-weight:bold;\" title_font_size=\"desktop:20px;\"][/bsf-info-box][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/4\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row full_width=\"stretch_row\" equal_height=\"yes\" content_placement=\"bottom\" css=\".vc_custom_1693627699480{margin-top: 15px !important;}\"][vc_column][ultimate_heading main_heading=\"Certifications\" main_heading_color=\"#762888\" main_heading_margin=\"margin-top:35px;\"][/ultimate_heading][vc_row_inner content_placement=\"bottom\"][vc_column_inner width=\"1/6\"][dt_fancy_image image_id=\"3407\" width=\"300\" caption=\"off\"][/vc_column_inner][vc_column_inner width=\"1/6\"][dt_fancy_image image_id=\"3408\" width=\"300\" caption=\"off\"][/vc_column_inner][vc_column_inner width=\"1/6\"][dt_fancy_image image_id=\"3409\" width=\"300\" caption=\"off\"][/vc_column_inner][vc_column_inner width=\"1/6\"][dt_fancy_image image_id=\"3411\" width=\"300\" caption=\"off\"][/vc_column_inner][vc_column_inner width=\"1/6\"][dt_fancy_image image_id=\"3410\" width=\"300\" caption=\"off\"][/vc_column_inner][vc_column_inner width=\"1/6\"][dt_fancy_image image_id=\"3406\" width=\"300\" caption=\"off\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row full_width=\"stretch_row\" equal_height=\"yes\" content_placement=\"bottom\" css=\".vc_custom_1693625624233{margin-top: 15px !important;}\"][vc_column][ultimate_heading main_heading=\"Awards\" main_heading_color=\"#762888\" main_heading_margin=\"margin-top:35px;\"][/ultimate_heading][ultimate_carousel slide_to_scroll=\"single\"][dt_fancy_image image_id=\"3412\" width=\"300\"][dt_fancy_image image_id=\"3413\" width=\"300\" caption=\"off\"][dt_fancy_image image_id=\"3414\" width=\"300\" caption=\"off\"][dt_fancy_image image_id=\"3415\" width=\"300\" caption=\"off\"][dt_fancy_image image_id=\"3416\" width=\"300\" caption=\"off\"][dt_fancy_image image_id=\"3417\" width=\"300\" caption=\"off\"][dt_fancy_image image_id=\"3418\" width=\"300\" caption=\"off\"][dt_fancy_image image_id=\"3420\" width=\"300\" caption=\"off\"][dt_fancy_image image_id=\"3419\" width=\"300\" caption=\"off\"][dt_fancy_image image_id=\"3422\" width=\"300\" caption=\"off\"][dt_fancy_image image_id=\"3421\" width=\"300\" caption=\"off\"][dt_fancy_image image_id=\"3422\" width=\"300\" caption=\"off\"][dt_fancy_image image_id=\"3423\" width=\"300\" caption=\"off\"][dt_fancy_image image_id=\"3424\" width=\"300\" caption=\"off\"][dt_fancy_image image_id=\"3425\" width=\"300\" caption=\"off\"][/ultimate_carousel][/vc_column][/vc_row][vc_row css=\".vc_custom_1693625068958{margin-top: 15px !important;}\"][vc_column][ultimate_heading main_heading=\"Board Of Directors\" main_heading_color=\"#762888\" main_heading_margin=\"margin-top:35px;margin-bottom:35px;\"][/ultimate_heading][ultimate_carousel slides_on_desk=\"3\" slides_on_mob=\"1\" arrow_style=\"square-bg\" arrow_bg_color=\"#039447\" arrow_color=\"#ffffff\" next_icon=\"ultsl-arrow-right6\" prev_icon=\"ultsl-arrow-left6\" dots_color=\"#039447\" item_animation=\"fadeIn\"][vc_row_inner][vc_column_inner][dt_fancy_image image_id=\"3173\" width=\"300\" border_radius=\"1px\" caption=\"off\"][ultimate_heading main_heading=\"Quisque sed nibh tristique\" heading_tag=\"h3\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;\"]Duis lorem risus, aliquet a auctor a, venenatis in dui. Praesent et eros et risus dapibus placerat hendrerit cursus magna.[/ultimate_heading][ultimate_modal modal_title=\"Read more\" btn_text=\"Read more \" overlay_bg_opacity=\"80\" img_size=\"80\" btn_txt_color=\"#ffffff\"]pretium mauris pretium mauris pretium mauris pretium mauris pretium mauris pretium mauris pretium mauris pretium mauris pretium mauris pretium mauris pretium mauris pretium mauris pretium mauris pretium mauris pretium mauris pretium mauris pretium mauris pretium mauris pretium mauris pretium mauris pretium mauris pretium mauris pretium mauris pretium mauris pretium mauris pretium mauris pretium mauris pretium mauris[/ultimate_modal][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner][dt_fancy_image image_id=\"3170\" width=\"300\" border_radius=\"1px\" caption=\"off\"][ultimate_heading main_heading=\"Quisque sed nibh tristique\" heading_tag=\"h3\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;\"]Duis lorem risus, aliquet a auctor a, venenatis in dui. Praesent et eros et risus dapibus placerat hendrerit cursus magna.[/ultimate_heading][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner][dt_fancy_image image_id=\"3171\" width=\"300\" border_radius=\"1px\" caption=\"off\"][ultimate_heading main_heading=\"Quisque sed nibh tristique\" heading_tag=\"h3\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;\"]Duis lorem risus, aliquet a auctor a, venenatis in dui. Praesent et eros et risus dapibus placerat hendrerit cursus magna.[/ultimate_heading][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner][dt_fancy_image image_id=\"3172\" width=\"300\" border_radius=\"1px\" caption=\"off\"][ultimate_heading main_heading=\"Quisque sed nibh tristique\" heading_tag=\"h3\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;\"]Duis lorem risus, aliquet a auctor a, venenatis in dui. Praesent et eros et risus dapibus placerat hendrerit cursus magna.[/ultimate_heading][/vc_column_inner][/vc_row_inner][/ultimate_carousel][/vc_column][/vc_row][vc_row disable_element=\"yes\"][vc_column][ultimate_heading main_heading=\"Board Of Directors\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;margin-bottom:35px;\"][/ultimate_heading][vc_row_inner][vc_column_inner width=\"1/3\"][ult_animation_block animation=\"fadeInUp\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][dt_fancy_image image_id=\"3172\" width=\"300\" border_radius=\"1px\" caption=\"off\" css=\".vc_custom_1692278922309{border-top-width: 1px !important;border-right-width: 1px !important;border-bottom-width: 1px !important;border-left-width: 1px !important;border-left-color: #059444 !important;border-left-style: solid !important;border-right-color: #059444 !important;border-right-style: solid !important;border-top-color: #059444 !important;border-top-style: solid !important;border-bottom-color: #059444 !important;border-bottom-style: solid !important;border-radius: 1px !important;}\"][ultimate_heading main_heading=\"Quisque sed nibh tristique\" heading_tag=\"h3\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;\"]\r\n<ul>\r\n 	<li>Duis lorem risus, aliquet a auctor a, venenatis in dui. Praesent et eros et risus dapibus placerat hendrerit cursus magna.</li>\r\n 	<li>Praesent et eros et risus dapibus placerat hendrerit cursus magna.</li>\r\n 	<li>aliquet a auctor a, venenatis in dui.</li>\r\n</ul>\r\n[/ultimate_heading][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/3\"][ult_animation_block animation=\"fadeInDown\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][dt_fancy_image image_id=\"3171\" width=\"300\" border_radius=\"1px\" caption=\"off\" css=\".vc_custom_1692278929158{border-top-width: 1px !important;border-right-width: 1px !important;border-bottom-width: 1px !important;border-left-width: 1px !important;border-left-color: #059444 !important;border-left-style: solid !important;border-right-color: #059444 !important;border-right-style: solid !important;border-top-color: #059444 !important;border-top-style: solid !important;border-bottom-color: #059444 !important;border-bottom-style: solid !important;border-radius: 1px !important;}\"][ultimate_heading main_heading=\"Quisque sed nibh tristique\" heading_tag=\"h3\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;\"]\r\n<ul>\r\n 	<li>Duis lorem risus, aliquet a auctor a, venenatis in dui. Praesent et eros et risus dapibus placerat hendrerit cursus magna.</li>\r\n 	<li>Praesent et eros et risus dapibus placerat hendrerit cursus magna.</li>\r\n 	<li>aliquet a auctor a, venenatis in dui.</li>\r\n</ul>\r\n[/ultimate_heading][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/3\"][ult_animation_block animation=\"fadeInUp\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][dt_fancy_image image_id=\"3170\" width=\"300\" border_radius=\"1px\" caption=\"off\" css=\".vc_custom_1692278936750{border-top-width: 1px !important;border-right-width: 1px !important;border-bottom-width: 1px !important;border-left-width: 1px !important;border-left-color: #059444 !important;border-left-style: solid !important;border-right-color: #059444 !important;border-right-style: solid !important;border-top-color: #059444 !important;border-top-style: solid !important;border-bottom-color: #059444 !important;border-bottom-style: solid !important;border-radius: 1px !important;}\"][ultimate_heading main_heading=\"Quisque sed nibh tristique\" heading_tag=\"h3\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;\"]\r\n<ul>\r\n 	<li>Duis lorem risus, aliquet a auctor a, venenatis in dui. Praesent et eros et risus dapibus placerat hendrerit cursus magna.</li>\r\n 	<li>Praesent et eros et risus dapibus placerat hendrerit cursus magna.</li>\r\n 	<li>aliquet a auctor a, venenatis in dui.</li>\r\n</ul>\r\n[/ultimate_heading][/ult_animation_block][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row disable_element=\"yes\"][vc_column][ultimate_heading main_heading=\"Executive Directors\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;margin-bottom:35px;\"][/ultimate_heading][vc_row_inner][vc_column_inner width=\"1/5\"][ult_animation_block animation=\"fadeInUp\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][dt_fancy_image image_id=\"3172\" width=\"300\" border_radius=\"1px\" caption=\"off\" css=\".vc_custom_1692278922309{border-top-width: 1px !important;border-right-width: 1px !important;border-bottom-width: 1px !important;border-left-width: 1px !important;border-left-color: #059444 !important;border-left-style: solid !important;border-right-color: #059444 !important;border-right-style: solid !important;border-top-color: #059444 !important;border-top-style: solid !important;border-bottom-color: #059444 !important;border-bottom-style: solid !important;border-radius: 1px !important;}\"][ultimate_heading main_heading=\"Quisque sed nibh tristique\" heading_tag=\"h3\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;\"]\r\n<ul>\r\n 	<li>Duis lorem risus, aliquet a auctor a, venenatis in dui. Praesent et eros et risus dapibus placerat hendrerit cursus magna.</li>\r\n 	<li>Praesent et eros et risus dapibus placerat hendrerit cursus magna.</li>\r\n 	<li>aliquet a auctor a, venenatis in dui.</li>\r\n</ul>\r\n[/ultimate_heading][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/5\"][ult_animation_block animation=\"fadeInDown\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][dt_fancy_image image_id=\"3171\" width=\"300\" border_radius=\"1px\" caption=\"off\" css=\".vc_custom_1692278929158{border-top-width: 1px !important;border-right-width: 1px !important;border-bottom-width: 1px !important;border-left-width: 1px !important;border-left-color: #059444 !important;border-left-style: solid !important;border-right-color: #059444 !important;border-right-style: solid !important;border-top-color: #059444 !important;border-top-style: solid !important;border-bottom-color: #059444 !important;border-bottom-style: solid !important;border-radius: 1px !important;}\"][ultimate_heading main_heading=\"Quisque sed nibh tristique\" heading_tag=\"h3\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;\"]\r\n<ul>\r\n 	<li>Duis lorem risus, aliquet a auctor a, venenatis in dui. Praesent et eros et risus dapibus placerat hendrerit cursus magna.</li>\r\n 	<li>Praesent et eros et risus dapibus placerat hendrerit cursus magna.</li>\r\n 	<li>aliquet a auctor a, venenatis in dui.</li>\r\n</ul>\r\n[/ultimate_heading][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/5\"][ult_animation_block animation=\"fadeInUp\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][dt_fancy_image image_id=\"3170\" width=\"300\" border_radius=\"1px\" caption=\"off\" css=\".vc_custom_1692278936750{border-top-width: 1px !important;border-right-width: 1px !important;border-bottom-width: 1px !important;border-left-width: 1px !important;border-left-color: #059444 !important;border-left-style: solid !important;border-right-color: #059444 !important;border-right-style: solid !important;border-top-color: #059444 !important;border-top-style: solid !important;border-bottom-color: #059444 !important;border-bottom-style: solid !important;border-radius: 1px !important;}\"][ultimate_heading main_heading=\"Quisque sed nibh tristique\" heading_tag=\"h3\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;\"]\r\n<ul>\r\n 	<li>Duis lorem risus, aliquet a auctor a, venenatis in dui. Praesent et eros et risus dapibus placerat hendrerit cursus magna.</li>\r\n 	<li>Praesent et eros et risus dapibus placerat hendrerit cursus magna.</li>\r\n 	<li>aliquet a auctor a, venenatis in dui.</li>\r\n</ul>\r\n[/ultimate_heading][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/5\"][ult_animation_block animation=\"fadeInDown\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][dt_fancy_image image_id=\"3170\" width=\"300\" border_radius=\"1px\" caption=\"off\" css=\".vc_custom_1692278936750{border-top-width: 1px !important;border-right-width: 1px !important;border-bottom-width: 1px !important;border-left-width: 1px !important;border-left-color: #059444 !important;border-left-style: solid !important;border-right-color: #059444 !important;border-right-style: solid !important;border-top-color: #059444 !important;border-top-style: solid !important;border-bottom-color: #059444 !important;border-bottom-style: solid !important;border-radius: 1px !important;}\"][ultimate_heading main_heading=\"Quisque sed nibh tristique\" heading_tag=\"h3\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;\"]\r\n<ul>\r\n 	<li>Duis lorem risus, aliquet a auctor a, venenatis in dui. Praesent et eros et risus dapibus placerat hendrerit cursus magna.</li>\r\n 	<li>Praesent et eros et risus dapibus placerat hendrerit cursus magna.</li>\r\n 	<li>aliquet a auctor a, venenatis in dui.</li>\r\n</ul>\r\n[/ultimate_heading][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/5\"][ult_animation_block animation=\"fadeInDown\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][dt_fancy_image image_id=\"3171\" width=\"300\" border_radius=\"1px\" caption=\"off\" css=\".vc_custom_1692278929158{border-top-width: 1px !important;border-right-width: 1px !important;border-bottom-width: 1px !important;border-left-width: 1px !important;border-left-color: #059444 !important;border-left-style: solid !important;border-right-color: #059444 !important;border-right-style: solid !important;border-top-color: #059444 !important;border-top-style: solid !important;border-bottom-color: #059444 !important;border-bottom-style: solid !important;border-radius: 1px !important;}\"][ultimate_heading main_heading=\"Quisque sed nibh tristique\" heading_tag=\"h3\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;\"]\r\n<ul>\r\n 	<li>Duis lorem risus, aliquet a auctor a, venenatis in dui. Praesent et eros et risus dapibus placerat hendrerit cursus magna.</li>\r\n 	<li>Praesent et eros et risus dapibus placerat hendrerit cursus magna.</li>\r\n 	<li>aliquet a auctor a, venenatis in dui.</li>\r\n</ul>\r\n[/ultimate_heading][/ult_animation_block][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner width=\"2/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row disable_element=\"yes\"][vc_column][ultimate_heading main_heading=\"Next Generation\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;margin-bottom:35px;\"][/ultimate_heading][vc_row_inner][vc_column_inner width=\"1/2\"][ult_animation_block animation=\"fadeInUp\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][dt_fancy_image image_id=\"3172\" width=\"300\" border_radius=\"1px\" caption=\"off\" css=\".vc_custom_1692278922309{border-top-width: 1px !important;border-right-width: 1px !important;border-bottom-width: 1px !important;border-left-width: 1px !important;border-left-color: #059444 !important;border-left-style: solid !important;border-right-color: #059444 !important;border-right-style: solid !important;border-top-color: #059444 !important;border-top-style: solid !important;border-bottom-color: #059444 !important;border-bottom-style: solid !important;border-radius: 1px !important;}\"][ultimate_heading main_heading=\"Quisque sed nibh tristique\" heading_tag=\"h3\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;\"]\r\n<ul>\r\n 	<li>Duis lorem risus, aliquet a auctor a, venenatis in dui. Praesent et eros et risus dapibus placerat hendrerit cursus magna.</li>\r\n 	<li>Praesent et eros et risus dapibus placerat hendrerit cursus magna.</li>\r\n 	<li>aliquet a auctor a, venenatis in dui.</li>\r\n</ul>\r\n[/ultimate_heading][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/2\"][ult_animation_block animation=\"fadeInDown\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][dt_fancy_image image_id=\"3171\" width=\"300\" border_radius=\"1px\" caption=\"off\" css=\".vc_custom_1692278929158{border-top-width: 1px !important;border-right-width: 1px !important;border-bottom-width: 1px !important;border-left-width: 1px !important;border-left-color: #059444 !important;border-left-style: solid !important;border-right-color: #059444 !important;border-right-style: solid !important;border-top-color: #059444 !important;border-top-style: solid !important;border-bottom-color: #059444 !important;border-bottom-style: solid !important;border-radius: 1px !important;}\"][ultimate_heading main_heading=\"Quisque sed nibh tristique\" heading_tag=\"h3\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;\"]\r\n<ul>\r\n 	<li>Duis lorem risus, aliquet a auctor a, venenatis in dui. Praesent et eros et risus dapibus placerat hendrerit cursus magna.</li>\r\n 	<li>Praesent et eros et risus dapibus placerat hendrerit cursus magna.</li>\r\n 	<li>aliquet a auctor a, venenatis in dui.</li>\r\n</ul>\r\n[/ultimate_heading][/ult_animation_block][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row]','About us','','inherit','closed','closed','','2917-revision-v1','','','2023-09-12 13:39:50','2023-09-12 13:39:50','',2917,'https://farmchemie.yasithawd.com/?p=3561',0,'revision','',0),(3660,1,'2023-09-14 11:06:52','2023-09-14 11:06:52','[vc_row full_width=\"stretch_row_content_no_spaces\"][vc_column][ultimate_heading main_heading=\"Our History\" main_heading_color=\"#762888\"][/ultimate_heading][/vc_column][/vc_row][vc_row][vc_column][vc_row_inner equal_height=\"yes\" content_placement=\"middle\" css=\".vc_custom_1692359205466{margin-top: 35px !important;}\"][vc_column_inner width=\"1/2\"][ult_animation_block animation=\"fadeInLeftBig\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][vc_single_image image=\"3273\" img_size=\"full\" alignment=\"center\" style=\"vc_box_rounded\"][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/2\"][ult_animation_block animation=\"fadeInRightBig\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][ultimate_heading main_heading=\"Founded in 2002\" heading_tag=\"h3\" main_heading_color=\"#039447\" alignment=\"left\" sub_heading_font_size=\"desktop:18px;\"]Founded in 2002 by Mr. Uditha Wanigasinghe, an agriculturist who had a mission to aid valuable livestock producers in the country to enhance the yield and profitability of production. FARMCHEMIE introduced unprecedented solutions and consistent technical services to gain our customers’ trust and became the market leader in animal health products in 2006 within just four years.[/ultimate_heading][/ult_animation_block][/vc_column_inner][/vc_row_inner][vc_separator color=\"custom\" accent_color=\"#039447\"][vc_row_inner equal_height=\"yes\" rtl_reverse=\"yes\" content_placement=\"middle\" css=\".vc_custom_1692359216075{margin-top: 35px !important;}\"][vc_column_inner width=\"1/2\"][ult_animation_block animation=\"fadeInLeftBig\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][ultimate_heading main_heading=\"2006\" heading_tag=\"h3\" main_heading_color=\"#039447\" alignment=\"right\"]In 2006, the Sri Lankan poultry industry was affected with Avian Influenza which became a difficult period for the growth of FARMCHEMIE. This was the key factor in our decision to diversify into Agro Products. PLANTCHEM &amp; PLANTSEEDS were established to offer solutions in Agro specialty fertilizers, pesticides and seeds to invaluable cultivators.[/ultimate_heading][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/2\"][ult_animation_block animation=\"fadeInRightBig\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][vc_single_image image=\"3276\" img_size=\"full\" alignment=\"center\" style=\"vc_box_rounded\"][/ult_animation_block][/vc_column_inner][/vc_row_inner][vc_separator color=\"custom\" accent_color=\"#039447\"][vc_row_inner equal_height=\"yes\" content_placement=\"middle\" css=\".vc_custom_1692359231594{margin-top: 35px !important;}\"][vc_column_inner width=\"1/2\"][ult_animation_block animation=\"fadeInLeftBig\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][vc_single_image image=\"3277\" img_size=\"full\" alignment=\"center\" style=\"vc_box_rounded\"][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/2\"][ult_animation_block animation=\"fadeInRightBig\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][ultimate_heading main_heading=\"2010\" heading_tag=\"h3\" main_heading_color=\"#039447\" alignment=\"left\"]In 2010, FEED CHEMIE became the subsequent addition to ever-growing vision of Mr. Uditha Wanigasinghe and entered the Animal Feed Additives market.[/ultimate_heading][/ult_animation_block][/vc_column_inner][/vc_row_inner][vc_separator color=\"custom\" accent_color=\"#039447\"][vc_row_inner equal_height=\"yes\" rtl_reverse=\"yes\" content_placement=\"middle\" css=\".vc_custom_1692359239274{margin-top: 35px !important;}\"][vc_column_inner width=\"1/2\"][ult_animation_block animation=\"fadeInLeftBig\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][ultimate_heading main_heading=\"2012\" heading_tag=\"h3\" main_heading_color=\"#039447\" alignment=\"right\"]The year 2012 is described as a turning point in our journey as FARMCHEMIE established our first production facility for the manufacturing and packing of animal health products. FARMCHEMIE became the first animal health organization in Sri Lanka to obtain ISO 9001:2015 and WHO GMP International Quality Certification. With our own formulation unit, FARMCHEMIE was able to offer customized solutions to cater the needs of the Sri Lankan Livestock Industry.[/ultimate_heading][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/2\"][ult_animation_block animation=\"fadeInRightBig\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][vc_single_image image=\"3278\" img_size=\"full\" alignment=\"center\" style=\"vc_box_rounded\"][/ult_animation_block][/vc_column_inner][/vc_row_inner][vc_separator color=\"custom\" accent_color=\"#039447\"][vc_row_inner content_placement=\"middle\" css=\".vc_custom_1692359246626{margin-top: 35px !important;}\"][vc_column_inner width=\"1/2\"][ult_animation_block animation=\"fadeInLeftBig\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][vc_single_image image=\"3279\" img_size=\"full\" alignment=\"center\" style=\"vc_box_rounded\"][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/2\"][ult_animation_block animation=\"fadeInRightBig\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][ultimate_heading main_heading=\"2016\" heading_tag=\"h3\" main_heading_color=\"#039447\" alignment=\"left\"]The year 2016 was another key milestone with the entry to the International Markets. FARMCHEMIE exported our first Feed Premix consignment to India and in 2018 our export operation was distinctly established as FARMCHEMIE MANUFACTURERS, a Board of Investment (BOI) approved entity.[/ultimate_heading][/ult_animation_block][/vc_column_inner][/vc_row_inner][vc_separator color=\"custom\" accent_color=\"#039447\"][vc_row_inner equal_height=\"yes\" content_placement=\"middle\" css=\".vc_custom_1692422601938{margin-top: 35px !important;}\"][vc_column_inner width=\"1/2\"][ult_animation_block animation=\"fadeInLeftBig\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][ultimate_heading main_heading=\"Fully automated manufacturing\" heading_tag=\"h3\" main_heading_color=\"#039447\" alignment=\"right\"]FARMCHEMIE MANUFACTURERS has invested in fully automated manufacturing facility from Bühler and became the first Sri Lankan owned company to obtain FAMI-QS International Quality Certification.[/ultimate_heading][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/2\"][ult_animation_block animation=\"fadeInRightBig\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][vc_single_image image=\"3280\" img_size=\"full\" alignment=\"center\" style=\"vc_box_rounded\"][/ult_animation_block][/vc_column_inner][/vc_row_inner][vc_separator color=\"custom\" accent_color=\"#039447\"][vc_row_inner equal_height=\"yes\" content_placement=\"middle\" css=\".vc_custom_1692359258634{margin-top: 35px !important;}\"][vc_column_inner width=\"1/2\"][ult_animation_block animation=\"fadeInLeftBig\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][vc_single_image image=\"3281\" img_size=\"full\" alignment=\"center\" style=\"vc_box_rounded\"][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/2\"][ult_animation_block animation=\"fadeInRightBig\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][ultimate_heading main_heading=\"Official toll manufacturer partner\" heading_tag=\"h3\" main_heading_color=\"#039447\" alignment=\"left\"]With the trust and reputation built as a reliable manufacturer of animal feed additives and supplements in the global market, several world-renowned international brands have appointed FARMCHEMIE MANUFACTURERS as the official toll manufacturer partner. FARMCHEMIE MANUFACTURERS exports a wide range of products consisting of premixes, specialty feed additives, oral liquid supplements and pet supplements to various markets in South Asia, East Asia, Middle East and Africa.\r\n\r\nFARMCHEMIE, FEED CHEMIE &amp; FARMCHEMIE MANUFACTURERS currently operate under the ownership of our holding company, DYVESTA.\r\n\r\nDYEVSTA has become the pinnacle of Animal Nutrition and Health.\r\n\r\nDYVESTA is Dynamic, through our continuous evolution, growth and progress. DYVESTA is Diverse, in terms of both our business strategy and our community. DYVESTA is Devoted to our valuable business partners through exceptional service.[/ultimate_heading][/ult_animation_block][/vc_column_inner][/vc_row_inner][vc_separator color=\"custom\" accent_color=\"#039447\"][/vc_column][/vc_row][vc_row full_width=\"stretch_row\" equal_height=\"yes\" bg_type=\"image\" parallax_style=\"vcpb-vz-jquery\" bg_image_new=\"id^3256|url^https://farmchemie.yasithawd.com/wp-content/uploads/2023/08/Vision-Mission.png|caption^null|alt^null|title^Vision-&amp;-Mission|description^null\" bg_image_repeat=\"no-repeat\" enable_overlay=\"enable_overlay_value\" overlay_color=\"#000000\" overlay_pattern=\"01.png\" overlay_pattern_opacity=\"5\" css=\".vc_custom_1692366072362{margin-top: 35px !important;padding-top: 65px !important;padding-bottom: 100px !important;}\"][vc_column][vc_row_inner equal_height=\"yes\"][vc_column_inner width=\"1/2\"][ult_animation_block animation=\"fadeInLeftBig\" animation_duration=\"2\" animation_delay=\"0\" animation_iteration_count=\"1\"][ultimate_heading main_heading=\"Vision\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\"]To be the customers’ first and best choice by ensuring outstanding satisfaction through a well-trained and dedicated team. Prompt and quality solutions to our customers’ requirements will determine the increase of return on investment for us.[/ultimate_heading][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/2\"][ult_animation_block animation=\"fadeInRightBig\" animation_duration=\"2\" animation_delay=\"0\" animation_iteration_count=\"1\"][ultimate_heading main_heading=\"Mission\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\"]To become a world renowned manufacturer of Animal Health products and a trusted partner among our stakeholders for our integrity as well as for providing effective solutions[/ultimate_heading][/ult_animation_block][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row css=\".vc_custom_1684836308288{margin-top: 15px !important;}\"][vc_column][ultimate_heading main_heading=\"Achievements\" main_heading_color=\"#762888\" main_heading_margin=\"margin-top:35px;\"][/ultimate_heading][vc_row_inner gap=\"20\"][vc_column_inner width=\"1/2\" css=\".vc_custom_1691995519863{background-color: #f4ab20 !important;border: 1px solid #f4ab20 !important;border-radius: 35px !important;}\"][ult_animation_block animation=\"fadeInLeftBig\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][bsf-info-box icon_type=\"custom\" icon_img=\"id^3117|url^https://farmchemie.yasithawd.com/wp-content/uploads/2023/08/Pink_-H.png|caption^null|alt^null|title^Pink_-H|description^null\" img_width=\"60\" icon_style=\"advanced\" icon_border_style=\"solid\" icon_color_border=\"#ffffff\" icon_border_size=\"1\" icon_border_radius=\"500\" icon_border_spacing=\"1\" title=\"First Free Sale Certificate obtained from Veterinary Drug Control Authority (VDCA) for Veterinary Pharmaceuticals\" title_font_style=\"font-weight:bold;\" title_font_size=\"desktop:20px;\"][/bsf-info-box][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/2\" css=\".vc_custom_1691995661095{background-color: #722f8b !important;border: 1px solid #722f8b !important;border-radius: 35px !important;}\"][ult_animation_block animation=\"fadeInRightBig\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][bsf-info-box icon_type=\"custom\" icon_img=\"id^3117|url^https://farmchemie.yasithawd.com/wp-content/uploads/2023/08/Pink_-H.png|caption^null|alt^null|title^Pink_-H|description^null\" img_width=\"60\" icon_style=\"advanced\" icon_border_style=\"solid\" icon_color_border=\"#ffffff\" icon_border_size=\"1\" icon_border_radius=\"500\" icon_border_spacing=\"1\" title=\"First ISO 9001: 2015 ,WHO-GMP Quality Management systems certified Animal Health company in Sri Lanka since August, 2012\" title_font_style=\"font-weight:bold;\" title_font_color=\"#ffffff\" title_font_size=\"desktop:20px;\"][/bsf-info-box][/ult_animation_block][/vc_column_inner][/vc_row_inner][vc_row_inner gap=\"20\"][vc_column_inner width=\"1/2\" css=\".vc_custom_1691995661095{background-color: #722f8b !important;border: 1px solid #722f8b !important;border-radius: 35px !important;}\"][ult_animation_block animation=\"fadeInLeftBig\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][bsf-info-box icon_type=\"custom\" icon_img=\"id^3117|url^https://farmchemie.yasithawd.com/wp-content/uploads/2023/08/Pink_-H.png|caption^null|alt^null|title^Pink_-H|description^null\" img_width=\"60\" icon_style=\"advanced\" icon_border_style=\"solid\" icon_color_border=\"#ffffff\" icon_border_size=\"1\" icon_border_radius=\"500\" icon_border_spacing=\"1\" title=\"First FAMI-QS certified company in sri lanka\" title_font_style=\"font-weight:bold;\" title_font_color=\"#ffffff\" title_font_size=\"desktop:20px;\"][/bsf-info-box][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/2\" css=\".vc_custom_1691995519863{background-color: #f4ab20 !important;border: 1px solid #f4ab20 !important;border-radius: 35px !important;}\"][ult_animation_block animation=\"fadeInRightBig\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][bsf-info-box icon_type=\"custom\" icon_img=\"id^3117|url^https://farmchemie.yasithawd.com/wp-content/uploads/2023/08/Pink_-H.png|caption^null|alt^null|title^Pink_-H|description^null\" img_width=\"60\" icon_style=\"advanced\" icon_border_style=\"solid\" icon_color_border=\"#ffffff\" icon_border_size=\"1\" icon_border_radius=\"500\" icon_border_spacing=\"1\" title=\"First Certificate of Ethical Trading certified in Livestock industry\" title_font_style=\"font-weight:bold;\" title_font_size=\"desktop:20px;\"][/bsf-info-box][/ult_animation_block][/vc_column_inner][/vc_row_inner][vc_row_inner gap=\"20\"][vc_column_inner width=\"1/4\" css=\".vc_custom_1691996718116{border-radius: 35px !important;}\"][/vc_column_inner][vc_column_inner width=\"2/4\" css=\".vc_custom_1691995519863{background-color: #f4ab20 !important;border: 1px solid #f4ab20 !important;border-radius: 35px !important;}\"][ult_animation_block animation=\"fadeInUpBig\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][bsf-info-box icon_type=\"custom\" icon_img=\"id^3117|url^https://farmchemie.yasithawd.com/wp-content/uploads/2023/08/Pink_-H.png|caption^null|alt^null|title^Pink_-H|description^null\" img_width=\"60\" icon_style=\"advanced\" icon_border_style=\"solid\" icon_color_border=\"#ffffff\" icon_border_size=\"1\" icon_border_radius=\"500\" icon_border_spacing=\"1\" title=\"First Silver awarded company at National Exports Awards in Livestock industry\" title_font_style=\"font-weight:bold;\" title_font_size=\"desktop:20px;\"][/bsf-info-box][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/4\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row full_width=\"stretch_row\" equal_height=\"yes\" content_placement=\"bottom\" css=\".vc_custom_1693627699480{margin-top: 15px !important;}\"][vc_column][ultimate_heading main_heading=\"Certifications\" main_heading_color=\"#762888\" main_heading_margin=\"margin-top:35px;\"][/ultimate_heading][vc_row_inner content_placement=\"bottom\"][vc_column_inner width=\"1/6\"][dt_fancy_image image_id=\"3407\" width=\"300\" caption=\"off\"][/vc_column_inner][vc_column_inner width=\"1/6\"][dt_fancy_image image_id=\"3408\" width=\"300\" caption=\"off\"][/vc_column_inner][vc_column_inner width=\"1/6\"][dt_fancy_image image_id=\"3409\" width=\"300\" caption=\"off\"][/vc_column_inner][vc_column_inner width=\"1/6\"][dt_fancy_image image_id=\"3411\" width=\"300\" caption=\"off\"][/vc_column_inner][vc_column_inner width=\"1/6\"][dt_fancy_image image_id=\"3410\" width=\"300\" caption=\"off\"][/vc_column_inner][vc_column_inner width=\"1/6\"][dt_fancy_image image_id=\"3406\" width=\"300\" caption=\"off\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row full_width=\"stretch_row\" equal_height=\"yes\" content_placement=\"bottom\" css=\".vc_custom_1693625624233{margin-top: 15px !important;}\"][vc_column][ultimate_heading main_heading=\"Awards\" main_heading_color=\"#762888\" main_heading_margin=\"margin-top:35px;\"][/ultimate_heading][ultimate_carousel slide_to_scroll=\"single\"][dt_fancy_image image_id=\"3412\" width=\"300\"][dt_fancy_image image_id=\"3413\" width=\"300\" caption=\"off\"][dt_fancy_image image_id=\"3414\" width=\"300\" caption=\"off\"][dt_fancy_image image_id=\"3415\" width=\"300\" caption=\"off\"][dt_fancy_image image_id=\"3416\" width=\"300\" caption=\"off\"][dt_fancy_image image_id=\"3417\" width=\"300\" caption=\"off\"][dt_fancy_image image_id=\"3418\" width=\"300\" caption=\"off\"][dt_fancy_image image_id=\"3420\" width=\"300\" caption=\"off\"][dt_fancy_image image_id=\"3419\" width=\"300\" caption=\"off\"][dt_fancy_image image_id=\"3422\" width=\"300\" caption=\"off\"][dt_fancy_image image_id=\"3421\" width=\"300\" caption=\"off\"][dt_fancy_image image_id=\"3422\" width=\"300\" caption=\"off\"][dt_fancy_image image_id=\"3423\" width=\"300\" caption=\"off\"][dt_fancy_image image_id=\"3424\" width=\"300\" caption=\"off\"][dt_fancy_image image_id=\"3425\" width=\"300\" caption=\"off\"][/ultimate_carousel][/vc_column][/vc_row][vc_row css=\".vc_custom_1693625068958{margin-top: 15px !important;}\"][vc_column][ultimate_heading main_heading=\"Board Of Directors\" main_heading_color=\"#762888\" main_heading_margin=\"margin-top:35px;margin-bottom:35px;\"][/ultimate_heading][ultimate_carousel slides_on_desk=\"3\" slides_on_mob=\"1\" arrow_style=\"square-bg\" arrow_bg_color=\"#039447\" arrow_color=\"#ffffff\" next_icon=\"ultsl-arrow-right6\" prev_icon=\"ultsl-arrow-left6\" dots_color=\"#039447\" item_animation=\"fadeIn\"][vc_row_inner][vc_column_inner][ultimate_heading main_heading=\"Quisque sed nibh tristique\" heading_tag=\"h3\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;\"]Duis lorem risus, aliquet a auctor a, venenatis in dui. Praesent et eros et risus dapibus placerat hendrerit cursus magna.[/ultimate_heading][ultimate_modal modal_title=\"Read more\" btn_size=\"md\" btn_bg_color=\"#089548\" btn_text=\"Read more\" overlay_bg_opacity=\"75\" img_size=\"80\" btn_txt_color=\"#ffffff\"]pretium mauris pretium mauris pretium mauris pretium mauris pretium mauris pretium mauris pretium mauris pretium mauris pretium mauris pretium mauris pretium mauris pretium mauris pretium mauris pretium mauris pretium mauris pretium mauris pretium mauris pretium mauris pretium mauris pretium mauris pretium mauris pretium mauris pretium mauris pretium mauris pretium mauris pretium mauris pretium mauris pretium mauris[/ultimate_modal][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner][ultimate_heading main_heading=\"Quisque sed nibh tristique\" heading_tag=\"h3\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;\"]Duis lorem risus, aliquet a auctor a, venenatis in dui. Praesent et eros et risus dapibus placerat hendrerit cursus magna.[/ultimate_heading][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner][ultimate_heading main_heading=\"Quisque sed nibh tristique\" heading_tag=\"h3\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;\"]Duis lorem risus, aliquet a auctor a, venenatis in dui. Praesent et eros et risus dapibus placerat hendrerit cursus magna.[/ultimate_heading][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner][ultimate_heading main_heading=\"Quisque sed nibh tristique\" heading_tag=\"h3\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;\"]Duis lorem risus, aliquet a auctor a, venenatis in dui. Praesent et eros et risus dapibus placerat hendrerit cursus magna.[/ultimate_heading][/vc_column_inner][/vc_row_inner][/ultimate_carousel][/vc_column][/vc_row][vc_row disable_element=\"yes\"][vc_column][ultimate_heading main_heading=\"Board Of Directors\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;margin-bottom:35px;\"][/ultimate_heading][vc_row_inner][vc_column_inner width=\"1/3\"][ult_animation_block animation=\"fadeInUp\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][dt_fancy_image image_id=\"3172\" width=\"300\" border_radius=\"1px\" caption=\"off\" css=\".vc_custom_1692278922309{border-top-width: 1px !important;border-right-width: 1px !important;border-bottom-width: 1px !important;border-left-width: 1px !important;border-left-color: #059444 !important;border-left-style: solid !important;border-right-color: #059444 !important;border-right-style: solid !important;border-top-color: #059444 !important;border-top-style: solid !important;border-bottom-color: #059444 !important;border-bottom-style: solid !important;border-radius: 1px !important;}\"][ultimate_heading main_heading=\"Quisque sed nibh tristique\" heading_tag=\"h3\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;\"]\r\n<ul>\r\n 	<li>Duis lorem risus, aliquet a auctor a, venenatis in dui. Praesent et eros et risus dapibus placerat hendrerit cursus magna.</li>\r\n 	<li>Praesent et eros et risus dapibus placerat hendrerit cursus magna.</li>\r\n 	<li>aliquet a auctor a, venenatis in dui.</li>\r\n</ul>\r\n[/ultimate_heading][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/3\"][ult_animation_block animation=\"fadeInDown\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][dt_fancy_image image_id=\"3171\" width=\"300\" border_radius=\"1px\" caption=\"off\" css=\".vc_custom_1692278929158{border-top-width: 1px !important;border-right-width: 1px !important;border-bottom-width: 1px !important;border-left-width: 1px !important;border-left-color: #059444 !important;border-left-style: solid !important;border-right-color: #059444 !important;border-right-style: solid !important;border-top-color: #059444 !important;border-top-style: solid !important;border-bottom-color: #059444 !important;border-bottom-style: solid !important;border-radius: 1px !important;}\"][ultimate_heading main_heading=\"Quisque sed nibh tristique\" heading_tag=\"h3\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;\"]\r\n<ul>\r\n 	<li>Duis lorem risus, aliquet a auctor a, venenatis in dui. Praesent et eros et risus dapibus placerat hendrerit cursus magna.</li>\r\n 	<li>Praesent et eros et risus dapibus placerat hendrerit cursus magna.</li>\r\n 	<li>aliquet a auctor a, venenatis in dui.</li>\r\n</ul>\r\n[/ultimate_heading][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/3\"][ult_animation_block animation=\"fadeInUp\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][dt_fancy_image image_id=\"3170\" width=\"300\" border_radius=\"1px\" caption=\"off\" css=\".vc_custom_1692278936750{border-top-width: 1px !important;border-right-width: 1px !important;border-bottom-width: 1px !important;border-left-width: 1px !important;border-left-color: #059444 !important;border-left-style: solid !important;border-right-color: #059444 !important;border-right-style: solid !important;border-top-color: #059444 !important;border-top-style: solid !important;border-bottom-color: #059444 !important;border-bottom-style: solid !important;border-radius: 1px !important;}\"][ultimate_heading main_heading=\"Quisque sed nibh tristique\" heading_tag=\"h3\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;\"]\r\n<ul>\r\n 	<li>Duis lorem risus, aliquet a auctor a, venenatis in dui. Praesent et eros et risus dapibus placerat hendrerit cursus magna.</li>\r\n 	<li>Praesent et eros et risus dapibus placerat hendrerit cursus magna.</li>\r\n 	<li>aliquet a auctor a, venenatis in dui.</li>\r\n</ul>\r\n[/ultimate_heading][/ult_animation_block][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row disable_element=\"yes\"][vc_column][ultimate_heading main_heading=\"Executive Directors\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;margin-bottom:35px;\"][/ultimate_heading][vc_row_inner][vc_column_inner width=\"1/5\"][ult_animation_block animation=\"fadeInUp\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][dt_fancy_image image_id=\"3172\" width=\"300\" border_radius=\"1px\" caption=\"off\" css=\".vc_custom_1692278922309{border-top-width: 1px !important;border-right-width: 1px !important;border-bottom-width: 1px !important;border-left-width: 1px !important;border-left-color: #059444 !important;border-left-style: solid !important;border-right-color: #059444 !important;border-right-style: solid !important;border-top-color: #059444 !important;border-top-style: solid !important;border-bottom-color: #059444 !important;border-bottom-style: solid !important;border-radius: 1px !important;}\"][ultimate_heading main_heading=\"Quisque sed nibh tristique\" heading_tag=\"h3\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;\"]\r\n<ul>\r\n 	<li>Duis lorem risus, aliquet a auctor a, venenatis in dui. Praesent et eros et risus dapibus placerat hendrerit cursus magna.</li>\r\n 	<li>Praesent et eros et risus dapibus placerat hendrerit cursus magna.</li>\r\n 	<li>aliquet a auctor a, venenatis in dui.</li>\r\n</ul>\r\n[/ultimate_heading][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/5\"][ult_animation_block animation=\"fadeInDown\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][dt_fancy_image image_id=\"3171\" width=\"300\" border_radius=\"1px\" caption=\"off\" css=\".vc_custom_1692278929158{border-top-width: 1px !important;border-right-width: 1px !important;border-bottom-width: 1px !important;border-left-width: 1px !important;border-left-color: #059444 !important;border-left-style: solid !important;border-right-color: #059444 !important;border-right-style: solid !important;border-top-color: #059444 !important;border-top-style: solid !important;border-bottom-color: #059444 !important;border-bottom-style: solid !important;border-radius: 1px !important;}\"][ultimate_heading main_heading=\"Quisque sed nibh tristique\" heading_tag=\"h3\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;\"]\r\n<ul>\r\n 	<li>Duis lorem risus, aliquet a auctor a, venenatis in dui. Praesent et eros et risus dapibus placerat hendrerit cursus magna.</li>\r\n 	<li>Praesent et eros et risus dapibus placerat hendrerit cursus magna.</li>\r\n 	<li>aliquet a auctor a, venenatis in dui.</li>\r\n</ul>\r\n[/ultimate_heading][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/5\"][ult_animation_block animation=\"fadeInUp\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][dt_fancy_image image_id=\"3170\" width=\"300\" border_radius=\"1px\" caption=\"off\" css=\".vc_custom_1692278936750{border-top-width: 1px !important;border-right-width: 1px !important;border-bottom-width: 1px !important;border-left-width: 1px !important;border-left-color: #059444 !important;border-left-style: solid !important;border-right-color: #059444 !important;border-right-style: solid !important;border-top-color: #059444 !important;border-top-style: solid !important;border-bottom-color: #059444 !important;border-bottom-style: solid !important;border-radius: 1px !important;}\"][ultimate_heading main_heading=\"Quisque sed nibh tristique\" heading_tag=\"h3\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;\"]\r\n<ul>\r\n 	<li>Duis lorem risus, aliquet a auctor a, venenatis in dui. Praesent et eros et risus dapibus placerat hendrerit cursus magna.</li>\r\n 	<li>Praesent et eros et risus dapibus placerat hendrerit cursus magna.</li>\r\n 	<li>aliquet a auctor a, venenatis in dui.</li>\r\n</ul>\r\n[/ultimate_heading][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/5\"][ult_animation_block animation=\"fadeInDown\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][dt_fancy_image image_id=\"3170\" width=\"300\" border_radius=\"1px\" caption=\"off\" css=\".vc_custom_1692278936750{border-top-width: 1px !important;border-right-width: 1px !important;border-bottom-width: 1px !important;border-left-width: 1px !important;border-left-color: #059444 !important;border-left-style: solid !important;border-right-color: #059444 !important;border-right-style: solid !important;border-top-color: #059444 !important;border-top-style: solid !important;border-bottom-color: #059444 !important;border-bottom-style: solid !important;border-radius: 1px !important;}\"][ultimate_heading main_heading=\"Quisque sed nibh tristique\" heading_tag=\"h3\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;\"]\r\n<ul>\r\n 	<li>Duis lorem risus, aliquet a auctor a, venenatis in dui. Praesent et eros et risus dapibus placerat hendrerit cursus magna.</li>\r\n 	<li>Praesent et eros et risus dapibus placerat hendrerit cursus magna.</li>\r\n 	<li>aliquet a auctor a, venenatis in dui.</li>\r\n</ul>\r\n[/ultimate_heading][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/5\"][ult_animation_block animation=\"fadeInDown\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][dt_fancy_image image_id=\"3171\" width=\"300\" border_radius=\"1px\" caption=\"off\" css=\".vc_custom_1692278929158{border-top-width: 1px !important;border-right-width: 1px !important;border-bottom-width: 1px !important;border-left-width: 1px !important;border-left-color: #059444 !important;border-left-style: solid !important;border-right-color: #059444 !important;border-right-style: solid !important;border-top-color: #059444 !important;border-top-style: solid !important;border-bottom-color: #059444 !important;border-bottom-style: solid !important;border-radius: 1px !important;}\"][ultimate_heading main_heading=\"Quisque sed nibh tristique\" heading_tag=\"h3\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;\"]\r\n<ul>\r\n 	<li>Duis lorem risus, aliquet a auctor a, venenatis in dui. Praesent et eros et risus dapibus placerat hendrerit cursus magna.</li>\r\n 	<li>Praesent et eros et risus dapibus placerat hendrerit cursus magna.</li>\r\n 	<li>aliquet a auctor a, venenatis in dui.</li>\r\n</ul>\r\n[/ultimate_heading][/ult_animation_block][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner width=\"2/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row disable_element=\"yes\"][vc_column][ultimate_heading main_heading=\"Next Generation\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;margin-bottom:35px;\"][/ultimate_heading][vc_row_inner][vc_column_inner width=\"1/2\"][ult_animation_block animation=\"fadeInUp\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][dt_fancy_image image_id=\"3172\" width=\"300\" border_radius=\"1px\" caption=\"off\" css=\".vc_custom_1692278922309{border-top-width: 1px !important;border-right-width: 1px !important;border-bottom-width: 1px !important;border-left-width: 1px !important;border-left-color: #059444 !important;border-left-style: solid !important;border-right-color: #059444 !important;border-right-style: solid !important;border-top-color: #059444 !important;border-top-style: solid !important;border-bottom-color: #059444 !important;border-bottom-style: solid !important;border-radius: 1px !important;}\"][ultimate_heading main_heading=\"Quisque sed nibh tristique\" heading_tag=\"h3\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;\"]\r\n<ul>\r\n 	<li>Duis lorem risus, aliquet a auctor a, venenatis in dui. Praesent et eros et risus dapibus placerat hendrerit cursus magna.</li>\r\n 	<li>Praesent et eros et risus dapibus placerat hendrerit cursus magna.</li>\r\n 	<li>aliquet a auctor a, venenatis in dui.</li>\r\n</ul>\r\n[/ultimate_heading][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/2\"][ult_animation_block animation=\"fadeInDown\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][dt_fancy_image image_id=\"3171\" width=\"300\" border_radius=\"1px\" caption=\"off\" css=\".vc_custom_1692278929158{border-top-width: 1px !important;border-right-width: 1px !important;border-bottom-width: 1px !important;border-left-width: 1px !important;border-left-color: #059444 !important;border-left-style: solid !important;border-right-color: #059444 !important;border-right-style: solid !important;border-top-color: #059444 !important;border-top-style: solid !important;border-bottom-color: #059444 !important;border-bottom-style: solid !important;border-radius: 1px !important;}\"][ultimate_heading main_heading=\"Quisque sed nibh tristique\" heading_tag=\"h3\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;\"]\r\n<ul>\r\n 	<li>Duis lorem risus, aliquet a auctor a, venenatis in dui. Praesent et eros et risus dapibus placerat hendrerit cursus magna.</li>\r\n 	<li>Praesent et eros et risus dapibus placerat hendrerit cursus magna.</li>\r\n 	<li>aliquet a auctor a, venenatis in dui.</li>\r\n</ul>\r\n[/ultimate_heading][/ult_animation_block][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row]','About us','','inherit','closed','closed','','2917-revision-v1','','','2023-09-14 11:06:52','2023-09-14 11:06:52','',2917,'https://farmchemie.yasithawd.com/?p=3660',0,'revision','',0),(3562,1,'2023-09-12 13:53:05','2023-09-12 13:53:05','[vc_row full_width=\"stretch_row_content_no_spaces\"][vc_column][ultimate_heading main_heading=\"Our History\" main_heading_color=\"#762888\"][/ultimate_heading][/vc_column][/vc_row][vc_row][vc_column][vc_row_inner equal_height=\"yes\" content_placement=\"middle\" css=\".vc_custom_1692359205466{margin-top: 35px !important;}\"][vc_column_inner width=\"1/2\"][ult_animation_block animation=\"fadeInLeftBig\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][vc_single_image image=\"3273\" img_size=\"full\" alignment=\"center\" style=\"vc_box_rounded\"][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/2\"][ult_animation_block animation=\"fadeInRightBig\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][ultimate_heading main_heading=\"Founded in 2002\" heading_tag=\"h3\" main_heading_color=\"#039447\" alignment=\"left\" sub_heading_font_size=\"desktop:18px;\"]Founded in 2002 by Mr. Uditha Wanigasinghe, an agriculturist who had a mission to aid valuable livestock producers in the country to enhance the yield and profitability of production. FARMCHEMIE introduced unprecedented solutions and consistent technical services to gain our customers’ trust and became the market leader in animal health products in 2006 within just four years.[/ultimate_heading][/ult_animation_block][/vc_column_inner][/vc_row_inner][vc_separator color=\"custom\" accent_color=\"#039447\"][vc_row_inner equal_height=\"yes\" rtl_reverse=\"yes\" content_placement=\"middle\" css=\".vc_custom_1692359216075{margin-top: 35px !important;}\"][vc_column_inner width=\"1/2\"][ult_animation_block animation=\"fadeInLeftBig\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][ultimate_heading main_heading=\"2006\" heading_tag=\"h3\" main_heading_color=\"#039447\" alignment=\"right\"]In 2006, the Sri Lankan poultry industry was affected with Avian Influenza which became a difficult period for the growth of FARMCHEMIE. This was the key factor in our decision to diversify into Agro Products. PLANTCHEM &amp; PLANTSEEDS were established to offer solutions in Agro specialty fertilizers, pesticides and seeds to invaluable cultivators.[/ultimate_heading][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/2\"][ult_animation_block animation=\"fadeInRightBig\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][vc_single_image image=\"3276\" img_size=\"full\" alignment=\"center\" style=\"vc_box_rounded\"][/ult_animation_block][/vc_column_inner][/vc_row_inner][vc_separator color=\"custom\" accent_color=\"#039447\"][vc_row_inner equal_height=\"yes\" content_placement=\"middle\" css=\".vc_custom_1692359231594{margin-top: 35px !important;}\"][vc_column_inner width=\"1/2\"][ult_animation_block animation=\"fadeInLeftBig\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][vc_single_image image=\"3277\" img_size=\"full\" alignment=\"center\" style=\"vc_box_rounded\"][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/2\"][ult_animation_block animation=\"fadeInRightBig\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][ultimate_heading main_heading=\"2010\" heading_tag=\"h3\" main_heading_color=\"#039447\" alignment=\"left\"]In 2010, FEED CHEMIE became the subsequent addition to ever-growing vision of Mr. Uditha Wanigasinghe and entered the Animal Feed Additives market.[/ultimate_heading][/ult_animation_block][/vc_column_inner][/vc_row_inner][vc_separator color=\"custom\" accent_color=\"#039447\"][vc_row_inner equal_height=\"yes\" rtl_reverse=\"yes\" content_placement=\"middle\" css=\".vc_custom_1692359239274{margin-top: 35px !important;}\"][vc_column_inner width=\"1/2\"][ult_animation_block animation=\"fadeInLeftBig\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][ultimate_heading main_heading=\"2012\" heading_tag=\"h3\" main_heading_color=\"#039447\" alignment=\"right\"]The year 2012 is described as a turning point in our journey as FARMCHEMIE established our first production facility for the manufacturing and packing of animal health products. FARMCHEMIE became the first animal health organization in Sri Lanka to obtain ISO 9001:2015 and WHO GMP International Quality Certification. With our own formulation unit, FARMCHEMIE was able to offer customized solutions to cater the needs of the Sri Lankan Livestock Industry.[/ultimate_heading][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/2\"][ult_animation_block animation=\"fadeInRightBig\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][vc_single_image image=\"3278\" img_size=\"full\" alignment=\"center\" style=\"vc_box_rounded\"][/ult_animation_block][/vc_column_inner][/vc_row_inner][vc_separator color=\"custom\" accent_color=\"#039447\"][vc_row_inner content_placement=\"middle\" css=\".vc_custom_1692359246626{margin-top: 35px !important;}\"][vc_column_inner width=\"1/2\"][ult_animation_block animation=\"fadeInLeftBig\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][vc_single_image image=\"3279\" img_size=\"full\" alignment=\"center\" style=\"vc_box_rounded\"][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/2\"][ult_animation_block animation=\"fadeInRightBig\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][ultimate_heading main_heading=\"2016\" heading_tag=\"h3\" main_heading_color=\"#039447\" alignment=\"left\"]The year 2016 was another key milestone with the entry to the International Markets. FARMCHEMIE exported our first Feed Premix consignment to India and in 2018 our export operation was distinctly established as FARMCHEMIE MANUFACTURERS, a Board of Investment (BOI) approved entity.[/ultimate_heading][/ult_animation_block][/vc_column_inner][/vc_row_inner][vc_separator color=\"custom\" accent_color=\"#039447\"][vc_row_inner equal_height=\"yes\" content_placement=\"middle\" css=\".vc_custom_1692422601938{margin-top: 35px !important;}\"][vc_column_inner width=\"1/2\"][ult_animation_block animation=\"fadeInLeftBig\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][ultimate_heading main_heading=\"Fully automated manufacturing\" heading_tag=\"h3\" main_heading_color=\"#039447\" alignment=\"right\"]FARMCHEMIE MANUFACTURERS has invested in fully automated manufacturing facility from Bühler and became the first Sri Lankan owned company to obtain FAMI-QS International Quality Certification.[/ultimate_heading][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/2\"][ult_animation_block animation=\"fadeInRightBig\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][vc_single_image image=\"3280\" img_size=\"full\" alignment=\"center\" style=\"vc_box_rounded\"][/ult_animation_block][/vc_column_inner][/vc_row_inner][vc_separator color=\"custom\" accent_color=\"#039447\"][vc_row_inner equal_height=\"yes\" content_placement=\"middle\" css=\".vc_custom_1692359258634{margin-top: 35px !important;}\"][vc_column_inner width=\"1/2\"][ult_animation_block animation=\"fadeInLeftBig\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][vc_single_image image=\"3281\" img_size=\"full\" alignment=\"center\" style=\"vc_box_rounded\"][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/2\"][ult_animation_block animation=\"fadeInRightBig\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][ultimate_heading main_heading=\"Official toll manufacturer partner\" heading_tag=\"h3\" main_heading_color=\"#039447\" alignment=\"left\"]With the trust and reputation built as a reliable manufacturer of animal feed additives and supplements in the global market, several world-renowned international brands have appointed FARMCHEMIE MANUFACTURERS as the official toll manufacturer partner. FARMCHEMIE MANUFACTURERS exports a wide range of products consisting of premixes, specialty feed additives, oral liquid supplements and pet supplements to various markets in South Asia, East Asia, Middle East and Africa.\r\n\r\nFARMCHEMIE, FEED CHEMIE &amp; FARMCHEMIE MANUFACTURERS currently operate under the ownership of our holding company, DYVESTA.\r\n\r\nDYEVSTA has become the pinnacle of Animal Nutrition and Health.\r\n\r\nDYVESTA is Dynamic, through our continuous evolution, growth and progress. DYVESTA is Diverse, in terms of both our business strategy and our community. DYVESTA is Devoted to our valuable business partners through exceptional service.[/ultimate_heading][/ult_animation_block][/vc_column_inner][/vc_row_inner][vc_separator color=\"custom\" accent_color=\"#039447\"][/vc_column][/vc_row][vc_row full_width=\"stretch_row\" equal_height=\"yes\" bg_type=\"image\" parallax_style=\"vcpb-vz-jquery\" bg_image_new=\"id^3256|url^https://farmchemie.yasithawd.com/wp-content/uploads/2023/08/Vision-Mission.png|caption^null|alt^null|title^Vision-&amp;-Mission|description^null\" bg_image_repeat=\"no-repeat\" enable_overlay=\"enable_overlay_value\" overlay_color=\"#000000\" overlay_pattern=\"01.png\" overlay_pattern_opacity=\"5\" css=\".vc_custom_1692366072362{margin-top: 35px !important;padding-top: 65px !important;padding-bottom: 100px !important;}\"][vc_column][vc_row_inner equal_height=\"yes\"][vc_column_inner width=\"1/2\"][ult_animation_block animation=\"fadeInLeftBig\" animation_duration=\"2\" animation_delay=\"0\" animation_iteration_count=\"1\"][ultimate_heading main_heading=\"Vision\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\"]To be the customers’ first and best choice by ensuring outstanding satisfaction through a well-trained and dedicated team. Prompt and quality solutions to our customers’ requirements will determine the increase of return on investment for us.[/ultimate_heading][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/2\"][ult_animation_block animation=\"fadeInRightBig\" animation_duration=\"2\" animation_delay=\"0\" animation_iteration_count=\"1\"][ultimate_heading main_heading=\"Mission\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\"]To become a world renowned manufacturer of Animal Health products and a trusted partner among our stakeholders for our integrity as well as for providing effective solutions[/ultimate_heading][/ult_animation_block][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row css=\".vc_custom_1684836308288{margin-top: 15px !important;}\"][vc_column][ultimate_heading main_heading=\"Achievements\" main_heading_color=\"#762888\" main_heading_margin=\"margin-top:35px;\"][/ultimate_heading][vc_row_inner gap=\"20\"][vc_column_inner width=\"1/2\" css=\".vc_custom_1691995519863{background-color: #f4ab20 !important;border: 1px solid #f4ab20 !important;border-radius: 35px !important;}\"][ult_animation_block animation=\"fadeInLeftBig\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][bsf-info-box icon_type=\"custom\" icon_img=\"id^3117|url^https://farmchemie.yasithawd.com/wp-content/uploads/2023/08/Pink_-H.png|caption^null|alt^null|title^Pink_-H|description^null\" img_width=\"60\" icon_style=\"advanced\" icon_border_style=\"solid\" icon_color_border=\"#ffffff\" icon_border_size=\"1\" icon_border_radius=\"500\" icon_border_spacing=\"1\" title=\"First Free Sale Certificate obtained from Veterinary Drug Control Authority (VDCA) for Veterinary Pharmaceuticals\" title_font_style=\"font-weight:bold;\" title_font_size=\"desktop:20px;\"][/bsf-info-box][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/2\" css=\".vc_custom_1691995661095{background-color: #722f8b !important;border: 1px solid #722f8b !important;border-radius: 35px !important;}\"][ult_animation_block animation=\"fadeInRightBig\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][bsf-info-box icon_type=\"custom\" icon_img=\"id^3117|url^https://farmchemie.yasithawd.com/wp-content/uploads/2023/08/Pink_-H.png|caption^null|alt^null|title^Pink_-H|description^null\" img_width=\"60\" icon_style=\"advanced\" icon_border_style=\"solid\" icon_color_border=\"#ffffff\" icon_border_size=\"1\" icon_border_radius=\"500\" icon_border_spacing=\"1\" title=\"First ISO 9001: 2015 ,WHO-GMP Quality Management systems certified Animal Health company in Sri Lanka since August, 2012\" title_font_style=\"font-weight:bold;\" title_font_color=\"#ffffff\" title_font_size=\"desktop:20px;\"][/bsf-info-box][/ult_animation_block][/vc_column_inner][/vc_row_inner][vc_row_inner gap=\"20\"][vc_column_inner width=\"1/2\" css=\".vc_custom_1691995661095{background-color: #722f8b !important;border: 1px solid #722f8b !important;border-radius: 35px !important;}\"][ult_animation_block animation=\"fadeInLeftBig\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][bsf-info-box icon_type=\"custom\" icon_img=\"id^3117|url^https://farmchemie.yasithawd.com/wp-content/uploads/2023/08/Pink_-H.png|caption^null|alt^null|title^Pink_-H|description^null\" img_width=\"60\" icon_style=\"advanced\" icon_border_style=\"solid\" icon_color_border=\"#ffffff\" icon_border_size=\"1\" icon_border_radius=\"500\" icon_border_spacing=\"1\" title=\"First FAMI-QS certified company in sri lanka\" title_font_style=\"font-weight:bold;\" title_font_color=\"#ffffff\" title_font_size=\"desktop:20px;\"][/bsf-info-box][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/2\" css=\".vc_custom_1691995519863{background-color: #f4ab20 !important;border: 1px solid #f4ab20 !important;border-radius: 35px !important;}\"][ult_animation_block animation=\"fadeInRightBig\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][bsf-info-box icon_type=\"custom\" icon_img=\"id^3117|url^https://farmchemie.yasithawd.com/wp-content/uploads/2023/08/Pink_-H.png|caption^null|alt^null|title^Pink_-H|description^null\" img_width=\"60\" icon_style=\"advanced\" icon_border_style=\"solid\" icon_color_border=\"#ffffff\" icon_border_size=\"1\" icon_border_radius=\"500\" icon_border_spacing=\"1\" title=\"First Certificate of Ethical Trading certified in Livestock industry\" title_font_style=\"font-weight:bold;\" title_font_size=\"desktop:20px;\"][/bsf-info-box][/ult_animation_block][/vc_column_inner][/vc_row_inner][vc_row_inner gap=\"20\"][vc_column_inner width=\"1/4\" css=\".vc_custom_1691996718116{border-radius: 35px !important;}\"][/vc_column_inner][vc_column_inner width=\"2/4\" css=\".vc_custom_1691995519863{background-color: #f4ab20 !important;border: 1px solid #f4ab20 !important;border-radius: 35px !important;}\"][ult_animation_block animation=\"fadeInUpBig\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][bsf-info-box icon_type=\"custom\" icon_img=\"id^3117|url^https://farmchemie.yasithawd.com/wp-content/uploads/2023/08/Pink_-H.png|caption^null|alt^null|title^Pink_-H|description^null\" img_width=\"60\" icon_style=\"advanced\" icon_border_style=\"solid\" icon_color_border=\"#ffffff\" icon_border_size=\"1\" icon_border_radius=\"500\" icon_border_spacing=\"1\" title=\"First Silver awarded company at National Exports Awards in Livestock industry\" title_font_style=\"font-weight:bold;\" title_font_size=\"desktop:20px;\"][/bsf-info-box][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/4\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row full_width=\"stretch_row\" equal_height=\"yes\" content_placement=\"bottom\" css=\".vc_custom_1693627699480{margin-top: 15px !important;}\"][vc_column][ultimate_heading main_heading=\"Certifications\" main_heading_color=\"#762888\" main_heading_margin=\"margin-top:35px;\"][/ultimate_heading][vc_row_inner content_placement=\"bottom\"][vc_column_inner width=\"1/6\"][dt_fancy_image image_id=\"3407\" width=\"300\" caption=\"off\"][/vc_column_inner][vc_column_inner width=\"1/6\"][dt_fancy_image image_id=\"3408\" width=\"300\" caption=\"off\"][/vc_column_inner][vc_column_inner width=\"1/6\"][dt_fancy_image image_id=\"3409\" width=\"300\" caption=\"off\"][/vc_column_inner][vc_column_inner width=\"1/6\"][dt_fancy_image image_id=\"3411\" width=\"300\" caption=\"off\"][/vc_column_inner][vc_column_inner width=\"1/6\"][dt_fancy_image image_id=\"3410\" width=\"300\" caption=\"off\"][/vc_column_inner][vc_column_inner width=\"1/6\"][dt_fancy_image image_id=\"3406\" width=\"300\" caption=\"off\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row full_width=\"stretch_row\" equal_height=\"yes\" content_placement=\"bottom\" css=\".vc_custom_1693625624233{margin-top: 15px !important;}\"][vc_column][ultimate_heading main_heading=\"Awards\" main_heading_color=\"#762888\" main_heading_margin=\"margin-top:35px;\"][/ultimate_heading][ultimate_carousel slide_to_scroll=\"single\"][dt_fancy_image image_id=\"3412\" width=\"300\"][dt_fancy_image image_id=\"3413\" width=\"300\" caption=\"off\"][dt_fancy_image image_id=\"3414\" width=\"300\" caption=\"off\"][dt_fancy_image image_id=\"3415\" width=\"300\" caption=\"off\"][dt_fancy_image image_id=\"3416\" width=\"300\" caption=\"off\"][dt_fancy_image image_id=\"3417\" width=\"300\" caption=\"off\"][dt_fancy_image image_id=\"3418\" width=\"300\" caption=\"off\"][dt_fancy_image image_id=\"3420\" width=\"300\" caption=\"off\"][dt_fancy_image image_id=\"3419\" width=\"300\" caption=\"off\"][dt_fancy_image image_id=\"3422\" width=\"300\" caption=\"off\"][dt_fancy_image image_id=\"3421\" width=\"300\" caption=\"off\"][dt_fancy_image image_id=\"3422\" width=\"300\" caption=\"off\"][dt_fancy_image image_id=\"3423\" width=\"300\" caption=\"off\"][dt_fancy_image image_id=\"3424\" width=\"300\" caption=\"off\"][dt_fancy_image image_id=\"3425\" width=\"300\" caption=\"off\"][/ultimate_carousel][/vc_column][/vc_row][vc_row css=\".vc_custom_1693625068958{margin-top: 15px !important;}\"][vc_column][ultimate_heading main_heading=\"Board Of Directors\" main_heading_color=\"#762888\" main_heading_margin=\"margin-top:35px;margin-bottom:35px;\"][/ultimate_heading][ultimate_carousel slides_on_desk=\"3\" slides_on_mob=\"1\" arrow_style=\"square-bg\" arrow_bg_color=\"#039447\" arrow_color=\"#ffffff\" next_icon=\"ultsl-arrow-right6\" prev_icon=\"ultsl-arrow-left6\" dots_color=\"#039447\" item_animation=\"fadeIn\"][vc_row_inner][vc_column_inner][dt_fancy_image image_id=\"3173\" width=\"300\" border_radius=\"1px\" caption=\"off\"][ultimate_heading main_heading=\"Quisque sed nibh tristique\" heading_tag=\"h3\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;\"]Duis lorem risus, aliquet a auctor a, venenatis in dui. Praesent et eros et risus dapibus placerat hendrerit cursus magna.[/ultimate_heading][ultimate_modal modal_title=\"Read more\" btn_size=\"md\" btn_bg_color=\"#089548\" btn_text=\"Read more\" overlay_bg_opacity=\"0\" img_size=\"80\" btn_txt_color=\"#ffffff\"]pretium mauris pretium mauris pretium mauris pretium mauris pretium mauris pretium mauris pretium mauris pretium mauris pretium mauris pretium mauris pretium mauris pretium mauris pretium mauris pretium mauris pretium mauris pretium mauris pretium mauris pretium mauris pretium mauris pretium mauris pretium mauris pretium mauris pretium mauris pretium mauris pretium mauris pretium mauris pretium mauris pretium mauris[/ultimate_modal][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner][dt_fancy_image image_id=\"3170\" width=\"300\" border_radius=\"1px\" caption=\"off\"][ultimate_heading main_heading=\"Quisque sed nibh tristique\" heading_tag=\"h3\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;\"]Duis lorem risus, aliquet a auctor a, venenatis in dui. Praesent et eros et risus dapibus placerat hendrerit cursus magna.[/ultimate_heading][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner][dt_fancy_image image_id=\"3171\" width=\"300\" border_radius=\"1px\" caption=\"off\"][ultimate_heading main_heading=\"Quisque sed nibh tristique\" heading_tag=\"h3\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;\"]Duis lorem risus, aliquet a auctor a, venenatis in dui. Praesent et eros et risus dapibus placerat hendrerit cursus magna.[/ultimate_heading][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner][dt_fancy_image image_id=\"3172\" width=\"300\" border_radius=\"1px\" caption=\"off\"][ultimate_heading main_heading=\"Quisque sed nibh tristique\" heading_tag=\"h3\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;\"]Duis lorem risus, aliquet a auctor a, venenatis in dui. Praesent et eros et risus dapibus placerat hendrerit cursus magna.[/ultimate_heading][/vc_column_inner][/vc_row_inner][/ultimate_carousel][/vc_column][/vc_row][vc_row disable_element=\"yes\"][vc_column][ultimate_heading main_heading=\"Board Of Directors\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;margin-bottom:35px;\"][/ultimate_heading][vc_row_inner][vc_column_inner width=\"1/3\"][ult_animation_block animation=\"fadeInUp\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][dt_fancy_image image_id=\"3172\" width=\"300\" border_radius=\"1px\" caption=\"off\" css=\".vc_custom_1692278922309{border-top-width: 1px !important;border-right-width: 1px !important;border-bottom-width: 1px !important;border-left-width: 1px !important;border-left-color: #059444 !important;border-left-style: solid !important;border-right-color: #059444 !important;border-right-style: solid !important;border-top-color: #059444 !important;border-top-style: solid !important;border-bottom-color: #059444 !important;border-bottom-style: solid !important;border-radius: 1px !important;}\"][ultimate_heading main_heading=\"Quisque sed nibh tristique\" heading_tag=\"h3\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;\"]\r\n<ul>\r\n 	<li>Duis lorem risus, aliquet a auctor a, venenatis in dui. Praesent et eros et risus dapibus placerat hendrerit cursus magna.</li>\r\n 	<li>Praesent et eros et risus dapibus placerat hendrerit cursus magna.</li>\r\n 	<li>aliquet a auctor a, venenatis in dui.</li>\r\n</ul>\r\n[/ultimate_heading][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/3\"][ult_animation_block animation=\"fadeInDown\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][dt_fancy_image image_id=\"3171\" width=\"300\" border_radius=\"1px\" caption=\"off\" css=\".vc_custom_1692278929158{border-top-width: 1px !important;border-right-width: 1px !important;border-bottom-width: 1px !important;border-left-width: 1px !important;border-left-color: #059444 !important;border-left-style: solid !important;border-right-color: #059444 !important;border-right-style: solid !important;border-top-color: #059444 !important;border-top-style: solid !important;border-bottom-color: #059444 !important;border-bottom-style: solid !important;border-radius: 1px !important;}\"][ultimate_heading main_heading=\"Quisque sed nibh tristique\" heading_tag=\"h3\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;\"]\r\n<ul>\r\n 	<li>Duis lorem risus, aliquet a auctor a, venenatis in dui. Praesent et eros et risus dapibus placerat hendrerit cursus magna.</li>\r\n 	<li>Praesent et eros et risus dapibus placerat hendrerit cursus magna.</li>\r\n 	<li>aliquet a auctor a, venenatis in dui.</li>\r\n</ul>\r\n[/ultimate_heading][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/3\"][ult_animation_block animation=\"fadeInUp\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][dt_fancy_image image_id=\"3170\" width=\"300\" border_radius=\"1px\" caption=\"off\" css=\".vc_custom_1692278936750{border-top-width: 1px !important;border-right-width: 1px !important;border-bottom-width: 1px !important;border-left-width: 1px !important;border-left-color: #059444 !important;border-left-style: solid !important;border-right-color: #059444 !important;border-right-style: solid !important;border-top-color: #059444 !important;border-top-style: solid !important;border-bottom-color: #059444 !important;border-bottom-style: solid !important;border-radius: 1px !important;}\"][ultimate_heading main_heading=\"Quisque sed nibh tristique\" heading_tag=\"h3\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;\"]\r\n<ul>\r\n 	<li>Duis lorem risus, aliquet a auctor a, venenatis in dui. Praesent et eros et risus dapibus placerat hendrerit cursus magna.</li>\r\n 	<li>Praesent et eros et risus dapibus placerat hendrerit cursus magna.</li>\r\n 	<li>aliquet a auctor a, venenatis in dui.</li>\r\n</ul>\r\n[/ultimate_heading][/ult_animation_block][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row disable_element=\"yes\"][vc_column][ultimate_heading main_heading=\"Executive Directors\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;margin-bottom:35px;\"][/ultimate_heading][vc_row_inner][vc_column_inner width=\"1/5\"][ult_animation_block animation=\"fadeInUp\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][dt_fancy_image image_id=\"3172\" width=\"300\" border_radius=\"1px\" caption=\"off\" css=\".vc_custom_1692278922309{border-top-width: 1px !important;border-right-width: 1px !important;border-bottom-width: 1px !important;border-left-width: 1px !important;border-left-color: #059444 !important;border-left-style: solid !important;border-right-color: #059444 !important;border-right-style: solid !important;border-top-color: #059444 !important;border-top-style: solid !important;border-bottom-color: #059444 !important;border-bottom-style: solid !important;border-radius: 1px !important;}\"][ultimate_heading main_heading=\"Quisque sed nibh tristique\" heading_tag=\"h3\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;\"]\r\n<ul>\r\n 	<li>Duis lorem risus, aliquet a auctor a, venenatis in dui. Praesent et eros et risus dapibus placerat hendrerit cursus magna.</li>\r\n 	<li>Praesent et eros et risus dapibus placerat hendrerit cursus magna.</li>\r\n 	<li>aliquet a auctor a, venenatis in dui.</li>\r\n</ul>\r\n[/ultimate_heading][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/5\"][ult_animation_block animation=\"fadeInDown\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][dt_fancy_image image_id=\"3171\" width=\"300\" border_radius=\"1px\" caption=\"off\" css=\".vc_custom_1692278929158{border-top-width: 1px !important;border-right-width: 1px !important;border-bottom-width: 1px !important;border-left-width: 1px !important;border-left-color: #059444 !important;border-left-style: solid !important;border-right-color: #059444 !important;border-right-style: solid !important;border-top-color: #059444 !important;border-top-style: solid !important;border-bottom-color: #059444 !important;border-bottom-style: solid !important;border-radius: 1px !important;}\"][ultimate_heading main_heading=\"Quisque sed nibh tristique\" heading_tag=\"h3\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;\"]\r\n<ul>\r\n 	<li>Duis lorem risus, aliquet a auctor a, venenatis in dui. Praesent et eros et risus dapibus placerat hendrerit cursus magna.</li>\r\n 	<li>Praesent et eros et risus dapibus placerat hendrerit cursus magna.</li>\r\n 	<li>aliquet a auctor a, venenatis in dui.</li>\r\n</ul>\r\n[/ultimate_heading][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/5\"][ult_animation_block animation=\"fadeInUp\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][dt_fancy_image image_id=\"3170\" width=\"300\" border_radius=\"1px\" caption=\"off\" css=\".vc_custom_1692278936750{border-top-width: 1px !important;border-right-width: 1px !important;border-bottom-width: 1px !important;border-left-width: 1px !important;border-left-color: #059444 !important;border-left-style: solid !important;border-right-color: #059444 !important;border-right-style: solid !important;border-top-color: #059444 !important;border-top-style: solid !important;border-bottom-color: #059444 !important;border-bottom-style: solid !important;border-radius: 1px !important;}\"][ultimate_heading main_heading=\"Quisque sed nibh tristique\" heading_tag=\"h3\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;\"]\r\n<ul>\r\n 	<li>Duis lorem risus, aliquet a auctor a, venenatis in dui. Praesent et eros et risus dapibus placerat hendrerit cursus magna.</li>\r\n 	<li>Praesent et eros et risus dapibus placerat hendrerit cursus magna.</li>\r\n 	<li>aliquet a auctor a, venenatis in dui.</li>\r\n</ul>\r\n[/ultimate_heading][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/5\"][ult_animation_block animation=\"fadeInDown\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][dt_fancy_image image_id=\"3170\" width=\"300\" border_radius=\"1px\" caption=\"off\" css=\".vc_custom_1692278936750{border-top-width: 1px !important;border-right-width: 1px !important;border-bottom-width: 1px !important;border-left-width: 1px !important;border-left-color: #059444 !important;border-left-style: solid !important;border-right-color: #059444 !important;border-right-style: solid !important;border-top-color: #059444 !important;border-top-style: solid !important;border-bottom-color: #059444 !important;border-bottom-style: solid !important;border-radius: 1px !important;}\"][ultimate_heading main_heading=\"Quisque sed nibh tristique\" heading_tag=\"h3\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;\"]\r\n<ul>\r\n 	<li>Duis lorem risus, aliquet a auctor a, venenatis in dui. Praesent et eros et risus dapibus placerat hendrerit cursus magna.</li>\r\n 	<li>Praesent et eros et risus dapibus placerat hendrerit cursus magna.</li>\r\n 	<li>aliquet a auctor a, venenatis in dui.</li>\r\n</ul>\r\n[/ultimate_heading][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/5\"][ult_animation_block animation=\"fadeInDown\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][dt_fancy_image image_id=\"3171\" width=\"300\" border_radius=\"1px\" caption=\"off\" css=\".vc_custom_1692278929158{border-top-width: 1px !important;border-right-width: 1px !important;border-bottom-width: 1px !important;border-left-width: 1px !important;border-left-color: #059444 !important;border-left-style: solid !important;border-right-color: #059444 !important;border-right-style: solid !important;border-top-color: #059444 !important;border-top-style: solid !important;border-bottom-color: #059444 !important;border-bottom-style: solid !important;border-radius: 1px !important;}\"][ultimate_heading main_heading=\"Quisque sed nibh tristique\" heading_tag=\"h3\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;\"]\r\n<ul>\r\n 	<li>Duis lorem risus, aliquet a auctor a, venenatis in dui. Praesent et eros et risus dapibus placerat hendrerit cursus magna.</li>\r\n 	<li>Praesent et eros et risus dapibus placerat hendrerit cursus magna.</li>\r\n 	<li>aliquet a auctor a, venenatis in dui.</li>\r\n</ul>\r\n[/ultimate_heading][/ult_animation_block][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner width=\"2/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row disable_element=\"yes\"][vc_column][ultimate_heading main_heading=\"Next Generation\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;margin-bottom:35px;\"][/ultimate_heading][vc_row_inner][vc_column_inner width=\"1/2\"][ult_animation_block animation=\"fadeInUp\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][dt_fancy_image image_id=\"3172\" width=\"300\" border_radius=\"1px\" caption=\"off\" css=\".vc_custom_1692278922309{border-top-width: 1px !important;border-right-width: 1px !important;border-bottom-width: 1px !important;border-left-width: 1px !important;border-left-color: #059444 !important;border-left-style: solid !important;border-right-color: #059444 !important;border-right-style: solid !important;border-top-color: #059444 !important;border-top-style: solid !important;border-bottom-color: #059444 !important;border-bottom-style: solid !important;border-radius: 1px !important;}\"][ultimate_heading main_heading=\"Quisque sed nibh tristique\" heading_tag=\"h3\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;\"]\r\n<ul>\r\n 	<li>Duis lorem risus, aliquet a auctor a, venenatis in dui. Praesent et eros et risus dapibus placerat hendrerit cursus magna.</li>\r\n 	<li>Praesent et eros et risus dapibus placerat hendrerit cursus magna.</li>\r\n 	<li>aliquet a auctor a, venenatis in dui.</li>\r\n</ul>\r\n[/ultimate_heading][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/2\"][ult_animation_block animation=\"fadeInDown\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][dt_fancy_image image_id=\"3171\" width=\"300\" border_radius=\"1px\" caption=\"off\" css=\".vc_custom_1692278929158{border-top-width: 1px !important;border-right-width: 1px !important;border-bottom-width: 1px !important;border-left-width: 1px !important;border-left-color: #059444 !important;border-left-style: solid !important;border-right-color: #059444 !important;border-right-style: solid !important;border-top-color: #059444 !important;border-top-style: solid !important;border-bottom-color: #059444 !important;border-bottom-style: solid !important;border-radius: 1px !important;}\"][ultimate_heading main_heading=\"Quisque sed nibh tristique\" heading_tag=\"h3\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;\"]\r\n<ul>\r\n 	<li>Duis lorem risus, aliquet a auctor a, venenatis in dui. Praesent et eros et risus dapibus placerat hendrerit cursus magna.</li>\r\n 	<li>Praesent et eros et risus dapibus placerat hendrerit cursus magna.</li>\r\n 	<li>aliquet a auctor a, venenatis in dui.</li>\r\n</ul>\r\n[/ultimate_heading][/ult_animation_block][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row]','About us','','inherit','closed','closed','','2917-revision-v1','','','2023-09-12 13:53:05','2023-09-12 13:53:05','',2917,'https://farmchemie.yasithawd.com/?p=3562',0,'revision','',0),(3563,1,'2023-09-12 13:57:34','2023-09-12 13:57:34','[vc_row full_width=\"stretch_row_content_no_spaces\"][vc_column][ultimate_heading main_heading=\"Our History\" main_heading_color=\"#762888\"][/ultimate_heading][/vc_column][/vc_row][vc_row][vc_column][vc_row_inner equal_height=\"yes\" content_placement=\"middle\" css=\".vc_custom_1692359205466{margin-top: 35px !important;}\"][vc_column_inner width=\"1/2\"][ult_animation_block animation=\"fadeInLeftBig\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][vc_single_image image=\"3273\" img_size=\"full\" alignment=\"center\" style=\"vc_box_rounded\"][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/2\"][ult_animation_block animation=\"fadeInRightBig\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][ultimate_heading main_heading=\"Founded in 2002\" heading_tag=\"h3\" main_heading_color=\"#039447\" alignment=\"left\" sub_heading_font_size=\"desktop:18px;\"]Founded in 2002 by Mr. Uditha Wanigasinghe, an agriculturist who had a mission to aid valuable livestock producers in the country to enhance the yield and profitability of production. FARMCHEMIE introduced unprecedented solutions and consistent technical services to gain our customers’ trust and became the market leader in animal health products in 2006 within just four years.[/ultimate_heading][/ult_animation_block][/vc_column_inner][/vc_row_inner][vc_separator color=\"custom\" accent_color=\"#039447\"][vc_row_inner equal_height=\"yes\" rtl_reverse=\"yes\" content_placement=\"middle\" css=\".vc_custom_1692359216075{margin-top: 35px !important;}\"][vc_column_inner width=\"1/2\"][ult_animation_block animation=\"fadeInLeftBig\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][ultimate_heading main_heading=\"2006\" heading_tag=\"h3\" main_heading_color=\"#039447\" alignment=\"right\"]In 2006, the Sri Lankan poultry industry was affected with Avian Influenza which became a difficult period for the growth of FARMCHEMIE. This was the key factor in our decision to diversify into Agro Products. PLANTCHEM &amp; PLANTSEEDS were established to offer solutions in Agro specialty fertilizers, pesticides and seeds to invaluable cultivators.[/ultimate_heading][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/2\"][ult_animation_block animation=\"fadeInRightBig\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][vc_single_image image=\"3276\" img_size=\"full\" alignment=\"center\" style=\"vc_box_rounded\"][/ult_animation_block][/vc_column_inner][/vc_row_inner][vc_separator color=\"custom\" accent_color=\"#039447\"][vc_row_inner equal_height=\"yes\" content_placement=\"middle\" css=\".vc_custom_1692359231594{margin-top: 35px !important;}\"][vc_column_inner width=\"1/2\"][ult_animation_block animation=\"fadeInLeftBig\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][vc_single_image image=\"3277\" img_size=\"full\" alignment=\"center\" style=\"vc_box_rounded\"][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/2\"][ult_animation_block animation=\"fadeInRightBig\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][ultimate_heading main_heading=\"2010\" heading_tag=\"h3\" main_heading_color=\"#039447\" alignment=\"left\"]In 2010, FEED CHEMIE became the subsequent addition to ever-growing vision of Mr. Uditha Wanigasinghe and entered the Animal Feed Additives market.[/ultimate_heading][/ult_animation_block][/vc_column_inner][/vc_row_inner][vc_separator color=\"custom\" accent_color=\"#039447\"][vc_row_inner equal_height=\"yes\" rtl_reverse=\"yes\" content_placement=\"middle\" css=\".vc_custom_1692359239274{margin-top: 35px !important;}\"][vc_column_inner width=\"1/2\"][ult_animation_block animation=\"fadeInLeftBig\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][ultimate_heading main_heading=\"2012\" heading_tag=\"h3\" main_heading_color=\"#039447\" alignment=\"right\"]The year 2012 is described as a turning point in our journey as FARMCHEMIE established our first production facility for the manufacturing and packing of animal health products. FARMCHEMIE became the first animal health organization in Sri Lanka to obtain ISO 9001:2015 and WHO GMP International Quality Certification. With our own formulation unit, FARMCHEMIE was able to offer customized solutions to cater the needs of the Sri Lankan Livestock Industry.[/ultimate_heading][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/2\"][ult_animation_block animation=\"fadeInRightBig\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][vc_single_image image=\"3278\" img_size=\"full\" alignment=\"center\" style=\"vc_box_rounded\"][/ult_animation_block][/vc_column_inner][/vc_row_inner][vc_separator color=\"custom\" accent_color=\"#039447\"][vc_row_inner content_placement=\"middle\" css=\".vc_custom_1692359246626{margin-top: 35px !important;}\"][vc_column_inner width=\"1/2\"][ult_animation_block animation=\"fadeInLeftBig\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][vc_single_image image=\"3279\" img_size=\"full\" alignment=\"center\" style=\"vc_box_rounded\"][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/2\"][ult_animation_block animation=\"fadeInRightBig\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][ultimate_heading main_heading=\"2016\" heading_tag=\"h3\" main_heading_color=\"#039447\" alignment=\"left\"]The year 2016 was another key milestone with the entry to the International Markets. FARMCHEMIE exported our first Feed Premix consignment to India and in 2018 our export operation was distinctly established as FARMCHEMIE MANUFACTURERS, a Board of Investment (BOI) approved entity.[/ultimate_heading][/ult_animation_block][/vc_column_inner][/vc_row_inner][vc_separator color=\"custom\" accent_color=\"#039447\"][vc_row_inner equal_height=\"yes\" content_placement=\"middle\" css=\".vc_custom_1692422601938{margin-top: 35px !important;}\"][vc_column_inner width=\"1/2\"][ult_animation_block animation=\"fadeInLeftBig\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][ultimate_heading main_heading=\"Fully automated manufacturing\" heading_tag=\"h3\" main_heading_color=\"#039447\" alignment=\"right\"]FARMCHEMIE MANUFACTURERS has invested in fully automated manufacturing facility from Bühler and became the first Sri Lankan owned company to obtain FAMI-QS International Quality Certification.[/ultimate_heading][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/2\"][ult_animation_block animation=\"fadeInRightBig\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][vc_single_image image=\"3280\" img_size=\"full\" alignment=\"center\" style=\"vc_box_rounded\"][/ult_animation_block][/vc_column_inner][/vc_row_inner][vc_separator color=\"custom\" accent_color=\"#039447\"][vc_row_inner equal_height=\"yes\" content_placement=\"middle\" css=\".vc_custom_1692359258634{margin-top: 35px !important;}\"][vc_column_inner width=\"1/2\"][ult_animation_block animation=\"fadeInLeftBig\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][vc_single_image image=\"3281\" img_size=\"full\" alignment=\"center\" style=\"vc_box_rounded\"][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/2\"][ult_animation_block animation=\"fadeInRightBig\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][ultimate_heading main_heading=\"Official toll manufacturer partner\" heading_tag=\"h3\" main_heading_color=\"#039447\" alignment=\"left\"]With the trust and reputation built as a reliable manufacturer of animal feed additives and supplements in the global market, several world-renowned international brands have appointed FARMCHEMIE MANUFACTURERS as the official toll manufacturer partner. FARMCHEMIE MANUFACTURERS exports a wide range of products consisting of premixes, specialty feed additives, oral liquid supplements and pet supplements to various markets in South Asia, East Asia, Middle East and Africa.\r\n\r\nFARMCHEMIE, FEED CHEMIE &amp; FARMCHEMIE MANUFACTURERS currently operate under the ownership of our holding company, DYVESTA.\r\n\r\nDYEVSTA has become the pinnacle of Animal Nutrition and Health.\r\n\r\nDYVESTA is Dynamic, through our continuous evolution, growth and progress. DYVESTA is Diverse, in terms of both our business strategy and our community. DYVESTA is Devoted to our valuable business partners through exceptional service.[/ultimate_heading][/ult_animation_block][/vc_column_inner][/vc_row_inner][vc_separator color=\"custom\" accent_color=\"#039447\"][/vc_column][/vc_row][vc_row full_width=\"stretch_row\" equal_height=\"yes\" bg_type=\"image\" parallax_style=\"vcpb-vz-jquery\" bg_image_new=\"id^3256|url^https://farmchemie.yasithawd.com/wp-content/uploads/2023/08/Vision-Mission.png|caption^null|alt^null|title^Vision-&amp;-Mission|description^null\" bg_image_repeat=\"no-repeat\" enable_overlay=\"enable_overlay_value\" overlay_color=\"#000000\" overlay_pattern=\"01.png\" overlay_pattern_opacity=\"5\" css=\".vc_custom_1692366072362{margin-top: 35px !important;padding-top: 65px !important;padding-bottom: 100px !important;}\"][vc_column][vc_row_inner equal_height=\"yes\"][vc_column_inner width=\"1/2\"][ult_animation_block animation=\"fadeInLeftBig\" animation_duration=\"2\" animation_delay=\"0\" animation_iteration_count=\"1\"][ultimate_heading main_heading=\"Vision\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\"]To be the customers’ first and best choice by ensuring outstanding satisfaction through a well-trained and dedicated team. Prompt and quality solutions to our customers’ requirements will determine the increase of return on investment for us.[/ultimate_heading][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/2\"][ult_animation_block animation=\"fadeInRightBig\" animation_duration=\"2\" animation_delay=\"0\" animation_iteration_count=\"1\"][ultimate_heading main_heading=\"Mission\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\"]To become a world renowned manufacturer of Animal Health products and a trusted partner among our stakeholders for our integrity as well as for providing effective solutions[/ultimate_heading][/ult_animation_block][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row css=\".vc_custom_1684836308288{margin-top: 15px !important;}\"][vc_column][ultimate_heading main_heading=\"Achievements\" main_heading_color=\"#762888\" main_heading_margin=\"margin-top:35px;\"][/ultimate_heading][vc_row_inner gap=\"20\"][vc_column_inner width=\"1/2\" css=\".vc_custom_1691995519863{background-color: #f4ab20 !important;border: 1px solid #f4ab20 !important;border-radius: 35px !important;}\"][ult_animation_block animation=\"fadeInLeftBig\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][bsf-info-box icon_type=\"custom\" icon_img=\"id^3117|url^https://farmchemie.yasithawd.com/wp-content/uploads/2023/08/Pink_-H.png|caption^null|alt^null|title^Pink_-H|description^null\" img_width=\"60\" icon_style=\"advanced\" icon_border_style=\"solid\" icon_color_border=\"#ffffff\" icon_border_size=\"1\" icon_border_radius=\"500\" icon_border_spacing=\"1\" title=\"First Free Sale Certificate obtained from Veterinary Drug Control Authority (VDCA) for Veterinary Pharmaceuticals\" title_font_style=\"font-weight:bold;\" title_font_size=\"desktop:20px;\"][/bsf-info-box][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/2\" css=\".vc_custom_1691995661095{background-color: #722f8b !important;border: 1px solid #722f8b !important;border-radius: 35px !important;}\"][ult_animation_block animation=\"fadeInRightBig\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][bsf-info-box icon_type=\"custom\" icon_img=\"id^3117|url^https://farmchemie.yasithawd.com/wp-content/uploads/2023/08/Pink_-H.png|caption^null|alt^null|title^Pink_-H|description^null\" img_width=\"60\" icon_style=\"advanced\" icon_border_style=\"solid\" icon_color_border=\"#ffffff\" icon_border_size=\"1\" icon_border_radius=\"500\" icon_border_spacing=\"1\" title=\"First ISO 9001: 2015 ,WHO-GMP Quality Management systems certified Animal Health company in Sri Lanka since August, 2012\" title_font_style=\"font-weight:bold;\" title_font_color=\"#ffffff\" title_font_size=\"desktop:20px;\"][/bsf-info-box][/ult_animation_block][/vc_column_inner][/vc_row_inner][vc_row_inner gap=\"20\"][vc_column_inner width=\"1/2\" css=\".vc_custom_1691995661095{background-color: #722f8b !important;border: 1px solid #722f8b !important;border-radius: 35px !important;}\"][ult_animation_block animation=\"fadeInLeftBig\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][bsf-info-box icon_type=\"custom\" icon_img=\"id^3117|url^https://farmchemie.yasithawd.com/wp-content/uploads/2023/08/Pink_-H.png|caption^null|alt^null|title^Pink_-H|description^null\" img_width=\"60\" icon_style=\"advanced\" icon_border_style=\"solid\" icon_color_border=\"#ffffff\" icon_border_size=\"1\" icon_border_radius=\"500\" icon_border_spacing=\"1\" title=\"First FAMI-QS certified company in sri lanka\" title_font_style=\"font-weight:bold;\" title_font_color=\"#ffffff\" title_font_size=\"desktop:20px;\"][/bsf-info-box][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/2\" css=\".vc_custom_1691995519863{background-color: #f4ab20 !important;border: 1px solid #f4ab20 !important;border-radius: 35px !important;}\"][ult_animation_block animation=\"fadeInRightBig\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][bsf-info-box icon_type=\"custom\" icon_img=\"id^3117|url^https://farmchemie.yasithawd.com/wp-content/uploads/2023/08/Pink_-H.png|caption^null|alt^null|title^Pink_-H|description^null\" img_width=\"60\" icon_style=\"advanced\" icon_border_style=\"solid\" icon_color_border=\"#ffffff\" icon_border_size=\"1\" icon_border_radius=\"500\" icon_border_spacing=\"1\" title=\"First Certificate of Ethical Trading certified in Livestock industry\" title_font_style=\"font-weight:bold;\" title_font_size=\"desktop:20px;\"][/bsf-info-box][/ult_animation_block][/vc_column_inner][/vc_row_inner][vc_row_inner gap=\"20\"][vc_column_inner width=\"1/4\" css=\".vc_custom_1691996718116{border-radius: 35px !important;}\"][/vc_column_inner][vc_column_inner width=\"2/4\" css=\".vc_custom_1691995519863{background-color: #f4ab20 !important;border: 1px solid #f4ab20 !important;border-radius: 35px !important;}\"][ult_animation_block animation=\"fadeInUpBig\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][bsf-info-box icon_type=\"custom\" icon_img=\"id^3117|url^https://farmchemie.yasithawd.com/wp-content/uploads/2023/08/Pink_-H.png|caption^null|alt^null|title^Pink_-H|description^null\" img_width=\"60\" icon_style=\"advanced\" icon_border_style=\"solid\" icon_color_border=\"#ffffff\" icon_border_size=\"1\" icon_border_radius=\"500\" icon_border_spacing=\"1\" title=\"First Silver awarded company at National Exports Awards in Livestock industry\" title_font_style=\"font-weight:bold;\" title_font_size=\"desktop:20px;\"][/bsf-info-box][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/4\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row full_width=\"stretch_row\" equal_height=\"yes\" content_placement=\"bottom\" css=\".vc_custom_1693627699480{margin-top: 15px !important;}\"][vc_column][ultimate_heading main_heading=\"Certifications\" main_heading_color=\"#762888\" main_heading_margin=\"margin-top:35px;\"][/ultimate_heading][vc_row_inner content_placement=\"bottom\"][vc_column_inner width=\"1/6\"][dt_fancy_image image_id=\"3407\" width=\"300\" caption=\"off\"][/vc_column_inner][vc_column_inner width=\"1/6\"][dt_fancy_image image_id=\"3408\" width=\"300\" caption=\"off\"][/vc_column_inner][vc_column_inner width=\"1/6\"][dt_fancy_image image_id=\"3409\" width=\"300\" caption=\"off\"][/vc_column_inner][vc_column_inner width=\"1/6\"][dt_fancy_image image_id=\"3411\" width=\"300\" caption=\"off\"][/vc_column_inner][vc_column_inner width=\"1/6\"][dt_fancy_image image_id=\"3410\" width=\"300\" caption=\"off\"][/vc_column_inner][vc_column_inner width=\"1/6\"][dt_fancy_image image_id=\"3406\" width=\"300\" caption=\"off\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row full_width=\"stretch_row\" equal_height=\"yes\" content_placement=\"bottom\" css=\".vc_custom_1693625624233{margin-top: 15px !important;}\"][vc_column][ultimate_heading main_heading=\"Awards\" main_heading_color=\"#762888\" main_heading_margin=\"margin-top:35px;\"][/ultimate_heading][ultimate_carousel slide_to_scroll=\"single\"][dt_fancy_image image_id=\"3412\" width=\"300\"][dt_fancy_image image_id=\"3413\" width=\"300\" caption=\"off\"][dt_fancy_image image_id=\"3414\" width=\"300\" caption=\"off\"][dt_fancy_image image_id=\"3415\" width=\"300\" caption=\"off\"][dt_fancy_image image_id=\"3416\" width=\"300\" caption=\"off\"][dt_fancy_image image_id=\"3417\" width=\"300\" caption=\"off\"][dt_fancy_image image_id=\"3418\" width=\"300\" caption=\"off\"][dt_fancy_image image_id=\"3420\" width=\"300\" caption=\"off\"][dt_fancy_image image_id=\"3419\" width=\"300\" caption=\"off\"][dt_fancy_image image_id=\"3422\" width=\"300\" caption=\"off\"][dt_fancy_image image_id=\"3421\" width=\"300\" caption=\"off\"][dt_fancy_image image_id=\"3422\" width=\"300\" caption=\"off\"][dt_fancy_image image_id=\"3423\" width=\"300\" caption=\"off\"][dt_fancy_image image_id=\"3424\" width=\"300\" caption=\"off\"][dt_fancy_image image_id=\"3425\" width=\"300\" caption=\"off\"][/ultimate_carousel][/vc_column][/vc_row][vc_row css=\".vc_custom_1693625068958{margin-top: 15px !important;}\"][vc_column][ultimate_heading main_heading=\"Board Of Directors\" main_heading_color=\"#762888\" main_heading_margin=\"margin-top:35px;margin-bottom:35px;\"][/ultimate_heading][ultimate_carousel slides_on_desk=\"3\" slides_on_mob=\"1\" arrow_style=\"square-bg\" arrow_bg_color=\"#039447\" arrow_color=\"#ffffff\" next_icon=\"ultsl-arrow-right6\" prev_icon=\"ultsl-arrow-left6\" dots_color=\"#039447\" item_animation=\"fadeIn\"][vc_row_inner][vc_column_inner][dt_fancy_image image_id=\"3173\" width=\"300\" border_radius=\"1px\" caption=\"off\"][ultimate_heading main_heading=\"Quisque sed nibh tristique\" heading_tag=\"h3\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;\"]Duis lorem risus, aliquet a auctor a, venenatis in dui. Praesent et eros et risus dapibus placerat hendrerit cursus magna.[/ultimate_heading][ultimate_modal modal_title=\"Read more\" btn_size=\"md\" btn_bg_color=\"#089548\" btn_text=\"Read more\" overlay_bg_opacity=\"75\" img_size=\"80\" btn_txt_color=\"#ffffff\"]pretium mauris pretium mauris pretium mauris pretium mauris pretium mauris pretium mauris pretium mauris pretium mauris pretium mauris pretium mauris pretium mauris pretium mauris pretium mauris pretium mauris pretium mauris pretium mauris pretium mauris pretium mauris pretium mauris pretium mauris pretium mauris pretium mauris pretium mauris pretium mauris pretium mauris pretium mauris pretium mauris pretium mauris[/ultimate_modal][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner][dt_fancy_image image_id=\"3170\" width=\"300\" border_radius=\"1px\" caption=\"off\"][ultimate_heading main_heading=\"Quisque sed nibh tristique\" heading_tag=\"h3\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;\"]Duis lorem risus, aliquet a auctor a, venenatis in dui. Praesent et eros et risus dapibus placerat hendrerit cursus magna.[/ultimate_heading][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner][dt_fancy_image image_id=\"3171\" width=\"300\" border_radius=\"1px\" caption=\"off\"][ultimate_heading main_heading=\"Quisque sed nibh tristique\" heading_tag=\"h3\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;\"]Duis lorem risus, aliquet a auctor a, venenatis in dui. Praesent et eros et risus dapibus placerat hendrerit cursus magna.[/ultimate_heading][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner][dt_fancy_image image_id=\"3172\" width=\"300\" border_radius=\"1px\" caption=\"off\"][ultimate_heading main_heading=\"Quisque sed nibh tristique\" heading_tag=\"h3\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;\"]Duis lorem risus, aliquet a auctor a, venenatis in dui. Praesent et eros et risus dapibus placerat hendrerit cursus magna.[/ultimate_heading][/vc_column_inner][/vc_row_inner][/ultimate_carousel][/vc_column][/vc_row][vc_row disable_element=\"yes\"][vc_column][ultimate_heading main_heading=\"Board Of Directors\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;margin-bottom:35px;\"][/ultimate_heading][vc_row_inner][vc_column_inner width=\"1/3\"][ult_animation_block animation=\"fadeInUp\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][dt_fancy_image image_id=\"3172\" width=\"300\" border_radius=\"1px\" caption=\"off\" css=\".vc_custom_1692278922309{border-top-width: 1px !important;border-right-width: 1px !important;border-bottom-width: 1px !important;border-left-width: 1px !important;border-left-color: #059444 !important;border-left-style: solid !important;border-right-color: #059444 !important;border-right-style: solid !important;border-top-color: #059444 !important;border-top-style: solid !important;border-bottom-color: #059444 !important;border-bottom-style: solid !important;border-radius: 1px !important;}\"][ultimate_heading main_heading=\"Quisque sed nibh tristique\" heading_tag=\"h3\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;\"]\r\n<ul>\r\n 	<li>Duis lorem risus, aliquet a auctor a, venenatis in dui. Praesent et eros et risus dapibus placerat hendrerit cursus magna.</li>\r\n 	<li>Praesent et eros et risus dapibus placerat hendrerit cursus magna.</li>\r\n 	<li>aliquet a auctor a, venenatis in dui.</li>\r\n</ul>\r\n[/ultimate_heading][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/3\"][ult_animation_block animation=\"fadeInDown\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][dt_fancy_image image_id=\"3171\" width=\"300\" border_radius=\"1px\" caption=\"off\" css=\".vc_custom_1692278929158{border-top-width: 1px !important;border-right-width: 1px !important;border-bottom-width: 1px !important;border-left-width: 1px !important;border-left-color: #059444 !important;border-left-style: solid !important;border-right-color: #059444 !important;border-right-style: solid !important;border-top-color: #059444 !important;border-top-style: solid !important;border-bottom-color: #059444 !important;border-bottom-style: solid !important;border-radius: 1px !important;}\"][ultimate_heading main_heading=\"Quisque sed nibh tristique\" heading_tag=\"h3\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;\"]\r\n<ul>\r\n 	<li>Duis lorem risus, aliquet a auctor a, venenatis in dui. Praesent et eros et risus dapibus placerat hendrerit cursus magna.</li>\r\n 	<li>Praesent et eros et risus dapibus placerat hendrerit cursus magna.</li>\r\n 	<li>aliquet a auctor a, venenatis in dui.</li>\r\n</ul>\r\n[/ultimate_heading][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/3\"][ult_animation_block animation=\"fadeInUp\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][dt_fancy_image image_id=\"3170\" width=\"300\" border_radius=\"1px\" caption=\"off\" css=\".vc_custom_1692278936750{border-top-width: 1px !important;border-right-width: 1px !important;border-bottom-width: 1px !important;border-left-width: 1px !important;border-left-color: #059444 !important;border-left-style: solid !important;border-right-color: #059444 !important;border-right-style: solid !important;border-top-color: #059444 !important;border-top-style: solid !important;border-bottom-color: #059444 !important;border-bottom-style: solid !important;border-radius: 1px !important;}\"][ultimate_heading main_heading=\"Quisque sed nibh tristique\" heading_tag=\"h3\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;\"]\r\n<ul>\r\n 	<li>Duis lorem risus, aliquet a auctor a, venenatis in dui. Praesent et eros et risus dapibus placerat hendrerit cursus magna.</li>\r\n 	<li>Praesent et eros et risus dapibus placerat hendrerit cursus magna.</li>\r\n 	<li>aliquet a auctor a, venenatis in dui.</li>\r\n</ul>\r\n[/ultimate_heading][/ult_animation_block][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row disable_element=\"yes\"][vc_column][ultimate_heading main_heading=\"Executive Directors\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;margin-bottom:35px;\"][/ultimate_heading][vc_row_inner][vc_column_inner width=\"1/5\"][ult_animation_block animation=\"fadeInUp\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][dt_fancy_image image_id=\"3172\" width=\"300\" border_radius=\"1px\" caption=\"off\" css=\".vc_custom_1692278922309{border-top-width: 1px !important;border-right-width: 1px !important;border-bottom-width: 1px !important;border-left-width: 1px !important;border-left-color: #059444 !important;border-left-style: solid !important;border-right-color: #059444 !important;border-right-style: solid !important;border-top-color: #059444 !important;border-top-style: solid !important;border-bottom-color: #059444 !important;border-bottom-style: solid !important;border-radius: 1px !important;}\"][ultimate_heading main_heading=\"Quisque sed nibh tristique\" heading_tag=\"h3\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;\"]\r\n<ul>\r\n 	<li>Duis lorem risus, aliquet a auctor a, venenatis in dui. Praesent et eros et risus dapibus placerat hendrerit cursus magna.</li>\r\n 	<li>Praesent et eros et risus dapibus placerat hendrerit cursus magna.</li>\r\n 	<li>aliquet a auctor a, venenatis in dui.</li>\r\n</ul>\r\n[/ultimate_heading][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/5\"][ult_animation_block animation=\"fadeInDown\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][dt_fancy_image image_id=\"3171\" width=\"300\" border_radius=\"1px\" caption=\"off\" css=\".vc_custom_1692278929158{border-top-width: 1px !important;border-right-width: 1px !important;border-bottom-width: 1px !important;border-left-width: 1px !important;border-left-color: #059444 !important;border-left-style: solid !important;border-right-color: #059444 !important;border-right-style: solid !important;border-top-color: #059444 !important;border-top-style: solid !important;border-bottom-color: #059444 !important;border-bottom-style: solid !important;border-radius: 1px !important;}\"][ultimate_heading main_heading=\"Quisque sed nibh tristique\" heading_tag=\"h3\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;\"]\r\n<ul>\r\n 	<li>Duis lorem risus, aliquet a auctor a, venenatis in dui. Praesent et eros et risus dapibus placerat hendrerit cursus magna.</li>\r\n 	<li>Praesent et eros et risus dapibus placerat hendrerit cursus magna.</li>\r\n 	<li>aliquet a auctor a, venenatis in dui.</li>\r\n</ul>\r\n[/ultimate_heading][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/5\"][ult_animation_block animation=\"fadeInUp\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][dt_fancy_image image_id=\"3170\" width=\"300\" border_radius=\"1px\" caption=\"off\" css=\".vc_custom_1692278936750{border-top-width: 1px !important;border-right-width: 1px !important;border-bottom-width: 1px !important;border-left-width: 1px !important;border-left-color: #059444 !important;border-left-style: solid !important;border-right-color: #059444 !important;border-right-style: solid !important;border-top-color: #059444 !important;border-top-style: solid !important;border-bottom-color: #059444 !important;border-bottom-style: solid !important;border-radius: 1px !important;}\"][ultimate_heading main_heading=\"Quisque sed nibh tristique\" heading_tag=\"h3\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;\"]\r\n<ul>\r\n 	<li>Duis lorem risus, aliquet a auctor a, venenatis in dui. Praesent et eros et risus dapibus placerat hendrerit cursus magna.</li>\r\n 	<li>Praesent et eros et risus dapibus placerat hendrerit cursus magna.</li>\r\n 	<li>aliquet a auctor a, venenatis in dui.</li>\r\n</ul>\r\n[/ultimate_heading][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/5\"][ult_animation_block animation=\"fadeInDown\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][dt_fancy_image image_id=\"3170\" width=\"300\" border_radius=\"1px\" caption=\"off\" css=\".vc_custom_1692278936750{border-top-width: 1px !important;border-right-width: 1px !important;border-bottom-width: 1px !important;border-left-width: 1px !important;border-left-color: #059444 !important;border-left-style: solid !important;border-right-color: #059444 !important;border-right-style: solid !important;border-top-color: #059444 !important;border-top-style: solid !important;border-bottom-color: #059444 !important;border-bottom-style: solid !important;border-radius: 1px !important;}\"][ultimate_heading main_heading=\"Quisque sed nibh tristique\" heading_tag=\"h3\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;\"]\r\n<ul>\r\n 	<li>Duis lorem risus, aliquet a auctor a, venenatis in dui. Praesent et eros et risus dapibus placerat hendrerit cursus magna.</li>\r\n 	<li>Praesent et eros et risus dapibus placerat hendrerit cursus magna.</li>\r\n 	<li>aliquet a auctor a, venenatis in dui.</li>\r\n</ul>\r\n[/ultimate_heading][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/5\"][ult_animation_block animation=\"fadeInDown\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][dt_fancy_image image_id=\"3171\" width=\"300\" border_radius=\"1px\" caption=\"off\" css=\".vc_custom_1692278929158{border-top-width: 1px !important;border-right-width: 1px !important;border-bottom-width: 1px !important;border-left-width: 1px !important;border-left-color: #059444 !important;border-left-style: solid !important;border-right-color: #059444 !important;border-right-style: solid !important;border-top-color: #059444 !important;border-top-style: solid !important;border-bottom-color: #059444 !important;border-bottom-style: solid !important;border-radius: 1px !important;}\"][ultimate_heading main_heading=\"Quisque sed nibh tristique\" heading_tag=\"h3\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;\"]\r\n<ul>\r\n 	<li>Duis lorem risus, aliquet a auctor a, venenatis in dui. Praesent et eros et risus dapibus placerat hendrerit cursus magna.</li>\r\n 	<li>Praesent et eros et risus dapibus placerat hendrerit cursus magna.</li>\r\n 	<li>aliquet a auctor a, venenatis in dui.</li>\r\n</ul>\r\n[/ultimate_heading][/ult_animation_block][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner width=\"2/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row disable_element=\"yes\"][vc_column][ultimate_heading main_heading=\"Next Generation\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;margin-bottom:35px;\"][/ultimate_heading][vc_row_inner][vc_column_inner width=\"1/2\"][ult_animation_block animation=\"fadeInUp\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][dt_fancy_image image_id=\"3172\" width=\"300\" border_radius=\"1px\" caption=\"off\" css=\".vc_custom_1692278922309{border-top-width: 1px !important;border-right-width: 1px !important;border-bottom-width: 1px !important;border-left-width: 1px !important;border-left-color: #059444 !important;border-left-style: solid !important;border-right-color: #059444 !important;border-right-style: solid !important;border-top-color: #059444 !important;border-top-style: solid !important;border-bottom-color: #059444 !important;border-bottom-style: solid !important;border-radius: 1px !important;}\"][ultimate_heading main_heading=\"Quisque sed nibh tristique\" heading_tag=\"h3\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;\"]\r\n<ul>\r\n 	<li>Duis lorem risus, aliquet a auctor a, venenatis in dui. Praesent et eros et risus dapibus placerat hendrerit cursus magna.</li>\r\n 	<li>Praesent et eros et risus dapibus placerat hendrerit cursus magna.</li>\r\n 	<li>aliquet a auctor a, venenatis in dui.</li>\r\n</ul>\r\n[/ultimate_heading][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/2\"][ult_animation_block animation=\"fadeInDown\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][dt_fancy_image image_id=\"3171\" width=\"300\" border_radius=\"1px\" caption=\"off\" css=\".vc_custom_1692278929158{border-top-width: 1px !important;border-right-width: 1px !important;border-bottom-width: 1px !important;border-left-width: 1px !important;border-left-color: #059444 !important;border-left-style: solid !important;border-right-color: #059444 !important;border-right-style: solid !important;border-top-color: #059444 !important;border-top-style: solid !important;border-bottom-color: #059444 !important;border-bottom-style: solid !important;border-radius: 1px !important;}\"][ultimate_heading main_heading=\"Quisque sed nibh tristique\" heading_tag=\"h3\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;\"]\r\n<ul>\r\n 	<li>Duis lorem risus, aliquet a auctor a, venenatis in dui. Praesent et eros et risus dapibus placerat hendrerit cursus magna.</li>\r\n 	<li>Praesent et eros et risus dapibus placerat hendrerit cursus magna.</li>\r\n 	<li>aliquet a auctor a, venenatis in dui.</li>\r\n</ul>\r\n[/ultimate_heading][/ult_animation_block][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row]','About us','','inherit','closed','closed','','2917-revision-v1','','','2023-09-12 13:57:34','2023-09-12 13:57:34','',2917,'https://farmchemie.yasithawd.com/?p=3563',0,'revision','',0),(3565,1,'2023-09-12 14:19:03','2023-09-12 14:19:03','[vc_row full_width=\"stretch_row_content\"][vc_column width=\"1/3\"][bsf-info-box icon=\"icomoon-the7-font-the7-phone-04\" icon_size=\"32\" icon_color=\"#059444\" title=\"Phone\"]<strong>+94 (0) 11 298 3922</strong>[/bsf-info-box][bsf-info-box icon=\"icomoon-the7-font-the7-mail-01\" icon_size=\"32\" icon_color=\"#059444\" title=\"Email Address\"]info@farmchemie.com[/bsf-info-box][bsf-info-box icon=\"icomoon-the7-font-the7-map-02\" icon_size=\"32\" icon_color=\"#059444\" title=\"Address\"]No. 78, Industrial Zone, Katuwana, Homagama[/bsf-info-box][/vc_column][vc_column width=\"1/3\"][ultimate_heading main_heading=\"Contact Us\" alignment=\"left\" main_heading_margin=\"margin-bottom:35px;\"][/ultimate_heading][contact-form-7 id=\"12\"][/vc_column][vc_column width=\"1/3\"][vc_gmaps link=\"#E-8_JTNDaWZyYW1lJTIwc3JjJTNEJTIyaHR0cHMlM0ElMkYlMkZ3d3cuZ29vZ2xlLmNvbSUyRm1hcHMlMkZlbWJlZCUzRnBiJTNEJTIxMW0xOCUyMTFtMTIlMjExbTMlMjExZDM5NjEuNDkyNzAyNjUzODQyJTIxMmQ4MC4wMDU1NTMyNTA5NzkzNiUyMTNkNi44MzEzNzM2MjEzNzcxMSUyMTJtMyUyMTFmMCUyMTJmMCUyMTNmMCUyMTNtMiUyMTFpMTAyNCUyMTJpNzY4JTIxNGYxMy4xJTIxM20zJTIxMW0yJTIxMXMweDNhZTI1MWY2M2RlZjc3NGYlMjUzQTB4OTI5MjYyZGQ3OGNmZjViZSUyMTJzRmFybWNoZW1pZSUyNTIwJTI4UHJpdmF0ZSUyOSUyNTIwTGltaXRlZCUyMTVlMCUyMTNtMiUyMTFzZW4lMjEyc2xrJTIxNHYxNjY4NzQ0NzQ2NDk0JTIxNW0yJTIxMXNlbiUyMTJzbGslMjIlMjB3aWR0aCUzRCUyMjE5MjAlMjIlMjBoZWlnaHQlM0QlMjI1MDAlMjIlMjBzdHlsZSUzRCUyMmJvcmRlciUzQTAlM0IlMjIlMjBhbGxvd2Z1bGxzY3JlZW4lM0QlMjIlMjIlMjBsb2FkaW5nJTNEJTIybGF6eSUyMiUyMHJlZmVycmVycG9saWN5JTNEJTIybm8tcmVmZXJyZXItd2hlbi1kb3duZ3JhZGUlMjIlM0UlM0MlMkZpZnJhbWUlM0U=\"][/vc_column][/vc_row][vc_row][vc_column][vc_row_inner][vc_column_inner width=\"1/2\"][/vc_column_inner][vc_column_inner width=\"1/2\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row]','Contact Us','','inherit','closed','closed','','2622-revision-v1','','','2023-09-12 14:19:03','2023-09-12 14:19:03','',2622,'https://farmchemie.yasithawd.com/?p=3565',0,'revision','',0),(3566,1,'2023-09-12 18:05:55','2023-09-12 18:05:55','<p>[vc_row full_width=\"stretch_row_content\" equal_height=\"yes\" css=\".vc_custom_1694535688302{margin-top: 35px !important;margin-bottom: 35px !important;padding-right: 10% !important;padding-left: 10% !important;}\"][vc_column][vc_row_inner][vc_column_inner width=\"1/3\"][bsf-info-box icon=\"icomoon-the7-font-the7-phone-04\" icon_size=\"32\" icon_color=\"#059444\" title=\"Phone\"]<strong>+94 (0) 11 298 3922</strong>[/bsf-info-box][bsf-info-box icon=\"icomoon-the7-font-the7-mail-01\" icon_size=\"32\" icon_color=\"#059444\" title=\"Email Address\"]info@farmchemie.com[/bsf-info-box][bsf-info-box icon=\"icomoon-the7-font-the7-map-02\" icon_size=\"32\" icon_color=\"#059444\" title=\"Address\"]No. 78, Industrial Zone, Katuwana, Homagama[/bsf-info-box][/vc_column_inner][vc_column_inner width=\"1/3\"][contact-form-7 id=\"12\"][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_gmaps link=\"#E-8_JTNDaWZyYW1lJTIwc3JjJTNEJTIyaHR0cHMlM0ElMkYlMkZ3d3cuZ29vZ2xlLmNvbSUyRm1hcHMlMkZlbWJlZCUzRnBiJTNEJTIxMW0xOCUyMTFtMTIlMjExbTMlMjExZDM5NjEuNDkyNzAyNjUzODQyJTIxMmQ4MC4wMDU1NTMyNTA5NzkzNiUyMTNkNi44MzEzNzM2MjEzNzcxMSUyMTJtMyUyMTFmMCUyMTJmMCUyMTNmMCUyMTNtMiUyMTFpMTAyNCUyMTJpNzY4JTIxNGYxMy4xJTIxM20zJTIxMW0yJTIxMXMweDNhZTI1MWY2M2RlZjc3NGYlMjUzQTB4OTI5MjYyZGQ3OGNmZjViZSUyMTJzRmFybWNoZW1pZSUyNTIwJTI4UHJpdmF0ZSUyOSUyNTIwTGltaXRlZCUyMTVlMCUyMTNtMiUyMTFzZW4lMjEyc2xrJTIxNHYxNjY4NzQ0NzQ2NDk0JTIxNW0yJTIxMXNlbiUyMTJzbGslMjIlMjB3aWR0aCUzRCUyMjE5MjAlMjIlMjBoZWlnaHQlM0QlMjI1MDAlMjIlMjBzdHlsZSUzRCUyMmJvcmRlciUzQTAlM0IlMjIlMjBhbGxvd2Z1bGxzY3JlZW4lM0QlMjIlMjIlMjBsb2FkaW5nJTNEJTIybGF6eSUyMiUyMHJlZmVycmVycG9saWN5JTNEJTIybm8tcmVmZXJyZXItd2hlbi1kb3duZ3JhZGUlMjIlM0UlM0MlMkZpZnJhbWUlM0U=\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row full_width=\"stretch_row_content\" css=\".vc_custom_1694534830702{margin-top: 35px !important;margin-bottom: 35px !important;}\"][vc_column][vc_separator color=\"custom\" accent_color=\"#823194\"][ultimate_heading main_heading=\"Inquries\" main_heading_color=\"#089548\" main_heading_margin=\"margin-top:35px;\"][/ultimate_heading][/vc_column][/vc_row][vc_row][vc_column width=\"1/3\"][bsf-info-box icon=\"icomoon-the7-font-the7-mail-01\" icon_size=\"32\" icon_color=\"#039447\" icon_style=\"circle\" title=\"Managing Director\" read_more=\"box\" link=\"url:mailto%3Auditha%40farmchemie.com\" pos=\"square_box\" box_border_style=\"solid\" box_border_width=\"1\" box_border_color=\"#823194\" title_font_color=\"#039447\" desc_font_color=\"#039447\" title_font_size=\"desktop:20px;\"]Mr.Uditha Wanigasinghe</p>\n<p>uditha@farmchemie.com</p>\n<p>+94 777272492[/bsf-info-box][/vc_column][vc_column width=\"1/3\"][bsf-info-box icon=\"icomoon-the7-font-the7-mail-01\" icon_size=\"32\" icon_color=\"#039447\" icon_style=\"circle\" title=\"Director- Marketing\" read_more=\"box\" link=\"url:mailto%3Aajith%40farmchemie.com\" pos=\"square_box\" box_border_style=\"solid\" box_border_width=\"1\" box_border_color=\"#823194\" title_font_color=\"#039447\" desc_font_color=\"#039447\" title_font_size=\"desktop:20px;\"]Mr.Ajith Welianga</p>\n<p>ajith@farmchemie.com</p>\n<p>+94 777386662[/bsf-info-box][/vc_column][vc_column width=\"1/3\"][bsf-info-box icon=\"icomoon-the7-font-the7-mail-01\" icon_size=\"32\" icon_color=\"#039447\" icon_style=\"circle\" title=\"Director – Finance\" read_more=\"box\" link=\"url:mailto%3Afinance%40farmchemie.com\" pos=\"square_box\" box_border_style=\"solid\" box_border_width=\"1\" box_border_color=\"#823194\" title_font_color=\"#039447\" desc_font_color=\"#039447\" title_font_size=\"desktop:20px;\"]Ms.Ridma Herath</p>\n<p>finance@farmchemie.com</p>\n<p>+94 774825188[/bsf-info-box][/vc_column][/vc_row][vc_row][vc_column width=\"1/3\"][bsf-info-box icon=\"icomoon-the7-font-the7-mail-01\" icon_size=\"32\" icon_color=\"#039447\" icon_style=\"circle\" title=\"Director – Production\" read_more=\"box\" link=\"url:mailto%3Afactory%40farmchemie.com\" pos=\"square_box\" box_border_style=\"solid\" box_border_width=\"1\" box_border_color=\"#823194\" title_font_color=\"#039447\" desc_font_color=\"#039447\" title_font_size=\"desktop:20px;\"]Mr.Chanaka Indrajith</p>\n<p>factory@farmchemie.com</p>\n<p>+94 773622546[/bsf-info-box][/vc_column][vc_column width=\"1/3\"][bsf-info-box icon=\"icomoon-the7-font-the7-mail-01\" icon_size=\"32\" icon_color=\"#039447\" icon_style=\"circle\" title=\"Director - Sales\" read_more=\"box\" link=\"url:mailto%3Asampath%40farmchemie.com\" pos=\"square_box\" box_border_style=\"solid\" box_border_width=\"1\" box_border_color=\"#823194\" title_font_color=\"#039447\" desc_font_color=\"#039447\" title_font_size=\"desktop:20px;\"]Mr.Sampath Gunathailake</p>\n<p>sampath@farmchemie.com</p>\n<p>+94 773159125[/bsf-info-box][/vc_column][vc_column width=\"1/3\"][bsf-info-box icon=\"icomoon-the7-font-the7-mail-01\" icon_size=\"32\" icon_color=\"#039447\" icon_style=\"circle\" title=\"Technical Services\" read_more=\"box\" link=\"url:mailto%3Atechnical%40farmchemie.com\" pos=\"square_box\" box_border_style=\"solid\" box_border_width=\"1\" box_border_color=\"#823194\" title_font_color=\"#039447\" desc_font_color=\"#039447\" title_font_size=\"desktop:20px;\"]Dr. Nalin De Silva</p>\n<p>technical@farmchemie.com</p>\n<p>+94 777585748[/bsf-info-box][/vc_column][/vc_row][vc_row][vc_column width=\"1/3\"][bsf-info-box icon=\"icomoon-the7-font-the7-mail-01\" icon_size=\"32\" icon_color=\"#039447\" icon_style=\"circle\" title=\"Large Animal &amp; Equipment\" read_more=\"box\" link=\"url:mailto%3Amalaka%40farmchemie.com\" pos=\"square_box\" box_border_style=\"solid\" box_border_width=\"1\" box_border_color=\"#823194\" title_font_color=\"#039447\" desc_font_color=\"#039447\" title_font_size=\"desktop:20px;\"]Mr. Malaka Karunasinghe</p>\n<p>malaka@farmchemie.com</p>\n<p>+94 773597280[/bsf-info-box][/vc_column][vc_column width=\"1/3\"][bsf-info-box icon=\"icomoon-the7-font-the7-mail-01\" icon_size=\"32\" icon_color=\"#039447\" icon_style=\"circle\" title=\"Poultry &amp; Key Accounts\" read_more=\"box\" link=\"url:mailto%3Amaduka%40farmchemie.com\" pos=\"square_box\" box_border_style=\"solid\" box_border_width=\"1\" box_border_color=\"#823194\" title_font_color=\"#039447\" desc_font_color=\"#039447\" title_font_size=\"desktop:20px;\"]Mr. Maduka Samaranayake</p>\n<p>maduka@farmchemie.com</p>\n<p>+94 773597278[/bsf-info-box][/vc_column][vc_column width=\"1/3\"][bsf-info-box icon=\"icomoon-the7-font-the7-mail-01\" icon_size=\"32\" icon_color=\"#039447\" icon_style=\"circle\" title=\"Customer &amp; Employee Relations\" read_more=\"box\" link=\"url:mailto%3Asunil%40farmchemie.com\" pos=\"square_box\" box_border_style=\"solid\" box_border_width=\"1\" box_border_color=\"#823194\" title_font_color=\"#039447\" desc_font_color=\"#039447\" title_font_size=\"desktop:20px;\"]Mr. Sunil Ranjith</p>\n<p>sunil@farmchemie.com</p>\n<p>+94 773597279[/bsf-info-box][/vc_column][/vc_row][vc_row][vc_column width=\"1/3\"][bsf-info-box icon=\"icomoon-the7-font-the7-mail-01\" icon_size=\"32\" icon_color=\"#039447\" icon_style=\"circle\" title=\"Consultant\" read_more=\"box\" link=\"url:mailto%3Aspwimalasiri%40gmail.com\" pos=\"square_box\" box_border_style=\"solid\" box_border_width=\"1\" box_border_color=\"#823194\" title_font_color=\"#039447\" desc_font_color=\"#039447\" title_font_size=\"desktop:20px;\"]Dr. Wimalasiri</p>\n<p>spwimalasiri@gmail.com</p>\n<p>+94 726687327[/bsf-info-box][/vc_column][vc_column width=\"1/3\"][bsf-info-box icon=\"icomoon-the7-font-the7-mail-01\" icon_size=\"32\" icon_color=\"#039447\" icon_style=\"circle\" title=\"Poultry & Key Accounts\" read_more=\"box\" link=\"url:mailto%3Aaccounts%40farmchemie.com\" pos=\"square_box\" box_border_style=\"solid\" box_border_width=\"1\" box_border_color=\"#823194\" title_font_color=\"#039447\" desc_font_color=\"#039447\" title_font_size=\"desktop:20px;\"]Mr.Tharanga Chathurakshana</p>\n<p>accounts@farmchemie.com</p>\n<p>+94 772069246[/bsf-info-box][/vc_column][vc_column width=\"1/3\"][bsf-info-box icon=\"icomoon-the7-font-the7-mail-01\" icon_size=\"32\" icon_color=\"#039447\" icon_style=\"circle\" title=\"Customer &amp; Employee Relations\" read_more=\"box\" link=\"url:mailto%3Asunil%40farmchemie.com\" pos=\"square_box\" box_border_style=\"solid\" box_border_width=\"1\" box_border_color=\"#823194\" title_font_color=\"#039447\" desc_font_color=\"#039447\" title_font_size=\"desktop:20px;\"]Mr. Sunil Ranjith</p>\n<p>sunil@farmchemie.com</p>\n<p>+94 773597279[/bsf-info-box][/vc_column][/vc_row]</p>\n','Contact Us','','inherit','closed','closed','','2622-autosave-v1','','','2023-09-12 18:05:55','2023-09-12 18:05:55','',2622,'https://farmchemie.yasithawd.com/?p=3566',0,'revision','',0),(3567,1,'2023-09-12 14:20:44','2023-09-12 14:20:44','[vc_row full_width=\"stretch_row_content\"][vc_column width=\"1/3\"][/vc_column][vc_column width=\"1/3\"][/vc_column][vc_column width=\"1/3\"][/vc_column][/vc_row][vc_row full_width=\"stretch_row_content\"][vc_column][ultimate_heading main_heading=\"Contact Us\" heading_tag=\"h3\" alignment=\"left\" main_heading_margin=\"margin-bottom:35px;\" margin_design_tab_text=\"\"][/ultimate_heading][vc_row_inner][vc_column_inner width=\"1/3\"][bsf-info-box icon=\"icomoon-the7-font-the7-phone-04\" icon_size=\"32\" icon_color=\"#059444\" title=\"Phone\"]<strong>+94 (0) 11 298 3922</strong>[/bsf-info-box][bsf-info-box icon=\"icomoon-the7-font-the7-mail-01\" icon_size=\"32\" icon_color=\"#059444\" title=\"Email Address\"]info@farmchemie.com[/bsf-info-box][bsf-info-box icon=\"icomoon-the7-font-the7-map-02\" icon_size=\"32\" icon_color=\"#059444\" title=\"Address\"]No. 78, Industrial Zone, Katuwana, Homagama[/bsf-info-box][/vc_column_inner][vc_column_inner width=\"1/3\"][contact-form-7 id=\"12\"][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_gmaps link=\"#E-8_JTNDaWZyYW1lJTIwc3JjJTNEJTIyaHR0cHMlM0ElMkYlMkZ3d3cuZ29vZ2xlLmNvbSUyRm1hcHMlMkZlbWJlZCUzRnBiJTNEJTIxMW0xOCUyMTFtMTIlMjExbTMlMjExZDM5NjEuNDkyNzAyNjUzODQyJTIxMmQ4MC4wMDU1NTMyNTA5NzkzNiUyMTNkNi44MzEzNzM2MjEzNzcxMSUyMTJtMyUyMTFmMCUyMTJmMCUyMTNmMCUyMTNtMiUyMTFpMTAyNCUyMTJpNzY4JTIxNGYxMy4xJTIxM20zJTIxMW0yJTIxMXMweDNhZTI1MWY2M2RlZjc3NGYlMjUzQTB4OTI5MjYyZGQ3OGNmZjViZSUyMTJzRmFybWNoZW1pZSUyNTIwJTI4UHJpdmF0ZSUyOSUyNTIwTGltaXRlZCUyMTVlMCUyMTNtMiUyMTFzZW4lMjEyc2xrJTIxNHYxNjY4NzQ0NzQ2NDk0JTIxNW0yJTIxMXNlbiUyMTJzbGslMjIlMjB3aWR0aCUzRCUyMjE5MjAlMjIlMjBoZWlnaHQlM0QlMjI1MDAlMjIlMjBzdHlsZSUzRCUyMmJvcmRlciUzQTAlM0IlMjIlMjBhbGxvd2Z1bGxzY3JlZW4lM0QlMjIlMjIlMjBsb2FkaW5nJTNEJTIybGF6eSUyMiUyMHJlZmVycmVycG9saWN5JTNEJTIybm8tcmVmZXJyZXItd2hlbi1kb3duZ3JhZGUlMjIlM0UlM0MlMkZpZnJhbWUlM0U=\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row]','Contact Us','','inherit','closed','closed','','2622-revision-v1','','','2023-09-12 14:20:44','2023-09-12 14:20:44','',2622,'https://farmchemie.yasithawd.com/?p=3567',0,'revision','',0),(3568,1,'2023-09-12 14:21:46','2023-09-12 14:21:46','[vc_row full_width=\"stretch_row_content\"][vc_column width=\"1/3\"][/vc_column][vc_column width=\"1/3\"][/vc_column][vc_column width=\"1/3\"][/vc_column][/vc_row][vc_row full_width=\"stretch_row_content\"][vc_column][vc_row_inner][vc_column_inner width=\"1/3\"][bsf-info-box icon=\"icomoon-the7-font-the7-phone-04\" icon_size=\"32\" icon_color=\"#059444\" title=\"Phone\"]<strong>+94 (0) 11 298 3922</strong>[/bsf-info-box][bsf-info-box icon=\"icomoon-the7-font-the7-mail-01\" icon_size=\"32\" icon_color=\"#059444\" title=\"Email Address\"]info@farmchemie.com[/bsf-info-box][bsf-info-box icon=\"icomoon-the7-font-the7-map-02\" icon_size=\"32\" icon_color=\"#059444\" title=\"Address\"]No. 78, Industrial Zone, Katuwana, Homagama[/bsf-info-box][/vc_column_inner][vc_column_inner width=\"1/3\"][contact-form-7 id=\"12\"][ultimate_heading main_heading=\"Contact Us\" heading_tag=\"h3\" alignment=\"left\" main_heading_margin=\"margin-bottom:35px;\"][/ultimate_heading][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_gmaps link=\"#E-8_JTNDaWZyYW1lJTIwc3JjJTNEJTIyaHR0cHMlM0ElMkYlMkZ3d3cuZ29vZ2xlLmNvbSUyRm1hcHMlMkZlbWJlZCUzRnBiJTNEJTIxMW0xOCUyMTFtMTIlMjExbTMlMjExZDM5NjEuNDkyNzAyNjUzODQyJTIxMmQ4MC4wMDU1NTMyNTA5NzkzNiUyMTNkNi44MzEzNzM2MjEzNzcxMSUyMTJtMyUyMTFmMCUyMTJmMCUyMTNmMCUyMTNtMiUyMTFpMTAyNCUyMTJpNzY4JTIxNGYxMy4xJTIxM20zJTIxMW0yJTIxMXMweDNhZTI1MWY2M2RlZjc3NGYlMjUzQTB4OTI5MjYyZGQ3OGNmZjViZSUyMTJzRmFybWNoZW1pZSUyNTIwJTI4UHJpdmF0ZSUyOSUyNTIwTGltaXRlZCUyMTVlMCUyMTNtMiUyMTFzZW4lMjEyc2xrJTIxNHYxNjY4NzQ0NzQ2NDk0JTIxNW0yJTIxMXNlbiUyMTJzbGslMjIlMjB3aWR0aCUzRCUyMjE5MjAlMjIlMjBoZWlnaHQlM0QlMjI1MDAlMjIlMjBzdHlsZSUzRCUyMmJvcmRlciUzQTAlM0IlMjIlMjBhbGxvd2Z1bGxzY3JlZW4lM0QlMjIlMjIlMjBsb2FkaW5nJTNEJTIybGF6eSUyMiUyMHJlZmVycmVycG9saWN5JTNEJTIybm8tcmVmZXJyZXItd2hlbi1kb3duZ3JhZGUlMjIlM0UlM0MlMkZpZnJhbWUlM0U=\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row]','Contact Us','','inherit','closed','closed','','2622-revision-v1','','','2023-09-12 14:21:46','2023-09-12 14:21:46','',2622,'https://farmchemie.yasithawd.com/?p=3568',0,'revision','',0),(3569,1,'2023-09-12 14:22:15','2023-09-12 14:22:15','[vc_row full_width=\"stretch_row_content\"][vc_column width=\"1/3\"][/vc_column][vc_column width=\"1/3\"][/vc_column][vc_column width=\"1/3\"][/vc_column][/vc_row][vc_row full_width=\"stretch_row\"][vc_column][vc_row_inner][vc_column_inner width=\"1/3\"][bsf-info-box icon=\"icomoon-the7-font-the7-phone-04\" icon_size=\"32\" icon_color=\"#059444\" title=\"Phone\"]<strong>+94 (0) 11 298 3922</strong>[/bsf-info-box][bsf-info-box icon=\"icomoon-the7-font-the7-mail-01\" icon_size=\"32\" icon_color=\"#059444\" title=\"Email Address\"]info@farmchemie.com[/bsf-info-box][bsf-info-box icon=\"icomoon-the7-font-the7-map-02\" icon_size=\"32\" icon_color=\"#059444\" title=\"Address\"]No. 78, Industrial Zone, Katuwana, Homagama[/bsf-info-box][/vc_column_inner][vc_column_inner width=\"1/3\"][contact-form-7 id=\"12\"][ultimate_heading main_heading=\"Contact Us\" heading_tag=\"h3\" alignment=\"left\" main_heading_margin=\"margin-bottom:35px;\"][/ultimate_heading][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_gmaps link=\"#E-8_JTNDaWZyYW1lJTIwc3JjJTNEJTIyaHR0cHMlM0ElMkYlMkZ3d3cuZ29vZ2xlLmNvbSUyRm1hcHMlMkZlbWJlZCUzRnBiJTNEJTIxMW0xOCUyMTFtMTIlMjExbTMlMjExZDM5NjEuNDkyNzAyNjUzODQyJTIxMmQ4MC4wMDU1NTMyNTA5NzkzNiUyMTNkNi44MzEzNzM2MjEzNzcxMSUyMTJtMyUyMTFmMCUyMTJmMCUyMTNmMCUyMTNtMiUyMTFpMTAyNCUyMTJpNzY4JTIxNGYxMy4xJTIxM20zJTIxMW0yJTIxMXMweDNhZTI1MWY2M2RlZjc3NGYlMjUzQTB4OTI5MjYyZGQ3OGNmZjViZSUyMTJzRmFybWNoZW1pZSUyNTIwJTI4UHJpdmF0ZSUyOSUyNTIwTGltaXRlZCUyMTVlMCUyMTNtMiUyMTFzZW4lMjEyc2xrJTIxNHYxNjY4NzQ0NzQ2NDk0JTIxNW0yJTIxMXNlbiUyMTJzbGslMjIlMjB3aWR0aCUzRCUyMjE5MjAlMjIlMjBoZWlnaHQlM0QlMjI1MDAlMjIlMjBzdHlsZSUzRCUyMmJvcmRlciUzQTAlM0IlMjIlMjBhbGxvd2Z1bGxzY3JlZW4lM0QlMjIlMjIlMjBsb2FkaW5nJTNEJTIybGF6eSUyMiUyMHJlZmVycmVycG9saWN5JTNEJTIybm8tcmVmZXJyZXItd2hlbi1kb3duZ3JhZGUlMjIlM0UlM0MlMkZpZnJhbWUlM0U=\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row]','Contact Us','','inherit','closed','closed','','2622-revision-v1','','','2023-09-12 14:22:15','2023-09-12 14:22:15','',2622,'https://farmchemie.yasithawd.com/?p=3569',0,'revision','',0),(3570,1,'2023-09-12 14:23:18','2023-09-12 14:23:18','[vc_row full_width=\"stretch_row_content\"][vc_column width=\"1/3\"][/vc_column][vc_column width=\"1/3\"][/vc_column][vc_column width=\"1/3\"][/vc_column][/vc_row][vc_row full_width=\"stretch_row\" css=\".vc_custom_1694528593042{margin-top: 35px !important;}\"][vc_column][vc_row_inner][vc_column_inner width=\"1/3\"][bsf-info-box icon=\"icomoon-the7-font-the7-phone-04\" icon_size=\"32\" icon_color=\"#059444\" title=\"Phone\"]<strong>+94 (0) 11 298 3922</strong>[/bsf-info-box][bsf-info-box icon=\"icomoon-the7-font-the7-mail-01\" icon_size=\"32\" icon_color=\"#059444\" title=\"Email Address\"]info@farmchemie.com[/bsf-info-box][bsf-info-box icon=\"icomoon-the7-font-the7-map-02\" icon_size=\"32\" icon_color=\"#059444\" title=\"Address\"]No. 78, Industrial Zone, Katuwana, Homagama[/bsf-info-box][/vc_column_inner][vc_column_inner width=\"1/3\"][contact-form-7 id=\"12\"][ultimate_heading main_heading=\"Contact Us\" heading_tag=\"h3\" alignment=\"left\" main_heading_margin=\"margin-bottom:35px;\"][/ultimate_heading][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_gmaps link=\"#E-8_JTNDaWZyYW1lJTIwc3JjJTNEJTIyaHR0cHMlM0ElMkYlMkZ3d3cuZ29vZ2xlLmNvbSUyRm1hcHMlMkZlbWJlZCUzRnBiJTNEJTIxMW0xOCUyMTFtMTIlMjExbTMlMjExZDM5NjEuNDkyNzAyNjUzODQyJTIxMmQ4MC4wMDU1NTMyNTA5NzkzNiUyMTNkNi44MzEzNzM2MjEzNzcxMSUyMTJtMyUyMTFmMCUyMTJmMCUyMTNmMCUyMTNtMiUyMTFpMTAyNCUyMTJpNzY4JTIxNGYxMy4xJTIxM20zJTIxMW0yJTIxMXMweDNhZTI1MWY2M2RlZjc3NGYlMjUzQTB4OTI5MjYyZGQ3OGNmZjViZSUyMTJzRmFybWNoZW1pZSUyNTIwJTI4UHJpdmF0ZSUyOSUyNTIwTGltaXRlZCUyMTVlMCUyMTNtMiUyMTFzZW4lMjEyc2xrJTIxNHYxNjY4NzQ0NzQ2NDk0JTIxNW0yJTIxMXNlbiUyMTJzbGslMjIlMjB3aWR0aCUzRCUyMjE5MjAlMjIlMjBoZWlnaHQlM0QlMjI1MDAlMjIlMjBzdHlsZSUzRCUyMmJvcmRlciUzQTAlM0IlMjIlMjBhbGxvd2Z1bGxzY3JlZW4lM0QlMjIlMjIlMjBsb2FkaW5nJTNEJTIybGF6eSUyMiUyMHJlZmVycmVycG9saWN5JTNEJTIybm8tcmVmZXJyZXItd2hlbi1kb3duZ3JhZGUlMjIlM0UlM0MlMkZpZnJhbWUlM0U=\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row]','Contact Us','','inherit','closed','closed','','2622-revision-v1','','','2023-09-12 14:23:18','2023-09-12 14:23:18','',2622,'https://farmchemie.yasithawd.com/?p=3570',0,'revision','',0),(3571,1,'2023-09-12 14:24:33','2023-09-12 14:24:33','[vc_row full_width=\"stretch_row_content\"][vc_column width=\"1/3\"][/vc_column][vc_column width=\"1/3\"][/vc_column][vc_column width=\"1/3\"][/vc_column][/vc_row][vc_row full_width=\"stretch_row_content\" equal_height=\"yes\" css=\".vc_custom_1694528669026{margin-top: 35px !important;margin-right: 5% !important;margin-left: 5% !important;}\"][vc_column][vc_row_inner][vc_column_inner width=\"1/3\"][bsf-info-box icon=\"icomoon-the7-font-the7-phone-04\" icon_size=\"32\" icon_color=\"#059444\" title=\"Phone\"]<strong>+94 (0) 11 298 3922</strong>[/bsf-info-box][bsf-info-box icon=\"icomoon-the7-font-the7-mail-01\" icon_size=\"32\" icon_color=\"#059444\" title=\"Email Address\"]info@farmchemie.com[/bsf-info-box][bsf-info-box icon=\"icomoon-the7-font-the7-map-02\" icon_size=\"32\" icon_color=\"#059444\" title=\"Address\"]No. 78, Industrial Zone, Katuwana, Homagama[/bsf-info-box][/vc_column_inner][vc_column_inner width=\"1/3\"][contact-form-7 id=\"12\"][ultimate_heading main_heading=\"Contact Us\" heading_tag=\"h3\" alignment=\"left\" main_heading_margin=\"margin-bottom:35px;\"][/ultimate_heading][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_gmaps link=\"#E-8_JTNDaWZyYW1lJTIwc3JjJTNEJTIyaHR0cHMlM0ElMkYlMkZ3d3cuZ29vZ2xlLmNvbSUyRm1hcHMlMkZlbWJlZCUzRnBiJTNEJTIxMW0xOCUyMTFtMTIlMjExbTMlMjExZDM5NjEuNDkyNzAyNjUzODQyJTIxMmQ4MC4wMDU1NTMyNTA5NzkzNiUyMTNkNi44MzEzNzM2MjEzNzcxMSUyMTJtMyUyMTFmMCUyMTJmMCUyMTNmMCUyMTNtMiUyMTFpMTAyNCUyMTJpNzY4JTIxNGYxMy4xJTIxM20zJTIxMW0yJTIxMXMweDNhZTI1MWY2M2RlZjc3NGYlMjUzQTB4OTI5MjYyZGQ3OGNmZjViZSUyMTJzRmFybWNoZW1pZSUyNTIwJTI4UHJpdmF0ZSUyOSUyNTIwTGltaXRlZCUyMTVlMCUyMTNtMiUyMTFzZW4lMjEyc2xrJTIxNHYxNjY4NzQ0NzQ2NDk0JTIxNW0yJTIxMXNlbiUyMTJzbGslMjIlMjB3aWR0aCUzRCUyMjE5MjAlMjIlMjBoZWlnaHQlM0QlMjI1MDAlMjIlMjBzdHlsZSUzRCUyMmJvcmRlciUzQTAlM0IlMjIlMjBhbGxvd2Z1bGxzY3JlZW4lM0QlMjIlMjIlMjBsb2FkaW5nJTNEJTIybGF6eSUyMiUyMHJlZmVycmVycG9saWN5JTNEJTIybm8tcmVmZXJyZXItd2hlbi1kb3duZ3JhZGUlMjIlM0UlM0MlMkZpZnJhbWUlM0U=\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row]','Contact Us','','inherit','closed','closed','','2622-revision-v1','','','2023-09-12 14:24:33','2023-09-12 14:24:33','',2622,'https://farmchemie.yasithawd.com/?p=3571',0,'revision','',0),(3572,1,'2023-09-12 14:25:09','2023-09-12 14:25:09','[vc_row full_width=\"stretch_row_content\"][vc_column width=\"1/3\"][/vc_column][vc_column width=\"1/3\"][/vc_column][vc_column width=\"1/3\"][/vc_column][/vc_row][vc_row full_width=\"stretch_row_content\" equal_height=\"yes\" css=\".vc_custom_1694528702621{margin-top: 35px !important;padding-right: 5% !important;padding-left: 5% !important;}\"][vc_column][vc_row_inner][vc_column_inner width=\"1/3\"][bsf-info-box icon=\"icomoon-the7-font-the7-phone-04\" icon_size=\"32\" icon_color=\"#059444\" title=\"Phone\"]<strong>+94 (0) 11 298 3922</strong>[/bsf-info-box][bsf-info-box icon=\"icomoon-the7-font-the7-mail-01\" icon_size=\"32\" icon_color=\"#059444\" title=\"Email Address\"]info@farmchemie.com[/bsf-info-box][bsf-info-box icon=\"icomoon-the7-font-the7-map-02\" icon_size=\"32\" icon_color=\"#059444\" title=\"Address\"]No. 78, Industrial Zone, Katuwana, Homagama[/bsf-info-box][/vc_column_inner][vc_column_inner width=\"1/3\"][contact-form-7 id=\"12\"][ultimate_heading main_heading=\"Contact Us\" heading_tag=\"h3\" alignment=\"left\" main_heading_margin=\"margin-bottom:35px;\"][/ultimate_heading][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_gmaps link=\"#E-8_JTNDaWZyYW1lJTIwc3JjJTNEJTIyaHR0cHMlM0ElMkYlMkZ3d3cuZ29vZ2xlLmNvbSUyRm1hcHMlMkZlbWJlZCUzRnBiJTNEJTIxMW0xOCUyMTFtMTIlMjExbTMlMjExZDM5NjEuNDkyNzAyNjUzODQyJTIxMmQ4MC4wMDU1NTMyNTA5NzkzNiUyMTNkNi44MzEzNzM2MjEzNzcxMSUyMTJtMyUyMTFmMCUyMTJmMCUyMTNmMCUyMTNtMiUyMTFpMTAyNCUyMTJpNzY4JTIxNGYxMy4xJTIxM20zJTIxMW0yJTIxMXMweDNhZTI1MWY2M2RlZjc3NGYlMjUzQTB4OTI5MjYyZGQ3OGNmZjViZSUyMTJzRmFybWNoZW1pZSUyNTIwJTI4UHJpdmF0ZSUyOSUyNTIwTGltaXRlZCUyMTVlMCUyMTNtMiUyMTFzZW4lMjEyc2xrJTIxNHYxNjY4NzQ0NzQ2NDk0JTIxNW0yJTIxMXNlbiUyMTJzbGslMjIlMjB3aWR0aCUzRCUyMjE5MjAlMjIlMjBoZWlnaHQlM0QlMjI1MDAlMjIlMjBzdHlsZSUzRCUyMmJvcmRlciUzQTAlM0IlMjIlMjBhbGxvd2Z1bGxzY3JlZW4lM0QlMjIlMjIlMjBsb2FkaW5nJTNEJTIybGF6eSUyMiUyMHJlZmVycmVycG9saWN5JTNEJTIybm8tcmVmZXJyZXItd2hlbi1kb3duZ3JhZGUlMjIlM0UlM0MlMkZpZnJhbWUlM0U=\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row]','Contact Us','','inherit','closed','closed','','2622-revision-v1','','','2023-09-12 14:25:09','2023-09-12 14:25:09','',2622,'https://farmchemie.yasithawd.com/?p=3572',0,'revision','',0),(3573,1,'2023-09-12 16:20:38','2023-09-12 16:20:38','[vc_row full_width=\"stretch_row_content\" equal_height=\"yes\" css=\".vc_custom_1694534815998{margin-top: 35px !important;margin-bottom: 35px !important;padding-right: 5% !important;padding-left: 5% !important;}\"][vc_column][vc_row_inner][vc_column_inner width=\"1/3\"][bsf-info-box icon=\"icomoon-the7-font-the7-phone-04\" icon_size=\"32\" icon_color=\"#059444\" title=\"Phone\"]<strong>+94 (0) 11 298 3922</strong>[/bsf-info-box][bsf-info-box icon=\"icomoon-the7-font-the7-mail-01\" icon_size=\"32\" icon_color=\"#059444\" title=\"Email Address\"]info@farmchemie.com[/bsf-info-box][bsf-info-box icon=\"icomoon-the7-font-the7-map-02\" icon_size=\"32\" icon_color=\"#059444\" title=\"Address\"]No. 78, Industrial Zone, Katuwana, Homagama[/bsf-info-box][/vc_column_inner][vc_column_inner width=\"1/3\"][contact-form-7 id=\"12\"][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_gmaps link=\"#E-8_JTNDaWZyYW1lJTIwc3JjJTNEJTIyaHR0cHMlM0ElMkYlMkZ3d3cuZ29vZ2xlLmNvbSUyRm1hcHMlMkZlbWJlZCUzRnBiJTNEJTIxMW0xOCUyMTFtMTIlMjExbTMlMjExZDM5NjEuNDkyNzAyNjUzODQyJTIxMmQ4MC4wMDU1NTMyNTA5NzkzNiUyMTNkNi44MzEzNzM2MjEzNzcxMSUyMTJtMyUyMTFmMCUyMTJmMCUyMTNmMCUyMTNtMiUyMTFpMTAyNCUyMTJpNzY4JTIxNGYxMy4xJTIxM20zJTIxMW0yJTIxMXMweDNhZTI1MWY2M2RlZjc3NGYlMjUzQTB4OTI5MjYyZGQ3OGNmZjViZSUyMTJzRmFybWNoZW1pZSUyNTIwJTI4UHJpdmF0ZSUyOSUyNTIwTGltaXRlZCUyMTVlMCUyMTNtMiUyMTFzZW4lMjEyc2xrJTIxNHYxNjY4NzQ0NzQ2NDk0JTIxNW0yJTIxMXNlbiUyMTJzbGslMjIlMjB3aWR0aCUzRCUyMjE5MjAlMjIlMjBoZWlnaHQlM0QlMjI1MDAlMjIlMjBzdHlsZSUzRCUyMmJvcmRlciUzQTAlM0IlMjIlMjBhbGxvd2Z1bGxzY3JlZW4lM0QlMjIlMjIlMjBsb2FkaW5nJTNEJTIybGF6eSUyMiUyMHJlZmVycmVycG9saWN5JTNEJTIybm8tcmVmZXJyZXItd2hlbi1kb3duZ3JhZGUlMjIlM0UlM0MlMkZpZnJhbWUlM0U=\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row full_width=\"stretch_row_content\" css=\".vc_custom_1694534830702{margin-top: 35px !important;margin-bottom: 35px !important;}\"][vc_column][vc_separator color=\"custom\" accent_color=\"#823194\"][ultimate_heading main_heading=\"Inquries\" main_heading_color=\"#089548\" margin_design_tab_text=\"\" main_heading_margin=\"margin-top:35px;margin-bottom:35px;\"][/ultimate_heading][/vc_column][/vc_row][vc_row][vc_column width=\"1/3\"][bsf-info-box icon=\"icomoon-the7-font-the7-mail-01\" icon_size=\"32\" icon_color=\"#039447\" icon_style=\"circle\" title=\"Managing Director\" read_more=\"box\" link=\"url:mailto%3Auditha%40farmchemie.com\" pos=\"square_box\" box_border_style=\"solid\" box_border_width=\"1\" box_border_color=\"#823194\" title_font_color=\"#039447\" desc_font_color=\"#039447\" title_font_size=\"desktop:20px;\"]Mr.Uditha Wanigasinghe\r\n\r\nuditha@farmchemie.com\r\n\r\n+94 777272492[/bsf-info-box][/vc_column][vc_column width=\"1/3\"][bsf-info-box icon=\"icomoon-the7-font-the7-mail-01\" icon_size=\"32\" icon_color=\"#039447\" icon_style=\"circle\" title=\"Director- Marketing\" read_more=\"box\" link=\"url:mailto%3Aajith%40farmchemie.com\" pos=\"square_box\" box_border_style=\"solid\" box_border_width=\"1\" box_border_color=\"#823194\" title_font_color=\"#039447\" desc_font_color=\"#039447\" title_font_size=\"desktop:20px;\"]Mr.Ajith Welianga\r\n\r\najith@farmchemie.com\r\n\r\n+94 777386662[/bsf-info-box][/vc_column][vc_column width=\"1/3\"][bsf-info-box icon=\"icomoon-the7-font-the7-mail-01\" icon_size=\"32\" icon_color=\"#039447\" icon_style=\"circle\" title=\"Director – Finance\" read_more=\"box\" link=\"url:mailto%3Afinance%40farmchemie.com\" pos=\"square_box\" box_border_style=\"solid\" box_border_width=\"1\" box_border_color=\"#823194\" title_font_color=\"#039447\" desc_font_color=\"#039447\" title_font_size=\"desktop:20px;\"]Ms.Ridma Herath\r\n\r\nfinance@farmchemie.com\r\n\r\n+94 774825188[/bsf-info-box][/vc_column][/vc_row]','Contact Us','','inherit','closed','closed','','2622-revision-v1','','','2023-09-12 16:20:38','2023-09-12 16:20:38','',2622,'https://farmchemie.yasithawd.com/?p=3573',0,'revision','',0),(3574,1,'2023-09-12 16:21:35','2023-09-12 16:21:35','[vc_row full_width=\"stretch_row_content\" equal_height=\"yes\" css=\".vc_custom_1694535688302{margin-top: 35px !important;margin-bottom: 35px !important;padding-right: 10% !important;padding-left: 10% !important;}\"][vc_column][vc_row_inner][vc_column_inner width=\"1/3\"][bsf-info-box icon=\"icomoon-the7-font-the7-phone-04\" icon_size=\"32\" icon_color=\"#059444\" title=\"Phone\"]<strong>+94 (0) 11 298 3922</strong>[/bsf-info-box][bsf-info-box icon=\"icomoon-the7-font-the7-mail-01\" icon_size=\"32\" icon_color=\"#059444\" title=\"Email Address\"]info@farmchemie.com[/bsf-info-box][bsf-info-box icon=\"icomoon-the7-font-the7-map-02\" icon_size=\"32\" icon_color=\"#059444\" title=\"Address\"]No. 78, Industrial Zone, Katuwana, Homagama[/bsf-info-box][/vc_column_inner][vc_column_inner width=\"1/3\"][contact-form-7 id=\"12\"][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_gmaps link=\"#E-8_JTNDaWZyYW1lJTIwc3JjJTNEJTIyaHR0cHMlM0ElMkYlMkZ3d3cuZ29vZ2xlLmNvbSUyRm1hcHMlMkZlbWJlZCUzRnBiJTNEJTIxMW0xOCUyMTFtMTIlMjExbTMlMjExZDM5NjEuNDkyNzAyNjUzODQyJTIxMmQ4MC4wMDU1NTMyNTA5NzkzNiUyMTNkNi44MzEzNzM2MjEzNzcxMSUyMTJtMyUyMTFmMCUyMTJmMCUyMTNmMCUyMTNtMiUyMTFpMTAyNCUyMTJpNzY4JTIxNGYxMy4xJTIxM20zJTIxMW0yJTIxMXMweDNhZTI1MWY2M2RlZjc3NGYlMjUzQTB4OTI5MjYyZGQ3OGNmZjViZSUyMTJzRmFybWNoZW1pZSUyNTIwJTI4UHJpdmF0ZSUyOSUyNTIwTGltaXRlZCUyMTVlMCUyMTNtMiUyMTFzZW4lMjEyc2xrJTIxNHYxNjY4NzQ0NzQ2NDk0JTIxNW0yJTIxMXNlbiUyMTJzbGslMjIlMjB3aWR0aCUzRCUyMjE5MjAlMjIlMjBoZWlnaHQlM0QlMjI1MDAlMjIlMjBzdHlsZSUzRCUyMmJvcmRlciUzQTAlM0IlMjIlMjBhbGxvd2Z1bGxzY3JlZW4lM0QlMjIlMjIlMjBsb2FkaW5nJTNEJTIybGF6eSUyMiUyMHJlZmVycmVycG9saWN5JTNEJTIybm8tcmVmZXJyZXItd2hlbi1kb3duZ3JhZGUlMjIlM0UlM0MlMkZpZnJhbWUlM0U=\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row full_width=\"stretch_row_content\" css=\".vc_custom_1694534830702{margin-top: 35px !important;margin-bottom: 35px !important;}\"][vc_column][vc_separator color=\"custom\" accent_color=\"#823194\"][ultimate_heading main_heading=\"Inquries\" main_heading_color=\"#089548\" main_heading_margin=\"margin-top:35px;margin-bottom:35px;\"][/ultimate_heading][/vc_column][/vc_row][vc_row][vc_column width=\"1/3\"][bsf-info-box icon=\"icomoon-the7-font-the7-mail-01\" icon_size=\"32\" icon_color=\"#039447\" icon_style=\"circle\" title=\"Managing Director\" read_more=\"box\" link=\"url:mailto%3Auditha%40farmchemie.com\" pos=\"square_box\" box_border_style=\"solid\" box_border_width=\"1\" box_border_color=\"#823194\" title_font_color=\"#039447\" desc_font_color=\"#039447\" title_font_size=\"desktop:20px;\"]Mr.Uditha Wanigasinghe\r\n\r\nuditha@farmchemie.com\r\n\r\n+94 777272492[/bsf-info-box][/vc_column][vc_column width=\"1/3\"][bsf-info-box icon=\"icomoon-the7-font-the7-mail-01\" icon_size=\"32\" icon_color=\"#039447\" icon_style=\"circle\" title=\"Director- Marketing\" read_more=\"box\" link=\"url:mailto%3Aajith%40farmchemie.com\" pos=\"square_box\" box_border_style=\"solid\" box_border_width=\"1\" box_border_color=\"#823194\" title_font_color=\"#039447\" desc_font_color=\"#039447\" title_font_size=\"desktop:20px;\"]Mr.Ajith Welianga\r\n\r\najith@farmchemie.com\r\n\r\n+94 777386662[/bsf-info-box][/vc_column][vc_column width=\"1/3\"][bsf-info-box icon=\"icomoon-the7-font-the7-mail-01\" icon_size=\"32\" icon_color=\"#039447\" icon_style=\"circle\" title=\"Director – Finance\" read_more=\"box\" link=\"url:mailto%3Afinance%40farmchemie.com\" pos=\"square_box\" box_border_style=\"solid\" box_border_width=\"1\" box_border_color=\"#823194\" title_font_color=\"#039447\" desc_font_color=\"#039447\" title_font_size=\"desktop:20px;\"]Ms.Ridma Herath\r\n\r\nfinance@farmchemie.com\r\n\r\n+94 774825188[/bsf-info-box][/vc_column][/vc_row]','Contact Us','','inherit','closed','closed','','2622-revision-v1','','','2023-09-12 16:21:35','2023-09-12 16:21:35','',2622,'https://farmchemie.yasithawd.com/?p=3574',0,'revision','',0),(3575,1,'2023-09-12 16:28:00','2023-09-12 16:28:00','[vc_row full_width=\"stretch_row_content\" equal_height=\"yes\" css=\".vc_custom_1694535688302{margin-top: 35px !important;margin-bottom: 35px !important;padding-right: 10% !important;padding-left: 10% !important;}\"][vc_column][vc_row_inner][vc_column_inner width=\"1/3\"][bsf-info-box icon=\"icomoon-the7-font-the7-phone-04\" icon_size=\"32\" icon_color=\"#059444\" title=\"Phone\"]<strong>+94 (0) 11 298 3922</strong>[/bsf-info-box][bsf-info-box icon=\"icomoon-the7-font-the7-mail-01\" icon_size=\"32\" icon_color=\"#059444\" title=\"Email Address\"]info@farmchemie.com[/bsf-info-box][bsf-info-box icon=\"icomoon-the7-font-the7-map-02\" icon_size=\"32\" icon_color=\"#059444\" title=\"Address\"]No. 78, Industrial Zone, Katuwana, Homagama[/bsf-info-box][/vc_column_inner][vc_column_inner width=\"1/3\"][contact-form-7 id=\"12\"][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_gmaps link=\"#E-8_JTNDaWZyYW1lJTIwc3JjJTNEJTIyaHR0cHMlM0ElMkYlMkZ3d3cuZ29vZ2xlLmNvbSUyRm1hcHMlMkZlbWJlZCUzRnBiJTNEJTIxMW0xOCUyMTFtMTIlMjExbTMlMjExZDM5NjEuNDkyNzAyNjUzODQyJTIxMmQ4MC4wMDU1NTMyNTA5NzkzNiUyMTNkNi44MzEzNzM2MjEzNzcxMSUyMTJtMyUyMTFmMCUyMTJmMCUyMTNmMCUyMTNtMiUyMTFpMTAyNCUyMTJpNzY4JTIxNGYxMy4xJTIxM20zJTIxMW0yJTIxMXMweDNhZTI1MWY2M2RlZjc3NGYlMjUzQTB4OTI5MjYyZGQ3OGNmZjViZSUyMTJzRmFybWNoZW1pZSUyNTIwJTI4UHJpdmF0ZSUyOSUyNTIwTGltaXRlZCUyMTVlMCUyMTNtMiUyMTFzZW4lMjEyc2xrJTIxNHYxNjY4NzQ0NzQ2NDk0JTIxNW0yJTIxMXNlbiUyMTJzbGslMjIlMjB3aWR0aCUzRCUyMjE5MjAlMjIlMjBoZWlnaHQlM0QlMjI1MDAlMjIlMjBzdHlsZSUzRCUyMmJvcmRlciUzQTAlM0IlMjIlMjBhbGxvd2Z1bGxzY3JlZW4lM0QlMjIlMjIlMjBsb2FkaW5nJTNEJTIybGF6eSUyMiUyMHJlZmVycmVycG9saWN5JTNEJTIybm8tcmVmZXJyZXItd2hlbi1kb3duZ3JhZGUlMjIlM0UlM0MlMkZpZnJhbWUlM0U=\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row full_width=\"stretch_row_content\" css=\".vc_custom_1694534830702{margin-top: 35px !important;margin-bottom: 35px !important;}\"][vc_column][vc_separator color=\"custom\" accent_color=\"#823194\"][ultimate_heading main_heading=\"Inquries\" main_heading_color=\"#089548\" main_heading_margin=\"margin-top:35px;margin-bottom:35px;\"][/ultimate_heading][/vc_column][/vc_row][vc_row][vc_column width=\"1/3\"][bsf-info-box icon=\"icomoon-the7-font-the7-mail-01\" icon_size=\"32\" icon_color=\"#039447\" icon_style=\"circle\" title=\"Managing Director\" read_more=\"box\" link=\"url:mailto%3Auditha%40farmchemie.com\" pos=\"square_box\" box_border_style=\"solid\" box_border_width=\"1\" box_border_color=\"#823194\" title_font_color=\"#039447\" desc_font_color=\"#039447\" title_font_size=\"desktop:20px;\"]Mr.Uditha Wanigasinghe\r\n\r\nuditha@farmchemie.com\r\n\r\n+94 777272492[/bsf-info-box][/vc_column][vc_column width=\"1/3\"][bsf-info-box icon=\"icomoon-the7-font-the7-mail-01\" icon_size=\"32\" icon_color=\"#039447\" icon_style=\"circle\" title=\"Director- Marketing\" read_more=\"box\" link=\"url:mailto%3Aajith%40farmchemie.com\" pos=\"square_box\" box_border_style=\"solid\" box_border_width=\"1\" box_border_color=\"#823194\" title_font_color=\"#039447\" desc_font_color=\"#039447\" title_font_size=\"desktop:20px;\"]Mr.Ajith Welianga\r\n\r\najith@farmchemie.com\r\n\r\n+94 777386662[/bsf-info-box][/vc_column][vc_column width=\"1/3\"][bsf-info-box icon=\"icomoon-the7-font-the7-mail-01\" icon_size=\"32\" icon_color=\"#039447\" icon_style=\"circle\" title=\"Director – Finance\" read_more=\"box\" link=\"url:mailto%3Afinance%40farmchemie.com\" pos=\"square_box\" box_border_style=\"solid\" box_border_width=\"1\" box_border_color=\"#823194\" title_font_color=\"#039447\" desc_font_color=\"#039447\" title_font_size=\"desktop:20px;\"]Ms.Ridma Herath\r\n\r\nfinance@farmchemie.com\r\n\r\n+94 774825188[/bsf-info-box][/vc_column][/vc_row][vc_row][vc_column width=\"1/3\"][bsf-info-box icon=\"icomoon-the7-font-the7-mail-01\" icon_size=\"32\" icon_color=\"#039447\" icon_style=\"circle\" title=\"Director – Production\" read_more=\"box\" link=\"url:mailto%3Afactory%40farmchemie.com\" pos=\"square_box\" box_border_style=\"solid\" box_border_width=\"1\" box_border_color=\"#823194\" title_font_color=\"#039447\" desc_font_color=\"#039447\" title_font_size=\"desktop:20px;\"]Mr.Chanaka Indrajith\r\n\r\nfactory@farmchemie.com\r\n\r\n+94 773622546[/bsf-info-box][/vc_column][vc_column width=\"1/3\"][bsf-info-box icon=\"icomoon-the7-font-the7-mail-01\" icon_size=\"32\" icon_color=\"#039447\" icon_style=\"circle\" title=\"Director - Sales\" read_more=\"box\" link=\"url:mailto%3Asampath%40farmchemie.com\" pos=\"square_box\" box_border_style=\"solid\" box_border_width=\"1\" box_border_color=\"#823194\" title_font_color=\"#039447\" desc_font_color=\"#039447\" title_font_size=\"desktop:20px;\"]Mr.Sampath Gunathailake\r\n\r\nsampath@farmchemie.com\r\n\r\n+94 773159125[/bsf-info-box][/vc_column][vc_column width=\"1/3\"][bsf-info-box icon=\"icomoon-the7-font-the7-mail-01\" icon_size=\"32\" icon_color=\"#039447\" icon_style=\"circle\" title=\"General Manager - Technical Services\" read_more=\"box\" link=\"url:mailto%3Atechnical%40farmchemie.com\" pos=\"square_box\" box_border_style=\"solid\" box_border_width=\"1\" box_border_color=\"#823194\" title_font_color=\"#039447\" desc_font_color=\"#039447\" title_font_size=\"desktop:20px;\"]Dr. Nalin De Silva\r\n\r\ntechnical@farmchemie.com\r\n\r\n+94 777585748[/bsf-info-box][/vc_column][/vc_row]','Contact Us','','inherit','closed','closed','','2622-revision-v1','','','2023-09-12 16:28:00','2023-09-12 16:28:00','',2622,'https://farmchemie.yasithawd.com/?p=3575',0,'revision','',0),(3577,1,'2023-09-12 16:31:25','2023-09-12 16:31:25','[vc_row full_width=\"stretch_row_content\" equal_height=\"yes\" css=\".vc_custom_1694535688302{margin-top: 35px !important;margin-bottom: 35px !important;padding-right: 10% !important;padding-left: 10% !important;}\"][vc_column][vc_row_inner][vc_column_inner width=\"1/3\"][bsf-info-box icon=\"icomoon-the7-font-the7-phone-04\" icon_size=\"32\" icon_color=\"#059444\" title=\"Phone\"]<strong>+94 (0) 11 298 3922</strong>[/bsf-info-box][bsf-info-box icon=\"icomoon-the7-font-the7-mail-01\" icon_size=\"32\" icon_color=\"#059444\" title=\"Email Address\"]info@farmchemie.com[/bsf-info-box][bsf-info-box icon=\"icomoon-the7-font-the7-map-02\" icon_size=\"32\" icon_color=\"#059444\" title=\"Address\"]No. 78, Industrial Zone, Katuwana, Homagama[/bsf-info-box][/vc_column_inner][vc_column_inner width=\"1/3\"][contact-form-7 id=\"12\"][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_gmaps link=\"#E-8_JTNDaWZyYW1lJTIwc3JjJTNEJTIyaHR0cHMlM0ElMkYlMkZ3d3cuZ29vZ2xlLmNvbSUyRm1hcHMlMkZlbWJlZCUzRnBiJTNEJTIxMW0xOCUyMTFtMTIlMjExbTMlMjExZDM5NjEuNDkyNzAyNjUzODQyJTIxMmQ4MC4wMDU1NTMyNTA5NzkzNiUyMTNkNi44MzEzNzM2MjEzNzcxMSUyMTJtMyUyMTFmMCUyMTJmMCUyMTNmMCUyMTNtMiUyMTFpMTAyNCUyMTJpNzY4JTIxNGYxMy4xJTIxM20zJTIxMW0yJTIxMXMweDNhZTI1MWY2M2RlZjc3NGYlMjUzQTB4OTI5MjYyZGQ3OGNmZjViZSUyMTJzRmFybWNoZW1pZSUyNTIwJTI4UHJpdmF0ZSUyOSUyNTIwTGltaXRlZCUyMTVlMCUyMTNtMiUyMTFzZW4lMjEyc2xrJTIxNHYxNjY4NzQ0NzQ2NDk0JTIxNW0yJTIxMXNlbiUyMTJzbGslMjIlMjB3aWR0aCUzRCUyMjE5MjAlMjIlMjBoZWlnaHQlM0QlMjI1MDAlMjIlMjBzdHlsZSUzRCUyMmJvcmRlciUzQTAlM0IlMjIlMjBhbGxvd2Z1bGxzY3JlZW4lM0QlMjIlMjIlMjBsb2FkaW5nJTNEJTIybGF6eSUyMiUyMHJlZmVycmVycG9saWN5JTNEJTIybm8tcmVmZXJyZXItd2hlbi1kb3duZ3JhZGUlMjIlM0UlM0MlMkZpZnJhbWUlM0U=\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row full_width=\"stretch_row_content\" css=\".vc_custom_1694534830702{margin-top: 35px !important;margin-bottom: 35px !important;}\"][vc_column][vc_separator color=\"custom\" accent_color=\"#823194\"][ultimate_heading main_heading=\"Inquries\" main_heading_color=\"#089548\" main_heading_margin=\"margin-top:35px;\"][/ultimate_heading][/vc_column][/vc_row][vc_row][vc_column width=\"1/3\"][bsf-info-box icon=\"icomoon-the7-font-the7-mail-01\" icon_size=\"32\" icon_color=\"#039447\" icon_style=\"circle\" title=\"Managing Director\" read_more=\"box\" link=\"url:mailto%3Auditha%40farmchemie.com\" pos=\"square_box\" box_border_style=\"solid\" box_border_width=\"1\" box_border_color=\"#823194\" title_font_color=\"#039447\" desc_font_color=\"#039447\" title_font_size=\"desktop:20px;\"]Mr.Uditha Wanigasinghe\r\n\r\nuditha@farmchemie.com\r\n\r\n+94 777272492[/bsf-info-box][/vc_column][vc_column width=\"1/3\"][bsf-info-box icon=\"icomoon-the7-font-the7-mail-01\" icon_size=\"32\" icon_color=\"#039447\" icon_style=\"circle\" title=\"Director- Marketing\" read_more=\"box\" link=\"url:mailto%3Aajith%40farmchemie.com\" pos=\"square_box\" box_border_style=\"solid\" box_border_width=\"1\" box_border_color=\"#823194\" title_font_color=\"#039447\" desc_font_color=\"#039447\" title_font_size=\"desktop:20px;\"]Mr.Ajith Welianga\r\n\r\najith@farmchemie.com\r\n\r\n+94 777386662[/bsf-info-box][/vc_column][vc_column width=\"1/3\"][bsf-info-box icon=\"icomoon-the7-font-the7-mail-01\" icon_size=\"32\" icon_color=\"#039447\" icon_style=\"circle\" title=\"Director – Finance\" read_more=\"box\" link=\"url:mailto%3Afinance%40farmchemie.com\" pos=\"square_box\" box_border_style=\"solid\" box_border_width=\"1\" box_border_color=\"#823194\" title_font_color=\"#039447\" desc_font_color=\"#039447\" title_font_size=\"desktop:20px;\"]Ms.Ridma Herath\r\n\r\nfinance@farmchemie.com\r\n\r\n+94 774825188[/bsf-info-box][/vc_column][/vc_row][vc_row][vc_column width=\"1/3\"][bsf-info-box icon=\"icomoon-the7-font-the7-mail-01\" icon_size=\"32\" icon_color=\"#039447\" icon_style=\"circle\" title=\"Director – Production\" read_more=\"box\" link=\"url:mailto%3Afactory%40farmchemie.com\" pos=\"square_box\" box_border_style=\"solid\" box_border_width=\"1\" box_border_color=\"#823194\" title_font_color=\"#039447\" desc_font_color=\"#039447\" title_font_size=\"desktop:20px;\"]Mr.Chanaka Indrajith\r\n\r\nfactory@farmchemie.com\r\n\r\n+94 773622546[/bsf-info-box][/vc_column][vc_column width=\"1/3\"][bsf-info-box icon=\"icomoon-the7-font-the7-mail-01\" icon_size=\"32\" icon_color=\"#039447\" icon_style=\"circle\" title=\"Director - Sales\" read_more=\"box\" link=\"url:mailto%3Asampath%40farmchemie.com\" pos=\"square_box\" box_border_style=\"solid\" box_border_width=\"1\" box_border_color=\"#823194\" title_font_color=\"#039447\" desc_font_color=\"#039447\" title_font_size=\"desktop:20px;\"]Mr.Sampath Gunathailake\r\n\r\nsampath@farmchemie.com\r\n\r\n+94 773159125[/bsf-info-box][/vc_column][vc_column width=\"1/3\"][bsf-info-box icon=\"icomoon-the7-font-the7-mail-01\" icon_size=\"32\" icon_color=\"#039447\" icon_style=\"circle\" title=\"Technical Services\" read_more=\"box\" link=\"url:mailto%3Atechnical%40farmchemie.com\" pos=\"square_box\" box_border_style=\"solid\" box_border_width=\"1\" box_border_color=\"#823194\" title_font_color=\"#039447\" desc_font_color=\"#039447\" title_font_size=\"desktop:20px;\"]Dr. Nalin De Silva\r\n\r\ntechnical@farmchemie.com\r\n\r\n+94 777585748[/bsf-info-box][/vc_column][/vc_row]','Contact Us','','inherit','closed','closed','','2622-revision-v1','','','2023-09-12 16:31:25','2023-09-12 16:31:25','',2622,'https://farmchemie.yasithawd.com/?p=3577',0,'revision','',0);
INSERT INTO `wplf_posts` VALUES (3576,1,'2023-09-12 16:28:25','2023-09-12 16:28:25','[vc_row full_width=\"stretch_row_content\" equal_height=\"yes\" css=\".vc_custom_1694535688302{margin-top: 35px !important;margin-bottom: 35px !important;padding-right: 10% !important;padding-left: 10% !important;}\"][vc_column][vc_row_inner][vc_column_inner width=\"1/3\"][bsf-info-box icon=\"icomoon-the7-font-the7-phone-04\" icon_size=\"32\" icon_color=\"#059444\" title=\"Phone\"]<strong>+94 (0) 11 298 3922</strong>[/bsf-info-box][bsf-info-box icon=\"icomoon-the7-font-the7-mail-01\" icon_size=\"32\" icon_color=\"#059444\" title=\"Email Address\"]info@farmchemie.com[/bsf-info-box][bsf-info-box icon=\"icomoon-the7-font-the7-map-02\" icon_size=\"32\" icon_color=\"#059444\" title=\"Address\"]No. 78, Industrial Zone, Katuwana, Homagama[/bsf-info-box][/vc_column_inner][vc_column_inner width=\"1/3\"][contact-form-7 id=\"12\"][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_gmaps link=\"#E-8_JTNDaWZyYW1lJTIwc3JjJTNEJTIyaHR0cHMlM0ElMkYlMkZ3d3cuZ29vZ2xlLmNvbSUyRm1hcHMlMkZlbWJlZCUzRnBiJTNEJTIxMW0xOCUyMTFtMTIlMjExbTMlMjExZDM5NjEuNDkyNzAyNjUzODQyJTIxMmQ4MC4wMDU1NTMyNTA5NzkzNiUyMTNkNi44MzEzNzM2MjEzNzcxMSUyMTJtMyUyMTFmMCUyMTJmMCUyMTNmMCUyMTNtMiUyMTFpMTAyNCUyMTJpNzY4JTIxNGYxMy4xJTIxM20zJTIxMW0yJTIxMXMweDNhZTI1MWY2M2RlZjc3NGYlMjUzQTB4OTI5MjYyZGQ3OGNmZjViZSUyMTJzRmFybWNoZW1pZSUyNTIwJTI4UHJpdmF0ZSUyOSUyNTIwTGltaXRlZCUyMTVlMCUyMTNtMiUyMTFzZW4lMjEyc2xrJTIxNHYxNjY4NzQ0NzQ2NDk0JTIxNW0yJTIxMXNlbiUyMTJzbGslMjIlMjB3aWR0aCUzRCUyMjE5MjAlMjIlMjBoZWlnaHQlM0QlMjI1MDAlMjIlMjBzdHlsZSUzRCUyMmJvcmRlciUzQTAlM0IlMjIlMjBhbGxvd2Z1bGxzY3JlZW4lM0QlMjIlMjIlMjBsb2FkaW5nJTNEJTIybGF6eSUyMiUyMHJlZmVycmVycG9saWN5JTNEJTIybm8tcmVmZXJyZXItd2hlbi1kb3duZ3JhZGUlMjIlM0UlM0MlMkZpZnJhbWUlM0U=\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row full_width=\"stretch_row_content\" css=\".vc_custom_1694534830702{margin-top: 35px !important;margin-bottom: 35px !important;}\"][vc_column][vc_separator color=\"custom\" accent_color=\"#823194\"][ultimate_heading main_heading=\"Inquries\" main_heading_color=\"#089548\" main_heading_margin=\"margin-top:35px;\" margin_design_tab_text=\"\"][/ultimate_heading][/vc_column][/vc_row][vc_row][vc_column width=\"1/3\"][bsf-info-box icon=\"icomoon-the7-font-the7-mail-01\" icon_size=\"32\" icon_color=\"#039447\" icon_style=\"circle\" title=\"Managing Director\" read_more=\"box\" link=\"url:mailto%3Auditha%40farmchemie.com\" pos=\"square_box\" box_border_style=\"solid\" box_border_width=\"1\" box_border_color=\"#823194\" title_font_color=\"#039447\" desc_font_color=\"#039447\" title_font_size=\"desktop:20px;\"]Mr.Uditha Wanigasinghe\r\n\r\nuditha@farmchemie.com\r\n\r\n+94 777272492[/bsf-info-box][/vc_column][vc_column width=\"1/3\"][bsf-info-box icon=\"icomoon-the7-font-the7-mail-01\" icon_size=\"32\" icon_color=\"#039447\" icon_style=\"circle\" title=\"Director- Marketing\" read_more=\"box\" link=\"url:mailto%3Aajith%40farmchemie.com\" pos=\"square_box\" box_border_style=\"solid\" box_border_width=\"1\" box_border_color=\"#823194\" title_font_color=\"#039447\" desc_font_color=\"#039447\" title_font_size=\"desktop:20px;\"]Mr.Ajith Welianga\r\n\r\najith@farmchemie.com\r\n\r\n+94 777386662[/bsf-info-box][/vc_column][vc_column width=\"1/3\"][bsf-info-box icon=\"icomoon-the7-font-the7-mail-01\" icon_size=\"32\" icon_color=\"#039447\" icon_style=\"circle\" title=\"Director – Finance\" read_more=\"box\" link=\"url:mailto%3Afinance%40farmchemie.com\" pos=\"square_box\" box_border_style=\"solid\" box_border_width=\"1\" box_border_color=\"#823194\" title_font_color=\"#039447\" desc_font_color=\"#039447\" title_font_size=\"desktop:20px;\"]Ms.Ridma Herath\r\n\r\nfinance@farmchemie.com\r\n\r\n+94 774825188[/bsf-info-box][/vc_column][/vc_row][vc_row][vc_column width=\"1/3\"][bsf-info-box icon=\"icomoon-the7-font-the7-mail-01\" icon_size=\"32\" icon_color=\"#039447\" icon_style=\"circle\" title=\"Director – Production\" read_more=\"box\" link=\"url:mailto%3Afactory%40farmchemie.com\" pos=\"square_box\" box_border_style=\"solid\" box_border_width=\"1\" box_border_color=\"#823194\" title_font_color=\"#039447\" desc_font_color=\"#039447\" title_font_size=\"desktop:20px;\"]Mr.Chanaka Indrajith\r\n\r\nfactory@farmchemie.com\r\n\r\n+94 773622546[/bsf-info-box][/vc_column][vc_column width=\"1/3\"][bsf-info-box icon=\"icomoon-the7-font-the7-mail-01\" icon_size=\"32\" icon_color=\"#039447\" icon_style=\"circle\" title=\"Director - Sales\" read_more=\"box\" link=\"url:mailto%3Asampath%40farmchemie.com\" pos=\"square_box\" box_border_style=\"solid\" box_border_width=\"1\" box_border_color=\"#823194\" title_font_color=\"#039447\" desc_font_color=\"#039447\" title_font_size=\"desktop:20px;\"]Mr.Sampath Gunathailake\r\n\r\nsampath@farmchemie.com\r\n\r\n+94 773159125[/bsf-info-box][/vc_column][vc_column width=\"1/3\"][bsf-info-box icon=\"icomoon-the7-font-the7-mail-01\" icon_size=\"32\" icon_color=\"#039447\" icon_style=\"circle\" title=\"General Manager - Technical Services\" read_more=\"box\" link=\"url:mailto%3Atechnical%40farmchemie.com\" pos=\"square_box\" box_border_style=\"solid\" box_border_width=\"1\" box_border_color=\"#823194\" title_font_color=\"#039447\" desc_font_color=\"#039447\" title_font_size=\"desktop:20px;\"]Dr. Nalin De Silva\r\n\r\ntechnical@farmchemie.com\r\n\r\n+94 777585748[/bsf-info-box][/vc_column][/vc_row]','Contact Us','','inherit','closed','closed','','2622-revision-v1','','','2023-09-12 16:28:25','2023-09-12 16:28:25','',2622,'https://farmchemie.yasithawd.com/?p=3576',0,'revision','',0),(3578,1,'2023-09-12 16:35:05','2023-09-12 16:35:05','[vc_row full_width=\"stretch_row_content\" equal_height=\"yes\" css=\".vc_custom_1694535688302{margin-top: 35px !important;margin-bottom: 35px !important;padding-right: 10% !important;padding-left: 10% !important;}\"][vc_column][vc_row_inner][vc_column_inner width=\"1/3\"][bsf-info-box icon=\"icomoon-the7-font-the7-phone-04\" icon_size=\"32\" icon_color=\"#059444\" title=\"Phone\"]<strong>+94 (0) 11 298 3922</strong>[/bsf-info-box][bsf-info-box icon=\"icomoon-the7-font-the7-mail-01\" icon_size=\"32\" icon_color=\"#059444\" title=\"Email Address\"]info@farmchemie.com[/bsf-info-box][bsf-info-box icon=\"icomoon-the7-font-the7-map-02\" icon_size=\"32\" icon_color=\"#059444\" title=\"Address\"]No. 78, Industrial Zone, Katuwana, Homagama[/bsf-info-box][/vc_column_inner][vc_column_inner width=\"1/3\"][contact-form-7 id=\"12\"][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_gmaps link=\"#E-8_JTNDaWZyYW1lJTIwc3JjJTNEJTIyaHR0cHMlM0ElMkYlMkZ3d3cuZ29vZ2xlLmNvbSUyRm1hcHMlMkZlbWJlZCUzRnBiJTNEJTIxMW0xOCUyMTFtMTIlMjExbTMlMjExZDM5NjEuNDkyNzAyNjUzODQyJTIxMmQ4MC4wMDU1NTMyNTA5NzkzNiUyMTNkNi44MzEzNzM2MjEzNzcxMSUyMTJtMyUyMTFmMCUyMTJmMCUyMTNmMCUyMTNtMiUyMTFpMTAyNCUyMTJpNzY4JTIxNGYxMy4xJTIxM20zJTIxMW0yJTIxMXMweDNhZTI1MWY2M2RlZjc3NGYlMjUzQTB4OTI5MjYyZGQ3OGNmZjViZSUyMTJzRmFybWNoZW1pZSUyNTIwJTI4UHJpdmF0ZSUyOSUyNTIwTGltaXRlZCUyMTVlMCUyMTNtMiUyMTFzZW4lMjEyc2xrJTIxNHYxNjY4NzQ0NzQ2NDk0JTIxNW0yJTIxMXNlbiUyMTJzbGslMjIlMjB3aWR0aCUzRCUyMjE5MjAlMjIlMjBoZWlnaHQlM0QlMjI1MDAlMjIlMjBzdHlsZSUzRCUyMmJvcmRlciUzQTAlM0IlMjIlMjBhbGxvd2Z1bGxzY3JlZW4lM0QlMjIlMjIlMjBsb2FkaW5nJTNEJTIybGF6eSUyMiUyMHJlZmVycmVycG9saWN5JTNEJTIybm8tcmVmZXJyZXItd2hlbi1kb3duZ3JhZGUlMjIlM0UlM0MlMkZpZnJhbWUlM0U=\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row full_width=\"stretch_row_content\" css=\".vc_custom_1694534830702{margin-top: 35px !important;margin-bottom: 35px !important;}\"][vc_column][vc_separator color=\"custom\" accent_color=\"#823194\"][ultimate_heading main_heading=\"Inquries\" main_heading_color=\"#089548\" main_heading_margin=\"margin-top:35px;\"][/ultimate_heading][/vc_column][/vc_row][vc_row][vc_column width=\"1/3\"][bsf-info-box icon=\"icomoon-the7-font-the7-mail-01\" icon_size=\"32\" icon_color=\"#039447\" icon_style=\"circle\" title=\"Managing Director\" read_more=\"box\" link=\"url:mailto%3Auditha%40farmchemie.com\" pos=\"square_box\" box_border_style=\"solid\" box_border_width=\"1\" box_border_color=\"#823194\" title_font_color=\"#039447\" desc_font_color=\"#039447\" title_font_size=\"desktop:20px;\"]Mr.Uditha Wanigasinghe\r\n\r\nuditha@farmchemie.com\r\n\r\n+94 777272492[/bsf-info-box][/vc_column][vc_column width=\"1/3\"][bsf-info-box icon=\"icomoon-the7-font-the7-mail-01\" icon_size=\"32\" icon_color=\"#039447\" icon_style=\"circle\" title=\"Director- Marketing\" read_more=\"box\" link=\"url:mailto%3Aajith%40farmchemie.com\" pos=\"square_box\" box_border_style=\"solid\" box_border_width=\"1\" box_border_color=\"#823194\" title_font_color=\"#039447\" desc_font_color=\"#039447\" title_font_size=\"desktop:20px;\"]Mr.Ajith Welianga\r\n\r\najith@farmchemie.com\r\n\r\n+94 777386662[/bsf-info-box][/vc_column][vc_column width=\"1/3\"][bsf-info-box icon=\"icomoon-the7-font-the7-mail-01\" icon_size=\"32\" icon_color=\"#039447\" icon_style=\"circle\" title=\"Director – Finance\" read_more=\"box\" link=\"url:mailto%3Afinance%40farmchemie.com\" pos=\"square_box\" box_border_style=\"solid\" box_border_width=\"1\" box_border_color=\"#823194\" title_font_color=\"#039447\" desc_font_color=\"#039447\" title_font_size=\"desktop:20px;\"]Ms.Ridma Herath\r\n\r\nfinance@farmchemie.com\r\n\r\n+94 774825188[/bsf-info-box][/vc_column][/vc_row][vc_row][vc_column width=\"1/3\"][bsf-info-box icon=\"icomoon-the7-font-the7-mail-01\" icon_size=\"32\" icon_color=\"#039447\" icon_style=\"circle\" title=\"Director – Production\" read_more=\"box\" link=\"url:mailto%3Afactory%40farmchemie.com\" pos=\"square_box\" box_border_style=\"solid\" box_border_width=\"1\" box_border_color=\"#823194\" title_font_color=\"#039447\" desc_font_color=\"#039447\" title_font_size=\"desktop:20px;\"]Mr.Chanaka Indrajith\r\n\r\nfactory@farmchemie.com\r\n\r\n+94 773622546[/bsf-info-box][/vc_column][vc_column width=\"1/3\"][bsf-info-box icon=\"icomoon-the7-font-the7-mail-01\" icon_size=\"32\" icon_color=\"#039447\" icon_style=\"circle\" title=\"Director - Sales\" read_more=\"box\" link=\"url:mailto%3Asampath%40farmchemie.com\" pos=\"square_box\" box_border_style=\"solid\" box_border_width=\"1\" box_border_color=\"#823194\" title_font_color=\"#039447\" desc_font_color=\"#039447\" title_font_size=\"desktop:20px;\"]Mr.Sampath Gunathailake\r\n\r\nsampath@farmchemie.com\r\n\r\n+94 773159125[/bsf-info-box][/vc_column][vc_column width=\"1/3\"][bsf-info-box icon=\"icomoon-the7-font-the7-mail-01\" icon_size=\"32\" icon_color=\"#039447\" icon_style=\"circle\" title=\"Technical Services\" read_more=\"box\" link=\"url:mailto%3Atechnical%40farmchemie.com\" pos=\"square_box\" box_border_style=\"solid\" box_border_width=\"1\" box_border_color=\"#823194\" title_font_color=\"#039447\" desc_font_color=\"#039447\" title_font_size=\"desktop:20px;\"]Dr. Nalin De Silva\r\n\r\ntechnical@farmchemie.com\r\n\r\n+94 777585748[/bsf-info-box][/vc_column][/vc_row][vc_row][vc_column width=\"1/3\"][bsf-info-box icon=\"icomoon-the7-font-the7-mail-01\" icon_size=\"32\" icon_color=\"#039447\" icon_style=\"circle\" title=\" Large Animal &amp; Equipment\" read_more=\"box\" link=\"url:mailto%3Amalaka%40farmchemie.com\" pos=\"square_box\" box_border_style=\"solid\" box_border_width=\"1\" box_border_color=\"#823194\" title_font_color=\"#039447\" desc_font_color=\"#039447\" title_font_size=\"desktop:20px;\"]Mr. Malaka Karunasinghe\r\n\r\nmalaka@farmchemie.com\r\n\r\n+94 773597280[/bsf-info-box][/vc_column][vc_column width=\"1/3\"][bsf-info-box icon=\"icomoon-the7-font-the7-mail-01\" icon_size=\"32\" icon_color=\"#039447\" icon_style=\"circle\" title=\"Poultry &amp; Key Accounts\" read_more=\"box\" link=\"url:mailto%3Amaduka%40farmchemie.com\" pos=\"square_box\" box_border_style=\"solid\" box_border_width=\"1\" box_border_color=\"#823194\" title_font_color=\"#039447\" desc_font_color=\"#039447\" title_font_size=\"desktop:20px;\"]Mr. Maduka Samaranayake\r\n\r\nmaduka@farmchemie.com\r\n\r\n+94 773597278[/bsf-info-box][/vc_column][vc_column width=\"1/3\"][bsf-info-box icon=\"icomoon-the7-font-the7-mail-01\" icon_size=\"32\" icon_color=\"#039447\" icon_style=\"circle\" title=\"Customer &amp; Employee Relations\" read_more=\"box\" link=\"url:mailto%3Asunil%40farmchemie.com\" pos=\"square_box\" box_border_style=\"solid\" box_border_width=\"1\" box_border_color=\"#823194\" title_font_color=\"#039447\" desc_font_color=\"#039447\" title_font_size=\"desktop:20px;\"]Mr. Sunil Ranjith\r\n\r\nsunil@farmchemie.com\r\n\r\n+94 773597279[/bsf-info-box][/vc_column][/vc_row]','Contact Us','','inherit','closed','closed','','2622-revision-v1','','','2023-09-12 16:35:05','2023-09-12 16:35:05','',2622,'https://farmchemie.yasithawd.com/?p=3578',0,'revision','',0),(3665,1,'2023-09-14 12:46:31','2023-09-14 12:46:31','[vc_row full_width=\"stretch_row_content\" equal_height=\"yes\" css=\".vc_custom_1694535688302{margin-top: 35px !important;margin-bottom: 35px !important;padding-right: 10% !important;padding-left: 10% !important;}\"][vc_column][vc_row_inner][vc_column_inner width=\"1/3\"][bsf-info-box icon=\"icomoon-the7-font-the7-phone-04\" icon_size=\"32\" icon_color=\"#059444\" title=\"Phone\"]<strong>+94 (0) 11 298 3922</strong>[/bsf-info-box][bsf-info-box icon=\"icomoon-the7-font-the7-mail-01\" icon_size=\"32\" icon_color=\"#059444\" title=\"Email Address\"]info@farmchemie.com[/bsf-info-box][bsf-info-box icon=\"icomoon-the7-font-the7-map-02\" icon_size=\"32\" icon_color=\"#059444\" title=\"Address\"]No. 78, Industrial Zone, Katuwana, Homagama[/bsf-info-box][/vc_column_inner][vc_column_inner width=\"1/3\"][contact-form-7 id=\"12\"][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_gmaps link=\"#E-8_JTNDaWZyYW1lJTIwc3JjJTNEJTIyaHR0cHMlM0ElMkYlMkZ3d3cuZ29vZ2xlLmNvbSUyRm1hcHMlMkZlbWJlZCUzRnBiJTNEJTIxMW0xOCUyMTFtMTIlMjExbTMlMjExZDM5NjEuNDkyNzAyNjUzODQyJTIxMmQ4MC4wMDU1NTMyNTA5NzkzNiUyMTNkNi44MzEzNzM2MjEzNzcxMSUyMTJtMyUyMTFmMCUyMTJmMCUyMTNmMCUyMTNtMiUyMTFpMTAyNCUyMTJpNzY4JTIxNGYxMy4xJTIxM20zJTIxMW0yJTIxMXMweDNhZTI1MWY2M2RlZjc3NGYlMjUzQTB4OTI5MjYyZGQ3OGNmZjViZSUyMTJzRmFybWNoZW1pZSUyNTIwJTI4UHJpdmF0ZSUyOSUyNTIwTGltaXRlZCUyMTVlMCUyMTNtMiUyMTFzZW4lMjEyc2xrJTIxNHYxNjY4NzQ0NzQ2NDk0JTIxNW0yJTIxMXNlbiUyMTJzbGslMjIlMjB3aWR0aCUzRCUyMjE5MjAlMjIlMjBoZWlnaHQlM0QlMjI1MDAlMjIlMjBzdHlsZSUzRCUyMmJvcmRlciUzQTAlM0IlMjIlMjBhbGxvd2Z1bGxzY3JlZW4lM0QlMjIlMjIlMjBsb2FkaW5nJTNEJTIybGF6eSUyMiUyMHJlZmVycmVycG9saWN5JTNEJTIybm8tcmVmZXJyZXItd2hlbi1kb3duZ3JhZGUlMjIlM0UlM0MlMkZpZnJhbWUlM0U=\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row full_width=\"stretch_row_content\" css=\".vc_custom_1694534830702{margin-top: 35px !important;margin-bottom: 35px !important;}\"][vc_column][vc_separator color=\"custom\" accent_color=\"#823194\"][ultimate_heading main_heading=\"Inquries\" main_heading_color=\"#089548\" main_heading_margin=\"margin-top:35px;\"][/ultimate_heading][/vc_column][/vc_row][vc_row][vc_column width=\"1/3\"][bsf-info-box icon=\"icomoon-the7-font-the7-mail-01\" icon_size=\"32\" icon_color=\"#039447\" icon_style=\"circle\" title=\"Managing Director\" read_more=\"box\" link=\"url:mailto%3Auditha%40farmchemie.com\" pos=\"square_box\" box_border_style=\"solid\" box_border_width=\"1\" box_border_color=\"#823194\" title_font_color=\"#039447\" desc_font_color=\"#039447\" title_font_size=\"desktop:20px;\"]Mr.Uditha Wanigasinghe\r\n\r\nuditha@farmchemie.com\r\n\r\n+94 777272492[/bsf-info-box][/vc_column][vc_column width=\"1/3\"][bsf-info-box icon=\"icomoon-the7-font-the7-mail-01\" icon_size=\"32\" icon_color=\"#039447\" icon_style=\"circle\" title=\"Director- Marketing\" read_more=\"box\" link=\"url:mailto%3Aajith%40farmchemie.com\" pos=\"square_box\" box_border_style=\"solid\" box_border_width=\"1\" box_border_color=\"#823194\" title_font_color=\"#039447\" desc_font_color=\"#039447\" title_font_size=\"desktop:20px;\"]Mr.Ajith Welianga\r\n\r\najith@farmchemie.com\r\n\r\n+94 777386662[/bsf-info-box][/vc_column][vc_column width=\"1/3\"][bsf-info-box icon=\"icomoon-the7-font-the7-mail-01\" icon_size=\"32\" icon_color=\"#039447\" icon_style=\"circle\" title=\"Director – Production\" read_more=\"box\" link=\"url:mailto%3Afactory%40farmchemie.com\" pos=\"square_box\" box_border_style=\"solid\" box_border_width=\"1\" box_border_color=\"#823194\" title_font_color=\"#039447\" desc_font_color=\"#039447\" title_font_size=\"desktop:20px;\"]Mr.Chanaka Indrajith\r\n\r\nfactory@farmchemie.com\r\n\r\n+94 773622546[/bsf-info-box][/vc_column][/vc_row][vc_row][vc_column width=\"1/3\"][bsf-info-box icon=\"icomoon-the7-font-the7-mail-01\" icon_size=\"32\" icon_color=\"#039447\" icon_style=\"circle\" title=\"Director - Sales\" read_more=\"box\" link=\"url:mailto%3Asampath%40farmchemie.com\" pos=\"square_box\" box_border_style=\"solid\" box_border_width=\"1\" box_border_color=\"#823194\" title_font_color=\"#039447\" desc_font_color=\"#039447\" title_font_size=\"desktop:20px;\"]Mr.Sampath Gunathailake\r\n\r\nsampath@farmchemie.com\r\n\r\n+94 773159125[/bsf-info-box][/vc_column][vc_column width=\"1/3\"][bsf-info-box icon=\"icomoon-the7-font-the7-mail-01\" icon_size=\"32\" icon_color=\"#039447\" icon_style=\"circle\" title=\"Technical Services\" read_more=\"box\" link=\"url:mailto%3Atechnical%40farmchemie.com\" pos=\"square_box\" box_border_style=\"solid\" box_border_width=\"1\" box_border_color=\"#823194\" title_font_color=\"#039447\" desc_font_color=\"#039447\" title_font_size=\"desktop:20px;\"]Dr. Nalin De Silva\r\n\r\ntechnical@farmchemie.com\r\n\r\n+94 777585748[/bsf-info-box][/vc_column][vc_column width=\"1/3\"][bsf-info-box icon=\"icomoon-the7-font-the7-mail-01\" icon_size=\"32\" icon_color=\"#039447\" icon_style=\"circle\" title=\"Large Animal &amp; Equipment\" read_more=\"box\" link=\"url:mailto%3Amalaka%40farmchemie.com\" pos=\"square_box\" box_border_style=\"solid\" box_border_width=\"1\" box_border_color=\"#823194\" title_font_color=\"#039447\" desc_font_color=\"#039447\" title_font_size=\"desktop:20px;\"]Mr. Malaka Karunasinghe\r\n\r\nmalaka@farmchemie.com\r\n\r\n+94 773597280[/bsf-info-box][/vc_column][/vc_row][vc_row][vc_column width=\"1/3\"][bsf-info-box icon=\"icomoon-the7-font-the7-mail-01\" icon_size=\"32\" icon_color=\"#039447\" icon_style=\"circle\" title=\"Poultry &amp; Key Accounts\" read_more=\"box\" link=\"url:mailto%3Amaduka%40farmchemie.com\" pos=\"square_box\" box_border_style=\"solid\" box_border_width=\"1\" box_border_color=\"#823194\" title_font_color=\"#039447\" desc_font_color=\"#039447\" title_font_size=\"desktop:20px;\"]Mr. Maduka Samaranayake\r\n\r\nmaduka@farmchemie.com\r\n\r\n+94 773597278[/bsf-info-box][/vc_column][vc_column width=\"1/3\"][bsf-info-box icon=\"icomoon-the7-font-the7-mail-01\" icon_size=\"32\" icon_color=\"#039447\" icon_style=\"circle\" title=\"Customer &amp; Employee Relations\" read_more=\"box\" link=\"url:mailto%3Asunil%40farmchemie.com\" pos=\"square_box\" box_border_style=\"solid\" box_border_width=\"1\" box_border_color=\"#823194\" title_font_color=\"#039447\" desc_font_color=\"#039447\" title_font_size=\"desktop:20px;\"]Mr. Sunil Ranjith\r\n\r\nsunil@farmchemie.com\r\n\r\n+94 773597279[/bsf-info-box][/vc_column][vc_column width=\"1/3\"][bsf-info-box icon=\"icomoon-the7-font-the7-mail-01\" icon_size=\"32\" icon_color=\"#039447\" icon_style=\"circle\" title=\"Consultant\" read_more=\"box\" link=\"url:mailto%3Aspwimalasiri%40gmail.com\" pos=\"square_box\" box_border_style=\"solid\" box_border_width=\"1\" box_border_color=\"#823194\" title_font_color=\"#039447\" desc_font_color=\"#039447\" title_font_size=\"desktop:20px;\"]Dr. Wimalasiri\r\n\r\nspwimalasiri@gmail.com\r\n\r\n+94 726687327[/bsf-info-box][/vc_column][/vc_row][vc_row][vc_column width=\"1/3\"][bsf-info-box icon=\"icomoon-the7-font-the7-mail-01\" icon_size=\"32\" icon_color=\"#039447\" icon_style=\"circle\" title=\"Poultry &amp; Key Accounts\" read_more=\"box\" link=\"url:mailto%3Aaccounts%40farmchemie.com\" pos=\"square_box\" box_border_style=\"solid\" box_border_width=\"1\" box_border_color=\"#823194\" title_font_color=\"#039447\" desc_font_color=\"#039447\" title_font_size=\"desktop:20px;\"]Mr.Tharanga Chathurakshana\r\n\r\naccounts@farmchemie.com\r\n\r\n+94 772069246[/bsf-info-box][/vc_column][vc_column width=\"1/3\"][bsf-info-box icon=\"icomoon-the7-font-the7-mail-01\" icon_size=\"32\" icon_color=\"#039447\" icon_style=\"circle\" title=\"Operations &amp; Supply Chain\" read_more=\"box\" link=\"url:mailto%3Aoperations%40farmchemie.com\" pos=\"square_box\" box_border_style=\"solid\" box_border_width=\"1\" box_border_color=\"#823194\" title_font_color=\"#039447\" desc_font_color=\"#039447\" title_font_size=\"desktop:20px;\"]Ms.Disna Upendra de Costa\r\n\r\noperations@farmchemie.com\r\n\r\n+94 772201932[/bsf-info-box][/vc_column][vc_column width=\"1/3\"][/vc_column][/vc_row]','Contact Us','','inherit','closed','closed','','2622-revision-v1','','','2023-09-14 12:46:31','2023-09-14 12:46:31','',2622,'https://farmchemie.yasithawd.com/?p=3665',0,'revision','',0),(3579,1,'2023-09-12 18:07:27','2023-09-12 18:07:27','[vc_row full_width=\"stretch_row_content\" equal_height=\"yes\" css=\".vc_custom_1694535688302{margin-top: 35px !important;margin-bottom: 35px !important;padding-right: 10% !important;padding-left: 10% !important;}\"][vc_column][vc_row_inner][vc_column_inner width=\"1/3\"][bsf-info-box icon=\"icomoon-the7-font-the7-phone-04\" icon_size=\"32\" icon_color=\"#059444\" title=\"Phone\"]<strong>+94 (0) 11 298 3922</strong>[/bsf-info-box][bsf-info-box icon=\"icomoon-the7-font-the7-mail-01\" icon_size=\"32\" icon_color=\"#059444\" title=\"Email Address\"]info@farmchemie.com[/bsf-info-box][bsf-info-box icon=\"icomoon-the7-font-the7-map-02\" icon_size=\"32\" icon_color=\"#059444\" title=\"Address\"]No. 78, Industrial Zone, Katuwana, Homagama[/bsf-info-box][/vc_column_inner][vc_column_inner width=\"1/3\"][contact-form-7 id=\"12\"][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_gmaps link=\"#E-8_JTNDaWZyYW1lJTIwc3JjJTNEJTIyaHR0cHMlM0ElMkYlMkZ3d3cuZ29vZ2xlLmNvbSUyRm1hcHMlMkZlbWJlZCUzRnBiJTNEJTIxMW0xOCUyMTFtMTIlMjExbTMlMjExZDM5NjEuNDkyNzAyNjUzODQyJTIxMmQ4MC4wMDU1NTMyNTA5NzkzNiUyMTNkNi44MzEzNzM2MjEzNzcxMSUyMTJtMyUyMTFmMCUyMTJmMCUyMTNmMCUyMTNtMiUyMTFpMTAyNCUyMTJpNzY4JTIxNGYxMy4xJTIxM20zJTIxMW0yJTIxMXMweDNhZTI1MWY2M2RlZjc3NGYlMjUzQTB4OTI5MjYyZGQ3OGNmZjViZSUyMTJzRmFybWNoZW1pZSUyNTIwJTI4UHJpdmF0ZSUyOSUyNTIwTGltaXRlZCUyMTVlMCUyMTNtMiUyMTFzZW4lMjEyc2xrJTIxNHYxNjY4NzQ0NzQ2NDk0JTIxNW0yJTIxMXNlbiUyMTJzbGslMjIlMjB3aWR0aCUzRCUyMjE5MjAlMjIlMjBoZWlnaHQlM0QlMjI1MDAlMjIlMjBzdHlsZSUzRCUyMmJvcmRlciUzQTAlM0IlMjIlMjBhbGxvd2Z1bGxzY3JlZW4lM0QlMjIlMjIlMjBsb2FkaW5nJTNEJTIybGF6eSUyMiUyMHJlZmVycmVycG9saWN5JTNEJTIybm8tcmVmZXJyZXItd2hlbi1kb3duZ3JhZGUlMjIlM0UlM0MlMkZpZnJhbWUlM0U=\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row full_width=\"stretch_row_content\" css=\".vc_custom_1694534830702{margin-top: 35px !important;margin-bottom: 35px !important;}\"][vc_column][vc_separator color=\"custom\" accent_color=\"#823194\"][ultimate_heading main_heading=\"Inquries\" main_heading_color=\"#089548\" main_heading_margin=\"margin-top:35px;\"][/ultimate_heading][/vc_column][/vc_row][vc_row][vc_column width=\"1/3\"][bsf-info-box icon=\"icomoon-the7-font-the7-mail-01\" icon_size=\"32\" icon_color=\"#039447\" icon_style=\"circle\" title=\"Managing Director\" read_more=\"box\" link=\"url:mailto%3Auditha%40farmchemie.com\" pos=\"square_box\" box_border_style=\"solid\" box_border_width=\"1\" box_border_color=\"#823194\" title_font_color=\"#039447\" desc_font_color=\"#039447\" title_font_size=\"desktop:20px;\"]Mr.Uditha Wanigasinghe\r\n\r\nuditha@farmchemie.com\r\n\r\n+94 777272492[/bsf-info-box][/vc_column][vc_column width=\"1/3\"][bsf-info-box icon=\"icomoon-the7-font-the7-mail-01\" icon_size=\"32\" icon_color=\"#039447\" icon_style=\"circle\" title=\"Director- Marketing\" read_more=\"box\" link=\"url:mailto%3Aajith%40farmchemie.com\" pos=\"square_box\" box_border_style=\"solid\" box_border_width=\"1\" box_border_color=\"#823194\" title_font_color=\"#039447\" desc_font_color=\"#039447\" title_font_size=\"desktop:20px;\"]Mr.Ajith Welianga\r\n\r\najith@farmchemie.com\r\n\r\n+94 777386662[/bsf-info-box][/vc_column][vc_column width=\"1/3\"][bsf-info-box icon=\"icomoon-the7-font-the7-mail-01\" icon_size=\"32\" icon_color=\"#039447\" icon_style=\"circle\" title=\"Director – Finance\" read_more=\"box\" link=\"url:mailto%3Afinance%40farmchemie.com\" pos=\"square_box\" box_border_style=\"solid\" box_border_width=\"1\" box_border_color=\"#823194\" title_font_color=\"#039447\" desc_font_color=\"#039447\" title_font_size=\"desktop:20px;\"]Ms.Ridma Herath\r\n\r\nfinance@farmchemie.com\r\n\r\n+94 774825188[/bsf-info-box][/vc_column][/vc_row][vc_row][vc_column width=\"1/3\"][bsf-info-box icon=\"icomoon-the7-font-the7-mail-01\" icon_size=\"32\" icon_color=\"#039447\" icon_style=\"circle\" title=\"Director – Production\" read_more=\"box\" link=\"url:mailto%3Afactory%40farmchemie.com\" pos=\"square_box\" box_border_style=\"solid\" box_border_width=\"1\" box_border_color=\"#823194\" title_font_color=\"#039447\" desc_font_color=\"#039447\" title_font_size=\"desktop:20px;\"]Mr.Chanaka Indrajith\r\n\r\nfactory@farmchemie.com\r\n\r\n+94 773622546[/bsf-info-box][/vc_column][vc_column width=\"1/3\"][bsf-info-box icon=\"icomoon-the7-font-the7-mail-01\" icon_size=\"32\" icon_color=\"#039447\" icon_style=\"circle\" title=\"Director - Sales\" read_more=\"box\" link=\"url:mailto%3Asampath%40farmchemie.com\" pos=\"square_box\" box_border_style=\"solid\" box_border_width=\"1\" box_border_color=\"#823194\" title_font_color=\"#039447\" desc_font_color=\"#039447\" title_font_size=\"desktop:20px;\"]Mr.Sampath Gunathailake\r\n\r\nsampath@farmchemie.com\r\n\r\n+94 773159125[/bsf-info-box][/vc_column][vc_column width=\"1/3\"][bsf-info-box icon=\"icomoon-the7-font-the7-mail-01\" icon_size=\"32\" icon_color=\"#039447\" icon_style=\"circle\" title=\"Technical Services\" read_more=\"box\" link=\"url:mailto%3Atechnical%40farmchemie.com\" pos=\"square_box\" box_border_style=\"solid\" box_border_width=\"1\" box_border_color=\"#823194\" title_font_color=\"#039447\" desc_font_color=\"#039447\" title_font_size=\"desktop:20px;\"]Dr. Nalin De Silva\r\n\r\ntechnical@farmchemie.com\r\n\r\n+94 777585748[/bsf-info-box][/vc_column][/vc_row][vc_row][vc_column width=\"1/3\"][bsf-info-box icon=\"icomoon-the7-font-the7-mail-01\" icon_size=\"32\" icon_color=\"#039447\" icon_style=\"circle\" title=\"Large Animal &amp; Equipment\" read_more=\"box\" link=\"url:mailto%3Amalaka%40farmchemie.com\" pos=\"square_box\" box_border_style=\"solid\" box_border_width=\"1\" box_border_color=\"#823194\" title_font_color=\"#039447\" desc_font_color=\"#039447\" title_font_size=\"desktop:20px;\"]Mr. Malaka Karunasinghe\r\n\r\nmalaka@farmchemie.com\r\n\r\n+94 773597280[/bsf-info-box][/vc_column][vc_column width=\"1/3\"][bsf-info-box icon=\"icomoon-the7-font-the7-mail-01\" icon_size=\"32\" icon_color=\"#039447\" icon_style=\"circle\" title=\"Poultry &amp; Key Accounts\" read_more=\"box\" link=\"url:mailto%3Amaduka%40farmchemie.com\" pos=\"square_box\" box_border_style=\"solid\" box_border_width=\"1\" box_border_color=\"#823194\" title_font_color=\"#039447\" desc_font_color=\"#039447\" title_font_size=\"desktop:20px;\"]Mr. Maduka Samaranayake\r\n\r\nmaduka@farmchemie.com\r\n\r\n+94 773597278[/bsf-info-box][/vc_column][vc_column width=\"1/3\"][bsf-info-box icon=\"icomoon-the7-font-the7-mail-01\" icon_size=\"32\" icon_color=\"#039447\" icon_style=\"circle\" title=\"Customer &amp; Employee Relations\" read_more=\"box\" link=\"url:mailto%3Asunil%40farmchemie.com\" pos=\"square_box\" box_border_style=\"solid\" box_border_width=\"1\" box_border_color=\"#823194\" title_font_color=\"#039447\" desc_font_color=\"#039447\" title_font_size=\"desktop:20px;\"]Mr. Sunil Ranjith\r\n\r\nsunil@farmchemie.com\r\n\r\n+94 773597279[/bsf-info-box][/vc_column][/vc_row][vc_row][vc_column width=\"1/3\"][bsf-info-box icon=\"icomoon-the7-font-the7-mail-01\" icon_size=\"32\" icon_color=\"#039447\" icon_style=\"circle\" title=\"Consultant\" read_more=\"box\" link=\"url:mailto%3Aspwimalasiri%40gmail.com\" pos=\"square_box\" box_border_style=\"solid\" box_border_width=\"1\" box_border_color=\"#823194\" title_font_color=\"#039447\" desc_font_color=\"#039447\" title_font_size=\"desktop:20px;\"]Dr. Wimalasiri\r\n\r\nspwimalasiri@gmail.com\r\n\r\n+94 726687327[/bsf-info-box][/vc_column][vc_column width=\"1/3\"][bsf-info-box icon=\"icomoon-the7-font-the7-mail-01\" icon_size=\"32\" icon_color=\"#039447\" icon_style=\"circle\" title=\"Poultry &amp; Key Accounts\" read_more=\"box\" link=\"url:mailto%3Aaccounts%40farmchemie.com\" pos=\"square_box\" box_border_style=\"solid\" box_border_width=\"1\" box_border_color=\"#823194\" title_font_color=\"#039447\" desc_font_color=\"#039447\" title_font_size=\"desktop:20px;\"]Mr.Tharanga Chathurakshana\r\n\r\naccounts@farmchemie.com\r\n\r\n+94 772069246[/bsf-info-box][/vc_column][vc_column width=\"1/3\"][bsf-info-box icon=\"icomoon-the7-font-the7-mail-01\" icon_size=\"32\" icon_color=\"#039447\" icon_style=\"circle\" title=\"Operations &amp; Supply Chain\" read_more=\"box\" link=\"url:mailto%3Aoperations%40farmchemie.com\" pos=\"square_box\" box_border_style=\"solid\" box_border_width=\"1\" box_border_color=\"#823194\" title_font_color=\"#039447\" desc_font_color=\"#039447\" title_font_size=\"desktop:20px;\"]Ms.Disna Upendra de Costa\r\n\r\noperations@farmchemie.com\r\n\r\n+94 772201932[/bsf-info-box][/vc_column][/vc_row]','Contact Us','','inherit','closed','closed','','2622-revision-v1','','','2023-09-12 18:07:27','2023-09-12 18:07:27','',2622,'https://farmchemie.yasithawd.com/?p=3579',0,'revision','',0),(3580,1,'2023-09-13 03:54:13','2023-09-13 03:54:13','','Broiler Concentrate Finisher','<h3>Finisher</h3>\r\n[dt_divider style=\"thick\" /]\r\n\r\n&nbsp;\r\n\r\n<strong>Composition: </strong>\r\n\r\nEach 1 kg contains,\r\nFarmStar Broiler Vitamin Premix - 50,000 mg\r\nMineral Premix MinaMax - 63,000 mg\r\nToxin binder - 50,000 mg\r\nDicalcium Phosphate - 480,000 mg\r\nSodium Butyrate - 82,000 mg\r\nDL Methionine - 83,00 mg\r\nLysine - 53,000 mg\r\nThreonine - 1,200 mg\r\nAntioxidant - 6,300 mg\r\nCholine chloride 50% - 50,000 mg\r\nVitamin E 50% - 8,000 mg\r\nFarm Ase XG Thermo 200 - 20,000 mg\r\n\r\n[dt_divider style=\"thin\" /]\r\n\r\n<strong>Indication: </strong>\r\n\r\nBroiler concentrates is the right way to introduce all the micro-nutrient requirements for enhanced growth rate ensuring that there are no deficiencies in any stage of the broiler life cycle.\r\n\r\n[dt_divider style=\"thin\" /]\r\n\r\n<strong>Dosage: </strong>\r\n\r\n10 to 25 kg per ton of feed. Or as directly by poultry nutritionists.\r\n\r\n[dt_divider style=\"thin\" /]\r\n\r\n<strong>Pack sizes: </strong>\r\n\r\n25 kg bag\r\n\r\n&nbsp;\r\n\r\n[dt_divider style=\"thick\" /]\r\n\r\n&nbsp;','publish','closed','closed','','broiler-concentrate-finisher','','','2023-09-24 11:28:51','2023-09-24 11:28:51','',0,'https://farmchemie.yasithawd.com/?post_type=product&#038;p=3580',0,'product','',0),(3581,1,'2023-09-13 04:42:17','2023-09-13 04:34:11','','All','','publish','closed','closed','','all','','','2023-09-13 04:42:17','2023-09-13 04:42:17','',0,'https://farmchemie.yasithawd.com/?p=3581',1,'nav_menu_item','',0),(3582,1,'2023-09-13 04:42:17','2023-09-13 04:34:11','','Feed Additives','','publish','closed','closed','','feed-additives','','','2023-09-13 04:42:17','2023-09-13 04:42:17','',0,'https://farmchemie.yasithawd.com/?p=3582',2,'nav_menu_item','',0),(3583,1,'2023-09-13 04:42:17','2023-09-13 04:34:11','','Large Animal & Dairy','','publish','closed','closed','','large-animal-dairy','','','2023-09-13 04:42:17','2023-09-13 04:42:17','',0,'https://farmchemie.yasithawd.com/?p=3583',3,'nav_menu_item','',0),(3584,1,'2023-09-13 04:42:17','2023-09-13 04:34:11','','Pet Care','','publish','closed','closed','','pet-care','','','2023-09-13 04:42:17','2023-09-13 04:42:17','',0,'https://farmchemie.yasithawd.com/?p=3584',4,'nav_menu_item','',0),(3585,1,'2023-09-13 04:42:17','2023-09-13 04:34:11','','Cat','','publish','closed','closed','','cat','','','2023-09-13 04:42:17','2023-09-13 04:42:17','',0,'https://farmchemie.yasithawd.com/?p=3585',5,'nav_menu_item','',0),(3586,1,'2023-09-13 04:42:17','2023-09-13 04:34:11','','Dog','','publish','closed','closed','','dog','','','2023-09-13 04:42:17','2023-09-13 04:42:17','',0,'https://farmchemie.yasithawd.com/?p=3586',6,'nav_menu_item','',0),(3587,1,'2023-09-13 04:42:17','2023-09-13 04:34:12','','Exotic Bird','','publish','closed','closed','','exotic-bird','','','2023-09-13 04:42:17','2023-09-13 04:42:17','',0,'https://farmchemie.yasithawd.com/?p=3587',7,'nav_menu_item','',0),(3588,1,'2023-09-13 04:42:17','2023-09-13 04:34:12','','Poultry','','publish','closed','closed','','poultry','','','2023-09-13 04:42:17','2023-09-13 04:42:17','',0,'https://farmchemie.yasithawd.com/?p=3588',8,'nav_menu_item','',0),(3589,1,'2023-09-13 04:51:02','2023-09-13 04:51:02','','Layer Concentrate Grower','<h3>Grower</h3>\r\n[dt_divider style=\"thick\" /]\r\n\r\n&nbsp;\r\n\r\n<strong>Composition: </strong>\r\n\r\nEach 1 kg contains,\r\nFarmStar Broiler Vitamin Premix – 33,400 mg\r\nMineral Premix MinaMax – 67,000 mg\r\nDicalcium Phosphate – 578,000 mg\r\nSodium Butyrate – 84,000 mg\r\nDL-Methionine – 27,000 mg\r\nLysine – 74,000 mg\r\nAntioxidant – 8,000 mg\r\nCholine chloride 50% - 40,000 mg\r\nFarm Ase XG Thermo 200 – 16,000 mg\r\nToxin binder – 67,000 mg\r\n\r\n[dt_divider style=\"thin\" /]\r\n\r\n<strong>Indication: </strong>\r\n\r\nA well balanced multi vitamin-mineral and amino acid mixture ensure all the micro nutrients are kept in range. Ensuring active immune protection, higher production, growth by homogenization in-feed.\r\n\r\n[dt_divider style=\"thin\" /]\r\n\r\n<strong>Dosage: </strong>\r\n\r\n10 to 25 kg per ton of feed. Or as directly by poultry nutritionists.\r\n\r\n[dt_divider style=\"thin\" /]\r\n\r\n<strong>Pack sizes: </strong>\r\n\r\n25 kg bag\r\n\r\n&nbsp;\r\n\r\n[dt_divider style=\"thick\" /]\r\n\r\n&nbsp;','publish','closed','closed','','layer-concentrate-grower','','','2023-09-24 11:17:06','2023-09-24 11:17:06','',0,'https://farmchemie.yasithawd.com/?post_type=product&#038;p=3589',0,'product','',0),(3590,1,'2023-09-13 04:54:39','2023-09-13 04:54:39','','Layer Concentrate Grower','<h3>Starter</h3>\n[dt_divider style=\"thick\" /]\n\n&nbsp;\n\n<strong>Composition: </strong>\n\nEach 1 kg contains,\nFarmStar Broiler Vitamin Premix – 25,00mg\nMineral Premix MinaMax – 50,000 mg\nDicalcium Phosphate – 614,00 mg\nSodium Butyrate – 60,000 mg\nDL-Methionine – 70,000 mg\nLysine – 55,000 mg\nAntioxidant – 6,200 mg\nCholine chloride 50% - 30,000 mg\nFarm Ase XG Thermo 200 – 10,000 mg\nToxin binder – 50,000 mg\n\n[dt_divider style=\"thin\" /]\n\n<strong>Indication: </strong>\n\nA well balanced multi vitamin-mineral and amino acid mixture ensure all the micro nutrients are kept in range. Ensuring active immune protection, higher production, growth by homogenization in-feed.\n\n[dt_divider style=\"thin\" /]\n\n<strong>Dosage: </strong>\n\n10 to 25 kg per ton of feed. Or as directly by poultry nutritionists.\n\n[dt_divider style=\"thin\" /]\n\n<strong>Pack sizes: </strong>\n\n25 kg bag\n\n&nbsp;\n\n[dt_divider style=\"thick\" /]\n\n&nbsp;','inherit','closed','closed','','3589-autosave-v1','','','2023-09-13 04:54:39','2023-09-13 04:54:39','',3589,'https://farmchemie.yasithawd.com/?p=3590',0,'revision','',0),(3591,1,'2023-09-13 04:59:56','2023-09-13 04:59:56','','Layer Concentrate Starter','<h3>Starter</h3>\r\n[dt_divider style=\"thick\" /]\r\n\r\n&nbsp;\r\n\r\n<strong>Composition: </strong>\r\n\r\nEach 1 kg contains,\r\nFarmStar Broiler Vitamin Premix – 25,00mg\r\nMineral Premix MinaMax – 50,000 mg\r\nDicalcium Phosphate – 614,00 mg\r\nSodium Butyrate – 60,000 mg\r\nDL-Methionine – 70,000 mg\r\nLysine – 55,000 mg\r\nAntioxidant – 6,200 mg\r\nCholine chloride 50% - 30,000 mg\r\nFarm Ase XG Thermo 200 – 10,000 mg\r\nToxin binder – 50,000 mg\r\n\r\n[dt_divider style=\"thin\" /]\r\n\r\n<strong>Indication: </strong>\r\n\r\nA well balanced multi vitamin-mineral and amino acid mixture ensure all the micro nutrients are kept in range. Ensuring active immune protection, higher production, growth by homogenization in-feed.\r\n\r\n[dt_divider style=\"thin\" /]\r\n\r\n<strong>Dosage: </strong>\r\n\r\n10 to 25 kg per ton of feed. Or as directly by poultry nutritionists.\r\n\r\n[dt_divider style=\"thin\" /]\r\n\r\n<strong>Pack sizes: </strong>\r\n\r\n25 kg bag\r\n\r\n&nbsp;\r\n\r\n[dt_divider style=\"thick\" /]\r\n\r\n&nbsp;','publish','closed','closed','','layer-concentrate-starter','','','2023-09-24 11:17:48','2023-09-24 11:17:48','',0,'https://farmchemie.yasithawd.com/?post_type=product&#038;p=3591',0,'product','',0),(3592,1,'2023-09-13 05:02:38','2023-09-13 05:02:38','','Layer Concentrate Pre - Layer','<h3>Pre - Layer</h3>\r\n[dt_divider style=\"thick\" /]\r\n\r\n&nbsp;\r\n\r\n<strong>Composition: </strong>\r\n\r\nEach 1 kg contains,\r\nFarmStar Broiler Vitamin Premix – 55,000 mg\r\nMineral Premix MinaMax – 100,000 mg\r\nDicalcium Phosphate – 501,000 mg\r\nSodium Butyrate – 80,000 mg\r\nDL-Methionine –50,000 mg\r\nLysine – 20,000 mg\r\nAntioxidant – 13,000 mg\r\nCholine chloride 50% - 60,000 mg\r\nFarm Ase XG Thermo 200 – 16,000 mg\r\nToxin binder – 100,000 mg\r\n\r\n[dt_divider style=\"thin\" /]\r\n\r\n<strong>Indication: </strong>\r\n\r\nA well balanced multi vitamin-mineral and amino acid mixture ensure all the micro nutrients are kept in range. Ensuring active immune protection, higher production, growth by homogenization in-feed.\r\n\r\n[dt_divider style=\"thin\" /]\r\n\r\n<strong>Dosage: </strong>\r\n\r\n10 to 25 kg per ton of feed. Or as directly by poultry nutritionists.\r\n\r\n[dt_divider style=\"thin\" /]\r\n\r\n<strong>Pack sizes: </strong>\r\n\r\n25 kg bag\r\n\r\n&nbsp;\r\n\r\n[dt_divider style=\"thick\" /]\r\n\r\n&nbsp;','publish','closed','closed','','layer-concentrate-pre-layer','','','2023-09-24 11:19:25','2023-09-24 11:19:25','',0,'https://farmchemie.yasithawd.com/?post_type=product&#038;p=3592',0,'product','',0),(3593,1,'2023-09-13 05:03:58','2023-09-13 05:03:58','','AdiPhos®  5000','<h3>The Next Generation 6-Phytase Enhancing the Availability of Elementary Phosphorus</h3>\r\n[dt_divider style=\"thick\" /]\r\n\r\n&nbsp;\r\n\r\n<strong>Composition: </strong>\r\n\r\nEach 1 g contains,\r\n6-phytase - 5,000 FTU\r\n\r\n[dt_divider style=\"thin\" /]\r\n\r\n<strong>Indication: </strong>\r\n\r\nCatalyzes the release of phosphates from phytates. Adding 100 g per ton of feed may release up to 20% of available phosphorus.\r\n\r\n[dt_divider style=\"thin\" /]\r\n\r\n<strong>Benefits: </strong>\r\n\r\nThermally stable at feed pelletization temperatures up to 85° C. Enhanced nutritional value of feed. Powerful at resisting pepsin. Retention of activity under adverse pH conditions. Granularity ensures homogeneous mixing. Reduced cost of feed.\r\n\r\n[dt_divider style=\"thin\" /]\r\n\r\n<strong>Dosage: </strong>\r\n\r\n100 g per tonne of feed or as per the recommendation by the nutritionist\r\n\r\n[dt_divider style=\"thin\" /]\r\n\r\n<strong>Pack sizes: </strong>\r\n\r\n5 kg, 10 kg and 25 kg\r\n\r\n&nbsp;\r\n\r\n[dt_divider style=\"thick\" /]\r\n\r\n&nbsp;','publish','closed','closed','','adiphos-5000','','','2023-09-13 05:10:19','2023-09-13 05:10:19','',0,'https://farmchemie.yasithawd.com/?post_type=product&#038;p=3593',0,'product','',0),(3594,1,'2023-09-13 05:11:15','2023-09-13 05:11:15','','AdiPhos®  10000','<h3>The Next Generation 6-Phytase Enhancing the Availability of Elementary Phosphorus</h3>\r\n[dt_divider style=\"thick\" /]\r\n\r\n&nbsp;\r\n\r\n<strong>Composition: </strong>\r\n\r\nEach 1 g contains,\r\n6-phytase - 10,000 FTU\r\n\r\n[dt_divider style=\"thin\" /]\r\n\r\n<strong>Indication: </strong>\r\n\r\nCatalyzes the release of phosphates from phytates. Adding 50 g per ton of feed may release up to 20% of available phosphorus.\r\n\r\n[dt_divider style=\"thin\" /]\r\n\r\n<strong>Benefits: </strong>\r\n\r\nThermally stable at feed pelletization temperatures up to 85° C. Enhanced nutritional value of feed. Powerful at resisting pepsin. Retention of activity under adverse pH conditions. Granularity ensures homogeneous mixing. Reduced cost of feed.\r\n\r\n[dt_divider style=\"thin\" /]\r\n\r\n<strong>Dosage: </strong>\r\n\r\n50 g per tonne of feed or as per the recommendation by the nutritionist\r\n\r\n[dt_divider style=\"thin\" /]\r\n\r\n<strong>Pack sizes: </strong>\r\n\r\n5 kg, 10 kg and 25 kg\r\n\r\n&nbsp;\r\n\r\n[dt_divider style=\"thick\" /]\r\n\r\n&nbsp;','publish','closed','closed','','adiphos-10000','','','2023-09-13 05:24:44','2023-09-13 05:24:44','',0,'https://farmchemie.yasithawd.com/?post_type=product&#038;p=3594',0,'product','',0),(3595,1,'2023-09-13 05:25:19','2023-09-13 05:25:19','','AdiXyl®  15000','<h3>Robust Endo-1,4(Β)-Xylanase To Degrade NSPs In Cereals &amp; Oilseeds For Precision Feeding</h3>\r\n[dt_divider style=\"thick\" /]\r\n\r\n&nbsp;\r\n\r\n<strong>Composition: </strong>\r\n\r\nEach 1 g contains,\r\nendo-1,4(β)-xylanase - 15,000 FTU\r\n\r\n[dt_divider style=\"thin\" /]\r\n\r\n<strong>Indication: </strong>\r\n\r\nMicrogranules ensure prolonged shelf life &amp; efficient release of enzymes in the gut. Adding 100 g per ton of feed may reduce the Feed Conversion Ratio (FCR) by 3% and increase the broiler growth by 2.5%.\r\n\r\n[dt_divider style=\"thin\" /]\r\n\r\n<strong>Benefits: </strong>\r\n\r\nLowered viscosity of digesta in the gut. Enhanced nutritional value of feed. Reduced cost of feed. Broad-spectrum of activities with consistency. Thermally stable at feed pelletization temperatures up to 85° C.\r\n\r\n[dt_divider style=\"thin\" /]\r\n\r\n<strong>Dosage: </strong>\r\n\r\n100 g per tonne of feed or as per the recommendation by the nutritionist\r\n\r\n[dt_divider style=\"thin\" /]\r\n\r\n<strong>Pack sizes: </strong>\r\n\r\n5 kg, 10 kg and 25 kg\r\n\r\n&nbsp;\r\n\r\n[dt_divider style=\"thick\" /]\r\n\r\n&nbsp;','publish','closed','closed','','adixyl-15000','','','2023-09-13 05:27:23','2023-09-13 05:27:23','',0,'https://farmchemie.yasithawd.com/?post_type=product&#038;p=3595',0,'product','',0),(3596,1,'2023-09-13 05:29:37','2023-09-13 05:29:37','','AdiXyl®  30000','<h3>Robust Endo-1,4(Β)-Xylanase To Degrade NSPs In Cereals &amp; Oilseeds For Precision Feeding</h3>\r\n[dt_divider style=\"thick\" /]\r\n\r\n&nbsp;\r\n\r\n<strong>Composition: </strong>\r\n\r\nEach 1 g contains,\r\nendo-1,4(β)-xylanase - 30,000 FTU\r\n\r\n[dt_divider style=\"thin\" /]\r\n\r\n<strong>Indication: </strong>\r\n\r\nMicrogranules ensure prolonged shelf life &amp; efficient release of enzymes in the gut. Adding 50 g per tonne of feed may reduce the Feed Conversion Ratio (FCR) by 3% and increase the broiler growth by 2.5%.\r\n\r\n[dt_divider style=\"thin\" /]\r\n\r\n<strong>Benefits: </strong>\r\n\r\nLowered viscosity of digesta in the gut. Enhanced nutritional value of feed. Reduced cost of feed. Broad-spectrum of activities with consistency. Thermally stable at feed pelletization temperatures up to 85° C.\r\n\r\n[dt_divider style=\"thin\" /]\r\n\r\n<strong>Dosage: </strong>\r\n\r\n50 g per tonne of feed or as per the recommendation by the nutritionist\r\n\r\n[dt_divider style=\"thin\" /]\r\n\r\n<strong>Pack sizes: </strong>\r\n\r\n5 kg, 10 kg and 25 kg\r\n\r\n&nbsp;\r\n\r\n[dt_divider style=\"thick\" /]\r\n\r\n&nbsp;','publish','closed','closed','','adixyl-30000','','','2023-09-13 05:32:00','2023-09-13 05:32:00','',0,'https://farmchemie.yasithawd.com/?post_type=product&#038;p=3596',0,'product','',0),(3597,1,'2023-09-13 05:32:37','2023-09-13 05:32:37','','FARMAZYME® Dry','<h3>THE COMPLETE ENZYME SOLUTION FORENHANCED DIGESTIBILITY</h3>\r\n[dt_divider style=\"thick\" /]\r\n\r\n&nbsp;\r\n\r\n<strong>Composition: </strong>\r\n\r\nEach 1 g contains,\r\nendo-1,4-β-xylanase - 6,000 VU\r\nendo-1,3(4)-β-glucanase - 1,600 VU\r\nα-amylase - 700 U\r\nβ-mannanase - 2,000 U\r\n6-phytase - 3,000 FTU\r\nProtease - 5,400 U\r\n\r\n[dt_divider style=\"thin\" /]\r\n\r\n<strong>Indication: </strong>\r\n\r\nThermally stable at feed pelletization temperatures up to 85° C. Retention of activity under adverse pH conditions. Granularity ensures homogeneous mixing. Enhanced nutritional value of feed. Reduced cost of feed\r\n\r\n[dt_divider style=\"thin\" /]\r\n\r\n<strong>Dosage: </strong>\r\n\r\n500 g per ton of feed or As Recommended by the Nutritionist\r\n\r\n[dt_divider style=\"thin\" /]\r\n\r\n<strong>Pack sizes: </strong>\r\n\r\n5 kg, 10 kg &amp; 25 kg\r\n\r\n&nbsp;\r\n\r\n[dt_divider style=\"thick\" /]\r\n\r\n&nbsp;','publish','closed','closed','','farmazyme-dry','','','2023-09-13 05:35:12','2023-09-13 05:35:12','',0,'https://farmchemie.yasithawd.com/?post_type=product&#038;p=3597',0,'product','',0),(3598,1,'2023-09-13 05:37:45','2023-09-13 05:37:45','','MOLDISORB® Dry','<h3>An impenetrable Shield to safeguard feed &amp; feed raw materials</h3>\r\n[dt_divider style=\"thick\" /]\r\n\r\n&nbsp;\r\n\r\n<strong>Composition: </strong>\r\n\r\nCalcium formate, Calcium propionate, Calcium acetate, Calcium citrate, Sodium benzoate, Sorbic acid &amp; Fumaric acid\r\n\r\n[dt_divider style=\"thin\" /]\r\n\r\n<strong>Indication: </strong>\r\n\r\nPrevention of secondary fermentation in feed raw materials - 1 – 3 kg per tonne\r\nSurface treatment of silage - 250 – 400 g per m2\r\nPrevention of secondary fermentation in feed - 0.25 – 2 kg per tonne of feed\r\n\r\nOr as per the recommendation of the nutritionist.\r\n\r\n[dt_divider style=\"thin\" /]\r\n\r\n<strong>Dosage: </strong>\r\n\r\n500 g per ton of feed or As Recommended by the Nutritionist\r\n\r\n[dt_divider style=\"thin\" /]\r\n\r\n<strong>Pack sizes: </strong>\r\n\r\n5 kg &amp; 25 kg\r\n\r\n&nbsp;\r\n\r\n[dt_divider style=\"thick\" /]\r\n\r\n&nbsp;','publish','closed','closed','','moldisorb-dry','','','2023-09-24 11:31:42','2023-09-24 11:31:42','',0,'https://farmchemie.yasithawd.com/?post_type=product&#038;p=3598',0,'product','',0),(3599,1,'2023-09-13 05:47:05','2023-09-13 05:47:05','','TOXIBOND® Dry','<h3>THE COMPLETE SOLUTION TO MYCOTOXIN CONTAMINATED FEED</h3>\r\n[dt_divider style=\"thick\" /]\r\n\r\n&nbsp;\r\n\r\n<strong>Composition: </strong>\r\n\r\nBentonite (1m558), Sepiolite, Inactivated yeasts &amp; yeast cell walls, Calcium propionate, Citric acid, Calcium sulfate, Keratinase and Hydrated Sodium Aluminosilicate (HSCAS)\r\n\r\n[dt_divider style=\"thin\" /]\r\n\r\n<strong>Indication: </strong>\r\n\r\nLowers the bioavailability of mycotoxins in the gastrointestinal tract. Minimizes the risk of mycotoxicosis. Improves animal health. Boosts productivity. Offers a wide range of activities against the complete range of mycotoxins. Maintains the availability of valuable nutrients\r\n\r\n[dt_divider style=\"thin\" /]\r\n\r\n<strong>Dosage: </strong>\r\n\r\nContamination or use of raw materials stored for long periods - 3 – 5 kg per ton of feed\r\nBreeders - 2 – 4 kg per ton of feed\r\nMonogastric - Broiler, Layers and Swine - 1 – 3 kg per ton of feed\r\nRuminants - 15 – 100 g per animal per day\r\n\r\n[dt_divider style=\"thin\" /]\r\n\r\n<strong>Pack sizes: </strong>\r\n\r\n5 kg, 10 kg &amp; 25 kg\r\n\r\n&nbsp;\r\n\r\n[dt_divider style=\"thick\" /]\r\n\r\n&nbsp;','publish','closed','closed','','toxibond-dry','','','2023-09-24 11:33:55','2023-09-24 11:33:55','',0,'https://farmchemie.yasithawd.com/?post_type=product&#038;p=3599',0,'product','',0),(3600,1,'2023-09-13 05:50:58','2023-09-13 05:50:58','','BioGain','<h3>Better availability, Better performance with Organic trace minerals</h3>\r\n[dt_divider style=\"thick\" /]\r\n\r\n&nbsp;\r\n\r\n<strong>Composition: </strong>\r\n\r\nEach 1 kg contains,\r\nZinc as Zinc glycinate - 40,000 mg\r\nManganese as Manganese glycinate - 40,000 mg\r\nCopper as Copper glycinate - 5,000 mg\r\nIron as Ferrous glycinate - 15,000 mg\r\nIodine as Potassium iodide - 4,000 mg\r\nSelenium as Hydroxy-selenomethionine - 300 mg\r\nChromium as Chromium picolinate - 200 mg\r\n\r\n[dt_divider style=\"thin\" /]\r\n\r\n<strong>Indication: </strong>\r\n\r\nBetter growth, Higher production, Healthy animals, Improve the immunity and protect from Heat stress, production stress, transportation stress, handling stress, vaccination stress, deworming stress, antibiotic therapy stress, mineral deficiency &amp; mycotoxicosis.\r\n\r\n[dt_divider style=\"thin\" /]\r\n\r\n<strong>Dosage: </strong>\r\n\r\n1 kg per ton of feed or as per the recommendation of the Nutritionist.\r\n\r\n[dt_divider style=\"thin\" /]\r\n\r\n<strong>Pack sizes: </strong>\r\n\r\n1 kg &amp; 25 kg bag\r\n\r\n&nbsp;\r\n\r\n[dt_divider style=\"thick\" /]\r\n\r\n&nbsp;','publish','closed','closed','','biogain','','','2023-09-24 07:29:59','2023-09-24 07:29:59','',0,'https://farmchemie.yasithawd.com/?post_type=product&#038;p=3600',0,'product','',0),(3601,1,'2023-09-13 05:54:13','2023-09-13 05:54:13','','BioGain MAX','<h3>Maximum availability, Maximum performance with Organic trace minerals</h3>\r\n[dt_divider style=\"thick\" /]\r\n\r\n&nbsp;\r\n\r\n<strong>Composition: </strong>\r\n\r\nEach 1 kg contains,\r\nZinc as Zinc glycinate - 60,000 mg\r\nManganese as Manganese glycinate - 60,000 mg\r\nCopper as Copper glycinate - 8,000 mg\r\nIodine as Potassium iodide - 6,000 mg\r\nSelenium as Hydroxy-selenomethionine - 600 mg\r\nChromium as Chromium picolinate - 1,000 mg\r\n\r\n[dt_divider style=\"thin\" /]\r\n\r\n<strong>Indication: </strong>\r\n\r\nThe organic mineral mixture has become increasingly important to optimize diet compositions and meet the demands of modern poultry production. Metals being chemically bound to organic components ensures relatively inexpensive administration and absorption by the gut due to improved bio-availability.\r\n\r\n[dt_divider style=\"thin\" /]\r\n\r\n<strong>Dosage: </strong>\r\n\r\n750 g - 1 kg per ton of feed or as per the recommendation of the Nutritionist.\r\n\r\n[dt_divider style=\"thin\" /]\r\n\r\n<strong>Pack sizes: </strong>\r\n\r\n1 kg &amp; 25 kg bag\r\n\r\n&nbsp;\r\n\r\n[dt_divider style=\"thick\" /]\r\n\r\n&nbsp;','publish','closed','closed','','biogain-max','','','2023-09-24 07:30:58','2023-09-24 07:30:58','',0,'https://farmchemie.yasithawd.com/?post_type=product&#038;p=3601',0,'product','',0),(3602,1,'2023-09-13 06:11:57','2023-09-13 06:11:57','','BREEDER Vitamin Premix','<h3>A stable comprehensive vitamin supplement for commercial breeders</h3>\r\n[dt_divider style=\"thick\" /]\r\n\r\n&nbsp;\r\n\r\n<strong>Composition: </strong>\r\n\r\nEach 1 kg contains,\r\nVitamin A - 15,000,000 IU\r\nVitamin D3 - 3,000,000 IU\r\nVitamin E - 100,000 mg\r\nVitamin K3 - 6,000 mg\r\nVitamin B1 - 3,500 mg\r\nVitamin B2 - 16,000 mg\r\nVitamin B5 - 25,000 mg\r\nVitamin B6 - 6,000 mg\r\nVitamin B12 - 40,000 mcg\r\nNiacin - 50,000 mg\r\nBiotin - 300,000 mcg\r\nFolic Acid - 4,000 mg\r\nAntioxidant - 270 mg\r\n\r\n[dt_divider style=\"thin\" /]\r\n\r\n<strong>Indication: </strong>\r\n\r\nBetter growth, Higher production, Healthy animals, Improve immunity and protect from Heat stress, production stress, transportation stress, handling stress, vaccination stress, deworming stress, antibiotic therapy stress, vitamin deficiency &amp; Mycotoxicosis\r\n\r\n[dt_divider style=\"thin\" /]\r\n\r\n<strong>Dosage: </strong>\r\n\r\n1 kg per ton of feed.\r\nOr as directed by a poultry nutritionist\r\n\r\n[dt_divider style=\"thin\" /]\r\n\r\n<strong>Pack sizes: </strong>\r\n\r\n1 kg &amp; 25 kg bag\r\n\r\n&nbsp;\r\n\r\n[dt_divider style=\"thick\" /]\r\n\r\n&nbsp;','publish','closed','closed','','breeder-vitamin-premix','','','2023-09-24 11:37:14','2023-09-24 11:37:14','',0,'https://farmchemie.yasithawd.com/?post_type=product&#038;p=3602',0,'product','',0),(3603,1,'2023-09-13 06:22:11','2023-09-13 06:22:11','','BROILER Vitamin Premix','<h3>A stable comprehensive vitamin supplement for commercial broilers</h3>\r\n[dt_divider style=\"thick\" /]\r\n\r\n&nbsp;\r\n\r\n<strong>Composition: </strong>\r\n\r\nEach 1 kg contains,\r\nVitamin A - 15,000,000 IU\r\nVitamin D3 - 5,000,000 IU\r\nVitamin E - 80,000 mg\r\nVitamin K3 - 3,000 mg\r\nVitamin B1 - 3,000 mg\r\nVitamin B2 - 10,000 mg\r\nVitamin B5 - 16,000 mg\r\nVitamin B6 - 4,000 mg\r\nVitamin B12 - 25,000 mcg\r\nNiacin - 70,000 mg\r\nFolic Acid - 2,500 mg\r\nBiotin - 150,000 mcg\r\nAntioxidant - 270 mg\r\n\r\n[dt_divider style=\"thin\" /]\r\n\r\n<strong>Indication: </strong>\r\n\r\nBetter growth, Higher production, Healthy animals, Improve the immunity and protect from Heat stress, production stress, transportation stress, handling stress, vaccination stress, deworming stress, antibiotic therapy stress, vitamin deficiency &amp; Mycotoxicosis\r\n\r\n[dt_divider style=\"thin\" /]\r\n\r\n<strong>Dosage: </strong>\r\n\r\n1 kg per ton of feed.\r\nOr as directed by a poultry nutritionist\r\n\r\n[dt_divider style=\"thin\" /]\r\n\r\n<strong>Pack sizes: </strong>\r\n\r\n1 kg &amp; 25 kg bag\r\n\r\n&nbsp;\r\n\r\n[dt_divider style=\"thick\" /]\r\n\r\n&nbsp;','publish','closed','closed','','broiler-vitamin-premix','','','2023-09-24 07:34:36','2023-09-24 07:34:36','',0,'https://farmchemie.yasithawd.com/?post_type=product&#038;p=3603',0,'product','',0),(3604,1,'2023-09-13 06:43:52','2023-09-13 06:43:52','','LAYER Vitamin Premix','<h3>A stable comprehensive vitamin supplement for commercial layers</h3>\r\n[dt_divider style=\"thick\" /]\r\n\r\n&nbsp;\r\n\r\n<strong>Composition: </strong>\r\n\r\nEach 1 kg contains,\r\nVitamin A - 12,500,000 IU\r\nVitamin - D3 3,000,000 IU\r\nVitamin - E 40,000 mg\r\nVitamin - K3 3,000 mg\r\nVitamin - B1 2,500 mg\r\nVitamin - B2 6,000 mg\r\nVitamin - B5 15,000 mg\r\nVitamin - B6 6,000 mg\r\nVitamin - B12 25,000 mcg\r\nNiacin - 60,000 mg\r\nFolic Acid - 1,000 mg\r\nBiotin - 150,000 mcg\r\nAntioxidant - 270 mg\r\n\r\n[dt_divider style=\"thin\" /]\r\n\r\n<strong>Indication: </strong>\r\n\r\nBetter growth, Higher production, Healthy animals, Improve immunity and protection from Heat stress, production stress, transportation stress, handling stress, vaccination stress, deworming stress, antibiotic therapy stress, vitamin deficiency &amp; Mycotoxicosis\r\n\r\n[dt_divider style=\"thin\" /]\r\n\r\n<strong>Dosage: </strong>\r\n\r\n1 kg per ton of feed.\r\nOr as directed by a poultry nutritionist\r\n\r\n[dt_divider style=\"thin\" /]\r\n\r\n<strong>Pack sizes: </strong>\r\n\r\n1 kg &amp; 25 kg bag\r\n\r\n&nbsp;\r\n\r\n[dt_divider style=\"thick\" /]\r\n\r\n&nbsp;','publish','closed','closed','','layer-vitamin-premix','','','2023-09-24 07:36:50','2023-09-24 07:36:50','',0,'https://farmchemie.yasithawd.com/?post_type=product&#038;p=3604',0,'product','',0),(3605,1,'2023-09-13 07:47:42','2023-09-13 07:47:42','','VITAMIN Premix','<h3>Complete vitamin and amino acid solution for poultry</h3>\r\n[dt_divider style=\"thick\" /]\r\n\r\n&nbsp;\r\n\r\n<strong>Composition: </strong>\r\n\r\nEach 1 kg contains,\r\nVitamin A - 15,000,000 IU\r\nVitamin D - 33,000,000 IU\r\nVitamin E - 25,000 mg\r\nVitamin K - 33,000 mg\r\nVitamin B - 12,000 mg\r\nVitamin B - 26,000 mg\r\nVitamin B - 512,000 mg\r\nVitamin B - 61,500 mg\r\nVitamin B - 12 20,000 mcg\r\nNiacin - 30,000 mg\r\nFolic Acid - 1,000 mg\r\nBiotin - 100,000 mcg\r\nDL-Methionine - 250,000 mg\r\nL-Lysine - 250,000 mg\r\n\r\n[dt_divider style=\"thin\" /]\r\n\r\n<strong>Indication: </strong>\r\n\r\nBetter growth, Higher production, Healthy animals, Improve the immunity and protect from Heat stress, production stress, transportation stress, handling stress, vaccination stress, deworming stress, antibiotic therapy stress, vitamin deficiency &amp; Mycotoxicosis\r\n\r\n[dt_divider style=\"thin\" /]\r\n\r\n<strong>Dosage: </strong>\r\n\r\nFor 1 Ton of feed,\r\nLayer – 750 g\r\nBroiler and Breeder – 1 kg\r\nOr as directed by poultry nutritionist\r\n\r\n[dt_divider style=\"thin\" /]\r\n\r\n<strong>Pack sizes: </strong>\r\n\r\n1 kg &amp; 25 kg bag\r\n\r\n&nbsp;\r\n\r\n[dt_divider style=\"thick\" /]\r\n\r\n&nbsp;','publish','closed','closed','','vitamin-premix','','','2023-09-24 07:41:26','2023-09-24 07:41:26','',0,'https://farmchemie.yasithawd.com/?post_type=product&#038;p=3605',0,'product','',0),(3606,1,'2023-09-13 08:09:45','2023-09-13 08:09:45','','OXYQUIN® Dry','<h3>Complete vitamin and amino acid solution for poultry</h3>\n[dt_divider style=\"thick\" /]\n\n&nbsp;\n\n<strong>Composition: </strong>\n\nEach 1 kg contains,\nVitamin A - 15,000,000 IU\nVitamin D - 33,000,000 IU\nVitamin E - 25,000 mg\nVitamin K - 33,000 mg\nVitamin B - 12,000 mg\nVitamin B - 26,000 mg\nVitamin B - 512,000 mg\nVitamin B - 61,500 mg\nVitamin B - 12 20,000 mcg\nNiacin - 30,000 mg\nFolic Acid - 1,000 mg\nBiotin - 100,000 mcg\nDL-Methionine - 250,000 mg\nL-Lysine - 250,000 mg\n\n[dt_divider style=\"thin\" /]\n\n<strong>Indication: </strong>\n\nBetter growth, Higher production, Healthy animals, Improve the immunity and protect from Heat stress, production stress, transportation stress, handling stress, vaccination stress, deworming stress, antibiotic therapy stress, vitamin deficiency &amp; Mycotoxicosis\n\n[dt_divider style=\"thin\" /]\n\n<strong>Dosage: </strong>\n\nFor 1 Ton of feed,\nLayer – 750 g\nBroiler and Breeder – 1 kg\nOr as directed by poultry nutritionist\n\n[dt_divider style=\"thin\" /]\n\n<strong>Pack sizes: </strong>\n\n1 kg &amp; 25 kg bag\n\n&nbsp;\n\n[dt_divider style=\"thick\" /]\n\n&nbsp;','inherit','closed','closed','','3605-autosave-v1','','','2023-09-13 08:09:45','2023-09-13 08:09:45','',3605,'https://farmchemie.yasithawd.com/?p=3606',0,'revision','',0),(3607,1,'2023-09-13 08:12:33','2023-09-13 08:12:33','','OXYQUIN® Dry','<h3>A dry preservative to control moulds in feed</h3>\r\n[dt_divider style=\"thick\" /]\r\n\r\n&nbsp;\r\n\r\n<strong>Composition: </strong>\r\n\r\nButylated Hydroxytoluene (BHT), Citric acid anhydrate and Ethoxyquin\r\n\r\n[dt_divider style=\"thin\" /]\r\n\r\n<strong>Indication: </strong>\r\n\r\nPrevents the destruction of fat soluble vitamins &amp; xanthophyll, increases in feed palatability, controls the loss of protein and energy content, protects from toxic metabolites, prevents the production of cytotoxic and unpalatable reaction products of oxidation, maintains the intestinal absorptive capacity and nutrient digestibility and reduces the oxidative status of the animal.\r\n\r\n[dt_divider style=\"thin\" /]\r\n\r\n<strong>Dosage: </strong>\r\n\r\nFeed - 0.125 – 1 kg per ton of feed\r\nPremix and Concentrates - 0.125 kg per ton of feed\r\n\r\n[dt_divider style=\"thin\" /]\r\n\r\n<strong>Pack sizes: </strong>\r\n\r\n1 kg &amp; 25 kg\r\n\r\n&nbsp;\r\n\r\n[dt_divider style=\"thick\" /]\r\n\r\n&nbsp;','publish','closed','closed','','oxyquin-dry','','','2023-09-24 07:39:03','2023-09-24 07:39:03','',0,'https://farmchemie.yasithawd.com/?post_type=product&#038;p=3607',0,'product','',0),(3608,1,'2023-09-13 08:58:16','2023-09-13 08:58:16','','SALMOBLAST® Dry','<h3>ADVANCED COMBINATION OF ORGANIC ACID SALTS FOR PROLONGED ANTI-BACTERIAL CONDITIONING OF FEED</h3>\r\n[dt_divider style=\"thick\" /]\r\n\r\n&nbsp;\r\n\r\n<strong>Composition: </strong>\r\n\r\nCalcium formate, Calcium propionate, Calcium acetate, Calcium citrate, Sodium benzoate, Sorbic acid and Fumaric acid\r\n\r\n[dt_divider style=\"thin\" /]\r\n\r\n<strong>Indication: </strong>\r\n\r\nFormulated with a wide range of organic acids acting against a broad-spectrum of pathogens. Prevents the cross contamination to protect finished feed. Long term defense against re-contamination from storage to milling to feeding. Mediation of intestinal microflora for improved digestive function. An additional palatability enhancer to improve the daily feed intake.\r\n\r\n[dt_divider style=\"thin\" /]\r\n\r\n<strong>Dosage: </strong>\r\n\r\nContamination of Finished feed &amp; protein meals - 7 – 10 kg per ton of feed\r\nProtection of Protein meals - 5 – 7 kg per ton of feed\r\nProtection of Finished feed - 3 – 5 kg per ton of feed\r\n\r\n[dt_divider style=\"thin\" /]\r\n\r\n<strong>Pack sizes: </strong>\r\n\r\n5 kg &amp; 25 kg\r\n\r\n&nbsp;\r\n\r\n[dt_divider style=\"thick\" /]\r\n\r\n&nbsp;','publish','closed','closed','','salmoblast-dry','','','2023-09-24 07:42:29','2023-09-24 07:42:29','',0,'https://farmchemie.yasithawd.com/?post_type=product&#038;p=3608',0,'product','',0),(3609,1,'2023-09-13 09:36:42','2023-09-13 09:36:42','','BactoGrow Premium','<h3>Animal feed additive containing probiotics for incorporation into the feed of animals</h3>\r\n[dt_divider style=\"thick\" /]\r\n\r\n&nbsp;\r\n\r\n<strong>Composition: </strong>\r\n\r\nEach 1 kg contains,\r\n<em>Bacillus licheniformis</em> - 50*109 CFU\r\n<em>Bacillus subtilis</em> - 1200*109 CFU\r\n\r\n[dt_divider style=\"thin\" /]\r\n\r\n<strong>Indication: </strong>\r\n\r\nBetter feed conversion hence increased weight gain. To control &amp; prevent subclinical infections at all stages. To Control and prevent bacterial diarrhea. To prevent uneven &amp; retarded growth. To improve livability. Safe to use in chicks\r\n\r\n[dt_divider style=\"thin\" /]\r\n\r\n<strong>Dosage: </strong>\r\n\r\n500 g per ton of feed or as recommended by the Nutritionist.\r\n\r\n[dt_divider style=\"thin\" /]\r\n\r\n<strong>Pack sizes: </strong>\r\n\r\n25 kg\r\n\r\n&nbsp;\r\n\r\n[dt_divider style=\"thick\" /]\r\n\r\n&nbsp;','publish','closed','closed','','bactogrow-premium','','','2023-09-24 07:22:51','2023-09-24 07:22:51','',0,'https://farmchemie.yasithawd.com/?post_type=product&#038;p=3609',0,'product','',0),(3610,1,'2023-09-13 09:42:49','2023-09-13 09:42:49','','BactoGrow Premium','<h3>Animal feed additive containing probiotics for incorporation into the feed of animals</h3><p>[dt_divider style=\"thick\" /]</p><p><br></p><p><strong>Composition: </strong></p><p>Each 1 kg contains,<br>Bacillus licheniformis - 50*109 CFU<br>Bacillus subtilis - 1200*109 CFU</p><p>[dt_divider style=\"thin\" /]</p><p><strong>Indication: </strong></p><p>Better feed conversion hence increased weight gain. To control &amp; prevent subclinical infections at all stages. To Control and prevent bacterial diarrhea. To prevent uneven &amp; retarded growth. To improve livability. Safe to use in chicks</p><p>[dt_divider style=\"thin\" /]</p><p><strong>Dosage: </strong></p><p>500 g per ton of feed or as recommended by the Nutritionist.</p><p>[dt_divider style=\"thin\" /]</p><p><strong>Pack sizes: </strong></p><p>25 kg</p><p><br></p><p>[dt_divider style=\"thick\" /]</p><p><br></p>','inherit','closed','closed','','3609-autosave-v1','','','2023-09-13 09:42:49','2023-09-13 09:42:49','',3609,'https://farmchemie.yasithawd.com/?p=3610',0,'revision','',0),(3611,1,'2023-09-13 10:34:24','2023-09-13 10:34:24','','GUTCARE BOLUS','<h3>Non-antibiotic treatment for gastrointestinal infections in livestock</h3>\r\n[dt_divider style=\"thick\" /]\r\n\r\n&nbsp;\r\n\r\n<strong>Composition: </strong>\r\n\r\nEach 1 bolus contains,\r\nHalquinol – 1500 mg\r\n\r\n[dt_divider style=\"thin\" /]\r\n\r\n<strong>Indication: </strong>\r\n\r\nThe antibacterial spectrum includes activity against most grampositive and gram negative bacteria such as E <em>coli, Salmonella pullorum, Salmonella enteritidis, Salmonella typhimurium, Staphylococcus aureus, Streptococcus</em> sp., <em>Sheigella</em> sp. and <em>Proteus vulgaris</em>. exerts broad spectrum antifungal activity on <em>Candida albicans, Epidermophyton floccosum, Trycophyton mentagrophytes, Microsporum</em> sp and <em>Aspergillus</em> sp. exhibits antiprotozoal activity against <em>Entamoeba hystolytica, Eimeria bovis</em> and other <em>Eimeria</em> species. As a growth promoter, Halquinol proves itself superior to Zinc bacitracin, and Virginiamycin both in terms of improving bodyweight and reducing mortality. possesses a characteristic that allows it to slow down the motility of intestine and thus promotes digestion and absorption of nutrients. It is also a very effective remedy for crop mycosis, wet droppings and diarrhoea. The antimicrobial spectrum of Halquinolis wider when compared to Penicillin, Streptomycin, Ampicillin, Zinc bacitracin, Tetracycline, Arsanilic acid, Neomycin, Nystatin, Furazolidone and Chloramphenicol.\r\n\r\n[dt_divider style=\"thin\" /]\r\n\r\n<strong>Withdrawal time: </strong>\r\n\r\nFor meat – 28 days\r\nFor milk - 7 days\r\n\r\n[dt_divider style=\"thin\" /]\r\n\r\n<strong>Dosage: </strong>\r\n\r\nSpecies Dosage\r\nCalves, Goats, Sheep &amp; Pig ½-1 Bolus twice daily for 3-5 days\r\nCattle &amp; Buffalo 1-2 Bolus twice daily for 3-5 days\r\n\r\n[dt_divider style=\"thin\" /]\r\n\r\n<strong>Pack sizes: </strong>\r\n\r\n6 Boli\r\n\r\n&nbsp;\r\n\r\n[dt_divider style=\"thick\" /]\r\n\r\n&nbsp;','publish','closed','closed','','gutcare-bolus','','','2023-09-24 01:08:57','2023-09-24 01:08:57','',0,'https://farmchemie.yasithawd.com/?post_type=product&#038;p=3611',0,'product','',0),(3612,1,'2023-09-13 10:40:18','2023-09-13 10:40:18','','ANTI – NASTITIS A','<h3>Intramammary ointment for Lactating cow</h3>\r\n[dt_divider style=\"thick\" /]\r\n\r\n&nbsp;\r\n\r\n<strong>Composition: </strong>\r\n\r\nEach 10 g contains,\r\nSodium cloxacillin - 250 mg\r\nNeomycin sulfate - 200 mg\r\nSodium sulfadimidine - 500 mg\r\nChymotrypsin - 8 mg;\r\n\r\n[dt_divider style=\"thin\" /]\r\n\r\n<strong>Indication: </strong>\r\n\r\nIndications It is intended for lactating cattle in the treatment of acute mastitis caused by Staphylococcus, Streptococcus, E. coli and all those germs sensitive to antibiotic association\r\n\r\n[dt_divider style=\"thin\" /]\r\n\r\n<strong>Contraindication: </strong>\r\n\r\nDo not apply in cases of fungal mastitis.\r\n\r\n[dt_divider style=\"thin\" /]\r\n\r\n<strong>Withdrawal time: </strong>\r\n\r\nMilk produced by the affected quarter should not be consumed until 4 days after the last treatment.\r\n\r\n[dt_divider style=\"thin\" /]\r\n\r\n<strong>Dosage: </strong>\r\n\r\nPrevious teat disinfection and after thoroughly milking the affected quarter, apply 1 syringe every 24 hours for 3 consecutive days, or as directed by a veterinarian. To get a better diffusion of the drug, perform a gentle massage on the breast using circular upward movements, after administering the ointment.\r\n\r\n[dt_divider style=\"thin\" /]\r\n\r\n<strong>Pack sizes: </strong>\r\n\r\n50 mL, and 100 mL\r\n\r\n&nbsp;\r\n\r\n[dt_divider style=\"thick\" /]\r\n\r\n&nbsp;','publish','closed','closed','','anti-nastitis-a','','','2023-09-13 10:47:28','2023-09-13 10:47:28','',0,'https://farmchemie.yasithawd.com/?post_type=product&#038;p=3612',0,'product','',0),(3613,1,'2023-09-13 10:47:01','2023-09-13 10:47:01','','ANTI – NASTITIS A','<h3>Intramammary ointment for drying cows</h3>\n[dt_divider style=\"thick\" /]\n\n&nbsp;\n\n<strong>Composition: </strong>\n\nEach 10 g contains,\nCloxacillin sodium-benzathine - 400 mg\nNeomycin sulfate - 200 mg\n\n[dt_divider style=\"thin\" /]\n\n<strong>Indication: </strong>\n\nIntended for the treatment of subclinical mastitis during the drying period caused by Streptococcus, E. coli and other germs sensitive to the antibiotic association.\n\n[dt_divider style=\"thin\" /]\n\n<strong>Contraindication: </strong>\n\nDo not apply in cases of fungal mastitis.\n\n[dt_divider style=\"thin\" /]\n\n<strong>Withdrawal time: </strong>\n\nFor meat: 28 days.\nFor milk: Do not apply in animals producing milk for human consumption\n\n[dt_divider style=\"thin\" /]\n\n<strong>Dosage: </strong>\n\nCattle: Apply the contents of 1 injector in each affected quarter, in a single administration. Sheep and goats: 1/2 the contents of an injector in each affected quarter, in a single administration. Treatment should be performed at the beginning of the drying period. Before administering the product, the affected quarter should be milked thoroughly and washed with an antiseptic solution. After application, massage the udder to improve the distribution of the product.\n\n[dt_divider style=\"thin\" /]\n\n<strong>Pack sizes: </strong>\n\n50 mL, and 100 mL\n\n&nbsp;\n\n[dt_divider style=\"thick\" /]\n\n&nbsp;','inherit','closed','closed','','3612-autosave-v1','','','2023-09-13 10:47:01','2023-09-13 10:47:01','',3612,'https://farmchemie.yasithawd.com/?p=3613',0,'revision','',0),(3614,1,'2023-09-13 11:22:23','2023-09-13 11:22:23','','ANTI – NASTITIS S','<h3>Intramammary ointment for drying cows</h3>\r\n[dt_divider style=\"thick\" /]\r\n\r\n&nbsp;\r\n\r\n<strong>Composition: </strong>\r\n\r\nEach 10 g contains,\r\nCloxacillin sodium-benzathine - 400 mg\r\nNeomycin sulfate - 200 mg\r\n\r\n[dt_divider style=\"thin\" /]\r\n\r\n<strong>Indication: </strong>\r\n\r\nIntended for the treatment of subclinical mastitis during the drying period caused by Streptococcus, E. coli and other germs sensitive to the antibiotic association.\r\n\r\n[dt_divider style=\"thin\" /]\r\n\r\n<strong>Contraindication: </strong>\r\n\r\nDo not apply in cases of fungal mastitis.\r\n\r\n[dt_divider style=\"thin\" /]\r\n\r\n<strong>Withdrawal time: </strong>\r\n\r\nFor meat: 28 days.\r\nFor milk: Do not apply in animals producing milk for human consumption\r\n\r\n[dt_divider style=\"thin\" /]\r\n\r\n<strong>Dosage: </strong>\r\n\r\nCattle: Apply the contents of 1 injector in each affected quarter, in a single administration. Sheep and goats: 1/2 the contents of an injector in each affected quarter, in a single administration. Treatment should be performed at the beginning of the drying period. Before administering the product, the affected quarter should be milked thoroughly and washed with an antiseptic solution. After application, massage the udder to improve the distribution of the product.\r\n\r\n[dt_divider style=\"thin\" /]\r\n\r\n<strong>Pack sizes: </strong>\r\n\r\n50 mL, and 100 mL\r\n\r\n&nbsp;\r\n\r\n[dt_divider style=\"thick\" /]\r\n\r\n&nbsp;','publish','closed','closed','','anti-nastitis-s','','','2023-09-13 11:25:15','2023-09-13 11:25:15','',0,'https://farmchemie.yasithawd.com/?post_type=product&#038;p=3614',0,'product','',0),(3615,1,'2023-09-13 13:33:05','2023-09-13 13:33:05','','ALVERM 30','<h3>Albendazole 30% W/W powder</h3>\r\n[dt_divider style=\"thick\" /]\r\n\r\n&nbsp;\r\n\r\n<strong>Composition: </strong>\r\n\r\nEach 1 g contains,\r\nAlbendazole - 300 mg\r\n\r\n[dt_divider style=\"thin\" /]\r\n\r\n<strong>Indication: </strong>\r\n\r\nBroad spectrum antjelmintic for treatment and control of all the stages such as eggs, immature and adult gastrointestinal Nematodes, Lung worms, Tape worms, and Flukes in poultry, cattle, sheep and swine.\r\n\r\n[dt_divider style=\"thin\" /]\r\n\r\n<strong>Contraindication: </strong>\r\n\r\nConcurrent administration of other ruminal boluses, Albendazole have been found to be teratogenic in the early stages of pregnancy. These should be used with caution or avoided at mating or during first 45 days of pregnancy.\r\n\r\n[dt_divider style=\"thin\" /]\r\n\r\n<strong>Withdrawal time: </strong>\r\n\r\nFor meet – 14 days\r\nFor eggs – 7 days.\r\n\r\n[dt_divider style=\"thin\" /]\r\n\r\n<strong>Dosage: </strong>\r\n<table style=\"height: 574px;\" width=\"413\">\r\n<tbody>\r\n<tr>\r\n<td width=\"573\">\r\n<table>\r\n<tbody>\r\n<tr>\r\n<td width=\"108\">Type of Animal</td>\r\n<td width=\"108\">Age in Months</td>\r\n<td width=\"107\">Dosage for Body Weight</td>\r\n<td width=\"108\">Amount of Feed to be Mixed</td>\r\n<td width=\"128\">Amount of water to be Dissolved</td>\r\n</tr>\r\n<tr>\r\n<td width=\"108\">1000 Birds</td>\r\n<td width=\"108\">02</td>\r\n<td width=\"107\">50 g</td>\r\n<td width=\"108\">50 kg</td>\r\n<td width=\"128\">50 L</td>\r\n</tr>\r\n<tr>\r\n<td width=\"108\">&nbsp;</td>\r\n<td width=\"108\">3 ½</td>\r\n<td width=\"107\">100 g</td>\r\n<td width=\"108\">70 kg</td>\r\n<td width=\"128\">60 L</td>\r\n</tr>\r\n<tr>\r\n<td width=\"108\">&nbsp;</td>\r\n<td width=\"108\">05</td>\r\n<td width=\"107\">120 g</td>\r\n<td width=\"108\">90 kg</td>\r\n<td width=\"128\">70 L</td>\r\n</tr>\r\n<tr>\r\n<td width=\"108\">&nbsp;</td>\r\n<td width=\"108\">More than 5</td>\r\n<td width=\"107\">150 g</td>\r\n<td width=\"108\">120 kg</td>\r\n<td width=\"128\">80 L</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n&nbsp;\r\n<table>\r\n<tbody>\r\n<tr>\r\n<td width=\"187\">Type of Animal</td>\r\n<td width=\"187\">Dosage for 30 kg Body Weight</td>\r\n</tr>\r\n<tr>\r\n<td width=\"187\">Cattle</td>\r\n<td width=\"187\">0.5 g – 1 g</td>\r\n</tr>\r\n<tr>\r\n<td width=\"187\">Goats</td>\r\n<td rowspan=\"3\" width=\"187\">&nbsp;\r\n\r\n0.8 g</td>\r\n</tr>\r\n<tr>\r\n<td width=\"187\">Sheep</td>\r\n</tr>\r\n<tr>\r\n<td width=\"187\">Pigs</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n&nbsp;</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n[dt_divider style=\"thin\" /]\r\n\r\n<strong>Pack sizes: </strong>\r\n\r\n10 g, 50 g and 1 kg\r\n\r\n&nbsp;\r\n\r\n[dt_divider style=\"thick\" /]\r\n\r\n&nbsp;','publish','closed','closed','','alverm-30','','','2023-09-13 13:46:17','2023-09-13 13:46:17','',0,'https://farmchemie.yasithawd.com/?post_type=product&#038;p=3615',0,'product','',0),(3616,1,'2023-09-13 13:51:03','2023-09-13 13:51:03','','ALVERM 600 TAB','<h3>BROAD SPECTRUM ANTHELMINTIC</h3>\r\n[dt_divider style=\"thick\" /]\r\n\r\n&nbsp;\r\n\r\n<strong>Composition: </strong>\r\n\r\nEach 1 tablet contains,\r\nAlbendazole - 600 mg\r\n\r\n[dt_divider style=\"thin\" /]\r\n\r\n<strong>Indication: </strong>\r\n\r\nBroad spectrum anthelmintic for treatment and control of all the stages such as eggs, immature and adult gastrointestinal Nematodes, Lung worms, Tape worms, and Flukes in cattle and buffalo calves, goats and swine.\r\n\r\n[dt_divider style=\"thin\" /]\r\n\r\n<strong>Contraindication: </strong>\r\n\r\nConcurrent administration of other ruminal boluses, Albendazole have been found to be teratogenic in the early stages of pregnancy. These should be used with caution or avoided at mating or during first 45 days of pregnancy.\r\n\r\n[dt_divider style=\"thin\" /]\r\n\r\n<strong>Withdrawal time: </strong>\r\n\r\nFor meat – 14 days\r\nFor milk – 3 days.\r\n\r\n[dt_divider style=\"thin\" /]\r\n\r\n<strong>Dosage: </strong>\r\n\r\nRoundworms and Tapeworms - 1 tab per 80 kg of Bodyweight.\r\nAdult Liver Flukes - 1 tab per 40 kg of Bodyweight\r\n\r\n[dt_divider style=\"thin\" /]\r\n\r\n<strong>Pack sizes: </strong>\r\n\r\nOne Tablet\r\n\r\n&nbsp;\r\n\r\n[dt_divider style=\"thick\" /]\r\n\r\n&nbsp;','publish','closed','closed','','alverm-600-tab','','','2023-09-13 14:00:14','2023-09-13 14:00:14','',0,'https://farmchemie.yasithawd.com/?post_type=product&#038;p=3616',0,'product','',0),(3617,1,'2023-09-13 15:36:38','2023-09-13 15:36:38','','ALVERM 3000 BOLUS','<h3>BROAD SPECTRUM ANTHELMINTIC</h3>\r\n[dt_divider style=\"thick\" /]\r\n\r\n&nbsp;\r\n\r\n<strong>Composition: </strong>\r\n\r\nEach 1 bolus contains,\r\nAlbendazole - 3000 mg\r\n\r\n[dt_divider style=\"thin\" /]\r\n\r\n<strong>Indication: </strong>\r\n\r\nBroad spectrum anthelmintic for treatment and control of all the stages such as eggs, immature and adult gastrointestinal Nematodes, Lung worms, Tape worms, and Flukes in cattle and buffalo\r\n\r\n[dt_divider style=\"thin\" /]\r\n\r\n<strong>Contraindication: </strong>\r\n\r\nConcurrent administration of other ruminal boluses, Albendazole have been found to be teratogenic in the early stages of pregnancy. These should be used with caution or avoided at mating or during first 45 days of pregnancy.\r\n\r\n[dt_divider style=\"thin\" /]\r\n\r\n<strong>Withdrawal time: </strong>\r\n\r\nFor meat – 14 days\r\nFor milk – 3 days\r\n\r\n[dt_divider style=\"thin\" /]\r\n\r\n<strong>Dosage: </strong>\r\n<table style=\"height: 214px;\" width=\"355\">\r\n<tbody>\r\n<tr>\r\n<td width=\"573\">\r\n<table>\r\n<tbody>\r\n<tr>\r\n<td width=\"200\">Species</td>\r\n<td width=\"199\">Weight</td>\r\n<td width=\"199\">Dosage</td>\r\n</tr>\r\n<tr>\r\n<td rowspan=\"3\" width=\"200\">&nbsp;\r\n\r\nCattle and Buffalos</td>\r\n<td width=\"199\">400 kg</td>\r\n<td width=\"199\">1 Bolus</td>\r\n</tr>\r\n<tr>\r\n<td width=\"199\">200 kg</td>\r\n<td width=\"199\">½ Bolus</td>\r\n</tr>\r\n<tr>\r\n<td width=\"199\">100 kg</td>\r\n<td width=\"199\">¼ Bolus</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n&nbsp;</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n[dt_divider style=\"thin\" /]\r\n\r\n<strong>Pack sizes: </strong>\r\n\r\nOne Bolus\r\n\r\n&nbsp;\r\n\r\n[dt_divider style=\"thick\" /]\r\n\r\n&nbsp;','publish','closed','closed','','alverm-3000-bolus','','','2023-09-13 15:40:29','2023-09-13 15:40:29','',0,'https://farmchemie.yasithawd.com/?post_type=product&#038;p=3617',0,'product','',0),(3618,1,'2023-09-13 15:42:08','2023-09-13 15:42:08','','Gard','<h3>Albendazole 10%</h3>\r\n[dt_divider style=\"thick\" /]\r\n\r\n&nbsp;\r\n\r\n<strong>Composition: </strong>\r\n\r\nEach 1 mL contains,\r\nAlbendazole – 100 mg\r\n\r\n[dt_divider style=\"thin\" /]\r\n\r\n<strong>Indication: </strong>\r\n\r\nPigs: For the treatment of swine dysentery caused by Tiamulin-susceptible <em>Brochyspiro hvodvsenterioe</em>. For the treatment of enzootic pneumonia caused by Tiamulin-susceptible <em>Mycoplosmo hyopneumonioe</em>.\r\n\r\nChickens: For treatment of chronic respiratory disease in chickens\r\n\r\n[dt_divider style=\"thin\" /]\r\n\r\n<strong>Withdrawal time: </strong>\r\n\r\nFor meat - Pigs: 5 days after the last administration of the preparation. Chickens: 3 days after the last administration of the preparation.\r\n\r\n[dt_divider style=\"thin\" /]\r\n\r\n<strong>Dosage:</strong>\r\n\r\nPigs: Swine dysenteria caused by <em>Brachyspira hyodysenteriae</em>: 8.8 mg Tiamulin hydrogen fumarate per kg bodyweight per day for 5 consecutive days. Enzootic pneumonia caused by <em>Mycoplasma hyopneumoniae</em>: 15-20 mg Tiamulin hydrogen fumarate per kg bodyweight per day for 5 days. To ensure a correct dosage, body weight should be determined as accurately as possible to avoid underdosing\r\n\r\nChickens: For treatment of CRD\' 100 g/180 L water for 3-5 days. During the treatment only medicated water must be given\r\n\r\nThe product can be added directly to the required volume of drinking water or a concentrated solution can be prepared to be diluted to the final concentration afterward. The maximum solubility of the product is 10 gram/liter.\r\n\r\n[dt_divider style=\"thin\" /]\r\n\r\n<strong>Pack sizes: </strong>\r\n\r\n15 mL and 1 L\r\n\r\n&nbsp;\r\n\r\n[dt_divider style=\"thick\" /]\r\n\r\n&nbsp;','publish','closed','closed','','gard','','','2023-09-24 08:38:12','2023-09-24 08:38:12','',0,'https://farmchemie.yasithawd.com/?post_type=product&#038;p=3618',0,'product','',0),(3619,1,'2023-09-13 15:47:44','2023-09-13 15:47:44','','Lev Ox 2400 BOLUS','<h3>Broad spectrum anthelmintic combination for cattle</h3>\r\n[dt_divider style=\"thick\" /]\r\n\r\n&nbsp;\r\n\r\n<strong>Composition: </strong>\r\n\r\nEach 1 bolus contains,\r\nLevamisole - 1,000 mg\r\nOxyclozanide - 1,400 mg\r\n\r\n[dt_divider style=\"thin\" /]\r\n\r\n<strong>Indication: </strong>\r\n\r\nLev Ox 2400 bolus is a broad spectrum anthelmintic for use in the treatment and control of gastro-intestinal and pulmonary nematode. Infections and chronic fascioliasis in cattle.\r\n-Lungworms: <em>Dictyocaulus</em> spp.\r\n-Gastro-intestinal worms: <em>Haemonchus</em> spp., <em>Ostertagia spp</em>. (except inhibited Ostertagia larvae in cattle), <em>Nematodirus</em> spp., <em>Trichostrongylus</em> spp., <em>Cooperia</em> spp., <em>Oesophagostomum</em> spp., <em>Bunostomum</em> spp.\r\nLev Ox 2400 bolus also removes most mature <em>Fasciola</em> spp., (flukes) present in the bile duct of the liver.\r\n\r\n[dt_divider style=\"thin\" /]\r\n\r\n<strong>Contraindication: </strong>\r\n\r\nAdministration within 14 days of treatment with organophosphorus compounds or diethylcarbamazine; application of ‘pour-on’ formulations to wet animals. Levamisole is contraindicated in lactating animals (not approved). It should be used cautiously, if at all, in animals that are severely debilitated, or have significant renal or hepatic impairment. Use cautiously or, preferably, delay use in cattle that are stressed due to vaccination, dehorning or castration. Levamisole is not indicated for use as a dirofilarial adulticide. There is no information regarding the safety of this drug in pregnant animals. Although levamisole is considered relatively safe to use in large animals that are pregnant, use only if the potential benefits outweigh the risks\r\nOxyclozanide should not be used in animals that are known to be hypersensitive or allergic to the drug.\r\n\r\n[dt_divider style=\"thin\" /]\r\n\r\n<strong>Withdrawal time: </strong>\r\n\r\nFor meat – 14 days\r\nFor milk - 1 day\r\n\r\n[dt_divider style=\"thin\" /]\r\n\r\n<strong>Dosage:</strong>\r\n<table style=\"height: 183px\" width=\"390\">\r\n<tbody>\r\n<tr>\r\n<td width=\"573\">\r\n<table>\r\n<tbody>\r\n<tr>\r\n<td width=\"205\">Species</td>\r\n<td width=\"204\">Weight</td>\r\n<td width=\"204\">Dosage</td>\r\n</tr>\r\n<tr>\r\n<td rowspan=\"3\" width=\"205\">&nbsp;\r\n\r\nCattle and Buffalos</td>\r\n<td width=\"204\">300 kg</td>\r\n<td width=\"204\">2 Boli</td>\r\n</tr>\r\n<tr>\r\n<td width=\"204\">150 kg</td>\r\n<td width=\"204\">1 Bolus</td>\r\n</tr>\r\n<tr>\r\n<td width=\"204\">75 kg</td>\r\n<td width=\"204\">½  Bolus</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n&nbsp;</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n[dt_divider style=\"thin\" /]\r\n\r\n<strong>Pack sizes: </strong>\r\n\r\nOne Bolus\r\n\r\n&nbsp;\r\n\r\n[dt_divider style=\"thick\" /]\r\n\r\n&nbsp;','publish','closed','closed','','lev-ox-2400-bolus','','','2023-09-24 01:19:39','2023-09-24 01:19:39','',0,'https://farmchemie.yasithawd.com/?post_type=product&#038;p=3619',0,'product','',0),(3620,1,'2023-09-13 15:53:14','2023-09-13 15:53:14','','LEVERM 30','<h3>Levamisole 30% W/W powder</h3>\r\n[dt_divider style=\"thick\" /]\r\n\r\n&nbsp;\r\n\r\n<strong>Composition: </strong>\r\n\r\nEach 1 g contains,\r\nLevamisole – 300 mg\r\n\r\n[dt_divider style=\"thin\" /]\r\n\r\n<strong>Indication: </strong>\r\n\r\nTreatment and prevention of Gastro - intestinal Round worms and Lung worms. Administration via drinking water or mixed with feed.\r\n\r\n[dt_divider style=\"thin\" /]\r\n\r\n<strong>Contraindication: </strong>\r\n\r\nAdministration within 14 days of treatment with organophosphorus compounds or diethylcarbamazine; application of ‘pour-on’ formulations to wet animals. Levamisole is contraindicated in lactating animals (not approved). It should be used cautiously, if at all, in animals that are severely debilitated, or have significant renal or hepatic impairment. Use cautiously or, preferably, delay use in cattle that are stressed due to vaccination, dehorning or castration. Levamisole is not indicated for use as a dirofilarial adulticide. There is no information regarding the safety of this drug in pregnant animals. Although levamisole is considered relatively safe to use in large animals that are pregnant, use only if the potential benefits outweigh the risks\r\n\r\n[dt_divider style=\"thin\" /]\r\n\r\n<strong>Withdrawal time: </strong>\r\n\r\nFor meat - 5 days\r\nFor eggs - 7 days\r\n\r\n[dt_divider style=\"thin\" /]\r\n\r\n<strong>Dosage:</strong>\r\n<table style=\"height: 495px;\" width=\"403\">\r\n<tbody>\r\n<tr>\r\n<td width=\"573\">\r\n<table>\r\n<tbody>\r\n<tr>\r\n<td width=\"108\">Type of Animal</td>\r\n<td width=\"108\">Age in Months</td>\r\n<td width=\"107\">Dosage for Body Weight</td>\r\n<td width=\"108\">Amount of Feed to be Mixed</td>\r\n<td width=\"128\">Amount of water to be Dissolved</td>\r\n</tr>\r\n<tr>\r\n<td width=\"108\">1000 Birds</td>\r\n<td width=\"108\">02</td>\r\n<td width=\"107\">50 g</td>\r\n<td width=\"108\">50 kg</td>\r\n<td width=\"128\">50 L</td>\r\n</tr>\r\n<tr>\r\n<td width=\"108\"></td>\r\n<td width=\"108\">3 ½</td>\r\n<td width=\"107\">100 g</td>\r\n<td width=\"108\">70 kg</td>\r\n<td width=\"128\">60 L</td>\r\n</tr>\r\n<tr>\r\n<td width=\"108\"></td>\r\n<td width=\"108\">05</td>\r\n<td width=\"107\">120 g</td>\r\n<td width=\"108\">90 kg</td>\r\n<td width=\"128\">70 L</td>\r\n</tr>\r\n<tr>\r\n<td width=\"108\"></td>\r\n<td width=\"108\">More than 5</td>\r\n<td width=\"107\">150 g</td>\r\n<td width=\"108\">120 kg</td>\r\n<td width=\"128\">80 L</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n&nbsp;\r\n<table>\r\n<tbody>\r\n<tr>\r\n<td width=\"187\">Type of Animal</td>\r\n<td width=\"187\">Dosage for 30 kg Body Weight</td>\r\n</tr>\r\n<tr>\r\n<td width=\"187\">Cattle</td>\r\n<td width=\"187\">0.5 g – 1 g</td>\r\n</tr>\r\n<tr>\r\n<td width=\"187\">Goats</td>\r\n<td rowspan=\"3\" width=\"187\">&nbsp;\r\n\r\n0.8 g</td>\r\n</tr>\r\n<tr>\r\n<td width=\"187\">Sheep</td>\r\n</tr>\r\n<tr>\r\n<td width=\"187\">Pigs</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n&nbsp;</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n[dt_divider style=\"thin\" /]\r\n\r\n<strong>Pack sizes: </strong>\r\n\r\n30 g, 50 g and 1 kg\r\n\r\n&nbsp;\r\n\r\n[dt_divider style=\"thick\" /]\r\n\r\n&nbsp;','publish','closed','closed','','leverm-30','','','2023-09-24 05:46:14','2023-09-24 05:46:14','',0,'https://farmchemie.yasithawd.com/?post_type=product&#038;p=3620',0,'product','',0),(3621,1,'2023-09-13 18:47:26','2023-09-13 18:47:26','','LEVERM 600 TAB','<h3>LEVAMISOLE DEWORMER TABLET</h3>\r\n[dt_divider style=\"thick\" /]\r\n\r\n&nbsp;\r\n\r\n<strong>Composition: </strong>\r\n\r\nEach 1 tablet contains,\r\nLevamisole – 600 mg\r\n\r\n[dt_divider style=\"thin\" /]\r\n\r\n<strong>Indication: </strong>\r\n\r\nIn sheep and cattle, levamisole has relatively good activity against abomasal nematodes, small intestinal nematodes (not particularly good against <em>Strongyloides</em> spp.), large intestinal nematodes (not <em>Trichuris</em> spp.), and lungworms. Adult forms of species that are usually covered by levamisole, include: <em>Haemonchus</em> spp., <em>Trichostrongylus</em> spp., <em>Osteragia</em> spp., <em>Cooperia</em> spp., <em>Nematodirus</em> spp., <em>Bunostomum</em> spp., <em>Oesophagostomum</em> spp., <em>Chabertia</em> spp., and <em>Dictyocaulus vivapurus</em>. Levamisole is less effective against the immature forms of these parasites and is generally ineffective in cattle (but not sheep) against arrested larval forms. In swine, levamisole is indicated for the treatment of <em>Ascaris suum</em>, <em>Oesophagostomum</em> spp., <em>Strongyloides</em>,<em> Stephanurus</em>, and <em>Metastrongylus</em>.\r\n\r\n[dt_divider style=\"thin\" /]\r\n\r\n<strong>Contraindication: </strong>\r\n\r\nAdministration within 14 days of treatment with organophosphorus compounds or diethylcarbamazine; application of ‘pour-on’ formulations to wet animals. Levamisole is contraindicated in lactating animals (not approved). It should be used cautiously, if at all, in animals that are severely debilitated, or have significant renal or hepatic impairment. Use cautiously or, preferably, delay use in cattle that are stressed due to vaccination, dehorning or castration. Levamisole is not indicated for use as a dirofilarial adulticide. There is no information regarding the safety of this drug in pregnant animals. Although levamisole is considered relatively safe to use in large animals that are pregnant, use only if the potential benefits outweigh the risks.\r\n\r\n[dt_divider style=\"thin\" /]\r\n\r\n<strong>Withdrawal time: </strong>\r\n\r\nFor meat – 5 days\r\nFor milk - Contraindicated in lactating animals\r\n\r\n[dt_divider style=\"thin\" /]\r\n\r\n<strong>Dosage:</strong>\r\n<table style=\"height: 227px\" width=\"340\">\r\n<tbody>\r\n<tr>\r\n<td width=\"573\">&nbsp;\r\n<table>\r\n<tbody>\r\n<tr>\r\n<td width=\"205\">Species</td>\r\n<td width=\"204\">Weight</td>\r\n<td width=\"204\">Dosage</td>\r\n</tr>\r\n<tr>\r\n<td rowspan=\"3\" width=\"205\">&nbsp;\r\n\r\nCalves, Swine and Goats</td>\r\n<td width=\"204\">80 kg</td>\r\n<td width=\"204\">1 Bolus</td>\r\n</tr>\r\n<tr>\r\n<td width=\"204\">40 kg</td>\r\n<td width=\"204\">½ Bolus</td>\r\n</tr>\r\n<tr>\r\n<td width=\"204\">20 kg</td>\r\n<td width=\"204\">¼ Bolus</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n&nbsp;</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n[dt_divider style=\"thin\" /]\r\n\r\n<strong>Pack sizes: </strong>\r\n\r\nOne Tablet\r\n\r\n&nbsp;\r\n\r\n[dt_divider style=\"thick\" /]\r\n\r\n&nbsp;','publish','closed','closed','','leverm-600-tab','','','2023-09-24 01:25:38','2023-09-24 01:25:38','',0,'https://farmchemie.yasithawd.com/?post_type=product&#038;p=3621',0,'product','',0),(3622,1,'2023-09-13 18:51:59','2023-09-13 18:51:59','','LEVERM 3000 BOLUS','<h3>Anthelmintic for cattle</h3>\r\n[dt_divider style=\"thick\" /]\r\n\r\n&nbsp;\r\n\r\n<strong>Composition: </strong>\r\n\r\nEach 1 bolus contains,\r\nLevamisole – 3000 mg\r\n\r\n[dt_divider style=\"thin\" /]\r\n\r\n<strong>Indication: </strong>\r\n\r\nLevamisole has relatively good activity against abomasal nematodes, small intestinal nematodes (not particularly good against <em>Strongyloides</em> spp.), large intestinal nematodes (not <em>Trichuris</em> spp.), and lungworms. Adult forms of species that are usually covered by levamisole, include: <em>Haemonchus</em> spp., <em>Trichostrongylus</em> spp., <em>Osteragia</em> spp., <em>Cooperia</em> spp., <em>Nematodirus</em> spp., <em>Bunostomum</em> spp., <em>Oesophagostomum</em> spp., <em>Chabertia</em> spp., and <em>Dictyocaulus vivapurus</em>. Levamisole is less effective against the immature forms of these parasites and is generally ineffective in cattle (but not sheep) against arrested larval forms.\r\n\r\n[dt_divider style=\"thin\" /]\r\n\r\n<strong>Contraindication: </strong>\r\n\r\nAdministration within 14 days of treatment with organophosphorus compounds or diethylcarbamazine; application of ‘pour-on’ formulations to wet animals. Levamisole is contraindicated in lactating animals (not approved). It should be used cautiously, if at all, in animals that are severely debilitated, or have significant renal or hepatic impairment. Use cautiously or, preferably, delay use in cattle that are stressed due to vaccination, dehorning or castration. Levamisole is not indicated for use as a dirofilarial adulticide. There is no information regarding the safety of this drug in pregnant animals. Although levamisole is considered relatively safe to use in large animals that are pregnant, use only if the potential benefits outweigh the risks.\r\n\r\n[dt_divider style=\"thin\" /]\r\n\r\n<strong>Withdrawal time: </strong>\r\n\r\nFor meat – 5 days\r\nFor milk - Contraindicated in lactating animals\r\n\r\n[dt_divider style=\"thin\" /]\r\n\r\n<strong>Dosage:</strong>\r\n<table style=\"height: 188px\" width=\"319\">\r\n<tbody>\r\n<tr>\r\n<td width=\"573\">\r\n<table>\r\n<tbody>\r\n<tr>\r\n<td width=\"200\">Species</td>\r\n<td width=\"199\">Weight</td>\r\n<td width=\"199\">Dosage</td>\r\n</tr>\r\n<tr>\r\n<td rowspan=\"3\" width=\"200\">&nbsp;\r\n\r\nCattle and Buffalos</td>\r\n<td width=\"199\">400 kg</td>\r\n<td width=\"199\">1 Bolus</td>\r\n</tr>\r\n<tr>\r\n<td width=\"199\">200 kg</td>\r\n<td width=\"199\">½ Bolus</td>\r\n</tr>\r\n<tr>\r\n<td width=\"199\">100 kg</td>\r\n<td width=\"199\">¼ Bolus</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n&nbsp;</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n[dt_divider style=\"thin\" /]\r\n\r\n<strong>Pack sizes: </strong>\r\n\r\nOne Bolus\r\n\r\n&nbsp;\r\n\r\n[dt_divider style=\"thick\" /]\r\n\r\n&nbsp;','publish','closed','closed','','leverm-3000-bolus','','','2023-09-24 01:30:24','2023-09-24 01:30:24','',0,'https://farmchemie.yasithawd.com/?post_type=product&#038;p=3622',0,'product','',0),(3623,1,'2023-09-14 03:54:09','2023-09-14 03:54:09','','Rentol 10','<h3>High efficacy broad – spectrum dewormer</h3>\r\n[dt_divider style=\"thick\" /]\r\n\r\n&nbsp;\r\n\r\n<strong>Composition: </strong>\r\n\r\nEach 1 kg contains,\r\nFebantel – 100 g\r\n\r\n[dt_divider style=\"thin\" /]\r\n\r\n<strong>Indication: </strong>\r\n\r\nTreatment and prevention of Gastro-intestinal Roundworm and Lung worms in cattle, swine goats, sheep, poultry and horses.\r\n\r\n[dt_divider style=\"thin\" /]\r\n\r\n<strong>Contraindication: </strong>\r\n\r\nDo not use in animals with a known sensitivity to the active ingredients or to any of the excipients.\r\n\r\n[dt_divider style=\"thin\" /]\r\n\r\n<strong>Withdrawal time: </strong>\r\n\r\nFor meat – 8 days\r\nFor milk – 7 days\r\n\r\n[dt_divider style=\"thin\" /]\r\n\r\n<strong>Dosage:</strong>\r\n\r\nFor poultry\r\n<table>\r\n<tbody>\r\n<tr>\r\n<td width=\"124\"><strong>Number of Animals</strong></td>\r\n<td width=\"124\"><strong>Age in month</strong></td>\r\n<td width=\"124\"><strong>Dosage </strong></td>\r\n<td width=\"124\"><strong>Amount of water to dissolve </strong></td>\r\n</tr>\r\n<tr>\r\n<td rowspan=\"4\" width=\"124\">&nbsp;\r\n\r\n1000</td>\r\n<td width=\"124\">02</td>\r\n<td width=\"124\">200 g</td>\r\n<td width=\"124\">50 L</td>\r\n</tr>\r\n<tr>\r\n<td width=\"124\">03 ½</td>\r\n<td width=\"124\">350 g</td>\r\n<td width=\"124\">60 L</td>\r\n</tr>\r\n<tr>\r\n<td width=\"124\">5</td>\r\n<td width=\"124\">450 g</td>\r\n<td width=\"124\">70 L</td>\r\n</tr>\r\n<tr>\r\n<td width=\"124\">More than 5</td>\r\n<td width=\"124\">500 g</td>\r\n<td width=\"124\">80 L</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n&nbsp;\r\n\r\nFor large animals\r\n<table>\r\n<tbody>\r\n<tr>\r\n<td><strong>Type of animal</strong></td>\r\n<td><strong>Dosage</strong></td>\r\n</tr>\r\n<tr>\r\n<td><strong><b>Cattle</b></strong></td>\r\n<td>7.5 g/100 kg B.W</td>\r\n</tr>\r\n<tr>\r\n<td><strong><b>Horses</b></strong></td>\r\n<td>6 g/100 kg B.W</td>\r\n</tr>\r\n<tr>\r\n<td><strong>Sheep, </strong><strong><b>Goats </b></strong><strong>&amp;</strong><strong><b> Pigs</b></strong></td>\r\n<td>5 g / 100 kg B.W.</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n[dt_divider style=\"thin\" /]\r\n\r\n<strong>Pack sizes: </strong>\r\n\r\n15 g, 100 g and 500 g\r\n\r\n&nbsp;\r\n\r\n[dt_divider style=\"thick\" /]\r\n\r\n&nbsp;','publish','closed','closed','','rentol-10','','','2023-09-23 10:47:33','2023-09-23 10:47:33','',0,'https://farmchemie.yasithawd.com/?post_type=product&#038;p=3623',0,'product','',0),(3624,1,'2023-09-14 04:04:02','2023-09-14 04:04:02','','ESTROGEST','<h3>D- Cloprostenol Injectable Solution</h3>\r\n[dt_divider style=\"thick\" /]\r\n\r\n&nbsp;\r\n\r\n<strong>Composition: </strong>\r\n\r\nEach 1 mL contains,\r\nD-Cloprostenol - 75 mcg\r\n\r\n[dt_divider style=\"thin\" /]\r\n\r\n<strong>Indication: </strong>\r\n\r\nESTROGEST is indicated in the induction of oestrus in mares, pigs and cattle; dysfunction in the presence of ovarian corpus luteum: postpartum anoestrus, silent oestrus, irregular cycle and cycle without ovulation, persistent .orp6 luteum, luteal cysts, endometritis, pyometra, interruption of gestation (during the first-half) fetal mummification, metro patia post puerperal uterine involution delayed. The combined therapy of follicular cysts (10-14 days after administration of GnRH or HCG)\r\n\r\n[dt_divider style=\"thin\" /]\r\n\r\n<strong>Contraindication: </strong>\r\n\r\nAvoid treatment in pregnant animals unless you want to induce abortion or labor.\r\n\r\n[dt_divider style=\"thin\" /]\r\n\r\n<strong>Withdrawal time: </strong>\r\n\r\nFor meat - Cattle(cows):Zero days, Pigs(sows): 1day\r\nHorses (Mares): Do not administer to horses whose meat is destined for human consumption.\r\n\r\n[dt_divider style=\"thin\" /]\r\n\r\n<strong>Dosage:</strong>\r\n\r\nCATTLE (cows):\r\nThe recommended dose is 0.150 mg D-Cloprostenol, equivalent to 2ml.\r\n\r\nHORSES (mares not intended for human consumption):\r\nThe recommended dose is 0.7| .mg vD-Cloprostenoi / animal equivalent to 1ml/ animal. Repeat if\r\n\r\nPIGS (breeders):\r\nThe recommended dose is 0.075mg D-Cloprostenol /animal equivalent to 1ml/animal.\r\n\r\n[dt_divider style=\"thin\" /]\r\n\r\n<strong>Pack sizes: </strong>\r\n\r\n20 mL\r\n\r\n&nbsp;\r\n\r\n[dt_divider style=\"thick\" /]\r\n\r\n&nbsp;','publish','closed','closed','','estrogest','','','2023-09-14 04:06:49','2023-09-14 04:06:49','',0,'https://farmchemie.yasithawd.com/?post_type=product&#038;p=3624',0,'product','',0),(3625,1,'2023-09-14 04:08:03','2023-09-14 04:08:03','','OXITOLAC','<h3>Injectable Hormone solution</h3>\r\n[dt_divider style=\"thick\" /]\r\n\r\n&nbsp;\r\n\r\n<strong>Composition: </strong>\r\n\r\nEach 100 mL contains,\r\nSynthetic oxytocin - 20 IU\r\n\r\n[dt_divider style=\"thin\" /]\r\n\r\n<strong>Indication: </strong>\r\n\r\nIn general and for all species: Induction to parturition; inertia or uterine atony; involution of the uterus after caesarean sections and reduction of hemorrhages; expulsion of secundins and remains of exudates after childbirth; initiation to lactation after childbirth; agalaxia of sow; piometritis and chronic endometritis to cause exudates to be expelled; coadjuvant treatment for antibiotic therapy of acute and chronic mastitis, to provoke the expulsion of waste and facilitate drainage\r\n\r\n[dt_divider style=\"thin\" /]\r\n\r\n<strong>Contraindication: </strong>\r\n\r\nDo not use in pregnant females until the moment of delivery. Do not use in cases of hypersensitivity to the drug. Dystocia due to abnormal presentation, pelvic-fetal disproportion or any type of mechanical obstruction. Cardiovascular diseases. Females predisposed to uterine rupture. Administer with caution in toxemias. When there is no dilation of the cervix (during labor induction).\r\n\r\n[dt_divider style=\"thin\" /]\r\n\r\n<strong>Withdrawal time: </strong>\r\n\r\nFor meat – 2 days\r\n\r\n[dt_divider style=\"thin\" /]\r\n\r\n<strong>Dosage:</strong>\r\n\r\nObstetrics (intravenous, intramuscular and subcutaneous):\r\nCows - 3.75 - 5 mL\r\nMares - 3.75 - 7.5 mL\r\nSows, Sheep - 1.5 - 2.5 mL\r\nFemale dogs - 0.25 - 1.25 mL\r\nCats - 0.25-0.5 mL\r\n\r\nMilky Ejection (Preferably intravenously):\r\nCows and Mares - 0.5-1.0 mL\r\nSows and Sheep - 0.25-1.0 mL\r\nFemale dogs - 0.1-0.5 mL\r\nCats - 0.05 - 0.5 mL\r\n\r\n[dt_divider style=\"thin\" /]\r\n\r\n<strong>Pack sizes: </strong>\r\n\r\n10 mL,20 mL, 50 mL and 100 mL\r\n\r\n&nbsp;\r\n\r\n[dt_divider style=\"thick\" /]\r\n\r\n&nbsp;','publish','closed','closed','','oxitolac','','','2023-09-23 12:06:27','2023-09-23 12:06:27','',0,'https://farmchemie.yasithawd.com/?post_type=product&#038;p=3625',0,'product','',0),(3626,1,'2023-09-14 04:58:19','2023-09-14 04:58:19','','ULTRAFORT B','<h3>Injectable Vitamin B Complex</h3>\r\n[dt_divider style=\"thick\" /]\r\n\r\n&nbsp;\r\n\r\n<strong>Composition: </strong>\r\n\r\nEach 1 mL contains,\r\nVitamin B1 (thiamine) - 100 mg\r\nVitamin B2 (riboflavin) - 5 mg\r\nVitamin B6 (pyridoxine) - 50 mg\r\nVitamin B12 (cyanocobalamin) - 100 mcg\r\nNicotinamide (niacin) - 150 mg\r\nDexpanthenol - 5 mg\r\n\r\n[dt_divider style=\"thin\" /]\r\n\r\n<strong>Indication: </strong>\r\n\r\nIndicated for the treatment of B - complex vitamin deficiencies while acting also as anti-anemic and neurotonic; stimulant of appetite, hematopoiesis and production; stress relief and reactivator of metabolism in cases of parasitic or infectious diseases.\r\n\r\n[dt_divider style=\"thin\" /]\r\n\r\n<strong>Withdrawal time: </strong>\r\n\r\nFor meat – Zero days\r\nFor milk – Zero days\r\n\r\n[dt_divider style=\"thin\" /]\r\n\r\n<strong>Dosage:</strong>\r\n\r\nAdminister by intramuscular or subcutaneous route. Cattle and horses: 1 ml / 100 kg b.w. per day. Pigs, sheep and goats: 0.5 ml / 50 kg b.w. per day. Dogs: 0.5 - 2 ml / animal per day. Administer for 2 to 3 days, according to the criteria of the veterinarian.\r\n\r\n[dt_divider style=\"thin\" /]\r\n\r\n<strong>Pack sizes: </strong>\r\n\r\n10 mL,20 mL, 50 mL, 100 mL and 250 mL\r\n\r\n&nbsp;\r\n\r\n[dt_divider style=\"thick\" /]\r\n\r\n&nbsp;','publish','closed','closed','','ultrafort-b','','','2023-09-24 05:44:46','2023-09-24 05:44:46','',0,'https://farmchemie.yasithawd.com/?post_type=product&#038;p=3626',0,'product','',0),(3627,1,'2023-09-14 05:55:50','2023-09-14 05:55:50','','BOLOS UTERINOS','<h3>Vaginal ovules</h3>\r\n[dt_divider style=\"thick\" /]\r\n\r\n&nbsp;\r\n\r\n<strong>Composition: </strong>\r\n\r\nEach 4 g contains,\r\nEstradiol benzoate 17 β - 0.001 g\r\nTetracycline hydrochloride - 2.000 g\r\n\r\n[dt_divider style=\"thin\" /]\r\n\r\n<strong>Indication: </strong>\r\n\r\nIndicated for the prevention and treatment of genital tract problems (vaginitis and metritis caused by: <em>Trichomonas</em> spp., <em>Mycoplasma</em> spp., <em>Chlamydia</em> spp., <em>Corynebacterium</em> spp., <em>Listeria monocytogenes</em>, <em>Escherichia coli</em>, <em>Actinomyces</em> spp. and <em>Campylobacter</em> <em>fetus</em>. In placental retentions, when avoiding manual extraction is desired or to prevent from infections in case it is performed.\r\n\r\n[dt_divider style=\"thin\" /]\r\n\r\n<strong>Contraindication: </strong>\r\n\r\nDo not apply in cases of hypersensitivity to any of the components of the formula.\r\n\r\n[dt_divider style=\"thin\" /]\r\n\r\n<strong>Withdrawal time: </strong>\r\n\r\nFor meat - 18 days.\r\nFor milk - 3 days.\r\n\r\n[dt_divider style=\"thin\" /]\r\n\r\n<strong>Dosage:</strong>\r\n\r\nIntrauterine route. In all target species: Introduce ½ - 1 ovule according to the severity, at the bottom of the womb and/or vagina during 3 - 4 days. The duration and intensity of the treatment may only be determined by the veterinarian.\r\n\r\n[dt_divider style=\"thin\" /]\r\n\r\n<strong>Pack sizes: </strong>\r\n\r\n10 ovules (4 g)/ bottle\r\n\r\n&nbsp;\r\n\r\n[dt_divider style=\"thick\" /]\r\n\r\n&nbsp;','publish','closed','closed','','bolos-uterinos','','','2023-09-24 01:44:21','2023-09-24 01:44:21','',0,'https://farmchemie.yasithawd.com/?post_type=product&#038;p=3627',0,'product','',0),(3628,1,'2023-09-14 05:59:53','2023-09-14 05:59:53','','Calci gel','<h3>Oral Ionic Calcium.</h3>\r\n[dt_divider style=\"thick\" /]\r\n\r\n&nbsp;\r\n\r\n<strong>Composition: </strong>\r\n\r\n300 g contains,\r\nIonic Calcium (Ca++) – 43.5 g\r\n\r\n[dt_divider style=\"thin\" /]\r\n\r\n<strong>Indication: </strong>\r\n\r\nActivates Vitamin D3 and calcium metabolism. Maintains serum calcium level; longer than IV calcium level. Ensures rapis and efficient absorption of Ca++. Increases calcium mobilization from bone. Increases calcium absorption from intestine.\r\n\r\n[dt_divider style=\"thin\" /]\r\n\r\n<strong>Dosage:</strong>\r\n\r\nAdminister one tube 6-12 hours prior to calving and give another tube within 6-12 after calving.\r\n\r\n[dt_divider style=\"thin\" /]\r\n\r\n<strong>Pack sizes: </strong>\r\n\r\n300 g\r\n\r\n&nbsp;\r\n\r\n[dt_divider style=\"thick\" /]\r\n\r\n&nbsp;','publish','closed','closed','','calci-gel','','','2023-09-23 12:06:24','2023-09-23 12:06:24','',0,'https://farmchemie.yasithawd.com/?post_type=product&#038;p=3628',0,'product','',0),(3629,1,'2023-09-14 06:08:15','2023-09-14 06:08:15','','CALFO 20','<h3>A combination of all essential Vitamins, Minerals, Amino Acids and Stimulate of Reproduction and Milk Production system of Cattle, Goats and Pigs.</h3>\r\n[dt_divider style=\"thick\" /]\r\n\r\n&nbsp;\r\n\r\n<strong>Composition: </strong>\r\n\r\nEach 1 kg contains,\r\nVitamin A - 6000,000 IU\r\nVitamin D3 - 200,00 IU\r\nVitamin B1 - 100 mg\r\nVitamin B2 - 200 mg\r\nVitamin B6 - 10 mg\r\nVitamin B12 - 10 mg\r\nVitamin E - 1 mg\r\nVitamin K3 - 75 mg\r\nNicotinic acid - 25 mg\r\nCalcium Pantothenate - 500 mg\r\nCholine chloride - 25 g\r\nD.L.Methionine - 10 g\r\nGentian root - 5 g\r\nSodium chloride - 25 g\r\nMagnesium carbonate - 5 g\r\nManganese carbonate - 1 g\r\nZinc carbonate - 1 g\r\nIron sulfate - 2 g\r\nCopper sulfate - 500 mg\r\nCobalt sulfate - 100 mg\r\nPotassium iodide - 160 mg\r\nCalcium carbonate - 443.087 g\r\nDicalcium phosphate - 300 g\r\nSodium glutamate - 7.5 g\r\nL-Lysine - 2.5 g\r\nCarnitine hydrochloride - 10 g\r\nSelenium - 80 mg\r\nAromatized excipient q.s. - 1000 g\r\n\r\n[dt_divider style=\"thin\" /]\r\n\r\n<strong>Indication: </strong>\r\n\r\nAnorexia, low productivity, tonic and stimulant of reproduction and milk production system.\r\n\r\n[dt_divider style=\"thin\" /]\r\n\r\n<strong>Dosage:</strong>\r\n\r\nFor female cattle and Buffaloes Reproduction issues :\r\nupto 10 L: 25-50 g per day for 20 consecutive days above 10 L: 50-100 g per day for 20 consecutive days\r\n\r\nMilking animals:\r\nupto 10 L: 25-50 g per day for 2-3 days/week above 10 L: 50 100 g per day for 2-3 days/week\r\nFor goats, pigs sheep &amp; horses\r\nReproduction issues: 25 g per animal per day for\r\n20 consecutive days\r\n\r\nAs a vitamin &amp; mineral mixture: 25 g per animal per day for 2-3 days/week\r\n\r\n[dt_divider style=\"thin\" /]\r\n\r\n<strong>Pack sizes: </strong>\r\n\r\n500g, 5 kg and 25 kg\r\n\r\n&nbsp;\r\n\r\n[dt_divider style=\"thick\" /]\r\n\r\n&nbsp;','publish','closed','closed','','calfo-20','','','2023-09-15 05:58:28','2023-09-15 05:58:28','',0,'https://farmchemie.yasithawd.com/?post_type=product&#038;p=3629',0,'product','',0),(3630,1,'2023-09-14 06:14:11','2023-09-14 06:14:11','','CINAPRIM','<h3>Water soluble antimicrobial powder for veterinary use</h3>\r\n[dt_divider style=\"thick\" /]\r\n\r\n&nbsp;\r\n\r\n<strong>Composition: </strong>\r\n\r\nEach 1 g contains,\r\nSulphadimidine sodium - 200 mg\r\nTrimethoprim - 40 mg\r\n\r\n[dt_divider style=\"thin\" /]\r\n\r\n<strong>Indication: </strong>\r\n\r\nBroad spectrum antimicrobial for treatment &amp; control of bacterial infections in animals.\r\nPoultry – Bacterial complications of Chronic Respiratory Disease &amp; of viral processes, Salmonellosis, Colibacillosis, Vibriosis, Streptococcosis &amp; Pasteurellosis.\r\nCattle &amp; Buffaloes - Salmonellosis, Colibacillosis, Vibriosis, Pneumonia, Genitourinary infections, Cocci &amp; colibacillosis mastitis, Actinomycosis &amp; pyogenic abscesses.\r\nSheep &amp; Goats – Pneumonia, Transport fever, Enteritis, Septicaemia,Coccidiosis, Abcesses &amp; Mastitis.\r\nSwine - Salmonellosis, Colibacillosis, Vibrionic dysentery, Pneumonia, Pasaturellosis, Malignant edema &amp; Abscesses\r\nHorses – Foal Diarrhoea, Pneumonia, Strangles, Pyosepticaemia\r\nRabbits – Coryza, Pasturellosis, Pneumonia, Colibacillosis, Enteritis, Intestinal Coccidiosis\r\n\r\n[dt_divider style=\"thin\" /]\r\n\r\n<strong>Contraindication: </strong>\r\n\r\nDo not administer in animals with known hypersensitivity to the association sulfonamide-Trimethoprim. Administer cautiously in animals with impaired renal or hepatic function.\r\n\r\n[dt_divider style=\"thin\" /]\r\n\r\n<strong>Dosage:</strong>\r\n\r\nDissolve the product in drinking water at the recommended dose\r\nPoultry &amp; Rabbits –1g per liter of drinking water for 3 days.\r\nCattle &amp; Buffaloe (Calves), Sheep &amp; Goats, Horses &amp; swine - 1 g per 10 kg of BW daily for 3-5 days. First day of treatment it is recommended to administer twice daily\r\n\r\n[dt_divider style=\"thin\" /]\r\n\r\n<strong>Pack sizes: </strong>\r\n\r\n25 g, 100 g and 1 kg\r\n\r\n&nbsp;\r\n\r\n[dt_divider style=\"thick\" /]\r\n\r\n&nbsp;','publish','closed','closed','','cinaprim','','','2023-09-24 07:44:27','2023-09-24 07:44:27','',0,'https://farmchemie.yasithawd.com/?post_type=product&#038;p=3630',0,'product','',0),(3631,1,'2023-09-14 06:20:34','2023-09-14 06:20:34','','DOXYNEO','<h3>Dual action broad spectrum water soluble antibiotic mixture</h3>\r\n[dt_divider style=\"thick\" /]\r\n\r\n&nbsp;\r\n\r\n<strong>Composition: </strong>\r\n\r\nEach 1 g contains,\r\nDoxycycline hyclate - 100 mg\r\nNeomycin sulphate - 100 mg\r\n\r\n[dt_divider style=\"thin\" /]\r\n\r\n<strong>Indication: </strong>\r\n\r\nIndicated to Gastrointestinal and respiratory infections caused by Doxycycline and Neomycin sensitive micro-organisms like <em>Bordetella, Campylobacter, Chlamydia, E. coli, Haemophilus, Mycoplasma, Pasteurella, Rickettsia, Salmonella, Staphylococcus</em> and <em>Streptococcus</em> spp. in calves, kids, poultry, lambs and swine\r\n\r\n[dt_divider style=\"thin\" /]\r\n\r\n<strong>Contraindication: </strong>\r\n\r\nIt is contraindicated to use in animals with a seriously impaired hepatic function, animals with an active microbial digestion and hypersensitivity to tetracyclines and/or neomycin. Concurrent administration of penicillines, cephalosporins, quinolones, cycloserine and bacteriostatic agents with Doxycycline and Neomycin combination is discouraged.\r\n\r\n[dt_divider style=\"thin\" /]\r\n\r\n<strong>Withdrawal time: </strong>\r\n\r\nMeat -7 Days\r\nEggs – 7 Days\r\n\r\n[dt_divider style=\"thin\" /]\r\n\r\n<strong>Dosage:</strong>\r\n\r\nPoultry: Prevention of early chick mortality – 1 g of DOXYNEO in 10 litres of water for 3 – 4 days. Repeat dose after 4th week.\r\nIn several infections – 1 g of DOXYNEO in 5 litres of water for 4 – 5 days.\r\n\r\nGoats, Sheep, Calves and Swine: 0.5 g DOXYNEO per 50 kg of Body weight for 3 – 5 days.\r\n\r\n[dt_divider style=\"thin\" /]\r\n\r\n<strong>Pack sizes: </strong>\r\n\r\n25 g, 100 g and 1 kg\r\n\r\n&nbsp;\r\n\r\n[dt_divider style=\"thick\" /]\r\n\r\n&nbsp;','publish','closed','closed','','doxyneo','','','2023-09-24 07:17:42','2023-09-24 07:17:42','',0,'https://farmchemie.yasithawd.com/?post_type=product&#038;p=3631',0,'product','',0),(3632,1,'2023-09-14 06:27:11','2023-09-14 06:27:11','','FARMOX 50','<h3>Amoxicillin trihydrate 50% W/W powder</h3>\r\n[dt_divider style=\"thick\" /]\r\n\r\n&nbsp;\r\n\r\n<strong>Composition: </strong>\r\n\r\nEach 1 g contains,\r\nAmoxicillin tryhydrate – 500 mg\r\n\r\n[dt_divider style=\"thin\" /]\r\n\r\n<strong>Indication: </strong>\r\n\r\nTreatments of infections in poultry, swine, and calves caused by bacteria sensitive to Amoxicillin. Treatment against Salmonellosis and Collibacillosis.\r\n\r\n[dt_divider style=\"thin\" /]\r\n\r\n<strong>Contraindication: </strong>\r\n\r\nAnimals who have history of hypersensitivity to Amoxycillin, Guinea Pigs, Hamsters, Rabbits; oral administration to calves with a functional rumen.\r\n\r\n[dt_divider style=\"thin\" /]\r\n\r\n<strong>Withdrawal time: </strong>\r\n\r\nFor meat – Swine, Calves: 5 days and Poultry: 1 day\r\n\r\n[dt_divider style=\"thin\" /]\r\n\r\n<strong>Dosage:</strong>\r\n<table>\r\n<tbody>\r\n<tr>\r\n<td width=\"263\"><strong>Tyoe of Animal </strong></td>\r\n<td width=\"294\"><strong>Dosage</strong></td>\r\n</tr>\r\n<tr>\r\n<td width=\"263\"><strong>Poultry</strong></td>\r\n<td width=\"294\">1 g / 6 L of drinking water within 24 24 hours. Continue for 3-5 days.</td>\r\n</tr>\r\n<tr>\r\n<td width=\"263\"><strong><b>Swine &amp; </b></strong><strong><b> Calves</b></strong></td>\r\n<td width=\"294\">1.5 g / 30 kg of Bodyweight within 24 hours.   Continue for 3-5 days.</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n[dt_divider style=\"thin\" /]\r\n\r\n<strong>Pack sizes: </strong>\r\n\r\n25 g, 100 g and 1 kg\r\n\r\n&nbsp;\r\n\r\n[dt_divider style=\"thick\" /]\r\n\r\n&nbsp;','publish','closed','closed','','farmox-50','','','2023-09-23 08:37:51','2023-09-23 08:37:51','',0,'https://farmchemie.yasithawd.com/?post_type=product&#038;p=3632',0,'product','',0),(3633,1,'2023-09-14 06:31:53','2023-09-14 06:31:53','','GANADEXIL ENROFLOXACINA','<h3>Enrofloxacin 10% Oral Solution for Poultry</h3>\r\n[dt_divider style=\"thick\" /]\r\n\r\n&nbsp;\r\n\r\n<strong>Composition: </strong>\r\n\r\nEach 1 mL contains,\r\nEnrofloxacin – 100 mg\r\n\r\n[dt_divider style=\"thin\" /]\r\n\r\n<strong>Indication: </strong>\r\n\r\nTreatment of colibacillosis, salmonellosis and infections caused by <em>Mycoplasma</em> spp.\r\n\r\n[dt_divider style=\"thin\" /]\r\n\r\n<strong>Contraindication: </strong>\r\n\r\nDo not use in case of resistance to other quinolones, because of cross-resistance. I relation to fluoroquinolones, a complete cross-resistance exists. Do not use in animals with previous case of streptococcal infections.\r\n\r\n[dt_divider style=\"thin\" /]\r\n\r\n<strong>Withdrawal time: </strong>\r\n\r\nFor meat – 4 days\r\nFor eggs – Do not use\r\n\r\n[dt_divider style=\"thin\" /]\r\n\r\n<strong>Dosage:</strong>\r\n\r\nOral use in drinking water. The general dosage is 0.1 ml per kg of body weight. It is obtained by administering 0.5 L/1000 L of drinking water (50 ppm of Enrofloxacin) for 3 consecutive days. In case of salmonellosis, the length of treatment is 5 days. Provided the dosage form and that the water consumption depends on the clinical condition of the animal, for an adequate dosage, the concentration of the antimicrobial agent will be adjusted taking into consideration the daily water consumption.\r\n\r\n[dt_divider style=\"thin\" /]\r\n\r\n<strong>Pack sizes: </strong>\r\n\r\n10 mL , 25 mL, 100 mL, 1 L,\r\n\r\n&nbsp;\r\n\r\n[dt_divider style=\"thick\" /]\r\n\r\n&nbsp;','publish','closed','closed','','ganadexil-enrofloxacina','','','2023-09-23 14:13:34','2023-09-23 14:13:34','',0,'https://farmchemie.yasithawd.com/?post_type=product&#038;p=3633',0,'product','',0),(3634,1,'2023-09-14 06:59:42','2023-09-14 06:59:42','','NEOTRA','<h3>Water soluble antimicrobial powder concentrate</h3>\r\n[dt_divider style=\"thick\" /]\r\n\r\n&nbsp;\r\n\r\n<strong>Composition: </strong>\r\n\r\nEach 1 g contains,\r\nOxytetracycline hydrochloride - 50 g\r\nNeomycin sulphate - 50\r\n\r\n[dt_divider style=\"thin\" /]\r\n\r\n<strong>Indication: </strong>\r\n\r\nFor treatment of Chronic Respiratory Disease, Infectious Coryza, Infectious sinusitis, Infectious synovitis, Fowl cholera, Pullorum disease and bacterial enteritis.\r\n\r\n[dt_divider style=\"thin\" /]\r\n\r\n<strong>Contraindication: </strong>\r\n\r\nDo not use in commercial layers producing eggs for human consumption\r\n\r\n[dt_divider style=\"thin\" /]\r\n\r\n<strong>Withdrawal time: </strong>\r\n\r\nFor meet – 7 days\r\n\r\n[dt_divider style=\"thin\" /]\r\n\r\n<strong>Dosage:</strong>\r\n\r\n1 – 2.5 g per L of drinking water daily for 3 – 5 days. Renew medicated water at lease every 24 hours.\r\n\r\n[dt_divider style=\"thin\" /]\r\n\r\n<strong>Pack sizes: </strong>\r\n\r\n25 g, 100 g and 1 kg\r\n\r\n&nbsp;\r\n\r\n[dt_divider style=\"thick\" /]\r\n\r\n&nbsp;','publish','closed','closed','','neotra','','','2023-09-18 13:04:33','2023-09-18 13:04:33','',0,'https://farmchemie.yasithawd.com/?post_type=product&#038;p=3634',0,'product','',0),(3635,1,'2023-09-14 07:02:59','2023-09-14 07:02:59','','RHEMOX','<h3>Oral Soluble Powder</h3>\r\n[dt_divider style=\"thick\" /]\r\n\r\n&nbsp;\r\n\r\n<strong>Composition: </strong>\r\n\r\nEach 1 g contains,\r\nAmoxicillin tryhydrate – 10 mg\r\n\r\n[dt_divider style=\"thin\" /]\r\n\r\n<strong>Indication: </strong>\r\n\r\nInfections caused by susceptible germs to Amoxicillin of the digestive, respiratory and genitourinary tract, skin and soft tissues, bacterial complications sensitive to Amoxicillin in the required diseases.\r\n\r\n[dt_divider style=\"thin\" /]\r\n\r\n<strong>Contraindication: </strong>\r\n\r\nAnimals who have history of hypersensitivity to Amoxycillin, Guinea Pigs, Hamsters, Rabbits; oral administration to calves with a functional rumen.\r\n\r\n[dt_divider style=\"thin\" /]\r\n\r\n<strong>Withdrawal time: </strong>\r\n\r\nFor meat – Swine, Calves: 15 days and Poultry: 4 days\r\n\r\n[dt_divider style=\"thin\" /]\r\n\r\n<strong>Dosage:</strong>\r\n\r\nCalves and Swine: 1-2 g/10 kg B.W once daily. That is obtained by administering 7-15 g / 10 Litres of drinking water.\r\n\r\nPoultry: 0.5 – 1 g / 10 g B.W once daily. That is obtained by administering 5-10 g / 10 Litres of drinking water.\r\n\r\nIt is not recommended to extend treatment more than 5-7 days. If recovery does not occur in 48 hours, the diagnosis should be reconsidered.\r\n\r\nThe oral route in drinking water. Renew medicated water at least every 24 hours.\r\n\r\n[dt_divider style=\"thin\" /]\r\n\r\n<strong>Pack sizes: </strong>\r\n\r\n25 g, 100 g, 1 kg and 25 kg\r\n\r\n&nbsp;\r\n\r\n[dt_divider style=\"thick\" /]\r\n\r\n&nbsp;','publish','closed','closed','','rhemox','','','2023-09-14 07:10:26','2023-09-14 07:10:26','',0,'https://farmchemie.yasithawd.com/?post_type=product&#038;p=3635',0,'product','',0),(3636,1,'2023-09-14 07:11:27','2023-09-14 07:11:27','','TRIMETHOSULFA ORALE','<h3>Oral Solution for use in Drinking water or Liquid Feed</h3>\r\n[dt_divider style=\"thick\" /]\r\n\r\n&nbsp;\r\n\r\n<strong>Composition: </strong>\r\n\r\nEach 1 mL contains,\r\nSulfadiazine – 200 mg\r\nTrimethoprim – 40 mg\r\n\r\n[dt_divider style=\"thin\" /]\r\n\r\n<strong>Indication: </strong>\r\n\r\nTreatment of primary or secondary bacterial infections to viral infections, septicaemic or localised, affecting the respiratory, digestive, genital, urinary, cutaneous and motor apparatus and in the coccidiosis. In particular.\r\nCalves: infections caused by susceptible bacteria such as <em>Arcanobacterium pyogenes, Listeria monocytogenes, Staphylococcus aureus, Streptococcus</em> spp., E. <em>coli, Klebsiella pneumoniae, Pasteurella multocida, Salmonella</em> spp., <em>Proteus</em> spp.\r\n\r\nPigs: infections caused by sensitive bacteria such as A. <em>pleuropneumoniae, Bordetella bronchiseptica,</em> E. <em>coli, Haemophilus parasuis, Pasteurella multocida</em> and <em>Salmonella</em> spp.\r\n\r\nBroilers and turkeys: infections caused by susceptible bacteria such as <em>Arcanobacterium pyogenes, Erysipelothrix rhusiopathiae, Staphylococcus aureus,</em> E. <em>coli, Klebsiella pneumoniae, Salmonella</em> spp. and <em>Enterobacte.</em>\r\n\r\nRabbits: infections caused by susceptible bacteria such as <em>Corynebacterium pseudotuberculosis, Listeria monocytogenes, Staphylococcus aureus, Bordetella bronchiseptica,</em> E. <em>coli</em> and <em>Klebsiella pneumonia</em>\r\n\r\n[dt_divider style=\"thin\" /]\r\n\r\n<strong>Contraindication: </strong>\r\n\r\nDo not administer to animals with hypersensitivity to Sulphonamides or to any of the excipients. Do not use in case of infection by germs resistant to Sulphonamides. Do not administer to animals with impaired liver, kidney functions or blood disorders.\r\n\r\n[dt_divider style=\"thin\" /]\r\n\r\n<strong>Withdrawal time: </strong>\r\n\r\nFor meat and entrails: calves 9 days; pigs 3 days; broiler chickens 3 days.\r\nDo not administer to animals producing eggs for human consumption.\r\n\r\n[dt_divider style=\"thin\" /]\r\n\r\n<strong>Dosage:</strong>\r\n\r\nDosage and use directions Calves, pigs and rabbits: 200 mg of sulfadiazine and 40 mg of trimethoprim per 10 kg b.w., equivalent to 1 ml of product diluted in drinking water or liquid feed. Broilers and turkeys: 20 mg of sulfadiazine and 4 mg of trimethoprim/kg b.w. equal to 4 ml per 8-10 litres of drinking water. Treatment duration: 5 days.\r\n\r\n[dt_divider style=\"thin\" /]\r\n\r\n<strong>Pack sizes: </strong>\r\n\r\n50 mL, 250 mL and 1 L\r\n\r\n&nbsp;\r\n\r\n[dt_divider style=\"thick\" /]\r\n\r\n&nbsp;','publish','closed','closed','','trimethosulfa-orale','','','2023-09-23 14:25:29','2023-09-23 14:25:29','',0,'https://farmchemie.yasithawd.com/?post_type=product&#038;p=3636',0,'product','',0),(3637,1,'2023-09-14 07:19:39','2023-09-14 07:19:39','','COXI-RID','<h3>Combination of Sulfaquinoxaline, Diaveridine, Vitamin A and Vitamin K Water Soluble Powder</h3>\r\n[dt_divider style=\"thick\" /]\r\n\r\n&nbsp;\r\n\r\n<strong>Composition: </strong>\r\n\r\nEach 1 g contains,\r\nSulfaquinoxaline - 200 mg\r\nDiaveridine - 50 mg\r\nVitamin A - 2.5 MIU\r\nVitamin K - 5 mg\r\n\r\n[dt_divider style=\"thin\" /]\r\n\r\n<strong>Indication: </strong>\r\n\r\nTreatment of intestinal coccidiosis of broilers and replacement birds caused by <em>Eimeria acervulina, E. necatrix, E. mivati, E. maximum, E. tenella, E. brunetti.</em>\r\n\r\n[dt_divider style=\"thin\" /]\r\n\r\n<strong>Contraindication: </strong>\r\n\r\nDo not administer any sulpha containing drug while Coxi-Rid is in use.\r\n\r\n[dt_divider style=\"thin\" /]\r\n\r\n<strong>Withdrawal time: </strong>\r\n\r\nMeat-7 Days\r\nEggs-10 Days\r\n\r\n[dt_divider style=\"thin\" /]\r\n\r\n<strong>Dosage:</strong>\r\n\r\nMix 62.5 g in 100 L of water or 125 g in 100 kg of Feed for three days. Then leave animals without treatment for 2 days. Then continue treatment for another 3 days. The dosage regimen can be further continued if necessary.\r\n\r\n[dt_divider style=\"thin\" /]\r\n\r\n<strong>Pack sizes: </strong>\r\n\r\n25 g, 125 g 500 g and 1 kg\r\n\r\n&nbsp;\r\n\r\n[dt_divider style=\"thick\" /]\r\n\r\n&nbsp;','publish','closed','closed','','coxi-rid','','','2023-09-23 16:19:27','2023-09-23 16:19:27','',0,'https://farmchemie.yasithawd.com/?post_type=product&#038;p=3637',0,'product','',0),(3638,1,'2023-09-14 07:23:46','2023-09-14 07:23:46','','TREIZURIL','<h3>Oral Solution Contains Toltrazuril for use in Drinking water</h3>\r\n[dt_divider style=\"thick\" /]\r\n\r\n&nbsp;\r\n\r\n<strong>Composition: </strong>\r\n\r\nEach 1 mL contains,\r\nToltrazuril – 25 mg\r\n\r\n[dt_divider style=\"thin\" /]\r\n\r\n<strong>Indication: </strong>\r\n\r\nPoultry: Indication of coccidiosis caused by <em>Eimeria acervtlina, Eimeria brunette, Eimeria maxima, Eimeria necatrix, Eimeria tenella</em> and <em>Eimeria mitis.</em>\r\n\r\n[dt_divider style=\"thin\" /]\r\n\r\n<strong>Contraindication: </strong>\r\n\r\nDo not use in case of hypersensitivity to the active substance or in cases of known resistance to Toltrazuril.\r\n\r\n[dt_divider style=\"thin\" /]\r\n\r\n<strong>Withdrawal time: </strong>\r\n\r\nFor meat and entrails: Pigs: Broilers: 14 days\r\nFor eggs: Not permitted for use in laying birds producing eggs for human consumption\r\n\r\n[dt_divider style=\"thin\" /]\r\n\r\n<strong>Dosage:</strong>\r\n\r\nTo be administered continuously over 24 hours, or in an amount of water corresponding to 8 hours of consumption. 1 mL of product per litre of water in the cases of continuous administration for 48 hours or 3 mL of product per litre of water in the case of administration in 8 hours.\r\n\r\n[dt_divider style=\"thin\" /]\r\n\r\n<strong>Pack sizes: </strong>\r\n\r\n100 mL, 250 mL and 1 L\r\n\r\n&nbsp;\r\n\r\n[dt_divider style=\"thick\" /]\r\n\r\n&nbsp;','publish','closed','closed','','treizuril','','','2023-09-23 16:23:28','2023-09-23 16:23:28','',0,'https://farmchemie.yasithawd.com/?post_type=product&#038;p=3638',0,'product','',0),(3639,1,'2023-09-14 07:37:47','2023-09-14 07:37:47','','MANSOL 50','<h3>Anthelmintic powder against Tapeworms and Rumen flukes</h3>\r\n[dt_divider style=\"thick\" /]\r\n\r\n&nbsp;\r\n\r\n<strong>Composition: </strong>\r\n\r\nEach 1 g contains,\r\nNiclosamide - 500 mg\r\n\r\n[dt_divider style=\"thin\" /]\r\n\r\n<strong>Indication: </strong>\r\n\r\nTreatment and prevention of Tapeworm infestation of Livestock and Poultry, also immature paramphistomiasis of Cattle, Sheep and Goats\r\n\r\n[dt_divider style=\"thin\" /]\r\n\r\n<strong>Dosage:</strong>\r\n<table style=\"height: 268px;\" width=\"445\">\r\n<tbody>\r\n<tr>\r\n<td width=\"573\">\r\n<table style=\"font-family: inherit; font-size: inherit;\">\r\n<tbody>\r\n<tr>\r\n<td width=\"186\">Type of Animal</td>\r\n<td width=\"186\">Body Weight</td>\r\n<td width=\"185\">Dosage</td>\r\n</tr>\r\n<tr>\r\n<td width=\"186\">Cattle &amp; Pigs</td>\r\n<td width=\"186\">50 kg</td>\r\n<td width=\"185\">5 g</td>\r\n</tr>\r\n<tr>\r\n<td width=\"186\">Sheep &amp; Goats</td>\r\n<td width=\"186\">&nbsp;\r\n\r\n30 kg</td>\r\n<td width=\"185\">5 g</td>\r\n</tr>\r\n<tr>\r\n<td width=\"186\">Poultry</td>\r\n<td width=\"186\">100 kg</td>\r\n<td width=\"185\">15 g</td>\r\n</tr>\r\n<tr>\r\n<td width=\"186\">Horses</td>\r\n<td width=\"186\">100 kg</td>\r\n<td width=\"185\">40 – 60 g</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n&nbsp;</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n[dt_divider style=\"thin\" /]\r\n\r\n<strong>Pack sizes: </strong>\r\n\r\n100 g and 1 kg\r\n\r\n&nbsp;\r\n\r\n[dt_divider style=\"thick\" /]\r\n\r\n&nbsp;','publish','closed','closed','','mansol-50','','','2023-09-19 13:21:11','2023-09-19 13:21:11','',0,'https://farmchemie.yasithawd.com/?post_type=product&#038;p=3639',0,'product','',0),(3640,1,'2023-09-14 07:43:52','2023-09-14 07:43:52','','VERMXIL','<h3>Albendazole 10%</h3>\r\n[dt_divider style=\"thick\" /]\r\n\r\n&nbsp;\r\n\r\n<strong>Composition: </strong>\r\n\r\nEach 1 mL contains,\r\nAlbendazole – 100 mg\r\n\r\n[dt_divider style=\"thin\" /]\r\n\r\n<strong>Indication: </strong>\r\n\r\nPigs: For the treatment of swine dysentery caused by Tiamulin-susceptible <em>Brochyspiro hvodvsenterioe</em>. For the treatment of enzootic pneumonia caused by Tiamulin-susceptible <em>Mycoplosmo hyopneumonioe</em>.\r\n\r\nChickens: For treatment of chronic respiratory disease in chickens\r\n\r\n[dt_divider style=\"thin\" /]\r\n\r\n<strong>Withdrawal time: </strong>\r\n\r\nFor meat - Pigs: 5 days after the last administration of the preparation. Chickens: 3 days after the last administration of the preparation.\r\n\r\n[dt_divider style=\"thin\" /]\r\n\r\n<strong>Dosage:</strong>\r\n\r\nPigs: Swine dysenteria caused by <em>Brachyspira hyodysenteriae</em>: 8.8 mg Tiamulin hydrogen fumarate per kg bodyweight per day for 5 consecutive days. Enzootic pneumonia caused by <em>Mycoplasma hyopneumoniae</em>: 15-20 mg Tiamulin hydrogen fumarate per kg bodyweight per day for 5 days. To ensure a correct dosage, body weight should be determined as accurately as possible to avoid underdosing\r\n\r\nChickens: For treatment of CRD\' 100 g/180 L water for 3-5 days. During the treatment only medicated water must be given\r\n\r\nThe product can be added directly to the required volume of drinking water or a concentrated solution can be prepared to be diluted to the final concentration afterward. The maximum solubility of the product is 10 gram/liter.\r\n\r\n[dt_divider style=\"thin\" /]\r\n\r\n<strong>Pack sizes: </strong>\r\n\r\n20 mL, 100 mL, 200mL and 1 L\r\n\r\n&nbsp;\r\n\r\n[dt_divider style=\"thick\" /]\r\n\r\n&nbsp;','publish','closed','closed','','vermxil','','','2023-09-23 16:47:50','2023-09-23 16:47:50','',0,'https://farmchemie.yasithawd.com/?post_type=product&#038;p=3640',0,'product','',0),(3641,1,'2023-09-14 07:49:25','2023-09-14 07:49:25','','MANSOL 50','<h3>Anthelmintic powder against Tapeworms and Rumen flukes</h3>\n[dt_divider style=\"thick\" /]\n\n&nbsp;\n\n<strong>Composition: </strong>\n\nEach 1 g contains,\nNiclosamide - 500 mg\n\n[dt_divider style=\"thin\" /]\n\n<strong>Indication: </strong>\n\nTreatment and prevention of Tapeworm infestation of Livestock and Poultry, also immature paramphistomiasis of Cattle, Sheep and Goats\n\n[dt_divider style=\"thin\" /]\n\n<strong>Dosage:</strong>\n<table style=\"height: 268px;\" width=\"445\">\n<tbody>\n<tr>\n<td width=\"573\">\n<table style=\"font-family: inherit; font-size: inherit;\">\n<tbody>\n<tr>\n<td width=\"186\">Type of Animal</td>\n<td width=\"186\">Body Weight</td>\n<td width=\"185\">Dosage</td>\n</tr>\n<tr>\n<td width=\"186\">Cattle &amp; Pigs</td>\n<td width=\"186\">50 kg</td>\n<td width=\"185\">5 g</td>\n</tr>\n<tr>\n<td width=\"186\">Sheep &amp; Goats</td>\n<td width=\"186\">&nbsp;\n\n30 kg</td>\n<td width=\"185\">5 g</td>\n</tr>\n<tr>\n<td width=\"186\">Poultry</td>\n<td width=\"186\">100 kg</td>\n<td width=\"185\">15 g</td>\n</tr>\n<tr>\n<td width=\"186\">Horses</td>\n<td width=\"186\">100 kg</td>\n<td width=\"185\">40 – 60 g</td>\n</tr>\n</tbody>\n</table>\n&nbsp;</td>\n</tr>\n</tbody>\n</table>\n[dt_divider style=\"thin\" /]\n\n<strong>Pack sizes: </strong>\n\n100 g and 1 kg\n\n&nbsp;\n\n[dt_divider style=\"thick\" /]\n\n&nbsp;','inherit','closed','closed','','3639-autosave-v1','','','2023-09-14 07:49:25','2023-09-14 07:49:25','',3639,'https://farmchemie.yasithawd.com/?p=3641',0,'revision','',0),(3642,1,'2023-09-14 07:51:41','2023-09-14 07:51:41','','MYCOSIN','<h3>Water soluble anti-microbial powder concentrate</h3>\r\n[dt_divider style=\"thick\" /]\r\n\r\n&nbsp;\r\n\r\n<strong>Composition: </strong>\r\n\r\nEach 1 g contains,\r\nTylosine tatrate - 500 mg\r\nAmoxicillin trihydrate - 120 mg\r\n\r\n[dt_divider style=\"thin\" /]\r\n\r\n<strong>Indication: </strong>\r\n\r\nPoultry: Prevention and treatment of Chronic Respiratory Disease (CRD), Complicated Chronic Respiratory Disease (CCRD), Clostridium, E coli and Salmonella infections.\r\nPigs: As a treatment of respiratory infections and urine infections susceptible to Amoxicillin or Tylosin\r\n\r\n[dt_divider style=\"thin\" /]\r\n\r\n<strong>Withdrawal time: </strong>\r\n\r\nFor meet – 5-7 days\r\n\r\n[dt_divider style=\"thin\" /]\r\n\r\n<strong>Dosage:</strong>\r\n\r\nFor Poultry – 1 g in 2 L of water anf administer for 3 – 5 days.\r\nFor Pigs - 1 g in 6 L of water anf administer for 3 – 5 days.\r\n\r\n[dt_divider style=\"thin\" /]\r\n\r\n<strong>Pack sizes: </strong>\r\n\r\n25 g, 100 g, 500 g and 1 kg\r\n\r\n&nbsp;\r\n\r\n[dt_divider style=\"thick\" /]\r\n\r\n&nbsp;','publish','closed','closed','','mycosin','','','2023-09-19 13:04:08','2023-09-19 13:04:08','',0,'https://farmchemie.yasithawd.com/?post_type=product&#038;p=3642',0,'product','',0),(3643,1,'2023-09-14 08:01:30','2023-09-14 08:01:30','','PHARMASIN 100 % W/W','<h3>Granules for Use in Drinking Water for Chickens, Pigs, Turkeys and Claves</h3>\r\n[dt_divider style=\"thick\" /]\r\n\r\n&nbsp;\r\n\r\n<strong>Composition: </strong>\r\n\r\nEach 1 g contains,\r\nTylosin tartrate – 1 g\r\n\r\n[dt_divider style=\"thin\" /]\r\n\r\n<strong>Indication: </strong>\r\n\r\nCalves: Treatment of pneumonia caused by <em>Mycoplasma</em> spp when the disease has been established in the herd\r\n\r\nPigs: Treatment of enzootic pneumonia caused by <em>Mycoplasma hyopneumoniae</em> and <em>Mycoplasma hyorhinis</em> when the when the disease has been established in the herd.\r\nTreatment of Porcine Intestinal Adenomatosis (Ileitis) associated with <em>Lawsonia intracellularis</em> when the disease has been established in the herd.\r\n\r\nChickens: Treatment of chronic respiratory diseases (CRD) caused by <em>Mycoplasma gallisepticum</em> and <em>Mycoplasma synoviae</em> when the disease has been established in the flock\r\nTreatment and prevention of necrotic enteritis caused by <em>Clostridium perfringens</em> when the disease has been established in the flock\r\n\r\nTurkeys: Treatment of infectious sinusitis caused by <em>Mycoplasma gallisepticum</em>. When the disease has been established in the flock\r\n\r\n[dt_divider style=\"thin\" /]\r\n\r\n<strong>Contraindication: </strong>\r\n\r\nDo not use in animal with known hypersensitivity to Tylosin or other macrolides.\r\nDo not use in cases with known resistance to Tylosin or cross-resistance to other macrolides (MLS-resistance).\r\nDo not use in animals vaccinated with tylosin-sensitive vaccines either at the same time or within 1 week previously.\r\nDo not use in animals with hepatic disorders.\r\nDo not use in horses.\r\n\r\n[dt_divider style=\"thin\" /]\r\n\r\n<strong>Withdrawal time: </strong>\r\n\r\nCalves (meat and offal) – 12 days\r\nPigs (meat and offal) – 1 day\r\nTurkeys (meat and offal) – 2 days\r\nTurkeys (eggs) – 1 day\r\nChicken (meat and offal) – 1 day\r\nChicken (eggs) – Zero days\r\n\r\n[dt_divider style=\"thin\" /]\r\n\r\n<strong>Dosage:</strong>\r\n\r\nCalves: 10 - 20 mg tylosin per kg BW (corresponding to 11 - 22 mg of the veterinary medicinal product per kg BW), twice daily (corresponding to a daily dose of 20 - 40 mg tylosin per kg BW), for 7 - 14 days.\r\nTurkeys: 75 100 mg tylosin per kg BW per day (corresponding to 82.5 - 110 mg of the veterinary medicinal product per kg BW) for 3 - 5 days.\r\n\r\nChickens: For the treatment of chronic respiratory disease: 75 - 100 mg tylosin per kg BW per day (corresponding to 82.5 110 mg of the veterinary medicinal product per kg BW) for 3 - 5 days. For the treatment of necrotic enteritis: 20 mg tylosin per kg BW per day (corresponding to 22 mg of the veterinary medicinal product) for 3 days.\r\n\r\nPigs: For the treatment of enzootic pneumonia: 20 mg tylosin per kg BW per day (corresponding to 22 mg of the veterinary medicinal product per kg BW) for 10 days. For the treatment of ileitis or PIA: 5 - 10 mg tylosin per kg BW per day (corresponding to 5.5 - 11 mg of the veterinary medicinal product per kg BW) for 7 days\r\n\r\n[dt_divider style=\"thin\" /]\r\n\r\n<strong>Pack sizes: </strong>\r\n\r\n110 g, and 1.1 kg\r\n\r\n&nbsp;\r\n\r\n[dt_divider style=\"thick\" /]\r\n\r\n&nbsp;','publish','closed','closed','','pharmasin-100-w-w','','','2023-09-23 16:54:30','2023-09-23 16:54:30','',0,'https://farmchemie.yasithawd.com/?post_type=product&#038;p=3643',0,'product','',0),(3644,1,'2023-09-14 08:51:11','2023-09-14 08:51:11','','TILMOVET 25 %','<h3>Antibiotic Oral Solution for pigs, chickens, Turkeys and Calves</h3>\r\n[dt_divider style=\"thick\" /]\r\n\r\n&nbsp;\r\n\r\n<strong>Composition: </strong>\r\n\r\nEach 1 mL contains,\r\nTilmicosin – 250 mg\r\n\r\n[dt_divider style=\"thin\" /]\r\n\r\n<strong>Indication: </strong>\r\n\r\nPigs: For the treatment of respiratory infections associated with <em>Mycoplasma hyopneumoniae, Pasteurella multocida and Actinobacillus pleuropneumoniae</em> when the disease has been diagnosed at the herd level.\r\n\r\nChickens (broilers and pullets): For the treatment of respiratory infections in poultry flocks associated with <em>Mycoplasma gallisepticum</em> and <em>Mycoplasma synoviae</em> when the disease has been diagnosed at the herd level.\r\n\r\nTurkeys: For the treatment of respiratory infections in turkey flocks associated with <em>Mycoplasma gallisepticum</em> and <em>Mycoplasma synoviae</em> when the disease has been diagnosed at the herd level.\r\n\r\nCalves: For the treatment of respiratory infections associated with <em>Mannheimia haemolytica</em>,\r\nP. <em>multocida, Mycoplasma bovis</em> and M.<em>dispar</em> when the disease has been diagnosed at the herd level\r\n\r\n[dt_divider style=\"thin\" /]\r\n\r\n<strong>Contraindication: </strong>\r\n\r\nDo not use in case of hypersensitivity to the active substance or in cases of known resistance to Tilmicosin. Do not use in horses.\r\n\r\n[dt_divider style=\"thin\" /]\r\n\r\n<strong>Withdrawal time: </strong>\r\n\r\nFor meat and offal: Pigs: 14 days Calves: 42 days. Broilers: 12 days Turkeys: 15 days\r\nFor eggs: Not permitted for use in laying birds producing eggs for human consumption\r\n\r\n[dt_divider style=\"thin\" /]\r\n\r\n<strong>Dosage:</strong>\r\n\r\nFor oral administration through the drinking water or milk replacer.\r\nPigs: 15-20 mg Tilmicosin per kg body weight for 5 days, i.e. 6-8 ml of product for 100 kg body weight corresponding to 80 ml of product per 100 litres of drinking water for 5 days.\r\nChickens: 15-20 mg Tilmicosin per kg body weight for 3 days, i.e. 6-8 ml of product for 100kg body weight corresponding to 30 ml of product per 100 litres of drinking water for 3 days.\r\n\r\nTurkeys: 10-27 mg Tilmicosin per kg body weight for 3 days, i.e. 4-11 ml of product for 100kg body weight corresponding to 30 ml of product per 100 litres of drinking water for 3 days.\r\n\r\nCalves: 12.5 mg Tilmicosin per kg body weight two times per day for 3-5 days, i.e. 1 ml of product for 20 kg body weight two times per day for 3-5 days.\r\n\r\n[dt_divider style=\"thin\" /]\r\n\r\n<strong>Pack sizes: </strong>\r\n\r\n60 mL, 240 mL and 960 mL\r\n\r\n&nbsp;\r\n\r\n[dt_divider style=\"thick\" /]\r\n\r\n&nbsp;','publish','closed','closed','','tilmovet-25','','','2023-09-23 16:58:52','2023-09-23 16:58:52','',0,'https://farmchemie.yasithawd.com/?post_type=product&#038;p=3644',0,'product','',0),(3645,1,'2023-09-14 09:16:08','2023-09-14 09:16:08','','VETMULIN 450 mg','<h3>Granules for oral solution</h3>\r\n[dt_divider style=\"thick\" /]\r\n\r\n&nbsp;\r\n\r\n<strong>Composition: </strong>\r\n\r\nEach 1 g contains,\r\nTiamulin hydrogen fumarate – 450 mg\r\n\r\n[dt_divider style=\"thin\" /]\r\n\r\n<strong>Indication: </strong>\r\n\r\nPigs: For the treatment of swine dysentery caused by Tiamulin-susceptible <em>Brochyspiro hvodvsenterioe</em>. For the treatment of enzootic pneumonia caused by Tiamulin-susceptible <em>Mycoplosmo hyopneumonioe</em>.\r\n\r\nChickens: For treatment of chronic respiratory disease in chickens\r\n\r\n[dt_divider style=\"thin\" /]\r\n\r\n<strong>Contraindication: </strong>\r\n\r\nDo not administer to animals with hypersensitivity to Sulphonamides or to any of the excipients. Do not use in case of infection by germs resistant to Sulphonamides. Do not administer to animals with impaired liver, kidney functions or blood disorders..\r\n\r\n[dt_divider style=\"thin\" /]\r\n\r\n<strong>Withdrawal time: </strong>\r\n\r\nFor meat - Pigs: 5 days after the last administration of the preparation. Chickens: 3 days after the last administration of the preparation.\r\n\r\n[dt_divider style=\"thin\" /]\r\n\r\n<strong>Dosage:</strong>\r\n\r\nPigs: Swine dysenteria caused by <em>Brachyspira hyodysenteriae</em>: 8.8 mg Tiamulin hydrogen fumarate per kg bodyweight per day for 5 consecutive days. Enzootic pneumonia caused by <em>Mycoplasma hyopneumoniae</em>: 15-20 mg Tiamulin hydrogen fumarate per kg bodyweight per day for 5 days. To ensure a correct dosage, body weight should be determined as accurately as possible to avoid underdosing\r\n\r\nChickens: For treatment of CRD\' 100 g/180 L water for 3-5 days. During the treatment only medicated water must be given\r\n\r\nThe product can be added directly to the required volume of drinking water or a concentrated solution can be prepared to be diluted to the final concentration afterward. The maximum solubility of the product is 10 gram/liter.\r\n\r\n[dt_divider style=\"thin\" /]\r\n\r\n<strong>Pack sizes: </strong>\r\n\r\n1 kg\r\n\r\n&nbsp;\r\n\r\n[dt_divider style=\"thick\" /]\r\n\r\n&nbsp;','publish','closed','closed','','vetmulin-450-mg','','','2023-09-23 17:02:51','2023-09-23 17:02:51','',0,'https://farmchemie.yasithawd.com/?post_type=product&#038;p=3645',0,'product','',0),(3646,1,'2023-09-14 09:53:08','2023-09-14 09:53:08','','CHICKTONIC','<h3>Vitamins and Amino Acids Liquid Supplement.</h3>\r\n[dt_divider style=\"thick\" /]\r\n\r\n&nbsp;\r\n\r\n<strong>Composition: </strong>\r\n\r\nEach 1 L contains,\r\nVitamin A - 2,500,000 IU\r\nVitamin D3 - 500,000 IU\r\nVitamin E - 3.75 g\r\nVitamin K - 250 g\r\nPyridoxine - 2 g\r\nRiboflavin - 4 g\r\nThiamine - 3.5 g\r\nVitamin B5 -15 g\r\nVitamin B12 - 10 mg\r\nCholine - 400 mg\r\nD,L-Methionine - 5 g\r\nL-Lysine - 2.5 g\r\nHistidine - 900 mg\r\nArginine - 490 mg\r\nAspartic acid - 1.45 g\r\nThreonine - 500 mg\r\nSerine - 680 mg\r\nGlutamic acid - 1.16 g\r\nProline - 510 mg\r\nGlycine - 575 mg\r\nAlanine - 975 mg\r\nCystine - 150 mg\r\nValine - 1.1 g\r\nLeucine - 1.5 g\r\nLsoleucine - 125 mg\r\nTyrosine - 340 mg\r\nPhenylalanine - 810 mg\r\nTryptophane - 75 mg\r\nBiotin - 2 mg\r\nInositol - 2.5 mg\r\n\r\n[dt_divider style=\"thin\" /]\r\n\r\n<strong>Indication: </strong>\r\n\r\nChicktonic is indicated to prevent and correct avitaminosis and malnutrition states, to reduce chicks’ mortality and as a support supplement in states of lactation, pregnancy, moulting, intense production, stress, convalescence, anorexia and fat liver\r\n\r\n[dt_divider style=\"thin\" /]\r\n\r\n<strong>Dosage:</strong>\r\n\r\nLayers: 2 mL / Litres of drinking water for 5 – 7 days\r\nBroilers: 1 mL / Litres of drinking water for 5 – 7 days\r\n\r\n[dt_divider style=\"thin\" /]\r\n\r\n<strong>Pack sizes: </strong>\r\n\r\n50 mL, 100 mL, 200 mL, 500 mL and 1 L\r\n\r\n&nbsp;\r\n\r\n[dt_divider style=\"thick\" /]\r\n\r\n&nbsp;','publish','closed','closed','','chicktonic','','','2023-09-19 12:13:43','2023-09-19 12:13:43','',0,'https://farmchemie.yasithawd.com/?post_type=product&#038;p=3646',0,'product','',0),(3647,1,'2023-09-14 09:58:17','2023-09-14 09:58:17','','COM B','<h3>Vitamin B Complex Oral Solution</h3>\r\n[dt_divider style=\"thick\" /]\r\n\r\n&nbsp;\r\n\r\n<strong>Composition: </strong>\r\n\r\nEach 1 L contains,\r\nVitamin B1 - 10 mg\r\nVitamin B2 - 10 mg\r\nVitamin B6 - 5 mg\r\nVitamin B12 - 2.5 mcg\r\nNicotinamide - 50 mg\r\nDexpanthenol - 30 mg\r\nBiotin - 20 mcg\r\n\r\n[dt_divider style=\"thin\" /]\r\n\r\n<strong>Indication: </strong>\r\n\r\nPoultry: As a supportive therapy in anti-coccidial and antibiotic treatment, Vitamin deficiency, nervous disorders and stimulant of production.\r\n\r\nCattle &amp; Swine: Cerebral Cortex Necrosis of Cattle, Myopathy Stimulant for cases of general weakness.\r\n\r\n[dt_divider style=\"thin\" /]\r\n\r\n<strong>Dosage:</strong>\r\n\r\nPoultry: 1 mL of Com B per 1 litre of drinking water for 3 - 5 days.\r\nCattle &amp; Swine: 10 mL per animal daily for 4 - 5 days.\r\n\r\n[dt_divider style=\"thin\" /]\r\n\r\n<strong>Pack sizes: </strong>\r\n\r\n50 mL, 100mL and 1 L\r\n\r\n&nbsp;\r\n\r\n[dt_divider style=\"thick\" /]\r\n\r\n&nbsp;','publish','closed','closed','','com-b','','','2023-09-23 08:36:02','2023-09-23 08:36:02','',0,'https://farmchemie.yasithawd.com/?post_type=product&#038;p=3647',0,'product','',0),(3648,1,'2023-09-14 10:02:17','2023-09-14 10:02:17','','SELVIT E','<h3>Oral Solution for Vitamin E and Selenium Deficiencies</h3>\r\n[dt_divider style=\"thick\" /]\r\n\r\n&nbsp;\r\n\r\n<strong>Composition: </strong>\r\n\r\nEach 1 mL contains,\r\n100 mg of Vitamin E acetate – 100 mg\r\nSodium selenite – 0.5 mg\r\n\r\n[dt_divider style=\"thin\" /]\r\n\r\n<strong>Indication: </strong>\r\n\r\nPrevention of vitamin E or Selenium deficiency. Prevention and treatment of Encephalomalacia, exudative diathesis and muscular dystrophy..\r\n\r\n[dt_divider style=\"thin\" /]\r\n\r\n<strong>Dosage:</strong>\r\n\r\nOral rout in drinking water\r\nPoultry and Ruminants: 1 mL/ L of drinking water for 5 consecutive days.\r\n\r\n[dt_divider style=\"thin\" /]\r\n\r\n<strong>Pack sizes: </strong>\r\n\r\n50 mL, 100 mL, 250 mL and 1 L\r\n\r\n&nbsp;\r\n\r\n[dt_divider style=\"thick\" /]\r\n\r\n&nbsp;','publish','closed','closed','','selvit-e','','','2023-09-19 13:05:08','2023-09-19 13:05:08','',0,'https://farmchemie.yasithawd.com/?post_type=product&#038;p=3648',0,'product','',0),(3649,1,'2023-09-14 10:04:42','2023-09-14 10:04:42','','SUPERVIT','<h3>Vitamin and Electrolyte Water Soluble Powder</h3>\r\n[dt_divider style=\"thick\" /]\r\n\r\n&nbsp;\r\n\r\n<strong>Composition: </strong>\r\n\r\nEach 1 kg contains,\r\nVitamin A - 7000 IU\r\nVitamin D3 - 1500 IU\r\nVitamin E Acetate - 3 mg\r\nVitamin B1 - 8 mg\r\nVitamin C - 11.2 mg\r\nVitamin K3 - 1.5 mg\r\nVitamin B2 - 2.8 mg\r\nVitamin B6 - 0.3 mg\r\nVitamin B12 - 6 mcg\r\nFerrous suphate heptahydrate - 15 mg\r\nManganese sulphate tetrahydrate – 25 mg\r\nCopper sulphate pentahydrade - 2.5 mg\r\nPotassium iodide - 0.3 mg\r\nZinc sulphate monohydrate - 10 mg\r\nCalcium pantothenate - 3 mg\r\nNa &amp; Cl electrolyte - 7.5 mg\r\nCa electrolyte - 20.77 mg\r\nMg electrolyte - 37.14 mg\r\n\r\n[dt_divider style=\"thin\" /]\r\n\r\n<strong>Indication: </strong>\r\n\r\nPrevention and treatment of Vitamin deficiency, newborn weakness, growth disturbance, anorexia, and osteoporosis, disturbances of intestinal flora after long-term antibiotic treatments, poor condition and stress relate to vaccination, excessive changes in temperature. Treatment of coccidiosis, worm infections, bacterial and viral infections.\r\n\r\n[dt_divider style=\"thin\" /]\r\n\r\n<strong>Dosage:</strong>\r\n\r\nPoultry: 1 g per 20litres of drinking water for 3 - 5 days or 2 kg per 1000 kg of final feed.\r\n\r\nCattle/ Pigs: 2 - 5 g per animal per day for 3 - 7 days.\r\n\r\nAs a vitamin &amp; mineral mixture: 25 g per animal per day for 2-3 days/week.\r\n\r\n[dt_divider style=\"thin\" /]\r\n\r\n<strong>Pack sizes: </strong>\r\n\r\n100 g, 1kg, 100g × 50 and 1 kg × 10\r\n\r\n&nbsp;\r\n\r\n[dt_divider style=\"thick\" /]\r\n\r\n&nbsp;','publish','closed','closed','','supervit','','','2023-09-20 05:20:37','2023-09-20 05:20:37','',0,'https://farmchemie.yasithawd.com/?post_type=product&#038;p=3649',0,'product','',0),(3650,1,'2023-09-14 10:20:44','2023-09-14 10:20:44','','V & E','<h3>Vitamin and Electrolyte Water Soluble Powder</h3>\r\n[dt_divider style=\"thick\" /]\r\n\r\n&nbsp;\r\n\r\n<strong>Composition: </strong>\r\n\r\nEach 1 kg contains,\r\nVitamin A - 7000 IU\r\nVitamin D3 - 1500 IU\r\nVitamin E Acetate - 3 mg\r\nVitamin B1 - 8 mg\r\nVitamin C - 11.2 mg\r\nVitamin K3 - 1.5 mg\r\nVitamin B2 - 2.8 mg\r\nVitamin B6 - 0.3 mg\r\nVitamin B12 - 6 mcg\r\nFerrous suphate heptahydrate - 15 mg\r\nManganese sulphate tetrahydrate – 25 mg\r\nCopper sulphate pentahydrade - 2.5 mg\r\nPotassium iodide - 0.3 mg\r\nZinc sulphate monohydrate - 10 mg\r\nCalcium pantothenate - 3 mg\r\nNa &amp; Cl electrolyte - 7.5 mg\r\nCa electrolyte - 7.5 mg\r\nMg electrolyte - 7.5 mg\r\n\r\n[dt_divider style=\"thin\" /]\r\n\r\n<strong>Indication: </strong>\r\n\r\nPrevention and treatment of Vitamin deficiency, newborn weakness, growth disturbance, anorexia, and osteoporosis. Alleviate heat strss and stresses related to vaccination, overcrowding, Treatment of coccidiosis, worm infections, bacterial and viral infections. Improving body immune responses for vaccination against diseases.\r\n\r\n[dt_divider style=\"thin\" /]\r\n\r\n<strong>Dosage:</strong>\r\n\r\nPoultry: 1 g per 20litres of drinking water for 3 - 5 days or 2 kg per 1000 kg of final feed.\r\n\r\nCattle/ Pigs: 2 - 5 g per animal per day for 3 - 7 days.\r\n\r\n[dt_divider style=\"thin\" /]\r\n\r\n<strong>Pack sizes: </strong>\r\n\r\n100 g, 500 g and 1 kg\r\n\r\n&nbsp;\r\n\r\n[dt_divider style=\"thick\" /]\r\n\r\n&nbsp;','draft','closed','closed','','v-e','','','2023-09-23 15:37:11','2023-09-23 15:37:11','',0,'https://farmchemie.yasithawd.com/?post_type=product&#038;p=3650',0,'product','',0),(3651,1,'2023-09-14 10:25:03','2023-09-14 10:25:03','','AVISHEILD ND B1','<h3>Live Freeze – Dried Vaccine against Newcastle Disease of Chicken</h3>\r\n[dt_divider style=\"thick\" /]\r\n\r\n&nbsp;\r\n\r\n<strong>Composition: </strong>\r\n\r\nLive, the lentogenic virus of Newcastle disease, strain Hitchner B1 - 106 EID 50\r\n\r\n[dt_divider style=\"thin\" /]\r\n\r\n<strong>Indication: </strong>\r\n\r\nFor active immunization of chickens and turkeys to prevent mortality, clinical signs and lesions of the Newcastle disease.\r\n\r\n[dt_divider style=\"thin\" /]\r\n\r\n<strong>Dosage:</strong>\r\n\r\nAs per the recommendation of the veterinarian.\r\n\r\n[dt_divider style=\"thin\" /]\r\n\r\n<strong>Pack sizes: </strong>\r\n\r\n500 doses, 1000 doses, and 2500 doses\r\n\r\n&nbsp;\r\n\r\n[dt_divider style=\"thick\" /]\r\n\r\n&nbsp;','publish','closed','closed','','avisheild-nd-b1','','','2023-09-19 11:28:41','2023-09-19 11:28:41','',0,'https://farmchemie.yasithawd.com/?post_type=product&#038;p=3651',0,'product','',0),(3652,1,'2023-09-14 10:29:47','2023-09-14 10:29:47','','CEVAC BI L','<h3>Live Freeze – Dried Vaccine for Newcastle Disease and Avian Infectious Bronchitis</h3>\r\n[dt_divider style=\"thick\" /]\r\n\r\n&nbsp;\r\n\r\n<strong>Composition: </strong>\r\n\r\nLive, freeze-dried vaccines for New Castle disease (B1 Hitchner strain-min. 105.5 EID 50/dose) &amp; IB (Massachusetts B 48-min.103.3 EID 50/dose)\r\n\r\n[dt_divider style=\"thin\" /]\r\n\r\n<strong>Indication: </strong>\r\n\r\nLive freeze-dried vaccine, Massachusetts, B48 and Hitchner B1 strains for the active immunization of chickens against Newcastle Disease and Infectious Bronchitis\r\n\r\n[dt_divider style=\"thin\" /]\r\n\r\n<strong>Dosage:</strong>\r\n\r\nAs per the recommendation of the veterinarian.\r\n\r\n[dt_divider style=\"thin\" /]\r\n\r\n<strong>Pack sizes: </strong>\r\n\r\n500 doses, 1000 doses, and 2500 doses\r\n\r\n&nbsp;\r\n\r\n[dt_divider style=\"thick\" /]\r\n\r\n&nbsp;','publish','closed','closed','','cevac-bi-l','','','2023-09-14 10:33:32','2023-09-14 10:33:32','',0,'https://farmchemie.yasithawd.com/?post_type=product&#038;p=3652',0,'product','',0),(3653,1,'2023-09-14 10:34:45','2023-09-14 10:34:45','','CEVAC BRON 120 L','<h3>Live Freeze – Dried Vaccine against Infectious Bronchitis Disease</h3>\r\n[dt_divider style=\"thick\" /]\r\n\r\n&nbsp;\r\n\r\n<strong>Composition: </strong>\r\n\r\nLive, freeze-dried vaccines for New Castle disease (B1 Hitchner strain-min. 105.5 EID 50/dose) &amp; IB (Massachusetts B 48-min.103.3 EID 50/dose)\r\n\r\n[dt_divider style=\"thin\" /]\r\n\r\n<strong>Indication: </strong>\r\n\r\nLive freeze-dried vaccine, Massachusettes, H120 strain for the active immunization of chickens against Infectious Bronchitis\r\n\r\n[dt_divider style=\"thin\" /]\r\n\r\n<strong>Dosage:</strong>\r\n\r\nAs per the recommendation of the veterinarian.\r\n\r\n[dt_divider style=\"thin\" /]\r\n\r\n<strong>Pack sizes: </strong>\r\n\r\n500 doses, 1000 doses, 2000 doses, 2500 doses and 5000 doses\r\n\r\n&nbsp;\r\n\r\n[dt_divider style=\"thick\" /]\r\n\r\n&nbsp;','publish','closed','closed','','cevac-bron-120-l','','','2023-09-19 11:43:47','2023-09-19 11:43:47','',0,'https://farmchemie.yasithawd.com/?post_type=product&#038;p=3653',0,'product','',0),(3654,1,'2023-09-14 10:42:04','2023-09-14 10:42:04','','CEVAC GUMBO L','<h3>Live freeze-dried vaccine against infectious Bursal disease</h3>\r\n[dt_divider style=\"thick\" /]\r\n\r\n&nbsp;\r\n\r\n<strong>Composition: </strong>\r\n\r\nLive, a freeze-dried vaccine for Infectious Bursal Disease contains strain-LIBDV-min. 103 TCID 50/dose\r\n\r\n[dt_divider style=\"thin\" /]\r\n\r\n<strong>Indication: </strong>\r\n\r\nLive freeze-dried vaccine, LIBVD strain for the active immunization of chickens against Infectious Bursal Disease.\r\n\r\n[dt_divider style=\"thin\" /]\r\n\r\n<strong>Dosage:</strong>\r\n\r\nAs per the recommendation of the veterinarian.\r\n\r\n[dt_divider style=\"thin\" /]\r\n\r\n<strong>Pack sizes: </strong>\r\n\r\n500 doses, 1000 doses, 2500 doses and 5000 doses\r\n\r\n&nbsp;\r\n\r\n[dt_divider style=\"thick\" /]\r\n\r\n&nbsp;','publish','closed','closed','','cevac-gumbo-l','','','2023-09-23 08:40:07','2023-09-23 08:40:07','',0,'https://farmchemie.yasithawd.com/?post_type=product&#038;p=3654',0,'product','',0),(3655,1,'2023-09-14 10:44:07','2023-09-14 10:44:07','','CEVAC IBird','<h3>Avian Infectious Bronchitis Virus Vaccine</h3>\r\n[dt_divider style=\"thick\" /]\r\n\r\n&nbsp;\r\n\r\n<strong>Composition: </strong>\r\n\r\nLive avian infectious bronchitis virus variant strain 1/96-min.2.8log10 EID 50 per dose\r\n\r\n[dt_divider style=\"thin\" /]\r\n\r\n<strong>Indication: </strong>\r\n\r\nLive vaccine for the immunization of chickens against the variant Infectious Bronchitis virus.\r\n\r\n[dt_divider style=\"thin\" /]\r\n\r\n<strong>Dosage:</strong>\r\n\r\nAs per the recommendation of the veterinarian.\r\n\r\n[dt_divider style=\"thin\" /]\r\n\r\n<strong>Pack sizes: </strong>\r\n\r\n500 doses, 1000 doses, 2500 doses, 5000 doses and 8000 doses\r\n\r\n&nbsp;\r\n\r\n[dt_divider style=\"thick\" /]\r\n\r\n&nbsp;','publish','closed','closed','','cevac-ibird','','','2023-09-23 08:13:28','2023-09-23 08:13:28','',0,'https://farmchemie.yasithawd.com/?post_type=product&#038;p=3655',0,'product','',0),(3657,1,'2023-09-14 10:50:35','2023-09-14 10:50:35','','CEVAC ND – IB K','<h3>Avian Infectious Bronchitis Virus Vaccine</h3>\n[dt_divider style=\"thick\" /]\n\n&nbsp;\n\n<strong>Composition: </strong>\n\nLive avian infectious bronchitis virus variant strain 1/96-min.2.8log10 EID 50 per dose\n\n[dt_divider style=\"thin\" /]\n\n<strong>Indication: </strong>\n\nLive vaccine for the immunization of chickens against the variant Infectious Bronchitis virus.\n\n[dt_divider style=\"thin\" /]\n\n<strong>Dosage:</strong>\n\nAs per the recommendation of the veterinarian.\n\n[dt_divider style=\"thin\" /]\n\n<strong>Pack sizes: </strong>\n\n500 doses, 1000 doses, 2500 doses, 5000 doses and 8000 doses\n\n&nbsp;\n\n[dt_divider style=\"thick\" /]\n\n&nbsp;','inherit','closed','closed','','3655-autosave-v1','','','2023-09-14 10:50:35','2023-09-14 10:50:35','',3655,'https://farmchemie.yasithawd.com/?p=3657',0,'revision','',0),(3658,1,'2023-09-14 10:53:52','2023-09-14 10:53:52','','CEVAC NEW K','<h3>Inactivated oil Adjuvant Vaccine Against Newcastle Disease</h3>\r\n[dt_divider style=\"thick\" /]\r\n\r\n&nbsp;\r\n\r\n<strong>Composition: </strong>\r\n\r\nInactivated oil adjuvated vaccines for New Castle disease contains strain-SZ Lasota-inducing min. 4 log 2 or min. 50 PD 50/dose\r\n\r\n[dt_divider style=\"thin\" /]\r\n\r\n<strong>Indication: </strong>\r\n\r\nInactivated oil emulsion vaccine for the immunization of chickens against Newcastle Disease\r\n\r\n[dt_divider style=\"thin\" /]\r\n\r\n<strong>Dosage:</strong>\r\n\r\nAs per the recommendation of the veterinarian.\r\n\r\n[dt_divider style=\"thin\" /]\r\n\r\n<strong>Pack sizes: </strong>\r\n\r\n1000 doses and 3000 doses\r\n\r\n&nbsp;\r\n\r\n[dt_divider style=\"thick\" /]\r\n\r\n&nbsp;','publish','closed','closed','','cevac-new-k','','','2023-09-19 12:06:04','2023-09-19 12:06:04','',0,'https://farmchemie.yasithawd.com/?post_type=product&#038;p=3658',0,'product','',0),(3659,1,'2023-09-14 10:59:33','2023-09-14 10:59:33','','CEVAC NEW L','<h3>Live Freeze – Dried Vaccine against Newcastle Disease</h3>\r\n[dt_divider style=\"thick\" /]\r\n\r\n&nbsp;\r\n\r\n<strong>Composition: </strong>\r\n\r\nLive, freeze-dried vaccines for New Castle disease contains Lasota strain- min. 105.5 EID 50/dose\r\n\r\n[dt_divider style=\"thin\" /]\r\n\r\n<strong>Indication: </strong>\r\n\r\nLive freeze-dried vaccine, La Sota strain for the active immunization of chickens against Newcastle Disease\r\n\r\n[dt_divider style=\"thin\" /]\r\n\r\n<strong>Dosage:</strong>\r\n\r\nAs per the recommendation of the veterinarian.\r\n\r\n[dt_divider style=\"thin\" /]\r\n\r\n<strong>Pack sizes: </strong>\r\n\r\n500 doses, 1000 doses, 2000 doses, 2500 doses and 5000 doses\r\n\r\n&nbsp;\r\n\r\n[dt_divider style=\"thick\" /]\r\n\r\n&nbsp;','publish','closed','closed','','cevac-new-l','','','2023-09-23 08:28:01','2023-09-23 08:28:01','',0,'https://farmchemie.yasithawd.com/?post_type=product&#038;p=3659',0,'product','',0),(3661,1,'2023-09-14 11:06:53','2023-09-14 11:06:53','','CEVAC TRANSMUNE','<h3>Live Freeze – Dried Complex Vaccine against Infectious Bursal Disease – Strain Winterfield 2512 G-61</h3>\r\n[dt_divider style=\"thick\" /]\r\n\r\n&nbsp;\r\n\r\n<strong>Composition: </strong>\r\n\r\nLive freeze-dried immune complex vaccine against Infectious Bursal Disease contains strain Winterfield 2512 G-61-min. 0.1CID 50/ dose\r\n\r\n[dt_divider style=\"thin\" /]\r\n\r\n<strong>Indication: </strong>\r\n\r\nLive immune complex vaccine for the active immunization of chickens against Infectious Bursal Disease.\r\n\r\n[dt_divider style=\"thin\" /]\r\n\r\n<strong>Dosage:</strong>\r\n\r\nAs per the recommendation of the veterinarian.\r\n\r\n[dt_divider style=\"thin\" /]\r\n\r\n<strong>Pack sizes: </strong>\r\n\r\n1000 doses, 2000 doses, 2500 doses, 4000 doses, 5000 doses, 8000 doses and 10000 doses\r\n\r\n&nbsp;\r\n\r\n[dt_divider style=\"thick\" /]\r\n\r\n&nbsp;','publish','closed','closed','','cevac-transmune','','','2023-09-24 06:35:03','2023-09-24 06:35:03','',0,'https://farmchemie.yasithawd.com/?post_type=product&#038;p=3661',0,'product','',0),(3662,1,'2023-09-14 11:43:44','2023-09-14 11:43:44','','CEVAC VITABRON','<h3>Live Freeze – Dried Vaccine against Newcastle Disease and Avian Infectious Bronchitis</h3>\r\n[dt_divider style=\"thick\" /]\r\n\r\n&nbsp;\r\n\r\n<strong>Composition: </strong>\r\n\r\nNewcastle disease virus strain PHY.LMV.42-min.10s.s EID50 and Avian Infectious Bronchitis virus strain Massachusetts type strain H12 –min. 103.3 EID50\r\n\r\n[dt_divider style=\"thin\" /]\r\n\r\n<strong>Indication: </strong>\r\n\r\nThe live vaccine, PHY.LMV.42 strain and Massachusetts H120 strain, for the active immunization of chickens against Newcastle disease and avian infectious bronchitis.\r\n\r\n[dt_divider style=\"thin\" /]\r\n\r\n<strong>Dosage:</strong>\r\n\r\nAs per the recommendation of the veterinarian.\r\n\r\n[dt_divider style=\"thin\" /]\r\n\r\n<strong>Pack sizes: </strong>\r\n\r\n1000 doses, 2000 doses and 2500 doses\r\n\r\n&nbsp;\r\n\r\n[dt_divider style=\"thick\" /]\r\n\r\n&nbsp;','publish','closed','closed','','cevac-vitabron','','','2023-09-24 06:33:01','2023-09-24 06:33:01','',0,'https://farmchemie.yasithawd.com/?post_type=product&#038;p=3662',0,'product','',0),(3674,1,'2023-09-14 13:13:37','2023-09-14 13:13:37','[vc_row full_width=\"stretch_row_content_no_spaces\"][vc_column][ultimate_heading main_heading=\"Our History\" main_heading_color=\"#762888\"][/ultimate_heading][/vc_column][/vc_row][vc_row][vc_column][vc_row_inner equal_height=\"yes\" content_placement=\"middle\" css=\".vc_custom_1692359205466{margin-top: 35px !important;}\"][vc_column_inner width=\"1/2\"][ult_animation_block animation=\"fadeInLeftBig\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][vc_single_image image=\"3273\" img_size=\"full\" alignment=\"center\" style=\"vc_box_rounded\"][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/2\"][ult_animation_block animation=\"fadeInRightBig\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][ultimate_heading main_heading=\"Founded in 2002\" heading_tag=\"h3\" main_heading_color=\"#039447\" alignment=\"left\" sub_heading_font_size=\"desktop:18px;\"]Founded in 2002 by Mr. Uditha Wanigasinghe, an agriculturist who had a mission to aid valuable livestock producers in the country to enhance the yield and profitability of production. FARMCHEMIE introduced unprecedented solutions and consistent technical services to gain our customers’ trust and became the market leader in animal health products in 2006 within just four years.[/ultimate_heading][/ult_animation_block][/vc_column_inner][/vc_row_inner][vc_separator color=\"custom\" accent_color=\"#039447\"][vc_row_inner equal_height=\"yes\" rtl_reverse=\"yes\" content_placement=\"middle\" css=\".vc_custom_1692359216075{margin-top: 35px !important;}\"][vc_column_inner width=\"1/2\"][ult_animation_block animation=\"fadeInLeftBig\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][ultimate_heading main_heading=\"2006\" heading_tag=\"h3\" main_heading_color=\"#039447\" alignment=\"right\"]In 2006, the Sri Lankan poultry industry was affected with Avian Influenza which became a difficult period for the growth of FARMCHEMIE. This was the key factor in our decision to diversify into Agro Products. PLANTCHEM &amp; PLANTSEEDS were established to offer solutions in Agro specialty fertilizers, pesticides and seeds to invaluable cultivators.[/ultimate_heading][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/2\"][ult_animation_block animation=\"fadeInRightBig\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][vc_single_image image=\"3276\" img_size=\"full\" alignment=\"center\" style=\"vc_box_rounded\"][/ult_animation_block][/vc_column_inner][/vc_row_inner][vc_separator color=\"custom\" accent_color=\"#039447\"][vc_row_inner equal_height=\"yes\" content_placement=\"middle\" css=\".vc_custom_1692359231594{margin-top: 35px !important;}\"][vc_column_inner width=\"1/2\"][ult_animation_block animation=\"fadeInLeftBig\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][vc_single_image image=\"3277\" img_size=\"full\" alignment=\"center\" style=\"vc_box_rounded\"][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/2\"][ult_animation_block animation=\"fadeInRightBig\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][ultimate_heading main_heading=\"2010\" heading_tag=\"h3\" main_heading_color=\"#039447\" alignment=\"left\"]In 2010, FEED CHEMIE became the subsequent addition to ever-growing vision of Mr. Uditha Wanigasinghe and entered the Animal Feed Additives market.[/ultimate_heading][/ult_animation_block][/vc_column_inner][/vc_row_inner][vc_separator color=\"custom\" accent_color=\"#039447\"][vc_row_inner equal_height=\"yes\" rtl_reverse=\"yes\" content_placement=\"middle\" css=\".vc_custom_1692359239274{margin-top: 35px !important;}\"][vc_column_inner width=\"1/2\"][ult_animation_block animation=\"fadeInLeftBig\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][ultimate_heading main_heading=\"2012\" heading_tag=\"h3\" main_heading_color=\"#039447\" alignment=\"right\"]The year 2012 is described as a turning point in our journey as FARMCHEMIE established our first production facility for the manufacturing and packing of animal health products. FARMCHEMIE became the first animal health organization in Sri Lanka to obtain ISO 9001:2015 and WHO GMP International Quality Certification. With our own formulation unit, FARMCHEMIE was able to offer customized solutions to cater the needs of the Sri Lankan Livestock Industry.[/ultimate_heading][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/2\"][ult_animation_block animation=\"fadeInRightBig\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][vc_single_image image=\"3278\" img_size=\"full\" alignment=\"center\" style=\"vc_box_rounded\"][/ult_animation_block][/vc_column_inner][/vc_row_inner][vc_separator color=\"custom\" accent_color=\"#039447\"][vc_row_inner content_placement=\"middle\" css=\".vc_custom_1692359246626{margin-top: 35px !important;}\"][vc_column_inner width=\"1/2\"][ult_animation_block animation=\"fadeInLeftBig\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][vc_single_image image=\"3279\" img_size=\"full\" alignment=\"center\" style=\"vc_box_rounded\"][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/2\"][ult_animation_block animation=\"fadeInRightBig\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][ultimate_heading main_heading=\"2016\" heading_tag=\"h3\" main_heading_color=\"#039447\" alignment=\"left\"]The year 2016 was another key milestone with the entry to the International Markets. FARMCHEMIE exported our first Feed Premix consignment to India and in 2018 our export operation was distinctly established as FARMCHEMIE MANUFACTURERS, a Board of Investment (BOI) approved entity.[/ultimate_heading][/ult_animation_block][/vc_column_inner][/vc_row_inner][vc_separator color=\"custom\" accent_color=\"#039447\"][vc_row_inner equal_height=\"yes\" content_placement=\"middle\" css=\".vc_custom_1692422601938{margin-top: 35px !important;}\"][vc_column_inner width=\"1/2\"][ult_animation_block animation=\"fadeInLeftBig\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][ultimate_heading main_heading=\"Fully automated manufacturing\" heading_tag=\"h3\" main_heading_color=\"#039447\" alignment=\"right\"]FARMCHEMIE MANUFACTURERS has invested in fully automated manufacturing facility from Bühler and became the first Sri Lankan owned company to obtain FAMI-QS International Quality Certification.[/ultimate_heading][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/2\"][ult_animation_block animation=\"fadeInRightBig\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][vc_single_image image=\"3280\" img_size=\"full\" alignment=\"center\" style=\"vc_box_rounded\"][/ult_animation_block][/vc_column_inner][/vc_row_inner][vc_separator color=\"custom\" accent_color=\"#039447\"][vc_row_inner equal_height=\"yes\" content_placement=\"middle\" css=\".vc_custom_1692359258634{margin-top: 35px !important;}\"][vc_column_inner width=\"1/2\"][ult_animation_block animation=\"fadeInLeftBig\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][vc_single_image image=\"3281\" img_size=\"full\" alignment=\"center\" style=\"vc_box_rounded\"][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/2\"][ult_animation_block animation=\"fadeInRightBig\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][ultimate_heading main_heading=\"Official toll manufacturer partner\" heading_tag=\"h3\" main_heading_color=\"#039447\" alignment=\"left\"]With the trust and reputation built as a reliable manufacturer of animal feed additives and supplements in the global market, several world-renowned international brands have appointed FARMCHEMIE MANUFACTURERS as the official toll manufacturer partner. FARMCHEMIE MANUFACTURERS exports a wide range of products consisting of premixes, specialty feed additives, oral liquid supplements and pet supplements to various markets in South Asia, East Asia, Middle East and Africa.\r\n\r\nFARMCHEMIE, FEED CHEMIE &amp; FARMCHEMIE MANUFACTURERS currently operate under the ownership of our holding company, DYVESTA.\r\n\r\nDYEVSTA has become the pinnacle of Animal Nutrition and Health.\r\n\r\nDYVESTA is Dynamic, through our continuous evolution, growth and progress. DYVESTA is Diverse, in terms of both our business strategy and our community. DYVESTA is Devoted to our valuable business partners through exceptional service.[/ultimate_heading][/ult_animation_block][/vc_column_inner][/vc_row_inner][vc_separator color=\"custom\" accent_color=\"#039447\"][/vc_column][/vc_row][vc_row full_width=\"stretch_row\" equal_height=\"yes\" bg_type=\"image\" parallax_style=\"vcpb-vz-jquery\" bg_image_new=\"id^3256|url^https://farmchemie.yasithawd.com/wp-content/uploads/2023/08/Vision-Mission.png|caption^null|alt^null|title^Vision-&amp;-Mission|description^null\" bg_image_repeat=\"no-repeat\" enable_overlay=\"enable_overlay_value\" overlay_color=\"#000000\" overlay_pattern=\"01.png\" overlay_pattern_opacity=\"5\" css=\".vc_custom_1692366072362{margin-top: 35px !important;padding-top: 65px !important;padding-bottom: 100px !important;}\"][vc_column][vc_row_inner equal_height=\"yes\"][vc_column_inner width=\"1/2\"][ult_animation_block animation=\"fadeInLeftBig\" animation_duration=\"2\" animation_delay=\"0\" animation_iteration_count=\"1\"][ultimate_heading main_heading=\"Vision\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\"]To be the customers’ first and best choice by ensuring outstanding satisfaction through a well-trained and dedicated team. Prompt and quality solutions to our customers’ requirements will determine the increase of return on investment for us.[/ultimate_heading][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/2\"][ult_animation_block animation=\"fadeInRightBig\" animation_duration=\"2\" animation_delay=\"0\" animation_iteration_count=\"1\"][ultimate_heading main_heading=\"Mission\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\"]To become a world renowned manufacturer of Animal Health products and a trusted partner among our stakeholders for our integrity as well as for providing effective solutions[/ultimate_heading][/ult_animation_block][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row css=\".vc_custom_1684836308288{margin-top: 15px !important;}\"][vc_column][ultimate_heading main_heading=\"Achievements\" main_heading_color=\"#762888\" main_heading_margin=\"margin-top:35px;\"][/ultimate_heading][vc_row_inner gap=\"20\"][vc_column_inner width=\"1/2\" css=\".vc_custom_1691995519863{background-color: #f4ab20 !important;border: 1px solid #f4ab20 !important;border-radius: 35px !important;}\"][ult_animation_block animation=\"fadeInLeftBig\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][bsf-info-box icon_type=\"custom\" icon_img=\"id^3117|url^https://farmchemie.yasithawd.com/wp-content/uploads/2023/08/Pink_-H.png|caption^null|alt^null|title^Pink_-H|description^null\" img_width=\"60\" icon_style=\"advanced\" icon_border_style=\"solid\" icon_color_border=\"#ffffff\" icon_border_size=\"1\" icon_border_radius=\"500\" icon_border_spacing=\"1\" title=\"First Free Sale Certificate obtained from Veterinary Drug Control Authority (VDCA) for Veterinary Pharmaceuticals\" title_font_style=\"font-weight:bold;\" title_font_size=\"desktop:20px;\"][/bsf-info-box][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/2\" css=\".vc_custom_1691995661095{background-color: #722f8b !important;border: 1px solid #722f8b !important;border-radius: 35px !important;}\"][ult_animation_block animation=\"fadeInRightBig\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][bsf-info-box icon_type=\"custom\" icon_img=\"id^3117|url^https://farmchemie.yasithawd.com/wp-content/uploads/2023/08/Pink_-H.png|caption^null|alt^null|title^Pink_-H|description^null\" img_width=\"60\" icon_style=\"advanced\" icon_border_style=\"solid\" icon_color_border=\"#ffffff\" icon_border_size=\"1\" icon_border_radius=\"500\" icon_border_spacing=\"1\" title=\"First ISO 9001: 2015 ,WHO-GMP Quality Management systems certified Animal Health company in Sri Lanka since August, 2012\" title_font_style=\"font-weight:bold;\" title_font_color=\"#ffffff\" title_font_size=\"desktop:20px;\"][/bsf-info-box][/ult_animation_block][/vc_column_inner][/vc_row_inner][vc_row_inner gap=\"20\"][vc_column_inner width=\"1/2\" css=\".vc_custom_1691995661095{background-color: #722f8b !important;border: 1px solid #722f8b !important;border-radius: 35px !important;}\"][ult_animation_block animation=\"fadeInLeftBig\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][bsf-info-box icon_type=\"custom\" icon_img=\"id^3117|url^https://farmchemie.yasithawd.com/wp-content/uploads/2023/08/Pink_-H.png|caption^null|alt^null|title^Pink_-H|description^null\" img_width=\"60\" icon_style=\"advanced\" icon_border_style=\"solid\" icon_color_border=\"#ffffff\" icon_border_size=\"1\" icon_border_radius=\"500\" icon_border_spacing=\"1\" title=\"First FAMI-QS certified company in sri lanka\" title_font_style=\"font-weight:bold;\" title_font_color=\"#ffffff\" title_font_size=\"desktop:20px;\"][/bsf-info-box][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/2\" css=\".vc_custom_1691995519863{background-color: #f4ab20 !important;border: 1px solid #f4ab20 !important;border-radius: 35px !important;}\"][ult_animation_block animation=\"fadeInRightBig\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][bsf-info-box icon_type=\"custom\" icon_img=\"id^3117|url^https://farmchemie.yasithawd.com/wp-content/uploads/2023/08/Pink_-H.png|caption^null|alt^null|title^Pink_-H|description^null\" img_width=\"60\" icon_style=\"advanced\" icon_border_style=\"solid\" icon_color_border=\"#ffffff\" icon_border_size=\"1\" icon_border_radius=\"500\" icon_border_spacing=\"1\" title=\"First Certificate of Ethical Trading certified in Livestock industry\" title_font_style=\"font-weight:bold;\" title_font_size=\"desktop:20px;\"][/bsf-info-box][/ult_animation_block][/vc_column_inner][/vc_row_inner][vc_row_inner gap=\"20\"][vc_column_inner width=\"1/4\" css=\".vc_custom_1691996718116{border-radius: 35px !important;}\"][/vc_column_inner][vc_column_inner width=\"2/4\" css=\".vc_custom_1691995519863{background-color: #f4ab20 !important;border: 1px solid #f4ab20 !important;border-radius: 35px !important;}\"][ult_animation_block animation=\"fadeInUpBig\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][bsf-info-box icon_type=\"custom\" icon_img=\"id^3117|url^https://farmchemie.yasithawd.com/wp-content/uploads/2023/08/Pink_-H.png|caption^null|alt^null|title^Pink_-H|description^null\" img_width=\"60\" icon_style=\"advanced\" icon_border_style=\"solid\" icon_color_border=\"#ffffff\" icon_border_size=\"1\" icon_border_radius=\"500\" icon_border_spacing=\"1\" title=\"First Silver awarded company at National Exports Awards in Livestock industry\" title_font_style=\"font-weight:bold;\" title_font_size=\"desktop:20px;\"][/bsf-info-box][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/4\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row full_width=\"stretch_row\" equal_height=\"yes\" content_placement=\"bottom\" css=\".vc_custom_1693627699480{margin-top: 15px !important;}\"][vc_column][ultimate_heading main_heading=\"Certifications\" main_heading_color=\"#762888\" main_heading_margin=\"margin-top:35px;\"][/ultimate_heading][vc_row_inner content_placement=\"bottom\"][vc_column_inner width=\"1/6\"][dt_fancy_image image_id=\"3407\" width=\"300\" caption=\"off\"][/vc_column_inner][vc_column_inner width=\"1/6\"][dt_fancy_image image_id=\"3408\" width=\"300\" caption=\"off\"][/vc_column_inner][vc_column_inner width=\"1/6\"][dt_fancy_image image_id=\"3409\" width=\"300\" caption=\"off\"][/vc_column_inner][vc_column_inner width=\"1/6\"][dt_fancy_image image_id=\"3411\" width=\"300\" caption=\"off\"][/vc_column_inner][vc_column_inner width=\"1/6\"][dt_fancy_image image_id=\"3410\" width=\"300\" caption=\"off\"][/vc_column_inner][vc_column_inner width=\"1/6\"][dt_fancy_image image_id=\"3406\" width=\"300\" caption=\"off\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row full_width=\"stretch_row\" equal_height=\"yes\" content_placement=\"bottom\" css=\".vc_custom_1693625624233{margin-top: 15px !important;}\"][vc_column][ultimate_heading main_heading=\"Awards\" main_heading_color=\"#762888\" main_heading_margin=\"margin-top:35px;\"][/ultimate_heading][ultimate_carousel slide_to_scroll=\"single\"][dt_fancy_image image_id=\"3412\" width=\"300\"][dt_fancy_image image_id=\"3413\" width=\"300\" caption=\"off\"][dt_fancy_image image_id=\"3414\" width=\"300\" caption=\"off\"][dt_fancy_image image_id=\"3415\" width=\"300\" caption=\"off\"][dt_fancy_image image_id=\"3416\" width=\"300\" caption=\"off\"][dt_fancy_image image_id=\"3417\" width=\"300\" caption=\"off\"][dt_fancy_image image_id=\"3418\" width=\"300\" caption=\"off\"][dt_fancy_image image_id=\"3420\" width=\"300\" caption=\"off\"][dt_fancy_image image_id=\"3419\" width=\"300\" caption=\"off\"][dt_fancy_image image_id=\"3422\" width=\"300\" caption=\"off\"][dt_fancy_image image_id=\"3421\" width=\"300\" caption=\"off\"][dt_fancy_image image_id=\"3422\" width=\"300\" caption=\"off\"][dt_fancy_image image_id=\"3423\" width=\"300\" caption=\"off\"][dt_fancy_image image_id=\"3424\" width=\"300\" caption=\"off\"][dt_fancy_image image_id=\"3425\" width=\"300\" caption=\"off\"][/ultimate_carousel][/vc_column][/vc_row][vc_row css=\".vc_custom_1693625068958{margin-top: 15px !important;}\"][vc_column][ultimate_heading main_heading=\"Board Of Directors\" main_heading_color=\"#762888\" main_heading_margin=\"margin-top:35px;margin-bottom:35px;\"][/ultimate_heading][ultimate_carousel title_text_typography=\"\" slides_on_desk=\"3\" slides_on_mob=\"1\" arrow_style=\"square-bg\" arrow_bg_color=\"#039447\" arrow_color=\"#ffffff\" next_icon=\"ultsl-arrow-right6\" prev_icon=\"ultsl-arrow-left6\" dots_color=\"#039447\" item_animation=\"fadeIn\" css_ad_caraousel=\".vc_custom_1694697209111{padding-right: 10px !important;padding-left: 10px !important;}\"][vc_row_inner][vc_column_inner][ultimate_heading main_heading=\"Uditha Wanigasinghe\" heading_tag=\"h3\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;\"]Managing Director[/ultimate_heading][ultimate_modal modal_title=\"Read more\" btn_size=\"md\" btn_bg_color=\"#089548\" btn_text=\"Read more\" overlay_bg_opacity=\"75\" img_size=\"80\" btn_txt_color=\"#ffffff\"]pretium mauris pretium mauris pretium mauris pretium mauris pretium mauris pretium mauris pretium mauris pretium mauris pretium mauris pretium mauris pretium mauris pretium mauris pretium mauris pretium mauris pretium mauris pretium mauris pretium mauris pretium mauris pretium mauris pretium mauris pretium mauris pretium mauris pretium mauris pretium mauris pretium mauris pretium mauris pretium mauris pretium mauris[/ultimate_modal][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner][ultimate_heading main_heading=\"Senitha Wanigasinghe\" heading_tag=\"h3\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;\"]Director/ CEO[/ultimate_heading][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner][ultimate_heading main_heading=\"Thulitha Wanigasinghe\" heading_tag=\"h3\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;\"]Director - Veterinary Services &amp; RA[/ultimate_heading][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner][ultimate_heading main_heading=\"Yvonne Van Cuylenberg\" heading_tag=\"h3\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;\"]Director - HR &amp; Administration[/ultimate_heading][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner][ultimate_heading main_heading=\"Gamini Wanigasinghe\" heading_tag=\"h3\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;\"]Director[/ultimate_heading][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner][ultimate_heading main_heading=\"Ajith Welianga\" heading_tag=\"h3\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;\"]Director - Marketing[/ultimate_heading][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner][ultimate_heading main_heading=\"Sunil Ranjith Guruge\" heading_tag=\"h3\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;\"]Director - Customer &amp; Employee Relations[/ultimate_heading][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner][ultimate_heading main_heading=\"Sampath Gunathilake\" heading_tag=\"h3\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;\"]Director - Sales[/ultimate_heading][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner][ultimate_heading main_heading=\"Chanaka Indrajith\" heading_tag=\"h3\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;\"]Director Production / COO[/ultimate_heading][/vc_column_inner][/vc_row_inner][/ultimate_carousel][/vc_column][/vc_row][vc_row disable_element=\"yes\"][vc_column][ultimate_heading main_heading=\"Board Of Directors\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;margin-bottom:35px;\"][/ultimate_heading][vc_row_inner][vc_column_inner width=\"1/3\"][ult_animation_block animation=\"fadeInUp\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][dt_fancy_image image_id=\"3172\" width=\"300\" border_radius=\"1px\" caption=\"off\" css=\".vc_custom_1692278922309{border-top-width: 1px !important;border-right-width: 1px !important;border-bottom-width: 1px !important;border-left-width: 1px !important;border-left-color: #059444 !important;border-left-style: solid !important;border-right-color: #059444 !important;border-right-style: solid !important;border-top-color: #059444 !important;border-top-style: solid !important;border-bottom-color: #059444 !important;border-bottom-style: solid !important;border-radius: 1px !important;}\"][ultimate_heading main_heading=\"Quisque sed nibh tristique\" heading_tag=\"h3\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;\"]\r\n<ul>\r\n 	<li>Duis lorem risus, aliquet a auctor a, venenatis in dui. Praesent et eros et risus dapibus placerat hendrerit cursus magna.</li>\r\n 	<li>Praesent et eros et risus dapibus placerat hendrerit cursus magna.</li>\r\n 	<li>aliquet a auctor a, venenatis in dui.</li>\r\n</ul>\r\n[/ultimate_heading][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/3\"][ult_animation_block animation=\"fadeInDown\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][dt_fancy_image image_id=\"3171\" width=\"300\" border_radius=\"1px\" caption=\"off\" css=\".vc_custom_1692278929158{border-top-width: 1px !important;border-right-width: 1px !important;border-bottom-width: 1px !important;border-left-width: 1px !important;border-left-color: #059444 !important;border-left-style: solid !important;border-right-color: #059444 !important;border-right-style: solid !important;border-top-color: #059444 !important;border-top-style: solid !important;border-bottom-color: #059444 !important;border-bottom-style: solid !important;border-radius: 1px !important;}\"][ultimate_heading main_heading=\"Quisque sed nibh tristique\" heading_tag=\"h3\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;\"]\r\n<ul>\r\n 	<li>Duis lorem risus, aliquet a auctor a, venenatis in dui. Praesent et eros et risus dapibus placerat hendrerit cursus magna.</li>\r\n 	<li>Praesent et eros et risus dapibus placerat hendrerit cursus magna.</li>\r\n 	<li>aliquet a auctor a, venenatis in dui.</li>\r\n</ul>\r\n[/ultimate_heading][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/3\"][ult_animation_block animation=\"fadeInUp\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][dt_fancy_image image_id=\"3170\" width=\"300\" border_radius=\"1px\" caption=\"off\" css=\".vc_custom_1692278936750{border-top-width: 1px !important;border-right-width: 1px !important;border-bottom-width: 1px !important;border-left-width: 1px !important;border-left-color: #059444 !important;border-left-style: solid !important;border-right-color: #059444 !important;border-right-style: solid !important;border-top-color: #059444 !important;border-top-style: solid !important;border-bottom-color: #059444 !important;border-bottom-style: solid !important;border-radius: 1px !important;}\"][ultimate_heading main_heading=\"Quisque sed nibh tristique\" heading_tag=\"h3\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;\"]\r\n<ul>\r\n 	<li>Duis lorem risus, aliquet a auctor a, venenatis in dui. Praesent et eros et risus dapibus placerat hendrerit cursus magna.</li>\r\n 	<li>Praesent et eros et risus dapibus placerat hendrerit cursus magna.</li>\r\n 	<li>aliquet a auctor a, venenatis in dui.</li>\r\n</ul>\r\n[/ultimate_heading][/ult_animation_block][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row disable_element=\"yes\"][vc_column][ultimate_heading main_heading=\"Executive Directors\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;margin-bottom:35px;\"][/ultimate_heading][vc_row_inner][vc_column_inner width=\"1/5\"][ult_animation_block animation=\"fadeInUp\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][dt_fancy_image image_id=\"3172\" width=\"300\" border_radius=\"1px\" caption=\"off\" css=\".vc_custom_1692278922309{border-top-width: 1px !important;border-right-width: 1px !important;border-bottom-width: 1px !important;border-left-width: 1px !important;border-left-color: #059444 !important;border-left-style: solid !important;border-right-color: #059444 !important;border-right-style: solid !important;border-top-color: #059444 !important;border-top-style: solid !important;border-bottom-color: #059444 !important;border-bottom-style: solid !important;border-radius: 1px !important;}\"][ultimate_heading main_heading=\"Quisque sed nibh tristique\" heading_tag=\"h3\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;\"]\r\n<ul>\r\n 	<li>Duis lorem risus, aliquet a auctor a, venenatis in dui. Praesent et eros et risus dapibus placerat hendrerit cursus magna.</li>\r\n 	<li>Praesent et eros et risus dapibus placerat hendrerit cursus magna.</li>\r\n 	<li>aliquet a auctor a, venenatis in dui.</li>\r\n</ul>\r\n[/ultimate_heading][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/5\"][ult_animation_block animation=\"fadeInDown\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][dt_fancy_image image_id=\"3171\" width=\"300\" border_radius=\"1px\" caption=\"off\" css=\".vc_custom_1692278929158{border-top-width: 1px !important;border-right-width: 1px !important;border-bottom-width: 1px !important;border-left-width: 1px !important;border-left-color: #059444 !important;border-left-style: solid !important;border-right-color: #059444 !important;border-right-style: solid !important;border-top-color: #059444 !important;border-top-style: solid !important;border-bottom-color: #059444 !important;border-bottom-style: solid !important;border-radius: 1px !important;}\"][ultimate_heading main_heading=\"Quisque sed nibh tristique\" heading_tag=\"h3\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;\"]\r\n<ul>\r\n 	<li>Duis lorem risus, aliquet a auctor a, venenatis in dui. Praesent et eros et risus dapibus placerat hendrerit cursus magna.</li>\r\n 	<li>Praesent et eros et risus dapibus placerat hendrerit cursus magna.</li>\r\n 	<li>aliquet a auctor a, venenatis in dui.</li>\r\n</ul>\r\n[/ultimate_heading][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/5\"][ult_animation_block animation=\"fadeInUp\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][dt_fancy_image image_id=\"3170\" width=\"300\" border_radius=\"1px\" caption=\"off\" css=\".vc_custom_1692278936750{border-top-width: 1px !important;border-right-width: 1px !important;border-bottom-width: 1px !important;border-left-width: 1px !important;border-left-color: #059444 !important;border-left-style: solid !important;border-right-color: #059444 !important;border-right-style: solid !important;border-top-color: #059444 !important;border-top-style: solid !important;border-bottom-color: #059444 !important;border-bottom-style: solid !important;border-radius: 1px !important;}\"][ultimate_heading main_heading=\"Quisque sed nibh tristique\" heading_tag=\"h3\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;\"]\r\n<ul>\r\n 	<li>Duis lorem risus, aliquet a auctor a, venenatis in dui. Praesent et eros et risus dapibus placerat hendrerit cursus magna.</li>\r\n 	<li>Praesent et eros et risus dapibus placerat hendrerit cursus magna.</li>\r\n 	<li>aliquet a auctor a, venenatis in dui.</li>\r\n</ul>\r\n[/ultimate_heading][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/5\"][ult_animation_block animation=\"fadeInDown\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][dt_fancy_image image_id=\"3170\" width=\"300\" border_radius=\"1px\" caption=\"off\" css=\".vc_custom_1692278936750{border-top-width: 1px !important;border-right-width: 1px !important;border-bottom-width: 1px !important;border-left-width: 1px !important;border-left-color: #059444 !important;border-left-style: solid !important;border-right-color: #059444 !important;border-right-style: solid !important;border-top-color: #059444 !important;border-top-style: solid !important;border-bottom-color: #059444 !important;border-bottom-style: solid !important;border-radius: 1px !important;}\"][ultimate_heading main_heading=\"Quisque sed nibh tristique\" heading_tag=\"h3\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;\"]\r\n<ul>\r\n 	<li>Duis lorem risus, aliquet a auctor a, venenatis in dui. Praesent et eros et risus dapibus placerat hendrerit cursus magna.</li>\r\n 	<li>Praesent et eros et risus dapibus placerat hendrerit cursus magna.</li>\r\n 	<li>aliquet a auctor a, venenatis in dui.</li>\r\n</ul>\r\n[/ultimate_heading][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/5\"][ult_animation_block animation=\"fadeInDown\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][dt_fancy_image image_id=\"3171\" width=\"300\" border_radius=\"1px\" caption=\"off\" css=\".vc_custom_1692278929158{border-top-width: 1px !important;border-right-width: 1px !important;border-bottom-width: 1px !important;border-left-width: 1px !important;border-left-color: #059444 !important;border-left-style: solid !important;border-right-color: #059444 !important;border-right-style: solid !important;border-top-color: #059444 !important;border-top-style: solid !important;border-bottom-color: #059444 !important;border-bottom-style: solid !important;border-radius: 1px !important;}\"][ultimate_heading main_heading=\"Quisque sed nibh tristique\" heading_tag=\"h3\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;\"]\r\n<ul>\r\n 	<li>Duis lorem risus, aliquet a auctor a, venenatis in dui. Praesent et eros et risus dapibus placerat hendrerit cursus magna.</li>\r\n 	<li>Praesent et eros et risus dapibus placerat hendrerit cursus magna.</li>\r\n 	<li>aliquet a auctor a, venenatis in dui.</li>\r\n</ul>\r\n[/ultimate_heading][/ult_animation_block][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner width=\"2/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row disable_element=\"yes\"][vc_column][ultimate_heading main_heading=\"Next Generation\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;margin-bottom:35px;\"][/ultimate_heading][vc_row_inner][vc_column_inner width=\"1/2\"][ult_animation_block animation=\"fadeInUp\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][dt_fancy_image image_id=\"3172\" width=\"300\" border_radius=\"1px\" caption=\"off\" css=\".vc_custom_1692278922309{border-top-width: 1px !important;border-right-width: 1px !important;border-bottom-width: 1px !important;border-left-width: 1px !important;border-left-color: #059444 !important;border-left-style: solid !important;border-right-color: #059444 !important;border-right-style: solid !important;border-top-color: #059444 !important;border-top-style: solid !important;border-bottom-color: #059444 !important;border-bottom-style: solid !important;border-radius: 1px !important;}\"][ultimate_heading main_heading=\"Quisque sed nibh tristique\" heading_tag=\"h3\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;\"]\r\n<ul>\r\n 	<li>Duis lorem risus, aliquet a auctor a, venenatis in dui. Praesent et eros et risus dapibus placerat hendrerit cursus magna.</li>\r\n 	<li>Praesent et eros et risus dapibus placerat hendrerit cursus magna.</li>\r\n 	<li>aliquet a auctor a, venenatis in dui.</li>\r\n</ul>\r\n[/ultimate_heading][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/2\"][ult_animation_block animation=\"fadeInDown\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][dt_fancy_image image_id=\"3171\" width=\"300\" border_radius=\"1px\" caption=\"off\" css=\".vc_custom_1692278929158{border-top-width: 1px !important;border-right-width: 1px !important;border-bottom-width: 1px !important;border-left-width: 1px !important;border-left-color: #059444 !important;border-left-style: solid !important;border-right-color: #059444 !important;border-right-style: solid !important;border-top-color: #059444 !important;border-top-style: solid !important;border-bottom-color: #059444 !important;border-bottom-style: solid !important;border-radius: 1px !important;}\"][ultimate_heading main_heading=\"Quisque sed nibh tristique\" heading_tag=\"h3\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;\"]\r\n<ul>\r\n 	<li>Duis lorem risus, aliquet a auctor a, venenatis in dui. Praesent et eros et risus dapibus placerat hendrerit cursus magna.</li>\r\n 	<li>Praesent et eros et risus dapibus placerat hendrerit cursus magna.</li>\r\n 	<li>aliquet a auctor a, venenatis in dui.</li>\r\n</ul>\r\n[/ultimate_heading][/ult_animation_block][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row]','About us','','inherit','closed','closed','','2917-revision-v1','','','2023-09-14 13:13:37','2023-09-14 13:13:37','',2917,'https://farmchemie.yasithawd.com/?p=3674',0,'revision','',0),(3663,1,'2023-09-14 12:36:52','2023-09-14 12:36:52','[vc_row full_width=\"stretch_row_content_no_spaces\"][vc_column][ultimate_heading main_heading=\"Our History\" main_heading_color=\"#762888\"][/ultimate_heading][/vc_column][/vc_row][vc_row][vc_column][vc_row_inner equal_height=\"yes\" content_placement=\"middle\" css=\".vc_custom_1692359205466{margin-top: 35px !important;}\"][vc_column_inner width=\"1/2\"][ult_animation_block animation=\"fadeInLeftBig\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][vc_single_image image=\"3273\" img_size=\"full\" alignment=\"center\" style=\"vc_box_rounded\"][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/2\"][ult_animation_block animation=\"fadeInRightBig\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][ultimate_heading main_heading=\"Founded in 2002\" heading_tag=\"h3\" main_heading_color=\"#039447\" alignment=\"left\" sub_heading_font_size=\"desktop:18px;\"]Founded in 2002 by Mr. Uditha Wanigasinghe, an agriculturist who had a mission to aid valuable livestock producers in the country to enhance the yield and profitability of production. FARMCHEMIE introduced unprecedented solutions and consistent technical services to gain our customers’ trust and became the market leader in animal health products in 2006 within just four years.[/ultimate_heading][/ult_animation_block][/vc_column_inner][/vc_row_inner][vc_separator color=\"custom\" accent_color=\"#039447\"][vc_row_inner equal_height=\"yes\" rtl_reverse=\"yes\" content_placement=\"middle\" css=\".vc_custom_1692359216075{margin-top: 35px !important;}\"][vc_column_inner width=\"1/2\"][ult_animation_block animation=\"fadeInLeftBig\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][ultimate_heading main_heading=\"2006\" heading_tag=\"h3\" main_heading_color=\"#039447\" alignment=\"right\"]In 2006, the Sri Lankan poultry industry was affected with Avian Influenza which became a difficult period for the growth of FARMCHEMIE. This was the key factor in our decision to diversify into Agro Products. PLANTCHEM &amp; PLANTSEEDS were established to offer solutions in Agro specialty fertilizers, pesticides and seeds to invaluable cultivators.[/ultimate_heading][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/2\"][ult_animation_block animation=\"fadeInRightBig\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][vc_single_image image=\"3276\" img_size=\"full\" alignment=\"center\" style=\"vc_box_rounded\"][/ult_animation_block][/vc_column_inner][/vc_row_inner][vc_separator color=\"custom\" accent_color=\"#039447\"][vc_row_inner equal_height=\"yes\" content_placement=\"middle\" css=\".vc_custom_1692359231594{margin-top: 35px !important;}\"][vc_column_inner width=\"1/2\"][ult_animation_block animation=\"fadeInLeftBig\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][vc_single_image image=\"3277\" img_size=\"full\" alignment=\"center\" style=\"vc_box_rounded\"][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/2\"][ult_animation_block animation=\"fadeInRightBig\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][ultimate_heading main_heading=\"2010\" heading_tag=\"h3\" main_heading_color=\"#039447\" alignment=\"left\"]In 2010, FEED CHEMIE became the subsequent addition to ever-growing vision of Mr. Uditha Wanigasinghe and entered the Animal Feed Additives market.[/ultimate_heading][/ult_animation_block][/vc_column_inner][/vc_row_inner][vc_separator color=\"custom\" accent_color=\"#039447\"][vc_row_inner equal_height=\"yes\" rtl_reverse=\"yes\" content_placement=\"middle\" css=\".vc_custom_1692359239274{margin-top: 35px !important;}\"][vc_column_inner width=\"1/2\"][ult_animation_block animation=\"fadeInLeftBig\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][ultimate_heading main_heading=\"2012\" heading_tag=\"h3\" main_heading_color=\"#039447\" alignment=\"right\"]The year 2012 is described as a turning point in our journey as FARMCHEMIE established our first production facility for the manufacturing and packing of animal health products. FARMCHEMIE became the first animal health organization in Sri Lanka to obtain ISO 9001:2015 and WHO GMP International Quality Certification. With our own formulation unit, FARMCHEMIE was able to offer customized solutions to cater the needs of the Sri Lankan Livestock Industry.[/ultimate_heading][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/2\"][ult_animation_block animation=\"fadeInRightBig\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][vc_single_image image=\"3278\" img_size=\"full\" alignment=\"center\" style=\"vc_box_rounded\"][/ult_animation_block][/vc_column_inner][/vc_row_inner][vc_separator color=\"custom\" accent_color=\"#039447\"][vc_row_inner content_placement=\"middle\" css=\".vc_custom_1692359246626{margin-top: 35px !important;}\"][vc_column_inner width=\"1/2\"][ult_animation_block animation=\"fadeInLeftBig\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][vc_single_image image=\"3279\" img_size=\"full\" alignment=\"center\" style=\"vc_box_rounded\"][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/2\"][ult_animation_block animation=\"fadeInRightBig\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][ultimate_heading main_heading=\"2016\" heading_tag=\"h3\" main_heading_color=\"#039447\" alignment=\"left\"]The year 2016 was another key milestone with the entry to the International Markets. FARMCHEMIE exported our first Feed Premix consignment to India and in 2018 our export operation was distinctly established as FARMCHEMIE MANUFACTURERS, a Board of Investment (BOI) approved entity.[/ultimate_heading][/ult_animation_block][/vc_column_inner][/vc_row_inner][vc_separator color=\"custom\" accent_color=\"#039447\"][vc_row_inner equal_height=\"yes\" content_placement=\"middle\" css=\".vc_custom_1692422601938{margin-top: 35px !important;}\"][vc_column_inner width=\"1/2\"][ult_animation_block animation=\"fadeInLeftBig\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][ultimate_heading main_heading=\"Fully automated manufacturing\" heading_tag=\"h3\" main_heading_color=\"#039447\" alignment=\"right\"]FARMCHEMIE MANUFACTURERS has invested in fully automated manufacturing facility from Bühler and became the first Sri Lankan owned company to obtain FAMI-QS International Quality Certification.[/ultimate_heading][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/2\"][ult_animation_block animation=\"fadeInRightBig\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][vc_single_image image=\"3280\" img_size=\"full\" alignment=\"center\" style=\"vc_box_rounded\"][/ult_animation_block][/vc_column_inner][/vc_row_inner][vc_separator color=\"custom\" accent_color=\"#039447\"][vc_row_inner equal_height=\"yes\" content_placement=\"middle\" css=\".vc_custom_1692359258634{margin-top: 35px !important;}\"][vc_column_inner width=\"1/2\"][ult_animation_block animation=\"fadeInLeftBig\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][vc_single_image image=\"3281\" img_size=\"full\" alignment=\"center\" style=\"vc_box_rounded\"][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/2\"][ult_animation_block animation=\"fadeInRightBig\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][ultimate_heading main_heading=\"Official toll manufacturer partner\" heading_tag=\"h3\" main_heading_color=\"#039447\" alignment=\"left\"]With the trust and reputation built as a reliable manufacturer of animal feed additives and supplements in the global market, several world-renowned international brands have appointed FARMCHEMIE MANUFACTURERS as the official toll manufacturer partner. FARMCHEMIE MANUFACTURERS exports a wide range of products consisting of premixes, specialty feed additives, oral liquid supplements and pet supplements to various markets in South Asia, East Asia, Middle East and Africa.\r\n\r\nFARMCHEMIE, FEED CHEMIE &amp; FARMCHEMIE MANUFACTURERS currently operate under the ownership of our holding company, DYVESTA.\r\n\r\nDYEVSTA has become the pinnacle of Animal Nutrition and Health.\r\n\r\nDYVESTA is Dynamic, through our continuous evolution, growth and progress. DYVESTA is Diverse, in terms of both our business strategy and our community. DYVESTA is Devoted to our valuable business partners through exceptional service.[/ultimate_heading][/ult_animation_block][/vc_column_inner][/vc_row_inner][vc_separator color=\"custom\" accent_color=\"#039447\"][/vc_column][/vc_row][vc_row full_width=\"stretch_row\" equal_height=\"yes\" bg_type=\"image\" parallax_style=\"vcpb-vz-jquery\" bg_image_new=\"id^3256|url^https://farmchemie.yasithawd.com/wp-content/uploads/2023/08/Vision-Mission.png|caption^null|alt^null|title^Vision-&amp;-Mission|description^null\" bg_image_repeat=\"no-repeat\" enable_overlay=\"enable_overlay_value\" overlay_color=\"#000000\" overlay_pattern=\"01.png\" overlay_pattern_opacity=\"5\" css=\".vc_custom_1692366072362{margin-top: 35px !important;padding-top: 65px !important;padding-bottom: 100px !important;}\"][vc_column][vc_row_inner equal_height=\"yes\"][vc_column_inner width=\"1/2\"][ult_animation_block animation=\"fadeInLeftBig\" animation_duration=\"2\" animation_delay=\"0\" animation_iteration_count=\"1\"][ultimate_heading main_heading=\"Vision\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\"]To be the customers’ first and best choice by ensuring outstanding satisfaction through a well-trained and dedicated team. Prompt and quality solutions to our customers’ requirements will determine the increase of return on investment for us.[/ultimate_heading][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/2\"][ult_animation_block animation=\"fadeInRightBig\" animation_duration=\"2\" animation_delay=\"0\" animation_iteration_count=\"1\"][ultimate_heading main_heading=\"Mission\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\"]To become a world renowned manufacturer of Animal Health products and a trusted partner among our stakeholders for our integrity as well as for providing effective solutions[/ultimate_heading][/ult_animation_block][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row css=\".vc_custom_1684836308288{margin-top: 15px !important;}\"][vc_column][ultimate_heading main_heading=\"Achievements\" main_heading_color=\"#762888\" main_heading_margin=\"margin-top:35px;\"][/ultimate_heading][vc_row_inner gap=\"20\"][vc_column_inner width=\"1/2\" css=\".vc_custom_1691995519863{background-color: #f4ab20 !important;border: 1px solid #f4ab20 !important;border-radius: 35px !important;}\"][ult_animation_block animation=\"fadeInLeftBig\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][bsf-info-box icon_type=\"custom\" icon_img=\"id^3117|url^https://farmchemie.yasithawd.com/wp-content/uploads/2023/08/Pink_-H.png|caption^null|alt^null|title^Pink_-H|description^null\" img_width=\"60\" icon_style=\"advanced\" icon_border_style=\"solid\" icon_color_border=\"#ffffff\" icon_border_size=\"1\" icon_border_radius=\"500\" icon_border_spacing=\"1\" title=\"First Free Sale Certificate obtained from Veterinary Drug Control Authority (VDCA) for Veterinary Pharmaceuticals\" title_font_style=\"font-weight:bold;\" title_font_size=\"desktop:20px;\"][/bsf-info-box][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/2\" css=\".vc_custom_1691995661095{background-color: #722f8b !important;border: 1px solid #722f8b !important;border-radius: 35px !important;}\"][ult_animation_block animation=\"fadeInRightBig\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][bsf-info-box icon_type=\"custom\" icon_img=\"id^3117|url^https://farmchemie.yasithawd.com/wp-content/uploads/2023/08/Pink_-H.png|caption^null|alt^null|title^Pink_-H|description^null\" img_width=\"60\" icon_style=\"advanced\" icon_border_style=\"solid\" icon_color_border=\"#ffffff\" icon_border_size=\"1\" icon_border_radius=\"500\" icon_border_spacing=\"1\" title=\"First ISO 9001: 2015 ,WHO-GMP Quality Management systems certified Animal Health company in Sri Lanka since August, 2012\" title_font_style=\"font-weight:bold;\" title_font_color=\"#ffffff\" title_font_size=\"desktop:20px;\"][/bsf-info-box][/ult_animation_block][/vc_column_inner][/vc_row_inner][vc_row_inner gap=\"20\"][vc_column_inner width=\"1/2\" css=\".vc_custom_1691995661095{background-color: #722f8b !important;border: 1px solid #722f8b !important;border-radius: 35px !important;}\"][ult_animation_block animation=\"fadeInLeftBig\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][bsf-info-box icon_type=\"custom\" icon_img=\"id^3117|url^https://farmchemie.yasithawd.com/wp-content/uploads/2023/08/Pink_-H.png|caption^null|alt^null|title^Pink_-H|description^null\" img_width=\"60\" icon_style=\"advanced\" icon_border_style=\"solid\" icon_color_border=\"#ffffff\" icon_border_size=\"1\" icon_border_radius=\"500\" icon_border_spacing=\"1\" title=\"First FAMI-QS certified company in sri lanka\" title_font_style=\"font-weight:bold;\" title_font_color=\"#ffffff\" title_font_size=\"desktop:20px;\"][/bsf-info-box][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/2\" css=\".vc_custom_1691995519863{background-color: #f4ab20 !important;border: 1px solid #f4ab20 !important;border-radius: 35px !important;}\"][ult_animation_block animation=\"fadeInRightBig\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][bsf-info-box icon_type=\"custom\" icon_img=\"id^3117|url^https://farmchemie.yasithawd.com/wp-content/uploads/2023/08/Pink_-H.png|caption^null|alt^null|title^Pink_-H|description^null\" img_width=\"60\" icon_style=\"advanced\" icon_border_style=\"solid\" icon_color_border=\"#ffffff\" icon_border_size=\"1\" icon_border_radius=\"500\" icon_border_spacing=\"1\" title=\"First Certificate of Ethical Trading certified in Livestock industry\" title_font_style=\"font-weight:bold;\" title_font_size=\"desktop:20px;\"][/bsf-info-box][/ult_animation_block][/vc_column_inner][/vc_row_inner][vc_row_inner gap=\"20\"][vc_column_inner width=\"1/4\" css=\".vc_custom_1691996718116{border-radius: 35px !important;}\"][/vc_column_inner][vc_column_inner width=\"2/4\" css=\".vc_custom_1691995519863{background-color: #f4ab20 !important;border: 1px solid #f4ab20 !important;border-radius: 35px !important;}\"][ult_animation_block animation=\"fadeInUpBig\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][bsf-info-box icon_type=\"custom\" icon_img=\"id^3117|url^https://farmchemie.yasithawd.com/wp-content/uploads/2023/08/Pink_-H.png|caption^null|alt^null|title^Pink_-H|description^null\" img_width=\"60\" icon_style=\"advanced\" icon_border_style=\"solid\" icon_color_border=\"#ffffff\" icon_border_size=\"1\" icon_border_radius=\"500\" icon_border_spacing=\"1\" title=\"First Silver awarded company at National Exports Awards in Livestock industry\" title_font_style=\"font-weight:bold;\" title_font_size=\"desktop:20px;\"][/bsf-info-box][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/4\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row full_width=\"stretch_row\" equal_height=\"yes\" content_placement=\"bottom\" css=\".vc_custom_1693627699480{margin-top: 15px !important;}\"][vc_column][ultimate_heading main_heading=\"Certifications\" main_heading_color=\"#762888\" main_heading_margin=\"margin-top:35px;\"][/ultimate_heading][vc_row_inner content_placement=\"bottom\"][vc_column_inner width=\"1/6\"][dt_fancy_image image_id=\"3407\" width=\"300\" caption=\"off\"][/vc_column_inner][vc_column_inner width=\"1/6\"][dt_fancy_image image_id=\"3408\" width=\"300\" caption=\"off\"][/vc_column_inner][vc_column_inner width=\"1/6\"][dt_fancy_image image_id=\"3409\" width=\"300\" caption=\"off\"][/vc_column_inner][vc_column_inner width=\"1/6\"][dt_fancy_image image_id=\"3411\" width=\"300\" caption=\"off\"][/vc_column_inner][vc_column_inner width=\"1/6\"][dt_fancy_image image_id=\"3410\" width=\"300\" caption=\"off\"][/vc_column_inner][vc_column_inner width=\"1/6\"][dt_fancy_image image_id=\"3406\" width=\"300\" caption=\"off\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row full_width=\"stretch_row\" equal_height=\"yes\" content_placement=\"bottom\" css=\".vc_custom_1693625624233{margin-top: 15px !important;}\"][vc_column][ultimate_heading main_heading=\"Awards\" main_heading_color=\"#762888\" main_heading_margin=\"margin-top:35px;\"][/ultimate_heading][ultimate_carousel slide_to_scroll=\"single\"][dt_fancy_image image_id=\"3412\" width=\"300\"][dt_fancy_image image_id=\"3413\" width=\"300\" caption=\"off\"][dt_fancy_image image_id=\"3414\" width=\"300\" caption=\"off\"][dt_fancy_image image_id=\"3415\" width=\"300\" caption=\"off\"][dt_fancy_image image_id=\"3416\" width=\"300\" caption=\"off\"][dt_fancy_image image_id=\"3417\" width=\"300\" caption=\"off\"][dt_fancy_image image_id=\"3418\" width=\"300\" caption=\"off\"][dt_fancy_image image_id=\"3420\" width=\"300\" caption=\"off\"][dt_fancy_image image_id=\"3419\" width=\"300\" caption=\"off\"][dt_fancy_image image_id=\"3422\" width=\"300\" caption=\"off\"][dt_fancy_image image_id=\"3421\" width=\"300\" caption=\"off\"][dt_fancy_image image_id=\"3422\" width=\"300\" caption=\"off\"][dt_fancy_image image_id=\"3423\" width=\"300\" caption=\"off\"][dt_fancy_image image_id=\"3424\" width=\"300\" caption=\"off\"][dt_fancy_image image_id=\"3425\" width=\"300\" caption=\"off\"][/ultimate_carousel][/vc_column][/vc_row][vc_row css=\".vc_custom_1693625068958{margin-top: 15px !important;}\"][vc_column][ultimate_heading main_heading=\"Board Of Directors\" main_heading_color=\"#762888\" main_heading_margin=\"margin-top:35px;margin-bottom:35px;\"][/ultimate_heading][ultimate_carousel slides_on_desk=\"3\" slides_on_mob=\"1\" arrow_style=\"square-bg\" arrow_bg_color=\"#039447\" arrow_color=\"#ffffff\" next_icon=\"ultsl-arrow-right6\" prev_icon=\"ultsl-arrow-left6\" dots_color=\"#039447\" item_animation=\"fadeIn\"][vc_row_inner][vc_column_inner][ultimate_heading main_heading=\"Uditha Wanigasinghe\" heading_tag=\"h3\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;\" margin_design_tab_text=\"\"]Managing Director[/ultimate_heading][ultimate_modal modal_title=\"Read more\" btn_size=\"md\" btn_bg_color=\"#089548\" btn_text=\"Read more\" overlay_bg_opacity=\"75\" img_size=\"80\" btn_txt_color=\"#ffffff\"]pretium mauris pretium mauris pretium mauris pretium mauris pretium mauris pretium mauris pretium mauris pretium mauris pretium mauris pretium mauris pretium mauris pretium mauris pretium mauris pretium mauris pretium mauris pretium mauris pretium mauris pretium mauris pretium mauris pretium mauris pretium mauris pretium mauris pretium mauris pretium mauris pretium mauris pretium mauris pretium mauris pretium mauris[/ultimate_modal][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner][ultimate_heading main_heading=\"Senitha Wanigasinghe\" heading_tag=\"h3\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;\" margin_design_tab_text=\"\"]Director/ CEO[/ultimate_heading][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner][ultimate_heading main_heading=\"Thulitha Wanigasinghe\" heading_tag=\"h3\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;\" margin_design_tab_text=\"\"]Director - Veterinary Services &amp; RA[/ultimate_heading][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner][ultimate_heading main_heading=\"Yvonne Van Cuylenberg\" heading_tag=\"h3\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;\" margin_design_tab_text=\"\"]Director - HR &amp; Administration[/ultimate_heading][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner][ultimate_heading main_heading=\"Gamini Wanigasinghe\" heading_tag=\"h3\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;\" margin_design_tab_text=\"\"]Director[/ultimate_heading][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner][ultimate_heading main_heading=\"Ajith Welianga \" heading_tag=\"h3\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;\" margin_design_tab_text=\"\"]Director - Marketing[/ultimate_heading][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner][ultimate_heading main_heading=\"Sunil Ranjith Guruge\" heading_tag=\"h3\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;\" margin_design_tab_text=\"\"]Director - Customer &amp; Employee Relations[/ultimate_heading][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner][ultimate_heading main_heading=\"Sampath Gunathilake\" heading_tag=\"h3\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;\" margin_design_tab_text=\"\"]Director - Sales[/ultimate_heading][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner][ultimate_heading main_heading=\"Chanaka Indrajith\" heading_tag=\"h3\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;\" margin_design_tab_text=\"\"]Director Production / COO[/ultimate_heading][/vc_column_inner][/vc_row_inner][/ultimate_carousel][/vc_column][/vc_row][vc_row disable_element=\"yes\"][vc_column][ultimate_heading main_heading=\"Board Of Directors\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;margin-bottom:35px;\"][/ultimate_heading][vc_row_inner][vc_column_inner width=\"1/3\"][ult_animation_block animation=\"fadeInUp\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][dt_fancy_image image_id=\"3172\" width=\"300\" border_radius=\"1px\" caption=\"off\" css=\".vc_custom_1692278922309{border-top-width: 1px !important;border-right-width: 1px !important;border-bottom-width: 1px !important;border-left-width: 1px !important;border-left-color: #059444 !important;border-left-style: solid !important;border-right-color: #059444 !important;border-right-style: solid !important;border-top-color: #059444 !important;border-top-style: solid !important;border-bottom-color: #059444 !important;border-bottom-style: solid !important;border-radius: 1px !important;}\"][ultimate_heading main_heading=\"Quisque sed nibh tristique\" heading_tag=\"h3\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;\"]\r\n<ul>\r\n 	<li>Duis lorem risus, aliquet a auctor a, venenatis in dui. Praesent et eros et risus dapibus placerat hendrerit cursus magna.</li>\r\n 	<li>Praesent et eros et risus dapibus placerat hendrerit cursus magna.</li>\r\n 	<li>aliquet a auctor a, venenatis in dui.</li>\r\n</ul>\r\n[/ultimate_heading][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/3\"][ult_animation_block animation=\"fadeInDown\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][dt_fancy_image image_id=\"3171\" width=\"300\" border_radius=\"1px\" caption=\"off\" css=\".vc_custom_1692278929158{border-top-width: 1px !important;border-right-width: 1px !important;border-bottom-width: 1px !important;border-left-width: 1px !important;border-left-color: #059444 !important;border-left-style: solid !important;border-right-color: #059444 !important;border-right-style: solid !important;border-top-color: #059444 !important;border-top-style: solid !important;border-bottom-color: #059444 !important;border-bottom-style: solid !important;border-radius: 1px !important;}\"][ultimate_heading main_heading=\"Quisque sed nibh tristique\" heading_tag=\"h3\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;\"]\r\n<ul>\r\n 	<li>Duis lorem risus, aliquet a auctor a, venenatis in dui. Praesent et eros et risus dapibus placerat hendrerit cursus magna.</li>\r\n 	<li>Praesent et eros et risus dapibus placerat hendrerit cursus magna.</li>\r\n 	<li>aliquet a auctor a, venenatis in dui.</li>\r\n</ul>\r\n[/ultimate_heading][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/3\"][ult_animation_block animation=\"fadeInUp\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][dt_fancy_image image_id=\"3170\" width=\"300\" border_radius=\"1px\" caption=\"off\" css=\".vc_custom_1692278936750{border-top-width: 1px !important;border-right-width: 1px !important;border-bottom-width: 1px !important;border-left-width: 1px !important;border-left-color: #059444 !important;border-left-style: solid !important;border-right-color: #059444 !important;border-right-style: solid !important;border-top-color: #059444 !important;border-top-style: solid !important;border-bottom-color: #059444 !important;border-bottom-style: solid !important;border-radius: 1px !important;}\"][ultimate_heading main_heading=\"Quisque sed nibh tristique\" heading_tag=\"h3\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;\"]\r\n<ul>\r\n 	<li>Duis lorem risus, aliquet a auctor a, venenatis in dui. Praesent et eros et risus dapibus placerat hendrerit cursus magna.</li>\r\n 	<li>Praesent et eros et risus dapibus placerat hendrerit cursus magna.</li>\r\n 	<li>aliquet a auctor a, venenatis in dui.</li>\r\n</ul>\r\n[/ultimate_heading][/ult_animation_block][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row disable_element=\"yes\"][vc_column][ultimate_heading main_heading=\"Executive Directors\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;margin-bottom:35px;\"][/ultimate_heading][vc_row_inner][vc_column_inner width=\"1/5\"][ult_animation_block animation=\"fadeInUp\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][dt_fancy_image image_id=\"3172\" width=\"300\" border_radius=\"1px\" caption=\"off\" css=\".vc_custom_1692278922309{border-top-width: 1px !important;border-right-width: 1px !important;border-bottom-width: 1px !important;border-left-width: 1px !important;border-left-color: #059444 !important;border-left-style: solid !important;border-right-color: #059444 !important;border-right-style: solid !important;border-top-color: #059444 !important;border-top-style: solid !important;border-bottom-color: #059444 !important;border-bottom-style: solid !important;border-radius: 1px !important;}\"][ultimate_heading main_heading=\"Quisque sed nibh tristique\" heading_tag=\"h3\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;\"]\r\n<ul>\r\n 	<li>Duis lorem risus, aliquet a auctor a, venenatis in dui. Praesent et eros et risus dapibus placerat hendrerit cursus magna.</li>\r\n 	<li>Praesent et eros et risus dapibus placerat hendrerit cursus magna.</li>\r\n 	<li>aliquet a auctor a, venenatis in dui.</li>\r\n</ul>\r\n[/ultimate_heading][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/5\"][ult_animation_block animation=\"fadeInDown\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][dt_fancy_image image_id=\"3171\" width=\"300\" border_radius=\"1px\" caption=\"off\" css=\".vc_custom_1692278929158{border-top-width: 1px !important;border-right-width: 1px !important;border-bottom-width: 1px !important;border-left-width: 1px !important;border-left-color: #059444 !important;border-left-style: solid !important;border-right-color: #059444 !important;border-right-style: solid !important;border-top-color: #059444 !important;border-top-style: solid !important;border-bottom-color: #059444 !important;border-bottom-style: solid !important;border-radius: 1px !important;}\"][ultimate_heading main_heading=\"Quisque sed nibh tristique\" heading_tag=\"h3\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;\"]\r\n<ul>\r\n 	<li>Duis lorem risus, aliquet a auctor a, venenatis in dui. Praesent et eros et risus dapibus placerat hendrerit cursus magna.</li>\r\n 	<li>Praesent et eros et risus dapibus placerat hendrerit cursus magna.</li>\r\n 	<li>aliquet a auctor a, venenatis in dui.</li>\r\n</ul>\r\n[/ultimate_heading][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/5\"][ult_animation_block animation=\"fadeInUp\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][dt_fancy_image image_id=\"3170\" width=\"300\" border_radius=\"1px\" caption=\"off\" css=\".vc_custom_1692278936750{border-top-width: 1px !important;border-right-width: 1px !important;border-bottom-width: 1px !important;border-left-width: 1px !important;border-left-color: #059444 !important;border-left-style: solid !important;border-right-color: #059444 !important;border-right-style: solid !important;border-top-color: #059444 !important;border-top-style: solid !important;border-bottom-color: #059444 !important;border-bottom-style: solid !important;border-radius: 1px !important;}\"][ultimate_heading main_heading=\"Quisque sed nibh tristique\" heading_tag=\"h3\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;\"]\r\n<ul>\r\n 	<li>Duis lorem risus, aliquet a auctor a, venenatis in dui. Praesent et eros et risus dapibus placerat hendrerit cursus magna.</li>\r\n 	<li>Praesent et eros et risus dapibus placerat hendrerit cursus magna.</li>\r\n 	<li>aliquet a auctor a, venenatis in dui.</li>\r\n</ul>\r\n[/ultimate_heading][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/5\"][ult_animation_block animation=\"fadeInDown\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][dt_fancy_image image_id=\"3170\" width=\"300\" border_radius=\"1px\" caption=\"off\" css=\".vc_custom_1692278936750{border-top-width: 1px !important;border-right-width: 1px !important;border-bottom-width: 1px !important;border-left-width: 1px !important;border-left-color: #059444 !important;border-left-style: solid !important;border-right-color: #059444 !important;border-right-style: solid !important;border-top-color: #059444 !important;border-top-style: solid !important;border-bottom-color: #059444 !important;border-bottom-style: solid !important;border-radius: 1px !important;}\"][ultimate_heading main_heading=\"Quisque sed nibh tristique\" heading_tag=\"h3\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;\"]\r\n<ul>\r\n 	<li>Duis lorem risus, aliquet a auctor a, venenatis in dui. Praesent et eros et risus dapibus placerat hendrerit cursus magna.</li>\r\n 	<li>Praesent et eros et risus dapibus placerat hendrerit cursus magna.</li>\r\n 	<li>aliquet a auctor a, venenatis in dui.</li>\r\n</ul>\r\n[/ultimate_heading][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/5\"][ult_animation_block animation=\"fadeInDown\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][dt_fancy_image image_id=\"3171\" width=\"300\" border_radius=\"1px\" caption=\"off\" css=\".vc_custom_1692278929158{border-top-width: 1px !important;border-right-width: 1px !important;border-bottom-width: 1px !important;border-left-width: 1px !important;border-left-color: #059444 !important;border-left-style: solid !important;border-right-color: #059444 !important;border-right-style: solid !important;border-top-color: #059444 !important;border-top-style: solid !important;border-bottom-color: #059444 !important;border-bottom-style: solid !important;border-radius: 1px !important;}\"][ultimate_heading main_heading=\"Quisque sed nibh tristique\" heading_tag=\"h3\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;\"]\r\n<ul>\r\n 	<li>Duis lorem risus, aliquet a auctor a, venenatis in dui. Praesent et eros et risus dapibus placerat hendrerit cursus magna.</li>\r\n 	<li>Praesent et eros et risus dapibus placerat hendrerit cursus magna.</li>\r\n 	<li>aliquet a auctor a, venenatis in dui.</li>\r\n</ul>\r\n[/ultimate_heading][/ult_animation_block][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner width=\"2/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row disable_element=\"yes\"][vc_column][ultimate_heading main_heading=\"Next Generation\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;margin-bottom:35px;\"][/ultimate_heading][vc_row_inner][vc_column_inner width=\"1/2\"][ult_animation_block animation=\"fadeInUp\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][dt_fancy_image image_id=\"3172\" width=\"300\" border_radius=\"1px\" caption=\"off\" css=\".vc_custom_1692278922309{border-top-width: 1px !important;border-right-width: 1px !important;border-bottom-width: 1px !important;border-left-width: 1px !important;border-left-color: #059444 !important;border-left-style: solid !important;border-right-color: #059444 !important;border-right-style: solid !important;border-top-color: #059444 !important;border-top-style: solid !important;border-bottom-color: #059444 !important;border-bottom-style: solid !important;border-radius: 1px !important;}\"][ultimate_heading main_heading=\"Quisque sed nibh tristique\" heading_tag=\"h3\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;\"]\r\n<ul>\r\n 	<li>Duis lorem risus, aliquet a auctor a, venenatis in dui. Praesent et eros et risus dapibus placerat hendrerit cursus magna.</li>\r\n 	<li>Praesent et eros et risus dapibus placerat hendrerit cursus magna.</li>\r\n 	<li>aliquet a auctor a, venenatis in dui.</li>\r\n</ul>\r\n[/ultimate_heading][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/2\"][ult_animation_block animation=\"fadeInDown\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][dt_fancy_image image_id=\"3171\" width=\"300\" border_radius=\"1px\" caption=\"off\" css=\".vc_custom_1692278929158{border-top-width: 1px !important;border-right-width: 1px !important;border-bottom-width: 1px !important;border-left-width: 1px !important;border-left-color: #059444 !important;border-left-style: solid !important;border-right-color: #059444 !important;border-right-style: solid !important;border-top-color: #059444 !important;border-top-style: solid !important;border-bottom-color: #059444 !important;border-bottom-style: solid !important;border-radius: 1px !important;}\"][ultimate_heading main_heading=\"Quisque sed nibh tristique\" heading_tag=\"h3\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;\"]\r\n<ul>\r\n 	<li>Duis lorem risus, aliquet a auctor a, venenatis in dui. Praesent et eros et risus dapibus placerat hendrerit cursus magna.</li>\r\n 	<li>Praesent et eros et risus dapibus placerat hendrerit cursus magna.</li>\r\n 	<li>aliquet a auctor a, venenatis in dui.</li>\r\n</ul>\r\n[/ultimate_heading][/ult_animation_block][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row]','About us','','inherit','closed','closed','','2917-revision-v1','','','2023-09-14 12:36:52','2023-09-14 12:36:52','',2917,'https://farmchemie.yasithawd.com/?p=3663',0,'revision','',0),(3664,1,'2023-09-14 12:41:29','2023-09-14 12:41:29','','CEVAC FP L WITH DILUENT AND APPLICATOR','<h3>Live Freeze Dried Vaccine for Fowl Pox</h3>\r\n[dt_divider style=\"thick\" /]\r\n\r\n&nbsp;\r\n\r\n<strong>Composition: </strong>\r\n\r\nLive, a freeze-dried vaccine for Fowl pox contains Cutter strain-min 102.7 EID50/dose\r\n\r\n[dt_divider style=\"thin\" /]\r\n\r\n<strong>Indication: </strong>\r\n\r\nLive freeze-dried vaccine, Cutter strain for the active immunization of chickens against Fowl pox.\r\n\r\n[dt_divider style=\"thin\" /]\r\n\r\n<strong>Dosage:</strong>\r\n\r\nAs per the recommendation of the veterinarian.\r\n\r\n[dt_divider style=\"thin\" /]\r\n\r\n<strong>Pack sizes: </strong>\r\n\r\nAs per the recommendation of the veterinarian.\r\n\r\n&nbsp;\r\n\r\n[dt_divider style=\"thick\" /]\r\n\r\n&nbsp;','publish','closed','closed','','cevac-fp-l-with-diluent-and-applicator','','','2023-09-23 11:30:46','2023-09-23 11:30:46','',0,'https://farmchemie.yasithawd.com/?post_type=product&#038;p=3664',0,'product','',0),(3666,1,'2023-09-14 12:47:33','2023-09-14 12:47:33','','CIRCOMUNE','<h3>Chicken Anemia Virus Vaccine</h3>\r\n[dt_divider style=\"thick\" /]\r\n\r\n&nbsp;\r\n\r\n<strong>Composition: </strong>\r\n\r\nLive vaccine against Chicken Anemia virus; Del-Ros strain at ≥10 4.9 TCID50/dose\r\n\r\n[dt_divider style=\"thin\" /]\r\n\r\n<strong>Indication: </strong>\r\n\r\nLive vaccine for the immunization of chickens against the Chicken Anemia virus\r\n\r\n[dt_divider style=\"thin\" /]\r\n\r\n<strong>Dosage:</strong>\r\n\r\nAs per the recommendation of the veterinarian.\r\n\r\n[dt_divider style=\"thin\" /]\r\n\r\n<strong>Pack sizes: </strong>\r\n\r\n1000 doses and 2000 doses\r\n\r\n&nbsp;\r\n\r\n[dt_divider style=\"thick\" /]\r\n\r\n&nbsp;','publish','closed','closed','','circomune','','','2023-09-16 18:02:56','2023-09-16 18:02:56','',0,'https://farmchemie.yasithawd.com/?post_type=product&#038;p=3666',0,'product','',0),(3667,1,'2023-09-14 12:51:27','2023-09-14 12:51:27','<p>[vc_row][vc_column][ultimate_heading][/ultimate_heading][/vc_column][/vc_row]</p>\n','About Us','','inherit','closed','closed','','2621-revision-v1','','','2023-09-14 12:51:27','2023-09-14 12:51:27','',2621,'https://farmchemie.yasithawd.com/?p=3667',0,'revision','',0),(3668,1,'2023-09-14 12:51:35','2023-09-14 12:51:35','[efb_feed fanpage_id=\"106704037405386\" words_limit=\"25\" show_like_box=\"1\" post_limit=\"10\" cache_unit=\"5\" cache_duration=\"days\" skin_id=2436 ]<br> This is a Facebook demo page created by plugin automatically. Please do not delete to make the plugin work properly.','Facebook Demo - Customizer','','inherit','closed','closed','','2439-revision-v1','','','2023-09-14 12:51:35','2023-09-14 12:51:35','',2439,'https://farmchemie.yasithawd.com/?p=3668',0,'revision','',0),(3669,1,'2023-09-14 13:26:19','2023-09-14 13:26:19','[vc_row][vc_column][vc_column_text]Information about our use of cookies\r\n\r\nOur website uses cookies for the purpose of distinguishing you from other users of our website. This helps in providing you with a good experience when you browse our website and also allows us to improve our site. By accepting, you agree to our use of cookies.\r\n\r\nA cookie is a small file of letters and numbers that we store on your browser or the hard drive of your computer, if you agree. Cookies contain information that is transferred to your computer\'s hard drive.\r\n\r\nWe use the following cookies:[/vc_column_text][info_list icon_color=\"#039447\" font_size_icon=\"24\" eg_br_width=\"1\"][info_list_item list_title=\"Strictly necessary cookies\" list_icon=\"icomoon-the7-font-the7-arrow-29-2\" title_font_color=\"#039447\" desc_font_color=\"#762888\"]These are cookies that are required for the operation of our website. They include, for example, cookies that enable your browsing session to work smoothly.[/info_list_item][info_list_item list_title=\"Analytical/performance cookies\" list_icon=\"icomoon-the7-font-the7-arrow-29-2\" title_font_color=\"#039447\" desc_font_color=\"#762888\"]Analytical cookies help collect data that allows us to understand how you interact with our website. These insights allow us to improve content and features for our users.[/info_list_item][info_list_item list_title=\"Functionality cookies.\" list_icon=\"icomoon-the7-font-the7-arrow-29-2\" title_font_color=\"#039447\" desc_font_color=\"#762888\"]These are used to recognize you when you return to our website. This enables us to personalize our content for you.[/info_list_item][info_list_item list_title=\"Targeting cookies.\" list_icon=\"icomoon-the7-font-the7-arrow-29-2\" title_font_color=\"#039447\" desc_font_color=\"#762888\"]These cookies record your visit to our website, the pages you have visited and the links you have followed. We will use this information to make our website more relevant to your interests.[/info_list_item][/info_list][ultimate_info_table design_style=\"design03\" color_scheme=\"custom\" color_bg_main=\"rgba(0,0,0,0.01)\" color_txt_main=\"#000000\" package_sub_heading=\"You can find more information about the individual cookies we use and the purposes for which we use them in the table below:\"]\r\n<table class=\" alignleft\" style=\"height: 148px;\" width=\"421\">\r\n<tbody>\r\n<tr>\r\n<td><strong>Cookie</strong></td>\r\n<td><strong>Purpose</strong></td>\r\n<td><strong>More Infomation</strong></td>\r\n</tr>\r\n<tr>\r\n<td><strong>Google Analytics</strong></td>\r\n<td>Store functionality, security, analytical, advertising and personalization cookies on your browser, app or device.</td>\r\n<td>Retained for an average of one (01) year after the last visit</td>\r\n</tr>\r\n<tr>\r\n<td><strong>CloudFlare</strong></td>\r\n<td>Maximize network resources, manage traffic and protect site from malicious traffic</td>\r\n<td>Retained for an average of 24 hours</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n[/ultimate_info_table][vc_column_text]Please note that third parties (including, for example, advertising networks and providers of external services like web traffic analysis services) may also use cookies, over which we have no control. These cookies are likely to be analytical/performance cookies or targeting cookies.\r\n\r\nYou block cookies by activating the setting on your browser that allows you to refuse the setting of all or some cookies. However, if you use your browser settings to block all cookies (including essential cookies) you may not be able to access all or parts of our site.[/vc_column_text][/vc_column][/vc_row]','Cookie Policy','','publish','closed','closed','','cookie-policy','','','2023-09-14 13:51:47','2023-09-14 13:51:47','',0,'https://farmchemie.yasithawd.com/?page_id=3669',0,'page','',0),(3670,1,'2023-09-14 12:53:47','2023-09-14 12:53:47','','MS-VAC','<h3>Inactivated oil emulsified vaccine against Mycoplasma synoviae</h3>\r\n[dt_divider style=\"thick\" /]\r\n\r\n&nbsp;\r\n\r\n<strong>Composition: </strong>\r\n\r\nInactivated oil emulsified vaccine against Mycoplasma synoviae infection containing not less than 1 × 1010 CFU/dose of inactivated cultures of Mycoplasma synoviae\r\n\r\n[dt_divider style=\"thin\" /]\r\n\r\n<strong>Indication: </strong>\r\n\r\nInactivated oil emulsified vaccine for the immunization of chickens against Mycoplasma synoviae infection\r\n\r\n[dt_divider style=\"thin\" /]\r\n\r\n<strong>Dosage:</strong>\r\n\r\nAs per the recommendation of the veterinarian.\r\n\r\n[dt_divider style=\"thin\" /]\r\n\r\n<strong>Pack sizes: </strong>\r\n\r\n500 doses, 1000 doses,\r\n\r\n&nbsp;\r\n\r\n[dt_divider style=\"thick\" /]\r\n\r\n&nbsp;','draft','closed','closed','','ms-vac','','','2023-09-23 15:37:09','2023-09-23 15:37:09','',0,'https://farmchemie.yasithawd.com/?post_type=product&#038;p=3670',0,'product','',0),(3671,1,'2023-09-14 12:57:42','2023-09-14 12:57:42','','POXIMUNE AE','<h3>Live Freeze – Dried Vaccine against Avian Encephalomyelitis and Fowl Pox Virus</h3>\r\n[dt_divider style=\"thick\" /]\r\n\r\n&nbsp;\r\n\r\n<strong>Composition: </strong>\r\n\r\nFowl pox virus Cutter strain at least 10 2.7 TCID 50 &amp; Avian encephalomyelitis virus Calnek strain at least 10 2.7 EID 50 per dose through expiration\r\n\r\n[dt_divider style=\"thin\" /]\r\n\r\n<strong>Indication: </strong>\r\n\r\nRecommended for use in chickens at least 8 weeks of age an aid in the prevention of Fowl Pox and Avian Encephalomyelitis.\r\n\r\n[dt_divider style=\"thin\" /]\r\n\r\n<strong>Dosage:</strong>\r\n\r\nAs per the recommendation of the veterinarian.\r\n\r\n[dt_divider style=\"thin\" /]\r\n\r\n<strong>Pack sizes: </strong>\r\n\r\n1000 doses\r\n\r\n&nbsp;\r\n\r\n[dt_divider style=\"thick\" /]\r\n\r\n&nbsp;','publish','closed','closed','','poximune-ae','','','2023-09-16 15:31:44','2023-09-16 15:31:44','',0,'https://farmchemie.yasithawd.com/?post_type=product&#038;p=3671',0,'product','',0),(3672,1,'2023-09-14 13:02:37','2023-09-14 13:02:37','','REOMUNE 3','<h3>Inactivated Oil Emulsion Vaccine against Reo Virus</h3>\r\n[dt_divider style=\"thick\" /]\r\n\r\n&nbsp;\r\n\r\n<strong>Composition: </strong>\r\n\r\nInactivated Oil Emulsion Vaccine against Reo virus [Reo virus strains 51133 min 105.42 EID 50, 2408 min 105.67 EID50 and SS412 min 105.26 TCID.\r\n\r\n[dt_divider style=\"thin\" /]\r\n\r\n<strong>Indication: </strong>\r\n\r\nRecommended for use in healthy breeder replacement chickens and breeder hens against disease caused by Avian Reo Viruses.\r\n\r\n[dt_divider style=\"thin\" /]\r\n\r\n<strong>Dosage:</strong>\r\n\r\nAs per the recommendation of the veterinarian.\r\n\r\n[dt_divider style=\"thin\" /]\r\n\r\n<strong>Pack sizes: </strong>\r\n\r\n1000 doses\r\n\r\n&nbsp;\r\n\r\n[dt_divider style=\"thick\" /]\r\n\r\n&nbsp;','publish','closed','closed','','reomune-3','','','2023-09-16 15:30:44','2023-09-16 15:30:44','',0,'https://farmchemie.yasithawd.com/?post_type=product&#038;p=3672',0,'product','',0),(3673,1,'2023-09-14 13:05:02','2023-09-14 13:05:02','','VECTROMUNE FP - MG','<h3>Live Freeze – Dried Vaccine for Immunization against Fowl Fox and <em>Mycoplasma gallisepticum</em></h3>\r\n[dt_divider style=\"thick\" /]\r\n\r\n&nbsp;\r\n\r\n<strong>Composition: </strong>\r\n\r\nLive, freeze-dried vaccine for immunization against fowl pox and <em>Mycoplasma gallisepticum</em> contains Fowl pox-<em>Mycoplasma gallisepticum</em>(S6 &amp; R strains) -min. 103.7 TCID50 per dose through expiration\r\n\r\n[dt_divider style=\"thin\" /]\r\n\r\n<strong>Indication: </strong>\r\n\r\nLive, freeze-dried vaccine for the immunization of chickens against Fowl Pox and <em>Mycoplasma gallisepticum</em>\r\n\r\n[dt_divider style=\"thin\" /]\r\n\r\n<strong>Dosage:</strong>\r\n\r\nAs per the recommendation of the veterinarian.\r\n\r\n[dt_divider style=\"thin\" /]\r\n\r\n<strong>Pack sizes: </strong>\r\n\r\n1000 doses\r\n\r\n&nbsp;\r\n\r\n[dt_divider style=\"thick\" /]\r\n\r\n&nbsp;','publish','closed','closed','','vectromune-fp-mg','','','2023-09-24 07:05:20','2023-09-24 07:05:20','',0,'https://farmchemie.yasithawd.com/?post_type=product&#038;p=3673',0,'product','',0),(3675,1,'2023-09-14 13:18:27','2023-09-14 13:18:27','[vc_row][vc_column][vc_column_text]Information about our use of cookies\r\n\r\nOur website uses cookies for the purpose of distinguishing you from other users of our website. This helps in providing you with a good experience when you browse our website and also allows us to improve our site. By accepting, you agree to our use of cookies.\r\n\r\nA cookie is a small file of letters and numbers that we store on your browser or the hard drive of your computer, if you agree. Cookies contain information that is transferred to your computer\'s hard drive.\r\n\r\nWe use the following cookies:[/vc_column_text][info_list icon_color=\"#039447\" font_size_icon=\"24\" eg_br_width=\"1\"][info_list_item list_title=\"Strictly necessary cookies\" list_icon=\"icomoon-the7-font-the7-arrow-29-2\" title_font_color=\"#039447\" desc_font_color=\"#762888\"]These are cookies that are required for the operation of our website. They include, for example, cookies that enable your browsing session to work smoothly.[/info_list_item][info_list_item list_title=\"Analytical/performance cookies\" list_icon=\"icomoon-the7-font-the7-arrow-29-2\" title_font_color=\"#039447\" desc_font_color=\"#762888\"]Analytical cookies help collect data that allows us to understand how you interact with our website. These insights allow us to improve content and features for our users.[/info_list_item][info_list_item list_title=\"Functionality cookies.\" list_icon=\"icomoon-the7-font-the7-arrow-29-2\" title_font_color=\"#039447\" desc_font_color=\"#762888\"]These are used to recognize you when you return to our website. This enables us to personalize our content for you.[/info_list_item][info_list_item list_title=\"Targeting cookies.\" list_icon=\"icomoon-the7-font-the7-arrow-29-2\" title_font_color=\"#039447\" desc_font_color=\"#762888\"]These cookies record your visit to our website, the pages you have visited and the links you have followed. We will use this information to make our website more relevant to your interests.[/info_list_item][/info_list][vc_column_text]You can find more information about the individual cookies we use and the purposes for which we use them in the table below:[/vc_column_text][/vc_column][/vc_row]','Cookie Policy','','inherit','closed','closed','','3669-revision-v1','','','2023-09-14 13:18:27','2023-09-14 13:18:27','',3669,'https://farmchemie.yasithawd.com/?p=3675',0,'revision','',0),(3676,1,'2023-09-14 13:19:22','2023-09-14 13:19:22','[vc_row][vc_column][vc_column_text]Information about our use of cookies\r\n\r\nOur website uses cookies for the purpose of distinguishing you from other users of our website. This helps in providing you with a good experience when you browse our website and also allows us to improve our site. By accepting, you agree to our use of cookies.\r\n\r\nA cookie is a small file of letters and numbers that we store on your browser or the hard drive of your computer, if you agree. Cookies contain information that is transferred to your computer\'s hard drive.\r\n\r\nWe use the following cookies:[/vc_column_text][info_list icon_color=\"#039447\" font_size_icon=\"24\" eg_br_width=\"1\"][info_list_item list_title=\"Strictly necessary cookies\" list_icon=\"icomoon-the7-font-the7-arrow-29-2\" title_font_color=\"#039447\" desc_font_color=\"#762888\"]These are cookies that are required for the operation of our website. They include, for example, cookies that enable your browsing session to work smoothly.[/info_list_item][info_list_item list_title=\"Analytical/performance cookies\" list_icon=\"icomoon-the7-font-the7-arrow-29-2\" title_font_color=\"#039447\" desc_font_color=\"#762888\"]Analytical cookies help collect data that allows us to understand how you interact with our website. These insights allow us to improve content and features for our users.[/info_list_item][info_list_item list_title=\"Functionality cookies.\" list_icon=\"icomoon-the7-font-the7-arrow-29-2\" title_font_color=\"#039447\" desc_font_color=\"#762888\"]These are used to recognize you when you return to our website. This enables us to personalize our content for you.[/info_list_item][info_list_item list_title=\"Targeting cookies.\" list_icon=\"icomoon-the7-font-the7-arrow-29-2\" title_font_color=\"#039447\" desc_font_color=\"#762888\"]These cookies record your visit to our website, the pages you have visited and the links you have followed. We will use this information to make our website more relevant to your interests.[/info_list_item][/info_list][vc_column_text]You can find more information about the individual cookies we use and the purposes for which we use them in the table below:[/vc_column_text][ultimate_info_table]\r\n<table>\r\n<tbody>\r\n<tr>\r\n<td>Cookie</td>\r\n<td>Purpose</td>\r\n<td>More Infomation</td>\r\n</tr>\r\n<tr>\r\n<td>Google Analytics</td>\r\n<td>Store functionality, security, analytical, advertising and personalization cookies on your browser, app or device.</td>\r\n<td>Retained for an average of one (01) year after the last visit</td>\r\n</tr>\r\n<tr>\r\n<td>CloudFlare</td>\r\n<td>Maximize network resources, manage traffic and protect site from malicious traffic</td>\r\n<td>Retained for an average of 24 hours</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n[/ultimate_info_table][/vc_column][/vc_row]','Cookie Policy','','inherit','closed','closed','','3669-revision-v1','','','2023-09-14 13:19:22','2023-09-14 13:19:22','',3669,'https://farmchemie.yasithawd.com/?p=3676',0,'revision','',0),(3677,1,'2023-09-14 13:20:32','2023-09-14 13:20:32','[vc_row][vc_column][vc_column_text]Information about our use of cookies\r\n\r\nOur website uses cookies for the purpose of distinguishing you from other users of our website. This helps in providing you with a good experience when you browse our website and also allows us to improve our site. By accepting, you agree to our use of cookies.\r\n\r\nA cookie is a small file of letters and numbers that we store on your browser or the hard drive of your computer, if you agree. Cookies contain information that is transferred to your computer\'s hard drive.\r\n\r\nWe use the following cookies:[/vc_column_text][info_list icon_color=\"#039447\" font_size_icon=\"24\" eg_br_width=\"1\"][info_list_item list_title=\"Strictly necessary cookies\" list_icon=\"icomoon-the7-font-the7-arrow-29-2\" title_font_color=\"#039447\" desc_font_color=\"#762888\"]These are cookies that are required for the operation of our website. They include, for example, cookies that enable your browsing session to work smoothly.[/info_list_item][info_list_item list_title=\"Analytical/performance cookies\" list_icon=\"icomoon-the7-font-the7-arrow-29-2\" title_font_color=\"#039447\" desc_font_color=\"#762888\"]Analytical cookies help collect data that allows us to understand how you interact with our website. These insights allow us to improve content and features for our users.[/info_list_item][info_list_item list_title=\"Functionality cookies.\" list_icon=\"icomoon-the7-font-the7-arrow-29-2\" title_font_color=\"#039447\" desc_font_color=\"#762888\"]These are used to recognize you when you return to our website. This enables us to personalize our content for you.[/info_list_item][info_list_item list_title=\"Targeting cookies.\" list_icon=\"icomoon-the7-font-the7-arrow-29-2\" title_font_color=\"#039447\" desc_font_color=\"#762888\"]These cookies record your visit to our website, the pages you have visited and the links you have followed. We will use this information to make our website more relevant to your interests.[/info_list_item][/info_list][vc_column_text]You can find more information about the individual cookies we use and the purposes for which we use them in the table below:[/vc_column_text][ultimate_info_table design_style=\"design02\" color_scheme=\"custom\" color_bg_main=\"rgba(0,0,0,0.01)\" color_txt_main=\"#000000\"]\r\n<table>\r\n<tbody>\r\n<tr>\r\n<td>Cookie</td>\r\n<td>Purpose</td>\r\n<td>More Infomation</td>\r\n</tr>\r\n<tr>\r\n<td>Google Analytics</td>\r\n<td>Store functionality, security, analytical, advertising and personalization cookies on your browser, app or device.</td>\r\n<td>Retained for an average of one (01) year after the last visit</td>\r\n</tr>\r\n<tr>\r\n<td>CloudFlare</td>\r\n<td>Maximize network resources, manage traffic and protect site from malicious traffic</td>\r\n<td>Retained for an average of 24 hours</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n[/ultimate_info_table][/vc_column][/vc_row]','Cookie Policy','','inherit','closed','closed','','3669-revision-v1','','','2023-09-14 13:20:32','2023-09-14 13:20:32','',3669,'https://farmchemie.yasithawd.com/?p=3677',0,'revision','',0),(3678,1,'2023-09-14 13:21:17','2023-09-14 13:21:17','[vc_row][vc_column][vc_column_text]Information about our use of cookies\r\n\r\nOur website uses cookies for the purpose of distinguishing you from other users of our website. This helps in providing you with a good experience when you browse our website and also allows us to improve our site. By accepting, you agree to our use of cookies.\r\n\r\nA cookie is a small file of letters and numbers that we store on your browser or the hard drive of your computer, if you agree. Cookies contain information that is transferred to your computer\'s hard drive.\r\n\r\nWe use the following cookies:[/vc_column_text][info_list icon_color=\"#039447\" font_size_icon=\"24\" eg_br_width=\"1\"][info_list_item list_title=\"Strictly necessary cookies\" list_icon=\"icomoon-the7-font-the7-arrow-29-2\" title_font_color=\"#039447\" desc_font_color=\"#762888\"]These are cookies that are required for the operation of our website. They include, for example, cookies that enable your browsing session to work smoothly.[/info_list_item][info_list_item list_title=\"Analytical/performance cookies\" list_icon=\"icomoon-the7-font-the7-arrow-29-2\" title_font_color=\"#039447\" desc_font_color=\"#762888\"]Analytical cookies help collect data that allows us to understand how you interact with our website. These insights allow us to improve content and features for our users.[/info_list_item][info_list_item list_title=\"Functionality cookies.\" list_icon=\"icomoon-the7-font-the7-arrow-29-2\" title_font_color=\"#039447\" desc_font_color=\"#762888\"]These are used to recognize you when you return to our website. This enables us to personalize our content for you.[/info_list_item][info_list_item list_title=\"Targeting cookies.\" list_icon=\"icomoon-the7-font-the7-arrow-29-2\" title_font_color=\"#039447\" desc_font_color=\"#762888\"]These cookies record your visit to our website, the pages you have visited and the links you have followed. We will use this information to make our website more relevant to your interests.[/info_list_item][/info_list][vc_column_text]You can find more information about the individual cookies we use and the purposes for which we use them in the table below:[/vc_column_text][ultimate_info_table design_style=\"design03\" color_scheme=\"custom\" color_bg_main=\"rgba(0,0,0,0.01)\" color_txt_main=\"#000000\"]\r\n<table>\r\n<tbody>\r\n<tr>\r\n<td>Cookie</td>\r\n<td>Purpose</td>\r\n<td>More Infomation</td>\r\n</tr>\r\n<tr>\r\n<td>Google Analytics</td>\r\n<td>Store functionality, security, analytical, advertising and personalization cookies on your browser, app or device.</td>\r\n<td>Retained for an average of one (01) year after the last visit</td>\r\n</tr>\r\n<tr>\r\n<td>CloudFlare</td>\r\n<td>Maximize network resources, manage traffic and protect site from malicious traffic</td>\r\n<td>Retained for an average of 24 hours</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n[/ultimate_info_table][/vc_column][/vc_row]','Cookie Policy','','inherit','closed','closed','','3669-revision-v1','','','2023-09-14 13:21:17','2023-09-14 13:21:17','',3669,'https://farmchemie.yasithawd.com/?p=3678',0,'revision','',0),(3679,1,'2023-09-14 13:22:03','2023-09-14 13:22:03','[vc_row][vc_column][vc_column_text]Information about our use of cookies\r\n\r\nOur website uses cookies for the purpose of distinguishing you from other users of our website. This helps in providing you with a good experience when you browse our website and also allows us to improve our site. By accepting, you agree to our use of cookies.\r\n\r\nA cookie is a small file of letters and numbers that we store on your browser or the hard drive of your computer, if you agree. Cookies contain information that is transferred to your computer\'s hard drive.\r\n\r\nWe use the following cookies:[/vc_column_text][info_list icon_color=\"#039447\" font_size_icon=\"24\" eg_br_width=\"1\"][info_list_item list_title=\"Strictly necessary cookies\" list_icon=\"icomoon-the7-font-the7-arrow-29-2\" title_font_color=\"#039447\" desc_font_color=\"#762888\"]These are cookies that are required for the operation of our website. They include, for example, cookies that enable your browsing session to work smoothly.[/info_list_item][info_list_item list_title=\"Analytical/performance cookies\" list_icon=\"icomoon-the7-font-the7-arrow-29-2\" title_font_color=\"#039447\" desc_font_color=\"#762888\"]Analytical cookies help collect data that allows us to understand how you interact with our website. These insights allow us to improve content and features for our users.[/info_list_item][info_list_item list_title=\"Functionality cookies.\" list_icon=\"icomoon-the7-font-the7-arrow-29-2\" title_font_color=\"#039447\" desc_font_color=\"#762888\"]These are used to recognize you when you return to our website. This enables us to personalize our content for you.[/info_list_item][info_list_item list_title=\"Targeting cookies.\" list_icon=\"icomoon-the7-font-the7-arrow-29-2\" title_font_color=\"#039447\" desc_font_color=\"#762888\"]These cookies record your visit to our website, the pages you have visited and the links you have followed. We will use this information to make our website more relevant to your interests.[/info_list_item][/info_list][ultimate_info_table design_style=\"design03\" color_scheme=\"custom\" color_bg_main=\"rgba(0,0,0,0.01)\" color_txt_main=\"#000000\" package_sub_heading=\"You can find more information about the individual cookies we use and the purposes for which we use them in the table below:\"]\r\n<table>\r\n<tbody>\r\n<tr>\r\n<td>Cookie</td>\r\n<td>Purpose</td>\r\n<td>More Infomation</td>\r\n</tr>\r\n<tr>\r\n<td>Google Analytics</td>\r\n<td>Store functionality, security, analytical, advertising and personalization cookies on your browser, app or device.</td>\r\n<td>Retained for an average of one (01) year after the last visit</td>\r\n</tr>\r\n<tr>\r\n<td>CloudFlare</td>\r\n<td>Maximize network resources, manage traffic and protect site from malicious traffic</td>\r\n<td>Retained for an average of 24 hours</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n[/ultimate_info_table][/vc_column][/vc_row]','Cookie Policy','','inherit','closed','closed','','3669-revision-v1','','','2023-09-14 13:22:03','2023-09-14 13:22:03','',3669,'https://farmchemie.yasithawd.com/?p=3679',0,'revision','',0),(3680,1,'2023-09-14 13:22:43','2023-09-14 13:22:43','[vc_row][vc_column][vc_column_text]Information about our use of cookies\r\n\r\nOur website uses cookies for the purpose of distinguishing you from other users of our website. This helps in providing you with a good experience when you browse our website and also allows us to improve our site. By accepting, you agree to our use of cookies.\r\n\r\nA cookie is a small file of letters and numbers that we store on your browser or the hard drive of your computer, if you agree. Cookies contain information that is transferred to your computer\'s hard drive.\r\n\r\nWe use the following cookies:[/vc_column_text][info_list icon_color=\"#039447\" font_size_icon=\"24\" eg_br_width=\"1\"][info_list_item list_title=\"Strictly necessary cookies\" list_icon=\"icomoon-the7-font-the7-arrow-29-2\" title_font_color=\"#039447\" desc_font_color=\"#762888\"]These are cookies that are required for the operation of our website. They include, for example, cookies that enable your browsing session to work smoothly.[/info_list_item][info_list_item list_title=\"Analytical/performance cookies\" list_icon=\"icomoon-the7-font-the7-arrow-29-2\" title_font_color=\"#039447\" desc_font_color=\"#762888\"]Analytical cookies help collect data that allows us to understand how you interact with our website. These insights allow us to improve content and features for our users.[/info_list_item][info_list_item list_title=\"Functionality cookies.\" list_icon=\"icomoon-the7-font-the7-arrow-29-2\" title_font_color=\"#039447\" desc_font_color=\"#762888\"]These are used to recognize you when you return to our website. This enables us to personalize our content for you.[/info_list_item][info_list_item list_title=\"Targeting cookies.\" list_icon=\"icomoon-the7-font-the7-arrow-29-2\" title_font_color=\"#039447\" desc_font_color=\"#762888\"]These cookies record your visit to our website, the pages you have visited and the links you have followed. We will use this information to make our website more relevant to your interests.[/info_list_item][/info_list][ultimate_info_table design_style=\"design04\" color_scheme=\"custom\" color_bg_main=\"rgba(0,0,0,0.01)\" color_txt_main=\"#000000\" package_sub_heading=\"You can find more information about the individual cookies we use and the purposes for which we use them in the table below:\"]\r\n<table>\r\n<tbody>\r\n<tr>\r\n<td>Cookie</td>\r\n<td>Purpose</td>\r\n<td>More Infomation</td>\r\n</tr>\r\n<tr>\r\n<td>Google Analytics</td>\r\n<td>Store functionality, security, analytical, advertising and personalization cookies on your browser, app or device.</td>\r\n<td>Retained for an average of one (01) year after the last visit</td>\r\n</tr>\r\n<tr>\r\n<td>CloudFlare</td>\r\n<td>Maximize network resources, manage traffic and protect site from malicious traffic</td>\r\n<td>Retained for an average of 24 hours</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n[/ultimate_info_table][/vc_column][/vc_row]','Cookie Policy','','inherit','closed','closed','','3669-revision-v1','','','2023-09-14 13:22:43','2023-09-14 13:22:43','',3669,'https://farmchemie.yasithawd.com/?p=3680',0,'revision','',0),(3681,1,'2023-09-14 13:23:41','2023-09-14 13:23:41','[vc_row][vc_column][vc_column_text]Information about our use of cookies\r\n\r\nOur website uses cookies for the purpose of distinguishing you from other users of our website. This helps in providing you with a good experience when you browse our website and also allows us to improve our site. By accepting, you agree to our use of cookies.\r\n\r\nA cookie is a small file of letters and numbers that we store on your browser or the hard drive of your computer, if you agree. Cookies contain information that is transferred to your computer\'s hard drive.\r\n\r\nWe use the following cookies:[/vc_column_text][info_list icon_color=\"#039447\" font_size_icon=\"24\" eg_br_width=\"1\"][info_list_item list_title=\"Strictly necessary cookies\" list_icon=\"icomoon-the7-font-the7-arrow-29-2\" title_font_color=\"#039447\" desc_font_color=\"#762888\"]These are cookies that are required for the operation of our website. They include, for example, cookies that enable your browsing session to work smoothly.[/info_list_item][info_list_item list_title=\"Analytical/performance cookies\" list_icon=\"icomoon-the7-font-the7-arrow-29-2\" title_font_color=\"#039447\" desc_font_color=\"#762888\"]Analytical cookies help collect data that allows us to understand how you interact with our website. These insights allow us to improve content and features for our users.[/info_list_item][info_list_item list_title=\"Functionality cookies.\" list_icon=\"icomoon-the7-font-the7-arrow-29-2\" title_font_color=\"#039447\" desc_font_color=\"#762888\"]These are used to recognize you when you return to our website. This enables us to personalize our content for you.[/info_list_item][info_list_item list_title=\"Targeting cookies.\" list_icon=\"icomoon-the7-font-the7-arrow-29-2\" title_font_color=\"#039447\" desc_font_color=\"#762888\"]These cookies record your visit to our website, the pages you have visited and the links you have followed. We will use this information to make our website more relevant to your interests.[/info_list_item][/info_list][ultimate_info_table design_style=\"design05\" color_scheme=\"custom\" color_bg_main=\"rgba(0,0,0,0.01)\" color_txt_main=\"#000000\" package_sub_heading=\"You can find more information about the individual cookies we use and the purposes for which we use them in the table below:\"]\r\n<table class=\" alignleft\">\r\n<tbody>\r\n<tr>\r\n<td>Cookie</td>\r\n<td>Purpose</td>\r\n<td>More Infomation</td>\r\n</tr>\r\n<tr>\r\n<td>Google Analytics</td>\r\n<td>Store functionality, security, analytical, advertising and personalization cookies on your browser, app or device.</td>\r\n<td>Retained for an average of one (01) year after the last visit</td>\r\n</tr>\r\n<tr>\r\n<td>CloudFlare</td>\r\n<td>Maximize network resources, manage traffic and protect site from malicious traffic</td>\r\n<td>Retained for an average of 24 hours</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n[/ultimate_info_table][/vc_column][/vc_row]','Cookie Policy','','inherit','closed','closed','','3669-revision-v1','','','2023-09-14 13:23:41','2023-09-14 13:23:41','',3669,'https://farmchemie.yasithawd.com/?p=3681',0,'revision','',0),(3682,1,'2023-09-14 13:24:11','2023-09-14 13:24:11','[vc_row][vc_column][vc_column_text]Information about our use of cookies\r\n\r\nOur website uses cookies for the purpose of distinguishing you from other users of our website. This helps in providing you with a good experience when you browse our website and also allows us to improve our site. By accepting, you agree to our use of cookies.\r\n\r\nA cookie is a small file of letters and numbers that we store on your browser or the hard drive of your computer, if you agree. Cookies contain information that is transferred to your computer\'s hard drive.\r\n\r\nWe use the following cookies:[/vc_column_text][info_list icon_color=\"#039447\" font_size_icon=\"24\" eg_br_width=\"1\"][info_list_item list_title=\"Strictly necessary cookies\" list_icon=\"icomoon-the7-font-the7-arrow-29-2\" title_font_color=\"#039447\" desc_font_color=\"#762888\"]These are cookies that are required for the operation of our website. They include, for example, cookies that enable your browsing session to work smoothly.[/info_list_item][info_list_item list_title=\"Analytical/performance cookies\" list_icon=\"icomoon-the7-font-the7-arrow-29-2\" title_font_color=\"#039447\" desc_font_color=\"#762888\"]Analytical cookies help collect data that allows us to understand how you interact with our website. These insights allow us to improve content and features for our users.[/info_list_item][info_list_item list_title=\"Functionality cookies.\" list_icon=\"icomoon-the7-font-the7-arrow-29-2\" title_font_color=\"#039447\" desc_font_color=\"#762888\"]These are used to recognize you when you return to our website. This enables us to personalize our content for you.[/info_list_item][info_list_item list_title=\"Targeting cookies.\" list_icon=\"icomoon-the7-font-the7-arrow-29-2\" title_font_color=\"#039447\" desc_font_color=\"#762888\"]These cookies record your visit to our website, the pages you have visited and the links you have followed. We will use this information to make our website more relevant to your interests.[/info_list_item][/info_list][ultimate_info_table design_style=\"design06\" color_scheme=\"custom\" color_bg_main=\"rgba(0,0,0,0.01)\" color_txt_main=\"#000000\" package_sub_heading=\"You can find more information about the individual cookies we use and the purposes for which we use them in the table below:\"]\r\n<table class=\" alignleft\">\r\n<tbody>\r\n<tr>\r\n<td>Cookie</td>\r\n<td>Purpose</td>\r\n<td>More Infomation</td>\r\n</tr>\r\n<tr>\r\n<td>Google Analytics</td>\r\n<td>Store functionality, security, analytical, advertising and personalization cookies on your browser, app or device.</td>\r\n<td>Retained for an average of one (01) year after the last visit</td>\r\n</tr>\r\n<tr>\r\n<td>CloudFlare</td>\r\n<td>Maximize network resources, manage traffic and protect site from malicious traffic</td>\r\n<td>Retained for an average of 24 hours</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n[/ultimate_info_table][/vc_column][/vc_row]','Cookie Policy','','inherit','closed','closed','','3669-revision-v1','','','2023-09-14 13:24:11','2023-09-14 13:24:11','',3669,'https://farmchemie.yasithawd.com/?p=3682',0,'revision','',0),(3683,1,'2023-09-14 13:25:17','2023-09-14 13:25:17','[vc_row][vc_column][vc_column_text]Information about our use of cookies\r\n\r\nOur website uses cookies for the purpose of distinguishing you from other users of our website. This helps in providing you with a good experience when you browse our website and also allows us to improve our site. By accepting, you agree to our use of cookies.\r\n\r\nA cookie is a small file of letters and numbers that we store on your browser or the hard drive of your computer, if you agree. Cookies contain information that is transferred to your computer\'s hard drive.\r\n\r\nWe use the following cookies:[/vc_column_text][info_list icon_color=\"#039447\" font_size_icon=\"24\" eg_br_width=\"1\"][info_list_item list_title=\"Strictly necessary cookies\" list_icon=\"icomoon-the7-font-the7-arrow-29-2\" title_font_color=\"#039447\" desc_font_color=\"#762888\"]These are cookies that are required for the operation of our website. They include, for example, cookies that enable your browsing session to work smoothly.[/info_list_item][info_list_item list_title=\"Analytical/performance cookies\" list_icon=\"icomoon-the7-font-the7-arrow-29-2\" title_font_color=\"#039447\" desc_font_color=\"#762888\"]Analytical cookies help collect data that allows us to understand how you interact with our website. These insights allow us to improve content and features for our users.[/info_list_item][info_list_item list_title=\"Functionality cookies.\" list_icon=\"icomoon-the7-font-the7-arrow-29-2\" title_font_color=\"#039447\" desc_font_color=\"#762888\"]These are used to recognize you when you return to our website. This enables us to personalize our content for you.[/info_list_item][info_list_item list_title=\"Targeting cookies.\" list_icon=\"icomoon-the7-font-the7-arrow-29-2\" title_font_color=\"#039447\" desc_font_color=\"#762888\"]These cookies record your visit to our website, the pages you have visited and the links you have followed. We will use this information to make our website more relevant to your interests.[/info_list_item][/info_list][ultimate_info_table design_style=\"design03\" color_scheme=\"custom\" color_bg_main=\"rgba(0,0,0,0.01)\" color_txt_main=\"#000000\" package_sub_heading=\"You can find more information about the individual cookies we use and the purposes for which we use them in the table below:\"]\r\n<table class=\" alignleft\" style=\"height: 148px;\" width=\"421\">\r\n<tbody>\r\n<tr>\r\n<td><strong>Cookie</strong></td>\r\n<td><strong>Purpose</strong></td>\r\n<td><strong>More Infomation</strong></td>\r\n</tr>\r\n<tr>\r\n<td><strong>Google Analytics</strong></td>\r\n<td>Store functionality, security, analytical, advertising and personalization cookies on your browser, app or device.</td>\r\n<td>Retained for an average of one (01) year after the last visit</td>\r\n</tr>\r\n<tr>\r\n<td><strong>CloudFlare</strong></td>\r\n<td>Maximize network resources, manage traffic and protect site from malicious traffic</td>\r\n<td>Retained for an average of 24 hours</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n[/ultimate_info_table][/vc_column][/vc_row]','Cookie Policy','','inherit','closed','closed','','3669-revision-v1','','','2023-09-14 13:25:17','2023-09-14 13:25:17','',3669,'https://farmchemie.yasithawd.com/?p=3683',0,'revision','',0),(3684,1,'2023-09-14 13:26:19','2023-09-14 13:26:19','[vc_row][vc_column][vc_column_text]Information about our use of cookies\r\n\r\nOur website uses cookies for the purpose of distinguishing you from other users of our website. This helps in providing you with a good experience when you browse our website and also allows us to improve our site. By accepting, you agree to our use of cookies.\r\n\r\nA cookie is a small file of letters and numbers that we store on your browser or the hard drive of your computer, if you agree. Cookies contain information that is transferred to your computer\'s hard drive.\r\n\r\nWe use the following cookies:[/vc_column_text][info_list icon_color=\"#039447\" font_size_icon=\"24\" eg_br_width=\"1\"][info_list_item list_title=\"Strictly necessary cookies\" list_icon=\"icomoon-the7-font-the7-arrow-29-2\" title_font_color=\"#039447\" desc_font_color=\"#762888\"]These are cookies that are required for the operation of our website. They include, for example, cookies that enable your browsing session to work smoothly.[/info_list_item][info_list_item list_title=\"Analytical/performance cookies\" list_icon=\"icomoon-the7-font-the7-arrow-29-2\" title_font_color=\"#039447\" desc_font_color=\"#762888\"]Analytical cookies help collect data that allows us to understand how you interact with our website. These insights allow us to improve content and features for our users.[/info_list_item][info_list_item list_title=\"Functionality cookies.\" list_icon=\"icomoon-the7-font-the7-arrow-29-2\" title_font_color=\"#039447\" desc_font_color=\"#762888\"]These are used to recognize you when you return to our website. This enables us to personalize our content for you.[/info_list_item][info_list_item list_title=\"Targeting cookies.\" list_icon=\"icomoon-the7-font-the7-arrow-29-2\" title_font_color=\"#039447\" desc_font_color=\"#762888\"]These cookies record your visit to our website, the pages you have visited and the links you have followed. We will use this information to make our website more relevant to your interests.[/info_list_item][/info_list][ultimate_info_table design_style=\"design03\" color_scheme=\"custom\" color_bg_main=\"rgba(0,0,0,0.01)\" color_txt_main=\"#000000\" package_sub_heading=\"You can find more information about the individual cookies we use and the purposes for which we use them in the table below:\"]\r\n<table class=\" alignleft\" style=\"height: 148px;\" width=\"421\">\r\n<tbody>\r\n<tr>\r\n<td><strong>Cookie</strong></td>\r\n<td><strong>Purpose</strong></td>\r\n<td><strong>More Infomation</strong></td>\r\n</tr>\r\n<tr>\r\n<td><strong>Google Analytics</strong></td>\r\n<td>Store functionality, security, analytical, advertising and personalization cookies on your browser, app or device.</td>\r\n<td>Retained for an average of one (01) year after the last visit</td>\r\n</tr>\r\n<tr>\r\n<td><strong>CloudFlare</strong></td>\r\n<td>Maximize network resources, manage traffic and protect site from malicious traffic</td>\r\n<td>Retained for an average of 24 hours</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n[/ultimate_info_table][vc_column_text]Please note that third parties (including, for example, advertising networks and providers of external services like web traffic analysis services) may also use cookies, over which we have no control. These cookies are likely to be analytical/performance cookies or targeting cookies.\r\n\r\nYou block cookies by activating the setting on your browser that allows you to refuse the setting of all or some cookies. However, if you use your browser settings to block all cookies (including essential cookies) you may not be able to access all or parts of our site.[/vc_column_text][/vc_column][/vc_row]','Cookie Policy','','inherit','closed','closed','','3669-revision-v1','','','2023-09-14 13:26:19','2023-09-14 13:26:19','',3669,'https://farmchemie.yasithawd.com/?p=3684',0,'revision','',0),(3685,1,'2023-09-14 13:27:57','2023-09-14 13:27:57',' ','','','publish','closed','closed','','3685','','','2023-09-14 13:27:57','2023-09-14 13:27:57','',0,'https://farmchemie.yasithawd.com/?p=3685',1,'nav_menu_item','',0),(3691,1,'2023-09-14 13:44:31','2023-09-14 13:44:31','','19-Farmchemie','','inherit','','closed','','19-farmchemie','','','2023-09-14 13:44:31','2023-09-14 13:44:31','',3690,'https://farmchemie.yasithawd.com/wp-content/uploads/2023/09/19-Farmchemie.jpg',0,'attachment','image/jpeg',0),(3692,1,'2023-09-14 13:44:47','2023-09-14 13:44:47','[vc_row][vc_column][vc_column_text]Farmchemie Private Limited, a market leader in animal health products won the CNCI Achiever Awards for Industrial Excellence 2020, Manufacturing Sector, Extra Large Category, National Level award for the second consecutive year held at Hotel Galadari, Colombo.\r\n\r\nWimal Weerawansa, Minister of Industries was the chief guest and presented the award to Uditha Wanigasinghe, Managing Director Farmchemie.\r\n\r\nWith a successful history exceeding 15 years, Farmchemie saw a remarkable growth extending to the international market.\r\n\r\nThe company manufactures and markets animal health products, veterinary pharmaceuticals, animal feed additives in several brands including ‘Farmstar’ their flagship brand. Since 2018 Farmchemie has been exporting its products to India, Uganda, Bangladesh, Pakistan, Nepal and UAE.\r\n\r\n‘‘Having started in a very small scale with just three employees, Farmchemie has been able to record a speedy growth to become the market leader in animal health products sector because we are committed to investigate and identify problems and requirements at animal husbandry and provide solutions on time.” said Wanigasinghe.\r\n<div id=\"block-inject-1\" class=\"block-inject block-inject-1\">\r\n<div id=\"block-block-38\" class=\"block block-block clearfix\">\r\n<div class=\"content\"></div>\r\n</div>\r\n</div>\r\n<div class=\"clearfix\"></div>\r\n“Today, Farmchemie is the first and only animal health products company in Sri Lanka to have been accredited with ISO 9001:2015, WHO GMP quality certifications. In addition to a comprehensive manufacturing facility with sophisticated machinery the company has an exclusive BOI approved plant for manufacturing export products which has ISO 9001:2015, GMP+ and FAMI QS standards.”\r\n\r\nFarmchemie has been recognized with many accolades in its journey to success including National Enterprise Excellence-2013 (Merit award), Gold Award at Agribusiness Awards-2014 organized by the department of agriculture, APEA-2014 (Emerging Entrepreneur) and CNCI Achiever Awards 2019.[/vc_column_text][/vc_column][/vc_row]','Farmchemie wins CNCI Achiever Award again','','inherit','closed','closed','','3690-revision-v1','','','2023-09-14 13:44:47','2023-09-14 13:44:47','',3690,'https://farmchemie.yasithawd.com/?p=3692',0,'revision','',0),(3693,1,'2023-09-14 13:48:01','2023-09-14 13:48:01','[vc_row][vc_column][vc_basic_grid post_type=\"post\" max_items=\"\" element_width=\"6\" grid_id=\"vc_gid:1694699209847-8c8342c7-2c9d-3\" taxonomies=\"187\"][/vc_column][/vc_row]','News & Events','','publish','closed','closed','','news-events','','','2023-09-14 13:48:01','2023-09-14 13:48:01','',0,'https://farmchemie.yasithawd.com/?page_id=3693',0,'page','',0),(3694,1,'2023-09-14 13:48:01','2023-09-14 13:48:01','[vc_row][vc_column][vc_basic_grid post_type=\"post\" max_items=\"\" element_width=\"6\" grid_id=\"vc_gid:1694699209847-8c8342c7-2c9d-3\" taxonomies=\"187\"][/vc_column][/vc_row]','News & Events','','inherit','closed','closed','','3693-revision-v1','','','2023-09-14 13:48:01','2023-09-14 13:48:01','',3693,'https://farmchemie.yasithawd.com/?p=3694',0,'revision','',0),(3695,1,'2023-09-14 13:49:10','2023-09-14 13:49:10',' ','','','publish','closed','closed','','3695','','','2023-09-14 13:49:10','2023-09-14 13:49:10','',0,'https://farmchemie.yasithawd.com/?p=3695',2,'nav_menu_item','',0),(3697,1,'2023-09-15 05:57:32','2023-09-15 05:57:32','','Calfo20_logo','','inherit','','closed','','calfo20_logo','','','2023-09-15 05:57:32','2023-09-15 05:57:32','',3629,'https://farmchemie.yasithawd.com/wp-content/uploads/2023/09/Calfo20_logo.png',0,'attachment','image/png',0),(3698,1,'2023-09-15 05:59:47','2023-09-15 05:59:47','','CALFO 20','<h3>A combination of all essential Vitamins, Minerals, Amino Acids and Stimulate of Reproduction and Milk Production system of Cattle, Goats and Pigs.</h3><p>[dt_divider style=\"thick\" /]</p><p><br></p><p><strong>Composition: </strong></p><p>Each 1 kg contains,<br>Vitamin A - 6000,000 IU<br>Vitamin D3 - 200,00 IU<br>Vitamin B1 - 100 mg<br>Vitamin B2 - 200 mg<br>Vitamin B6 - 10 mg<br>Vitamin B12 - 10 mg<br>Vitamin E - 1 mg<br>Vitamin K3 - 75 mg<br>Nicotinic acid - 25 mg<br>Calcium Pantothenate - 500 mg<br>Choline chloride - 25 g<br>D.L.Methionine - 10 g<br>Gentian root - 5 g<br>Sodium chloride - 25 g<br>Magnesium carbonate - 5 g<br>Manganese carbonate - 1 g<br>Zinc carbonate - 1 g<br>Iron sulfate - 2 g<br>Copper sulfate - 500 mg<br>Cobalt sulfate - 100 mg<br>Potassium iodide - 160 mg<br>Calcium carbonate - 443.087 g<br>Dicalcium phosphate - 300 g<br>Sodium glutamate - 7.5 g<br>L-Lysine - 2.5 g<br>Carnitine hydrochloride - 10 g<br>Selenium - 80 mg<br>Aromatized excipient q.s. - 1000 g</p><p>[dt_divider style=\"thin\" /]</p><p><strong>Indication: </strong></p><p>Anorexia, low productivity, tonic and stimulant of reproduction and milk production system.</p><p>[dt_divider style=\"thin\" /]</p><p><strong>Dosage:</strong></p><p>For female cattle and Buffaloes Reproduction issues :<br>upto 10 L: 25-50 g per day for 20 consecutive days above 10 L: 50-100 g per day for 20 consecutive days</p><p>Milking animals:<br>upto 10 L: 25-50 g per day for 2-3 days/week above 10 L: 50 100 g per day for 2-3 days/week<br>For goats, pigs sheep &amp; horses<br>Reproduction issues: 25 g per animal per day for<br>20 consecutive days</p><p>As a vitamin &amp; mineral mixture: 25 g per animal per day for 2-3 days/week</p><p>[dt_divider style=\"thin\" /]</p><p><strong>Pack sizes: </strong></p><p>500g, 5 kg and 25 kg</p><p><br></p><p>[dt_divider style=\"thick\" /]</p><p><br></p>','inherit','closed','closed','','3629-autosave-v1','','','2023-09-15 05:59:47','2023-09-15 05:59:47','',3629,'https://farmchemie.yasithawd.com/?p=3698',0,'revision','',0),(3699,1,'2023-09-15 06:00:23','2023-09-15 06:00:23','','REGEN_600px','','inherit','','closed','','regen_600px','','','2023-09-15 06:00:23','2023-09-15 06:00:23','',3550,'https://farmchemie.yasithawd.com/wp-content/uploads/2023/09/REGEN_600px.png',0,'attachment','image/png',0),(3700,1,'2023-09-15 06:00:39','2023-09-15 06:00:39','','REGEN_logo','','inherit','','closed','','regen_logo','','','2023-09-15 06:00:39','2023-09-15 06:00:39','',3550,'https://farmchemie.yasithawd.com/wp-content/uploads/2023/09/REGEN_logo.png',0,'attachment','image/png',0),(3701,1,'2023-09-15 06:07:46','2023-09-15 06:07:46','','Cardisure_ 300px','','inherit','','closed','','cardisure_-300px','','','2023-09-15 06:07:46','2023-09-15 06:07:46','',3551,'https://farmchemie.yasithawd.com/wp-content/uploads/2023/09/Cardisure_-300px.png',0,'attachment','image/png',0),(3702,1,'2023-09-15 06:08:07','2023-09-15 06:08:07','','Cardisure_5mg_600px x 600px','','inherit','','closed','','cardisure_5mg_600px-x-600px','','','2023-09-15 06:08:07','2023-09-15 06:08:07','',3551,'https://farmchemie.yasithawd.com/wp-content/uploads/2023/09/Cardisure_5mg_600px-x-600px.png',0,'attachment','image/png',0),(3703,1,'2023-09-15 06:13:25','2023-09-15 06:13:25','','Felimazole_600px x 600px','','inherit','','closed','','felimazole_600px-x-600px','','','2023-09-15 06:13:25','2023-09-15 06:13:25','',3365,'https://farmchemie.yasithawd.com/wp-content/uploads/2023/08/Felimazole_600px-x-600px.png',0,'attachment','image/png',0),(3704,1,'2023-09-15 06:13:40','2023-09-15 06:13:40','','Felimazole_300px','','inherit','','closed','','felimazole_300px','','','2023-09-15 06:13:40','2023-09-15 06:13:40','',3365,'https://farmchemie.yasithawd.com/wp-content/uploads/2023/08/Felimazole_300px.png',0,'attachment','image/png',0),(3705,1,'2023-09-15 06:23:20','2023-09-15 06:23:20','','Hemo Boost_600px x 600px','','inherit','','closed','','hemo-boost_600px-x-600px','','','2023-09-15 06:23:20','2023-09-15 06:23:20','',3440,'https://farmchemie.yasithawd.com/wp-content/uploads/2023/09/Hemo-Boost_600px-x-600px.png',0,'attachment','image/png',0),(3706,1,'2023-09-15 06:23:37','2023-09-15 06:23:37','','Hemo-Boost_logo','','inherit','','closed','','hemo-boost_logo','','','2023-09-15 06:23:37','2023-09-15 06:23:37','',3440,'https://farmchemie.yasithawd.com/wp-content/uploads/2023/09/Hemo-Boost_logo.png',0,'attachment','image/png',0),(3707,1,'2023-09-15 06:25:33','2023-09-15 06:25:33','','HEMO BOOS','<h3><em>Liquid nutritional supplement rich in Iron and Vitamins for Dogs and Cats</em></h3>\n[dt_divider style=\"thick\" /]\n\n&nbsp;\n\n<strong>Composition: </strong>\n\nEach 1 L contains,\nIron (as ferrous glycinate) -2.0 g\nCopper (as copper glycinate) -1.0 g\nCobalt (as cobalt glycinate) -0.4 g\nVitamin B2 -0.1 g\nVitamin B3 -0.5 g\nVitamin B6 -0.05 g\nVitamin B12 -0.002 g\nFolic Acid -0.02 g\nVitamin D3 -250 IU\nLecithin -2.5 mg\nInositol - 2 mg\nBetaine hydrochloride - 2.5 mg\n\n[dt_divider style=\"thin\" /]\n\n<strong>Indication: </strong>\n\nUse in anemic conditions like nutritional deficiency. Parasitic infestations, debility and convalescence\n\n[dt_divider style=\"thin\" /]\n\n<strong>Dosage: </strong>\n\nDogs: 5 mL / 20 kg B.W twice a day\nCats: 0.5 mL / 5 kg B.W twice a day\nFor pups and kittens feed according to the B.W\nCan be given in feed or water or directly into the mouth or as directed by veterinarian.\n\n[dt_divider style=\"thin\" /]\n\n<strong>Pack sizes: </strong>\n\n200 mL\n\n&nbsp;\n\n[dt_divider style=\"thick\" /]\n\n&nbsp;\n\n<a href=\"/wp-content/uploads/2023/08/AVI-VE.pdf\"><i class=\"fa-solid fa-file-pdf fa-2xl\" style=\"color: #039447;\"> pdf</i></a> <a href=\"//wp-content/uploads/2023/08/AVI-3-folding-brochure-SInhala-Final-outline_compressed-4.pdf\"><i class=\"fa-solid fa-file-pdf fa-2xl\" style=\"color: #039447;\"> pdf</i></a>','inherit','closed','closed','','3440-autosave-v1','','','2023-09-15 06:25:33','2023-09-15 06:25:33','',3440,'https://farmchemie.yasithawd.com/?p=3707',0,'revision','',0),(3709,1,'2023-09-15 06:29:07','2023-09-15 06:29:07','','Orondo Spray_300px','','inherit','','closed','','orondo-spray_300px','','','2023-09-15 06:29:07','2023-09-15 06:29:07','',3549,'https://farmchemie.yasithawd.com/wp-content/uploads/2023/09/Orondo-Spray_300px.png',0,'attachment','image/png',0),(3710,1,'2023-09-16 03:11:45','2023-09-16 03:11:45','','Orondo-Spray_600px-x-600px','','inherit','','closed','','orondo-spray_600px-x-600px','','','2023-09-16 03:11:45','2023-09-16 03:11:45','',3549,'https://farmchemie.yasithawd.com/wp-content/uploads/2023/09/Orondo-Spray_600px-x-600px.png',0,'attachment','image/png',0),(3711,1,'2023-09-16 03:17:38','2023-09-16 03:17:38','','Tylovet-B-200_600px-x-600px','','inherit','','closed','','tylovet-b-200_600px-x-600px','','','2023-09-16 03:17:38','2023-09-16 03:17:38','',3439,'https://farmchemie.yasithawd.com/wp-content/uploads/2023/09/Tylovet-B-200_600px-x-600px.png',0,'attachment','image/png',0),(3712,1,'2023-09-16 03:17:56','2023-09-16 03:17:56','','Tylovet B 200_ 300px','','inherit','','closed','','tylovet-b-200_-300px','','','2023-09-16 03:17:56','2023-09-16 03:17:56','',3439,'https://farmchemie.yasithawd.com/wp-content/uploads/2023/09/Tylovet-B-200_-300px.png',0,'attachment','image/png',0),(3713,1,'2023-09-16 03:18:49','2023-09-16 03:18:49','','Noworm Plus','<h3><em>Broad – spectrum dewormer for Dogs and Cats</em></h3><p>[dt_divider style=\"thick\" /]</p><p><br></p><p><strong>Composition: </strong></p><p>Each 1 tablet contains,<br>Febantel – 150 mg<br>Pyrantel pamoate – 144 mg and<br>Praziquantel – 50 mg</p><p>[dt_divider style=\"thin\" /]</p><p><strong>Indication: </strong></p><p>Treatment of mixed infections by adult cestodes and nematodes of the following species:<br>Nematodes:<br>Ascarids: Toxocara canis, Toxascaris leonina (adult and late immature forms).<br>Hookworms: Uncinaria stenocephala, Ancylostoma caninum (adults).<br>Whipworms: Trichuris vulpis (adults).<br>Cestodes:<br>Tapeworms: Echinococcus spp., Taenia spp., Dipylidium caninum (adult and immature forms).</p><p>[dt_divider style=\"thin\" /]</p><p><strong>Contraindication:</strong></p><p>Do not use in animals with a known sensitivity to the active ingredients or to any of the excipients.</p><p>[dt_divider style=\"thin\" /]</p><p><strong>Dosage: </strong></p><p>One tablet per 10 kg Body weight (&gt;40 kg maximum 4 tablets per treatment)</p><p>[dt_divider style=\"thin\" /]</p><p><strong>Pack sizes: </strong></p><p>Two (2) tablets Twenty (20) tablets and Hundred (100) tablets.</p><p><br></p><p>[dt_divider style=\"thick\" /]</p><p><br></p><p><a href=\"/wp-content/uploads/2023/08/AVI-VE.pdf\" data-mce-href=\"/wp-content/uploads/2023/08/AVI-VE.pdf\"><i class=\"fa-solid fa-file-pdf fa-2xl\" style=\"color: #039447;\" data-mce-style=\"color: #039447;\"> pdf</i></a> <a href=\"//wp-content/uploads/2023/08/AVI-3-folding-brochure-SInhala-Final-outline_compressed-4.pdf\" data-mce-href=\"//wp-content/uploads/2023/08/AVI-3-folding-brochure-SInhala-Final-outline_compressed-4.pdf\"><i class=\"fa-solid fa-file-pdf fa-2xl\" style=\"color: #039447;\" data-mce-style=\"color: #039447;\"> pdf</i></a></p>','inherit','closed','closed','','3366-autosave-v1','','','2023-09-16 03:18:49','2023-09-16 03:18:49','',3366,'https://farmchemie.yasithawd.com/?p=3713',0,'revision','',0),(3714,1,'2023-09-16 03:23:36','2023-09-16 03:23:36','','Canny-VIT_90_600px','','inherit','','closed','','canny-vit_90_600px','','','2023-09-16 03:23:36','2023-09-16 03:23:36','',3548,'https://farmchemie.yasithawd.com/wp-content/uploads/2023/09/Canny-VIT_90_600px.png',0,'attachment','image/png',0),(3715,1,'2023-09-16 03:23:58','2023-09-16 03:23:58','','Canny-VIT_LOGO','','inherit','','closed','','canny-vit_logo','','','2023-09-16 03:23:58','2023-09-16 03:23:58','',3548,'https://farmchemie.yasithawd.com/wp-content/uploads/2023/09/Canny-VIT_LOGO.png',0,'attachment','image/png',0),(3716,1,'2023-09-16 03:31:59','2023-09-16 03:31:59','','Canny-Flexi-Joint_600px','','inherit','','closed','','canny-flexi-joint_600px','','','2023-09-16 03:31:59','2023-09-16 03:31:59','',3547,'https://farmchemie.yasithawd.com/wp-content/uploads/2023/09/Canny-Flexi-Joint_600px.png',0,'attachment','image/png',0),(3717,1,'2023-09-16 03:32:17','2023-09-16 03:32:17','','Canny-Flexi-Joint2_logo','','inherit','','closed','','canny-flexi-joint2_logo','','','2023-09-16 03:32:17','2023-09-16 03:32:17','',3547,'https://farmchemie.yasithawd.com/wp-content/uploads/2023/09/Canny-Flexi-Joint2_logo.png',0,'attachment','image/png',0),(3718,1,'2023-09-16 03:36:09','2023-09-16 03:36:09','','Pandex_600px-x-600px','','inherit','','closed','','pandex_600px-x-600px','','','2023-09-16 03:36:09','2023-09-16 03:36:09','',3438,'https://farmchemie.yasithawd.com/wp-content/uploads/2023/09/Pandex_600px-x-600px.png',0,'attachment','image/png',0),(3719,1,'2023-09-16 03:36:24','2023-09-16 03:36:24','','Pandex_L_300px','','inherit','','closed','','pandex_l_300px','','','2023-09-16 03:36:24','2023-09-16 03:36:24','',3438,'https://farmchemie.yasithawd.com/wp-content/uploads/2023/09/Pandex_L_300px.png',0,'attachment','image/png',0),(3720,1,'2023-09-16 03:37:20','2023-09-16 03:37:20','','Oxytetraciclina-200-LA_600','','inherit','','closed','','oxytetraciclina-200-la_600','','','2023-09-16 03:37:20','2023-09-16 03:37:20','',3437,'https://farmchemie.yasithawd.com/wp-content/uploads/2023/09/Oxytetraciclina-200-LA_600.png',0,'attachment','image/png',0),(3721,1,'2023-09-16 03:37:49','2023-09-16 03:37:49','','Oxytetraciclina_300','','inherit','','closed','','oxytetraciclina_300','','','2023-09-16 03:37:49','2023-09-16 03:37:49','',3437,'https://farmchemie.yasithawd.com/wp-content/uploads/2023/09/Oxytetraciclina_300.png',0,'attachment','image/png',0),(3722,1,'2023-09-16 03:38:30','2023-09-16 03:38:30','','OXITETRACICLINA 200 L.A','<h3><em>Long-acting Solution for Injection </em></h3>\n[dt_divider style=\"thick\" /]\n\n&nbsp;\n\n<strong>Composition: </strong>\n\nEach 1 mL contains,\nOxytetracycline – 200 mg\n\n[dt_divider style=\"thin\" /]\n\n<strong>Indication: </strong>\n\nCattle: Shipping fever, enteritis and gastroenteritis, infectious pneumonia, metritis and mastitis.\n\nPigs: Bronchopulmonary infections, infectious enteritis and gastroenteritis, metritis, pasteurellosis, arthritis and MMA syndrome.\n\nSheep and goats: Respiratory infections, enteritis, infectious abortion, pyelonephritis and brucellosis\n\n[dt_divider style=\"thin\" /]\n\n<strong>Contraindication:</strong>\n\nDo not administer in animals with renal failure or during the first months of life.\n\n[dt_divider style=\"thin\" /]\n\n<strong>Withdrawal time:</strong>\n\nFor meat – 22 days\nFor milk – 3 days (6 milkings)\n\n[dt_divider style=\"thin\" /]\n\n<strong>Dosage: </strong>\n\nIntramuscular use. Inject 1 ml per 10 kg of body weight in a single dose. In severe cases, the injection may be repeated in 72 hours. If doses are higher than 20 ml in cattle, 10 ml in pigs and 5 ml in sheep and goats, it is recommended to divide the dose into two injection sites.\n\n[dt_divider style=\"thin\" /]\n\n<strong>Pack sizes: </strong>\n\n50 mL, 100 mL and 250 mL\n\n&nbsp;\n\n[dt_divider style=\"thick\" /]\n\n&nbsp;\n\n<a href=\"/wp-content/uploads/2023/08/AVI-VE.pdf\"><i class=\"fa-solid fa-file-pdf fa-2xl\" style=\"color: #039447;\"> pdf</i></a> <a href=\"//wp-content/uploads/2023/08/AVI-3-folding-brochure-SInhala-Final-outline_compressed-4.pdf\"><i class=\"fa-solid fa-file-pdf fa-2xl\" style=\"color: #039447;\"> pdf</i></a>','inherit','closed','closed','','3437-autosave-v1','','','2023-09-16 03:38:30','2023-09-16 03:38:30','',3437,'https://farmchemie.yasithawd.com/?p=3722',0,'revision','',0),(3723,1,'2023-09-16 03:38:46','2023-09-16 03:38:46','','MAXUVOL_600px','','inherit','','closed','','maxuvol_600px','','','2023-09-16 03:38:46','2023-09-16 03:38:46','',3436,'https://farmchemie.yasithawd.com/wp-content/uploads/2023/09/MAXUVOL_600px.png',0,'attachment','image/png',0),(3724,1,'2023-09-16 03:38:59','2023-09-16 03:38:59','','MAXUVOL_L_300px','','inherit','','closed','','maxuvol_l_300px','','','2023-09-16 03:38:59','2023-09-16 03:38:59','',3436,'https://farmchemie.yasithawd.com/wp-content/uploads/2023/09/MAXUVOL_L_300px.png',0,'attachment','image/png',0),(3725,1,'2023-09-16 03:39:37','2023-09-16 03:39:37','','KETINK-100ml_600px-x-600px','','inherit','','closed','','ketink-100ml_600px-x-600px','','','2023-09-16 03:39:37','2023-09-16 03:39:37','',3435,'https://farmchemie.yasithawd.com/wp-content/uploads/2023/09/KETINK-100ml_600px-x-600px.png',0,'attachment','image/png',0),(3726,1,'2023-09-16 03:39:59','2023-09-16 03:39:59','','KETINK-100ml_300px','','inherit','','closed','','ketink-100ml_300px','','','2023-09-16 03:39:59','2023-09-16 03:39:59','',3435,'https://farmchemie.yasithawd.com/wp-content/uploads/2023/09/KETINK-100ml_300px.png',0,'attachment','image/png',0),(3727,1,'2023-09-16 03:40:50','2023-09-16 03:40:50','','Invemox-15%-LA_600px-x-600px','','inherit','','closed','','invemox-15-la_600px-x-600px','','','2023-09-16 03:40:50','2023-09-16 03:40:50','',3434,'https://farmchemie.yasithawd.com/wp-content/uploads/2023/09/Invemox-15-LA_600px-x-600px.png',0,'attachment','image/png',0),(3728,1,'2023-09-16 03:41:03','2023-09-16 03:41:03','','Invemox-15%-LA_300px','','inherit','','closed','','invemox-15-la_300px','','','2023-09-16 03:41:03','2023-09-16 03:41:03','',3434,'https://farmchemie.yasithawd.com/wp-content/uploads/2023/09/Invemox-15-LA_300px.png',0,'attachment','image/png',0),(3729,1,'2023-09-16 03:41:50','2023-09-16 03:41:50','','Imidocarb---LH_600px-x-600px','','inherit','','closed','','imidocarb-lh_600px-x-600px','','','2023-09-16 03:41:50','2023-09-16 03:41:50','',3433,'https://farmchemie.yasithawd.com/wp-content/uploads/2023/09/Imidocarb-LH_600px-x-600px.png',0,'attachment','image/png',0),(3730,1,'2023-09-16 03:42:36','2023-09-16 03:42:36','','Imidocarb---LH_300px','','inherit','','closed','','imidocarb-lh_300px','','','2023-09-16 03:42:36','2023-09-16 03:42:36','',3433,'https://farmchemie.yasithawd.com/wp-content/uploads/2023/09/Imidocarb-LH_300px.png',0,'attachment','image/png',0),(3731,1,'2023-09-16 03:46:06','2023-09-16 03:46:06','','CANNY CAL','<h3>FOR HEALTHY BONES &amp; TEETH</h3>\r\n[dt_divider style=\"thick\" /]\r\n\r\n&nbsp;\r\n\r\n<strong>Composition: </strong>\r\n\r\nEach 5 mL contains,\r\nCalcium – 33 mg\r\nPhosphorus – 20 mg\r\nVitamin D3 – 100 IU\r\n\r\n[dt_divider style=\"thin\" /]\r\n\r\n<strong>Indication: </strong>\r\n\r\nFeed supplement for strong and healthy bones, fortified with phosphorus and Vitamin D3 to aid calcium metabolism, Stimulated remineralization of bones in pregnant and lactating pets providing better nutrition to offspring and Support fracture healing.\r\n\r\n[dt_divider style=\"thin\" /]\r\n\r\n<strong>Dosage: </strong>\r\n\r\nPuppies: 5 mL twice a day.\r\nAdult Dogs: 10 mL twice a day.\r\nCats: 2.5 mL twice a day.\r\n\r\n[dt_divider style=\"thin\" /]\r\n\r\n<strong>Pack sizes: </strong>\r\n\r\n200 mL\r\n\r\n&nbsp;\r\n\r\n[dt_divider style=\"thick\" /]\r\n\r\n&nbsp;','publish','closed','closed','','canny-cal','','','2023-09-16 08:45:02','2023-09-16 08:45:02','',0,'https://farmchemie.yasithawd.com/?post_type=product&#038;p=3731',0,'product','',0),(3732,1,'2023-09-16 03:53:19','2023-09-16 03:53:19','','Canny-Coat_600px','','inherit','','closed','','canny-coat_600px','','','2023-09-16 03:53:19','2023-09-16 03:53:19','',3731,'https://farmchemie.yasithawd.com/wp-content/uploads/2023/09/Canny-Coat_600px.png',0,'attachment','image/png',0),(3733,1,'2023-09-16 03:53:31','2023-09-16 03:53:31','','Canny-CAL-Syrup_logo','','inherit','','closed','','canny-cal-syrup_logo','','','2023-09-16 03:53:31','2023-09-16 03:53:31','',3731,'https://farmchemie.yasithawd.com/wp-content/uploads/2023/09/Canny-CAL-Syrup_logo.png',0,'attachment','image/png',0),(3734,1,'2023-09-16 08:05:59','2023-09-16 08:05:59','','Cardisure_5mg_600px-x-600px','','inherit','','closed','','cardisure_5mg_600px-x-600px-2','','','2023-09-16 08:05:59','2023-09-16 08:05:59','',3432,'https://farmchemie.yasithawd.com/wp-content/uploads/2023/09/Cardisure_5mg_600px-x-600px-1.png',0,'attachment','image/png',0),(3735,1,'2023-09-16 08:06:46','2023-09-16 08:06:46','','Cardisure_5mg_600px-x-600px','','inherit','','closed','','cardisure_5mg_600px-x-600px-3','','','2023-09-16 08:06:46','2023-09-16 08:06:46','',3551,'https://farmchemie.yasithawd.com/wp-content/uploads/2023/09/Cardisure_5mg_600px-x-600px-2.png',0,'attachment','image/png',0),(3736,1,'2023-09-16 08:07:38','2023-09-16 08:07:38','','Cardisure_ 300px','','inherit','','closed','','cardisure_-300px-2','','','2023-09-16 08:07:38','2023-09-16 08:07:38','',3551,'https://farmchemie.yasithawd.com/wp-content/uploads/2023/09/Cardisure_-300px-1.png',0,'attachment','image/png',0),(3737,1,'2023-09-16 08:08:43','2023-09-16 08:08:43','','REGEN_logo','','inherit','','closed','','regen_logo-2','','','2023-09-16 08:08:43','2023-09-16 08:08:43','',3550,'https://farmchemie.yasithawd.com/wp-content/uploads/2023/09/REGEN_logo-1.png',0,'attachment','image/png',0),(3738,1,'2023-09-16 08:09:04','2023-09-16 08:09:04','','REGEN_600px','','inherit','','closed','','regen_600px-2','','','2023-09-16 08:09:04','2023-09-16 08:09:04','',3550,'https://farmchemie.yasithawd.com/wp-content/uploads/2023/09/REGEN_600px-1.png',0,'attachment','image/png',0),(3739,1,'2023-09-16 08:09:32','2023-09-16 08:09:32','','Ganadexil-Enrofloxacina_-300px','','inherit','','closed','','ganadexil-enrofloxacina_-300px','','','2023-09-16 08:09:32','2023-09-16 08:09:32','',3432,'https://farmchemie.yasithawd.com/wp-content/uploads/2023/09/Ganadexil-Enrofloxacina_-300px.png',0,'attachment','image/png',0),(3740,1,'2023-09-16 08:10:57','2023-09-16 08:10:57','','Super-PUP_logo','','inherit','','closed','','super-pup_logo-2','','','2023-09-16 08:10:57','2023-09-16 08:10:57','',3441,'https://farmchemie.yasithawd.com/wp-content/uploads/2023/09/Super-PUP_logo-1.png',0,'attachment','image/png',0),(3741,1,'2023-09-16 08:11:14','2023-09-16 08:11:14','','Super-PUP_600px-x-600px','','inherit','','closed','','super-pup_600px-x-600px','','','2023-09-16 08:11:14','2023-09-16 08:11:14','',3441,'https://farmchemie.yasithawd.com/wp-content/uploads/2023/09/Super-PUP_600px-x-600px.png',0,'attachment','image/png',0),(3742,1,'2023-09-16 08:13:38','2023-09-16 08:13:38','','Noworm-Plus_2_600px-x-600px','','inherit','','closed','','noworm-plus_2_600px-x-600px','','','2023-09-16 08:13:38','2023-09-16 08:13:38','',3366,'https://farmchemie.yasithawd.com/wp-content/uploads/2023/08/Noworm-Plus_2_600px-x-600px.png',0,'attachment','image/png',0),(3743,1,'2023-09-16 08:13:49','2023-09-16 08:13:49','','Noworm-Plus_20_600px-x-600px','','inherit','','closed','','noworm-plus_20_600px-x-600px','','','2023-09-16 08:13:49','2023-09-16 08:13:49','',3366,'https://farmchemie.yasithawd.com/wp-content/uploads/2023/08/Noworm-Plus_20_600px-x-600px.png',0,'attachment','image/png',0),(3744,1,'2023-09-16 08:20:09','2023-09-16 08:20:09','','Canny-Flexi-Joint_600px','','inherit','','closed','','canny-flexi-joint_600px-2','','','2023-09-16 08:20:09','2023-09-16 08:20:09','',3547,'https://farmchemie.yasithawd.com/wp-content/uploads/2023/09/Canny-Flexi-Joint_600px-1.png',0,'attachment','image/png',0),(3745,1,'2023-09-16 08:20:27','2023-09-16 08:20:27','','Canny-Flexi-Joint2_logo','','inherit','','closed','','canny-flexi-joint2_logo-2','','','2023-09-16 08:20:27','2023-09-16 08:20:27','',3547,'https://farmchemie.yasithawd.com/wp-content/uploads/2023/09/Canny-Flexi-Joint2_logo-1.png',0,'attachment','image/png',0),(3746,1,'2023-09-16 08:21:40','2023-09-16 08:21:40','','Ganadexil-Enrofloxacina_600px-x-600px','','inherit','','closed','','ganadexil-enrofloxacina_600px-x-600px','','','2023-09-16 08:21:40','2023-09-16 08:21:40','',3432,'https://farmchemie.yasithawd.com/wp-content/uploads/2023/09/Ganadexil-Enrofloxacina_600px-x-600px.png',0,'attachment','image/png',0),(3747,1,'2023-09-16 08:31:40','2023-09-16 08:31:40','','Canny-CAL-Syrup_BOX_600px','','inherit','','closed','','canny-cal-syrup_box_600px','','','2023-09-16 08:31:40','2023-09-16 08:31:40','',3731,'https://farmchemie.yasithawd.com/wp-content/uploads/2023/09/Canny-CAL-Syrup_BOX_600px.png',0,'attachment','image/png',0),(3748,1,'2023-09-16 08:32:58','2023-09-16 08:32:58','','Canny-Coat_600px','','inherit','','closed','','canny-coat_600px-2','','','2023-09-16 08:32:58','2023-09-16 08:32:58','',3731,'https://farmchemie.yasithawd.com/wp-content/uploads/2023/09/Canny-Coat_600px-1.png',0,'attachment','image/png',0),(3749,1,'2023-09-16 08:36:00','2023-09-16 08:36:00','','Hemo-Boost_600px','','inherit','','closed','','hemo-boost_600px','','','2023-09-16 08:36:00','2023-09-16 08:36:00','',3440,'https://farmchemie.yasithawd.com/wp-content/uploads/2023/09/Hemo-Boost_600px.png',0,'attachment','image/png',0),(3750,1,'2023-09-16 08:36:54','2023-09-16 08:36:54','','Super PUP_B_600px x 600px','','inherit','','closed','','super-pup_b_600px-x-600px','','','2023-09-16 08:36:54','2023-09-16 08:36:54','',3441,'https://farmchemie.yasithawd.com/wp-content/uploads/2023/09/Super-PUP_B_600px-x-600px.png',0,'attachment','image/png',0),(3751,1,'2023-09-16 08:44:12','2023-09-16 08:44:12','','Canny CAL SYRUP_600px x 600px','','inherit','','closed','','canny-cal-syrup_600px-x-600px','','','2023-09-16 08:44:12','2023-09-16 08:44:12','',3731,'https://farmchemie.yasithawd.com/wp-content/uploads/2023/09/Canny-CAL-SYRUP_600px-x-600px.png',0,'attachment','image/png',0),(3752,1,'2023-09-16 08:44:24','2023-09-16 08:44:24','','Canny CAL SYRUP_B_600px x 600px','','inherit','','closed','','canny-cal-syrup_b_600px-x-600px','','','2023-09-16 08:44:24','2023-09-16 08:44:24','',3731,'https://farmchemie.yasithawd.com/wp-content/uploads/2023/09/Canny-CAL-SYRUP_B_600px-x-600px.png',0,'attachment','image/png',0),(3753,1,'2023-09-16 08:44:35','2023-09-16 08:44:35','','Canny-CAL-Syrup_logo','','inherit','','closed','','canny-cal-syrup_logo-2','','','2023-09-16 08:44:35','2023-09-16 08:44:35','',3731,'https://farmchemie.yasithawd.com/wp-content/uploads/2023/09/Canny-CAL-Syrup_logo-1.png',0,'attachment','image/png',0),(3754,1,'2023-09-16 08:50:23','2023-09-16 08:50:23','','Prazimec-D_600px-x-600px','','inherit','','closed','','prazimec-d_600px-x-600px','','','2023-09-16 08:50:23','2023-09-16 08:50:23','',3373,'https://farmchemie.yasithawd.com/wp-content/uploads/2023/08/Prazimec-D_600px-x-600px.png',0,'attachment','image/png',0),(3755,1,'2023-09-16 08:50:38','2023-09-16 08:50:38','','Prazimec-D_logo','','inherit','','closed','','prazimec-d_logo-2','','','2023-09-16 08:50:38','2023-09-16 08:50:38','',3373,'https://farmchemie.yasithawd.com/wp-content/uploads/2023/08/Prazimec-D_logo-1.png',0,'attachment','image/png',0),(3756,1,'2023-09-16 08:51:28','2023-09-16 08:51:28','','AbamecD-Logo','','inherit','','closed','','abamecd-logo-3','','','2023-09-16 08:51:28','2023-09-16 08:51:28','',3370,'https://farmchemie.yasithawd.com/wp-content/uploads/2023/08/AbamecD-Logo-1.png',0,'attachment','image/png',0),(3757,1,'2023-09-16 08:51:57','2023-09-16 08:51:57','','AbamecD_600px x 600px','','inherit','','closed','','abamecd_600px-x-600px-3','','','2023-09-16 08:51:57','2023-09-16 08:51:57','',3370,'https://farmchemie.yasithawd.com/wp-content/uploads/2023/08/AbamecD_600px-x-600px-1.png',0,'attachment','image/png',0),(3758,1,'2023-09-16 08:54:45','2023-09-16 08:54:45','','Felimazole_600px-x-600px','','inherit','','closed','','felimazole_600px-x-600px-2','','','2023-09-16 08:54:45','2023-09-16 08:54:45','',3365,'https://farmchemie.yasithawd.com/wp-content/uploads/2023/08/Felimazole_600px-x-600px-1.png',0,'attachment','image/png',0),(3759,1,'2023-09-16 08:55:00','2023-09-16 08:55:00','','Felimazole_300px','','inherit','','closed','','felimazole_300px-2','','','2023-09-16 08:55:00','2023-09-16 08:55:00','',3365,'https://farmchemie.yasithawd.com/wp-content/uploads/2023/08/Felimazole_300px-1.png',0,'attachment','image/png',0),(3760,1,'2023-09-16 09:09:33','2023-09-16 09:09:33','','Orondo-Spray_600px-x-600px','','inherit','','closed','','orondo-spray_600px-x-600px-2','','','2023-09-16 09:09:33','2023-09-16 09:09:33','',3549,'https://farmchemie.yasithawd.com/wp-content/uploads/2023/09/Orondo-Spray_600px-x-600px-1.png',0,'attachment','image/png',0),(3761,1,'2023-09-16 09:09:47','2023-09-16 09:09:47','','Orondo Spray_300px','','inherit','','closed','','orondo-spray_300px-2','','','2023-09-16 09:09:47','2023-09-16 09:09:47','',3549,'https://farmchemie.yasithawd.com/wp-content/uploads/2023/09/Orondo-Spray_300px-1.png',0,'attachment','image/png',0),(3762,1,'2023-09-16 09:35:55','2023-09-16 09:35:55','','PET-CARE2','','inherit','','closed','','pet-care2','','','2023-09-16 09:35:55','2023-09-16 09:35:55','',3039,'https://farmchemie.yasithawd.com/wp-content/uploads/2023/09/PET-CARE2.gif',0,'attachment','image/gif',0),(3763,1,'2023-09-16 10:09:52','2023-09-16 10:09:52','','AVI-Pollodoxin 600px x 600px','','inherit','','closed','','avi-pollodoxin-600px-x-600px-2','','','2023-09-16 10:09:52','2023-09-16 10:09:52','',3355,'https://farmchemie.yasithawd.com/wp-content/uploads/2023/08/AVI-Pollodoxin-600px-x-600px.png',0,'attachment','image/png',0),(3764,1,'2023-09-16 11:21:14','2023-09-16 11:21:14','','ABOUT US(1)','','inherit','','closed','','about-us1','','','2023-09-16 11:21:14','2023-09-16 11:21:14','',3027,'https://farmchemie.yasithawd.com/wp-content/uploads/2023/09/ABOUT-US1.gif',0,'attachment','image/gif',0),(3765,1,'2023-09-16 15:28:08','2023-09-16 15:28:08','','VECTROMUNE FP – MG_600px x 600px','','inherit','','closed','','vectromune-fp-mg_600px-x-600px','','','2023-09-16 15:28:08','2023-09-16 15:28:08','',3673,'https://farmchemie.yasithawd.com/wp-content/uploads/2023/09/VECTROMUNE-FP-–-MG_600px-x-600px.png',0,'attachment','image/png',0),(3766,1,'2023-09-16 15:28:24','2023-09-16 15:28:24','','VECTROMUNE-FP-–-MG_300px','','inherit','','closed','','vectromune-fp-mg_300px','','','2023-09-16 15:28:24','2023-09-16 15:28:24','',3673,'https://farmchemie.yasithawd.com/wp-content/uploads/2023/09/VECTROMUNE-FP-–-MG_300px.png',0,'attachment','image/png',0),(3767,1,'2023-09-16 15:29:38','2023-09-16 15:29:38','','REOMUNE-3','','inherit','','closed','','reomune-3-2','','','2023-09-16 15:29:38','2023-09-16 15:29:38','',3672,'https://farmchemie.yasithawd.com/wp-content/uploads/2023/09/REOMUNE-3.png',0,'attachment','image/png',0),(3768,1,'2023-09-16 15:30:03','2023-09-16 15:30:03','','REOMUNE-3_300px','','inherit','','closed','','reomune-3_300px','','','2023-09-16 15:30:03','2023-09-16 15:30:03','',3672,'https://farmchemie.yasithawd.com/wp-content/uploads/2023/09/REOMUNE-3_300px.png',0,'attachment','image/png',0),(3769,1,'2023-09-16 15:31:16','2023-09-16 15:31:16','','Poximune_600px-x-600px','','inherit','','closed','','poximune_600px-x-600px','','','2023-09-16 15:31:16','2023-09-16 15:31:16','',3671,'https://farmchemie.yasithawd.com/wp-content/uploads/2023/09/Poximune_600px-x-600px.png',0,'attachment','image/png',0),(3770,1,'2023-09-16 15:31:36','2023-09-16 15:31:36','','Poximune_300px','','inherit','','closed','','poximune_300px','','','2023-09-16 15:31:36','2023-09-16 15:31:36','',3671,'https://farmchemie.yasithawd.com/wp-content/uploads/2023/09/Poximune_300px.png',0,'attachment','image/png',0),(3771,1,'2023-09-16 18:01:58','2023-09-16 18:01:58','','Circomune_600px-x-600px','','inherit','','closed','','circomune_600px-x-600px','','','2023-09-16 18:01:58','2023-09-16 18:01:58','',3666,'https://farmchemie.yasithawd.com/wp-content/uploads/2023/09/Circomune_600px-x-600px.png',0,'attachment','image/png',0),(3772,1,'2023-09-16 18:02:25','2023-09-16 18:02:25','','Circomune_300px','','inherit','','closed','','circomune_300px','','','2023-09-16 18:02:25','2023-09-16 18:02:25','',3666,'https://farmchemie.yasithawd.com/wp-content/uploads/2023/09/Circomune_300px.png',0,'attachment','image/png',0),(3773,1,'2023-09-16 18:20:23','2023-09-16 18:20:23','','CEVAC-FP-L_300px','','inherit','','closed','','cevac-fp-l_300px','','','2023-09-16 18:20:23','2023-09-16 18:20:23','',3664,'https://farmchemie.yasithawd.com/wp-content/uploads/2023/09/CEVAC-FP-L_300px.png',0,'attachment','image/png',0),(3774,1,'2023-09-16 18:21:23','2023-09-16 18:21:23','','CEVAC-VITABORN-L_300px','','inherit','','closed','','cevac-vitaborn-l_300px','','','2023-09-16 18:21:23','2023-09-16 18:21:23','',3662,'https://farmchemie.yasithawd.com/wp-content/uploads/2023/09/CEVAC-VITABORN-L_300px.png',0,'attachment','image/png',0),(3775,1,'2023-09-18 09:02:15','2023-09-18 09:02:15','[vc_row disable_element=\"yes\"][vc_column][ult_tab_element tab_style=\"Style_4\" tab_animation=\"Fade\" tab_title_color=\"#ffffff\" tab_background_color=\"#039447\" tab_hover_title_color=\"#ffffff\" tab_hover_background_color=\"#853497\" acttab_title=\"#ffffff\" acttab_background=\"#853497\" disp_icon=\"Disables\"][single_tab title=\"All\" tab_id=\"1692579230326-8\"][dt_products_masonry show_products=\"categories_products\" mode=\"grid\" layout=\"btn_on_img_hover\" bwb_columns=\"desktop:3|h_tablet:3|v_tablet:2|phone:1\" dis_posts_total=\"\" category_ids=\"64\"][/single_tab][single_tab title=\"Cat\" tab_id=\"1692579230334-3\"][dt_products_masonry show_products=\"categories_products\" mode=\"grid\" layout=\"btn_on_img_hover\" bwb_columns=\"desktop:3|h_tablet:3|v_tablet:2|phone:1\" dis_posts_total=\"\" category_ids=\"114\"][/single_tab][single_tab title=\"Dog\" tab_id=\"1692579268639-2-10\"][dt_products_masonry show_products=\"categories_products\" mode=\"grid\" layout=\"btn_on_img_hover\" bwb_columns=\"desktop:3|h_tablet:3|v_tablet:2|phone:1\" dis_posts_total=\"\" category_ids=\"102\"][/single_tab][single_tab title=\"Exotic Birds\" tab_id=\"1692579279159-3-2\"][dt_products_masonry show_products=\"categories_products\" mode=\"grid\" layout=\"btn_on_img_hover\" bwb_columns=\"desktop:3|h_tablet:3|v_tablet:2|phone:1\" dis_posts_total=\"\" category_ids=\"121\"][/single_tab][/ult_tab_element][/vc_column][/vc_row][vc_row][vc_column][dt_products_masonry show_products=\"categories_products\" mode=\"grid\" bwb_columns=\"desktop:3|h_tablet:3|v_tablet:2|phone:1\" loading_mode=\"standard\" st_posts_per_page=\"9\" st_show_all_pages=\"y\" category_ids=\"64\"][/vc_column][/vc_row]','Pet Care','','inherit','closed','closed','','3039-revision-v1','','','2023-09-18 09:02:15','2023-09-18 09:02:15','',3039,'https://farmchemie.yasithawd.com/?p=3775',0,'revision','',0),(3776,1,'2023-09-18 09:24:04','2023-09-18 09:24:04','','CEVAC-TRANSMUNE_300px','','inherit','','closed','','cevac-transmune_300px','','','2023-09-18 09:24:04','2023-09-18 09:24:04','',3661,'https://farmchemie.yasithawd.com/wp-content/uploads/2023/09/CEVAC-TRANSMUNE_300px.png',0,'attachment','image/png',0),(3777,1,'2023-09-18 09:28:16','2023-09-18 09:28:16','','CEVAC-NEW-L_300px','','inherit','','closed','','cevac-new-l_300px','','','2023-09-18 09:28:16','2023-09-18 09:28:16','',3659,'https://farmchemie.yasithawd.com/wp-content/uploads/2023/09/CEVAC-NEW-L_300px.png',0,'attachment','image/png',0),(3809,1,'2023-09-19 13:20:33','2023-09-19 13:20:33','','Mansol-50_300px','','inherit','','closed','','mansol-50_300px','','','2023-09-19 13:20:33','2023-09-19 13:20:33','',3639,'https://farmchemie.yasithawd.com/wp-content/uploads/2023/09/Mansol-50_300px.png',0,'attachment','image/png',0),(3779,1,'2023-09-18 09:38:58','2023-09-18 09:38:58','','SELVIT-E_300px','','inherit','','closed','','selvit-e_300px','','','2023-09-18 09:38:58','2023-09-18 09:38:58','',3648,'https://farmchemie.yasithawd.com/wp-content/uploads/2023/09/SELVIT-E_300px.png',0,'attachment','image/png',0),(3780,1,'2023-09-18 09:40:00','2023-09-18 09:40:00','','CHICKTONIC_600px-x-600px','','inherit','','closed','','chicktonic_600px-x-600px','','','2023-09-18 09:40:00','2023-09-18 09:40:00','',3646,'https://farmchemie.yasithawd.com/wp-content/uploads/2023/09/CHICKTONIC_600px-x-600px.png',0,'attachment','image/png',0),(3784,1,'2023-09-18 13:04:11','2023-09-18 13:04:11','','Neotra_600px-x-600px','','inherit','','closed','','neotra_600px-x-600px','','','2023-09-18 13:04:11','2023-09-18 13:04:11','',3634,'https://farmchemie.yasithawd.com/wp-content/uploads/2023/09/Neotra_600px-x-600px.png',0,'attachment','image/png',0),(3786,1,'2023-09-19 11:28:26','2023-09-19 11:28:26','','Avishield-ND-B1','','inherit','','closed','','avishield-nd-b1','','','2023-09-19 11:28:26','2023-09-19 11:28:26','',3651,'https://farmchemie.yasithawd.com/wp-content/uploads/2023/09/Avishield-ND-B1.png',0,'attachment','image/png',0),(3787,1,'2023-09-19 11:42:57','2023-09-19 11:42:57','','CEVAC-BRON-120-L_300px','','inherit','','closed','','cevac-bron-120-l_300px','','','2023-09-19 11:42:57','2023-09-19 11:42:57','',3653,'https://farmchemie.yasithawd.com/wp-content/uploads/2023/09/CEVAC-BRON-120-L_300px.png',0,'attachment','image/png',0),(3788,1,'2023-09-19 11:47:20','2023-09-19 11:47:20','','CEVAC GUMBO L','<h3>Live freeze-dried vaccine against infectious Bursal disease</h3><p>[dt_divider style=\"thick\" /]</p><p><br></p><p><strong>Composition: </strong></p><p>Live, a freeze-dried vaccine for Infectious Bursal Disease contains strain-LIBDV-min. 103 TCID 50/dose</p><p>[dt_divider style=\"thin\" /]</p><p><strong>Indication: </strong></p><p>Live freeze-dried vaccine, LIBVD strain for the active immunization of chickens against Infectious Bursal Disease.</p><p>[dt_divider style=\"thin\" /]</p><p><strong>Dosage:</strong></p><p>As per the recommendation of the veterinarian.</p><p>[dt_divider style=\"thin\" /]</p><p><strong>Pack sizes: </strong></p><p>500 doses, 1000 doses, 2500 doses and 5000 doses</p><p><br></p><p>[dt_divider style=\"thick\" /]</p><p><br></p>','inherit','closed','closed','','3654-autosave-v1','','','2023-09-19 11:47:20','2023-09-19 11:47:20','',3654,'https://farmchemie.yasithawd.com/?p=3788',0,'revision','',0),(3789,1,'2023-09-19 11:46:51','2023-09-19 11:46:51','','CEVAC-IBird_300px','','inherit','','closed','','cevac-ibird_300px','','','2023-09-19 11:46:51','2023-09-19 11:46:51','',3655,'https://farmchemie.yasithawd.com/wp-content/uploads/2023/09/CEVAC-IBird_300px.png',0,'attachment','image/png',0),(3790,1,'2023-09-19 11:47:59','2023-09-19 11:47:59','','CEVAC-GUMBO-L_300px','','inherit','','closed','','cevac-gumbo-l_300px','','','2023-09-19 11:47:59','2023-09-19 11:47:59','',3654,'https://farmchemie.yasithawd.com/wp-content/uploads/2023/09/CEVAC-GUMBO-L_300px.png',0,'attachment','image/png',0),(3791,1,'2023-09-19 11:59:47','2023-09-19 11:59:47','','CEVAC-ND-IB-K','','inherit','','closed','','cevac-nd-ib-k-2','','','2023-09-19 11:59:47','2023-09-19 11:59:47','',3656,'https://farmchemie.yasithawd.com/wp-content/uploads/2023/09/CEVAC-ND-IB-K.png',0,'attachment','image/png',0),(3792,1,'2023-09-19 11:59:57','2023-09-19 11:59:57','','CEVAC-ND-IB-K_300px','','inherit','','closed','','cevac-nd-ib-k_300px','','','2023-09-19 11:59:57','2023-09-19 11:59:57','',3656,'https://farmchemie.yasithawd.com/wp-content/uploads/2023/09/CEVAC-ND-IB-K_300px.png',0,'attachment','image/png',0),(3793,1,'2023-09-19 12:04:53','2023-09-19 12:04:53','','CEVAC-NEW-K_600px-x-600px','','inherit','','closed','','cevac-new-k_600px-x-600px','','','2023-09-19 12:04:53','2023-09-19 12:04:53','',3658,'https://farmchemie.yasithawd.com/wp-content/uploads/2023/09/CEVAC-NEW-K_600px-x-600px.png',0,'attachment','image/png',0),(3794,1,'2023-09-19 12:05:43','2023-09-19 12:05:43','','CEVAC-NEW-K_300px','','inherit','','closed','','cevac-new-k_300px','','','2023-09-19 12:05:43','2023-09-19 12:05:43','',3658,'https://farmchemie.yasithawd.com/wp-content/uploads/2023/09/CEVAC-NEW-K_300px.png',0,'attachment','image/png',0),(3795,1,'2023-09-19 12:07:26','2023-09-19 12:07:26','','SELVIT-E_300px','','inherit','','closed','','selvit-e_300px-2','','','2023-09-19 12:07:26','2023-09-19 12:07:26','',3648,'https://farmchemie.yasithawd.com/wp-content/uploads/2023/09/SELVIT-E_300px-1.png',0,'attachment','image/png',0),(3796,1,'2023-09-19 12:07:39','2023-09-19 12:07:39','','SELVIT-E_600px-x-600px','','inherit','','closed','','selvit-e_600px-x-600px-2','','','2023-09-19 12:07:39','2023-09-19 12:07:39','',3648,'https://farmchemie.yasithawd.com/wp-content/uploads/2023/09/SELVIT-E_600px-x-600px-1.png',0,'attachment','image/png',0),(3797,1,'2023-09-19 12:12:17','2023-09-19 12:12:17','','CHICKTONIC_600px-x-600px','','inherit','','closed','','chicktonic_600px-x-600px-2','','','2023-09-19 12:12:17','2023-09-19 12:12:17','',3646,'https://farmchemie.yasithawd.com/wp-content/uploads/2023/09/CHICKTONIC_600px-x-600px-1.png',0,'attachment','image/png',0),(3798,1,'2023-09-19 12:14:46','2023-09-19 12:14:46','','Com.B_600px-x-600px','','inherit','','closed','','com-b_600px-x-600px','','','2023-09-19 12:14:46','2023-09-19 12:14:46','',3647,'https://farmchemie.yasithawd.com/wp-content/uploads/2023/09/Com.B_600px-x-600px.png',0,'attachment','image/png',0),(3799,1,'2023-09-19 12:16:11','2023-09-19 12:16:11','','Tilmovet-250mg_300px','','inherit','','closed','','tilmovet-250mg_300px','','','2023-09-19 12:16:11','2023-09-19 12:16:11','',3644,'https://farmchemie.yasithawd.com/wp-content/uploads/2023/09/Tilmovet-250mg_300px.png',0,'attachment','image/png',0),(3800,1,'2023-09-19 12:16:31','2023-09-19 12:16:31','','Tilmovet-250mg_600px-x-600px','','inherit','','closed','','tilmovet-250mg_600px-x-600px','','','2023-09-19 12:16:31','2023-09-19 12:16:31','',3644,'https://farmchemie.yasithawd.com/wp-content/uploads/2023/09/Tilmovet-250mg_600px-x-600px.png',0,'attachment','image/png',0),(3801,1,'2023-09-19 12:17:46','2023-09-19 12:17:46','','PHARMASIN-100%_60px-x-600px','','inherit','','closed','','pharmasin-100_60px-x-600px','','','2023-09-19 12:17:46','2023-09-19 12:17:46','',3643,'https://farmchemie.yasithawd.com/wp-content/uploads/2023/09/PHARMASIN-100_60px-x-600px.png',0,'attachment','image/png',0),(3802,1,'2023-09-19 12:22:13','2023-09-19 12:22:13','','PHARMASIN-100%_300px','','inherit','','closed','','pharmasin-100_300px','','','2023-09-19 12:22:13','2023-09-19 12:22:13','',3643,'https://farmchemie.yasithawd.com/wp-content/uploads/2023/09/PHARMASIN-100_300px.png',0,'attachment','image/png',0),(3803,1,'2023-09-19 12:56:22','2023-09-19 12:56:22','','VETMUIIN-450-rng','','inherit','','closed','','vetmuiin-450-rng','','','2023-09-19 12:56:22','2023-09-19 12:56:22','',3645,'https://farmchemie.yasithawd.com/wp-content/uploads/2023/09/VETMUIIN-450-rng.png',0,'attachment','image/png',0),(3804,1,'2023-09-19 12:56:39','2023-09-19 12:56:39','','VETMUIIN-450-rng_log','','inherit','','closed','','vetmuiin-450-rng_log','','','2023-09-19 12:56:39','2023-09-19 12:56:39','',3645,'https://farmchemie.yasithawd.com/wp-content/uploads/2023/09/VETMUIIN-450-rng_log.png',0,'attachment','image/png',0),(3805,1,'2023-09-19 12:57:46','2023-09-19 12:57:46','','Treizuril-250ML_600px-x-600px','','inherit','','closed','','treizuril-250ml_600px-x-600px','','','2023-09-19 12:57:46','2023-09-19 12:57:46','',3638,'https://farmchemie.yasithawd.com/wp-content/uploads/2023/09/Treizuril-250ML_600px-x-600px.png',0,'attachment','image/png',0),(3806,1,'2023-09-19 12:58:19','2023-09-19 12:58:19','','Treizuril_300px','','inherit','','closed','','treizuril_300px','','','2023-09-19 12:58:19','2023-09-19 12:58:19','',3638,'https://farmchemie.yasithawd.com/wp-content/uploads/2023/09/Treizuril_300px.png',0,'attachment','image/png',0),(3807,1,'2023-09-19 13:03:18','2023-09-19 13:03:18','','MYCOSIN-1kg_600px-x-600px','','inherit','','closed','','mycosin-1kg_600px-x-600px','','','2023-09-19 13:03:18','2023-09-19 13:03:18','',3642,'https://farmchemie.yasithawd.com/wp-content/uploads/2023/09/MYCOSIN-1kg_600px-x-600px.png',0,'attachment','image/png',0),(3808,1,'2023-09-19 13:03:41','2023-09-19 13:03:41','','MYCOSIN_300px','','inherit','','closed','','mycosin_300px','','','2023-09-19 13:03:41','2023-09-19 13:03:41','',3642,'https://farmchemie.yasithawd.com/wp-content/uploads/2023/09/MYCOSIN_300px.png',0,'attachment','image/png',0),(3810,1,'2023-09-19 13:20:47','2023-09-19 13:20:47','','Mansol-50_600px-x-600px','','inherit','','closed','','mansol-50_600px-x-600px','','','2023-09-19 13:20:47','2023-09-19 13:20:47','',3639,'https://farmchemie.yasithawd.com/wp-content/uploads/2023/09/Mansol-50_600px-x-600px.png',0,'attachment','image/png',0),(3811,1,'2023-09-20 05:08:23','2023-09-20 05:08:23','','SUPERVIT_300px','','inherit','','closed','','supervit_300px','','','2023-09-20 05:08:23','2023-09-20 05:08:23','',3649,'https://farmchemie.yasithawd.com/wp-content/uploads/2023/09/SUPERVIT_300px.png',0,'attachment','image/png',0),(3812,1,'2023-09-20 05:09:10','2023-09-20 05:09:10','','SUPERVIT_600px-x-600px','','inherit','','closed','','supervit_600px-x-600px','','','2023-09-20 05:09:10','2023-09-20 05:09:10','',3649,'https://farmchemie.yasithawd.com/wp-content/uploads/2023/09/SUPERVIT_600px-x-600px.png',0,'attachment','image/png',0),(3813,1,'2023-09-20 05:09:40','2023-09-20 05:09:40','','Vermxil_300px','','inherit','','closed','','vermxil_300px-2','','','2023-09-20 05:09:40','2023-09-20 05:09:40','',3640,'https://farmchemie.yasithawd.com/wp-content/uploads/2023/09/Vermxil_300px-1.png',0,'attachment','image/png',0),(3814,1,'2023-09-21 11:10:20','2023-09-21 11:10:20','[vc_row full_width=\"stretch_row_content_no_spaces\"][vc_column][ultimate_heading main_heading=\"Our History\" main_heading_color=\"#762888\"][/ultimate_heading][/vc_column][/vc_row][vc_row][vc_column][vc_row_inner equal_height=\"yes\" content_placement=\"middle\" css=\".vc_custom_1692359205466{margin-top: 35px !important;}\"][vc_column_inner width=\"1/2\"][ult_animation_block animation=\"fadeInLeftBig\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][vc_single_image image=\"3273\" img_size=\"full\" alignment=\"center\" style=\"vc_box_rounded\"][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/2\"][ult_animation_block animation=\"fadeInRightBig\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][ultimate_heading main_heading=\"Founded in 2002\" heading_tag=\"h3\" main_heading_color=\"#039447\" alignment=\"left\" sub_heading_font_size=\"desktop:18px;\"]Founded in 2002 by Mr. Uditha Wanigasinghe, an agriculturist who had a mission to aid valuable livestock producers in the country to enhance the yield and profitability of production. FARMCHEMIE introduced unprecedented solutions and consistent technical services to gain our customers’ trust and became the market leader in animal health products in 2006 within just four years.[/ultimate_heading][/ult_animation_block][/vc_column_inner][/vc_row_inner][vc_separator color=\"custom\" accent_color=\"#039447\"][vc_row_inner equal_height=\"yes\" rtl_reverse=\"yes\" content_placement=\"middle\" css=\".vc_custom_1692359216075{margin-top: 35px !important;}\"][vc_column_inner width=\"1/2\"][ult_animation_block animation=\"fadeInLeftBig\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][ultimate_heading main_heading=\"2006\" heading_tag=\"h3\" main_heading_color=\"#039447\" alignment=\"right\"]In 2006, the Sri Lankan poultry industry was affected with Avian Influenza which became a difficult period for the growth of FARMCHEMIE. This was the key factor in our decision to diversify into Agro Products. PLANTCHEM &amp; PLANTSEEDS were established to offer solutions in Agro specialty fertilizers, pesticides and seeds to invaluable cultivators.[/ultimate_heading][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/2\"][ult_animation_block animation=\"fadeInRightBig\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][vc_single_image image=\"3276\" img_size=\"full\" alignment=\"center\" style=\"vc_box_rounded\"][/ult_animation_block][/vc_column_inner][/vc_row_inner][vc_separator color=\"custom\" accent_color=\"#039447\"][vc_row_inner equal_height=\"yes\" content_placement=\"middle\" css=\".vc_custom_1692359231594{margin-top: 35px !important;}\"][vc_column_inner width=\"1/2\"][ult_animation_block animation=\"fadeInLeftBig\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][vc_single_image image=\"3277\" img_size=\"full\" alignment=\"center\" style=\"vc_box_rounded\"][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/2\"][ult_animation_block animation=\"fadeInRightBig\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][ultimate_heading main_heading=\"2010\" heading_tag=\"h3\" main_heading_color=\"#039447\" alignment=\"left\"]In 2010, FEED CHEMIE became the subsequent addition to ever-growing vision of Mr. Uditha Wanigasinghe and entered the Animal Feed Additives market.[/ultimate_heading][/ult_animation_block][/vc_column_inner][/vc_row_inner][vc_separator color=\"custom\" accent_color=\"#039447\"][vc_row_inner equal_height=\"yes\" rtl_reverse=\"yes\" content_placement=\"middle\" css=\".vc_custom_1692359239274{margin-top: 35px !important;}\"][vc_column_inner width=\"1/2\"][ult_animation_block animation=\"fadeInLeftBig\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][ultimate_heading main_heading=\"2012\" heading_tag=\"h3\" main_heading_color=\"#039447\" alignment=\"right\"]The year 2012 is described as a turning point in our journey as FARMCHEMIE established our first production facility for the manufacturing and packing of animal health products. FARMCHEMIE became the first animal health organization in Sri Lanka to obtain ISO 9001:2015 and WHO GMP International Quality Certification. With our own formulation unit, FARMCHEMIE was able to offer customized solutions to cater the needs of the Sri Lankan Livestock Industry.[/ultimate_heading][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/2\"][ult_animation_block animation=\"fadeInRightBig\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][vc_single_image image=\"3278\" img_size=\"full\" alignment=\"center\" style=\"vc_box_rounded\"][/ult_animation_block][/vc_column_inner][/vc_row_inner][vc_separator color=\"custom\" accent_color=\"#039447\"][vc_row_inner content_placement=\"middle\" css=\".vc_custom_1692359246626{margin-top: 35px !important;}\"][vc_column_inner width=\"1/2\"][ult_animation_block animation=\"fadeInLeftBig\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][vc_single_image image=\"3279\" img_size=\"full\" alignment=\"center\" style=\"vc_box_rounded\"][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/2\"][ult_animation_block animation=\"fadeInRightBig\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][ultimate_heading main_heading=\"2016\" heading_tag=\"h3\" main_heading_color=\"#039447\" alignment=\"left\"]The year 2016 was another key milestone with the entry to the International Markets. FARMCHEMIE exported our first Feed Premix consignment to India and in 2018 our export operation was distinctly established as FARMCHEMIE MANUFACTURERS, a Board of Investment (BOI) approved entity.[/ultimate_heading][/ult_animation_block][/vc_column_inner][/vc_row_inner][vc_separator color=\"custom\" accent_color=\"#039447\"][vc_row_inner equal_height=\"yes\" content_placement=\"middle\" css=\".vc_custom_1692422601938{margin-top: 35px !important;}\"][vc_column_inner width=\"1/2\"][ult_animation_block animation=\"fadeInLeftBig\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][ultimate_heading main_heading=\"Fully automated manufacturing\" heading_tag=\"h3\" main_heading_color=\"#039447\" alignment=\"right\"]FARMCHEMIE MANUFACTURERS has invested in fully automated manufacturing facility from Bühler and became the first Sri Lankan owned company to obtain FAMI-QS International Quality Certification.[/ultimate_heading][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/2\"][ult_animation_block animation=\"fadeInRightBig\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][vc_single_image image=\"3280\" img_size=\"full\" alignment=\"center\" style=\"vc_box_rounded\"][/ult_animation_block][/vc_column_inner][/vc_row_inner][vc_separator color=\"custom\" accent_color=\"#039447\"][vc_row_inner equal_height=\"yes\" content_placement=\"middle\" css=\".vc_custom_1692359258634{margin-top: 35px !important;}\"][vc_column_inner width=\"1/2\"][ult_animation_block animation=\"fadeInLeftBig\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][vc_single_image image=\"3281\" img_size=\"full\" alignment=\"center\" style=\"vc_box_rounded\"][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/2\"][ult_animation_block animation=\"fadeInRightBig\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][ultimate_heading main_heading=\"Official toll manufacturer partner\" heading_tag=\"h3\" main_heading_color=\"#039447\" alignment=\"left\"]With the trust and reputation built as a reliable manufacturer of animal feed additives and supplements in the global market, several world-renowned international brands have appointed FARMCHEMIE MANUFACTURERS as the official toll manufacturer partner. FARMCHEMIE MANUFACTURERS exports a wide range of products consisting of premixes, specialty feed additives, oral liquid supplements and pet supplements to various markets in South Asia, East Asia, Middle East and Africa.\r\n\r\nFARMCHEMIE, FEED CHEMIE &amp; FARMCHEMIE MANUFACTURERS currently operate under the ownership of our holding company, DYVESTA.\r\n\r\nDYEVSTA has become the pinnacle of Animal Nutrition and Health.\r\n\r\nDYVESTA is Dynamic, through our continuous evolution, growth and progress. DYVESTA is Diverse, in terms of both our business strategy and our community. DYVESTA is Devoted to our valuable business partners through exceptional service.[/ultimate_heading][/ult_animation_block][/vc_column_inner][/vc_row_inner][vc_separator color=\"custom\" accent_color=\"#039447\"][/vc_column][/vc_row][vc_row full_width=\"stretch_row\" equal_height=\"yes\" bg_type=\"image\" parallax_style=\"vcpb-vz-jquery\" bg_image_new=\"id^3256|url^https://farmchemie.yasithawd.com/wp-content/uploads/2023/08/Vision-Mission.png|caption^null|alt^null|title^Vision-&amp;-Mission|description^null\" bg_image_repeat=\"no-repeat\" enable_overlay=\"enable_overlay_value\" overlay_color=\"#000000\" overlay_pattern=\"01.png\" overlay_pattern_opacity=\"5\" css=\".vc_custom_1692366072362{margin-top: 35px !important;padding-top: 65px !important;padding-bottom: 100px !important;}\"][vc_column][vc_row_inner equal_height=\"yes\"][vc_column_inner width=\"1/2\"][ult_animation_block animation=\"fadeInLeftBig\" animation_duration=\"2\" animation_delay=\"0\" animation_iteration_count=\"1\"][ultimate_heading main_heading=\"Vision\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\"]To be the customers’ first and best choice by ensuring outstanding satisfaction through a well-trained and dedicated team. Prompt and quality solutions to our customers’ requirements will determine the increase of return on investment for us.[/ultimate_heading][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/2\"][ult_animation_block animation=\"fadeInRightBig\" animation_duration=\"2\" animation_delay=\"0\" animation_iteration_count=\"1\"][ultimate_heading main_heading=\"Mission\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\"]To become a world renowned manufacturer of Animal Health products and a trusted partner among our stakeholders for our integrity as well as for providing effective solutions[/ultimate_heading][/ult_animation_block][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row css=\".vc_custom_1684836308288{margin-top: 15px !important;}\"][vc_column][ultimate_heading main_heading=\"Achievements\" main_heading_color=\"#762888\" main_heading_margin=\"margin-top:35px;\"][/ultimate_heading][vc_row_inner gap=\"20\"][vc_column_inner width=\"1/2\" css=\".vc_custom_1691995519863{background-color: #f4ab20 !important;border: 1px solid #f4ab20 !important;border-radius: 35px !important;}\"][ult_animation_block animation=\"fadeInLeftBig\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][bsf-info-box icon_type=\"custom\" icon_img=\"id^3117|url^https://farmchemie.yasithawd.com/wp-content/uploads/2023/08/Pink_-H.png|caption^null|alt^null|title^Pink_-H|description^null\" img_width=\"60\" icon_style=\"advanced\" icon_border_style=\"solid\" icon_color_border=\"#ffffff\" icon_border_size=\"1\" icon_border_radius=\"500\" icon_border_spacing=\"1\" title=\"First Free Sale Certificate obtained from Veterinary Drug Control Authority (VDCA) for Veterinary Pharmaceuticals\" title_font_style=\"font-weight:bold;\" title_font_size=\"desktop:20px;\"][/bsf-info-box][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/2\" css=\".vc_custom_1691995661095{background-color: #722f8b !important;border: 1px solid #722f8b !important;border-radius: 35px !important;}\"][ult_animation_block animation=\"fadeInRightBig\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][bsf-info-box icon_type=\"custom\" icon_img=\"id^3117|url^https://farmchemie.yasithawd.com/wp-content/uploads/2023/08/Pink_-H.png|caption^null|alt^null|title^Pink_-H|description^null\" img_width=\"60\" icon_style=\"advanced\" icon_border_style=\"solid\" icon_color_border=\"#ffffff\" icon_border_size=\"1\" icon_border_radius=\"500\" icon_border_spacing=\"1\" title=\"First ISO 9001: 2015 ,WHO-GMP Quality Management systems certified Animal Health company in Sri Lanka since August, 2012\" title_font_style=\"font-weight:bold;\" title_font_color=\"#ffffff\" title_font_size=\"desktop:20px;\"][/bsf-info-box][/ult_animation_block][/vc_column_inner][/vc_row_inner][vc_row_inner gap=\"20\"][vc_column_inner width=\"1/2\" css=\".vc_custom_1691995661095{background-color: #722f8b !important;border: 1px solid #722f8b !important;border-radius: 35px !important;}\"][ult_animation_block animation=\"fadeInLeftBig\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][bsf-info-box icon_type=\"custom\" icon_img=\"id^3117|url^https://farmchemie.yasithawd.com/wp-content/uploads/2023/08/Pink_-H.png|caption^null|alt^null|title^Pink_-H|description^null\" img_width=\"60\" icon_style=\"advanced\" icon_border_style=\"solid\" icon_color_border=\"#ffffff\" icon_border_size=\"1\" icon_border_radius=\"500\" icon_border_spacing=\"1\" title=\"First FAMI-QS certified company in sri lanka\" title_font_style=\"font-weight:bold;\" title_font_color=\"#ffffff\" title_font_size=\"desktop:20px;\"][/bsf-info-box][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/2\" css=\".vc_custom_1691995519863{background-color: #f4ab20 !important;border: 1px solid #f4ab20 !important;border-radius: 35px !important;}\"][ult_animation_block animation=\"fadeInRightBig\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][bsf-info-box icon_type=\"custom\" icon_img=\"id^3117|url^https://farmchemie.yasithawd.com/wp-content/uploads/2023/08/Pink_-H.png|caption^null|alt^null|title^Pink_-H|description^null\" img_width=\"60\" icon_style=\"advanced\" icon_border_style=\"solid\" icon_color_border=\"#ffffff\" icon_border_size=\"1\" icon_border_radius=\"500\" icon_border_spacing=\"1\" title=\"First Certificate of Ethical Trading certified in Livestock industry\" title_font_style=\"font-weight:bold;\" title_font_size=\"desktop:20px;\"][/bsf-info-box][/ult_animation_block][/vc_column_inner][/vc_row_inner][vc_row_inner gap=\"20\"][vc_column_inner width=\"1/4\" css=\".vc_custom_1691996718116{border-radius: 35px !important;}\"][/vc_column_inner][vc_column_inner width=\"2/4\" css=\".vc_custom_1691995519863{background-color: #f4ab20 !important;border: 1px solid #f4ab20 !important;border-radius: 35px !important;}\"][ult_animation_block animation=\"fadeInLeftBig\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][bsf-info-box icon_type=\"custom\" icon_img=\"id^3117|url^https://farmchemie.yasithawd.com/wp-content/uploads/2023/08/Pink_-H.png|caption^null|alt^null|title^Pink_-H|description^null\" img_width=\"60\" icon_style=\"advanced\" icon_border_style=\"solid\" icon_color_border=\"#ffffff\" icon_border_size=\"1\" icon_border_radius=\"500\" icon_border_spacing=\"1\" title=\"First Silver awarded company at National Exports Awards in Livestock industry\" title_font_style=\"font-weight:bold;\" title_font_size=\"desktop:20px;\"][/bsf-info-box][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/4\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row full_width=\"stretch_row\" equal_height=\"yes\" content_placement=\"bottom\" css=\".vc_custom_1693627699480{margin-top: 15px !important;}\"][vc_column][ultimate_heading main_heading=\"Certifications\" main_heading_color=\"#762888\" main_heading_margin=\"margin-top:35px;\"][/ultimate_heading][vc_row_inner content_placement=\"bottom\"][vc_column_inner width=\"1/6\"][dt_fancy_image image_id=\"3407\" width=\"300\" caption=\"off\"][/vc_column_inner][vc_column_inner width=\"1/6\"][dt_fancy_image image_id=\"3408\" width=\"300\" caption=\"off\"][/vc_column_inner][vc_column_inner width=\"1/6\"][dt_fancy_image image_id=\"3409\" width=\"300\" caption=\"off\"][/vc_column_inner][vc_column_inner width=\"1/6\"][dt_fancy_image image_id=\"3411\" width=\"300\" caption=\"off\"][/vc_column_inner][vc_column_inner width=\"1/6\"][dt_fancy_image image_id=\"3410\" width=\"300\" caption=\"off\"][/vc_column_inner][vc_column_inner width=\"1/6\"][dt_fancy_image image_id=\"3406\" width=\"300\" caption=\"off\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row full_width=\"stretch_row\" equal_height=\"yes\" content_placement=\"bottom\" css=\".vc_custom_1693625624233{margin-top: 15px !important;}\"][vc_column][ultimate_heading main_heading=\"Awards\" main_heading_color=\"#762888\" main_heading_margin=\"margin-top:35px;\"][/ultimate_heading][ultimate_carousel slide_to_scroll=\"single\"][dt_fancy_image image_id=\"3412\" width=\"300\"][dt_fancy_image image_id=\"3413\" width=\"300\" caption=\"off\"][dt_fancy_image image_id=\"3414\" width=\"300\" caption=\"off\"][dt_fancy_image image_id=\"3415\" width=\"300\" caption=\"off\"][dt_fancy_image image_id=\"3416\" width=\"300\" caption=\"off\"][dt_fancy_image image_id=\"3417\" width=\"300\" caption=\"off\"][dt_fancy_image image_id=\"3418\" width=\"300\" caption=\"off\"][dt_fancy_image image_id=\"3420\" width=\"300\" caption=\"off\"][dt_fancy_image image_id=\"3419\" width=\"300\" caption=\"off\"][dt_fancy_image image_id=\"3422\" width=\"300\" caption=\"off\"][dt_fancy_image image_id=\"3421\" width=\"300\" caption=\"off\"][dt_fancy_image image_id=\"3422\" width=\"300\" caption=\"off\"][dt_fancy_image image_id=\"3423\" width=\"300\" caption=\"off\"][dt_fancy_image image_id=\"3424\" width=\"300\" caption=\"off\"][dt_fancy_image image_id=\"3425\" width=\"300\" caption=\"off\"][/ultimate_carousel][/vc_column][/vc_row][vc_row disable_element=\"yes\" css=\".vc_custom_1695294608306{margin-top: 15px !important;}\"][vc_column][ultimate_heading main_heading=\"Board Of Directors\" main_heading_color=\"#762888\" main_heading_margin=\"margin-top:35px;margin-bottom:35px;\"][/ultimate_heading][ultimate_carousel slides_on_desk=\"3\" slides_on_mob=\"1\" arrow_style=\"square-bg\" arrow_bg_color=\"#039447\" arrow_color=\"#ffffff\" next_icon=\"ultsl-arrow-right6\" prev_icon=\"ultsl-arrow-left6\" dots_color=\"#039447\" item_animation=\"fadeIn\" css_ad_caraousel=\".vc_custom_1694697209111{padding-right: 10px !important;padding-left: 10px !important;}\"][vc_row_inner][vc_column_inner][ultimate_heading main_heading=\"Uditha Wanigasinghe\" heading_tag=\"h3\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;\"]Managing Director[/ultimate_heading][ultimate_modal modal_title=\"Read more\" btn_size=\"md\" btn_bg_color=\"#089548\" btn_text=\"Read more\" overlay_bg_opacity=\"75\" img_size=\"80\" btn_txt_color=\"#ffffff\"]pretium mauris pretium mauris pretium mauris pretium mauris pretium mauris pretium mauris pretium mauris pretium mauris pretium mauris pretium mauris pretium mauris pretium mauris pretium mauris pretium mauris pretium mauris pretium mauris pretium mauris pretium mauris pretium mauris pretium mauris pretium mauris pretium mauris pretium mauris pretium mauris pretium mauris pretium mauris pretium mauris pretium mauris[/ultimate_modal][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner][ultimate_heading main_heading=\"Senitha Wanigasinghe\" heading_tag=\"h3\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;\"]Director/ CEO[/ultimate_heading][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner][ultimate_heading main_heading=\"Thulitha Wanigasinghe\" heading_tag=\"h3\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;\"]Director - Veterinary Services &amp; RA[/ultimate_heading][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner][ultimate_heading main_heading=\"Yvonne Van Cuylenberg\" heading_tag=\"h3\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;\"]Director - HR &amp; Administration[/ultimate_heading][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner][ultimate_heading main_heading=\"Gamini Wanigasinghe\" heading_tag=\"h3\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;\"]Director[/ultimate_heading][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner][ultimate_heading main_heading=\"Ajith Welianga\" heading_tag=\"h3\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;\"]Director - Marketing[/ultimate_heading][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner][ultimate_heading main_heading=\"Sunil Ranjith Guruge\" heading_tag=\"h3\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;\"]Director - Customer &amp; Employee Relations[/ultimate_heading][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner][ultimate_heading main_heading=\"Sampath Gunathilake\" heading_tag=\"h3\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;\"]Director - Sales[/ultimate_heading][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner][ultimate_heading main_heading=\"Chanaka Indrajith\" heading_tag=\"h3\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;\"]Director Production / COO[/ultimate_heading][/vc_column_inner][/vc_row_inner][/ultimate_carousel][/vc_column][/vc_row][vc_row disable_element=\"yes\"][vc_column][ultimate_heading main_heading=\"Board Of Directors\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;margin-bottom:35px;\"][/ultimate_heading][vc_row_inner][vc_column_inner width=\"1/3\"][ult_animation_block animation=\"fadeInUp\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][dt_fancy_image image_id=\"3172\" width=\"300\" border_radius=\"1px\" caption=\"off\" css=\".vc_custom_1692278922309{border-top-width: 1px !important;border-right-width: 1px !important;border-bottom-width: 1px !important;border-left-width: 1px !important;border-left-color: #059444 !important;border-left-style: solid !important;border-right-color: #059444 !important;border-right-style: solid !important;border-top-color: #059444 !important;border-top-style: solid !important;border-bottom-color: #059444 !important;border-bottom-style: solid !important;border-radius: 1px !important;}\"][ultimate_heading main_heading=\"Quisque sed nibh tristique\" heading_tag=\"h3\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;\"]\r\n<ul>\r\n 	<li>Duis lorem risus, aliquet a auctor a, venenatis in dui. Praesent et eros et risus dapibus placerat hendrerit cursus magna.</li>\r\n 	<li>Praesent et eros et risus dapibus placerat hendrerit cursus magna.</li>\r\n 	<li>aliquet a auctor a, venenatis in dui.</li>\r\n</ul>\r\n[/ultimate_heading][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/3\"][ult_animation_block animation=\"fadeInDown\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][dt_fancy_image image_id=\"3171\" width=\"300\" border_radius=\"1px\" caption=\"off\" css=\".vc_custom_1692278929158{border-top-width: 1px !important;border-right-width: 1px !important;border-bottom-width: 1px !important;border-left-width: 1px !important;border-left-color: #059444 !important;border-left-style: solid !important;border-right-color: #059444 !important;border-right-style: solid !important;border-top-color: #059444 !important;border-top-style: solid !important;border-bottom-color: #059444 !important;border-bottom-style: solid !important;border-radius: 1px !important;}\"][ultimate_heading main_heading=\"Quisque sed nibh tristique\" heading_tag=\"h3\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;\"]\r\n<ul>\r\n 	<li>Duis lorem risus, aliquet a auctor a, venenatis in dui. Praesent et eros et risus dapibus placerat hendrerit cursus magna.</li>\r\n 	<li>Praesent et eros et risus dapibus placerat hendrerit cursus magna.</li>\r\n 	<li>aliquet a auctor a, venenatis in dui.</li>\r\n</ul>\r\n[/ultimate_heading][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/3\"][ult_animation_block animation=\"fadeInUp\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][dt_fancy_image image_id=\"3170\" width=\"300\" border_radius=\"1px\" caption=\"off\" css=\".vc_custom_1692278936750{border-top-width: 1px !important;border-right-width: 1px !important;border-bottom-width: 1px !important;border-left-width: 1px !important;border-left-color: #059444 !important;border-left-style: solid !important;border-right-color: #059444 !important;border-right-style: solid !important;border-top-color: #059444 !important;border-top-style: solid !important;border-bottom-color: #059444 !important;border-bottom-style: solid !important;border-radius: 1px !important;}\"][ultimate_heading main_heading=\"Quisque sed nibh tristique\" heading_tag=\"h3\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;\"]\r\n<ul>\r\n 	<li>Duis lorem risus, aliquet a auctor a, venenatis in dui. Praesent et eros et risus dapibus placerat hendrerit cursus magna.</li>\r\n 	<li>Praesent et eros et risus dapibus placerat hendrerit cursus magna.</li>\r\n 	<li>aliquet a auctor a, venenatis in dui.</li>\r\n</ul>\r\n[/ultimate_heading][/ult_animation_block][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row disable_element=\"yes\"][vc_column][ultimate_heading main_heading=\"Executive Directors\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;margin-bottom:35px;\"][/ultimate_heading][vc_row_inner][vc_column_inner width=\"1/5\"][ult_animation_block animation=\"fadeInUp\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][dt_fancy_image image_id=\"3172\" width=\"300\" border_radius=\"1px\" caption=\"off\" css=\".vc_custom_1692278922309{border-top-width: 1px !important;border-right-width: 1px !important;border-bottom-width: 1px !important;border-left-width: 1px !important;border-left-color: #059444 !important;border-left-style: solid !important;border-right-color: #059444 !important;border-right-style: solid !important;border-top-color: #059444 !important;border-top-style: solid !important;border-bottom-color: #059444 !important;border-bottom-style: solid !important;border-radius: 1px !important;}\"][ultimate_heading main_heading=\"Quisque sed nibh tristique\" heading_tag=\"h3\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;\"]\r\n<ul>\r\n 	<li>Duis lorem risus, aliquet a auctor a, venenatis in dui. Praesent et eros et risus dapibus placerat hendrerit cursus magna.</li>\r\n 	<li>Praesent et eros et risus dapibus placerat hendrerit cursus magna.</li>\r\n 	<li>aliquet a auctor a, venenatis in dui.</li>\r\n</ul>\r\n[/ultimate_heading][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/5\"][ult_animation_block animation=\"fadeInDown\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][dt_fancy_image image_id=\"3171\" width=\"300\" border_radius=\"1px\" caption=\"off\" css=\".vc_custom_1692278929158{border-top-width: 1px !important;border-right-width: 1px !important;border-bottom-width: 1px !important;border-left-width: 1px !important;border-left-color: #059444 !important;border-left-style: solid !important;border-right-color: #059444 !important;border-right-style: solid !important;border-top-color: #059444 !important;border-top-style: solid !important;border-bottom-color: #059444 !important;border-bottom-style: solid !important;border-radius: 1px !important;}\"][ultimate_heading main_heading=\"Quisque sed nibh tristique\" heading_tag=\"h3\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;\"]\r\n<ul>\r\n 	<li>Duis lorem risus, aliquet a auctor a, venenatis in dui. Praesent et eros et risus dapibus placerat hendrerit cursus magna.</li>\r\n 	<li>Praesent et eros et risus dapibus placerat hendrerit cursus magna.</li>\r\n 	<li>aliquet a auctor a, venenatis in dui.</li>\r\n</ul>\r\n[/ultimate_heading][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/5\"][ult_animation_block animation=\"fadeInUp\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][dt_fancy_image image_id=\"3170\" width=\"300\" border_radius=\"1px\" caption=\"off\" css=\".vc_custom_1692278936750{border-top-width: 1px !important;border-right-width: 1px !important;border-bottom-width: 1px !important;border-left-width: 1px !important;border-left-color: #059444 !important;border-left-style: solid !important;border-right-color: #059444 !important;border-right-style: solid !important;border-top-color: #059444 !important;border-top-style: solid !important;border-bottom-color: #059444 !important;border-bottom-style: solid !important;border-radius: 1px !important;}\"][ultimate_heading main_heading=\"Quisque sed nibh tristique\" heading_tag=\"h3\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;\"]\r\n<ul>\r\n 	<li>Duis lorem risus, aliquet a auctor a, venenatis in dui. Praesent et eros et risus dapibus placerat hendrerit cursus magna.</li>\r\n 	<li>Praesent et eros et risus dapibus placerat hendrerit cursus magna.</li>\r\n 	<li>aliquet a auctor a, venenatis in dui.</li>\r\n</ul>\r\n[/ultimate_heading][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/5\"][ult_animation_block animation=\"fadeInDown\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][dt_fancy_image image_id=\"3170\" width=\"300\" border_radius=\"1px\" caption=\"off\" css=\".vc_custom_1692278936750{border-top-width: 1px !important;border-right-width: 1px !important;border-bottom-width: 1px !important;border-left-width: 1px !important;border-left-color: #059444 !important;border-left-style: solid !important;border-right-color: #059444 !important;border-right-style: solid !important;border-top-color: #059444 !important;border-top-style: solid !important;border-bottom-color: #059444 !important;border-bottom-style: solid !important;border-radius: 1px !important;}\"][ultimate_heading main_heading=\"Quisque sed nibh tristique\" heading_tag=\"h3\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;\"]\r\n<ul>\r\n 	<li>Duis lorem risus, aliquet a auctor a, venenatis in dui. Praesent et eros et risus dapibus placerat hendrerit cursus magna.</li>\r\n 	<li>Praesent et eros et risus dapibus placerat hendrerit cursus magna.</li>\r\n 	<li>aliquet a auctor a, venenatis in dui.</li>\r\n</ul>\r\n[/ultimate_heading][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/5\"][ult_animation_block animation=\"fadeInDown\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][dt_fancy_image image_id=\"3171\" width=\"300\" border_radius=\"1px\" caption=\"off\" css=\".vc_custom_1692278929158{border-top-width: 1px !important;border-right-width: 1px !important;border-bottom-width: 1px !important;border-left-width: 1px !important;border-left-color: #059444 !important;border-left-style: solid !important;border-right-color: #059444 !important;border-right-style: solid !important;border-top-color: #059444 !important;border-top-style: solid !important;border-bottom-color: #059444 !important;border-bottom-style: solid !important;border-radius: 1px !important;}\"][ultimate_heading main_heading=\"Quisque sed nibh tristique\" heading_tag=\"h3\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;\"]\r\n<ul>\r\n 	<li>Duis lorem risus, aliquet a auctor a, venenatis in dui. Praesent et eros et risus dapibus placerat hendrerit cursus magna.</li>\r\n 	<li>Praesent et eros et risus dapibus placerat hendrerit cursus magna.</li>\r\n 	<li>aliquet a auctor a, venenatis in dui.</li>\r\n</ul>\r\n[/ultimate_heading][/ult_animation_block][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner width=\"2/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row disable_element=\"yes\"][vc_column][ultimate_heading main_heading=\"Next Generation\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;margin-bottom:35px;\"][/ultimate_heading][vc_row_inner][vc_column_inner width=\"1/2\"][ult_animation_block animation=\"fadeInUp\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][dt_fancy_image image_id=\"3172\" width=\"300\" border_radius=\"1px\" caption=\"off\" css=\".vc_custom_1692278922309{border-top-width: 1px !important;border-right-width: 1px !important;border-bottom-width: 1px !important;border-left-width: 1px !important;border-left-color: #059444 !important;border-left-style: solid !important;border-right-color: #059444 !important;border-right-style: solid !important;border-top-color: #059444 !important;border-top-style: solid !important;border-bottom-color: #059444 !important;border-bottom-style: solid !important;border-radius: 1px !important;}\"][ultimate_heading main_heading=\"Quisque sed nibh tristique\" heading_tag=\"h3\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;\"]\r\n<ul>\r\n 	<li>Duis lorem risus, aliquet a auctor a, venenatis in dui. Praesent et eros et risus dapibus placerat hendrerit cursus magna.</li>\r\n 	<li>Praesent et eros et risus dapibus placerat hendrerit cursus magna.</li>\r\n 	<li>aliquet a auctor a, venenatis in dui.</li>\r\n</ul>\r\n[/ultimate_heading][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/2\"][ult_animation_block animation=\"fadeInDown\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][dt_fancy_image image_id=\"3171\" width=\"300\" border_radius=\"1px\" caption=\"off\" css=\".vc_custom_1692278929158{border-top-width: 1px !important;border-right-width: 1px !important;border-bottom-width: 1px !important;border-left-width: 1px !important;border-left-color: #059444 !important;border-left-style: solid !important;border-right-color: #059444 !important;border-right-style: solid !important;border-top-color: #059444 !important;border-top-style: solid !important;border-bottom-color: #059444 !important;border-bottom-style: solid !important;border-radius: 1px !important;}\"][ultimate_heading main_heading=\"Quisque sed nibh tristique\" heading_tag=\"h3\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;\"]\r\n<ul>\r\n 	<li>Duis lorem risus, aliquet a auctor a, venenatis in dui. Praesent et eros et risus dapibus placerat hendrerit cursus magna.</li>\r\n 	<li>Praesent et eros et risus dapibus placerat hendrerit cursus magna.</li>\r\n 	<li>aliquet a auctor a, venenatis in dui.</li>\r\n</ul>\r\n[/ultimate_heading][/ult_animation_block][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row]','About us','','inherit','closed','closed','','2917-revision-v1','','','2023-09-21 11:10:20','2023-09-21 11:10:20','',2917,'https://farmchemie.yasithawd.com/?p=3814',0,'revision','',0),(3815,1,'2023-09-21 12:07:49','2023-09-21 12:07:49','','FEED ADDITIVES','','inherit','','closed','','feed-additives-2','','','2023-09-21 12:07:49','2023-09-21 12:07:49','',3098,'https://farmchemie.yasithawd.com/wp-content/uploads/2023/09/FEED-ADDITIVES.gif',0,'attachment','image/gif',0),(3816,1,'2023-09-21 12:08:42','2023-09-21 12:08:42','','Trimethosulfa_600px-x-600px','','inherit','','closed','','trimethosulfa_600px-x-600px','','','2023-09-21 12:08:42','2023-09-21 12:08:42','',3636,'https://farmchemie.yasithawd.com/wp-content/uploads/2023/09/Trimethosulfa_600px-x-600px.png',0,'attachment','image/png',0),(3817,1,'2023-09-21 12:09:03','2023-09-21 12:09:03','','Trimethosulfa_300px','','inherit','','closed','','trimethosulfa_300px','','','2023-09-21 12:09:03','2023-09-21 12:09:03','',3636,'https://farmchemie.yasithawd.com/wp-content/uploads/2023/09/Trimethosulfa_300px.png',0,'attachment','image/png',0),(3818,1,'2023-09-22 09:01:05','2023-09-22 09:01:05','','ABOUT USF','','inherit','','closed','','about-usf','','','2023-09-22 09:01:05','2023-09-22 09:01:05','',2917,'https://farmchemie.yasithawd.com/wp-content/uploads/2023/09/ABOUT-USF.gif',0,'attachment','image/gif',0),(3819,1,'2023-09-22 09:19:04','2023-09-22 09:19:04','','PRODUCTSF','','inherit','','closed','','productsf','','','2023-09-22 09:19:04','2023-09-22 09:19:04','',2655,'https://farmchemie.yasithawd.com/wp-content/uploads/2023/09/PRODUCTSF.gif',0,'attachment','image/gif',0),(3820,1,'2023-09-22 09:19:49','2023-09-22 09:19:49','','LARGE-ANIMALF','','inherit','','closed','','large-animalf','','','2023-09-22 09:19:49','2023-09-22 09:19:49','',3032,'https://farmchemie.yasithawd.com/wp-content/uploads/2023/09/LARGE-ANIMALF.gif',0,'attachment','image/gif',0),(3821,1,'2023-09-23 08:12:42','2023-09-23 08:12:42','','CEVAC-IBird_300px','','inherit','','closed','','cevac-ibird_300px-2','','','2023-09-23 08:12:42','2023-09-23 08:12:42','',3655,'https://farmchemie.yasithawd.com/wp-content/uploads/2023/09/CEVAC-IBird_300px-1.png',0,'attachment','image/png',0),(3822,1,'2023-09-23 08:27:42','2023-09-23 08:27:42','','CEVAC-NEW-L_300px','','inherit','','closed','','cevac-new-l_300px-2','','','2023-09-23 08:27:42','2023-09-23 08:27:42','',3659,'https://farmchemie.yasithawd.com/wp-content/uploads/2023/09/CEVAC-NEW-L_300px-1.png',0,'attachment','image/png',0),(3823,1,'2023-09-23 08:28:33','2023-09-23 08:28:33','','CEVAC-VITABORN-L_300px','','inherit','','closed','','cevac-vitaborn-l_300px-2','','','2023-09-23 08:28:33','2023-09-23 08:28:33','',3662,'https://farmchemie.yasithawd.com/wp-content/uploads/2023/09/CEVAC-VITABORN-L_300px-1.png',0,'attachment','image/png',0),(3824,1,'2023-09-23 08:33:49','2023-09-23 08:33:49','','Ganadexil-Enrofloxacin-10%_300px','','inherit','','closed','','ganadexil-enrofloxacin-10_300px','','','2023-09-23 08:33:49','2023-09-23 08:33:49','',3633,'https://farmchemie.yasithawd.com/wp-content/uploads/2023/09/Ganadexil-Enrofloxacin-10_300px.png',0,'attachment','image/png',0),(3825,1,'2023-09-23 08:34:34','2023-09-23 08:34:34','','GANADEXIL-ENROFLOXACINA-5-INJECTABLE_600px-x-600px','','inherit','','closed','','ganadexil-enrofloxacina-5-injectable_600px-x-600px','','','2023-09-23 08:34:34','2023-09-23 08:34:34','',3633,'https://farmchemie.yasithawd.com/wp-content/uploads/2023/09/GANADEXIL-ENROFLOXACINA-5-INJECTABLE_600px-x-600px.png',0,'attachment','image/png',0),(3826,1,'2023-09-23 08:35:45','2023-09-23 08:35:45','','Com.B_300px','','inherit','','closed','','com-b_300px','','','2023-09-23 08:35:45','2023-09-23 08:35:45','',3647,'https://farmchemie.yasithawd.com/wp-content/uploads/2023/09/Com.B_300px.png',0,'attachment','image/png',0),(3827,1,'2023-09-23 08:36:32','2023-09-23 08:36:32','','Farmox-50-1kg_600px-x-600px','','inherit','','closed','','farmox-50-1kg_600px-x-600px','','','2023-09-23 08:36:32','2023-09-23 08:36:32','',3632,'https://farmchemie.yasithawd.com/wp-content/uploads/2023/09/Farmox-50-1kg_600px-x-600px.png',0,'attachment','image/png',0),(3828,1,'2023-09-23 08:36:57','2023-09-23 08:36:57','','Farmox-50_300px','','inherit','','closed','','farmox-50_300px','','','2023-09-23 08:36:57','2023-09-23 08:36:57','',3632,'https://farmchemie.yasithawd.com/wp-content/uploads/2023/09/Farmox-50_300px.png',0,'attachment','image/png',0),(3829,1,'2023-09-23 08:39:43','2023-09-23 08:39:43','','CEVAC-GUMBO-L_300px','','inherit','','closed','','cevac-gumbo-l_300px-2','','','2023-09-23 08:39:43','2023-09-23 08:39:43','',3654,'https://farmchemie.yasithawd.com/wp-content/uploads/2023/09/CEVAC-GUMBO-L_300px-1.png',0,'attachment','image/png',0),(3830,1,'2023-09-23 08:41:04','2023-09-23 08:41:04','','CEVAC-FP-L_300px','','inherit','','closed','','cevac-fp-l_300px-2','','','2023-09-23 08:41:04','2023-09-23 08:41:04','',3664,'https://farmchemie.yasithawd.com/wp-content/uploads/2023/09/CEVAC-FP-L_300px-1.png',0,'attachment','image/png',0),(3831,1,'2023-09-23 08:42:26','2023-09-23 08:42:26','','CSR','','inherit','','closed','','csr-2','','','2023-09-23 08:42:26','2023-09-23 08:42:26','',3468,'https://farmchemie.yasithawd.com/wp-content/uploads/2023/09/CSR.gif',0,'attachment','image/gif',0),(3832,1,'2023-09-23 09:03:20','2023-09-23 09:03:20','','Treizuril_300px','','inherit','','closed','','treizuril_300px-2','','','2023-09-23 09:03:20','2023-09-23 09:03:20','',3638,'https://farmchemie.yasithawd.com/wp-content/uploads/2023/09/Treizuril_300px-1.png',0,'attachment','image/png',0),(3833,1,'2023-09-23 09:04:57','2023-09-23 09:04:57','','RHEMOX-1kg_600px-x-600px','','inherit','','closed','','rhemox-1kg_600px-x-600px','','','2023-09-23 09:04:57','2023-09-23 09:04:57','',3635,'https://farmchemie.yasithawd.com/wp-content/uploads/2023/09/RHEMOX-1kg_600px-x-600px.png',0,'attachment','image/png',0),(3834,1,'2023-09-23 09:05:18','2023-09-23 09:05:18','','RHEMOX_300px','','inherit','','closed','','rhemox_300px','','','2023-09-23 09:05:18','2023-09-23 09:05:18','',3635,'https://farmchemie.yasithawd.com/wp-content/uploads/2023/09/RHEMOX_300px.png',0,'attachment','image/png',0),(3835,1,'2023-09-23 09:23:59','2023-09-23 09:23:59','','TILMOVET 25 %','<h3>Antibiotic Oral Solution for pigs, chickens, Turkeys and Calves</h3>\n[dt_divider style=\"thick\" /]\n\n&nbsp;\n\n<strong>Composition: </strong>\n\nEach 1 mL contains,\nTilmicosin – 250 mg\n\n[dt_divider style=\"thin\" /]\n\n<strong>Indication: </strong>\n\n<strong>Pigs:</strong> For the treatment of respiratory infections associated with <em>Mycoplasma hyopneumoniae</em>, <em>Pasteurella multocida</em> and <em>Actinobacillus pleuropneumoniae</em> when the disease has been diagnosed at the herd level.\n\n&nbsp;\n\n<strong>Chickens (broilers and pullets):</strong> For the treatment of respiratory infections in poultry flocks associated with <em>Mycoplasma gallisepticum</em> and <em>Mycoplasma synoviae</em> when the disease has been diagnosed at the herd level.\n\n&nbsp;\n\n<strong>Turkeys:</strong> For the treatment of respiratory infections in turkey flocks associated with <em>Mycoplasma gallisepticum</em> and <em>Mycoplasma synoviae</em> when the disease has been diagnosed at the herd level.\n\n&nbsp;\n\n<strong>Calves:</strong> For the treatment of respiratory infections associated with <em>Mannheimia haemolytica</em>,\n<ol>\n 	<li><em>multocida</em>, <em>Mycoplasma bovis</em>and M.<em>dispar</em>when the disease has been diagnosed at the herd level</li>\n</ol>\n[dt_divider style=\"thin\" /]\n\n<strong>Contraindication: </strong>\n\nDo not use in case of hypersensitivity to the active substance or in cases of known resistance to Tilmicosin. Do not use in horses.\n\n[dt_divider style=\"thin\" /]\n\n<strong>Withdrawal time: </strong>\n\nFor meat and offal: Pigs: 14 days Calves: 42 days. Broilers: 12 days Turkeys: 15 days\nFor eggs: Not permitted for use in laying birds producing eggs for human consumption\n\n[dt_divider style=\"thin\" /]\n\n<strong>Dosage:</strong>\n\nFor oral administration through the drinking water or milk replacer.\nPigs: 15-20 mg Tilmicosin per kg body weight for 5 days, i.e. 6-8 ml of product for 100 kg body weight corresponding to 80 ml of product per 100 litres of drinking water for 5 days.\nChickens: 15-20 mg Tilmicosin per kg body weight for 3 days, i.e. 6-8 ml of product for 100kg body weight corresponding to 30 ml of product per 100 litres of drinking water for 3 days.\n\nTurkeys: 10-27 mg Tilmicosin per kg body weight for 3 days, i.e. 4-11 ml of product for 100kg body weight corresponding to 30 ml of product per 100 litres of drinking water for 3 days.\n\nCalves: 12.5 mg Tilmicosin per kg body weight two times per day for 3-5 days, i.e. 1 ml of product for 20 kg body weight two times per day for 3-5 days.\n\n[dt_divider style=\"thin\" /]\n\n<strong>Pack sizes: </strong>\n\n60 mL, 240 mL and 960 mL\n\n&nbsp;\n\n[dt_divider style=\"thick\" /]\n\n&nbsp;','inherit','closed','closed','','3644-autosave-v1','','','2023-09-23 09:23:59','2023-09-23 09:23:59','',3644,'https://farmchemie.yasithawd.com/?p=3835',0,'revision','',0),(3836,1,'2023-09-23 09:42:59','2023-09-23 09:42:59','','Cinaprim_1kg_600px-x-600px','','inherit','','closed','','cinaprim_1kg_600px-x-600px','','','2023-09-23 09:42:59','2023-09-23 09:42:59','',3630,'https://farmchemie.yasithawd.com/wp-content/uploads/2023/09/Cinaprim_1kg_600px-x-600px.png',0,'attachment','image/png',0),(3837,1,'2023-09-23 10:22:18','0000-00-00 00:00:00','','Auto Draft','','auto-draft','','','','','','','2023-09-23 10:22:18','0000-00-00 00:00:00','',0,'https://farmchemie.yasithawd.com/?p=3837',0,'post','',0),(3838,1,'2023-09-23 10:47:03','2023-09-23 10:47:03','','Rentol-10_300px','','inherit','','closed','','rentol-10_300px','','','2023-09-23 10:47:03','2023-09-23 10:47:03','',3623,'https://farmchemie.yasithawd.com/wp-content/uploads/2023/09/Rentol-10_300px.png',0,'attachment','image/png',0),(3839,1,'2023-09-23 10:47:18','2023-09-23 10:47:18','','Rentol-10_600px-x-600px','','inherit','','closed','','rentol-10_600px-x-600px','','','2023-09-23 10:47:18','2023-09-23 10:47:18','',3623,'https://farmchemie.yasithawd.com/wp-content/uploads/2023/09/Rentol-10_600px-x-600px.png',0,'attachment','image/png',0),(3840,1,'2023-09-23 11:09:36','2023-09-23 11:09:36','','Calci_Gel_600px-x-600px','','inherit','','closed','','calci_gel_600px-x-600px','','','2023-09-23 11:09:36','2023-09-23 11:09:36','',3628,'https://farmchemie.yasithawd.com/wp-content/uploads/2023/09/Calci_Gel_600px-x-600px.png',0,'attachment','image/png',0),(3841,1,'2023-09-23 11:10:11','2023-09-23 11:10:11','','Calci_Gel_300px','','inherit','','closed','','calci_gel_300px','','','2023-09-23 11:10:11','2023-09-23 11:10:11','',3628,'https://farmchemie.yasithawd.com/wp-content/uploads/2023/09/Calci_Gel_300px.png',0,'attachment','image/png',0),(3842,1,'2023-09-23 11:14:52','2023-09-23 11:14:52','','LEVERM® 600_300px','','inherit','','closed','','leverm-600_300px','','','2023-09-23 11:14:52','2023-09-23 11:14:52','',3621,'https://farmchemie.yasithawd.com/wp-content/uploads/2023/09/LEVERM®-600_300px.png',0,'attachment','image/png',0),(3843,1,'2023-09-23 11:15:24','2023-09-23 11:15:24','','LEVERM®-600-Tab_300px','','inherit','','closed','','leverm-600-tab_300px','','','2023-09-23 11:15:24','2023-09-23 11:15:24','',3621,'https://farmchemie.yasithawd.com/wp-content/uploads/2023/09/LEVERM®-600-Tab_300px.png',0,'attachment','image/png',0),(3844,1,'2023-09-23 11:16:39','2023-09-23 11:16:39','','LEVERM®-3000-Bolus_300px','','inherit','','closed','','leverm-3000-bolus_300px','','','2023-09-23 11:16:39','2023-09-23 11:16:39','',3622,'https://farmchemie.yasithawd.com/wp-content/uploads/2023/09/LEVERM®-3000-Bolus_300px.png',0,'attachment','image/png',0),(3845,1,'2023-09-23 11:16:58','2023-09-23 11:16:58','','LEVERM®-3000-Bolus_600px-x-600px','','inherit','','closed','','leverm-3000-bolus_600px-x-600px','','','2023-09-23 11:16:58','2023-09-23 11:16:58','',3622,'https://farmchemie.yasithawd.com/wp-content/uploads/2023/09/LEVERM®-3000-Bolus_600px-x-600px.png',0,'attachment','image/png',0),(3846,1,'2023-09-23 11:33:52','2023-09-23 11:33:52','','Lev-Ox-2400-BOLUS_300px','','inherit','','closed','','lev-ox-2400-bolus_300px','','','2023-09-23 11:33:52','2023-09-23 11:33:52','',3619,'https://farmchemie.yasithawd.com/wp-content/uploads/2023/09/Lev-Ox-2400-BOLUS_300px.png',0,'attachment','image/png',0),(3847,1,'2023-09-23 11:34:16','2023-09-23 11:34:16','','Lev-Ox-2400-BOLUS_600px-x-600px','','inherit','','closed','','lev-ox-2400-bolus_600px-x-600px','','','2023-09-23 11:34:16','2023-09-23 11:34:16','',3619,'https://farmchemie.yasithawd.com/wp-content/uploads/2023/09/Lev-Ox-2400-BOLUS_600px-x-600px.png',0,'attachment','image/png',0),(3848,1,'2023-09-23 11:57:26','2023-09-23 11:57:26','','BOLOS_UTERINOS_600px x 600px','','inherit','','closed','','bolos_uterinos_600px-x-600px','','','2023-09-23 11:57:26','2023-09-23 11:57:26','',3627,'https://farmchemie.yasithawd.com/wp-content/uploads/2023/09/BOLOS_UTERINOS_600px-x-600px.png',0,'attachment','image/png',0),(3849,1,'2023-09-23 11:57:41','2023-09-23 11:57:41','','BOLOS_UTERINOS_300px','','inherit','','closed','','bolos_uterinos_300px','','','2023-09-23 11:57:41','2023-09-23 11:57:41','',3627,'https://farmchemie.yasithawd.com/wp-content/uploads/2023/09/BOLOS_UTERINOS_300px.png',0,'attachment','image/png',0),(3850,1,'2023-09-23 12:03:38','2023-09-23 12:03:38','','Calci_Gel_600px-x-600px','','inherit','','closed','','calci_gel_600px-x-600px-2','','','2023-09-23 12:03:38','2023-09-23 12:03:38','',3628,'https://farmchemie.yasithawd.com/wp-content/uploads/2023/09/Calci_Gel_600px-x-600px-1.png',0,'attachment','image/png',0),(3851,1,'2023-09-23 12:03:57','2023-09-23 12:03:57','','Calci_Gel_300px','','inherit','','closed','','calci_gel_300px-2','','','2023-09-23 12:03:57','2023-09-23 12:03:57','',3628,'https://farmchemie.yasithawd.com/wp-content/uploads/2023/09/Calci_Gel_300px-1.png',0,'attachment','image/png',0),(3852,1,'2023-09-23 12:05:06','2023-09-23 12:05:06','','OXITOLAC_600px x 600px','','inherit','','closed','','oxitolac_600px-x-600px','','','2023-09-23 12:05:06','2023-09-23 12:05:06','',3625,'https://farmchemie.yasithawd.com/wp-content/uploads/2023/09/OXITOLAC_600px-x-600px.png',0,'attachment','image/png',0),(3853,1,'2023-09-23 12:05:24','2023-09-23 12:05:24','','OXITOLAC_300px','','inherit','','closed','','oxitolac_300px','','','2023-09-23 12:05:24','2023-09-23 12:05:24','',3625,'https://farmchemie.yasithawd.com/wp-content/uploads/2023/09/OXITOLAC_300px.png',0,'attachment','image/png',0),(3854,1,'2023-09-23 12:19:57','2023-09-23 12:19:57','','ULTRAFORT B','<h3>Injectable Vitamin B Complex</h3>\n[dt_divider style=\"thick\" /]\n\n&nbsp;\n\n<strong>Composition: </strong>\n\nEach 1 mL contains,\nVitamin B1 (thiamine) - 100 mg\nVitamin B2 (riboflavin) - 5 mg\nVitamin B6 (pyridoxine) - 50 mg\nVitamin B12 (cyanocobalamin) - 100 mcg\nNicotinamide (niacin) - 150 mg\nDexpanthenol - 5 mg\n\n[dt_divider style=\"thin\" /]\n\n<strong>Indication: </strong>\n\nIndicated for the treatment of B - complex vitamin deficiencies while acting also as anti-anemic and neurotonic; stimulant of appetite, hematopoiesis and production; stress relief and reactivator of metabolism in cases of parasitic or infectious diseases.\n\n[dt_divider style=\"thin\" /]\n\n<strong>Withdrawal time: </strong>\n\nFor meat – Zero days\nFor milk – Zero days\n\n[dt_divider style=\"thin\" /]\n\n<strong>Dosage:</strong>\n\nAdminister by intramuscular or subcutaneous route. Cattle and horses: 1 ml / 100 kg b.w. per day. Pigs, sheep and goats: 0.5 ml / 50 kg b.w. per day. Dogs: 0.5 - 2 ml / animal per day. Administer for 2 to 3 days, according to the criteria of the veterinarian.\n\n[dt_divider style=\"thin\" /]\n\n<strong>Pack sizes: </strong>\n\n10 mL,20 mL, 50 mL, 100 mL and 250 mL\n\n&nbsp;\n\n[dt_divider style=\"thick\" /]\n\n&nbsp;','inherit','closed','closed','','3626-autosave-v1','','','2023-09-23 12:19:57','2023-09-23 12:19:57','',3626,'https://farmchemie.yasithawd.com/?p=3854',0,'revision','',0),(3855,2,'2023-09-23 13:17:22','0000-00-00 00:00:00','','Auto Draft','','auto-draft','','','','','','','2023-09-23 13:17:22','0000-00-00 00:00:00','',0,'https://farmchemie.yasithawd.com/?p=3855',0,'post','',0),(3856,2,'2023-09-23 17:13:48','2023-09-23 17:13:48','','VECTROMUNE FP - MG','<h3>Live Freeze – Dried Vaccine for Immunization against Fowl Fox and <em>Mycoplasma gallisepticum</em></h3>\r\n[dt_divider style=\"thick\" /]\r\n\r\n&nbsp;\r\n\r\n<strong>Composition: </strong>\r\n\r\nLive, freeze-dried vaccine for immunization against fowl pox and <em>Mycoplasma gallisepticum</em> contains Fowl pox-<em>Mycoplasma gallisepticum</em>(S6 &amp; R strains) -min. 103.7 TCID50 per dose through expiration\r\n\r\n[dt_divider style=\"thin\" /]\r\n\r\n<strong>Indication: </strong>\r\n\r\nLive, freeze-dried vaccine for the immunization of chickens against Fowl Pox and <em>Mycoplasma gallisepticum</em>\r\n\r\n[dt_divider style=\"thin\" /]\r\n\r\n<strong>Dosage:</strong>\r\n\r\nAs per the recommendation of the veterinarian.\r\n\r\n[dt_divider style=\"thin\" /]\r\n\r\n<strong>Pack sizes: </strong>\r\n\r\n1000 doses\r\n\r\n&nbsp;\r\n\r\n[dt_divider style=\"thick\" /]\r\n\r\n&nbsp;','inherit','closed','closed','','3673-autosave-v1','','','2023-09-23 17:13:48','2023-09-23 17:13:48','',3673,'https://farmchemie.yasithawd.com/?p=3856',0,'revision','',0),(3857,2,'2023-09-23 14:08:23','2023-09-23 14:08:23','','DOXYNEO','<h3>Dual action broad spectrum water soluble antibiotic mixture</h3>\n[dt_divider style=\"thick\" /]\n\n&nbsp;\n\n<strong>Composition: </strong>\n\nEach 1 g contains,\nDoxycycline hyclate - 100 mg\nNeomycin sulphate - 100 mg\n\n[dt_divider style=\"thin\" /]\n\n<strong>Indication: </strong>\n\nIndicated to Gastrointestinal and respiratory infections caused by Doxycycline and Neomycin sensitive micro-organisms like <em>Bordetella, Campylobacter, Chlamydia, E. coli, Haemophilus, Mycoplasma, Pasteurella, Rickettsia, Salmonella, Staphylococcus</em> and <em>Streptococcus</em> spp. in calves, kids, poultry, lambs and swine\n\n[dt_divider style=\"thin\" /]\n\n<strong>Contraindication: </strong>\n\nIt is contraindicated to use in animals with a seriously impaired hepatic function, animals with an active microbial digestion and hypersensitivity to tetracyclines and/or neomycin. Concurrent administration of penicillines, cephalosporins, quinolones, cycloserine and bacteriostatic agents with Doxycycline and Neomycin combination is discouraged.\n\n[dt_divider style=\"thin\" /]\n\n<strong>Withdrawal time: </strong>\n\nMeat -7 Days\nEggs – 7 Days\n\n[dt_divider style=\"thin\" /]\n\n<strong>Dosage:</strong>\n\nPoultry: Prevention of early chick mortality – 1 g of DOXYNEO in 10 litres of water for 3 – 4 days. Repeat dose after 4th week.\nIn several infections – 1 g of DOXYNEO in 5 litres of water for 4 – 5 days.\n\nGoats, Sheep, Calves and Swine: 0.5 g DOXYNEO per 50 kg of Body weight for 3 – 5 days.\n\n[dt_divider style=\"thin\" /]\n\n<strong>Pack sizes: </strong>\n\n25 g, 100 g and 1 kg\n\n&nbsp;\n\n[dt_divider style=\"thick\" /]\n\n&nbsp;','inherit','closed','closed','','3631-autosave-v1','','','2023-09-23 14:08:23','2023-09-23 14:08:23','',3631,'https://farmchemie.yasithawd.com/?p=3857',0,'revision','',0),(3858,2,'2023-09-23 14:13:31','2023-09-23 14:13:31','','GANADEXIL ENROFLOXACINA','<h3>Enrofloxacin 10% Oral Solution for Poultry</h3>\n[dt_divider style=\"thick\" /]\n\n&nbsp;\n\n<strong>Composition: </strong>\n\nEach 1 mL contains,\nEnrofloxacin – 100 mg\n\n[dt_divider style=\"thin\" /]\n\n<strong>Indication: </strong>\n\nTreatment of colibacillosis, salmonellosis and infections caused by <em>Mycoplasma</em> spp.\n\n[dt_divider style=\"thin\" /]\n\n<strong>Contraindication: </strong>\n\nDo not use in case of resistance to other quinolones, because of cross-resistance. I relation to fluoroquinolones, a complete cross-resistance exists. Do not use in animals with previous case of streptococcal infections.\n\n[dt_divider style=\"thin\" /]\n\n<strong>Withdrawal time: </strong>\n\nFor meat – 4 days\nFor eggs – Do not use\n\n[dt_divider style=\"thin\" /]\n\n<strong>Dosage:</strong>\n\nOral use in drinking water. The general dosage is 0.1 ml per kg of body weight. It is obtained by administering 0.5 L/1000 L of drinking water (50 ppm of Enrofloxacin) for 3 consecutive days. In case of salmonellosis, the length of treatment is 5 days. Provided the dosage form and that the water consumption depends on the clinical condition of the animal, for an adequate dosage, the concentration of the antimicrobial agent will be adjusted taking into consideration the daily water consumption.\n\n[dt_divider style=\"thin\" /]\n\n<strong>Pack sizes: </strong>\n\n10 mL , 25 mL, 100 mL, 1 L,\n\n&nbsp;\n\n[dt_divider style=\"thick\" /]\n\n&nbsp;','inherit','closed','closed','','3633-autosave-v1','','','2023-09-23 14:13:31','2023-09-23 14:13:31','',3633,'https://farmchemie.yasithawd.com/?p=3858',0,'revision','',0),(3859,2,'2023-09-23 14:24:53','2023-09-23 14:24:53','','TRIMETHOSULFA ORALE','<h3>Oral Solution for use in Drinking water or Liquid Feed</h3>\n[dt_divider style=\"thick\" /]\n\n&nbsp;\n\n<strong>Composition: </strong>\n\nEach 1 mL contains,\nSulfadiazine – 200 mg\nTrimethoprim – 40 mg\n\n[dt_divider style=\"thin\" /]\n\n<strong>Indication: </strong>\n\nTreatment of primary or secondary bacterial infections to viral infections, septicaemic or localised, affecting the respiratory, digestive, genital, urinary, cutaneous and motor apparatus and in the coccidiosis. In particular.\nCalves: infections caused by susceptible bacteria such as <em>Arcanobacterium pyogenes, Listeria monocytogenes, Staphylococcus aureus, Streptococcus</em> spp., E. <em>coli, Klebsiella pneumoniae, Pasteurella multocida, Salmonella</em> spp., <em>Proteus</em> spp.\n\nPigs: infections caused by sensitive bacteria such as A. <em>pleuropneumoniae, Bordetella bronchiseptica,</em> E. <em>coli, Haemophilus parasuis, Pasteurella multocida</em> and <em>Salmonella</em> spp.\n\nBroilers and turkeys: infections caused by susceptible bacteria such as <em>Arcanobacterium pyogenes, Erysipelothrix rhusiopathiae, Staphylococcus aureus,</em> E. <em>coli, Klebsiella pneumoniae, Salmonella</em> spp. and <em>Enterobacte.</em>\n\nRabbits: infections caused by susceptible bacteria such as <em>Corynebacterium pseudotuberculosis, Listeria monocytogenes, Staphylococcus aureus, Bordetella bronchiseptica,</em> E. <em>coli</em> and <em>Klebsiella pneumonia</em>\n\n[dt_divider style=\"thin\" /]\n\n<strong>Contraindication: </strong>\n\nDo not administer to animals with hypersensitivity to Sulphonamides or to any of the excipients. Do not use in case of infection by germs resistant to Sulphonamides. Do not administer to animals with impaired liver, kidney functions or blood disorders.\n\n[dt_divider style=\"thin\" /]\n\n<strong>Withdrawal time: </strong>\n\nFor meat and entrails: calves 9 days; pigs 3 days; broiler chickens 3 days.\nDo not administer to animals producing eggs for human consumption.\n\n[dt_divider style=\"thin\" /]\n\n<strong>Dosage:</strong>\n\nDosage and use directions Calves, pigs and rabbits: 200 mg of sulfadiazine and 40 mg of trimethoprim per 10 kg b.w., equivalent to 1 ml of product diluted in drinking water or liquid feed. Broilers and turkeys: 20 mg of sulfadiazine and 4 mg of trimethoprim/kg b.w. equal to 4 ml per 8-10 litres of drinking water. Treatment duration: 5 days.\n\n[dt_divider style=\"thin\" /]\n\n<strong>Pack sizes: </strong>\n\n50 mL, 250 mL and 1 L\n\n&nbsp;\n\n[dt_divider style=\"thick\" /]\n\n&nbsp;','inherit','closed','closed','','3636-autosave-v1','','','2023-09-23 14:24:53','2023-09-23 14:24:53','',3636,'https://farmchemie.yasithawd.com/?p=3859',0,'revision','',0),(3860,1,'2023-09-23 15:34:49','2023-09-23 15:34:49','','Contact Us','','inherit','','closed','','contact-us-2','','','2023-09-23 15:34:49','2023-09-23 15:34:49','',2622,'https://farmchemie.yasithawd.com/wp-content/uploads/2023/09/Contact-Us.gif',0,'attachment','image/gif',0),(3861,2,'2023-09-23 16:19:22','2023-09-23 16:19:22','','COXI-RID','<h3>Combination of Sulfaquinoxaline, Diaveridine, Vitamin A and Vitamin K Water Soluble Powder</h3>\n[dt_divider style=\"thick\" /]\n\n&nbsp;\n\n<strong>Composition: </strong>\n\nEach 1 g contains,\nSulfaquinoxaline - 200 mg\nDiaveridine - 50 mg\nVitamin A - 2.5 MIU\nVitamin K - 5 mg\n\n[dt_divider style=\"thin\" /]\n\n<strong>Indication: </strong>\n\nTreatment of intestinal coccidiosis of broilers and replacement birds caused by <em>Eimeria acervulina, E. necatrix, E. mivati, E. maximum, E. tenella, E. brunetti.</em>\n\n[dt_divider style=\"thin\" /]\n\n<strong>Contraindication: </strong>\n\nDo not administer any sulpha containing drug while Coxi-Rid is in use.\n\n[dt_divider style=\"thin\" /]\n\n<strong>Withdrawal time: </strong>\n\nMeat-7 Days\nEggs-10 Days\n\n[dt_divider style=\"thin\" /]\n\n<strong>Dosage:</strong>\n\nMix 62.5 g in 100 L of water or 125 g in 100 kg of Feed for three days. Then leave animals without treatment for 2 days. Then continue treatment for another 3 days. The dosage regimen can be further continued if necessary.\n\n[dt_divider style=\"thin\" /]\n\n<strong>Pack sizes: </strong>\n\n25 g, 125 g 500 g and 1 kg\n\n&nbsp;\n\n[dt_divider style=\"thick\" /]\n\n&nbsp;','inherit','closed','closed','','3637-autosave-v1','','','2023-09-23 16:19:22','2023-09-23 16:19:22','',3637,'https://farmchemie.yasithawd.com/?p=3861',0,'revision','',0),(3862,2,'2023-09-23 16:23:15','2023-09-23 16:23:15','','TREIZURIL','<h3>Oral Solution Contains Toltrazuril for use in Drinking water</h3>\r\n[dt_divider style=\"thick\" /]\r\n\r\n&nbsp;\r\n\r\n<strong>Composition: </strong>\r\n\r\nEach 1 mL contains,\r\nToltrazuril – 25 mg\r\n\r\n[dt_divider style=\"thin\" /]\r\n\r\n<strong>Indication: </strong>\r\n\r\nPoultry: Indication of coccidiosis caused by <em>Eimeria acervtlina, Eimeria brunette, Eimeria maxima, Eimeria necatrix, Eimeria tenella</em> and <em>Eimeria mitis.</em>\r\n\r\n[dt_divider style=\"thin\" /]\r\n\r\n<strong>Contraindication: </strong>\r\n\r\nDo not use in case of hypersensitivity to the active substance or in cases of known resistance to Toltrazuril.\r\n\r\n[dt_divider style=\"thin\" /]\r\n\r\n<strong>Withdrawal time: </strong>\r\n\r\nFor meat and entrails: Pigs: Broilers: 14 days\r\nFor eggs: Not permitted for use in laying birds producing eggs for human consumption\r\n\r\n[dt_divider style=\"thin\" /]\r\n\r\n<strong>Dosage:</strong>\r\n\r\nTo be administered continuously over 24 hours, or in an amount of water corresponding to 8 hours of consumption. 1 mL of product per litre of water in the cases of continuous administration for 48 hours or 3 mL of product per litre of water in the case of administration in 8 hours.\r\n\r\n[dt_divider style=\"thin\" /]\r\n\r\n<strong>Pack sizes: </strong>\r\n\r\n100 mL, 250 mL and 1 L\r\n\r\n&nbsp;\r\n\r\n[dt_divider style=\"thick\" /]\r\n\r\n&nbsp;','inherit','closed','closed','','3638-autosave-v1','','','2023-09-23 16:23:15','2023-09-23 16:23:15','',3638,'https://farmchemie.yasithawd.com/?p=3862',0,'revision','',0),(3863,2,'2023-09-23 16:49:06','2023-09-23 16:49:06','','VERMXIL','<h3>Albendazole 10%</h3><p>[dt_divider style=\"thick\" /]</p><p><br></p><p><strong>Composition: </strong></p><p>Each 1 mL contains,<br>Albendazole – 100 mg</p><p>[dt_divider style=\"thin\" /]</p><p><strong>Indication: </strong></p><p>Pigs: For the treatment of swine dysentery caused by Tiamulin-susceptible <em>Brochyspiro hvodvsenterioe</em>. For the treatment of enzootic pneumonia caused by Tiamulin-susceptible <em>Mycoplosmo hyopneumonioe</em>.</p><p>Chickens: For treatment of chronic respiratory disease in chickens</p><p>[dt_divider style=\"thin\" /]</p><p><strong>Withdrawal time: </strong></p><p>For meat - Pigs: 5 days after the last administration of the preparation. Chickens: 3 days after the last administration of the preparation.</p><p>[dt_divider style=\"thin\" /]</p><p><strong>Dosage:</strong></p><p>Pigs: Swine dysenteria caused by <em>Brachyspira hyodysenteriae</em>: 8.8 mg Tiamulin hydrogen fumarate per kg bodyweight per day for 5 consecutive days. Enzootic pneumonia caused by <em>Mycoplasma hyopneumoniae</em>: 15-20 mg Tiamulin hydrogen fumarate per kg bodyweight per day for 5 days. To ensure a correct dosage, body weight should be determined as accurately as possible to avoid underdosing</p><p>Chickens: For treatment of CRD\' 100 g/180 L water for 3-5 days. During the treatment only medicated water must be given</p><p>The product can be added directly to the required volume of drinking water or a concentrated solution can be prepared to be diluted to the final concentration afterward. The maximum solubility of the product is 10 gram/liter.</p><p>[dt_divider style=\"thin\" /]</p><p><strong>Pack sizes: </strong></p><p>20 mL, 100 mL, 200mL and 1 L</p><p><br></p><p>[dt_divider style=\"thick\" /]</p><p><br></p>','inherit','closed','closed','','3640-autosave-v1','','','2023-09-23 16:49:06','2023-09-23 16:49:06','',3640,'https://farmchemie.yasithawd.com/?p=3863',0,'revision','',0),(3864,2,'2023-09-23 16:54:21','2023-09-23 16:54:21','','PHARMASIN 100 % W/W','<h3>Granules for Use in Drinking Water for Chickens, Pigs, Turkeys and Claves</h3>\n[dt_divider style=\"thick\" /]\n\n&nbsp;\n\n<strong>Composition: </strong>\n\nEach 1 g contains,\nTylosin tartrate – 1 g\n\n[dt_divider style=\"thin\" /]\n\n<strong>Indication: </strong>\n\nCalves: Treatment of pneumonia caused by <em>Mycoplasma</em> spp when the disease has been established in the herd\n\nPigs: Treatment of enzootic pneumonia caused by <em>Mycoplasma hyopneumoniae</em> and <em>Mycoplasma hyorhinis</em> when the when the disease has been established in the herd.\nTreatment of Porcine Intestinal Adenomatosis (Ileitis) associated with <em>Lawsonia intracellularis</em> when the disease has been established in the herd.\n\nChickens: Treatment of chronic respiratory diseases (CRD) caused by <em>Mycoplasma gallisepticum</em> and <em>Mycoplasma synoviae</em> when the disease has been established in the flock\nTreatment and prevention of necrotic enteritis caused by <em>Clostridium perfringens</em> when the disease has been established in the flock\n\nTurkeys: Treatment of infectious sinusitis caused by <em>Mycoplasma gallisepticum</em>. When the disease has been established in the flock\n\n[dt_divider style=\"thin\" /]\n\n<strong>Contraindication: </strong>\n\nDo not use in animal with known hypersensitivity to Tylosin or other macrolides.\nDo not use in cases with known resistance to Tylosin or cross-resistance to other macrolides (MLS-resistance).\nDo not use in animals vaccinated with tylosin-sensitive vaccines either at the same time or within 1 week previously.\nDo not use in animals with hepatic disorders.\nDo not use in horses.\n\n[dt_divider style=\"thin\" /]\n\n<strong>Withdrawal time: </strong>\n\nCalves (meat and offal) – 12 days\nPigs (meat and offal) – 1 day\nTurkeys (meat and offal) – 2 days\nTurkeys (eggs) – 1 day\nChicken (meat and offal) – 1 day\nChicken (eggs) – Zero days\n\n[dt_divider style=\"thin\" /]\n\n<strong>Dosage:</strong>\n\nCalves: 10 - 20 mg tylosin per kg BW (corresponding to 11 - 22 mg of the veterinary medicinal product per kg BW), twice daily (corresponding to a daily dose of 20 - 40 mg tylosin per kg BW), for 7 - 14 days.\nTurkeys: 75 100 mg tylosin per kg BW per day (corresponding to 82.5 - 110 mg of the veterinary medicinal product per kg BW) for 3 - 5 days.\n\nChickens: For the treatment of chronic respiratory disease: 75 - 100 mg tylosin per kg BW per day (corresponding to 82.5 110 mg of the veterinary medicinal product per kg BW) for 3 - 5 days. For the treatment of necrotic enteritis: 20 mg tylosin per kg BW per day (corresponding to 22 mg of the veterinary medicinal product) for 3 days.\n\nPigs: For the treatment of enzootic pneumonia: 20 mg tylosin per kg BW per day (corresponding to 22 mg of the veterinary medicinal product per kg BW) for 10 days. For the treatment of ileitis or PIA: 5 - 10 mg tylosin per kg BW per day (corresponding to 5.5 - 11 mg of the veterinary medicinal product per kg BW) for 7 days\n\n[dt_divider style=\"thin\" /]\n\n<strong>Pack sizes: </strong>\n\n110 g, and 1.1 kg\n\n&nbsp;\n\n[dt_divider style=\"thick\" /]\n\n&nbsp;','inherit','closed','closed','','3643-autosave-v1','','','2023-09-23 16:54:21','2023-09-23 16:54:21','',3643,'https://farmchemie.yasithawd.com/?p=3864',0,'revision','',0),(3865,2,'2023-09-23 17:09:24','2023-09-23 17:09:24','','VETMULIN 450 mg','<h3>Granules for oral solution</h3><p>[dt_divider style=\"thick\" /]</p><p><br></p><p><strong>Composition: </strong></p><p>Each 1 g contains,<br>Tiamulin hydrogen fumarate – 450 mg</p><p>[dt_divider style=\"thin\" /]</p><p><strong>Indication: </strong></p><p>Pigs: For the treatment of swine dysentery caused by Tiamulin-susceptible <em>Brochyspiro hvodvsenterioe</em>. For the treatment of enzootic pneumonia caused by Tiamulin-susceptible <em>Mycoplosmo hyopneumonioe</em>.</p><p>Chickens: For treatment of chronic respiratory disease in chickens</p><p>[dt_divider style=\"thin\" /]</p><p><strong>Contraindication: </strong></p><p>Do not administer to animals with hypersensitivity to Sulphonamides or to any of the excipients. Do not use in case of infection by germs resistant to Sulphonamides. Do not administer to animals with impaired liver, kidney functions or blood disorders..</p><p>[dt_divider style=\"thin\" /]</p><p><strong>Withdrawal time: </strong></p><p>For meat - Pigs: 5 days after the last administration of the preparation. Chickens: 3 days after the last administration of the preparation.</p><p>[dt_divider style=\"thin\" /]</p><p><strong>Dosage:</strong></p><p>Pigs: Swine dysenteria caused by <em>Brachyspira hyodysenteriae</em>: 8.8 mg Tiamulin hydrogen fumarate per kg bodyweight per day for 5 consecutive days. Enzootic pneumonia caused by <em>Mycoplasma hyopneumoniae</em>: 15-20 mg Tiamulin hydrogen fumarate per kg bodyweight per day for 5 days. To ensure a correct dosage, body weight should be determined as accurately as possible to avoid underdosing</p><p>Chickens: For treatment of CRD\' 100 g/180 L water for 3-5 days. During the treatment only medicated water must be given</p><p>The product can be added directly to the required volume of drinking water or a concentrated solution can be prepared to be diluted to the final concentration afterward. The maximum solubility of the product is 10 gram/liter.</p><p>[dt_divider style=\"thin\" /]</p><p><strong>Pack sizes: </strong></p><p>1 kg</p><p><br></p><p>[dt_divider style=\"thick\" /]</p><p><br></p>','inherit','closed','closed','','3645-autosave-v1','','','2023-09-23 17:09:24','2023-09-23 17:09:24','',3645,'https://farmchemie.yasithawd.com/?p=3865',0,'revision','',0),(3866,2,'2023-09-23 17:12:01','2023-09-23 17:12:01','','MS-VAC','<h3>Inactivated oil emulsified vaccine against <em>Mycoplasma synoviae</em></h3><p>[dt_divider style=\"thick\" /]</p><p><br></p><p><strong>Composition: </strong></p><p>Inactivated oil emulsified vaccine against <em>Mycoplasma synoviae</em> infection containing not less than 1 × 1010 CFU/dose of inactivated cultures of <em>Mycoplasma synoviae</em></p><p>[dt_divider style=\"thin\" /]</p><p><strong>Indication: </strong></p><p>Inactivated oil emulsified vaccine for the immunization of chickens against <em>Mycoplasma synoviae</em> infection</p><p>[dt_divider style=\"thin\" /]</p><p><strong>Dosage:</strong></p><p>As per the recommendation of the veterinarian.</p><p>[dt_divider style=\"thin\" /]</p><p><strong>Pack sizes: </strong></p><p>500 doses, 1000 doses,</p><p><br></p><p>[dt_divider style=\"thick\" /]</p><p><br></p>','inherit','closed','closed','','3670-autosave-v1','','','2023-09-23 17:12:01','2023-09-23 17:12:01','',3670,'https://farmchemie.yasithawd.com/?p=3866',0,'revision','',0),(3867,2,'2023-09-24 00:22:36','2023-09-24 00:22:36','','Noworm Plus','<h3><em>Broad – spectrum dewormer for Dogs and Cats</em></h3>\n[dt_divider style=\"thick\" /]\n\n&nbsp;\n\n<strong>Composition: </strong>\n\nEach 1 tablet contains,\nFebantel – 150 mg\nPyrantel pamoate – 144 mg and\nPraziquantel – 50 mg\n\n[dt_divider style=\"thin\" /]\n\n<strong>Indication: </strong>\n\nTreatment of mixed infections by adult cestodes and nematodes of the following species:\nNematodes:\nAscarids: <em>Toxocara canis, Toxascaris leonina</em> (adult and late immature forms).\nHookworms: <em>Uncinaria stenocephala, Ancylostoma caninum</em> (adults).\nWhipworms: <em>Trichuris vulpis</em> (adults).\nCestodes:\nTapeworms: <em>Echinococcus</em> spp., <em>Taenia</em> spp., <em>Dipylidium caninum</em> (adult and immature forms).\n\n[dt_divider style=\"thin\" /]\n\n<strong>Contraindication:</strong>\n\nDo not use in animals with a known sensitivity to the active ingredients or to any of the excipients.\n\n[dt_divider style=\"thin\" /]\n\n<strong>Dosage: </strong>\n\nOne tablet per 10 kg Body weight (&gt;40 kg maximum 4 tablets per treatment)\n\n[dt_divider style=\"thin\" /]\n\n<strong>Pack sizes: </strong>\n\nTwo (2) tablets Twenty (20) tablets and Hundred (100) tablets.\n\n&nbsp;\n\n[dt_divider style=\"thick\" /]\n\n&nbsp;\n\n<a href=\"/wp-content/uploads/2023/08/AVI-VE.pdf\"><i class=\"fa-solid fa-file-pdf fa-2xl\" style=\"color: #039447\"> pdf</i></a> <a href=\"//wp-content/uploads/2023/08/AVI-3-folding-brochure-SInhala-Final-outline_compressed-4.pdf\"><i class=\"fa-solid fa-file-pdf fa-2xl\" style=\"color: #039447\"> pdf</i></a>','inherit','closed','closed','','3366-autosave-v1','','','2023-09-24 00:22:36','2023-09-24 00:22:36','',3366,'https://farmchemie.yasithawd.com/?p=3867',0,'revision','',0),(3868,2,'2023-09-24 00:26:41','2023-09-24 00:26:41','','GANADEXIL ENROFLOXACINA 5% INJECTABLE','<h3><em>Long-acting Solution for Injection</em></h3>\r\n[dt_divider style=\"thick\" /]\r\n\r\n&nbsp;\r\n\r\n<strong>Composition: </strong>\r\n\r\nEach 1 mL contains,\r\nEnrofloxacin – 50 mg\r\n\r\n[dt_divider style=\"thin\" /]\r\n\r\n<strong>Indication: </strong>\r\n\r\nCattle (calves): Respiratory tract infections: Bronchopneumonia, Pasteurellosis, Mycoplasmosis. Gastrointestinal tract infections: Diarrhea caused by <em>Colibacilli</em>, Colibacillosis, Colisepticemia.\r\n\r\nSwine: Treatment of Piglet diarrhea, Diarrhea, and Enterotoxemia caused by E. <em>coli</em> and <em>Salmonella</em> spp., MMA syndrome\r\n\r\nDogs: Treatment of respiratory, digestive, urinary, and skin infections caused by microorganisms sensitive to enrofloxacin.\r\n\r\n[dt_divider style=\"thin\" /]\r\n\r\n<strong>Withdrawal time:</strong>\r\n\r\nFor meat – 7 days\r\n\r\n[dt_divider style=\"thin\" /]\r\n\r\n<strong>Dosage: </strong>\r\n\r\nCattle (calves): Administer 0.5 – 1 ml of GANADEXIL ENROFLOXACINA 5% (equivalent to 25 – 50 mg of enrofloxacin)/10 kg of b.w. daily for 3 days. In the case of salmonellosis or severe infections, the length of treatment is 5 days.\r\nSUBCUTANEOUS ROUTE\r\nDo not apply more than 10 ml at the same injection site.\r\n\r\nSwine: Administer 0.5 – 1 ml of GANADEXIL ENROFLOXACINA 5% (equivalent to 25 – 50 mg of enrofloxacin)/10 kg of b.w. daily for 3 days. In the case of salmonellosis or severe infections, the length of treatment is 5 days.\r\nINTRAMUSCULAR ROUTE\r\nDo not apply more than 2.5 ml at the same injection site.\r\n\r\nDogs: Administer 0.1 ml of GANADEXIL ENROFLOXACINA 5% (equivalent to 5 mg of enrofloxacin)/kg of b.w. daily for 5 days.\r\nSUBCUTANEOUS ROUTE\r\nIf recovery does not occur in 3 days, treatment should be reconsidered.\r\n\r\n[dt_divider style=\"thin\" /]\r\n\r\n<strong>Pack sizes: </strong>\r\n\r\n100 mL\r\n\r\n&nbsp;\r\n\r\n[dt_divider style=\"thick\" /]\r\n\r\n&nbsp;\r\n\r\n<a href=\"/wp-content/uploads/2023/08/AVI-VE.pdf\"><i class=\"fa-solid fa-file-pdf fa-2xl\" style=\"color: #039447\"> pdf</i></a> <a href=\"//wp-content/uploads/2023/08/AVI-3-folding-brochure-SInhala-Final-outline_compressed-4.pdf\"><i class=\"fa-solid fa-file-pdf fa-2xl\" style=\"color: #039447\"> pdf</i></a>','inherit','closed','closed','','3432-autosave-v1','','','2023-09-24 00:26:41','2023-09-24 00:26:41','',3432,'https://farmchemie.yasithawd.com/?p=3868',0,'revision','',0),(3869,2,'2023-09-24 01:37:37','2023-09-24 01:37:37','','IMIDOCARB - LH','<h3>Injectable Solution Imidocarb</h3>\r\n[dt_divider style=\"thick\" /]\r\n\r\n&nbsp;\r\n\r\n<strong>Composition: </strong>\r\n\r\nEach 1 mL contains,\r\nImidocarb dipropionate – 120 mg\r\n\r\n[dt_divider style=\"thin\" /]\r\n\r\n<strong>Indication: </strong>\r\n\r\nTreatment of babesiosis and anaplasmosis produced by: <em>Babesia bovis, Babesia bigemina, Babesiaequi, Babesia caballi, Babesia canis, Anaplasma </em>sp.,<em> Anaplasma marginale</em>.Chemoprophylactic control of babesiosis when moving animals from clean areas to endemic areas of babesiosis and anaplasmosis.\r\n\r\n[dt_divider style=\"thin\" /]\r\n\r\n<strong>Contraindication:</strong>\r\n\r\nThe safety and effectiveness of imidocarb has not been determined in puppies or in breeding, lactating or pregnant animals. Risk versus benefits should be considered before using this drug in dogs with impaired lung, liver or kidney function.\r\n\r\n[dt_divider style=\"thin\" /]\r\n\r\n<strong>Withdrawal time:</strong>\r\n\r\nAnimals must not be slaughtered for human consumption until a period of at least 90 days from the last administration has passed. Milk intended for human consumption must not be taken during treatment.\r\n\r\n[dt_divider style=\"thin\" /]\r\n\r\n<strong>Dosage: </strong>\r\n\r\nCattle and dogs: Subcutaneously behind the shoulder\r\nHorses: Intramuscular.\r\n\r\nBabesiosis\r\nCattle: 1.0 ml/100 Kg (Equivalent to 1.2 mg/Kg\r\nHorses: 2.0 ml/100 Kg (Equivalent to 2.4 mg/Kg)\r\nDogs: 0.5 ml/20 Kg (Equivalent to 3 mg/Kg)\r\n\r\nAnaplasmosis\r\nCattle: 2.5 ml/100 Kg (Equivalent to 3 mg/Kg)\r\n\r\nBabesiosis-Anaplasmosis\r\nCattle: 2.5 ml/100 Kg (Equivalent to 3 mg/Kg)\r\n\r\nChemoprophylaxis\r\nCattle: 2.5 ml/100 Kg (Equivalent to 3 mg/Kg\r\nHorses: 2.0 ml/100 Kg (Equivalent to 24 mg/Kg)\r\nUsually, a single dose of Imidocarb-LH is required, although the treatment of infections on horses may require 2 doses with an interval of 48 hours. When animals free of Babesiosis are moved to endemic areas.\r\n\r\n[dt_divider style=\"thin\" /]\r\n\r\n<strong>Pack sizes: </strong>\r\n\r\n10 mL, 50 mL and 100 mL\r\n\r\n&nbsp;\r\n\r\n[dt_divider style=\"thick\" /]\r\n\r\n&nbsp;\r\n\r\n<a href=\"/wp-content/uploads/2023/08/AVI-VE.pdf\"><i class=\"fa-solid fa-file-pdf fa-2xl\" style=\"color: #039447\"> pdf</i></a> <a href=\"//wp-content/uploads/2023/08/AVI-3-folding-brochure-SInhala-Final-outline_compressed-4.pdf\"><i class=\"fa-solid fa-file-pdf fa-2xl\" style=\"color: #039447\"> pdf</i></a>','inherit','closed','closed','','3433-autosave-v1','','','2023-09-24 01:37:37','2023-09-24 01:37:37','',3433,'https://farmchemie.yasithawd.com/?p=3869',0,'revision','',0),(3870,2,'2023-09-24 01:15:53','2023-09-24 01:15:53','','Gard','<h3>Albendazole 10%</h3>\r\n[dt_divider style=\"thick\" /]\r\n\r\n&nbsp;\r\n\r\n<strong>Composition: </strong>\r\n\r\nEach 1 mL contains,\r\nAlbendazole – 100 mg\r\n\r\n[dt_divider style=\"thin\" /]\r\n\r\n<strong>Indication: </strong>\r\n\r\nPigs: For the treatment of swine dysentery caused by Tiamulin-susceptible <em>Brochyspiro hvodvsenterioe</em>. For the treatment of enzootic pneumonia caused by Tiamulin-susceptible <em>Mycoplosmo hyopneumonioe</em>.\r\n\r\nChickens: For treatment of chronic respiratory disease in chickens\r\n\r\n[dt_divider style=\"thin\" /]\r\n\r\n<strong>Withdrawal time: </strong>\r\n\r\nFor meat - Pigs: 5 days after the last administration of the preparation. Chickens: 3 days after the last administration of the preparation.\r\n\r\n[dt_divider style=\"thin\" /]\r\n\r\n<strong>Dosage:</strong>\r\n\r\nPigs: Swine dysenteria caused by <em>Brachyspira hyodysenteriae</em>: 8.8 mg Tiamulin hydrogen fumarate per kg bodyweight per day for 5 consecutive days. Enzootic pneumonia caused by <em>Mycoplasma hyopneumoniae</em>: 15-20 mg Tiamulin hydrogen fumarate per kg bodyweight per day for 5 days. To ensure a correct dosage, body weight should be determined as accurately as possible to avoid underdosing\r\n\r\nChickens: For treatment of CRD\' 100 g/180 L water for 3-5 days. During the treatment only medicated water must be given\r\n\r\nThe product can be added directly to the required volume of drinking water or a concentrated solution can be prepared to be diluted to the final concentration afterward. The maximum solubility of the product is 10 gram/liter.\r\n\r\n[dt_divider style=\"thin\" /]\r\n\r\n<strong>Pack sizes: </strong>\r\n\r\n15 mL and 1 L\r\n\r\n&nbsp;\r\n\r\n[dt_divider style=\"thick\" /]\r\n\r\n&nbsp;','inherit','closed','closed','','3618-autosave-v1','','','2023-09-24 01:15:53','2023-09-24 01:15:53','',3618,'https://farmchemie.yasithawd.com/?p=3870',0,'revision','',0),(3871,2,'2023-09-24 01:21:29','2023-09-24 01:21:29','','Lev Ox 2400 BOLUS','<h3>Broad spectrum anthelmintic combination for cattle</h3>\r\n[dt_divider style=\"thick\" /]\r\n\r\n&nbsp;\r\n\r\n<strong>Composition: </strong>\r\n\r\nEach 1 bolus contains,\r\nLevamisole - 1,000 mg\r\nOxyclozanide - 1,400 mg\r\n\r\n[dt_divider style=\"thin\" /]\r\n\r\n<strong>Indication: </strong>\r\n\r\nLev Ox 2400 bolus is a broad spectrum anthelmintic for use in the treatment and control of gastro-intestinal and pulmonary nematode. Infections and chronic fascioliasis in cattle.\r\n-Lungworms: <em>Dictyocaulus</em> spp.\r\n-Gastro-intestinal worms: <em>Haemonchus</em> spp., <em>Ostertagia spp</em>. (except inhibited Ostertagia larvae in cattle), <em>Nematodirus</em> spp., <em>Trichostrongylus</em> spp., <em>Cooperia</em> spp., <em>Oesophagostomum</em> spp., <em>Bunostomum</em> spp.\r\nLev Ox 2400 bolus also removes most mature <em>Fasciola</em> spp., (flukes) present in the bile duct of the liver.\r\n\r\n[dt_divider style=\"thin\" /]\r\n\r\n<strong>Contraindication: </strong>\r\n\r\nAdministration within 14 days of treatment with organophosphorus compounds or diethylcarbamazine; application of ‘pour-on’ formulations to wet animals. Levamisole is contraindicated in lactating animals (not approved). It should be used cautiously, if at all, in animals that are severely debilitated, or have significant renal or hepatic impairment. Use cautiously or, preferably, delay use in cattle that are stressed due to vaccination, dehorning or castration. Levamisole is not indicated for use as a dirofilarial adulticide. There is no information regarding the safety of this drug in pregnant animals. Although levamisole is considered relatively safe to use in large animals that are pregnant, use only if the potential benefits outweigh the risks\r\nOxyclozanide should not be used in animals that are known to be hypersensitive or allergic to the drug.\r\n\r\n[dt_divider style=\"thin\" /]\r\n\r\n<strong>Withdrawal time: </strong>\r\n\r\nFor meat – 14 days\r\nFor milk - 1 day\r\n\r\n[dt_divider style=\"thin\" /]\r\n\r\n<strong>Dosage:</strong>\r\n<table style=\"height: 183px\" width=\"390\">\r\n<tbody>\r\n<tr>\r\n<td width=\"573\">\r\n<table>\r\n<tbody>\r\n<tr>\r\n<td width=\"205\">Species</td>\r\n<td width=\"204\">Weight</td>\r\n<td width=\"204\">Dosage</td>\r\n</tr>\r\n<tr>\r\n<td rowspan=\"3\" width=\"205\">&nbsp;\r\n\r\nCattle and Buffalos</td>\r\n<td width=\"204\">300 kg</td>\r\n<td width=\"204\">2 Boli</td>\r\n</tr>\r\n<tr>\r\n<td width=\"204\">150 kg</td>\r\n<td width=\"204\">1 Bolus</td>\r\n</tr>\r\n<tr>\r\n<td width=\"204\">75 kg</td>\r\n<td width=\"204\">½  Bolus</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n&nbsp;</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n[dt_divider style=\"thin\" /]\r\n\r\n<strong>Pack sizes: </strong>\r\n\r\nOne Bolus\r\n\r\n&nbsp;\r\n\r\n[dt_divider style=\"thick\" /]\r\n\r\n&nbsp;','inherit','closed','closed','','3619-autosave-v1','','','2023-09-24 01:21:29','2023-09-24 01:21:29','',3619,'https://farmchemie.yasithawd.com/?p=3871',0,'revision','',0),(3872,2,'2023-09-24 01:25:37','2023-09-24 01:25:37','','LEVERM 600 TAB','<h3>LEVAMISOLE DEWORMER TABLET</h3>\r\n[dt_divider style=\"thick\" /]\r\n\r\n&nbsp;\r\n\r\n<strong>Composition: </strong>\r\n\r\nEach 1 tablet contains,\r\nLevamisole – 600 mg\r\n\r\n[dt_divider style=\"thin\" /]\r\n\r\n<strong>Indication: </strong>\r\n\r\nIn sheep and cattle, levamisole has relatively good activity against abomasal nematodes, small intestinal nematodes (not particularly good against <em>Strongyloides</em> spp.), large intestinal nematodes (not <em>Trichuris</em> spp.), and lungworms. Adult forms of species that are usually covered by levamisole, include: <em>Haemonchus</em> spp., <em>Trichostrongylus</em> spp., <em>Osteragia</em> spp., <em>Cooperia</em> spp., <em>Nematodirus</em> spp., <em>Bunostomum</em> spp., <em>Oesophagostomum</em> spp., <em>Chabertia</em> spp., and <em>Dictyocaulus vivapurus</em>. Levamisole is less effective against the immature forms of these parasites and is generally ineffective in cattle (but not sheep) against arrested larval forms. In swine, levamisole is indicated for the treatment of <em>Ascaris suum</em>, <em>Oesophagostomum</em> spp., <em>Strongyloides</em>,<em> Stephanurus</em>, and <em>Metastrongylus</em>.\r\n\r\n[dt_divider style=\"thin\" /]\r\n\r\n<strong>Contraindication: </strong>\r\n\r\nAdministration within 14 days of treatment with organophosphorus compounds or diethylcarbamazine; application of ‘pour-on’ formulations to wet animals. Levamisole is contraindicated in lactating animals (not approved). It should be used cautiously, if at all, in animals that are severely debilitated, or have significant renal or hepatic impairment. Use cautiously or, preferably, delay use in cattle that are stressed due to vaccination, dehorning or castration. Levamisole is not indicated for use as a dirofilarial adulticide. There is no information regarding the safety of this drug in pregnant animals. Although levamisole is considered relatively safe to use in large animals that are pregnant, use only if the potential benefits outweigh the risks.\r\n\r\n[dt_divider style=\"thin\" /]\r\n\r\n<strong>Withdrawal time: </strong>\r\n\r\nFor meat – 5 days\r\nFor milk - Contraindicated in lactating animals\r\n\r\n[dt_divider style=\"thin\" /]\r\n\r\n<strong>Dosage:</strong>\r\n<table style=\"height: 227px\" width=\"340\">\r\n<tbody>\r\n<tr>\r\n<td width=\"573\">&nbsp;\r\n<table>\r\n<tbody>\r\n<tr>\r\n<td width=\"205\">Species</td>\r\n<td width=\"204\">Weight</td>\r\n<td width=\"204\">Dosage</td>\r\n</tr>\r\n<tr>\r\n<td rowspan=\"3\" width=\"205\">&nbsp;\r\n\r\nCalves, Swine and Goats</td>\r\n<td width=\"204\">80 kg</td>\r\n<td width=\"204\">1 Bolus</td>\r\n</tr>\r\n<tr>\r\n<td width=\"204\">40 kg</td>\r\n<td width=\"204\">½ Bolus</td>\r\n</tr>\r\n<tr>\r\n<td width=\"204\">20 kg</td>\r\n<td width=\"204\">¼ Bolus</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n&nbsp;</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n[dt_divider style=\"thin\" /]\r\n\r\n<strong>Pack sizes: </strong>\r\n\r\nOne Tablet\r\n\r\n&nbsp;\r\n\r\n[dt_divider style=\"thick\" /]\r\n\r\n&nbsp;','inherit','closed','closed','','3621-autosave-v1','','','2023-09-24 01:25:37','2023-09-24 01:25:37','',3621,'https://farmchemie.yasithawd.com/?p=3872',0,'revision','',0),(3873,2,'2023-09-24 01:30:22','2023-09-24 01:30:22','','LEVERM 3000 BOLUS','<h3>Anthelmintic for cattle</h3>\r\n[dt_divider style=\"thick\" /]\r\n\r\n&nbsp;\r\n\r\n<strong>Composition: </strong>\r\n\r\nEach 1 bolus contains,\r\nLevamisole – 3000 mg\r\n\r\n[dt_divider style=\"thin\" /]\r\n\r\n<strong>Indication: </strong>\r\n\r\nLevamisole has relatively good activity against abomasal nematodes, small intestinal nematodes (not particularly good against <em>Strongyloides</em> spp.), large intestinal nematodes (not <em>Trichuris</em> spp.), and lungworms. Adult forms of species that are usually covered by levamisole, include: <em>Haemonchus</em> spp., <em>Trichostrongylus</em> spp., <em>Osteragia</em> spp., <em>Cooperia</em> spp., <em>Nematodirus</em> spp., <em>Bunostomum</em> spp., <em>Oesophagostomum</em> spp., <em>Chabertia</em> spp., and <em>Dictyocaulus vivapurus</em>. Levamisole is less effective against the immature forms of these parasites and is generally ineffective in cattle (but not sheep) against arrested larval forms.\r\n\r\n[dt_divider style=\"thin\" /]\r\n\r\n<strong>Contraindication: </strong>\r\n\r\nAdministration within 14 days of treatment with organophosphorus compounds or diethylcarbamazine; application of ‘pour-on’ formulations to wet animals. Levamisole is contraindicated in lactating animals (not approved). It should be used cautiously, if at all, in animals that are severely debilitated, or have significant renal or hepatic impairment. Use cautiously or, preferably, delay use in cattle that are stressed due to vaccination, dehorning or castration. Levamisole is not indicated for use as a dirofilarial adulticide. There is no information regarding the safety of this drug in pregnant animals. Although levamisole is considered relatively safe to use in large animals that are pregnant, use only if the potential benefits outweigh the risks.\r\n\r\n[dt_divider style=\"thin\" /]\r\n\r\n<strong>Withdrawal time: </strong>\r\n\r\nFor meat – 5 days\r\nFor milk - Contraindicated in lactating animals\r\n\r\n[dt_divider style=\"thin\" /]\r\n\r\n<strong>Dosage:</strong>\r\n<table style=\"height: 188px\" width=\"319\">\r\n<tbody>\r\n<tr>\r\n<td width=\"573\">\r\n<table>\r\n<tbody>\r\n<tr>\r\n<td width=\"200\">Species</td>\r\n<td width=\"199\">Weight</td>\r\n<td width=\"199\">Dosage</td>\r\n</tr>\r\n<tr>\r\n<td rowspan=\"3\" width=\"200\">&nbsp;\r\n\r\nCattle and Buffalos</td>\r\n<td width=\"199\">400 kg</td>\r\n<td width=\"199\">1 Bolus</td>\r\n</tr>\r\n<tr>\r\n<td width=\"199\">200 kg</td>\r\n<td width=\"199\">½ Bolus</td>\r\n</tr>\r\n<tr>\r\n<td width=\"199\">100 kg</td>\r\n<td width=\"199\">¼ Bolus</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n&nbsp;</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n[dt_divider style=\"thin\" /]\r\n\r\n<strong>Pack sizes: </strong>\r\n\r\nOne Bolus\r\n\r\n&nbsp;\r\n\r\n[dt_divider style=\"thick\" /]\r\n\r\n&nbsp;','inherit','closed','closed','','3622-autosave-v1','','','2023-09-24 01:30:22','2023-09-24 01:30:22','',3622,'https://farmchemie.yasithawd.com/?p=3873',0,'revision','',0),(3874,2,'2023-09-24 01:43:43','2023-09-24 01:43:43','','BOLOS UTERINOS','<h3>Vaginal ovules</h3>\r\n[dt_divider style=\"thick\" /]\r\n\r\n&nbsp;\r\n\r\n<strong>Composition: </strong>\r\n\r\nEach 4 g contains,\r\nEstradiol benzoate 17 β - 0.001 g\r\nTetracycline hydrochloride - 2.000 g\r\n\r\n[dt_divider style=\"thin\" /]\r\n\r\n<strong>Indication: </strong>\r\n\r\nIndicated for the prevention and treatment of genital tract problems (vaginitis and metritis caused by: <em>Trichomonas</em> spp., <em>Mycoplasma</em> spp., <em>Chlamydia</em> spp., <em>Corynebacterium</em> spp., <em>Listeria monocytogenes</em>, <em>Escherichia coli</em>, <em>Actinomyces</em> spp. and <em>Campylobacter</em> <em>fetus</em>. In placental retentions, when avoiding manual extraction is desired or to prevent from infections in case it is performed.\r\n\r\n[dt_divider style=\"thin\" /]\r\n\r\n<strong>Contraindication: </strong>\r\n\r\nDo not apply in cases of hypersensitivity to any of the components of the formula.\r\n\r\n[dt_divider style=\"thin\" /]\r\n\r\n<strong>Withdrawal time: </strong>\r\n\r\nFor meat - 18 days.\r\nFor milk - 3 days.\r\n\r\n[dt_divider style=\"thin\" /]\r\n\r\n<strong>Dosage:</strong>\r\n\r\nIntrauterine route. In all target species: Introduce ½ - 1 ovule according to the severity, at the bottom of the womb and/or vagina during 3 - 4 days. The duration and intensity of the treatment may only be determined by the veterinarian.\r\n\r\n[dt_divider style=\"thin\" /]\r\n\r\n<strong>Pack sizes: </strong>\r\n\r\n10 ovules (4 g)/ bottle\r\n\r\n&nbsp;\r\n\r\n[dt_divider style=\"thick\" /]\r\n\r\n&nbsp;','inherit','closed','closed','','3627-autosave-v1','','','2023-09-24 01:43:43','2023-09-24 01:43:43','',3627,'https://farmchemie.yasithawd.com/?p=3874',0,'revision','',0),(3875,2,'2023-09-24 01:52:15','2023-09-24 01:52:15','','BactoGrow Premium','<h3>Animal feed additive containing probiotics for incorporation into the feed of animals</h3>\r\n[dt_divider style=\"thick\" /]\r\n\r\n&nbsp;\r\n\r\n<strong>Composition: </strong>\r\n\r\nEach 1 kg contains,\r\n<em>Bacillus licheniformis</em> - 50*109 CFU\r\n<em>Bacillus subtilis</em> - 1200*109 CFU\r\n\r\n[dt_divider style=\"thin\" /]\r\n\r\n<strong>Indication: </strong>\r\n\r\nBetter feed conversion hence increased weight gain. To control &amp; prevent subclinical infections at all stages. To Control and prevent bacterial diarrhea. To prevent uneven &amp; retarded growth. To improve livability. Safe to use in chicks\r\n\r\n[dt_divider style=\"thin\" /]\r\n\r\n<strong>Dosage: </strong>\r\n\r\n500 g per ton of feed or as recommended by the Nutritionist.\r\n\r\n[dt_divider style=\"thin\" /]\r\n\r\n<strong>Pack sizes: </strong>\r\n\r\n25 kg\r\n\r\n&nbsp;\r\n\r\n[dt_divider style=\"thick\" /]\r\n\r\n&nbsp;','inherit','closed','closed','','3609-autosave-v1','','','2023-09-24 01:52:15','2023-09-24 01:52:15','',3609,'https://farmchemie.yasithawd.com/?p=3875',0,'revision','',0),(3876,2,'2023-09-24 02:04:28','2023-09-24 02:04:28','','TILMOVET 25 %','<h3>Antibiotic Oral Solution for pigs, chickens, Turkeys and Calves</h3>\r\n[dt_divider style=\"thick\" /]\r\n\r\n&nbsp;\r\n\r\n<strong>Composition: </strong>\r\n\r\nEach 1 mL contains,\r\nTilmicosin – 250 mg\r\n\r\n[dt_divider style=\"thin\" /]\r\n\r\n<strong>Indication: </strong>\r\n\r\nPigs: For the treatment of respiratory infections associated with <em>Mycoplasma hyopneumoniae, Pasteurella multocida and Actinobacillus pleuropneumoniae</em> when the disease has been diagnosed at the herd level.\r\n\r\nChickens (broilers and pullets): For the treatment of respiratory infections in poultry flocks associated with <em>Mycoplasma gallisepticum</em> and <em>Mycoplasma synoviae</em> when the disease has been diagnosed at the herd level.\r\n\r\nTurkeys: For the treatment of respiratory infections in turkey flocks associated with <em>Mycoplasma gallisepticum</em> and <em>Mycoplasma synoviae</em> when the disease has been diagnosed at the herd level.\r\n\r\nCalves: For the treatment of respiratory infections associated with <em>Mannheimia haemolytica</em>,\r\nP. <em>multocida, Mycoplasma bovis</em> and M.<em>dispar</em> when the disease has been diagnosed at the herd level\r\n\r\n[dt_divider style=\"thin\" /]\r\n\r\n<strong>Contraindication: </strong>\r\n\r\nDo not use in case of hypersensitivity to the active substance or in cases of known resistance to Tilmicosin. Do not use in horses.\r\n\r\n[dt_divider style=\"thin\" /]\r\n\r\n<strong>Withdrawal time: </strong>\r\n\r\nFor meat and offal: Pigs: 14 days Calves: 42 days. Broilers: 12 days Turkeys: 15 days\r\nFor eggs: Not permitted for use in laying birds producing eggs for human consumption\r\n\r\n[dt_divider style=\"thin\" /]\r\n\r\n<strong>Dosage:</strong>\r\n\r\nFor oral administration through the drinking water or milk replacer.\r\nPigs: 15-20 mg Tilmicosin per kg body weight for 5 days, i.e. 6-8 ml of product for 100 kg body weight corresponding to 80 ml of product per 100 litres of drinking water for 5 days.\r\nChickens: 15-20 mg Tilmicosin per kg body weight for 3 days, i.e. 6-8 ml of product for 100kg body weight corresponding to 30 ml of product per 100 litres of drinking water for 3 days.\r\n\r\nTurkeys: 10-27 mg Tilmicosin per kg body weight for 3 days, i.e. 4-11 ml of product for 100kg body weight corresponding to 30 ml of product per 100 litres of drinking water for 3 days.\r\n\r\nCalves: 12.5 mg Tilmicosin per kg body weight two times per day for 3-5 days, i.e. 1 ml of product for 20 kg body weight two times per day for 3-5 days.\r\n\r\n[dt_divider style=\"thin\" /]\r\n\r\n<strong>Pack sizes: </strong>\r\n\r\n60 mL, 240 mL and 960 mL\r\n\r\n&nbsp;\r\n\r\n[dt_divider style=\"thick\" /]\r\n\r\n&nbsp;','inherit','closed','closed','','3644-autosave-v1','','','2023-09-24 02:04:28','2023-09-24 02:04:28','',3644,'https://farmchemie.yasithawd.com/?p=3876',0,'revision','',0),(3877,1,'2023-09-24 04:00:40','2023-09-24 04:00:40','<p>[vc_row full_width=\"stretch_row_content_no_spaces\"][vc_column][ultimate_heading main_heading=\"Our History\" main_heading_color=\"#762888\"][/ultimate_heading][/vc_column][/vc_row][vc_row][vc_column][vc_row_inner equal_height=\"yes\" content_placement=\"middle\" css=\".vc_custom_1692359205466{margin-top: 35px !important;}\"][vc_column_inner width=\"1/2\"][ult_animation_block animation=\"fadeInLeftBig\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][vc_single_image image=\"3273\" img_size=\"full\" alignment=\"center\" style=\"vc_box_rounded\"][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/2\"][ult_animation_block animation=\"fadeInRightBig\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][ultimate_heading main_heading=\"Founded in 2002\" heading_tag=\"h3\" main_heading_color=\"#039447\" alignment=\"left\" sub_heading_font_size=\"desktop:18px;\"]Founded in 2002 by Mr. Uditha Wanigasinghe, an agriculturist who had a mission to aid valuable livestock producers in the country to enhance the yield and profitability of production. FARMCHEMIE introduced unprecedented solutions and consistent technical services to gain our customers’ trust and became the market leader in animal health products in 2006 within just four years.[/ultimate_heading][/ult_animation_block][/vc_column_inner][/vc_row_inner][vc_separator color=\"custom\" accent_color=\"#039447\"][vc_row_inner equal_height=\"yes\" rtl_reverse=\"yes\" content_placement=\"middle\" css=\".vc_custom_1692359216075{margin-top: 35px !important;}\"][vc_column_inner width=\"1/2\"][ult_animation_block animation=\"fadeInLeftBig\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][ultimate_heading main_heading=\"2006\" heading_tag=\"h3\" main_heading_color=\"#039447\" alignment=\"right\"]In 2006, the Sri Lankan poultry industry was affected with Avian Influenza which became a difficult period for the growth of FARMCHEMIE. This was the key factor in our decision to diversify into Agro Products. PLANTCHEM &amp; PLANTSEEDS were established to offer solutions in Agro specialty fertilizers, pesticides and seeds to invaluable cultivators.[/ultimate_heading][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/2\"][ult_animation_block animation=\"fadeInRightBig\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][vc_single_image image=\"3276\" img_size=\"full\" alignment=\"center\" style=\"vc_box_rounded\"][/ult_animation_block][/vc_column_inner][/vc_row_inner][vc_separator color=\"custom\" accent_color=\"#039447\"][vc_row_inner equal_height=\"yes\" content_placement=\"middle\" css=\".vc_custom_1692359231594{margin-top: 35px !important;}\"][vc_column_inner width=\"1/2\"][ult_animation_block animation=\"fadeInLeftBig\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][vc_single_image image=\"3277\" img_size=\"full\" alignment=\"center\" style=\"vc_box_rounded\"][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/2\"][ult_animation_block animation=\"fadeInRightBig\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][ultimate_heading main_heading=\"2010\" heading_tag=\"h3\" main_heading_color=\"#039447\" alignment=\"left\"]In 2010, FEED CHEMIE became the subsequent addition to ever-growing vision of Mr. Uditha Wanigasinghe and entered the Animal Feed Additives market.[/ultimate_heading][/ult_animation_block][/vc_column_inner][/vc_row_inner][vc_separator color=\"custom\" accent_color=\"#039447\"][vc_row_inner equal_height=\"yes\" rtl_reverse=\"yes\" content_placement=\"middle\" css=\".vc_custom_1692359239274{margin-top: 35px !important;}\"][vc_column_inner width=\"1/2\"][ult_animation_block animation=\"fadeInLeftBig\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][ultimate_heading main_heading=\"2012\" heading_tag=\"h3\" main_heading_color=\"#039447\" alignment=\"right\"]The year 2012 is described as a turning point in our journey as FARMCHEMIE established our first production facility for the manufacturing and packing of animal health products. FARMCHEMIE became the first animal health organization in Sri Lanka to obtain ISO 9001:2015 and WHO GMP International Quality Certification. With our own formulation unit, FARMCHEMIE was able to offer customized solutions to cater the needs of the Sri Lankan Livestock Industry.[/ultimate_heading][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/2\"][ult_animation_block animation=\"fadeInRightBig\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][vc_single_image image=\"3278\" img_size=\"full\" alignment=\"center\" style=\"vc_box_rounded\"][/ult_animation_block][/vc_column_inner][/vc_row_inner][vc_separator color=\"custom\" accent_color=\"#039447\"][vc_row_inner content_placement=\"middle\" css=\".vc_custom_1692359246626{margin-top: 35px !important;}\"][vc_column_inner width=\"1/2\"][ult_animation_block animation=\"fadeInLeftBig\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][vc_single_image image=\"3279\" img_size=\"full\" alignment=\"center\" style=\"vc_box_rounded\"][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/2\"][ult_animation_block animation=\"fadeInRightBig\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][ultimate_heading main_heading=\"2016\" heading_tag=\"h3\" main_heading_color=\"#039447\" alignment=\"left\"]The year 2016 was another key milestone with the entry to the International Markets. FARMCHEMIE exported our first Feed Premix consignment to India and in 2018 our export operation was distinctly established as FARMCHEMIE MANUFACTURERS, a Board of Investment (BOI) approved entity.[/ultimate_heading][/ult_animation_block][/vc_column_inner][/vc_row_inner][vc_separator color=\"custom\" accent_color=\"#039447\"][vc_row_inner equal_height=\"yes\" rtl_reverse=\"yes\" content_placement=\"middle\" css=\".vc_custom_1695527931440{margin-top: 35px !important;}\"][vc_column_inner width=\"1/2\"][ult_animation_block animation=\"fadeInLeftBig\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][ultimate_heading main_heading=\"Fully automated manufacturing\" heading_tag=\"h3\" main_heading_color=\"#039447\" alignment=\"right\"]FARMCHEMIE MANUFACTURERS has invested in fully automated manufacturing facility from Bühler and became the first Sri Lankan owned company to obtain FAMI-QS International Quality Certification.[/ultimate_heading][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/2\"][ult_animation_block animation=\"fadeInRightBig\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][vc_single_image image=\"3280\" img_size=\"full\" alignment=\"center\" style=\"vc_box_rounded\"][/ult_animation_block][/vc_column_inner][/vc_row_inner][vc_separator color=\"custom\" accent_color=\"#039447\"][vc_row_inner equal_height=\"yes\" content_placement=\"middle\" css=\".vc_custom_1692359258634{margin-top: 35px !important;}\"][vc_column_inner width=\"1/2\"][ult_animation_block animation=\"fadeInLeftBig\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][vc_single_image image=\"3281\" img_size=\"full\" alignment=\"center\" style=\"vc_box_rounded\"][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/2\"][ult_animation_block animation=\"fadeInRightBig\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][ultimate_heading main_heading=\"Official toll manufacturer partner\" heading_tag=\"h3\" main_heading_color=\"#039447\" alignment=\"left\"]With the trust and reputation built as a reliable manufacturer of animal feed additives and supplements in the global market, several world-renowned international brands have appointed FARMCHEMIE MANUFACTURERS as the official toll manufacturer partner. FARMCHEMIE MANUFACTURERS exports a wide range of products consisting of premixes, specialty feed additives, oral liquid supplements and pet supplements to various markets in South Asia, East Asia, Middle East and Africa.</p>\r\n<p>FARMCHEMIE, FEED CHEMIE &amp; FARMCHEMIE MANUFACTURERS currently operate under the ownership of our holding company, DYVESTA.</p>\r\n<p>DYEVSTA has become the pinnacle of Animal Nutrition and Health.</p>\r\n<p>DYVESTA is Dynamic, through our continuous evolution, growth and progress. DYVESTA is Diverse, in terms of both our business strategy and our community. DYVESTA is Devoted to our valuable business partners through exceptional service.[/ultimate_heading][/ult_animation_block][/vc_column_inner][/vc_row_inner][vc_separator color=\"custom\" accent_color=\"#039447\"][/vc_column][/vc_row][vc_row full_width=\"stretch_row\" equal_height=\"yes\" bg_type=\"image\" parallax_style=\"vcpb-vz-jquery\" bg_image_new=\"id^3256|url^https://farmchemie.yasithawd.com/wp-content/uploads/2023/08/Vision-Mission.png|caption^null|alt^null|title^Vision-&amp;-Mission|description^null\" bg_image_repeat=\"no-repeat\" enable_overlay=\"enable_overlay_value\" overlay_color=\"#000000\" overlay_pattern=\"01.png\" overlay_pattern_opacity=\"5\" css=\".vc_custom_1692366072362{margin-top: 35px !important;padding-top: 65px !important;padding-bottom: 100px !important;}\"][vc_column][vc_row_inner equal_height=\"yes\"][vc_column_inner width=\"1/2\"][ult_animation_block animation=\"fadeInLeftBig\" animation_duration=\"2\" animation_delay=\"0\" animation_iteration_count=\"1\"][ultimate_heading main_heading=\"Vision\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\"]To be the customers’ first and best choice by ensuring outstanding satisfaction through a well-trained and dedicated team. Prompt and quality solutions to our customers’ requirements will determine the increase of return on investment for us.[/ultimate_heading][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/2\"][ult_animation_block animation=\"fadeInRightBig\" animation_duration=\"2\" animation_delay=\"0\" animation_iteration_count=\"1\"][ultimate_heading main_heading=\"Mission\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\"]To become a world renowned manufacturer of Animal Health products and a trusted partner among our stakeholders for our integrity as well as for providing effective solutions[/ultimate_heading][/ult_animation_block][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row css=\".vc_custom_1684836308288{margin-top: 15px !important;}\"][vc_column][ultimate_heading main_heading=\"Achievements\" main_heading_color=\"#762888\" main_heading_margin=\"margin-top:35px;\"][/ultimate_heading][vc_row_inner gap=\"20\"][vc_column_inner width=\"1/2\" css=\".vc_custom_1691995519863{background-color: #f4ab20 !important;border: 1px solid #f4ab20 !important;border-radius: 35px !important;}\"][ult_animation_block animation=\"fadeInLeftBig\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][bsf-info-box icon_type=\"custom\" icon_img=\"id^3117|url^https://farmchemie.yasithawd.com/wp-content/uploads/2023/08/Pink_-H.png|caption^null|alt^null|title^Pink_-H|description^null\" img_width=\"60\" icon_style=\"advanced\" icon_border_style=\"solid\" icon_color_border=\"#ffffff\" icon_border_size=\"1\" icon_border_radius=\"500\" icon_border_spacing=\"1\" title=\"First Free Sale Certificate obtained from Veterinary Drug Control Authority (VDCA) for Veterinary Pharmaceuticals\" title_font_style=\"font-weight:bold;\" title_font_size=\"desktop:20px;\"][/bsf-info-box][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/2\" css=\".vc_custom_1691995661095{background-color: #722f8b !important;border: 1px solid #722f8b !important;border-radius: 35px !important;}\"][ult_animation_block animation=\"fadeInRightBig\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][bsf-info-box icon_type=\"custom\" icon_img=\"id^3117|url^https://farmchemie.yasithawd.com/wp-content/uploads/2023/08/Pink_-H.png|caption^null|alt^null|title^Pink_-H|description^null\" img_width=\"60\" icon_style=\"advanced\" icon_border_style=\"solid\" icon_color_border=\"#ffffff\" icon_border_size=\"1\" icon_border_radius=\"500\" icon_border_spacing=\"1\" title=\"First ISO 9001: 2015 ,WHO-GMP Quality Management systems certified Animal Health company in Sri Lanka since August, 2012\" title_font_style=\"font-weight:bold;\" title_font_color=\"#ffffff\" title_font_size=\"desktop:20px;\"][/bsf-info-box][/ult_animation_block][/vc_column_inner][/vc_row_inner][vc_row_inner gap=\"20\"][vc_column_inner width=\"1/2\" css=\".vc_custom_1691995661095{background-color: #722f8b !important;border: 1px solid #722f8b !important;border-radius: 35px !important;}\"][ult_animation_block animation=\"fadeInLeftBig\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][bsf-info-box icon_type=\"custom\" icon_img=\"id^3117|url^https://farmchemie.yasithawd.com/wp-content/uploads/2023/08/Pink_-H.png|caption^null|alt^null|title^Pink_-H|description^null\" img_width=\"60\" icon_style=\"advanced\" icon_border_style=\"solid\" icon_color_border=\"#ffffff\" icon_border_size=\"1\" icon_border_radius=\"500\" icon_border_spacing=\"1\" title=\"First FAMI-QS certified company in sri lanka\" title_font_style=\"font-weight:bold;\" title_font_color=\"#ffffff\" title_font_size=\"desktop:20px;\"][/bsf-info-box][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/2\" css=\".vc_custom_1691995519863{background-color: #f4ab20 !important;border: 1px solid #f4ab20 !important;border-radius: 35px !important;}\"][ult_animation_block animation=\"fadeInRightBig\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][bsf-info-box icon_type=\"custom\" icon_img=\"id^3117|url^https://farmchemie.yasithawd.com/wp-content/uploads/2023/08/Pink_-H.png|caption^null|alt^null|title^Pink_-H|description^null\" img_width=\"60\" icon_style=\"advanced\" icon_border_style=\"solid\" icon_color_border=\"#ffffff\" icon_border_size=\"1\" icon_border_radius=\"500\" icon_border_spacing=\"1\" title=\"First Certificate of Ethical Trading certified in Livestock industry\" title_font_style=\"font-weight:bold;\" title_font_size=\"desktop:20px;\"][/bsf-info-box][/ult_animation_block][/vc_column_inner][/vc_row_inner][vc_row_inner gap=\"20\"][vc_column_inner width=\"1/4\" css=\".vc_custom_1695528026328{border-radius: 35px !important;}\" offset=\"vc_hidden-xs\"][/vc_column_inner][vc_column_inner width=\"2/4\" css=\".vc_custom_1691995519863{background-color: #f4ab20 !important;border: 1px solid #f4ab20 !important;border-radius: 35px !important;}\"][ult_animation_block animation=\"fadeInLeftBig\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][bsf-info-box icon_type=\"custom\" icon_img=\"id^3117|url^https://farmchemie.yasithawd.com/wp-content/uploads/2023/08/Pink_-H.png|caption^null|alt^null|title^Pink_-H|description^null\" img_width=\"60\" icon_style=\"advanced\" icon_border_style=\"solid\" icon_color_border=\"#ffffff\" icon_border_size=\"1\" icon_border_radius=\"500\" icon_border_spacing=\"1\" title=\"First Silver awarded company at National Exports Awards in Livestock industry\" title_font_style=\"font-weight:bold;\" title_font_size=\"desktop:20px;\"][/bsf-info-box][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/4\" offset=\"vc_hidden-xs\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row full_width=\"stretch_row\" equal_height=\"yes\" content_placement=\"bottom\" css=\".vc_custom_1693627699480{margin-top: 15px !important;}\"][vc_column][ultimate_heading main_heading=\"Certifications\" main_heading_color=\"#762888\" main_heading_margin=\"margin-top:35px;\"][/ultimate_heading][vc_row_inner content_placement=\"bottom\"][vc_column_inner width=\"1/6\"][dt_fancy_image image_id=\"3407\" width=\"300\" caption=\"off\"][/vc_column_inner][vc_column_inner width=\"1/6\"][dt_fancy_image image_id=\"3408\" width=\"300\" caption=\"off\"][/vc_column_inner][vc_column_inner width=\"1/6\"][dt_fancy_image image_id=\"3409\" width=\"300\" caption=\"off\"][/vc_column_inner][vc_column_inner width=\"1/6\"][dt_fancy_image image_id=\"3411\" width=\"300\" caption=\"off\"][/vc_column_inner][vc_column_inner width=\"1/6\"][dt_fancy_image image_id=\"3410\" width=\"300\" caption=\"off\"][/vc_column_inner][vc_column_inner width=\"1/6\"][dt_fancy_image image_id=\"3406\" width=\"300\" caption=\"off\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row full_width=\"stretch_row\" equal_height=\"yes\" content_placement=\"bottom\" css=\".vc_custom_1693625624233{margin-top: 15px !important;}\"][vc_column][ultimate_heading main_heading=\"Awards\" main_heading_color=\"#762888\" main_heading_margin=\"margin-top:35px;\"][/ultimate_heading][ultimate_carousel slide_to_scroll=\"single\"][dt_fancy_image image_id=\"3412\" width=\"300\"][dt_fancy_image image_id=\"3413\" width=\"300\" caption=\"off\"][dt_fancy_image image_id=\"3414\" width=\"300\" caption=\"off\"][dt_fancy_image image_id=\"3415\" width=\"300\" caption=\"off\"][dt_fancy_image image_id=\"3416\" width=\"300\" caption=\"off\"][dt_fancy_image image_id=\"3417\" width=\"300\" caption=\"off\"][dt_fancy_image image_id=\"3418\" width=\"300\" caption=\"off\"][dt_fancy_image image_id=\"3420\" width=\"300\" caption=\"off\"][dt_fancy_image image_id=\"3419\" width=\"300\" caption=\"off\"][dt_fancy_image image_id=\"3422\" width=\"300\" caption=\"off\"][dt_fancy_image image_id=\"3421\" width=\"300\" caption=\"off\"][dt_fancy_image image_id=\"3422\" width=\"300\" caption=\"off\"][dt_fancy_image image_id=\"3423\" width=\"300\" caption=\"off\"][dt_fancy_image image_id=\"3424\" width=\"300\" caption=\"off\"][dt_fancy_image image_id=\"3425\" width=\"300\" caption=\"off\"][/ultimate_carousel][/vc_column][/vc_row][vc_row disable_element=\"yes\" css=\".vc_custom_1695294608306{margin-top: 15px !important;}\"][vc_column][ultimate_heading main_heading=\"Board Of Directors\" main_heading_color=\"#762888\" main_heading_margin=\"margin-top:35px;margin-bottom:35px;\"][/ultimate_heading][ultimate_carousel slides_on_desk=\"3\" slides_on_mob=\"1\" arrow_style=\"square-bg\" arrow_bg_color=\"#039447\" arrow_color=\"#ffffff\" next_icon=\"ultsl-arrow-right6\" prev_icon=\"ultsl-arrow-left6\" dots_color=\"#039447\" item_animation=\"fadeIn\" css_ad_caraousel=\".vc_custom_1694697209111{padding-right: 10px !important;padding-left: 10px !important;}\"][vc_row_inner][vc_column_inner][ultimate_heading main_heading=\"Uditha Wanigasinghe\" heading_tag=\"h3\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;\"]Managing Director[/ultimate_heading][ultimate_modal modal_title=\"Read more\" btn_size=\"md\" btn_bg_color=\"#089548\" btn_text=\"Read more\" overlay_bg_opacity=\"75\" img_size=\"80\" btn_txt_color=\"#ffffff\"]pretium mauris pretium mauris pretium mauris pretium mauris pretium mauris pretium mauris pretium mauris pretium mauris pretium mauris pretium mauris pretium mauris pretium mauris pretium mauris pretium mauris pretium mauris pretium mauris pretium mauris pretium mauris pretium mauris pretium mauris pretium mauris pretium mauris pretium mauris pretium mauris pretium mauris pretium mauris pretium mauris pretium mauris[/ultimate_modal][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner][ultimate_heading main_heading=\"Senitha Wanigasinghe\" heading_tag=\"h3\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;\"]Director/ CEO[/ultimate_heading][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner][ultimate_heading main_heading=\"Thulitha Wanigasinghe\" heading_tag=\"h3\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;\"]Director - Veterinary Services &amp; RA[/ultimate_heading][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner][ultimate_heading main_heading=\"Yvonne Van Cuylenberg\" heading_tag=\"h3\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;\"]Director - HR &amp; Administration[/ultimate_heading][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner][ultimate_heading main_heading=\"Gamini Wanigasinghe\" heading_tag=\"h3\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;\"]Director[/ultimate_heading][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner][ultimate_heading main_heading=\"Ajith Welianga\" heading_tag=\"h3\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;\"]Director - Marketing[/ultimate_heading][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner][ultimate_heading main_heading=\"Sunil Ranjith Guruge\" heading_tag=\"h3\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;\"]Director - Customer &amp; Employee Relations[/ultimate_heading][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner][ultimate_heading main_heading=\"Sampath Gunathilake\" heading_tag=\"h3\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;\"]Director - Sales[/ultimate_heading][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner][ultimate_heading main_heading=\"Chanaka Indrajith\" heading_tag=\"h3\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;\"]Director Production / COO[/ultimate_heading][/vc_column_inner][/vc_row_inner][/ultimate_carousel][/vc_column][/vc_row][vc_row disable_element=\"yes\"][vc_column][ultimate_heading main_heading=\"Board Of Directors\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;margin-bottom:35px;\"][/ultimate_heading][vc_row_inner][vc_column_inner width=\"1/3\"][ult_animation_block animation=\"fadeInUp\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][dt_fancy_image image_id=\"3172\" width=\"300\" border_radius=\"1px\" caption=\"off\" css=\".vc_custom_1692278922309{border-top-width: 1px !important;border-right-width: 1px !important;border-bottom-width: 1px !important;border-left-width: 1px !important;border-left-color: #059444 !important;border-left-style: solid !important;border-right-color: #059444 !important;border-right-style: solid !important;border-top-color: #059444 !important;border-top-style: solid !important;border-bottom-color: #059444 !important;border-bottom-style: solid !important;border-radius: 1px !important;}\"][ultimate_heading main_heading=\"Quisque sed nibh tristique\" heading_tag=\"h3\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;\"]</p>\r\n<ul>\r\n<li>Duis lorem risus, aliquet a auctor a, venenatis in dui. Praesent et eros et risus dapibus placerat hendrerit cursus magna.</li>\r\n<li>Praesent et eros et risus dapibus placerat hendrerit cursus magna.</li>\r\n<li>aliquet a auctor a, venenatis in dui.</li>\r\n</ul>\r\n<p>[/ultimate_heading][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/3\"][ult_animation_block animation=\"fadeInDown\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][dt_fancy_image image_id=\"3171\" width=\"300\" border_radius=\"1px\" caption=\"off\" css=\".vc_custom_1692278929158{border-top-width: 1px !important;border-right-width: 1px !important;border-bottom-width: 1px !important;border-left-width: 1px !important;border-left-color: #059444 !important;border-left-style: solid !important;border-right-color: #059444 !important;border-right-style: solid !important;border-top-color: #059444 !important;border-top-style: solid !important;border-bottom-color: #059444 !important;border-bottom-style: solid !important;border-radius: 1px !important;}\"][ultimate_heading main_heading=\"Quisque sed nibh tristique\" heading_tag=\"h3\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;\"]</p>\r\n<ul>\r\n<li>Duis lorem risus, aliquet a auctor a, venenatis in dui. Praesent et eros et risus dapibus placerat hendrerit cursus magna.</li>\r\n<li>Praesent et eros et risus dapibus placerat hendrerit cursus magna.</li>\r\n<li>aliquet a auctor a, venenatis in dui.</li>\r\n</ul>\r\n<p>[/ultimate_heading][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/3\"][ult_animation_block animation=\"fadeInUp\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][dt_fancy_image image_id=\"3170\" width=\"300\" border_radius=\"1px\" caption=\"off\" css=\".vc_custom_1692278936750{border-top-width: 1px !important;border-right-width: 1px !important;border-bottom-width: 1px !important;border-left-width: 1px !important;border-left-color: #059444 !important;border-left-style: solid !important;border-right-color: #059444 !important;border-right-style: solid !important;border-top-color: #059444 !important;border-top-style: solid !important;border-bottom-color: #059444 !important;border-bottom-style: solid !important;border-radius: 1px !important;}\"][ultimate_heading main_heading=\"Quisque sed nibh tristique\" heading_tag=\"h3\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;\"]</p>\r\n<ul>\r\n<li>Duis lorem risus, aliquet a auctor a, venenatis in dui. Praesent et eros et risus dapibus placerat hendrerit cursus magna.</li>\r\n<li>Praesent et eros et risus dapibus placerat hendrerit cursus magna.</li>\r\n<li>aliquet a auctor a, venenatis in dui.</li>\r\n</ul>\r\n<p>[/ultimate_heading][/ult_animation_block][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row disable_element=\"yes\"][vc_column][ultimate_heading main_heading=\"Executive Directors\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;margin-bottom:35px;\"][/ultimate_heading][vc_row_inner][vc_column_inner width=\"1/5\"][ult_animation_block animation=\"fadeInUp\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][dt_fancy_image image_id=\"3172\" width=\"300\" border_radius=\"1px\" caption=\"off\" css=\".vc_custom_1692278922309{border-top-width: 1px !important;border-right-width: 1px !important;border-bottom-width: 1px !important;border-left-width: 1px !important;border-left-color: #059444 !important;border-left-style: solid !important;border-right-color: #059444 !important;border-right-style: solid !important;border-top-color: #059444 !important;border-top-style: solid !important;border-bottom-color: #059444 !important;border-bottom-style: solid !important;border-radius: 1px !important;}\"][ultimate_heading main_heading=\"Quisque sed nibh tristique\" heading_tag=\"h3\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;\"]</p>\r\n<ul>\r\n<li>Duis lorem risus, aliquet a auctor a, venenatis in dui. Praesent et eros et risus dapibus placerat hendrerit cursus magna.</li>\r\n<li>Praesent et eros et risus dapibus placerat hendrerit cursus magna.</li>\r\n<li>aliquet a auctor a, venenatis in dui.</li>\r\n</ul>\r\n<p>[/ultimate_heading][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/5\"][ult_animation_block animation=\"fadeInDown\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][dt_fancy_image image_id=\"3171\" width=\"300\" border_radius=\"1px\" caption=\"off\" css=\".vc_custom_1692278929158{border-top-width: 1px !important;border-right-width: 1px !important;border-bottom-width: 1px !important;border-left-width: 1px !important;border-left-color: #059444 !important;border-left-style: solid !important;border-right-color: #059444 !important;border-right-style: solid !important;border-top-color: #059444 !important;border-top-style: solid !important;border-bottom-color: #059444 !important;border-bottom-style: solid !important;border-radius: 1px !important;}\"][ultimate_heading main_heading=\"Quisque sed nibh tristique\" heading_tag=\"h3\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;\"]</p>\r\n<ul>\r\n<li>Duis lorem risus, aliquet a auctor a, venenatis in dui. Praesent et eros et risus dapibus placerat hendrerit cursus magna.</li>\r\n<li>Praesent et eros et risus dapibus placerat hendrerit cursus magna.</li>\r\n<li>aliquet a auctor a, venenatis in dui.</li>\r\n</ul>\r\n<p>[/ultimate_heading][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/5\"][ult_animation_block animation=\"fadeInUp\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][dt_fancy_image image_id=\"3170\" width=\"300\" border_radius=\"1px\" caption=\"off\" css=\".vc_custom_1692278936750{border-top-width: 1px !important;border-right-width: 1px !important;border-bottom-width: 1px !important;border-left-width: 1px !important;border-left-color: #059444 !important;border-left-style: solid !important;border-right-color: #059444 !important;border-right-style: solid !important;border-top-color: #059444 !important;border-top-style: solid !important;border-bottom-color: #059444 !important;border-bottom-style: solid !important;border-radius: 1px !important;}\"][ultimate_heading main_heading=\"Quisque sed nibh tristique\" heading_tag=\"h3\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;\"]</p>\r\n<ul>\r\n<li>Duis lorem risus, aliquet a auctor a, venenatis in dui. Praesent et eros et risus dapibus placerat hendrerit cursus magna.</li>\r\n<li>Praesent et eros et risus dapibus placerat hendrerit cursus magna.</li>\r\n<li>aliquet a auctor a, venenatis in dui.</li>\r\n</ul>\r\n<p>[/ultimate_heading][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/5\"][ult_animation_block animation=\"fadeInDown\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][dt_fancy_image image_id=\"3170\" width=\"300\" border_radius=\"1px\" caption=\"off\" css=\".vc_custom_1692278936750{border-top-width: 1px !important;border-right-width: 1px !important;border-bottom-width: 1px !important;border-left-width: 1px !important;border-left-color: #059444 !important;border-left-style: solid !important;border-right-color: #059444 !important;border-right-style: solid !important;border-top-color: #059444 !important;border-top-style: solid !important;border-bottom-color: #059444 !important;border-bottom-style: solid !important;border-radius: 1px !important;}\"][ultimate_heading main_heading=\"Quisque sed nibh tristique\" heading_tag=\"h3\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;\"]</p>\r\n<ul>\r\n<li>Duis lorem risus, aliquet a auctor a, venenatis in dui. Praesent et eros et risus dapibus placerat hendrerit cursus magna.</li>\r\n<li>Praesent et eros et risus dapibus placerat hendrerit cursus magna.</li>\r\n<li>aliquet a auctor a, venenatis in dui.</li>\r\n</ul>\r\n<p>[/ultimate_heading][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/5\"][ult_animation_block animation=\"fadeInDown\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][dt_fancy_image image_id=\"3171\" width=\"300\" border_radius=\"1px\" caption=\"off\" css=\".vc_custom_1692278929158{border-top-width: 1px !important;border-right-width: 1px !important;border-bottom-width: 1px !important;border-left-width: 1px !important;border-left-color: #059444 !important;border-left-style: solid !important;border-right-color: #059444 !important;border-right-style: solid !important;border-top-color: #059444 !important;border-top-style: solid !important;border-bottom-color: #059444 !important;border-bottom-style: solid !important;border-radius: 1px !important;}\"][ultimate_heading main_heading=\"Quisque sed nibh tristique\" heading_tag=\"h3\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;\"]</p>\r\n<ul>\r\n<li>Duis lorem risus, aliquet a auctor a, venenatis in dui. Praesent et eros et risus dapibus placerat hendrerit cursus magna.</li>\r\n<li>Praesent et eros et risus dapibus placerat hendrerit cursus magna.</li>\r\n<li>aliquet a auctor a, venenatis in dui.</li>\r\n</ul>\r\n<p>[/ultimate_heading][/ult_animation_block][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner width=\"2/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row disable_element=\"yes\"][vc_column][ultimate_heading main_heading=\"Next Generation\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;margin-bottom:35px;\"][/ultimate_heading][vc_row_inner][vc_column_inner width=\"1/2\"][ult_animation_block animation=\"fadeInUp\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][dt_fancy_image image_id=\"3172\" width=\"300\" border_radius=\"1px\" caption=\"off\" css=\".vc_custom_1692278922309{border-top-width: 1px !important;border-right-width: 1px !important;border-bottom-width: 1px !important;border-left-width: 1px !important;border-left-color: #059444 !important;border-left-style: solid !important;border-right-color: #059444 !important;border-right-style: solid !important;border-top-color: #059444 !important;border-top-style: solid !important;border-bottom-color: #059444 !important;border-bottom-style: solid !important;border-radius: 1px !important;}\"][ultimate_heading main_heading=\"Quisque sed nibh tristique\" heading_tag=\"h3\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;\"]</p>\r\n<ul>\r\n<li>Duis lorem risus, aliquet a auctor a, venenatis in dui. Praesent et eros et risus dapibus placerat hendrerit cursus magna.</li>\r\n<li>Praesent et eros et risus dapibus placerat hendrerit cursus magna.</li>\r\n<li>aliquet a auctor a, venenatis in dui.</li>\r\n</ul>\r\n<p>[/ultimate_heading][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/2\"][ult_animation_block animation=\"fadeInDown\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][dt_fancy_image image_id=\"3171\" width=\"300\" border_radius=\"1px\" caption=\"off\" css=\".vc_custom_1692278929158{border-top-width: 1px !important;border-right-width: 1px !important;border-bottom-width: 1px !important;border-left-width: 1px !important;border-left-color: #059444 !important;border-left-style: solid !important;border-right-color: #059444 !important;border-right-style: solid !important;border-top-color: #059444 !important;border-top-style: solid !important;border-bottom-color: #059444 !important;border-bottom-style: solid !important;border-radius: 1px !important;}\"][ultimate_heading main_heading=\"Quisque sed nibh tristique\" heading_tag=\"h3\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;\"]</p>\r\n<ul>\r\n<li>Duis lorem risus, aliquet a auctor a, venenatis in dui. Praesent et eros et risus dapibus placerat hendrerit cursus magna.</li>\r\n<li>Praesent et eros et risus dapibus placerat hendrerit cursus magna.</li>\r\n<li>aliquet a auctor a, venenatis in dui.</li>\r\n</ul>\r\n<p>[/ultimate_heading][/ult_animation_block][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row]</p>\r\n','About us','','inherit','closed','closed','','2917-revision-v1','','','2023-09-24 04:00:40','2023-09-24 04:00:40','',2917,'https://farmchemie.yasithawd.com/?p=3877',0,'revision','',0),(3878,1,'2023-09-24 04:07:03','2023-09-24 04:07:03','<p>[vc_row full_width=\"stretch_row_content_no_spaces\"][vc_column][ultimate_heading main_heading=\"Our History\" main_heading_color=\"#762888\"][/ultimate_heading][/vc_column][/vc_row][vc_row][vc_column][vc_row_inner equal_height=\"yes\" content_placement=\"middle\" css=\".vc_custom_1692359205466{margin-top: 35px !important;}\"][vc_column_inner width=\"1/2\"][ult_animation_block animation=\"fadeInLeftBig\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][vc_single_image image=\"3273\" img_size=\"full\" alignment=\"center\" style=\"vc_box_rounded\"][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/2\"][ult_animation_block animation=\"fadeInRightBig\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][ultimate_heading main_heading=\"Founded in 2002\" heading_tag=\"h3\" main_heading_color=\"#039447\" alignment=\"left\" sub_heading_font_size=\"desktop:18px;\"]Founded in 2002 by Mr. Uditha Wanigasinghe, an agriculturist who had a mission to aid valuable livestock producers in the country to enhance the yield and profitability of production. FARMCHEMIE introduced unprecedented solutions and consistent technical services to gain our customers’ trust and became the market leader in animal health products in 2006 within just four years.[/ultimate_heading][/ult_animation_block][/vc_column_inner][/vc_row_inner][vc_separator color=\"custom\" accent_color=\"#039447\"][vc_row_inner equal_height=\"yes\" rtl_reverse=\"yes\" content_placement=\"middle\" css=\".vc_custom_1692359216075{margin-top: 35px !important;}\"][vc_column_inner width=\"1/2\" offset=\"vc_hidden-xs\"][ult_animation_block animation=\"fadeInLeftBig\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][ultimate_heading main_heading=\"2006\" heading_tag=\"h3\" main_heading_color=\"#039447\" alignment=\"right\"]In 2006, the Sri Lankan poultry industry was affected with Avian Influenza which became a difficult period for the growth of FARMCHEMIE. This was the key factor in our decision to diversify into Agro Products. PLANTCHEM &amp; PLANTSEEDS were established to offer solutions in Agro specialty fertilizers, pesticides and seeds to invaluable cultivators.[/ultimate_heading][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/2\" offset=\"vc_hidden-xs\"][ult_animation_block animation=\"fadeInRightBig\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][vc_single_image image=\"3276\" img_size=\"full\" alignment=\"center\" style=\"vc_box_rounded\"][/ult_animation_block][/vc_column_inner][/vc_row_inner][vc_row_inner equal_height=\"yes\" rtl_reverse=\"yes\" content_placement=\"middle\" css=\".vc_custom_1692359216075{margin-top: 35px !important;}\"][vc_column_inner width=\"1/2\" offset=\"vc_hidden-lg vc_hidden-md vc_hidden-sm\"][ult_animation_block animation=\"fadeInRightBig\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][vc_single_image image=\"3276\" img_size=\"full\" alignment=\"center\" style=\"vc_box_rounded\"][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/2\" offset=\"vc_hidden-lg vc_hidden-md vc_hidden-sm\"][ult_animation_block animation=\"fadeInLeftBig\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][ultimate_heading main_heading=\"2006\" heading_tag=\"h3\" main_heading_color=\"#039447\" alignment=\"right\"]In 2006, the Sri Lankan poultry industry was affected with Avian Influenza which became a difficult period for the growth of FARMCHEMIE. This was the key factor in our decision to diversify into Agro Products. PLANTCHEM &amp; PLANTSEEDS were established to offer solutions in Agro specialty fertilizers, pesticides and seeds to invaluable cultivators.[/ultimate_heading][/ult_animation_block][/vc_column_inner][/vc_row_inner][vc_separator color=\"custom\" accent_color=\"#039447\"][vc_row_inner equal_height=\"yes\" content_placement=\"middle\" css=\".vc_custom_1692359231594{margin-top: 35px !important;}\"][vc_column_inner width=\"1/2\"][ult_animation_block animation=\"fadeInLeftBig\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][vc_single_image image=\"3277\" img_size=\"full\" alignment=\"center\" style=\"vc_box_rounded\"][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/2\"][ult_animation_block animation=\"fadeInRightBig\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][ultimate_heading main_heading=\"2010\" heading_tag=\"h3\" main_heading_color=\"#039447\" alignment=\"left\"]In 2010, FEED CHEMIE became the subsequent addition to ever-growing vision of Mr. Uditha Wanigasinghe and entered the Animal Feed Additives market.[/ultimate_heading][/ult_animation_block][/vc_column_inner][/vc_row_inner][vc_separator color=\"custom\" accent_color=\"#039447\"][vc_row_inner equal_height=\"yes\" rtl_reverse=\"yes\" content_placement=\"middle\" css=\".vc_custom_1692359239274{margin-top: 35px !important;}\"][vc_column_inner width=\"1/2\"][ult_animation_block animation=\"fadeInLeftBig\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][ultimate_heading main_heading=\"2012\" heading_tag=\"h3\" main_heading_color=\"#039447\" alignment=\"right\"]The year 2012 is described as a turning point in our journey as FARMCHEMIE established our first production facility for the manufacturing and packing of animal health products. FARMCHEMIE became the first animal health organization in Sri Lanka to obtain ISO 9001:2015 and WHO GMP International Quality Certification. With our own formulation unit, FARMCHEMIE was able to offer customized solutions to cater the needs of the Sri Lankan Livestock Industry.[/ultimate_heading][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/2\"][ult_animation_block animation=\"fadeInRightBig\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][vc_single_image image=\"3278\" img_size=\"full\" alignment=\"center\" style=\"vc_box_rounded\"][/ult_animation_block][/vc_column_inner][/vc_row_inner][vc_separator color=\"custom\" accent_color=\"#039447\"][vc_row_inner content_placement=\"middle\" css=\".vc_custom_1692359246626{margin-top: 35px !important;}\"][vc_column_inner width=\"1/2\"][ult_animation_block animation=\"fadeInLeftBig\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][vc_single_image image=\"3279\" img_size=\"full\" alignment=\"center\" style=\"vc_box_rounded\"][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/2\"][ult_animation_block animation=\"fadeInRightBig\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][ultimate_heading main_heading=\"2016\" heading_tag=\"h3\" main_heading_color=\"#039447\" alignment=\"left\"]The year 2016 was another key milestone with the entry to the International Markets. FARMCHEMIE exported our first Feed Premix consignment to India and in 2018 our export operation was distinctly established as FARMCHEMIE MANUFACTURERS, a Board of Investment (BOI) approved entity.[/ultimate_heading][/ult_animation_block][/vc_column_inner][/vc_row_inner][vc_separator color=\"custom\" accent_color=\"#039447\"][vc_row_inner equal_height=\"yes\" rtl_reverse=\"yes\" content_placement=\"middle\" css=\".vc_custom_1695527931440{margin-top: 35px !important;}\"][vc_column_inner width=\"1/2\"][ult_animation_block animation=\"fadeInLeftBig\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][ultimate_heading main_heading=\"Fully automated manufacturing\" heading_tag=\"h3\" main_heading_color=\"#039447\" alignment=\"right\"]FARMCHEMIE MANUFACTURERS has invested in fully automated manufacturing facility from Bühler and became the first Sri Lankan owned company to obtain FAMI-QS International Quality Certification.[/ultimate_heading][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/2\"][ult_animation_block animation=\"fadeInRightBig\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][vc_single_image image=\"3280\" img_size=\"full\" alignment=\"center\" style=\"vc_box_rounded\"][/ult_animation_block][/vc_column_inner][/vc_row_inner][vc_separator color=\"custom\" accent_color=\"#039447\"][vc_row_inner equal_height=\"yes\" content_placement=\"middle\" css=\".vc_custom_1692359258634{margin-top: 35px !important;}\"][vc_column_inner width=\"1/2\"][ult_animation_block animation=\"fadeInLeftBig\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][vc_single_image image=\"3281\" img_size=\"full\" alignment=\"center\" style=\"vc_box_rounded\"][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/2\"][ult_animation_block animation=\"fadeInRightBig\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][ultimate_heading main_heading=\"Official toll manufacturer partner\" heading_tag=\"h3\" main_heading_color=\"#039447\" alignment=\"left\"]With the trust and reputation built as a reliable manufacturer of animal feed additives and supplements in the global market, several world-renowned international brands have appointed FARMCHEMIE MANUFACTURERS as the official toll manufacturer partner. FARMCHEMIE MANUFACTURERS exports a wide range of products consisting of premixes, specialty feed additives, oral liquid supplements and pet supplements to various markets in South Asia, East Asia, Middle East and Africa.</p>\r\n<p>FARMCHEMIE, FEED CHEMIE &amp; FARMCHEMIE MANUFACTURERS currently operate under the ownership of our holding company, DYVESTA.</p>\r\n<p>DYEVSTA has become the pinnacle of Animal Nutrition and Health.</p>\r\n<p>DYVESTA is Dynamic, through our continuous evolution, growth and progress. DYVESTA is Diverse, in terms of both our business strategy and our community. DYVESTA is Devoted to our valuable business partners through exceptional service.[/ultimate_heading][/ult_animation_block][/vc_column_inner][/vc_row_inner][vc_separator color=\"custom\" accent_color=\"#039447\"][/vc_column][/vc_row][vc_row full_width=\"stretch_row\" equal_height=\"yes\" bg_type=\"image\" parallax_style=\"vcpb-vz-jquery\" bg_image_new=\"id^3256|url^https://farmchemie.yasithawd.com/wp-content/uploads/2023/08/Vision-Mission.png|caption^null|alt^null|title^Vision-&amp;-Mission|description^null\" bg_image_repeat=\"no-repeat\" enable_overlay=\"enable_overlay_value\" overlay_color=\"#000000\" overlay_pattern=\"01.png\" overlay_pattern_opacity=\"5\" css=\".vc_custom_1692366072362{margin-top: 35px !important;padding-top: 65px !important;padding-bottom: 100px !important;}\"][vc_column][vc_row_inner equal_height=\"yes\"][vc_column_inner width=\"1/2\"][ult_animation_block animation=\"fadeInLeftBig\" animation_duration=\"2\" animation_delay=\"0\" animation_iteration_count=\"1\"][ultimate_heading main_heading=\"Vision\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\"]To be the customers’ first and best choice by ensuring outstanding satisfaction through a well-trained and dedicated team. Prompt and quality solutions to our customers’ requirements will determine the increase of return on investment for us.[/ultimate_heading][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/2\"][ult_animation_block animation=\"fadeInRightBig\" animation_duration=\"2\" animation_delay=\"0\" animation_iteration_count=\"1\"][ultimate_heading main_heading=\"Mission\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\"]To become a world renowned manufacturer of Animal Health products and a trusted partner among our stakeholders for our integrity as well as for providing effective solutions[/ultimate_heading][/ult_animation_block][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row css=\".vc_custom_1684836308288{margin-top: 15px !important;}\"][vc_column][ultimate_heading main_heading=\"Achievements\" main_heading_color=\"#762888\" main_heading_margin=\"margin-top:35px;\"][/ultimate_heading][vc_row_inner gap=\"20\"][vc_column_inner width=\"1/2\" css=\".vc_custom_1691995519863{background-color: #f4ab20 !important;border: 1px solid #f4ab20 !important;border-radius: 35px !important;}\"][ult_animation_block animation=\"fadeInLeftBig\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][bsf-info-box icon_type=\"custom\" icon_img=\"id^3117|url^https://farmchemie.yasithawd.com/wp-content/uploads/2023/08/Pink_-H.png|caption^null|alt^null|title^Pink_-H|description^null\" img_width=\"60\" icon_style=\"advanced\" icon_border_style=\"solid\" icon_color_border=\"#ffffff\" icon_border_size=\"1\" icon_border_radius=\"500\" icon_border_spacing=\"1\" title=\"First Free Sale Certificate obtained from Veterinary Drug Control Authority (VDCA) for Veterinary Pharmaceuticals\" title_font_style=\"font-weight:bold;\" title_font_size=\"desktop:20px;\"][/bsf-info-box][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/2\" css=\".vc_custom_1691995661095{background-color: #722f8b !important;border: 1px solid #722f8b !important;border-radius: 35px !important;}\"][ult_animation_block animation=\"fadeInRightBig\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][bsf-info-box icon_type=\"custom\" icon_img=\"id^3117|url^https://farmchemie.yasithawd.com/wp-content/uploads/2023/08/Pink_-H.png|caption^null|alt^null|title^Pink_-H|description^null\" img_width=\"60\" icon_style=\"advanced\" icon_border_style=\"solid\" icon_color_border=\"#ffffff\" icon_border_size=\"1\" icon_border_radius=\"500\" icon_border_spacing=\"1\" title=\"First ISO 9001: 2015 ,WHO-GMP Quality Management systems certified Animal Health company in Sri Lanka since August, 2012\" title_font_style=\"font-weight:bold;\" title_font_color=\"#ffffff\" title_font_size=\"desktop:20px;\"][/bsf-info-box][/ult_animation_block][/vc_column_inner][/vc_row_inner][vc_row_inner gap=\"20\"][vc_column_inner width=\"1/2\" css=\".vc_custom_1691995661095{background-color: #722f8b !important;border: 1px solid #722f8b !important;border-radius: 35px !important;}\"][ult_animation_block animation=\"fadeInLeftBig\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][bsf-info-box icon_type=\"custom\" icon_img=\"id^3117|url^https://farmchemie.yasithawd.com/wp-content/uploads/2023/08/Pink_-H.png|caption^null|alt^null|title^Pink_-H|description^null\" img_width=\"60\" icon_style=\"advanced\" icon_border_style=\"solid\" icon_color_border=\"#ffffff\" icon_border_size=\"1\" icon_border_radius=\"500\" icon_border_spacing=\"1\" title=\"First FAMI-QS certified company in sri lanka\" title_font_style=\"font-weight:bold;\" title_font_color=\"#ffffff\" title_font_size=\"desktop:20px;\"][/bsf-info-box][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/2\" css=\".vc_custom_1691995519863{background-color: #f4ab20 !important;border: 1px solid #f4ab20 !important;border-radius: 35px !important;}\"][ult_animation_block animation=\"fadeInRightBig\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][bsf-info-box icon_type=\"custom\" icon_img=\"id^3117|url^https://farmchemie.yasithawd.com/wp-content/uploads/2023/08/Pink_-H.png|caption^null|alt^null|title^Pink_-H|description^null\" img_width=\"60\" icon_style=\"advanced\" icon_border_style=\"solid\" icon_color_border=\"#ffffff\" icon_border_size=\"1\" icon_border_radius=\"500\" icon_border_spacing=\"1\" title=\"First Certificate of Ethical Trading certified in Livestock industry\" title_font_style=\"font-weight:bold;\" title_font_size=\"desktop:20px;\"][/bsf-info-box][/ult_animation_block][/vc_column_inner][/vc_row_inner][vc_row_inner gap=\"20\"][vc_column_inner width=\"1/4\" css=\".vc_custom_1695528026328{border-radius: 35px !important;}\" offset=\"vc_hidden-xs\"][/vc_column_inner][vc_column_inner width=\"2/4\" css=\".vc_custom_1691995519863{background-color: #f4ab20 !important;border: 1px solid #f4ab20 !important;border-radius: 35px !important;}\"][ult_animation_block animation=\"fadeInLeftBig\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][bsf-info-box icon_type=\"custom\" icon_img=\"id^3117|url^https://farmchemie.yasithawd.com/wp-content/uploads/2023/08/Pink_-H.png|caption^null|alt^null|title^Pink_-H|description^null\" img_width=\"60\" icon_style=\"advanced\" icon_border_style=\"solid\" icon_color_border=\"#ffffff\" icon_border_size=\"1\" icon_border_radius=\"500\" icon_border_spacing=\"1\" title=\"First Silver awarded company at National Exports Awards in Livestock industry\" title_font_style=\"font-weight:bold;\" title_font_size=\"desktop:20px;\"][/bsf-info-box][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/4\" offset=\"vc_hidden-xs\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row full_width=\"stretch_row\" equal_height=\"yes\" content_placement=\"bottom\" css=\".vc_custom_1693627699480{margin-top: 15px !important;}\"][vc_column][ultimate_heading main_heading=\"Certifications\" main_heading_color=\"#762888\" main_heading_margin=\"margin-top:35px;\"][/ultimate_heading][vc_row_inner content_placement=\"bottom\"][vc_column_inner width=\"1/6\"][dt_fancy_image image_id=\"3407\" width=\"300\" caption=\"off\"][/vc_column_inner][vc_column_inner width=\"1/6\"][dt_fancy_image image_id=\"3408\" width=\"300\" caption=\"off\"][/vc_column_inner][vc_column_inner width=\"1/6\"][dt_fancy_image image_id=\"3409\" width=\"300\" caption=\"off\"][/vc_column_inner][vc_column_inner width=\"1/6\"][dt_fancy_image image_id=\"3411\" width=\"300\" caption=\"off\"][/vc_column_inner][vc_column_inner width=\"1/6\"][dt_fancy_image image_id=\"3410\" width=\"300\" caption=\"off\"][/vc_column_inner][vc_column_inner width=\"1/6\"][dt_fancy_image image_id=\"3406\" width=\"300\" caption=\"off\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row full_width=\"stretch_row\" equal_height=\"yes\" content_placement=\"bottom\" css=\".vc_custom_1693625624233{margin-top: 15px !important;}\"][vc_column][ultimate_heading main_heading=\"Awards\" main_heading_color=\"#762888\" main_heading_margin=\"margin-top:35px;\"][/ultimate_heading][ultimate_carousel slide_to_scroll=\"single\" title_text_typography=\"\" slides_on_mob=\"1\"][dt_fancy_image image_id=\"3412\" width=\"300\"][dt_fancy_image image_id=\"3413\" width=\"300\" caption=\"off\"][dt_fancy_image image_id=\"3414\" width=\"300\" caption=\"off\"][dt_fancy_image image_id=\"3415\" width=\"300\" caption=\"off\"][dt_fancy_image image_id=\"3416\" width=\"300\" caption=\"off\"][dt_fancy_image image_id=\"3417\" width=\"300\" caption=\"off\"][dt_fancy_image image_id=\"3418\" width=\"300\" caption=\"off\"][dt_fancy_image image_id=\"3420\" width=\"300\" caption=\"off\"][dt_fancy_image image_id=\"3419\" width=\"300\" caption=\"off\"][dt_fancy_image image_id=\"3422\" width=\"300\" caption=\"off\"][dt_fancy_image image_id=\"3421\" width=\"300\" caption=\"off\"][dt_fancy_image image_id=\"3422\" width=\"300\" caption=\"off\"][dt_fancy_image image_id=\"3423\" width=\"300\" caption=\"off\"][dt_fancy_image image_id=\"3424\" width=\"300\" caption=\"off\"][dt_fancy_image image_id=\"3425\" width=\"300\" caption=\"off\"][/ultimate_carousel][/vc_column][/vc_row][vc_row disable_element=\"yes\" css=\".vc_custom_1695294608306{margin-top: 15px !important;}\"][vc_column][ultimate_heading main_heading=\"Board Of Directors\" main_heading_color=\"#762888\" main_heading_margin=\"margin-top:35px;margin-bottom:35px;\"][/ultimate_heading][ultimate_carousel slides_on_desk=\"3\" slides_on_mob=\"1\" arrow_style=\"square-bg\" arrow_bg_color=\"#039447\" arrow_color=\"#ffffff\" next_icon=\"ultsl-arrow-right6\" prev_icon=\"ultsl-arrow-left6\" dots_color=\"#039447\" item_animation=\"fadeIn\" css_ad_caraousel=\".vc_custom_1694697209111{padding-right: 10px !important;padding-left: 10px !important;}\"][vc_row_inner][vc_column_inner][ultimate_heading main_heading=\"Uditha Wanigasinghe\" heading_tag=\"h3\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;\"]Managing Director[/ultimate_heading][ultimate_modal modal_title=\"Read more\" btn_size=\"md\" btn_bg_color=\"#089548\" btn_text=\"Read more\" overlay_bg_opacity=\"75\" img_size=\"80\" btn_txt_color=\"#ffffff\"]pretium mauris pretium mauris pretium mauris pretium mauris pretium mauris pretium mauris pretium mauris pretium mauris pretium mauris pretium mauris pretium mauris pretium mauris pretium mauris pretium mauris pretium mauris pretium mauris pretium mauris pretium mauris pretium mauris pretium mauris pretium mauris pretium mauris pretium mauris pretium mauris pretium mauris pretium mauris pretium mauris pretium mauris[/ultimate_modal][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner][ultimate_heading main_heading=\"Senitha Wanigasinghe\" heading_tag=\"h3\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;\"]Director/ CEO[/ultimate_heading][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner][ultimate_heading main_heading=\"Thulitha Wanigasinghe\" heading_tag=\"h3\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;\"]Director - Veterinary Services &amp; RA[/ultimate_heading][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner][ultimate_heading main_heading=\"Yvonne Van Cuylenberg\" heading_tag=\"h3\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;\"]Director - HR &amp; Administration[/ultimate_heading][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner][ultimate_heading main_heading=\"Gamini Wanigasinghe\" heading_tag=\"h3\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;\"]Director[/ultimate_heading][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner][ultimate_heading main_heading=\"Ajith Welianga\" heading_tag=\"h3\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;\"]Director - Marketing[/ultimate_heading][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner][ultimate_heading main_heading=\"Sunil Ranjith Guruge\" heading_tag=\"h3\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;\"]Director - Customer &amp; Employee Relations[/ultimate_heading][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner][ultimate_heading main_heading=\"Sampath Gunathilake\" heading_tag=\"h3\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;\"]Director - Sales[/ultimate_heading][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner][ultimate_heading main_heading=\"Chanaka Indrajith\" heading_tag=\"h3\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;\"]Director Production / COO[/ultimate_heading][/vc_column_inner][/vc_row_inner][/ultimate_carousel][/vc_column][/vc_row][vc_row disable_element=\"yes\"][vc_column][ultimate_heading main_heading=\"Board Of Directors\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;margin-bottom:35px;\"][/ultimate_heading][vc_row_inner][vc_column_inner width=\"1/3\"][ult_animation_block animation=\"fadeInUp\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][dt_fancy_image image_id=\"3172\" width=\"300\" border_radius=\"1px\" caption=\"off\" css=\".vc_custom_1692278922309{border-top-width: 1px !important;border-right-width: 1px !important;border-bottom-width: 1px !important;border-left-width: 1px !important;border-left-color: #059444 !important;border-left-style: solid !important;border-right-color: #059444 !important;border-right-style: solid !important;border-top-color: #059444 !important;border-top-style: solid !important;border-bottom-color: #059444 !important;border-bottom-style: solid !important;border-radius: 1px !important;}\"][ultimate_heading main_heading=\"Quisque sed nibh tristique\" heading_tag=\"h3\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;\"]</p>\r\n<ul>\r\n<li>Duis lorem risus, aliquet a auctor a, venenatis in dui. Praesent et eros et risus dapibus placerat hendrerit cursus magna.</li>\r\n<li>Praesent et eros et risus dapibus placerat hendrerit cursus magna.</li>\r\n<li>aliquet a auctor a, venenatis in dui.</li>\r\n</ul>\r\n<p>[/ultimate_heading][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/3\"][ult_animation_block animation=\"fadeInDown\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][dt_fancy_image image_id=\"3171\" width=\"300\" border_radius=\"1px\" caption=\"off\" css=\".vc_custom_1692278929158{border-top-width: 1px !important;border-right-width: 1px !important;border-bottom-width: 1px !important;border-left-width: 1px !important;border-left-color: #059444 !important;border-left-style: solid !important;border-right-color: #059444 !important;border-right-style: solid !important;border-top-color: #059444 !important;border-top-style: solid !important;border-bottom-color: #059444 !important;border-bottom-style: solid !important;border-radius: 1px !important;}\"][ultimate_heading main_heading=\"Quisque sed nibh tristique\" heading_tag=\"h3\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;\"]</p>\r\n<ul>\r\n<li>Duis lorem risus, aliquet a auctor a, venenatis in dui. Praesent et eros et risus dapibus placerat hendrerit cursus magna.</li>\r\n<li>Praesent et eros et risus dapibus placerat hendrerit cursus magna.</li>\r\n<li>aliquet a auctor a, venenatis in dui.</li>\r\n</ul>\r\n<p>[/ultimate_heading][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/3\"][ult_animation_block animation=\"fadeInUp\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][dt_fancy_image image_id=\"3170\" width=\"300\" border_radius=\"1px\" caption=\"off\" css=\".vc_custom_1692278936750{border-top-width: 1px !important;border-right-width: 1px !important;border-bottom-width: 1px !important;border-left-width: 1px !important;border-left-color: #059444 !important;border-left-style: solid !important;border-right-color: #059444 !important;border-right-style: solid !important;border-top-color: #059444 !important;border-top-style: solid !important;border-bottom-color: #059444 !important;border-bottom-style: solid !important;border-radius: 1px !important;}\"][ultimate_heading main_heading=\"Quisque sed nibh tristique\" heading_tag=\"h3\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;\"]</p>\r\n<ul>\r\n<li>Duis lorem risus, aliquet a auctor a, venenatis in dui. Praesent et eros et risus dapibus placerat hendrerit cursus magna.</li>\r\n<li>Praesent et eros et risus dapibus placerat hendrerit cursus magna.</li>\r\n<li>aliquet a auctor a, venenatis in dui.</li>\r\n</ul>\r\n<p>[/ultimate_heading][/ult_animation_block][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row disable_element=\"yes\"][vc_column][ultimate_heading main_heading=\"Executive Directors\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;margin-bottom:35px;\"][/ultimate_heading][vc_row_inner][vc_column_inner width=\"1/5\"][ult_animation_block animation=\"fadeInUp\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][dt_fancy_image image_id=\"3172\" width=\"300\" border_radius=\"1px\" caption=\"off\" css=\".vc_custom_1692278922309{border-top-width: 1px !important;border-right-width: 1px !important;border-bottom-width: 1px !important;border-left-width: 1px !important;border-left-color: #059444 !important;border-left-style: solid !important;border-right-color: #059444 !important;border-right-style: solid !important;border-top-color: #059444 !important;border-top-style: solid !important;border-bottom-color: #059444 !important;border-bottom-style: solid !important;border-radius: 1px !important;}\"][ultimate_heading main_heading=\"Quisque sed nibh tristique\" heading_tag=\"h3\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;\"]</p>\r\n<ul>\r\n<li>Duis lorem risus, aliquet a auctor a, venenatis in dui. Praesent et eros et risus dapibus placerat hendrerit cursus magna.</li>\r\n<li>Praesent et eros et risus dapibus placerat hendrerit cursus magna.</li>\r\n<li>aliquet a auctor a, venenatis in dui.</li>\r\n</ul>\r\n<p>[/ultimate_heading][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/5\"][ult_animation_block animation=\"fadeInDown\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][dt_fancy_image image_id=\"3171\" width=\"300\" border_radius=\"1px\" caption=\"off\" css=\".vc_custom_1692278929158{border-top-width: 1px !important;border-right-width: 1px !important;border-bottom-width: 1px !important;border-left-width: 1px !important;border-left-color: #059444 !important;border-left-style: solid !important;border-right-color: #059444 !important;border-right-style: solid !important;border-top-color: #059444 !important;border-top-style: solid !important;border-bottom-color: #059444 !important;border-bottom-style: solid !important;border-radius: 1px !important;}\"][ultimate_heading main_heading=\"Quisque sed nibh tristique\" heading_tag=\"h3\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;\"]</p>\r\n<ul>\r\n<li>Duis lorem risus, aliquet a auctor a, venenatis in dui. Praesent et eros et risus dapibus placerat hendrerit cursus magna.</li>\r\n<li>Praesent et eros et risus dapibus placerat hendrerit cursus magna.</li>\r\n<li>aliquet a auctor a, venenatis in dui.</li>\r\n</ul>\r\n<p>[/ultimate_heading][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/5\"][ult_animation_block animation=\"fadeInUp\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][dt_fancy_image image_id=\"3170\" width=\"300\" border_radius=\"1px\" caption=\"off\" css=\".vc_custom_1692278936750{border-top-width: 1px !important;border-right-width: 1px !important;border-bottom-width: 1px !important;border-left-width: 1px !important;border-left-color: #059444 !important;border-left-style: solid !important;border-right-color: #059444 !important;border-right-style: solid !important;border-top-color: #059444 !important;border-top-style: solid !important;border-bottom-color: #059444 !important;border-bottom-style: solid !important;border-radius: 1px !important;}\"][ultimate_heading main_heading=\"Quisque sed nibh tristique\" heading_tag=\"h3\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;\"]</p>\r\n<ul>\r\n<li>Duis lorem risus, aliquet a auctor a, venenatis in dui. Praesent et eros et risus dapibus placerat hendrerit cursus magna.</li>\r\n<li>Praesent et eros et risus dapibus placerat hendrerit cursus magna.</li>\r\n<li>aliquet a auctor a, venenatis in dui.</li>\r\n</ul>\r\n<p>[/ultimate_heading][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/5\"][ult_animation_block animation=\"fadeInDown\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][dt_fancy_image image_id=\"3170\" width=\"300\" border_radius=\"1px\" caption=\"off\" css=\".vc_custom_1692278936750{border-top-width: 1px !important;border-right-width: 1px !important;border-bottom-width: 1px !important;border-left-width: 1px !important;border-left-color: #059444 !important;border-left-style: solid !important;border-right-color: #059444 !important;border-right-style: solid !important;border-top-color: #059444 !important;border-top-style: solid !important;border-bottom-color: #059444 !important;border-bottom-style: solid !important;border-radius: 1px !important;}\"][ultimate_heading main_heading=\"Quisque sed nibh tristique\" heading_tag=\"h3\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;\"]</p>\r\n<ul>\r\n<li>Duis lorem risus, aliquet a auctor a, venenatis in dui. Praesent et eros et risus dapibus placerat hendrerit cursus magna.</li>\r\n<li>Praesent et eros et risus dapibus placerat hendrerit cursus magna.</li>\r\n<li>aliquet a auctor a, venenatis in dui.</li>\r\n</ul>\r\n<p>[/ultimate_heading][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/5\"][ult_animation_block animation=\"fadeInDown\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][dt_fancy_image image_id=\"3171\" width=\"300\" border_radius=\"1px\" caption=\"off\" css=\".vc_custom_1692278929158{border-top-width: 1px !important;border-right-width: 1px !important;border-bottom-width: 1px !important;border-left-width: 1px !important;border-left-color: #059444 !important;border-left-style: solid !important;border-right-color: #059444 !important;border-right-style: solid !important;border-top-color: #059444 !important;border-top-style: solid !important;border-bottom-color: #059444 !important;border-bottom-style: solid !important;border-radius: 1px !important;}\"][ultimate_heading main_heading=\"Quisque sed nibh tristique\" heading_tag=\"h3\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;\"]</p>\r\n<ul>\r\n<li>Duis lorem risus, aliquet a auctor a, venenatis in dui. Praesent et eros et risus dapibus placerat hendrerit cursus magna.</li>\r\n<li>Praesent et eros et risus dapibus placerat hendrerit cursus magna.</li>\r\n<li>aliquet a auctor a, venenatis in dui.</li>\r\n</ul>\r\n<p>[/ultimate_heading][/ult_animation_block][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner width=\"2/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row disable_element=\"yes\"][vc_column][ultimate_heading main_heading=\"Next Generation\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;margin-bottom:35px;\"][/ultimate_heading][vc_row_inner][vc_column_inner width=\"1/2\"][ult_animation_block animation=\"fadeInUp\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][dt_fancy_image image_id=\"3172\" width=\"300\" border_radius=\"1px\" caption=\"off\" css=\".vc_custom_1692278922309{border-top-width: 1px !important;border-right-width: 1px !important;border-bottom-width: 1px !important;border-left-width: 1px !important;border-left-color: #059444 !important;border-left-style: solid !important;border-right-color: #059444 !important;border-right-style: solid !important;border-top-color: #059444 !important;border-top-style: solid !important;border-bottom-color: #059444 !important;border-bottom-style: solid !important;border-radius: 1px !important;}\"][ultimate_heading main_heading=\"Quisque sed nibh tristique\" heading_tag=\"h3\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;\"]</p>\r\n<ul>\r\n<li>Duis lorem risus, aliquet a auctor a, venenatis in dui. Praesent et eros et risus dapibus placerat hendrerit cursus magna.</li>\r\n<li>Praesent et eros et risus dapibus placerat hendrerit cursus magna.</li>\r\n<li>aliquet a auctor a, venenatis in dui.</li>\r\n</ul>\r\n<p>[/ultimate_heading][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/2\"][ult_animation_block animation=\"fadeInDown\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][dt_fancy_image image_id=\"3171\" width=\"300\" border_radius=\"1px\" caption=\"off\" css=\".vc_custom_1692278929158{border-top-width: 1px !important;border-right-width: 1px !important;border-bottom-width: 1px !important;border-left-width: 1px !important;border-left-color: #059444 !important;border-left-style: solid !important;border-right-color: #059444 !important;border-right-style: solid !important;border-top-color: #059444 !important;border-top-style: solid !important;border-bottom-color: #059444 !important;border-bottom-style: solid !important;border-radius: 1px !important;}\"][ultimate_heading main_heading=\"Quisque sed nibh tristique\" heading_tag=\"h3\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;\"]</p>\r\n<ul>\r\n<li>Duis lorem risus, aliquet a auctor a, venenatis in dui. Praesent et eros et risus dapibus placerat hendrerit cursus magna.</li>\r\n<li>Praesent et eros et risus dapibus placerat hendrerit cursus magna.</li>\r\n<li>aliquet a auctor a, venenatis in dui.</li>\r\n</ul>\r\n<p>[/ultimate_heading][/ult_animation_block][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row]</p>\r\n','About us','','inherit','closed','closed','','2917-revision-v1','','','2023-09-24 04:07:03','2023-09-24 04:07:03','',2917,'https://farmchemie.yasithawd.com/?p=3878',0,'revision','',0),(3879,1,'2023-09-24 04:10:28','2023-09-24 04:10:28','[vc_row full_width=\"stretch_row_content_no_spaces\"][vc_column][ultimate_heading main_heading=\"Our History\" main_heading_color=\"#762888\"][/ultimate_heading][/vc_column][/vc_row][vc_row][vc_column][vc_row_inner equal_height=\"yes\" content_placement=\"middle\" css=\".vc_custom_1692359205466{margin-top: 35px !important;}\"][vc_column_inner width=\"1/2\"][ult_animation_block animation=\"fadeInLeftBig\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][vc_single_image image=\"3273\" img_size=\"full\" alignment=\"center\" style=\"vc_box_rounded\"][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/2\"][ult_animation_block animation=\"fadeInRightBig\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][ultimate_heading main_heading=\"Founded in 2002\" heading_tag=\"h3\" main_heading_color=\"#039447\" alignment=\"left\" sub_heading_font_size=\"desktop:18px;\"]Founded in 2002 by Mr. Uditha Wanigasinghe, an agriculturist who had a mission to aid valuable livestock producers in the country to enhance the yield and profitability of production. FARMCHEMIE introduced unprecedented solutions and consistent technical services to gain our customers’ trust and became the market leader in animal health products in 2006 within just four years.[/ultimate_heading][/ult_animation_block][/vc_column_inner][/vc_row_inner][vc_separator color=\"custom\" accent_color=\"#039447\"][vc_row_inner equal_height=\"yes\" rtl_reverse=\"yes\" content_placement=\"middle\" css=\".vc_custom_1692359216075{margin-top: 35px !important;}\"][vc_column_inner width=\"1/2\" offset=\"vc_hidden-xs\"][ult_animation_block animation=\"fadeInLeftBig\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][ultimate_heading main_heading=\"2006\" heading_tag=\"h3\" main_heading_color=\"#039447\" alignment=\"right\"]In 2006, the Sri Lankan poultry industry was affected with Avian Influenza which became a difficult period for the growth of FARMCHEMIE. This was the key factor in our decision to diversify into Agro Products. PLANTCHEM &amp; PLANTSEEDS were established to offer solutions in Agro specialty fertilizers, pesticides and seeds to invaluable cultivators.[/ultimate_heading][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/2\" offset=\"vc_hidden-xs\"][ult_animation_block animation=\"fadeInRightBig\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][vc_single_image image=\"3276\" img_size=\"full\" alignment=\"center\" style=\"vc_box_rounded\"][/ult_animation_block][/vc_column_inner][/vc_row_inner][vc_row_inner equal_height=\"yes\" rtl_reverse=\"yes\" content_placement=\"middle\" css=\".vc_custom_1692359216075{margin-top: 35px !important;}\"][vc_column_inner width=\"1/2\" offset=\"vc_hidden-lg vc_hidden-md vc_hidden-sm\"][ult_animation_block animation=\"fadeInRightBig\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][vc_single_image image=\"3276\" img_size=\"full\" alignment=\"center\" style=\"vc_box_rounded\"][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/2\" offset=\"vc_hidden-lg vc_hidden-md vc_hidden-sm\"][ult_animation_block animation=\"fadeInLeftBig\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][ultimate_heading main_heading=\"2006\" heading_tag=\"h3\" main_heading_color=\"#039447\" alignment=\"left\" margin_design_tab_text=\"\"]\r\n\r\nIn 2006, the Sri Lankan poultry industry was affected with Avian Influenza which became a difficult period for the growth of FARMCHEMIE. This was the key factor in our decision to diversify into Agro Products. PLANTCHEM &amp; PLANTSEEDS were established to offer solutions in Agro specialty fertilizers, pesticides and seeds to invaluable cultivators.\r\n\r\n[/ultimate_heading][/ult_animation_block][/vc_column_inner][/vc_row_inner][vc_separator color=\"custom\" accent_color=\"#039447\"][vc_row_inner equal_height=\"yes\" content_placement=\"middle\" css=\".vc_custom_1692359231594{margin-top: 35px !important;}\"][vc_column_inner width=\"1/2\"][ult_animation_block animation=\"fadeInLeftBig\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][vc_single_image image=\"3277\" img_size=\"full\" alignment=\"center\" style=\"vc_box_rounded\"][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/2\"][ult_animation_block animation=\"fadeInRightBig\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][ultimate_heading main_heading=\"2010\" heading_tag=\"h3\" main_heading_color=\"#039447\" alignment=\"left\"]In 2010, FEED CHEMIE became the subsequent addition to ever-growing vision of Mr. Uditha Wanigasinghe and entered the Animal Feed Additives market.[/ultimate_heading][/ult_animation_block][/vc_column_inner][/vc_row_inner][vc_separator color=\"custom\" accent_color=\"#039447\"][vc_row_inner equal_height=\"yes\" rtl_reverse=\"yes\" content_placement=\"middle\" css=\".vc_custom_1692359239274{margin-top: 35px !important;}\"][vc_column_inner width=\"1/2\" offset=\"vc_hidden-xs\"][ult_animation_block animation=\"fadeInLeftBig\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][ultimate_heading main_heading=\"2012\" heading_tag=\"h3\" main_heading_color=\"#039447\" alignment=\"right\"]The year 2012 is described as a turning point in our journey as FARMCHEMIE established our first production facility for the manufacturing and packing of animal health products. FARMCHEMIE became the first animal health organization in Sri Lanka to obtain ISO 9001:2015 and WHO GMP International Quality Certification. With our own formulation unit, FARMCHEMIE was able to offer customized solutions to cater the needs of the Sri Lankan Livestock Industry.[/ultimate_heading][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/2\" offset=\"vc_hidden-xs\"][ult_animation_block animation=\"fadeInRightBig\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][vc_single_image image=\"3278\" img_size=\"full\" alignment=\"center\" style=\"vc_box_rounded\"][/ult_animation_block][/vc_column_inner][/vc_row_inner][vc_row_inner equal_height=\"yes\" rtl_reverse=\"yes\" content_placement=\"middle\" css=\".vc_custom_1692359239274{margin-top: 35px !important;}\"][vc_column_inner width=\"1/2\" offset=\"vc_hidden-lg vc_hidden-md vc_hidden-sm\"][ult_animation_block animation=\"fadeInRightBig\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][vc_single_image image=\"3278\" img_size=\"full\" alignment=\"center\" style=\"vc_box_rounded\"][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/2\" offset=\"vc_hidden-lg vc_hidden-md vc_hidden-sm\"][ult_animation_block animation=\"fadeInLeftBig\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][ultimate_heading main_heading=\"2012\" heading_tag=\"h3\" main_heading_color=\"#039447\" alignment=\"left\" margin_design_tab_text=\"\"]The year 2012 is described as a turning point in our journey as FARMCHEMIE established our first production facility for the manufacturing and packing of animal health products. FARMCHEMIE became the first animal health organization in Sri Lanka to obtain ISO 9001:2015 and WHO GMP International Quality Certification. With our own formulation unit, FARMCHEMIE was able to offer customized solutions to cater the needs of the Sri Lankan Livestock Industry.[/ultimate_heading][/ult_animation_block][/vc_column_inner][/vc_row_inner][vc_separator color=\"custom\" accent_color=\"#039447\"][vc_row_inner content_placement=\"middle\" css=\".vc_custom_1692359246626{margin-top: 35px !important;}\"][vc_column_inner width=\"1/2\"][ult_animation_block animation=\"fadeInLeftBig\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][vc_single_image image=\"3279\" img_size=\"full\" alignment=\"center\" style=\"vc_box_rounded\"][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/2\"][ult_animation_block animation=\"fadeInRightBig\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][ultimate_heading main_heading=\"2016\" heading_tag=\"h3\" main_heading_color=\"#039447\" alignment=\"left\"]The year 2016 was another key milestone with the entry to the International Markets. FARMCHEMIE exported our first Feed Premix consignment to India and in 2018 our export operation was distinctly established as FARMCHEMIE MANUFACTURERS, a Board of Investment (BOI) approved entity.[/ultimate_heading][/ult_animation_block][/vc_column_inner][/vc_row_inner][vc_separator color=\"custom\" accent_color=\"#039447\"][vc_row_inner equal_height=\"yes\" rtl_reverse=\"yes\" content_placement=\"middle\" css=\".vc_custom_1695527931440{margin-top: 35px !important;}\"][vc_column_inner width=\"1/2\"][ult_animation_block animation=\"fadeInLeftBig\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][ultimate_heading main_heading=\"Fully automated manufacturing\" heading_tag=\"h3\" main_heading_color=\"#039447\" alignment=\"right\"]FARMCHEMIE MANUFACTURERS has invested in fully automated manufacturing facility from Bühler and became the first Sri Lankan owned company to obtain FAMI-QS International Quality Certification.[/ultimate_heading][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/2\"][ult_animation_block animation=\"fadeInRightBig\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][vc_single_image image=\"3280\" img_size=\"full\" alignment=\"center\" style=\"vc_box_rounded\"][/ult_animation_block][/vc_column_inner][/vc_row_inner][vc_separator color=\"custom\" accent_color=\"#039447\"][vc_row_inner equal_height=\"yes\" content_placement=\"middle\" css=\".vc_custom_1692359258634{margin-top: 35px !important;}\"][vc_column_inner width=\"1/2\"][ult_animation_block animation=\"fadeInLeftBig\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][vc_single_image image=\"3281\" img_size=\"full\" alignment=\"center\" style=\"vc_box_rounded\"][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/2\"][ult_animation_block animation=\"fadeInRightBig\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][ultimate_heading main_heading=\"Official toll manufacturer partner\" heading_tag=\"h3\" main_heading_color=\"#039447\" alignment=\"left\"]With the trust and reputation built as a reliable manufacturer of animal feed additives and supplements in the global market, several world-renowned international brands have appointed FARMCHEMIE MANUFACTURERS as the official toll manufacturer partner. FARMCHEMIE MANUFACTURERS exports a wide range of products consisting of premixes, specialty feed additives, oral liquid supplements and pet supplements to various markets in South Asia, East Asia, Middle East and Africa.\r\n\r\nFARMCHEMIE, FEED CHEMIE &amp; FARMCHEMIE MANUFACTURERS currently operate under the ownership of our holding company, DYVESTA.\r\n\r\nDYEVSTA has become the pinnacle of Animal Nutrition and Health.\r\n\r\nDYVESTA is Dynamic, through our continuous evolution, growth and progress. DYVESTA is Diverse, in terms of both our business strategy and our community. DYVESTA is Devoted to our valuable business partners through exceptional service.[/ultimate_heading][/ult_animation_block][/vc_column_inner][/vc_row_inner][vc_separator color=\"custom\" accent_color=\"#039447\"][/vc_column][/vc_row][vc_row full_width=\"stretch_row\" equal_height=\"yes\" bg_type=\"image\" parallax_style=\"vcpb-vz-jquery\" bg_image_new=\"id^3256|url^https://farmchemie.yasithawd.com/wp-content/uploads/2023/08/Vision-Mission.png|caption^null|alt^null|title^Vision-&amp;-Mission|description^null\" bg_image_repeat=\"no-repeat\" enable_overlay=\"enable_overlay_value\" overlay_color=\"#000000\" overlay_pattern=\"01.png\" overlay_pattern_opacity=\"5\" css=\".vc_custom_1692366072362{margin-top: 35px !important;padding-top: 65px !important;padding-bottom: 100px !important;}\"][vc_column][vc_row_inner equal_height=\"yes\"][vc_column_inner width=\"1/2\"][ult_animation_block animation=\"fadeInLeftBig\" animation_duration=\"2\" animation_delay=\"0\" animation_iteration_count=\"1\"][ultimate_heading main_heading=\"Vision\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\"]To be the customers’ first and best choice by ensuring outstanding satisfaction through a well-trained and dedicated team. Prompt and quality solutions to our customers’ requirements will determine the increase of return on investment for us.[/ultimate_heading][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/2\"][ult_animation_block animation=\"fadeInRightBig\" animation_duration=\"2\" animation_delay=\"0\" animation_iteration_count=\"1\"][ultimate_heading main_heading=\"Mission\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\"]To become a world renowned manufacturer of Animal Health products and a trusted partner among our stakeholders for our integrity as well as for providing effective solutions[/ultimate_heading][/ult_animation_block][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row css=\".vc_custom_1684836308288{margin-top: 15px !important;}\"][vc_column][ultimate_heading main_heading=\"Achievements\" main_heading_color=\"#762888\" main_heading_margin=\"margin-top:35px;\"][/ultimate_heading][vc_row_inner gap=\"20\"][vc_column_inner width=\"1/2\" css=\".vc_custom_1691995519863{background-color: #f4ab20 !important;border: 1px solid #f4ab20 !important;border-radius: 35px !important;}\"][ult_animation_block animation=\"fadeInLeftBig\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][bsf-info-box icon_type=\"custom\" icon_img=\"id^3117|url^https://farmchemie.yasithawd.com/wp-content/uploads/2023/08/Pink_-H.png|caption^null|alt^null|title^Pink_-H|description^null\" img_width=\"60\" icon_style=\"advanced\" icon_border_style=\"solid\" icon_color_border=\"#ffffff\" icon_border_size=\"1\" icon_border_radius=\"500\" icon_border_spacing=\"1\" title=\"First Free Sale Certificate obtained from Veterinary Drug Control Authority (VDCA) for Veterinary Pharmaceuticals\" title_font_style=\"font-weight:bold;\" title_font_size=\"desktop:20px;\"][/bsf-info-box][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/2\" css=\".vc_custom_1691995661095{background-color: #722f8b !important;border: 1px solid #722f8b !important;border-radius: 35px !important;}\"][ult_animation_block animation=\"fadeInRightBig\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][bsf-info-box icon_type=\"custom\" icon_img=\"id^3117|url^https://farmchemie.yasithawd.com/wp-content/uploads/2023/08/Pink_-H.png|caption^null|alt^null|title^Pink_-H|description^null\" img_width=\"60\" icon_style=\"advanced\" icon_border_style=\"solid\" icon_color_border=\"#ffffff\" icon_border_size=\"1\" icon_border_radius=\"500\" icon_border_spacing=\"1\" title=\"First ISO 9001: 2015 ,WHO-GMP Quality Management systems certified Animal Health company in Sri Lanka since August, 2012\" title_font_style=\"font-weight:bold;\" title_font_color=\"#ffffff\" title_font_size=\"desktop:20px;\"][/bsf-info-box][/ult_animation_block][/vc_column_inner][/vc_row_inner][vc_row_inner gap=\"20\"][vc_column_inner width=\"1/2\" css=\".vc_custom_1691995661095{background-color: #722f8b !important;border: 1px solid #722f8b !important;border-radius: 35px !important;}\"][ult_animation_block animation=\"fadeInLeftBig\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][bsf-info-box icon_type=\"custom\" icon_img=\"id^3117|url^https://farmchemie.yasithawd.com/wp-content/uploads/2023/08/Pink_-H.png|caption^null|alt^null|title^Pink_-H|description^null\" img_width=\"60\" icon_style=\"advanced\" icon_border_style=\"solid\" icon_color_border=\"#ffffff\" icon_border_size=\"1\" icon_border_radius=\"500\" icon_border_spacing=\"1\" title=\"First FAMI-QS certified company in sri lanka\" title_font_style=\"font-weight:bold;\" title_font_color=\"#ffffff\" title_font_size=\"desktop:20px;\"][/bsf-info-box][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/2\" css=\".vc_custom_1691995519863{background-color: #f4ab20 !important;border: 1px solid #f4ab20 !important;border-radius: 35px !important;}\"][ult_animation_block animation=\"fadeInRightBig\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][bsf-info-box icon_type=\"custom\" icon_img=\"id^3117|url^https://farmchemie.yasithawd.com/wp-content/uploads/2023/08/Pink_-H.png|caption^null|alt^null|title^Pink_-H|description^null\" img_width=\"60\" icon_style=\"advanced\" icon_border_style=\"solid\" icon_color_border=\"#ffffff\" icon_border_size=\"1\" icon_border_radius=\"500\" icon_border_spacing=\"1\" title=\"First Certificate of Ethical Trading certified in Livestock industry\" title_font_style=\"font-weight:bold;\" title_font_size=\"desktop:20px;\"][/bsf-info-box][/ult_animation_block][/vc_column_inner][/vc_row_inner][vc_row_inner gap=\"20\"][vc_column_inner width=\"1/4\" css=\".vc_custom_1695528026328{border-radius: 35px !important;}\" offset=\"vc_hidden-xs\"][/vc_column_inner][vc_column_inner width=\"2/4\" css=\".vc_custom_1691995519863{background-color: #f4ab20 !important;border: 1px solid #f4ab20 !important;border-radius: 35px !important;}\"][ult_animation_block animation=\"fadeInLeftBig\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][bsf-info-box icon_type=\"custom\" icon_img=\"id^3117|url^https://farmchemie.yasithawd.com/wp-content/uploads/2023/08/Pink_-H.png|caption^null|alt^null|title^Pink_-H|description^null\" img_width=\"60\" icon_style=\"advanced\" icon_border_style=\"solid\" icon_color_border=\"#ffffff\" icon_border_size=\"1\" icon_border_radius=\"500\" icon_border_spacing=\"1\" title=\"First Silver awarded company at National Exports Awards in Livestock industry\" title_font_style=\"font-weight:bold;\" title_font_size=\"desktop:20px;\"][/bsf-info-box][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/4\" offset=\"vc_hidden-xs\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row full_width=\"stretch_row\" equal_height=\"yes\" content_placement=\"bottom\" css=\".vc_custom_1693627699480{margin-top: 15px !important;}\"][vc_column][ultimate_heading main_heading=\"Certifications\" main_heading_color=\"#762888\" main_heading_margin=\"margin-top:35px;\"][/ultimate_heading][vc_row_inner content_placement=\"bottom\"][vc_column_inner width=\"1/6\"][dt_fancy_image image_id=\"3407\" width=\"300\" caption=\"off\"][/vc_column_inner][vc_column_inner width=\"1/6\"][dt_fancy_image image_id=\"3408\" width=\"300\" caption=\"off\"][/vc_column_inner][vc_column_inner width=\"1/6\"][dt_fancy_image image_id=\"3409\" width=\"300\" caption=\"off\"][/vc_column_inner][vc_column_inner width=\"1/6\"][dt_fancy_image image_id=\"3411\" width=\"300\" caption=\"off\"][/vc_column_inner][vc_column_inner width=\"1/6\"][dt_fancy_image image_id=\"3410\" width=\"300\" caption=\"off\"][/vc_column_inner][vc_column_inner width=\"1/6\"][dt_fancy_image image_id=\"3406\" width=\"300\" caption=\"off\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row full_width=\"stretch_row\" equal_height=\"yes\" content_placement=\"bottom\" css=\".vc_custom_1693625624233{margin-top: 15px !important;}\"][vc_column][ultimate_heading main_heading=\"Awards\" main_heading_color=\"#762888\" main_heading_margin=\"margin-top:35px;\"][/ultimate_heading][ultimate_carousel slide_to_scroll=\"single\" slides_on_mob=\"1\"][dt_fancy_image image_id=\"3412\" width=\"300\"][dt_fancy_image image_id=\"3413\" width=\"300\" caption=\"off\"][dt_fancy_image image_id=\"3414\" width=\"300\" caption=\"off\"][dt_fancy_image image_id=\"3415\" width=\"300\" caption=\"off\"][dt_fancy_image image_id=\"3416\" width=\"300\" caption=\"off\"][dt_fancy_image image_id=\"3417\" width=\"300\" caption=\"off\"][dt_fancy_image image_id=\"3418\" width=\"300\" caption=\"off\"][dt_fancy_image image_id=\"3420\" width=\"300\" caption=\"off\"][dt_fancy_image image_id=\"3419\" width=\"300\" caption=\"off\"][dt_fancy_image image_id=\"3422\" width=\"300\" caption=\"off\"][dt_fancy_image image_id=\"3421\" width=\"300\" caption=\"off\"][dt_fancy_image image_id=\"3422\" width=\"300\" caption=\"off\"][dt_fancy_image image_id=\"3423\" width=\"300\" caption=\"off\"][dt_fancy_image image_id=\"3424\" width=\"300\" caption=\"off\"][dt_fancy_image image_id=\"3425\" width=\"300\" caption=\"off\"][/ultimate_carousel][/vc_column][/vc_row][vc_row disable_element=\"yes\" css=\".vc_custom_1695294608306{margin-top: 15px !important;}\"][vc_column][ultimate_heading main_heading=\"Board Of Directors\" main_heading_color=\"#762888\" main_heading_margin=\"margin-top:35px;margin-bottom:35px;\"][/ultimate_heading][ultimate_carousel slides_on_desk=\"3\" slides_on_mob=\"1\" arrow_style=\"square-bg\" arrow_bg_color=\"#039447\" arrow_color=\"#ffffff\" next_icon=\"ultsl-arrow-right6\" prev_icon=\"ultsl-arrow-left6\" dots_color=\"#039447\" item_animation=\"fadeIn\" css_ad_caraousel=\".vc_custom_1694697209111{padding-right: 10px !important;padding-left: 10px !important;}\"][vc_row_inner][vc_column_inner][ultimate_heading main_heading=\"Uditha Wanigasinghe\" heading_tag=\"h3\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;\"]Managing Director[/ultimate_heading][ultimate_modal modal_title=\"Read more\" btn_size=\"md\" btn_bg_color=\"#089548\" btn_text=\"Read more\" overlay_bg_opacity=\"75\" img_size=\"80\" btn_txt_color=\"#ffffff\"]pretium mauris pretium mauris pretium mauris pretium mauris pretium mauris pretium mauris pretium mauris pretium mauris pretium mauris pretium mauris pretium mauris pretium mauris pretium mauris pretium mauris pretium mauris pretium mauris pretium mauris pretium mauris pretium mauris pretium mauris pretium mauris pretium mauris pretium mauris pretium mauris pretium mauris pretium mauris pretium mauris pretium mauris[/ultimate_modal][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner][ultimate_heading main_heading=\"Senitha Wanigasinghe\" heading_tag=\"h3\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;\"]Director/ CEO[/ultimate_heading][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner][ultimate_heading main_heading=\"Thulitha Wanigasinghe\" heading_tag=\"h3\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;\"]Director - Veterinary Services &amp; RA[/ultimate_heading][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner][ultimate_heading main_heading=\"Yvonne Van Cuylenberg\" heading_tag=\"h3\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;\"]Director - HR &amp; Administration[/ultimate_heading][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner][ultimate_heading main_heading=\"Gamini Wanigasinghe\" heading_tag=\"h3\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;\"]Director[/ultimate_heading][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner][ultimate_heading main_heading=\"Ajith Welianga\" heading_tag=\"h3\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;\"]Director - Marketing[/ultimate_heading][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner][ultimate_heading main_heading=\"Sunil Ranjith Guruge\" heading_tag=\"h3\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;\"]Director - Customer &amp; Employee Relations[/ultimate_heading][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner][ultimate_heading main_heading=\"Sampath Gunathilake\" heading_tag=\"h3\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;\"]Director - Sales[/ultimate_heading][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner][ultimate_heading main_heading=\"Chanaka Indrajith\" heading_tag=\"h3\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;\"]Director Production / COO[/ultimate_heading][/vc_column_inner][/vc_row_inner][/ultimate_carousel][/vc_column][/vc_row][vc_row disable_element=\"yes\"][vc_column][ultimate_heading main_heading=\"Board Of Directors\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;margin-bottom:35px;\"][/ultimate_heading][vc_row_inner][vc_column_inner width=\"1/3\"][ult_animation_block animation=\"fadeInUp\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][dt_fancy_image image_id=\"3172\" width=\"300\" border_radius=\"1px\" caption=\"off\" css=\".vc_custom_1692278922309{border-top-width: 1px !important;border-right-width: 1px !important;border-bottom-width: 1px !important;border-left-width: 1px !important;border-left-color: #059444 !important;border-left-style: solid !important;border-right-color: #059444 !important;border-right-style: solid !important;border-top-color: #059444 !important;border-top-style: solid !important;border-bottom-color: #059444 !important;border-bottom-style: solid !important;border-radius: 1px !important;}\"][ultimate_heading main_heading=\"Quisque sed nibh tristique\" heading_tag=\"h3\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;\"]\r\n<ul>\r\n 	<li>Duis lorem risus, aliquet a auctor a, venenatis in dui. Praesent et eros et risus dapibus placerat hendrerit cursus magna.</li>\r\n 	<li>Praesent et eros et risus dapibus placerat hendrerit cursus magna.</li>\r\n 	<li>aliquet a auctor a, venenatis in dui.</li>\r\n</ul>\r\n[/ultimate_heading][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/3\"][ult_animation_block animation=\"fadeInDown\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][dt_fancy_image image_id=\"3171\" width=\"300\" border_radius=\"1px\" caption=\"off\" css=\".vc_custom_1692278929158{border-top-width: 1px !important;border-right-width: 1px !important;border-bottom-width: 1px !important;border-left-width: 1px !important;border-left-color: #059444 !important;border-left-style: solid !important;border-right-color: #059444 !important;border-right-style: solid !important;border-top-color: #059444 !important;border-top-style: solid !important;border-bottom-color: #059444 !important;border-bottom-style: solid !important;border-radius: 1px !important;}\"][ultimate_heading main_heading=\"Quisque sed nibh tristique\" heading_tag=\"h3\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;\"]\r\n<ul>\r\n 	<li>Duis lorem risus, aliquet a auctor a, venenatis in dui. Praesent et eros et risus dapibus placerat hendrerit cursus magna.</li>\r\n 	<li>Praesent et eros et risus dapibus placerat hendrerit cursus magna.</li>\r\n 	<li>aliquet a auctor a, venenatis in dui.</li>\r\n</ul>\r\n[/ultimate_heading][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/3\"][ult_animation_block animation=\"fadeInUp\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][dt_fancy_image image_id=\"3170\" width=\"300\" border_radius=\"1px\" caption=\"off\" css=\".vc_custom_1692278936750{border-top-width: 1px !important;border-right-width: 1px !important;border-bottom-width: 1px !important;border-left-width: 1px !important;border-left-color: #059444 !important;border-left-style: solid !important;border-right-color: #059444 !important;border-right-style: solid !important;border-top-color: #059444 !important;border-top-style: solid !important;border-bottom-color: #059444 !important;border-bottom-style: solid !important;border-radius: 1px !important;}\"][ultimate_heading main_heading=\"Quisque sed nibh tristique\" heading_tag=\"h3\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;\"]\r\n<ul>\r\n 	<li>Duis lorem risus, aliquet a auctor a, venenatis in dui. Praesent et eros et risus dapibus placerat hendrerit cursus magna.</li>\r\n 	<li>Praesent et eros et risus dapibus placerat hendrerit cursus magna.</li>\r\n 	<li>aliquet a auctor a, venenatis in dui.</li>\r\n</ul>\r\n[/ultimate_heading][/ult_animation_block][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row disable_element=\"yes\"][vc_column][ultimate_heading main_heading=\"Executive Directors\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;margin-bottom:35px;\"][/ultimate_heading][vc_row_inner][vc_column_inner width=\"1/5\"][ult_animation_block animation=\"fadeInUp\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][dt_fancy_image image_id=\"3172\" width=\"300\" border_radius=\"1px\" caption=\"off\" css=\".vc_custom_1692278922309{border-top-width: 1px !important;border-right-width: 1px !important;border-bottom-width: 1px !important;border-left-width: 1px !important;border-left-color: #059444 !important;border-left-style: solid !important;border-right-color: #059444 !important;border-right-style: solid !important;border-top-color: #059444 !important;border-top-style: solid !important;border-bottom-color: #059444 !important;border-bottom-style: solid !important;border-radius: 1px !important;}\"][ultimate_heading main_heading=\"Quisque sed nibh tristique\" heading_tag=\"h3\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;\"]\r\n<ul>\r\n 	<li>Duis lorem risus, aliquet a auctor a, venenatis in dui. Praesent et eros et risus dapibus placerat hendrerit cursus magna.</li>\r\n 	<li>Praesent et eros et risus dapibus placerat hendrerit cursus magna.</li>\r\n 	<li>aliquet a auctor a, venenatis in dui.</li>\r\n</ul>\r\n[/ultimate_heading][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/5\"][ult_animation_block animation=\"fadeInDown\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][dt_fancy_image image_id=\"3171\" width=\"300\" border_radius=\"1px\" caption=\"off\" css=\".vc_custom_1692278929158{border-top-width: 1px !important;border-right-width: 1px !important;border-bottom-width: 1px !important;border-left-width: 1px !important;border-left-color: #059444 !important;border-left-style: solid !important;border-right-color: #059444 !important;border-right-style: solid !important;border-top-color: #059444 !important;border-top-style: solid !important;border-bottom-color: #059444 !important;border-bottom-style: solid !important;border-radius: 1px !important;}\"][ultimate_heading main_heading=\"Quisque sed nibh tristique\" heading_tag=\"h3\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;\"]\r\n<ul>\r\n 	<li>Duis lorem risus, aliquet a auctor a, venenatis in dui. Praesent et eros et risus dapibus placerat hendrerit cursus magna.</li>\r\n 	<li>Praesent et eros et risus dapibus placerat hendrerit cursus magna.</li>\r\n 	<li>aliquet a auctor a, venenatis in dui.</li>\r\n</ul>\r\n[/ultimate_heading][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/5\"][ult_animation_block animation=\"fadeInUp\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][dt_fancy_image image_id=\"3170\" width=\"300\" border_radius=\"1px\" caption=\"off\" css=\".vc_custom_1692278936750{border-top-width: 1px !important;border-right-width: 1px !important;border-bottom-width: 1px !important;border-left-width: 1px !important;border-left-color: #059444 !important;border-left-style: solid !important;border-right-color: #059444 !important;border-right-style: solid !important;border-top-color: #059444 !important;border-top-style: solid !important;border-bottom-color: #059444 !important;border-bottom-style: solid !important;border-radius: 1px !important;}\"][ultimate_heading main_heading=\"Quisque sed nibh tristique\" heading_tag=\"h3\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;\"]\r\n<ul>\r\n 	<li>Duis lorem risus, aliquet a auctor a, venenatis in dui. Praesent et eros et risus dapibus placerat hendrerit cursus magna.</li>\r\n 	<li>Praesent et eros et risus dapibus placerat hendrerit cursus magna.</li>\r\n 	<li>aliquet a auctor a, venenatis in dui.</li>\r\n</ul>\r\n[/ultimate_heading][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/5\"][ult_animation_block animation=\"fadeInDown\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][dt_fancy_image image_id=\"3170\" width=\"300\" border_radius=\"1px\" caption=\"off\" css=\".vc_custom_1692278936750{border-top-width: 1px !important;border-right-width: 1px !important;border-bottom-width: 1px !important;border-left-width: 1px !important;border-left-color: #059444 !important;border-left-style: solid !important;border-right-color: #059444 !important;border-right-style: solid !important;border-top-color: #059444 !important;border-top-style: solid !important;border-bottom-color: #059444 !important;border-bottom-style: solid !important;border-radius: 1px !important;}\"][ultimate_heading main_heading=\"Quisque sed nibh tristique\" heading_tag=\"h3\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;\"]\r\n<ul>\r\n 	<li>Duis lorem risus, aliquet a auctor a, venenatis in dui. Praesent et eros et risus dapibus placerat hendrerit cursus magna.</li>\r\n 	<li>Praesent et eros et risus dapibus placerat hendrerit cursus magna.</li>\r\n 	<li>aliquet a auctor a, venenatis in dui.</li>\r\n</ul>\r\n[/ultimate_heading][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/5\"][ult_animation_block animation=\"fadeInDown\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][dt_fancy_image image_id=\"3171\" width=\"300\" border_radius=\"1px\" caption=\"off\" css=\".vc_custom_1692278929158{border-top-width: 1px !important;border-right-width: 1px !important;border-bottom-width: 1px !important;border-left-width: 1px !important;border-left-color: #059444 !important;border-left-style: solid !important;border-right-color: #059444 !important;border-right-style: solid !important;border-top-color: #059444 !important;border-top-style: solid !important;border-bottom-color: #059444 !important;border-bottom-style: solid !important;border-radius: 1px !important;}\"][ultimate_heading main_heading=\"Quisque sed nibh tristique\" heading_tag=\"h3\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;\"]\r\n<ul>\r\n 	<li>Duis lorem risus, aliquet a auctor a, venenatis in dui. Praesent et eros et risus dapibus placerat hendrerit cursus magna.</li>\r\n 	<li>Praesent et eros et risus dapibus placerat hendrerit cursus magna.</li>\r\n 	<li>aliquet a auctor a, venenatis in dui.</li>\r\n</ul>\r\n[/ultimate_heading][/ult_animation_block][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner width=\"2/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row disable_element=\"yes\"][vc_column][ultimate_heading main_heading=\"Next Generation\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;margin-bottom:35px;\"][/ultimate_heading][vc_row_inner][vc_column_inner width=\"1/2\"][ult_animation_block animation=\"fadeInUp\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][dt_fancy_image image_id=\"3172\" width=\"300\" border_radius=\"1px\" caption=\"off\" css=\".vc_custom_1692278922309{border-top-width: 1px !important;border-right-width: 1px !important;border-bottom-width: 1px !important;border-left-width: 1px !important;border-left-color: #059444 !important;border-left-style: solid !important;border-right-color: #059444 !important;border-right-style: solid !important;border-top-color: #059444 !important;border-top-style: solid !important;border-bottom-color: #059444 !important;border-bottom-style: solid !important;border-radius: 1px !important;}\"][ultimate_heading main_heading=\"Quisque sed nibh tristique\" heading_tag=\"h3\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;\"]\r\n<ul>\r\n 	<li>Duis lorem risus, aliquet a auctor a, venenatis in dui. Praesent et eros et risus dapibus placerat hendrerit cursus magna.</li>\r\n 	<li>Praesent et eros et risus dapibus placerat hendrerit cursus magna.</li>\r\n 	<li>aliquet a auctor a, venenatis in dui.</li>\r\n</ul>\r\n[/ultimate_heading][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/2\"][ult_animation_block animation=\"fadeInDown\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][dt_fancy_image image_id=\"3171\" width=\"300\" border_radius=\"1px\" caption=\"off\" css=\".vc_custom_1692278929158{border-top-width: 1px !important;border-right-width: 1px !important;border-bottom-width: 1px !important;border-left-width: 1px !important;border-left-color: #059444 !important;border-left-style: solid !important;border-right-color: #059444 !important;border-right-style: solid !important;border-top-color: #059444 !important;border-top-style: solid !important;border-bottom-color: #059444 !important;border-bottom-style: solid !important;border-radius: 1px !important;}\"][ultimate_heading main_heading=\"Quisque sed nibh tristique\" heading_tag=\"h3\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;\"]\r\n<ul>\r\n 	<li>Duis lorem risus, aliquet a auctor a, venenatis in dui. Praesent et eros et risus dapibus placerat hendrerit cursus magna.</li>\r\n 	<li>Praesent et eros et risus dapibus placerat hendrerit cursus magna.</li>\r\n 	<li>aliquet a auctor a, venenatis in dui.</li>\r\n</ul>\r\n[/ultimate_heading][/ult_animation_block][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row]','About us','','inherit','closed','closed','','2917-revision-v1','','','2023-09-24 04:10:28','2023-09-24 04:10:28','',2917,'https://farmchemie.yasithawd.com/?p=3879',0,'revision','',0),(3880,1,'2023-09-24 04:12:17','2023-09-24 04:12:17','[vc_row full_width=\"stretch_row_content_no_spaces\"][vc_column][ultimate_heading main_heading=\"Our History\" main_heading_color=\"#762888\"][/ultimate_heading][/vc_column][/vc_row][vc_row][vc_column][vc_row_inner equal_height=\"yes\" content_placement=\"middle\" css=\".vc_custom_1692359205466{margin-top: 35px !important;}\"][vc_column_inner width=\"1/2\"][ult_animation_block animation=\"fadeInLeftBig\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][vc_single_image image=\"3273\" img_size=\"full\" alignment=\"center\" style=\"vc_box_rounded\"][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/2\"][ult_animation_block animation=\"fadeInRightBig\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][ultimate_heading main_heading=\"Founded in 2002\" heading_tag=\"h3\" main_heading_color=\"#039447\" alignment=\"left\" sub_heading_font_size=\"desktop:18px;\"]Founded in 2002 by Mr. Uditha Wanigasinghe, an agriculturist who had a mission to aid valuable livestock producers in the country to enhance the yield and profitability of production. FARMCHEMIE introduced unprecedented solutions and consistent technical services to gain our customers’ trust and became the market leader in animal health products in 2006 within just four years.[/ultimate_heading][/ult_animation_block][/vc_column_inner][/vc_row_inner][vc_separator color=\"custom\" accent_color=\"#039447\"][vc_row_inner equal_height=\"yes\" rtl_reverse=\"yes\" content_placement=\"middle\" css=\".vc_custom_1692359216075{margin-top: 35px !important;}\"][vc_column_inner width=\"1/2\" offset=\"vc_hidden-xs\"][ult_animation_block animation=\"fadeInLeftBig\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][ultimate_heading main_heading=\"2006\" heading_tag=\"h3\" main_heading_color=\"#039447\" alignment=\"right\"]In 2006, the Sri Lankan poultry industry was affected with Avian Influenza which became a difficult period for the growth of FARMCHEMIE. This was the key factor in our decision to diversify into Agro Products. PLANTCHEM &amp; PLANTSEEDS were established to offer solutions in Agro specialty fertilizers, pesticides and seeds to invaluable cultivators.[/ultimate_heading][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/2\" offset=\"vc_hidden-xs\"][ult_animation_block animation=\"fadeInRightBig\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][vc_single_image image=\"3276\" img_size=\"full\" alignment=\"center\" style=\"vc_box_rounded\"][/ult_animation_block][/vc_column_inner][/vc_row_inner][vc_row_inner equal_height=\"yes\" rtl_reverse=\"yes\" content_placement=\"middle\" css=\".vc_custom_1692359216075{margin-top: 35px !important;}\"][vc_column_inner width=\"1/2\" offset=\"vc_hidden-lg vc_hidden-md vc_hidden-sm\"][ult_animation_block animation=\"fadeInRightBig\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][vc_single_image image=\"3276\" img_size=\"full\" alignment=\"center\" style=\"vc_box_rounded\"][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/2\" offset=\"vc_hidden-lg vc_hidden-md vc_hidden-sm\"][ult_animation_block animation=\"fadeInLeftBig\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][ultimate_heading main_heading=\"2006\" heading_tag=\"h3\" main_heading_color=\"#039447\" alignment=\"left\"]\r\n\r\nIn 2006, the Sri Lankan poultry industry was affected with Avian Influenza which became a difficult period for the growth of FARMCHEMIE. This was the key factor in our decision to diversify into Agro Products. PLANTCHEM &amp; PLANTSEEDS were established to offer solutions in Agro specialty fertilizers, pesticides and seeds to invaluable cultivators.\r\n\r\n[/ultimate_heading][/ult_animation_block][/vc_column_inner][/vc_row_inner][vc_separator color=\"custom\" accent_color=\"#039447\"][vc_row_inner equal_height=\"yes\" content_placement=\"middle\" css=\".vc_custom_1692359231594{margin-top: 35px !important;}\"][vc_column_inner width=\"1/2\"][ult_animation_block animation=\"fadeInLeftBig\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][vc_single_image image=\"3277\" img_size=\"full\" alignment=\"center\" style=\"vc_box_rounded\"][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/2\"][ult_animation_block animation=\"fadeInRightBig\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][ultimate_heading main_heading=\"2010\" heading_tag=\"h3\" main_heading_color=\"#039447\" alignment=\"left\"]In 2010, FEED CHEMIE became the subsequent addition to ever-growing vision of Mr. Uditha Wanigasinghe and entered the Animal Feed Additives market.[/ultimate_heading][/ult_animation_block][/vc_column_inner][/vc_row_inner][vc_separator color=\"custom\" accent_color=\"#039447\"][vc_row_inner equal_height=\"yes\" rtl_reverse=\"yes\" content_placement=\"middle\" css=\".vc_custom_1692359239274{margin-top: 35px !important;}\"][vc_column_inner width=\"1/2\" offset=\"vc_hidden-xs\"][ult_animation_block animation=\"fadeInLeftBig\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][ultimate_heading main_heading=\"2012\" heading_tag=\"h3\" main_heading_color=\"#039447\" alignment=\"right\"]The year 2012 is described as a turning point in our journey as FARMCHEMIE established our first production facility for the manufacturing and packing of animal health products. FARMCHEMIE became the first animal health organization in Sri Lanka to obtain ISO 9001:2015 and WHO GMP International Quality Certification. With our own formulation unit, FARMCHEMIE was able to offer customized solutions to cater the needs of the Sri Lankan Livestock Industry.[/ultimate_heading][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/2\" offset=\"vc_hidden-xs\"][ult_animation_block animation=\"fadeInRightBig\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][vc_single_image image=\"3278\" img_size=\"full\" alignment=\"center\" style=\"vc_box_rounded\"][/ult_animation_block][/vc_column_inner][/vc_row_inner][vc_row_inner equal_height=\"yes\" rtl_reverse=\"yes\" content_placement=\"middle\" css=\".vc_custom_1692359239274{margin-top: 35px !important;}\"][vc_column_inner width=\"1/2\" offset=\"vc_hidden-lg vc_hidden-md vc_hidden-sm\"][ult_animation_block animation=\"fadeInRightBig\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][vc_single_image image=\"3278\" img_size=\"full\" alignment=\"center\" style=\"vc_box_rounded\"][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/2\" offset=\"vc_hidden-lg vc_hidden-md vc_hidden-sm\"][ult_animation_block animation=\"fadeInLeftBig\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][ultimate_heading main_heading=\"2012\" heading_tag=\"h3\" main_heading_color=\"#039447\" alignment=\"left\"]The year 2012 is described as a turning point in our journey as FARMCHEMIE established our first production facility for the manufacturing and packing of animal health products. FARMCHEMIE became the first animal health organization in Sri Lanka to obtain ISO 9001:2015 and WHO GMP International Quality Certification. With our own formulation unit, FARMCHEMIE was able to offer customized solutions to cater the needs of the Sri Lankan Livestock Industry.[/ultimate_heading][/ult_animation_block][/vc_column_inner][/vc_row_inner][vc_separator color=\"custom\" accent_color=\"#039447\"][vc_row_inner content_placement=\"middle\" css=\".vc_custom_1692359246626{margin-top: 35px !important;}\"][vc_column_inner width=\"1/2\"][ult_animation_block animation=\"fadeInLeftBig\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][vc_single_image image=\"3279\" img_size=\"full\" alignment=\"center\" style=\"vc_box_rounded\"][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/2\"][ult_animation_block animation=\"fadeInRightBig\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][ultimate_heading main_heading=\"2016\" heading_tag=\"h3\" main_heading_color=\"#039447\" alignment=\"left\"]The year 2016 was another key milestone with the entry to the International Markets. FARMCHEMIE exported our first Feed Premix consignment to India and in 2018 our export operation was distinctly established as FARMCHEMIE MANUFACTURERS, a Board of Investment (BOI) approved entity.[/ultimate_heading][/ult_animation_block][/vc_column_inner][/vc_row_inner][vc_separator color=\"custom\" accent_color=\"#039447\"][vc_row_inner equal_height=\"yes\" rtl_reverse=\"yes\" content_placement=\"middle\" css=\".vc_custom_1695527931440{margin-top: 35px !important;}\"][vc_column_inner width=\"1/2\" offset=\"vc_hidden-xs\"][ult_animation_block animation=\"fadeInLeftBig\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][ultimate_heading main_heading=\"Fully automated manufacturing\" heading_tag=\"h3\" main_heading_color=\"#039447\" alignment=\"right\"]FARMCHEMIE MANUFACTURERS has invested in fully automated manufacturing facility from Bühler and became the first Sri Lankan owned company to obtain FAMI-QS International Quality Certification.[/ultimate_heading][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/2\" offset=\"vc_hidden-xs\"][ult_animation_block animation=\"fadeInRightBig\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][vc_single_image image=\"3280\" img_size=\"full\" alignment=\"center\" style=\"vc_box_rounded\"][/ult_animation_block][/vc_column_inner][/vc_row_inner][vc_row_inner equal_height=\"yes\" rtl_reverse=\"yes\" content_placement=\"middle\" css=\".vc_custom_1695527931440{margin-top: 35px !important;}\"][vc_column_inner width=\"1/2\" offset=\"vc_hidden-lg vc_hidden-md vc_hidden-sm\"][ult_animation_block animation=\"fadeInRightBig\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][vc_single_image image=\"3280\" img_size=\"full\" alignment=\"center\" style=\"vc_box_rounded\"][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/2\" offset=\"vc_hidden-lg vc_hidden-md vc_hidden-sm\"][ult_animation_block animation=\"fadeInLeftBig\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][ultimate_heading main_heading=\"Fully automated manufacturing\" heading_tag=\"h3\" main_heading_color=\"#039447\" alignment=\"left\" margin_design_tab_text=\"\"]FARMCHEMIE MANUFACTURERS has invested in fully automated manufacturing facility from Bühler and became the first Sri Lankan owned company to obtain FAMI-QS International Quality Certification.[/ultimate_heading][/ult_animation_block][/vc_column_inner][/vc_row_inner][vc_separator color=\"custom\" accent_color=\"#039447\"][vc_row_inner equal_height=\"yes\" content_placement=\"middle\" css=\".vc_custom_1692359258634{margin-top: 35px !important;}\"][vc_column_inner width=\"1/2\"][ult_animation_block animation=\"fadeInLeftBig\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][vc_single_image image=\"3281\" img_size=\"full\" alignment=\"center\" style=\"vc_box_rounded\"][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/2\"][ult_animation_block animation=\"fadeInRightBig\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][ultimate_heading main_heading=\"Official toll manufacturer partner\" heading_tag=\"h3\" main_heading_color=\"#039447\" alignment=\"left\"]With the trust and reputation built as a reliable manufacturer of animal feed additives and supplements in the global market, several world-renowned international brands have appointed FARMCHEMIE MANUFACTURERS as the official toll manufacturer partner. FARMCHEMIE MANUFACTURERS exports a wide range of products consisting of premixes, specialty feed additives, oral liquid supplements and pet supplements to various markets in South Asia, East Asia, Middle East and Africa.\r\n\r\nFARMCHEMIE, FEED CHEMIE &amp; FARMCHEMIE MANUFACTURERS currently operate under the ownership of our holding company, DYVESTA.\r\n\r\nDYEVSTA has become the pinnacle of Animal Nutrition and Health.\r\n\r\nDYVESTA is Dynamic, through our continuous evolution, growth and progress. DYVESTA is Diverse, in terms of both our business strategy and our community. DYVESTA is Devoted to our valuable business partners through exceptional service.[/ultimate_heading][/ult_animation_block][/vc_column_inner][/vc_row_inner][vc_separator color=\"custom\" accent_color=\"#039447\"][/vc_column][/vc_row][vc_row full_width=\"stretch_row\" equal_height=\"yes\" bg_type=\"image\" parallax_style=\"vcpb-vz-jquery\" bg_image_new=\"id^3256|url^https://farmchemie.yasithawd.com/wp-content/uploads/2023/08/Vision-Mission.png|caption^null|alt^null|title^Vision-&amp;-Mission|description^null\" bg_image_repeat=\"no-repeat\" enable_overlay=\"enable_overlay_value\" overlay_color=\"#000000\" overlay_pattern=\"01.png\" overlay_pattern_opacity=\"5\" css=\".vc_custom_1692366072362{margin-top: 35px !important;padding-top: 65px !important;padding-bottom: 100px !important;}\"][vc_column][vc_row_inner equal_height=\"yes\"][vc_column_inner width=\"1/2\"][ult_animation_block animation=\"fadeInLeftBig\" animation_duration=\"2\" animation_delay=\"0\" animation_iteration_count=\"1\"][ultimate_heading main_heading=\"Vision\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\"]To be the customers’ first and best choice by ensuring outstanding satisfaction through a well-trained and dedicated team. Prompt and quality solutions to our customers’ requirements will determine the increase of return on investment for us.[/ultimate_heading][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/2\"][ult_animation_block animation=\"fadeInRightBig\" animation_duration=\"2\" animation_delay=\"0\" animation_iteration_count=\"1\"][ultimate_heading main_heading=\"Mission\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\"]To become a world renowned manufacturer of Animal Health products and a trusted partner among our stakeholders for our integrity as well as for providing effective solutions[/ultimate_heading][/ult_animation_block][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row css=\".vc_custom_1684836308288{margin-top: 15px !important;}\"][vc_column][ultimate_heading main_heading=\"Achievements\" main_heading_color=\"#762888\" main_heading_margin=\"margin-top:35px;\"][/ultimate_heading][vc_row_inner gap=\"20\"][vc_column_inner width=\"1/2\" css=\".vc_custom_1691995519863{background-color: #f4ab20 !important;border: 1px solid #f4ab20 !important;border-radius: 35px !important;}\"][ult_animation_block animation=\"fadeInLeftBig\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][bsf-info-box icon_type=\"custom\" icon_img=\"id^3117|url^https://farmchemie.yasithawd.com/wp-content/uploads/2023/08/Pink_-H.png|caption^null|alt^null|title^Pink_-H|description^null\" img_width=\"60\" icon_style=\"advanced\" icon_border_style=\"solid\" icon_color_border=\"#ffffff\" icon_border_size=\"1\" icon_border_radius=\"500\" icon_border_spacing=\"1\" title=\"First Free Sale Certificate obtained from Veterinary Drug Control Authority (VDCA) for Veterinary Pharmaceuticals\" title_font_style=\"font-weight:bold;\" title_font_size=\"desktop:20px;\"][/bsf-info-box][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/2\" css=\".vc_custom_1691995661095{background-color: #722f8b !important;border: 1px solid #722f8b !important;border-radius: 35px !important;}\"][ult_animation_block animation=\"fadeInRightBig\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][bsf-info-box icon_type=\"custom\" icon_img=\"id^3117|url^https://farmchemie.yasithawd.com/wp-content/uploads/2023/08/Pink_-H.png|caption^null|alt^null|title^Pink_-H|description^null\" img_width=\"60\" icon_style=\"advanced\" icon_border_style=\"solid\" icon_color_border=\"#ffffff\" icon_border_size=\"1\" icon_border_radius=\"500\" icon_border_spacing=\"1\" title=\"First ISO 9001: 2015 ,WHO-GMP Quality Management systems certified Animal Health company in Sri Lanka since August, 2012\" title_font_style=\"font-weight:bold;\" title_font_color=\"#ffffff\" title_font_size=\"desktop:20px;\"][/bsf-info-box][/ult_animation_block][/vc_column_inner][/vc_row_inner][vc_row_inner gap=\"20\"][vc_column_inner width=\"1/2\" css=\".vc_custom_1691995661095{background-color: #722f8b !important;border: 1px solid #722f8b !important;border-radius: 35px !important;}\"][ult_animation_block animation=\"fadeInLeftBig\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][bsf-info-box icon_type=\"custom\" icon_img=\"id^3117|url^https://farmchemie.yasithawd.com/wp-content/uploads/2023/08/Pink_-H.png|caption^null|alt^null|title^Pink_-H|description^null\" img_width=\"60\" icon_style=\"advanced\" icon_border_style=\"solid\" icon_color_border=\"#ffffff\" icon_border_size=\"1\" icon_border_radius=\"500\" icon_border_spacing=\"1\" title=\"First FAMI-QS certified company in sri lanka\" title_font_style=\"font-weight:bold;\" title_font_color=\"#ffffff\" title_font_size=\"desktop:20px;\"][/bsf-info-box][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/2\" css=\".vc_custom_1691995519863{background-color: #f4ab20 !important;border: 1px solid #f4ab20 !important;border-radius: 35px !important;}\"][ult_animation_block animation=\"fadeInRightBig\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][bsf-info-box icon_type=\"custom\" icon_img=\"id^3117|url^https://farmchemie.yasithawd.com/wp-content/uploads/2023/08/Pink_-H.png|caption^null|alt^null|title^Pink_-H|description^null\" img_width=\"60\" icon_style=\"advanced\" icon_border_style=\"solid\" icon_color_border=\"#ffffff\" icon_border_size=\"1\" icon_border_radius=\"500\" icon_border_spacing=\"1\" title=\"First Certificate of Ethical Trading certified in Livestock industry\" title_font_style=\"font-weight:bold;\" title_font_size=\"desktop:20px;\"][/bsf-info-box][/ult_animation_block][/vc_column_inner][/vc_row_inner][vc_row_inner gap=\"20\"][vc_column_inner width=\"1/4\" css=\".vc_custom_1695528026328{border-radius: 35px !important;}\" offset=\"vc_hidden-xs\"][/vc_column_inner][vc_column_inner width=\"2/4\" css=\".vc_custom_1691995519863{background-color: #f4ab20 !important;border: 1px solid #f4ab20 !important;border-radius: 35px !important;}\"][ult_animation_block animation=\"fadeInLeftBig\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][bsf-info-box icon_type=\"custom\" icon_img=\"id^3117|url^https://farmchemie.yasithawd.com/wp-content/uploads/2023/08/Pink_-H.png|caption^null|alt^null|title^Pink_-H|description^null\" img_width=\"60\" icon_style=\"advanced\" icon_border_style=\"solid\" icon_color_border=\"#ffffff\" icon_border_size=\"1\" icon_border_radius=\"500\" icon_border_spacing=\"1\" title=\"First Silver awarded company at National Exports Awards in Livestock industry\" title_font_style=\"font-weight:bold;\" title_font_size=\"desktop:20px;\"][/bsf-info-box][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/4\" offset=\"vc_hidden-xs\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row full_width=\"stretch_row\" equal_height=\"yes\" content_placement=\"bottom\" css=\".vc_custom_1693627699480{margin-top: 15px !important;}\"][vc_column][ultimate_heading main_heading=\"Certifications\" main_heading_color=\"#762888\" main_heading_margin=\"margin-top:35px;\"][/ultimate_heading][vc_row_inner content_placement=\"bottom\"][vc_column_inner width=\"1/6\"][dt_fancy_image image_id=\"3407\" width=\"300\" caption=\"off\"][/vc_column_inner][vc_column_inner width=\"1/6\"][dt_fancy_image image_id=\"3408\" width=\"300\" caption=\"off\"][/vc_column_inner][vc_column_inner width=\"1/6\"][dt_fancy_image image_id=\"3409\" width=\"300\" caption=\"off\"][/vc_column_inner][vc_column_inner width=\"1/6\"][dt_fancy_image image_id=\"3411\" width=\"300\" caption=\"off\"][/vc_column_inner][vc_column_inner width=\"1/6\"][dt_fancy_image image_id=\"3410\" width=\"300\" caption=\"off\"][/vc_column_inner][vc_column_inner width=\"1/6\"][dt_fancy_image image_id=\"3406\" width=\"300\" caption=\"off\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row full_width=\"stretch_row\" equal_height=\"yes\" content_placement=\"bottom\" css=\".vc_custom_1693625624233{margin-top: 15px !important;}\"][vc_column][ultimate_heading main_heading=\"Awards\" main_heading_color=\"#762888\" main_heading_margin=\"margin-top:35px;\"][/ultimate_heading][ultimate_carousel slide_to_scroll=\"single\" slides_on_mob=\"1\"][dt_fancy_image image_id=\"3412\" width=\"300\"][dt_fancy_image image_id=\"3413\" width=\"300\" caption=\"off\"][dt_fancy_image image_id=\"3414\" width=\"300\" caption=\"off\"][dt_fancy_image image_id=\"3415\" width=\"300\" caption=\"off\"][dt_fancy_image image_id=\"3416\" width=\"300\" caption=\"off\"][dt_fancy_image image_id=\"3417\" width=\"300\" caption=\"off\"][dt_fancy_image image_id=\"3418\" width=\"300\" caption=\"off\"][dt_fancy_image image_id=\"3420\" width=\"300\" caption=\"off\"][dt_fancy_image image_id=\"3419\" width=\"300\" caption=\"off\"][dt_fancy_image image_id=\"3422\" width=\"300\" caption=\"off\"][dt_fancy_image image_id=\"3421\" width=\"300\" caption=\"off\"][dt_fancy_image image_id=\"3422\" width=\"300\" caption=\"off\"][dt_fancy_image image_id=\"3423\" width=\"300\" caption=\"off\"][dt_fancy_image image_id=\"3424\" width=\"300\" caption=\"off\"][dt_fancy_image image_id=\"3425\" width=\"300\" caption=\"off\"][/ultimate_carousel][/vc_column][/vc_row][vc_row disable_element=\"yes\" css=\".vc_custom_1695294608306{margin-top: 15px !important;}\"][vc_column][ultimate_heading main_heading=\"Board Of Directors\" main_heading_color=\"#762888\" main_heading_margin=\"margin-top:35px;margin-bottom:35px;\"][/ultimate_heading][ultimate_carousel slides_on_desk=\"3\" slides_on_mob=\"1\" arrow_style=\"square-bg\" arrow_bg_color=\"#039447\" arrow_color=\"#ffffff\" next_icon=\"ultsl-arrow-right6\" prev_icon=\"ultsl-arrow-left6\" dots_color=\"#039447\" item_animation=\"fadeIn\" css_ad_caraousel=\".vc_custom_1694697209111{padding-right: 10px !important;padding-left: 10px !important;}\"][vc_row_inner][vc_column_inner][ultimate_heading main_heading=\"Uditha Wanigasinghe\" heading_tag=\"h3\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;\"]Managing Director[/ultimate_heading][ultimate_modal modal_title=\"Read more\" btn_size=\"md\" btn_bg_color=\"#089548\" btn_text=\"Read more\" overlay_bg_opacity=\"75\" img_size=\"80\" btn_txt_color=\"#ffffff\"]pretium mauris pretium mauris pretium mauris pretium mauris pretium mauris pretium mauris pretium mauris pretium mauris pretium mauris pretium mauris pretium mauris pretium mauris pretium mauris pretium mauris pretium mauris pretium mauris pretium mauris pretium mauris pretium mauris pretium mauris pretium mauris pretium mauris pretium mauris pretium mauris pretium mauris pretium mauris pretium mauris pretium mauris[/ultimate_modal][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner][ultimate_heading main_heading=\"Senitha Wanigasinghe\" heading_tag=\"h3\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;\"]Director/ CEO[/ultimate_heading][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner][ultimate_heading main_heading=\"Thulitha Wanigasinghe\" heading_tag=\"h3\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;\"]Director - Veterinary Services &amp; RA[/ultimate_heading][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner][ultimate_heading main_heading=\"Yvonne Van Cuylenberg\" heading_tag=\"h3\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;\"]Director - HR &amp; Administration[/ultimate_heading][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner][ultimate_heading main_heading=\"Gamini Wanigasinghe\" heading_tag=\"h3\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;\"]Director[/ultimate_heading][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner][ultimate_heading main_heading=\"Ajith Welianga\" heading_tag=\"h3\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;\"]Director - Marketing[/ultimate_heading][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner][ultimate_heading main_heading=\"Sunil Ranjith Guruge\" heading_tag=\"h3\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;\"]Director - Customer &amp; Employee Relations[/ultimate_heading][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner][ultimate_heading main_heading=\"Sampath Gunathilake\" heading_tag=\"h3\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;\"]Director - Sales[/ultimate_heading][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner][ultimate_heading main_heading=\"Chanaka Indrajith\" heading_tag=\"h3\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;\"]Director Production / COO[/ultimate_heading][/vc_column_inner][/vc_row_inner][/ultimate_carousel][/vc_column][/vc_row][vc_row disable_element=\"yes\"][vc_column][ultimate_heading main_heading=\"Board Of Directors\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;margin-bottom:35px;\"][/ultimate_heading][vc_row_inner][vc_column_inner width=\"1/3\"][ult_animation_block animation=\"fadeInUp\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][dt_fancy_image image_id=\"3172\" width=\"300\" border_radius=\"1px\" caption=\"off\" css=\".vc_custom_1692278922309{border-top-width: 1px !important;border-right-width: 1px !important;border-bottom-width: 1px !important;border-left-width: 1px !important;border-left-color: #059444 !important;border-left-style: solid !important;border-right-color: #059444 !important;border-right-style: solid !important;border-top-color: #059444 !important;border-top-style: solid !important;border-bottom-color: #059444 !important;border-bottom-style: solid !important;border-radius: 1px !important;}\"][ultimate_heading main_heading=\"Quisque sed nibh tristique\" heading_tag=\"h3\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;\"]\r\n<ul>\r\n 	<li>Duis lorem risus, aliquet a auctor a, venenatis in dui. Praesent et eros et risus dapibus placerat hendrerit cursus magna.</li>\r\n 	<li>Praesent et eros et risus dapibus placerat hendrerit cursus magna.</li>\r\n 	<li>aliquet a auctor a, venenatis in dui.</li>\r\n</ul>\r\n[/ultimate_heading][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/3\"][ult_animation_block animation=\"fadeInDown\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][dt_fancy_image image_id=\"3171\" width=\"300\" border_radius=\"1px\" caption=\"off\" css=\".vc_custom_1692278929158{border-top-width: 1px !important;border-right-width: 1px !important;border-bottom-width: 1px !important;border-left-width: 1px !important;border-left-color: #059444 !important;border-left-style: solid !important;border-right-color: #059444 !important;border-right-style: solid !important;border-top-color: #059444 !important;border-top-style: solid !important;border-bottom-color: #059444 !important;border-bottom-style: solid !important;border-radius: 1px !important;}\"][ultimate_heading main_heading=\"Quisque sed nibh tristique\" heading_tag=\"h3\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;\"]\r\n<ul>\r\n 	<li>Duis lorem risus, aliquet a auctor a, venenatis in dui. Praesent et eros et risus dapibus placerat hendrerit cursus magna.</li>\r\n 	<li>Praesent et eros et risus dapibus placerat hendrerit cursus magna.</li>\r\n 	<li>aliquet a auctor a, venenatis in dui.</li>\r\n</ul>\r\n[/ultimate_heading][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/3\"][ult_animation_block animation=\"fadeInUp\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][dt_fancy_image image_id=\"3170\" width=\"300\" border_radius=\"1px\" caption=\"off\" css=\".vc_custom_1692278936750{border-top-width: 1px !important;border-right-width: 1px !important;border-bottom-width: 1px !important;border-left-width: 1px !important;border-left-color: #059444 !important;border-left-style: solid !important;border-right-color: #059444 !important;border-right-style: solid !important;border-top-color: #059444 !important;border-top-style: solid !important;border-bottom-color: #059444 !important;border-bottom-style: solid !important;border-radius: 1px !important;}\"][ultimate_heading main_heading=\"Quisque sed nibh tristique\" heading_tag=\"h3\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;\"]\r\n<ul>\r\n 	<li>Duis lorem risus, aliquet a auctor a, venenatis in dui. Praesent et eros et risus dapibus placerat hendrerit cursus magna.</li>\r\n 	<li>Praesent et eros et risus dapibus placerat hendrerit cursus magna.</li>\r\n 	<li>aliquet a auctor a, venenatis in dui.</li>\r\n</ul>\r\n[/ultimate_heading][/ult_animation_block][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row disable_element=\"yes\"][vc_column][ultimate_heading main_heading=\"Executive Directors\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;margin-bottom:35px;\"][/ultimate_heading][vc_row_inner][vc_column_inner width=\"1/5\"][ult_animation_block animation=\"fadeInUp\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][dt_fancy_image image_id=\"3172\" width=\"300\" border_radius=\"1px\" caption=\"off\" css=\".vc_custom_1692278922309{border-top-width: 1px !important;border-right-width: 1px !important;border-bottom-width: 1px !important;border-left-width: 1px !important;border-left-color: #059444 !important;border-left-style: solid !important;border-right-color: #059444 !important;border-right-style: solid !important;border-top-color: #059444 !important;border-top-style: solid !important;border-bottom-color: #059444 !important;border-bottom-style: solid !important;border-radius: 1px !important;}\"][ultimate_heading main_heading=\"Quisque sed nibh tristique\" heading_tag=\"h3\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;\"]\r\n<ul>\r\n 	<li>Duis lorem risus, aliquet a auctor a, venenatis in dui. Praesent et eros et risus dapibus placerat hendrerit cursus magna.</li>\r\n 	<li>Praesent et eros et risus dapibus placerat hendrerit cursus magna.</li>\r\n 	<li>aliquet a auctor a, venenatis in dui.</li>\r\n</ul>\r\n[/ultimate_heading][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/5\"][ult_animation_block animation=\"fadeInDown\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][dt_fancy_image image_id=\"3171\" width=\"300\" border_radius=\"1px\" caption=\"off\" css=\".vc_custom_1692278929158{border-top-width: 1px !important;border-right-width: 1px !important;border-bottom-width: 1px !important;border-left-width: 1px !important;border-left-color: #059444 !important;border-left-style: solid !important;border-right-color: #059444 !important;border-right-style: solid !important;border-top-color: #059444 !important;border-top-style: solid !important;border-bottom-color: #059444 !important;border-bottom-style: solid !important;border-radius: 1px !important;}\"][ultimate_heading main_heading=\"Quisque sed nibh tristique\" heading_tag=\"h3\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;\"]\r\n<ul>\r\n 	<li>Duis lorem risus, aliquet a auctor a, venenatis in dui. Praesent et eros et risus dapibus placerat hendrerit cursus magna.</li>\r\n 	<li>Praesent et eros et risus dapibus placerat hendrerit cursus magna.</li>\r\n 	<li>aliquet a auctor a, venenatis in dui.</li>\r\n</ul>\r\n[/ultimate_heading][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/5\"][ult_animation_block animation=\"fadeInUp\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][dt_fancy_image image_id=\"3170\" width=\"300\" border_radius=\"1px\" caption=\"off\" css=\".vc_custom_1692278936750{border-top-width: 1px !important;border-right-width: 1px !important;border-bottom-width: 1px !important;border-left-width: 1px !important;border-left-color: #059444 !important;border-left-style: solid !important;border-right-color: #059444 !important;border-right-style: solid !important;border-top-color: #059444 !important;border-top-style: solid !important;border-bottom-color: #059444 !important;border-bottom-style: solid !important;border-radius: 1px !important;}\"][ultimate_heading main_heading=\"Quisque sed nibh tristique\" heading_tag=\"h3\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;\"]\r\n<ul>\r\n 	<li>Duis lorem risus, aliquet a auctor a, venenatis in dui. Praesent et eros et risus dapibus placerat hendrerit cursus magna.</li>\r\n 	<li>Praesent et eros et risus dapibus placerat hendrerit cursus magna.</li>\r\n 	<li>aliquet a auctor a, venenatis in dui.</li>\r\n</ul>\r\n[/ultimate_heading][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/5\"][ult_animation_block animation=\"fadeInDown\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][dt_fancy_image image_id=\"3170\" width=\"300\" border_radius=\"1px\" caption=\"off\" css=\".vc_custom_1692278936750{border-top-width: 1px !important;border-right-width: 1px !important;border-bottom-width: 1px !important;border-left-width: 1px !important;border-left-color: #059444 !important;border-left-style: solid !important;border-right-color: #059444 !important;border-right-style: solid !important;border-top-color: #059444 !important;border-top-style: solid !important;border-bottom-color: #059444 !important;border-bottom-style: solid !important;border-radius: 1px !important;}\"][ultimate_heading main_heading=\"Quisque sed nibh tristique\" heading_tag=\"h3\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;\"]\r\n<ul>\r\n 	<li>Duis lorem risus, aliquet a auctor a, venenatis in dui. Praesent et eros et risus dapibus placerat hendrerit cursus magna.</li>\r\n 	<li>Praesent et eros et risus dapibus placerat hendrerit cursus magna.</li>\r\n 	<li>aliquet a auctor a, venenatis in dui.</li>\r\n</ul>\r\n[/ultimate_heading][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/5\"][ult_animation_block animation=\"fadeInDown\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][dt_fancy_image image_id=\"3171\" width=\"300\" border_radius=\"1px\" caption=\"off\" css=\".vc_custom_1692278929158{border-top-width: 1px !important;border-right-width: 1px !important;border-bottom-width: 1px !important;border-left-width: 1px !important;border-left-color: #059444 !important;border-left-style: solid !important;border-right-color: #059444 !important;border-right-style: solid !important;border-top-color: #059444 !important;border-top-style: solid !important;border-bottom-color: #059444 !important;border-bottom-style: solid !important;border-radius: 1px !important;}\"][ultimate_heading main_heading=\"Quisque sed nibh tristique\" heading_tag=\"h3\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;\"]\r\n<ul>\r\n 	<li>Duis lorem risus, aliquet a auctor a, venenatis in dui. Praesent et eros et risus dapibus placerat hendrerit cursus magna.</li>\r\n 	<li>Praesent et eros et risus dapibus placerat hendrerit cursus magna.</li>\r\n 	<li>aliquet a auctor a, venenatis in dui.</li>\r\n</ul>\r\n[/ultimate_heading][/ult_animation_block][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner width=\"2/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row disable_element=\"yes\"][vc_column][ultimate_heading main_heading=\"Next Generation\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;margin-bottom:35px;\"][/ultimate_heading][vc_row_inner][vc_column_inner width=\"1/2\"][ult_animation_block animation=\"fadeInUp\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][dt_fancy_image image_id=\"3172\" width=\"300\" border_radius=\"1px\" caption=\"off\" css=\".vc_custom_1692278922309{border-top-width: 1px !important;border-right-width: 1px !important;border-bottom-width: 1px !important;border-left-width: 1px !important;border-left-color: #059444 !important;border-left-style: solid !important;border-right-color: #059444 !important;border-right-style: solid !important;border-top-color: #059444 !important;border-top-style: solid !important;border-bottom-color: #059444 !important;border-bottom-style: solid !important;border-radius: 1px !important;}\"][ultimate_heading main_heading=\"Quisque sed nibh tristique\" heading_tag=\"h3\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;\"]\r\n<ul>\r\n 	<li>Duis lorem risus, aliquet a auctor a, venenatis in dui. Praesent et eros et risus dapibus placerat hendrerit cursus magna.</li>\r\n 	<li>Praesent et eros et risus dapibus placerat hendrerit cursus magna.</li>\r\n 	<li>aliquet a auctor a, venenatis in dui.</li>\r\n</ul>\r\n[/ultimate_heading][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/2\"][ult_animation_block animation=\"fadeInDown\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][dt_fancy_image image_id=\"3171\" width=\"300\" border_radius=\"1px\" caption=\"off\" css=\".vc_custom_1692278929158{border-top-width: 1px !important;border-right-width: 1px !important;border-bottom-width: 1px !important;border-left-width: 1px !important;border-left-color: #059444 !important;border-left-style: solid !important;border-right-color: #059444 !important;border-right-style: solid !important;border-top-color: #059444 !important;border-top-style: solid !important;border-bottom-color: #059444 !important;border-bottom-style: solid !important;border-radius: 1px !important;}\"][ultimate_heading main_heading=\"Quisque sed nibh tristique\" heading_tag=\"h3\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;\"]\r\n<ul>\r\n 	<li>Duis lorem risus, aliquet a auctor a, venenatis in dui. Praesent et eros et risus dapibus placerat hendrerit cursus magna.</li>\r\n 	<li>Praesent et eros et risus dapibus placerat hendrerit cursus magna.</li>\r\n 	<li>aliquet a auctor a, venenatis in dui.</li>\r\n</ul>\r\n[/ultimate_heading][/ult_animation_block][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row]','About us','','inherit','closed','closed','','2917-revision-v1','','','2023-09-24 04:12:17','2023-09-24 04:12:17','',2917,'https://farmchemie.yasithawd.com/?p=3880',0,'revision','',0),(3881,1,'2023-09-24 04:25:04','2023-09-24 04:25:04','[vc_row full_width=\"stretch_row\" css=\".vc_custom_1689577528817{padding-bottom: 50px !important;}\"][vc_column css=\".vc_custom_1689577454678{margin-bottom: 50px !important;}\"][vc_row_inner css=\".vc_custom_1692407941633{border-bottom-width: 1px !important;border-bottom-color: #079547 !important;border-bottom-style: solid !important;border-radius: 1px !important;}\"][vc_column_inner width=\"1/2\" offset=\"vc_hidden-xs\"][ult_animation_block animation=\"fadeInLeftBig\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][ultimate_heading main_heading=\"Feed Additives\" heading_tag=\"h3\" main_heading_color=\"#079547\" sub_heading_color=\"#792c8a\" alignment=\"right\"]<strong>Premixes/ Specialty Feed Additives/ Dilution of Active Ingredients/ Concentrates</strong><strong>\r\n</strong>Pack sizes – 1,000 kg, 500 kg, 50 kg, 25 kg, 15 kg, 10 kg, 5 kg, 1kg[/ultimate_heading][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/2\" offset=\"vc_hidden-xs\"][vc_single_image image=\"3129\" img_size=\"full\" css_animation=\"fadeInRightBig\"][/vc_column_inner][/vc_row_inner][vc_row_inner css=\".vc_custom_1692407941633{border-bottom-width: 1px !important;border-bottom-color: #079547 !important;border-bottom-style: solid !important;border-radius: 1px !important;}\"][vc_column_inner width=\"1/2\" offset=\"vc_hidden-lg vc_hidden-md vc_hidden-sm\"][vc_single_image image=\"3129\" img_size=\"full\" css_animation=\"fadeInRightBig\"][/vc_column_inner][vc_column_inner width=\"1/2\" offset=\"vc_hidden-lg vc_hidden-md vc_hidden-sm\"][ult_animation_block animation=\"fadeInLeftBig\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][ultimate_heading main_heading=\"Feed Additives\" heading_tag=\"h3\" main_heading_color=\"#079547\" sub_heading_color=\"#792c8a\" alignment=\"right\"]<strong>Premixes/ Specialty Feed Additives/ Dilution of Active Ingredients/ Concentrates</strong><strong>\r\n</strong>Pack sizes – 1,000 kg, 500 kg, 50 kg, 25 kg, 15 kg, 10 kg, 5 kg, 1kg[/ultimate_heading][/ult_animation_block][/vc_column_inner][/vc_row_inner][vc_row_inner css=\".vc_custom_1692407949383{border-bottom-width: 1px !important;border-bottom-color: #079547 !important;border-bottom-style: solid !important;border-radius: 1px !important;}\"][vc_column_inner width=\"1/2\"][vc_single_image image=\"3401\" img_size=\"full\" css_animation=\"fadeInLeftBig\"][/vc_column_inner][vc_column_inner width=\"1/2\"][ult_animation_block animation=\"fadeInRightBig\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][ultimate_heading main_heading=\"Oral Supplements\" heading_tag=\"h3\" main_heading_color=\"#079547\" sub_heading_color=\"#792c8a\" alignment=\"left\"]<strong>Liquids</strong><strong>\r\n</strong>Pack sizes – 1,000 L, 250 L, 50 L, 25 L, 5 L, 1 L, 500 mL, 250 mL, 100 mL, 50 mL\r\n\r\n<strong>Water soluble powders</strong><strong>\r\n</strong>Pack sizes – 25 kg, 15 kg, 10 kg, 5 kg, 1kg[/ultimate_heading][/ult_animation_block][/vc_column_inner][/vc_row_inner][vc_row_inner css=\".vc_custom_1692407957943{border-bottom-width: 1px !important;border-bottom-color: #079547 !important;border-bottom-style: solid !important;border-radius: 1px !important;}\"][vc_column_inner width=\"1/2\" offset=\"vc_hidden-xs\"][ult_animation_block animation=\"fadeInLeftBig\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][ultimate_heading main_heading=\"Tablets\" heading_tag=\"h3\" main_heading_color=\"#079547\" sub_heading_color=\"#792c8a\" alignment=\"right\"]<strong>Supplementary tablets for pet care</strong>\r\nTablet sizes – 1 to 5 g\r\n\r\n<strong>Boluses</strong><strong>\r\n</strong>Tablet sizes – 5 to 25 g[/ultimate_heading][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/2\" offset=\"vc_hidden-xs\"][vc_single_image image=\"3400\" img_size=\"full\" css_animation=\"fadeInRightBig\"][/vc_column_inner][/vc_row_inner][vc_row_inner css=\".vc_custom_1692407957943{border-bottom-width: 1px !important;border-bottom-color: #079547 !important;border-bottom-style: solid !important;border-radius: 1px !important;}\"][vc_column_inner width=\"1/2\" offset=\"vc_hidden-lg vc_hidden-md vc_hidden-sm\"][vc_single_image image=\"3400\" img_size=\"full\" css_animation=\"fadeInRightBig\"][/vc_column_inner][vc_column_inner width=\"1/2\" offset=\"vc_hidden-lg vc_hidden-md vc_hidden-sm\"][ult_animation_block animation=\"fadeInLeftBig\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][ultimate_heading main_heading=\"Tablets\" heading_tag=\"h3\" main_heading_color=\"#079547\" sub_heading_color=\"#792c8a\" alignment=\"right\"]<strong>Supplementary tablets for pet care</strong>\r\nTablet sizes – 1 to 5 g\r\n\r\n<strong>Boluses</strong><strong>\r\n</strong>Tablet sizes – 5 to 25 g[/ultimate_heading][/ult_animation_block][/vc_column_inner][/vc_row_inner][vc_row_inner css=\".vc_custom_1692407970279{border-bottom-width: 1px !important;border-bottom-color: #079547 !important;border-bottom-style: solid !important;border-radius: 1px !important;}\"][vc_column_inner width=\"1/2\"][vc_single_image image=\"3399\" img_size=\"full\" css_animation=\"fadeInLeftBig\"][/vc_column_inner][vc_column_inner width=\"1/2\"][ult_animation_block animation=\"fadeInRightBig\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][ultimate_heading main_heading=\"Veterinary Pharmaceuticals\" heading_tag=\"h3\" main_heading_color=\"#079547\" sub_heading_color=\"#792c8a\" alignment=\"left\"]<strong>Deworming Solutions/ Antibiotics/ Antimicrobials/ Wound care solutions</strong><strong>\r\n</strong>Form – Liquid, WSP[/ultimate_heading][/ult_animation_block][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row full_width=\"stretch_row_content\" css=\".vc_custom_1693451731079{padding-top: 50px !important;padding-bottom: 50px !important;}\"][vc_column][ultimate_heading main_heading=\"Our manufacturing facility is certified with FAMI-QS, WHO GMP &amp; ISO 9001:2015 International Quality standards.\" main_heading_color=\"#079547\" sub_heading_color=\"#792c8a\"]We select only the <strong><em>best</em></strong> and <strong><em>most reputed</em></strong> Raw Material &amp; Packing Material Suppliers for the production of our finished goods.[/ultimate_heading][vc_row_inner equal_height=\"yes\" content_placement=\"middle\"][vc_column_inner width=\"1/5\" offset=\"vc_hidden-lg vc_hidden-md\"][vc_single_image image=\"3062\" img_size=\"full\" alignment=\"center\"][/vc_column_inner][vc_column_inner width=\"1/5\" css=\".vc_custom_1691846530645{border-right-width: 1px !important;border-left-width: 1px !important;border-left-color: #000000 !important;border-left-style: solid !important;border-right-color: #000000 !important;border-right-style: solid !important;border-radius: 1px !important;}\" offset=\"vc_hidden-lg vc_hidden-md\"][vc_single_image image=\"3063\" img_size=\"full\" alignment=\"center\"][/vc_column_inner][vc_column_inner width=\"1/5\" offset=\"vc_hidden-lg vc_hidden-md\"][vc_single_image image=\"3064\" img_size=\"full\" alignment=\"center\"][/vc_column_inner][vc_column_inner width=\"1/5\" css=\".vc_custom_1691846545469{border-right-width: 1px !important;border-left-width: 1px !important;border-left-color: #000000 !important;border-left-style: solid !important;border-right-color: #000000 !important;border-right-style: solid !important;border-radius: 1px !important;}\" offset=\"vc_hidden-lg vc_hidden-md\"][vc_single_image image=\"3065\" img_size=\"full\" alignment=\"center\"][/vc_column_inner][vc_column_inner width=\"1/5\" offset=\"vc_hidden-lg vc_hidden-md\"][vc_single_image image=\"3066\" img_size=\"full\" alignment=\"center\"][/vc_column_inner][/vc_row_inner][vc_row_inner equal_height=\"yes\" content_placement=\"middle\"][vc_column_inner width=\"1/4\" css=\".vc_custom_1691846563021{border-right-width: 1px !important;border-right-color: #000000 !important;border-right-style: solid !important;border-radius: 1px !important;}\" offset=\"vc_hidden-lg vc_hidden-md\"][vc_single_image image=\"3067\" img_size=\"full\" alignment=\"center\"][/vc_column_inner][vc_column_inner width=\"1/4\" css=\".vc_custom_1691846569845{border-right-width: 1px !important;border-right-color: #000000 !important;border-right-style: solid !important;border-radius: 1px !important;}\" offset=\"vc_hidden-lg vc_hidden-md\"][vc_single_image image=\"3068\" img_size=\"full\" alignment=\"center\"][/vc_column_inner][vc_column_inner width=\"1/4\" css=\".vc_custom_1691846576949{border-right-width: 1px !important;border-right-color: #000000 !important;border-right-style: solid !important;border-radius: 1px !important;}\" offset=\"vc_hidden-lg vc_hidden-md\"][vc_single_image image=\"3069\" img_size=\"full\" alignment=\"center\"][/vc_column_inner][vc_column_inner width=\"1/4\" offset=\"vc_hidden-lg vc_hidden-md\"][vc_single_image image=\"3070\" img_size=\"full\" alignment=\"center\"][/vc_column_inner][/vc_row_inner][vc_row_inner disable_element=\"yes\"][vc_column_inner width=\"1/3\"][vc_single_image image=\"2981\" img_size=\"full\"][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_single_image image=\"2982\" img_size=\"full\"][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_single_image image=\"2983\" img_size=\"full\"][/vc_column_inner][/vc_row_inner][vc_row_inner disable_element=\"yes\"][vc_column_inner width=\"1/6\"][/vc_column_inner][vc_column_inner width=\"2/3\"][vc_single_image image=\"2984\" img_size=\"full\"][/vc_column_inner][vc_column_inner width=\"1/6\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row full_width=\"stretch_row_content_no_spaces\"][vc_column offset=\"vc_hidden-sm vc_hidden-xs\"][vc_single_image image=\"3120\" img_size=\"full\" alignment=\"center\"][/vc_column][/vc_row][vc_row css=\".vc_custom_1689578794814{padding-top: 50px !important;padding-bottom: 50px !important;}\"][vc_column][ultimate_heading main_heading=\"Supplier selection and procurement criteria\" main_heading_color=\"#079547\" sub_heading_color=\"#792c8a\" alignment=\"left\"][/ultimate_heading][vc_row_inner css=\".vc_custom_1689578812611{margin-top: 50px !important;}\"][vc_column_inner width=\"1/2\"][dt_vc_list dividers=\"false\"]\r\n<ul>\r\n 	<li>Check supplier’s quality certification to ensure raw material quality</li>\r\n 	<li>New vendor validation protocol - In case of a change in the supplier, obtain samples and validate in the lab</li>\r\n</ul>\r\n[/dt_vc_list][/vc_column_inner][vc_column_inner width=\"1/2\"][dt_vc_list dividers=\"false\"]\r\n<ul>\r\n 	<li>Income inspection carried out on every consignment (Tested for Chemical Assay &amp; Physical Properties)</li>\r\n 	<li>Quality department approval required to be used in the production</li>\r\n</ul>\r\n[/dt_vc_list][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row css=\".vc_custom_1689578794814{padding-top: 50px !important;padding-bottom: 50px !important;}\"][vc_column][ultimate_heading main_heading=\"Please contact us to start your Marketing Journey with a reliable manufacturing partnership with FARMCHEMIE\" heading_tag=\"h3\" main_heading_color=\"#079547\" sub_heading_color=\"#792c8a\" alignment=\"left\"][/ultimate_heading][/vc_column][/vc_row][vc_row full_width=\"stretch_row_content\" equal_height=\"yes\" content_placement=\"middle\"][vc_column width=\"1/2\" css=\".vc_custom_1693569503225{background-image: url(https://farmchemie.yasithawd.com/wp-content/uploads/2023/09/022International-Markets-Sri-Lankan-Market.png?id=3403) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\"][vc_empty_space height=\"400px\"][/vc_column][vc_column width=\"1/2\" css=\".vc_custom_1693540250450{background-color: #8d499b !important;}\"][ultimate_heading main_heading=\"Sri Lankan Markets\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" main_heading_margin=\"margin-bottom:35px;\" sub_heading_margin=\"margin-bottom:10px;\"]Email : <a href=\"mailto:sales.import@farmchemie.com\">sales.import@farmchemie.com</a>\r\nTel No : + 94 76 577 2975[/ultimate_heading][vc_btn title=\"Read More\" style=\"outline-custom\" outline_custom_color=\"#ffffff\" outline_custom_hover_background=\"#039447\" outline_custom_hover_text=\"#ffffff\" shape=\"round\" align=\"center\"][/vc_column][/vc_row][vc_row full_width=\"stretch_row_content\" equal_height=\"yes\" rtl_reverse=\"yes\" content_placement=\"middle\"][vc_column width=\"1/2\" css=\".vc_custom_1695529397280{background-color: #039447 !important;}\" offset=\"vc_hidden-xs\"][ultimate_heading main_heading=\"International Markets\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" el_class=\"whitetxt\" main_heading_margin=\"margin-bottom:35px;\" sub_heading_margin=\"margin-bottom:10px;\"]Email : <a href=\"mailto:sales.export@farmchemie.com\">sales.export@farmchemie.com</a>\r\nTel No : + 94 76 577 2975[/ultimate_heading][vc_btn title=\"Read More\" style=\"outline-custom\" outline_custom_color=\"#ffffff\" outline_custom_hover_background=\"#8d499b\" outline_custom_hover_text=\"#ffffff\" shape=\"round\" align=\"center\"][/vc_column][vc_column width=\"1/2\" css=\".vc_custom_1695529390186{background-image: url(https://farmchemie.yasithawd.com/wp-content/uploads/2023/09/011International-Markets-Sri-Lankan-Market.png?id=3404) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\" offset=\"vc_hidden-xs\"][vc_empty_space height=\"400px\"][/vc_column][/vc_row][vc_row full_width=\"stretch_row_content\" equal_height=\"yes\" rtl_reverse=\"yes\" content_placement=\"middle\"][vc_column width=\"1/2\" css=\".vc_custom_1695529365330{background-image: url(https://farmchemie.yasithawd.com/wp-content/uploads/2023/09/011International-Markets-Sri-Lankan-Market.png?id=3404) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\" offset=\"vc_hidden-lg vc_hidden-md vc_hidden-sm\"][vc_empty_space height=\"400px\"][/vc_column][vc_column width=\"1/2\" css=\".vc_custom_1695529378241{background-color: #039447 !important;}\" offset=\"vc_hidden-lg vc_hidden-md vc_hidden-sm\"][ultimate_heading main_heading=\"International Markets\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" el_class=\"whitetxt\" main_heading_margin=\"margin-bottom:35px;\" sub_heading_margin=\"margin-bottom:10px;\"]Email : <a href=\"mailto:sales.export@farmchemie.com\">sales.export@farmchemie.com</a>\r\nTel No : + 94 76 577 2975[/ultimate_heading][vc_btn title=\"Read More\" style=\"outline-custom\" outline_custom_color=\"#ffffff\" outline_custom_hover_background=\"#8d499b\" outline_custom_hover_text=\"#ffffff\" shape=\"round\" align=\"center\"][/vc_column][/vc_row]','Manufacturing','','inherit','closed','closed','','2964-revision-v1','','','2023-09-24 04:25:04','2023-09-24 04:25:04','',2964,'https://farmchemie.yasithawd.com/?p=3881',0,'revision','',0),(3882,1,'2023-09-24 04:48:15','2023-09-24 04:48:15','[vc_row full_width=\"stretch_row_content_no_spaces\"][vc_column][ultimate_heading main_heading=\"Our History\" main_heading_color=\"#762888\"][/ultimate_heading][/vc_column][/vc_row][vc_row][vc_column][vc_row_inner equal_height=\"yes\" content_placement=\"middle\" css=\".vc_custom_1692359205466{margin-top: 35px !important;}\"][vc_column_inner width=\"1/2\"][ult_animation_block animation=\"fadeInLeftBig\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][vc_single_image image=\"3273\" img_size=\"full\" alignment=\"center\" style=\"vc_box_rounded\"][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/2\"][ult_animation_block animation=\"fadeInRightBig\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][ultimate_heading main_heading=\"Founded in 2002\" heading_tag=\"h3\" main_heading_color=\"#039447\" alignment=\"left\" sub_heading_font_size=\"desktop:18px;\"]Founded in 2002 by Mr. Uditha Wanigasinghe, an agriculturist who had a mission to aid valuable livestock producers in the country to enhance the yield and profitability of production. FARMCHEMIE introduced unprecedented solutions and consistent technical services to gain our customers’ trust and became the market leader in animal health products in 2006 within just four years.[/ultimate_heading][/ult_animation_block][/vc_column_inner][/vc_row_inner][vc_separator color=\"custom\" accent_color=\"#039447\"][vc_row_inner equal_height=\"yes\" rtl_reverse=\"yes\" content_placement=\"middle\" css=\".vc_custom_1692359216075{margin-top: 35px !important;}\"][vc_column_inner width=\"1/2\" offset=\"vc_hidden-xs\"][ult_animation_block animation=\"fadeInLeftBig\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][ultimate_heading main_heading=\"2006\" heading_tag=\"h3\" main_heading_color=\"#039447\" alignment=\"right\"]In 2006, the Sri Lankan poultry industry was affected with Avian Influenza which became a difficult period for the growth of FARMCHEMIE. This was the key factor in our decision to diversify into Agro Products. PLANTCHEM &amp; PLANTSEEDS were established to offer solutions in Agro specialty fertilizers, pesticides and seeds to invaluable cultivators.[/ultimate_heading][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/2\" offset=\"vc_hidden-xs\"][ult_animation_block animation=\"fadeInRightBig\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][vc_single_image image=\"3276\" img_size=\"full\" alignment=\"center\" style=\"vc_box_rounded\"][/ult_animation_block][/vc_column_inner][/vc_row_inner][vc_row_inner equal_height=\"yes\" rtl_reverse=\"yes\" content_placement=\"middle\" css=\".vc_custom_1692359216075{margin-top: 35px !important;}\"][vc_column_inner width=\"1/2\" offset=\"vc_hidden-lg vc_hidden-md vc_hidden-sm\"][ult_animation_block animation=\"fadeInRightBig\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][vc_single_image image=\"3276\" img_size=\"full\" alignment=\"center\" style=\"vc_box_rounded\"][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/2\" offset=\"vc_hidden-lg vc_hidden-md vc_hidden-sm\"][ult_animation_block animation=\"fadeInLeftBig\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][ultimate_heading main_heading=\"2006\" heading_tag=\"h3\" main_heading_color=\"#039447\" alignment=\"left\"]\r\n\r\nIn 2006, the Sri Lankan poultry industry was affected with Avian Influenza which became a difficult period for the growth of FARMCHEMIE. This was the key factor in our decision to diversify into Agro Products. PLANTCHEM &amp; PLANTSEEDS were established to offer solutions in Agro specialty fertilizers, pesticides and seeds to invaluable cultivators.\r\n\r\n[/ultimate_heading][/ult_animation_block][/vc_column_inner][/vc_row_inner][vc_separator color=\"custom\" accent_color=\"#039447\"][vc_row_inner equal_height=\"yes\" content_placement=\"middle\" css=\".vc_custom_1692359231594{margin-top: 35px !important;}\"][vc_column_inner width=\"1/2\"][ult_animation_block animation=\"fadeInLeftBig\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][vc_single_image image=\"3277\" img_size=\"full\" alignment=\"center\" style=\"vc_box_rounded\"][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/2\"][ult_animation_block animation=\"fadeInRightBig\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][ultimate_heading main_heading=\"2010\" heading_tag=\"h3\" main_heading_color=\"#039447\" alignment=\"left\"]In 2010, FEED CHEMIE became the subsequent addition to ever-growing vision of Mr. Uditha Wanigasinghe and entered the Animal Feed Additives market.[/ultimate_heading][/ult_animation_block][/vc_column_inner][/vc_row_inner][vc_separator color=\"custom\" accent_color=\"#039447\"][vc_row_inner equal_height=\"yes\" rtl_reverse=\"yes\" content_placement=\"middle\" css=\".vc_custom_1692359239274{margin-top: 35px !important;}\"][vc_column_inner width=\"1/2\" offset=\"vc_hidden-xs\"][ult_animation_block animation=\"fadeInLeftBig\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][ultimate_heading main_heading=\"2012\" heading_tag=\"h3\" main_heading_color=\"#039447\" alignment=\"right\"]The year 2012 is described as a turning point in our journey as FARMCHEMIE established our first production facility for the manufacturing and packing of animal health products. FARMCHEMIE became the first animal health organization in Sri Lanka to obtain ISO 9001:2015 and WHO GMP International Quality Certification. With our own formulation unit, FARMCHEMIE was able to offer customized solutions to cater the needs of the Sri Lankan Livestock Industry.[/ultimate_heading][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/2\" offset=\"vc_hidden-xs\"][ult_animation_block animation=\"fadeInRightBig\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][vc_single_image image=\"3278\" img_size=\"full\" alignment=\"center\" style=\"vc_box_rounded\"][/ult_animation_block][/vc_column_inner][/vc_row_inner][vc_row_inner equal_height=\"yes\" rtl_reverse=\"yes\" content_placement=\"middle\" css=\".vc_custom_1692359239274{margin-top: 35px !important;}\"][vc_column_inner width=\"1/2\" offset=\"vc_hidden-lg vc_hidden-md vc_hidden-sm\"][ult_animation_block animation=\"fadeInRightBig\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][vc_single_image image=\"3278\" img_size=\"full\" alignment=\"center\" style=\"vc_box_rounded\"][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/2\" offset=\"vc_hidden-lg vc_hidden-md vc_hidden-sm\"][ult_animation_block animation=\"fadeInLeftBig\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][ultimate_heading main_heading=\"2012\" heading_tag=\"h3\" main_heading_color=\"#039447\" alignment=\"left\"]The year 2012 is described as a turning point in our journey as FARMCHEMIE established our first production facility for the manufacturing and packing of animal health products. FARMCHEMIE became the first animal health organization in Sri Lanka to obtain ISO 9001:2015 and WHO GMP International Quality Certification. With our own formulation unit, FARMCHEMIE was able to offer customized solutions to cater the needs of the Sri Lankan Livestock Industry.[/ultimate_heading][/ult_animation_block][/vc_column_inner][/vc_row_inner][vc_separator color=\"custom\" accent_color=\"#039447\"][vc_row_inner content_placement=\"middle\" css=\".vc_custom_1692359246626{margin-top: 35px !important;}\"][vc_column_inner width=\"1/2\"][ult_animation_block animation=\"fadeInLeftBig\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][vc_single_image image=\"3279\" img_size=\"full\" alignment=\"center\" style=\"vc_box_rounded\"][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/2\"][ult_animation_block animation=\"fadeInRightBig\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][ultimate_heading main_heading=\"2016\" heading_tag=\"h3\" main_heading_color=\"#039447\" alignment=\"left\"]The year 2016 was another key milestone with the entry to the International Markets. FARMCHEMIE exported our first Feed Premix consignment to India and in 2018 our export operation was distinctly established as FARMCHEMIE MANUFACTURERS, a Board of Investment (BOI) approved entity.[/ultimate_heading][/ult_animation_block][/vc_column_inner][/vc_row_inner][vc_separator color=\"custom\" accent_color=\"#039447\"][vc_row_inner equal_height=\"yes\" rtl_reverse=\"yes\" content_placement=\"middle\" css=\".vc_custom_1695527931440{margin-top: 35px !important;}\"][vc_column_inner width=\"1/2\" offset=\"vc_hidden-xs\"][ult_animation_block animation=\"fadeInLeftBig\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][ultimate_heading main_heading=\"Fully automated manufacturing\" heading_tag=\"h3\" main_heading_color=\"#039447\" alignment=\"right\"]FARMCHEMIE MANUFACTURERS has invested in fully automated manufacturing facility from Bühler and became the first Sri Lankan owned company to obtain FAMI-QS International Quality Certification.[/ultimate_heading][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/2\" offset=\"vc_hidden-xs\"][ult_animation_block animation=\"fadeInRightBig\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][vc_single_image image=\"3280\" img_size=\"full\" alignment=\"center\" style=\"vc_box_rounded\"][/ult_animation_block][/vc_column_inner][/vc_row_inner][vc_row_inner equal_height=\"yes\" rtl_reverse=\"yes\" content_placement=\"middle\" css=\".vc_custom_1695527931440{margin-top: 35px !important;}\"][vc_column_inner width=\"1/2\" offset=\"vc_hidden-lg vc_hidden-md vc_hidden-sm\"][ult_animation_block animation=\"fadeInRightBig\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][vc_single_image image=\"3280\" img_size=\"full\" alignment=\"center\" style=\"vc_box_rounded\"][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/2\" offset=\"vc_hidden-lg vc_hidden-md vc_hidden-sm\"][ult_animation_block animation=\"fadeInLeftBig\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][ultimate_heading main_heading=\"Fully automated manufacturing\" heading_tag=\"h3\" main_heading_color=\"#039447\" alignment=\"left\"]FARMCHEMIE MANUFACTURERS has invested in fully automated manufacturing facility from Bühler and became the first Sri Lankan owned company to obtain FAMI-QS International Quality Certification.[/ultimate_heading][/ult_animation_block][/vc_column_inner][/vc_row_inner][vc_separator color=\"custom\" accent_color=\"#039447\"][vc_row_inner equal_height=\"yes\" content_placement=\"middle\" css=\".vc_custom_1692359258634{margin-top: 35px !important;}\"][vc_column_inner width=\"1/2\"][ult_animation_block animation=\"fadeInLeftBig\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][vc_single_image image=\"3281\" img_size=\"full\" alignment=\"center\" style=\"vc_box_rounded\"][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/2\"][ult_animation_block animation=\"fadeInRightBig\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][ultimate_heading main_heading=\"Official toll manufacturer partner\" heading_tag=\"h3\" main_heading_color=\"#039447\" alignment=\"left\"]With the trust and reputation built as a reliable manufacturer of animal feed additives and supplements in the global market, several world-renowned international brands have appointed FARMCHEMIE MANUFACTURERS as the official toll manufacturer partner. FARMCHEMIE MANUFACTURERS exports a wide range of products consisting of premixes, specialty feed additives, oral liquid supplements and pet supplements to various markets in South Asia, East Asia, Middle East and Africa.\r\n\r\nFARMCHEMIE, FEED CHEMIE &amp; FARMCHEMIE MANUFACTURERS currently operate under the ownership of our holding company, DYVESTA.\r\n\r\nDYEVSTA has become the pinnacle of Animal Nutrition and Health.\r\n\r\nDYVESTA is Dynamic, through our continuous evolution, growth and progress. DYVESTA is Diverse, in terms of both our business strategy and our community. DYVESTA is Devoted to our valuable business partners through exceptional service.[/ultimate_heading][/ult_animation_block][/vc_column_inner][/vc_row_inner][vc_separator color=\"custom\" accent_color=\"#039447\"][/vc_column][/vc_row][vc_row full_width=\"stretch_row\" equal_height=\"yes\" bg_type=\"image\" parallax_style=\"vcpb-vz-jquery\" bg_image_new=\"id^3256|url^https://farmchemie.yasithawd.com/wp-content/uploads/2023/08/Vision-Mission.png|caption^null|alt^null|title^Vision-&amp;-Mission|description^null\" bg_image_repeat=\"no-repeat\" enable_overlay=\"enable_overlay_value\" overlay_color=\"#000000\" overlay_pattern=\"01.png\" overlay_pattern_opacity=\"5\" css=\".vc_custom_1692366072362{margin-top: 35px !important;padding-top: 65px !important;padding-bottom: 100px !important;}\"][vc_column][vc_row_inner equal_height=\"yes\"][vc_column_inner width=\"1/2\"][ult_animation_block animation=\"fadeInLeftBig\" animation_duration=\"2\" animation_delay=\"0\" animation_iteration_count=\"1\"][ultimate_heading main_heading=\"Vision\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\"]To be the customers’ first and best choice by ensuring outstanding satisfaction through a well-trained and dedicated team. Prompt and quality solutions to our customers’ requirements will determine the increase of return on investment for us.[/ultimate_heading][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/2\"][ult_animation_block animation=\"fadeInRightBig\" animation_duration=\"2\" animation_delay=\"0\" animation_iteration_count=\"1\"][ultimate_heading main_heading=\"Mission\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\"]To become a world renowned manufacturer of Animal Health products and a trusted partner among our stakeholders for our integrity as well as for providing effective solutions[/ultimate_heading][/ult_animation_block][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row css=\".vc_custom_1684836308288{margin-top: 15px !important;}\"][vc_column][ultimate_heading main_heading=\"Achievements\" main_heading_color=\"#762888\" main_heading_margin=\"margin-top:35px;\"][/ultimate_heading][vc_row_inner gap=\"20\"][vc_column_inner width=\"1/2\" css=\".vc_custom_1691995519863{background-color: #f4ab20 !important;border: 1px solid #f4ab20 !important;border-radius: 35px !important;}\"][ult_animation_block animation=\"fadeInLeftBig\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][bsf-info-box icon_type=\"custom\" icon_img=\"id^3117|url^https://farmchemie.yasithawd.com/wp-content/uploads/2023/08/Pink_-H.png|caption^null|alt^null|title^Pink_-H|description^null\" img_width=\"60\" icon_style=\"advanced\" icon_border_style=\"solid\" icon_color_border=\"#ffffff\" icon_border_size=\"1\" icon_border_radius=\"500\" icon_border_spacing=\"1\" title=\"First Free Sale Certificate obtained from Veterinary Drug Control Authority (VDCA) for Veterinary Pharmaceuticals\" title_font_style=\"font-weight:bold;\" title_font_size=\"desktop:20px;\"][/bsf-info-box][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/2\" css=\".vc_custom_1691995661095{background-color: #722f8b !important;border: 1px solid #722f8b !important;border-radius: 35px !important;}\"][ult_animation_block animation=\"fadeInRightBig\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][bsf-info-box icon_type=\"custom\" icon_img=\"id^3117|url^https://farmchemie.yasithawd.com/wp-content/uploads/2023/08/Pink_-H.png|caption^null|alt^null|title^Pink_-H|description^null\" img_width=\"60\" icon_style=\"advanced\" icon_border_style=\"solid\" icon_color_border=\"#ffffff\" icon_border_size=\"1\" icon_border_radius=\"500\" icon_border_spacing=\"1\" title=\"First ISO 9001: 2015 ,WHO-GMP Quality Management systems certified Animal Health company in Sri Lanka since August, 2012\" title_font_style=\"font-weight:bold;\" title_font_color=\"#ffffff\" title_font_size=\"desktop:20px;\"][/bsf-info-box][/ult_animation_block][/vc_column_inner][/vc_row_inner][vc_row_inner gap=\"20\"][vc_column_inner width=\"1/2\" css=\".vc_custom_1691995661095{background-color: #722f8b !important;border: 1px solid #722f8b !important;border-radius: 35px !important;}\"][ult_animation_block animation=\"fadeInLeftBig\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][bsf-info-box icon_type=\"custom\" icon_img=\"id^3117|url^https://farmchemie.yasithawd.com/wp-content/uploads/2023/08/Pink_-H.png|caption^null|alt^null|title^Pink_-H|description^null\" img_width=\"60\" icon_style=\"advanced\" icon_border_style=\"solid\" icon_color_border=\"#ffffff\" icon_border_size=\"1\" icon_border_radius=\"500\" icon_border_spacing=\"1\" title=\"First FAMI-QS certified company in sri lanka\" title_font_style=\"font-weight:bold;\" title_font_color=\"#ffffff\" title_font_size=\"desktop:20px;\"][/bsf-info-box][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/2\" css=\".vc_custom_1691995519863{background-color: #f4ab20 !important;border: 1px solid #f4ab20 !important;border-radius: 35px !important;}\"][ult_animation_block animation=\"fadeInRightBig\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][bsf-info-box icon_type=\"custom\" icon_img=\"id^3117|url^https://farmchemie.yasithawd.com/wp-content/uploads/2023/08/Pink_-H.png|caption^null|alt^null|title^Pink_-H|description^null\" img_width=\"60\" icon_style=\"advanced\" icon_border_style=\"solid\" icon_color_border=\"#ffffff\" icon_border_size=\"1\" icon_border_radius=\"500\" icon_border_spacing=\"1\" title=\"First Certificate of Ethical Trading certified in Livestock industry\" title_font_style=\"font-weight:bold;\" title_font_size=\"desktop:20px;\"][/bsf-info-box][/ult_animation_block][/vc_column_inner][/vc_row_inner][vc_row_inner gap=\"20\"][vc_column_inner width=\"1/4\" css=\".vc_custom_1695528026328{border-radius: 35px !important;}\" offset=\"vc_hidden-xs\"][/vc_column_inner][vc_column_inner width=\"2/4\" css=\".vc_custom_1691995519863{background-color: #f4ab20 !important;border: 1px solid #f4ab20 !important;border-radius: 35px !important;}\"][ult_animation_block animation=\"fadeInLeftBig\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][bsf-info-box icon_type=\"custom\" icon_img=\"id^3117|url^https://farmchemie.yasithawd.com/wp-content/uploads/2023/08/Pink_-H.png|caption^null|alt^null|title^Pink_-H|description^null\" img_width=\"60\" icon_style=\"advanced\" icon_border_style=\"solid\" icon_color_border=\"#ffffff\" icon_border_size=\"1\" icon_border_radius=\"500\" icon_border_spacing=\"1\" title=\"First Silver awarded company at National Exports Awards in Livestock industry\" title_font_style=\"font-weight:bold;\" title_font_size=\"desktop:20px;\"][/bsf-info-box][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/4\" offset=\"vc_hidden-xs\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row full_width=\"stretch_row\" equal_height=\"yes\" content_placement=\"bottom\" css=\".vc_custom_1693627699480{margin-top: 15px !important;}\"][vc_column][ultimate_heading main_heading=\"Certifications\" main_heading_color=\"#762888\" main_heading_margin=\"margin-top:35px;\"][/ultimate_heading][vc_row_inner content_placement=\"bottom\"][vc_column_inner width=\"1/6\"][dt_fancy_image image_id=\"3408\" width=\"300\" height=\"300\" caption=\"off\"][/vc_column_inner][vc_column_inner width=\"1/6\"][dt_fancy_image image_id=\"3407\" width=\"300\" caption=\"off\"][/vc_column_inner][vc_column_inner width=\"1/6\"][dt_fancy_image image_id=\"3409\" width=\"300\" caption=\"off\"][/vc_column_inner][vc_column_inner width=\"1/6\"][dt_fancy_image image_id=\"3411\" width=\"300\" caption=\"off\"][/vc_column_inner][vc_column_inner width=\"1/6\"][dt_fancy_image image_id=\"3410\" width=\"300\" caption=\"off\"][/vc_column_inner][vc_column_inner width=\"1/6\"][dt_fancy_image image_id=\"3406\" width=\"300\" caption=\"off\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row full_width=\"stretch_row\" equal_height=\"yes\" content_placement=\"bottom\" css=\".vc_custom_1693625624233{margin-top: 15px !important;}\"][vc_column][ultimate_heading main_heading=\"Awards\" main_heading_color=\"#762888\" main_heading_margin=\"margin-top:35px;\"][/ultimate_heading][ultimate_carousel slide_to_scroll=\"single\" slides_on_mob=\"1\"][dt_fancy_image image_id=\"3412\" width=\"300\"][dt_fancy_image image_id=\"3413\" width=\"300\" caption=\"off\"][dt_fancy_image image_id=\"3414\" width=\"300\" caption=\"off\"][dt_fancy_image image_id=\"3415\" width=\"300\" caption=\"off\"][dt_fancy_image image_id=\"3416\" width=\"300\" caption=\"off\"][dt_fancy_image image_id=\"3417\" width=\"300\" caption=\"off\"][dt_fancy_image image_id=\"3418\" width=\"300\" caption=\"off\"][dt_fancy_image image_id=\"3420\" width=\"300\" caption=\"off\"][dt_fancy_image image_id=\"3419\" width=\"300\" caption=\"off\"][dt_fancy_image image_id=\"3422\" width=\"300\" caption=\"off\"][dt_fancy_image image_id=\"3421\" width=\"300\" caption=\"off\"][dt_fancy_image image_id=\"3422\" width=\"300\" caption=\"off\"][dt_fancy_image image_id=\"3423\" width=\"300\" caption=\"off\"][dt_fancy_image image_id=\"3424\" width=\"300\" caption=\"off\"][dt_fancy_image image_id=\"3425\" width=\"300\" caption=\"off\"][/ultimate_carousel][/vc_column][/vc_row][vc_row disable_element=\"yes\" css=\".vc_custom_1695294608306{margin-top: 15px !important;}\"][vc_column][ultimate_heading main_heading=\"Board Of Directors\" main_heading_color=\"#762888\" main_heading_margin=\"margin-top:35px;margin-bottom:35px;\"][/ultimate_heading][ultimate_carousel slides_on_desk=\"3\" slides_on_mob=\"1\" arrow_style=\"square-bg\" arrow_bg_color=\"#039447\" arrow_color=\"#ffffff\" next_icon=\"ultsl-arrow-right6\" prev_icon=\"ultsl-arrow-left6\" dots_color=\"#039447\" item_animation=\"fadeIn\" css_ad_caraousel=\".vc_custom_1694697209111{padding-right: 10px !important;padding-left: 10px !important;}\"][vc_row_inner][vc_column_inner][ultimate_heading main_heading=\"Uditha Wanigasinghe\" heading_tag=\"h3\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;\"]Managing Director[/ultimate_heading][ultimate_modal modal_title=\"Read more\" btn_size=\"md\" btn_bg_color=\"#089548\" btn_text=\"Read more\" overlay_bg_opacity=\"75\" img_size=\"80\" btn_txt_color=\"#ffffff\"]pretium mauris pretium mauris pretium mauris pretium mauris pretium mauris pretium mauris pretium mauris pretium mauris pretium mauris pretium mauris pretium mauris pretium mauris pretium mauris pretium mauris pretium mauris pretium mauris pretium mauris pretium mauris pretium mauris pretium mauris pretium mauris pretium mauris pretium mauris pretium mauris pretium mauris pretium mauris pretium mauris pretium mauris[/ultimate_modal][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner][ultimate_heading main_heading=\"Senitha Wanigasinghe\" heading_tag=\"h3\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;\"]Director/ CEO[/ultimate_heading][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner][ultimate_heading main_heading=\"Thulitha Wanigasinghe\" heading_tag=\"h3\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;\"]Director - Veterinary Services &amp; RA[/ultimate_heading][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner][ultimate_heading main_heading=\"Yvonne Van Cuylenberg\" heading_tag=\"h3\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;\"]Director - HR &amp; Administration[/ultimate_heading][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner][ultimate_heading main_heading=\"Gamini Wanigasinghe\" heading_tag=\"h3\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;\"]Director[/ultimate_heading][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner][ultimate_heading main_heading=\"Ajith Welianga\" heading_tag=\"h3\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;\"]Director - Marketing[/ultimate_heading][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner][ultimate_heading main_heading=\"Sunil Ranjith Guruge\" heading_tag=\"h3\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;\"]Director - Customer &amp; Employee Relations[/ultimate_heading][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner][ultimate_heading main_heading=\"Sampath Gunathilake\" heading_tag=\"h3\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;\"]Director - Sales[/ultimate_heading][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner][ultimate_heading main_heading=\"Chanaka Indrajith\" heading_tag=\"h3\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;\"]Director Production / COO[/ultimate_heading][/vc_column_inner][/vc_row_inner][/ultimate_carousel][/vc_column][/vc_row][vc_row disable_element=\"yes\"][vc_column][ultimate_heading main_heading=\"Board Of Directors\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;margin-bottom:35px;\"][/ultimate_heading][vc_row_inner][vc_column_inner width=\"1/3\"][ult_animation_block animation=\"fadeInUp\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][dt_fancy_image image_id=\"3172\" width=\"300\" border_radius=\"1px\" caption=\"off\" css=\".vc_custom_1692278922309{border-top-width: 1px !important;border-right-width: 1px !important;border-bottom-width: 1px !important;border-left-width: 1px !important;border-left-color: #059444 !important;border-left-style: solid !important;border-right-color: #059444 !important;border-right-style: solid !important;border-top-color: #059444 !important;border-top-style: solid !important;border-bottom-color: #059444 !important;border-bottom-style: solid !important;border-radius: 1px !important;}\"][ultimate_heading main_heading=\"Quisque sed nibh tristique\" heading_tag=\"h3\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;\"]\r\n<ul>\r\n 	<li>Duis lorem risus, aliquet a auctor a, venenatis in dui. Praesent et eros et risus dapibus placerat hendrerit cursus magna.</li>\r\n 	<li>Praesent et eros et risus dapibus placerat hendrerit cursus magna.</li>\r\n 	<li>aliquet a auctor a, venenatis in dui.</li>\r\n</ul>\r\n[/ultimate_heading][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/3\"][ult_animation_block animation=\"fadeInDown\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][dt_fancy_image image_id=\"3171\" width=\"300\" border_radius=\"1px\" caption=\"off\" css=\".vc_custom_1692278929158{border-top-width: 1px !important;border-right-width: 1px !important;border-bottom-width: 1px !important;border-left-width: 1px !important;border-left-color: #059444 !important;border-left-style: solid !important;border-right-color: #059444 !important;border-right-style: solid !important;border-top-color: #059444 !important;border-top-style: solid !important;border-bottom-color: #059444 !important;border-bottom-style: solid !important;border-radius: 1px !important;}\"][ultimate_heading main_heading=\"Quisque sed nibh tristique\" heading_tag=\"h3\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;\"]\r\n<ul>\r\n 	<li>Duis lorem risus, aliquet a auctor a, venenatis in dui. Praesent et eros et risus dapibus placerat hendrerit cursus magna.</li>\r\n 	<li>Praesent et eros et risus dapibus placerat hendrerit cursus magna.</li>\r\n 	<li>aliquet a auctor a, venenatis in dui.</li>\r\n</ul>\r\n[/ultimate_heading][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/3\"][ult_animation_block animation=\"fadeInUp\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][dt_fancy_image image_id=\"3170\" width=\"300\" border_radius=\"1px\" caption=\"off\" css=\".vc_custom_1692278936750{border-top-width: 1px !important;border-right-width: 1px !important;border-bottom-width: 1px !important;border-left-width: 1px !important;border-left-color: #059444 !important;border-left-style: solid !important;border-right-color: #059444 !important;border-right-style: solid !important;border-top-color: #059444 !important;border-top-style: solid !important;border-bottom-color: #059444 !important;border-bottom-style: solid !important;border-radius: 1px !important;}\"][ultimate_heading main_heading=\"Quisque sed nibh tristique\" heading_tag=\"h3\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;\"]\r\n<ul>\r\n 	<li>Duis lorem risus, aliquet a auctor a, venenatis in dui. Praesent et eros et risus dapibus placerat hendrerit cursus magna.</li>\r\n 	<li>Praesent et eros et risus dapibus placerat hendrerit cursus magna.</li>\r\n 	<li>aliquet a auctor a, venenatis in dui.</li>\r\n</ul>\r\n[/ultimate_heading][/ult_animation_block][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row disable_element=\"yes\"][vc_column][ultimate_heading main_heading=\"Executive Directors\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;margin-bottom:35px;\"][/ultimate_heading][vc_row_inner][vc_column_inner width=\"1/5\"][ult_animation_block animation=\"fadeInUp\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][dt_fancy_image image_id=\"3172\" width=\"300\" border_radius=\"1px\" caption=\"off\" css=\".vc_custom_1692278922309{border-top-width: 1px !important;border-right-width: 1px !important;border-bottom-width: 1px !important;border-left-width: 1px !important;border-left-color: #059444 !important;border-left-style: solid !important;border-right-color: #059444 !important;border-right-style: solid !important;border-top-color: #059444 !important;border-top-style: solid !important;border-bottom-color: #059444 !important;border-bottom-style: solid !important;border-radius: 1px !important;}\"][ultimate_heading main_heading=\"Quisque sed nibh tristique\" heading_tag=\"h3\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;\"]\r\n<ul>\r\n 	<li>Duis lorem risus, aliquet a auctor a, venenatis in dui. Praesent et eros et risus dapibus placerat hendrerit cursus magna.</li>\r\n 	<li>Praesent et eros et risus dapibus placerat hendrerit cursus magna.</li>\r\n 	<li>aliquet a auctor a, venenatis in dui.</li>\r\n</ul>\r\n[/ultimate_heading][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/5\"][ult_animation_block animation=\"fadeInDown\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][dt_fancy_image image_id=\"3171\" width=\"300\" border_radius=\"1px\" caption=\"off\" css=\".vc_custom_1692278929158{border-top-width: 1px !important;border-right-width: 1px !important;border-bottom-width: 1px !important;border-left-width: 1px !important;border-left-color: #059444 !important;border-left-style: solid !important;border-right-color: #059444 !important;border-right-style: solid !important;border-top-color: #059444 !important;border-top-style: solid !important;border-bottom-color: #059444 !important;border-bottom-style: solid !important;border-radius: 1px !important;}\"][ultimate_heading main_heading=\"Quisque sed nibh tristique\" heading_tag=\"h3\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;\"]\r\n<ul>\r\n 	<li>Duis lorem risus, aliquet a auctor a, venenatis in dui. Praesent et eros et risus dapibus placerat hendrerit cursus magna.</li>\r\n 	<li>Praesent et eros et risus dapibus placerat hendrerit cursus magna.</li>\r\n 	<li>aliquet a auctor a, venenatis in dui.</li>\r\n</ul>\r\n[/ultimate_heading][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/5\"][ult_animation_block animation=\"fadeInUp\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][dt_fancy_image image_id=\"3170\" width=\"300\" border_radius=\"1px\" caption=\"off\" css=\".vc_custom_1692278936750{border-top-width: 1px !important;border-right-width: 1px !important;border-bottom-width: 1px !important;border-left-width: 1px !important;border-left-color: #059444 !important;border-left-style: solid !important;border-right-color: #059444 !important;border-right-style: solid !important;border-top-color: #059444 !important;border-top-style: solid !important;border-bottom-color: #059444 !important;border-bottom-style: solid !important;border-radius: 1px !important;}\"][ultimate_heading main_heading=\"Quisque sed nibh tristique\" heading_tag=\"h3\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;\"]\r\n<ul>\r\n 	<li>Duis lorem risus, aliquet a auctor a, venenatis in dui. Praesent et eros et risus dapibus placerat hendrerit cursus magna.</li>\r\n 	<li>Praesent et eros et risus dapibus placerat hendrerit cursus magna.</li>\r\n 	<li>aliquet a auctor a, venenatis in dui.</li>\r\n</ul>\r\n[/ultimate_heading][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/5\"][ult_animation_block animation=\"fadeInDown\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][dt_fancy_image image_id=\"3170\" width=\"300\" border_radius=\"1px\" caption=\"off\" css=\".vc_custom_1692278936750{border-top-width: 1px !important;border-right-width: 1px !important;border-bottom-width: 1px !important;border-left-width: 1px !important;border-left-color: #059444 !important;border-left-style: solid !important;border-right-color: #059444 !important;border-right-style: solid !important;border-top-color: #059444 !important;border-top-style: solid !important;border-bottom-color: #059444 !important;border-bottom-style: solid !important;border-radius: 1px !important;}\"][ultimate_heading main_heading=\"Quisque sed nibh tristique\" heading_tag=\"h3\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;\"]\r\n<ul>\r\n 	<li>Duis lorem risus, aliquet a auctor a, venenatis in dui. Praesent et eros et risus dapibus placerat hendrerit cursus magna.</li>\r\n 	<li>Praesent et eros et risus dapibus placerat hendrerit cursus magna.</li>\r\n 	<li>aliquet a auctor a, venenatis in dui.</li>\r\n</ul>\r\n[/ultimate_heading][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/5\"][ult_animation_block animation=\"fadeInDown\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][dt_fancy_image image_id=\"3171\" width=\"300\" border_radius=\"1px\" caption=\"off\" css=\".vc_custom_1692278929158{border-top-width: 1px !important;border-right-width: 1px !important;border-bottom-width: 1px !important;border-left-width: 1px !important;border-left-color: #059444 !important;border-left-style: solid !important;border-right-color: #059444 !important;border-right-style: solid !important;border-top-color: #059444 !important;border-top-style: solid !important;border-bottom-color: #059444 !important;border-bottom-style: solid !important;border-radius: 1px !important;}\"][ultimate_heading main_heading=\"Quisque sed nibh tristique\" heading_tag=\"h3\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;\"]\r\n<ul>\r\n 	<li>Duis lorem risus, aliquet a auctor a, venenatis in dui. Praesent et eros et risus dapibus placerat hendrerit cursus magna.</li>\r\n 	<li>Praesent et eros et risus dapibus placerat hendrerit cursus magna.</li>\r\n 	<li>aliquet a auctor a, venenatis in dui.</li>\r\n</ul>\r\n[/ultimate_heading][/ult_animation_block][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner width=\"2/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row disable_element=\"yes\"][vc_column][ultimate_heading main_heading=\"Next Generation\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;margin-bottom:35px;\"][/ultimate_heading][vc_row_inner][vc_column_inner width=\"1/2\"][ult_animation_block animation=\"fadeInUp\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][dt_fancy_image image_id=\"3172\" width=\"300\" border_radius=\"1px\" caption=\"off\" css=\".vc_custom_1692278922309{border-top-width: 1px !important;border-right-width: 1px !important;border-bottom-width: 1px !important;border-left-width: 1px !important;border-left-color: #059444 !important;border-left-style: solid !important;border-right-color: #059444 !important;border-right-style: solid !important;border-top-color: #059444 !important;border-top-style: solid !important;border-bottom-color: #059444 !important;border-bottom-style: solid !important;border-radius: 1px !important;}\"][ultimate_heading main_heading=\"Quisque sed nibh tristique\" heading_tag=\"h3\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;\"]\r\n<ul>\r\n 	<li>Duis lorem risus, aliquet a auctor a, venenatis in dui. Praesent et eros et risus dapibus placerat hendrerit cursus magna.</li>\r\n 	<li>Praesent et eros et risus dapibus placerat hendrerit cursus magna.</li>\r\n 	<li>aliquet a auctor a, venenatis in dui.</li>\r\n</ul>\r\n[/ultimate_heading][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/2\"][ult_animation_block animation=\"fadeInDown\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][dt_fancy_image image_id=\"3171\" width=\"300\" border_radius=\"1px\" caption=\"off\" css=\".vc_custom_1692278929158{border-top-width: 1px !important;border-right-width: 1px !important;border-bottom-width: 1px !important;border-left-width: 1px !important;border-left-color: #059444 !important;border-left-style: solid !important;border-right-color: #059444 !important;border-right-style: solid !important;border-top-color: #059444 !important;border-top-style: solid !important;border-bottom-color: #059444 !important;border-bottom-style: solid !important;border-radius: 1px !important;}\"][ultimate_heading main_heading=\"Quisque sed nibh tristique\" heading_tag=\"h3\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;\"]\r\n<ul>\r\n 	<li>Duis lorem risus, aliquet a auctor a, venenatis in dui. Praesent et eros et risus dapibus placerat hendrerit cursus magna.</li>\r\n 	<li>Praesent et eros et risus dapibus placerat hendrerit cursus magna.</li>\r\n 	<li>aliquet a auctor a, venenatis in dui.</li>\r\n</ul>\r\n[/ultimate_heading][/ult_animation_block][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row]','About us','','inherit','closed','closed','','2917-revision-v1','','','2023-09-24 04:48:15','2023-09-24 04:48:15','',2917,'https://farmchemie.yasithawd.com/?p=3882',0,'revision','',0),(3883,1,'2023-09-24 04:53:41','2023-09-24 04:53:41','[vc_row full_width=\"stretch_row_content_no_spaces\"][vc_column][ultimate_heading main_heading=\"Our History\" main_heading_color=\"#762888\"][/ultimate_heading][/vc_column][/vc_row][vc_row][vc_column][vc_row_inner equal_height=\"yes\" content_placement=\"middle\" css=\".vc_custom_1692359205466{margin-top: 35px !important;}\"][vc_column_inner width=\"1/2\"][ult_animation_block animation=\"fadeInLeftBig\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][vc_single_image image=\"3273\" img_size=\"full\" alignment=\"center\" style=\"vc_box_rounded\"][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/2\"][ult_animation_block animation=\"fadeInRightBig\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][ultimate_heading main_heading=\"Founded in 2002\" heading_tag=\"h3\" main_heading_color=\"#039447\" alignment=\"left\" sub_heading_font_size=\"desktop:18px;\"]Founded in 2002 by Mr. Uditha Wanigasinghe, an agriculturist who had a mission to aid valuable livestock producers in the country to enhance the yield and profitability of production. FARMCHEMIE introduced unprecedented solutions and consistent technical services to gain our customers’ trust and became the market leader in animal health products in 2006 within just four years.[/ultimate_heading][/ult_animation_block][/vc_column_inner][/vc_row_inner][vc_separator color=\"custom\" accent_color=\"#039447\"][vc_row_inner equal_height=\"yes\" rtl_reverse=\"yes\" content_placement=\"middle\" css=\".vc_custom_1692359216075{margin-top: 35px !important;}\"][vc_column_inner width=\"1/2\" offset=\"vc_hidden-xs\"][ult_animation_block animation=\"fadeInLeftBig\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][ultimate_heading main_heading=\"2006\" heading_tag=\"h3\" main_heading_color=\"#039447\" alignment=\"right\"]In 2006, the Sri Lankan poultry industry was affected with Avian Influenza which became a difficult period for the growth of FARMCHEMIE. This was the key factor in our decision to diversify into Agro Products. PLANTCHEM &amp; PLANTSEEDS were established to offer solutions in Agro specialty fertilizers, pesticides and seeds to invaluable cultivators.[/ultimate_heading][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/2\" offset=\"vc_hidden-xs\"][ult_animation_block animation=\"fadeInRightBig\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][vc_single_image image=\"3276\" img_size=\"full\" alignment=\"center\" style=\"vc_box_rounded\"][/ult_animation_block][/vc_column_inner][/vc_row_inner][vc_row_inner equal_height=\"yes\" rtl_reverse=\"yes\" content_placement=\"middle\" css=\".vc_custom_1692359216075{margin-top: 35px !important;}\"][vc_column_inner width=\"1/2\" offset=\"vc_hidden-lg vc_hidden-md vc_hidden-sm\"][ult_animation_block animation=\"fadeInRightBig\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][vc_single_image image=\"3276\" img_size=\"full\" alignment=\"center\" style=\"vc_box_rounded\"][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/2\" offset=\"vc_hidden-lg vc_hidden-md vc_hidden-sm\"][ult_animation_block animation=\"fadeInLeftBig\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][ultimate_heading main_heading=\"2006\" heading_tag=\"h3\" main_heading_color=\"#039447\" alignment=\"left\"]\r\n\r\nIn 2006, the Sri Lankan poultry industry was affected with Avian Influenza which became a difficult period for the growth of FARMCHEMIE. This was the key factor in our decision to diversify into Agro Products. PLANTCHEM &amp; PLANTSEEDS were established to offer solutions in Agro specialty fertilizers, pesticides and seeds to invaluable cultivators.\r\n\r\n[/ultimate_heading][/ult_animation_block][/vc_column_inner][/vc_row_inner][vc_separator color=\"custom\" accent_color=\"#039447\"][vc_row_inner equal_height=\"yes\" content_placement=\"middle\" css=\".vc_custom_1692359231594{margin-top: 35px !important;}\"][vc_column_inner width=\"1/2\"][ult_animation_block animation=\"fadeInLeftBig\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][vc_single_image image=\"3277\" img_size=\"full\" alignment=\"center\" style=\"vc_box_rounded\"][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/2\"][ult_animation_block animation=\"fadeInRightBig\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][ultimate_heading main_heading=\"2010\" heading_tag=\"h3\" main_heading_color=\"#039447\" alignment=\"left\"]In 2010, FEED CHEMIE became the subsequent addition to ever-growing vision of Mr. Uditha Wanigasinghe and entered the Animal Feed Additives market.[/ultimate_heading][/ult_animation_block][/vc_column_inner][/vc_row_inner][vc_separator color=\"custom\" accent_color=\"#039447\"][vc_row_inner equal_height=\"yes\" rtl_reverse=\"yes\" content_placement=\"middle\" css=\".vc_custom_1692359239274{margin-top: 35px !important;}\"][vc_column_inner width=\"1/2\" offset=\"vc_hidden-xs\"][ult_animation_block animation=\"fadeInLeftBig\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][ultimate_heading main_heading=\"2012\" heading_tag=\"h3\" main_heading_color=\"#039447\" alignment=\"right\"]The year 2012 is described as a turning point in our journey as FARMCHEMIE established our first production facility for the manufacturing and packing of animal health products. FARMCHEMIE became the first animal health organization in Sri Lanka to obtain ISO 9001:2015 and WHO GMP International Quality Certification. With our own formulation unit, FARMCHEMIE was able to offer customized solutions to cater the needs of the Sri Lankan Livestock Industry.[/ultimate_heading][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/2\" offset=\"vc_hidden-xs\"][ult_animation_block animation=\"fadeInRightBig\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][vc_single_image image=\"3278\" img_size=\"full\" alignment=\"center\" style=\"vc_box_rounded\"][/ult_animation_block][/vc_column_inner][/vc_row_inner][vc_row_inner equal_height=\"yes\" rtl_reverse=\"yes\" content_placement=\"middle\" css=\".vc_custom_1692359239274{margin-top: 35px !important;}\"][vc_column_inner width=\"1/2\" offset=\"vc_hidden-lg vc_hidden-md vc_hidden-sm\"][ult_animation_block animation=\"fadeInRightBig\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][vc_single_image image=\"3278\" img_size=\"full\" alignment=\"center\" style=\"vc_box_rounded\"][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/2\" offset=\"vc_hidden-lg vc_hidden-md vc_hidden-sm\"][ult_animation_block animation=\"fadeInLeftBig\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][ultimate_heading main_heading=\"2012\" heading_tag=\"h3\" main_heading_color=\"#039447\" alignment=\"left\"]The year 2012 is described as a turning point in our journey as FARMCHEMIE established our first production facility for the manufacturing and packing of animal health products. FARMCHEMIE became the first animal health organization in Sri Lanka to obtain ISO 9001:2015 and WHO GMP International Quality Certification. With our own formulation unit, FARMCHEMIE was able to offer customized solutions to cater the needs of the Sri Lankan Livestock Industry.[/ultimate_heading][/ult_animation_block][/vc_column_inner][/vc_row_inner][vc_separator color=\"custom\" accent_color=\"#039447\"][vc_row_inner content_placement=\"middle\" css=\".vc_custom_1692359246626{margin-top: 35px !important;}\"][vc_column_inner width=\"1/2\"][ult_animation_block animation=\"fadeInLeftBig\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][vc_single_image image=\"3279\" img_size=\"full\" alignment=\"center\" style=\"vc_box_rounded\"][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/2\"][ult_animation_block animation=\"fadeInRightBig\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][ultimate_heading main_heading=\"2016\" heading_tag=\"h3\" main_heading_color=\"#039447\" alignment=\"left\"]The year 2016 was another key milestone with the entry to the International Markets. FARMCHEMIE exported our first Feed Premix consignment to India and in 2018 our export operation was distinctly established as FARMCHEMIE MANUFACTURERS, a Board of Investment (BOI) approved entity.[/ultimate_heading][/ult_animation_block][/vc_column_inner][/vc_row_inner][vc_separator color=\"custom\" accent_color=\"#039447\"][vc_row_inner equal_height=\"yes\" rtl_reverse=\"yes\" content_placement=\"middle\" css=\".vc_custom_1695527931440{margin-top: 35px !important;}\"][vc_column_inner width=\"1/2\" offset=\"vc_hidden-xs\"][ult_animation_block animation=\"fadeInLeftBig\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][ultimate_heading main_heading=\"Fully automated manufacturing\" heading_tag=\"h3\" main_heading_color=\"#039447\" alignment=\"right\"]FARMCHEMIE MANUFACTURERS has invested in fully automated manufacturing facility from Bühler and became the first Sri Lankan owned company to obtain FAMI-QS International Quality Certification.[/ultimate_heading][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/2\" offset=\"vc_hidden-xs\"][ult_animation_block animation=\"fadeInRightBig\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][vc_single_image image=\"3280\" img_size=\"full\" alignment=\"center\" style=\"vc_box_rounded\"][/ult_animation_block][/vc_column_inner][/vc_row_inner][vc_row_inner equal_height=\"yes\" rtl_reverse=\"yes\" content_placement=\"middle\" css=\".vc_custom_1695527931440{margin-top: 35px !important;}\"][vc_column_inner width=\"1/2\" offset=\"vc_hidden-lg vc_hidden-md vc_hidden-sm\"][ult_animation_block animation=\"fadeInRightBig\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][vc_single_image image=\"3280\" img_size=\"full\" alignment=\"center\" style=\"vc_box_rounded\"][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/2\" offset=\"vc_hidden-lg vc_hidden-md vc_hidden-sm\"][ult_animation_block animation=\"fadeInLeftBig\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][ultimate_heading main_heading=\"Fully automated manufacturing\" heading_tag=\"h3\" main_heading_color=\"#039447\" alignment=\"left\"]FARMCHEMIE MANUFACTURERS has invested in fully automated manufacturing facility from Bühler and became the first Sri Lankan owned company to obtain FAMI-QS International Quality Certification.[/ultimate_heading][/ult_animation_block][/vc_column_inner][/vc_row_inner][vc_separator color=\"custom\" accent_color=\"#039447\"][vc_row_inner equal_height=\"yes\" content_placement=\"middle\" css=\".vc_custom_1692359258634{margin-top: 35px !important;}\"][vc_column_inner width=\"1/2\"][ult_animation_block animation=\"fadeInLeftBig\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][vc_single_image image=\"3281\" img_size=\"full\" alignment=\"center\" style=\"vc_box_rounded\"][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/2\"][ult_animation_block animation=\"fadeInRightBig\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][ultimate_heading main_heading=\"Official toll manufacturer partner\" heading_tag=\"h3\" main_heading_color=\"#039447\" alignment=\"left\"]With the trust and reputation built as a reliable manufacturer of animal feed additives and supplements in the global market, several world-renowned international brands have appointed FARMCHEMIE MANUFACTURERS as the official toll manufacturer partner. FARMCHEMIE MANUFACTURERS exports a wide range of products consisting of premixes, specialty feed additives, oral liquid supplements and pet supplements to various markets in South Asia, East Asia, Middle East and Africa.\r\n\r\nFARMCHEMIE, FEED CHEMIE &amp; FARMCHEMIE MANUFACTURERS currently operate under the ownership of our holding company, DYVESTA.\r\n\r\nDYEVSTA has become the pinnacle of Animal Nutrition and Health.\r\n\r\nDYVESTA is Dynamic, through our continuous evolution, growth and progress. DYVESTA is Diverse, in terms of both our business strategy and our community. DYVESTA is Devoted to our valuable business partners through exceptional service.[/ultimate_heading][/ult_animation_block][/vc_column_inner][/vc_row_inner][vc_separator color=\"custom\" accent_color=\"#039447\"][/vc_column][/vc_row][vc_row full_width=\"stretch_row\" equal_height=\"yes\" bg_type=\"image\" parallax_style=\"vcpb-vz-jquery\" bg_image_new=\"id^3256|url^https://farmchemie.yasithawd.com/wp-content/uploads/2023/08/Vision-Mission.png|caption^null|alt^null|title^Vision-&amp;-Mission|description^null\" bg_image_repeat=\"no-repeat\" enable_overlay=\"enable_overlay_value\" overlay_color=\"#000000\" overlay_pattern=\"01.png\" overlay_pattern_opacity=\"5\" css=\".vc_custom_1692366072362{margin-top: 35px !important;padding-top: 65px !important;padding-bottom: 100px !important;}\"][vc_column][vc_row_inner equal_height=\"yes\"][vc_column_inner width=\"1/2\"][ult_animation_block animation=\"fadeInLeftBig\" animation_duration=\"2\" animation_delay=\"0\" animation_iteration_count=\"1\"][ultimate_heading main_heading=\"Vision\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\"]To be the customers’ first and best choice by ensuring outstanding satisfaction through a well-trained and dedicated team. Prompt and quality solutions to our customers’ requirements will determine the increase of return on investment for us.[/ultimate_heading][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/2\"][ult_animation_block animation=\"fadeInRightBig\" animation_duration=\"2\" animation_delay=\"0\" animation_iteration_count=\"1\"][ultimate_heading main_heading=\"Mission\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\"]To become a world renowned manufacturer of Animal Health products and a trusted partner among our stakeholders for our integrity as well as for providing effective solutions[/ultimate_heading][/ult_animation_block][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row css=\".vc_custom_1684836308288{margin-top: 15px !important;}\"][vc_column][ultimate_heading main_heading=\"Achievements\" main_heading_color=\"#762888\" main_heading_margin=\"margin-top:35px;\"][/ultimate_heading][vc_row_inner gap=\"20\"][vc_column_inner width=\"1/2\" css=\".vc_custom_1691995519863{background-color: #f4ab20 !important;border: 1px solid #f4ab20 !important;border-radius: 35px !important;}\"][ult_animation_block animation=\"fadeInLeftBig\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][bsf-info-box icon_type=\"custom\" icon_img=\"id^3117|url^https://farmchemie.yasithawd.com/wp-content/uploads/2023/08/Pink_-H.png|caption^null|alt^null|title^Pink_-H|description^null\" img_width=\"60\" icon_style=\"advanced\" icon_border_style=\"solid\" icon_color_border=\"#ffffff\" icon_border_size=\"1\" icon_border_radius=\"500\" icon_border_spacing=\"1\" title=\"First Free Sale Certificate obtained from Veterinary Drug Control Authority (VDCA) for Veterinary Pharmaceuticals\" title_font_style=\"font-weight:bold;\" title_font_size=\"desktop:20px;\"][/bsf-info-box][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/2\" css=\".vc_custom_1691995661095{background-color: #722f8b !important;border: 1px solid #722f8b !important;border-radius: 35px !important;}\"][ult_animation_block animation=\"fadeInRightBig\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][bsf-info-box icon_type=\"custom\" icon_img=\"id^3117|url^https://farmchemie.yasithawd.com/wp-content/uploads/2023/08/Pink_-H.png|caption^null|alt^null|title^Pink_-H|description^null\" img_width=\"60\" icon_style=\"advanced\" icon_border_style=\"solid\" icon_color_border=\"#ffffff\" icon_border_size=\"1\" icon_border_radius=\"500\" icon_border_spacing=\"1\" title=\"First ISO 9001: 2015 ,WHO-GMP Quality Management systems certified Animal Health company in Sri Lanka since August, 2012\" title_font_style=\"font-weight:bold;\" title_font_color=\"#ffffff\" title_font_size=\"desktop:20px;\"][/bsf-info-box][/ult_animation_block][/vc_column_inner][/vc_row_inner][vc_row_inner gap=\"20\"][vc_column_inner width=\"1/2\" css=\".vc_custom_1691995661095{background-color: #722f8b !important;border: 1px solid #722f8b !important;border-radius: 35px !important;}\"][ult_animation_block animation=\"fadeInLeftBig\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][bsf-info-box icon_type=\"custom\" icon_img=\"id^3117|url^https://farmchemie.yasithawd.com/wp-content/uploads/2023/08/Pink_-H.png|caption^null|alt^null|title^Pink_-H|description^null\" img_width=\"60\" icon_style=\"advanced\" icon_border_style=\"solid\" icon_color_border=\"#ffffff\" icon_border_size=\"1\" icon_border_radius=\"500\" icon_border_spacing=\"1\" title=\"First FAMI-QS certified company in sri lanka\" title_font_style=\"font-weight:bold;\" title_font_color=\"#ffffff\" title_font_size=\"desktop:20px;\"][/bsf-info-box][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/2\" css=\".vc_custom_1691995519863{background-color: #f4ab20 !important;border: 1px solid #f4ab20 !important;border-radius: 35px !important;}\"][ult_animation_block animation=\"fadeInRightBig\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][bsf-info-box icon_type=\"custom\" icon_img=\"id^3117|url^https://farmchemie.yasithawd.com/wp-content/uploads/2023/08/Pink_-H.png|caption^null|alt^null|title^Pink_-H|description^null\" img_width=\"60\" icon_style=\"advanced\" icon_border_style=\"solid\" icon_color_border=\"#ffffff\" icon_border_size=\"1\" icon_border_radius=\"500\" icon_border_spacing=\"1\" title=\"First Certificate of Ethical Trading certified in Livestock industry\" title_font_style=\"font-weight:bold;\" title_font_size=\"desktop:20px;\"][/bsf-info-box][/ult_animation_block][/vc_column_inner][/vc_row_inner][vc_row_inner gap=\"20\"][vc_column_inner width=\"1/4\" css=\".vc_custom_1695528026328{border-radius: 35px !important;}\" offset=\"vc_hidden-xs\"][/vc_column_inner][vc_column_inner width=\"2/4\" css=\".vc_custom_1691995519863{background-color: #f4ab20 !important;border: 1px solid #f4ab20 !important;border-radius: 35px !important;}\"][ult_animation_block animation=\"fadeInLeftBig\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][bsf-info-box icon_type=\"custom\" icon_img=\"id^3117|url^https://farmchemie.yasithawd.com/wp-content/uploads/2023/08/Pink_-H.png|caption^null|alt^null|title^Pink_-H|description^null\" img_width=\"60\" icon_style=\"advanced\" icon_border_style=\"solid\" icon_color_border=\"#ffffff\" icon_border_size=\"1\" icon_border_radius=\"500\" icon_border_spacing=\"1\" title=\"First Silver awarded company at National Exports Awards in Livestock industry\" title_font_style=\"font-weight:bold;\" title_font_size=\"desktop:20px;\"][/bsf-info-box][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/4\" offset=\"vc_hidden-xs\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row full_width=\"stretch_row\" equal_height=\"yes\" content_placement=\"bottom\" css=\".vc_custom_1693627699480{margin-top: 15px !important;}\"][vc_column][ultimate_heading main_heading=\"Certifications\" main_heading_color=\"#762888\" main_heading_margin=\"margin-top:35px;\"][/ultimate_heading][vc_row_inner content_placement=\"bottom\"][vc_column_inner width=\"1/6\"][dt_fancy_image image_id=\"3408\" width=\"300\" caption=\"off\"][/vc_column_inner][vc_column_inner width=\"1/6\"][dt_fancy_image image_id=\"3407\" width=\"300\" caption=\"off\"][/vc_column_inner][vc_column_inner width=\"1/6\"][dt_fancy_image image_id=\"3409\" width=\"300\" caption=\"off\"][/vc_column_inner][vc_column_inner width=\"1/6\"][dt_fancy_image image_id=\"3411\" width=\"300\" caption=\"off\"][/vc_column_inner][vc_column_inner width=\"1/6\"][dt_fancy_image image_id=\"3410\" width=\"300\" caption=\"off\"][/vc_column_inner][vc_column_inner width=\"1/6\"][dt_fancy_image image_id=\"3406\" width=\"300\" caption=\"off\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row full_width=\"stretch_row\" equal_height=\"yes\" content_placement=\"bottom\" css=\".vc_custom_1693625624233{margin-top: 15px !important;}\"][vc_column][ultimate_heading main_heading=\"Awards\" main_heading_color=\"#762888\" main_heading_margin=\"margin-top:35px;\"][/ultimate_heading][ultimate_carousel slide_to_scroll=\"single\" slides_on_mob=\"1\"][dt_fancy_image image_id=\"3412\" width=\"300\"][dt_fancy_image image_id=\"3413\" width=\"300\" caption=\"off\"][dt_fancy_image image_id=\"3414\" width=\"300\" caption=\"off\"][dt_fancy_image image_id=\"3415\" width=\"300\" caption=\"off\"][dt_fancy_image image_id=\"3416\" width=\"300\" caption=\"off\"][dt_fancy_image image_id=\"3417\" width=\"300\" caption=\"off\"][dt_fancy_image image_id=\"3418\" width=\"300\" caption=\"off\"][dt_fancy_image image_id=\"3420\" width=\"300\" caption=\"off\"][dt_fancy_image image_id=\"3419\" width=\"300\" caption=\"off\"][dt_fancy_image image_id=\"3422\" width=\"300\" caption=\"off\"][dt_fancy_image image_id=\"3421\" width=\"300\" caption=\"off\"][dt_fancy_image image_id=\"3422\" width=\"300\" caption=\"off\"][dt_fancy_image image_id=\"3423\" width=\"300\" caption=\"off\"][dt_fancy_image image_id=\"3424\" width=\"300\" caption=\"off\"][dt_fancy_image image_id=\"3425\" width=\"300\" caption=\"off\"][/ultimate_carousel][/vc_column][/vc_row][vc_row disable_element=\"yes\" css=\".vc_custom_1695294608306{margin-top: 15px !important;}\"][vc_column][ultimate_heading main_heading=\"Board Of Directors\" main_heading_color=\"#762888\" main_heading_margin=\"margin-top:35px;margin-bottom:35px;\"][/ultimate_heading][ultimate_carousel slides_on_desk=\"3\" slides_on_mob=\"1\" arrow_style=\"square-bg\" arrow_bg_color=\"#039447\" arrow_color=\"#ffffff\" next_icon=\"ultsl-arrow-right6\" prev_icon=\"ultsl-arrow-left6\" dots_color=\"#039447\" item_animation=\"fadeIn\" css_ad_caraousel=\".vc_custom_1694697209111{padding-right: 10px !important;padding-left: 10px !important;}\"][vc_row_inner][vc_column_inner][ultimate_heading main_heading=\"Uditha Wanigasinghe\" heading_tag=\"h3\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;\"]Managing Director[/ultimate_heading][ultimate_modal modal_title=\"Read more\" btn_size=\"md\" btn_bg_color=\"#089548\" btn_text=\"Read more\" overlay_bg_opacity=\"75\" img_size=\"80\" btn_txt_color=\"#ffffff\"]pretium mauris pretium mauris pretium mauris pretium mauris pretium mauris pretium mauris pretium mauris pretium mauris pretium mauris pretium mauris pretium mauris pretium mauris pretium mauris pretium mauris pretium mauris pretium mauris pretium mauris pretium mauris pretium mauris pretium mauris pretium mauris pretium mauris pretium mauris pretium mauris pretium mauris pretium mauris pretium mauris pretium mauris[/ultimate_modal][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner][ultimate_heading main_heading=\"Senitha Wanigasinghe\" heading_tag=\"h3\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;\"]Director/ CEO[/ultimate_heading][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner][ultimate_heading main_heading=\"Thulitha Wanigasinghe\" heading_tag=\"h3\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;\"]Director - Veterinary Services &amp; RA[/ultimate_heading][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner][ultimate_heading main_heading=\"Yvonne Van Cuylenberg\" heading_tag=\"h3\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;\"]Director - HR &amp; Administration[/ultimate_heading][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner][ultimate_heading main_heading=\"Gamini Wanigasinghe\" heading_tag=\"h3\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;\"]Director[/ultimate_heading][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner][ultimate_heading main_heading=\"Ajith Welianga\" heading_tag=\"h3\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;\"]Director - Marketing[/ultimate_heading][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner][ultimate_heading main_heading=\"Sunil Ranjith Guruge\" heading_tag=\"h3\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;\"]Director - Customer &amp; Employee Relations[/ultimate_heading][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner][ultimate_heading main_heading=\"Sampath Gunathilake\" heading_tag=\"h3\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;\"]Director - Sales[/ultimate_heading][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner][ultimate_heading main_heading=\"Chanaka Indrajith\" heading_tag=\"h3\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;\"]Director Production / COO[/ultimate_heading][/vc_column_inner][/vc_row_inner][/ultimate_carousel][/vc_column][/vc_row][vc_row disable_element=\"yes\"][vc_column][ultimate_heading main_heading=\"Board Of Directors\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;margin-bottom:35px;\"][/ultimate_heading][vc_row_inner][vc_column_inner width=\"1/3\"][ult_animation_block animation=\"fadeInUp\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][dt_fancy_image image_id=\"3172\" width=\"300\" border_radius=\"1px\" caption=\"off\" css=\".vc_custom_1692278922309{border-top-width: 1px !important;border-right-width: 1px !important;border-bottom-width: 1px !important;border-left-width: 1px !important;border-left-color: #059444 !important;border-left-style: solid !important;border-right-color: #059444 !important;border-right-style: solid !important;border-top-color: #059444 !important;border-top-style: solid !important;border-bottom-color: #059444 !important;border-bottom-style: solid !important;border-radius: 1px !important;}\"][ultimate_heading main_heading=\"Quisque sed nibh tristique\" heading_tag=\"h3\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;\"]\r\n<ul>\r\n 	<li>Duis lorem risus, aliquet a auctor a, venenatis in dui. Praesent et eros et risus dapibus placerat hendrerit cursus magna.</li>\r\n 	<li>Praesent et eros et risus dapibus placerat hendrerit cursus magna.</li>\r\n 	<li>aliquet a auctor a, venenatis in dui.</li>\r\n</ul>\r\n[/ultimate_heading][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/3\"][ult_animation_block animation=\"fadeInDown\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][dt_fancy_image image_id=\"3171\" width=\"300\" border_radius=\"1px\" caption=\"off\" css=\".vc_custom_1692278929158{border-top-width: 1px !important;border-right-width: 1px !important;border-bottom-width: 1px !important;border-left-width: 1px !important;border-left-color: #059444 !important;border-left-style: solid !important;border-right-color: #059444 !important;border-right-style: solid !important;border-top-color: #059444 !important;border-top-style: solid !important;border-bottom-color: #059444 !important;border-bottom-style: solid !important;border-radius: 1px !important;}\"][ultimate_heading main_heading=\"Quisque sed nibh tristique\" heading_tag=\"h3\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;\"]\r\n<ul>\r\n 	<li>Duis lorem risus, aliquet a auctor a, venenatis in dui. Praesent et eros et risus dapibus placerat hendrerit cursus magna.</li>\r\n 	<li>Praesent et eros et risus dapibus placerat hendrerit cursus magna.</li>\r\n 	<li>aliquet a auctor a, venenatis in dui.</li>\r\n</ul>\r\n[/ultimate_heading][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/3\"][ult_animation_block animation=\"fadeInUp\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][dt_fancy_image image_id=\"3170\" width=\"300\" border_radius=\"1px\" caption=\"off\" css=\".vc_custom_1692278936750{border-top-width: 1px !important;border-right-width: 1px !important;border-bottom-width: 1px !important;border-left-width: 1px !important;border-left-color: #059444 !important;border-left-style: solid !important;border-right-color: #059444 !important;border-right-style: solid !important;border-top-color: #059444 !important;border-top-style: solid !important;border-bottom-color: #059444 !important;border-bottom-style: solid !important;border-radius: 1px !important;}\"][ultimate_heading main_heading=\"Quisque sed nibh tristique\" heading_tag=\"h3\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;\"]\r\n<ul>\r\n 	<li>Duis lorem risus, aliquet a auctor a, venenatis in dui. Praesent et eros et risus dapibus placerat hendrerit cursus magna.</li>\r\n 	<li>Praesent et eros et risus dapibus placerat hendrerit cursus magna.</li>\r\n 	<li>aliquet a auctor a, venenatis in dui.</li>\r\n</ul>\r\n[/ultimate_heading][/ult_animation_block][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row disable_element=\"yes\"][vc_column][ultimate_heading main_heading=\"Executive Directors\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;margin-bottom:35px;\"][/ultimate_heading][vc_row_inner][vc_column_inner width=\"1/5\"][ult_animation_block animation=\"fadeInUp\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][dt_fancy_image image_id=\"3172\" width=\"300\" border_radius=\"1px\" caption=\"off\" css=\".vc_custom_1692278922309{border-top-width: 1px !important;border-right-width: 1px !important;border-bottom-width: 1px !important;border-left-width: 1px !important;border-left-color: #059444 !important;border-left-style: solid !important;border-right-color: #059444 !important;border-right-style: solid !important;border-top-color: #059444 !important;border-top-style: solid !important;border-bottom-color: #059444 !important;border-bottom-style: solid !important;border-radius: 1px !important;}\"][ultimate_heading main_heading=\"Quisque sed nibh tristique\" heading_tag=\"h3\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;\"]\r\n<ul>\r\n 	<li>Duis lorem risus, aliquet a auctor a, venenatis in dui. Praesent et eros et risus dapibus placerat hendrerit cursus magna.</li>\r\n 	<li>Praesent et eros et risus dapibus placerat hendrerit cursus magna.</li>\r\n 	<li>aliquet a auctor a, venenatis in dui.</li>\r\n</ul>\r\n[/ultimate_heading][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/5\"][ult_animation_block animation=\"fadeInDown\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][dt_fancy_image image_id=\"3171\" width=\"300\" border_radius=\"1px\" caption=\"off\" css=\".vc_custom_1692278929158{border-top-width: 1px !important;border-right-width: 1px !important;border-bottom-width: 1px !important;border-left-width: 1px !important;border-left-color: #059444 !important;border-left-style: solid !important;border-right-color: #059444 !important;border-right-style: solid !important;border-top-color: #059444 !important;border-top-style: solid !important;border-bottom-color: #059444 !important;border-bottom-style: solid !important;border-radius: 1px !important;}\"][ultimate_heading main_heading=\"Quisque sed nibh tristique\" heading_tag=\"h3\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;\"]\r\n<ul>\r\n 	<li>Duis lorem risus, aliquet a auctor a, venenatis in dui. Praesent et eros et risus dapibus placerat hendrerit cursus magna.</li>\r\n 	<li>Praesent et eros et risus dapibus placerat hendrerit cursus magna.</li>\r\n 	<li>aliquet a auctor a, venenatis in dui.</li>\r\n</ul>\r\n[/ultimate_heading][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/5\"][ult_animation_block animation=\"fadeInUp\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][dt_fancy_image image_id=\"3170\" width=\"300\" border_radius=\"1px\" caption=\"off\" css=\".vc_custom_1692278936750{border-top-width: 1px !important;border-right-width: 1px !important;border-bottom-width: 1px !important;border-left-width: 1px !important;border-left-color: #059444 !important;border-left-style: solid !important;border-right-color: #059444 !important;border-right-style: solid !important;border-top-color: #059444 !important;border-top-style: solid !important;border-bottom-color: #059444 !important;border-bottom-style: solid !important;border-radius: 1px !important;}\"][ultimate_heading main_heading=\"Quisque sed nibh tristique\" heading_tag=\"h3\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;\"]\r\n<ul>\r\n 	<li>Duis lorem risus, aliquet a auctor a, venenatis in dui. Praesent et eros et risus dapibus placerat hendrerit cursus magna.</li>\r\n 	<li>Praesent et eros et risus dapibus placerat hendrerit cursus magna.</li>\r\n 	<li>aliquet a auctor a, venenatis in dui.</li>\r\n</ul>\r\n[/ultimate_heading][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/5\"][ult_animation_block animation=\"fadeInDown\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][dt_fancy_image image_id=\"3170\" width=\"300\" border_radius=\"1px\" caption=\"off\" css=\".vc_custom_1692278936750{border-top-width: 1px !important;border-right-width: 1px !important;border-bottom-width: 1px !important;border-left-width: 1px !important;border-left-color: #059444 !important;border-left-style: solid !important;border-right-color: #059444 !important;border-right-style: solid !important;border-top-color: #059444 !important;border-top-style: solid !important;border-bottom-color: #059444 !important;border-bottom-style: solid !important;border-radius: 1px !important;}\"][ultimate_heading main_heading=\"Quisque sed nibh tristique\" heading_tag=\"h3\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;\"]\r\n<ul>\r\n 	<li>Duis lorem risus, aliquet a auctor a, venenatis in dui. Praesent et eros et risus dapibus placerat hendrerit cursus magna.</li>\r\n 	<li>Praesent et eros et risus dapibus placerat hendrerit cursus magna.</li>\r\n 	<li>aliquet a auctor a, venenatis in dui.</li>\r\n</ul>\r\n[/ultimate_heading][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/5\"][ult_animation_block animation=\"fadeInDown\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][dt_fancy_image image_id=\"3171\" width=\"300\" border_radius=\"1px\" caption=\"off\" css=\".vc_custom_1692278929158{border-top-width: 1px !important;border-right-width: 1px !important;border-bottom-width: 1px !important;border-left-width: 1px !important;border-left-color: #059444 !important;border-left-style: solid !important;border-right-color: #059444 !important;border-right-style: solid !important;border-top-color: #059444 !important;border-top-style: solid !important;border-bottom-color: #059444 !important;border-bottom-style: solid !important;border-radius: 1px !important;}\"][ultimate_heading main_heading=\"Quisque sed nibh tristique\" heading_tag=\"h3\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;\"]\r\n<ul>\r\n 	<li>Duis lorem risus, aliquet a auctor a, venenatis in dui. Praesent et eros et risus dapibus placerat hendrerit cursus magna.</li>\r\n 	<li>Praesent et eros et risus dapibus placerat hendrerit cursus magna.</li>\r\n 	<li>aliquet a auctor a, venenatis in dui.</li>\r\n</ul>\r\n[/ultimate_heading][/ult_animation_block][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner width=\"2/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row disable_element=\"yes\"][vc_column][ultimate_heading main_heading=\"Next Generation\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;margin-bottom:35px;\"][/ultimate_heading][vc_row_inner][vc_column_inner width=\"1/2\"][ult_animation_block animation=\"fadeInUp\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][dt_fancy_image image_id=\"3172\" width=\"300\" border_radius=\"1px\" caption=\"off\" css=\".vc_custom_1692278922309{border-top-width: 1px !important;border-right-width: 1px !important;border-bottom-width: 1px !important;border-left-width: 1px !important;border-left-color: #059444 !important;border-left-style: solid !important;border-right-color: #059444 !important;border-right-style: solid !important;border-top-color: #059444 !important;border-top-style: solid !important;border-bottom-color: #059444 !important;border-bottom-style: solid !important;border-radius: 1px !important;}\"][ultimate_heading main_heading=\"Quisque sed nibh tristique\" heading_tag=\"h3\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;\"]\r\n<ul>\r\n 	<li>Duis lorem risus, aliquet a auctor a, venenatis in dui. Praesent et eros et risus dapibus placerat hendrerit cursus magna.</li>\r\n 	<li>Praesent et eros et risus dapibus placerat hendrerit cursus magna.</li>\r\n 	<li>aliquet a auctor a, venenatis in dui.</li>\r\n</ul>\r\n[/ultimate_heading][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/2\"][ult_animation_block animation=\"fadeInDown\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][dt_fancy_image image_id=\"3171\" width=\"300\" border_radius=\"1px\" caption=\"off\" css=\".vc_custom_1692278929158{border-top-width: 1px !important;border-right-width: 1px !important;border-bottom-width: 1px !important;border-left-width: 1px !important;border-left-color: #059444 !important;border-left-style: solid !important;border-right-color: #059444 !important;border-right-style: solid !important;border-top-color: #059444 !important;border-top-style: solid !important;border-bottom-color: #059444 !important;border-bottom-style: solid !important;border-radius: 1px !important;}\"][ultimate_heading main_heading=\"Quisque sed nibh tristique\" heading_tag=\"h3\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;\"]\r\n<ul>\r\n 	<li>Duis lorem risus, aliquet a auctor a, venenatis in dui. Praesent et eros et risus dapibus placerat hendrerit cursus magna.</li>\r\n 	<li>Praesent et eros et risus dapibus placerat hendrerit cursus magna.</li>\r\n 	<li>aliquet a auctor a, venenatis in dui.</li>\r\n</ul>\r\n[/ultimate_heading][/ult_animation_block][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row]','About us','','inherit','closed','closed','','2917-revision-v1','','','2023-09-24 04:53:41','2023-09-24 04:53:41','',2917,'https://farmchemie.yasithawd.com/?p=3883',0,'revision','',0),(3884,1,'2023-09-24 04:54:33','2023-09-24 04:54:33','[vc_row full_width=\"stretch_row_content_no_spaces\"][vc_column][ultimate_heading main_heading=\"Our History\" main_heading_color=\"#762888\"][/ultimate_heading][/vc_column][/vc_row][vc_row][vc_column][vc_row_inner equal_height=\"yes\" content_placement=\"middle\" css=\".vc_custom_1692359205466{margin-top: 35px !important;}\"][vc_column_inner width=\"1/2\"][ult_animation_block animation=\"fadeInLeftBig\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][vc_single_image image=\"3273\" img_size=\"full\" alignment=\"center\" style=\"vc_box_rounded\"][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/2\"][ult_animation_block animation=\"fadeInRightBig\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][ultimate_heading main_heading=\"Founded in 2002\" heading_tag=\"h3\" main_heading_color=\"#039447\" alignment=\"left\" sub_heading_font_size=\"desktop:18px;\"]Founded in 2002 by Mr. Uditha Wanigasinghe, an agriculturist who had a mission to aid valuable livestock producers in the country to enhance the yield and profitability of production. FARMCHEMIE introduced unprecedented solutions and consistent technical services to gain our customers’ trust and became the market leader in animal health products in 2006 within just four years.[/ultimate_heading][/ult_animation_block][/vc_column_inner][/vc_row_inner][vc_separator color=\"custom\" accent_color=\"#039447\"][vc_row_inner equal_height=\"yes\" rtl_reverse=\"yes\" content_placement=\"middle\" css=\".vc_custom_1692359216075{margin-top: 35px !important;}\"][vc_column_inner width=\"1/2\" offset=\"vc_hidden-xs\"][ult_animation_block animation=\"fadeInLeftBig\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][ultimate_heading main_heading=\"2006\" heading_tag=\"h3\" main_heading_color=\"#039447\" alignment=\"right\"]In 2006, the Sri Lankan poultry industry was affected with Avian Influenza which became a difficult period for the growth of FARMCHEMIE. This was the key factor in our decision to diversify into Agro Products. PLANTCHEM &amp; PLANTSEEDS were established to offer solutions in Agro specialty fertilizers, pesticides and seeds to invaluable cultivators.[/ultimate_heading][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/2\" offset=\"vc_hidden-xs\"][ult_animation_block animation=\"fadeInRightBig\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][vc_single_image image=\"3276\" img_size=\"full\" alignment=\"center\" style=\"vc_box_rounded\"][/ult_animation_block][/vc_column_inner][/vc_row_inner][vc_row_inner equal_height=\"yes\" rtl_reverse=\"yes\" content_placement=\"middle\" css=\".vc_custom_1692359216075{margin-top: 35px !important;}\"][vc_column_inner width=\"1/2\" offset=\"vc_hidden-lg vc_hidden-md vc_hidden-sm\"][ult_animation_block animation=\"fadeInRightBig\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][vc_single_image image=\"3276\" img_size=\"full\" alignment=\"center\" style=\"vc_box_rounded\"][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/2\" offset=\"vc_hidden-lg vc_hidden-md vc_hidden-sm\"][ult_animation_block animation=\"fadeInLeftBig\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][ultimate_heading main_heading=\"2006\" heading_tag=\"h3\" main_heading_color=\"#039447\" alignment=\"left\"]\r\n\r\nIn 2006, the Sri Lankan poultry industry was affected with Avian Influenza which became a difficult period for the growth of FARMCHEMIE. This was the key factor in our decision to diversify into Agro Products. PLANTCHEM &amp; PLANTSEEDS were established to offer solutions in Agro specialty fertilizers, pesticides and seeds to invaluable cultivators.\r\n\r\n[/ultimate_heading][/ult_animation_block][/vc_column_inner][/vc_row_inner][vc_separator color=\"custom\" accent_color=\"#039447\"][vc_row_inner equal_height=\"yes\" content_placement=\"middle\" css=\".vc_custom_1692359231594{margin-top: 35px !important;}\"][vc_column_inner width=\"1/2\"][ult_animation_block animation=\"fadeInLeftBig\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][vc_single_image image=\"3277\" img_size=\"full\" alignment=\"center\" style=\"vc_box_rounded\"][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/2\"][ult_animation_block animation=\"fadeInRightBig\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][ultimate_heading main_heading=\"2010\" heading_tag=\"h3\" main_heading_color=\"#039447\" alignment=\"left\"]In 2010, FEED CHEMIE became the subsequent addition to ever-growing vision of Mr. Uditha Wanigasinghe and entered the Animal Feed Additives market.[/ultimate_heading][/ult_animation_block][/vc_column_inner][/vc_row_inner][vc_separator color=\"custom\" accent_color=\"#039447\"][vc_row_inner equal_height=\"yes\" rtl_reverse=\"yes\" content_placement=\"middle\" css=\".vc_custom_1692359239274{margin-top: 35px !important;}\"][vc_column_inner width=\"1/2\" offset=\"vc_hidden-xs\"][ult_animation_block animation=\"fadeInLeftBig\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][ultimate_heading main_heading=\"2012\" heading_tag=\"h3\" main_heading_color=\"#039447\" alignment=\"right\"]The year 2012 is described as a turning point in our journey as FARMCHEMIE established our first production facility for the manufacturing and packing of animal health products. FARMCHEMIE became the first animal health organization in Sri Lanka to obtain ISO 9001:2015 and WHO GMP International Quality Certification. With our own formulation unit, FARMCHEMIE was able to offer customized solutions to cater the needs of the Sri Lankan Livestock Industry.[/ultimate_heading][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/2\" offset=\"vc_hidden-xs\"][ult_animation_block animation=\"fadeInRightBig\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][vc_single_image image=\"3278\" img_size=\"full\" alignment=\"center\" style=\"vc_box_rounded\"][/ult_animation_block][/vc_column_inner][/vc_row_inner][vc_row_inner equal_height=\"yes\" rtl_reverse=\"yes\" content_placement=\"middle\" css=\".vc_custom_1692359239274{margin-top: 35px !important;}\"][vc_column_inner width=\"1/2\" offset=\"vc_hidden-lg vc_hidden-md vc_hidden-sm\"][ult_animation_block animation=\"fadeInRightBig\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][vc_single_image image=\"3278\" img_size=\"full\" alignment=\"center\" style=\"vc_box_rounded\"][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/2\" offset=\"vc_hidden-lg vc_hidden-md vc_hidden-sm\"][ult_animation_block animation=\"fadeInLeftBig\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][ultimate_heading main_heading=\"2012\" heading_tag=\"h3\" main_heading_color=\"#039447\" alignment=\"left\"]The year 2012 is described as a turning point in our journey as FARMCHEMIE established our first production facility for the manufacturing and packing of animal health products. FARMCHEMIE became the first animal health organization in Sri Lanka to obtain ISO 9001:2015 and WHO GMP International Quality Certification. With our own formulation unit, FARMCHEMIE was able to offer customized solutions to cater the needs of the Sri Lankan Livestock Industry.[/ultimate_heading][/ult_animation_block][/vc_column_inner][/vc_row_inner][vc_separator color=\"custom\" accent_color=\"#039447\"][vc_row_inner content_placement=\"middle\" css=\".vc_custom_1692359246626{margin-top: 35px !important;}\"][vc_column_inner width=\"1/2\"][ult_animation_block animation=\"fadeInLeftBig\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][vc_single_image image=\"3279\" img_size=\"full\" alignment=\"center\" style=\"vc_box_rounded\"][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/2\"][ult_animation_block animation=\"fadeInRightBig\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][ultimate_heading main_heading=\"2016\" heading_tag=\"h3\" main_heading_color=\"#039447\" alignment=\"left\"]The year 2016 was another key milestone with the entry to the International Markets. FARMCHEMIE exported our first Feed Premix consignment to India and in 2018 our export operation was distinctly established as FARMCHEMIE MANUFACTURERS, a Board of Investment (BOI) approved entity.[/ultimate_heading][/ult_animation_block][/vc_column_inner][/vc_row_inner][vc_separator color=\"custom\" accent_color=\"#039447\"][vc_row_inner equal_height=\"yes\" rtl_reverse=\"yes\" content_placement=\"middle\" css=\".vc_custom_1695527931440{margin-top: 35px !important;}\"][vc_column_inner width=\"1/2\" offset=\"vc_hidden-xs\"][ult_animation_block animation=\"fadeInLeftBig\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][ultimate_heading main_heading=\"Fully automated manufacturing\" heading_tag=\"h3\" main_heading_color=\"#039447\" alignment=\"right\"]FARMCHEMIE MANUFACTURERS has invested in fully automated manufacturing facility from Bühler and became the first Sri Lankan owned company to obtain FAMI-QS International Quality Certification.[/ultimate_heading][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/2\" offset=\"vc_hidden-xs\"][ult_animation_block animation=\"fadeInRightBig\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][vc_single_image image=\"3280\" img_size=\"full\" alignment=\"center\" style=\"vc_box_rounded\"][/ult_animation_block][/vc_column_inner][/vc_row_inner][vc_row_inner equal_height=\"yes\" rtl_reverse=\"yes\" content_placement=\"middle\" css=\".vc_custom_1695527931440{margin-top: 35px !important;}\"][vc_column_inner width=\"1/2\" offset=\"vc_hidden-lg vc_hidden-md vc_hidden-sm\"][ult_animation_block animation=\"fadeInRightBig\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][vc_single_image image=\"3280\" img_size=\"full\" alignment=\"center\" style=\"vc_box_rounded\"][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/2\" offset=\"vc_hidden-lg vc_hidden-md vc_hidden-sm\"][ult_animation_block animation=\"fadeInLeftBig\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][ultimate_heading main_heading=\"Fully automated manufacturing\" heading_tag=\"h3\" main_heading_color=\"#039447\" alignment=\"left\"]FARMCHEMIE MANUFACTURERS has invested in fully automated manufacturing facility from Bühler and became the first Sri Lankan owned company to obtain FAMI-QS International Quality Certification.[/ultimate_heading][/ult_animation_block][/vc_column_inner][/vc_row_inner][vc_separator color=\"custom\" accent_color=\"#039447\"][vc_row_inner equal_height=\"yes\" content_placement=\"middle\" css=\".vc_custom_1692359258634{margin-top: 35px !important;}\"][vc_column_inner width=\"1/2\"][ult_animation_block animation=\"fadeInLeftBig\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][vc_single_image image=\"3281\" img_size=\"full\" alignment=\"center\" style=\"vc_box_rounded\"][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/2\"][ult_animation_block animation=\"fadeInRightBig\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][ultimate_heading main_heading=\"Official toll manufacturer partner\" heading_tag=\"h3\" main_heading_color=\"#039447\" alignment=\"left\"]With the trust and reputation built as a reliable manufacturer of animal feed additives and supplements in the global market, several world-renowned international brands have appointed FARMCHEMIE MANUFACTURERS as the official toll manufacturer partner. FARMCHEMIE MANUFACTURERS exports a wide range of products consisting of premixes, specialty feed additives, oral liquid supplements and pet supplements to various markets in South Asia, East Asia, Middle East and Africa.\r\n\r\nFARMCHEMIE, FEED CHEMIE &amp; FARMCHEMIE MANUFACTURERS currently operate under the ownership of our holding company, DYVESTA.\r\n\r\nDYEVSTA has become the pinnacle of Animal Nutrition and Health.\r\n\r\nDYVESTA is Dynamic, through our continuous evolution, growth and progress. DYVESTA is Diverse, in terms of both our business strategy and our community. DYVESTA is Devoted to our valuable business partners through exceptional service.[/ultimate_heading][/ult_animation_block][/vc_column_inner][/vc_row_inner][vc_separator color=\"custom\" accent_color=\"#039447\"][/vc_column][/vc_row][vc_row full_width=\"stretch_row\" equal_height=\"yes\" bg_type=\"image\" parallax_style=\"vcpb-vz-jquery\" bg_image_new=\"id^3256|url^https://farmchemie.yasithawd.com/wp-content/uploads/2023/08/Vision-Mission.png|caption^null|alt^null|title^Vision-&amp;-Mission|description^null\" bg_image_repeat=\"no-repeat\" enable_overlay=\"enable_overlay_value\" overlay_color=\"#000000\" overlay_pattern=\"01.png\" overlay_pattern_opacity=\"5\" css=\".vc_custom_1692366072362{margin-top: 35px !important;padding-top: 65px !important;padding-bottom: 100px !important;}\"][vc_column][vc_row_inner equal_height=\"yes\"][vc_column_inner width=\"1/2\"][ult_animation_block animation=\"fadeInLeftBig\" animation_duration=\"2\" animation_delay=\"0\" animation_iteration_count=\"1\"][ultimate_heading main_heading=\"Vision\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\"]To be the customers’ first and best choice by ensuring outstanding satisfaction through a well-trained and dedicated team. Prompt and quality solutions to our customers’ requirements will determine the increase of return on investment for us.[/ultimate_heading][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/2\"][ult_animation_block animation=\"fadeInRightBig\" animation_duration=\"2\" animation_delay=\"0\" animation_iteration_count=\"1\"][ultimate_heading main_heading=\"Mission\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\"]To become a world renowned manufacturer of Animal Health products and a trusted partner among our stakeholders for our integrity as well as for providing effective solutions[/ultimate_heading][/ult_animation_block][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row css=\".vc_custom_1684836308288{margin-top: 15px !important;}\"][vc_column][ultimate_heading main_heading=\"Achievements\" main_heading_color=\"#762888\" main_heading_margin=\"margin-top:35px;\"][/ultimate_heading][vc_row_inner gap=\"20\"][vc_column_inner width=\"1/2\" css=\".vc_custom_1691995519863{background-color: #f4ab20 !important;border: 1px solid #f4ab20 !important;border-radius: 35px !important;}\"][ult_animation_block animation=\"fadeInLeftBig\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][bsf-info-box icon_type=\"custom\" icon_img=\"id^3117|url^https://farmchemie.yasithawd.com/wp-content/uploads/2023/08/Pink_-H.png|caption^null|alt^null|title^Pink_-H|description^null\" img_width=\"60\" icon_style=\"advanced\" icon_border_style=\"solid\" icon_color_border=\"#ffffff\" icon_border_size=\"1\" icon_border_radius=\"500\" icon_border_spacing=\"1\" title=\"First Free Sale Certificate obtained from Veterinary Drug Control Authority (VDCA) for Veterinary Pharmaceuticals\" title_font_style=\"font-weight:bold;\" title_font_size=\"desktop:20px;\"][/bsf-info-box][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/2\" css=\".vc_custom_1691995661095{background-color: #722f8b !important;border: 1px solid #722f8b !important;border-radius: 35px !important;}\"][ult_animation_block animation=\"fadeInRightBig\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][bsf-info-box icon_type=\"custom\" icon_img=\"id^3117|url^https://farmchemie.yasithawd.com/wp-content/uploads/2023/08/Pink_-H.png|caption^null|alt^null|title^Pink_-H|description^null\" img_width=\"60\" icon_style=\"advanced\" icon_border_style=\"solid\" icon_color_border=\"#ffffff\" icon_border_size=\"1\" icon_border_radius=\"500\" icon_border_spacing=\"1\" title=\"First ISO 9001: 2015 ,WHO-GMP Quality Management systems certified Animal Health company in Sri Lanka since August, 2012\" title_font_style=\"font-weight:bold;\" title_font_color=\"#ffffff\" title_font_size=\"desktop:20px;\"][/bsf-info-box][/ult_animation_block][/vc_column_inner][/vc_row_inner][vc_row_inner gap=\"20\"][vc_column_inner width=\"1/2\" css=\".vc_custom_1691995661095{background-color: #722f8b !important;border: 1px solid #722f8b !important;border-radius: 35px !important;}\"][ult_animation_block animation=\"fadeInLeftBig\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][bsf-info-box icon_type=\"custom\" icon_img=\"id^3117|url^https://farmchemie.yasithawd.com/wp-content/uploads/2023/08/Pink_-H.png|caption^null|alt^null|title^Pink_-H|description^null\" img_width=\"60\" icon_style=\"advanced\" icon_border_style=\"solid\" icon_color_border=\"#ffffff\" icon_border_size=\"1\" icon_border_radius=\"500\" icon_border_spacing=\"1\" title=\"First FAMI-QS certified company in sri lanka\" title_font_style=\"font-weight:bold;\" title_font_color=\"#ffffff\" title_font_size=\"desktop:20px;\"][/bsf-info-box][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/2\" css=\".vc_custom_1691995519863{background-color: #f4ab20 !important;border: 1px solid #f4ab20 !important;border-radius: 35px !important;}\"][ult_animation_block animation=\"fadeInRightBig\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][bsf-info-box icon_type=\"custom\" icon_img=\"id^3117|url^https://farmchemie.yasithawd.com/wp-content/uploads/2023/08/Pink_-H.png|caption^null|alt^null|title^Pink_-H|description^null\" img_width=\"60\" icon_style=\"advanced\" icon_border_style=\"solid\" icon_color_border=\"#ffffff\" icon_border_size=\"1\" icon_border_radius=\"500\" icon_border_spacing=\"1\" title=\"First Certificate of Ethical Trading certified in Livestock industry\" title_font_style=\"font-weight:bold;\" title_font_size=\"desktop:20px;\"][/bsf-info-box][/ult_animation_block][/vc_column_inner][/vc_row_inner][vc_row_inner gap=\"20\"][vc_column_inner width=\"1/4\" css=\".vc_custom_1695528026328{border-radius: 35px !important;}\" offset=\"vc_hidden-xs\"][/vc_column_inner][vc_column_inner width=\"2/4\" css=\".vc_custom_1691995519863{background-color: #f4ab20 !important;border: 1px solid #f4ab20 !important;border-radius: 35px !important;}\"][ult_animation_block animation=\"fadeInLeftBig\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][bsf-info-box icon_type=\"custom\" icon_img=\"id^3117|url^https://farmchemie.yasithawd.com/wp-content/uploads/2023/08/Pink_-H.png|caption^null|alt^null|title^Pink_-H|description^null\" img_width=\"60\" icon_style=\"advanced\" icon_border_style=\"solid\" icon_color_border=\"#ffffff\" icon_border_size=\"1\" icon_border_radius=\"500\" icon_border_spacing=\"1\" title=\"First Silver awarded company at National Exports Awards in Livestock industry\" title_font_style=\"font-weight:bold;\" title_font_size=\"desktop:20px;\"][/bsf-info-box][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/4\" offset=\"vc_hidden-xs\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row full_width=\"stretch_row\" equal_height=\"yes\" content_placement=\"bottom\" css=\".vc_custom_1693627699480{margin-top: 15px !important;}\"][vc_column][ultimate_heading main_heading=\"Certifications\" main_heading_color=\"#762888\" main_heading_margin=\"margin-top:35px;\"][/ultimate_heading][vc_row_inner content_placement=\"bottom\"][vc_column_inner width=\"1/6\"][dt_fancy_image image_id=\"3408\" width=\"300\" caption=\"off\"][/vc_column_inner][vc_column_inner width=\"1/6\"][dt_fancy_image image_id=\"3407\" width=\"300\" caption=\"off\"][/vc_column_inner][vc_column_inner width=\"1/6\"][dt_fancy_image image_id=\"3409\" width=\"300\" caption=\"off\"][/vc_column_inner][vc_column_inner width=\"1/6\"][dt_fancy_image image_id=\"3410\" width=\"300\" caption=\"off\"][/vc_column_inner][vc_column_inner width=\"1/6\"][dt_fancy_image image_id=\"3411\" width=\"300\" caption=\"off\"][/vc_column_inner][vc_column_inner width=\"1/6\"][dt_fancy_image image_id=\"3406\" width=\"300\" caption=\"off\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row full_width=\"stretch_row\" equal_height=\"yes\" content_placement=\"bottom\" css=\".vc_custom_1693625624233{margin-top: 15px !important;}\"][vc_column][ultimate_heading main_heading=\"Awards\" main_heading_color=\"#762888\" main_heading_margin=\"margin-top:35px;\"][/ultimate_heading][ultimate_carousel slide_to_scroll=\"single\" slides_on_mob=\"1\"][dt_fancy_image image_id=\"3412\" width=\"300\"][dt_fancy_image image_id=\"3413\" width=\"300\" caption=\"off\"][dt_fancy_image image_id=\"3414\" width=\"300\" caption=\"off\"][dt_fancy_image image_id=\"3415\" width=\"300\" caption=\"off\"][dt_fancy_image image_id=\"3416\" width=\"300\" caption=\"off\"][dt_fancy_image image_id=\"3417\" width=\"300\" caption=\"off\"][dt_fancy_image image_id=\"3418\" width=\"300\" caption=\"off\"][dt_fancy_image image_id=\"3420\" width=\"300\" caption=\"off\"][dt_fancy_image image_id=\"3419\" width=\"300\" caption=\"off\"][dt_fancy_image image_id=\"3422\" width=\"300\" caption=\"off\"][dt_fancy_image image_id=\"3421\" width=\"300\" caption=\"off\"][dt_fancy_image image_id=\"3422\" width=\"300\" caption=\"off\"][dt_fancy_image image_id=\"3423\" width=\"300\" caption=\"off\"][dt_fancy_image image_id=\"3424\" width=\"300\" caption=\"off\"][dt_fancy_image image_id=\"3425\" width=\"300\" caption=\"off\"][/ultimate_carousel][/vc_column][/vc_row][vc_row disable_element=\"yes\" css=\".vc_custom_1695294608306{margin-top: 15px !important;}\"][vc_column][ultimate_heading main_heading=\"Board Of Directors\" main_heading_color=\"#762888\" main_heading_margin=\"margin-top:35px;margin-bottom:35px;\"][/ultimate_heading][ultimate_carousel slides_on_desk=\"3\" slides_on_mob=\"1\" arrow_style=\"square-bg\" arrow_bg_color=\"#039447\" arrow_color=\"#ffffff\" next_icon=\"ultsl-arrow-right6\" prev_icon=\"ultsl-arrow-left6\" dots_color=\"#039447\" item_animation=\"fadeIn\" css_ad_caraousel=\".vc_custom_1694697209111{padding-right: 10px !important;padding-left: 10px !important;}\"][vc_row_inner][vc_column_inner][ultimate_heading main_heading=\"Uditha Wanigasinghe\" heading_tag=\"h3\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;\"]Managing Director[/ultimate_heading][ultimate_modal modal_title=\"Read more\" btn_size=\"md\" btn_bg_color=\"#089548\" btn_text=\"Read more\" overlay_bg_opacity=\"75\" img_size=\"80\" btn_txt_color=\"#ffffff\"]pretium mauris pretium mauris pretium mauris pretium mauris pretium mauris pretium mauris pretium mauris pretium mauris pretium mauris pretium mauris pretium mauris pretium mauris pretium mauris pretium mauris pretium mauris pretium mauris pretium mauris pretium mauris pretium mauris pretium mauris pretium mauris pretium mauris pretium mauris pretium mauris pretium mauris pretium mauris pretium mauris pretium mauris[/ultimate_modal][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner][ultimate_heading main_heading=\"Senitha Wanigasinghe\" heading_tag=\"h3\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;\"]Director/ CEO[/ultimate_heading][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner][ultimate_heading main_heading=\"Thulitha Wanigasinghe\" heading_tag=\"h3\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;\"]Director - Veterinary Services &amp; RA[/ultimate_heading][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner][ultimate_heading main_heading=\"Yvonne Van Cuylenberg\" heading_tag=\"h3\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;\"]Director - HR &amp; Administration[/ultimate_heading][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner][ultimate_heading main_heading=\"Gamini Wanigasinghe\" heading_tag=\"h3\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;\"]Director[/ultimate_heading][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner][ultimate_heading main_heading=\"Ajith Welianga\" heading_tag=\"h3\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;\"]Director - Marketing[/ultimate_heading][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner][ultimate_heading main_heading=\"Sunil Ranjith Guruge\" heading_tag=\"h3\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;\"]Director - Customer &amp; Employee Relations[/ultimate_heading][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner][ultimate_heading main_heading=\"Sampath Gunathilake\" heading_tag=\"h3\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;\"]Director - Sales[/ultimate_heading][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner][ultimate_heading main_heading=\"Chanaka Indrajith\" heading_tag=\"h3\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;\"]Director Production / COO[/ultimate_heading][/vc_column_inner][/vc_row_inner][/ultimate_carousel][/vc_column][/vc_row][vc_row disable_element=\"yes\"][vc_column][ultimate_heading main_heading=\"Board Of Directors\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;margin-bottom:35px;\"][/ultimate_heading][vc_row_inner][vc_column_inner width=\"1/3\"][ult_animation_block animation=\"fadeInUp\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][dt_fancy_image image_id=\"3172\" width=\"300\" border_radius=\"1px\" caption=\"off\" css=\".vc_custom_1692278922309{border-top-width: 1px !important;border-right-width: 1px !important;border-bottom-width: 1px !important;border-left-width: 1px !important;border-left-color: #059444 !important;border-left-style: solid !important;border-right-color: #059444 !important;border-right-style: solid !important;border-top-color: #059444 !important;border-top-style: solid !important;border-bottom-color: #059444 !important;border-bottom-style: solid !important;border-radius: 1px !important;}\"][ultimate_heading main_heading=\"Quisque sed nibh tristique\" heading_tag=\"h3\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;\"]\r\n<ul>\r\n 	<li>Duis lorem risus, aliquet a auctor a, venenatis in dui. Praesent et eros et risus dapibus placerat hendrerit cursus magna.</li>\r\n 	<li>Praesent et eros et risus dapibus placerat hendrerit cursus magna.</li>\r\n 	<li>aliquet a auctor a, venenatis in dui.</li>\r\n</ul>\r\n[/ultimate_heading][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/3\"][ult_animation_block animation=\"fadeInDown\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][dt_fancy_image image_id=\"3171\" width=\"300\" border_radius=\"1px\" caption=\"off\" css=\".vc_custom_1692278929158{border-top-width: 1px !important;border-right-width: 1px !important;border-bottom-width: 1px !important;border-left-width: 1px !important;border-left-color: #059444 !important;border-left-style: solid !important;border-right-color: #059444 !important;border-right-style: solid !important;border-top-color: #059444 !important;border-top-style: solid !important;border-bottom-color: #059444 !important;border-bottom-style: solid !important;border-radius: 1px !important;}\"][ultimate_heading main_heading=\"Quisque sed nibh tristique\" heading_tag=\"h3\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;\"]\r\n<ul>\r\n 	<li>Duis lorem risus, aliquet a auctor a, venenatis in dui. Praesent et eros et risus dapibus placerat hendrerit cursus magna.</li>\r\n 	<li>Praesent et eros et risus dapibus placerat hendrerit cursus magna.</li>\r\n 	<li>aliquet a auctor a, venenatis in dui.</li>\r\n</ul>\r\n[/ultimate_heading][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/3\"][ult_animation_block animation=\"fadeInUp\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][dt_fancy_image image_id=\"3170\" width=\"300\" border_radius=\"1px\" caption=\"off\" css=\".vc_custom_1692278936750{border-top-width: 1px !important;border-right-width: 1px !important;border-bottom-width: 1px !important;border-left-width: 1px !important;border-left-color: #059444 !important;border-left-style: solid !important;border-right-color: #059444 !important;border-right-style: solid !important;border-top-color: #059444 !important;border-top-style: solid !important;border-bottom-color: #059444 !important;border-bottom-style: solid !important;border-radius: 1px !important;}\"][ultimate_heading main_heading=\"Quisque sed nibh tristique\" heading_tag=\"h3\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;\"]\r\n<ul>\r\n 	<li>Duis lorem risus, aliquet a auctor a, venenatis in dui. Praesent et eros et risus dapibus placerat hendrerit cursus magna.</li>\r\n 	<li>Praesent et eros et risus dapibus placerat hendrerit cursus magna.</li>\r\n 	<li>aliquet a auctor a, venenatis in dui.</li>\r\n</ul>\r\n[/ultimate_heading][/ult_animation_block][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row disable_element=\"yes\"][vc_column][ultimate_heading main_heading=\"Executive Directors\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;margin-bottom:35px;\"][/ultimate_heading][vc_row_inner][vc_column_inner width=\"1/5\"][ult_animation_block animation=\"fadeInUp\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][dt_fancy_image image_id=\"3172\" width=\"300\" border_radius=\"1px\" caption=\"off\" css=\".vc_custom_1692278922309{border-top-width: 1px !important;border-right-width: 1px !important;border-bottom-width: 1px !important;border-left-width: 1px !important;border-left-color: #059444 !important;border-left-style: solid !important;border-right-color: #059444 !important;border-right-style: solid !important;border-top-color: #059444 !important;border-top-style: solid !important;border-bottom-color: #059444 !important;border-bottom-style: solid !important;border-radius: 1px !important;}\"][ultimate_heading main_heading=\"Quisque sed nibh tristique\" heading_tag=\"h3\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;\"]\r\n<ul>\r\n 	<li>Duis lorem risus, aliquet a auctor a, venenatis in dui. Praesent et eros et risus dapibus placerat hendrerit cursus magna.</li>\r\n 	<li>Praesent et eros et risus dapibus placerat hendrerit cursus magna.</li>\r\n 	<li>aliquet a auctor a, venenatis in dui.</li>\r\n</ul>\r\n[/ultimate_heading][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/5\"][ult_animation_block animation=\"fadeInDown\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][dt_fancy_image image_id=\"3171\" width=\"300\" border_radius=\"1px\" caption=\"off\" css=\".vc_custom_1692278929158{border-top-width: 1px !important;border-right-width: 1px !important;border-bottom-width: 1px !important;border-left-width: 1px !important;border-left-color: #059444 !important;border-left-style: solid !important;border-right-color: #059444 !important;border-right-style: solid !important;border-top-color: #059444 !important;border-top-style: solid !important;border-bottom-color: #059444 !important;border-bottom-style: solid !important;border-radius: 1px !important;}\"][ultimate_heading main_heading=\"Quisque sed nibh tristique\" heading_tag=\"h3\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;\"]\r\n<ul>\r\n 	<li>Duis lorem risus, aliquet a auctor a, venenatis in dui. Praesent et eros et risus dapibus placerat hendrerit cursus magna.</li>\r\n 	<li>Praesent et eros et risus dapibus placerat hendrerit cursus magna.</li>\r\n 	<li>aliquet a auctor a, venenatis in dui.</li>\r\n</ul>\r\n[/ultimate_heading][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/5\"][ult_animation_block animation=\"fadeInUp\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][dt_fancy_image image_id=\"3170\" width=\"300\" border_radius=\"1px\" caption=\"off\" css=\".vc_custom_1692278936750{border-top-width: 1px !important;border-right-width: 1px !important;border-bottom-width: 1px !important;border-left-width: 1px !important;border-left-color: #059444 !important;border-left-style: solid !important;border-right-color: #059444 !important;border-right-style: solid !important;border-top-color: #059444 !important;border-top-style: solid !important;border-bottom-color: #059444 !important;border-bottom-style: solid !important;border-radius: 1px !important;}\"][ultimate_heading main_heading=\"Quisque sed nibh tristique\" heading_tag=\"h3\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;\"]\r\n<ul>\r\n 	<li>Duis lorem risus, aliquet a auctor a, venenatis in dui. Praesent et eros et risus dapibus placerat hendrerit cursus magna.</li>\r\n 	<li>Praesent et eros et risus dapibus placerat hendrerit cursus magna.</li>\r\n 	<li>aliquet a auctor a, venenatis in dui.</li>\r\n</ul>\r\n[/ultimate_heading][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/5\"][ult_animation_block animation=\"fadeInDown\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][dt_fancy_image image_id=\"3170\" width=\"300\" border_radius=\"1px\" caption=\"off\" css=\".vc_custom_1692278936750{border-top-width: 1px !important;border-right-width: 1px !important;border-bottom-width: 1px !important;border-left-width: 1px !important;border-left-color: #059444 !important;border-left-style: solid !important;border-right-color: #059444 !important;border-right-style: solid !important;border-top-color: #059444 !important;border-top-style: solid !important;border-bottom-color: #059444 !important;border-bottom-style: solid !important;border-radius: 1px !important;}\"][ultimate_heading main_heading=\"Quisque sed nibh tristique\" heading_tag=\"h3\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;\"]\r\n<ul>\r\n 	<li>Duis lorem risus, aliquet a auctor a, venenatis in dui. Praesent et eros et risus dapibus placerat hendrerit cursus magna.</li>\r\n 	<li>Praesent et eros et risus dapibus placerat hendrerit cursus magna.</li>\r\n 	<li>aliquet a auctor a, venenatis in dui.</li>\r\n</ul>\r\n[/ultimate_heading][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/5\"][ult_animation_block animation=\"fadeInDown\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][dt_fancy_image image_id=\"3171\" width=\"300\" border_radius=\"1px\" caption=\"off\" css=\".vc_custom_1692278929158{border-top-width: 1px !important;border-right-width: 1px !important;border-bottom-width: 1px !important;border-left-width: 1px !important;border-left-color: #059444 !important;border-left-style: solid !important;border-right-color: #059444 !important;border-right-style: solid !important;border-top-color: #059444 !important;border-top-style: solid !important;border-bottom-color: #059444 !important;border-bottom-style: solid !important;border-radius: 1px !important;}\"][ultimate_heading main_heading=\"Quisque sed nibh tristique\" heading_tag=\"h3\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;\"]\r\n<ul>\r\n 	<li>Duis lorem risus, aliquet a auctor a, venenatis in dui. Praesent et eros et risus dapibus placerat hendrerit cursus magna.</li>\r\n 	<li>Praesent et eros et risus dapibus placerat hendrerit cursus magna.</li>\r\n 	<li>aliquet a auctor a, venenatis in dui.</li>\r\n</ul>\r\n[/ultimate_heading][/ult_animation_block][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner width=\"2/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row disable_element=\"yes\"][vc_column][ultimate_heading main_heading=\"Next Generation\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;margin-bottom:35px;\"][/ultimate_heading][vc_row_inner][vc_column_inner width=\"1/2\"][ult_animation_block animation=\"fadeInUp\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][dt_fancy_image image_id=\"3172\" width=\"300\" border_radius=\"1px\" caption=\"off\" css=\".vc_custom_1692278922309{border-top-width: 1px !important;border-right-width: 1px !important;border-bottom-width: 1px !important;border-left-width: 1px !important;border-left-color: #059444 !important;border-left-style: solid !important;border-right-color: #059444 !important;border-right-style: solid !important;border-top-color: #059444 !important;border-top-style: solid !important;border-bottom-color: #059444 !important;border-bottom-style: solid !important;border-radius: 1px !important;}\"][ultimate_heading main_heading=\"Quisque sed nibh tristique\" heading_tag=\"h3\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;\"]\r\n<ul>\r\n 	<li>Duis lorem risus, aliquet a auctor a, venenatis in dui. Praesent et eros et risus dapibus placerat hendrerit cursus magna.</li>\r\n 	<li>Praesent et eros et risus dapibus placerat hendrerit cursus magna.</li>\r\n 	<li>aliquet a auctor a, venenatis in dui.</li>\r\n</ul>\r\n[/ultimate_heading][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/2\"][ult_animation_block animation=\"fadeInDown\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][dt_fancy_image image_id=\"3171\" width=\"300\" border_radius=\"1px\" caption=\"off\" css=\".vc_custom_1692278929158{border-top-width: 1px !important;border-right-width: 1px !important;border-bottom-width: 1px !important;border-left-width: 1px !important;border-left-color: #059444 !important;border-left-style: solid !important;border-right-color: #059444 !important;border-right-style: solid !important;border-top-color: #059444 !important;border-top-style: solid !important;border-bottom-color: #059444 !important;border-bottom-style: solid !important;border-radius: 1px !important;}\"][ultimate_heading main_heading=\"Quisque sed nibh tristique\" heading_tag=\"h3\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;\"]\r\n<ul>\r\n 	<li>Duis lorem risus, aliquet a auctor a, venenatis in dui. Praesent et eros et risus dapibus placerat hendrerit cursus magna.</li>\r\n 	<li>Praesent et eros et risus dapibus placerat hendrerit cursus magna.</li>\r\n 	<li>aliquet a auctor a, venenatis in dui.</li>\r\n</ul>\r\n[/ultimate_heading][/ult_animation_block][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row]','About us','','inherit','closed','closed','','2917-revision-v1','','','2023-09-24 04:54:33','2023-09-24 04:54:33','',2917,'https://farmchemie.yasithawd.com/?p=3884',0,'revision','',0),(3885,1,'2023-09-24 04:56:49','2023-09-24 04:56:49','[vc_row full_width=\"stretch_row_content_no_spaces\"][vc_column][ultimate_heading main_heading=\"Our History\" main_heading_color=\"#762888\"][/ultimate_heading][/vc_column][/vc_row][vc_row][vc_column][vc_row_inner equal_height=\"yes\" content_placement=\"middle\" css=\".vc_custom_1692359205466{margin-top: 35px !important;}\"][vc_column_inner width=\"1/2\"][ult_animation_block animation=\"fadeInLeftBig\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][vc_single_image image=\"3273\" img_size=\"full\" alignment=\"center\" style=\"vc_box_rounded\"][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/2\"][ult_animation_block animation=\"fadeInRightBig\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][ultimate_heading main_heading=\"Founded in 2002\" heading_tag=\"h3\" main_heading_color=\"#039447\" alignment=\"left\" sub_heading_font_size=\"desktop:18px;\"]Founded in 2002 by Mr. Uditha Wanigasinghe, an agriculturist who had a mission to aid valuable livestock producers in the country to enhance the yield and profitability of production. FARMCHEMIE introduced unprecedented solutions and consistent technical services to gain our customers’ trust and became the market leader in animal health products in 2006 within just four years.[/ultimate_heading][/ult_animation_block][/vc_column_inner][/vc_row_inner][vc_separator color=\"custom\" accent_color=\"#039447\"][vc_row_inner equal_height=\"yes\" rtl_reverse=\"yes\" content_placement=\"middle\" css=\".vc_custom_1692359216075{margin-top: 35px !important;}\"][vc_column_inner width=\"1/2\" offset=\"vc_hidden-xs\"][ult_animation_block animation=\"fadeInLeftBig\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][ultimate_heading main_heading=\"2006\" heading_tag=\"h3\" main_heading_color=\"#039447\" alignment=\"right\"]In 2006, the Sri Lankan poultry industry was affected with Avian Influenza which became a difficult period for the growth of FARMCHEMIE. This was the key factor in our decision to diversify into Agro Products. PLANTCHEM &amp; PLANTSEEDS were established to offer solutions in Agro specialty fertilizers, pesticides and seeds to invaluable cultivators.[/ultimate_heading][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/2\" offset=\"vc_hidden-xs\"][ult_animation_block animation=\"fadeInRightBig\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][vc_single_image image=\"3276\" img_size=\"full\" alignment=\"center\" style=\"vc_box_rounded\"][/ult_animation_block][/vc_column_inner][/vc_row_inner][vc_row_inner equal_height=\"yes\" rtl_reverse=\"yes\" content_placement=\"middle\" css=\".vc_custom_1692359216075{margin-top: 35px !important;}\"][vc_column_inner width=\"1/2\" offset=\"vc_hidden-lg vc_hidden-md vc_hidden-sm\"][ult_animation_block animation=\"fadeInRightBig\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][vc_single_image image=\"3276\" img_size=\"full\" alignment=\"center\" style=\"vc_box_rounded\"][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/2\" offset=\"vc_hidden-lg vc_hidden-md vc_hidden-sm\"][ult_animation_block animation=\"fadeInLeftBig\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][ultimate_heading main_heading=\"2006\" heading_tag=\"h3\" main_heading_color=\"#039447\" alignment=\"left\"]\r\n\r\nIn 2006, the Sri Lankan poultry industry was affected with Avian Influenza which became a difficult period for the growth of FARMCHEMIE. This was the key factor in our decision to diversify into Agro Products. PLANTCHEM &amp; PLANTSEEDS were established to offer solutions in Agro specialty fertilizers, pesticides and seeds to invaluable cultivators.\r\n\r\n[/ultimate_heading][/ult_animation_block][/vc_column_inner][/vc_row_inner][vc_separator color=\"custom\" accent_color=\"#039447\"][vc_row_inner equal_height=\"yes\" content_placement=\"middle\" css=\".vc_custom_1692359231594{margin-top: 35px !important;}\"][vc_column_inner width=\"1/2\"][ult_animation_block animation=\"fadeInLeftBig\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][vc_single_image image=\"3277\" img_size=\"full\" alignment=\"center\" style=\"vc_box_rounded\"][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/2\"][ult_animation_block animation=\"fadeInRightBig\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][ultimate_heading main_heading=\"2010\" heading_tag=\"h3\" main_heading_color=\"#039447\" alignment=\"left\"]In 2010, FEED CHEMIE became the subsequent addition to ever-growing vision of Mr. Uditha Wanigasinghe and entered the Animal Feed Additives market.[/ultimate_heading][/ult_animation_block][/vc_column_inner][/vc_row_inner][vc_separator color=\"custom\" accent_color=\"#039447\"][vc_row_inner equal_height=\"yes\" rtl_reverse=\"yes\" content_placement=\"middle\" css=\".vc_custom_1692359239274{margin-top: 35px !important;}\"][vc_column_inner width=\"1/2\" offset=\"vc_hidden-xs\"][ult_animation_block animation=\"fadeInLeftBig\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][ultimate_heading main_heading=\"2012\" heading_tag=\"h3\" main_heading_color=\"#039447\" alignment=\"right\"]The year 2012 is described as a turning point in our journey as FARMCHEMIE established our first production facility for the manufacturing and packing of animal health products. FARMCHEMIE became the first animal health organization in Sri Lanka to obtain ISO 9001:2015 and WHO GMP International Quality Certification. With our own formulation unit, FARMCHEMIE was able to offer customized solutions to cater the needs of the Sri Lankan Livestock Industry.[/ultimate_heading][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/2\" offset=\"vc_hidden-xs\"][ult_animation_block animation=\"fadeInRightBig\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][vc_single_image image=\"3278\" img_size=\"full\" alignment=\"center\" style=\"vc_box_rounded\"][/ult_animation_block][/vc_column_inner][/vc_row_inner][vc_row_inner equal_height=\"yes\" rtl_reverse=\"yes\" content_placement=\"middle\" css=\".vc_custom_1692359239274{margin-top: 35px !important;}\"][vc_column_inner width=\"1/2\" offset=\"vc_hidden-lg vc_hidden-md vc_hidden-sm\"][ult_animation_block animation=\"fadeInRightBig\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][vc_single_image image=\"3278\" img_size=\"full\" alignment=\"center\" style=\"vc_box_rounded\"][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/2\" offset=\"vc_hidden-lg vc_hidden-md vc_hidden-sm\"][ult_animation_block animation=\"fadeInLeftBig\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][ultimate_heading main_heading=\"2012\" heading_tag=\"h3\" main_heading_color=\"#039447\" alignment=\"left\"]The year 2012 is described as a turning point in our journey as FARMCHEMIE established our first production facility for the manufacturing and packing of animal health products. FARMCHEMIE became the first animal health organization in Sri Lanka to obtain ISO 9001:2015 and WHO GMP International Quality Certification. With our own formulation unit, FARMCHEMIE was able to offer customized solutions to cater the needs of the Sri Lankan Livestock Industry.[/ultimate_heading][/ult_animation_block][/vc_column_inner][/vc_row_inner][vc_separator color=\"custom\" accent_color=\"#039447\"][vc_row_inner content_placement=\"middle\" css=\".vc_custom_1692359246626{margin-top: 35px !important;}\"][vc_column_inner width=\"1/2\"][ult_animation_block animation=\"fadeInLeftBig\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][vc_single_image image=\"3279\" img_size=\"full\" alignment=\"center\" style=\"vc_box_rounded\"][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/2\"][ult_animation_block animation=\"fadeInRightBig\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][ultimate_heading main_heading=\"2016\" heading_tag=\"h3\" main_heading_color=\"#039447\" alignment=\"left\"]The year 2016 was another key milestone with the entry to the International Markets. FARMCHEMIE exported our first Feed Premix consignment to India and in 2018 our export operation was distinctly established as FARMCHEMIE MANUFACTURERS, a Board of Investment (BOI) approved entity.[/ultimate_heading][/ult_animation_block][/vc_column_inner][/vc_row_inner][vc_separator color=\"custom\" accent_color=\"#039447\"][vc_row_inner equal_height=\"yes\" rtl_reverse=\"yes\" content_placement=\"middle\" css=\".vc_custom_1695527931440{margin-top: 35px !important;}\"][vc_column_inner width=\"1/2\" offset=\"vc_hidden-xs\"][ult_animation_block animation=\"fadeInLeftBig\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][ultimate_heading main_heading=\"Fully automated manufacturing\" heading_tag=\"h3\" main_heading_color=\"#039447\" alignment=\"right\"]FARMCHEMIE MANUFACTURERS has invested in fully automated manufacturing facility from Bühler and became the first Sri Lankan owned company to obtain FAMI-QS International Quality Certification.[/ultimate_heading][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/2\" offset=\"vc_hidden-xs\"][ult_animation_block animation=\"fadeInRightBig\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][vc_single_image image=\"3280\" img_size=\"full\" alignment=\"center\" style=\"vc_box_rounded\"][/ult_animation_block][/vc_column_inner][/vc_row_inner][vc_row_inner equal_height=\"yes\" rtl_reverse=\"yes\" content_placement=\"middle\" css=\".vc_custom_1695527931440{margin-top: 35px !important;}\"][vc_column_inner width=\"1/2\" offset=\"vc_hidden-lg vc_hidden-md vc_hidden-sm\"][ult_animation_block animation=\"fadeInRightBig\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][vc_single_image image=\"3280\" img_size=\"full\" alignment=\"center\" style=\"vc_box_rounded\"][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/2\" offset=\"vc_hidden-lg vc_hidden-md vc_hidden-sm\"][ult_animation_block animation=\"fadeInLeftBig\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][ultimate_heading main_heading=\"Fully automated manufacturing\" heading_tag=\"h3\" main_heading_color=\"#039447\" alignment=\"left\"]FARMCHEMIE MANUFACTURERS has invested in fully automated manufacturing facility from Bühler and became the first Sri Lankan owned company to obtain FAMI-QS International Quality Certification.[/ultimate_heading][/ult_animation_block][/vc_column_inner][/vc_row_inner][vc_separator color=\"custom\" accent_color=\"#039447\"][vc_row_inner equal_height=\"yes\" content_placement=\"middle\" css=\".vc_custom_1692359258634{margin-top: 35px !important;}\"][vc_column_inner width=\"1/2\"][ult_animation_block animation=\"fadeInLeftBig\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][vc_single_image image=\"3281\" img_size=\"full\" alignment=\"center\" style=\"vc_box_rounded\"][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/2\"][ult_animation_block animation=\"fadeInRightBig\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][ultimate_heading main_heading=\"Official toll manufacturer partner\" heading_tag=\"h3\" main_heading_color=\"#039447\" alignment=\"left\"]With the trust and reputation built as a reliable manufacturer of animal feed additives and supplements in the global market, several world-renowned international brands have appointed FARMCHEMIE MANUFACTURERS as the official toll manufacturer partner. FARMCHEMIE MANUFACTURERS exports a wide range of products consisting of premixes, specialty feed additives, oral liquid supplements and pet supplements to various markets in South Asia, East Asia, Middle East and Africa.\r\n\r\nFARMCHEMIE, FEED CHEMIE &amp; FARMCHEMIE MANUFACTURERS currently operate under the ownership of our holding company, DYVESTA.\r\n\r\nDYEVSTA has become the pinnacle of Animal Nutrition and Health.\r\n\r\nDYVESTA is Dynamic, through our continuous evolution, growth and progress. DYVESTA is Diverse, in terms of both our business strategy and our community. DYVESTA is Devoted to our valuable business partners through exceptional service.[/ultimate_heading][/ult_animation_block][/vc_column_inner][/vc_row_inner][vc_separator color=\"custom\" accent_color=\"#039447\"][/vc_column][/vc_row][vc_row full_width=\"stretch_row\" equal_height=\"yes\" bg_type=\"image\" parallax_style=\"vcpb-vz-jquery\" bg_image_new=\"id^3256|url^https://farmchemie.yasithawd.com/wp-content/uploads/2023/08/Vision-Mission.png|caption^null|alt^null|title^Vision-&amp;-Mission|description^null\" bg_image_repeat=\"no-repeat\" enable_overlay=\"enable_overlay_value\" overlay_color=\"#000000\" overlay_pattern=\"01.png\" overlay_pattern_opacity=\"5\" css=\".vc_custom_1692366072362{margin-top: 35px !important;padding-top: 65px !important;padding-bottom: 100px !important;}\"][vc_column][vc_row_inner equal_height=\"yes\"][vc_column_inner width=\"1/2\"][ult_animation_block animation=\"fadeInLeftBig\" animation_duration=\"2\" animation_delay=\"0\" animation_iteration_count=\"1\"][ultimate_heading main_heading=\"Vision\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\"]To be the customers’ first and best choice by ensuring outstanding satisfaction through a well-trained and dedicated team. Prompt and quality solutions to our customers’ requirements will determine the increase of return on investment for us.[/ultimate_heading][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/2\"][ult_animation_block animation=\"fadeInRightBig\" animation_duration=\"2\" animation_delay=\"0\" animation_iteration_count=\"1\"][ultimate_heading main_heading=\"Mission\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\"]To become a world renowned manufacturer of Animal Health products and a trusted partner among our stakeholders for our integrity as well as for providing effective solutions[/ultimate_heading][/ult_animation_block][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row css=\".vc_custom_1684836308288{margin-top: 15px !important;}\"][vc_column][ultimate_heading main_heading=\"Achievements\" main_heading_color=\"#762888\" main_heading_margin=\"margin-top:35px;\"][/ultimate_heading][vc_row_inner gap=\"20\"][vc_column_inner width=\"1/2\" css=\".vc_custom_1691995519863{background-color: #f4ab20 !important;border: 1px solid #f4ab20 !important;border-radius: 35px !important;}\"][ult_animation_block animation=\"fadeInLeftBig\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][bsf-info-box icon_type=\"custom\" icon_img=\"id^3117|url^https://farmchemie.yasithawd.com/wp-content/uploads/2023/08/Pink_-H.png|caption^null|alt^null|title^Pink_-H|description^null\" img_width=\"60\" icon_style=\"advanced\" icon_border_style=\"solid\" icon_color_border=\"#ffffff\" icon_border_size=\"1\" icon_border_radius=\"500\" icon_border_spacing=\"1\" title=\"First Free Sale Certificate obtained from Veterinary Drug Control Authority (VDCA) for Veterinary Pharmaceuticals\" title_font_style=\"font-weight:bold;\" title_font_size=\"desktop:20px;\"][/bsf-info-box][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/2\" css=\".vc_custom_1691995661095{background-color: #722f8b !important;border: 1px solid #722f8b !important;border-radius: 35px !important;}\"][ult_animation_block animation=\"fadeInRightBig\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][bsf-info-box icon_type=\"custom\" icon_img=\"id^3117|url^https://farmchemie.yasithawd.com/wp-content/uploads/2023/08/Pink_-H.png|caption^null|alt^null|title^Pink_-H|description^null\" img_width=\"60\" icon_style=\"advanced\" icon_border_style=\"solid\" icon_color_border=\"#ffffff\" icon_border_size=\"1\" icon_border_radius=\"500\" icon_border_spacing=\"1\" title=\"First ISO 9001: 2015 ,WHO-GMP Quality Management systems certified Animal Health company in Sri Lanka since August, 2012\" title_font_style=\"font-weight:bold;\" title_font_color=\"#ffffff\" title_font_size=\"desktop:20px;\"][/bsf-info-box][/ult_animation_block][/vc_column_inner][/vc_row_inner][vc_row_inner gap=\"20\"][vc_column_inner width=\"1/2\" css=\".vc_custom_1691995661095{background-color: #722f8b !important;border: 1px solid #722f8b !important;border-radius: 35px !important;}\"][ult_animation_block animation=\"fadeInLeftBig\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][bsf-info-box icon_type=\"custom\" icon_img=\"id^3117|url^https://farmchemie.yasithawd.com/wp-content/uploads/2023/08/Pink_-H.png|caption^null|alt^null|title^Pink_-H|description^null\" img_width=\"60\" icon_style=\"advanced\" icon_border_style=\"solid\" icon_color_border=\"#ffffff\" icon_border_size=\"1\" icon_border_radius=\"500\" icon_border_spacing=\"1\" title=\"First FAMI-QS certified company in sri lanka\" title_font_style=\"font-weight:bold;\" title_font_color=\"#ffffff\" title_font_size=\"desktop:20px;\"][/bsf-info-box][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/2\" css=\".vc_custom_1691995519863{background-color: #f4ab20 !important;border: 1px solid #f4ab20 !important;border-radius: 35px !important;}\"][ult_animation_block animation=\"fadeInRightBig\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][bsf-info-box icon_type=\"custom\" icon_img=\"id^3117|url^https://farmchemie.yasithawd.com/wp-content/uploads/2023/08/Pink_-H.png|caption^null|alt^null|title^Pink_-H|description^null\" img_width=\"60\" icon_style=\"advanced\" icon_border_style=\"solid\" icon_color_border=\"#ffffff\" icon_border_size=\"1\" icon_border_radius=\"500\" icon_border_spacing=\"1\" title=\"First Certificate of Ethical Trading certified in Livestock industry\" title_font_style=\"font-weight:bold;\" title_font_size=\"desktop:20px;\"][/bsf-info-box][/ult_animation_block][/vc_column_inner][/vc_row_inner][vc_row_inner gap=\"20\"][vc_column_inner width=\"1/4\" css=\".vc_custom_1695528026328{border-radius: 35px !important;}\" offset=\"vc_hidden-xs\"][/vc_column_inner][vc_column_inner width=\"2/4\" css=\".vc_custom_1691995519863{background-color: #f4ab20 !important;border: 1px solid #f4ab20 !important;border-radius: 35px !important;}\"][ult_animation_block animation=\"fadeInLeftBig\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][bsf-info-box icon_type=\"custom\" icon_img=\"id^3117|url^https://farmchemie.yasithawd.com/wp-content/uploads/2023/08/Pink_-H.png|caption^null|alt^null|title^Pink_-H|description^null\" img_width=\"60\" icon_style=\"advanced\" icon_border_style=\"solid\" icon_color_border=\"#ffffff\" icon_border_size=\"1\" icon_border_radius=\"500\" icon_border_spacing=\"1\" title=\"First Silver awarded company at National Exports Awards in Livestock industry\" title_font_style=\"font-weight:bold;\" title_font_size=\"desktop:20px;\"][/bsf-info-box][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/4\" offset=\"vc_hidden-xs\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row full_width=\"stretch_row\" equal_height=\"yes\" content_placement=\"bottom\" css=\".vc_custom_1693627699480{margin-top: 15px !important;}\"][vc_column][ultimate_heading main_heading=\"Certifications\" main_heading_color=\"#762888\" main_heading_margin=\"margin-top:35px;\"][/ultimate_heading][vc_row_inner content_placement=\"bottom\"][vc_column_inner width=\"1/6\"][dt_fancy_image image_id=\"3408\" width=\"300\" caption=\"off\"][/vc_column_inner][vc_column_inner width=\"1/6\"][dt_fancy_image image_id=\"3407\" width=\"150\" caption=\"off\"][/vc_column_inner][vc_column_inner width=\"1/6\"][dt_fancy_image image_id=\"3409\" width=\"300\" caption=\"off\"][/vc_column_inner][vc_column_inner width=\"1/6\"][dt_fancy_image image_id=\"3410\" width=\"300\" caption=\"off\"][/vc_column_inner][vc_column_inner width=\"1/6\"][dt_fancy_image image_id=\"3411\" width=\"300\" caption=\"off\"][/vc_column_inner][vc_column_inner width=\"1/6\"][dt_fancy_image image_id=\"3406\" width=\"300\" caption=\"off\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row full_width=\"stretch_row\" equal_height=\"yes\" content_placement=\"bottom\" css=\".vc_custom_1693625624233{margin-top: 15px !important;}\"][vc_column][ultimate_heading main_heading=\"Awards\" main_heading_color=\"#762888\" main_heading_margin=\"margin-top:35px;\"][/ultimate_heading][ultimate_carousel slide_to_scroll=\"single\" slides_on_mob=\"1\"][dt_fancy_image image_id=\"3412\" width=\"300\"][dt_fancy_image image_id=\"3413\" width=\"300\" caption=\"off\"][dt_fancy_image image_id=\"3414\" width=\"300\" caption=\"off\"][dt_fancy_image image_id=\"3415\" width=\"300\" caption=\"off\"][dt_fancy_image image_id=\"3416\" width=\"300\" caption=\"off\"][dt_fancy_image image_id=\"3417\" width=\"300\" caption=\"off\"][dt_fancy_image image_id=\"3418\" width=\"300\" caption=\"off\"][dt_fancy_image image_id=\"3420\" width=\"300\" caption=\"off\"][dt_fancy_image image_id=\"3419\" width=\"300\" caption=\"off\"][dt_fancy_image image_id=\"3422\" width=\"300\" caption=\"off\"][dt_fancy_image image_id=\"3421\" width=\"300\" caption=\"off\"][dt_fancy_image image_id=\"3422\" width=\"300\" caption=\"off\"][dt_fancy_image image_id=\"3423\" width=\"300\" caption=\"off\"][dt_fancy_image image_id=\"3424\" width=\"300\" caption=\"off\"][dt_fancy_image image_id=\"3425\" width=\"300\" caption=\"off\"][/ultimate_carousel][/vc_column][/vc_row][vc_row disable_element=\"yes\" css=\".vc_custom_1695294608306{margin-top: 15px !important;}\"][vc_column][ultimate_heading main_heading=\"Board Of Directors\" main_heading_color=\"#762888\" main_heading_margin=\"margin-top:35px;margin-bottom:35px;\"][/ultimate_heading][ultimate_carousel slides_on_desk=\"3\" slides_on_mob=\"1\" arrow_style=\"square-bg\" arrow_bg_color=\"#039447\" arrow_color=\"#ffffff\" next_icon=\"ultsl-arrow-right6\" prev_icon=\"ultsl-arrow-left6\" dots_color=\"#039447\" item_animation=\"fadeIn\" css_ad_caraousel=\".vc_custom_1694697209111{padding-right: 10px !important;padding-left: 10px !important;}\"][vc_row_inner][vc_column_inner][ultimate_heading main_heading=\"Uditha Wanigasinghe\" heading_tag=\"h3\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;\"]Managing Director[/ultimate_heading][ultimate_modal modal_title=\"Read more\" btn_size=\"md\" btn_bg_color=\"#089548\" btn_text=\"Read more\" overlay_bg_opacity=\"75\" img_size=\"80\" btn_txt_color=\"#ffffff\"]pretium mauris pretium mauris pretium mauris pretium mauris pretium mauris pretium mauris pretium mauris pretium mauris pretium mauris pretium mauris pretium mauris pretium mauris pretium mauris pretium mauris pretium mauris pretium mauris pretium mauris pretium mauris pretium mauris pretium mauris pretium mauris pretium mauris pretium mauris pretium mauris pretium mauris pretium mauris pretium mauris pretium mauris[/ultimate_modal][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner][ultimate_heading main_heading=\"Senitha Wanigasinghe\" heading_tag=\"h3\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;\"]Director/ CEO[/ultimate_heading][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner][ultimate_heading main_heading=\"Thulitha Wanigasinghe\" heading_tag=\"h3\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;\"]Director - Veterinary Services &amp; RA[/ultimate_heading][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner][ultimate_heading main_heading=\"Yvonne Van Cuylenberg\" heading_tag=\"h3\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;\"]Director - HR &amp; Administration[/ultimate_heading][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner][ultimate_heading main_heading=\"Gamini Wanigasinghe\" heading_tag=\"h3\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;\"]Director[/ultimate_heading][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner][ultimate_heading main_heading=\"Ajith Welianga\" heading_tag=\"h3\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;\"]Director - Marketing[/ultimate_heading][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner][ultimate_heading main_heading=\"Sunil Ranjith Guruge\" heading_tag=\"h3\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;\"]Director - Customer &amp; Employee Relations[/ultimate_heading][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner][ultimate_heading main_heading=\"Sampath Gunathilake\" heading_tag=\"h3\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;\"]Director - Sales[/ultimate_heading][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner][ultimate_heading main_heading=\"Chanaka Indrajith\" heading_tag=\"h3\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;\"]Director Production / COO[/ultimate_heading][/vc_column_inner][/vc_row_inner][/ultimate_carousel][/vc_column][/vc_row][vc_row disable_element=\"yes\"][vc_column][ultimate_heading main_heading=\"Board Of Directors\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;margin-bottom:35px;\"][/ultimate_heading][vc_row_inner][vc_column_inner width=\"1/3\"][ult_animation_block animation=\"fadeInUp\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][dt_fancy_image image_id=\"3172\" width=\"300\" border_radius=\"1px\" caption=\"off\" css=\".vc_custom_1692278922309{border-top-width: 1px !important;border-right-width: 1px !important;border-bottom-width: 1px !important;border-left-width: 1px !important;border-left-color: #059444 !important;border-left-style: solid !important;border-right-color: #059444 !important;border-right-style: solid !important;border-top-color: #059444 !important;border-top-style: solid !important;border-bottom-color: #059444 !important;border-bottom-style: solid !important;border-radius: 1px !important;}\"][ultimate_heading main_heading=\"Quisque sed nibh tristique\" heading_tag=\"h3\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;\"]\r\n<ul>\r\n 	<li>Duis lorem risus, aliquet a auctor a, venenatis in dui. Praesent et eros et risus dapibus placerat hendrerit cursus magna.</li>\r\n 	<li>Praesent et eros et risus dapibus placerat hendrerit cursus magna.</li>\r\n 	<li>aliquet a auctor a, venenatis in dui.</li>\r\n</ul>\r\n[/ultimate_heading][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/3\"][ult_animation_block animation=\"fadeInDown\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][dt_fancy_image image_id=\"3171\" width=\"300\" border_radius=\"1px\" caption=\"off\" css=\".vc_custom_1692278929158{border-top-width: 1px !important;border-right-width: 1px !important;border-bottom-width: 1px !important;border-left-width: 1px !important;border-left-color: #059444 !important;border-left-style: solid !important;border-right-color: #059444 !important;border-right-style: solid !important;border-top-color: #059444 !important;border-top-style: solid !important;border-bottom-color: #059444 !important;border-bottom-style: solid !important;border-radius: 1px !important;}\"][ultimate_heading main_heading=\"Quisque sed nibh tristique\" heading_tag=\"h3\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;\"]\r\n<ul>\r\n 	<li>Duis lorem risus, aliquet a auctor a, venenatis in dui. Praesent et eros et risus dapibus placerat hendrerit cursus magna.</li>\r\n 	<li>Praesent et eros et risus dapibus placerat hendrerit cursus magna.</li>\r\n 	<li>aliquet a auctor a, venenatis in dui.</li>\r\n</ul>\r\n[/ultimate_heading][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/3\"][ult_animation_block animation=\"fadeInUp\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][dt_fancy_image image_id=\"3170\" width=\"300\" border_radius=\"1px\" caption=\"off\" css=\".vc_custom_1692278936750{border-top-width: 1px !important;border-right-width: 1px !important;border-bottom-width: 1px !important;border-left-width: 1px !important;border-left-color: #059444 !important;border-left-style: solid !important;border-right-color: #059444 !important;border-right-style: solid !important;border-top-color: #059444 !important;border-top-style: solid !important;border-bottom-color: #059444 !important;border-bottom-style: solid !important;border-radius: 1px !important;}\"][ultimate_heading main_heading=\"Quisque sed nibh tristique\" heading_tag=\"h3\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;\"]\r\n<ul>\r\n 	<li>Duis lorem risus, aliquet a auctor a, venenatis in dui. Praesent et eros et risus dapibus placerat hendrerit cursus magna.</li>\r\n 	<li>Praesent et eros et risus dapibus placerat hendrerit cursus magna.</li>\r\n 	<li>aliquet a auctor a, venenatis in dui.</li>\r\n</ul>\r\n[/ultimate_heading][/ult_animation_block][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row disable_element=\"yes\"][vc_column][ultimate_heading main_heading=\"Executive Directors\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;margin-bottom:35px;\"][/ultimate_heading][vc_row_inner][vc_column_inner width=\"1/5\"][ult_animation_block animation=\"fadeInUp\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][dt_fancy_image image_id=\"3172\" width=\"300\" border_radius=\"1px\" caption=\"off\" css=\".vc_custom_1692278922309{border-top-width: 1px !important;border-right-width: 1px !important;border-bottom-width: 1px !important;border-left-width: 1px !important;border-left-color: #059444 !important;border-left-style: solid !important;border-right-color: #059444 !important;border-right-style: solid !important;border-top-color: #059444 !important;border-top-style: solid !important;border-bottom-color: #059444 !important;border-bottom-style: solid !important;border-radius: 1px !important;}\"][ultimate_heading main_heading=\"Quisque sed nibh tristique\" heading_tag=\"h3\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;\"]\r\n<ul>\r\n 	<li>Duis lorem risus, aliquet a auctor a, venenatis in dui. Praesent et eros et risus dapibus placerat hendrerit cursus magna.</li>\r\n 	<li>Praesent et eros et risus dapibus placerat hendrerit cursus magna.</li>\r\n 	<li>aliquet a auctor a, venenatis in dui.</li>\r\n</ul>\r\n[/ultimate_heading][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/5\"][ult_animation_block animation=\"fadeInDown\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][dt_fancy_image image_id=\"3171\" width=\"300\" border_radius=\"1px\" caption=\"off\" css=\".vc_custom_1692278929158{border-top-width: 1px !important;border-right-width: 1px !important;border-bottom-width: 1px !important;border-left-width: 1px !important;border-left-color: #059444 !important;border-left-style: solid !important;border-right-color: #059444 !important;border-right-style: solid !important;border-top-color: #059444 !important;border-top-style: solid !important;border-bottom-color: #059444 !important;border-bottom-style: solid !important;border-radius: 1px !important;}\"][ultimate_heading main_heading=\"Quisque sed nibh tristique\" heading_tag=\"h3\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;\"]\r\n<ul>\r\n 	<li>Duis lorem risus, aliquet a auctor a, venenatis in dui. Praesent et eros et risus dapibus placerat hendrerit cursus magna.</li>\r\n 	<li>Praesent et eros et risus dapibus placerat hendrerit cursus magna.</li>\r\n 	<li>aliquet a auctor a, venenatis in dui.</li>\r\n</ul>\r\n[/ultimate_heading][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/5\"][ult_animation_block animation=\"fadeInUp\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][dt_fancy_image image_id=\"3170\" width=\"300\" border_radius=\"1px\" caption=\"off\" css=\".vc_custom_1692278936750{border-top-width: 1px !important;border-right-width: 1px !important;border-bottom-width: 1px !important;border-left-width: 1px !important;border-left-color: #059444 !important;border-left-style: solid !important;border-right-color: #059444 !important;border-right-style: solid !important;border-top-color: #059444 !important;border-top-style: solid !important;border-bottom-color: #059444 !important;border-bottom-style: solid !important;border-radius: 1px !important;}\"][ultimate_heading main_heading=\"Quisque sed nibh tristique\" heading_tag=\"h3\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;\"]\r\n<ul>\r\n 	<li>Duis lorem risus, aliquet a auctor a, venenatis in dui. Praesent et eros et risus dapibus placerat hendrerit cursus magna.</li>\r\n 	<li>Praesent et eros et risus dapibus placerat hendrerit cursus magna.</li>\r\n 	<li>aliquet a auctor a, venenatis in dui.</li>\r\n</ul>\r\n[/ultimate_heading][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/5\"][ult_animation_block animation=\"fadeInDown\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][dt_fancy_image image_id=\"3170\" width=\"300\" border_radius=\"1px\" caption=\"off\" css=\".vc_custom_1692278936750{border-top-width: 1px !important;border-right-width: 1px !important;border-bottom-width: 1px !important;border-left-width: 1px !important;border-left-color: #059444 !important;border-left-style: solid !important;border-right-color: #059444 !important;border-right-style: solid !important;border-top-color: #059444 !important;border-top-style: solid !important;border-bottom-color: #059444 !important;border-bottom-style: solid !important;border-radius: 1px !important;}\"][ultimate_heading main_heading=\"Quisque sed nibh tristique\" heading_tag=\"h3\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;\"]\r\n<ul>\r\n 	<li>Duis lorem risus, aliquet a auctor a, venenatis in dui. Praesent et eros et risus dapibus placerat hendrerit cursus magna.</li>\r\n 	<li>Praesent et eros et risus dapibus placerat hendrerit cursus magna.</li>\r\n 	<li>aliquet a auctor a, venenatis in dui.</li>\r\n</ul>\r\n[/ultimate_heading][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/5\"][ult_animation_block animation=\"fadeInDown\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][dt_fancy_image image_id=\"3171\" width=\"300\" border_radius=\"1px\" caption=\"off\" css=\".vc_custom_1692278929158{border-top-width: 1px !important;border-right-width: 1px !important;border-bottom-width: 1px !important;border-left-width: 1px !important;border-left-color: #059444 !important;border-left-style: solid !important;border-right-color: #059444 !important;border-right-style: solid !important;border-top-color: #059444 !important;border-top-style: solid !important;border-bottom-color: #059444 !important;border-bottom-style: solid !important;border-radius: 1px !important;}\"][ultimate_heading main_heading=\"Quisque sed nibh tristique\" heading_tag=\"h3\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;\"]\r\n<ul>\r\n 	<li>Duis lorem risus, aliquet a auctor a, venenatis in dui. Praesent et eros et risus dapibus placerat hendrerit cursus magna.</li>\r\n 	<li>Praesent et eros et risus dapibus placerat hendrerit cursus magna.</li>\r\n 	<li>aliquet a auctor a, venenatis in dui.</li>\r\n</ul>\r\n[/ultimate_heading][/ult_animation_block][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner width=\"2/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row disable_element=\"yes\"][vc_column][ultimate_heading main_heading=\"Next Generation\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;margin-bottom:35px;\"][/ultimate_heading][vc_row_inner][vc_column_inner width=\"1/2\"][ult_animation_block animation=\"fadeInUp\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][dt_fancy_image image_id=\"3172\" width=\"300\" border_radius=\"1px\" caption=\"off\" css=\".vc_custom_1692278922309{border-top-width: 1px !important;border-right-width: 1px !important;border-bottom-width: 1px !important;border-left-width: 1px !important;border-left-color: #059444 !important;border-left-style: solid !important;border-right-color: #059444 !important;border-right-style: solid !important;border-top-color: #059444 !important;border-top-style: solid !important;border-bottom-color: #059444 !important;border-bottom-style: solid !important;border-radius: 1px !important;}\"][ultimate_heading main_heading=\"Quisque sed nibh tristique\" heading_tag=\"h3\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;\"]\r\n<ul>\r\n 	<li>Duis lorem risus, aliquet a auctor a, venenatis in dui. Praesent et eros et risus dapibus placerat hendrerit cursus magna.</li>\r\n 	<li>Praesent et eros et risus dapibus placerat hendrerit cursus magna.</li>\r\n 	<li>aliquet a auctor a, venenatis in dui.</li>\r\n</ul>\r\n[/ultimate_heading][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/2\"][ult_animation_block animation=\"fadeInDown\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][dt_fancy_image image_id=\"3171\" width=\"300\" border_radius=\"1px\" caption=\"off\" css=\".vc_custom_1692278929158{border-top-width: 1px !important;border-right-width: 1px !important;border-bottom-width: 1px !important;border-left-width: 1px !important;border-left-color: #059444 !important;border-left-style: solid !important;border-right-color: #059444 !important;border-right-style: solid !important;border-top-color: #059444 !important;border-top-style: solid !important;border-bottom-color: #059444 !important;border-bottom-style: solid !important;border-radius: 1px !important;}\"][ultimate_heading main_heading=\"Quisque sed nibh tristique\" heading_tag=\"h3\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;\"]\r\n<ul>\r\n 	<li>Duis lorem risus, aliquet a auctor a, venenatis in dui. Praesent et eros et risus dapibus placerat hendrerit cursus magna.</li>\r\n 	<li>Praesent et eros et risus dapibus placerat hendrerit cursus magna.</li>\r\n 	<li>aliquet a auctor a, venenatis in dui.</li>\r\n</ul>\r\n[/ultimate_heading][/ult_animation_block][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row]','About us','','inherit','closed','closed','','2917-revision-v1','','','2023-09-24 04:56:49','2023-09-24 04:56:49','',2917,'https://farmchemie.yasithawd.com/?p=3885',0,'revision','',0),(3886,1,'2023-09-24 05:00:32','2023-09-24 05:00:32','[vc_row full_width=\"stretch_row_content_no_spaces\"][vc_column][ultimate_heading main_heading=\"Our History\" main_heading_color=\"#762888\"][/ultimate_heading][/vc_column][/vc_row][vc_row][vc_column][vc_row_inner equal_height=\"yes\" content_placement=\"middle\" css=\".vc_custom_1692359205466{margin-top: 35px !important;}\"][vc_column_inner width=\"1/2\"][ult_animation_block animation=\"fadeInLeftBig\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][vc_single_image image=\"3273\" img_size=\"full\" alignment=\"center\" style=\"vc_box_rounded\"][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/2\"][ult_animation_block animation=\"fadeInRightBig\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][ultimate_heading main_heading=\"Founded in 2002\" heading_tag=\"h3\" main_heading_color=\"#039447\" alignment=\"left\" sub_heading_font_size=\"desktop:18px;\"]Founded in 2002 by Mr. Uditha Wanigasinghe, an agriculturist who had a mission to aid valuable livestock producers in the country to enhance the yield and profitability of production. FARMCHEMIE introduced unprecedented solutions and consistent technical services to gain our customers’ trust and became the market leader in animal health products in 2006 within just four years.[/ultimate_heading][/ult_animation_block][/vc_column_inner][/vc_row_inner][vc_separator color=\"custom\" accent_color=\"#039447\"][vc_row_inner equal_height=\"yes\" rtl_reverse=\"yes\" content_placement=\"middle\" css=\".vc_custom_1692359216075{margin-top: 35px !important;}\"][vc_column_inner width=\"1/2\" offset=\"vc_hidden-xs\"][ult_animation_block animation=\"fadeInLeftBig\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][ultimate_heading main_heading=\"2006\" heading_tag=\"h3\" main_heading_color=\"#039447\" alignment=\"right\"]In 2006, the Sri Lankan poultry industry was affected with Avian Influenza which became a difficult period for the growth of FARMCHEMIE. This was the key factor in our decision to diversify into Agro Products. PLANTCHEM &amp; PLANTSEEDS were established to offer solutions in Agro specialty fertilizers, pesticides and seeds to invaluable cultivators.[/ultimate_heading][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/2\" offset=\"vc_hidden-xs\"][ult_animation_block animation=\"fadeInRightBig\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][vc_single_image image=\"3276\" img_size=\"full\" alignment=\"center\" style=\"vc_box_rounded\"][/ult_animation_block][/vc_column_inner][/vc_row_inner][vc_row_inner equal_height=\"yes\" rtl_reverse=\"yes\" content_placement=\"middle\" css=\".vc_custom_1692359216075{margin-top: 35px !important;}\"][vc_column_inner width=\"1/2\" offset=\"vc_hidden-lg vc_hidden-md vc_hidden-sm\"][ult_animation_block animation=\"fadeInRightBig\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][vc_single_image image=\"3276\" img_size=\"full\" alignment=\"center\" style=\"vc_box_rounded\"][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/2\" offset=\"vc_hidden-lg vc_hidden-md vc_hidden-sm\"][ult_animation_block animation=\"fadeInLeftBig\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][ultimate_heading main_heading=\"2006\" heading_tag=\"h3\" main_heading_color=\"#039447\" alignment=\"left\"]\r\n\r\nIn 2006, the Sri Lankan poultry industry was affected with Avian Influenza which became a difficult period for the growth of FARMCHEMIE. This was the key factor in our decision to diversify into Agro Products. PLANTCHEM &amp; PLANTSEEDS were established to offer solutions in Agro specialty fertilizers, pesticides and seeds to invaluable cultivators.\r\n\r\n[/ultimate_heading][/ult_animation_block][/vc_column_inner][/vc_row_inner][vc_separator color=\"custom\" accent_color=\"#039447\"][vc_row_inner equal_height=\"yes\" content_placement=\"middle\" css=\".vc_custom_1692359231594{margin-top: 35px !important;}\"][vc_column_inner width=\"1/2\"][ult_animation_block animation=\"fadeInLeftBig\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][vc_single_image image=\"3277\" img_size=\"full\" alignment=\"center\" style=\"vc_box_rounded\"][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/2\"][ult_animation_block animation=\"fadeInRightBig\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][ultimate_heading main_heading=\"2010\" heading_tag=\"h3\" main_heading_color=\"#039447\" alignment=\"left\"]In 2010, FEED CHEMIE became the subsequent addition to ever-growing vision of Mr. Uditha Wanigasinghe and entered the Animal Feed Additives market.[/ultimate_heading][/ult_animation_block][/vc_column_inner][/vc_row_inner][vc_separator color=\"custom\" accent_color=\"#039447\"][vc_row_inner equal_height=\"yes\" rtl_reverse=\"yes\" content_placement=\"middle\" css=\".vc_custom_1692359239274{margin-top: 35px !important;}\"][vc_column_inner width=\"1/2\" offset=\"vc_hidden-xs\"][ult_animation_block animation=\"fadeInLeftBig\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][ultimate_heading main_heading=\"2012\" heading_tag=\"h3\" main_heading_color=\"#039447\" alignment=\"right\"]The year 2012 is described as a turning point in our journey as FARMCHEMIE established our first production facility for the manufacturing and packing of animal health products. FARMCHEMIE became the first animal health organization in Sri Lanka to obtain ISO 9001:2015 and WHO GMP International Quality Certification. With our own formulation unit, FARMCHEMIE was able to offer customized solutions to cater the needs of the Sri Lankan Livestock Industry.[/ultimate_heading][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/2\" offset=\"vc_hidden-xs\"][ult_animation_block animation=\"fadeInRightBig\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][vc_single_image image=\"3278\" img_size=\"full\" alignment=\"center\" style=\"vc_box_rounded\"][/ult_animation_block][/vc_column_inner][/vc_row_inner][vc_row_inner equal_height=\"yes\" rtl_reverse=\"yes\" content_placement=\"middle\" css=\".vc_custom_1692359239274{margin-top: 35px !important;}\"][vc_column_inner width=\"1/2\" offset=\"vc_hidden-lg vc_hidden-md vc_hidden-sm\"][ult_animation_block animation=\"fadeInRightBig\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][vc_single_image image=\"3278\" img_size=\"full\" alignment=\"center\" style=\"vc_box_rounded\"][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/2\" offset=\"vc_hidden-lg vc_hidden-md vc_hidden-sm\"][ult_animation_block animation=\"fadeInLeftBig\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][ultimate_heading main_heading=\"2012\" heading_tag=\"h3\" main_heading_color=\"#039447\" alignment=\"left\"]The year 2012 is described as a turning point in our journey as FARMCHEMIE established our first production facility for the manufacturing and packing of animal health products. FARMCHEMIE became the first animal health organization in Sri Lanka to obtain ISO 9001:2015 and WHO GMP International Quality Certification. With our own formulation unit, FARMCHEMIE was able to offer customized solutions to cater the needs of the Sri Lankan Livestock Industry.[/ultimate_heading][/ult_animation_block][/vc_column_inner][/vc_row_inner][vc_separator color=\"custom\" accent_color=\"#039447\"][vc_row_inner content_placement=\"middle\" css=\".vc_custom_1692359246626{margin-top: 35px !important;}\"][vc_column_inner width=\"1/2\"][ult_animation_block animation=\"fadeInLeftBig\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][vc_single_image image=\"3279\" img_size=\"full\" alignment=\"center\" style=\"vc_box_rounded\"][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/2\"][ult_animation_block animation=\"fadeInRightBig\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][ultimate_heading main_heading=\"2016\" heading_tag=\"h3\" main_heading_color=\"#039447\" alignment=\"left\"]The year 2016 was another key milestone with the entry to the International Markets. FARMCHEMIE exported our first Feed Premix consignment to India and in 2018 our export operation was distinctly established as FARMCHEMIE MANUFACTURERS, a Board of Investment (BOI) approved entity.[/ultimate_heading][/ult_animation_block][/vc_column_inner][/vc_row_inner][vc_separator color=\"custom\" accent_color=\"#039447\"][vc_row_inner equal_height=\"yes\" rtl_reverse=\"yes\" content_placement=\"middle\" css=\".vc_custom_1695527931440{margin-top: 35px !important;}\"][vc_column_inner width=\"1/2\" offset=\"vc_hidden-xs\"][ult_animation_block animation=\"fadeInLeftBig\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][ultimate_heading main_heading=\"Fully automated manufacturing\" heading_tag=\"h3\" main_heading_color=\"#039447\" alignment=\"right\"]FARMCHEMIE MANUFACTURERS has invested in fully automated manufacturing facility from Bühler and became the first Sri Lankan owned company to obtain FAMI-QS International Quality Certification.[/ultimate_heading][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/2\" offset=\"vc_hidden-xs\"][ult_animation_block animation=\"fadeInRightBig\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][vc_single_image image=\"3280\" img_size=\"full\" alignment=\"center\" style=\"vc_box_rounded\"][/ult_animation_block][/vc_column_inner][/vc_row_inner][vc_row_inner equal_height=\"yes\" rtl_reverse=\"yes\" content_placement=\"middle\" css=\".vc_custom_1695527931440{margin-top: 35px !important;}\"][vc_column_inner width=\"1/2\" offset=\"vc_hidden-lg vc_hidden-md vc_hidden-sm\"][ult_animation_block animation=\"fadeInRightBig\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][vc_single_image image=\"3280\" img_size=\"full\" alignment=\"center\" style=\"vc_box_rounded\"][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/2\" offset=\"vc_hidden-lg vc_hidden-md vc_hidden-sm\"][ult_animation_block animation=\"fadeInLeftBig\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][ultimate_heading main_heading=\"Fully automated manufacturing\" heading_tag=\"h3\" main_heading_color=\"#039447\" alignment=\"left\"]FARMCHEMIE MANUFACTURERS has invested in fully automated manufacturing facility from Bühler and became the first Sri Lankan owned company to obtain FAMI-QS International Quality Certification.[/ultimate_heading][/ult_animation_block][/vc_column_inner][/vc_row_inner][vc_separator color=\"custom\" accent_color=\"#039447\"][vc_row_inner equal_height=\"yes\" content_placement=\"middle\" css=\".vc_custom_1692359258634{margin-top: 35px !important;}\"][vc_column_inner width=\"1/2\"][ult_animation_block animation=\"fadeInLeftBig\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][vc_single_image image=\"3281\" img_size=\"full\" alignment=\"center\" style=\"vc_box_rounded\"][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/2\"][ult_animation_block animation=\"fadeInRightBig\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][ultimate_heading main_heading=\"Official toll manufacturer partner\" heading_tag=\"h3\" main_heading_color=\"#039447\" alignment=\"left\"]With the trust and reputation built as a reliable manufacturer of animal feed additives and supplements in the global market, several world-renowned international brands have appointed FARMCHEMIE MANUFACTURERS as the official toll manufacturer partner. FARMCHEMIE MANUFACTURERS exports a wide range of products consisting of premixes, specialty feed additives, oral liquid supplements and pet supplements to various markets in South Asia, East Asia, Middle East and Africa.\r\n\r\nFARMCHEMIE, FEED CHEMIE &amp; FARMCHEMIE MANUFACTURERS currently operate under the ownership of our holding company, DYVESTA.\r\n\r\nDYEVSTA has become the pinnacle of Animal Nutrition and Health.\r\n\r\nDYVESTA is Dynamic, through our continuous evolution, growth and progress. DYVESTA is Diverse, in terms of both our business strategy and our community. DYVESTA is Devoted to our valuable business partners through exceptional service.[/ultimate_heading][/ult_animation_block][/vc_column_inner][/vc_row_inner][vc_separator color=\"custom\" accent_color=\"#039447\"][/vc_column][/vc_row][vc_row full_width=\"stretch_row\" equal_height=\"yes\" bg_type=\"image\" parallax_style=\"vcpb-vz-jquery\" bg_image_new=\"id^3256|url^https://farmchemie.yasithawd.com/wp-content/uploads/2023/08/Vision-Mission.png|caption^null|alt^null|title^Vision-&amp;-Mission|description^null\" bg_image_repeat=\"no-repeat\" enable_overlay=\"enable_overlay_value\" overlay_color=\"#000000\" overlay_pattern=\"01.png\" overlay_pattern_opacity=\"5\" css=\".vc_custom_1692366072362{margin-top: 35px !important;padding-top: 65px !important;padding-bottom: 100px !important;}\"][vc_column][vc_row_inner equal_height=\"yes\"][vc_column_inner width=\"1/2\"][ult_animation_block animation=\"fadeInLeftBig\" animation_duration=\"2\" animation_delay=\"0\" animation_iteration_count=\"1\"][ultimate_heading main_heading=\"Vision\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\"]To be the customers’ first and best choice by ensuring outstanding satisfaction through a well-trained and dedicated team. Prompt and quality solutions to our customers’ requirements will determine the increase of return on investment for us.[/ultimate_heading][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/2\"][ult_animation_block animation=\"fadeInRightBig\" animation_duration=\"2\" animation_delay=\"0\" animation_iteration_count=\"1\"][ultimate_heading main_heading=\"Mission\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\"]To become a world renowned manufacturer of Animal Health products and a trusted partner among our stakeholders for our integrity as well as for providing effective solutions[/ultimate_heading][/ult_animation_block][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row css=\".vc_custom_1684836308288{margin-top: 15px !important;}\"][vc_column][ultimate_heading main_heading=\"Achievements\" main_heading_color=\"#762888\" main_heading_margin=\"margin-top:35px;\"][/ultimate_heading][vc_row_inner gap=\"20\"][vc_column_inner width=\"1/2\" css=\".vc_custom_1691995519863{background-color: #f4ab20 !important;border: 1px solid #f4ab20 !important;border-radius: 35px !important;}\"][ult_animation_block animation=\"fadeInLeftBig\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][bsf-info-box icon_type=\"custom\" icon_img=\"id^3117|url^https://farmchemie.yasithawd.com/wp-content/uploads/2023/08/Pink_-H.png|caption^null|alt^null|title^Pink_-H|description^null\" img_width=\"60\" icon_style=\"advanced\" icon_border_style=\"solid\" icon_color_border=\"#ffffff\" icon_border_size=\"1\" icon_border_radius=\"500\" icon_border_spacing=\"1\" title=\"First Free Sale Certificate obtained from Veterinary Drug Control Authority (VDCA) for Veterinary Pharmaceuticals\" title_font_style=\"font-weight:bold;\" title_font_size=\"desktop:20px;\"][/bsf-info-box][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/2\" css=\".vc_custom_1691995661095{background-color: #722f8b !important;border: 1px solid #722f8b !important;border-radius: 35px !important;}\"][ult_animation_block animation=\"fadeInRightBig\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][bsf-info-box icon_type=\"custom\" icon_img=\"id^3117|url^https://farmchemie.yasithawd.com/wp-content/uploads/2023/08/Pink_-H.png|caption^null|alt^null|title^Pink_-H|description^null\" img_width=\"60\" icon_style=\"advanced\" icon_border_style=\"solid\" icon_color_border=\"#ffffff\" icon_border_size=\"1\" icon_border_radius=\"500\" icon_border_spacing=\"1\" title=\"First ISO 9001: 2015 ,WHO-GMP Quality Management systems certified Animal Health company in Sri Lanka since August, 2012\" title_font_style=\"font-weight:bold;\" title_font_color=\"#ffffff\" title_font_size=\"desktop:20px;\"][/bsf-info-box][/ult_animation_block][/vc_column_inner][/vc_row_inner][vc_row_inner gap=\"20\"][vc_column_inner width=\"1/2\" css=\".vc_custom_1691995661095{background-color: #722f8b !important;border: 1px solid #722f8b !important;border-radius: 35px !important;}\"][ult_animation_block animation=\"fadeInLeftBig\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][bsf-info-box icon_type=\"custom\" icon_img=\"id^3117|url^https://farmchemie.yasithawd.com/wp-content/uploads/2023/08/Pink_-H.png|caption^null|alt^null|title^Pink_-H|description^null\" img_width=\"60\" icon_style=\"advanced\" icon_border_style=\"solid\" icon_color_border=\"#ffffff\" icon_border_size=\"1\" icon_border_radius=\"500\" icon_border_spacing=\"1\" title=\"First FAMI-QS certified company in sri lanka\" title_font_style=\"font-weight:bold;\" title_font_color=\"#ffffff\" title_font_size=\"desktop:20px;\"][/bsf-info-box][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/2\" css=\".vc_custom_1691995519863{background-color: #f4ab20 !important;border: 1px solid #f4ab20 !important;border-radius: 35px !important;}\"][ult_animation_block animation=\"fadeInRightBig\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][bsf-info-box icon_type=\"custom\" icon_img=\"id^3117|url^https://farmchemie.yasithawd.com/wp-content/uploads/2023/08/Pink_-H.png|caption^null|alt^null|title^Pink_-H|description^null\" img_width=\"60\" icon_style=\"advanced\" icon_border_style=\"solid\" icon_color_border=\"#ffffff\" icon_border_size=\"1\" icon_border_radius=\"500\" icon_border_spacing=\"1\" title=\"First Certificate of Ethical Trading certified in Livestock industry\" title_font_style=\"font-weight:bold;\" title_font_size=\"desktop:20px;\"][/bsf-info-box][/ult_animation_block][/vc_column_inner][/vc_row_inner][vc_row_inner gap=\"20\"][vc_column_inner width=\"1/4\" css=\".vc_custom_1695528026328{border-radius: 35px !important;}\" offset=\"vc_hidden-xs\"][/vc_column_inner][vc_column_inner width=\"2/4\" css=\".vc_custom_1691995519863{background-color: #f4ab20 !important;border: 1px solid #f4ab20 !important;border-radius: 35px !important;}\"][ult_animation_block animation=\"fadeInLeftBig\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][bsf-info-box icon_type=\"custom\" icon_img=\"id^3117|url^https://farmchemie.yasithawd.com/wp-content/uploads/2023/08/Pink_-H.png|caption^null|alt^null|title^Pink_-H|description^null\" img_width=\"60\" icon_style=\"advanced\" icon_border_style=\"solid\" icon_color_border=\"#ffffff\" icon_border_size=\"1\" icon_border_radius=\"500\" icon_border_spacing=\"1\" title=\"First Silver awarded company at National Exports Awards in Livestock industry\" title_font_style=\"font-weight:bold;\" title_font_size=\"desktop:20px;\"][/bsf-info-box][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/4\" offset=\"vc_hidden-xs\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row full_width=\"stretch_row\" equal_height=\"yes\" content_placement=\"bottom\" css=\".vc_custom_1693627699480{margin-top: 15px !important;}\"][vc_column][ultimate_heading main_heading=\"Certifications\" main_heading_color=\"#762888\" main_heading_margin=\"margin-top:35px;\"][/ultimate_heading][vc_row_inner content_placement=\"bottom\"][vc_column_inner width=\"1/6\"][dt_fancy_image image_id=\"3408\" width=\"300\" caption=\"off\"][/vc_column_inner][vc_column_inner width=\"1/6\"][dt_fancy_image image_id=\"3407\" width=\"150\" caption=\"off\"][/vc_column_inner][vc_column_inner width=\"1/6\"][dt_fancy_image image_id=\"3409\" width=\"150\" caption=\"off\"][/vc_column_inner][vc_column_inner width=\"1/6\"][dt_fancy_image image_id=\"3410\" width=\"150\" caption=\"off\"][/vc_column_inner][vc_column_inner width=\"1/6\"][dt_fancy_image image_id=\"3411\" width=\"150\" caption=\"off\"][/vc_column_inner][vc_column_inner width=\"1/6\"][dt_fancy_image image_id=\"3406\" width=\"150\" caption=\"off\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row full_width=\"stretch_row\" equal_height=\"yes\" content_placement=\"bottom\" css=\".vc_custom_1693625624233{margin-top: 15px !important;}\"][vc_column][ultimate_heading main_heading=\"Awards\" main_heading_color=\"#762888\" main_heading_margin=\"margin-top:35px;\"][/ultimate_heading][ultimate_carousel slide_to_scroll=\"single\" slides_on_mob=\"1\"][dt_fancy_image image_id=\"3412\" width=\"300\"][dt_fancy_image image_id=\"3413\" width=\"300\" caption=\"off\"][dt_fancy_image image_id=\"3414\" width=\"300\" caption=\"off\"][dt_fancy_image image_id=\"3415\" width=\"300\" caption=\"off\"][dt_fancy_image image_id=\"3416\" width=\"300\" caption=\"off\"][dt_fancy_image image_id=\"3417\" width=\"300\" caption=\"off\"][dt_fancy_image image_id=\"3418\" width=\"300\" caption=\"off\"][dt_fancy_image image_id=\"3420\" width=\"300\" caption=\"off\"][dt_fancy_image image_id=\"3419\" width=\"300\" caption=\"off\"][dt_fancy_image image_id=\"3422\" width=\"300\" caption=\"off\"][dt_fancy_image image_id=\"3421\" width=\"300\" caption=\"off\"][dt_fancy_image image_id=\"3422\" width=\"300\" caption=\"off\"][dt_fancy_image image_id=\"3423\" width=\"300\" caption=\"off\"][dt_fancy_image image_id=\"3424\" width=\"300\" caption=\"off\"][dt_fancy_image image_id=\"3425\" width=\"300\" caption=\"off\"][/ultimate_carousel][/vc_column][/vc_row][vc_row disable_element=\"yes\" css=\".vc_custom_1695294608306{margin-top: 15px !important;}\"][vc_column][ultimate_heading main_heading=\"Board Of Directors\" main_heading_color=\"#762888\" main_heading_margin=\"margin-top:35px;margin-bottom:35px;\"][/ultimate_heading][ultimate_carousel slides_on_desk=\"3\" slides_on_mob=\"1\" arrow_style=\"square-bg\" arrow_bg_color=\"#039447\" arrow_color=\"#ffffff\" next_icon=\"ultsl-arrow-right6\" prev_icon=\"ultsl-arrow-left6\" dots_color=\"#039447\" item_animation=\"fadeIn\" css_ad_caraousel=\".vc_custom_1694697209111{padding-right: 10px !important;padding-left: 10px !important;}\"][vc_row_inner][vc_column_inner][ultimate_heading main_heading=\"Uditha Wanigasinghe\" heading_tag=\"h3\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;\"]Managing Director[/ultimate_heading][ultimate_modal modal_title=\"Read more\" btn_size=\"md\" btn_bg_color=\"#089548\" btn_text=\"Read more\" overlay_bg_opacity=\"75\" img_size=\"80\" btn_txt_color=\"#ffffff\"]pretium mauris pretium mauris pretium mauris pretium mauris pretium mauris pretium mauris pretium mauris pretium mauris pretium mauris pretium mauris pretium mauris pretium mauris pretium mauris pretium mauris pretium mauris pretium mauris pretium mauris pretium mauris pretium mauris pretium mauris pretium mauris pretium mauris pretium mauris pretium mauris pretium mauris pretium mauris pretium mauris pretium mauris[/ultimate_modal][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner][ultimate_heading main_heading=\"Senitha Wanigasinghe\" heading_tag=\"h3\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;\"]Director/ CEO[/ultimate_heading][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner][ultimate_heading main_heading=\"Thulitha Wanigasinghe\" heading_tag=\"h3\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;\"]Director - Veterinary Services &amp; RA[/ultimate_heading][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner][ultimate_heading main_heading=\"Yvonne Van Cuylenberg\" heading_tag=\"h3\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;\"]Director - HR &amp; Administration[/ultimate_heading][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner][ultimate_heading main_heading=\"Gamini Wanigasinghe\" heading_tag=\"h3\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;\"]Director[/ultimate_heading][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner][ultimate_heading main_heading=\"Ajith Welianga\" heading_tag=\"h3\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;\"]Director - Marketing[/ultimate_heading][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner][ultimate_heading main_heading=\"Sunil Ranjith Guruge\" heading_tag=\"h3\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;\"]Director - Customer &amp; Employee Relations[/ultimate_heading][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner][ultimate_heading main_heading=\"Sampath Gunathilake\" heading_tag=\"h3\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;\"]Director - Sales[/ultimate_heading][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner][ultimate_heading main_heading=\"Chanaka Indrajith\" heading_tag=\"h3\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;\"]Director Production / COO[/ultimate_heading][/vc_column_inner][/vc_row_inner][/ultimate_carousel][/vc_column][/vc_row][vc_row disable_element=\"yes\"][vc_column][ultimate_heading main_heading=\"Board Of Directors\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;margin-bottom:35px;\"][/ultimate_heading][vc_row_inner][vc_column_inner width=\"1/3\"][ult_animation_block animation=\"fadeInUp\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][dt_fancy_image image_id=\"3172\" width=\"300\" border_radius=\"1px\" caption=\"off\" css=\".vc_custom_1692278922309{border-top-width: 1px !important;border-right-width: 1px !important;border-bottom-width: 1px !important;border-left-width: 1px !important;border-left-color: #059444 !important;border-left-style: solid !important;border-right-color: #059444 !important;border-right-style: solid !important;border-top-color: #059444 !important;border-top-style: solid !important;border-bottom-color: #059444 !important;border-bottom-style: solid !important;border-radius: 1px !important;}\"][ultimate_heading main_heading=\"Quisque sed nibh tristique\" heading_tag=\"h3\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;\"]\r\n<ul>\r\n 	<li>Duis lorem risus, aliquet a auctor a, venenatis in dui. Praesent et eros et risus dapibus placerat hendrerit cursus magna.</li>\r\n 	<li>Praesent et eros et risus dapibus placerat hendrerit cursus magna.</li>\r\n 	<li>aliquet a auctor a, venenatis in dui.</li>\r\n</ul>\r\n[/ultimate_heading][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/3\"][ult_animation_block animation=\"fadeInDown\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][dt_fancy_image image_id=\"3171\" width=\"300\" border_radius=\"1px\" caption=\"off\" css=\".vc_custom_1692278929158{border-top-width: 1px !important;border-right-width: 1px !important;border-bottom-width: 1px !important;border-left-width: 1px !important;border-left-color: #059444 !important;border-left-style: solid !important;border-right-color: #059444 !important;border-right-style: solid !important;border-top-color: #059444 !important;border-top-style: solid !important;border-bottom-color: #059444 !important;border-bottom-style: solid !important;border-radius: 1px !important;}\"][ultimate_heading main_heading=\"Quisque sed nibh tristique\" heading_tag=\"h3\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;\"]\r\n<ul>\r\n 	<li>Duis lorem risus, aliquet a auctor a, venenatis in dui. Praesent et eros et risus dapibus placerat hendrerit cursus magna.</li>\r\n 	<li>Praesent et eros et risus dapibus placerat hendrerit cursus magna.</li>\r\n 	<li>aliquet a auctor a, venenatis in dui.</li>\r\n</ul>\r\n[/ultimate_heading][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/3\"][ult_animation_block animation=\"fadeInUp\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][dt_fancy_image image_id=\"3170\" width=\"300\" border_radius=\"1px\" caption=\"off\" css=\".vc_custom_1692278936750{border-top-width: 1px !important;border-right-width: 1px !important;border-bottom-width: 1px !important;border-left-width: 1px !important;border-left-color: #059444 !important;border-left-style: solid !important;border-right-color: #059444 !important;border-right-style: solid !important;border-top-color: #059444 !important;border-top-style: solid !important;border-bottom-color: #059444 !important;border-bottom-style: solid !important;border-radius: 1px !important;}\"][ultimate_heading main_heading=\"Quisque sed nibh tristique\" heading_tag=\"h3\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;\"]\r\n<ul>\r\n 	<li>Duis lorem risus, aliquet a auctor a, venenatis in dui. Praesent et eros et risus dapibus placerat hendrerit cursus magna.</li>\r\n 	<li>Praesent et eros et risus dapibus placerat hendrerit cursus magna.</li>\r\n 	<li>aliquet a auctor a, venenatis in dui.</li>\r\n</ul>\r\n[/ultimate_heading][/ult_animation_block][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row disable_element=\"yes\"][vc_column][ultimate_heading main_heading=\"Executive Directors\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;margin-bottom:35px;\"][/ultimate_heading][vc_row_inner][vc_column_inner width=\"1/5\"][ult_animation_block animation=\"fadeInUp\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][dt_fancy_image image_id=\"3172\" width=\"300\" border_radius=\"1px\" caption=\"off\" css=\".vc_custom_1692278922309{border-top-width: 1px !important;border-right-width: 1px !important;border-bottom-width: 1px !important;border-left-width: 1px !important;border-left-color: #059444 !important;border-left-style: solid !important;border-right-color: #059444 !important;border-right-style: solid !important;border-top-color: #059444 !important;border-top-style: solid !important;border-bottom-color: #059444 !important;border-bottom-style: solid !important;border-radius: 1px !important;}\"][ultimate_heading main_heading=\"Quisque sed nibh tristique\" heading_tag=\"h3\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;\"]\r\n<ul>\r\n 	<li>Duis lorem risus, aliquet a auctor a, venenatis in dui. Praesent et eros et risus dapibus placerat hendrerit cursus magna.</li>\r\n 	<li>Praesent et eros et risus dapibus placerat hendrerit cursus magna.</li>\r\n 	<li>aliquet a auctor a, venenatis in dui.</li>\r\n</ul>\r\n[/ultimate_heading][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/5\"][ult_animation_block animation=\"fadeInDown\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][dt_fancy_image image_id=\"3171\" width=\"300\" border_radius=\"1px\" caption=\"off\" css=\".vc_custom_1692278929158{border-top-width: 1px !important;border-right-width: 1px !important;border-bottom-width: 1px !important;border-left-width: 1px !important;border-left-color: #059444 !important;border-left-style: solid !important;border-right-color: #059444 !important;border-right-style: solid !important;border-top-color: #059444 !important;border-top-style: solid !important;border-bottom-color: #059444 !important;border-bottom-style: solid !important;border-radius: 1px !important;}\"][ultimate_heading main_heading=\"Quisque sed nibh tristique\" heading_tag=\"h3\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;\"]\r\n<ul>\r\n 	<li>Duis lorem risus, aliquet a auctor a, venenatis in dui. Praesent et eros et risus dapibus placerat hendrerit cursus magna.</li>\r\n 	<li>Praesent et eros et risus dapibus placerat hendrerit cursus magna.</li>\r\n 	<li>aliquet a auctor a, venenatis in dui.</li>\r\n</ul>\r\n[/ultimate_heading][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/5\"][ult_animation_block animation=\"fadeInUp\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][dt_fancy_image image_id=\"3170\" width=\"300\" border_radius=\"1px\" caption=\"off\" css=\".vc_custom_1692278936750{border-top-width: 1px !important;border-right-width: 1px !important;border-bottom-width: 1px !important;border-left-width: 1px !important;border-left-color: #059444 !important;border-left-style: solid !important;border-right-color: #059444 !important;border-right-style: solid !important;border-top-color: #059444 !important;border-top-style: solid !important;border-bottom-color: #059444 !important;border-bottom-style: solid !important;border-radius: 1px !important;}\"][ultimate_heading main_heading=\"Quisque sed nibh tristique\" heading_tag=\"h3\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;\"]\r\n<ul>\r\n 	<li>Duis lorem risus, aliquet a auctor a, venenatis in dui. Praesent et eros et risus dapibus placerat hendrerit cursus magna.</li>\r\n 	<li>Praesent et eros et risus dapibus placerat hendrerit cursus magna.</li>\r\n 	<li>aliquet a auctor a, venenatis in dui.</li>\r\n</ul>\r\n[/ultimate_heading][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/5\"][ult_animation_block animation=\"fadeInDown\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][dt_fancy_image image_id=\"3170\" width=\"300\" border_radius=\"1px\" caption=\"off\" css=\".vc_custom_1692278936750{border-top-width: 1px !important;border-right-width: 1px !important;border-bottom-width: 1px !important;border-left-width: 1px !important;border-left-color: #059444 !important;border-left-style: solid !important;border-right-color: #059444 !important;border-right-style: solid !important;border-top-color: #059444 !important;border-top-style: solid !important;border-bottom-color: #059444 !important;border-bottom-style: solid !important;border-radius: 1px !important;}\"][ultimate_heading main_heading=\"Quisque sed nibh tristique\" heading_tag=\"h3\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;\"]\r\n<ul>\r\n 	<li>Duis lorem risus, aliquet a auctor a, venenatis in dui. Praesent et eros et risus dapibus placerat hendrerit cursus magna.</li>\r\n 	<li>Praesent et eros et risus dapibus placerat hendrerit cursus magna.</li>\r\n 	<li>aliquet a auctor a, venenatis in dui.</li>\r\n</ul>\r\n[/ultimate_heading][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/5\"][ult_animation_block animation=\"fadeInDown\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][dt_fancy_image image_id=\"3171\" width=\"300\" border_radius=\"1px\" caption=\"off\" css=\".vc_custom_1692278929158{border-top-width: 1px !important;border-right-width: 1px !important;border-bottom-width: 1px !important;border-left-width: 1px !important;border-left-color: #059444 !important;border-left-style: solid !important;border-right-color: #059444 !important;border-right-style: solid !important;border-top-color: #059444 !important;border-top-style: solid !important;border-bottom-color: #059444 !important;border-bottom-style: solid !important;border-radius: 1px !important;}\"][ultimate_heading main_heading=\"Quisque sed nibh tristique\" heading_tag=\"h3\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;\"]\r\n<ul>\r\n 	<li>Duis lorem risus, aliquet a auctor a, venenatis in dui. Praesent et eros et risus dapibus placerat hendrerit cursus magna.</li>\r\n 	<li>Praesent et eros et risus dapibus placerat hendrerit cursus magna.</li>\r\n 	<li>aliquet a auctor a, venenatis in dui.</li>\r\n</ul>\r\n[/ultimate_heading][/ult_animation_block][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner width=\"2/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row disable_element=\"yes\"][vc_column][ultimate_heading main_heading=\"Next Generation\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;margin-bottom:35px;\"][/ultimate_heading][vc_row_inner][vc_column_inner width=\"1/2\"][ult_animation_block animation=\"fadeInUp\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][dt_fancy_image image_id=\"3172\" width=\"300\" border_radius=\"1px\" caption=\"off\" css=\".vc_custom_1692278922309{border-top-width: 1px !important;border-right-width: 1px !important;border-bottom-width: 1px !important;border-left-width: 1px !important;border-left-color: #059444 !important;border-left-style: solid !important;border-right-color: #059444 !important;border-right-style: solid !important;border-top-color: #059444 !important;border-top-style: solid !important;border-bottom-color: #059444 !important;border-bottom-style: solid !important;border-radius: 1px !important;}\"][ultimate_heading main_heading=\"Quisque sed nibh tristique\" heading_tag=\"h3\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;\"]\r\n<ul>\r\n 	<li>Duis lorem risus, aliquet a auctor a, venenatis in dui. Praesent et eros et risus dapibus placerat hendrerit cursus magna.</li>\r\n 	<li>Praesent et eros et risus dapibus placerat hendrerit cursus magna.</li>\r\n 	<li>aliquet a auctor a, venenatis in dui.</li>\r\n</ul>\r\n[/ultimate_heading][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/2\"][ult_animation_block animation=\"fadeInDown\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][dt_fancy_image image_id=\"3171\" width=\"300\" border_radius=\"1px\" caption=\"off\" css=\".vc_custom_1692278929158{border-top-width: 1px !important;border-right-width: 1px !important;border-bottom-width: 1px !important;border-left-width: 1px !important;border-left-color: #059444 !important;border-left-style: solid !important;border-right-color: #059444 !important;border-right-style: solid !important;border-top-color: #059444 !important;border-top-style: solid !important;border-bottom-color: #059444 !important;border-bottom-style: solid !important;border-radius: 1px !important;}\"][ultimate_heading main_heading=\"Quisque sed nibh tristique\" heading_tag=\"h3\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;\"]\r\n<ul>\r\n 	<li>Duis lorem risus, aliquet a auctor a, venenatis in dui. Praesent et eros et risus dapibus placerat hendrerit cursus magna.</li>\r\n 	<li>Praesent et eros et risus dapibus placerat hendrerit cursus magna.</li>\r\n 	<li>aliquet a auctor a, venenatis in dui.</li>\r\n</ul>\r\n[/ultimate_heading][/ult_animation_block][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row]','About us','','inherit','closed','closed','','2917-revision-v1','','','2023-09-24 05:00:32','2023-09-24 05:00:32','',2917,'https://farmchemie.yasithawd.com/?p=3886',0,'revision','',0),(3887,1,'2023-09-24 05:03:00','2023-09-24 05:03:00','[vc_row full_width=\"stretch_row_content_no_spaces\"][vc_column][ultimate_heading main_heading=\"Our History\" main_heading_color=\"#762888\"][/ultimate_heading][/vc_column][/vc_row][vc_row][vc_column][vc_row_inner equal_height=\"yes\" content_placement=\"middle\" css=\".vc_custom_1692359205466{margin-top: 35px !important;}\"][vc_column_inner width=\"1/2\"][ult_animation_block animation=\"fadeInLeftBig\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][vc_single_image image=\"3273\" img_size=\"full\" alignment=\"center\" style=\"vc_box_rounded\"][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/2\"][ult_animation_block animation=\"fadeInRightBig\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][ultimate_heading main_heading=\"Founded in 2002\" heading_tag=\"h3\" main_heading_color=\"#039447\" alignment=\"left\" sub_heading_font_size=\"desktop:18px;\"]Founded in 2002 by Mr. Uditha Wanigasinghe, an agriculturist who had a mission to aid valuable livestock producers in the country to enhance the yield and profitability of production. FARMCHEMIE introduced unprecedented solutions and consistent technical services to gain our customers’ trust and became the market leader in animal health products in 2006 within just four years.[/ultimate_heading][/ult_animation_block][/vc_column_inner][/vc_row_inner][vc_separator color=\"custom\" accent_color=\"#039447\"][vc_row_inner equal_height=\"yes\" rtl_reverse=\"yes\" content_placement=\"middle\" css=\".vc_custom_1692359216075{margin-top: 35px !important;}\"][vc_column_inner width=\"1/2\" offset=\"vc_hidden-xs\"][ult_animation_block animation=\"fadeInLeftBig\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][ultimate_heading main_heading=\"2006\" heading_tag=\"h3\" main_heading_color=\"#039447\" alignment=\"right\"]In 2006, the Sri Lankan poultry industry was affected with Avian Influenza which became a difficult period for the growth of FARMCHEMIE. This was the key factor in our decision to diversify into Agro Products. PLANTCHEM &amp; PLANTSEEDS were established to offer solutions in Agro specialty fertilizers, pesticides and seeds to invaluable cultivators.[/ultimate_heading][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/2\" offset=\"vc_hidden-xs\"][ult_animation_block animation=\"fadeInRightBig\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][vc_single_image image=\"3276\" img_size=\"full\" alignment=\"center\" style=\"vc_box_rounded\"][/ult_animation_block][/vc_column_inner][/vc_row_inner][vc_row_inner equal_height=\"yes\" rtl_reverse=\"yes\" content_placement=\"middle\" css=\".vc_custom_1692359216075{margin-top: 35px !important;}\"][vc_column_inner width=\"1/2\" offset=\"vc_hidden-lg vc_hidden-md vc_hidden-sm\"][ult_animation_block animation=\"fadeInRightBig\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][vc_single_image image=\"3276\" img_size=\"full\" alignment=\"center\" style=\"vc_box_rounded\"][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/2\" offset=\"vc_hidden-lg vc_hidden-md vc_hidden-sm\"][ult_animation_block animation=\"fadeInLeftBig\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][ultimate_heading main_heading=\"2006\" heading_tag=\"h3\" main_heading_color=\"#039447\" alignment=\"left\"]\r\n\r\nIn 2006, the Sri Lankan poultry industry was affected with Avian Influenza which became a difficult period for the growth of FARMCHEMIE. This was the key factor in our decision to diversify into Agro Products. PLANTCHEM &amp; PLANTSEEDS were established to offer solutions in Agro specialty fertilizers, pesticides and seeds to invaluable cultivators.\r\n\r\n[/ultimate_heading][/ult_animation_block][/vc_column_inner][/vc_row_inner][vc_separator color=\"custom\" accent_color=\"#039447\"][vc_row_inner equal_height=\"yes\" content_placement=\"middle\" css=\".vc_custom_1692359231594{margin-top: 35px !important;}\"][vc_column_inner width=\"1/2\"][ult_animation_block animation=\"fadeInLeftBig\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][vc_single_image image=\"3277\" img_size=\"full\" alignment=\"center\" style=\"vc_box_rounded\"][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/2\"][ult_animation_block animation=\"fadeInRightBig\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][ultimate_heading main_heading=\"2010\" heading_tag=\"h3\" main_heading_color=\"#039447\" alignment=\"left\"]In 2010, FEED CHEMIE became the subsequent addition to ever-growing vision of Mr. Uditha Wanigasinghe and entered the Animal Feed Additives market.[/ultimate_heading][/ult_animation_block][/vc_column_inner][/vc_row_inner][vc_separator color=\"custom\" accent_color=\"#039447\"][vc_row_inner equal_height=\"yes\" rtl_reverse=\"yes\" content_placement=\"middle\" css=\".vc_custom_1692359239274{margin-top: 35px !important;}\"][vc_column_inner width=\"1/2\" offset=\"vc_hidden-xs\"][ult_animation_block animation=\"fadeInLeftBig\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][ultimate_heading main_heading=\"2012\" heading_tag=\"h3\" main_heading_color=\"#039447\" alignment=\"right\"]The year 2012 is described as a turning point in our journey as FARMCHEMIE established our first production facility for the manufacturing and packing of animal health products. FARMCHEMIE became the first animal health organization in Sri Lanka to obtain ISO 9001:2015 and WHO GMP International Quality Certification. With our own formulation unit, FARMCHEMIE was able to offer customized solutions to cater the needs of the Sri Lankan Livestock Industry.[/ultimate_heading][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/2\" offset=\"vc_hidden-xs\"][ult_animation_block animation=\"fadeInRightBig\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][vc_single_image image=\"3278\" img_size=\"full\" alignment=\"center\" style=\"vc_box_rounded\"][/ult_animation_block][/vc_column_inner][/vc_row_inner][vc_row_inner equal_height=\"yes\" rtl_reverse=\"yes\" content_placement=\"middle\" css=\".vc_custom_1692359239274{margin-top: 35px !important;}\"][vc_column_inner width=\"1/2\" offset=\"vc_hidden-lg vc_hidden-md vc_hidden-sm\"][ult_animation_block animation=\"fadeInRightBig\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][vc_single_image image=\"3278\" img_size=\"full\" alignment=\"center\" style=\"vc_box_rounded\"][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/2\" offset=\"vc_hidden-lg vc_hidden-md vc_hidden-sm\"][ult_animation_block animation=\"fadeInLeftBig\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][ultimate_heading main_heading=\"2012\" heading_tag=\"h3\" main_heading_color=\"#039447\" alignment=\"left\"]The year 2012 is described as a turning point in our journey as FARMCHEMIE established our first production facility for the manufacturing and packing of animal health products. FARMCHEMIE became the first animal health organization in Sri Lanka to obtain ISO 9001:2015 and WHO GMP International Quality Certification. With our own formulation unit, FARMCHEMIE was able to offer customized solutions to cater the needs of the Sri Lankan Livestock Industry.[/ultimate_heading][/ult_animation_block][/vc_column_inner][/vc_row_inner][vc_separator color=\"custom\" accent_color=\"#039447\"][vc_row_inner content_placement=\"middle\" css=\".vc_custom_1692359246626{margin-top: 35px !important;}\"][vc_column_inner width=\"1/2\"][ult_animation_block animation=\"fadeInLeftBig\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][vc_single_image image=\"3279\" img_size=\"full\" alignment=\"center\" style=\"vc_box_rounded\"][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/2\"][ult_animation_block animation=\"fadeInRightBig\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][ultimate_heading main_heading=\"2016\" heading_tag=\"h3\" main_heading_color=\"#039447\" alignment=\"left\"]The year 2016 was another key milestone with the entry to the International Markets. FARMCHEMIE exported our first Feed Premix consignment to India and in 2018 our export operation was distinctly established as FARMCHEMIE MANUFACTURERS, a Board of Investment (BOI) approved entity.[/ultimate_heading][/ult_animation_block][/vc_column_inner][/vc_row_inner][vc_separator color=\"custom\" accent_color=\"#039447\"][vc_row_inner equal_height=\"yes\" rtl_reverse=\"yes\" content_placement=\"middle\" css=\".vc_custom_1695527931440{margin-top: 35px !important;}\"][vc_column_inner width=\"1/2\" offset=\"vc_hidden-xs\"][ult_animation_block animation=\"fadeInLeftBig\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][ultimate_heading main_heading=\"Fully automated manufacturing\" heading_tag=\"h3\" main_heading_color=\"#039447\" alignment=\"right\"]FARMCHEMIE MANUFACTURERS has invested in fully automated manufacturing facility from Bühler and became the first Sri Lankan owned company to obtain FAMI-QS International Quality Certification.[/ultimate_heading][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/2\" offset=\"vc_hidden-xs\"][ult_animation_block animation=\"fadeInRightBig\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][vc_single_image image=\"3280\" img_size=\"full\" alignment=\"center\" style=\"vc_box_rounded\"][/ult_animation_block][/vc_column_inner][/vc_row_inner][vc_row_inner equal_height=\"yes\" rtl_reverse=\"yes\" content_placement=\"middle\" css=\".vc_custom_1695527931440{margin-top: 35px !important;}\"][vc_column_inner width=\"1/2\" offset=\"vc_hidden-lg vc_hidden-md vc_hidden-sm\"][ult_animation_block animation=\"fadeInRightBig\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][vc_single_image image=\"3280\" img_size=\"full\" alignment=\"center\" style=\"vc_box_rounded\"][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/2\" offset=\"vc_hidden-lg vc_hidden-md vc_hidden-sm\"][ult_animation_block animation=\"fadeInLeftBig\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][ultimate_heading main_heading=\"Fully automated manufacturing\" heading_tag=\"h3\" main_heading_color=\"#039447\" alignment=\"left\"]FARMCHEMIE MANUFACTURERS has invested in fully automated manufacturing facility from Bühler and became the first Sri Lankan owned company to obtain FAMI-QS International Quality Certification.[/ultimate_heading][/ult_animation_block][/vc_column_inner][/vc_row_inner][vc_separator color=\"custom\" accent_color=\"#039447\"][vc_row_inner equal_height=\"yes\" content_placement=\"middle\" css=\".vc_custom_1692359258634{margin-top: 35px !important;}\"][vc_column_inner width=\"1/2\"][ult_animation_block animation=\"fadeInLeftBig\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][vc_single_image image=\"3281\" img_size=\"full\" alignment=\"center\" style=\"vc_box_rounded\"][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/2\"][ult_animation_block animation=\"fadeInRightBig\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][ultimate_heading main_heading=\"Official toll manufacturer partner\" heading_tag=\"h3\" main_heading_color=\"#039447\" alignment=\"left\"]With the trust and reputation built as a reliable manufacturer of animal feed additives and supplements in the global market, several world-renowned international brands have appointed FARMCHEMIE MANUFACTURERS as the official toll manufacturer partner. FARMCHEMIE MANUFACTURERS exports a wide range of products consisting of premixes, specialty feed additives, oral liquid supplements and pet supplements to various markets in South Asia, East Asia, Middle East and Africa.\r\n\r\nFARMCHEMIE, FEED CHEMIE &amp; FARMCHEMIE MANUFACTURERS currently operate under the ownership of our holding company, DYVESTA.\r\n\r\nDYEVSTA has become the pinnacle of Animal Nutrition and Health.\r\n\r\nDYVESTA is Dynamic, through our continuous evolution, growth and progress. DYVESTA is Diverse, in terms of both our business strategy and our community. DYVESTA is Devoted to our valuable business partners through exceptional service.[/ultimate_heading][/ult_animation_block][/vc_column_inner][/vc_row_inner][vc_separator color=\"custom\" accent_color=\"#039447\"][/vc_column][/vc_row][vc_row full_width=\"stretch_row\" equal_height=\"yes\" bg_type=\"image\" parallax_style=\"vcpb-vz-jquery\" bg_image_new=\"id^3256|url^https://farmchemie.yasithawd.com/wp-content/uploads/2023/08/Vision-Mission.png|caption^null|alt^null|title^Vision-&amp;-Mission|description^null\" bg_image_repeat=\"no-repeat\" enable_overlay=\"enable_overlay_value\" overlay_color=\"#000000\" overlay_pattern=\"01.png\" overlay_pattern_opacity=\"5\" css=\".vc_custom_1692366072362{margin-top: 35px !important;padding-top: 65px !important;padding-bottom: 100px !important;}\"][vc_column][vc_row_inner equal_height=\"yes\"][vc_column_inner width=\"1/2\"][ult_animation_block animation=\"fadeInLeftBig\" animation_duration=\"2\" animation_delay=\"0\" animation_iteration_count=\"1\"][ultimate_heading main_heading=\"Vision\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\"]To be the customers’ first and best choice by ensuring outstanding satisfaction through a well-trained and dedicated team. Prompt and quality solutions to our customers’ requirements will determine the increase of return on investment for us.[/ultimate_heading][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/2\"][ult_animation_block animation=\"fadeInRightBig\" animation_duration=\"2\" animation_delay=\"0\" animation_iteration_count=\"1\"][ultimate_heading main_heading=\"Mission\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\"]To become a world renowned manufacturer of Animal Health products and a trusted partner among our stakeholders for our integrity as well as for providing effective solutions[/ultimate_heading][/ult_animation_block][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row css=\".vc_custom_1684836308288{margin-top: 15px !important;}\"][vc_column][ultimate_heading main_heading=\"Achievements\" main_heading_color=\"#762888\" main_heading_margin=\"margin-top:35px;\"][/ultimate_heading][vc_row_inner gap=\"20\"][vc_column_inner width=\"1/2\" css=\".vc_custom_1691995519863{background-color: #f4ab20 !important;border: 1px solid #f4ab20 !important;border-radius: 35px !important;}\"][ult_animation_block animation=\"fadeInLeftBig\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][bsf-info-box icon_type=\"custom\" icon_img=\"id^3117|url^https://farmchemie.yasithawd.com/wp-content/uploads/2023/08/Pink_-H.png|caption^null|alt^null|title^Pink_-H|description^null\" img_width=\"60\" icon_style=\"advanced\" icon_border_style=\"solid\" icon_color_border=\"#ffffff\" icon_border_size=\"1\" icon_border_radius=\"500\" icon_border_spacing=\"1\" title=\"First Free Sale Certificate obtained from Veterinary Drug Control Authority (VDCA) for Veterinary Pharmaceuticals\" title_font_style=\"font-weight:bold;\" title_font_size=\"desktop:20px;\"][/bsf-info-box][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/2\" css=\".vc_custom_1691995661095{background-color: #722f8b !important;border: 1px solid #722f8b !important;border-radius: 35px !important;}\"][ult_animation_block animation=\"fadeInRightBig\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][bsf-info-box icon_type=\"custom\" icon_img=\"id^3117|url^https://farmchemie.yasithawd.com/wp-content/uploads/2023/08/Pink_-H.png|caption^null|alt^null|title^Pink_-H|description^null\" img_width=\"60\" icon_style=\"advanced\" icon_border_style=\"solid\" icon_color_border=\"#ffffff\" icon_border_size=\"1\" icon_border_radius=\"500\" icon_border_spacing=\"1\" title=\"First ISO 9001: 2015 ,WHO-GMP Quality Management systems certified Animal Health company in Sri Lanka since August, 2012\" title_font_style=\"font-weight:bold;\" title_font_color=\"#ffffff\" title_font_size=\"desktop:20px;\"][/bsf-info-box][/ult_animation_block][/vc_column_inner][/vc_row_inner][vc_row_inner gap=\"20\"][vc_column_inner width=\"1/2\" css=\".vc_custom_1691995661095{background-color: #722f8b !important;border: 1px solid #722f8b !important;border-radius: 35px !important;}\"][ult_animation_block animation=\"fadeInLeftBig\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][bsf-info-box icon_type=\"custom\" icon_img=\"id^3117|url^https://farmchemie.yasithawd.com/wp-content/uploads/2023/08/Pink_-H.png|caption^null|alt^null|title^Pink_-H|description^null\" img_width=\"60\" icon_style=\"advanced\" icon_border_style=\"solid\" icon_color_border=\"#ffffff\" icon_border_size=\"1\" icon_border_radius=\"500\" icon_border_spacing=\"1\" title=\"First FAMI-QS certified company in sri lanka\" title_font_style=\"font-weight:bold;\" title_font_color=\"#ffffff\" title_font_size=\"desktop:20px;\"][/bsf-info-box][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/2\" css=\".vc_custom_1691995519863{background-color: #f4ab20 !important;border: 1px solid #f4ab20 !important;border-radius: 35px !important;}\"][ult_animation_block animation=\"fadeInRightBig\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][bsf-info-box icon_type=\"custom\" icon_img=\"id^3117|url^https://farmchemie.yasithawd.com/wp-content/uploads/2023/08/Pink_-H.png|caption^null|alt^null|title^Pink_-H|description^null\" img_width=\"60\" icon_style=\"advanced\" icon_border_style=\"solid\" icon_color_border=\"#ffffff\" icon_border_size=\"1\" icon_border_radius=\"500\" icon_border_spacing=\"1\" title=\"First Certificate of Ethical Trading certified in Livestock industry\" title_font_style=\"font-weight:bold;\" title_font_size=\"desktop:20px;\"][/bsf-info-box][/ult_animation_block][/vc_column_inner][/vc_row_inner][vc_row_inner gap=\"20\"][vc_column_inner width=\"1/4\" css=\".vc_custom_1695528026328{border-radius: 35px !important;}\" offset=\"vc_hidden-xs\"][/vc_column_inner][vc_column_inner width=\"2/4\" css=\".vc_custom_1691995519863{background-color: #f4ab20 !important;border: 1px solid #f4ab20 !important;border-radius: 35px !important;}\"][ult_animation_block animation=\"fadeInLeftBig\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][bsf-info-box icon_type=\"custom\" icon_img=\"id^3117|url^https://farmchemie.yasithawd.com/wp-content/uploads/2023/08/Pink_-H.png|caption^null|alt^null|title^Pink_-H|description^null\" img_width=\"60\" icon_style=\"advanced\" icon_border_style=\"solid\" icon_color_border=\"#ffffff\" icon_border_size=\"1\" icon_border_radius=\"500\" icon_border_spacing=\"1\" title=\"First Silver awarded company at National Exports Awards in Livestock industry\" title_font_style=\"font-weight:bold;\" title_font_size=\"desktop:20px;\"][/bsf-info-box][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/4\" offset=\"vc_hidden-xs\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row full_width=\"stretch_row\" equal_height=\"yes\" content_placement=\"bottom\" css=\".vc_custom_1693627699480{margin-top: 15px !important;}\"][vc_column][ultimate_heading main_heading=\"Certifications\" main_heading_color=\"#762888\" main_heading_margin=\"margin-top:35px;\"][/ultimate_heading][vc_row_inner content_placement=\"bottom\"][vc_column_inner width=\"1/6\"][dt_fancy_image image_id=\"3408\" width=\"300\" caption=\"off\"][/vc_column_inner][vc_column_inner width=\"1/6\"][dt_fancy_image image_id=\"3407\" width=\"150\" caption=\"off\"][/vc_column_inner][vc_column_inner width=\"1/6\"][dt_fancy_image image_id=\"3409\" width=\"150\" caption=\"off\"][/vc_column_inner][vc_column_inner width=\"1/6\"][dt_fancy_image image_id=\"3410\" width=\"130\" caption=\"off\"][/vc_column_inner][vc_column_inner width=\"1/6\"][dt_fancy_image image_id=\"3411\" width=\"150\" caption=\"off\"][/vc_column_inner][vc_column_inner width=\"1/6\"][dt_fancy_image image_id=\"3406\" width=\"150\" caption=\"off\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row full_width=\"stretch_row\" equal_height=\"yes\" content_placement=\"bottom\" css=\".vc_custom_1693625624233{margin-top: 15px !important;}\"][vc_column][ultimate_heading main_heading=\"Awards\" main_heading_color=\"#762888\" main_heading_margin=\"margin-top:35px;\"][/ultimate_heading][ultimate_carousel slide_to_scroll=\"single\" slides_on_mob=\"1\"][dt_fancy_image image_id=\"3412\" width=\"300\"][dt_fancy_image image_id=\"3413\" width=\"300\" caption=\"off\"][dt_fancy_image image_id=\"3414\" width=\"300\" caption=\"off\"][dt_fancy_image image_id=\"3415\" width=\"300\" caption=\"off\"][dt_fancy_image image_id=\"3416\" width=\"300\" caption=\"off\"][dt_fancy_image image_id=\"3417\" width=\"300\" caption=\"off\"][dt_fancy_image image_id=\"3418\" width=\"300\" caption=\"off\"][dt_fancy_image image_id=\"3420\" width=\"300\" caption=\"off\"][dt_fancy_image image_id=\"3419\" width=\"300\" caption=\"off\"][dt_fancy_image image_id=\"3422\" width=\"300\" caption=\"off\"][dt_fancy_image image_id=\"3421\" width=\"300\" caption=\"off\"][dt_fancy_image image_id=\"3422\" width=\"300\" caption=\"off\"][dt_fancy_image image_id=\"3423\" width=\"300\" caption=\"off\"][dt_fancy_image image_id=\"3424\" width=\"300\" caption=\"off\"][dt_fancy_image image_id=\"3425\" width=\"300\" caption=\"off\"][/ultimate_carousel][/vc_column][/vc_row][vc_row disable_element=\"yes\" css=\".vc_custom_1695294608306{margin-top: 15px !important;}\"][vc_column][ultimate_heading main_heading=\"Board Of Directors\" main_heading_color=\"#762888\" main_heading_margin=\"margin-top:35px;margin-bottom:35px;\"][/ultimate_heading][ultimate_carousel slides_on_desk=\"3\" slides_on_mob=\"1\" arrow_style=\"square-bg\" arrow_bg_color=\"#039447\" arrow_color=\"#ffffff\" next_icon=\"ultsl-arrow-right6\" prev_icon=\"ultsl-arrow-left6\" dots_color=\"#039447\" item_animation=\"fadeIn\" css_ad_caraousel=\".vc_custom_1694697209111{padding-right: 10px !important;padding-left: 10px !important;}\"][vc_row_inner][vc_column_inner][ultimate_heading main_heading=\"Uditha Wanigasinghe\" heading_tag=\"h3\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;\"]Managing Director[/ultimate_heading][ultimate_modal modal_title=\"Read more\" btn_size=\"md\" btn_bg_color=\"#089548\" btn_text=\"Read more\" overlay_bg_opacity=\"75\" img_size=\"80\" btn_txt_color=\"#ffffff\"]pretium mauris pretium mauris pretium mauris pretium mauris pretium mauris pretium mauris pretium mauris pretium mauris pretium mauris pretium mauris pretium mauris pretium mauris pretium mauris pretium mauris pretium mauris pretium mauris pretium mauris pretium mauris pretium mauris pretium mauris pretium mauris pretium mauris pretium mauris pretium mauris pretium mauris pretium mauris pretium mauris pretium mauris[/ultimate_modal][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner][ultimate_heading main_heading=\"Senitha Wanigasinghe\" heading_tag=\"h3\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;\"]Director/ CEO[/ultimate_heading][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner][ultimate_heading main_heading=\"Thulitha Wanigasinghe\" heading_tag=\"h3\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;\"]Director - Veterinary Services &amp; RA[/ultimate_heading][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner][ultimate_heading main_heading=\"Yvonne Van Cuylenberg\" heading_tag=\"h3\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;\"]Director - HR &amp; Administration[/ultimate_heading][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner][ultimate_heading main_heading=\"Gamini Wanigasinghe\" heading_tag=\"h3\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;\"]Director[/ultimate_heading][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner][ultimate_heading main_heading=\"Ajith Welianga\" heading_tag=\"h3\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;\"]Director - Marketing[/ultimate_heading][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner][ultimate_heading main_heading=\"Sunil Ranjith Guruge\" heading_tag=\"h3\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;\"]Director - Customer &amp; Employee Relations[/ultimate_heading][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner][ultimate_heading main_heading=\"Sampath Gunathilake\" heading_tag=\"h3\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;\"]Director - Sales[/ultimate_heading][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner][ultimate_heading main_heading=\"Chanaka Indrajith\" heading_tag=\"h3\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;\"]Director Production / COO[/ultimate_heading][/vc_column_inner][/vc_row_inner][/ultimate_carousel][/vc_column][/vc_row][vc_row disable_element=\"yes\"][vc_column][ultimate_heading main_heading=\"Board Of Directors\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;margin-bottom:35px;\"][/ultimate_heading][vc_row_inner][vc_column_inner width=\"1/3\"][ult_animation_block animation=\"fadeInUp\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][dt_fancy_image image_id=\"3172\" width=\"300\" border_radius=\"1px\" caption=\"off\" css=\".vc_custom_1692278922309{border-top-width: 1px !important;border-right-width: 1px !important;border-bottom-width: 1px !important;border-left-width: 1px !important;border-left-color: #059444 !important;border-left-style: solid !important;border-right-color: #059444 !important;border-right-style: solid !important;border-top-color: #059444 !important;border-top-style: solid !important;border-bottom-color: #059444 !important;border-bottom-style: solid !important;border-radius: 1px !important;}\"][ultimate_heading main_heading=\"Quisque sed nibh tristique\" heading_tag=\"h3\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;\"]\r\n<ul>\r\n 	<li>Duis lorem risus, aliquet a auctor a, venenatis in dui. Praesent et eros et risus dapibus placerat hendrerit cursus magna.</li>\r\n 	<li>Praesent et eros et risus dapibus placerat hendrerit cursus magna.</li>\r\n 	<li>aliquet a auctor a, venenatis in dui.</li>\r\n</ul>\r\n[/ultimate_heading][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/3\"][ult_animation_block animation=\"fadeInDown\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][dt_fancy_image image_id=\"3171\" width=\"300\" border_radius=\"1px\" caption=\"off\" css=\".vc_custom_1692278929158{border-top-width: 1px !important;border-right-width: 1px !important;border-bottom-width: 1px !important;border-left-width: 1px !important;border-left-color: #059444 !important;border-left-style: solid !important;border-right-color: #059444 !important;border-right-style: solid !important;border-top-color: #059444 !important;border-top-style: solid !important;border-bottom-color: #059444 !important;border-bottom-style: solid !important;border-radius: 1px !important;}\"][ultimate_heading main_heading=\"Quisque sed nibh tristique\" heading_tag=\"h3\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;\"]\r\n<ul>\r\n 	<li>Duis lorem risus, aliquet a auctor a, venenatis in dui. Praesent et eros et risus dapibus placerat hendrerit cursus magna.</li>\r\n 	<li>Praesent et eros et risus dapibus placerat hendrerit cursus magna.</li>\r\n 	<li>aliquet a auctor a, venenatis in dui.</li>\r\n</ul>\r\n[/ultimate_heading][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/3\"][ult_animation_block animation=\"fadeInUp\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][dt_fancy_image image_id=\"3170\" width=\"300\" border_radius=\"1px\" caption=\"off\" css=\".vc_custom_1692278936750{border-top-width: 1px !important;border-right-width: 1px !important;border-bottom-width: 1px !important;border-left-width: 1px !important;border-left-color: #059444 !important;border-left-style: solid !important;border-right-color: #059444 !important;border-right-style: solid !important;border-top-color: #059444 !important;border-top-style: solid !important;border-bottom-color: #059444 !important;border-bottom-style: solid !important;border-radius: 1px !important;}\"][ultimate_heading main_heading=\"Quisque sed nibh tristique\" heading_tag=\"h3\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;\"]\r\n<ul>\r\n 	<li>Duis lorem risus, aliquet a auctor a, venenatis in dui. Praesent et eros et risus dapibus placerat hendrerit cursus magna.</li>\r\n 	<li>Praesent et eros et risus dapibus placerat hendrerit cursus magna.</li>\r\n 	<li>aliquet a auctor a, venenatis in dui.</li>\r\n</ul>\r\n[/ultimate_heading][/ult_animation_block][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row disable_element=\"yes\"][vc_column][ultimate_heading main_heading=\"Executive Directors\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;margin-bottom:35px;\"][/ultimate_heading][vc_row_inner][vc_column_inner width=\"1/5\"][ult_animation_block animation=\"fadeInUp\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][dt_fancy_image image_id=\"3172\" width=\"300\" border_radius=\"1px\" caption=\"off\" css=\".vc_custom_1692278922309{border-top-width: 1px !important;border-right-width: 1px !important;border-bottom-width: 1px !important;border-left-width: 1px !important;border-left-color: #059444 !important;border-left-style: solid !important;border-right-color: #059444 !important;border-right-style: solid !important;border-top-color: #059444 !important;border-top-style: solid !important;border-bottom-color: #059444 !important;border-bottom-style: solid !important;border-radius: 1px !important;}\"][ultimate_heading main_heading=\"Quisque sed nibh tristique\" heading_tag=\"h3\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;\"]\r\n<ul>\r\n 	<li>Duis lorem risus, aliquet a auctor a, venenatis in dui. Praesent et eros et risus dapibus placerat hendrerit cursus magna.</li>\r\n 	<li>Praesent et eros et risus dapibus placerat hendrerit cursus magna.</li>\r\n 	<li>aliquet a auctor a, venenatis in dui.</li>\r\n</ul>\r\n[/ultimate_heading][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/5\"][ult_animation_block animation=\"fadeInDown\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][dt_fancy_image image_id=\"3171\" width=\"300\" border_radius=\"1px\" caption=\"off\" css=\".vc_custom_1692278929158{border-top-width: 1px !important;border-right-width: 1px !important;border-bottom-width: 1px !important;border-left-width: 1px !important;border-left-color: #059444 !important;border-left-style: solid !important;border-right-color: #059444 !important;border-right-style: solid !important;border-top-color: #059444 !important;border-top-style: solid !important;border-bottom-color: #059444 !important;border-bottom-style: solid !important;border-radius: 1px !important;}\"][ultimate_heading main_heading=\"Quisque sed nibh tristique\" heading_tag=\"h3\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;\"]\r\n<ul>\r\n 	<li>Duis lorem risus, aliquet a auctor a, venenatis in dui. Praesent et eros et risus dapibus placerat hendrerit cursus magna.</li>\r\n 	<li>Praesent et eros et risus dapibus placerat hendrerit cursus magna.</li>\r\n 	<li>aliquet a auctor a, venenatis in dui.</li>\r\n</ul>\r\n[/ultimate_heading][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/5\"][ult_animation_block animation=\"fadeInUp\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][dt_fancy_image image_id=\"3170\" width=\"300\" border_radius=\"1px\" caption=\"off\" css=\".vc_custom_1692278936750{border-top-width: 1px !important;border-right-width: 1px !important;border-bottom-width: 1px !important;border-left-width: 1px !important;border-left-color: #059444 !important;border-left-style: solid !important;border-right-color: #059444 !important;border-right-style: solid !important;border-top-color: #059444 !important;border-top-style: solid !important;border-bottom-color: #059444 !important;border-bottom-style: solid !important;border-radius: 1px !important;}\"][ultimate_heading main_heading=\"Quisque sed nibh tristique\" heading_tag=\"h3\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;\"]\r\n<ul>\r\n 	<li>Duis lorem risus, aliquet a auctor a, venenatis in dui. Praesent et eros et risus dapibus placerat hendrerit cursus magna.</li>\r\n 	<li>Praesent et eros et risus dapibus placerat hendrerit cursus magna.</li>\r\n 	<li>aliquet a auctor a, venenatis in dui.</li>\r\n</ul>\r\n[/ultimate_heading][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/5\"][ult_animation_block animation=\"fadeInDown\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][dt_fancy_image image_id=\"3170\" width=\"300\" border_radius=\"1px\" caption=\"off\" css=\".vc_custom_1692278936750{border-top-width: 1px !important;border-right-width: 1px !important;border-bottom-width: 1px !important;border-left-width: 1px !important;border-left-color: #059444 !important;border-left-style: solid !important;border-right-color: #059444 !important;border-right-style: solid !important;border-top-color: #059444 !important;border-top-style: solid !important;border-bottom-color: #059444 !important;border-bottom-style: solid !important;border-radius: 1px !important;}\"][ultimate_heading main_heading=\"Quisque sed nibh tristique\" heading_tag=\"h3\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;\"]\r\n<ul>\r\n 	<li>Duis lorem risus, aliquet a auctor a, venenatis in dui. Praesent et eros et risus dapibus placerat hendrerit cursus magna.</li>\r\n 	<li>Praesent et eros et risus dapibus placerat hendrerit cursus magna.</li>\r\n 	<li>aliquet a auctor a, venenatis in dui.</li>\r\n</ul>\r\n[/ultimate_heading][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/5\"][ult_animation_block animation=\"fadeInDown\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][dt_fancy_image image_id=\"3171\" width=\"300\" border_radius=\"1px\" caption=\"off\" css=\".vc_custom_1692278929158{border-top-width: 1px !important;border-right-width: 1px !important;border-bottom-width: 1px !important;border-left-width: 1px !important;border-left-color: #059444 !important;border-left-style: solid !important;border-right-color: #059444 !important;border-right-style: solid !important;border-top-color: #059444 !important;border-top-style: solid !important;border-bottom-color: #059444 !important;border-bottom-style: solid !important;border-radius: 1px !important;}\"][ultimate_heading main_heading=\"Quisque sed nibh tristique\" heading_tag=\"h3\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;\"]\r\n<ul>\r\n 	<li>Duis lorem risus, aliquet a auctor a, venenatis in dui. Praesent et eros et risus dapibus placerat hendrerit cursus magna.</li>\r\n 	<li>Praesent et eros et risus dapibus placerat hendrerit cursus magna.</li>\r\n 	<li>aliquet a auctor a, venenatis in dui.</li>\r\n</ul>\r\n[/ultimate_heading][/ult_animation_block][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner width=\"2/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row disable_element=\"yes\"][vc_column][ultimate_heading main_heading=\"Next Generation\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;margin-bottom:35px;\"][/ultimate_heading][vc_row_inner][vc_column_inner width=\"1/2\"][ult_animation_block animation=\"fadeInUp\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][dt_fancy_image image_id=\"3172\" width=\"300\" border_radius=\"1px\" caption=\"off\" css=\".vc_custom_1692278922309{border-top-width: 1px !important;border-right-width: 1px !important;border-bottom-width: 1px !important;border-left-width: 1px !important;border-left-color: #059444 !important;border-left-style: solid !important;border-right-color: #059444 !important;border-right-style: solid !important;border-top-color: #059444 !important;border-top-style: solid !important;border-bottom-color: #059444 !important;border-bottom-style: solid !important;border-radius: 1px !important;}\"][ultimate_heading main_heading=\"Quisque sed nibh tristique\" heading_tag=\"h3\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;\"]\r\n<ul>\r\n 	<li>Duis lorem risus, aliquet a auctor a, venenatis in dui. Praesent et eros et risus dapibus placerat hendrerit cursus magna.</li>\r\n 	<li>Praesent et eros et risus dapibus placerat hendrerit cursus magna.</li>\r\n 	<li>aliquet a auctor a, venenatis in dui.</li>\r\n</ul>\r\n[/ultimate_heading][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/2\"][ult_animation_block animation=\"fadeInDown\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][dt_fancy_image image_id=\"3171\" width=\"300\" border_radius=\"1px\" caption=\"off\" css=\".vc_custom_1692278929158{border-top-width: 1px !important;border-right-width: 1px !important;border-bottom-width: 1px !important;border-left-width: 1px !important;border-left-color: #059444 !important;border-left-style: solid !important;border-right-color: #059444 !important;border-right-style: solid !important;border-top-color: #059444 !important;border-top-style: solid !important;border-bottom-color: #059444 !important;border-bottom-style: solid !important;border-radius: 1px !important;}\"][ultimate_heading main_heading=\"Quisque sed nibh tristique\" heading_tag=\"h3\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;\"]\r\n<ul>\r\n 	<li>Duis lorem risus, aliquet a auctor a, venenatis in dui. Praesent et eros et risus dapibus placerat hendrerit cursus magna.</li>\r\n 	<li>Praesent et eros et risus dapibus placerat hendrerit cursus magna.</li>\r\n 	<li>aliquet a auctor a, venenatis in dui.</li>\r\n</ul>\r\n[/ultimate_heading][/ult_animation_block][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row]','About us','','inherit','closed','closed','','2917-revision-v1','','','2023-09-24 05:03:00','2023-09-24 05:03:00','',2917,'https://farmchemie.yasithawd.com/?p=3887',0,'revision','',0),(3888,1,'2023-09-24 05:04:09','2023-09-24 05:04:09','[vc_row full_width=\"stretch_row_content_no_spaces\"][vc_column][ultimate_heading main_heading=\"Our History\" main_heading_color=\"#762888\"][/ultimate_heading][/vc_column][/vc_row][vc_row][vc_column][vc_row_inner equal_height=\"yes\" content_placement=\"middle\" css=\".vc_custom_1692359205466{margin-top: 35px !important;}\"][vc_column_inner width=\"1/2\"][ult_animation_block animation=\"fadeInLeftBig\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][vc_single_image image=\"3273\" img_size=\"full\" alignment=\"center\" style=\"vc_box_rounded\"][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/2\"][ult_animation_block animation=\"fadeInRightBig\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][ultimate_heading main_heading=\"Founded in 2002\" heading_tag=\"h3\" main_heading_color=\"#039447\" alignment=\"left\" sub_heading_font_size=\"desktop:18px;\"]Founded in 2002 by Mr. Uditha Wanigasinghe, an agriculturist who had a mission to aid valuable livestock producers in the country to enhance the yield and profitability of production. FARMCHEMIE introduced unprecedented solutions and consistent technical services to gain our customers’ trust and became the market leader in animal health products in 2006 within just four years.[/ultimate_heading][/ult_animation_block][/vc_column_inner][/vc_row_inner][vc_separator color=\"custom\" accent_color=\"#039447\"][vc_row_inner equal_height=\"yes\" rtl_reverse=\"yes\" content_placement=\"middle\" css=\".vc_custom_1692359216075{margin-top: 35px !important;}\"][vc_column_inner width=\"1/2\" offset=\"vc_hidden-xs\"][ult_animation_block animation=\"fadeInLeftBig\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][ultimate_heading main_heading=\"2006\" heading_tag=\"h3\" main_heading_color=\"#039447\" alignment=\"right\"]In 2006, the Sri Lankan poultry industry was affected with Avian Influenza which became a difficult period for the growth of FARMCHEMIE. This was the key factor in our decision to diversify into Agro Products. PLANTCHEM &amp; PLANTSEEDS were established to offer solutions in Agro specialty fertilizers, pesticides and seeds to invaluable cultivators.[/ultimate_heading][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/2\" offset=\"vc_hidden-xs\"][ult_animation_block animation=\"fadeInRightBig\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][vc_single_image image=\"3276\" img_size=\"full\" alignment=\"center\" style=\"vc_box_rounded\"][/ult_animation_block][/vc_column_inner][/vc_row_inner][vc_row_inner equal_height=\"yes\" rtl_reverse=\"yes\" content_placement=\"middle\" css=\".vc_custom_1692359216075{margin-top: 35px !important;}\"][vc_column_inner width=\"1/2\" offset=\"vc_hidden-lg vc_hidden-md vc_hidden-sm\"][ult_animation_block animation=\"fadeInRightBig\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][vc_single_image image=\"3276\" img_size=\"full\" alignment=\"center\" style=\"vc_box_rounded\"][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/2\" offset=\"vc_hidden-lg vc_hidden-md vc_hidden-sm\"][ult_animation_block animation=\"fadeInLeftBig\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][ultimate_heading main_heading=\"2006\" heading_tag=\"h3\" main_heading_color=\"#039447\" alignment=\"left\"]\r\n\r\nIn 2006, the Sri Lankan poultry industry was affected with Avian Influenza which became a difficult period for the growth of FARMCHEMIE. This was the key factor in our decision to diversify into Agro Products. PLANTCHEM &amp; PLANTSEEDS were established to offer solutions in Agro specialty fertilizers, pesticides and seeds to invaluable cultivators.\r\n\r\n[/ultimate_heading][/ult_animation_block][/vc_column_inner][/vc_row_inner][vc_separator color=\"custom\" accent_color=\"#039447\"][vc_row_inner equal_height=\"yes\" content_placement=\"middle\" css=\".vc_custom_1692359231594{margin-top: 35px !important;}\"][vc_column_inner width=\"1/2\"][ult_animation_block animation=\"fadeInLeftBig\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][vc_single_image image=\"3277\" img_size=\"full\" alignment=\"center\" style=\"vc_box_rounded\"][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/2\"][ult_animation_block animation=\"fadeInRightBig\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][ultimate_heading main_heading=\"2010\" heading_tag=\"h3\" main_heading_color=\"#039447\" alignment=\"left\"]In 2010, FEED CHEMIE became the subsequent addition to ever-growing vision of Mr. Uditha Wanigasinghe and entered the Animal Feed Additives market.[/ultimate_heading][/ult_animation_block][/vc_column_inner][/vc_row_inner][vc_separator color=\"custom\" accent_color=\"#039447\"][vc_row_inner equal_height=\"yes\" rtl_reverse=\"yes\" content_placement=\"middle\" css=\".vc_custom_1692359239274{margin-top: 35px !important;}\"][vc_column_inner width=\"1/2\" offset=\"vc_hidden-xs\"][ult_animation_block animation=\"fadeInLeftBig\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][ultimate_heading main_heading=\"2012\" heading_tag=\"h3\" main_heading_color=\"#039447\" alignment=\"right\"]The year 2012 is described as a turning point in our journey as FARMCHEMIE established our first production facility for the manufacturing and packing of animal health products. FARMCHEMIE became the first animal health organization in Sri Lanka to obtain ISO 9001:2015 and WHO GMP International Quality Certification. With our own formulation unit, FARMCHEMIE was able to offer customized solutions to cater the needs of the Sri Lankan Livestock Industry.[/ultimate_heading][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/2\" offset=\"vc_hidden-xs\"][ult_animation_block animation=\"fadeInRightBig\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][vc_single_image image=\"3278\" img_size=\"full\" alignment=\"center\" style=\"vc_box_rounded\"][/ult_animation_block][/vc_column_inner][/vc_row_inner][vc_row_inner equal_height=\"yes\" rtl_reverse=\"yes\" content_placement=\"middle\" css=\".vc_custom_1692359239274{margin-top: 35px !important;}\"][vc_column_inner width=\"1/2\" offset=\"vc_hidden-lg vc_hidden-md vc_hidden-sm\"][ult_animation_block animation=\"fadeInRightBig\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][vc_single_image image=\"3278\" img_size=\"full\" alignment=\"center\" style=\"vc_box_rounded\"][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/2\" offset=\"vc_hidden-lg vc_hidden-md vc_hidden-sm\"][ult_animation_block animation=\"fadeInLeftBig\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][ultimate_heading main_heading=\"2012\" heading_tag=\"h3\" main_heading_color=\"#039447\" alignment=\"left\"]The year 2012 is described as a turning point in our journey as FARMCHEMIE established our first production facility for the manufacturing and packing of animal health products. FARMCHEMIE became the first animal health organization in Sri Lanka to obtain ISO 9001:2015 and WHO GMP International Quality Certification. With our own formulation unit, FARMCHEMIE was able to offer customized solutions to cater the needs of the Sri Lankan Livestock Industry.[/ultimate_heading][/ult_animation_block][/vc_column_inner][/vc_row_inner][vc_separator color=\"custom\" accent_color=\"#039447\"][vc_row_inner content_placement=\"middle\" css=\".vc_custom_1692359246626{margin-top: 35px !important;}\"][vc_column_inner width=\"1/2\"][ult_animation_block animation=\"fadeInLeftBig\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][vc_single_image image=\"3279\" img_size=\"full\" alignment=\"center\" style=\"vc_box_rounded\"][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/2\"][ult_animation_block animation=\"fadeInRightBig\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][ultimate_heading main_heading=\"2016\" heading_tag=\"h3\" main_heading_color=\"#039447\" alignment=\"left\"]The year 2016 was another key milestone with the entry to the International Markets. FARMCHEMIE exported our first Feed Premix consignment to India and in 2018 our export operation was distinctly established as FARMCHEMIE MANUFACTURERS, a Board of Investment (BOI) approved entity.[/ultimate_heading][/ult_animation_block][/vc_column_inner][/vc_row_inner][vc_separator color=\"custom\" accent_color=\"#039447\"][vc_row_inner equal_height=\"yes\" rtl_reverse=\"yes\" content_placement=\"middle\" css=\".vc_custom_1695527931440{margin-top: 35px !important;}\"][vc_column_inner width=\"1/2\" offset=\"vc_hidden-xs\"][ult_animation_block animation=\"fadeInLeftBig\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][ultimate_heading main_heading=\"Fully automated manufacturing\" heading_tag=\"h3\" main_heading_color=\"#039447\" alignment=\"right\"]FARMCHEMIE MANUFACTURERS has invested in fully automated manufacturing facility from Bühler and became the first Sri Lankan owned company to obtain FAMI-QS International Quality Certification.[/ultimate_heading][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/2\" offset=\"vc_hidden-xs\"][ult_animation_block animation=\"fadeInRightBig\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][vc_single_image image=\"3280\" img_size=\"full\" alignment=\"center\" style=\"vc_box_rounded\"][/ult_animation_block][/vc_column_inner][/vc_row_inner][vc_row_inner equal_height=\"yes\" rtl_reverse=\"yes\" content_placement=\"middle\" css=\".vc_custom_1695527931440{margin-top: 35px !important;}\"][vc_column_inner width=\"1/2\" offset=\"vc_hidden-lg vc_hidden-md vc_hidden-sm\"][ult_animation_block animation=\"fadeInRightBig\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][vc_single_image image=\"3280\" img_size=\"full\" alignment=\"center\" style=\"vc_box_rounded\"][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/2\" offset=\"vc_hidden-lg vc_hidden-md vc_hidden-sm\"][ult_animation_block animation=\"fadeInLeftBig\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][ultimate_heading main_heading=\"Fully automated manufacturing\" heading_tag=\"h3\" main_heading_color=\"#039447\" alignment=\"left\"]FARMCHEMIE MANUFACTURERS has invested in fully automated manufacturing facility from Bühler and became the first Sri Lankan owned company to obtain FAMI-QS International Quality Certification.[/ultimate_heading][/ult_animation_block][/vc_column_inner][/vc_row_inner][vc_separator color=\"custom\" accent_color=\"#039447\"][vc_row_inner equal_height=\"yes\" content_placement=\"middle\" css=\".vc_custom_1692359258634{margin-top: 35px !important;}\"][vc_column_inner width=\"1/2\"][ult_animation_block animation=\"fadeInLeftBig\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][vc_single_image image=\"3281\" img_size=\"full\" alignment=\"center\" style=\"vc_box_rounded\"][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/2\"][ult_animation_block animation=\"fadeInRightBig\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][ultimate_heading main_heading=\"Official toll manufacturer partner\" heading_tag=\"h3\" main_heading_color=\"#039447\" alignment=\"left\"]With the trust and reputation built as a reliable manufacturer of animal feed additives and supplements in the global market, several world-renowned international brands have appointed FARMCHEMIE MANUFACTURERS as the official toll manufacturer partner. FARMCHEMIE MANUFACTURERS exports a wide range of products consisting of premixes, specialty feed additives, oral liquid supplements and pet supplements to various markets in South Asia, East Asia, Middle East and Africa.\r\n\r\nFARMCHEMIE, FEED CHEMIE &amp; FARMCHEMIE MANUFACTURERS currently operate under the ownership of our holding company, DYVESTA.\r\n\r\nDYEVSTA has become the pinnacle of Animal Nutrition and Health.\r\n\r\nDYVESTA is Dynamic, through our continuous evolution, growth and progress. DYVESTA is Diverse, in terms of both our business strategy and our community. DYVESTA is Devoted to our valuable business partners through exceptional service.[/ultimate_heading][/ult_animation_block][/vc_column_inner][/vc_row_inner][vc_separator color=\"custom\" accent_color=\"#039447\"][/vc_column][/vc_row][vc_row full_width=\"stretch_row\" equal_height=\"yes\" bg_type=\"image\" parallax_style=\"vcpb-vz-jquery\" bg_image_new=\"id^3256|url^https://farmchemie.yasithawd.com/wp-content/uploads/2023/08/Vision-Mission.png|caption^null|alt^null|title^Vision-&amp;-Mission|description^null\" bg_image_repeat=\"no-repeat\" enable_overlay=\"enable_overlay_value\" overlay_color=\"#000000\" overlay_pattern=\"01.png\" overlay_pattern_opacity=\"5\" css=\".vc_custom_1692366072362{margin-top: 35px !important;padding-top: 65px !important;padding-bottom: 100px !important;}\"][vc_column][vc_row_inner equal_height=\"yes\"][vc_column_inner width=\"1/2\"][ult_animation_block animation=\"fadeInLeftBig\" animation_duration=\"2\" animation_delay=\"0\" animation_iteration_count=\"1\"][ultimate_heading main_heading=\"Vision\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\"]To be the customers’ first and best choice by ensuring outstanding satisfaction through a well-trained and dedicated team. Prompt and quality solutions to our customers’ requirements will determine the increase of return on investment for us.[/ultimate_heading][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/2\"][ult_animation_block animation=\"fadeInRightBig\" animation_duration=\"2\" animation_delay=\"0\" animation_iteration_count=\"1\"][ultimate_heading main_heading=\"Mission\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\"]To become a world renowned manufacturer of Animal Health products and a trusted partner among our stakeholders for our integrity as well as for providing effective solutions[/ultimate_heading][/ult_animation_block][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row css=\".vc_custom_1684836308288{margin-top: 15px !important;}\"][vc_column][ultimate_heading main_heading=\"Achievements\" main_heading_color=\"#762888\" main_heading_margin=\"margin-top:35px;\"][/ultimate_heading][vc_row_inner gap=\"20\"][vc_column_inner width=\"1/2\" css=\".vc_custom_1691995519863{background-color: #f4ab20 !important;border: 1px solid #f4ab20 !important;border-radius: 35px !important;}\"][ult_animation_block animation=\"fadeInLeftBig\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][bsf-info-box icon_type=\"custom\" icon_img=\"id^3117|url^https://farmchemie.yasithawd.com/wp-content/uploads/2023/08/Pink_-H.png|caption^null|alt^null|title^Pink_-H|description^null\" img_width=\"60\" icon_style=\"advanced\" icon_border_style=\"solid\" icon_color_border=\"#ffffff\" icon_border_size=\"1\" icon_border_radius=\"500\" icon_border_spacing=\"1\" title=\"First Free Sale Certificate obtained from Veterinary Drug Control Authority (VDCA) for Veterinary Pharmaceuticals\" title_font_style=\"font-weight:bold;\" title_font_size=\"desktop:20px;\"][/bsf-info-box][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/2\" css=\".vc_custom_1691995661095{background-color: #722f8b !important;border: 1px solid #722f8b !important;border-radius: 35px !important;}\"][ult_animation_block animation=\"fadeInRightBig\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][bsf-info-box icon_type=\"custom\" icon_img=\"id^3117|url^https://farmchemie.yasithawd.com/wp-content/uploads/2023/08/Pink_-H.png|caption^null|alt^null|title^Pink_-H|description^null\" img_width=\"60\" icon_style=\"advanced\" icon_border_style=\"solid\" icon_color_border=\"#ffffff\" icon_border_size=\"1\" icon_border_radius=\"500\" icon_border_spacing=\"1\" title=\"First ISO 9001: 2015 ,WHO-GMP Quality Management systems certified Animal Health company in Sri Lanka since August, 2012\" title_font_style=\"font-weight:bold;\" title_font_color=\"#ffffff\" title_font_size=\"desktop:20px;\"][/bsf-info-box][/ult_animation_block][/vc_column_inner][/vc_row_inner][vc_row_inner gap=\"20\"][vc_column_inner width=\"1/2\" css=\".vc_custom_1691995661095{background-color: #722f8b !important;border: 1px solid #722f8b !important;border-radius: 35px !important;}\"][ult_animation_block animation=\"fadeInLeftBig\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][bsf-info-box icon_type=\"custom\" icon_img=\"id^3117|url^https://farmchemie.yasithawd.com/wp-content/uploads/2023/08/Pink_-H.png|caption^null|alt^null|title^Pink_-H|description^null\" img_width=\"60\" icon_style=\"advanced\" icon_border_style=\"solid\" icon_color_border=\"#ffffff\" icon_border_size=\"1\" icon_border_radius=\"500\" icon_border_spacing=\"1\" title=\"First FAMI-QS certified company in sri lanka\" title_font_style=\"font-weight:bold;\" title_font_color=\"#ffffff\" title_font_size=\"desktop:20px;\"][/bsf-info-box][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/2\" css=\".vc_custom_1691995519863{background-color: #f4ab20 !important;border: 1px solid #f4ab20 !important;border-radius: 35px !important;}\"][ult_animation_block animation=\"fadeInRightBig\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][bsf-info-box icon_type=\"custom\" icon_img=\"id^3117|url^https://farmchemie.yasithawd.com/wp-content/uploads/2023/08/Pink_-H.png|caption^null|alt^null|title^Pink_-H|description^null\" img_width=\"60\" icon_style=\"advanced\" icon_border_style=\"solid\" icon_color_border=\"#ffffff\" icon_border_size=\"1\" icon_border_radius=\"500\" icon_border_spacing=\"1\" title=\"First Certificate of Ethical Trading certified in Livestock industry\" title_font_style=\"font-weight:bold;\" title_font_size=\"desktop:20px;\"][/bsf-info-box][/ult_animation_block][/vc_column_inner][/vc_row_inner][vc_row_inner gap=\"20\"][vc_column_inner width=\"1/4\" css=\".vc_custom_1695528026328{border-radius: 35px !important;}\" offset=\"vc_hidden-xs\"][/vc_column_inner][vc_column_inner width=\"2/4\" css=\".vc_custom_1691995519863{background-color: #f4ab20 !important;border: 1px solid #f4ab20 !important;border-radius: 35px !important;}\"][ult_animation_block animation=\"fadeInLeftBig\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][bsf-info-box icon_type=\"custom\" icon_img=\"id^3117|url^https://farmchemie.yasithawd.com/wp-content/uploads/2023/08/Pink_-H.png|caption^null|alt^null|title^Pink_-H|description^null\" img_width=\"60\" icon_style=\"advanced\" icon_border_style=\"solid\" icon_color_border=\"#ffffff\" icon_border_size=\"1\" icon_border_radius=\"500\" icon_border_spacing=\"1\" title=\"First Silver awarded company at National Exports Awards in Livestock industry\" title_font_style=\"font-weight:bold;\" title_font_size=\"desktop:20px;\"][/bsf-info-box][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/4\" offset=\"vc_hidden-xs\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row full_width=\"stretch_row_content\" equal_height=\"yes\" content_placement=\"bottom\" css=\".vc_custom_1695531839830{margin-top: 15px !important;}\"][vc_column][ultimate_heading main_heading=\"Certifications\" main_heading_color=\"#762888\" main_heading_margin=\"margin-top:35px;\"][/ultimate_heading][vc_row_inner content_placement=\"bottom\"][vc_column_inner width=\"1/6\"][dt_fancy_image image_id=\"3408\" width=\"300\" caption=\"off\"][/vc_column_inner][vc_column_inner width=\"1/6\"][dt_fancy_image image_id=\"3407\" width=\"150\" caption=\"off\"][/vc_column_inner][vc_column_inner width=\"1/6\"][dt_fancy_image image_id=\"3409\" width=\"150\" caption=\"off\"][/vc_column_inner][vc_column_inner width=\"1/6\"][dt_fancy_image image_id=\"3410\" width=\"130\" caption=\"off\"][/vc_column_inner][vc_column_inner width=\"1/6\"][dt_fancy_image image_id=\"3411\" width=\"150\" caption=\"off\"][/vc_column_inner][vc_column_inner width=\"1/6\"][dt_fancy_image image_id=\"3406\" width=\"150\" caption=\"off\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row full_width=\"stretch_row\" equal_height=\"yes\" content_placement=\"bottom\" css=\".vc_custom_1693625624233{margin-top: 15px !important;}\"][vc_column][ultimate_heading main_heading=\"Awards\" main_heading_color=\"#762888\" main_heading_margin=\"margin-top:35px;\"][/ultimate_heading][ultimate_carousel slide_to_scroll=\"single\" slides_on_mob=\"1\"][dt_fancy_image image_id=\"3412\" width=\"300\"][dt_fancy_image image_id=\"3413\" width=\"300\" caption=\"off\"][dt_fancy_image image_id=\"3414\" width=\"300\" caption=\"off\"][dt_fancy_image image_id=\"3415\" width=\"300\" caption=\"off\"][dt_fancy_image image_id=\"3416\" width=\"300\" caption=\"off\"][dt_fancy_image image_id=\"3417\" width=\"300\" caption=\"off\"][dt_fancy_image image_id=\"3418\" width=\"300\" caption=\"off\"][dt_fancy_image image_id=\"3420\" width=\"300\" caption=\"off\"][dt_fancy_image image_id=\"3419\" width=\"300\" caption=\"off\"][dt_fancy_image image_id=\"3422\" width=\"300\" caption=\"off\"][dt_fancy_image image_id=\"3421\" width=\"300\" caption=\"off\"][dt_fancy_image image_id=\"3422\" width=\"300\" caption=\"off\"][dt_fancy_image image_id=\"3423\" width=\"300\" caption=\"off\"][dt_fancy_image image_id=\"3424\" width=\"300\" caption=\"off\"][dt_fancy_image image_id=\"3425\" width=\"300\" caption=\"off\"][/ultimate_carousel][/vc_column][/vc_row][vc_row disable_element=\"yes\" css=\".vc_custom_1695294608306{margin-top: 15px !important;}\"][vc_column][ultimate_heading main_heading=\"Board Of Directors\" main_heading_color=\"#762888\" main_heading_margin=\"margin-top:35px;margin-bottom:35px;\"][/ultimate_heading][ultimate_carousel slides_on_desk=\"3\" slides_on_mob=\"1\" arrow_style=\"square-bg\" arrow_bg_color=\"#039447\" arrow_color=\"#ffffff\" next_icon=\"ultsl-arrow-right6\" prev_icon=\"ultsl-arrow-left6\" dots_color=\"#039447\" item_animation=\"fadeIn\" css_ad_caraousel=\".vc_custom_1694697209111{padding-right: 10px !important;padding-left: 10px !important;}\"][vc_row_inner][vc_column_inner][ultimate_heading main_heading=\"Uditha Wanigasinghe\" heading_tag=\"h3\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;\"]Managing Director[/ultimate_heading][ultimate_modal modal_title=\"Read more\" btn_size=\"md\" btn_bg_color=\"#089548\" btn_text=\"Read more\" overlay_bg_opacity=\"75\" img_size=\"80\" btn_txt_color=\"#ffffff\"]pretium mauris pretium mauris pretium mauris pretium mauris pretium mauris pretium mauris pretium mauris pretium mauris pretium mauris pretium mauris pretium mauris pretium mauris pretium mauris pretium mauris pretium mauris pretium mauris pretium mauris pretium mauris pretium mauris pretium mauris pretium mauris pretium mauris pretium mauris pretium mauris pretium mauris pretium mauris pretium mauris pretium mauris[/ultimate_modal][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner][ultimate_heading main_heading=\"Senitha Wanigasinghe\" heading_tag=\"h3\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;\"]Director/ CEO[/ultimate_heading][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner][ultimate_heading main_heading=\"Thulitha Wanigasinghe\" heading_tag=\"h3\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;\"]Director - Veterinary Services &amp; RA[/ultimate_heading][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner][ultimate_heading main_heading=\"Yvonne Van Cuylenberg\" heading_tag=\"h3\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;\"]Director - HR &amp; Administration[/ultimate_heading][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner][ultimate_heading main_heading=\"Gamini Wanigasinghe\" heading_tag=\"h3\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;\"]Director[/ultimate_heading][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner][ultimate_heading main_heading=\"Ajith Welianga\" heading_tag=\"h3\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;\"]Director - Marketing[/ultimate_heading][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner][ultimate_heading main_heading=\"Sunil Ranjith Guruge\" heading_tag=\"h3\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;\"]Director - Customer &amp; Employee Relations[/ultimate_heading][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner][ultimate_heading main_heading=\"Sampath Gunathilake\" heading_tag=\"h3\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;\"]Director - Sales[/ultimate_heading][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner][ultimate_heading main_heading=\"Chanaka Indrajith\" heading_tag=\"h3\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;\"]Director Production / COO[/ultimate_heading][/vc_column_inner][/vc_row_inner][/ultimate_carousel][/vc_column][/vc_row][vc_row disable_element=\"yes\"][vc_column][ultimate_heading main_heading=\"Board Of Directors\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;margin-bottom:35px;\"][/ultimate_heading][vc_row_inner][vc_column_inner width=\"1/3\"][ult_animation_block animation=\"fadeInUp\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][dt_fancy_image image_id=\"3172\" width=\"300\" border_radius=\"1px\" caption=\"off\" css=\".vc_custom_1692278922309{border-top-width: 1px !important;border-right-width: 1px !important;border-bottom-width: 1px !important;border-left-width: 1px !important;border-left-color: #059444 !important;border-left-style: solid !important;border-right-color: #059444 !important;border-right-style: solid !important;border-top-color: #059444 !important;border-top-style: solid !important;border-bottom-color: #059444 !important;border-bottom-style: solid !important;border-radius: 1px !important;}\"][ultimate_heading main_heading=\"Quisque sed nibh tristique\" heading_tag=\"h3\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;\"]\r\n<ul>\r\n 	<li>Duis lorem risus, aliquet a auctor a, venenatis in dui. Praesent et eros et risus dapibus placerat hendrerit cursus magna.</li>\r\n 	<li>Praesent et eros et risus dapibus placerat hendrerit cursus magna.</li>\r\n 	<li>aliquet a auctor a, venenatis in dui.</li>\r\n</ul>\r\n[/ultimate_heading][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/3\"][ult_animation_block animation=\"fadeInDown\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][dt_fancy_image image_id=\"3171\" width=\"300\" border_radius=\"1px\" caption=\"off\" css=\".vc_custom_1692278929158{border-top-width: 1px !important;border-right-width: 1px !important;border-bottom-width: 1px !important;border-left-width: 1px !important;border-left-color: #059444 !important;border-left-style: solid !important;border-right-color: #059444 !important;border-right-style: solid !important;border-top-color: #059444 !important;border-top-style: solid !important;border-bottom-color: #059444 !important;border-bottom-style: solid !important;border-radius: 1px !important;}\"][ultimate_heading main_heading=\"Quisque sed nibh tristique\" heading_tag=\"h3\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;\"]\r\n<ul>\r\n 	<li>Duis lorem risus, aliquet a auctor a, venenatis in dui. Praesent et eros et risus dapibus placerat hendrerit cursus magna.</li>\r\n 	<li>Praesent et eros et risus dapibus placerat hendrerit cursus magna.</li>\r\n 	<li>aliquet a auctor a, venenatis in dui.</li>\r\n</ul>\r\n[/ultimate_heading][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/3\"][ult_animation_block animation=\"fadeInUp\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][dt_fancy_image image_id=\"3170\" width=\"300\" border_radius=\"1px\" caption=\"off\" css=\".vc_custom_1692278936750{border-top-width: 1px !important;border-right-width: 1px !important;border-bottom-width: 1px !important;border-left-width: 1px !important;border-left-color: #059444 !important;border-left-style: solid !important;border-right-color: #059444 !important;border-right-style: solid !important;border-top-color: #059444 !important;border-top-style: solid !important;border-bottom-color: #059444 !important;border-bottom-style: solid !important;border-radius: 1px !important;}\"][ultimate_heading main_heading=\"Quisque sed nibh tristique\" heading_tag=\"h3\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;\"]\r\n<ul>\r\n 	<li>Duis lorem risus, aliquet a auctor a, venenatis in dui. Praesent et eros et risus dapibus placerat hendrerit cursus magna.</li>\r\n 	<li>Praesent et eros et risus dapibus placerat hendrerit cursus magna.</li>\r\n 	<li>aliquet a auctor a, venenatis in dui.</li>\r\n</ul>\r\n[/ultimate_heading][/ult_animation_block][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row disable_element=\"yes\"][vc_column][ultimate_heading main_heading=\"Executive Directors\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;margin-bottom:35px;\"][/ultimate_heading][vc_row_inner][vc_column_inner width=\"1/5\"][ult_animation_block animation=\"fadeInUp\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][dt_fancy_image image_id=\"3172\" width=\"300\" border_radius=\"1px\" caption=\"off\" css=\".vc_custom_1692278922309{border-top-width: 1px !important;border-right-width: 1px !important;border-bottom-width: 1px !important;border-left-width: 1px !important;border-left-color: #059444 !important;border-left-style: solid !important;border-right-color: #059444 !important;border-right-style: solid !important;border-top-color: #059444 !important;border-top-style: solid !important;border-bottom-color: #059444 !important;border-bottom-style: solid !important;border-radius: 1px !important;}\"][ultimate_heading main_heading=\"Quisque sed nibh tristique\" heading_tag=\"h3\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;\"]\r\n<ul>\r\n 	<li>Duis lorem risus, aliquet a auctor a, venenatis in dui. Praesent et eros et risus dapibus placerat hendrerit cursus magna.</li>\r\n 	<li>Praesent et eros et risus dapibus placerat hendrerit cursus magna.</li>\r\n 	<li>aliquet a auctor a, venenatis in dui.</li>\r\n</ul>\r\n[/ultimate_heading][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/5\"][ult_animation_block animation=\"fadeInDown\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][dt_fancy_image image_id=\"3171\" width=\"300\" border_radius=\"1px\" caption=\"off\" css=\".vc_custom_1692278929158{border-top-width: 1px !important;border-right-width: 1px !important;border-bottom-width: 1px !important;border-left-width: 1px !important;border-left-color: #059444 !important;border-left-style: solid !important;border-right-color: #059444 !important;border-right-style: solid !important;border-top-color: #059444 !important;border-top-style: solid !important;border-bottom-color: #059444 !important;border-bottom-style: solid !important;border-radius: 1px !important;}\"][ultimate_heading main_heading=\"Quisque sed nibh tristique\" heading_tag=\"h3\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;\"]\r\n<ul>\r\n 	<li>Duis lorem risus, aliquet a auctor a, venenatis in dui. Praesent et eros et risus dapibus placerat hendrerit cursus magna.</li>\r\n 	<li>Praesent et eros et risus dapibus placerat hendrerit cursus magna.</li>\r\n 	<li>aliquet a auctor a, venenatis in dui.</li>\r\n</ul>\r\n[/ultimate_heading][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/5\"][ult_animation_block animation=\"fadeInUp\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][dt_fancy_image image_id=\"3170\" width=\"300\" border_radius=\"1px\" caption=\"off\" css=\".vc_custom_1692278936750{border-top-width: 1px !important;border-right-width: 1px !important;border-bottom-width: 1px !important;border-left-width: 1px !important;border-left-color: #059444 !important;border-left-style: solid !important;border-right-color: #059444 !important;border-right-style: solid !important;border-top-color: #059444 !important;border-top-style: solid !important;border-bottom-color: #059444 !important;border-bottom-style: solid !important;border-radius: 1px !important;}\"][ultimate_heading main_heading=\"Quisque sed nibh tristique\" heading_tag=\"h3\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;\"]\r\n<ul>\r\n 	<li>Duis lorem risus, aliquet a auctor a, venenatis in dui. Praesent et eros et risus dapibus placerat hendrerit cursus magna.</li>\r\n 	<li>Praesent et eros et risus dapibus placerat hendrerit cursus magna.</li>\r\n 	<li>aliquet a auctor a, venenatis in dui.</li>\r\n</ul>\r\n[/ultimate_heading][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/5\"][ult_animation_block animation=\"fadeInDown\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][dt_fancy_image image_id=\"3170\" width=\"300\" border_radius=\"1px\" caption=\"off\" css=\".vc_custom_1692278936750{border-top-width: 1px !important;border-right-width: 1px !important;border-bottom-width: 1px !important;border-left-width: 1px !important;border-left-color: #059444 !important;border-left-style: solid !important;border-right-color: #059444 !important;border-right-style: solid !important;border-top-color: #059444 !important;border-top-style: solid !important;border-bottom-color: #059444 !important;border-bottom-style: solid !important;border-radius: 1px !important;}\"][ultimate_heading main_heading=\"Quisque sed nibh tristique\" heading_tag=\"h3\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;\"]\r\n<ul>\r\n 	<li>Duis lorem risus, aliquet a auctor a, venenatis in dui. Praesent et eros et risus dapibus placerat hendrerit cursus magna.</li>\r\n 	<li>Praesent et eros et risus dapibus placerat hendrerit cursus magna.</li>\r\n 	<li>aliquet a auctor a, venenatis in dui.</li>\r\n</ul>\r\n[/ultimate_heading][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/5\"][ult_animation_block animation=\"fadeInDown\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][dt_fancy_image image_id=\"3171\" width=\"300\" border_radius=\"1px\" caption=\"off\" css=\".vc_custom_1692278929158{border-top-width: 1px !important;border-right-width: 1px !important;border-bottom-width: 1px !important;border-left-width: 1px !important;border-left-color: #059444 !important;border-left-style: solid !important;border-right-color: #059444 !important;border-right-style: solid !important;border-top-color: #059444 !important;border-top-style: solid !important;border-bottom-color: #059444 !important;border-bottom-style: solid !important;border-radius: 1px !important;}\"][ultimate_heading main_heading=\"Quisque sed nibh tristique\" heading_tag=\"h3\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;\"]\r\n<ul>\r\n 	<li>Duis lorem risus, aliquet a auctor a, venenatis in dui. Praesent et eros et risus dapibus placerat hendrerit cursus magna.</li>\r\n 	<li>Praesent et eros et risus dapibus placerat hendrerit cursus magna.</li>\r\n 	<li>aliquet a auctor a, venenatis in dui.</li>\r\n</ul>\r\n[/ultimate_heading][/ult_animation_block][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner width=\"2/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row disable_element=\"yes\"][vc_column][ultimate_heading main_heading=\"Next Generation\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;margin-bottom:35px;\"][/ultimate_heading][vc_row_inner][vc_column_inner width=\"1/2\"][ult_animation_block animation=\"fadeInUp\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][dt_fancy_image image_id=\"3172\" width=\"300\" border_radius=\"1px\" caption=\"off\" css=\".vc_custom_1692278922309{border-top-width: 1px !important;border-right-width: 1px !important;border-bottom-width: 1px !important;border-left-width: 1px !important;border-left-color: #059444 !important;border-left-style: solid !important;border-right-color: #059444 !important;border-right-style: solid !important;border-top-color: #059444 !important;border-top-style: solid !important;border-bottom-color: #059444 !important;border-bottom-style: solid !important;border-radius: 1px !important;}\"][ultimate_heading main_heading=\"Quisque sed nibh tristique\" heading_tag=\"h3\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;\"]\r\n<ul>\r\n 	<li>Duis lorem risus, aliquet a auctor a, venenatis in dui. Praesent et eros et risus dapibus placerat hendrerit cursus magna.</li>\r\n 	<li>Praesent et eros et risus dapibus placerat hendrerit cursus magna.</li>\r\n 	<li>aliquet a auctor a, venenatis in dui.</li>\r\n</ul>\r\n[/ultimate_heading][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/2\"][ult_animation_block animation=\"fadeInDown\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][dt_fancy_image image_id=\"3171\" width=\"300\" border_radius=\"1px\" caption=\"off\" css=\".vc_custom_1692278929158{border-top-width: 1px !important;border-right-width: 1px !important;border-bottom-width: 1px !important;border-left-width: 1px !important;border-left-color: #059444 !important;border-left-style: solid !important;border-right-color: #059444 !important;border-right-style: solid !important;border-top-color: #059444 !important;border-top-style: solid !important;border-bottom-color: #059444 !important;border-bottom-style: solid !important;border-radius: 1px !important;}\"][ultimate_heading main_heading=\"Quisque sed nibh tristique\" heading_tag=\"h3\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;\"]\r\n<ul>\r\n 	<li>Duis lorem risus, aliquet a auctor a, venenatis in dui. Praesent et eros et risus dapibus placerat hendrerit cursus magna.</li>\r\n 	<li>Praesent et eros et risus dapibus placerat hendrerit cursus magna.</li>\r\n 	<li>aliquet a auctor a, venenatis in dui.</li>\r\n</ul>\r\n[/ultimate_heading][/ult_animation_block][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row]','About us','','inherit','closed','closed','','2917-revision-v1','','','2023-09-24 05:04:09','2023-09-24 05:04:09','',2917,'https://farmchemie.yasithawd.com/?p=3888',0,'revision','',0),(3889,1,'2023-09-24 05:07:03','2023-09-24 05:07:03','[vc_row full_width=\"stretch_row_content_no_spaces\"][vc_column][ultimate_heading main_heading=\"Our History\" main_heading_color=\"#762888\"][/ultimate_heading][/vc_column][/vc_row][vc_row][vc_column][vc_row_inner equal_height=\"yes\" content_placement=\"middle\" css=\".vc_custom_1692359205466{margin-top: 35px !important;}\"][vc_column_inner width=\"1/2\"][ult_animation_block animation=\"fadeInLeftBig\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][vc_single_image image=\"3273\" img_size=\"full\" alignment=\"center\" style=\"vc_box_rounded\"][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/2\"][ult_animation_block animation=\"fadeInRightBig\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][ultimate_heading main_heading=\"Founded in 2002\" heading_tag=\"h3\" main_heading_color=\"#039447\" alignment=\"left\" sub_heading_font_size=\"desktop:18px;\"]Founded in 2002 by Mr. Uditha Wanigasinghe, an agriculturist who had a mission to aid valuable livestock producers in the country to enhance the yield and profitability of production. FARMCHEMIE introduced unprecedented solutions and consistent technical services to gain our customers’ trust and became the market leader in animal health products in 2006 within just four years.[/ultimate_heading][/ult_animation_block][/vc_column_inner][/vc_row_inner][vc_separator color=\"custom\" accent_color=\"#039447\"][vc_row_inner equal_height=\"yes\" rtl_reverse=\"yes\" content_placement=\"middle\" css=\".vc_custom_1692359216075{margin-top: 35px !important;}\"][vc_column_inner width=\"1/2\" offset=\"vc_hidden-xs\"][ult_animation_block animation=\"fadeInLeftBig\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][ultimate_heading main_heading=\"2006\" heading_tag=\"h3\" main_heading_color=\"#039447\" alignment=\"right\"]In 2006, the Sri Lankan poultry industry was affected with Avian Influenza which became a difficult period for the growth of FARMCHEMIE. This was the key factor in our decision to diversify into Agro Products. PLANTCHEM &amp; PLANTSEEDS were established to offer solutions in Agro specialty fertilizers, pesticides and seeds to invaluable cultivators.[/ultimate_heading][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/2\" offset=\"vc_hidden-xs\"][ult_animation_block animation=\"fadeInRightBig\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][vc_single_image image=\"3276\" img_size=\"full\" alignment=\"center\" style=\"vc_box_rounded\"][/ult_animation_block][/vc_column_inner][/vc_row_inner][vc_row_inner equal_height=\"yes\" rtl_reverse=\"yes\" content_placement=\"middle\" css=\".vc_custom_1692359216075{margin-top: 35px !important;}\"][vc_column_inner width=\"1/2\" offset=\"vc_hidden-lg vc_hidden-md vc_hidden-sm\"][ult_animation_block animation=\"fadeInRightBig\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][vc_single_image image=\"3276\" img_size=\"full\" alignment=\"center\" style=\"vc_box_rounded\"][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/2\" offset=\"vc_hidden-lg vc_hidden-md vc_hidden-sm\"][ult_animation_block animation=\"fadeInLeftBig\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][ultimate_heading main_heading=\"2006\" heading_tag=\"h3\" main_heading_color=\"#039447\" alignment=\"left\"]\r\n\r\nIn 2006, the Sri Lankan poultry industry was affected with Avian Influenza which became a difficult period for the growth of FARMCHEMIE. This was the key factor in our decision to diversify into Agro Products. PLANTCHEM &amp; PLANTSEEDS were established to offer solutions in Agro specialty fertilizers, pesticides and seeds to invaluable cultivators.\r\n\r\n[/ultimate_heading][/ult_animation_block][/vc_column_inner][/vc_row_inner][vc_separator color=\"custom\" accent_color=\"#039447\"][vc_row_inner equal_height=\"yes\" content_placement=\"middle\" css=\".vc_custom_1692359231594{margin-top: 35px !important;}\"][vc_column_inner width=\"1/2\"][ult_animation_block animation=\"fadeInLeftBig\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][vc_single_image image=\"3277\" img_size=\"full\" alignment=\"center\" style=\"vc_box_rounded\"][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/2\"][ult_animation_block animation=\"fadeInRightBig\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][ultimate_heading main_heading=\"2010\" heading_tag=\"h3\" main_heading_color=\"#039447\" alignment=\"left\"]In 2010, FEED CHEMIE became the subsequent addition to ever-growing vision of Mr. Uditha Wanigasinghe and entered the Animal Feed Additives market.[/ultimate_heading][/ult_animation_block][/vc_column_inner][/vc_row_inner][vc_separator color=\"custom\" accent_color=\"#039447\"][vc_row_inner equal_height=\"yes\" rtl_reverse=\"yes\" content_placement=\"middle\" css=\".vc_custom_1692359239274{margin-top: 35px !important;}\"][vc_column_inner width=\"1/2\" offset=\"vc_hidden-xs\"][ult_animation_block animation=\"fadeInLeftBig\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][ultimate_heading main_heading=\"2012\" heading_tag=\"h3\" main_heading_color=\"#039447\" alignment=\"right\"]The year 2012 is described as a turning point in our journey as FARMCHEMIE established our first production facility for the manufacturing and packing of animal health products. FARMCHEMIE became the first animal health organization in Sri Lanka to obtain ISO 9001:2015 and WHO GMP International Quality Certification. With our own formulation unit, FARMCHEMIE was able to offer customized solutions to cater the needs of the Sri Lankan Livestock Industry.[/ultimate_heading][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/2\" offset=\"vc_hidden-xs\"][ult_animation_block animation=\"fadeInRightBig\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][vc_single_image image=\"3278\" img_size=\"full\" alignment=\"center\" style=\"vc_box_rounded\"][/ult_animation_block][/vc_column_inner][/vc_row_inner][vc_row_inner equal_height=\"yes\" rtl_reverse=\"yes\" content_placement=\"middle\" css=\".vc_custom_1692359239274{margin-top: 35px !important;}\"][vc_column_inner width=\"1/2\" offset=\"vc_hidden-lg vc_hidden-md vc_hidden-sm\"][ult_animation_block animation=\"fadeInRightBig\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][vc_single_image image=\"3278\" img_size=\"full\" alignment=\"center\" style=\"vc_box_rounded\"][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/2\" offset=\"vc_hidden-lg vc_hidden-md vc_hidden-sm\"][ult_animation_block animation=\"fadeInLeftBig\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][ultimate_heading main_heading=\"2012\" heading_tag=\"h3\" main_heading_color=\"#039447\" alignment=\"left\"]The year 2012 is described as a turning point in our journey as FARMCHEMIE established our first production facility for the manufacturing and packing of animal health products. FARMCHEMIE became the first animal health organization in Sri Lanka to obtain ISO 9001:2015 and WHO GMP International Quality Certification. With our own formulation unit, FARMCHEMIE was able to offer customized solutions to cater the needs of the Sri Lankan Livestock Industry.[/ultimate_heading][/ult_animation_block][/vc_column_inner][/vc_row_inner][vc_separator color=\"custom\" accent_color=\"#039447\"][vc_row_inner content_placement=\"middle\" css=\".vc_custom_1692359246626{margin-top: 35px !important;}\"][vc_column_inner width=\"1/2\"][ult_animation_block animation=\"fadeInLeftBig\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][vc_single_image image=\"3279\" img_size=\"full\" alignment=\"center\" style=\"vc_box_rounded\"][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/2\"][ult_animation_block animation=\"fadeInRightBig\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][ultimate_heading main_heading=\"2016\" heading_tag=\"h3\" main_heading_color=\"#039447\" alignment=\"left\"]The year 2016 was another key milestone with the entry to the International Markets. FARMCHEMIE exported our first Feed Premix consignment to India and in 2018 our export operation was distinctly established as FARMCHEMIE MANUFACTURERS, a Board of Investment (BOI) approved entity.[/ultimate_heading][/ult_animation_block][/vc_column_inner][/vc_row_inner][vc_separator color=\"custom\" accent_color=\"#039447\"][vc_row_inner equal_height=\"yes\" rtl_reverse=\"yes\" content_placement=\"middle\" css=\".vc_custom_1695527931440{margin-top: 35px !important;}\"][vc_column_inner width=\"1/2\" offset=\"vc_hidden-xs\"][ult_animation_block animation=\"fadeInLeftBig\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][ultimate_heading main_heading=\"Fully automated manufacturing\" heading_tag=\"h3\" main_heading_color=\"#039447\" alignment=\"right\"]FARMCHEMIE MANUFACTURERS has invested in fully automated manufacturing facility from Bühler and became the first Sri Lankan owned company to obtain FAMI-QS International Quality Certification.[/ultimate_heading][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/2\" offset=\"vc_hidden-xs\"][ult_animation_block animation=\"fadeInRightBig\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][vc_single_image image=\"3280\" img_size=\"full\" alignment=\"center\" style=\"vc_box_rounded\"][/ult_animation_block][/vc_column_inner][/vc_row_inner][vc_row_inner equal_height=\"yes\" rtl_reverse=\"yes\" content_placement=\"middle\" css=\".vc_custom_1695527931440{margin-top: 35px !important;}\"][vc_column_inner width=\"1/2\" offset=\"vc_hidden-lg vc_hidden-md vc_hidden-sm\"][ult_animation_block animation=\"fadeInRightBig\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][vc_single_image image=\"3280\" img_size=\"full\" alignment=\"center\" style=\"vc_box_rounded\"][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/2\" offset=\"vc_hidden-lg vc_hidden-md vc_hidden-sm\"][ult_animation_block animation=\"fadeInLeftBig\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][ultimate_heading main_heading=\"Fully automated manufacturing\" heading_tag=\"h3\" main_heading_color=\"#039447\" alignment=\"left\"]FARMCHEMIE MANUFACTURERS has invested in fully automated manufacturing facility from Bühler and became the first Sri Lankan owned company to obtain FAMI-QS International Quality Certification.[/ultimate_heading][/ult_animation_block][/vc_column_inner][/vc_row_inner][vc_separator color=\"custom\" accent_color=\"#039447\"][vc_row_inner equal_height=\"yes\" content_placement=\"middle\" css=\".vc_custom_1692359258634{margin-top: 35px !important;}\"][vc_column_inner width=\"1/2\"][ult_animation_block animation=\"fadeInLeftBig\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][vc_single_image image=\"3281\" img_size=\"full\" alignment=\"center\" style=\"vc_box_rounded\"][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/2\"][ult_animation_block animation=\"fadeInRightBig\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][ultimate_heading main_heading=\"Official toll manufacturer partner\" heading_tag=\"h3\" main_heading_color=\"#039447\" alignment=\"left\"]With the trust and reputation built as a reliable manufacturer of animal feed additives and supplements in the global market, several world-renowned international brands have appointed FARMCHEMIE MANUFACTURERS as the official toll manufacturer partner. FARMCHEMIE MANUFACTURERS exports a wide range of products consisting of premixes, specialty feed additives, oral liquid supplements and pet supplements to various markets in South Asia, East Asia, Middle East and Africa.\r\n\r\nFARMCHEMIE, FEED CHEMIE &amp; FARMCHEMIE MANUFACTURERS currently operate under the ownership of our holding company, DYVESTA.\r\n\r\nDYEVSTA has become the pinnacle of Animal Nutrition and Health.\r\n\r\nDYVESTA is Dynamic, through our continuous evolution, growth and progress. DYVESTA is Diverse, in terms of both our business strategy and our community. DYVESTA is Devoted to our valuable business partners through exceptional service.[/ultimate_heading][/ult_animation_block][/vc_column_inner][/vc_row_inner][vc_separator color=\"custom\" accent_color=\"#039447\"][/vc_column][/vc_row][vc_row full_width=\"stretch_row\" equal_height=\"yes\" bg_type=\"image\" parallax_style=\"vcpb-vz-jquery\" bg_image_new=\"id^3256|url^https://farmchemie.yasithawd.com/wp-content/uploads/2023/08/Vision-Mission.png|caption^null|alt^null|title^Vision-&amp;-Mission|description^null\" bg_image_repeat=\"no-repeat\" enable_overlay=\"enable_overlay_value\" overlay_color=\"#000000\" overlay_pattern=\"01.png\" overlay_pattern_opacity=\"5\" css=\".vc_custom_1692366072362{margin-top: 35px !important;padding-top: 65px !important;padding-bottom: 100px !important;}\"][vc_column][vc_row_inner equal_height=\"yes\"][vc_column_inner width=\"1/2\"][ult_animation_block animation=\"fadeInLeftBig\" animation_duration=\"2\" animation_delay=\"0\" animation_iteration_count=\"1\"][ultimate_heading main_heading=\"Vision\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\"]To be the customers’ first and best choice by ensuring outstanding satisfaction through a well-trained and dedicated team. Prompt and quality solutions to our customers’ requirements will determine the increase of return on investment for us.[/ultimate_heading][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/2\"][ult_animation_block animation=\"fadeInRightBig\" animation_duration=\"2\" animation_delay=\"0\" animation_iteration_count=\"1\"][ultimate_heading main_heading=\"Mission\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\"]To become a world renowned manufacturer of Animal Health products and a trusted partner among our stakeholders for our integrity as well as for providing effective solutions[/ultimate_heading][/ult_animation_block][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row css=\".vc_custom_1684836308288{margin-top: 15px !important;}\"][vc_column][ultimate_heading main_heading=\"Achievements\" main_heading_color=\"#762888\" main_heading_margin=\"margin-top:35px;\"][/ultimate_heading][vc_row_inner gap=\"20\"][vc_column_inner width=\"1/2\" css=\".vc_custom_1691995519863{background-color: #f4ab20 !important;border: 1px solid #f4ab20 !important;border-radius: 35px !important;}\"][ult_animation_block animation=\"fadeInLeftBig\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][bsf-info-box icon_type=\"custom\" icon_img=\"id^3117|url^https://farmchemie.yasithawd.com/wp-content/uploads/2023/08/Pink_-H.png|caption^null|alt^null|title^Pink_-H|description^null\" img_width=\"60\" icon_style=\"advanced\" icon_border_style=\"solid\" icon_color_border=\"#ffffff\" icon_border_size=\"1\" icon_border_radius=\"500\" icon_border_spacing=\"1\" title=\"First Free Sale Certificate obtained from Veterinary Drug Control Authority (VDCA) for Veterinary Pharmaceuticals\" title_font_style=\"font-weight:bold;\" title_font_size=\"desktop:20px;\"][/bsf-info-box][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/2\" css=\".vc_custom_1691995661095{background-color: #722f8b !important;border: 1px solid #722f8b !important;border-radius: 35px !important;}\"][ult_animation_block animation=\"fadeInRightBig\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][bsf-info-box icon_type=\"custom\" icon_img=\"id^3117|url^https://farmchemie.yasithawd.com/wp-content/uploads/2023/08/Pink_-H.png|caption^null|alt^null|title^Pink_-H|description^null\" img_width=\"60\" icon_style=\"advanced\" icon_border_style=\"solid\" icon_color_border=\"#ffffff\" icon_border_size=\"1\" icon_border_radius=\"500\" icon_border_spacing=\"1\" title=\"First ISO 9001: 2015 ,WHO-GMP Quality Management systems certified Animal Health company in Sri Lanka since August, 2012\" title_font_style=\"font-weight:bold;\" title_font_color=\"#ffffff\" title_font_size=\"desktop:20px;\"][/bsf-info-box][/ult_animation_block][/vc_column_inner][/vc_row_inner][vc_row_inner gap=\"20\"][vc_column_inner width=\"1/2\" css=\".vc_custom_1691995661095{background-color: #722f8b !important;border: 1px solid #722f8b !important;border-radius: 35px !important;}\"][ult_animation_block animation=\"fadeInLeftBig\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][bsf-info-box icon_type=\"custom\" icon_img=\"id^3117|url^https://farmchemie.yasithawd.com/wp-content/uploads/2023/08/Pink_-H.png|caption^null|alt^null|title^Pink_-H|description^null\" img_width=\"60\" icon_style=\"advanced\" icon_border_style=\"solid\" icon_color_border=\"#ffffff\" icon_border_size=\"1\" icon_border_radius=\"500\" icon_border_spacing=\"1\" title=\"First FAMI-QS certified company in sri lanka\" title_font_style=\"font-weight:bold;\" title_font_color=\"#ffffff\" title_font_size=\"desktop:20px;\"][/bsf-info-box][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/2\" css=\".vc_custom_1691995519863{background-color: #f4ab20 !important;border: 1px solid #f4ab20 !important;border-radius: 35px !important;}\"][ult_animation_block animation=\"fadeInRightBig\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][bsf-info-box icon_type=\"custom\" icon_img=\"id^3117|url^https://farmchemie.yasithawd.com/wp-content/uploads/2023/08/Pink_-H.png|caption^null|alt^null|title^Pink_-H|description^null\" img_width=\"60\" icon_style=\"advanced\" icon_border_style=\"solid\" icon_color_border=\"#ffffff\" icon_border_size=\"1\" icon_border_radius=\"500\" icon_border_spacing=\"1\" title=\"First Certificate of Ethical Trading certified in Livestock industry\" title_font_style=\"font-weight:bold;\" title_font_size=\"desktop:20px;\"][/bsf-info-box][/ult_animation_block][/vc_column_inner][/vc_row_inner][vc_row_inner gap=\"20\"][vc_column_inner width=\"1/4\" css=\".vc_custom_1695528026328{border-radius: 35px !important;}\" offset=\"vc_hidden-xs\"][/vc_column_inner][vc_column_inner width=\"2/4\" css=\".vc_custom_1691995519863{background-color: #f4ab20 !important;border: 1px solid #f4ab20 !important;border-radius: 35px !important;}\"][ult_animation_block animation=\"fadeInLeftBig\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][bsf-info-box icon_type=\"custom\" icon_img=\"id^3117|url^https://farmchemie.yasithawd.com/wp-content/uploads/2023/08/Pink_-H.png|caption^null|alt^null|title^Pink_-H|description^null\" img_width=\"60\" icon_style=\"advanced\" icon_border_style=\"solid\" icon_color_border=\"#ffffff\" icon_border_size=\"1\" icon_border_radius=\"500\" icon_border_spacing=\"1\" title=\"First Silver awarded company at National Exports Awards in Livestock industry\" title_font_style=\"font-weight:bold;\" title_font_size=\"desktop:20px;\"][/bsf-info-box][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/4\" offset=\"vc_hidden-xs\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row full_width=\"stretch_row_content\" equal_height=\"yes\" content_placement=\"bottom\" css=\".vc_custom_1695531973651{margin-top: 15px !important;padding-right: 5% !important;padding-left: 5% !important;}\"][vc_column][ultimate_heading main_heading=\"Certifications\" main_heading_color=\"#762888\" main_heading_margin=\"margin-top:35px;\"][/ultimate_heading][vc_row_inner content_placement=\"bottom\"][vc_column_inner width=\"1/6\"][dt_fancy_image image_id=\"3408\" width=\"300\" caption=\"off\"][/vc_column_inner][vc_column_inner width=\"1/6\"][dt_fancy_image image_id=\"3407\" width=\"150\" caption=\"off\"][/vc_column_inner][vc_column_inner width=\"1/6\"][dt_fancy_image image_id=\"3409\" width=\"150\" caption=\"off\"][/vc_column_inner][vc_column_inner width=\"1/6\"][dt_fancy_image image_id=\"3410\" width=\"130\" caption=\"off\"][/vc_column_inner][vc_column_inner width=\"1/6\"][dt_fancy_image image_id=\"3411\" width=\"150\" caption=\"off\"][/vc_column_inner][vc_column_inner width=\"1/6\"][dt_fancy_image image_id=\"3406\" width=\"150\" caption=\"off\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row full_width=\"stretch_row\" equal_height=\"yes\" content_placement=\"bottom\" css=\".vc_custom_1693625624233{margin-top: 15px !important;}\"][vc_column][ultimate_heading main_heading=\"Awards\" main_heading_color=\"#762888\" main_heading_margin=\"margin-top:35px;\"][/ultimate_heading][ultimate_carousel slide_to_scroll=\"single\" slides_on_mob=\"1\"][dt_fancy_image image_id=\"3412\" width=\"300\"][dt_fancy_image image_id=\"3413\" width=\"300\" caption=\"off\"][dt_fancy_image image_id=\"3414\" width=\"300\" caption=\"off\"][dt_fancy_image image_id=\"3415\" width=\"300\" caption=\"off\"][dt_fancy_image image_id=\"3416\" width=\"300\" caption=\"off\"][dt_fancy_image image_id=\"3417\" width=\"300\" caption=\"off\"][dt_fancy_image image_id=\"3418\" width=\"300\" caption=\"off\"][dt_fancy_image image_id=\"3420\" width=\"300\" caption=\"off\"][dt_fancy_image image_id=\"3419\" width=\"300\" caption=\"off\"][dt_fancy_image image_id=\"3422\" width=\"300\" caption=\"off\"][dt_fancy_image image_id=\"3421\" width=\"300\" caption=\"off\"][dt_fancy_image image_id=\"3422\" width=\"300\" caption=\"off\"][dt_fancy_image image_id=\"3423\" width=\"300\" caption=\"off\"][dt_fancy_image image_id=\"3424\" width=\"300\" caption=\"off\"][dt_fancy_image image_id=\"3425\" width=\"300\" caption=\"off\"][/ultimate_carousel][/vc_column][/vc_row][vc_row disable_element=\"yes\" css=\".vc_custom_1695294608306{margin-top: 15px !important;}\"][vc_column][ultimate_heading main_heading=\"Board Of Directors\" main_heading_color=\"#762888\" main_heading_margin=\"margin-top:35px;margin-bottom:35px;\"][/ultimate_heading][ultimate_carousel slides_on_desk=\"3\" slides_on_mob=\"1\" arrow_style=\"square-bg\" arrow_bg_color=\"#039447\" arrow_color=\"#ffffff\" next_icon=\"ultsl-arrow-right6\" prev_icon=\"ultsl-arrow-left6\" dots_color=\"#039447\" item_animation=\"fadeIn\" css_ad_caraousel=\".vc_custom_1694697209111{padding-right: 10px !important;padding-left: 10px !important;}\"][vc_row_inner][vc_column_inner][ultimate_heading main_heading=\"Uditha Wanigasinghe\" heading_tag=\"h3\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;\"]Managing Director[/ultimate_heading][ultimate_modal modal_title=\"Read more\" btn_size=\"md\" btn_bg_color=\"#089548\" btn_text=\"Read more\" overlay_bg_opacity=\"75\" img_size=\"80\" btn_txt_color=\"#ffffff\"]pretium mauris pretium mauris pretium mauris pretium mauris pretium mauris pretium mauris pretium mauris pretium mauris pretium mauris pretium mauris pretium mauris pretium mauris pretium mauris pretium mauris pretium mauris pretium mauris pretium mauris pretium mauris pretium mauris pretium mauris pretium mauris pretium mauris pretium mauris pretium mauris pretium mauris pretium mauris pretium mauris pretium mauris[/ultimate_modal][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner][ultimate_heading main_heading=\"Senitha Wanigasinghe\" heading_tag=\"h3\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;\"]Director/ CEO[/ultimate_heading][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner][ultimate_heading main_heading=\"Thulitha Wanigasinghe\" heading_tag=\"h3\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;\"]Director - Veterinary Services &amp; RA[/ultimate_heading][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner][ultimate_heading main_heading=\"Yvonne Van Cuylenberg\" heading_tag=\"h3\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;\"]Director - HR &amp; Administration[/ultimate_heading][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner][ultimate_heading main_heading=\"Gamini Wanigasinghe\" heading_tag=\"h3\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;\"]Director[/ultimate_heading][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner][ultimate_heading main_heading=\"Ajith Welianga\" heading_tag=\"h3\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;\"]Director - Marketing[/ultimate_heading][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner][ultimate_heading main_heading=\"Sunil Ranjith Guruge\" heading_tag=\"h3\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;\"]Director - Customer &amp; Employee Relations[/ultimate_heading][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner][ultimate_heading main_heading=\"Sampath Gunathilake\" heading_tag=\"h3\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;\"]Director - Sales[/ultimate_heading][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner][ultimate_heading main_heading=\"Chanaka Indrajith\" heading_tag=\"h3\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;\"]Director Production / COO[/ultimate_heading][/vc_column_inner][/vc_row_inner][/ultimate_carousel][/vc_column][/vc_row][vc_row disable_element=\"yes\"][vc_column][ultimate_heading main_heading=\"Board Of Directors\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;margin-bottom:35px;\"][/ultimate_heading][vc_row_inner][vc_column_inner width=\"1/3\"][ult_animation_block animation=\"fadeInUp\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][dt_fancy_image image_id=\"3172\" width=\"300\" border_radius=\"1px\" caption=\"off\" css=\".vc_custom_1692278922309{border-top-width: 1px !important;border-right-width: 1px !important;border-bottom-width: 1px !important;border-left-width: 1px !important;border-left-color: #059444 !important;border-left-style: solid !important;border-right-color: #059444 !important;border-right-style: solid !important;border-top-color: #059444 !important;border-top-style: solid !important;border-bottom-color: #059444 !important;border-bottom-style: solid !important;border-radius: 1px !important;}\"][ultimate_heading main_heading=\"Quisque sed nibh tristique\" heading_tag=\"h3\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;\"]\r\n<ul>\r\n 	<li>Duis lorem risus, aliquet a auctor a, venenatis in dui. Praesent et eros et risus dapibus placerat hendrerit cursus magna.</li>\r\n 	<li>Praesent et eros et risus dapibus placerat hendrerit cursus magna.</li>\r\n 	<li>aliquet a auctor a, venenatis in dui.</li>\r\n</ul>\r\n[/ultimate_heading][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/3\"][ult_animation_block animation=\"fadeInDown\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][dt_fancy_image image_id=\"3171\" width=\"300\" border_radius=\"1px\" caption=\"off\" css=\".vc_custom_1692278929158{border-top-width: 1px !important;border-right-width: 1px !important;border-bottom-width: 1px !important;border-left-width: 1px !important;border-left-color: #059444 !important;border-left-style: solid !important;border-right-color: #059444 !important;border-right-style: solid !important;border-top-color: #059444 !important;border-top-style: solid !important;border-bottom-color: #059444 !important;border-bottom-style: solid !important;border-radius: 1px !important;}\"][ultimate_heading main_heading=\"Quisque sed nibh tristique\" heading_tag=\"h3\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;\"]\r\n<ul>\r\n 	<li>Duis lorem risus, aliquet a auctor a, venenatis in dui. Praesent et eros et risus dapibus placerat hendrerit cursus magna.</li>\r\n 	<li>Praesent et eros et risus dapibus placerat hendrerit cursus magna.</li>\r\n 	<li>aliquet a auctor a, venenatis in dui.</li>\r\n</ul>\r\n[/ultimate_heading][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/3\"][ult_animation_block animation=\"fadeInUp\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][dt_fancy_image image_id=\"3170\" width=\"300\" border_radius=\"1px\" caption=\"off\" css=\".vc_custom_1692278936750{border-top-width: 1px !important;border-right-width: 1px !important;border-bottom-width: 1px !important;border-left-width: 1px !important;border-left-color: #059444 !important;border-left-style: solid !important;border-right-color: #059444 !important;border-right-style: solid !important;border-top-color: #059444 !important;border-top-style: solid !important;border-bottom-color: #059444 !important;border-bottom-style: solid !important;border-radius: 1px !important;}\"][ultimate_heading main_heading=\"Quisque sed nibh tristique\" heading_tag=\"h3\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;\"]\r\n<ul>\r\n 	<li>Duis lorem risus, aliquet a auctor a, venenatis in dui. Praesent et eros et risus dapibus placerat hendrerit cursus magna.</li>\r\n 	<li>Praesent et eros et risus dapibus placerat hendrerit cursus magna.</li>\r\n 	<li>aliquet a auctor a, venenatis in dui.</li>\r\n</ul>\r\n[/ultimate_heading][/ult_animation_block][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row disable_element=\"yes\"][vc_column][ultimate_heading main_heading=\"Executive Directors\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;margin-bottom:35px;\"][/ultimate_heading][vc_row_inner][vc_column_inner width=\"1/5\"][ult_animation_block animation=\"fadeInUp\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][dt_fancy_image image_id=\"3172\" width=\"300\" border_radius=\"1px\" caption=\"off\" css=\".vc_custom_1692278922309{border-top-width: 1px !important;border-right-width: 1px !important;border-bottom-width: 1px !important;border-left-width: 1px !important;border-left-color: #059444 !important;border-left-style: solid !important;border-right-color: #059444 !important;border-right-style: solid !important;border-top-color: #059444 !important;border-top-style: solid !important;border-bottom-color: #059444 !important;border-bottom-style: solid !important;border-radius: 1px !important;}\"][ultimate_heading main_heading=\"Quisque sed nibh tristique\" heading_tag=\"h3\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;\"]\r\n<ul>\r\n 	<li>Duis lorem risus, aliquet a auctor a, venenatis in dui. Praesent et eros et risus dapibus placerat hendrerit cursus magna.</li>\r\n 	<li>Praesent et eros et risus dapibus placerat hendrerit cursus magna.</li>\r\n 	<li>aliquet a auctor a, venenatis in dui.</li>\r\n</ul>\r\n[/ultimate_heading][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/5\"][ult_animation_block animation=\"fadeInDown\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][dt_fancy_image image_id=\"3171\" width=\"300\" border_radius=\"1px\" caption=\"off\" css=\".vc_custom_1692278929158{border-top-width: 1px !important;border-right-width: 1px !important;border-bottom-width: 1px !important;border-left-width: 1px !important;border-left-color: #059444 !important;border-left-style: solid !important;border-right-color: #059444 !important;border-right-style: solid !important;border-top-color: #059444 !important;border-top-style: solid !important;border-bottom-color: #059444 !important;border-bottom-style: solid !important;border-radius: 1px !important;}\"][ultimate_heading main_heading=\"Quisque sed nibh tristique\" heading_tag=\"h3\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;\"]\r\n<ul>\r\n 	<li>Duis lorem risus, aliquet a auctor a, venenatis in dui. Praesent et eros et risus dapibus placerat hendrerit cursus magna.</li>\r\n 	<li>Praesent et eros et risus dapibus placerat hendrerit cursus magna.</li>\r\n 	<li>aliquet a auctor a, venenatis in dui.</li>\r\n</ul>\r\n[/ultimate_heading][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/5\"][ult_animation_block animation=\"fadeInUp\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][dt_fancy_image image_id=\"3170\" width=\"300\" border_radius=\"1px\" caption=\"off\" css=\".vc_custom_1692278936750{border-top-width: 1px !important;border-right-width: 1px !important;border-bottom-width: 1px !important;border-left-width: 1px !important;border-left-color: #059444 !important;border-left-style: solid !important;border-right-color: #059444 !important;border-right-style: solid !important;border-top-color: #059444 !important;border-top-style: solid !important;border-bottom-color: #059444 !important;border-bottom-style: solid !important;border-radius: 1px !important;}\"][ultimate_heading main_heading=\"Quisque sed nibh tristique\" heading_tag=\"h3\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;\"]\r\n<ul>\r\n 	<li>Duis lorem risus, aliquet a auctor a, venenatis in dui. Praesent et eros et risus dapibus placerat hendrerit cursus magna.</li>\r\n 	<li>Praesent et eros et risus dapibus placerat hendrerit cursus magna.</li>\r\n 	<li>aliquet a auctor a, venenatis in dui.</li>\r\n</ul>\r\n[/ultimate_heading][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/5\"][ult_animation_block animation=\"fadeInDown\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][dt_fancy_image image_id=\"3170\" width=\"300\" border_radius=\"1px\" caption=\"off\" css=\".vc_custom_1692278936750{border-top-width: 1px !important;border-right-width: 1px !important;border-bottom-width: 1px !important;border-left-width: 1px !important;border-left-color: #059444 !important;border-left-style: solid !important;border-right-color: #059444 !important;border-right-style: solid !important;border-top-color: #059444 !important;border-top-style: solid !important;border-bottom-color: #059444 !important;border-bottom-style: solid !important;border-radius: 1px !important;}\"][ultimate_heading main_heading=\"Quisque sed nibh tristique\" heading_tag=\"h3\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;\"]\r\n<ul>\r\n 	<li>Duis lorem risus, aliquet a auctor a, venenatis in dui. Praesent et eros et risus dapibus placerat hendrerit cursus magna.</li>\r\n 	<li>Praesent et eros et risus dapibus placerat hendrerit cursus magna.</li>\r\n 	<li>aliquet a auctor a, venenatis in dui.</li>\r\n</ul>\r\n[/ultimate_heading][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/5\"][ult_animation_block animation=\"fadeInDown\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][dt_fancy_image image_id=\"3171\" width=\"300\" border_radius=\"1px\" caption=\"off\" css=\".vc_custom_1692278929158{border-top-width: 1px !important;border-right-width: 1px !important;border-bottom-width: 1px !important;border-left-width: 1px !important;border-left-color: #059444 !important;border-left-style: solid !important;border-right-color: #059444 !important;border-right-style: solid !important;border-top-color: #059444 !important;border-top-style: solid !important;border-bottom-color: #059444 !important;border-bottom-style: solid !important;border-radius: 1px !important;}\"][ultimate_heading main_heading=\"Quisque sed nibh tristique\" heading_tag=\"h3\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;\"]\r\n<ul>\r\n 	<li>Duis lorem risus, aliquet a auctor a, venenatis in dui. Praesent et eros et risus dapibus placerat hendrerit cursus magna.</li>\r\n 	<li>Praesent et eros et risus dapibus placerat hendrerit cursus magna.</li>\r\n 	<li>aliquet a auctor a, venenatis in dui.</li>\r\n</ul>\r\n[/ultimate_heading][/ult_animation_block][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner width=\"2/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row disable_element=\"yes\"][vc_column][ultimate_heading main_heading=\"Next Generation\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;margin-bottom:35px;\"][/ultimate_heading][vc_row_inner][vc_column_inner width=\"1/2\"][ult_animation_block animation=\"fadeInUp\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][dt_fancy_image image_id=\"3172\" width=\"300\" border_radius=\"1px\" caption=\"off\" css=\".vc_custom_1692278922309{border-top-width: 1px !important;border-right-width: 1px !important;border-bottom-width: 1px !important;border-left-width: 1px !important;border-left-color: #059444 !important;border-left-style: solid !important;border-right-color: #059444 !important;border-right-style: solid !important;border-top-color: #059444 !important;border-top-style: solid !important;border-bottom-color: #059444 !important;border-bottom-style: solid !important;border-radius: 1px !important;}\"][ultimate_heading main_heading=\"Quisque sed nibh tristique\" heading_tag=\"h3\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;\"]\r\n<ul>\r\n 	<li>Duis lorem risus, aliquet a auctor a, venenatis in dui. Praesent et eros et risus dapibus placerat hendrerit cursus magna.</li>\r\n 	<li>Praesent et eros et risus dapibus placerat hendrerit cursus magna.</li>\r\n 	<li>aliquet a auctor a, venenatis in dui.</li>\r\n</ul>\r\n[/ultimate_heading][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/2\"][ult_animation_block animation=\"fadeInDown\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][dt_fancy_image image_id=\"3171\" width=\"300\" border_radius=\"1px\" caption=\"off\" css=\".vc_custom_1692278929158{border-top-width: 1px !important;border-right-width: 1px !important;border-bottom-width: 1px !important;border-left-width: 1px !important;border-left-color: #059444 !important;border-left-style: solid !important;border-right-color: #059444 !important;border-right-style: solid !important;border-top-color: #059444 !important;border-top-style: solid !important;border-bottom-color: #059444 !important;border-bottom-style: solid !important;border-radius: 1px !important;}\"][ultimate_heading main_heading=\"Quisque sed nibh tristique\" heading_tag=\"h3\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;\"]\r\n<ul>\r\n 	<li>Duis lorem risus, aliquet a auctor a, venenatis in dui. Praesent et eros et risus dapibus placerat hendrerit cursus magna.</li>\r\n 	<li>Praesent et eros et risus dapibus placerat hendrerit cursus magna.</li>\r\n 	<li>aliquet a auctor a, venenatis in dui.</li>\r\n</ul>\r\n[/ultimate_heading][/ult_animation_block][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row]','About us','','inherit','closed','closed','','2917-revision-v1','','','2023-09-24 05:07:03','2023-09-24 05:07:03','',2917,'https://farmchemie.yasithawd.com/?p=3889',0,'revision','',0),(3890,1,'2023-09-24 05:29:12','2023-09-24 05:29:12','[vc_row full_width=\"stretch_row\" css=\".vc_custom_1689577528817{padding-bottom: 50px !important;}\"][vc_column css=\".vc_custom_1689577454678{margin-bottom: 50px !important;}\"][vc_row_inner css=\".vc_custom_1692407941633{border-bottom-width: 1px !important;border-bottom-color: #079547 !important;border-bottom-style: solid !important;border-radius: 1px !important;}\"][vc_column_inner width=\"1/2\" offset=\"vc_hidden-xs\"][ult_animation_block animation=\"fadeInLeftBig\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][ultimate_heading main_heading=\"Feed Additives\" heading_tag=\"h3\" main_heading_color=\"#079547\" sub_heading_color=\"#792c8a\" alignment=\"right\"]<strong>Premixes/ Specialty Feed Additives/ Dilution of Active Ingredients/ Concentrates</strong><strong>\r\n</strong>Pack sizes – 1,000 kg, 500 kg, 50 kg, 25 kg, 15 kg, 10 kg, 5 kg, 1kg[/ultimate_heading][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/2\" offset=\"vc_hidden-xs\"][vc_single_image image=\"3129\" img_size=\"full\" css_animation=\"fadeInRightBig\"][/vc_column_inner][/vc_row_inner][vc_row_inner css=\".vc_custom_1692407941633{border-bottom-width: 1px !important;border-bottom-color: #079547 !important;border-bottom-style: solid !important;border-radius: 1px !important;}\"][vc_column_inner width=\"1/2\" offset=\"vc_hidden-lg vc_hidden-md vc_hidden-sm\"][vc_single_image image=\"3129\" img_size=\"full\" css_animation=\"fadeInRightBig\"][/vc_column_inner][vc_column_inner width=\"1/2\" offset=\"vc_hidden-lg vc_hidden-md vc_hidden-sm\"][ult_animation_block animation=\"fadeInLeftBig\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][ultimate_heading main_heading=\"Feed Additives\" heading_tag=\"h3\" main_heading_color=\"#079547\" sub_heading_color=\"#792c8a\" alignment=\"right\"]<strong>Premixes/ Specialty Feed Additives/ Dilution of Active Ingredients/ Concentrates</strong><strong>\r\n</strong>Pack sizes – 1,000 kg, 500 kg, 50 kg, 25 kg, 15 kg, 10 kg, 5 kg, 1kg[/ultimate_heading][/ult_animation_block][/vc_column_inner][/vc_row_inner][vc_row_inner css=\".vc_custom_1692407949383{border-bottom-width: 1px !important;border-bottom-color: #079547 !important;border-bottom-style: solid !important;border-radius: 1px !important;}\"][vc_column_inner width=\"1/2\"][vc_single_image image=\"3401\" img_size=\"full\" css_animation=\"fadeInLeftBig\"][/vc_column_inner][vc_column_inner width=\"1/2\"][ult_animation_block animation=\"fadeInRightBig\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][ultimate_heading main_heading=\"Oral Supplements\" heading_tag=\"h3\" main_heading_color=\"#079547\" sub_heading_color=\"#792c8a\" alignment=\"left\"]<strong>Liquids</strong><strong>\r\n</strong>Pack sizes – 1,000 L, 250 L, 50 L, 25 L, 5 L, 1 L, 500 mL, 250 mL, 100 mL, 50 mL\r\n\r\n<strong>Water soluble powders</strong><strong>\r\n</strong>Pack sizes – 25 kg, 15 kg, 10 kg, 5 kg, 1kg[/ultimate_heading][/ult_animation_block][/vc_column_inner][/vc_row_inner][vc_row_inner css=\".vc_custom_1692407957943{border-bottom-width: 1px !important;border-bottom-color: #079547 !important;border-bottom-style: solid !important;border-radius: 1px !important;}\"][vc_column_inner width=\"1/2\" offset=\"vc_hidden-xs\"][ult_animation_block animation=\"fadeInLeftBig\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][ultimate_heading main_heading=\"Tablets\" heading_tag=\"h3\" main_heading_color=\"#079547\" sub_heading_color=\"#792c8a\" alignment=\"right\"]<strong>Supplementary tablets for pet care</strong>\r\nTablet sizes – 1 to 5 g\r\n\r\n<strong>Boluses</strong><strong>\r\n</strong>Tablet sizes – 5 to 25 g[/ultimate_heading][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/2\" offset=\"vc_hidden-xs\"][vc_single_image image=\"3400\" img_size=\"full\" css_animation=\"fadeInRightBig\"][/vc_column_inner][/vc_row_inner][vc_row_inner css=\".vc_custom_1692407957943{border-bottom-width: 1px !important;border-bottom-color: #079547 !important;border-bottom-style: solid !important;border-radius: 1px !important;}\"][vc_column_inner width=\"1/2\" offset=\"vc_hidden-lg vc_hidden-md vc_hidden-sm\"][vc_single_image image=\"3400\" img_size=\"full\" css_animation=\"fadeInRightBig\"][/vc_column_inner][vc_column_inner width=\"1/2\" offset=\"vc_hidden-lg vc_hidden-md vc_hidden-sm\"][ult_animation_block animation=\"fadeInLeftBig\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][ultimate_heading main_heading=\"Tablets\" heading_tag=\"h3\" main_heading_color=\"#079547\" sub_heading_color=\"#792c8a\" alignment=\"right\"]<strong>Supplementary tablets for pet care</strong>\r\nTablet sizes – 1 to 5 g\r\n\r\n<strong>Boluses</strong><strong>\r\n</strong>Tablet sizes – 5 to 25 g[/ultimate_heading][/ult_animation_block][/vc_column_inner][/vc_row_inner][vc_row_inner css=\".vc_custom_1692407970279{border-bottom-width: 1px !important;border-bottom-color: #079547 !important;border-bottom-style: solid !important;border-radius: 1px !important;}\"][vc_column_inner width=\"1/2\"][vc_single_image image=\"3399\" img_size=\"full\" css_animation=\"fadeInLeftBig\"][/vc_column_inner][vc_column_inner width=\"1/2\"][ult_animation_block animation=\"fadeInRightBig\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][ultimate_heading main_heading=\"Veterinary Pharmaceuticals\" heading_tag=\"h3\" main_heading_color=\"#079547\" sub_heading_color=\"#792c8a\" alignment=\"left\"]<strong>Deworming Solutions/ Antibiotics/ Antimicrobials/ Wound care solutions</strong><strong>\r\n</strong>Form – Liquid, WSP[/ultimate_heading][/ult_animation_block][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row full_width=\"stretch_row_content\" css=\".vc_custom_1693451731079{padding-top: 50px !important;padding-bottom: 50px !important;}\"][vc_column][ultimate_heading main_heading=\"Our manufacturing facility is certified with FAMI-QS, WHO GMP &amp; ISO 9001:2015 International Quality standards.\" main_heading_color=\"#079547\" sub_heading_color=\"#792c8a\"]We select only the <strong><em>best</em></strong> and <strong><em>most reputed</em></strong> Raw Material &amp; Packing Material Suppliers for the production of our finished goods.[/ultimate_heading][vc_row_inner equal_height=\"yes\" content_placement=\"middle\"][vc_column_inner width=\"1/5\" offset=\"vc_hidden-lg vc_hidden-md\"][vc_single_image image=\"3062\" img_size=\"full\" alignment=\"center\"][/vc_column_inner][vc_column_inner width=\"1/5\" css=\".vc_custom_1691846530645{border-right-width: 1px !important;border-left-width: 1px !important;border-left-color: #000000 !important;border-left-style: solid !important;border-right-color: #000000 !important;border-right-style: solid !important;border-radius: 1px !important;}\" offset=\"vc_hidden-lg vc_hidden-md\"][vc_single_image image=\"3063\" img_size=\"full\" alignment=\"center\"][/vc_column_inner][vc_column_inner width=\"1/5\" offset=\"vc_hidden-lg vc_hidden-md\"][vc_single_image image=\"3064\" img_size=\"full\" alignment=\"center\"][/vc_column_inner][vc_column_inner width=\"1/5\" css=\".vc_custom_1691846545469{border-right-width: 1px !important;border-left-width: 1px !important;border-left-color: #000000 !important;border-left-style: solid !important;border-right-color: #000000 !important;border-right-style: solid !important;border-radius: 1px !important;}\" offset=\"vc_hidden-lg vc_hidden-md\"][vc_single_image image=\"3065\" img_size=\"full\" alignment=\"center\"][/vc_column_inner][vc_column_inner width=\"1/5\" offset=\"vc_hidden-lg vc_hidden-md\"][vc_single_image image=\"3066\" img_size=\"full\" alignment=\"center\"][/vc_column_inner][/vc_row_inner][vc_row_inner equal_height=\"yes\" content_placement=\"middle\"][vc_column_inner width=\"1/4\" css=\".vc_custom_1691846563021{border-right-width: 1px !important;border-right-color: #000000 !important;border-right-style: solid !important;border-radius: 1px !important;}\" offset=\"vc_hidden-lg vc_hidden-md\"][vc_single_image image=\"3067\" img_size=\"full\" alignment=\"center\"][/vc_column_inner][vc_column_inner width=\"1/4\" css=\".vc_custom_1691846569845{border-right-width: 1px !important;border-right-color: #000000 !important;border-right-style: solid !important;border-radius: 1px !important;}\" offset=\"vc_hidden-lg vc_hidden-md\"][vc_single_image image=\"3068\" img_size=\"full\" alignment=\"center\"][/vc_column_inner][vc_column_inner width=\"1/4\" css=\".vc_custom_1691846576949{border-right-width: 1px !important;border-right-color: #000000 !important;border-right-style: solid !important;border-radius: 1px !important;}\" offset=\"vc_hidden-lg vc_hidden-md\"][vc_single_image image=\"3069\" img_size=\"full\" alignment=\"center\"][/vc_column_inner][vc_column_inner width=\"1/4\" offset=\"vc_hidden-lg vc_hidden-md\"][vc_single_image image=\"3070\" img_size=\"full\" alignment=\"center\"][/vc_column_inner][/vc_row_inner][vc_row_inner disable_element=\"yes\"][vc_column_inner width=\"1/3\"][vc_single_image image=\"2981\" img_size=\"full\"][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_single_image image=\"2982\" img_size=\"full\"][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_single_image image=\"2983\" img_size=\"full\"][/vc_column_inner][/vc_row_inner][vc_row_inner disable_element=\"yes\"][vc_column_inner width=\"1/6\"][/vc_column_inner][vc_column_inner width=\"2/3\"][vc_single_image image=\"2984\" img_size=\"full\"][/vc_column_inner][vc_column_inner width=\"1/6\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row full_width=\"stretch_row_content_no_spaces\"][vc_column offset=\"vc_hidden-sm vc_hidden-xs\"][vc_single_image image=\"3120\" img_size=\"full\" alignment=\"center\"][/vc_column][/vc_row][vc_row css=\".vc_custom_1689578794814{padding-top: 50px !important;padding-bottom: 50px !important;}\"][vc_column][ultimate_heading main_heading=\"Supplier selection and procurement criteria\" main_heading_color=\"#079547\" sub_heading_color=\"#792c8a\" margin_design_tab_text=\"\"][/ultimate_heading][vc_row_inner css=\".vc_custom_1689578812611{margin-top: 50px !important;}\"][vc_column_inner width=\"1/2\"][dt_vc_list dividers=\"false\"]\r\n<ul>\r\n 	<li>Check supplier’s quality certification to ensure raw material quality</li>\r\n 	<li>New vendor validation protocol - In case of a change in the supplier, obtain samples and validate in the lab</li>\r\n</ul>\r\n[/dt_vc_list][/vc_column_inner][vc_column_inner width=\"1/2\"][dt_vc_list dividers=\"false\"]\r\n<ul>\r\n 	<li>Income inspection carried out on every consignment (Tested for Chemical Assay &amp; Physical Properties)</li>\r\n 	<li>Quality department approval required to be used in the production</li>\r\n</ul>\r\n[/dt_vc_list][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row css=\".vc_custom_1689578794814{padding-top: 50px !important;padding-bottom: 50px !important;}\"][vc_column][ultimate_heading main_heading=\"Please contact us to start your Marketing Journey with a reliable manufacturing partnership with FARMCHEMIE\" heading_tag=\"h3\" main_heading_color=\"#079547\" sub_heading_color=\"#792c8a\" margin_design_tab_text=\"\"][/ultimate_heading][/vc_column][/vc_row][vc_row full_width=\"stretch_row_content\" equal_height=\"yes\" content_placement=\"middle\"][vc_column width=\"1/2\" css=\".vc_custom_1693569503225{background-image: url(https://farmchemie.yasithawd.com/wp-content/uploads/2023/09/022International-Markets-Sri-Lankan-Market.png?id=3403) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\"][vc_empty_space height=\"400px\"][/vc_column][vc_column width=\"1/2\" css=\".vc_custom_1693540250450{background-color: #8d499b !important;}\"][ultimate_heading main_heading=\"Sri Lankan Markets\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" main_heading_margin=\"margin-bottom:35px;\" sub_heading_margin=\"margin-bottom:10px;\"]Email : <a href=\"mailto:sales.import@farmchemie.com\">sales.import@farmchemie.com</a>\r\nTel No : + 94 76 577 2975[/ultimate_heading][vc_btn title=\"Read More\" style=\"outline-custom\" outline_custom_color=\"#ffffff\" outline_custom_hover_background=\"#039447\" outline_custom_hover_text=\"#ffffff\" shape=\"round\" align=\"center\"][/vc_column][/vc_row][vc_row full_width=\"stretch_row_content\" equal_height=\"yes\" rtl_reverse=\"yes\" content_placement=\"middle\"][vc_column width=\"1/2\" css=\".vc_custom_1695529397280{background-color: #039447 !important;}\" offset=\"vc_hidden-xs\"][ultimate_heading main_heading=\"International Markets\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" el_class=\"whitetxt\" main_heading_margin=\"margin-bottom:35px;\" sub_heading_margin=\"margin-bottom:10px;\"]Email : <a href=\"mailto:sales.export@farmchemie.com\">sales.export@farmchemie.com</a>\r\nTel No : + 94 76 577 2975[/ultimate_heading][vc_btn title=\"Read More\" style=\"outline-custom\" outline_custom_color=\"#ffffff\" outline_custom_hover_background=\"#8d499b\" outline_custom_hover_text=\"#ffffff\" shape=\"round\" align=\"center\"][/vc_column][vc_column width=\"1/2\" css=\".vc_custom_1695529390186{background-image: url(https://farmchemie.yasithawd.com/wp-content/uploads/2023/09/011International-Markets-Sri-Lankan-Market.png?id=3404) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\" offset=\"vc_hidden-xs\"][vc_empty_space height=\"400px\"][/vc_column][/vc_row][vc_row full_width=\"stretch_row_content\" equal_height=\"yes\" rtl_reverse=\"yes\" content_placement=\"middle\"][vc_column width=\"1/2\" css=\".vc_custom_1695529365330{background-image: url(https://farmchemie.yasithawd.com/wp-content/uploads/2023/09/011International-Markets-Sri-Lankan-Market.png?id=3404) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\" offset=\"vc_hidden-lg vc_hidden-md vc_hidden-sm\"][vc_empty_space height=\"400px\"][/vc_column][vc_column width=\"1/2\" css=\".vc_custom_1695529378241{background-color: #039447 !important;}\" offset=\"vc_hidden-lg vc_hidden-md vc_hidden-sm\"][ultimate_heading main_heading=\"International Markets\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\" el_class=\"whitetxt\" main_heading_margin=\"margin-bottom:35px;\" sub_heading_margin=\"margin-bottom:10px;\"]Email : <a href=\"mailto:sales.export@farmchemie.com\">sales.export@farmchemie.com</a>\r\nTel No : + 94 76 577 2975[/ultimate_heading][vc_btn title=\"Read More\" style=\"outline-custom\" outline_custom_color=\"#ffffff\" outline_custom_hover_background=\"#8d499b\" outline_custom_hover_text=\"#ffffff\" shape=\"round\" align=\"center\"][/vc_column][/vc_row]','Manufacturing','','inherit','closed','closed','','2964-revision-v1','','','2023-09-24 05:29:12','2023-09-24 05:29:12','',2964,'https://farmchemie.yasithawd.com/?p=3890',0,'revision','',0),(3891,1,'2023-09-24 05:43:43','2023-09-24 05:43:43','','ULTRAFORT-B_600px x 600px','','inherit','','closed','','ultrafort-b_600px-x-600px','','','2023-09-24 05:43:43','2023-09-24 05:43:43','',3626,'https://farmchemie.yasithawd.com/wp-content/uploads/2023/09/ULTRAFORT-B_600px-x-600px.png',0,'attachment','image/png',0),(3892,1,'2023-09-24 05:44:16','2023-09-24 05:44:16','','ULTRAFORT-B_300px','','inherit','','closed','','ultrafort-b_300px','','','2023-09-24 05:44:16','2023-09-24 05:44:16','',3626,'https://farmchemie.yasithawd.com/wp-content/uploads/2023/09/ULTRAFORT-B_300px.png',0,'attachment','image/png',0),(3893,1,'2023-09-24 05:45:26','2023-09-24 05:45:26','','Leverm-30_300pxL','','inherit','','closed','','leverm-30_300pxl','','','2023-09-24 05:45:26','2023-09-24 05:45:26','',3620,'https://farmchemie.yasithawd.com/wp-content/uploads/2023/09/Leverm-30_300pxL.png',0,'attachment','image/png',0),(3894,1,'2023-09-24 05:45:49','2023-09-24 05:45:49','','Leverm-30_600px-x-600px-2','','inherit','','closed','','leverm-30_600px-x-600px-2','','','2023-09-24 05:45:49','2023-09-24 05:45:49','',3620,'https://farmchemie.yasithawd.com/wp-content/uploads/2023/09/Leverm-30_600px-x-600px-2.png',0,'attachment','image/png',0),(3895,1,'2023-09-24 06:32:49','2023-09-24 06:32:49','','CEVAC-VITABORN-L_300px','','inherit','','closed','','cevac-vitaborn-l_300px-3','','','2023-09-24 06:32:49','2023-09-24 06:32:49','',3662,'https://farmchemie.yasithawd.com/wp-content/uploads/2023/09/CEVAC-VITABORN-L_300px-2.png',0,'attachment','image/png',0),(3896,1,'2023-09-24 06:34:49','2023-09-24 06:34:49','','CEVAC-TRANSMUNE_300px','','inherit','','closed','','cevac-transmune_300px-2','','','2023-09-24 06:34:49','2023-09-24 06:34:49','',3661,'https://farmchemie.yasithawd.com/wp-content/uploads/2023/09/CEVAC-TRANSMUNE_300px-1.png',0,'attachment','image/png',0),(3897,1,'2023-09-24 07:03:41','2023-09-24 07:03:41','','VECTROMUNE-FP-–-MG_300px','','inherit','','closed','','vectromune-fp-mg_300px-2','','','2023-09-24 07:03:41','2023-09-24 07:03:41','',3673,'https://farmchemie.yasithawd.com/wp-content/uploads/2023/09/VECTROMUNE-FP-–-MG_300px-1.png',0,'attachment','image/png',0),(3898,1,'2023-09-24 07:04:03','2023-09-24 07:04:03','','VECTROMUNE FP – MG_600px x 600px','','inherit','','closed','','vectromune-fp-mg_600px-x-600px-2','','','2023-09-24 07:04:03','2023-09-24 07:04:03','',3673,'https://farmchemie.yasithawd.com/wp-content/uploads/2023/09/VECTROMUNE-FP-–-MG_600px-x-600px-1.png',0,'attachment','image/png',0),(3899,1,'2023-09-24 07:16:13','2023-09-24 07:16:13','','DOXYNEO-1kg_600px-x-600px','','inherit','','closed','','doxyneo-1kg_600px-x-600px','','','2023-09-24 07:16:13','2023-09-24 07:16:13','',3631,'https://farmchemie.yasithawd.com/wp-content/uploads/2023/09/DOXYNEO-1kg_600px-x-600px.png',0,'attachment','image/png',0),(3900,1,'2023-09-24 07:16:25','2023-09-24 07:16:25','','DOXYNEO_300px','','inherit','','closed','','doxyneo_300px','','','2023-09-24 07:16:25','2023-09-24 07:16:25','',3631,'https://farmchemie.yasithawd.com/wp-content/uploads/2023/09/DOXYNEO_300px.png',0,'attachment','image/png',0),(3901,1,'2023-09-24 07:22:10','2023-09-24 07:22:10','','Bactogrow-Premium_300px','','inherit','','closed','','bactogrow-premium_300px','','','2023-09-24 07:22:10','2023-09-24 07:22:10','',3609,'https://farmchemie.yasithawd.com/wp-content/uploads/2023/09/Bactogrow-Premium_300px.png',0,'attachment','image/png',0),(3902,1,'2023-09-24 07:22:21','2023-09-24 07:22:21','','BactoGrow-Premium','','inherit','','closed','','bactogrow-premium-2','','','2023-09-24 07:22:21','2023-09-24 07:22:21','',3609,'https://farmchemie.yasithawd.com/wp-content/uploads/2023/09/BactoGrow-Premium.png',0,'attachment','image/png',0),(3903,1,'2023-09-24 07:29:26','2023-09-24 07:29:26','','BioGain_300px','','inherit','','closed','','biogain_300px','','','2023-09-24 07:29:26','2023-09-24 07:29:26','',3600,'https://farmchemie.yasithawd.com/wp-content/uploads/2023/09/BioGain_300px.png',0,'attachment','image/png',0),(3904,1,'2023-09-24 07:29:47','2023-09-24 07:29:47','','BioGain_600px-x-600px','','inherit','','closed','','biogain_600px-x-600px','','','2023-09-24 07:29:47','2023-09-24 07:29:47','',3600,'https://farmchemie.yasithawd.com/wp-content/uploads/2023/09/BioGain_600px-x-600px.png',0,'attachment','image/png',0),(3905,1,'2023-09-24 07:30:10','2023-09-24 07:30:10','','BioGain-MAX_300px','','inherit','','closed','','biogain-max_300px','','','2023-09-24 07:30:10','2023-09-24 07:30:10','',3601,'https://farmchemie.yasithawd.com/wp-content/uploads/2023/09/BioGain-MAX_300px.png',0,'attachment','image/png',0),(3906,1,'2023-09-24 07:30:46','2023-09-24 07:30:46','','BioGain-MAX','','inherit','','closed','','biogain-max-2','','','2023-09-24 07:30:46','2023-09-24 07:30:46','',3601,'https://farmchemie.yasithawd.com/wp-content/uploads/2023/09/BioGain-MAX.png',0,'attachment','image/png',0),(3907,1,'2023-09-24 07:32:15','2023-09-24 07:32:15','','BROILER Vitamin Premix Bag_600px x 600px','','inherit','','closed','','broiler-vitamin-premix-bag_600px-x-600px','','','2023-09-24 07:32:15','2023-09-24 07:32:15','',3603,'https://farmchemie.yasithawd.com/wp-content/uploads/2023/09/BROILER-Vitamin-Premix-Bag_600px-x-600px.png',0,'attachment','image/png',0),(3908,1,'2023-09-24 07:34:28','2023-09-24 07:34:28','','BROILER-Vitamin-Premix_300px','','inherit','','closed','','broiler-vitamin-premix_300px','','','2023-09-24 07:34:28','2023-09-24 07:34:28','',3603,'https://farmchemie.yasithawd.com/wp-content/uploads/2023/09/BROILER-Vitamin-Premix_300px.png',0,'attachment','image/png',0),(3909,1,'2023-09-24 07:36:24','2023-09-24 07:36:24','','LAYER Vitamin Premix Bag_600px x 600px','','inherit','','closed','','layer-vitamin-premix-bag_600px-x-600px','','','2023-09-24 07:36:24','2023-09-24 07:36:24','',3604,'https://farmchemie.yasithawd.com/wp-content/uploads/2023/09/LAYER-Vitamin-Premix-Bag_600px-x-600px.png',0,'attachment','image/png',0),(3910,1,'2023-09-24 07:36:35','2023-09-24 07:36:35','','LAYER-Vitamin-Premix_300px','','inherit','','closed','','layer-vitamin-premix_300px','','','2023-09-24 07:36:35','2023-09-24 07:36:35','',3604,'https://farmchemie.yasithawd.com/wp-content/uploads/2023/09/LAYER-Vitamin-Premix_300px.png',0,'attachment','image/png',0),(3911,1,'2023-09-24 07:38:27','2023-09-24 07:38:27','','OXYQUIN®-Dry_300px','','inherit','','closed','','oxyquin-dry_300px','','','2023-09-24 07:38:27','2023-09-24 07:38:27','',3607,'https://farmchemie.yasithawd.com/wp-content/uploads/2023/09/OXYQUIN®-Dry_300px.png',0,'attachment','image/png',0),(3912,1,'2023-09-24 07:38:52','2023-09-24 07:38:52','','OXYQUIN®-Dry','','inherit','','closed','','oxyquin-dry-2','','','2023-09-24 07:38:52','2023-09-24 07:38:52','',3607,'https://farmchemie.yasithawd.com/wp-content/uploads/2023/09/OXYQUIN®-Dry.png',0,'attachment','image/png',0),(3913,1,'2023-09-24 07:39:35','2023-09-24 07:39:35','','SALMOBLAST®-Dry_300px','','inherit','','closed','','salmoblast-dry_300px','','','2023-09-24 07:39:35','2023-09-24 07:39:35','',3608,'https://farmchemie.yasithawd.com/wp-content/uploads/2023/09/SALMOBLAST®-Dry_300px.png',0,'attachment','image/png',0),(3914,1,'2023-09-24 07:41:04','2023-09-24 07:41:04','','Twin Pack Vitamin Premix Bag_600px x 600px','','inherit','','closed','','twin-pack-vitamin-premix-bag_600px-x-600px','','','2023-09-24 07:41:04','2023-09-24 07:41:04','',3605,'https://farmchemie.yasithawd.com/wp-content/uploads/2023/09/Twin-Pack-Vitamin-Premix-Bag_600px-x-600px.png',0,'attachment','image/png',0),(3915,1,'2023-09-24 07:41:14','2023-09-24 07:41:14','','Vitamin-Premix-Bag_300px','','inherit','','closed','','vitamin-premix-bag_300px','','','2023-09-24 07:41:14','2023-09-24 07:41:14','',3605,'https://farmchemie.yasithawd.com/wp-content/uploads/2023/09/Vitamin-Premix-Bag_300px.png',0,'attachment','image/png',0),(3916,1,'2023-09-24 07:42:03','2023-09-24 07:42:03','','SALMOBLAST®-Dry','','inherit','','closed','','salmoblast-dry-2','','','2023-09-24 07:42:03','2023-09-24 07:42:03','',3608,'https://farmchemie.yasithawd.com/wp-content/uploads/2023/09/SALMOBLAST®-Dry.png',0,'attachment','image/png',0),(3917,1,'2023-09-24 07:43:55','2023-09-24 07:43:55','','Cinaprim_300px','','inherit','','closed','','cinaprim_300px','','','2023-09-24 07:43:55','2023-09-24 07:43:55','',3630,'https://farmchemie.yasithawd.com/wp-content/uploads/2023/09/Cinaprim_300px.png',0,'attachment','image/png',0),(3918,1,'2023-09-24 08:37:28','2023-09-24 08:37:28','','GARD-L_300px','','inherit','','closed','','gard-l_300px','','','2023-09-24 08:37:28','2023-09-24 08:37:28','',3618,'https://farmchemie.yasithawd.com/wp-content/uploads/2023/09/GARD-L_300px.png',0,'attachment','image/png',0),(3919,1,'2023-09-24 08:37:45','2023-09-24 08:37:45','','GARD-L_600px x 600px','','inherit','','closed','','gard-l_600px-x-600px','','','2023-09-24 08:37:45','2023-09-24 08:37:45','',3618,'https://farmchemie.yasithawd.com/wp-content/uploads/2023/09/GARD-L_600px-x-600px.png',0,'attachment','image/png',0),(3920,1,'2023-09-24 08:46:57','2023-09-24 08:46:57','[vc_row full_width=\"stretch_row_content_no_spaces\"][vc_column][ultimate_heading main_heading=\"Our History\" main_heading_color=\"#762888\"][/ultimate_heading][/vc_column][/vc_row][vc_row][vc_column][vc_row_inner equal_height=\"yes\" content_placement=\"middle\" css=\".vc_custom_1692359205466{margin-top: 35px !important;}\"][vc_column_inner width=\"1/2\"][ult_animation_block animation=\"fadeInLeftBig\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][vc_single_image image=\"3273\" img_size=\"full\" alignment=\"center\" style=\"vc_box_rounded\"][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/2\"][ult_animation_block animation=\"fadeInRightBig\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][ultimate_heading main_heading=\"Founded in 2002\" heading_tag=\"h3\" main_heading_color=\"#039447\" alignment=\"left\" sub_heading_font_size=\"desktop:18px;\"]Founded in 2002 by Mr. Uditha Wanigasinghe, an agriculturist who had a mission to aid valuable livestock producers in the country to enhance the yield and profitability of production. FARMCHEMIE introduced unprecedented solutions and consistent technical services to gain our customers’ trust and became the market leader in animal health products in 2006 within just four years.[/ultimate_heading][/ult_animation_block][/vc_column_inner][/vc_row_inner][vc_separator color=\"custom\" accent_color=\"#039447\"][vc_row_inner equal_height=\"yes\" rtl_reverse=\"yes\" content_placement=\"middle\" css=\".vc_custom_1692359216075{margin-top: 35px !important;}\"][vc_column_inner width=\"1/2\" offset=\"vc_hidden-xs\"][ult_animation_block animation=\"fadeInLeftBig\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][ultimate_heading main_heading=\"2006\" heading_tag=\"h3\" main_heading_color=\"#039447\" alignment=\"right\"]In 2006, the Sri Lankan poultry industry was affected with Avian Influenza which became a difficult period for the growth of FARMCHEMIE. This was the key factor in our decision to diversify into Agro Products. PLANTCHEM &amp; PLANTSEEDS were established to offer solutions in Agro specialty fertilizers, pesticides and seeds to invaluable cultivators.[/ultimate_heading][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/2\" offset=\"vc_hidden-xs\"][ult_animation_block animation=\"fadeInRightBig\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][vc_single_image image=\"3276\" img_size=\"full\" alignment=\"center\" style=\"vc_box_rounded\"][/ult_animation_block][/vc_column_inner][/vc_row_inner][vc_row_inner equal_height=\"yes\" rtl_reverse=\"yes\" content_placement=\"middle\" css=\".vc_custom_1692359216075{margin-top: 35px !important;}\"][vc_column_inner width=\"1/2\" offset=\"vc_hidden-lg vc_hidden-md vc_hidden-sm\"][ult_animation_block animation=\"fadeInRightBig\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][vc_single_image image=\"3276\" img_size=\"full\" alignment=\"center\" style=\"vc_box_rounded\"][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/2\" offset=\"vc_hidden-lg vc_hidden-md vc_hidden-sm\"][ult_animation_block animation=\"fadeInLeftBig\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][ultimate_heading main_heading=\"2006\" heading_tag=\"h3\" main_heading_color=\"#039447\" alignment=\"left\"]\r\n\r\nIn 2006, the Sri Lankan poultry industry was affected with Avian Influenza which became a difficult period for the growth of FARMCHEMIE. This was the key factor in our decision to diversify into Agro Products. PLANTCHEM &amp; PLANTSEEDS were established to offer solutions in Agro specialty fertilizers, pesticides and seeds to invaluable cultivators.\r\n\r\n[/ultimate_heading][/ult_animation_block][/vc_column_inner][/vc_row_inner][vc_separator color=\"custom\" accent_color=\"#039447\"][vc_row_inner equal_height=\"yes\" content_placement=\"middle\" css=\".vc_custom_1692359231594{margin-top: 35px !important;}\"][vc_column_inner width=\"1/2\"][ult_animation_block animation=\"fadeInLeftBig\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][vc_single_image image=\"3277\" img_size=\"full\" alignment=\"center\" style=\"vc_box_rounded\"][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/2\"][ult_animation_block animation=\"fadeInRightBig\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][ultimate_heading main_heading=\"2010\" heading_tag=\"h3\" main_heading_color=\"#039447\" alignment=\"left\"]In 2010, FEED CHEMIE became the subsequent addition to ever-growing vision of Mr. Uditha Wanigasinghe and entered the Animal Feed Additives market.[/ultimate_heading][/ult_animation_block][/vc_column_inner][/vc_row_inner][vc_separator color=\"custom\" accent_color=\"#039447\"][vc_row_inner equal_height=\"yes\" rtl_reverse=\"yes\" content_placement=\"middle\" css=\".vc_custom_1692359239274{margin-top: 35px !important;}\"][vc_column_inner width=\"1/2\" offset=\"vc_hidden-xs\"][ult_animation_block animation=\"fadeInLeftBig\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][ultimate_heading main_heading=\"2012\" heading_tag=\"h3\" main_heading_color=\"#039447\" alignment=\"right\"]The year 2012 is described as a turning point in our journey as FARMCHEMIE established our first production facility for the manufacturing and packing of animal health products. FARMCHEMIE became the first animal health organization in Sri Lanka to obtain ISO 9001:2015 and WHO GMP International Quality Certification. With our own formulation unit, FARMCHEMIE was able to offer customized solutions to cater the needs of the Sri Lankan Livestock Industry.[/ultimate_heading][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/2\" offset=\"vc_hidden-xs\"][ult_animation_block animation=\"fadeInRightBig\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][vc_single_image image=\"3278\" img_size=\"full\" alignment=\"center\" style=\"vc_box_rounded\"][/ult_animation_block][/vc_column_inner][/vc_row_inner][vc_row_inner equal_height=\"yes\" rtl_reverse=\"yes\" content_placement=\"middle\" css=\".vc_custom_1692359239274{margin-top: 35px !important;}\"][vc_column_inner width=\"1/2\" offset=\"vc_hidden-lg vc_hidden-md vc_hidden-sm\"][ult_animation_block animation=\"fadeInRightBig\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][vc_single_image image=\"3278\" img_size=\"full\" alignment=\"center\" style=\"vc_box_rounded\"][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/2\" offset=\"vc_hidden-lg vc_hidden-md vc_hidden-sm\"][ult_animation_block animation=\"fadeInLeftBig\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][ultimate_heading main_heading=\"2012\" heading_tag=\"h3\" main_heading_color=\"#039447\" alignment=\"left\"]The year 2012 is described as a turning point in our journey as FARMCHEMIE established our first production facility for the manufacturing and packing of animal health products. FARMCHEMIE became the first animal health organization in Sri Lanka to obtain ISO 9001:2015 and WHO GMP International Quality Certification. With our own formulation unit, FARMCHEMIE was able to offer customized solutions to cater the needs of the Sri Lankan Livestock Industry.[/ultimate_heading][/ult_animation_block][/vc_column_inner][/vc_row_inner][vc_separator color=\"custom\" accent_color=\"#039447\"][vc_row_inner content_placement=\"middle\" css=\".vc_custom_1692359246626{margin-top: 35px !important;}\"][vc_column_inner width=\"1/2\"][ult_animation_block animation=\"fadeInLeftBig\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][vc_single_image image=\"3279\" img_size=\"full\" alignment=\"center\" style=\"vc_box_rounded\"][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/2\"][ult_animation_block animation=\"fadeInRightBig\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][ultimate_heading main_heading=\"2016\" heading_tag=\"h3\" main_heading_color=\"#039447\" alignment=\"left\"]The year 2016 was another key milestone with the entry to the International Markets. FARMCHEMIE exported our first Feed Premix consignment to India and in 2018 our export operation was distinctly established as FARMCHEMIE MANUFACTURERS, a Board of Investment (BOI) approved entity.[/ultimate_heading][/ult_animation_block][/vc_column_inner][/vc_row_inner][vc_separator color=\"custom\" accent_color=\"#039447\"][vc_row_inner equal_height=\"yes\" rtl_reverse=\"yes\" content_placement=\"middle\" css=\".vc_custom_1695527931440{margin-top: 35px !important;}\"][vc_column_inner width=\"1/2\" offset=\"vc_hidden-xs\"][ult_animation_block animation=\"fadeInLeftBig\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][ultimate_heading main_heading=\"Fully automated manufacturing\" heading_tag=\"h3\" main_heading_color=\"#039447\" alignment=\"right\"]FARMCHEMIE MANUFACTURERS has invested in fully automated manufacturing facility from Bühler and became the first Sri Lankan owned company to obtain FAMI-QS International Quality Certification.[/ultimate_heading][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/2\" offset=\"vc_hidden-xs\"][ult_animation_block animation=\"fadeInRightBig\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][vc_single_image image=\"3280\" img_size=\"full\" alignment=\"center\" style=\"vc_box_rounded\"][/ult_animation_block][/vc_column_inner][/vc_row_inner][vc_row_inner equal_height=\"yes\" rtl_reverse=\"yes\" content_placement=\"middle\" css=\".vc_custom_1695527931440{margin-top: 35px !important;}\"][vc_column_inner width=\"1/2\" offset=\"vc_hidden-lg vc_hidden-md vc_hidden-sm\"][ult_animation_block animation=\"fadeInRightBig\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][vc_single_image image=\"3280\" img_size=\"full\" alignment=\"center\" style=\"vc_box_rounded\"][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/2\" offset=\"vc_hidden-lg vc_hidden-md vc_hidden-sm\"][ult_animation_block animation=\"fadeInLeftBig\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][ultimate_heading main_heading=\"Fully automated manufacturing\" heading_tag=\"h3\" main_heading_color=\"#039447\" alignment=\"left\"]FARMCHEMIE MANUFACTURERS has invested in fully automated manufacturing facility from Bühler and became the first Sri Lankan owned company to obtain FAMI-QS International Quality Certification.[/ultimate_heading][/ult_animation_block][/vc_column_inner][/vc_row_inner][vc_separator color=\"custom\" accent_color=\"#039447\"][vc_row_inner equal_height=\"yes\" content_placement=\"middle\" css=\".vc_custom_1692359258634{margin-top: 35px !important;}\"][vc_column_inner width=\"1/2\"][ult_animation_block animation=\"fadeInLeftBig\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][vc_single_image image=\"3281\" img_size=\"full\" alignment=\"center\" style=\"vc_box_rounded\"][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/2\"][ult_animation_block animation=\"fadeInRightBig\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][ultimate_heading main_heading=\"Official toll manufacturer partner\" heading_tag=\"h3\" main_heading_color=\"#039447\" alignment=\"left\"]With the trust and reputation built as a reliable manufacturer of animal feed additives and supplements in the global market, several world-renowned international brands have appointed FARMCHEMIE MANUFACTURERS as the official toll manufacturer partner. FARMCHEMIE MANUFACTURERS exports a wide range of products consisting of premixes, specialty feed additives, oral liquid supplements and pet supplements to various markets in South Asia, East Asia, Middle East and Africa.\r\n\r\nFARMCHEMIE, FEED CHEMIE &amp; FARMCHEMIE MANUFACTURERS currently operate under the ownership of our holding company, DYVESTA.\r\n\r\nDYEVSTA has become the pinnacle of Animal Nutrition and Health.\r\n\r\nDYVESTA is Dynamic, through our continuous evolution, growth and progress. DYVESTA is Diverse, in terms of both our business strategy and our community. DYVESTA is Devoted to our valuable business partners through exceptional service.[/ultimate_heading][/ult_animation_block][/vc_column_inner][/vc_row_inner][vc_separator color=\"custom\" accent_color=\"#039447\"][/vc_column][/vc_row][vc_row full_width=\"stretch_row\" equal_height=\"yes\" bg_type=\"image\" parallax_style=\"vcpb-vz-jquery\" bg_image_new=\"id^3256|url^https://farmchemie.yasithawd.com/wp-content/uploads/2023/08/Vision-Mission.png|caption^null|alt^null|title^Vision-&amp;-Mission|description^null\" bg_image_repeat=\"no-repeat\" enable_overlay=\"enable_overlay_value\" overlay_color=\"#000000\" overlay_pattern=\"01.png\" overlay_pattern_opacity=\"5\" css=\".vc_custom_1692366072362{margin-top: 35px !important;padding-top: 65px !important;padding-bottom: 100px !important;}\"][vc_column][vc_row_inner equal_height=\"yes\"][vc_column_inner width=\"1/2\"][ult_animation_block animation=\"fadeInLeftBig\" animation_duration=\"2\" animation_delay=\"0\" animation_iteration_count=\"1\"][ultimate_heading main_heading=\"Vision\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\"]To be the customers’ first and best choice by ensuring outstanding satisfaction through a well-trained and dedicated team. Prompt and quality solutions to our customers’ requirements will determine the increase of return on investment for us.[/ultimate_heading][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/2\"][ult_animation_block animation=\"fadeInRightBig\" animation_duration=\"2\" animation_delay=\"0\" animation_iteration_count=\"1\"][ultimate_heading main_heading=\"Mission\" main_heading_color=\"#ffffff\" sub_heading_color=\"#ffffff\"]To become a world renowned manufacturer of Animal Health products and a trusted partner among our stakeholders for our integrity as well as for providing effective solutions[/ultimate_heading][/ult_animation_block][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row css=\".vc_custom_1695545208125{margin-top: 15px !important;margin-bottom: 15px !important;}\"][vc_column][ultimate_heading main_heading=\"Achievements\" main_heading_color=\"#762888\" main_heading_margin=\"margin-top:35px;\"][/ultimate_heading][vc_row_inner gap=\"20\"][vc_column_inner width=\"1/2\" css=\".vc_custom_1691995519863{background-color: #f4ab20 !important;border: 1px solid #f4ab20 !important;border-radius: 35px !important;}\"][ult_animation_block animation=\"fadeInLeftBig\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][bsf-info-box icon_type=\"custom\" icon_img=\"id^3117|url^https://farmchemie.yasithawd.com/wp-content/uploads/2023/08/Pink_-H.png|caption^null|alt^null|title^Pink_-H|description^null\" img_width=\"60\" icon_style=\"advanced\" icon_border_style=\"solid\" icon_color_border=\"#ffffff\" icon_border_size=\"1\" icon_border_radius=\"500\" icon_border_spacing=\"1\" title=\"First Free Sale Certificate obtained from Veterinary Drug Control Authority (VDCA) for Veterinary Pharmaceuticals\" title_font_style=\"font-weight:bold;\" title_font_size=\"desktop:20px;\"][/bsf-info-box][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/2\" css=\".vc_custom_1691995661095{background-color: #722f8b !important;border: 1px solid #722f8b !important;border-radius: 35px !important;}\"][ult_animation_block animation=\"fadeInRightBig\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][bsf-info-box icon_type=\"custom\" icon_img=\"id^3117|url^https://farmchemie.yasithawd.com/wp-content/uploads/2023/08/Pink_-H.png|caption^null|alt^null|title^Pink_-H|description^null\" img_width=\"60\" icon_style=\"advanced\" icon_border_style=\"solid\" icon_color_border=\"#ffffff\" icon_border_size=\"1\" icon_border_radius=\"500\" icon_border_spacing=\"1\" title=\"First ISO 9001: 2015 ,WHO-GMP Quality Management systems certified Animal Health company in Sri Lanka since August, 2012\" title_font_style=\"font-weight:bold;\" title_font_color=\"#ffffff\" title_font_size=\"desktop:20px;\"][/bsf-info-box][/ult_animation_block][/vc_column_inner][/vc_row_inner][vc_row_inner gap=\"20\"][vc_column_inner width=\"1/2\" css=\".vc_custom_1691995661095{background-color: #722f8b !important;border: 1px solid #722f8b !important;border-radius: 35px !important;}\"][ult_animation_block animation=\"fadeInLeftBig\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][bsf-info-box icon_type=\"custom\" icon_img=\"id^3117|url^https://farmchemie.yasithawd.com/wp-content/uploads/2023/08/Pink_-H.png|caption^null|alt^null|title^Pink_-H|description^null\" img_width=\"60\" icon_style=\"advanced\" icon_border_style=\"solid\" icon_color_border=\"#ffffff\" icon_border_size=\"1\" icon_border_radius=\"500\" icon_border_spacing=\"1\" title=\"First FAMI-QS certified company in sri lanka\" title_font_style=\"font-weight:bold;\" title_font_color=\"#ffffff\" title_font_size=\"desktop:20px;\"][/bsf-info-box][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/2\" css=\".vc_custom_1691995519863{background-color: #f4ab20 !important;border: 1px solid #f4ab20 !important;border-radius: 35px !important;}\"][ult_animation_block animation=\"fadeInRightBig\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][bsf-info-box icon_type=\"custom\" icon_img=\"id^3117|url^https://farmchemie.yasithawd.com/wp-content/uploads/2023/08/Pink_-H.png|caption^null|alt^null|title^Pink_-H|description^null\" img_width=\"60\" icon_style=\"advanced\" icon_border_style=\"solid\" icon_color_border=\"#ffffff\" icon_border_size=\"1\" icon_border_radius=\"500\" icon_border_spacing=\"1\" title=\"First Certificate of Ethical Trading certified in Livestock industry\" title_font_style=\"font-weight:bold;\" title_font_size=\"desktop:20px;\"][/bsf-info-box][/ult_animation_block][/vc_column_inner][/vc_row_inner][vc_row_inner gap=\"20\"][vc_column_inner width=\"1/4\" css=\".vc_custom_1695528026328{border-radius: 35px !important;}\" offset=\"vc_hidden-xs\"][/vc_column_inner][vc_column_inner width=\"2/4\" css=\".vc_custom_1691995519863{background-color: #f4ab20 !important;border: 1px solid #f4ab20 !important;border-radius: 35px !important;}\"][ult_animation_block animation=\"fadeInLeftBig\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][bsf-info-box icon_type=\"custom\" icon_img=\"id^3117|url^https://farmchemie.yasithawd.com/wp-content/uploads/2023/08/Pink_-H.png|caption^null|alt^null|title^Pink_-H|description^null\" img_width=\"60\" icon_style=\"advanced\" icon_border_style=\"solid\" icon_color_border=\"#ffffff\" icon_border_size=\"1\" icon_border_radius=\"500\" icon_border_spacing=\"1\" title=\"First Silver awarded company at National Exports Awards in Livestock industry\" title_font_style=\"font-weight:bold;\" title_font_size=\"desktop:20px;\"][/bsf-info-box][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/4\" offset=\"vc_hidden-xs\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row full_width=\"stretch_row_content\" equal_height=\"yes\" content_placement=\"bottom\" css=\".vc_custom_1695531973651{margin-top: 15px !important;padding-right: 5% !important;padding-left: 5% !important;}\"][vc_column][ultimate_heading main_heading=\"Certifications\" main_heading_color=\"#762888\" main_heading_margin=\"margin-top:35px;\"][/ultimate_heading][vc_row_inner content_placement=\"bottom\"][vc_column_inner width=\"1/6\"][dt_fancy_image image_id=\"3408\" width=\"300\" caption=\"off\"][/vc_column_inner][vc_column_inner width=\"1/6\"][dt_fancy_image image_id=\"3407\" width=\"150\" caption=\"off\"][/vc_column_inner][vc_column_inner width=\"1/6\"][dt_fancy_image image_id=\"3409\" width=\"150\" caption=\"off\"][/vc_column_inner][vc_column_inner width=\"1/6\"][dt_fancy_image image_id=\"3410\" width=\"130\" caption=\"off\"][/vc_column_inner][vc_column_inner width=\"1/6\"][dt_fancy_image image_id=\"3411\" width=\"150\" caption=\"off\"][/vc_column_inner][vc_column_inner width=\"1/6\"][dt_fancy_image image_id=\"3406\" width=\"150\" caption=\"off\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row full_width=\"stretch_row\" equal_height=\"yes\" content_placement=\"bottom\" css=\".vc_custom_1693625624233{margin-top: 15px !important;}\"][vc_column][ultimate_heading main_heading=\"Awards\" main_heading_color=\"#762888\" main_heading_margin=\"margin-top:35px;\"][/ultimate_heading][ultimate_carousel slide_to_scroll=\"single\" slides_on_mob=\"1\"][dt_fancy_image image_id=\"3412\" width=\"300\"][dt_fancy_image image_id=\"3413\" width=\"300\" caption=\"off\"][dt_fancy_image image_id=\"3414\" width=\"300\" caption=\"off\"][dt_fancy_image image_id=\"3415\" width=\"300\" caption=\"off\"][dt_fancy_image image_id=\"3416\" width=\"300\" caption=\"off\"][dt_fancy_image image_id=\"3417\" width=\"300\" caption=\"off\"][dt_fancy_image image_id=\"3418\" width=\"300\" caption=\"off\"][dt_fancy_image image_id=\"3420\" width=\"300\" caption=\"off\"][dt_fancy_image image_id=\"3419\" width=\"300\" caption=\"off\"][dt_fancy_image image_id=\"3422\" width=\"300\" caption=\"off\"][dt_fancy_image image_id=\"3421\" width=\"300\" caption=\"off\"][dt_fancy_image image_id=\"3422\" width=\"300\" caption=\"off\"][dt_fancy_image image_id=\"3423\" width=\"300\" caption=\"off\"][dt_fancy_image image_id=\"3424\" width=\"300\" caption=\"off\"][dt_fancy_image image_id=\"3425\" width=\"300\" caption=\"off\"][/ultimate_carousel][/vc_column][/vc_row][vc_row disable_element=\"yes\" css=\".vc_custom_1695294608306{margin-top: 15px !important;}\"][vc_column][ultimate_heading main_heading=\"Board Of Directors\" main_heading_color=\"#762888\" main_heading_margin=\"margin-top:35px;margin-bottom:35px;\"][/ultimate_heading][ultimate_carousel slides_on_desk=\"3\" slides_on_mob=\"1\" arrow_style=\"square-bg\" arrow_bg_color=\"#039447\" arrow_color=\"#ffffff\" next_icon=\"ultsl-arrow-right6\" prev_icon=\"ultsl-arrow-left6\" dots_color=\"#039447\" item_animation=\"fadeIn\" css_ad_caraousel=\".vc_custom_1694697209111{padding-right: 10px !important;padding-left: 10px !important;}\"][vc_row_inner][vc_column_inner][ultimate_heading main_heading=\"Uditha Wanigasinghe\" heading_tag=\"h3\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;\"]Managing Director[/ultimate_heading][ultimate_modal modal_title=\"Read more\" btn_size=\"md\" btn_bg_color=\"#089548\" btn_text=\"Read more\" overlay_bg_opacity=\"75\" img_size=\"80\" btn_txt_color=\"#ffffff\"]pretium mauris pretium mauris pretium mauris pretium mauris pretium mauris pretium mauris pretium mauris pretium mauris pretium mauris pretium mauris pretium mauris pretium mauris pretium mauris pretium mauris pretium mauris pretium mauris pretium mauris pretium mauris pretium mauris pretium mauris pretium mauris pretium mauris pretium mauris pretium mauris pretium mauris pretium mauris pretium mauris pretium mauris[/ultimate_modal][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner][ultimate_heading main_heading=\"Senitha Wanigasinghe\" heading_tag=\"h3\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;\"]Director/ CEO[/ultimate_heading][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner][ultimate_heading main_heading=\"Thulitha Wanigasinghe\" heading_tag=\"h3\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;\"]Director - Veterinary Services &amp; RA[/ultimate_heading][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner][ultimate_heading main_heading=\"Yvonne Van Cuylenberg\" heading_tag=\"h3\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;\"]Director - HR &amp; Administration[/ultimate_heading][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner][ultimate_heading main_heading=\"Gamini Wanigasinghe\" heading_tag=\"h3\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;\"]Director[/ultimate_heading][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner][ultimate_heading main_heading=\"Ajith Welianga\" heading_tag=\"h3\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;\"]Director - Marketing[/ultimate_heading][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner][ultimate_heading main_heading=\"Sunil Ranjith Guruge\" heading_tag=\"h3\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;\"]Director - Customer &amp; Employee Relations[/ultimate_heading][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner][ultimate_heading main_heading=\"Sampath Gunathilake\" heading_tag=\"h3\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;\"]Director - Sales[/ultimate_heading][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner][ultimate_heading main_heading=\"Chanaka Indrajith\" heading_tag=\"h3\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;\"]Director Production / COO[/ultimate_heading][/vc_column_inner][/vc_row_inner][/ultimate_carousel][/vc_column][/vc_row][vc_row disable_element=\"yes\"][vc_column][ultimate_heading main_heading=\"Board Of Directors\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;margin-bottom:35px;\"][/ultimate_heading][vc_row_inner][vc_column_inner width=\"1/3\"][ult_animation_block animation=\"fadeInUp\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][dt_fancy_image image_id=\"3172\" width=\"300\" border_radius=\"1px\" caption=\"off\" css=\".vc_custom_1692278922309{border-top-width: 1px !important;border-right-width: 1px !important;border-bottom-width: 1px !important;border-left-width: 1px !important;border-left-color: #059444 !important;border-left-style: solid !important;border-right-color: #059444 !important;border-right-style: solid !important;border-top-color: #059444 !important;border-top-style: solid !important;border-bottom-color: #059444 !important;border-bottom-style: solid !important;border-radius: 1px !important;}\"][ultimate_heading main_heading=\"Quisque sed nibh tristique\" heading_tag=\"h3\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;\"]\r\n<ul>\r\n 	<li>Duis lorem risus, aliquet a auctor a, venenatis in dui. Praesent et eros et risus dapibus placerat hendrerit cursus magna.</li>\r\n 	<li>Praesent et eros et risus dapibus placerat hendrerit cursus magna.</li>\r\n 	<li>aliquet a auctor a, venenatis in dui.</li>\r\n</ul>\r\n[/ultimate_heading][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/3\"][ult_animation_block animation=\"fadeInDown\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][dt_fancy_image image_id=\"3171\" width=\"300\" border_radius=\"1px\" caption=\"off\" css=\".vc_custom_1692278929158{border-top-width: 1px !important;border-right-width: 1px !important;border-bottom-width: 1px !important;border-left-width: 1px !important;border-left-color: #059444 !important;border-left-style: solid !important;border-right-color: #059444 !important;border-right-style: solid !important;border-top-color: #059444 !important;border-top-style: solid !important;border-bottom-color: #059444 !important;border-bottom-style: solid !important;border-radius: 1px !important;}\"][ultimate_heading main_heading=\"Quisque sed nibh tristique\" heading_tag=\"h3\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;\"]\r\n<ul>\r\n 	<li>Duis lorem risus, aliquet a auctor a, venenatis in dui. Praesent et eros et risus dapibus placerat hendrerit cursus magna.</li>\r\n 	<li>Praesent et eros et risus dapibus placerat hendrerit cursus magna.</li>\r\n 	<li>aliquet a auctor a, venenatis in dui.</li>\r\n</ul>\r\n[/ultimate_heading][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/3\"][ult_animation_block animation=\"fadeInUp\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][dt_fancy_image image_id=\"3170\" width=\"300\" border_radius=\"1px\" caption=\"off\" css=\".vc_custom_1692278936750{border-top-width: 1px !important;border-right-width: 1px !important;border-bottom-width: 1px !important;border-left-width: 1px !important;border-left-color: #059444 !important;border-left-style: solid !important;border-right-color: #059444 !important;border-right-style: solid !important;border-top-color: #059444 !important;border-top-style: solid !important;border-bottom-color: #059444 !important;border-bottom-style: solid !important;border-radius: 1px !important;}\"][ultimate_heading main_heading=\"Quisque sed nibh tristique\" heading_tag=\"h3\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;\"]\r\n<ul>\r\n 	<li>Duis lorem risus, aliquet a auctor a, venenatis in dui. Praesent et eros et risus dapibus placerat hendrerit cursus magna.</li>\r\n 	<li>Praesent et eros et risus dapibus placerat hendrerit cursus magna.</li>\r\n 	<li>aliquet a auctor a, venenatis in dui.</li>\r\n</ul>\r\n[/ultimate_heading][/ult_animation_block][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row disable_element=\"yes\"][vc_column][ultimate_heading main_heading=\"Executive Directors\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;margin-bottom:35px;\"][/ultimate_heading][vc_row_inner][vc_column_inner width=\"1/5\"][ult_animation_block animation=\"fadeInUp\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][dt_fancy_image image_id=\"3172\" width=\"300\" border_radius=\"1px\" caption=\"off\" css=\".vc_custom_1692278922309{border-top-width: 1px !important;border-right-width: 1px !important;border-bottom-width: 1px !important;border-left-width: 1px !important;border-left-color: #059444 !important;border-left-style: solid !important;border-right-color: #059444 !important;border-right-style: solid !important;border-top-color: #059444 !important;border-top-style: solid !important;border-bottom-color: #059444 !important;border-bottom-style: solid !important;border-radius: 1px !important;}\"][ultimate_heading main_heading=\"Quisque sed nibh tristique\" heading_tag=\"h3\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;\"]\r\n<ul>\r\n 	<li>Duis lorem risus, aliquet a auctor a, venenatis in dui. Praesent et eros et risus dapibus placerat hendrerit cursus magna.</li>\r\n 	<li>Praesent et eros et risus dapibus placerat hendrerit cursus magna.</li>\r\n 	<li>aliquet a auctor a, venenatis in dui.</li>\r\n</ul>\r\n[/ultimate_heading][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/5\"][ult_animation_block animation=\"fadeInDown\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][dt_fancy_image image_id=\"3171\" width=\"300\" border_radius=\"1px\" caption=\"off\" css=\".vc_custom_1692278929158{border-top-width: 1px !important;border-right-width: 1px !important;border-bottom-width: 1px !important;border-left-width: 1px !important;border-left-color: #059444 !important;border-left-style: solid !important;border-right-color: #059444 !important;border-right-style: solid !important;border-top-color: #059444 !important;border-top-style: solid !important;border-bottom-color: #059444 !important;border-bottom-style: solid !important;border-radius: 1px !important;}\"][ultimate_heading main_heading=\"Quisque sed nibh tristique\" heading_tag=\"h3\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;\"]\r\n<ul>\r\n 	<li>Duis lorem risus, aliquet a auctor a, venenatis in dui. Praesent et eros et risus dapibus placerat hendrerit cursus magna.</li>\r\n 	<li>Praesent et eros et risus dapibus placerat hendrerit cursus magna.</li>\r\n 	<li>aliquet a auctor a, venenatis in dui.</li>\r\n</ul>\r\n[/ultimate_heading][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/5\"][ult_animation_block animation=\"fadeInUp\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][dt_fancy_image image_id=\"3170\" width=\"300\" border_radius=\"1px\" caption=\"off\" css=\".vc_custom_1692278936750{border-top-width: 1px !important;border-right-width: 1px !important;border-bottom-width: 1px !important;border-left-width: 1px !important;border-left-color: #059444 !important;border-left-style: solid !important;border-right-color: #059444 !important;border-right-style: solid !important;border-top-color: #059444 !important;border-top-style: solid !important;border-bottom-color: #059444 !important;border-bottom-style: solid !important;border-radius: 1px !important;}\"][ultimate_heading main_heading=\"Quisque sed nibh tristique\" heading_tag=\"h3\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;\"]\r\n<ul>\r\n 	<li>Duis lorem risus, aliquet a auctor a, venenatis in dui. Praesent et eros et risus dapibus placerat hendrerit cursus magna.</li>\r\n 	<li>Praesent et eros et risus dapibus placerat hendrerit cursus magna.</li>\r\n 	<li>aliquet a auctor a, venenatis in dui.</li>\r\n</ul>\r\n[/ultimate_heading][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/5\"][ult_animation_block animation=\"fadeInDown\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][dt_fancy_image image_id=\"3170\" width=\"300\" border_radius=\"1px\" caption=\"off\" css=\".vc_custom_1692278936750{border-top-width: 1px !important;border-right-width: 1px !important;border-bottom-width: 1px !important;border-left-width: 1px !important;border-left-color: #059444 !important;border-left-style: solid !important;border-right-color: #059444 !important;border-right-style: solid !important;border-top-color: #059444 !important;border-top-style: solid !important;border-bottom-color: #059444 !important;border-bottom-style: solid !important;border-radius: 1px !important;}\"][ultimate_heading main_heading=\"Quisque sed nibh tristique\" heading_tag=\"h3\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;\"]\r\n<ul>\r\n 	<li>Duis lorem risus, aliquet a auctor a, venenatis in dui. Praesent et eros et risus dapibus placerat hendrerit cursus magna.</li>\r\n 	<li>Praesent et eros et risus dapibus placerat hendrerit cursus magna.</li>\r\n 	<li>aliquet a auctor a, venenatis in dui.</li>\r\n</ul>\r\n[/ultimate_heading][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/5\"][ult_animation_block animation=\"fadeInDown\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][dt_fancy_image image_id=\"3171\" width=\"300\" border_radius=\"1px\" caption=\"off\" css=\".vc_custom_1692278929158{border-top-width: 1px !important;border-right-width: 1px !important;border-bottom-width: 1px !important;border-left-width: 1px !important;border-left-color: #059444 !important;border-left-style: solid !important;border-right-color: #059444 !important;border-right-style: solid !important;border-top-color: #059444 !important;border-top-style: solid !important;border-bottom-color: #059444 !important;border-bottom-style: solid !important;border-radius: 1px !important;}\"][ultimate_heading main_heading=\"Quisque sed nibh tristique\" heading_tag=\"h3\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;\"]\r\n<ul>\r\n 	<li>Duis lorem risus, aliquet a auctor a, venenatis in dui. Praesent et eros et risus dapibus placerat hendrerit cursus magna.</li>\r\n 	<li>Praesent et eros et risus dapibus placerat hendrerit cursus magna.</li>\r\n 	<li>aliquet a auctor a, venenatis in dui.</li>\r\n</ul>\r\n[/ultimate_heading][/ult_animation_block][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner width=\"2/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row disable_element=\"yes\"][vc_column][ultimate_heading main_heading=\"Next Generation\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;margin-bottom:35px;\"][/ultimate_heading][vc_row_inner][vc_column_inner width=\"1/2\"][ult_animation_block animation=\"fadeInUp\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][dt_fancy_image image_id=\"3172\" width=\"300\" border_radius=\"1px\" caption=\"off\" css=\".vc_custom_1692278922309{border-top-width: 1px !important;border-right-width: 1px !important;border-bottom-width: 1px !important;border-left-width: 1px !important;border-left-color: #059444 !important;border-left-style: solid !important;border-right-color: #059444 !important;border-right-style: solid !important;border-top-color: #059444 !important;border-top-style: solid !important;border-bottom-color: #059444 !important;border-bottom-style: solid !important;border-radius: 1px !important;}\"][ultimate_heading main_heading=\"Quisque sed nibh tristique\" heading_tag=\"h3\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;\"]\r\n<ul>\r\n 	<li>Duis lorem risus, aliquet a auctor a, venenatis in dui. Praesent et eros et risus dapibus placerat hendrerit cursus magna.</li>\r\n 	<li>Praesent et eros et risus dapibus placerat hendrerit cursus magna.</li>\r\n 	<li>aliquet a auctor a, venenatis in dui.</li>\r\n</ul>\r\n[/ultimate_heading][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/2\"][ult_animation_block animation=\"fadeInDown\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][dt_fancy_image image_id=\"3171\" width=\"300\" border_radius=\"1px\" caption=\"off\" css=\".vc_custom_1692278929158{border-top-width: 1px !important;border-right-width: 1px !important;border-bottom-width: 1px !important;border-left-width: 1px !important;border-left-color: #059444 !important;border-left-style: solid !important;border-right-color: #059444 !important;border-right-style: solid !important;border-top-color: #059444 !important;border-top-style: solid !important;border-bottom-color: #059444 !important;border-bottom-style: solid !important;border-radius: 1px !important;}\"][ultimate_heading main_heading=\"Quisque sed nibh tristique\" heading_tag=\"h3\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;\"]\r\n<ul>\r\n 	<li>Duis lorem risus, aliquet a auctor a, venenatis in dui. Praesent et eros et risus dapibus placerat hendrerit cursus magna.</li>\r\n 	<li>Praesent et eros et risus dapibus placerat hendrerit cursus magna.</li>\r\n 	<li>aliquet a auctor a, venenatis in dui.</li>\r\n</ul>\r\n[/ultimate_heading][/ult_animation_block][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row]','About us','','inherit','closed','closed','','2917-revision-v1','','','2023-09-24 08:46:57','2023-09-24 08:46:57','',2917,'https://farmchemie.yasithawd.com/?p=3920',0,'revision','',0),(3921,1,'2023-09-24 08:53:41','2023-09-24 08:53:41','','Asset 69@300x','','inherit','','closed','','asset-69300x','','','2023-09-24 08:53:41','2023-09-24 08:53:41','',2917,'https://farmchemie.yasithawd.com/wp-content/uploads/2023/09/Asset-69@300x.png',0,'attachment','image/png',0),(3922,1,'2023-09-24 08:54:11','2023-09-24 08:54:11','','Asset 1@300x','','inherit','','closed','','asset-1300x-4','','','2023-09-24 08:54:11','2023-09-24 08:54:11','',2917,'https://farmchemie.yasithawd.com/wp-content/uploads/2023/09/Asset-1@300x-1.png',0,'attachment','image/png',0),(3923,1,'2023-09-24 08:54:43','2023-09-24 08:54:43','','Asset 2@300x','','inherit','','closed','','asset-2300x-2','','','2023-09-24 08:54:43','2023-09-24 08:54:43','',2917,'https://farmchemie.yasithawd.com/wp-content/uploads/2023/09/Asset-2@300x-1.png',0,'attachment','image/png',0),(3924,1,'2023-09-24 08:55:23','2023-09-24 08:55:23','','Asset 3@300x','','inherit','','closed','','asset-3300x-2','','','2023-09-24 08:55:23','2023-09-24 08:55:23','',2917,'https://farmchemie.yasithawd.com/wp-content/uploads/2023/09/Asset-3@300x-1.png',0,'attachment','image/png',0),(3925,1,'2023-09-24 08:55:59','2023-09-24 08:55:59','','Asset 4@300x','','inherit','','closed','','asset-4300x-2','','','2023-09-24 08:55:59','2023-09-24 08:55:59','',2917,'https://farmchemie.yasithawd.com/wp-content/uploads/2023/09/Asset-4@300x-1.png',0,'attachment','image/png',0),(3926,1,'2023-09-24 08:56:18','2023-09-24 08:56:18','','Asset 5@300x','','inherit','','closed','','asset-5300x-2','','','2023-09-24 08:56:18','2023-09-24 08:56:18','',2917,'https://farmchemie.yasithawd.com/wp-content/uploads/2023/09/Asset-5@300x-1.png',0,'attachment','image/png',0),(3927,1,'2023-09-24 08:56:42','2023-09-24 08:56:42','','Asset 7@300x','','inherit','','closed','','asset-7300x','','','2023-09-24 08:56:42','2023-09-24 08:56:42','',2917,'https://farmchemie.yasithawd.com/wp-content/uploads/2023/09/Asset-7@300x.png',0,'attachment','image/png',0),(3928,1,'2023-09-24 08:57:05','2023-09-24 08:57:05','','Asset 6@300x','','inherit','','closed','','asset-6300x-2','','','2023-09-24 08:57:05','2023-09-24 08:57:05','',2917,'https://farmchemie.yasithawd.com/wp-content/uploads/2023/09/Asset-6@300x-1.png',0,'attachment','image/png',0),(3929,1,'2023-09-24 11:16:41','2023-09-24 11:16:41','','Layer Concentrate_600px x 600px','','inherit','','closed','','layer-concentrate_600px-x-600px','','','2023-09-24 11:16:41','2023-09-24 11:16:41','',3589,'https://farmchemie.yasithawd.com/wp-content/uploads/2023/09/Layer-Concentrate_600px-x-600px.png',0,'attachment','image/png',0),(3930,1,'2023-09-24 11:16:55','2023-09-24 11:16:55','','Layer Concentrate_300px','','inherit','','closed','','layer-concentrate_300px','','','2023-09-24 11:16:55','2023-09-24 11:16:55','',3589,'https://farmchemie.yasithawd.com/wp-content/uploads/2023/09/Layer-Concentrate_300px.png',0,'attachment','image/png',0),(3931,1,'2023-09-24 11:19:31','2023-09-24 11:19:31','','Grower Concentrate_600px x 600px','','inherit','','closed','','grower-concentrate_600px-x-600px','','','2023-09-24 11:19:31','2023-09-24 11:19:31','',3553,'https://farmchemie.yasithawd.com/wp-content/uploads/2023/09/Grower-Concentrate_600px-x-600px.png',0,'attachment','image/png',0),(3932,1,'2023-09-24 11:20:06','2023-09-24 11:20:06','','Grower Concentrate_300px','','inherit','','closed','','grower-concentrate_300px','','','2023-09-24 11:20:06','2023-09-24 11:20:06','',3553,'https://farmchemie.yasithawd.com/wp-content/uploads/2023/09/Grower-Concentrate_300px.png',0,'attachment','image/png',0),(3933,1,'2023-09-24 11:22:37','2023-09-24 11:22:37','','Broiler Finisher_600px x 600px','','inherit','','closed','','broiler-finisher_600px-x-600px','','','2023-09-24 11:22:37','2023-09-24 11:22:37','',3580,'https://farmchemie.yasithawd.com/wp-content/uploads/2023/09/Broiler-Finisher_600px-x-600px.png',0,'attachment','image/png',0),(3934,1,'2023-09-24 11:22:53','2023-09-24 11:22:53','','Broiler Finisher_300px','','inherit','','closed','','broiler-finisher_300px','','','2023-09-24 11:22:53','2023-09-24 11:22:53','',3580,'https://farmchemie.yasithawd.com/wp-content/uploads/2023/09/Broiler-Finisher_300px.png',0,'attachment','image/png',0),(3935,1,'2023-09-24 11:23:23','2023-09-24 11:23:23','','Broiler Starter_600px x 600px','','inherit','','closed','','broiler-starter_600px-x-600px','','','2023-09-24 11:23:23','2023-09-24 11:23:23','',3554,'https://farmchemie.yasithawd.com/wp-content/uploads/2023/09/Broiler-Starter_600px-x-600px.png',0,'attachment','image/png',0),(3936,1,'2023-09-24 11:23:33','2023-09-24 11:23:33','','Broiler Starter_300px','','inherit','','closed','','broiler-starter_300px','','','2023-09-24 11:23:33','2023-09-24 11:23:33','',3554,'https://farmchemie.yasithawd.com/wp-content/uploads/2023/09/Broiler-Starter_300px.png',0,'attachment','image/png',0),(3937,1,'2023-09-24 11:26:50','2023-09-24 11:26:50','','Grower Concentrate_300px','','inherit','','closed','','grower-concentrate_300px-2','','','2023-09-24 11:26:50','2023-09-24 11:26:50','',3556,'https://farmchemie.yasithawd.com/wp-content/uploads/2023/09/Grower-Concentrate_300px-1.png',0,'attachment','image/png',0),(3938,1,'2023-09-24 11:31:06','2023-09-24 11:31:06','','MOLDISORB®-Dry_300px','','inherit','','closed','','moldisorb-dry_300px','','','2023-09-24 11:31:06','2023-09-24 11:31:06','',3598,'https://farmchemie.yasithawd.com/wp-content/uploads/2023/09/MOLDISORB®-Dry_300px.png',0,'attachment','image/png',0),(3939,1,'2023-09-24 11:31:25','2023-09-24 11:31:25','','MOLDISORB®-Dry','','inherit','','closed','','moldisorb-dry-2','','','2023-09-24 11:31:25','2023-09-24 11:31:25','',3598,'https://farmchemie.yasithawd.com/wp-content/uploads/2023/09/MOLDISORB®-Dry.png',0,'attachment','image/png',0),(3940,1,'2023-09-24 11:33:17','2023-09-24 11:33:17','','TOXIBOND®-Dry_300px','','inherit','','closed','','toxibond-dry_300px','','','2023-09-24 11:33:17','2023-09-24 11:33:17','',3599,'https://farmchemie.yasithawd.com/wp-content/uploads/2023/09/TOXIBOND®-Dry_300px.png',0,'attachment','image/png',0),(3941,1,'2023-09-24 11:33:30','2023-09-24 11:33:30','','TOXIBOND®-Dry','','inherit','','closed','','toxibond-dry-2','','','2023-09-24 11:33:30','2023-09-24 11:33:30','',3599,'https://farmchemie.yasithawd.com/wp-content/uploads/2023/09/TOXIBOND®-Dry.png',0,'attachment','image/png',0),(3942,1,'2023-09-24 11:34:57','2023-09-24 11:34:57','','BREEDER Vitamin Premix','<h3>A stable comprehensive vitamin supplement for commercial breeders</h3>\n[dt_divider style=\"thick\" /]\n\n&nbsp;\n\n<strong>Composition: </strong>\n\nEach 1 kg contains,\nVitamin A - 15,000,000 IU\nVitamin D3 - 3,000,000 IU\nVitamin E - 100,000 mg\nVitamin K3 - 6,000 mg\nVitamin B1 - 3,500 mg\nVitamin B2 - 16,000 mg\nVitamin B5 - 25,000 mg\nVitamin B6 - 6,000 mg\nVitamin B12 - 40,000 mcg\nNiacin - 50,000 mg\nBiotin - 300,000 mcg\nFolic Acid - 4,000 mg\nAntioxidant - 270 mg\n\n[dt_divider style=\"thin\" /]\n\n<strong>Indication: </strong>\n\nBetter growth, Higher production, Healthy animals, Improve immunity and protect from Heat stress, production stress, transportation stress, handling stress, vaccination stress, deworming stress, antibiotic therapy stress, vitamin deficiency &amp; Mycotoxicosis\n\n[dt_divider style=\"thin\" /]\n\n<strong>Dosage: </strong>\n\n1 kg per ton of feed.\nOr as directed by a poultry nutritionist\n\n[dt_divider style=\"thin\" /]\n\n<strong>Pack sizes: </strong>\n\n1 kg &amp; 25 kg bag\n\n&nbsp;\n\n[dt_divider style=\"thick\" /]\n\n&nbsp;','inherit','closed','closed','','3602-autosave-v1','','','2023-09-24 11:34:57','2023-09-24 11:34:57','',3602,'https://farmchemie.yasithawd.com/?p=3942',0,'revision','',0),(3943,1,'2023-09-24 11:38:33','2023-09-24 11:38:33','[vc_row][vc_column][dt_products_masonry show_products=\"categories_products\" bwb_columns=\"desktop:3|h_tablet:3|v_tablet:2|phone:1\" loading_mode=\"standard\" st_posts_per_page=\"9\" st_show_all_pages=\"y\" product_rating=\"n\" category_ids=\"74\"][/vc_column][/vc_row]','Feed Additives','','inherit','closed','closed','','3098-revision-v1','','','2023-09-24 11:38:33','2023-09-24 11:38:33','',3098,'https://farmchemie.yasithawd.com/?p=3943',0,'revision','',0),(3944,1,'2023-09-25 07:47:49','2023-09-25 07:47:49','[vc_row][vc_column][vc_basic_grid post_type=\"post\" max_items=\"\" item=\"3501\" initial_loading_animation=\"fadeInUp\" grid_id=\"vc_gid:1695628014278-876a4801-5206-10\"][/vc_column][/vc_row]','CSR','','inherit','closed','closed','','3468-revision-v1','','','2023-09-25 07:47:49','2023-09-25 07:47:49','',3468,'https://farmchemie.yasithawd.com/?p=3944',0,'revision','',0),(3945,1,'2023-09-25 07:49:59','2023-09-25 07:49:59','[vc_row][vc_column][vc_basic_grid post_type=\"post\" max_items=\"\" item=\"3501\" initial_loading_animation=\"fadeInUp\" grid_id=\"vc_gid:1695628071841-097dfc92-54f6-2\" taxonomies=\"155\"][/vc_column][/vc_row]','CSR','','inherit','closed','closed','','3468-revision-v1','','','2023-09-25 07:49:59','2023-09-25 07:49:59','',3468,'https://farmchemie.yasithawd.com/?p=3945',0,'revision','',0),(3946,1,'2023-09-25 07:50:19','2023-09-25 07:50:19','<p>[vc_row][vc_column][vc_basic_grid post_type=\"post\" max_items=\"\" element_width=\"6\" item=\"3501\" grid_id=\"vc_gid:1695628150927-4d66eaca-0d45-6\" taxonomies=\"187\"][/vc_column][/vc_row]</p>\n','News & Events','','inherit','closed','closed','','3693-autosave-v1','','','2023-09-25 07:50:19','2023-09-25 07:50:19','',3693,'https://farmchemie.yasithawd.com/?p=3946',0,'revision','',0),(3947,1,'2023-09-25 07:54:36','2023-09-25 07:54:36','<p>[vc_gitem c_zone_position=\"bottom\"][vc_gitem_animated_block][vc_gitem_zone_a link=\"post_link\" featured_image=\"yes\"][vc_gitem_row position=\"top\"][vc_gitem_col][/vc_gitem_col][/vc_gitem_row][vc_gitem_row position=\"middle\"][vc_gitem_col width=\"1/2\"][/vc_gitem_col][vc_gitem_col width=\"1/2\"][/vc_gitem_col][/vc_gitem_row][vc_gitem_row position=\"bottom\"][vc_gitem_col][/vc_gitem_col][/vc_gitem_row][/vc_gitem_zone_a][vc_gitem_zone_b][vc_gitem_row position=\"top\"][vc_gitem_col][/vc_gitem_col][/vc_gitem_row][vc_gitem_row position=\"middle\"][vc_gitem_col width=\"1/2\"][/vc_gitem_col][vc_gitem_col width=\"1/2\"][/vc_gitem_col][/vc_gitem_row][vc_gitem_row position=\"bottom\"][vc_gitem_col][/vc_gitem_col][/vc_gitem_row][/vc_gitem_zone_b][/vc_gitem_animated_block][vc_gitem_zone_c css=\".vc_custom_1419240516480{background-color: #f9f9f9 !important;}\"][vc_gitem_row][vc_gitem_col][vc_gitem_post_title font_container=\"tag:h5|text_align:left\"][vc_gitem_post_excerpt font_container=\"tag:p|text_align:left\"][vc_btn link=\"post_link\" title=\"Read more\" style=\"custom\" custom_background=\"#089548\" custom_text=\"#ffffff\" align=\"left\"][/vc_gitem_col][/vc_gitem_row][/vc_gitem_zone_c][/vc_gitem]</p>\n','new design 2','','inherit','closed','closed','','3501-autosave-v1','','','2023-09-25 07:54:36','2023-09-25 07:54:36','',3501,'https://farmchemie.yasithawd.com/?p=3947',0,'revision','',0);
/*!40000 ALTER TABLE `wplf_posts` ENABLE KEYS */;
UNLOCK TABLES;

-- Dumped table `wplf_posts` with 1136 row(s)
--

--
-- Table structure for table `wplf_revslider_css_bkp`
--

DROP TABLE IF EXISTS `wplf_revslider_css_bkp`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `wplf_revslider_css_bkp` (
  `id` int(9) NOT NULL AUTO_INCREMENT,
  `handle` text NOT NULL,
  `settings` longtext DEFAULT NULL,
  `hover` longtext DEFAULT NULL,
  `advanced` longtext DEFAULT NULL,
  `params` longtext NOT NULL,
  PRIMARY KEY (`id`),
  KEY `handle_index` (`handle`(64))
) ENGINE=MyISAM AUTO_INCREMENT=48 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wplf_revslider_css_bkp`
--

LOCK TABLES `wplf_revslider_css_bkp` WRITE;
/*!40000 ALTER TABLE `wplf_revslider_css_bkp` DISABLE KEYS */;
INSERT INTO `wplf_revslider_css_bkp` VALUES (1,'.tp-caption.medium_grey',NULL,NULL,NULL,'{\"position\":\"absolute\",\"color\":\"#fff\",\"text-shadow\":\"0px 2px 5px rgba(0, 0, 0, 0.5)\",\"font-weight\":\"700\",\"font-size\":\"20px\",\"line-height\":\"20px\",\"font-family\":\"Arial\",\"padding\":\"2px 4px\",\"margin\":\"0px\",\"border-width\":\"0px\",\"border-style\":\"none\",\"background-color\":\"#888\",\"white-space\":\"nowrap\"}'),(2,'.tp-caption.small_text',NULL,NULL,NULL,'{\"position\":\"absolute\",\"color\":\"#fff\",\"text-shadow\":\"0px 2px 5px rgba(0, 0, 0, 0.5)\",\"font-weight\":\"700\",\"font-size\":\"14px\",\"line-height\":\"20px\",\"font-family\":\"Arial\",\"margin\":\"0px\",\"border-width\":\"0px\",\"border-style\":\"none\",\"white-space\":\"nowrap\"}'),(3,'.tp-caption.medium_text',NULL,NULL,NULL,'{\"position\":\"absolute\",\"color\":\"#fff\",\"text-shadow\":\"0px 2px 5px rgba(0, 0, 0, 0.5)\",\"font-weight\":\"700\",\"font-size\":\"20px\",\"line-height\":\"20px\",\"font-family\":\"Arial\",\"margin\":\"0px\",\"border-width\":\"0px\",\"border-style\":\"none\",\"white-space\":\"nowrap\"}'),(4,'.tp-caption.large_text',NULL,NULL,NULL,'{\"position\":\"absolute\",\"color\":\"#fff\",\"text-shadow\":\"0px 2px 5px rgba(0, 0, 0, 0.5)\",\"font-weight\":\"700\",\"font-size\":\"40px\",\"line-height\":\"40px\",\"font-family\":\"Arial\",\"margin\":\"0px\",\"border-width\":\"0px\",\"border-style\":\"none\",\"white-space\":\"nowrap\"}'),(5,'.tp-caption.very_large_text',NULL,NULL,NULL,'{\"position\":\"absolute\",\"color\":\"#fff\",\"text-shadow\":\"0px 2px 5px rgba(0, 0, 0, 0.5)\",\"font-weight\":\"700\",\"font-size\":\"60px\",\"line-height\":\"60px\",\"font-family\":\"Arial\",\"margin\":\"0px\",\"border-width\":\"0px\",\"border-style\":\"none\",\"white-space\":\"nowrap\",\"letter-spacing\":\"-2px\"}'),(6,'.tp-caption.very_big_white',NULL,NULL,NULL,'{\"position\":\"absolute\",\"color\":\"#fff\",\"text-shadow\":\"none\",\"font-weight\":\"800\",\"font-size\":\"60px\",\"line-height\":\"60px\",\"font-family\":\"Arial\",\"margin\":\"0px\",\"border-width\":\"0px\",\"border-style\":\"none\",\"white-space\":\"nowrap\",\"padding\":\"0px 4px\",\"padding-top\":\"1px\",\"background-color\":\"#000\"}'),(7,'.tp-caption.very_big_black',NULL,NULL,NULL,'{\"position\":\"absolute\",\"color\":\"#000\",\"text-shadow\":\"none\",\"font-weight\":\"700\",\"font-size\":\"60px\",\"line-height\":\"60px\",\"font-family\":\"Arial\",\"margin\":\"0px\",\"border-width\":\"0px\",\"border-style\":\"none\",\"white-space\":\"nowrap\",\"padding\":\"0px 4px\",\"padding-top\":\"1px\",\"background-color\":\"#fff\"}'),(8,'.tp-caption.modern_medium_fat',NULL,NULL,NULL,'{\"position\":\"absolute\",\"color\":\"#000\",\"text-shadow\":\"none\",\"font-weight\":\"800\",\"font-size\":\"24px\",\"line-height\":\"20px\",\"font-family\":\"\\\"Open Sans\\\", sans-serif\",\"margin\":\"0px\",\"border-width\":\"0px\",\"border-style\":\"none\",\"white-space\":\"nowrap\"}'),(9,'.tp-caption.modern_medium_fat_white',NULL,NULL,NULL,'{\"position\":\"absolute\",\"color\":\"#fff\",\"text-shadow\":\"none\",\"font-weight\":\"800\",\"font-size\":\"24px\",\"line-height\":\"20px\",\"font-family\":\"\\\"Open Sans\\\", sans-serif\",\"margin\":\"0px\",\"border-width\":\"0px\",\"border-style\":\"none\",\"white-space\":\"nowrap\"}'),(10,'.tp-caption.modern_medium_light',NULL,NULL,NULL,'{\"position\":\"absolute\",\"color\":\"#000\",\"text-shadow\":\"none\",\"font-weight\":\"300\",\"font-size\":\"24px\",\"line-height\":\"20px\",\"font-family\":\"\\\"Open Sans\\\", sans-serif\",\"margin\":\"0px\",\"border-width\":\"0px\",\"border-style\":\"none\",\"white-space\":\"nowrap\"}'),(11,'.tp-caption.modern_big_bluebg',NULL,NULL,NULL,'{\"position\":\"absolute\",\"color\":\"#fff\",\"text-shadow\":\"none\",\"font-weight\":\"800\",\"font-size\":\"30px\",\"line-height\":\"36px\",\"font-family\":\"\\\"Open Sans\\\", sans-serif\",\"padding\":\"3px 10px\",\"margin\":\"0px\",\"border-width\":\"0px\",\"border-style\":\"none\",\"background-color\":\"#4e5b6c\",\"letter-spacing\":\"0\"}'),(12,'.tp-caption.modern_big_redbg',NULL,NULL,NULL,'{\"position\":\"absolute\",\"color\":\"#fff\",\"text-shadow\":\"none\",\"font-weight\":\"300\",\"font-size\":\"30px\",\"line-height\":\"36px\",\"font-family\":\"\\\"Open Sans\\\", sans-serif\",\"padding\":\"3px 10px\",\"padding-top\":\"1px\",\"margin\":\"0px\",\"border-width\":\"0px\",\"border-style\":\"none\",\"background-color\":\"#de543e\",\"letter-spacing\":\"0\"}'),(13,'.tp-caption.modern_small_text_dark',NULL,NULL,NULL,'{\"position\":\"absolute\",\"color\":\"#555\",\"text-shadow\":\"none\",\"font-size\":\"14px\",\"line-height\":\"22px\",\"font-family\":\"Arial\",\"margin\":\"0px\",\"border-width\":\"0px\",\"border-style\":\"none\",\"white-space\":\"nowrap\"}'),(14,'.tp-caption.boxshadow',NULL,NULL,NULL,'{\"-moz-box-shadow\":\"0px 0px 20px rgba(0, 0, 0, 0.5)\",\"-webkit-box-shadow\":\"0px 0px 20px rgba(0, 0, 0, 0.5)\",\"box-shadow\":\"0px 0px 20px rgba(0, 0, 0, 0.5)\"}'),(15,'.tp-caption.black',NULL,NULL,NULL,'{\"color\":\"#000\",\"text-shadow\":\"none\"}'),(16,'.tp-caption.noshadow',NULL,NULL,NULL,'{\"text-shadow\":\"none\"}'),(17,'.tp-caption.thinheadline_dark',NULL,NULL,NULL,'{\"position\":\"absolute\",\"color\":\"rgba(0,0,0,0.85)\",\"text-shadow\":\"none\",\"font-weight\":\"300\",\"font-size\":\"30px\",\"line-height\":\"30px\",\"font-family\":\"\\\"Open Sans\\\"\",\"background-color\":\"transparent\"}'),(18,'.tp-caption.thintext_dark',NULL,NULL,NULL,'{\"position\":\"absolute\",\"color\":\"rgba(0,0,0,0.85)\",\"text-shadow\":\"none\",\"font-weight\":\"300\",\"font-size\":\"16px\",\"line-height\":\"26px\",\"font-family\":\"\\\"Open Sans\\\"\",\"background-color\":\"transparent\"}'),(19,'.tp-caption.largeblackbg',NULL,NULL,NULL,'{\"position\":\"absolute\",\"color\":\"#fff\",\"text-shadow\":\"none\",\"font-weight\":\"300\",\"font-size\":\"50px\",\"line-height\":\"70px\",\"font-family\":\"\\\"Open Sans\\\"\",\"background-color\":\"#000\",\"padding\":\"0px 20px\",\"-webkit-border-radius\":\"0px\",\"-moz-border-radius\":\"0px\",\"border-radius\":\"0px\"}'),(20,'.tp-caption.largepinkbg',NULL,NULL,NULL,'{\"position\":\"absolute\",\"color\":\"#fff\",\"text-shadow\":\"none\",\"font-weight\":\"300\",\"font-size\":\"50px\",\"line-height\":\"70px\",\"font-family\":\"\\\"Open Sans\\\"\",\"background-color\":\"#db4360\",\"padding\":\"0px 20px\",\"-webkit-border-radius\":\"0px\",\"-moz-border-radius\":\"0px\",\"border-radius\":\"0px\"}'),(21,'.tp-caption.largewhitebg',NULL,NULL,NULL,'{\"position\":\"absolute\",\"color\":\"#000\",\"text-shadow\":\"none\",\"font-weight\":\"300\",\"font-size\":\"50px\",\"line-height\":\"70px\",\"font-family\":\"\\\"Open Sans\\\"\",\"background-color\":\"#fff\",\"padding\":\"0px 20px\",\"-webkit-border-radius\":\"0px\",\"-moz-border-radius\":\"0px\",\"border-radius\":\"0px\"}'),(22,'.tp-caption.largegreenbg',NULL,NULL,NULL,'{\"position\":\"absolute\",\"color\":\"#fff\",\"text-shadow\":\"none\",\"font-weight\":\"300\",\"font-size\":\"50px\",\"line-height\":\"70px\",\"font-family\":\"\\\"Open Sans\\\"\",\"background-color\":\"#67ae73\",\"padding\":\"0px 20px\",\"-webkit-border-radius\":\"0px\",\"-moz-border-radius\":\"0px\",\"border-radius\":\"0px\"}'),(23,'.tp-caption.excerpt',NULL,NULL,NULL,'{\"font-size\":\"36px\",\"line-height\":\"36px\",\"font-weight\":\"700\",\"font-family\":\"Arial\",\"color\":\"#ffffff\",\"text-decoration\":\"none\",\"background-color\":\"rgba(0, 0, 0, 1)\",\"text-shadow\":\"none\",\"margin\":\"0px\",\"letter-spacing\":\"-1.5px\",\"padding\":\"1px 4px 0px 4px\",\"width\":\"150px\",\"white-space\":\"normal !important\",\"height\":\"auto\",\"border-width\":\"0px\",\"border-color\":\"rgb(255, 255, 255)\",\"border-style\":\"none\"}'),(24,'.tp-caption.large_bold_grey',NULL,NULL,NULL,'{\"font-size\":\"60px\",\"line-height\":\"60px\",\"font-weight\":\"800\",\"font-family\":\"\\\"Open Sans\\\"\",\"color\":\"rgb(102, 102, 102)\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"text-shadow\":\"none\",\"margin\":\"0px\",\"padding\":\"1px 4px 0px\",\"border-width\":\"0px\",\"border-color\":\"rgb(255, 214, 88)\",\"border-style\":\"none\"}'),(25,'.tp-caption.medium_thin_grey',NULL,NULL,NULL,'{\"font-size\":\"34px\",\"line-height\":\"30px\",\"font-weight\":\"300\",\"font-family\":\"\\\"Open Sans\\\"\",\"color\":\"rgb(102, 102, 102)\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"padding\":\"1px 4px 0px\",\"text-shadow\":\"none\",\"margin\":\"0px\",\"border-width\":\"0px\",\"border-color\":\"rgb(255, 214, 88)\",\"border-style\":\"none\"}'),(26,'.tp-caption.small_thin_grey',NULL,NULL,NULL,'{\"font-size\":\"18px\",\"line-height\":\"26px\",\"font-weight\":\"300\",\"font-family\":\"\\\"Open Sans\\\"\",\"color\":\"rgb(117, 117, 117)\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"padding\":\"1px 4px 0px\",\"text-shadow\":\"none\",\"margin\":\"0px\",\"border-width\":\"0px\",\"border-color\":\"rgb(255, 214, 88)\",\"border-style\":\"none\"}'),(27,'.tp-caption.lightgrey_divider',NULL,NULL,NULL,'{\"text-decoration\":\"none\",\"background-color\":\"rgba(235, 235, 235, 1)\",\"width\":\"370px\",\"height\":\"3px\",\"background-position\":\"initial initial\",\"background-repeat\":\"initial initial\",\"border-width\":\"0px\",\"border-color\":\"rgb(34, 34, 34)\",\"border-style\":\"none\"}'),(28,'.tp-caption.large_bold_darkblue',NULL,NULL,NULL,'{\"font-size\":\"58px\",\"line-height\":\"60px\",\"font-weight\":\"800\",\"font-family\":\"\\\"Open Sans\\\"\",\"color\":\"rgb(52, 73, 94)\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"border-width\":\"0px\",\"border-color\":\"rgb(255, 214, 88)\",\"border-style\":\"none\"}'),(29,'.tp-caption.medium_bg_darkblue',NULL,NULL,NULL,'{\"font-size\":\"20px\",\"line-height\":\"20px\",\"font-weight\":\"800\",\"font-family\":\"\\\"Open Sans\\\"\",\"color\":\"rgb(255, 255, 255)\",\"text-decoration\":\"none\",\"background-color\":\"rgb(52, 73, 94)\",\"padding\":\"10px\",\"border-width\":\"0px\",\"border-color\":\"rgb(255, 214, 88)\",\"border-style\":\"none\"}'),(30,'.tp-caption.medium_bold_red',NULL,NULL,NULL,'{\"font-size\":\"24px\",\"line-height\":\"30px\",\"font-weight\":\"800\",\"font-family\":\"\\\"Open Sans\\\"\",\"color\":\"rgb(227, 58, 12)\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"padding\":\"0px\",\"border-width\":\"0px\",\"border-color\":\"rgb(255, 214, 88)\",\"border-style\":\"none\"}'),(31,'.tp-caption.medium_light_red',NULL,NULL,NULL,'{\"font-size\":\"21px\",\"line-height\":\"26px\",\"font-weight\":\"300\",\"font-family\":\"\\\"Open Sans\\\"\",\"color\":\"rgb(227, 58, 12)\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"padding\":\"0px\",\"border-width\":\"0px\",\"border-color\":\"rgb(255, 214, 88)\",\"border-style\":\"none\"}'),(32,'.tp-caption.medium_bg_red',NULL,NULL,NULL,'{\"font-size\":\"20px\",\"line-height\":\"20px\",\"font-weight\":\"800\",\"font-family\":\"\\\"Open Sans\\\"\",\"color\":\"rgb(255, 255, 255)\",\"text-decoration\":\"none\",\"background-color\":\"rgb(227, 58, 12)\",\"padding\":\"10px\",\"border-width\":\"0px\",\"border-color\":\"rgb(255, 214, 88)\",\"border-style\":\"none\"}'),(33,'.tp-caption.medium_bold_orange',NULL,NULL,NULL,'{\"font-size\":\"24px\",\"line-height\":\"30px\",\"font-weight\":\"800\",\"font-family\":\"\\\"Open Sans\\\"\",\"color\":\"rgb(243, 156, 18)\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"border-width\":\"0px\",\"border-color\":\"rgb(255, 214, 88)\",\"border-style\":\"none\"}'),(34,'.tp-caption.medium_bg_orange',NULL,NULL,NULL,'{\"font-size\":\"20px\",\"line-height\":\"20px\",\"font-weight\":\"800\",\"font-family\":\"\\\"Open Sans\\\"\",\"color\":\"rgb(255, 255, 255)\",\"text-decoration\":\"none\",\"background-color\":\"rgb(243, 156, 18)\",\"padding\":\"10px\",\"border-width\":\"0px\",\"border-color\":\"rgb(255, 214, 88)\",\"border-style\":\"none\"}'),(35,'.tp-caption.grassfloor',NULL,NULL,NULL,'{\"text-decoration\":\"none\",\"background-color\":\"rgba(160, 179, 151, 1)\",\"width\":\"4000px\",\"height\":\"150px\",\"border-width\":\"0px\",\"border-color\":\"rgb(34, 34, 34)\",\"border-style\":\"none\"}'),(36,'.tp-caption.large_bold_white',NULL,NULL,NULL,'{\"font-size\":\"58px\",\"line-height\":\"60px\",\"font-weight\":\"800\",\"font-family\":\"\\\"Open Sans\\\"\",\"color\":\"rgb(255, 255, 255)\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"border-width\":\"0px\",\"border-color\":\"rgb(255, 214, 88)\",\"border-style\":\"none\"}'),(37,'.tp-caption.medium_light_white',NULL,NULL,NULL,'{\"font-size\":\"30px\",\"line-height\":\"36px\",\"font-weight\":\"300\",\"font-family\":\"\\\"Open Sans\\\"\",\"color\":\"rgb(255, 255, 255)\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"padding\":\"0px\",\"border-width\":\"0px\",\"border-color\":\"rgb(255, 214, 88)\",\"border-style\":\"none\"}'),(38,'.tp-caption.mediumlarge_light_white',NULL,NULL,NULL,'{\"font-size\":\"34px\",\"line-height\":\"40px\",\"font-weight\":\"300\",\"font-family\":\"\\\"Open Sans\\\"\",\"color\":\"rgb(255, 255, 255)\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"padding\":\"0px\",\"border-width\":\"0px\",\"border-color\":\"rgb(255, 214, 88)\",\"border-style\":\"none\"}'),(39,'.tp-caption.mediumlarge_light_white_center',NULL,NULL,NULL,'{\"font-size\":\"34px\",\"line-height\":\"40px\",\"font-weight\":\"300\",\"font-family\":\"\\\"Open Sans\\\"\",\"color\":\"#ffffff\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"padding\":\"0px 0px 0px 0px\",\"text-align\":\"center\",\"border-width\":\"0px\",\"border-color\":\"rgb(255, 214, 88)\",\"border-style\":\"none\"}'),(40,'.tp-caption.medium_bg_asbestos',NULL,NULL,NULL,'{\"font-size\":\"20px\",\"line-height\":\"20px\",\"font-weight\":\"800\",\"font-family\":\"\\\"Open Sans\\\"\",\"color\":\"rgb(255, 255, 255)\",\"text-decoration\":\"none\",\"background-color\":\"rgb(127, 140, 141)\",\"padding\":\"10px\",\"border-width\":\"0px\",\"border-color\":\"rgb(255, 214, 88)\",\"border-style\":\"none\"}'),(41,'.tp-caption.medium_light_black',NULL,NULL,NULL,'{\"font-size\":\"30px\",\"line-height\":\"36px\",\"font-weight\":\"300\",\"font-family\":\"\\\"Open Sans\\\"\",\"color\":\"rgb(0, 0, 0)\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"padding\":\"0px\",\"border-width\":\"0px\",\"border-color\":\"rgb(255, 214, 88)\",\"border-style\":\"none\"}'),(42,'.tp-caption.large_bold_black',NULL,NULL,NULL,'{\"font-size\":\"58px\",\"line-height\":\"60px\",\"font-weight\":\"800\",\"font-family\":\"\\\"Open Sans\\\"\",\"color\":\"rgb(0, 0, 0)\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"border-width\":\"0px\",\"border-color\":\"rgb(255, 214, 88)\",\"border-style\":\"none\"}'),(43,'.tp-caption.mediumlarge_light_darkblue',NULL,NULL,NULL,'{\"font-size\":\"34px\",\"line-height\":\"40px\",\"font-weight\":\"300\",\"font-family\":\"\\\"Open Sans\\\"\",\"color\":\"rgb(52, 73, 94)\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"padding\":\"0px\",\"border-width\":\"0px\",\"border-color\":\"rgb(255, 214, 88)\",\"border-style\":\"none\"}'),(44,'.tp-caption.small_light_white',NULL,NULL,NULL,'{\"font-size\":\"17px\",\"line-height\":\"28px\",\"font-weight\":\"300\",\"font-family\":\"\\\"Open Sans\\\"\",\"color\":\"rgb(255, 255, 255)\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"padding\":\"0px\",\"border-width\":\"0px\",\"border-color\":\"rgb(255, 214, 88)\",\"border-style\":\"none\"}'),(45,'.tp-caption.roundedimage',NULL,NULL,NULL,'{\"border-width\":\"0px\",\"border-color\":\"rgb(34, 34, 34)\",\"border-style\":\"none\"}'),(46,'.tp-caption.large_bg_black',NULL,NULL,NULL,'{\"font-size\":\"40px\",\"line-height\":\"40px\",\"font-weight\":\"800\",\"font-family\":\"\\\"Open Sans\\\"\",\"color\":\"rgb(255, 255, 255)\",\"text-decoration\":\"none\",\"background-color\":\"rgb(0, 0, 0)\",\"padding\":\"10px 20px 15px\",\"border-width\":\"0px\",\"border-color\":\"rgb(255, 214, 88)\",\"border-style\":\"none\"}'),(47,'.tp-caption.mediumwhitebg',NULL,NULL,NULL,'{\"font-size\":\"30px\",\"line-height\":\"30px\",\"font-weight\":\"300\",\"font-family\":\"\\\"Open Sans\\\"\",\"color\":\"rgb(0, 0, 0)\",\"text-decoration\":\"none\",\"background-color\":\"rgb(255, 255, 255)\",\"padding\":\"5px 15px 10px\",\"text-shadow\":\"none\",\"border-width\":\"0px\",\"border-color\":\"rgb(0, 0, 0)\",\"border-style\":\"none\"}');
/*!40000 ALTER TABLE `wplf_revslider_css_bkp` ENABLE KEYS */;
UNLOCK TABLES;

-- Dumped table `wplf_revslider_css_bkp` with 47 row(s)
--

--
-- Table structure for table `wplf_wc_rate_limits`
--

DROP TABLE IF EXISTS `wplf_wc_rate_limits`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `wplf_wc_rate_limits` (
  `rate_limit_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `rate_limit_key` varchar(200) NOT NULL,
  `rate_limit_expiry` bigint(20) unsigned NOT NULL,
  `rate_limit_remaining` smallint(10) NOT NULL DEFAULT 0,
  PRIMARY KEY (`rate_limit_id`),
  UNIQUE KEY `rate_limit_key` (`rate_limit_key`(191))
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wplf_wc_rate_limits`
--

LOCK TABLES `wplf_wc_rate_limits` WRITE;
/*!40000 ALTER TABLE `wplf_wc_rate_limits` DISABLE KEYS */;
/*!40000 ALTER TABLE `wplf_wc_rate_limits` ENABLE KEYS */;
UNLOCK TABLES;

-- Dumped table `wplf_wc_rate_limits` with 0 row(s)
--

--
-- Table structure for table `wplf_revslider_navigations`
--

DROP TABLE IF EXISTS `wplf_revslider_navigations`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `wplf_revslider_navigations` (
  `id` int(9) NOT NULL AUTO_INCREMENT,
  `name` varchar(191) NOT NULL,
  `handle` varchar(191) NOT NULL,
  `type` varchar(191) NOT NULL,
  `css` longtext NOT NULL,
  `markup` longtext NOT NULL,
  `settings` longtext DEFAULT NULL,
  PRIMARY KEY (`id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wplf_revslider_navigations`
--

LOCK TABLES `wplf_revslider_navigations` WRITE;
/*!40000 ALTER TABLE `wplf_revslider_navigations` DISABLE KEYS */;
/*!40000 ALTER TABLE `wplf_revslider_navigations` ENABLE KEYS */;
UNLOCK TABLES;

-- Dumped table `wplf_revslider_navigations` with 0 row(s)
--

--
-- Table structure for table `wplf_wc_order_stats`
--

DROP TABLE IF EXISTS `wplf_wc_order_stats`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `wplf_wc_order_stats` (
  `order_id` bigint(20) unsigned NOT NULL,
  `parent_id` bigint(20) unsigned NOT NULL DEFAULT 0,
  `date_created` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `date_created_gmt` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `num_items_sold` int(11) NOT NULL DEFAULT 0,
  `total_sales` double NOT NULL DEFAULT 0,
  `tax_total` double NOT NULL DEFAULT 0,
  `shipping_total` double NOT NULL DEFAULT 0,
  `net_total` double NOT NULL DEFAULT 0,
  `returning_customer` tinyint(1) DEFAULT NULL,
  `status` varchar(200) NOT NULL,
  `customer_id` bigint(20) unsigned NOT NULL,
  `date_paid` datetime DEFAULT '0000-00-00 00:00:00',
  `date_completed` datetime DEFAULT '0000-00-00 00:00:00',
  PRIMARY KEY (`order_id`),
  KEY `date_created` (`date_created`),
  KEY `customer_id` (`customer_id`),
  KEY `status` (`status`(191))
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wplf_wc_order_stats`
--

LOCK TABLES `wplf_wc_order_stats` WRITE;
/*!40000 ALTER TABLE `wplf_wc_order_stats` DISABLE KEYS */;
/*!40000 ALTER TABLE `wplf_wc_order_stats` ENABLE KEYS */;
UNLOCK TABLES;

-- Dumped table `wplf_wc_order_stats` with 0 row(s)
--

--
-- Table structure for table `wplf_woocommerce_order_itemmeta`
--

DROP TABLE IF EXISTS `wplf_woocommerce_order_itemmeta`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `wplf_woocommerce_order_itemmeta` (
  `meta_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `order_item_id` bigint(20) unsigned NOT NULL,
  `meta_key` varchar(255) DEFAULT NULL,
  `meta_value` longtext DEFAULT NULL,
  PRIMARY KEY (`meta_id`),
  KEY `order_item_id` (`order_item_id`),
  KEY `meta_key` (`meta_key`(32))
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wplf_woocommerce_order_itemmeta`
--

LOCK TABLES `wplf_woocommerce_order_itemmeta` WRITE;
/*!40000 ALTER TABLE `wplf_woocommerce_order_itemmeta` DISABLE KEYS */;
/*!40000 ALTER TABLE `wplf_woocommerce_order_itemmeta` ENABLE KEYS */;
UNLOCK TABLES;

-- Dumped table `wplf_woocommerce_order_itemmeta` with 0 row(s)
--

--
-- Table structure for table `wplf_usermeta`
--

DROP TABLE IF EXISTS `wplf_usermeta`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `wplf_usermeta` (
  `umeta_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `user_id` bigint(20) unsigned NOT NULL DEFAULT 0,
  `meta_key` varchar(255) DEFAULT NULL,
  `meta_value` longtext DEFAULT NULL,
  PRIMARY KEY (`umeta_id`),
  KEY `user_id` (`user_id`),
  KEY `meta_key` (`meta_key`(191))
) ENGINE=MyISAM AUTO_INCREMENT=142 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wplf_usermeta`
--

LOCK TABLES `wplf_usermeta` WRITE;
/*!40000 ALTER TABLE `wplf_usermeta` DISABLE KEYS */;
INSERT INTO `wplf_usermeta` VALUES (1,1,'nickname','fc_ypm_admin'),(2,1,'first_name',''),(3,1,'last_name',''),(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,'wplf_capabilities','a:1:{s:13:\"administrator\";b:1;}'),(13,1,'wplf_user_level','10'),(14,1,'dismissed_wp_pointers','vc_pointers_backend_editor,vc_grid_item'),(15,1,'show_welcome_panel','1'),(16,1,'session_tokens','a:1:{s:64:\"7e5fae94aee78a88cb15cb43b90396a88fad6c034b5cf27f00312ca355319423\";a:4:{s:10:\"expiration\";i:1695826782;s:2:\"ip\";s:14:\"113.59.202.151\";s:2:\"ua\";s:125:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/116.0.0.0 Safari/537.36 OPR/102.0.0.0\";s:5:\"login\";i:1695653982;}}'),(17,1,'wc_last_active','1695600000'),(23,1,'_woocommerce_persistent_cart_1','a:1:{s:4:\"cart\";a:0:{}}'),(19,1,'_woocommerce_tracks_anon_id','woo:3X92cNsps8uujpBzhk6BcaO4'),(20,1,'bglibDashboardOrder','1'),(21,1,'jetpack_tracks_anon_id','jetpack:E15FMn1c6zdpjBUexTSZEW7S'),(22,1,'wplf_dashboard_quick_press_last_post_id','3837'),(24,1,'community-events-location','a:1:{s:2:\"ip\";s:12:\"113.59.221.0\";}'),(26,1,'_order_count','0'),(27,1,'wplf_user-settings','libraryContent=browse&edit_element_vcUIPanelWidth=646&edit_element_vcUIPanelLeft=891px&edit_element_vcUIPanelTop=97px&editor=tinymce&panel_vcUIPanelWidth=650&panel_vcUIPanelLeft=932px&panel_vcUIPanelTop=74px&hidetb=1'),(28,1,'wplf_user-settings-time','1695528626'),(29,1,'closedpostboxes_page','a:0:{}'),(30,1,'metaboxhidden_page','a:21:{i:0;s:21:\"dt_page_box-microsite\";i:1;s:12:\"wpb_wpbakery\";i:2;s:32:\"dt_page_box-fancy_header_options\";i:3;s:24:\"dt_page_box-page_content\";i:4;s:24:\"dt_page_box-display_blog\";i:5;s:24:\"dt_page_box-blog_options\";i:6;s:29:\"dt_page_box-display_portfolio\";i:7;s:29:\"dt_page_box-portfolio_options\";i:8;s:26:\"dt_page_box-display_albums\";i:9;s:26:\"dt_page_box-albums_options\";i:10;s:32:\"dt_page_box-display_albums_media\";i:11;s:25:\"dt_page_box-media_options\";i:12;s:24:\"dt_page_box-display_team\";i:13;s:24:\"dt_page_box-team_options\";i:14;s:32:\"dt_page_box-display_testimonials\";i:15;s:32:\"dt_page_box-testimonials_options\";i:16;s:10:\"postcustom\";i:17;s:16:\"commentstatusdiv\";i:18;s:7:\"slugdiv\";i:19;s:9:\"authordiv\";i:20;s:26:\"dt_page_box-microsite_logo\";}'),(31,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\";}'),(32,1,'metaboxhidden_nav-menus','a:4:{i:0;s:21:\"add-post-type-product\";i:1;s:12:\"add-post_tag\";i:2;s:15:\"add-product_cat\";i:3;s:15:\"add-product_tag\";}'),(33,1,'closedpostboxes_product','a:5:{i:0;s:11:\"postexcerpt\";i:1;s:24:\"woocommerce-product-data\";i:3;s:26:\"dt_page_box-header_options\";i:4;s:10:\"postcustom\";i:5;s:7:\"slugdiv\";}'),(34,1,'metaboxhidden_product','a:1:{i:1;s:29:\"dt_page_box-slideshow_options\";}'),(35,1,'nav_menu_recently_edited','27'),(83,1,'closedpostboxes_attachment','a:0:{}'),(37,1,'closedpostboxes_post','a:0:{}'),(38,1,'metaboxhidden_post','a:11:{i:0;s:21:\"dt_page_box-microsite\";i:1;s:12:\"wpb_wpbakery\";i:2;s:29:\"dt_page_box-slideshow_options\";i:3;s:32:\"dt_page_box-fancy_header_options\";i:4;s:11:\"postexcerpt\";i:5;s:13:\"trackbacksdiv\";i:6;s:10:\"postcustom\";i:7;s:16:\"commentstatusdiv\";i:8;s:7:\"slugdiv\";i:9;s:9:\"authordiv\";i:10;s:26:\"dt_page_box-microsite_logo\";}'),(39,1,'closedpostboxes_dt_gallery','a:0:{}'),(40,1,'metaboxhidden_dt_gallery','a:2:{i:0;s:12:\"wpb_wpbakery\";i:1;s:7:\"slugdiv\";}'),(41,1,'closedpostboxes_fbfba_facebook_feed','a:1:{i:0;s:26:\"fbfba_buy_premium_meta_box\";}'),(42,1,'metaboxhidden_fbfba_facebook_feed','a:1:{i:0;s:7:\"slugdiv\";}'),(43,1,'embedpress_optin_notice_dismissed','1'),(48,1,'embedpress_review_notice_dismissed','1'),(49,1,'boldgrid_dismissed_admin_notices','a:2:{s:2:\"id\";s:13:\"bg-key-prompt\";s:9:\"timestamp\";i:1670826850;}'),(51,1,'last_update','1694429761'),(52,1,'wplf_persisted_preferences','a:3:{s:17:\"core/edit-widgets\";a:3:{s:26:\"isComplementaryAreaVisible\";b:1;s:12:\"welcomeGuide\";b:0;s:11:\"themeStyles\";b:0;}s:9:\"_modified\";s:24:\"2023-09-11T10:55:47.632Z\";s:4:\"core\";a:1:{s:34:\"isInspectorControlsTabsHintVisible\";b:0;}}'),(54,1,'woocommerce_admin_activity_panel_inbox_last_read','1683699725615'),(59,1,'meta-box-order_product','a:3:{s:4:\"side\";s:243:\"submitdiv,product_catdiv,tagsdiv-product_tag,slider_revolution_metabox,postimagediv,woocommerce-product-images,dt_page_box-sidebar,dt_page_box-footer,dt_page_box-page_vertical_margins,dt_page_box-mobile_page_paddings,the7-post-meta-presets-box\";s:6:\"normal\";s:146:\"postexcerpt,dt_page_box-fancy_header_options,woocommerce-product-data,,dt_page_box-header_options,dt_page_box-slideshow_options,postcustom,slugdiv\";s:8:\"advanced\";s:0:\"\";}'),(60,1,'screen_layout_product','2'),(63,1,'edit_product_per_page','100'),(80,1,'closedpostboxes_dt_team','a:0:{}'),(81,1,'metaboxhidden_dt_team','a:1:{i:0;s:7:\"slugdiv\";}'),(82,1,'wplf_media_library_mode','grid'),(84,1,'metaboxhidden_attachment','a:4:{i:0;s:16:\"commentstatusdiv\";i:1;s:11:\"commentsdiv\";i:2;s:7:\"slugdiv\";i:3;s:9:\"authordiv\";}'),(86,1,'edit_product_cat_per_page','100'),(94,1,'woocommerce_admin_variable_product_tour_shown','\"yes\"'),(95,1,'wc_marketplace_suggestions_dismissed_suggestions','a:3:{i:0;s:28:\"product-edit-name-your-price\";i:1;s:29:\"product-edit-variation-images\";i:2;s:42:\"product-edit-woocommerce-one-page-checkout\";}'),(98,1,'closedpostboxes_vc_grid_item','a:0:{}'),(99,1,'metaboxhidden_vc_grid_item','a:2:{i:0;s:12:\"wpb_wpbakery\";i:1;s:7:\"slugdiv\";}'),(100,1,'meta-box-order_vc_grid_item','a:3:{s:4:\"side\";s:35:\"submitdiv,slider_revolution_metabox\";s:6:\"normal\";s:20:\"wpb_wpbakery,slugdiv\";s:8:\"advanced\";s:0:\"\";}'),(101,1,'screen_layout_vc_grid_item','1'),(120,2,'locale',''),(115,2,'syntax_highlighting','true'),(116,2,'comment_shortcuts','false'),(117,2,'admin_color','fresh'),(118,2,'use_ssl','0'),(119,2,'show_admin_bar_front','true'),(110,2,'nickname','fc_product_editor'),(111,2,'first_name','product admin'),(112,2,'last_name','admin'),(113,2,'description',''),(114,2,'rich_editing','true'),(121,2,'wplf_capabilities','a:1:{s:12:\"shop_manager\";b:1;}'),(122,2,'wplf_user_level','9'),(123,2,'dismissed_wp_pointers',''),(124,2,'last_update','1695463962'),(126,2,'session_tokens','a:2:{s:64:\"8709255556cece72f496b87cbc2d8493774377fee3a9722c7908d912fc06990a\";a:4:{s:10:\"expiration\";i:1695647835;s:2:\"ip\";s:14:\"112.135.72.252\";s:2:\"ua\";s:111:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/116.0.0.0 Safari/537.36\";s:5:\"login\";i:1695475035;}s:64:\"73c2daab40cf95e9bc0925ef5fc077f3d3d29353a132af90cf4121a38046c2d1\";a:4:{s:10:\"expiration\";i:1696694477;s:2:\"ip\";s:14:\"112.135.72.252\";s:2:\"ua\";s:111:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/116.0.0.0 Safari/537.36\";s:5:\"login\";i:1695484877;}}'),(127,2,'wc_last_active','1695513600'),(133,2,'_woocommerce_persistent_cart_1','a:1:{s:4:\"cart\";a:0:{}}'),(129,2,'_woocommerce_tracks_anon_id','woo:5cb2n0BJRZo/C8gveV6rCP2t'),(130,2,'bglibDashboardOrder','1'),(131,2,'wplf_dashboard_quick_press_last_post_id','3855'),(132,2,'jetpack_tracks_anon_id','jetpack:KZMzRZCCISBmV7LV1uKbKkuQ'),(134,2,'community-events-location','a:1:{s:2:\"ip\";s:12:\"112.135.74.0\";}'),(135,2,'meta-box-order_product','a:3:{s:4:\"side\";s:84:\"submitdiv,postimagediv,woocommerce-product-images,product_catdiv,tagsdiv-product_tag\";s:6:\"normal\";s:55:\"woocommerce-product-data,postcustom,slugdiv,postexcerpt\";s:8:\"advanced\";s:0:\"\";}'),(136,2,'closedpostboxes_product','a:3:{i:0;s:26:\"dt_page_box-header_options\";i:1;s:32:\"dt_page_box-fancy_header_options\";i:2;s:24:\"woocommerce-product-data\";}'),(137,2,'metaboxhidden_product','a:4:{i:0;s:12:\"wpb_wpbakery\";i:1;s:29:\"dt_page_box-slideshow_options\";i:3;s:10:\"postcustom\";i:4;s:7:\"slugdiv\";}'),(138,2,'wplf_user-settings','editor=tinymce'),(139,2,'wplf_user-settings-time','1695476862');
/*!40000 ALTER TABLE `wplf_usermeta` ENABLE KEYS */;
UNLOCK TABLES;

-- Dumped table `wplf_usermeta` with 88 row(s)
--

--
-- Table structure for table `wplf_actionscheduler_actions`
--

DROP TABLE IF EXISTS `wplf_actionscheduler_actions`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `wplf_actionscheduler_actions` (
  `action_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `hook` varchar(191) NOT NULL,
  `status` varchar(20) NOT NULL,
  `scheduled_date_gmt` datetime DEFAULT '0000-00-00 00:00:00',
  `scheduled_date_local` datetime DEFAULT '0000-00-00 00:00:00',
  `args` varchar(191) DEFAULT NULL,
  `schedule` longtext DEFAULT NULL,
  `group_id` bigint(20) unsigned NOT NULL DEFAULT 0,
  `attempts` int(11) NOT NULL DEFAULT 0,
  `last_attempt_gmt` datetime DEFAULT '0000-00-00 00:00:00',
  `last_attempt_local` datetime DEFAULT '0000-00-00 00:00:00',
  `claim_id` bigint(20) unsigned NOT NULL DEFAULT 0,
  `extended_args` varchar(8000) DEFAULT NULL,
  `priority` tinyint(3) unsigned NOT NULL DEFAULT 10,
  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`),
  KEY `claim_id_status_scheduled_date_gmt` (`claim_id`,`status`,`scheduled_date_gmt`)
) ENGINE=MyISAM AUTO_INCREMENT=1176 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wplf_actionscheduler_actions`
--

LOCK TABLES `wplf_actionscheduler_actions` WRITE;
/*!40000 ALTER TABLE `wplf_actionscheduler_actions` DISABLE KEYS */;
INSERT INTO `wplf_actionscheduler_actions` VALUES (1063,'woocommerce_run_product_attribute_lookup_update_callback','complete','2023-09-18 09:24:13','2023-09-18 09:24:13','[3661,1]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1695029053;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1695029053;}',5,1,'2023-09-18 09:25:01','2023-09-18 09:25:01',0,NULL,10),(1029,'woocommerce_run_product_attribute_lookup_update_callback','complete','2023-09-16 03:38:02','2023-09-16 03:38:02','[3437,1]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1694835482;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1694835482;}',5,1,'2023-09-16 03:38:38','2023-09-16 03:38:38',0,NULL,10),(1028,'woocommerce_run_product_attribute_lookup_update_callback','complete','2023-09-16 03:36:46','2023-09-16 03:36:46','[3438,1]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1694835406;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1694835406;}',5,1,'2023-09-16 03:37:17','2023-09-16 03:37:17',0,NULL,10),(1027,'woocommerce_run_product_attribute_lookup_update_callback','complete','2023-09-16 03:32:34','2023-09-16 03:32:34','[3547,1]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1694835154;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1694835154;}',5,1,'2023-09-16 03:33:13','2023-09-16 03:33:13',0,NULL,10),(1026,'woocommerce_run_product_attribute_lookup_update_callback','complete','2023-09-16 03:24:09','2023-09-16 03:24:09','[3548,1]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1694834649;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1694834649;}',5,1,'2023-09-16 03:24:35','2023-09-16 03:24:35',0,NULL,10),(1025,'woocommerce_run_product_attribute_lookup_update_callback','complete','2023-09-16 03:18:08','2023-09-16 03:18:08','[3439,1]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1694834288;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1694834288;}',5,1,'2023-09-16 03:18:49','2023-09-16 03:18:49',0,NULL,10),(1024,'woocommerce_run_product_attribute_lookup_update_callback','complete','2023-09-16 03:13:09','2023-09-16 03:13:09','[3549,1]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1694833989;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1694833989;}',5,1,'2023-09-16 03:13:45','2023-09-16 03:13:45',0,NULL,10),(1023,'woocommerce_cleanup_draft_orders','complete','2023-09-17 03:11:26','2023-09-17 03:11:26','[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1694920286;s:18:\"\0*\0first_timestamp\";i:1692414995;s:13:\"\0*\0recurrence\";i:86400;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1694920286;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:86400;}',6,1,'2023-09-17 03:38:25','2023-09-17 03:38:25',0,NULL,10),(1038,'woocommerce_run_product_attribute_lookup_update_callback','complete','2023-09-16 08:09:13','2023-09-16 08:09:13','[3550,1]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1694851753;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1694851753;}',5,1,'2023-09-16 08:09:18','2023-09-16 08:09:18',0,NULL,10),(1037,'woocommerce_run_product_attribute_lookup_update_callback','complete','2023-09-16 08:08:10','2023-09-16 08:08:10','[3551,1]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1694851690;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1694851690;}',5,1,'2023-09-16 08:08:14','2023-09-16 08:08:14',0,NULL,10),(1055,'woocommerce_run_product_attribute_lookup_update_callback','complete','2023-09-16 15:30:45','2023-09-16 15:30:45','[3672,1]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1694878245;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1694878245;}',5,1,'2023-09-16 15:31:18','2023-09-16 15:31:18',0,NULL,10),(1054,'woocommerce_run_product_attribute_lookup_update_callback','complete','2023-09-16 15:29:02','2023-09-16 15:29:02','[3673,1]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1694878142;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1694878142;}',5,1,'2023-09-16 15:29:39','2023-09-16 15:29:39',0,NULL,10),(1053,'woocommerce_run_product_attribute_lookup_update_callback','complete','2023-09-16 15:26:09','2023-09-16 15:26:09','[3549,1]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1694877969;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1694877969;}',5,1,'2023-09-16 15:27:13','2023-09-16 15:27:13',0,NULL,10),(1061,'woocommerce_cleanup_draft_orders','complete','2023-09-18 03:38:25','2023-09-18 03:38:25','[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1695008305;s:18:\"\0*\0first_timestamp\";i:1692414995;s:13:\"\0*\0recurrence\";i:86400;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1695008305;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:86400;}',6,1,'2023-09-18 03:47:46','2023-09-18 03:47:46',0,NULL,10),(1128,'woocommerce_run_product_attribute_lookup_update_callback','complete','2023-09-23 16:54:31','2023-09-23 16:54:31','[3643,1]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1695488071;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1695488071;}',5,1,'2023-09-23 16:55:03','2023-09-23 16:55:03',0,NULL,10),(1127,'woocommerce_run_product_attribute_lookup_update_callback','complete','2023-09-23 16:47:51','2023-09-23 16:47:51','[3640,1]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1695487671;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1695487671;}',5,1,'2023-09-23 16:48:23','2023-09-23 16:48:23',0,NULL,10),(1125,'woocommerce_run_product_attribute_lookup_update_callback','complete','2023-09-23 16:19:28','2023-09-23 16:19:28','[3637,1]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1695485968;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1695485968;}',5,1,'2023-09-23 16:20:12','2023-09-23 16:20:12',0,NULL,10),(1124,'woocommerce_run_product_attribute_lookup_update_callback','complete','2023-09-23 14:25:30','2023-09-23 14:25:30','[3636,1]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1695479130;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1695479130;}',5,1,'2023-09-23 14:26:02','2023-09-23 14:26:02',0,NULL,10),(1123,'woocommerce_run_product_attribute_lookup_update_callback','complete','2023-09-23 14:13:35','2023-09-23 14:13:35','[3633,1]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1695478415;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1695478415;}',5,1,'2023-09-23 14:14:07','2023-09-23 14:14:07',0,NULL,10),(1122,'woocommerce_run_product_attribute_lookup_update_callback','complete','2023-09-23 14:08:29','2023-09-23 14:08:29','[3631,1]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1695478109;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1695478109;}',5,1,'2023-09-23 14:09:03','2023-09-23 14:09:03',0,NULL,10),(1121,'woocommerce_run_product_attribute_lookup_update_callback','complete','2023-09-23 13:50:41','2023-09-23 13:50:41','[3673,1]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1695477041;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1695477041;}',5,1,'2023-09-23 13:51:18','2023-09-23 13:51:18',0,NULL,10),(1120,'woocommerce_run_product_attribute_lookup_update_callback','complete','2023-09-23 13:47:46','2023-09-23 13:47:46','[3673,1]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1695476866;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1695476866;}',5,1,'2023-09-23 13:48:23','2023-09-23 13:48:23',0,NULL,10),(1119,'woocommerce_run_product_attribute_lookup_update_callback','complete','2023-09-23 12:06:27','2023-09-23 12:06:27','[3625,1]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1695470787;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1695470787;}',5,1,'2023-09-23 12:07:04','2023-09-23 12:07:04',0,NULL,10),(1118,'woocommerce_run_product_attribute_lookup_update_callback','complete','2023-09-23 12:06:25','2023-09-23 12:06:25','[3628,1]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1695470785;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1695470785;}',5,1,'2023-09-23 12:06:39','2023-09-23 12:06:39',0,NULL,10),(1117,'woocommerce_run_product_attribute_lookup_update_callback','complete','2023-09-23 12:05:39','2023-09-23 12:05:39','[3625,1]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1695470739;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1695470739;}',5,1,'2023-09-23 12:06:06','2023-09-23 12:06:06',0,NULL,10),(1116,'woocommerce_run_product_attribute_lookup_update_callback','complete','2023-09-23 12:04:29','2023-09-23 12:04:29','[3628,1]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1695470669;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1695470669;}',5,1,'2023-09-23 12:05:01','2023-09-23 12:05:01',0,NULL,10),(1115,'woocommerce_run_product_attribute_lookup_update_callback','complete','2023-09-23 11:58:47','2023-09-23 11:58:47','[3627,1]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1695470327;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1695470327;}',5,1,'2023-09-23 11:58:56','2023-09-23 11:58:56',0,NULL,10),(1114,'woocommerce_run_product_attribute_lookup_update_callback','complete','2023-09-23 11:58:13','2023-09-23 11:58:13','[3627,1]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1695470293;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1695470293;}',5,1,'2023-09-23 11:58:43','2023-09-23 11:58:43',0,NULL,10),(1113,'woocommerce_run_product_attribute_lookup_update_callback','complete','2023-09-23 11:34:33','2023-09-23 11:34:33','[3619,1]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1695468873;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1695468873;}',5,1,'2023-09-23 11:35:14','2023-09-23 11:35:14',0,NULL,10),(1112,'woocommerce_run_product_attribute_lookup_update_callback','complete','2023-09-23 11:30:47','2023-09-23 11:30:47','[3664,1]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1695468647;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1695468647;}',5,1,'2023-09-23 11:31:17','2023-09-23 11:31:17',0,NULL,10),(1111,'woocommerce_run_product_attribute_lookup_update_callback','complete','2023-09-23 11:17:44','2023-09-23 11:17:44','[3622,1]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1695467864;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1695467864;}',5,1,'2023-09-23 11:18:10','2023-09-23 11:18:10',0,NULL,10),(1110,'woocommerce_run_product_attribute_lookup_update_callback','complete','2023-09-23 11:16:09','2023-09-23 11:16:09','[3621,1]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1695467769;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1695467769;}',5,1,'2023-09-23 11:16:59','2023-09-23 11:16:59',0,NULL,10),(1109,'woocommerce_run_product_attribute_lookup_update_callback','complete','2023-09-23 11:10:34','2023-09-23 11:10:34','[3628,1]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1695467434;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1695467434;}',5,1,'2023-09-23 11:11:09','2023-09-23 11:11:09',0,NULL,10),(1108,'woocommerce_run_product_attribute_lookup_update_callback','complete','2023-09-23 10:47:34','2023-09-23 10:47:34','[3623,1]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1695466054;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1695466054;}',5,1,'2023-09-23 10:47:45','2023-09-23 10:47:45',0,NULL,10),(1107,'woocommerce_run_product_attribute_lookup_update_callback','complete','2023-09-23 10:20:28','2023-09-23 10:20:28','[3630,1]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1695464428;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1695464428;}',5,1,'2023-09-23 10:20:34','2023-09-23 10:20:34',0,NULL,10),(1106,'woocommerce_run_product_attribute_lookup_update_callback','complete','2023-09-23 09:43:51','2023-09-23 09:43:51','[3630,1]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1695462231;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1695462231;}',5,1,'2023-09-23 09:43:59','2023-09-23 09:43:59',0,NULL,10),(1105,'woocommerce_run_product_attribute_lookup_update_callback','complete','2023-09-23 09:03:30','2023-09-23 09:03:30','[3638,1]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1695459810;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1695459810;}',5,1,'2023-09-23 09:03:56','2023-09-23 09:03:56',0,NULL,10),(1104,'woocommerce_run_product_attribute_lookup_update_callback','complete','2023-09-23 08:48:21','2023-09-23 08:48:21','[3664,1]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1695458901;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1695458901;}',5,1,'2023-09-23 08:48:21','2023-09-23 08:48:21',0,NULL,10),(1103,'woocommerce_run_product_attribute_lookup_update_callback','complete','2023-09-23 08:41:26','2023-09-23 08:41:26','[3664,1]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1695458486;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1695458486;}',5,1,'2023-09-23 08:41:56','2023-09-23 08:41:56',0,NULL,10),(1102,'woocommerce_run_product_attribute_lookup_update_callback','complete','2023-09-23 08:40:08','2023-09-23 08:40:08','[3654,1]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1695458408;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1695458408;}',5,1,'2023-09-23 08:41:04','2023-09-23 08:41:04',0,NULL,10),(1101,'woocommerce_run_product_attribute_lookup_update_callback','complete','2023-09-23 08:37:52','2023-09-23 08:37:52','[3632,1]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1695458272;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1695458272;}',5,1,'2023-09-23 08:38:00','2023-09-23 08:38:00',0,NULL,10),(1100,'woocommerce_run_product_attribute_lookup_update_callback','complete','2023-09-23 08:36:03','2023-09-23 08:36:03','[3647,1]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1695458163;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1695458163;}',5,1,'2023-09-23 08:36:38','2023-09-23 08:36:38',0,NULL,10),(1099,'woocommerce_run_product_attribute_lookup_update_callback','complete','2023-09-23 08:35:07','2023-09-23 08:35:07','[3633,1]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1695458107;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1695458107;}',5,1,'2023-09-23 08:35:10','2023-09-23 08:35:10',0,NULL,10),(1098,'woocommerce_run_product_attribute_lookup_update_callback','complete','2023-09-23 08:28:56','2023-09-23 08:28:56','[3662,1]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1695457736;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1695457736;}',5,1,'2023-09-23 08:29:58','2023-09-23 08:29:58',0,NULL,10),(1093,'woocommerce_run_product_attribute_lookup_update_callback','complete','2023-09-21 12:09:25','2023-09-21 12:09:25','[3636,1]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1695298165;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1695298165;}',5,1,'2023-09-21 12:09:53','2023-09-21 12:09:53',0,NULL,10),(1091,'woocommerce_run_product_attribute_lookup_update_callback','complete','2023-09-20 05:20:38','2023-09-20 05:20:38','[3649,1]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1695187238;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1695187238;}',5,1,'2023-09-20 05:21:07','2023-09-20 05:21:07',0,NULL,10),(1090,'woocommerce_run_product_attribute_lookup_update_callback','complete','2023-09-20 05:10:35','2023-09-20 05:10:35','[3640,1]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1695186635;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1695186635;}',5,1,'2023-09-20 05:11:21','2023-09-20 05:11:21',0,NULL,10),(1089,'woocommerce_run_product_attribute_lookup_update_callback','complete','2023-09-20 05:09:50','2023-09-20 05:09:50','[3649,1]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1695186590;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1695186590;}',5,1,'2023-09-20 05:10:05','2023-09-20 05:10:05',0,NULL,10),(1088,'woocommerce_update_marketplace_suggestions','complete','2023-09-20 04:56:23','2023-09-20 04:56:23','[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1695185783;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1695185783;}',6,1,'2023-09-20 04:56:26','2023-09-20 04:56:26',0,NULL,10),(1086,'woocommerce_run_product_attribute_lookup_update_callback','complete','2023-09-19 13:21:12','2023-09-19 13:21:12','[3639,1]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1695129672;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1695129672;}',5,1,'2023-09-19 13:22:40','2023-09-19 13:22:40',0,NULL,10),(1085,'woocommerce_run_product_attribute_lookup_update_callback','complete','2023-09-19 13:05:58','2023-09-19 13:05:58','[3643,1]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1695128758;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1695128758;}',5,1,'2023-09-19 13:05:59','2023-09-19 13:05:59',0,NULL,10),(1068,'woocommerce_run_product_attribute_lookup_update_callback','complete','2023-09-18 13:04:34','2023-09-18 13:04:34','[3634,1]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1695042274;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1695042274;}',5,1,'2023-09-18 13:05:10','2023-09-18 13:05:10',0,NULL,10),(1069,'woocommerce_cleanup_draft_orders','complete','2023-09-20 03:48:20','2023-09-20 03:48:20','[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1695181700;s:18:\"\0*\0first_timestamp\";i:1692414995;s:13:\"\0*\0recurrence\";i:86400;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1695181700;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:86400;}',6,1,'2023-09-20 03:48:27','2023-09-20 03:48:27',0,NULL,10),(1067,'woocommerce_run_product_attribute_lookup_update_callback','complete','2023-09-18 10:25:32','2023-09-18 10:25:32','[3640,1]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1695032732;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1695032732;}',5,1,'2023-09-18 10:26:11','2023-09-18 10:26:11',0,NULL,10),(1066,'woocommerce_run_product_attribute_lookup_update_callback','complete','2023-09-18 10:03:50','2023-09-18 10:03:50','[3646,1]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1695031430;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1695031430;}',5,1,'2023-09-18 10:04:23','2023-09-18 10:04:23',0,NULL,10),(1065,'woocommerce_run_product_attribute_lookup_update_callback','complete','2023-09-18 09:39:17','2023-09-18 09:39:17','[3648,1]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1695029957;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1695029957;}',5,1,'2023-09-18 09:40:03','2023-09-18 09:40:03',0,NULL,10),(1064,'woocommerce_run_product_attribute_lookup_update_callback','complete','2023-09-18 09:28:30','2023-09-18 09:28:30','[3659,1]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1695029310;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1695029310;}',5,1,'2023-09-18 09:29:11','2023-09-18 09:29:11',0,NULL,10),(1030,'woocommerce_run_product_attribute_lookup_update_callback','complete','2023-09-16 03:39:10','2023-09-16 03:39:10','[3436,1]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1694835550;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1694835550;}',5,1,'2023-09-16 03:39:42','2023-09-16 03:39:42',0,NULL,10),(1031,'woocommerce_run_product_attribute_lookup_update_callback','complete','2023-09-16 03:40:12','2023-09-16 03:40:12','[3435,1]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1694835612;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1694835612;}',5,1,'2023-09-16 03:40:52','2023-09-16 03:40:52',0,NULL,10),(1032,'woocommerce_run_product_attribute_lookup_update_callback','complete','2023-09-16 03:41:24','2023-09-16 03:41:24','[3434,1]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1694835684;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1694835684;}',5,1,'2023-09-16 03:41:58','2023-09-16 03:41:58',0,NULL,10),(1033,'woocommerce_run_product_attribute_lookup_update_callback','complete','2023-09-16 03:43:06','2023-09-16 03:43:06','[3433,1]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1694835786;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1694835786;}',5,1,'2023-09-16 03:43:10','2023-09-16 03:43:10',0,NULL,10),(1034,'woocommerce_run_product_attribute_lookup_update_callback','complete','2023-09-16 03:44:34','2023-09-16 03:44:34','[3432,1]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1694835874;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1694835874;}',5,1,'2023-09-16 03:45:11','2023-09-16 03:45:11',0,NULL,10),(1035,'woocommerce_run_product_attribute_lookup_update_callback','complete','2023-09-16 03:46:08','2023-09-16 03:46:08','[3731,1]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1694835968;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1694835968;}',5,1,'2023-09-16 03:47:14','2023-09-16 03:47:14',0,NULL,10),(1036,'woocommerce_run_product_attribute_lookup_update_callback','complete','2023-09-16 03:57:25','2023-09-16 03:57:25','[3731,1]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1694836645;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1694836645;}',5,1,'2023-09-16 03:57:55','2023-09-16 03:57:55',0,NULL,10),(1017,'woocommerce_cleanup_draft_orders','complete','2023-09-16 03:10:08','2023-09-16 03:10:08','[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1694833808;s:18:\"\0*\0first_timestamp\";i:1692414995;s:13:\"\0*\0recurrence\";i:86400;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1694833808;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:86400;}',6,1,'2023-09-16 03:11:26','2023-09-16 03:11:26',0,NULL,10),(971,'woocommerce_run_product_attribute_lookup_update_callback','complete','2023-09-14 09:09:57','2023-09-14 09:09:57','[3644,1]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1694682597;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1694682597;}',5,1,'2023-09-14 09:10:28','2023-09-14 09:10:28',0,NULL,10),(967,'woocommerce_run_product_attribute_lookup_update_callback','complete','2023-09-14 08:00:02','2023-09-14 08:00:02','[3642,1]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1694678402;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1694678402;}',5,1,'2023-09-14 08:00:02','2023-09-14 08:00:02',0,NULL,10),(966,'woocommerce_run_product_attribute_lookup_update_callback','complete','2023-09-14 07:51:42','2023-09-14 07:51:42','[3642,1]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1694677902;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1694677902;}',5,1,'2023-09-14 07:52:08','2023-09-14 07:52:08',0,NULL,10),(963,'woocommerce_run_product_attribute_lookup_update_callback','complete','2023-09-14 07:47:43','2023-09-14 07:47:43','[3640,1]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1694677663;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1694677663;}',5,1,'2023-09-14 07:47:48','2023-09-14 07:47:48',0,NULL,10),(964,'woocommerce_run_product_attribute_lookup_update_callback','complete','2023-09-14 07:48:41','2023-09-14 07:48:41','[3639,1]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1694677721;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1694677721;}',5,1,'2023-09-14 07:49:36','2023-09-14 07:49:36',0,NULL,10),(962,'woocommerce_run_product_attribute_lookup_update_callback','complete','2023-09-14 07:43:54','2023-09-14 07:43:54','[3640,1]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1694677434;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1694677434;}',5,1,'2023-09-14 07:43:56','2023-09-14 07:43:56',0,NULL,10),(959,'woocommerce_run_product_attribute_lookup_update_callback','complete','2023-09-14 07:35:53','2023-09-14 07:35:53','[3638,1]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1694676953;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1694676953;}',5,1,'2023-09-14 07:35:56','2023-09-14 07:35:56',0,NULL,10),(848,'woocommerce_run_product_attribute_lookup_update_callback','complete','2023-09-12 07:03:39','2023-09-12 07:03:39','[3556,1]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1694502219;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1694502219;}',5,1,'2023-09-12 07:04:08','2023-09-12 07:04:08',0,NULL,10),(731,'woocommerce_cleanup_draft_orders','complete','2023-09-12 01:33:43','2023-09-12 01:33:43','[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1694482423;s:18:\"\0*\0first_timestamp\";i:1692414995;s:13:\"\0*\0recurrence\";i:86400;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1694482423;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:86400;}',6,1,'2023-09-12 01:49:28','2023-09-12 01:49:28',0,NULL,10),(857,'woocommerce_run_product_attribute_lookup_update_callback','complete','2023-09-13 04:52:31','2023-09-13 04:52:31','[3589,1]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1694580751;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1694580751;}',5,1,'2023-09-13 04:52:57','2023-09-13 04:52:57',0,NULL,10),(856,'woocommerce_update_marketplace_suggestions','complete','2023-09-13 04:51:06','2023-09-13 04:51:06','[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1694580666;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1694580666;}',6,1,'2023-09-13 04:52:16','2023-09-13 04:52:16',0,NULL,10),(855,'woocommerce_run_product_attribute_lookup_update_callback','complete','2023-09-13 04:51:03','2023-09-13 04:51:03','[3589,1]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1694580663;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1694580663;}',5,1,'2023-09-13 04:51:03','2023-09-13 04:51:03',0,NULL,10),(1126,'woocommerce_run_product_attribute_lookup_update_callback','complete','2023-09-23 16:23:29','2023-09-23 16:23:29','[3638,1]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1695486209;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1695486209;}',5,1,'2023-09-23 16:23:38','2023-09-23 16:23:38',0,NULL,10),(732,'action_scheduler/migration_hook','complete','2023-09-11 05:11:13','2023-09-11 05:11:13','[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1694409073;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1694409073;}',1,1,'2023-09-11 05:11:57','2023-09-11 05:11:57',0,NULL,10),(853,'woocommerce_run_product_attribute_lookup_update_callback','complete','2023-09-13 03:54:15','2023-09-13 03:54:15','[3580,1]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1694577255;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1694577255;}',5,1,'2023-09-13 03:54:44','2023-09-13 03:54:44',0,NULL,10),(852,'woocommerce_cleanup_draft_orders','complete','2023-09-14 02:34:56','2023-09-14 02:34:56','[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1694658896;s:18:\"\0*\0first_timestamp\";i:1692414995;s:13:\"\0*\0recurrence\";i:86400;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1694658896;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:86400;}',6,1,'2023-09-14 03:08:08','2023-09-14 03:08:08',0,NULL,10),(709,'woocommerce_run_product_attribute_lookup_update_callback','complete','2023-09-04 04:46:58','2023-09-04 04:46:58','[3432,1]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1693802818;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1693802818;}',5,1,'2023-09-04 04:48:08','2023-09-04 04:48:08',0,NULL,10),(724,'woocommerce_cleanup_draft_orders','complete','2023-09-06 09:00:40','2023-09-06 09:00:40','[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1693990840;s:18:\"\0*\0first_timestamp\";i:1692414995;s:13:\"\0*\0recurrence\";i:86400;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1693990840;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:86400;}',6,1,'2023-09-06 09:00:52','2023-09-06 09:00:52',0,NULL,10),(725,'woocommerce_update_marketplace_suggestions','complete','2023-09-06 04:45:45','2023-09-06 04:45:45','[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1693975545;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1693975545;}',6,1,'2023-09-06 04:46:13','2023-09-06 04:46:13',0,NULL,10),(730,'woocommerce_cleanup_draft_orders','complete','2023-09-10 11:57:04','2023-09-10 11:57:04','[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1694347024;s:18:\"\0*\0first_timestamp\";i:1692414995;s:13:\"\0*\0recurrence\";i:86400;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1694347024;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:86400;}',6,1,'2023-09-11 01:33:43','2023-09-11 01:33:43',0,NULL,10),(960,'woocommerce_run_product_attribute_lookup_update_callback','complete','2023-09-14 07:37:49','2023-09-14 07:37:49','[3639,1]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1694677069;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1694677069;}',5,1,'2023-09-14 07:38:15','2023-09-14 07:38:15',0,NULL,10),(854,'woocommerce_run_product_attribute_lookup_update_callback','complete','2023-09-13 04:06:46','2023-09-13 04:06:46','[3580,1]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1694578006;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1694578006;}',5,1,'2023-09-13 04:06:50','2023-09-13 04:06:50',0,NULL,10),(925,'woocommerce_run_product_attribute_lookup_update_callback','complete','2023-09-14 03:54:11','2023-09-14 03:54:11','[3623,1]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1694663651;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1694663651;}',5,1,'2023-09-14 03:54:49','2023-09-14 03:54:49',0,NULL,10),(952,'woocommerce_run_product_attribute_lookup_update_callback','complete','2023-09-14 07:07:21','2023-09-14 07:07:21','[3355,1]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1694675241;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1694675241;}',5,1,'2023-09-14 07:07:48','2023-09-14 07:07:48',0,NULL,10),(957,'woocommerce_run_product_attribute_lookup_update_callback','complete','2023-09-14 07:22:43','2023-09-14 07:22:43','[3637,1]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1694676163;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1694676163;}',5,1,'2023-09-14 07:23:51','2023-09-14 07:23:51',0,NULL,10),(1084,'woocommerce_run_product_attribute_lookup_update_callback','complete','2023-09-19 13:05:09','2023-09-19 13:05:09','[3648,1]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1695128709;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1695128709;}',5,1,'2023-09-19 13:05:22','2023-09-19 13:05:22',0,NULL,10),(1083,'woocommerce_run_product_attribute_lookup_update_callback','complete','2023-09-19 13:04:09','2023-09-19 13:04:09','[3642,1]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1695128649;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1695128649;}',5,1,'2023-09-19 13:04:13','2023-09-19 13:04:13',0,NULL,10),(1082,'woocommerce_run_product_attribute_lookup_update_callback','complete','2023-09-19 12:58:46','2023-09-19 12:58:46','[3638,1]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1695128326;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1695128326;}',5,1,'2023-09-19 12:59:19','2023-09-19 12:59:19',0,NULL,10),(1081,'woocommerce_run_product_attribute_lookup_update_callback','complete','2023-09-19 12:57:13','2023-09-19 12:57:13','[3645,1]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1695128233;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1695128233;}',5,1,'2023-09-19 12:57:54','2023-09-19 12:57:54',0,NULL,10),(1079,'woocommerce_run_product_attribute_lookup_update_callback','complete','2023-09-19 12:16:58','2023-09-19 12:16:58','[3644,1]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1695125818;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1695125818;}',5,1,'2023-09-19 12:17:04','2023-09-19 12:17:04',0,NULL,10),(1092,'woocommerce_cleanup_draft_orders','complete','2023-09-22 04:46:39','2023-09-22 04:46:39','[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1695357999;s:18:\"\0*\0first_timestamp\";i:1692414995;s:13:\"\0*\0recurrence\";i:86400;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1695357999;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:86400;}',6,1,'2023-09-22 05:08:47','2023-09-22 05:08:47',0,NULL,10),(1080,'woocommerce_run_product_attribute_lookup_update_callback','complete','2023-09-19 12:49:21','2023-09-19 12:49:21','[3647,1]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1695127761;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1695127761;}',5,1,'2023-09-19 12:50:03','2023-09-19 12:50:03',0,NULL,10),(1078,'woocommerce_run_product_attribute_lookup_update_callback','complete','2023-09-19 12:15:26','2023-09-19 12:15:26','[3647,1]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1695125726;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1695125726;}',5,1,'2023-09-19 12:15:27','2023-09-19 12:15:27',0,NULL,10),(1077,'woocommerce_run_product_attribute_lookup_update_callback','complete','2023-09-19 12:13:44','2023-09-19 12:13:44','[3646,1]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1695125624;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1695125624;}',5,1,'2023-09-19 12:14:31','2023-09-19 12:14:31',0,NULL,10),(1076,'woocommerce_run_product_attribute_lookup_update_callback','complete','2023-09-19 12:07:57','2023-09-19 12:07:57','[3648,1]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1695125277;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1695125277;}',5,1,'2023-09-19 12:08:56','2023-09-19 12:08:56',0,NULL,10),(1075,'woocommerce_run_product_attribute_lookup_update_callback','complete','2023-09-19 12:06:05','2023-09-19 12:06:05','[3658,1]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1695125165;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1695125165;}',5,1,'2023-09-19 12:06:05','2023-09-19 12:06:05',0,NULL,10),(1074,'woocommerce_run_product_attribute_lookup_update_callback','complete','2023-09-19 12:00:14','2023-09-19 12:00:14','[3654,1]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1695124814;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1695124814;}',5,1,'2023-09-19 12:00:46','2023-09-19 12:00:46',0,NULL,10),(1073,'woocommerce_run_product_attribute_lookup_update_callback','complete','2023-09-19 12:00:11','2023-09-19 12:00:11','[3656,1]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1695124811;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1695124811;}',5,1,'2023-09-19 12:00:32','2023-09-19 12:00:32',0,NULL,10),(1072,'woocommerce_run_product_attribute_lookup_update_callback','complete','2023-09-19 11:48:17','2023-09-19 11:48:17','[3655,1]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1695124097;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1695124097;}',5,1,'2023-09-19 11:48:47','2023-09-19 11:48:47',0,NULL,10),(1071,'woocommerce_run_product_attribute_lookup_update_callback','complete','2023-09-19 11:43:48','2023-09-19 11:43:48','[3653,1]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1695123828;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1695123828;}',5,1,'2023-09-19 11:44:19','2023-09-19 11:44:19',0,NULL,10),(1070,'woocommerce_run_product_attribute_lookup_update_callback','complete','2023-09-19 11:28:42','2023-09-19 11:28:42','[3651,1]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1695122922;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1695122922;}',5,1,'2023-09-19 11:29:16','2023-09-19 11:29:16',0,NULL,10),(1087,'woocommerce_cleanup_draft_orders','complete','2023-09-21 03:48:27','2023-09-21 03:48:27','[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1695268107;s:18:\"\0*\0first_timestamp\";i:1692414995;s:13:\"\0*\0recurrence\";i:86400;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1695268107;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:86400;}',6,1,'2023-09-21 04:46:39','2023-09-21 04:46:39',0,NULL,10),(1094,'woocommerce_cleanup_draft_orders','complete','2023-09-23 05:08:47','2023-09-23 05:08:47','[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1695445727;s:18:\"\0*\0first_timestamp\";i:1692414995;s:13:\"\0*\0recurrence\";i:86400;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1695445727;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:86400;}',6,1,'2023-09-23 05:09:22','2023-09-23 05:09:22',0,NULL,10),(1097,'woocommerce_run_product_attribute_lookup_update_callback','complete','2023-09-23 08:28:02','2023-09-23 08:28:02','[3659,1]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1695457682;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1695457682;}',5,1,'2023-09-23 08:28:47','2023-09-23 08:28:47',0,NULL,10),(1095,'woocommerce_cleanup_draft_orders','complete','2023-09-24 05:09:22','2023-09-24 05:09:22','[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1695532162;s:18:\"\0*\0first_timestamp\";i:1692414995;s:13:\"\0*\0recurrence\";i:86400;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1695532162;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:86400;}',6,1,'2023-09-24 05:09:49','2023-09-24 05:09:49',0,NULL,10),(1096,'woocommerce_run_product_attribute_lookup_update_callback','complete','2023-09-23 08:13:28','2023-09-23 08:13:28','[3655,1]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1695456808;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1695456808;}',5,1,'2023-09-23 08:14:00','2023-09-23 08:14:00',0,NULL,10),(1145,'woocommerce_run_product_attribute_lookup_update_callback','complete','2023-09-24 05:44:47','2023-09-24 05:44:47','[3626,1]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1695534287;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1695534287;}',5,1,'2023-09-24 05:44:51','2023-09-24 05:44:51',0,NULL,10),(1146,'woocommerce_run_product_attribute_lookup_update_callback','complete','2023-09-24 05:46:15','2023-09-24 05:46:15','[3620,1]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1695534375;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1695534375;}',5,1,'2023-09-24 05:46:55','2023-09-24 05:46:55',0,NULL,10),(1175,'woocommerce_cleanup_draft_orders','pending','2023-09-27 05:19:37','2023-09-27 05:19:37','[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1695791977;s:18:\"\0*\0first_timestamp\";i:1692414995;s:13:\"\0*\0recurrence\";i:86400;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1695791977;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:86400;}',6,0,'0000-00-00 00:00:00','0000-00-00 00:00:00',0,NULL,10),(1174,'woocommerce_cleanup_draft_orders','complete','2023-09-26 05:18:21','2023-09-26 05:18:21','[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1695705501;s:18:\"\0*\0first_timestamp\";i:1692414995;s:13:\"\0*\0recurrence\";i:86400;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1695705501;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:86400;}',6,1,'2023-09-26 05:19:37','2023-09-26 05:19:37',0,NULL,10),(687,'woocommerce_cleanup_draft_orders','complete','2023-08-27 05:46:10','2023-08-27 05:46:10','[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1693115170;s:18:\"\0*\0first_timestamp\";i:1692414995;s:13:\"\0*\0recurrence\";i:86400;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1693115170;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:86400;}',6,1,'2023-08-27 06:08:28','2023-08-27 06:08:28',0,NULL,10),(691,'woocommerce_cleanup_draft_orders','complete','2023-08-28 06:08:28','2023-08-28 06:08:28','[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1693202908;s:18:\"\0*\0first_timestamp\";i:1692414995;s:13:\"\0*\0recurrence\";i:86400;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1693202908;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:86400;}',6,1,'2023-08-28 06:10:13','2023-08-28 06:10:13',0,NULL,10),(692,'woocommerce_run_product_attribute_lookup_update_callback','complete','2023-08-27 08:28:37','2023-08-27 08:28:37','[3331,1]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1693124917;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1693124917;}',5,1,'2023-08-27 08:28:41','2023-08-27 08:28:41',0,NULL,10),(693,'woocommerce_run_product_attribute_lookup_update_callback','complete','2023-08-27 09:13:03','2023-08-27 09:13:03','[3352,1]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1693127583;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1693127583;}',5,1,'2023-08-27 09:13:57','2023-08-27 09:13:57',0,NULL,10),(694,'woocommerce_run_product_attribute_lookup_update_callback','complete','2023-08-27 09:56:18','2023-08-27 09:56:18','[3355,1]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1693130178;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1693130178;}',5,1,'2023-08-27 09:56:47','2023-08-27 09:56:47',0,NULL,10),(695,'woocommerce_run_product_attribute_lookup_update_callback','complete','2023-08-27 11:12:30','2023-08-27 11:12:30','[3361,1]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1693134750;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1693134750;}',5,1,'2023-08-27 11:13:00','2023-08-27 11:13:00',0,NULL,10),(696,'woocommerce_run_product_attribute_lookup_update_callback','complete','2023-08-28 00:59:28','2023-08-28 00:59:28','[3362,1]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1693184368;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1693184368;}',5,1,'2023-08-28 00:59:55','2023-08-28 00:59:55',0,NULL,10),(697,'woocommerce_run_product_attribute_lookup_update_callback','complete','2023-08-28 01:46:05','2023-08-28 01:46:05','[3365,1]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1693187165;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1693187165;}',5,1,'2023-08-28 01:46:57','2023-08-28 01:46:57',0,NULL,10),(698,'woocommerce_run_product_attribute_lookup_update_callback','complete','2023-08-28 02:29:51','2023-08-28 02:29:51','[3366,1]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1693189791;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1693189791;}',5,1,'2023-08-28 02:30:19','2023-08-28 02:30:19',0,NULL,10),(699,'woocommerce_run_product_attribute_lookup_update_callback','complete','2023-08-28 02:38:57','2023-08-28 02:38:57','[3370,1]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1693190337;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1693190337;}',5,1,'2023-08-28 02:38:58','2023-08-28 02:38:58',0,NULL,10),(700,'woocommerce_cleanup_draft_orders','complete','2023-08-29 06:10:13','2023-08-29 06:10:13','[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1693289413;s:18:\"\0*\0first_timestamp\";i:1692414995;s:13:\"\0*\0recurrence\";i:86400;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1693289413;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:86400;}',6,1,'2023-08-29 06:32:57','2023-08-29 06:32:57',0,NULL,10),(701,'woocommerce_cleanup_draft_orders','complete','2023-08-30 06:32:57','2023-08-30 06:32:57','[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1693377177;s:18:\"\0*\0first_timestamp\";i:1692414995;s:13:\"\0*\0recurrence\";i:86400;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1693377177;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:86400;}',6,1,'2023-08-30 06:52:53','2023-08-30 06:52:53',0,NULL,10),(702,'woocommerce_update_marketplace_suggestions','complete','2023-08-30 03:17:02','2023-08-30 03:17:02','[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1693365422;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1693365422;}',6,1,'2023-08-30 03:18:09','2023-08-30 03:18:09',0,NULL,10),(703,'woocommerce_cleanup_draft_orders','complete','2023-08-31 06:52:53','2023-08-31 06:52:53','[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1693464773;s:18:\"\0*\0first_timestamp\";i:1692414995;s:13:\"\0*\0recurrence\";i:86400;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1693464773;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:86400;}',6,1,'2023-08-31 07:13:53','2023-08-31 07:13:53',0,NULL,10),(704,'woocommerce_run_product_attribute_lookup_update_callback','complete','2023-08-30 07:28:24','2023-08-30 07:28:24','[3373,1]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1693380504;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1693380504;}',5,1,'2023-08-30 07:28:58','2023-08-30 07:28:58',0,NULL,10),(705,'woocommerce_cleanup_draft_orders','complete','2023-09-01 07:13:53','2023-09-01 07:13:53','[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1693552433;s:18:\"\0*\0first_timestamp\";i:1692414995;s:13:\"\0*\0recurrence\";i:86400;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1693552433;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:86400;}',6,1,'2023-09-01 07:15:03','2023-09-01 07:15:03',0,NULL,10),(706,'woocommerce_cleanup_draft_orders','complete','2023-09-02 07:15:03','2023-09-02 07:15:03','[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1693638903;s:18:\"\0*\0first_timestamp\";i:1692414995;s:13:\"\0*\0recurrence\";i:86400;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1693638903;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:86400;}',6,1,'2023-09-02 07:16:51','2023-09-02 07:16:51',0,NULL,10),(707,'woocommerce_cleanup_draft_orders','complete','2023-09-03 07:16:51','2023-09-03 07:16:51','[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1693725411;s:18:\"\0*\0first_timestamp\";i:1692414995;s:13:\"\0*\0recurrence\";i:86400;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1693725411;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:86400;}',6,1,'2023-09-03 07:43:56','2023-09-03 07:43:56',0,NULL,10),(708,'woocommerce_cleanup_draft_orders','complete','2023-09-04 07:43:56','2023-09-04 07:43:56','[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1693813436;s:18:\"\0*\0first_timestamp\";i:1692414995;s:13:\"\0*\0recurrence\";i:86400;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1693813436;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:86400;}',6,1,'2023-09-04 07:44:24','2023-09-04 07:44:24',0,NULL,10),(710,'woocommerce_run_product_attribute_lookup_update_callback','complete','2023-09-04 04:53:17','2023-09-04 04:53:17','[3433,1]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1693803197;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1693803197;}',5,1,'2023-09-04 04:53:19','2023-09-04 04:53:19',0,NULL,10),(711,'woocommerce_run_product_attribute_lookup_update_callback','complete','2023-09-04 05:20:59','2023-09-04 05:20:59','[3434,1]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1693804859;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1693804859;}',5,1,'2023-09-04 05:21:31','2023-09-04 05:21:31',0,NULL,10),(712,'woocommerce_run_product_attribute_lookup_update_callback','complete','2023-09-04 05:27:06','2023-09-04 05:27:06','[3435,1]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1693805226;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1693805226;}',5,1,'2023-09-04 05:28:14','2023-09-04 05:28:14',0,NULL,10),(713,'woocommerce_run_product_attribute_lookup_update_callback','complete','2023-09-04 05:31:49','2023-09-04 05:31:49','[3436,1]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1693805509;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1693805509;}',5,1,'2023-09-04 05:32:13','2023-09-04 05:32:13',0,NULL,10),(714,'woocommerce_run_product_attribute_lookup_update_callback','complete','2023-09-04 05:36:12','2023-09-04 05:36:12','[3437,1]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1693805772;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1693805772;}',5,1,'2023-09-04 05:37:21','2023-09-04 05:37:21',0,NULL,10),(715,'woocommerce_run_product_attribute_lookup_update_callback','complete','2023-09-04 05:39:45','2023-09-04 05:39:45','[3438,1]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1693805985;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1693805985;}',5,1,'2023-09-04 05:40:19','2023-09-04 05:40:19',0,NULL,10),(716,'woocommerce_run_product_attribute_lookup_update_callback','complete','2023-09-04 05:46:46','2023-09-04 05:46:46','[3439,1]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1693806406;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1693806406;}',5,1,'2023-09-04 05:47:14','2023-09-04 05:47:14',0,NULL,10),(717,'woocommerce_run_product_attribute_lookup_update_callback','complete','2023-09-04 05:50:14','2023-09-04 05:50:14','[3440,1]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1693806614;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1693806614;}',5,1,'2023-09-04 05:50:57','2023-09-04 05:50:57',0,NULL,10),(718,'woocommerce_run_product_attribute_lookup_update_callback','complete','2023-09-04 05:55:42','2023-09-04 05:55:42','[3441,1]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1693806942;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1693806942;}',5,1,'2023-09-04 05:56:08','2023-09-04 05:56:08',0,NULL,10),(719,'woocommerce_run_product_attribute_lookup_update_callback','complete','2023-09-04 05:59:39','2023-09-04 05:59:39','[3442,1]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1693807179;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1693807179;}',5,1,'2023-09-04 06:00:08','2023-09-04 06:00:08',0,NULL,10),(720,'woocommerce_run_product_attribute_lookup_update_callback','complete','2023-09-04 06:09:41','2023-09-04 06:09:41','[3447,1]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1693807781;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1693807781;}',5,1,'2023-09-04 06:10:05','2023-09-04 06:10:05',0,NULL,10),(721,'woocommerce_run_product_attribute_lookup_update_callback','complete','2023-09-04 06:14:58','2023-09-04 06:14:58','[3450,1]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1693808098;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1693808098;}',5,1,'2023-09-04 06:15:27','2023-09-04 06:15:27',0,NULL,10),(722,'woocommerce_run_product_attribute_lookup_update_callback','complete','2023-09-04 06:19:19','2023-09-04 06:19:19','[3453,1]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1693808359;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1693808359;}',5,1,'2023-09-04 06:20:28','2023-09-04 06:20:28',0,NULL,10),(723,'woocommerce_cleanup_draft_orders','complete','2023-09-05 07:44:24','2023-09-05 07:44:24','[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1693899864;s:18:\"\0*\0first_timestamp\";i:1692414995;s:13:\"\0*\0recurrence\";i:86400;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1693899864;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:86400;}',6,1,'2023-09-05 09:00:40','2023-09-05 09:00:40',0,NULL,10),(726,'woocommerce_run_product_attribute_lookup_update_callback','complete','2023-09-06 04:46:14','2023-09-06 04:46:14','[3461,1]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1693975574;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1693975574;}',5,1,'2023-09-06 04:46:43','2023-09-06 04:46:43',0,NULL,10),(727,'woocommerce_cleanup_draft_orders','complete','2023-09-07 09:00:52','2023-09-07 09:00:52','[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1694077252;s:18:\"\0*\0first_timestamp\";i:1692414995;s:13:\"\0*\0recurrence\";i:86400;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1694077252;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:86400;}',6,1,'2023-09-07 09:01:15','2023-09-07 09:01:15',0,NULL,10),(728,'woocommerce_cleanup_draft_orders','complete','2023-09-08 09:01:15','2023-09-08 09:01:15','[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1694163675;s:18:\"\0*\0first_timestamp\";i:1692414995;s:13:\"\0*\0recurrence\";i:86400;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1694163675;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:86400;}',6,1,'2023-09-08 11:14:21','2023-09-08 11:14:21',0,NULL,10),(729,'woocommerce_cleanup_draft_orders','complete','2023-09-09 11:14:21','2023-09-09 11:14:21','[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1694258061;s:18:\"\0*\0first_timestamp\";i:1692414995;s:13:\"\0*\0recurrence\";i:86400;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1694258061;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:86400;}',6,1,'2023-09-09 11:57:04','2023-09-09 11:57:04',0,NULL,10),(733,'action_scheduler/migration_hook','complete','2023-09-11 05:20:54','2023-09-11 05:20:54','[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1694409654;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1694409654;}',1,1,'2023-09-11 05:21:04','2023-09-11 05:21:04',0,NULL,10),(734,'wc_schedule_update_product_default_cat','complete','2023-09-11 09:45:25','2023-09-11 09:45:25','[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1694425525;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1694425525;}',3,1,'2023-09-11 09:46:18','2023-09-11 09:46:18',0,NULL,10),(735,'wc_schedule_update_product_default_cat','complete','2023-09-11 09:45:25','2023-09-11 09:45:25','[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1694425525;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1694425525;}',3,1,'2023-09-11 09:46:18','2023-09-11 09:46:18',0,NULL,10),(736,'wc_schedule_update_product_default_cat','complete','2023-09-11 09:45:25','2023-09-11 09:45:25','[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1694425525;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1694425525;}',3,1,'2023-09-11 09:46:18','2023-09-11 09:46:18',0,NULL,10),(737,'wc_schedule_update_product_default_cat','complete','2023-09-11 09:45:25','2023-09-11 09:45:25','[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1694425525;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1694425525;}',3,1,'2023-09-11 09:46:18','2023-09-11 09:46:18',0,NULL,10),(738,'wc_schedule_update_product_default_cat','complete','2023-09-11 09:45:25','2023-09-11 09:45:25','[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1694425525;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1694425525;}',3,1,'2023-09-11 09:46:18','2023-09-11 09:46:18',0,NULL,10),(739,'wc_schedule_update_product_default_cat','complete','2023-09-11 09:45:25','2023-09-11 09:45:25','[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1694425525;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1694425525;}',3,1,'2023-09-11 09:46:18','2023-09-11 09:46:18',0,NULL,10),(740,'wc_schedule_update_product_default_cat','complete','2023-09-11 09:45:25','2023-09-11 09:45:25','[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1694425525;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1694425525;}',3,1,'2023-09-11 09:46:18','2023-09-11 09:46:18',0,NULL,10),(741,'wc_schedule_update_product_default_cat','complete','2023-09-11 09:45:25','2023-09-11 09:45:25','[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1694425525;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1694425525;}',3,1,'2023-09-11 09:46:18','2023-09-11 09:46:18',0,NULL,10),(742,'wc_schedule_update_product_default_cat','complete','2023-09-11 09:45:25','2023-09-11 09:45:25','[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1694425525;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1694425525;}',3,1,'2023-09-11 09:46:18','2023-09-11 09:46:18',0,NULL,10),(743,'wc_schedule_update_product_default_cat','complete','2023-09-11 09:45:25','2023-09-11 09:45:25','[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1694425525;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1694425525;}',3,1,'2023-09-11 09:46:18','2023-09-11 09:46:18',0,NULL,10),(744,'wc_schedule_update_product_default_cat','complete','2023-09-11 09:45:25','2023-09-11 09:45:25','[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1694425525;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1694425525;}',3,1,'2023-09-11 09:46:18','2023-09-11 09:46:18',0,NULL,10),(745,'wc_schedule_update_product_default_cat','complete','2023-09-11 09:45:25','2023-09-11 09:45:25','[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1694425525;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1694425525;}',3,1,'2023-09-11 09:46:18','2023-09-11 09:46:18',0,NULL,10),(746,'wc_schedule_update_product_default_cat','complete','2023-09-11 09:45:25','2023-09-11 09:45:25','[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1694425525;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1694425525;}',3,1,'2023-09-11 09:46:18','2023-09-11 09:46:18',0,NULL,10),(747,'wc_schedule_update_product_default_cat','complete','2023-09-11 09:45:25','2023-09-11 09:45:25','[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1694425525;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1694425525;}',3,1,'2023-09-11 09:46:18','2023-09-11 09:46:18',0,NULL,10),(748,'wc_schedule_update_product_default_cat','complete','2023-09-11 09:45:25','2023-09-11 09:45:25','[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1694425525;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1694425525;}',3,1,'2023-09-11 09:46:18','2023-09-11 09:46:18',0,NULL,10),(749,'wc_schedule_update_product_default_cat','complete','2023-09-11 09:45:25','2023-09-11 09:45:25','[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1694425525;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1694425525;}',3,1,'2023-09-11 09:46:18','2023-09-11 09:46:18',0,NULL,10),(750,'wc_schedule_update_product_default_cat','complete','2023-09-11 09:45:25','2023-09-11 09:45:25','[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1694425525;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1694425525;}',3,1,'2023-09-11 09:46:19','2023-09-11 09:46:19',0,NULL,10),(751,'wc_schedule_update_product_default_cat','complete','2023-09-11 09:45:25','2023-09-11 09:45:25','[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1694425525;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1694425525;}',3,1,'2023-09-11 09:46:19','2023-09-11 09:46:19',0,NULL,10),(752,'wc_schedule_update_product_default_cat','complete','2023-09-11 09:45:25','2023-09-11 09:45:25','[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1694425525;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1694425525;}',3,1,'2023-09-11 09:46:19','2023-09-11 09:46:19',0,NULL,10),(753,'wc_schedule_update_product_default_cat','complete','2023-09-11 09:45:25','2023-09-11 09:45:25','[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1694425525;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1694425525;}',3,1,'2023-09-11 09:46:19','2023-09-11 09:46:19',0,NULL,10),(754,'wc_schedule_update_product_default_cat','complete','2023-09-11 09:45:25','2023-09-11 09:45:25','[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1694425525;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1694425525;}',3,1,'2023-09-11 09:46:19','2023-09-11 09:46:19',0,NULL,10),(755,'wc_schedule_update_product_default_cat','complete','2023-09-11 09:45:26','2023-09-11 09:45:26','[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1694425526;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1694425526;}',3,1,'2023-09-11 09:46:19','2023-09-11 09:46:19',0,NULL,10),(756,'wc_schedule_update_product_default_cat','complete','2023-09-11 09:45:26','2023-09-11 09:45:26','[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1694425526;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1694425526;}',3,1,'2023-09-11 09:46:19','2023-09-11 09:46:19',0,NULL,10),(757,'wc_schedule_update_product_default_cat','complete','2023-09-11 09:45:26','2023-09-11 09:45:26','[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1694425526;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1694425526;}',3,1,'2023-09-11 09:46:19','2023-09-11 09:46:19',0,NULL,10),(758,'wc_schedule_update_product_default_cat','complete','2023-09-11 09:45:26','2023-09-11 09:45:26','[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1694425526;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1694425526;}',3,1,'2023-09-11 09:46:19','2023-09-11 09:46:19',0,NULL,10),(759,'wc_schedule_update_product_default_cat','complete','2023-09-11 09:45:26','2023-09-11 09:45:26','[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1694425526;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1694425526;}',3,1,'2023-09-11 09:46:19','2023-09-11 09:46:19',0,NULL,10),(760,'wc_schedule_update_product_default_cat','complete','2023-09-11 09:45:26','2023-09-11 09:45:26','[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1694425526;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1694425526;}',3,1,'2023-09-11 09:46:19','2023-09-11 09:46:19',0,NULL,10),(761,'wc_schedule_update_product_default_cat','complete','2023-09-11 09:45:26','2023-09-11 09:45:26','[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1694425526;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1694425526;}',3,1,'2023-09-11 09:46:19','2023-09-11 09:46:19',0,NULL,10),(762,'wc_schedule_update_product_default_cat','complete','2023-09-11 09:45:26','2023-09-11 09:45:26','[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1694425526;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1694425526;}',3,1,'2023-09-11 09:46:19','2023-09-11 09:46:19',0,NULL,10),(763,'wc_schedule_update_product_default_cat','complete','2023-09-11 09:45:26','2023-09-11 09:45:26','[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1694425526;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1694425526;}',3,1,'2023-09-11 09:46:19','2023-09-11 09:46:19',0,NULL,10),(764,'wc_schedule_update_product_default_cat','complete','2023-09-11 09:45:26','2023-09-11 09:45:26','[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1694425526;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1694425526;}',3,1,'2023-09-11 09:46:19','2023-09-11 09:46:19',0,NULL,10),(765,'wc_schedule_update_product_default_cat','complete','2023-09-11 09:45:26','2023-09-11 09:45:26','[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1694425526;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1694425526;}',3,1,'2023-09-11 09:46:19','2023-09-11 09:46:19',0,NULL,10),(766,'wc_schedule_update_product_default_cat','complete','2023-09-11 09:45:26','2023-09-11 09:45:26','[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1694425526;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1694425526;}',3,1,'2023-09-11 09:46:19','2023-09-11 09:46:19',0,NULL,10),(767,'wc_schedule_update_product_default_cat','complete','2023-09-11 09:45:26','2023-09-11 09:45:26','[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1694425526;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1694425526;}',3,1,'2023-09-11 09:46:19','2023-09-11 09:46:19',0,NULL,10),(768,'wc_schedule_update_product_default_cat','complete','2023-09-11 09:45:26','2023-09-11 09:45:26','[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1694425526;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1694425526;}',3,1,'2023-09-11 09:46:20','2023-09-11 09:46:20',0,NULL,10),(769,'wc_schedule_update_product_default_cat','complete','2023-09-11 09:45:26','2023-09-11 09:45:26','[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1694425526;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1694425526;}',3,1,'2023-09-11 09:46:20','2023-09-11 09:46:20',0,NULL,10),(770,'wc_schedule_update_product_default_cat','complete','2023-09-11 09:45:26','2023-09-11 09:45:26','[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1694425526;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1694425526;}',3,1,'2023-09-11 09:46:20','2023-09-11 09:46:20',0,NULL,10),(771,'wc_schedule_update_product_default_cat','complete','2023-09-11 09:45:26','2023-09-11 09:45:26','[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1694425526;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1694425526;}',3,1,'2023-09-11 09:46:20','2023-09-11 09:46:20',0,NULL,10),(772,'wc_schedule_update_product_default_cat','complete','2023-09-11 09:45:26','2023-09-11 09:45:26','[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1694425526;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1694425526;}',3,1,'2023-09-11 09:46:20','2023-09-11 09:46:20',0,NULL,10),(773,'wc_schedule_update_product_default_cat','complete','2023-09-11 09:45:26','2023-09-11 09:45:26','[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1694425526;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1694425526;}',3,1,'2023-09-11 09:46:20','2023-09-11 09:46:20',0,NULL,10),(774,'wc_schedule_update_product_default_cat','complete','2023-09-11 09:45:26','2023-09-11 09:45:26','[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1694425526;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1694425526;}',3,1,'2023-09-11 09:46:20','2023-09-11 09:46:20',0,NULL,10),(775,'wc_schedule_update_product_default_cat','complete','2023-09-11 09:45:26','2023-09-11 09:45:26','[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1694425526;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1694425526;}',3,1,'2023-09-11 09:46:20','2023-09-11 09:46:20',0,NULL,10),(776,'wc_schedule_update_product_default_cat','complete','2023-09-11 09:45:26','2023-09-11 09:45:26','[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1694425526;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1694425526;}',3,1,'2023-09-11 09:46:20','2023-09-11 09:46:20',0,NULL,10),(777,'wc_schedule_update_product_default_cat','complete','2023-09-11 09:45:26','2023-09-11 09:45:26','[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1694425526;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1694425526;}',3,1,'2023-09-11 09:46:20','2023-09-11 09:46:20',0,NULL,10),(778,'wc_schedule_update_product_default_cat','complete','2023-09-11 09:45:26','2023-09-11 09:45:26','[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1694425526;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1694425526;}',3,1,'2023-09-11 09:46:20','2023-09-11 09:46:20',0,NULL,10),(779,'wc_schedule_update_product_default_cat','complete','2023-09-11 09:45:27','2023-09-11 09:45:27','[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1694425527;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1694425527;}',3,1,'2023-09-11 09:46:20','2023-09-11 09:46:20',0,NULL,10),(780,'wc_schedule_update_product_default_cat','complete','2023-09-11 09:45:27','2023-09-11 09:45:27','[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1694425527;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1694425527;}',3,1,'2023-09-11 09:46:20','2023-09-11 09:46:20',0,NULL,10),(781,'wc_schedule_update_product_default_cat','complete','2023-09-11 09:45:27','2023-09-11 09:45:27','[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1694425527;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1694425527;}',3,1,'2023-09-11 09:46:20','2023-09-11 09:46:20',0,NULL,10),(782,'wc_schedule_update_product_default_cat','complete','2023-09-11 09:45:27','2023-09-11 09:45:27','[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1694425527;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1694425527;}',3,1,'2023-09-11 09:46:20','2023-09-11 09:46:20',0,NULL,10),(783,'wc_schedule_update_product_default_cat','complete','2023-09-11 09:45:27','2023-09-11 09:45:27','[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1694425527;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1694425527;}',3,1,'2023-09-11 09:46:20','2023-09-11 09:46:20',0,NULL,10),(784,'wc_schedule_update_product_default_cat','complete','2023-09-11 09:45:27','2023-09-11 09:45:27','[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1694425527;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1694425527;}',3,1,'2023-09-11 09:46:20','2023-09-11 09:46:20',0,NULL,10),(785,'wc_schedule_update_product_default_cat','complete','2023-09-11 09:45:27','2023-09-11 09:45:27','[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1694425527;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1694425527;}',3,1,'2023-09-11 09:46:20','2023-09-11 09:46:20',0,NULL,10),(786,'woocommerce_run_product_attribute_lookup_update_callback','complete','2023-09-11 09:46:17','2023-09-11 09:46:17','[3461,3]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1694425577;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1694425577;}',5,1,'2023-09-11 09:46:20','2023-09-11 09:46:20',0,NULL,10),(787,'woocommerce_run_product_attribute_lookup_update_callback','complete','2023-09-11 09:48:32','2023-09-11 09:48:32','[3355,1]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1694425712;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1694425712;}',5,1,'2023-09-11 09:48:51','2023-09-11 09:48:51',0,NULL,10),(788,'woocommerce_run_product_attribute_lookup_update_callback','complete','2023-09-11 09:49:37','2023-09-11 09:49:37','[3355,1]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1694425777;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1694425777;}',5,1,'2023-09-11 09:50:19','2023-09-11 09:50:19',0,NULL,10),(789,'woocommerce_run_product_attribute_lookup_update_callback','complete','2023-09-11 10:06:04','2023-09-11 10:06:04','[3361,1]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1694426764;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1694426764;}',5,1,'2023-09-11 10:06:47','2023-09-11 10:06:47',0,NULL,10),(790,'woocommerce_run_product_attribute_lookup_update_callback','complete','2023-09-11 10:23:45','2023-09-11 10:23:45','[3352,1]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1694427825;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1694427825;}',5,1,'2023-09-11 10:23:56','2023-09-11 10:23:56',0,NULL,10),(791,'woocommerce_run_product_attribute_lookup_update_callback','complete','2023-09-11 10:34:47','2023-09-11 10:34:47','[3362,1]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1694428487;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1694428487;}',5,1,'2023-09-11 10:34:54','2023-09-11 10:34:54',0,NULL,10),(792,'woocommerce_run_product_attribute_lookup_update_callback','complete','2023-09-11 10:44:40','2023-09-11 10:44:40','[3309,1]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1694429080;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1694429080;}',5,1,'2023-09-11 10:44:57','2023-09-11 10:44:57',0,NULL,10),(793,'woocommerce_run_product_attribute_lookup_update_callback','complete','2023-09-11 14:38:33','2023-09-11 14:38:33','[2774,1]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1694443113;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1694443113;}',5,1,'2023-09-11 14:39:02','2023-09-11 14:39:02',0,NULL,10),(794,'woocommerce_run_product_attribute_lookup_update_callback','complete','2023-09-11 14:40:28','2023-09-11 14:40:28','[3316,1]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1694443228;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1694443228;}',5,1,'2023-09-11 14:40:47','2023-09-11 14:40:47',0,NULL,10),(795,'woocommerce_run_product_attribute_lookup_update_callback','complete','2023-09-11 14:40:41','2023-09-11 14:40:41','[2774,1]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1694443241;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1694443241;}',5,1,'2023-09-11 14:40:47','2023-09-11 14:40:47',0,NULL,10),(796,'woocommerce_run_product_attribute_lookup_update_callback','complete','2023-09-11 14:40:50','2023-09-11 14:40:50','[3316,1]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1694443250;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1694443250;}',5,1,'2023-09-11 14:40:56','2023-09-11 14:40:56',0,NULL,10),(797,'woocommerce_run_product_attribute_lookup_update_callback','complete','2023-09-11 14:41:39','2023-09-11 14:41:39','[3316,1]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1694443299;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1694443299;}',5,1,'2023-09-11 14:42:21','2023-09-11 14:42:21',0,NULL,10),(798,'woocommerce_run_product_attribute_lookup_update_callback','complete','2023-09-11 14:45:00','2023-09-11 14:45:00','[3324,1]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1694443500;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1694443500;}',5,1,'2023-09-11 14:45:19','2023-09-11 14:45:19',0,NULL,10),(799,'woocommerce_run_product_attribute_lookup_update_callback','complete','2023-09-11 14:45:35','2023-09-11 14:45:35','[3331,1]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1694443535;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1694443535;}',5,1,'2023-09-11 14:46:19','2023-09-11 14:46:19',0,NULL,10),(800,'woocommerce_run_product_attribute_lookup_update_callback','complete','2023-09-11 14:45:43','2023-09-11 14:45:43','[3324,1]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1694443543;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1694443543;}',5,1,'2023-09-11 14:46:19','2023-09-11 14:46:19',0,NULL,10),(801,'woocommerce_run_product_attribute_lookup_update_callback','complete','2023-09-11 16:48:26','2023-09-11 16:48:26','[3331,1]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1694450906;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1694450906;}',5,1,'2023-09-11 16:49:17','2023-09-11 16:49:17',0,NULL,10),(802,'woocommerce_run_product_attribute_lookup_update_callback','complete','2023-09-11 16:48:31','2023-09-11 16:48:31','[3324,1]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1694450911;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1694450911;}',5,1,'2023-09-11 16:49:45','2023-09-11 16:49:45',0,NULL,10),(803,'woocommerce_run_product_attribute_lookup_update_callback','complete','2023-09-11 16:53:17','2023-09-11 16:53:17','[3366,1]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1694451197;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1694451197;}',5,1,'2023-09-11 16:54:17','2023-09-11 16:54:17',0,NULL,10),(804,'woocommerce_run_product_attribute_lookup_update_callback','complete','2023-09-11 16:55:27','2023-09-11 16:55:27','[3373,1]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1694451327;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1694451327;}',5,1,'2023-09-11 16:56:30','2023-09-11 16:56:30',0,NULL,10),(805,'woocommerce_run_product_attribute_lookup_update_callback','complete','2023-09-11 16:57:30','2023-09-11 16:57:30','[3373,1]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1694451450;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1694451450;}',5,1,'2023-09-11 16:57:43','2023-09-11 16:57:43',0,NULL,10),(806,'woocommerce_run_product_attribute_lookup_update_callback','complete','2023-09-11 16:58:34','2023-09-11 16:58:34','[3370,1]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1694451514;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1694451514;}',5,1,'2023-09-11 16:58:48','2023-09-11 16:58:48',0,NULL,10),(807,'woocommerce_run_product_attribute_lookup_update_callback','complete','2023-09-11 16:59:29','2023-09-11 16:59:29','[3370,1]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1694451569;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1694451569;}',5,1,'2023-09-11 17:00:14','2023-09-11 17:00:14',0,NULL,10),(808,'woocommerce_run_product_attribute_lookup_update_callback','complete','2023-09-11 16:59:34','2023-09-11 16:59:34','[3373,1]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1694451574;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1694451574;}',5,1,'2023-09-11 17:00:14','2023-09-11 17:00:14',0,NULL,10),(809,'woocommerce_run_product_attribute_lookup_update_callback','complete','2023-09-11 17:03:33','2023-09-11 17:03:33','[3432,1]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1694451813;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1694451813;}',5,1,'2023-09-11 17:03:59','2023-09-11 17:03:59',0,NULL,10),(810,'woocommerce_run_product_attribute_lookup_update_callback','complete','2023-09-11 17:04:10','2023-09-11 17:04:10','[3433,1]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1694451850;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1694451850;}',5,1,'2023-09-11 17:04:56','2023-09-11 17:04:56',0,NULL,10),(811,'woocommerce_run_product_attribute_lookup_update_callback','complete','2023-09-11 17:04:48','2023-09-11 17:04:48','[3434,1]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1694451888;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1694451888;}',5,1,'2023-09-11 17:04:56','2023-09-11 17:04:56',0,NULL,10),(812,'woocommerce_run_product_attribute_lookup_update_callback','complete','2023-09-11 17:05:18','2023-09-11 17:05:18','[3435,1]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1694451918;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1694451918;}',5,1,'2023-09-11 17:05:56','2023-09-11 17:05:56',0,NULL,10),(813,'woocommerce_run_product_attribute_lookup_update_callback','complete','2023-09-11 17:06:03','2023-09-11 17:06:03','[3436,1]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1694451963;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1694451963;}',5,1,'2023-09-11 17:06:12','2023-09-11 17:06:12',0,NULL,10),(814,'woocommerce_run_product_attribute_lookup_update_callback','complete','2023-09-11 17:06:52','2023-09-11 17:06:52','[3437,1]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1694452012;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1694452012;}',5,1,'2023-09-11 17:06:58','2023-09-11 17:06:58',0,NULL,10),(815,'woocommerce_run_product_attribute_lookup_update_callback','complete','2023-09-11 17:07:31','2023-09-11 17:07:31','[3438,1]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1694452051;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1694452051;}',5,1,'2023-09-11 17:07:58','2023-09-11 17:07:58',0,NULL,10),(816,'woocommerce_run_product_attribute_lookup_update_callback','complete','2023-09-11 17:08:22','2023-09-11 17:08:22','[3439,1]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1694452102;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1694452102;}',5,1,'2023-09-11 17:08:28','2023-09-11 17:08:28',0,NULL,10),(817,'woocommerce_cleanup_draft_orders','complete','2023-09-13 01:49:28','2023-09-13 01:49:28','[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1694569768;s:18:\"\0*\0first_timestamp\";i:1692414995;s:13:\"\0*\0recurrence\";i:86400;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1694569768;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:86400;}',6,1,'2023-09-13 02:34:56','2023-09-13 02:34:56',0,NULL,10),(818,'woocommerce_run_product_attribute_lookup_update_callback','complete','2023-09-12 02:18:16','2023-09-12 02:18:16','[3441,1]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1694485096;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1694485096;}',5,1,'2023-09-12 02:18:46','2023-09-12 02:18:46',0,NULL,10),(819,'woocommerce_run_product_attribute_lookup_update_callback','complete','2023-09-12 02:25:32','2023-09-12 02:25:32','[3442,1]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1694485532;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1694485532;}',5,1,'2023-09-12 02:26:25','2023-09-12 02:26:25',0,NULL,10),(820,'woocommerce_run_product_attribute_lookup_update_callback','complete','2023-09-12 02:27:51','2023-09-12 02:27:51','[3447,1]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1694485671;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1694485671;}',5,1,'2023-09-12 02:28:37','2023-09-12 02:28:37',0,NULL,10),(821,'woocommerce_run_product_attribute_lookup_update_callback','complete','2023-09-12 02:29:06','2023-09-12 02:29:06','[3450,1]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1694485746;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1694485746;}',5,1,'2023-09-12 02:30:22','2023-09-12 02:30:22',0,NULL,10),(822,'woocommerce_run_product_attribute_lookup_update_callback','complete','2023-09-12 02:30:44','2023-09-12 02:30:44','[3453,1]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1694485844;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1694485844;}',5,1,'2023-09-12 02:31:20','2023-09-12 02:31:20',0,NULL,10),(823,'woocommerce_run_product_attribute_lookup_update_callback','complete','2023-09-12 02:33:19','2023-09-12 02:33:19','[3453,1]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1694485999;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1694485999;}',5,1,'2023-09-12 02:34:18','2023-09-12 02:34:18',0,NULL,10),(824,'woocommerce_run_product_attribute_lookup_update_callback','complete','2023-09-12 02:33:23','2023-09-12 02:33:23','[3547,1]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1694486003;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1694486003;}',5,1,'2023-09-12 02:34:18','2023-09-12 02:34:18',0,NULL,10),(825,'woocommerce_run_product_attribute_lookup_update_callback','complete','2023-09-12 02:35:39','2023-09-12 02:35:39','[3547,1]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1694486139;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1694486139;}',5,1,'2023-09-12 02:36:06','2023-09-12 02:36:06',0,NULL,10),(826,'woocommerce_run_product_attribute_lookup_update_callback','complete','2023-09-12 02:36:06','2023-09-12 02:36:06','[3548,1]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1694486166;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1694486166;}',5,1,'2023-09-12 02:36:06','2023-09-12 02:36:06',0,NULL,10),(827,'woocommerce_run_product_attribute_lookup_update_callback','complete','2023-09-12 02:37:43','2023-09-12 02:37:43','[3548,1]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1694486263;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1694486263;}',5,1,'2023-09-12 02:38:14','2023-09-12 02:38:14',0,NULL,10),(828,'woocommerce_run_product_attribute_lookup_update_callback','complete','2023-09-12 02:38:40','2023-09-12 02:38:40','[3549,1]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1694486320;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1694486320;}',5,1,'2023-09-12 02:39:03','2023-09-12 02:39:03',0,NULL,10),(829,'woocommerce_run_product_attribute_lookup_update_callback','complete','2023-09-12 02:41:43','2023-09-12 02:41:43','[3549,1]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1694486503;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1694486503;}',5,1,'2023-09-12 02:42:05','2023-09-12 02:42:05',0,NULL,10),(830,'woocommerce_run_product_attribute_lookup_update_callback','complete','2023-09-12 02:42:16','2023-09-12 02:42:16','[3549,1]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1694486536;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1694486536;}',5,1,'2023-09-12 02:43:34','2023-09-12 02:43:34',0,NULL,10),(831,'woocommerce_run_product_attribute_lookup_update_callback','complete','2023-09-12 02:46:07','2023-09-12 02:46:07','[3550,1]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1694486767;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1694486767;}',5,1,'2023-09-12 02:46:38','2023-09-12 02:46:38',0,NULL,10),(832,'woocommerce_run_product_attribute_lookup_update_callback','complete','2023-09-12 02:52:12','2023-09-12 02:52:12','[3550,1]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1694487132;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1694487132;}',5,1,'2023-09-12 02:52:58','2023-09-12 02:52:58',0,NULL,10),(833,'woocommerce_run_product_attribute_lookup_update_callback','complete','2023-09-12 03:04:06','2023-09-12 03:04:06','[3551,1]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1694487846;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1694487846;}',5,1,'2023-09-12 03:04:41','2023-09-12 03:04:41',0,NULL,10),(834,'woocommerce_run_product_attribute_lookup_update_callback','complete','2023-09-12 03:10:27','2023-09-12 03:10:27','[3551,1]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1694488227;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1694488227;}',5,1,'2023-09-12 03:12:16','2023-09-12 03:12:16',0,NULL,10),(835,'woocommerce_run_product_attribute_lookup_update_callback','complete','2023-09-12 03:12:28','2023-09-12 03:12:28','[3551,1]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1694488348;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1694488348;}',5,1,'2023-09-12 03:13:41','2023-09-12 03:13:41',0,NULL,10),(836,'woocommerce_run_product_attribute_lookup_update_callback','complete','2023-09-12 03:15:35','2023-09-12 03:15:35','[3552,1]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1694488535;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1694488535;}',5,1,'2023-09-12 03:16:01','2023-09-12 03:16:01',0,NULL,10),(837,'woocommerce_run_product_attribute_lookup_update_callback','complete','2023-09-12 03:17:43','2023-09-12 03:17:43','[3552,1]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1694488663;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1694488663;}',5,1,'2023-09-12 03:18:15','2023-09-12 03:18:15',0,NULL,10),(838,'woocommerce_run_product_attribute_lookup_update_callback','complete','2023-09-12 03:20:27','2023-09-12 03:20:27','[3365,1]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1694488827;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1694488827;}',5,1,'2023-09-12 03:20:34','2023-09-12 03:20:34',0,NULL,10),(839,'woocommerce_run_product_attribute_lookup_update_callback','complete','2023-09-12 04:16:57','2023-09-12 04:16:57','[3553,1]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1694492217;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1694492217;}',5,1,'2023-09-12 04:19:10','2023-09-12 04:19:10',0,NULL,10),(840,'woocommerce_run_product_attribute_lookup_update_callback','complete','2023-09-12 04:36:40','2023-09-12 04:36:40','[3553,1]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1694493400;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1694493400;}',5,1,'2023-09-12 04:37:01','2023-09-12 04:37:01',0,NULL,10),(841,'woocommerce_run_product_attribute_lookup_update_callback','complete','2023-09-12 04:38:19','2023-09-12 04:38:19','[3554,1]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1694493499;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1694493499;}',5,1,'2023-09-12 04:39:26','2023-09-12 04:39:26',0,NULL,10),(842,'woocommerce_run_product_attribute_lookup_update_callback','complete','2023-09-12 04:39:50','2023-09-12 04:39:50','[3554,1]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1694493590;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1694493590;}',5,1,'2023-09-12 04:40:18','2023-09-12 04:40:18',0,NULL,10),(843,'woocommerce_run_product_attribute_lookup_update_callback','complete','2023-09-12 04:41:51','2023-09-12 04:41:51','[3554,1]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1694493711;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1694493711;}',5,1,'2023-09-12 04:42:21','2023-09-12 04:42:21',0,NULL,10),(844,'woocommerce_run_product_attribute_lookup_update_callback','complete','2023-09-12 04:44:48','2023-09-12 04:44:48','[3554,1]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1694493888;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1694493888;}',5,1,'2023-09-12 04:45:16','2023-09-12 04:45:16',0,NULL,10),(845,'woocommerce_run_product_attribute_lookup_update_callback','complete','2023-09-12 04:48:46','2023-09-12 04:48:46','[3553,1]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1694494126;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1694494126;}',5,1,'2023-09-12 04:49:12','2023-09-12 04:49:12',0,NULL,10),(846,'woocommerce_run_product_attribute_lookup_update_callback','complete','2023-09-12 04:49:49','2023-09-12 04:49:49','[3554,1]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1694494189;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1694494189;}',5,1,'2023-09-12 04:50:21','2023-09-12 04:50:21',0,NULL,10),(847,'woocommerce_run_product_attribute_lookup_update_callback','complete','2023-09-12 04:51:34','2023-09-12 04:51:34','[3554,1]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1694494294;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1694494294;}',5,1,'2023-09-12 04:52:06','2023-09-12 04:52:06',0,NULL,10),(849,'woocommerce_run_product_attribute_lookup_update_callback','complete','2023-09-12 07:19:09','2023-09-12 07:19:09','[3556,1]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1694503149;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1694503149;}',5,1,'2023-09-12 07:20:15','2023-09-12 07:20:15',0,NULL,10),(850,'woocommerce_run_product_attribute_lookup_update_callback','complete','2023-09-12 07:20:40','2023-09-12 07:20:40','[3557,1]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1694503240;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1694503240;}',5,1,'2023-09-12 07:21:06','2023-09-12 07:21:06',0,NULL,10),(851,'woocommerce_run_product_attribute_lookup_update_callback','complete','2023-09-12 07:23:08','2023-09-12 07:23:08','[3557,1]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1694503388;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1694503388;}',5,1,'2023-09-12 07:24:25','2023-09-12 07:24:25',0,NULL,10),(858,'woocommerce_run_product_attribute_lookup_update_callback','complete','2023-09-13 04:53:32','2023-09-13 04:53:32','[3589,1]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1694580812;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1694580812;}',5,1,'2023-09-13 04:54:03','2023-09-13 04:54:03',0,NULL,10),(859,'woocommerce_run_product_attribute_lookup_update_callback','complete','2023-09-13 04:55:04','2023-09-13 04:55:04','[3589,1]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1694580904;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1694580904;}',5,1,'2023-09-13 04:55:04','2023-09-13 04:55:04',0,NULL,10),(860,'woocommerce_run_product_attribute_lookup_update_callback','complete','2023-09-13 04:59:57','2023-09-13 04:59:57','[3591,1]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1694581197;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1694581197;}',5,1,'2023-09-13 04:59:57','2023-09-13 04:59:57',0,NULL,10),(861,'woocommerce_run_product_attribute_lookup_update_callback','complete','2023-09-13 05:00:42','2023-09-13 05:00:42','[3591,1]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1694581242;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1694581242;}',5,1,'2023-09-13 05:01:13','2023-09-13 05:01:13',0,NULL,10),(862,'woocommerce_run_product_attribute_lookup_update_callback','complete','2023-09-13 05:02:39','2023-09-13 05:02:39','[3592,1]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1694581359;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1694581359;}',5,1,'2023-09-13 05:02:46','2023-09-13 05:02:46',0,NULL,10),(863,'woocommerce_run_product_attribute_lookup_update_callback','complete','2023-09-13 05:03:28','2023-09-13 05:03:28','[3592,1]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1694581408;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1694581408;}',5,1,'2023-09-13 05:03:58','2023-09-13 05:03:58',0,NULL,10),(864,'woocommerce_run_product_attribute_lookup_update_callback','complete','2023-09-13 05:04:00','2023-09-13 05:04:00','[3593,1]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1694581440;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1694581440;}',5,1,'2023-09-13 05:04:00','2023-09-13 05:04:00',0,NULL,10),(865,'woocommerce_run_product_attribute_lookup_update_callback','complete','2023-09-13 05:10:20','2023-09-13 05:10:20','[3593,1]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1694581820;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1694581820;}',5,1,'2023-09-13 05:10:47','2023-09-13 05:10:47',0,NULL,10),(866,'woocommerce_run_product_attribute_lookup_update_callback','complete','2023-09-13 05:11:16','2023-09-13 05:11:16','[3594,1]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1694581876;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1694581876;}',5,1,'2023-09-13 05:12:26','2023-09-13 05:12:26',0,NULL,10),(867,'woocommerce_run_product_attribute_lookup_update_callback','complete','2023-09-13 05:13:10','2023-09-13 05:13:10','[3594,1]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1694581990;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1694581990;}',5,1,'2023-09-13 05:13:36','2023-09-13 05:13:36',0,NULL,10),(868,'woocommerce_run_product_attribute_lookup_update_callback','complete','2023-09-13 05:24:45','2023-09-13 05:24:45','[3594,1]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1694582685;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1694582685;}',5,1,'2023-09-13 05:25:20','2023-09-13 05:25:20',0,NULL,10),(869,'woocommerce_run_product_attribute_lookup_update_callback','complete','2023-09-13 05:25:20','2023-09-13 05:25:20','[3595,1]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1694582720;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1694582720;}',5,1,'2023-09-13 05:25:21','2023-09-13 05:25:21',0,NULL,10),(870,'woocommerce_run_product_attribute_lookup_update_callback','complete','2023-09-13 05:27:24','2023-09-13 05:27:24','[3595,1]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1694582844;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1694582844;}',5,1,'2023-09-13 05:27:52','2023-09-13 05:27:52',0,NULL,10),(871,'woocommerce_run_product_attribute_lookup_update_callback','complete','2023-09-13 05:29:38','2023-09-13 05:29:38','[3596,1]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1694582978;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1694582978;}',5,1,'2023-09-13 05:30:07','2023-09-13 05:30:07',0,NULL,10),(872,'woocommerce_run_product_attribute_lookup_update_callback','complete','2023-09-13 05:32:01','2023-09-13 05:32:01','[3596,1]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1694583121;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1694583121;}',5,1,'2023-09-13 05:32:05','2023-09-13 05:32:05',0,NULL,10),(873,'woocommerce_run_product_attribute_lookup_update_callback','complete','2023-09-13 05:32:38','2023-09-13 05:32:38','[3597,1]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1694583158;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1694583158;}',5,1,'2023-09-13 05:33:09','2023-09-13 05:33:09',0,NULL,10),(874,'woocommerce_run_product_attribute_lookup_update_callback','complete','2023-09-13 05:35:13','2023-09-13 05:35:13','[3597,1]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1694583313;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1694583313;}',5,1,'2023-09-13 05:35:14','2023-09-13 05:35:14',0,NULL,10),(875,'woocommerce_run_product_attribute_lookup_update_callback','complete','2023-09-13 05:37:46','2023-09-13 05:37:46','[3598,1]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1694583466;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1694583466;}',5,1,'2023-09-13 05:38:13','2023-09-13 05:38:13',0,NULL,10),(876,'woocommerce_run_product_attribute_lookup_update_callback','complete','2023-09-13 05:41:51','2023-09-13 05:41:51','[3598,1]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1694583711;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1694583711;}',5,1,'2023-09-13 05:41:57','2023-09-13 05:41:57',0,NULL,10),(877,'woocommerce_run_product_attribute_lookup_update_callback','complete','2023-09-13 05:44:12','2023-09-13 05:44:12','[3598,1]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1694583852;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1694583852;}',5,1,'2023-09-13 05:45:13','2023-09-13 05:45:13',0,NULL,10),(878,'woocommerce_run_product_attribute_lookup_update_callback','complete','2023-09-13 05:47:06','2023-09-13 05:47:06','[3599,1]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1694584026;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1694584026;}',5,1,'2023-09-13 05:47:30','2023-09-13 05:47:30',0,NULL,10),(879,'woocommerce_run_product_attribute_lookup_update_callback','complete','2023-09-13 05:49:59','2023-09-13 05:49:59','[3599,1]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1694584199;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1694584199;}',5,1,'2023-09-13 05:51:01','2023-09-13 05:51:01',0,NULL,10),(880,'woocommerce_run_product_attribute_lookup_update_callback','complete','2023-09-13 05:51:00','2023-09-13 05:51:00','[3600,1]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1694584260;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1694584260;}',5,1,'2023-09-13 05:51:01','2023-09-13 05:51:01',0,NULL,10),(881,'woocommerce_run_product_attribute_lookup_update_callback','complete','2023-09-13 05:53:21','2023-09-13 05:53:21','[3600,1]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1694584401;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1694584401;}',5,1,'2023-09-13 05:53:25','2023-09-13 05:53:25',0,NULL,10),(882,'woocommerce_run_product_attribute_lookup_update_callback','complete','2023-09-13 05:54:14','2023-09-13 05:54:14','[3601,1]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1694584454;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1694584454;}',5,1,'2023-09-13 05:54:43','2023-09-13 05:54:43',0,NULL,10),(883,'woocommerce_run_product_attribute_lookup_update_callback','complete','2023-09-13 05:55:43','2023-09-13 05:55:43','[3601,1]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1694584543;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1694584543;}',5,1,'2023-09-13 05:55:47','2023-09-13 05:55:47',0,NULL,10),(884,'woocommerce_run_product_attribute_lookup_update_callback','complete','2023-09-13 06:05:46','2023-09-13 06:05:46','[3550,1]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1694585146;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1694585146;}',5,1,'2023-09-13 06:06:17','2023-09-13 06:06:17',0,NULL,10),(885,'woocommerce_run_product_attribute_lookup_update_callback','complete','2023-09-13 06:07:16','2023-09-13 06:07:16','[3552,1]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1694585236;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1694585236;}',5,1,'2023-09-13 06:09:10','2023-09-13 06:09:10',0,NULL,10),(886,'woocommerce_run_product_attribute_lookup_update_callback','complete','2023-09-13 06:11:58','2023-09-13 06:11:58','[3602,1]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1694585518;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1694585518;}',5,1,'2023-09-13 06:12:25','2023-09-13 06:12:25',0,NULL,10),(887,'woocommerce_run_product_attribute_lookup_update_callback','complete','2023-09-13 06:20:23','2023-09-13 06:20:23','[3602,1]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1694586023;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1694586023;}',5,1,'2023-09-13 06:21:08','2023-09-13 06:21:08',0,NULL,10),(888,'woocommerce_run_product_attribute_lookup_update_callback','complete','2023-09-13 06:22:12','2023-09-13 06:22:12','[3603,1]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1694586132;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1694586132;}',5,1,'2023-09-13 06:22:13','2023-09-13 06:22:13',0,NULL,10),(889,'woocommerce_run_product_attribute_lookup_update_callback','complete','2023-09-13 06:24:24','2023-09-13 06:24:24','[3603,1]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1694586264;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1694586264;}',5,1,'2023-09-13 06:25:14','2023-09-13 06:25:14',0,NULL,10),(890,'woocommerce_run_product_attribute_lookup_update_callback','complete','2023-09-13 06:43:53','2023-09-13 06:43:53','[3604,1]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1694587433;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1694587433;}',5,1,'2023-09-13 06:43:55','2023-09-13 06:43:55',0,NULL,10),(891,'woocommerce_run_product_attribute_lookup_update_callback','complete','2023-09-13 07:24:43','2023-09-13 07:24:43','[3604,1]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1694589883;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1694589883;}',5,1,'2023-09-13 07:24:47','2023-09-13 07:24:47',0,NULL,10),(892,'woocommerce_run_product_attribute_lookup_update_callback','complete','2023-09-13 07:47:43','2023-09-13 07:47:43','[3605,1]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1694591263;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1694591263;}',5,1,'2023-09-13 07:48:12','2023-09-13 07:48:12',0,NULL,10),(893,'woocommerce_run_product_attribute_lookup_update_callback','complete','2023-09-13 07:49:30','2023-09-13 07:49:30','[3605,1]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1694591370;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1694591370;}',5,1,'2023-09-13 07:49:55','2023-09-13 07:49:55',0,NULL,10),(894,'woocommerce_run_product_attribute_lookup_update_callback','complete','2023-09-13 08:12:34','2023-09-13 08:12:34','[3607,1]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1694592754;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1694592754;}',5,1,'2023-09-13 08:13:00','2023-09-13 08:13:00',0,NULL,10),(895,'woocommerce_run_product_attribute_lookup_update_callback','complete','2023-09-13 08:57:23','2023-09-13 08:57:23','[3607,1]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1694595443;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1694595443;}',5,1,'2023-09-13 08:58:06','2023-09-13 08:58:06',0,NULL,10),(896,'woocommerce_run_product_attribute_lookup_update_callback','complete','2023-09-13 08:58:17','2023-09-13 08:58:17','[3608,1]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1694595497;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1694595497;}',5,1,'2023-09-13 09:00:04','2023-09-13 09:00:04',0,NULL,10),(897,'woocommerce_run_product_attribute_lookup_update_callback','complete','2023-09-13 09:13:49','2023-09-13 09:13:49','[3608,1]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1694596429;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1694596429;}',5,1,'2023-09-13 09:14:24','2023-09-13 09:14:24',0,NULL,10),(898,'woocommerce_run_product_attribute_lookup_update_callback','complete','2023-09-13 09:36:44','2023-09-13 09:36:44','[3609,1]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1694597804;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1694597804;}',5,1,'2023-09-13 09:37:18','2023-09-13 09:37:18',0,NULL,10),(899,'woocommerce_run_product_attribute_lookup_update_callback','complete','2023-09-13 09:40:40','2023-09-13 09:40:40','[3609,1]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1694598040;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1694598040;}',5,1,'2023-09-13 09:41:16','2023-09-13 09:41:16',0,NULL,10),(900,'woocommerce_run_product_attribute_lookup_update_callback','complete','2023-09-13 10:34:25','2023-09-13 10:34:25','[3611,1]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1694601265;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1694601265;}',5,1,'2023-09-13 10:34:30','2023-09-13 10:34:30',0,NULL,10),(901,'woocommerce_run_product_attribute_lookup_update_callback','complete','2023-09-13 10:38:03','2023-09-13 10:38:03','[3611,1]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1694601483;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1694601483;}',5,1,'2023-09-13 10:38:36','2023-09-13 10:38:36',0,NULL,10),(902,'woocommerce_run_product_attribute_lookup_update_callback','complete','2023-09-13 10:40:19','2023-09-13 10:40:19','[3612,1]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1694601619;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1694601619;}',5,1,'2023-09-13 10:40:47','2023-09-13 10:40:47',0,NULL,10),(903,'woocommerce_run_product_attribute_lookup_update_callback','complete','2023-09-13 10:44:11','2023-09-13 10:44:11','[3612,1]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1694601851;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1694601851;}',5,1,'2023-09-13 10:44:39','2023-09-13 10:44:39',0,NULL,10),(904,'woocommerce_run_product_attribute_lookup_update_callback','complete','2023-09-13 10:45:53','2023-09-13 10:45:53','[3612,1]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1694601953;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1694601953;}',5,1,'2023-09-13 10:46:17','2023-09-13 10:46:17',0,NULL,10),(905,'woocommerce_run_product_attribute_lookup_update_callback','complete','2023-09-13 10:47:29','2023-09-13 10:47:29','[3612,1]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1694602049;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1694602049;}',5,1,'2023-09-13 10:48:10','2023-09-13 10:48:10',0,NULL,10),(906,'woocommerce_run_product_attribute_lookup_update_callback','complete','2023-09-13 11:22:24','2023-09-13 11:22:24','[3614,1]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1694604144;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1694604144;}',5,1,'2023-09-13 11:22:55','2023-09-13 11:22:55',0,NULL,10),(907,'woocommerce_run_product_attribute_lookup_update_callback','complete','2023-09-13 11:25:16','2023-09-13 11:25:16','[3614,1]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1694604316;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1694604316;}',5,1,'2023-09-13 11:25:17','2023-09-13 11:25:17',0,NULL,10),(908,'woocommerce_run_product_attribute_lookup_update_callback','complete','2023-09-13 13:33:07','2023-09-13 13:33:07','[3615,1]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1694611987;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1694611987;}',5,1,'2023-09-13 13:33:33','2023-09-13 13:33:33',0,NULL,10),(909,'woocommerce_run_product_attribute_lookup_update_callback','complete','2023-09-13 13:46:18','2023-09-13 13:46:18','[3615,1]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1694612778;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1694612778;}',5,1,'2023-09-13 13:46:52','2023-09-13 13:46:52',0,NULL,10),(910,'woocommerce_run_product_attribute_lookup_update_callback','complete','2023-09-13 13:51:04','2023-09-13 13:51:04','[3616,1]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1694613064;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1694613064;}',5,1,'2023-09-13 13:52:45','2023-09-13 13:52:45',0,NULL,10),(911,'woocommerce_run_product_attribute_lookup_update_callback','complete','2023-09-13 14:00:15','2023-09-13 14:00:15','[3616,1]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1694613615;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1694613615;}',5,1,'2023-09-13 14:00:26','2023-09-13 14:00:26',0,NULL,10),(912,'woocommerce_run_product_attribute_lookup_update_callback','complete','2023-09-13 15:36:39','2023-09-13 15:36:39','[3617,1]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1694619399;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1694619399;}',5,1,'2023-09-13 15:37:07','2023-09-13 15:37:07',0,NULL,10),(913,'woocommerce_run_product_attribute_lookup_update_callback','complete','2023-09-13 15:40:30','2023-09-13 15:40:30','[3617,1]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1694619630;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1694619630;}',5,1,'2023-09-13 15:40:30','2023-09-13 15:40:30',0,NULL,10),(914,'woocommerce_run_product_attribute_lookup_update_callback','complete','2023-09-13 15:42:09','2023-09-13 15:42:09','[3618,1]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1694619729;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1694619729;}',5,1,'2023-09-13 15:42:38','2023-09-13 15:42:38',0,NULL,10),(915,'woocommerce_run_product_attribute_lookup_update_callback','complete','2023-09-13 15:44:32','2023-09-13 15:44:32','[3618,1]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1694619872;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1694619872;}',5,1,'2023-09-13 15:45:02','2023-09-13 15:45:02',0,NULL,10),(916,'woocommerce_run_product_attribute_lookup_update_callback','complete','2023-09-13 15:47:45','2023-09-13 15:47:45','[3619,1]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1694620065;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1694620065;}',5,1,'2023-09-13 15:48:12','2023-09-13 15:48:12',0,NULL,10),(917,'woocommerce_run_product_attribute_lookup_update_callback','complete','2023-09-13 15:52:15','2023-09-13 15:52:15','[3619,1]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1694620335;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1694620335;}',5,1,'2023-09-13 15:52:15','2023-09-13 15:52:15',0,NULL,10),(918,'woocommerce_run_product_attribute_lookup_update_callback','complete','2023-09-13 15:53:15','2023-09-13 15:53:15','[3620,1]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1694620395;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1694620395;}',5,1,'2023-09-13 15:53:15','2023-09-13 15:53:15',0,NULL,10),(919,'woocommerce_run_product_attribute_lookup_update_callback','complete','2023-09-13 16:17:58','2023-09-13 16:17:58','[3620,1]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1694621878;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1694621878;}',5,1,'2023-09-13 16:17:59','2023-09-13 16:17:59',0,NULL,10),(920,'woocommerce_run_product_attribute_lookup_update_callback','complete','2023-09-13 18:47:28','2023-09-13 18:47:28','[3621,1]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1694630848;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1694630848;}',5,1,'2023-09-13 18:48:36','2023-09-13 18:48:36',0,NULL,10),(921,'woocommerce_run_product_attribute_lookup_update_callback','complete','2023-09-13 18:51:02','2023-09-13 18:51:02','[3621,1]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1694631062;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1694631062;}',5,1,'2023-09-13 18:51:45','2023-09-13 18:51:45',0,NULL,10),(922,'woocommerce_run_product_attribute_lookup_update_callback','complete','2023-09-13 18:52:01','2023-09-13 18:52:01','[3622,1]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1694631121;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1694631121;}',5,1,'2023-09-13 18:52:01','2023-09-13 18:52:01',0,NULL,10),(923,'woocommerce_run_product_attribute_lookup_update_callback','complete','2023-09-13 19:02:38','2023-09-13 19:02:38','[3622,1]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1694631758;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1694631758;}',5,1,'2023-09-13 19:03:05','2023-09-13 19:03:05',0,NULL,10),(924,'woocommerce_cleanup_draft_orders','complete','2023-09-15 03:08:08','2023-09-15 03:08:08','[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1694747288;s:18:\"\0*\0first_timestamp\";i:1692414995;s:13:\"\0*\0recurrence\";i:86400;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1694747288;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:86400;}',6,1,'2023-09-15 03:10:08','2023-09-15 03:10:08',0,NULL,10),(926,'woocommerce_run_product_attribute_lookup_update_callback','complete','2023-09-14 03:59:52','2023-09-14 03:59:52','[3623,1]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1694663992;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1694663992;}',5,1,'2023-09-14 04:00:19','2023-09-14 04:00:19',0,NULL,10),(927,'woocommerce_run_product_attribute_lookup_update_callback','complete','2023-09-14 04:04:03','2023-09-14 04:04:03','[3624,1]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1694664243;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1694664243;}',5,1,'2023-09-14 04:05:13','2023-09-14 04:05:13',0,NULL,10),(928,'woocommerce_run_product_attribute_lookup_update_callback','complete','2023-09-14 04:06:50','2023-09-14 04:06:50','[3624,1]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1694664410;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1694664410;}',5,1,'2023-09-14 04:07:21','2023-09-14 04:07:21',0,NULL,10),(929,'woocommerce_run_product_attribute_lookup_update_callback','complete','2023-09-14 04:08:04','2023-09-14 04:08:04','[3625,1]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1694664484;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1694664484;}',5,1,'2023-09-14 04:08:34','2023-09-14 04:08:34',0,NULL,10),(930,'woocommerce_run_product_attribute_lookup_update_callback','complete','2023-09-14 04:14:22','2023-09-14 04:14:22','[3625,1]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1694664862;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1694664862;}',5,1,'2023-09-14 04:14:51','2023-09-14 04:14:51',0,NULL,10),(931,'woocommerce_run_product_attribute_lookup_update_callback','complete','2023-09-14 04:58:21','2023-09-14 04:58:21','[3626,1]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1694667501;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1694667501;}',5,1,'2023-09-14 05:00:13','2023-09-14 05:00:13',0,NULL,10),(932,'woocommerce_run_product_attribute_lookup_update_callback','complete','2023-09-14 05:55:07','2023-09-14 05:55:07','[3626,1]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1694670907;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1694670907;}',5,1,'2023-09-14 05:55:07','2023-09-14 05:55:07',0,NULL,10),(933,'woocommerce_run_product_attribute_lookup_update_callback','complete','2023-09-14 05:55:51','2023-09-14 05:55:51','[3627,1]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1694670951;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1694670951;}',5,1,'2023-09-14 05:56:13','2023-09-14 05:56:13',0,NULL,10),(934,'woocommerce_run_product_attribute_lookup_update_callback','complete','2023-09-14 05:58:07','2023-09-14 05:58:07','[3627,1]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1694671087;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1694671087;}',5,1,'2023-09-14 05:59:19','2023-09-14 05:59:19',0,NULL,10),(935,'woocommerce_run_product_attribute_lookup_update_callback','complete','2023-09-14 05:59:54','2023-09-14 05:59:54','[3628,1]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1694671194;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1694671194;}',5,1,'2023-09-14 05:59:56','2023-09-14 05:59:56',0,NULL,10),(936,'woocommerce_run_product_attribute_lookup_update_callback','complete','2023-09-14 06:01:33','2023-09-14 06:01:33','[3627,1]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1694671293;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1694671293;}',5,1,'2023-09-14 06:01:57','2023-09-14 06:01:57',0,NULL,10),(937,'woocommerce_run_product_attribute_lookup_update_callback','complete','2023-09-14 06:03:09','2023-09-14 06:03:09','[3628,1]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1694671389;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1694671389;}',5,1,'2023-09-14 06:05:10','2023-09-14 06:05:10',0,NULL,10),(938,'woocommerce_run_product_attribute_lookup_update_callback','complete','2023-09-14 06:08:16','2023-09-14 06:08:16','[3629,1]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1694671696;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1694671696;}',5,1,'2023-09-14 06:08:18','2023-09-14 06:08:18',0,NULL,10),(939,'woocommerce_run_product_attribute_lookup_update_callback','complete','2023-09-14 06:10:28','2023-09-14 06:10:28','[3629,1]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1694671828;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1694671828;}',5,1,'2023-09-14 06:10:30','2023-09-14 06:10:30',0,NULL,10),(940,'woocommerce_run_product_attribute_lookup_update_callback','complete','2023-09-14 06:14:12','2023-09-14 06:14:12','[3630,1]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1694672052;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1694672052;}',5,1,'2023-09-14 06:15:22','2023-09-14 06:15:22',0,NULL,10),(941,'woocommerce_run_product_attribute_lookup_update_callback','complete','2023-09-14 06:17:44','2023-09-14 06:17:44','[3630,1]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1694672264;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1694672264;}',5,1,'2023-09-14 06:18:36','2023-09-14 06:18:36',0,NULL,10),(942,'woocommerce_run_product_attribute_lookup_update_callback','complete','2023-09-14 06:20:36','2023-09-14 06:20:36','[3631,1]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1694672436;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1694672436;}',5,1,'2023-09-14 06:21:00','2023-09-14 06:21:00',0,NULL,10),(943,'woocommerce_run_product_attribute_lookup_update_callback','complete','2023-09-14 06:25:01','2023-09-14 06:25:01','[3631,1]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1694672701;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1694672701;}',5,1,'2023-09-14 06:25:02','2023-09-14 06:25:02',0,NULL,10),(944,'woocommerce_run_product_attribute_lookup_update_callback','complete','2023-09-14 06:26:42','2023-09-14 06:26:42','[3630,1]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1694672802;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1694672802;}',5,1,'2023-09-14 06:27:11','2023-09-14 06:27:11',0,NULL,10),(945,'woocommerce_run_product_attribute_lookup_update_callback','complete','2023-09-14 06:27:12','2023-09-14 06:27:12','[3632,1]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1694672832;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1694672832;}',5,1,'2023-09-14 06:28:27','2023-09-14 06:28:27',0,NULL,10),(946,'woocommerce_run_product_attribute_lookup_update_callback','complete','2023-09-14 06:31:21','2023-09-14 06:31:21','[3632,1]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1694673081;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1694673081;}',5,1,'2023-09-14 06:32:00','2023-09-14 06:32:00',0,NULL,10),(947,'woocommerce_run_product_attribute_lookup_update_callback','complete','2023-09-14 06:31:54','2023-09-14 06:31:54','[3633,1]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1694673114;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1694673114;}',5,1,'2023-09-14 06:32:00','2023-09-14 06:32:00',0,NULL,10),(948,'woocommerce_run_product_attribute_lookup_update_callback','complete','2023-09-14 06:33:34','2023-09-14 06:33:34','[3633,1]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1694673214;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1694673214;}',5,1,'2023-09-14 06:34:11','2023-09-14 06:34:11',0,NULL,10),(949,'woocommerce_run_product_attribute_lookup_update_callback','complete','2023-09-14 06:59:43','2023-09-14 06:59:43','[3634,1]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1694674783;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1694674783;}',5,1,'2023-09-14 07:00:12','2023-09-14 07:00:12',0,NULL,10),(950,'woocommerce_run_product_attribute_lookup_update_callback','complete','2023-09-14 07:02:03','2023-09-14 07:02:03','[3634,1]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1694674923;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1694674923;}',5,1,'2023-09-14 07:03:00','2023-09-14 07:03:00',0,NULL,10),(951,'woocommerce_run_product_attribute_lookup_update_callback','complete','2023-09-14 07:03:00','2023-09-14 07:03:00','[3635,1]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1694674980;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1694674980;}',5,1,'2023-09-14 07:03:00','2023-09-14 07:03:00',0,NULL,10),(953,'woocommerce_run_product_attribute_lookup_update_callback','complete','2023-09-14 07:10:27','2023-09-14 07:10:27','[3635,1]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1694675427;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1694675427;}',5,1,'2023-09-14 07:11:00','2023-09-14 07:11:00',0,NULL,10),(954,'woocommerce_run_product_attribute_lookup_update_callback','complete','2023-09-14 07:11:29','2023-09-14 07:11:29','[3636,1]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1694675489;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1694675489;}',5,1,'2023-09-14 07:12:38','2023-09-14 07:12:38',0,NULL,10),(955,'woocommerce_run_product_attribute_lookup_update_callback','complete','2023-09-14 07:17:30','2023-09-14 07:17:30','[3636,1]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1694675850;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1694675850;}',5,1,'2023-09-14 07:17:30','2023-09-14 07:17:30',0,NULL,10),(956,'woocommerce_run_product_attribute_lookup_update_callback','complete','2023-09-14 07:19:40','2023-09-14 07:19:40','[3637,1]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1694675980;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1694675980;}',5,1,'2023-09-14 07:20:04','2023-09-14 07:20:04',0,NULL,10),(958,'woocommerce_run_product_attribute_lookup_update_callback','complete','2023-09-14 07:23:49','2023-09-14 07:23:49','[3638,1]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1694676229;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1694676229;}',5,1,'2023-09-14 07:23:53','2023-09-14 07:23:53',0,NULL,10),(961,'woocommerce_run_product_attribute_lookup_update_callback','complete','2023-09-14 07:40:52','2023-09-14 07:40:52','[3639,1]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1694677252;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1694677252;}',5,1,'2023-09-14 07:41:00','2023-09-14 07:41:00',0,NULL,10),(965,'woocommerce_run_product_attribute_lookup_update_callback','complete','2023-09-14 07:48:46','2023-09-14 07:48:46','[3640,1]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1694677726;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1694677726;}',5,1,'2023-09-14 07:49:52','2023-09-14 07:49:52',0,NULL,10),(968,'woocommerce_run_product_attribute_lookup_update_callback','complete','2023-09-14 08:01:31','2023-09-14 08:01:31','[3643,1]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1694678491;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1694678491;}',5,1,'2023-09-14 08:02:00','2023-09-14 08:02:00',0,NULL,10),(969,'woocommerce_run_product_attribute_lookup_update_callback','complete','2023-09-14 08:42:11','2023-09-14 08:42:11','[3643,1]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1694680931;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1694680931;}',5,1,'2023-09-14 08:42:15','2023-09-14 08:42:15',0,NULL,10),(970,'woocommerce_run_product_attribute_lookup_update_callback','complete','2023-09-14 08:51:12','2023-09-14 08:51:12','[3644,1]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1694681472;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1694681472;}',5,1,'2023-09-14 08:52:55','2023-09-14 08:52:55',0,NULL,10),(972,'woocommerce_run_product_attribute_lookup_update_callback','complete','2023-09-14 09:16:10','2023-09-14 09:16:10','[3645,1]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1694682970;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1694682970;}',5,1,'2023-09-14 09:16:13','2023-09-14 09:16:13',0,NULL,10),(973,'woocommerce_run_product_attribute_lookup_update_callback','complete','2023-09-14 09:36:17','2023-09-14 09:36:17','[3645,1]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1694684177;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1694684177;}',5,1,'2023-09-14 09:36:19','2023-09-14 09:36:19',0,NULL,10),(974,'woocommerce_run_product_attribute_lookup_update_callback','complete','2023-09-14 09:53:09','2023-09-14 09:53:09','[3646,1]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1694685189;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1694685189;}',5,1,'2023-09-14 09:54:21','2023-09-14 09:54:21',0,NULL,10),(975,'woocommerce_run_product_attribute_lookup_update_callback','complete','2023-09-14 09:57:35','2023-09-14 09:57:35','[3646,1]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1694685455;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1694685455;}',5,1,'2023-09-14 09:58:22','2023-09-14 09:58:22',0,NULL,10),(976,'woocommerce_run_product_attribute_lookup_update_callback','complete','2023-09-14 09:58:18','2023-09-14 09:58:18','[3647,1]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1694685498;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1694685498;}',5,1,'2023-09-14 09:58:22','2023-09-14 09:58:22',0,NULL,10),(977,'woocommerce_run_product_attribute_lookup_update_callback','complete','2023-09-14 10:01:38','2023-09-14 10:01:38','[3647,1]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1694685698;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1694685698;}',5,1,'2023-09-14 10:01:44','2023-09-14 10:01:44',0,NULL,10),(978,'woocommerce_run_product_attribute_lookup_update_callback','complete','2023-09-14 10:02:18','2023-09-14 10:02:18','[3648,1]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1694685738;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1694685738;}',5,1,'2023-09-14 10:02:18','2023-09-14 10:02:18',0,NULL,10),(979,'woocommerce_run_product_attribute_lookup_update_callback','complete','2023-09-14 10:03:42','2023-09-14 10:03:42','[3648,1]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1694685822;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1694685822;}',5,1,'2023-09-14 10:04:12','2023-09-14 10:04:12',0,NULL,10),(980,'woocommerce_run_product_attribute_lookup_update_callback','complete','2023-09-14 10:04:44','2023-09-14 10:04:44','[3649,1]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1694685884;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1694685884;}',5,1,'2023-09-14 10:05:11','2023-09-14 10:05:11',0,NULL,10),(981,'woocommerce_run_product_attribute_lookup_update_callback','complete','2023-09-14 10:08:19','2023-09-14 10:08:19','[3649,1]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1694686099;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1694686099;}',5,1,'2023-09-14 10:09:02','2023-09-14 10:09:02',0,NULL,10),(982,'woocommerce_run_product_attribute_lookup_update_callback','complete','2023-09-14 10:20:45','2023-09-14 10:20:45','[3650,1]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1694686845;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1694686845;}',5,1,'2023-09-14 10:21:30','2023-09-14 10:21:30',0,NULL,10),(983,'woocommerce_run_product_attribute_lookup_update_callback','complete','2023-09-14 10:23:01','2023-09-14 10:23:01','[3650,1]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1694686981;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1694686981;}',5,1,'2023-09-14 10:23:47','2023-09-14 10:23:47',0,NULL,10),(984,'woocommerce_run_product_attribute_lookup_update_callback','complete','2023-09-14 10:25:04','2023-09-14 10:25:04','[3651,1]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1694687104;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1694687104;}',5,1,'2023-09-14 10:26:20','2023-09-14 10:26:20',0,NULL,10),(985,'woocommerce_run_product_attribute_lookup_update_callback','complete','2023-09-14 10:28:05','2023-09-14 10:28:05','[3651,1]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1694687285;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1694687285;}',5,1,'2023-09-14 10:28:07','2023-09-14 10:28:07',0,NULL,10),(986,'woocommerce_run_product_attribute_lookup_update_callback','complete','2023-09-14 10:29:48','2023-09-14 10:29:48','[3652,1]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1694687388;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1694687388;}',5,1,'2023-09-14 10:30:31','2023-09-14 10:30:31',0,NULL,10),(987,'woocommerce_run_product_attribute_lookup_update_callback','complete','2023-09-14 10:33:33','2023-09-14 10:33:33','[3652,1]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1694687613;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1694687613;}',5,1,'2023-09-14 10:34:21','2023-09-14 10:34:21',0,NULL,10),(988,'woocommerce_run_product_attribute_lookup_update_callback','complete','2023-09-14 10:34:47','2023-09-14 10:34:47','[3653,1]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1694687687;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1694687687;}',5,1,'2023-09-14 10:35:13','2023-09-14 10:35:13',0,NULL,10),(989,'woocommerce_run_product_attribute_lookup_update_callback','complete','2023-09-14 10:39:52','2023-09-14 10:39:52','[3653,1]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1694687992;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1694687992;}',5,1,'2023-09-14 10:40:33','2023-09-14 10:40:33',0,NULL,10),(990,'woocommerce_run_product_attribute_lookup_update_callback','complete','2023-09-14 10:42:05','2023-09-14 10:42:05','[3654,1]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1694688125;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1694688125;}',5,1,'2023-09-14 10:43:07','2023-09-14 10:43:07',0,NULL,10),(991,'woocommerce_run_product_attribute_lookup_update_callback','complete','2023-09-14 10:43:24','2023-09-14 10:43:24','[3654,1]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1694688204;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1694688204;}',5,1,'2023-09-14 10:44:21','2023-09-14 10:44:21',0,NULL,10),(992,'woocommerce_run_product_attribute_lookup_update_callback','complete','2023-09-14 10:44:10','2023-09-14 10:44:10','[3655,1]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1694688250;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1694688250;}',5,1,'2023-09-14 10:44:27','2023-09-14 10:44:27',0,NULL,10),(993,'woocommerce_run_product_attribute_lookup_update_callback','complete','2023-09-14 10:49:21','2023-09-14 10:49:21','[3655,1]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1694688561;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1694688561;}',5,1,'2023-09-14 10:49:24','2023-09-14 10:49:24',0,NULL,10),(994,'woocommerce_run_product_attribute_lookup_update_callback','complete','2023-09-14 10:49:54','2023-09-14 10:49:54','[3656,1]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1694688594;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1694688594;}',5,1,'2023-09-14 10:50:08','2023-09-14 10:50:08',0,NULL,10),(995,'woocommerce_run_product_attribute_lookup_update_callback','complete','2023-09-14 10:51:22','2023-09-14 10:51:22','[3656,1]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1694688682;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1694688682;}',5,1,'2023-09-14 10:51:54','2023-09-14 10:51:54',0,NULL,10),(996,'woocommerce_run_product_attribute_lookup_update_callback','complete','2023-09-14 10:53:54','2023-09-14 10:53:54','[3658,1]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1694688834;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1694688834;}',5,1,'2023-09-14 10:53:56','2023-09-14 10:53:56',0,NULL,10),(997,'woocommerce_run_product_attribute_lookup_update_callback','complete','2023-09-14 10:58:47','2023-09-14 10:58:47','[3658,1]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1694689127;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1694689127;}',5,1,'2023-09-14 10:58:53','2023-09-14 10:58:53',0,NULL,10),(998,'woocommerce_run_product_attribute_lookup_update_callback','complete','2023-09-14 10:59:34','2023-09-14 10:59:34','[3659,1]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1694689174;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1694689174;}',5,1,'2023-09-14 11:00:02','2023-09-14 11:00:02',0,NULL,10),(999,'woocommerce_run_product_attribute_lookup_update_callback','complete','2023-09-14 11:06:17','2023-09-14 11:06:17','[3659,1]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1694689577;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1694689577;}',5,1,'2023-09-14 11:06:57','2023-09-14 11:06:57',0,NULL,10),(1000,'woocommerce_run_product_attribute_lookup_update_callback','complete','2023-09-14 11:06:55','2023-09-14 11:06:55','[3661,1]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1694689615;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1694689615;}',5,1,'2023-09-14 11:06:57','2023-09-14 11:06:57',0,NULL,10),(1001,'woocommerce_run_product_attribute_lookup_update_callback','complete','2023-09-14 11:41:22','2023-09-14 11:41:22','[3661,1]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1694691682;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1694691682;}',5,1,'2023-09-14 11:42:07','2023-09-14 11:42:07',0,NULL,10),(1002,'woocommerce_run_product_attribute_lookup_update_callback','complete','2023-09-14 11:43:46','2023-09-14 11:43:46','[3662,1]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1694691826;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1694691826;}',5,1,'2023-09-14 11:44:17','2023-09-14 11:44:17',0,NULL,10),(1003,'woocommerce_run_product_attribute_lookup_update_callback','complete','2023-09-14 12:32:10','2023-09-14 12:32:10','[3662,1]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1694694730;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1694694730;}',5,1,'2023-09-14 12:33:02','2023-09-14 12:33:02',0,NULL,10),(1004,'woocommerce_run_product_attribute_lookup_update_callback','complete','2023-09-14 12:41:31','2023-09-14 12:41:31','[3664,1]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1694695291;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1694695291;}',5,1,'2023-09-14 12:41:59','2023-09-14 12:41:59',0,NULL,10),(1005,'woocommerce_run_product_attribute_lookup_update_callback','complete','2023-09-14 12:44:53','2023-09-14 12:44:53','[3664,1]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1694695493;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1694695493;}',5,1,'2023-09-14 12:44:56','2023-09-14 12:44:56',0,NULL,10),(1006,'woocommerce_run_product_attribute_lookup_update_callback','complete','2023-09-14 12:45:45','2023-09-14 12:45:45','[3664,1]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1694695545;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1694695545;}',5,1,'2023-09-14 12:46:29','2023-09-14 12:46:29',0,NULL,10),(1007,'woocommerce_run_product_attribute_lookup_update_callback','complete','2023-09-14 12:47:34','2023-09-14 12:47:34','[3666,1]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1694695654;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1694695654;}',5,1,'2023-09-14 12:48:01','2023-09-14 12:48:01',0,NULL,10),(1008,'woocommerce_run_product_attribute_lookup_update_callback','complete','2023-09-14 12:49:38','2023-09-14 12:49:38','[3666,1]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1694695778;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1694695778;}',5,1,'2023-09-14 12:50:14','2023-09-14 12:50:14',0,NULL,10),(1009,'woocommerce_run_product_attribute_lookup_update_callback','complete','2023-09-14 12:53:48','2023-09-14 12:53:48','[3670,1]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1694696028;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1694696028;}',5,1,'2023-09-14 12:54:17','2023-09-14 12:54:17',0,NULL,10),(1010,'woocommerce_run_product_attribute_lookup_update_callback','complete','2023-09-14 12:56:35','2023-09-14 12:56:35','[3670,1]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1694696195;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1694696195;}',5,1,'2023-09-14 12:57:14','2023-09-14 12:57:14',0,NULL,10),(1011,'woocommerce_run_product_attribute_lookup_update_callback','complete','2023-09-14 12:57:43','2023-09-14 12:57:43','[3671,1]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1694696263;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1694696263;}',5,1,'2023-09-14 12:58:08','2023-09-14 12:58:08',0,NULL,10),(1012,'woocommerce_run_product_attribute_lookup_update_callback','complete','2023-09-14 13:01:43','2023-09-14 13:01:43','[3671,1]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1694696503;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1694696503;}',5,1,'2023-09-14 13:02:36','2023-09-14 13:02:36',0,NULL,10),(1013,'woocommerce_run_product_attribute_lookup_update_callback','complete','2023-09-14 13:02:38','2023-09-14 13:02:38','[3672,1]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1694696558;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1694696558;}',5,1,'2023-09-14 13:02:58','2023-09-14 13:02:58',0,NULL,10),(1014,'woocommerce_run_product_attribute_lookup_update_callback','complete','2023-09-14 13:04:18','2023-09-14 13:04:18','[3672,1]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1694696658;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1694696658;}',5,1,'2023-09-14 13:05:04','2023-09-14 13:05:04',0,NULL,10),(1015,'woocommerce_run_product_attribute_lookup_update_callback','complete','2023-09-14 13:05:04','2023-09-14 13:05:04','[3673,1]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1694696704;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1694696704;}',5,1,'2023-09-14 13:05:04','2023-09-14 13:05:04',0,NULL,10),(1016,'woocommerce_run_product_attribute_lookup_update_callback','complete','2023-09-14 13:06:38','2023-09-14 13:06:38','[3673,1]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1694696798;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1694696798;}',5,1,'2023-09-14 13:07:09','2023-09-14 13:07:09',0,NULL,10),(1018,'woocommerce_run_product_attribute_lookup_update_callback','complete','2023-09-15 05:58:29','2023-09-15 05:58:29','[3629,1]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1694757509;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1694757509;}',5,1,'2023-09-15 05:58:38','2023-09-15 05:58:38',0,NULL,10),(1019,'woocommerce_run_product_attribute_lookup_update_callback','complete','2023-09-15 06:00:57','2023-09-15 06:00:57','[3550,1]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1694757657;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1694757657;}',5,1,'2023-09-15 06:03:07','2023-09-15 06:03:07',0,NULL,10),(1020,'woocommerce_run_product_attribute_lookup_update_callback','complete','2023-09-15 06:08:27','2023-09-15 06:08:27','[3551,1]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1694758107;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1694758107;}',5,1,'2023-09-15 06:08:59','2023-09-15 06:08:59',0,NULL,10),(1021,'woocommerce_run_product_attribute_lookup_update_callback','complete','2023-09-15 06:14:27','2023-09-15 06:14:27','[3365,1]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1694758467;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1694758467;}',5,1,'2023-09-15 06:15:09','2023-09-15 06:15:09',0,NULL,10),(1022,'woocommerce_run_product_attribute_lookup_update_callback','complete','2023-09-15 06:29:22','2023-09-15 06:29:22','[3549,1]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1694759362;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1694759362;}',5,1,'2023-09-15 06:30:35','2023-09-15 06:30:35',0,NULL,10),(1039,'woocommerce_run_product_attribute_lookup_update_callback','complete','2023-09-16 08:09:54','2023-09-16 08:09:54','[3432,1]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1694851794;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1694851794;}',5,1,'2023-09-16 08:09:59','2023-09-16 08:09:59',0,NULL,10),(1040,'woocommerce_run_product_attribute_lookup_update_callback','complete','2023-09-16 08:12:30','2023-09-16 08:12:30','[3441,1]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1694851950;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1694851950;}',5,1,'2023-09-16 08:13:22','2023-09-16 08:13:22',0,NULL,10),(1041,'woocommerce_run_product_attribute_lookup_update_callback','complete','2023-09-16 08:13:58','2023-09-16 08:13:58','[3366,1]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1694852038;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1694852038;}',5,1,'2023-09-16 08:14:02','2023-09-16 08:14:02',0,NULL,10),(1042,'woocommerce_run_product_attribute_lookup_update_callback','complete','2023-09-16 08:22:03','2023-09-16 08:22:03','[3432,1]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1694852523;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1694852523;}',5,1,'2023-09-16 08:22:03','2023-09-16 08:22:03',0,NULL,10),(1043,'woocommerce_run_product_attribute_lookup_update_callback','complete','2023-09-16 08:22:08','2023-09-16 08:22:08','[3547,1]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1694852528;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1694852528;}',5,1,'2023-09-16 08:23:03','2023-09-16 08:23:03',0,NULL,10),(1044,'woocommerce_run_product_attribute_lookup_update_callback','complete','2023-09-16 08:32:07','2023-09-16 08:32:07','[3731,1]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1694853127;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1694853127;}',5,1,'2023-09-16 08:32:35','2023-09-16 08:32:35',0,NULL,10),(1045,'woocommerce_run_product_attribute_lookup_update_callback','complete','2023-09-16 08:33:16','2023-09-16 08:33:16','[3731,1]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1694853196;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1694853196;}',5,1,'2023-09-16 08:33:51','2023-09-16 08:33:51',0,NULL,10),(1046,'woocommerce_run_product_attribute_lookup_update_callback','complete','2023-09-16 08:37:10','2023-09-16 08:37:10','[3441,1]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1694853430;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1694853430;}',5,1,'2023-09-16 08:37:11','2023-09-16 08:37:11',0,NULL,10),(1047,'woocommerce_run_product_attribute_lookup_update_callback','complete','2023-09-16 08:45:03','2023-09-16 08:45:03','[3731,1]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1694853903;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1694853903;}',5,1,'2023-09-16 08:45:57','2023-09-16 08:45:57',0,NULL,10),(1048,'woocommerce_run_product_attribute_lookup_update_callback','complete','2023-09-16 08:51:00','2023-09-16 08:51:00','[3373,1]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1694854260;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1694854260;}',5,1,'2023-09-16 08:51:02','2023-09-16 08:51:02',0,NULL,10),(1049,'woocommerce_run_product_attribute_lookup_update_callback','complete','2023-09-16 08:52:13','2023-09-16 08:52:13','[3370,1]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1694854333;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1694854333;}',5,1,'2023-09-16 08:52:54','2023-09-16 08:52:54',0,NULL,10),(1050,'woocommerce_run_product_attribute_lookup_update_callback','complete','2023-09-16 08:55:22','2023-09-16 08:55:22','[3365,1]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1694854522;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1694854522;}',5,1,'2023-09-16 08:55:23','2023-09-16 08:55:23',0,NULL,10),(1051,'woocommerce_run_product_attribute_lookup_update_callback','complete','2023-09-16 09:10:20','2023-09-16 09:10:20','[3549,1]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1694855420;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1694855420;}',5,1,'2023-09-16 09:10:24','2023-09-16 09:10:24',0,NULL,10),(1052,'woocommerce_run_product_attribute_lookup_update_callback','complete','2023-09-16 10:10:07','2023-09-16 10:10:07','[3355,1]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1694859007;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1694859007;}',5,1,'2023-09-16 10:10:40','2023-09-16 10:10:40',0,NULL,10),(1056,'woocommerce_run_product_attribute_lookup_update_callback','complete','2023-09-16 15:31:44','2023-09-16 15:31:44','[3671,1]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1694878304;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1694878304;}',5,1,'2023-09-16 15:31:48','2023-09-16 15:31:48',0,NULL,10),(1057,'woocommerce_run_product_attribute_lookup_update_callback','complete','2023-09-16 16:08:59','2023-09-16 16:08:59','[3549,1]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1694880539;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1694880539;}',5,1,'2023-09-16 16:09:27','2023-09-16 16:09:27',0,NULL,10),(1058,'woocommerce_run_product_attribute_lookup_update_callback','complete','2023-09-16 18:02:57','2023-09-16 18:02:57','[3666,1]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1694887377;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1694887377;}',5,1,'2023-09-16 18:02:57','2023-09-16 18:02:57',0,NULL,10),(1059,'woocommerce_run_product_attribute_lookup_update_callback','complete','2023-09-16 18:20:54','2023-09-16 18:20:54','[3664,1]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1694888454;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1694888454;}',5,1,'2023-09-16 18:20:56','2023-09-16 18:20:56',0,NULL,10),(1060,'woocommerce_run_product_attribute_lookup_update_callback','complete','2023-09-16 18:22:06','2023-09-16 18:22:06','[3662,1]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1694888526;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1694888526;}',5,1,'2023-09-16 18:22:06','2023-09-16 18:22:06',0,NULL,10),(1062,'woocommerce_cleanup_draft_orders','complete','2023-09-19 03:47:46','2023-09-19 03:47:46','[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1695095266;s:18:\"\0*\0first_timestamp\";i:1692414995;s:13:\"\0*\0recurrence\";i:86400;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1695095266;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:86400;}',6,1,'2023-09-19 03:48:20','2023-09-19 03:48:20',0,NULL,10),(1129,'woocommerce_run_product_attribute_lookup_update_callback','complete','2023-09-23 16:58:53','2023-09-23 16:58:53','[3644,1]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1695488333;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1695488333;}',5,1,'2023-09-23 16:58:56','2023-09-23 16:58:56',0,NULL,10),(1130,'woocommerce_run_product_attribute_lookup_update_callback','complete','2023-09-23 17:02:52','2023-09-23 17:02:52','[3645,1]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1695488572;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1695488572;}',5,1,'2023-09-23 17:02:58','2023-09-23 17:02:58',0,NULL,10),(1131,'woocommerce_run_product_attribute_lookup_update_callback','complete','2023-09-24 00:22:41','2023-09-24 00:22:41','[3366,1]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1695514961;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1695514961;}',5,1,'2023-09-24 00:23:00','2023-09-24 00:23:00',0,NULL,10),(1132,'woocommerce_run_product_attribute_lookup_update_callback','complete','2023-09-24 00:26:45','2023-09-24 00:26:45','[3432,1]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1695515205;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1695515205;}',5,1,'2023-09-24 00:27:09','2023-09-24 00:27:09',0,NULL,10),(1133,'woocommerce_run_product_attribute_lookup_update_callback','complete','2023-09-24 00:29:51','2023-09-24 00:29:51','[3433,1]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1695515391;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1695515391;}',5,1,'2023-09-24 00:29:55','2023-09-24 00:29:55',0,NULL,10),(1134,'woocommerce_run_product_attribute_lookup_update_callback','complete','2023-09-24 00:43:29','2023-09-24 00:43:29','[3552,1]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1695516209;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1695516209;}',5,1,'2023-09-24 00:44:08','2023-09-24 00:44:08',0,NULL,10),(1135,'woocommerce_run_product_attribute_lookup_update_callback','complete','2023-09-24 01:01:24','2023-09-24 01:01:24','[3352,1]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1695517284;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1695517284;}',5,1,'2023-09-24 01:01:57','2023-09-24 01:01:57',0,NULL,10),(1136,'woocommerce_run_product_attribute_lookup_update_callback','complete','2023-09-24 01:08:58','2023-09-24 01:08:58','[3611,1]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1695517738;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1695517738;}',5,1,'2023-09-24 01:09:50','2023-09-24 01:09:50',0,NULL,10),(1137,'woocommerce_run_product_attribute_lookup_update_callback','complete','2023-09-24 01:15:55','2023-09-24 01:15:55','[3618,1]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1695518155;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1695518155;}',5,1,'2023-09-24 01:15:59','2023-09-24 01:15:59',0,NULL,10),(1138,'woocommerce_run_product_attribute_lookup_update_callback','complete','2023-09-24 01:19:40','2023-09-24 01:19:40','[3619,1]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1695518380;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1695518380;}',5,1,'2023-09-24 01:20:18','2023-09-24 01:20:18',0,NULL,10),(1139,'woocommerce_run_product_attribute_lookup_update_callback','complete','2023-09-24 01:25:39','2023-09-24 01:25:39','[3621,1]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1695518739;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1695518739;}',5,1,'2023-09-24 01:26:20','2023-09-24 01:26:20',0,NULL,10),(1140,'woocommerce_run_product_attribute_lookup_update_callback','complete','2023-09-24 01:30:25','2023-09-24 01:30:25','[3622,1]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1695519025;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1695519025;}',5,1,'2023-09-24 01:30:34','2023-09-24 01:30:34',0,NULL,10),(1141,'woocommerce_run_product_attribute_lookup_update_callback','complete','2023-09-24 01:37:40','2023-09-24 01:37:40','[3433,1]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1695519460;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1695519460;}',5,1,'2023-09-24 01:38:13','2023-09-24 01:38:13',0,NULL,10),(1142,'woocommerce_run_product_attribute_lookup_update_callback','complete','2023-09-24 01:43:48','2023-09-24 01:43:48','[3627,1]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1695519828;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1695519828;}',5,1,'2023-09-24 01:44:21','2023-09-24 01:44:21',0,NULL,10),(1143,'woocommerce_run_product_attribute_lookup_update_callback','complete','2023-09-24 01:52:19','2023-09-24 01:52:19','[3609,1]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1695520339;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1695520339;}',5,1,'2023-09-24 01:52:49','2023-09-24 01:52:49',0,NULL,10),(1144,'woocommerce_cleanup_draft_orders','complete','2023-09-25 05:09:49','2023-09-25 05:09:49','[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1695618589;s:18:\"\0*\0first_timestamp\";i:1692414995;s:13:\"\0*\0recurrence\";i:86400;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1695618589;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:86400;}',6,1,'2023-09-25 05:18:21','2023-09-25 05:18:21',0,NULL,10),(1147,'woocommerce_run_product_attribute_lookup_update_callback','complete','2023-09-24 06:33:02','2023-09-24 06:33:02','[3662,1]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1695537182;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1695537182;}',5,1,'2023-09-24 06:33:58','2023-09-24 06:33:58',0,NULL,10),(1148,'woocommerce_run_product_attribute_lookup_update_callback','complete','2023-09-24 06:35:04','2023-09-24 06:35:04','[3661,1]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1695537304;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1695537304;}',5,1,'2023-09-24 06:36:01','2023-09-24 06:36:01',0,NULL,10),(1149,'woocommerce_run_product_attribute_lookup_update_callback','complete','2023-09-24 07:05:20','2023-09-24 07:05:20','[3673,1]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1695539120;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1695539120;}',5,1,'2023-09-24 07:06:04','2023-09-24 07:06:04',0,NULL,10),(1150,'woocommerce_run_product_attribute_lookup_update_callback','complete','2023-09-24 07:17:43','2023-09-24 07:17:43','[3631,1]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1695539863;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1695539863;}',5,1,'2023-09-24 07:18:11','2023-09-24 07:18:11',0,NULL,10),(1151,'woocommerce_run_product_attribute_lookup_update_callback','complete','2023-09-24 07:22:52','2023-09-24 07:22:52','[3609,1]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1695540172;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1695540172;}',5,1,'2023-09-24 07:22:56','2023-09-24 07:22:56',0,NULL,10),(1152,'woocommerce_run_product_attribute_lookup_update_callback','complete','2023-09-24 07:30:00','2023-09-24 07:30:00','[3600,1]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1695540600;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1695540600;}',5,1,'2023-09-24 07:30:01','2023-09-24 07:30:01',0,NULL,10),(1153,'woocommerce_run_product_attribute_lookup_update_callback','complete','2023-09-24 07:30:59','2023-09-24 07:30:59','[3601,1]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1695540659;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1695540659;}',5,1,'2023-09-24 07:31:00','2023-09-24 07:31:00',0,NULL,10),(1154,'woocommerce_run_product_attribute_lookup_update_callback','complete','2023-09-24 07:34:37','2023-09-24 07:34:37','[3603,1]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1695540877;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1695540877;}',5,1,'2023-09-24 07:35:08','2023-09-24 07:35:08',0,NULL,10),(1155,'woocommerce_run_product_attribute_lookup_update_callback','complete','2023-09-24 07:36:51','2023-09-24 07:36:51','[3604,1]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1695541011;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1695541011;}',5,1,'2023-09-24 07:37:10','2023-09-24 07:37:10',0,NULL,10),(1156,'woocommerce_run_product_attribute_lookup_update_callback','complete','2023-09-24 07:39:04','2023-09-24 07:39:04','[3607,1]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1695541144;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1695541144;}',5,1,'2023-09-24 07:40:28','2023-09-24 07:40:28',0,NULL,10),(1157,'woocommerce_run_product_attribute_lookup_update_callback','complete','2023-09-24 07:41:27','2023-09-24 07:41:27','[3605,1]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1695541287;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1695541287;}',5,1,'2023-09-24 07:41:50','2023-09-24 07:41:50',0,NULL,10),(1158,'woocommerce_run_product_attribute_lookup_update_callback','complete','2023-09-24 07:42:30','2023-09-24 07:42:30','[3608,1]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1695541350;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1695541350;}',5,1,'2023-09-24 07:43:07','2023-09-24 07:43:07',0,NULL,10),(1159,'woocommerce_run_product_attribute_lookup_update_callback','complete','2023-09-24 07:44:28','2023-09-24 07:44:28','[3630,1]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1695541468;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1695541468;}',5,1,'2023-09-24 07:45:00','2023-09-24 07:45:00',0,NULL,10),(1160,'woocommerce_run_product_attribute_lookup_update_callback','complete','2023-09-24 08:38:13','2023-09-24 08:38:13','[3618,1]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1695544693;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1695544693;}',5,1,'2023-09-24 08:39:01','2023-09-24 08:39:01',0,NULL,10),(1161,'woocommerce_run_product_attribute_lookup_update_callback','complete','2023-09-24 11:17:07','2023-09-24 11:17:07','[3589,1]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1695554227;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1695554227;}',5,1,'2023-09-24 11:18:32','2023-09-24 11:18:32',0,NULL,10),(1162,'woocommerce_run_product_attribute_lookup_update_callback','complete','2023-09-24 11:17:49','2023-09-24 11:17:49','[3591,1]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1695554269;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1695554269;}',5,1,'2023-09-24 11:18:36','2023-09-24 11:18:36',0,NULL,10),(1163,'woocommerce_run_product_attribute_lookup_update_callback','complete','2023-09-24 11:19:26','2023-09-24 11:19:26','[3592,1]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1695554366;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1695554366;}',5,1,'2023-09-24 11:19:26','2023-09-24 11:19:26',0,NULL,10),(1164,'woocommerce_run_product_attribute_lookup_update_callback','complete','2023-09-24 11:20:31','2023-09-24 11:20:31','[3553,1]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1695554431;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1695554431;}',5,1,'2023-09-24 11:21:14','2023-09-24 11:21:14',0,NULL,10),(1165,'woocommerce_run_product_attribute_lookup_update_callback','complete','2023-09-24 11:23:43','2023-09-24 11:23:43','[3580,1]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1695554623;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1695554623;}',5,1,'2023-09-24 11:24:27','2023-09-24 11:24:27',0,NULL,10),(1166,'woocommerce_run_product_attribute_lookup_update_callback','complete','2023-09-24 11:23:47','2023-09-24 11:23:47','[3554,1]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1695554627;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1695554627;}',5,1,'2023-09-24 11:24:27','2023-09-24 11:24:27',0,NULL,10),(1167,'woocommerce_run_product_attribute_lookup_update_callback','complete','2023-09-24 11:25:37','2023-09-24 11:25:37','[3557,1]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1695554737;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1695554737;}',5,1,'2023-09-24 11:26:09','2023-09-24 11:26:09',0,NULL,10),(1168,'woocommerce_run_product_attribute_lookup_update_callback','complete','2023-09-24 11:27:06','2023-09-24 11:27:06','[3556,1]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1695554826;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1695554826;}',5,1,'2023-09-24 11:27:48','2023-09-24 11:27:48',0,NULL,10),(1169,'woocommerce_run_product_attribute_lookup_update_callback','complete','2023-09-24 11:27:54','2023-09-24 11:27:54','[3557,1]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1695554874;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1695554874;}',5,1,'2023-09-24 11:27:54','2023-09-24 11:27:54',0,NULL,10),(1170,'woocommerce_run_product_attribute_lookup_update_callback','complete','2023-09-24 11:28:52','2023-09-24 11:28:52','[3580,1]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1695554932;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1695554932;}',5,1,'2023-09-24 11:28:57','2023-09-24 11:28:57',0,NULL,10),(1171,'woocommerce_run_product_attribute_lookup_update_callback','complete','2023-09-24 11:31:43','2023-09-24 11:31:43','[3598,1]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1695555103;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1695555103;}',5,1,'2023-09-24 11:32:11','2023-09-24 11:32:11',0,NULL,10),(1172,'woocommerce_run_product_attribute_lookup_update_callback','complete','2023-09-24 11:33:56','2023-09-24 11:33:56','[3599,1]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1695555236;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1695555236;}',5,1,'2023-09-24 11:33:58','2023-09-24 11:33:58',0,NULL,10),(1173,'woocommerce_run_product_attribute_lookup_update_callback','complete','2023-09-24 11:37:15','2023-09-24 11:37:15','[3602,1]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1695555435;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1695555435;}',5,1,'2023-09-24 11:38:03','2023-09-24 11:38:03',0,NULL,10);
/*!40000 ALTER TABLE `wplf_actionscheduler_actions` ENABLE KEYS */;
UNLOCK TABLES;

-- Dumped table `wplf_actionscheduler_actions` with 486 row(s)
--

--
-- Table structure for table `wplf_comments`
--

DROP TABLE IF EXISTS `wplf_comments`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `wplf_comments` (
  `comment_ID` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `comment_post_ID` bigint(20) unsigned NOT NULL DEFAULT 0,
  `comment_author` tinytext NOT NULL,
  `comment_author_email` varchar(100) NOT NULL DEFAULT '',
  `comment_author_url` varchar(200) NOT NULL DEFAULT '',
  `comment_author_IP` varchar(100) NOT NULL DEFAULT '',
  `comment_date` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `comment_date_gmt` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `comment_content` text NOT NULL,
  `comment_karma` int(11) NOT NULL DEFAULT 0,
  `comment_approved` varchar(20) NOT NULL DEFAULT '1',
  `comment_agent` varchar(255) NOT NULL DEFAULT '',
  `comment_type` varchar(20) NOT NULL DEFAULT 'comment',
  `comment_parent` bigint(20) unsigned NOT NULL DEFAULT 0,
  `user_id` bigint(20) unsigned NOT NULL DEFAULT 0,
  PRIMARY KEY (`comment_ID`),
  KEY `comment_post_ID` (`comment_post_ID`),
  KEY `comment_approved_date_gmt` (`comment_approved`,`comment_date_gmt`),
  KEY `comment_date_gmt` (`comment_date_gmt`),
  KEY `comment_parent` (`comment_parent`),
  KEY `comment_author_email` (`comment_author_email`(10)),
  KEY `woo_idx_comment_type` (`comment_type`)
) ENGINE=MyISAM AUTO_INCREMENT=2 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wplf_comments`
--

LOCK TABLES `wplf_comments` WRITE;
/*!40000 ALTER TABLE `wplf_comments` DISABLE KEYS */;
/*!40000 ALTER TABLE `wplf_comments` ENABLE KEYS */;
UNLOCK TABLES;

-- Dumped table `wplf_comments` with 0 row(s)
--

--
-- Table structure for table `wplf_term_taxonomy`
--

DROP TABLE IF EXISTS `wplf_term_taxonomy`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `wplf_term_taxonomy` (
  `term_taxonomy_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `term_id` bigint(20) unsigned NOT NULL DEFAULT 0,
  `taxonomy` varchar(32) NOT NULL DEFAULT '',
  `description` longtext NOT NULL,
  `parent` bigint(20) unsigned NOT NULL DEFAULT 0,
  `count` bigint(20) NOT NULL DEFAULT 0,
  PRIMARY KEY (`term_taxonomy_id`),
  UNIQUE KEY `term_id_taxonomy` (`term_id`,`taxonomy`),
  KEY `taxonomy` (`taxonomy`)
) ENGINE=MyISAM AUTO_INCREMENT=188 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wplf_term_taxonomy`
--

LOCK TABLES `wplf_term_taxonomy` WRITE;
/*!40000 ALTER TABLE `wplf_term_taxonomy` DISABLE KEYS */;
INSERT INTO `wplf_term_taxonomy` VALUES (1,1,'category','',0,0),(2,2,'product_type','',0,110),(3,3,'product_type','',0,0),(4,4,'product_type','',0,0),(5,5,'product_type','',0,0),(6,6,'product_visibility','',0,0),(7,7,'product_visibility','',0,0),(8,8,'product_visibility','',0,0),(9,9,'product_visibility','',0,0),(10,10,'product_visibility','',0,0),(11,11,'product_visibility','',0,0),(12,12,'product_visibility','',0,0),(13,13,'product_visibility','',0,0),(14,14,'product_visibility','',0,0),(15,15,'product_cat','',0,0),(16,16,'nav_menu','',0,0),(17,17,'nav_menu','',0,15),(133,133,'product_tag','',0,0),(132,132,'product_tag','',0,0),(131,131,'product_tag','',0,0),(23,23,'category','',0,0),(24,24,'dt_testimonials_category','',0,5),(25,25,'category','',0,0),(26,26,'nav_menu','',0,2),(27,27,'nav_menu','',0,5),(64,64,'product_cat','',0,34),(65,65,'product_cat','',0,39),(74,74,'product_cat','',0,24),(181,181,'pa_product-type','',0,5),(182,182,'pa_product-type','',0,2),(183,183,'pa_product-type','',0,2),(184,184,'pa_product-type','',0,4),(185,185,'pa_product-type','',0,2),(186,186,'pa_product-type','',0,1),(63,63,'product_cat','',0,29),(187,187,'category','',0,1),(102,102,'product_cat','',64,24),(114,114,'product_cat','',64,7),(121,121,'product_cat','',64,9),(129,129,'nav_menu','',0,8),(180,180,'pa_product-type','',0,8),(135,135,'product_tag','',0,0),(134,134,'product_tag','',0,0),(136,136,'product_tag','',0,0),(137,137,'product_tag','',0,0),(138,138,'product_tag','',0,0),(139,139,'product_tag','',0,0),(140,140,'product_tag','',0,0),(141,141,'product_tag','',0,0),(142,142,'product_tag','',0,0),(143,143,'product_tag','',0,0),(144,144,'product_tag','',0,0),(145,145,'product_tag','',0,0),(146,146,'product_tag','',0,0),(147,147,'product_tag','',0,0),(148,148,'product_tag','',0,0),(149,149,'product_tag','',0,0),(150,150,'product_tag','',0,0),(151,151,'product_tag','',0,0),(152,152,'product_tag','',0,0),(153,153,'product_tag','',0,0),(154,154,'product_tag','',0,0),(155,155,'category','',0,4),(156,156,'pa_product-type','',0,17),(157,157,'pa_product-type','',0,5),(158,158,'pa_product-type','',0,7),(159,159,'pa_product-type','',0,6),(160,160,'pa_product-type','',0,5),(161,161,'pa_product-type','',0,12),(162,162,'pa_product-type','',0,10),(163,163,'pa_product-type','',0,0),(164,164,'pa_product-type','',0,2),(165,165,'pa_product-type','',0,0),(166,166,'pa_product-type','',0,2),(167,167,'pa_product-type','',0,1),(168,168,'pa_product-type','',0,0),(169,169,'pa_product-type','',0,2),(170,170,'pa_product-type','',0,0),(171,171,'pa_product-type','',0,0),(172,172,'pa_product-type','',0,0),(173,173,'pa_product-type','',0,11),(174,174,'pa_product-type','',0,0),(175,175,'pa_product-type','',0,2),(176,176,'pa_product-type','',0,1),(177,177,'pa_product-type','',0,0),(178,178,'pa_product-type','',0,1),(179,179,'pa_product-type','',0,1);
/*!40000 ALTER TABLE `wplf_term_taxonomy` ENABLE KEYS */;
UNLOCK TABLES;

-- Dumped table `wplf_term_taxonomy` with 87 row(s)
--

--
-- Table structure for table `wplf_wd_fb_data`
--

DROP TABLE IF EXISTS `wplf_wd_fb_data`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `wplf_wd_fb_data` (
  `id` bigint(20) NOT NULL AUTO_INCREMENT,
  `fb_id` int(11) NOT NULL,
  `from` varchar(32) NOT NULL,
  `object_id` varchar(64) NOT NULL,
  `name` text CHARACTER SET utf8mb4 COLLATE utf8mb4_bin DEFAULT NULL,
  `description` mediumtext CHARACTER SET utf8mb4 COLLATE utf8mb4_bin DEFAULT NULL,
  `type` varchar(32) NOT NULL,
  `message` mediumtext CHARACTER SET utf8mb4 COLLATE utf8mb4_bin DEFAULT NULL,
  `story` mediumtext NOT NULL,
  `place` mediumtext NOT NULL,
  `message_tags` mediumtext NOT NULL,
  `with_tags` mediumtext NOT NULL,
  `story_tags` mediumtext NOT NULL,
  `status_type` mediumtext NOT NULL,
  `link` mediumtext NOT NULL,
  `source` mediumtext NOT NULL,
  `thumb_url` varchar(512) NOT NULL,
  `main_url` varchar(512) NOT NULL,
  `width` varchar(32) NOT NULL,
  `height` varchar(32) NOT NULL,
  `created_time` varchar(64) NOT NULL,
  `updated_time` varchar(64) NOT NULL,
  `created_time_number` bigint(255) NOT NULL,
  `reactions` text NOT NULL,
  `comments` text NOT NULL,
  `shares` text NOT NULL,
  `attachments` text NOT NULL,
  `who_post` text NOT NULL,
  PRIMARY KEY (`id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wplf_wd_fb_data`
--

LOCK TABLES `wplf_wd_fb_data` WRITE;
/*!40000 ALTER TABLE `wplf_wd_fb_data` DISABLE KEYS */;
/*!40000 ALTER TABLE `wplf_wd_fb_data` ENABLE KEYS */;
UNLOCK TABLES;

-- Dumped table `wplf_wd_fb_data` with 0 row(s)
--

--
-- Table structure for table `wplf_wc_product_meta_lookup`
--

DROP TABLE IF EXISTS `wplf_wc_product_meta_lookup`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `wplf_wc_product_meta_lookup` (
  `product_id` bigint(20) NOT NULL,
  `sku` varchar(100) DEFAULT '',
  `virtual` tinyint(1) DEFAULT 0,
  `downloadable` tinyint(1) DEFAULT 0,
  `min_price` decimal(19,4) DEFAULT NULL,
  `max_price` decimal(19,4) DEFAULT NULL,
  `onsale` tinyint(1) DEFAULT 0,
  `stock_quantity` double DEFAULT NULL,
  `stock_status` varchar(100) DEFAULT 'instock',
  `rating_count` bigint(20) DEFAULT 0,
  `average_rating` decimal(3,2) DEFAULT 0.00,
  `total_sales` bigint(20) DEFAULT 0,
  `tax_status` varchar(100) DEFAULT 'taxable',
  `tax_class` varchar(100) DEFAULT '',
  PRIMARY KEY (`product_id`),
  KEY `virtual` (`virtual`),
  KEY `downloadable` (`downloadable`),
  KEY `stock_status` (`stock_status`),
  KEY `stock_quantity` (`stock_quantity`),
  KEY `onsale` (`onsale`),
  KEY `min_max_price` (`min_price`,`max_price`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wplf_wc_product_meta_lookup`
--

LOCK TABLES `wplf_wc_product_meta_lookup` WRITE;
/*!40000 ALTER TABLE `wplf_wc_product_meta_lookup` DISABLE KEYS */;
INSERT INTO `wplf_wc_product_meta_lookup` VALUES (61,'00LM001',0,0,0.0000,0.0000,0,NULL,'outofstock',0,0.00,0,'taxable',''),(64,'00LM001-1',0,0,0.0000,0.0000,0,NULL,'outofstock',0,0.00,0,'taxable',''),(2640,'',0,0,0.0000,0.0000,0,NULL,'instock',0,0.00,0,'taxable',''),(2642,'',0,0,0.0000,0.0000,0,NULL,'instock',0,0.00,0,'taxable',''),(2645,'',0,0,0.0000,0.0000,0,NULL,'instock',0,0.00,0,'taxable',''),(2647,'',0,0,0.0000,0.0000,0,NULL,'instock',0,0.00,0,'taxable',''),(2648,'',0,0,0.0000,0.0000,0,NULL,'instock',0,0.00,0,'taxable',''),(2649,'',0,0,0.0000,0.0000,0,NULL,'instock',0,0.00,0,'taxable',''),(2650,'',0,0,0.0000,0.0000,0,NULL,'instock',0,0.00,0,'taxable',''),(2651,'',0,0,0.0000,0.0000,0,NULL,'instock',0,0.00,0,'taxable',''),(2652,'',0,0,0.0000,0.0000,0,NULL,'instock',0,0.00,0,'taxable',''),(2653,'',0,0,0.0000,0.0000,0,NULL,'instock',0,0.00,0,'taxable',''),(2654,'',0,0,0.0000,0.0000,0,NULL,'instock',0,0.00,0,'taxable',''),(2660,'',0,0,0.0000,0.0000,0,NULL,'instock',0,0.00,0,'taxable',''),(2662,'',0,0,0.0000,0.0000,0,NULL,'instock',0,0.00,0,'taxable',''),(2666,'',0,0,0.0000,0.0000,0,NULL,'instock',0,0.00,0,'taxable',''),(2668,'',0,0,0.0000,0.0000,0,NULL,'instock',0,0.00,0,'taxable',''),(2670,'',0,0,0.0000,0.0000,0,NULL,'instock',0,0.00,0,'taxable',''),(2673,'',0,0,0.0000,0.0000,0,NULL,'instock',0,0.00,0,'taxable',''),(3309,'',0,0,0.0000,0.0000,0,NULL,'instock',0,0.00,0,'taxable',''),(3316,'',0,0,0.0000,0.0000,0,NULL,'instock',0,0.00,0,'taxable',''),(3324,'',0,0,0.0000,0.0000,0,NULL,'instock',0,0.00,0,'taxable',''),(3329,'',0,0,0.0000,0.0000,0,NULL,'instock',0,0.00,0,'taxable',''),(3330,'',0,0,0.0000,0.0000,0,NULL,'instock',0,0.00,0,'taxable',''),(3331,'',0,0,0.0000,0.0000,0,NULL,'instock',0,0.00,0,'taxable',''),(3352,'',0,0,0.0000,0.0000,0,NULL,'instock',0,0.00,0,'taxable',''),(3355,'',0,0,0.0000,0.0000,0,NULL,'instock',0,0.00,0,'taxable',''),(3361,'',0,0,0.0000,0.0000,0,NULL,'instock',0,0.00,0,'taxable',''),(3362,'',0,0,0.0000,0.0000,0,NULL,'instock',0,0.00,0,'taxable',''),(3365,'',0,0,0.0000,0.0000,0,NULL,'instock',0,0.00,0,'taxable',''),(3366,'',0,0,0.0000,0.0000,0,NULL,'instock',0,0.00,0,'taxable',''),(3370,'',0,0,0.0000,0.0000,0,NULL,'instock',0,0.00,0,'taxable',''),(3373,'',0,0,0.0000,0.0000,0,NULL,'instock',0,0.00,0,'taxable',''),(3432,'',0,0,0.0000,0.0000,0,NULL,'instock',0,0.00,0,'taxable',''),(2720,'',0,0,0.0000,0.0000,0,NULL,'instock',0,0.00,0,'taxable',''),(2721,'',0,0,0.0000,0.0000,0,NULL,'instock',0,0.00,0,'taxable',''),(3433,'',0,0,0.0000,0.0000,0,NULL,'instock',0,0.00,0,'taxable',''),(3434,'',0,0,0.0000,0.0000,0,NULL,'instock',0,0.00,0,'taxable',''),(3435,'',0,0,0.0000,0.0000,0,NULL,'instock',0,0.00,0,'taxable',''),(3436,'',0,0,0.0000,0.0000,0,NULL,'instock',0,0.00,0,'taxable',''),(3437,'',0,0,0.0000,0.0000,0,NULL,'instock',0,0.00,0,'taxable',''),(3438,'',0,0,0.0000,0.0000,0,NULL,'instock',0,0.00,0,'taxable',''),(3439,'',0,0,0.0000,0.0000,0,NULL,'instock',0,0.00,0,'taxable',''),(3440,'',0,0,0.0000,0.0000,0,NULL,'instock',0,0.00,0,'taxable',''),(3441,'',0,0,0.0000,0.0000,0,NULL,'instock',0,0.00,0,'taxable',''),(3442,'',0,0,0.0000,0.0000,0,NULL,'instock',0,0.00,0,'taxable',''),(3447,'',0,0,0.0000,0.0000,0,NULL,'instock',0,0.00,0,'taxable',''),(3450,'',0,0,0.0000,0.0000,0,NULL,'instock',0,0.00,0,'taxable',''),(3453,'',0,0,0.0000,0.0000,0,NULL,'instock',0,0.00,0,'taxable',''),(3461,'',0,0,0.0000,0.0000,0,NULL,'instock',0,0.00,0,'taxable',''),(3547,'',0,0,0.0000,0.0000,0,NULL,'instock',0,0.00,0,'taxable',''),(3548,'',0,0,0.0000,0.0000,0,NULL,'instock',0,0.00,0,'taxable',''),(3549,'',0,0,0.0000,0.0000,0,NULL,'instock',0,0.00,0,'taxable',''),(2768,'',0,0,0.0000,0.0000,0,NULL,'instock',0,0.00,0,'taxable',''),(3550,'',0,0,0.0000,0.0000,0,NULL,'instock',0,0.00,0,'taxable',''),(2774,'',0,0,0.0000,0.0000,0,NULL,'instock',0,0.00,0,'taxable',''),(3551,'',0,0,0.0000,0.0000,0,NULL,'instock',0,0.00,0,'taxable',''),(3552,'',0,0,0.0000,0.0000,0,NULL,'instock',0,0.00,0,'taxable',''),(3553,'',0,0,0.0000,0.0000,0,NULL,'instock',0,0.00,0,'taxable',''),(3554,'',0,0,0.0000,0.0000,0,NULL,'instock',0,0.00,0,'taxable',''),(3556,'',0,0,0.0000,0.0000,0,NULL,'instock',0,0.00,0,'taxable',''),(3557,'',0,0,0.0000,0.0000,0,NULL,'instock',0,0.00,0,'taxable',''),(3580,'',0,0,0.0000,0.0000,0,NULL,'instock',0,0.00,0,'taxable',''),(3589,'',0,0,0.0000,0.0000,0,NULL,'instock',0,0.00,0,'taxable',''),(3591,'',0,0,0.0000,0.0000,0,NULL,'instock',0,0.00,0,'taxable',''),(2808,'',0,0,0.0000,0.0000,0,NULL,'instock',0,0.00,0,'taxable',''),(3592,'',0,0,0.0000,0.0000,0,NULL,'instock',0,0.00,0,'taxable',''),(3593,'',0,0,0.0000,0.0000,0,NULL,'instock',0,0.00,0,'taxable',''),(3594,'',0,0,0.0000,0.0000,0,NULL,'instock',0,0.00,0,'taxable',''),(3595,'',0,0,0.0000,0.0000,0,NULL,'instock',0,0.00,0,'taxable',''),(3596,'',0,0,0.0000,0.0000,0,NULL,'instock',0,0.00,0,'taxable',''),(3597,'',0,0,0.0000,0.0000,0,NULL,'instock',0,0.00,0,'taxable',''),(3598,'',0,0,0.0000,0.0000,0,NULL,'instock',0,0.00,0,'taxable',''),(2825,'',0,0,0.0000,0.0000,0,NULL,'instock',0,0.00,0,'taxable',''),(2826,'',0,0,0.0000,0.0000,0,NULL,'instock',0,0.00,0,'taxable',''),(3599,'',0,0,0.0000,0.0000,0,NULL,'instock',0,0.00,0,'taxable',''),(3600,'',0,0,0.0000,0.0000,0,NULL,'instock',0,0.00,0,'taxable',''),(3601,'',0,0,0.0000,0.0000,0,NULL,'instock',0,0.00,0,'taxable',''),(3602,'',0,0,0.0000,0.0000,0,NULL,'instock',0,0.00,0,'taxable',''),(3603,'',0,0,0.0000,0.0000,0,NULL,'instock',0,0.00,0,'taxable',''),(3604,'',0,0,0.0000,0.0000,0,NULL,'instock',0,0.00,0,'taxable',''),(3605,'',0,0,0.0000,0.0000,0,NULL,'instock',0,0.00,0,'taxable',''),(3607,'',0,0,0.0000,0.0000,0,NULL,'instock',0,0.00,0,'taxable',''),(3608,'',0,0,0.0000,0.0000,0,NULL,'instock',0,0.00,0,'taxable',''),(3609,'',0,0,0.0000,0.0000,0,NULL,'instock',0,0.00,0,'taxable',''),(3611,'',0,0,0.0000,0.0000,0,NULL,'instock',0,0.00,0,'taxable',''),(3612,'',0,0,0.0000,0.0000,0,NULL,'instock',0,0.00,0,'taxable',''),(3614,'',0,0,0.0000,0.0000,0,NULL,'instock',0,0.00,0,'taxable',''),(2865,'',0,0,0.0000,0.0000,0,NULL,'instock',0,0.00,0,'taxable',''),(3615,'',0,0,0.0000,0.0000,0,NULL,'instock',0,0.00,0,'taxable',''),(3616,'',0,0,0.0000,0.0000,0,NULL,'instock',0,0.00,0,'taxable',''),(3617,'',0,0,0.0000,0.0000,0,NULL,'instock',0,0.00,0,'taxable',''),(3618,'',0,0,0.0000,0.0000,0,NULL,'instock',0,0.00,0,'taxable',''),(3619,'',0,0,0.0000,0.0000,0,NULL,'instock',0,0.00,0,'taxable',''),(3620,'',0,0,0.0000,0.0000,0,NULL,'instock',0,0.00,0,'taxable',''),(3621,'',0,0,0.0000,0.0000,0,NULL,'instock',0,0.00,0,'taxable',''),(3622,'',0,0,0.0000,0.0000,0,NULL,'instock',0,0.00,0,'taxable',''),(2890,'',0,0,0.0000,0.0000,0,NULL,'instock',0,0.00,0,'taxable',''),(3623,'',0,0,0.0000,0.0000,0,NULL,'instock',0,0.00,0,'taxable',''),(3624,'',0,0,0.0000,0.0000,0,NULL,'instock',0,0.00,0,'taxable',''),(3625,'',0,0,0.0000,0.0000,0,NULL,'instock',0,0.00,0,'taxable',''),(3626,'',0,0,0.0000,0.0000,0,NULL,'instock',0,0.00,0,'taxable',''),(3627,'',0,0,0.0000,0.0000,0,NULL,'instock',0,0.00,0,'taxable',''),(3628,'',0,0,0.0000,0.0000,0,NULL,'instock',0,0.00,0,'taxable',''),(3629,'',0,0,0.0000,0.0000,0,NULL,'instock',0,0.00,0,'taxable',''),(3630,'',0,0,0.0000,0.0000,0,NULL,'instock',0,0.00,0,'taxable',''),(3631,'',0,0,0.0000,0.0000,0,NULL,'instock',0,0.00,0,'taxable',''),(3632,'',0,0,0.0000,0.0000,0,NULL,'instock',0,0.00,0,'taxable',''),(3633,'',0,0,0.0000,0.0000,0,NULL,'instock',0,0.00,0,'taxable',''),(3634,'',0,0,0.0000,0.0000,0,NULL,'instock',0,0.00,0,'taxable',''),(3635,'',0,0,0.0000,0.0000,0,NULL,'instock',0,0.00,0,'taxable',''),(3636,'',0,0,0.0000,0.0000,0,NULL,'instock',0,0.00,0,'taxable',''),(3637,'',0,0,0.0000,0.0000,0,NULL,'instock',0,0.00,0,'taxable',''),(3638,'',0,0,0.0000,0.0000,0,NULL,'instock',0,0.00,0,'taxable',''),(3639,'',0,0,0.0000,0.0000,0,NULL,'instock',0,0.00,0,'taxable',''),(3640,'',0,0,0.0000,0.0000,0,NULL,'instock',0,0.00,0,'taxable',''),(3642,'',0,0,0.0000,0.0000,0,NULL,'instock',0,0.00,0,'taxable',''),(3643,'',0,0,0.0000,0.0000,0,NULL,'instock',0,0.00,0,'taxable',''),(3644,'',0,0,0.0000,0.0000,0,NULL,'instock',0,0.00,0,'taxable',''),(3645,'',0,0,0.0000,0.0000,0,NULL,'instock',0,0.00,0,'taxable',''),(3646,'',0,0,0.0000,0.0000,0,NULL,'instock',0,0.00,0,'taxable',''),(3647,'',0,0,0.0000,0.0000,0,NULL,'instock',0,0.00,0,'taxable',''),(3648,'',0,0,0.0000,0.0000,0,NULL,'instock',0,0.00,0,'taxable',''),(3649,'',0,0,0.0000,0.0000,0,NULL,'instock',0,0.00,0,'taxable',''),(3650,'',0,0,0.0000,0.0000,0,NULL,'instock',0,0.00,0,'taxable',''),(3651,'',0,0,0.0000,0.0000,0,NULL,'instock',0,0.00,0,'taxable',''),(3652,'',0,0,0.0000,0.0000,0,NULL,'instock',0,0.00,0,'taxable',''),(3653,'',0,0,0.0000,0.0000,0,NULL,'instock',0,0.00,0,'taxable',''),(3654,'',0,0,0.0000,0.0000,0,NULL,'instock',0,0.00,0,'taxable',''),(3655,'',0,0,0.0000,0.0000,0,NULL,'instock',0,0.00,0,'taxable',''),(3656,'',0,0,0.0000,0.0000,0,NULL,'instock',0,0.00,0,'taxable',''),(3658,'',0,0,0.0000,0.0000,0,NULL,'instock',0,0.00,0,'taxable',''),(3659,'',0,0,0.0000,0.0000,0,NULL,'instock',0,0.00,0,'taxable',''),(3661,'',0,0,0.0000,0.0000,0,NULL,'instock',0,0.00,0,'taxable',''),(3662,'',0,0,0.0000,0.0000,0,NULL,'instock',0,0.00,0,'taxable',''),(3664,'',0,0,0.0000,0.0000,0,NULL,'instock',0,0.00,0,'taxable',''),(3666,'',0,0,0.0000,0.0000,0,NULL,'instock',0,0.00,0,'taxable',''),(3670,'',0,0,0.0000,0.0000,0,NULL,'instock',0,0.00,0,'taxable',''),(3671,'',0,0,0.0000,0.0000,0,NULL,'instock',0,0.00,0,'taxable',''),(3672,'',0,0,0.0000,0.0000,0,NULL,'instock',0,0.00,0,'taxable',''),(3673,'',0,0,0.0000,0.0000,0,NULL,'instock',0,0.00,0,'taxable',''),(3731,'',0,0,0.0000,0.0000,0,NULL,'instock',0,0.00,0,'taxable','');
/*!40000 ALTER TABLE `wplf_wc_product_meta_lookup` ENABLE KEYS */;
UNLOCK TABLES;

-- Dumped table `wplf_wc_product_meta_lookup` with 142 row(s)
--

--
-- Table structure for table `wplf_woocommerce_payment_tokenmeta`
--

DROP TABLE IF EXISTS `wplf_woocommerce_payment_tokenmeta`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `wplf_woocommerce_payment_tokenmeta` (
  `meta_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `payment_token_id` bigint(20) unsigned NOT NULL,
  `meta_key` varchar(255) DEFAULT NULL,
  `meta_value` longtext DEFAULT NULL,
  PRIMARY KEY (`meta_id`),
  KEY `payment_token_id` (`payment_token_id`),
  KEY `meta_key` (`meta_key`(32))
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wplf_woocommerce_payment_tokenmeta`
--

LOCK TABLES `wplf_woocommerce_payment_tokenmeta` WRITE;
/*!40000 ALTER TABLE `wplf_woocommerce_payment_tokenmeta` DISABLE KEYS */;
/*!40000 ALTER TABLE `wplf_woocommerce_payment_tokenmeta` ENABLE KEYS */;
UNLOCK TABLES;

-- Dumped table `wplf_woocommerce_payment_tokenmeta` with 0 row(s)
--

--
-- Table structure for table `wplf_wd_fb_info`
--

DROP TABLE IF EXISTS `wplf_wd_fb_info`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `wplf_wd_fb_info` (
  `id` int(10) NOT NULL AUTO_INCREMENT,
  `name` varchar(255) NOT NULL,
  `page_access_token` text NOT NULL,
  `type` varchar(10) NOT NULL,
  `content_type` varchar(15) NOT NULL,
  `content` varchar(256) NOT NULL,
  `content_url` varchar(512) NOT NULL,
  `timeline_type` varchar(16) NOT NULL,
  `from` varchar(32) NOT NULL,
  `limit` int(11) NOT NULL,
  `app_id` varchar(128) NOT NULL,
  `app_secret` varchar(256) NOT NULL,
  `exist_access` tinyint(1) NOT NULL,
  `access_token` varchar(256) NOT NULL,
  `order` bigint(20) DEFAULT NULL,
  `published` tinyint(1) NOT NULL,
  `update_mode` varchar(16) NOT NULL,
  `fb_view_type` varchar(25) NOT NULL,
  `theme` int(11) DEFAULT NULL,
  `masonry_hor_ver` varchar(255) DEFAULT NULL,
  `image_max_columns` int(11) DEFAULT NULL,
  `thumb_width` int(11) DEFAULT NULL,
  `thumb_height` int(11) DEFAULT NULL,
  `thumb_comments` int(11) DEFAULT NULL,
  `thumb_likes` int(11) DEFAULT NULL,
  `thumb_name` int(11) DEFAULT NULL,
  `blog_style_width` int(11) DEFAULT NULL,
  `blog_style_height` varchar(15) DEFAULT NULL,
  `blog_style_view_type` int(11) DEFAULT NULL,
  `blog_style_comments` int(11) DEFAULT NULL,
  `blog_style_likes` int(11) DEFAULT NULL,
  `blog_style_message_desc` int(11) DEFAULT NULL,
  `blog_style_shares` int(11) DEFAULT NULL,
  `blog_style_shares_butt` int(11) DEFAULT NULL,
  `blog_style_facebook` int(11) DEFAULT NULL,
  `blog_style_twitter` int(11) DEFAULT NULL,
  `blog_style_google` int(11) DEFAULT NULL,
  `blog_style_author` int(11) DEFAULT NULL,
  `blog_style_name` int(11) DEFAULT NULL,
  `blog_style_place_name` int(11) DEFAULT NULL,
  `fb_name` int(11) DEFAULT NULL,
  `fb_plugin` int(11) DEFAULT NULL,
  `album_max_columns` int(11) DEFAULT NULL,
  `album_title` varchar(15) DEFAULT NULL,
  `album_thumb_width` int(11) DEFAULT NULL,
  `album_thumb_height` int(11) DEFAULT NULL,
  `album_image_max_columns` int(11) DEFAULT NULL,
  `album_image_thumb_width` int(11) DEFAULT NULL,
  `album_image_thumb_height` int(11) DEFAULT NULL,
  `pagination_type` int(11) DEFAULT NULL,
  `objects_per_page` int(11) DEFAULT NULL,
  `popup_fullscreen` int(11) DEFAULT NULL,
  `popup_width` int(11) NOT NULL,
  `popup_height` int(11) DEFAULT NULL,
  `popup_effect` varchar(255) DEFAULT NULL,
  `popup_autoplay` int(11) DEFAULT NULL,
  `open_commentbox` int(11) DEFAULT NULL,
  `popup_interval` int(11) DEFAULT NULL,
  `popup_enable_filmstrip` int(11) DEFAULT NULL,
  `popup_filmstrip_height` int(11) DEFAULT NULL,
  `popup_comments` int(11) DEFAULT NULL,
  `popup_likes` int(11) DEFAULT NULL,
  `popup_shares` int(11) DEFAULT NULL,
  `popup_author` int(11) DEFAULT NULL,
  `popup_name` int(11) DEFAULT NULL,
  `popup_place_name` int(11) DEFAULT NULL,
  `popup_enable_ctrl_btn` int(11) DEFAULT NULL,
  `popup_enable_fullscreen` int(11) DEFAULT NULL,
  `popup_enable_info_btn` int(11) DEFAULT NULL,
  `popup_message_desc` int(11) DEFAULT NULL,
  `popup_enable_facebook` int(11) DEFAULT NULL,
  `popup_enable_twitter` int(11) DEFAULT NULL,
  `popup_enable_google` int(11) DEFAULT NULL,
  `view_on_fb` tinyint(1) NOT NULL,
  `post_text_length` bigint(20) NOT NULL,
  `event_street` tinyint(1) NOT NULL,
  `event_city` tinyint(1) NOT NULL,
  `event_country` tinyint(1) NOT NULL,
  `event_zip` tinyint(1) NOT NULL,
  `event_map` tinyint(1) NOT NULL,
  `event_date` tinyint(1) NOT NULL,
  `event_desp_length` bigint(20) NOT NULL,
  `comments_replies` tinyint(1) NOT NULL,
  `comments_filter` varchar(32) NOT NULL,
  `comments_order` varchar(32) NOT NULL,
  `page_plugin_pos` varchar(8) NOT NULL,
  `page_plugin_fans` tinyint(1) NOT NULL,
  `page_plugin_cover` tinyint(1) NOT NULL,
  `page_plugin_header` tinyint(1) NOT NULL,
  `page_plugin_width` int(4) NOT NULL,
  `image_onclick_action` varchar(32) NOT NULL,
  `event_order` tinyint(4) NOT NULL,
  `upcoming_events` tinyint(4) NOT NULL,
  `fb_page_id` varchar(32) NOT NULL,
  PRIMARY KEY (`id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wplf_wd_fb_info`
--

LOCK TABLES `wplf_wd_fb_info` WRITE;
/*!40000 ALTER TABLE `wplf_wd_fb_info` DISABLE KEYS */;
/*!40000 ALTER TABLE `wplf_wd_fb_info` ENABLE KEYS */;
UNLOCK TABLES;

-- Dumped table `wplf_wd_fb_info` with 0 row(s)
--

--
-- Table structure for table `wplf_woocommerce_shipping_zone_methods`
--

DROP TABLE IF EXISTS `wplf_woocommerce_shipping_zone_methods`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `wplf_woocommerce_shipping_zone_methods` (
  `zone_id` bigint(20) unsigned NOT NULL,
  `instance_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `method_id` varchar(200) NOT NULL,
  `method_order` bigint(20) unsigned NOT NULL,
  `is_enabled` tinyint(1) NOT NULL DEFAULT 1,
  PRIMARY KEY (`instance_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wplf_woocommerce_shipping_zone_methods`
--

LOCK TABLES `wplf_woocommerce_shipping_zone_methods` WRITE;
/*!40000 ALTER TABLE `wplf_woocommerce_shipping_zone_methods` DISABLE KEYS */;
/*!40000 ALTER TABLE `wplf_woocommerce_shipping_zone_methods` ENABLE KEYS */;
UNLOCK TABLES;

-- Dumped table `wplf_woocommerce_shipping_zone_methods` with 0 row(s)
--

--
-- Table structure for table `wplf_options`
--

DROP TABLE IF EXISTS `wplf_options`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `wplf_options` (
  `option_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `option_name` varchar(191) NOT NULL DEFAULT '',
  `option_value` longtext NOT NULL,
  `autoload` varchar(20) NOT NULL DEFAULT 'yes',
  PRIMARY KEY (`option_id`),
  UNIQUE KEY `option_name` (`option_name`),
  KEY `autoload` (`autoload`)
) ENGINE=MyISAM AUTO_INCREMENT=67451 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wplf_options`
--

LOCK TABLES `wplf_options` WRITE;
/*!40000 ALTER TABLE `wplf_options` DISABLE KEYS */;
INSERT INTO `wplf_options` VALUES (1,'siteurl','https://farmchemie.yasithawd.com','yes'),(2,'home','https://farmchemie.yasithawd.com','yes'),(3,'blogname','Farmchemie','yes'),(4,'blogdescription','Home for veterinary and animal healthcare products','yes'),(5,'users_can_register','0','yes'),(6,'admin_email','yasitha.p.m@gmail.com','yes'),(7,'start_of_week','1','yes'),(8,'use_balanceTags','0','yes'),(9,'use_smilies','1','yes'),(10,'require_name_email','','yes'),(11,'comments_notify','','yes'),(12,'posts_per_rss','10','yes'),(13,'rss_use_excerpt','0','yes'),(14,'mailserver_url','mail.example.com','yes'),(15,'mailserver_login','login@example.com','yes'),(16,'mailserver_pass','password','yes'),(17,'mailserver_port','110','yes'),(18,'default_category','1','yes'),(19,'default_comment_status','','yes'),(20,'default_ping_status','','yes'),(21,'default_pingback_flag','','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','1','yes'),(27,'moderation_notify','1','yes'),(28,'permalink_structure','/%year%/%monthnum%/%day%/%postname%/','yes'),(29,'rewrite_rules','a:328:{s:24:\"^wc-auth/v([1]{1})/(.*)?\";s:63:\"index.php?wc-auth-version=$matches[1]&wc-auth-route=$matches[2]\";s:22:\"^wc-api/v([1-3]{1})/?$\";s:51:\"index.php?wc-api-version=$matches[1]&wc-api-route=/\";s:24:\"^wc-api/v([1-3]{1})(.*)?\";s:61:\"index.php?wc-api-version=$matches[1]&wc-api-route=$matches[2]\";s:11:\"products/?$\";s:27:\"index.php?post_type=product\";s:41:\"products/feed/(feed|rdf|rss|rss2|atom)/?$\";s:44:\"index.php?post_type=product&feed=$matches[1]\";s:36:\"products/(feed|rdf|rss|rss2|atom)/?$\";s:44:\"index.php?post_type=product&feed=$matches[1]\";s:28:\"products/page/([0-9]{1,})/?$\";s:45:\"index.php?post_type=product&paged=$matches[1]\";s:11:\"^wp-json/?$\";s:22:\"index.php?rest_route=/\";s:14:\"^wp-json/(.*)?\";s:33:\"index.php?rest_route=/$matches[1]\";s:21:\"^index.php/wp-json/?$\";s:22:\"index.php?rest_route=/\";s:24:\"^index.php/wp-json/(.*)?\";s:33:\"index.php?rest_route=/$matches[1]\";s:17:\"^wp-sitemap\\.xml$\";s:23:\"index.php?sitemap=index\";s:17:\"^wp-sitemap\\.xsl$\";s:36:\"index.php?sitemap-stylesheet=sitemap\";s:23:\"^wp-sitemap-index\\.xsl$\";s:34:\"index.php?sitemap-stylesheet=index\";s:48:\"^wp-sitemap-([a-z]+?)-([a-z\\d_-]+?)-(\\d+?)\\.xml$\";s:75:\"index.php?sitemap=$matches[1]&sitemap-subtype=$matches[2]&paged=$matches[3]\";s:34:\"^wp-sitemap-([a-z]+?)-(\\d+?)\\.xml$\";s:47:\"index.php?sitemap=$matches[1]&paged=$matches[2]\";s:10:\"project/?$\";s:32:\"index.php?post_type=dt_portfolio\";s:40:\"project/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?post_type=dt_portfolio&feed=$matches[1]\";s:35:\"project/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?post_type=dt_portfolio&feed=$matches[1]\";s:27:\"project/page/([0-9]{1,})/?$\";s:50:\"index.php?post_type=dt_portfolio&paged=$matches[1]\";s:10:\"dt_team/?$\";s:27:\"index.php?post_type=dt_team\";s:40:\"dt_team/feed/(feed|rdf|rss|rss2|atom)/?$\";s:44:\"index.php?post_type=dt_team&feed=$matches[1]\";s:35:\"dt_team/(feed|rdf|rss|rss2|atom)/?$\";s:44:\"index.php?post_type=dt_team&feed=$matches[1]\";s:27:\"dt_team/page/([0-9]{1,})/?$\";s:45:\"index.php?post_type=dt_team&paged=$matches[1]\";s:15:\"dt_slideshow/?$\";s:32:\"index.php?post_type=dt_slideshow\";s:45:\"dt_slideshow/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?post_type=dt_slideshow&feed=$matches[1]\";s:40:\"dt_slideshow/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?post_type=dt_slideshow&feed=$matches[1]\";s:32:\"dt_slideshow/page/([0-9]{1,})/?$\";s:50:\"index.php?post_type=dt_slideshow&paged=$matches[1]\";s:13:\"dt_gallery/?$\";s:30:\"index.php?post_type=dt_gallery\";s:43:\"dt_gallery/feed/(feed|rdf|rss|rss2|atom)/?$\";s:47:\"index.php?post_type=dt_gallery&feed=$matches[1]\";s:38:\"dt_gallery/(feed|rdf|rss|rss2|atom)/?$\";s:47:\"index.php?post_type=dt_gallery&feed=$matches[1]\";s:30:\"dt_gallery/page/([0-9]{1,})/?$\";s:48:\"index.php?post_type=dt_gallery&paged=$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:32:\"category/(.+?)/wc-api(/(.*))?/?$\";s:54:\"index.php?category_name=$matches[1]&wc-api=$matches[3]\";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:29:\"tag/([^/]+)/wc-api(/(.*))?/?$\";s:44:\"index.php?tag=$matches[1]&wc-api=$matches[3]\";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:42:\"e-landing-page/[^/]+/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:52:\"e-landing-page/[^/]+/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:72:\"e-landing-page/[^/]+/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:67:\"e-landing-page/[^/]+/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:67:\"e-landing-page/[^/]+/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:48:\"e-landing-page/[^/]+/attachment/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:31:\"e-landing-page/([^/]+)/embed/?$\";s:47:\"index.php?e-landing-page=$matches[1]&embed=true\";s:35:\"e-landing-page/([^/]+)/trackback/?$\";s:41:\"index.php?e-landing-page=$matches[1]&tb=1\";s:43:\"e-landing-page/([^/]+)/page/?([0-9]{1,})/?$\";s:54:\"index.php?e-landing-page=$matches[1]&paged=$matches[2]\";s:50:\"e-landing-page/([^/]+)/comment-page-([0-9]{1,})/?$\";s:54:\"index.php?e-landing-page=$matches[1]&cpage=$matches[2]\";s:40:\"e-landing-page/([^/]+)/wc-api(/(.*))?/?$\";s:55:\"index.php?e-landing-page=$matches[1]&wc-api=$matches[3]\";s:46:\"e-landing-page/[^/]+/([^/]+)/wc-api(/(.*))?/?$\";s:51:\"index.php?attachment=$matches[1]&wc-api=$matches[3]\";s:57:\"e-landing-page/[^/]+/attachment/([^/]+)/wc-api(/(.*))?/?$\";s:51:\"index.php?attachment=$matches[1]&wc-api=$matches[3]\";s:39:\"e-landing-page/([^/]+)(?:/([0-9]+))?/?$\";s:53:\"index.php?e-landing-page=$matches[1]&page=$matches[2]\";s:31:\"e-landing-page/[^/]+/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:41:\"e-landing-page/[^/]+/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:61:\"e-landing-page/[^/]+/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:56:\"e-landing-page/[^/]+/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:56:\"e-landing-page/[^/]+/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:37:\"e-landing-page/[^/]+/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:55:\"product-category/(.+?)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:50:\"index.php?product_cat=$matches[1]&feed=$matches[2]\";s:50:\"product-category/(.+?)/(feed|rdf|rss|rss2|atom)/?$\";s:50:\"index.php?product_cat=$matches[1]&feed=$matches[2]\";s:31:\"product-category/(.+?)/embed/?$\";s:44:\"index.php?product_cat=$matches[1]&embed=true\";s:43:\"product-category/(.+?)/page/?([0-9]{1,})/?$\";s:51:\"index.php?product_cat=$matches[1]&paged=$matches[2]\";s:25:\"product-category/(.+?)/?$\";s:33:\"index.php?product_cat=$matches[1]\";s:52:\"product-tag/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:50:\"index.php?product_tag=$matches[1]&feed=$matches[2]\";s:47:\"product-tag/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:50:\"index.php?product_tag=$matches[1]&feed=$matches[2]\";s:28:\"product-tag/([^/]+)/embed/?$\";s:44:\"index.php?product_tag=$matches[1]&embed=true\";s:40:\"product-tag/([^/]+)/page/?([0-9]{1,})/?$\";s:51:\"index.php?product_tag=$matches[1]&paged=$matches[2]\";s:22:\"product-tag/([^/]+)/?$\";s:33:\"index.php?product_tag=$matches[1]\";s:35:\"product/[^/]+/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:45:\"product/[^/]+/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:65:\"product/[^/]+/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:60:\"product/[^/]+/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:60:\"product/[^/]+/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:41:\"product/[^/]+/attachment/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:24:\"product/([^/]+)/embed/?$\";s:40:\"index.php?product=$matches[1]&embed=true\";s:28:\"product/([^/]+)/trackback/?$\";s:34:\"index.php?product=$matches[1]&tb=1\";s:48:\"product/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:46:\"index.php?product=$matches[1]&feed=$matches[2]\";s:43:\"product/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:46:\"index.php?product=$matches[1]&feed=$matches[2]\";s:36:\"product/([^/]+)/page/?([0-9]{1,})/?$\";s:47:\"index.php?product=$matches[1]&paged=$matches[2]\";s:43:\"product/([^/]+)/comment-page-([0-9]{1,})/?$\";s:47:\"index.php?product=$matches[1]&cpage=$matches[2]\";s:33:\"product/([^/]+)/wc-api(/(.*))?/?$\";s:48:\"index.php?product=$matches[1]&wc-api=$matches[3]\";s:39:\"product/[^/]+/([^/]+)/wc-api(/(.*))?/?$\";s:51:\"index.php?attachment=$matches[1]&wc-api=$matches[3]\";s:50:\"product/[^/]+/attachment/([^/]+)/wc-api(/(.*))?/?$\";s:51:\"index.php?attachment=$matches[1]&wc-api=$matches[3]\";s:32:\"product/([^/]+)(?:/([0-9]+))?/?$\";s:46:\"index.php?product=$matches[1]&page=$matches[2]\";s:24:\"product/[^/]+/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:34:\"product/[^/]+/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:54:\"product/[^/]+/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:49:\"product/[^/]+/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:49:\"product/[^/]+/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:30:\"product/[^/]+/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:55:\"project-category/(.+?)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:60:\"index.php?dt_portfolio_category=$matches[1]&feed=$matches[2]\";s:50:\"project-category/(.+?)/(feed|rdf|rss|rss2|atom)/?$\";s:60:\"index.php?dt_portfolio_category=$matches[1]&feed=$matches[2]\";s:31:\"project-category/(.+?)/embed/?$\";s:54:\"index.php?dt_portfolio_category=$matches[1]&embed=true\";s:43:\"project-category/(.+?)/page/?([0-9]{1,})/?$\";s:61:\"index.php?dt_portfolio_category=$matches[1]&paged=$matches[2]\";s:25:\"project-category/(.+?)/?$\";s:43:\"index.php?dt_portfolio_category=$matches[1]\";s:52:\"project-tag/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:56:\"index.php?dt_portfolio_tags=$matches[1]&feed=$matches[2]\";s:47:\"project-tag/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:56:\"index.php?dt_portfolio_tags=$matches[1]&feed=$matches[2]\";s:28:\"project-tag/([^/]+)/embed/?$\";s:50:\"index.php?dt_portfolio_tags=$matches[1]&embed=true\";s:40:\"project-tag/([^/]+)/page/?([0-9]{1,})/?$\";s:57:\"index.php?dt_portfolio_tags=$matches[1]&paged=$matches[2]\";s:22:\"project-tag/([^/]+)/?$\";s:39:\"index.php?dt_portfolio_tags=$matches[1]\";s:55:\"dt_team_category/(.+?)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:55:\"index.php?dt_team_category=$matches[1]&feed=$matches[2]\";s:50:\"dt_team_category/(.+?)/(feed|rdf|rss|rss2|atom)/?$\";s:55:\"index.php?dt_team_category=$matches[1]&feed=$matches[2]\";s:31:\"dt_team_category/(.+?)/embed/?$\";s:49:\"index.php?dt_team_category=$matches[1]&embed=true\";s:43:\"dt_team_category/(.+?)/page/?([0-9]{1,})/?$\";s:56:\"index.php?dt_team_category=$matches[1]&paged=$matches[2]\";s:25:\"dt_team_category/(.+?)/?$\";s:38:\"index.php?dt_team_category=$matches[1]\";s:58:\"dt_gallery_category/(.+?)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:58:\"index.php?dt_gallery_category=$matches[1]&feed=$matches[2]\";s:53:\"dt_gallery_category/(.+?)/(feed|rdf|rss|rss2|atom)/?$\";s:58:\"index.php?dt_gallery_category=$matches[1]&feed=$matches[2]\";s:34:\"dt_gallery_category/(.+?)/embed/?$\";s:52:\"index.php?dt_gallery_category=$matches[1]&embed=true\";s:46:\"dt_gallery_category/(.+?)/page/?([0-9]{1,})/?$\";s:59:\"index.php?dt_gallery_category=$matches[1]&paged=$matches[2]\";s:28:\"dt_gallery_category/(.+?)/?$\";s:41:\"index.php?dt_gallery_category=$matches[1]\";s:35:\"project/[^/]+/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:45:\"project/[^/]+/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:65:\"project/[^/]+/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:60:\"project/[^/]+/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:60:\"project/[^/]+/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:41:\"project/[^/]+/attachment/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:24:\"project/([^/]+)/embed/?$\";s:45:\"index.php?dt_portfolio=$matches[1]&embed=true\";s:28:\"project/([^/]+)/trackback/?$\";s:39:\"index.php?dt_portfolio=$matches[1]&tb=1\";s:48:\"project/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:51:\"index.php?dt_portfolio=$matches[1]&feed=$matches[2]\";s:43:\"project/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:51:\"index.php?dt_portfolio=$matches[1]&feed=$matches[2]\";s:36:\"project/([^/]+)/page/?([0-9]{1,})/?$\";s:52:\"index.php?dt_portfolio=$matches[1]&paged=$matches[2]\";s:43:\"project/([^/]+)/comment-page-([0-9]{1,})/?$\";s:52:\"index.php?dt_portfolio=$matches[1]&cpage=$matches[2]\";s:33:\"project/([^/]+)/wc-api(/(.*))?/?$\";s:53:\"index.php?dt_portfolio=$matches[1]&wc-api=$matches[3]\";s:39:\"project/[^/]+/([^/]+)/wc-api(/(.*))?/?$\";s:51:\"index.php?attachment=$matches[1]&wc-api=$matches[3]\";s:50:\"project/[^/]+/attachment/([^/]+)/wc-api(/(.*))?/?$\";s:51:\"index.php?attachment=$matches[1]&wc-api=$matches[3]\";s:32:\"project/([^/]+)(?:/([0-9]+))?/?$\";s:51:\"index.php?dt_portfolio=$matches[1]&page=$matches[2]\";s:24:\"project/[^/]+/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:34:\"project/[^/]+/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:54:\"project/[^/]+/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:49:\"project/[^/]+/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:49:\"project/[^/]+/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:30:\"project/[^/]+/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:35:\"dt_team/[^/]+/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:45:\"dt_team/[^/]+/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:65:\"dt_team/[^/]+/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:60:\"dt_team/[^/]+/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:60:\"dt_team/[^/]+/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:41:\"dt_team/[^/]+/attachment/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:24:\"dt_team/([^/]+)/embed/?$\";s:40:\"index.php?dt_team=$matches[1]&embed=true\";s:28:\"dt_team/([^/]+)/trackback/?$\";s:34:\"index.php?dt_team=$matches[1]&tb=1\";s:48:\"dt_team/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:46:\"index.php?dt_team=$matches[1]&feed=$matches[2]\";s:43:\"dt_team/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:46:\"index.php?dt_team=$matches[1]&feed=$matches[2]\";s:36:\"dt_team/([^/]+)/page/?([0-9]{1,})/?$\";s:47:\"index.php?dt_team=$matches[1]&paged=$matches[2]\";s:43:\"dt_team/([^/]+)/comment-page-([0-9]{1,})/?$\";s:47:\"index.php?dt_team=$matches[1]&cpage=$matches[2]\";s:33:\"dt_team/([^/]+)/wc-api(/(.*))?/?$\";s:48:\"index.php?dt_team=$matches[1]&wc-api=$matches[3]\";s:39:\"dt_team/[^/]+/([^/]+)/wc-api(/(.*))?/?$\";s:51:\"index.php?attachment=$matches[1]&wc-api=$matches[3]\";s:50:\"dt_team/[^/]+/attachment/([^/]+)/wc-api(/(.*))?/?$\";s:51:\"index.php?attachment=$matches[1]&wc-api=$matches[3]\";s:32:\"dt_team/([^/]+)(?:/([0-9]+))?/?$\";s:46:\"index.php?dt_team=$matches[1]&page=$matches[2]\";s:24:\"dt_team/[^/]+/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:34:\"dt_team/[^/]+/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:54:\"dt_team/[^/]+/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:49:\"dt_team/[^/]+/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:49:\"dt_team/[^/]+/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:30:\"dt_team/[^/]+/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:40:\"dt_slideshow/[^/]+/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:50:\"dt_slideshow/[^/]+/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:70:\"dt_slideshow/[^/]+/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:65:\"dt_slideshow/[^/]+/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:65:\"dt_slideshow/[^/]+/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:46:\"dt_slideshow/[^/]+/attachment/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:29:\"dt_slideshow/([^/]+)/embed/?$\";s:45:\"index.php?dt_slideshow=$matches[1]&embed=true\";s:33:\"dt_slideshow/([^/]+)/trackback/?$\";s:39:\"index.php?dt_slideshow=$matches[1]&tb=1\";s:53:\"dt_slideshow/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:51:\"index.php?dt_slideshow=$matches[1]&feed=$matches[2]\";s:48:\"dt_slideshow/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:51:\"index.php?dt_slideshow=$matches[1]&feed=$matches[2]\";s:41:\"dt_slideshow/([^/]+)/page/?([0-9]{1,})/?$\";s:52:\"index.php?dt_slideshow=$matches[1]&paged=$matches[2]\";s:48:\"dt_slideshow/([^/]+)/comment-page-([0-9]{1,})/?$\";s:52:\"index.php?dt_slideshow=$matches[1]&cpage=$matches[2]\";s:38:\"dt_slideshow/([^/]+)/wc-api(/(.*))?/?$\";s:53:\"index.php?dt_slideshow=$matches[1]&wc-api=$matches[3]\";s:44:\"dt_slideshow/[^/]+/([^/]+)/wc-api(/(.*))?/?$\";s:51:\"index.php?attachment=$matches[1]&wc-api=$matches[3]\";s:55:\"dt_slideshow/[^/]+/attachment/([^/]+)/wc-api(/(.*))?/?$\";s:51:\"index.php?attachment=$matches[1]&wc-api=$matches[3]\";s:37:\"dt_slideshow/([^/]+)(?:/([0-9]+))?/?$\";s:51:\"index.php?dt_slideshow=$matches[1]&page=$matches[2]\";s:29:\"dt_slideshow/[^/]+/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:39:\"dt_slideshow/[^/]+/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:59:\"dt_slideshow/[^/]+/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:54:\"dt_slideshow/[^/]+/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:54:\"dt_slideshow/[^/]+/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:35:\"dt_slideshow/[^/]+/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:38:\"dt_gallery/[^/]+/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:48:\"dt_gallery/[^/]+/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:68:\"dt_gallery/[^/]+/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:63:\"dt_gallery/[^/]+/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:63:\"dt_gallery/[^/]+/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:44:\"dt_gallery/[^/]+/attachment/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:27:\"dt_gallery/([^/]+)/embed/?$\";s:43:\"index.php?dt_gallery=$matches[1]&embed=true\";s:31:\"dt_gallery/([^/]+)/trackback/?$\";s:37:\"index.php?dt_gallery=$matches[1]&tb=1\";s:51:\"dt_gallery/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?dt_gallery=$matches[1]&feed=$matches[2]\";s:46:\"dt_gallery/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?dt_gallery=$matches[1]&feed=$matches[2]\";s:39:\"dt_gallery/([^/]+)/page/?([0-9]{1,})/?$\";s:50:\"index.php?dt_gallery=$matches[1]&paged=$matches[2]\";s:46:\"dt_gallery/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?dt_gallery=$matches[1]&cpage=$matches[2]\";s:36:\"dt_gallery/([^/]+)/wc-api(/(.*))?/?$\";s:51:\"index.php?dt_gallery=$matches[1]&wc-api=$matches[3]\";s:42:\"dt_gallery/[^/]+/([^/]+)/wc-api(/(.*))?/?$\";s:51:\"index.php?attachment=$matches[1]&wc-api=$matches[3]\";s:53:\"dt_gallery/[^/]+/attachment/([^/]+)/wc-api(/(.*))?/?$\";s:51:\"index.php?attachment=$matches[1]&wc-api=$matches[3]\";s:35:\"dt_gallery/([^/]+)(?:/([0-9]+))?/?$\";s:49:\"index.php?dt_gallery=$matches[1]&page=$matches[2]\";s:27:\"dt_gallery/[^/]+/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:37:\"dt_gallery/[^/]+/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:57:\"dt_gallery/[^/]+/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:52:\"dt_gallery/[^/]+/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:52:\"dt_gallery/[^/]+/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:33:\"dt_gallery/[^/]+/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:40:\"vc_grid_item/[^/]+/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:50:\"vc_grid_item/[^/]+/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:70:\"vc_grid_item/[^/]+/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:65:\"vc_grid_item/[^/]+/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:65:\"vc_grid_item/[^/]+/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:46:\"vc_grid_item/[^/]+/attachment/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:29:\"vc_grid_item/([^/]+)/embed/?$\";s:45:\"index.php?vc_grid_item=$matches[1]&embed=true\";s:33:\"vc_grid_item/([^/]+)/trackback/?$\";s:39:\"index.php?vc_grid_item=$matches[1]&tb=1\";s:41:\"vc_grid_item/([^/]+)/page/?([0-9]{1,})/?$\";s:52:\"index.php?vc_grid_item=$matches[1]&paged=$matches[2]\";s:48:\"vc_grid_item/([^/]+)/comment-page-([0-9]{1,})/?$\";s:52:\"index.php?vc_grid_item=$matches[1]&cpage=$matches[2]\";s:38:\"vc_grid_item/([^/]+)/wc-api(/(.*))?/?$\";s:53:\"index.php?vc_grid_item=$matches[1]&wc-api=$matches[3]\";s:44:\"vc_grid_item/[^/]+/([^/]+)/wc-api(/(.*))?/?$\";s:51:\"index.php?attachment=$matches[1]&wc-api=$matches[3]\";s:55:\"vc_grid_item/[^/]+/attachment/([^/]+)/wc-api(/(.*))?/?$\";s:51:\"index.php?attachment=$matches[1]&wc-api=$matches[3]\";s:37:\"vc_grid_item/([^/]+)(?:/([0-9]+))?/?$\";s:51:\"index.php?vc_grid_item=$matches[1]&page=$matches[2]\";s:29:\"vc_grid_item/[^/]+/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:39:\"vc_grid_item/[^/]+/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:59:\"vc_grid_item/[^/]+/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:54:\"vc_grid_item/[^/]+/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:54:\"vc_grid_item/[^/]+/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:35:\"vc_grid_item/[^/]+/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";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:27:\"comment-page-([0-9]{1,})/?$\";s:41:\"index.php?&page_id=2525&cpage=$matches[1]\";s:17:\"wc-api(/(.*))?/?$\";s:29:\"index.php?&wc-api=$matches[2]\";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:26:\"comments/wc-api(/(.*))?/?$\";s:29:\"index.php?&wc-api=$matches[2]\";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:29:\"search/(.+)/wc-api(/(.*))?/?$\";s:42:\"index.php?s=$matches[1]&wc-api=$matches[3]\";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:32:\"author/([^/]+)/wc-api(/(.*))?/?$\";s:52:\"index.php?author_name=$matches[1]&wc-api=$matches[3]\";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:54:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/wc-api(/(.*))?/?$\";s:82:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&wc-api=$matches[5]\";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:41:\"([0-9]{4})/([0-9]{1,2})/wc-api(/(.*))?/?$\";s:66:\"index.php?year=$matches[1]&monthnum=$matches[2]&wc-api=$matches[4]\";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:28:\"([0-9]{4})/wc-api(/(.*))?/?$\";s:45:\"index.php?year=$matches[1]&wc-api=$matches[3]\";s:13:\"([0-9]{4})/?$\";s:26:\"index.php?year=$matches[1]\";s:58:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:68:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:88:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:83:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:83:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:64:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/attachment/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:53:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/([^/]+)/embed/?$\";s:91:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&name=$matches[4]&embed=true\";s:57:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/([^/]+)/trackback/?$\";s:85:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&name=$matches[4]&tb=1\";s:77:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:97:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&name=$matches[4]&feed=$matches[5]\";s:72:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:97:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&name=$matches[4]&feed=$matches[5]\";s:65:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/([^/]+)/page/?([0-9]{1,})/?$\";s:98:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&name=$matches[4]&paged=$matches[5]\";s:72:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/([^/]+)/comment-page-([0-9]{1,})/?$\";s:98:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&name=$matches[4]&cpage=$matches[5]\";s:62:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/([^/]+)/wc-api(/(.*))?/?$\";s:99:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&name=$matches[4]&wc-api=$matches[6]\";s:62:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/([^/]+)/wc-api(/(.*))?/?$\";s:51:\"index.php?attachment=$matches[1]&wc-api=$matches[3]\";s:73:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/attachment/([^/]+)/wc-api(/(.*))?/?$\";s:51:\"index.php?attachment=$matches[1]&wc-api=$matches[3]\";s:61:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/([^/]+)(?:/([0-9]+))?/?$\";s:97:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&name=$matches[4]&page=$matches[5]\";s:47:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:57:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:77:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:72:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:72:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:53:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:64:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/comment-page-([0-9]{1,})/?$\";s:81:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&cpage=$matches[4]\";s:51:\"([0-9]{4})/([0-9]{1,2})/comment-page-([0-9]{1,})/?$\";s:65:\"index.php?year=$matches[1]&monthnum=$matches[2]&cpage=$matches[3]\";s:38:\"([0-9]{4})/comment-page-([0-9]{1,})/?$\";s:44:\"index.php?year=$matches[1]&cpage=$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: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:25:\"(.?.+?)/wc-api(/(.*))?/?$\";s:49:\"index.php?pagename=$matches[1]&wc-api=$matches[3]\";s:28:\"(.?.+?)/order-pay(/(.*))?/?$\";s:52:\"index.php?pagename=$matches[1]&order-pay=$matches[3]\";s:33:\"(.?.+?)/order-received(/(.*))?/?$\";s:57:\"index.php?pagename=$matches[1]&order-received=$matches[3]\";s:25:\"(.?.+?)/orders(/(.*))?/?$\";s:49:\"index.php?pagename=$matches[1]&orders=$matches[3]\";s:29:\"(.?.+?)/view-order(/(.*))?/?$\";s:53:\"index.php?pagename=$matches[1]&view-order=$matches[3]\";s:28:\"(.?.+?)/downloads(/(.*))?/?$\";s:52:\"index.php?pagename=$matches[1]&downloads=$matches[3]\";s:31:\"(.?.+?)/edit-account(/(.*))?/?$\";s:55:\"index.php?pagename=$matches[1]&edit-account=$matches[3]\";s:31:\"(.?.+?)/edit-address(/(.*))?/?$\";s:55:\"index.php?pagename=$matches[1]&edit-address=$matches[3]\";s:34:\"(.?.+?)/payment-methods(/(.*))?/?$\";s:58:\"index.php?pagename=$matches[1]&payment-methods=$matches[3]\";s:32:\"(.?.+?)/lost-password(/(.*))?/?$\";s:56:\"index.php?pagename=$matches[1]&lost-password=$matches[3]\";s:34:\"(.?.+?)/customer-logout(/(.*))?/?$\";s:58:\"index.php?pagename=$matches[1]&customer-logout=$matches[3]\";s:37:\"(.?.+?)/add-payment-method(/(.*))?/?$\";s:61:\"index.php?pagename=$matches[1]&add-payment-method=$matches[3]\";s:40:\"(.?.+?)/delete-payment-method(/(.*))?/?$\";s:64:\"index.php?pagename=$matches[1]&delete-payment-method=$matches[3]\";s:45:\"(.?.+?)/set-default-payment-method(/(.*))?/?$\";s:69:\"index.php?pagename=$matches[1]&set-default-payment-method=$matches[3]\";s:31:\".?.+?/([^/]+)/wc-api(/(.*))?/?$\";s:51:\"index.php?attachment=$matches[1]&wc-api=$matches[3]\";s:42:\".?.+?/attachment/([^/]+)/wc-api(/(.*))?/?$\";s:51:\"index.php?attachment=$matches[1]&wc-api=$matches[3]\";s:24:\"(.?.+?)(?:/([0-9]+))?/?$\";s:47:\"index.php?pagename=$matches[1]&page=$matches[2]\";}','yes'),(30,'hack_file','0','yes'),(31,'blog_charset','UTF-8','yes'),(32,'moderation_keys','','no'),(33,'active_plugins','a:13:{i:1;s:41:\"Ultimate_VC_Addons/Ultimate_VC_Addons.php\";i:2;s:51:\"boldgrid-backup-premium/boldgrid-backup-premium.php\";i:3;s:35:\"boldgrid-backup/boldgrid-backup.php\";i:4;s:33:\"classic-editor/classic-editor.php\";i:5;s:36:\"contact-form-7/wp-contact-form-7.php\";i:6;s:29:\"dt-the7-core/dt-the7-core.php\";i:7;s:23:\"elementor/elementor.php\";i:8;s:22:\"font-awesome/index.php\";i:9;s:19:\"jetpack/jetpack.php\";i:10;s:27:\"js_composer/js_composer.php\";i:11;s:23:\"revslider/revslider.php\";i:12;s:83:\"woo-quote-or-enquiry-contact-form-7/woocommerce-quote-or-enquiry-contact-form-7.php\";i:13;s:27:\"woocommerce/woocommerce.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','dt-the7','yes'),(41,'stylesheet','dt-the7','yes'),(42,'comment_registration','','yes'),(43,'html_type','text/html','yes'),(44,'use_trackback','0','yes'),(45,'default_role','subscriber','yes'),(46,'db_version','55853','yes'),(47,'uploads_use_yearmonth_folders','1','yes'),(48,'upload_path','','yes'),(49,'blog_public','0','yes'),(50,'default_link_category','2','yes'),(51,'show_on_front','page','yes'),(52,'tag_base','','yes'),(53,'show_avatars','','yes'),(54,'avatar_rating','G','yes'),(55,'upload_url_path','','yes'),(56,'thumbnail_size_w','150','yes'),(57,'thumbnail_size_h','150','yes'),(58,'thumbnail_crop','1','yes'),(59,'medium_size_w','300','yes'),(60,'medium_size_h','300','yes'),(61,'avatar_default','mystery','yes'),(62,'large_size_w','1024','yes'),(63,'large_size_h','1024','yes'),(64,'image_default_link_type','none','yes'),(65,'image_default_size','','yes'),(66,'image_default_align','','yes'),(67,'close_comments_for_old_posts','','yes'),(68,'close_comments_days_old','14','yes'),(69,'thread_comments','','yes'),(70,'thread_comments_depth','5','yes'),(71,'page_comments','','yes'),(72,'comments_per_page','50','yes'),(73,'default_comments_page','newest','yes'),(74,'comment_order','asc','yes'),(75,'sticky_posts','a:0:{}','yes'),(76,'widget_categories','a:0:{}','yes'),(77,'widget_text','a:0:{}','yes'),(78,'widget_rss','a:0:{}','yes'),(79,'uninstall_plugins','a:4:{s:45:\"custom-facebook-feed/custom-facebook-feed.php\";a:2:{i:0;s:39:\"CustomFacebookFeed\\Custom_Facebook_Feed\";i:1;s:13:\"cff_uninstall\";}s:28:\"tagembed-widget/tagembed.php\";s:26:\"__tagembed__pluginUnistall\";s:23:\"elementor/elementor.php\";a:2:{i:0;s:21:\"Elementor\\Maintenance\";i:1;s:9:\"uninstall\";}s:39:\"wp-embed-facebook/wp-embed-facebook.php\";s:36:\"SIGAMI\\WP_Embed_FB\\Plugin::uninstall\";}','no'),(80,'timezone_string','','yes'),(81,'page_for_posts','0','yes'),(82,'page_on_front','2525','yes'),(83,'default_post_format','0','yes'),(84,'link_manager_enabled','0','yes'),(85,'finished_splitting_shared_terms','1','yes'),(86,'site_icon','0','yes'),(87,'medium_large_size_w','768','yes'),(88,'medium_large_size_h','0','yes'),(89,'wp_page_for_privacy_policy','3','yes'),(90,'show_comments_cookies_opt_in','','yes'),(91,'admin_email_lifespan','1707885098','yes'),(92,'disallowed_keys','','no'),(93,'comment_previously_approved','','yes'),(94,'auto_plugin_theme_update_emails','a:0:{}','no'),(95,'auto_update_core_dev','enabled','yes'),(96,'auto_update_core_minor','enabled','yes'),(97,'auto_update_core_major','enabled','yes'),(98,'wp_force_deactivated_plugins','a:0:{}','yes'),(99,'initial_db_version','53496','yes'),(100,'wplf_user_roles','a:7:{s:13:\"administrator\";a:2:{s:4:\"name\";s:13:\"Administrator\";s:12:\"capabilities\";a:115:{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:18:\"manage_woocommerce\";b:1;s:24:\"view_woocommerce_reports\";b:1;s:12:\"edit_product\";b:1;s:12:\"read_product\";b:1;s:14:\"delete_product\";b:1;s:13:\"edit_products\";b:1;s:20:\"edit_others_products\";b:1;s:16:\"publish_products\";b:1;s:21:\"read_private_products\";b:1;s:15:\"delete_products\";b:1;s:23:\"delete_private_products\";b:1;s:25:\"delete_published_products\";b:1;s:22:\"delete_others_products\";b:1;s:21:\"edit_private_products\";b:1;s:23:\"edit_published_products\";b:1;s:20:\"manage_product_terms\";b:1;s:18:\"edit_product_terms\";b:1;s:20:\"delete_product_terms\";b:1;s:20:\"assign_product_terms\";b:1;s:15:\"edit_shop_order\";b:1;s:15:\"read_shop_order\";b:1;s:17:\"delete_shop_order\";b:1;s:16:\"edit_shop_orders\";b:1;s:23:\"edit_others_shop_orders\";b:1;s:19:\"publish_shop_orders\";b:1;s:24:\"read_private_shop_orders\";b:1;s:18:\"delete_shop_orders\";b:1;s:26:\"delete_private_shop_orders\";b:1;s:28:\"delete_published_shop_orders\";b:1;s:25:\"delete_others_shop_orders\";b:1;s:24:\"edit_private_shop_orders\";b:1;s:26:\"edit_published_shop_orders\";b:1;s:23:\"manage_shop_order_terms\";b:1;s:21:\"edit_shop_order_terms\";b:1;s:23:\"delete_shop_order_terms\";b:1;s:23:\"assign_shop_order_terms\";b:1;s:16:\"edit_shop_coupon\";b:1;s:16:\"read_shop_coupon\";b:1;s:18:\"delete_shop_coupon\";b:1;s:17:\"edit_shop_coupons\";b:1;s:24:\"edit_others_shop_coupons\";b:1;s:20:\"publish_shop_coupons\";b:1;s:25:\"read_private_shop_coupons\";b:1;s:19:\"delete_shop_coupons\";b:1;s:27:\"delete_private_shop_coupons\";b:1;s:29:\"delete_published_shop_coupons\";b:1;s:26:\"delete_others_shop_coupons\";b:1;s:25:\"edit_private_shop_coupons\";b:1;s:27:\"edit_published_shop_coupons\";b:1;s:24:\"manage_shop_coupon_terms\";b:1;s:22:\"edit_shop_coupon_terms\";b:1;s:24:\"delete_shop_coupon_terms\";b:1;s:24:\"assign_shop_coupon_terms\";b:1;s:26:\"vc_access_rules_post_types\";b:1;}}s:6:\"editor\";a:2:{s:4:\"name\";s:6:\"Editor\";s:12:\"capabilities\";a:44:{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:26:\"vc_access_rules_post_types\";b:1;s:30:\"vc_access_rules_backend_editor\";b:1;s:31:\"vc_access_rules_frontend_editor\";b:1;s:31:\"vc_access_rules_unfiltered_html\";b:1;s:29:\"vc_access_rules_post_settings\";b:1;s:25:\"vc_access_rules_templates\";b:1;s:26:\"vc_access_rules_shortcodes\";b:1;s:28:\"vc_access_rules_grid_builder\";b:1;s:23:\"vc_access_rules_presets\";b:1;s:25:\"vc_access_rules_dragndrop\";b:1;}}s:6:\"author\";a:2:{s:4:\"name\";s:6:\"Author\";s:12:\"capabilities\";a:20:{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:26:\"vc_access_rules_post_types\";b:1;s:30:\"vc_access_rules_backend_editor\";b:1;s:31:\"vc_access_rules_frontend_editor\";b:1;s:31:\"vc_access_rules_unfiltered_html\";b:0;s:29:\"vc_access_rules_post_settings\";b:1;s:25:\"vc_access_rules_templates\";b:1;s:26:\"vc_access_rules_shortcodes\";b:1;s:28:\"vc_access_rules_grid_builder\";b:1;s:23:\"vc_access_rules_presets\";b:1;s:25:\"vc_access_rules_dragndrop\";b:1;}}s:11:\"contributor\";a:2:{s:4:\"name\";s:11:\"Contributor\";s:12:\"capabilities\";a:15:{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:26:\"vc_access_rules_post_types\";b:1;s:30:\"vc_access_rules_backend_editor\";b:0;s:31:\"vc_access_rules_frontend_editor\";b:0;s:31:\"vc_access_rules_unfiltered_html\";b:0;s:29:\"vc_access_rules_post_settings\";b:1;s:25:\"vc_access_rules_templates\";b:1;s:26:\"vc_access_rules_shortcodes\";b:1;s:28:\"vc_access_rules_grid_builder\";b:0;s:23:\"vc_access_rules_presets\";b:1;s:25:\"vc_access_rules_dragndrop\";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;}}s:8:\"customer\";a:2:{s:4:\"name\";s:8:\"Customer\";s:12:\"capabilities\";a:1:{s:4:\"read\";b:1;}}s:12:\"shop_manager\";a:2:{s:4:\"name\";s:12:\"Shop manager\";s:12:\"capabilities\";a:103:{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:4:\"read\";b:1;s:18:\"read_private_pages\";b:1;s:18:\"read_private_posts\";b:1;s:10:\"edit_posts\";b:1;s:10:\"edit_pages\";b:1;s:20:\"edit_published_posts\";b:1;s:20:\"edit_published_pages\";b:1;s:18:\"edit_private_pages\";b:1;s:18:\"edit_private_posts\";b:1;s:17:\"edit_others_posts\";b:1;s:17:\"edit_others_pages\";b:1;s:13:\"publish_posts\";b:1;s:13:\"publish_pages\";b:1;s:12:\"delete_posts\";b:1;s:12:\"delete_pages\";b:1;s:20:\"delete_private_pages\";b:1;s:20:\"delete_private_posts\";b:1;s:22:\"delete_published_pages\";b:1;s:22:\"delete_published_posts\";b:1;s:19:\"delete_others_posts\";b:1;s:19:\"delete_others_pages\";b:1;s:17:\"manage_categories\";b:1;s:12:\"manage_links\";b:1;s:17:\"moderate_comments\";b:1;s:12:\"upload_files\";b:1;s:6:\"export\";b:1;s:6:\"import\";b:1;s:10:\"list_users\";b:1;s:18:\"edit_theme_options\";b:1;s:18:\"manage_woocommerce\";b:1;s:24:\"view_woocommerce_reports\";b:1;s:12:\"edit_product\";b:1;s:12:\"read_product\";b:1;s:14:\"delete_product\";b:1;s:13:\"edit_products\";b:1;s:20:\"edit_others_products\";b:1;s:16:\"publish_products\";b:1;s:21:\"read_private_products\";b:1;s:15:\"delete_products\";b:1;s:23:\"delete_private_products\";b:1;s:25:\"delete_published_products\";b:1;s:22:\"delete_others_products\";b:1;s:21:\"edit_private_products\";b:1;s:23:\"edit_published_products\";b:1;s:20:\"manage_product_terms\";b:1;s:18:\"edit_product_terms\";b:1;s:20:\"delete_product_terms\";b:1;s:20:\"assign_product_terms\";b:1;s:15:\"edit_shop_order\";b:1;s:15:\"read_shop_order\";b:1;s:17:\"delete_shop_order\";b:1;s:16:\"edit_shop_orders\";b:1;s:23:\"edit_others_shop_orders\";b:1;s:19:\"publish_shop_orders\";b:1;s:24:\"read_private_shop_orders\";b:1;s:18:\"delete_shop_orders\";b:1;s:26:\"delete_private_shop_orders\";b:1;s:28:\"delete_published_shop_orders\";b:1;s:25:\"delete_others_shop_orders\";b:1;s:24:\"edit_private_shop_orders\";b:1;s:26:\"edit_published_shop_orders\";b:1;s:23:\"manage_shop_order_terms\";b:1;s:21:\"edit_shop_order_terms\";b:1;s:23:\"delete_shop_order_terms\";b:1;s:23:\"assign_shop_order_terms\";b:1;s:16:\"edit_shop_coupon\";b:1;s:16:\"read_shop_coupon\";b:1;s:18:\"delete_shop_coupon\";b:1;s:17:\"edit_shop_coupons\";b:1;s:24:\"edit_others_shop_coupons\";b:1;s:20:\"publish_shop_coupons\";b:1;s:25:\"read_private_shop_coupons\";b:1;s:19:\"delete_shop_coupons\";b:1;s:27:\"delete_private_shop_coupons\";b:1;s:29:\"delete_published_shop_coupons\";b:1;s:26:\"delete_others_shop_coupons\";b:1;s:25:\"edit_private_shop_coupons\";b:1;s:27:\"edit_published_shop_coupons\";b:1;s:24:\"manage_shop_coupon_terms\";b:1;s:22:\"edit_shop_coupon_terms\";b:1;s:24:\"delete_shop_coupon_terms\";b:1;s:24:\"assign_shop_coupon_terms\";b:1;s:34:\"vc_access_rules_post_types/product\";b:1;s:26:\"vc_access_rules_post_types\";s:6:\"custom\";s:30:\"vc_access_rules_backend_editor\";b:1;s:31:\"vc_access_rules_frontend_editor\";b:0;s:31:\"vc_access_rules_unfiltered_html\";b:0;s:29:\"vc_access_rules_post_settings\";b:1;s:25:\"vc_access_rules_templates\";b:1;s:26:\"vc_access_rules_shortcodes\";b:1;s:28:\"vc_access_rules_grid_builder\";b:0;s:23:\"vc_access_rules_presets\";b:1;s:25:\"vc_access_rules_dragndrop\";b:1;}}}','yes'),(101,'fresh_site','0','yes'),(102,'user_count','2','no'),(103,'widget_block','a:16:{i:2;a:1:{s:7:\"content\";s:19:\"<!-- wp:search /-->\";}i:3;a:1:{s:7:\"content\";s:154:\"<!-- wp:group --><div class=\"wp-block-group\"><!-- wp:heading --><h2>Recent Posts</h2><!-- /wp:heading --><!-- wp:latest-posts /--></div><!-- /wp:group -->\";}i:4;a:1:{s:7:\"content\";s:227:\"<!-- wp:group --><div class=\"wp-block-group\"><!-- wp:heading --><h2>Recent Comments</h2><!-- /wp:heading --><!-- wp:latest-comments {\"displayAvatar\":false,\"displayDate\":false,\"displayExcerpt\":false} /--></div><!-- /wp:group -->\";}i:5;a:1:{s:7:\"content\";s:146:\"<!-- wp:group --><div class=\"wp-block-group\"><!-- wp:heading --><h2>Archives</h2><!-- /wp:heading --><!-- wp:archives /--></div><!-- /wp:group -->\";}i:6;a:1:{s:7:\"content\";s:150:\"<!-- wp:group --><div class=\"wp-block-group\"><!-- wp:heading --><h2>Categories</h2><!-- /wp:heading --><!-- wp:categories /--></div><!-- /wp:group -->\";}i:16;a:1:{s:7:\"content\";s:1012:\"<!-- wp:group {\"layout\":{\"type\":\"flex\",\"orientation\":\"vertical\"}} -->\n<div class=\"wp-block-group\"><!-- wp:social-links {\"iconColor\":\"white\",\"iconColorValue\":\"#FFF\",\"openInNewTab\":true,\"size\":\"has-large-icon-size\",\"className\":\"is-style-logos-only\"} -->\n<ul class=\"wp-block-social-links has-large-icon-size has-icon-color is-style-logos-only\"><!-- wp:social-link {\"url\":\"https://www.facebook.com/pages/Farmchemie-Private-Limited/326629104197342?ref=hl\",\"service\":\"facebook\"} /-->\n\n<!-- wp:social-link {\"url\":\"#\",\"service\":\"instagram\"} /-->\n\n<!-- wp:social-link {\"url\":\"#\",\"service\":\"linkedin\"} /-->\n\n<!-- wp:social-link {\"url\":\"#\",\"service\":\"youtube\"} /--></ul>\n<!-- /wp:social-links -->\n\n<!-- wp:legacy-widget {\"idBase\":\"presscore-custom-menu-one\",\"instance\":{\"encoded\":\"YTo1OntzOjU6InRpdGxlIjtzOjA6IiI7czo0OiJtZW51IjtzOjI6IjI2IjtzOjc6ImRpdmlkZXIiO2I6MTtzOjk6ImJvbGRfdGV4dCI7YjowO3M6MTA6InNob3dfYXJyb3ciO2I6MTt9\",\"hash\":\"68cc2b674773f816c8f7ece3eee15996\"},\"className\":\"spacingmenu1\"} /--></div>\n<!-- /wp:group -->\";}i:17;a:1:{s:7:\"content\";s:266:\"<!-- wp:image {\"id\":3061,\"sizeSlug\":\"full\",\"linkDestination\":\"none\"} -->\n<figure class=\"wp-block-image size-full\"><img src=\"https://farmchemie.yasithawd.com/wp-content/uploads/2023/08/Bottom-Groups-Logo.png\" alt=\"\" class=\"wp-image-3061\"/></figure>\n<!-- /wp:image -->\";}i:19;a:1:{s:7:\"content\";s:1038:\"<!-- wp:group {\"layout\":{\"type\":\"flex\",\"orientation\":\"vertical\",\"justifyContent\":\"center\"}} -->\n<div class=\"wp-block-group\"><!-- wp:social-links {\"iconColor\":\"white\",\"iconColorValue\":\"#FFF\",\"openInNewTab\":true,\"size\":\"has-large-icon-size\",\"className\":\"is-style-logos-only\"} -->\n<ul class=\"wp-block-social-links has-large-icon-size has-icon-color is-style-logos-only\"><!-- wp:social-link {\"url\":\"https://www.facebook.com/pages/Farmchemie-Private-Limited/326629104197342?ref=hl\",\"service\":\"facebook\"} /-->\n\n<!-- wp:social-link {\"url\":\"#\",\"service\":\"instagram\"} /-->\n\n<!-- wp:social-link {\"url\":\"#\",\"service\":\"linkedin\"} /-->\n\n<!-- wp:social-link {\"url\":\"#\",\"service\":\"youtube\"} /--></ul>\n<!-- /wp:social-links -->\n\n<!-- wp:legacy-widget {\"idBase\":\"presscore-custom-menu-one\",\"instance\":{\"encoded\":\"YTo1OntzOjU6InRpdGxlIjtzOjA6IiI7czo0OiJtZW51IjtzOjI6IjI2IjtzOjc6ImRpdmlkZXIiO2I6MTtzOjk6ImJvbGRfdGV4dCI7YjowO3M6MTA6InNob3dfYXJyb3ciO2I6MTt9\",\"hash\":\"68cc2b674773f816c8f7ece3eee15996\"},\"className\":\"spacingmenu1\"} /--></div>\n<!-- /wp:group -->\";}i:20;a:1:{s:7:\"content\";s:266:\"<!-- wp:image {\"id\":3061,\"sizeSlug\":\"full\",\"linkDestination\":\"none\"} -->\n<figure class=\"wp-block-image size-full\"><img src=\"https://farmchemie.yasithawd.com/wp-content/uploads/2023/08/Bottom-Groups-Logo.png\" alt=\"\" class=\"wp-image-3061\"/></figure>\n<!-- /wp:image -->\";}i:21;a:1:{s:7:\"content\";s:956:\"<!-- wp:woocommerce/filter-wrapper {\"filterType\":\"active-filters\",\"heading\":\"Active filters\"} -->\n<div class=\"wp-block-woocommerce-filter-wrapper\"><!-- wp:heading {\"level\":3,\"style\":{\"typography\":{\"textTransform\":\"capitalize\",\"fontStyle\":\"normal\",\"fontWeight\":\"100\"}},\"backgroundColor\":\"white\",\"textColor\":\"accent\",\"fontSize\":\"medium\"} -->\n<h3 class=\"wp-block-heading has-accent-color has-white-background-color has-text-color has-background has-medium-font-size\" style=\"font-style:normal;font-weight:100;text-transform:capitalize\">Active filters</h3>\n<!-- /wp:heading -->\n\n<!-- wp:woocommerce/active-filters {\"displayStyle\":\"chips\",\"heading\":\"\",\"lock\":{\"remove\":true},\"textColor\":\"accent\"} -->\n<div class=\"wp-block-woocommerce-active-filters is-loading has-accent-color has-text-color\"><span aria-hidden=\"true\" class=\"wc-block-active-filters__placeholder\"></span></div>\n<!-- /wp:woocommerce/active-filters --></div>\n<!-- /wp:woocommerce/filter-wrapper -->\";}i:23;a:1:{s:7:\"content\";s:223:\"<!-- wp:search {\"label\":\"Search\",\"placeholder\":\"Search products…\",\"width\":100,\"widthUnit\":\"%\",\"buttonText\":\"Search\",\"buttonUseIcon\":true,\"query\":{\"post_type\":\"product\"},\"backgroundColor\":\"accent\",\"textColor\":\"white\"} /-->\";}i:25;a:1:{s:7:\"content\";s:543:\"<!-- wp:columns -->\n<div class=\"wp-block-columns\"><!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:search {\"label\":\"Search\",\"showLabel\":false,\"placeholder\":\"Search products…\",\"buttonText\":\"Search\",\"buttonPosition\":\"button-inside\",\"query\":{\"post_type\":\"product\"}} /--></div>\n<!-- /wp:column -->\n\n<!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:woocommerce/product-categories {\"hasCount\":false,\"hasEmpty\":true,\"isDropdown\":true,\"textColor\":\"accent\",\"fontSize\":\"x-large\"} /--></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns -->\";}i:26;a:1:{s:7:\"content\";s:579:\"<!-- wp:woocommerce/filter-wrapper {\"filterType\":\"active-filters\",\"heading\":\"Active filters\"} -->\n<div class=\"wp-block-woocommerce-filter-wrapper\"><!-- wp:heading {\"level\":3} -->\n<h3 class=\"wp-block-heading\">Active filters</h3>\n<!-- /wp:heading -->\n\n<!-- wp:woocommerce/active-filters {\"displayStyle\":\"chips\",\"heading\":\"\",\"lock\":{\"remove\":true}} -->\n<div class=\"wp-block-woocommerce-active-filters is-loading\"><span aria-hidden=\"true\" class=\"wc-block-active-filters__placeholder\"></span></div>\n<!-- /wp:woocommerce/active-filters --></div>\n<!-- /wp:woocommerce/filter-wrapper -->\";}i:27;a:1:{s:7:\"content\";s:46:\"<!-- wp:woocommerce/products-by-attribute /-->\";}i:31;a:1:{s:7:\"content\";s:799:\"<!-- wp:woocommerce/filter-wrapper {\"filterType\":\"attribute-filter\",\"heading\":\"Filter by attribute\"} -->\n<div class=\"wp-block-woocommerce-filter-wrapper\"><!-- wp:heading {\"textAlign\":\"left\",\"level\":4,\"style\":{\"typography\":{\"fontStyle\":\"normal\",\"fontWeight\":\"100\"}},\"textColor\":\"accent\",\"fontSize\":\"medium\"} -->\n<h4 class=\"wp-block-heading has-text-align-left has-accent-color has-text-color has-medium-font-size\" style=\"font-style:normal;font-weight:100\">Product Type</h4>\n<!-- /wp:heading -->\n\n<!-- wp:woocommerce/attribute-filter {\"attributeId\":4,\"heading\":\"\",\"lock\":{\"remove\":true},\"textColor\":\"accent\"} -->\n<div class=\"wp-block-woocommerce-attribute-filter is-loading has-accent-color has-text-color\"></div>\n<!-- /wp:woocommerce/attribute-filter --></div>\n<!-- /wp:woocommerce/filter-wrapper -->\";}s:12:\"_multiwidget\";i:1;}','yes'),(104,'sidebars_widgets','a:6:{s:19:\"wp_inactive_widgets\";a:7:{i:0;s:7:\"block-2\";i:1;s:7:\"block-3\";i:2;s:7:\"block-4\";i:3;s:7:\"block-5\";i:4;s:7:\"block-6\";i:5;s:27:\"presscore-blog-categories-2\";i:6;s:8:\"block-27\";}s:9:\"sidebar_1\";a:4:{i:0;s:8:\"block-23\";i:1;s:27:\"presscore-custom-menu-one-5\";i:2;s:8:\"block-31\";i:3;s:8:\"block-21\";}s:9:\"sidebar_2\";a:4:{i:0;s:8:\"block-17\";i:1;s:27:\"presscore-custom-menu-one-2\";i:2;s:31:\"presscore-contact-info-widget-5\";i:3;s:8:\"block-19\";}s:9:\"sidebar_3\";a:4:{i:0;s:8:\"block-20\";i:1;s:27:\"presscore-custom-menu-one-3\";i:2;s:31:\"presscore-contact-info-widget-4\";i:3;s:8:\"block-16\";}s:9:\"sidebar_4\";a:2:{i:0;s:8:\"block-25\";i:1;s:8:\"block-26\";}s:13:\"array_version\";i:3;}','yes'),(105,'cron','a:23:{i:1695791634;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:1695791874;a:2:{s:20:\"jetpack_clean_nonces\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:6:\"hourly\";s:4:\"args\";a:0:{}s:8:\"interval\";i:3600;}}s:33:\"wc_admin_process_orders_milestone\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:6:\"hourly\";s:4:\"args\";a:0:{}s:8:\"interval\";i:3600;}}}i:1695791994;a:1:{s:29:\"wc_admin_unsnooze_admin_notes\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:6:\"hourly\";s:4:\"args\";a:0:{}s:8:\"interval\";i:3600;}}}i:1695793147;a:1:{s:31:\"embedpress_cache_cleanup_action\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}}i:1695794272;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:1695794293;a:1:{s:32:\"woocommerce_cancel_unpaid_orders\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:2:{s:8:\"schedule\";b:0;s:4:\"args\";a:0:{}}}}i:1695795016;a:1:{s:25:\"group_post_scheduler_cron\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:6:\"hourly\";s:4:\"args\";a:0:{}s:8:\"interval\";i:3600;}}}i:1695795395;a:2:{s:24:\"woocommerce_cleanup_logs\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}s:31:\"woocommerce_cleanup_rate_limits\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}}i:1695797871;a:5:{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: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: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:1695799074;a:1:{s:20:\"jetpack_v2_heartbeat\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}}i:1695799076;a:1:{s:14:\"wc_admin_daily\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}}i:1695799189;a:1:{s:21:\"wp_update_user_counts\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:10:\"twicedaily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:43200;}}}i:1695806195;a:1:{s:28:\"woocommerce_cleanup_sessions\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:10:\"twicedaily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:43200;}}}i:1695808810;a:2:{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:1695808813;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:1695809027;a:1:{s:28:\"elementor/tracker/send_event\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}}i:1695809955;a:1:{s:30:\"the7_check_for_critical_alerts\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:10:\"twicedaily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:43200;}}}i:1695859200;a:1:{s:27:\"woocommerce_scheduled_sales\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}}i:1695871005;a:2:{s:33:\"woocommerce_cleanup_personal_data\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}s:30:\"woocommerce_tracker_send_event\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}}i:1695884271;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:1696303055;a:1:{s:25:\"woocommerce_geoip_updater\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:11:\"fifteendays\";s:4:\"args\";a:0:{}s:8:\"interval\";i:1296000;}}}i:1696327422;a:1:{s:30:\"wp_delete_temp_updater_backups\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:6:\"weekly\";s:4:\"args\";a:0:{}s:8:\"interval\";i:604800;}}}s:7:\"version\";i:2;}','yes'),(106,'widget_pages','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(107,'widget_calendar','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(108,'widget_archives','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(109,'widget_media_audio','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(110,'widget_media_image','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(111,'widget_media_gallery','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(112,'widget_media_video','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(113,'widget_meta','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(114,'widget_search','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(115,'widget_tag_cloud','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(116,'widget_nav_menu','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(117,'widget_custom_html','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(118,'recovery_keys','a:0:{}','yes'),(119,'theme_mods_twentytwentytwo','a:2:{s:18:\"custom_css_post_id\";i:-1;s:18:\"nav_menu_locations\";a:0:{}}','yes'),(274,'woocommerce_inbox_variant_assignment','7','yes'),(277,'woocommerce_onboarding_profile','a:1:{s:9:\"completed\";b:1;}','yes'),(278,'woocommerce_admin_install_timestamp','1658301476','yes'),(279,'woocommerce_task_list_hidden_lists','a:1:{i:0;s:5:\"setup\";}','yes'),(283,'wc_remote_inbox_notifications_wca_updated','','no'),(284,'wc_remote_inbox_notifications_specs','a:59:{s:21:\"wayflyer_bnpl_q4_2021\";O:8:\"stdClass\":8:{s:4:\"slug\";s:21:\"wayflyer_bnpl_q4_2021\";s:4:\"type\";s:9:\"marketing\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:48:\"Grow your business with funding through Wayflyer\";s:7:\"content\";s:261:\"Fast, flexible financing to boost cash flow and help your business grow – one fee, no interest rates, penalties, equity, or personal guarantees. Based on your store’s performance, Wayflyer provides funding and analytical insights to invest in your business.\";}}s:7:\"actions\";a:1:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:21:\"wayflyer_bnpl_q4_2021\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:21:\"Level up with funding\";}}s:3:\"url\";s:118:\"https://woocommerce.com/products/wayflyer/?utm_source=inbox_note&utm_medium=product&utm_campaign=wayflyer_bnpl_q4_2021\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:1;s:6:\"status\";s:8:\"actioned\";}}s:5:\"rules\";a:4:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:18:\"publish_after_time\";s:13:\"publish_after\";s:19:\"2021-11-17 00:00:00\";}i:1;O:8:\"stdClass\":2:{s:4:\"type\";s:19:\"publish_before_time\";s:14:\"publish_before\";s:19:\"2021-12-18 00:00:00\";}i:2;O:8:\"stdClass\":2:{s:4:\"type\";s:2:\"or\";s:8:\"operands\";a:7:{i:0;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:9:\"operation\";s:1:\"=\";s:5:\"value\";s:2:\"AU\";}i:1;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:9:\"operation\";s:1:\"=\";s:5:\"value\";s:2:\"BE\";}i:2;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:9:\"operation\";s:1:\"=\";s:5:\"value\";s:2:\"CA\";}i:3;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:9:\"operation\";s:1:\"=\";s:5:\"value\";s:2:\"IE\";}i:4;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:9:\"operation\";s:1:\"=\";s:5:\"value\";s:2:\"NL\";}i:5;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:9:\"operation\";s:1:\"=\";s:5:\"value\";s:2:\"GB\";}i:6;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:9:\"operation\";s:1:\"=\";s:5:\"value\";s:2:\"US\";}}}i:3;O:8:\"stdClass\":2:{s:4:\"type\";s:2:\"or\";s:8:\"operands\";a:3:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:17:\"plugins_activated\";s:7:\"plugins\";a:1:{i:0;s:26:\"woocommerce-gateway-affirm\";}}i:1;O:8:\"stdClass\":2:{s:4:\"type\";s:17:\"plugins_activated\";s:7:\"plugins\";a:1:{i:0;s:32:\"afterpay-gateway-for-woocommerce\";}}i:2;O:8:\"stdClass\":2:{s:4:\"type\";s:17:\"plugins_activated\";s:7:\"plugins\";a:1:{i:0;s:31:\"klarna-payments-for-woocommerce\";}}}}}}s:35:\"wc_shipping_mobile_app_usps_q4_2021\";O:8:\"stdClass\":8:{s:4:\"slug\";s:35:\"wc_shipping_mobile_app_usps_q4_2021\";s:4:\"type\";s:9:\"marketing\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:94:\"Print and manage your shipping labels with WooCommerce Shipping and the WooCommerce Mobile App\";s:7:\"content\";s:210:\"Save time by printing, purchasing, refunding, and tracking shipping labels generated by <a href=\"https://woocommerce.com/woocommerce-shipping/\">WooCommerce Shipping</a> – all directly from your mobile device!\";}}s:7:\"actions\";a:1:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:35:\"wc_shipping_mobile_app_usps_q4_2021\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:24:\"Get WooCommerce Shipping\";}}s:3:\"url\";s:135:\"https://woocommerce.com/woocommerce-shipping/?utm_source=inbox_note&utm_medium=product&utm_campaign=wc_shipping_mobile_app_usps_q4_2021\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:1;s:6:\"status\";s:8:\"actioned\";}}s:5:\"rules\";a:5:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:18:\"publish_after_time\";s:13:\"publish_after\";s:19:\"2021-11-12 00:00:00\";}i:1;O:8:\"stdClass\":2:{s:4:\"type\";s:19:\"publish_before_time\";s:14:\"publish_before\";s:19:\"2021-11-27 00:00:00\";}i:2;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:9:\"operation\";s:1:\"=\";s:5:\"value\";s:2:\"US\";}i:3;O:8:\"stdClass\":2:{s:4:\"type\";s:17:\"plugins_activated\";s:7:\"plugins\";a:1:{i:0;s:25:\"woocommerce-shipping-usps\";}}i:4;O:8:\"stdClass\":2:{s:4:\"type\";s:3:\"not\";s:7:\"operand\";a:1:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:17:\"plugins_activated\";s:7:\"plugins\";a:1:{i:0;s:20:\"woocommerce-services\";}}}}}}s:20:\"woocommerce-services\";O:8:\"stdClass\":8:{s:4:\"slug\";s:20:\"woocommerce-services\";s:4:\"type\";s:4:\"info\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:26:\"WooCommerce Shipping & Tax\";s:7:\"content\";s:251:\"WooCommerce Shipping & Tax helps get your store \"ready to sell\" as quickly as possible. You create your products. We take care of tax calculation, payment processing, and shipping label printing! Learn more about the extension that you just installed.\";}}s:7:\"actions\";a:1:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:10:\"learn-more\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:10:\"Learn more\";}}s:3:\"url\";s:84:\"https://docs.woocommerce.com/document/woocommerce-shipping-and-tax/?utm_source=inbox\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:1;s:6:\"status\";s:10:\"unactioned\";}}s:5:\"rules\";a:3:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:18:\"publish_after_time\";s:13:\"publish_after\";s:19:\"2022-01-27 20:17:25\";}i:1;O:8:\"stdClass\":2:{s:4:\"type\";s:17:\"plugins_activated\";s:7:\"plugins\";a:1:{i:0;s:20:\"woocommerce-services\";}}i:2;O:8:\"stdClass\":3:{s:4:\"type\";s:18:\"wcadmin_active_for\";s:9:\"operation\";s:1:\"<\";s:4:\"days\";i:2;}}}s:18:\"your-first-product\";O:8:\"stdClass\":8:{s:4:\"slug\";s:18:\"your-first-product\";s:4:\"type\";s:4:\"info\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:18:\"Your first product\";s:7:\"content\";s:467:\"That’s huge! You’re well on your way to building a successful online store — now it’s time to think about how you’ll fulfill your orders.<br/><br/>Read our shipping guide to learn best practices and options for putting together your shipping strategy. And for WooCommerce stores in the United States, you can print discounted shipping labels via USPS with <a href=\"https://href.li/?https://woocommerce.com/shipping\" target=\"_blank\">WooCommerce Shipping</a>.\";}}s:7:\"actions\";a:1:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:10:\"learn-more\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:10:\"Learn more\";}}s:3:\"url\";s:130:\"https://woocommerce.com/posts/ecommerce-shipping-solutions-guide/?utm_source=inbox_note&utm_medium=product&utm_campaign=learn-more\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:1;s:6:\"status\";s:8:\"actioned\";}}s:5:\"rules\";a:5:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:18:\"publish_after_time\";s:13:\"publish_after\";s:19:\"2022-01-27 20:19:13\";}i:1;O:8:\"stdClass\":4:{s:4:\"type\";s:12:\"stored_state\";s:5:\"index\";s:22:\"there_were_no_products\";s:9:\"operation\";s:1:\"=\";s:5:\"value\";b:1;}i:2;O:8:\"stdClass\":4:{s:4:\"type\";s:12:\"stored_state\";s:5:\"index\";s:22:\"there_are_now_products\";s:9:\"operation\";s:1:\"=\";s:5:\"value\";b:1;}i:3;O:8:\"stdClass\":3:{s:4:\"type\";s:13:\"product_count\";s:9:\"operation\";s:2:\">=\";s:5:\"value\";i:1;}i:4;O:8:\"stdClass\":5:{s:4:\"type\";s:18:\"onboarding_profile\";s:5:\"index\";s:13:\"product_types\";s:9:\"operation\";s:8:\"contains\";s:5:\"value\";s:8:\"physical\";s:7:\"default\";a:0:{}}}}s:37:\"wc-admin-optimizing-the-checkout-flow\";O:8:\"stdClass\":8:{s:4:\"slug\";s:37:\"wc-admin-optimizing-the-checkout-flow\";s:4:\"type\";s:4:\"info\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:28:\"Optimizing the checkout flow\";s:7:\"content\";s:177:\"It’s crucial to get your store’s checkout as smooth as possible to avoid losing sales. Let’s take a look at how you can optimize the checkout experience for your shoppers.\";}}s:7:\"actions\";a:1:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:28:\"optimizing-the-checkout-flow\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:10:\"Learn more\";}}s:3:\"url\";s:144:\"https://woocommerce.com/posts/optimizing-woocommerce-checkout?utm_source=inbox_note&utm_medium=product&utm_campaign=optimizing-the-checkout-flow\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:1;s:6:\"status\";s:8:\"actioned\";}}s:5:\"rules\";a:3:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:18:\"publish_after_time\";s:13:\"publish_after\";s:19:\"2022-01-27 20:19:49\";}i:1;O:8:\"stdClass\":3:{s:4:\"type\";s:18:\"wcadmin_active_for\";s:9:\"operation\";s:1:\">\";s:4:\"days\";i:3;}i:2;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:45:\"woocommerce_task_list_tracked_completed_tasks\";s:9:\"operation\";s:8:\"contains\";s:5:\"value\";s:8:\"payments\";s:7:\"default\";a:0:{}}}}s:32:\"wc-payments-qualitative-feedback\";O:8:\"stdClass\":8:{s:4:\"slug\";s:32:\"wc-payments-qualitative-feedback\";s:4:\"type\";s:4:\"info\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:55:\"WooCommerce Payments setup - let us know what you think\";s:7:\"content\";s:146:\"Congrats on enabling WooCommerce Payments for your store. Please share your feedback in this 2 minute survey to help us improve the setup process.\";}}s:7:\"actions\";a:1:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:35:\"qualitative-feedback-from-new-users\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:14:\"Share feedback\";}}s:3:\"url\";s:39:\"https://automattic.survey.fm/wc-pay-new\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:1;s:6:\"status\";s:8:\"actioned\";}}s:5:\"rules\";a:2:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:18:\"publish_after_time\";s:13:\"publish_after\";s:19:\"2022-01-27 20:21:13\";}i:1;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:45:\"woocommerce_task_list_tracked_completed_tasks\";s:9:\"operation\";s:8:\"contains\";s:5:\"value\";s:20:\"woocommerce-payments\";s:7:\"default\";a:0:{}}}}s:29:\"share-your-feedback-on-paypal\";O:8:\"stdClass\":8:{s:4:\"slug\";s:29:\"share-your-feedback-on-paypal\";s:4:\"type\";s:4:\"info\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:29:\"Share your feedback on PayPal\";s:7:\"content\";s:127:\"Share your feedback in this 2 minute survey about how we can make the process of accepting payments more useful for your store.\";}}s:7:\"actions\";a:1:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:14:\"share-feedback\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:14:\"Share feedback\";}}s:3:\"url\";s:43:\"http://automattic.survey.fm/paypal-feedback\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:1;s:6:\"status\";s:10:\"unactioned\";}}s:5:\"rules\";a:3:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:18:\"publish_after_time\";s:13:\"publish_after\";s:19:\"2022-01-27 20:21:50\";}i:1;O:8:\"stdClass\":2:{s:4:\"type\";s:3:\"not\";s:7:\"operand\";a:1:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:17:\"plugins_activated\";s:7:\"plugins\";a:1:{i:0;s:26:\"woocommerce-gateway-stripe\";}}}}i:2;O:8:\"stdClass\":2:{s:4:\"type\";s:17:\"plugins_activated\";s:7:\"plugins\";a:1:{i:0;s:43:\"woocommerce-gateway-paypal-express-checkout\";}}}}s:31:\"google_listings_and_ads_install\";O:8:\"stdClass\":8:{s:4:\"slug\";s:31:\"google_listings_and_ads_install\";s:4:\"type\";s:9:\"marketing\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:35:\"Drive traffic and sales with Google\";s:7:\"content\";s:123:\"Reach online shoppers to drive traffic and sales for your store by showcasing products across Google, for free or with ads.\";}}s:7:\"actions\";a:1:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:11:\"get-started\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:11:\"Get started\";}}s:3:\"url\";s:122:\"https://woocommerce.com/products/google-listings-and-ads?utm_source=inbox_note&utm_medium=product&utm_campaign=get-started\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:1;s:6:\"status\";s:8:\"actioned\";}}s:5:\"rules\";a:3:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:18:\"publish_after_time\";s:13:\"publish_after\";s:19:\"2021-06-09 00:00:00\";}i:1;O:8:\"stdClass\":2:{s:4:\"type\";s:3:\"not\";s:7:\"operand\";a:1:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:17:\"plugins_activated\";s:7:\"plugins\";a:1:{i:0;s:23:\"google_listings_and_ads\";}}}}i:2;O:8:\"stdClass\":3:{s:4:\"type\";s:11:\"order_count\";s:9:\"operation\";s:1:\">\";s:5:\"value\";i:10;}}}s:39:\"wc-subscriptions-security-update-3-0-15\";O:8:\"stdClass\":8:{s:4:\"slug\";s:39:\"wc-subscriptions-security-update-3-0-15\";s:4:\"type\";s:4:\"info\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:42:\"WooCommerce Subscriptions security update!\";s:7:\"content\";s:738:\"We recently released an important security update to WooCommerce Subscriptions. To ensure your site’s data is protected, please upgrade <strong>WooCommerce Subscriptions to version 3.0.15</strong> or later.<br/><br/>Click the button below to view and update to the latest Subscriptions version, or log in to <a href=\"https://woocommerce.com/my-dashboard\">WooCommerce.com Dashboard</a> and navigate to your <strong>Downloads</strong> page.<br/><br/>We recommend always using the latest version of WooCommerce Subscriptions, and other software running on your site, to ensure maximum security.<br/><br/>If you have any questions we are here to help — just <a href=\"https://woocommerce.com/my-account/create-a-ticket/\">open a ticket</a>.\";}}s:7:\"actions\";a:1:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:30:\"update-wc-subscriptions-3-0-15\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:19:\"View latest version\";}}s:3:\"url\";s:30:\"&page=wc-addons&section=helper\";s:18:\"url_is_admin_query\";b:1;s:10:\"is_primary\";b:1;s:6:\"status\";s:8:\"actioned\";}}s:5:\"rules\";a:2:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:18:\"publish_after_time\";s:13:\"publish_after\";s:19:\"2022-01-27 20:30:32\";}i:1;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:25:\"woocommerce-subscriptions\";s:8:\"operator\";s:1:\"<\";s:7:\"version\";s:6:\"3.0.15\";}}}s:29:\"woocommerce-core-update-5-4-0\";O:8:\"stdClass\":8:{s:4:\"slug\";s:29:\"woocommerce-core-update-5-4-0\";s:4:\"type\";s:4:\"info\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:31:\"Update to WooCommerce 5.4.1 now\";s:7:\"content\";s:140:\"WooCommerce 5.4.1 addresses a checkout issue discovered in WooCommerce 5.4. We recommend upgrading to WooCommerce 5.4.1 as soon as possible.\";}}s:7:\"actions\";a:1:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:20:\"update-wc-core-5-4-0\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:25:\"How to update WooCommerce\";}}s:3:\"url\";s:64:\"https://docs.woocommerce.com/document/how-to-update-woocommerce/\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:1;s:6:\"status\";s:8:\"actioned\";}}s:5:\"rules\";a:2:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:18:\"publish_after_time\";s:13:\"publish_after\";s:19:\"2022-01-27 20:31:08\";}i:1;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"5.4.0\";}}}s:19:\"wcpay-promo-2020-11\";O:8:\"stdClass\":8:{s:4:\"slug\";s:19:\"wcpay-promo-2020-11\";s:4:\"type\";s:9:\"marketing\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:19:\"wcpay-promo-2020-11\";s:7:\"content\";s:19:\"wcpay-promo-2020-11\";}}s:7:\"actions\";a:0:{}s:5:\"rules\";a:0:{}}s:19:\"wcpay-promo-2020-12\";O:8:\"stdClass\":8:{s:4:\"slug\";s:19:\"wcpay-promo-2020-12\";s:4:\"type\";s:9:\"marketing\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:19:\"wcpay-promo-2020-12\";s:7:\"content\";s:19:\"wcpay-promo-2020-12\";}}s:7:\"actions\";a:0:{}s:5:\"rules\";a:0:{}}s:34:\"ppxo-pps-upgrade-paypal-payments-1\";O:8:\"stdClass\":8:{s:4:\"slug\";s:34:\"ppxo-pps-upgrade-paypal-payments-1\";s:4:\"type\";s:4:\"info\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:47:\"Get the latest PayPal extension for WooCommerce\";s:7:\"content\";s:442:\"Heads up! There’s a new PayPal on the block!<br/><br/>Now is a great time to upgrade to our latest <a href=\"https://woocommerce.com/products/woocommerce-paypal-payments/\" target=\"_blank\">PayPal extension</a> to continue to receive support and updates with PayPal.<br/><br/>Get access to a full suite of PayPal payment methods, extensive currency and country coverage, and pay later options with the all-new PayPal extension for WooCommerce.\";}}s:7:\"actions\";a:1:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:34:\"ppxo-pps-install-paypal-payments-1\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:18:\"View upgrade guide\";}}s:3:\"url\";s:96:\"https://docs.woocommerce.com/document/woocommerce-paypal-payments/paypal-payments-upgrade-guide/\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:1;s:6:\"status\";s:8:\"actioned\";}}s:5:\"rules\";a:5:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:18:\"publish_after_time\";s:13:\"publish_after\";s:19:\"2022-01-27 20:33:53\";}i:1;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\">=\";s:7:\"version\";s:3:\"5.5\";}i:2;O:8:\"stdClass\":2:{s:4:\"type\";s:3:\"not\";s:7:\"operand\";a:1:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:17:\"plugins_activated\";s:7:\"plugins\";a:1:{i:0;s:27:\"woocommerce-paypal-payments\";}}}}i:3;O:8:\"stdClass\":2:{s:4:\"type\";s:2:\"or\";s:8:\"operands\";a:2:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:17:\"plugins_activated\";s:7:\"plugins\";a:1:{i:0;s:43:\"woocommerce-gateway-paypal-express-checkout\";}}i:1;O:8:\"stdClass\":6:{s:4:\"type\";s:6:\"option\";s:12:\"transformers\";a:1:{i:0;O:8:\"stdClass\":2:{s:3:\"use\";s:12:\"dot_notation\";s:9:\"arguments\";O:8:\"stdClass\":1:{s:4:\"path\";s:7:\"enabled\";}}}s:11:\"option_name\";s:27:\"woocommerce_paypal_settings\";s:9:\"operation\";s:1:\"=\";s:5:\"value\";s:3:\"yes\";s:7:\"default\";b:0;}}}i:4;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:36:\"woocommerce_inbox_variant_assignment\";s:5:\"value\";i:7;s:7:\"default\";i:1;s:9:\"operation\";s:1:\"<\";}}}s:34:\"ppxo-pps-upgrade-paypal-payments-2\";O:8:\"stdClass\":8:{s:4:\"slug\";s:34:\"ppxo-pps-upgrade-paypal-payments-2\";s:4:\"type\";s:4:\"info\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:31:\"Upgrade your PayPal experience!\";s:7:\"content\";s:358:\"Get access to a full suite of PayPal payment methods, extensive currency and country coverage, offer subscription and recurring payments, and the new PayPal pay later options.<br /><br />Start using our <a href=\"https://woocommerce.com/products/woocommerce-paypal-payments/\" target=\"_blank\">latest PayPal today</a> to continue to receive support and updates.\";}}s:7:\"actions\";a:1:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:34:\"ppxo-pps-install-paypal-payments-2\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:18:\"View upgrade guide\";}}s:3:\"url\";s:96:\"https://docs.woocommerce.com/document/woocommerce-paypal-payments/paypal-payments-upgrade-guide/\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:1;s:6:\"status\";s:8:\"actioned\";}}s:5:\"rules\";a:5:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:18:\"publish_after_time\";s:13:\"publish_after\";s:19:\"2022-01-27 20:34:30\";}i:1;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\">=\";s:7:\"version\";s:3:\"5.5\";}i:2;O:8:\"stdClass\":2:{s:4:\"type\";s:3:\"not\";s:7:\"operand\";a:1:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:17:\"plugins_activated\";s:7:\"plugins\";a:1:{i:0;s:27:\"woocommerce-paypal-payments\";}}}}i:3;O:8:\"stdClass\":2:{s:4:\"type\";s:2:\"or\";s:8:\"operands\";a:2:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:17:\"plugins_activated\";s:7:\"plugins\";a:1:{i:0;s:43:\"woocommerce-gateway-paypal-express-checkout\";}}i:1;O:8:\"stdClass\":6:{s:4:\"type\";s:6:\"option\";s:12:\"transformers\";a:1:{i:0;O:8:\"stdClass\":2:{s:3:\"use\";s:12:\"dot_notation\";s:9:\"arguments\";O:8:\"stdClass\":1:{s:4:\"path\";s:7:\"enabled\";}}}s:11:\"option_name\";s:27:\"woocommerce_paypal_settings\";s:9:\"operation\";s:1:\"=\";s:5:\"value\";s:3:\"yes\";s:7:\"default\";b:0;}}}i:4;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:36:\"woocommerce_inbox_variant_assignment\";s:5:\"value\";i:6;s:7:\"default\";i:1;s:9:\"operation\";s:1:\">\";}}}s:46:\"woocommerce-core-sqli-july-2021-need-to-update\";O:8:\"stdClass\":8:{s:4:\"slug\";s:46:\"woocommerce-core-sqli-july-2021-need-to-update\";s:4:\"type\";s:6:\"update\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:56:\"Action required: Critical vulnerabilities in WooCommerce\";s:7:\"content\";s:574:\"In response to a critical vulnerability identified on July 13, 2021, we are working with the WordPress Plugins Team to deploy software updates to stores running WooCommerce (versions 3.3 to 5.5) and the WooCommerce Blocks feature plugin (versions 2.5 to 5.5).<br /><br />Our investigation into this vulnerability is ongoing, but <strong>we wanted to let you know now about the importance of updating immediately</strong>.<br /><br />For more information on which actions you should take, as well as answers to FAQs, please urgently review our blog post detailing this issue.\";}}s:7:\"actions\";a:2:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:10:\"learn-more\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:10:\"Learn more\";}}s:3:\"url\";s:137:\"https://woocommerce.com/posts/critical-vulnerability-detected-july-2021/?utm_source=inbox_note&utm_medium=product&utm_campaign=learn-more\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:1;s:6:\"status\";s:10:\"unactioned\";}i:1;O:8:\"stdClass\":6:{s:4:\"name\";s:7:\"dismiss\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:7:\"Dismiss\";}}s:3:\"url\";s:0:\"\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:0;s:6:\"status\";s:8:\"actioned\";}}s:5:\"rules\";a:59:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:18:\"publish_after_time\";s:13:\"publish_after\";s:19:\"2022-01-27 20:35:06\";}i:1;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"3.3.6\";}i:2;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"3.4.8\";}i:3;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"3.5.9\";}i:4;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"3.6.6\";}i:5;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"3.7.2\";}i:6;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"3.8.2\";}i:7;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"3.9.4\";}i:8;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.0.2\";}i:9;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.0.3\";}i:10;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.1.2\";}i:11;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.1.3\";}i:12;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.2.3\";}i:13;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.2.4\";}i:14;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.3.4\";}i:15;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.3.5\";}i:16;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.4.2\";}i:17;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.4.3\";}i:18;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.5.3\";}i:19;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.5.4\";}i:20;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.6.3\";}i:21;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.6.4\";}i:22;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.7.2\";}i:23;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.7.3\";}i:24;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.8.1\";}i:25;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.8.2\";}i:26;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.9.3\";}i:27;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.9.4\";}i:28;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"5.0.1\";}i:29;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"5.0.2\";}i:30;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"5.1.1\";}i:31;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"5.1.2\";}i:32;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"5.2.3\";}i:33;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"5.2.4\";}i:34;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"5.3.1\";}i:35;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"5.3.2\";}i:36;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"5.4.2\";}i:37;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"5.4.3\";}i:38;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"<\";s:7:\"version\";s:5:\"5.5.1\";}i:39;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:6:\"3.5.10\";}i:40;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"3.6.7\";}i:41;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"3.7.3\";}i:42;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"3.8.3\";}i:43;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"3.9.5\";}i:44;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.0.4\";}i:45;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.1.4\";}i:46;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.2.5\";}i:47;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.3.6\";}i:48;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.4.4\";}i:49;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.5.5\";}i:50;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.6.5\";}i:51;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.7.4\";}i:52;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.8.3\";}i:53;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.9.5\";}i:54;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"5.0.3\";}i:55;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"5.1.3\";}i:56;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"5.2.5\";}i:57;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"5.3.3\";}i:58;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"5.4.4\";}}}s:48:\"woocommerce-blocks-sqli-july-2021-need-to-update\";O:8:\"stdClass\":8:{s:4:\"slug\";s:48:\"woocommerce-blocks-sqli-july-2021-need-to-update\";s:4:\"type\";s:6:\"update\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:63:\"Action required: Critical vulnerabilities in WooCommerce Blocks\";s:7:\"content\";s:570:\"In response to a critical vulnerability identified on July 13, 2021, we are working with the WordPress Plugins Team to deploy software updates to stores running WooCommerce (versions 3.3 to 5.5) and the WooCommerce Blocks feature plugin (versions 2.5 to 5.5).<br/><br/>Our investigation into this vulnerability is ongoing, but <strong>we wanted to let you know now about the importance of updating immediately</strong>.<br/><br/>For more information on which actions you should take, as well as answers to FAQs, please urgently review our blog post detailing this issue.\";}}s:7:\"actions\";a:2:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:10:\"learn-more\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:10:\"Learn more\";}}s:3:\"url\";s:137:\"https://woocommerce.com/posts/critical-vulnerability-detected-july-2021/?utm_source=inbox_note&utm_medium=product&utm_campaign=learn-more\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:1;s:6:\"status\";s:10:\"unactioned\";}i:1;O:8:\"stdClass\":6:{s:4:\"name\";s:7:\"dismiss\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:7:\"Dismiss\";}}s:3:\"url\";b:0;s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:0;s:6:\"status\";s:8:\"actioned\";}}s:5:\"rules\";a:32:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:18:\"publish_after_time\";s:13:\"publish_after\";s:19:\"2022-01-27 20:35:42\";}i:1;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:6:\"2.5.16\";}i:2;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"2.6.2\";}i:3;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"2.7.2\";}i:4;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"2.8.1\";}i:5;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"2.9.1\";}i:6;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"3.0.1\";}i:7;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"3.1.1\";}i:8;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"3.2.1\";}i:9;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"3.3.1\";}i:10;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"3.4.1\";}i:11;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"3.5.1\";}i:12;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"3.6.1\";}i:13;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"3.7.2\";}i:14;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"3.8.1\";}i:15;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"3.9.1\";}i:16;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.0.1\";}i:17;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.1.1\";}i:18;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.2.1\";}i:19;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.3.1\";}i:20;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.4.3\";}i:21;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.5.3\";}i:22;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.6.1\";}i:23;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.7.1\";}i:24;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.8.1\";}i:25;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.9.2\";}i:26;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"5.0.1\";}i:27;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"5.1.1\";}i:28;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"5.2.1\";}i:29;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"5.3.2\";}i:30;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"5.4.1\";}i:31;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:1:\"<\";s:7:\"version\";s:5:\"5.5.1\";}}}s:45:\"woocommerce-core-sqli-july-2021-store-patched\";O:8:\"stdClass\":8:{s:4:\"slug\";s:45:\"woocommerce-core-sqli-july-2021-store-patched\";s:4:\"type\";s:6:\"update\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:55:\"Solved: Critical vulnerabilities patched in WooCommerce\";s:7:\"content\";s:433:\"In response to a critical vulnerability identified on July 13, 2021, we worked with the WordPress Plugins Team to deploy software updates to stores running WooCommerce (versions 3.3 to 5.5) and the WooCommerce Blocks feature plugin (versions 2.5 to 5.5).<br/><br/><strong>Your store has been updated to the latest secure version(s)</strong>. For more information and answers to FAQs, please review our blog post detailing this issue.\";}}s:7:\"actions\";a:2:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:10:\"learn-more\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:10:\"Learn more\";}}s:3:\"url\";s:137:\"https://woocommerce.com/posts/critical-vulnerability-detected-july-2021/?utm_source=inbox_note&utm_medium=product&utm_campaign=learn-more\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:1;s:6:\"status\";s:10:\"unactioned\";}i:1;O:8:\"stdClass\":6:{s:4:\"name\";s:7:\"dismiss\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:7:\"Dismiss\";}}s:3:\"url\";b:0;s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:0;s:6:\"status\";s:8:\"actioned\";}}s:5:\"rules\";a:4:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:18:\"publish_after_time\";s:13:\"publish_after\";s:19:\"2022-01-27 20:36:18\";}i:1;O:8:\"stdClass\":2:{s:4:\"type\";s:3:\"not\";s:7:\"operand\";a:1:{i:0;O:8:\"stdClass\":4:{s:4:\"type\";s:11:\"note_status\";s:9:\"note_name\";s:46:\"woocommerce-core-sqli-july-2021-need-to-update\";s:6:\"status\";s:7:\"pending\";s:9:\"operation\";s:1:\"=\";}}}i:2;O:8:\"stdClass\":2:{s:4:\"type\";s:3:\"not\";s:7:\"operand\";a:1:{i:0;O:8:\"stdClass\":4:{s:4:\"type\";s:11:\"note_status\";s:9:\"note_name\";s:48:\"woocommerce-blocks-sqli-july-2021-need-to-update\";s:6:\"status\";s:7:\"pending\";s:9:\"operation\";s:1:\"=\";}}}i:3;O:8:\"stdClass\":2:{s:4:\"type\";s:2:\"or\";s:8:\"operands\";a:23:{i:0;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"3.3.6\";}i:1;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"3.4.8\";}i:2;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"3.5.9\";}i:3;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"3.6.6\";}i:4;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"3.7.2\";}i:5;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"3.8.2\";}i:6;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"3.9.4\";}i:7;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"4.0.2\";}i:8;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"4.1.2\";}i:9;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"4.2.3\";}i:10;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"4.3.4\";}i:11;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"4.4.2\";}i:12;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"4.5.3\";}i:13;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"4.6.3\";}i:14;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"4.7.2\";}i:15;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"4.8.1\";}i:16;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"4.9.3\";}i:17;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"5.0.1\";}i:18;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"5.1.1\";}i:19;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"5.2.3\";}i:20;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"5.3.1\";}i:21;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"5.4.2\";}i:22;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\">=\";s:7:\"version\";s:5:\"5.5.1\";}}}}}s:47:\"woocommerce-blocks-sqli-july-2021-store-patched\";O:8:\"stdClass\":8:{s:4:\"slug\";s:47:\"woocommerce-blocks-sqli-july-2021-store-patched\";s:4:\"type\";s:6:\"update\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:62:\"Solved: Critical vulnerabilities patched in WooCommerce Blocks\";s:7:\"content\";s:433:\"In response to a critical vulnerability identified on July 13, 2021, we worked with the WordPress Plugins Team to deploy software updates to stores running WooCommerce (versions 3.3 to 5.5) and the WooCommerce Blocks feature plugin (versions 2.5 to 5.5).<br/><br/><strong>Your store has been updated to the latest secure version(s)</strong>. For more information and answers to FAQs, please review our blog post detailing this issue.\";}}s:7:\"actions\";a:2:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:10:\"learn-more\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:10:\"Learn more\";}}s:3:\"url\";s:137:\"https://woocommerce.com/posts/critical-vulnerability-detected-july-2021/?utm_source=inbox_note&utm_medium=product&utm_campaign=learn-more\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:1;s:6:\"status\";s:10:\"unactioned\";}i:1;O:8:\"stdClass\":6:{s:4:\"name\";s:7:\"dismiss\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:7:\"Dismiss\";}}s:3:\"url\";b:0;s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:0;s:6:\"status\";s:8:\"actioned\";}}s:5:\"rules\";a:4:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:18:\"publish_after_time\";s:13:\"publish_after\";s:19:\"2022-01-27 20:36:54\";}i:1;O:8:\"stdClass\":2:{s:4:\"type\";s:3:\"not\";s:7:\"operand\";a:1:{i:0;O:8:\"stdClass\":4:{s:4:\"type\";s:11:\"note_status\";s:9:\"note_name\";s:46:\"woocommerce-core-sqli-july-2021-need-to-update\";s:6:\"status\";s:7:\"pending\";s:9:\"operation\";s:1:\"=\";}}}i:2;O:8:\"stdClass\":2:{s:4:\"type\";s:3:\"not\";s:7:\"operand\";a:1:{i:0;O:8:\"stdClass\":4:{s:4:\"type\";s:11:\"note_status\";s:9:\"note_name\";s:48:\"woocommerce-blocks-sqli-july-2021-need-to-update\";s:6:\"status\";s:7:\"pending\";s:9:\"operation\";s:1:\"=\";}}}i:3;O:8:\"stdClass\":2:{s:4:\"type\";s:2:\"or\";s:8:\"operands\";a:31:{i:0;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:6:\"2.5.16\";}i:1;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"2.6.2\";}i:2;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"2.7.2\";}i:3;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"2.8.1\";}i:4;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"2.9.1\";}i:5;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"3.0.1\";}i:6;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"3.1.1\";}i:7;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"3.2.1\";}i:8;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"3.3.1\";}i:9;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"3.4.1\";}i:10;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"3.5.1\";}i:11;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"3.6.1\";}i:12;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"3.7.2\";}i:13;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"3.8.1\";}i:14;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"3.9.1\";}i:15;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"4.0.1\";}i:16;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"4.1.1\";}i:17;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"4.2.1\";}i:18;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"4.3.1\";}i:19;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"4.4.3\";}i:20;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"4.5.3\";}i:21;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"4.6.1\";}i:22;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"4.7.1\";}i:23;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"4.8.1\";}i:24;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"4.9.2\";}i:25;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"5.0.1\";}i:26;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"5.1.1\";}i:27;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"5.2.1\";}i:28;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"5.3.2\";}i:29;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"5.4.1\";}i:30;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:2:\">=\";s:7:\"version\";s:5:\"5.5.1\";}}}}}s:19:\"habit-moment-survey\";O:8:\"stdClass\":8:{s:4:\"slug\";s:19:\"habit-moment-survey\";s:4:\"type\";s:9:\"marketing\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:63:\"We’re all ears! Share your experience so far with WooCommerce\";s:7:\"content\";s:136:\"We’d love your input to shape the future of WooCommerce together. Feel free to share any feedback, ideas or suggestions that you have.\";}}s:7:\"actions\";a:1:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:14:\"share-feedback\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:14:\"Share feedback\";}}s:3:\"url\";s:45:\"https://automattic.survey.fm/store-management\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:1;s:6:\"status\";s:10:\"unactioned\";}}s:5:\"rules\";a:4:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:18:\"publish_after_time\";s:13:\"publish_after\";s:19:\"2022-01-27 20:37:30\";}i:1;O:8:\"stdClass\":3:{s:4:\"type\";s:18:\"wcadmin_active_for\";s:9:\"operation\";s:1:\">\";s:4:\"days\";i:3;}i:2;O:8:\"stdClass\":3:{s:4:\"type\";s:11:\"order_count\";s:9:\"operation\";s:1:\">\";s:5:\"value\";i:30;}i:3;O:8:\"stdClass\":3:{s:4:\"type\";s:13:\"product_count\";s:9:\"operation\";s:1:\">\";s:5:\"value\";i:0;}}}s:42:\"woocommerce-core-paypal-march-2022-updated\";O:8:\"stdClass\":8:{s:4:\"slug\";s:42:\"woocommerce-core-paypal-march-2022-updated\";s:4:\"type\";s:6:\"update\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:35:\"Security auto-update of WooCommerce\";s:7:\"content\";s:391:\"<strong>Your store has been updated to the latest secure version of WooCommerce</strong>. We worked with WordPress to deploy PayPal Standard security updates for stores running WooCommerce (version 3.5 to 6.3). It’s recommended to disable PayPal Standard, and use <a href=\"https://woocommerce.com/products/woocommerce-paypal-payments/\" target=\"_blank\">PayPal Payments</a> to accept PayPal.\";}}s:7:\"actions\";a:2:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:10:\"learn-more\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:10:\"Learn more\";}}s:3:\"url\";s:88:\"https://developer.woocommerce.com/2022/03/10/woocommerce-3-5-10-6-3-1-security-releases/\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:1;s:6:\"status\";s:10:\"unactioned\";}i:1;O:8:\"stdClass\":6:{s:4:\"name\";s:42:\"woocommerce-core-paypal-march-2022-dismiss\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:7:\"Dismiss\";}}s:3:\"url\";s:0:\"\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:0;s:6:\"status\";s:8:\"actioned\";}}s:5:\"rules\";a:3:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:18:\"publish_after_time\";s:13:\"publish_after\";s:19:\"2022-03-10 18:44:57\";}i:1;O:8:\"stdClass\":2:{s:4:\"type\";s:2:\"or\";s:8:\"operands\";a:28:{i:0;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:6:\"3.5.10\";}i:1;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"3.6.7\";}i:2;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"3.7.3\";}i:3;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"3.8.3\";}i:4;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"3.9.5\";}i:5;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"4.0.4\";}i:6;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"4.1.4\";}i:7;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"4.2.5\";}i:8;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"4.3.6\";}i:9;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"4.4.4\";}i:10;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"4.5.5\";}i:11;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"4.6.5\";}i:12;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"4.7.4\";}i:13;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"4.8.3\";}i:14;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"4.9.5\";}i:15;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"5.0.3\";}i:16;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"5.1.3\";}i:17;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"5.2.5\";}i:18;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"5.3.3\";}i:19;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"5.4.4\";}i:20;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"5.5.4\";}i:21;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"5.6.2\";}i:22;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"5.7.2\";}i:23;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"5.8.1\";}i:24;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"5.9.1\";}i:25;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"6.0.1\";}i:26;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"6.1.2\";}i:27;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"6.2.2\";}}}i:2;O:8:\"stdClass\":2:{s:4:\"type\";s:2:\"or\";s:8:\"operands\";a:2:{i:0;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"<\";s:7:\"version\";s:3:\"5.5\";}i:1;a:2:{i:0;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\">=\";s:7:\"version\";s:3:\"5.5\";}i:1;O:8:\"stdClass\":6:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:27:\"woocommerce_paypal_settings\";s:9:\"operation\";s:1:\"=\";s:5:\"value\";s:3:\"yes\";s:7:\"default\";b:0;s:12:\"transformers\";a:1:{i:0;O:8:\"stdClass\":2:{s:3:\"use\";s:12:\"dot_notation\";s:9:\"arguments\";O:8:\"stdClass\":1:{s:4:\"path\";s:7:\"enabled\";}}}}}}}}}s:47:\"woocommerce-core-paypal-march-2022-updated-nopp\";O:8:\"stdClass\":8:{s:4:\"slug\";s:47:\"woocommerce-core-paypal-march-2022-updated-nopp\";s:4:\"type\";s:6:\"update\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:35:\"Security auto-update of WooCommerce\";s:7:\"content\";s:237:\"<strong>Your store has been updated to the latest secure version of WooCommerce</strong>. We worked with WordPress to deploy security updates related to PayPal Standard payment gateway for stores running WooCommerce (version 3.5 to 6.3).\";}}s:7:\"actions\";a:2:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:10:\"learn-more\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:10:\"Learn more\";}}s:3:\"url\";s:88:\"https://developer.woocommerce.com/2022/03/10/woocommerce-3-5-10-6-3-1-security-releases/\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:1;s:6:\"status\";s:10:\"unactioned\";}i:1;O:8:\"stdClass\":6:{s:4:\"name\";s:7:\"dismiss\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:7:\"Dismiss\";}}s:3:\"url\";s:0:\"\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:0;s:6:\"status\";s:8:\"actioned\";}}s:5:\"rules\";a:3:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:18:\"publish_after_time\";s:13:\"publish_after\";s:19:\"2022-03-10 18:45:04\";}i:1;O:8:\"stdClass\":2:{s:4:\"type\";s:2:\"or\";s:8:\"operands\";a:28:{i:0;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:6:\"3.5.10\";}i:1;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"3.6.7\";}i:2;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"3.7.3\";}i:3;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"3.8.3\";}i:4;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"3.9.5\";}i:5;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"4.0.4\";}i:6;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"4.1.4\";}i:7;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"4.2.5\";}i:8;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"4.3.6\";}i:9;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"4.4.4\";}i:10;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"4.5.5\";}i:11;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"4.6.5\";}i:12;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"4.7.4\";}i:13;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"4.8.3\";}i:14;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"4.9.5\";}i:15;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"5.0.3\";}i:16;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"5.1.3\";}i:17;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"5.2.5\";}i:18;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"5.3.3\";}i:19;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"5.4.4\";}i:20;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"5.5.4\";}i:21;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"5.6.2\";}i:22;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"5.7.2\";}i:23;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"5.8.1\";}i:24;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"5.9.1\";}i:25;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"6.0.1\";}i:26;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"6.1.2\";}i:27;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"6.2.2\";}}}i:2;O:8:\"stdClass\":4:{s:4:\"type\";s:11:\"note_status\";s:9:\"note_name\";s:42:\"woocommerce-core-paypal-march-2022-updated\";s:6:\"status\";s:7:\"pending\";s:9:\"operation\";s:1:\"=\";}}}s:24:\"pinterest_03_2022_update\";O:8:\"stdClass\":8:{s:4:\"slug\";s:24:\"pinterest_03_2022_update\";s:4:\"type\";s:9:\"marketing\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:53:\"Your Pinterest for WooCommerce plugin is out of date!\";s:7:\"content\";s:262:\"Update to the latest version of Pinterest for WooCommerce to continue using this plugin and keep your store connected with Pinterest. To update, visit <strong>Plugins &gt; Installed Plugins</strong>, and click on “update now” under Pinterest for WooCommerce.\";}}s:7:\"actions\";a:1:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:24:\"pinterest_03_2022_update\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:19:\"Update Instructions\";}}s:3:\"url\";s:148:\"https://woocommerce.com/document/pinterest-for-woocommerce/?utm_source=inbox_note&utm_medium=product&utm_campaign=pinterest_03_2022_update#section-3\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:0;s:6:\"status\";s:8:\"actioned\";}}s:5:\"rules\";a:2:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:18:\"publish_after_time\";s:13:\"publish_after\";s:19:\"2022-03-23 00:00:39\";}i:1;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:25:\"pinterest-for-woocommerce\";s:8:\"operator\";s:1:\"<\";s:7:\"version\";s:5:\"1.0.8\";}}}s:33:\"store_setup_survey_survey_q2_2022\";O:8:\"stdClass\":8:{s:4:\"slug\";s:33:\"store_setup_survey_survey_q2_2022\";s:4:\"type\";s:6:\"survey\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:30:\"How is your store setup going?\";s:7:\"content\";s:232:\"Our goal is to make sure you have all the right tools to start setting up your store in the smoothest way possible.\r\nWe’d love to know if we hit our mark and how we can improve. To collect your thoughts, we made a 2-minute survey.\";}}s:7:\"actions\";a:1:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:53:\"store_setup_survey_survey_q2_2022_share_your_thoughts\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:24:\"Tell us how it’s going\";}}s:3:\"url\";s:52:\"https://automattic.survey.fm/store-setup-survey-2022\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:0;s:6:\"status\";s:8:\"actioned\";}}s:5:\"rules\";a:3:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:18:\"publish_after_time\";s:13:\"publish_after\";s:19:\"2022-05-09 08:42:10\";}i:1;O:8:\"stdClass\":3:{s:4:\"type\";s:18:\"wcadmin_active_for\";s:9:\"operation\";s:1:\">\";s:4:\"days\";i:7;}i:2;O:8:\"stdClass\":3:{s:4:\"type\";s:18:\"wcadmin_active_for\";s:9:\"operation\";s:1:\"<\";s:4:\"days\";i:9;}}}s:47:\"woocommerce-payments-august-2022-need-to-update\";O:8:\"stdClass\":8:{s:4:\"slug\";s:47:\"woocommerce-payments-august-2022-need-to-update\";s:4:\"type\";s:6:\"update\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:51:\"Action required: Please update WooCommerce Payments\";s:7:\"content\";s:213:\"An updated secure version of WooCommerce Payments is available – please ensure that you’re using the latest patch version. For more information on what action you need to take, please review the article below.\";}}s:7:\"actions\";a:2:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:10:\"learn-more\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:13:\"Find out more\";}}s:3:\"url\";s:96:\"https://developer.woocommerce.com/2022/08/09/woocommerce-payments-3-9-4-4-5-1-security-releases/\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:1;s:6:\"status\";s:10:\"unactioned\";}i:1;O:8:\"stdClass\":6:{s:4:\"name\";s:7:\"dismiss\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:7:\"Dismiss\";}}s:3:\"url\";s:0:\"\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:0;s:6:\"status\";s:8:\"actioned\";}}s:5:\"rules\";a:9:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:18:\"publish_after_time\";s:13:\"publish_after\";s:19:\"2022-08-09 14:44:17\";}i:1;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:20:\"woocommerce-payments\";s:8:\"operator\";s:2:\">=\";s:7:\"version\";s:3:\"3.9\";}i:2;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:20:\"woocommerce-payments\";s:8:\"operator\";s:1:\"<\";s:7:\"version\";s:5:\"4.5.1\";}i:3;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:20:\"woocommerce-payments\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"3.9.4\";}i:4;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:20:\"woocommerce-payments\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.0.3\";}i:5;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:20:\"woocommerce-payments\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.1.1\";}i:6;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:20:\"woocommerce-payments\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.2.2\";}i:7;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:20:\"woocommerce-payments\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.3.1\";}i:8;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:20:\"woocommerce-payments\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.4.1\";}}}s:46:\"woocommerce-payments-august-2022-store-patched\";O:8:\"stdClass\":8:{s:4:\"slug\";s:46:\"woocommerce-payments-august-2022-store-patched\";s:4:\"type\";s:6:\"update\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:51:\"WooCommerce Payments has been automatically updated\";s:7:\"content\";s:265:\"You’re now running the latest secure version of WooCommerce Payments. We’ve worked with the WordPress Plugins team to deploy a security update to stores running WooCommerce Payments (version 3.9 to 4.5). For further information, please review the article below.\";}}s:7:\"actions\";a:2:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:10:\"learn-more\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:13:\"Find out more\";}}s:3:\"url\";s:96:\"https://developer.woocommerce.com/2022/08/09/woocommerce-payments-3-9-4-4-5-1-security-releases/\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:1;s:6:\"status\";s:10:\"unactioned\";}i:1;O:8:\"stdClass\":6:{s:4:\"name\";s:7:\"dismiss\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:7:\"Dismiss\";}}s:3:\"url\";s:0:\"\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:0;s:6:\"status\";s:8:\"actioned\";}}s:5:\"rules\";a:3:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:18:\"publish_after_time\";s:13:\"publish_after\";s:19:\"2022-08-09 14:41:13\";}i:1;O:8:\"stdClass\":4:{s:4:\"type\";s:11:\"note_status\";s:9:\"note_name\";s:47:\"woocommerce-payments-august-2022-need-to-update\";s:6:\"status\";s:7:\"pending\";s:9:\"operation\";s:1:\"=\";}i:2;O:8:\"stdClass\":2:{s:4:\"type\";s:2:\"or\";s:8:\"operands\";a:7:{i:0;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:20:\"woocommerce-payments\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"3.9.4\";}i:1;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:20:\"woocommerce-payments\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"4.0.3\";}i:2;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:20:\"woocommerce-payments\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"4.1.1\";}i:3;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:20:\"woocommerce-payments\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"4.2.2\";}i:4;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:20:\"woocommerce-payments\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"4.3.1\";}i:5;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:20:\"woocommerce-payments\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"4.4.1\";}i:6;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:20:\"woocommerce-payments\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"4.5.1\";}}}}}s:48:\"needs-update-eway-payment-gateway-rin-2022-12-20\";O:8:\"stdClass\":8:{s:4:\"slug\";s:48:\"needs-update-eway-payment-gateway-rin-2022-12-20\";s:4:\"type\";s:6:\"update\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:58:\"Security vulnerability patched in WooCommerce Eway Gateway\";s:7:\"content\";s:323:\"In response to a potential vulnerability identified in WooCommerce Eway Gateway versions 3.1.0 to 3.5.0, we’ve worked to deploy security fixes and have released an updated version.\r\nNo external exploits have been detected, but we recommend you update to your latest supported version 3.1.26, 3.2.3, 3.3.1, 3.4.6, or 3.5.1\";}}s:7:\"actions\";a:2:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:62:\"needs-update-eway-payment-gateway-rin-action-button-2022-12-20\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:21:\"See available updates\";}}s:3:\"url\";s:16:\"/update-core.php\";s:18:\"url_is_admin_query\";b:1;s:10:\"is_primary\";b:0;s:6:\"status\";s:10:\"unactioned\";}i:1;O:8:\"stdClass\":6:{s:4:\"name\";s:63:\"needs-update-eway-payment-gateway-rin-dismiss-button-2022-12-20\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:7:\"Dismiss\";}}s:3:\"url\";s:1:\"#\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:0;s:6:\"status\";s:8:\"actioned\";}}s:5:\"rules\";a:7:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:18:\"publish_after_time\";s:13:\"publish_after\";s:19:\"2022-01-03 23:45:53\";}i:1;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:24:\"woocommerce-gateway-eway\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:6:\"3.1.26\";}i:2;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:24:\"woocommerce-gateway-eway\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"3.2.3\";}i:3;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:24:\"woocommerce-gateway-eway\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"3.3.1\";}i:4;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:24:\"woocommerce-gateway-eway\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"3.4.6\";}i:5;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:24:\"woocommerce-gateway-eway\";s:8:\"operator\";s:1:\"<\";s:7:\"version\";s:5:\"3.5.1\";}i:6;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:24:\"woocommerce-gateway-eway\";s:8:\"operator\";s:2:\">=\";s:7:\"version\";s:5:\"3.1.0\";}}}s:43:\"updated-eway-payment-gateway-rin-2022-12-20\";O:8:\"stdClass\":8:{s:4:\"slug\";s:43:\"updated-eway-payment-gateway-rin-2022-12-20\";s:4:\"type\";s:6:\"update\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:55:\"WooCommerce Eway Gateway has been automatically updated\";s:7:\"content\";s:280:\"Your store is now running the latest secure version of WooCommerce Eway Gateway. We worked with the WordPress Plugins team to deploy a software update to stores running WooCommerce Eway Gateway (versions 3.1.0 to 3.5.0) in response to a security vulnerability that was discovered.\";}}s:7:\"actions\";a:2:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:57:\"updated-eway-payment-gateway-rin-action-button-2022-12-20\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:15:\"See all updates\";}}s:3:\"url\";s:16:\"/update-core.php\";s:18:\"url_is_admin_query\";b:1;s:10:\"is_primary\";b:0;s:6:\"status\";s:10:\"unactioned\";}i:1;O:8:\"stdClass\":6:{s:4:\"name\";s:58:\"updated-eway-payment-gateway-rin-dismiss-button-2022-12-20\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:7:\"Dismiss\";}}s:3:\"url\";s:1:\"#\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:0;s:6:\"status\";s:8:\"actioned\";}}s:5:\"rules\";a:3:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:18:\"publish_after_time\";s:13:\"publish_after\";s:19:\"2022-01-03 23:45:06\";}i:1;O:8:\"stdClass\":4:{s:4:\"type\";s:11:\"note_status\";s:9:\"note_name\";s:48:\"needs-update-eway-payment-gateway-rin-2022-12-20\";s:6:\"status\";s:7:\"pending\";s:9:\"operation\";s:1:\"=\";}i:2;O:8:\"stdClass\":2:{s:4:\"type\";s:2:\"or\";s:8:\"operands\";a:5:{i:0;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:24:\"woocommerce-gateway-eway\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:6:\"3.1.26\";}i:1;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:24:\"woocommerce-gateway-eway\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"3.2.3\";}i:2;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:24:\"woocommerce-gateway-eway\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"3.3.1\";}i:3;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:24:\"woocommerce-gateway-eway\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"3.4.6\";}i:4;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:24:\"woocommerce-gateway-eway\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"3.5.1\";}}}}}s:31:\"ecomm-wc-navigation-survey-2023\";O:8:\"stdClass\":8:{s:4:\"slug\";s:31:\"ecomm-wc-navigation-survey-2023\";s:4:\"type\";s:4:\"info\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:39:\"Navigating WooCommerce on WordPress.com\";s:7:\"content\";s:166:\"We are improving the WooCommerce navigation on WordPress.com and would love your help to make it better! Please share your experience with us in this 2-minute survey.\";}}s:7:\"actions\";a:1:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:32:\"share-navigation-survey-feedback\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:14:\"Share feedback\";}}s:3:\"url\";s:58:\"https://automattic.survey.fm/new-ecommerce-plan-navigation\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:1;s:6:\"status\";s:8:\"actioned\";}}s:5:\"rules\";a:3:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:18:\"publish_after_time\";s:13:\"publish_after\";s:19:\"2023-01-16 09:53:44\";}i:1;O:8:\"stdClass\":2:{s:4:\"type\";s:12:\"is_ecommerce\";s:5:\"value\";b:1;}i:2;O:8:\"stdClass\":3:{s:4:\"type\";s:18:\"wcadmin_active_for\";s:9:\"operation\";s:1:\">\";s:4:\"days\";i:180;}}}s:39:\"woopay-beta-merchantrecruitment-04MAY23\";O:8:\"stdClass\":8:{s:4:\"slug\";s:39:\"woopay-beta-merchantrecruitment-04MAY23\";s:4:\"type\";s:4:\"info\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:61:\"Increase conversions with WooPay — our fastest checkout yet\";s:7:\"content\";s:319:\"WooPay, a new express checkout feature built into WooCommerce Payments, is <b>now available</b> —and we’re inviting you to be one of the first to try it. \r\n<br><br>\r\n<b>Boost conversions</b> by offering your customers a simple, secure way to pay with a <b>single click</b>.\r\n<br><br>\r\n<b>Get started in seconds.</b>\";}}s:7:\"actions\";a:2:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:48:\"woopay-beta-merchantrecruitment-activate-04MAY23\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:15:\"Activate WooPay\";}}s:3:\"url\";s:93:\"admin.php?page=wc-settings&tab=checkout&section=woocommerce_payments&method=platform_checkout\";s:18:\"url_is_admin_query\";b:1;s:10:\"is_primary\";b:1;s:6:\"status\";s:8:\"actioned\";}i:1;O:8:\"stdClass\":6:{s:4:\"name\";s:58:\"woopay-beta-merchantrecruitment-activate-learnmore-04MAY23\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:10:\"Learn More\";}}s:3:\"url\";s:155:\"https://woocommerce.com/woopay-businesses/?utm_source=inbox_note&utm_medium=product&utm_campaign=woopay-beta-merchantrecruitment-activate-learnmore-04MAY23\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:0;s:6:\"status\";s:10:\"unactioned\";}}s:5:\"rules\";a:3:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:18:\"publish_after_time\";s:13:\"publish_after\";s:19:\"2023-05-04 18:00:27\";}i:1;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:20:\"woocommerce-payments\";s:8:\"operator\";s:2:\">=\";s:7:\"version\";s:5:\"5.8.1\";}i:2;O:8:\"stdClass\":2:{s:4:\"type\";s:2:\"or\";s:8:\"operands\";a:144:{i:0;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:36:\"http://pieroatomic3.wpcomstaging.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:1;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:35:\"https://www.handinhandparenting.org\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:2;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:25:\"http://pritikinfoods.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:3;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:25:\"https://utahrecsports.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:4;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:25:\"https://www.hunterpta.org\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:5;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:26:\"http://www.smokinbeans.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:6;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:23:\"https://shulabeauty.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:7;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:30:\"https://bingeworthytvmerch.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:8;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:31:\"http://s91.4d8.myftpupload.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:9;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:33:\"https://stephanienicolenorris.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:10;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:23:\"http://aliensshirt.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:11;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:36:\"https://libertyordeathapparelllc.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:12;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:28:\"https://cowboystatedaily.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:13;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:42:\"https://fundrgear.com/beckendorffathletics\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:14;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:50:\"http://wordpress-528155-2231771.cloudwaysapps.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:15;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:31:\"https://checkout.sohaprice.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:16;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:23:\"https://amadozstore.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:17;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:19:\"http://eliwehbe.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:18;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:19:\"http://lunabra.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:19;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:18:\"https://nptixx.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:20;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:27:\"http://louisianapantry.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:21;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:24:\"https://aplusanatomy.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:22;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:19:\"https://wildsvg.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:23;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:22:\"https://bleachfilm.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:24;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:25:\"https://benabeautyspa.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:25;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:47:\"http://barrettfitnessenterprises.wordpress.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:26;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:24:\"https://goabroadable.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:27;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:26:\"https://alexoathletica.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:28;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:25:\"https://www.fourpurls.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:29;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:29:\"https://www.hagmannreport.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:30;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:27:\"https://busybeeorganics.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:31;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:24:\"https://nallsproduce.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:32;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:23:\"https://bigtimebats.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:33;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:33:\"https://shop.cookingwithkarli.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:34;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:33:\"https://www.queenofpeacemedia.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:35;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:29:\"https://bigjohnsbeefjerky.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:36;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:24:\"https://paperbyjaney.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:37;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:31:\"https://carolinarisemembers.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:38;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:26:\"https://veroticaevents.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:39;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:18:\"https://spira.farm\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:40;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:25:\"https://endlessassist.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:41;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:26:\"https://betterlifeblog.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:42;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:26:\"https://ashleighrenard.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:43;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:28:\"https://www.turkeymerck.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:44;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:23:\"http://carfiershop.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:45;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:31:\"https://normanmusicfestival.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:46;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:35:\"http://www.olfactoryfactoryllc.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:47;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:38:\"https://fundrgear.com/anthonyathletics\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:48;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:40:\"http://tkechilifestdotcom.wordpress.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:49;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:15:\"No results foun\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:50;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:16:\"https://pvsa.org\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:51;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:22:\"http://becbatop.store/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:52;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:26:\"https://wwmeconvention.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:53;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:17:\"https://lswmp.org\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:54;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:25:\"https://bubbaskincare.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:55;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:19:\"http://fusango.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:56;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:25:\"https://vcdpostershow.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:57;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:26:\"http://www.rileysribz.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:58;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:30:\"https://www.fakeultrasound.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:59;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:31:\"http://onelongfellowsquare.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:60;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:19:\"http://agodpod.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:61;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:40:\"https://fundrgear.com/littleladybulldogs\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:62;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:25:\"https://thecirclelarp.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:63;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:19:\"https://byletam.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:64;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:25:\"https://www.nachonite.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:65;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:33:\"http://designerdab.wordpress.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:66;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:38:\"http://box2151.temp.domains/~lovebyt2/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:67;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:37:\"https://shortporchbaseballcompany.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:68;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:23:\"http://distancecme.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:69;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:29:\"https://middleswarthchips.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:70;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:24:\"https://railblazausa.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:71;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:30:\"https://mikescountrymeats.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:72;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:26:\"https://www.woodenshoe.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:73;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:27:\"https://rockspringscafe.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:74;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:28:\"http://footballfangears.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:75;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:19:\"https://ybtoner.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:76;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:24:\"https://simplyclayyy.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:77;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:26:\"https://naturecreation.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:78;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:26:\"http://marisrodriguez.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:79;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:31:\"https://asanteinternational.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:80;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:21:\"https://theatre55.org\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:81;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:37:\"https://carolynscreativeclassroom.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:82;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:23:\"https://www.miiriya.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:83;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:22:\"http://trendyds.store/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:84;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:26:\"https://wooedbythefood.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:85;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:27:\"https://papasteamstores.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:86;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:20:\"http://omdurags.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:87;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:27:\"https://happydogbarkery.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:88;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:19:\"http://kitbose.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:89;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:24:\"https://seamossdeals.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:90;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:19:\"https://zeatala.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:91;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:27:\"https://shop.atwaterffa.org\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:92;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:37:\"http://www.brettsfirstresponders.org/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:93;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:23:\"http://shirtactive.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:94;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:24:\"https://boerneparade.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:95;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:23:\"https://zorahshrine.org\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:96;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:25:\"https://davidcervenka.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:97;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:24:\"https://addisjourney.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:98;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:18:\"https://305ycle.cc\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:99;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:45:\"http://yourworstnightmarehaunt.wordpress.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:100;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:26:\"http://westcoastpreps.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:101;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:30:\"https://checkout.sohaking.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:102;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:36:\"https://www.theunshakeablepundit.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:103;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:31:\"https://www.stellaandchewys.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:104;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:27:\"https://www.raywhitcomb.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:105;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:39:\"http://constellationtheatercompany.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:106;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:23:\"https://stacynguyen.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:107;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:46:\"https://fundrgear.com/lakecreekgirlsbasketball\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:108;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:28:\"https://winslowartcenter.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:109;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:23:\"https://flufftastik.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:110;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:24:\"https://mygreenbeach.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:111;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:22:\"http://ebookvip.store/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:112;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:41:\"https://fundrgear.com/needvillevolleyball\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:113;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:25:\"https://bifocalmedia.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:114;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:16:\"https://clrc.org\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:115;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:21:\"https://hyperpins.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:116;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:45:\"https://fundrgear.com/lakecreekboysbasketball\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:117;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:33:\"https://fundrgear.com/kparktennis\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:118;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:25:\"https://mogadorspices.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:119;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:35:\"https://fundrgear.com/newcaneytrack\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:120;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:23:\"https://sigmascents.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:121;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:25:\"http://bsharisemoore.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:122;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:21:\"https://morrflate.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:123;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:23:\"https://westbrosinc.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:124;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:28:\"https://shop.danceplexaz.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:125;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:20:\"https://chikepod.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:126;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:28:\"https://www.advanahealth.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:127;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:18:\"https://tatter.org\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:128;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:33:\"https://greatawakeningbrewing.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:129;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:29:\"https://waterfowlfestival.org\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:130;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:27:\"https://preppedwellness.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:131;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:23:\"https://events.thus.org\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:132;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:37:\"http://stormtide.thefifthtrooper.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:133;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:24:\"https://www.tabsynth.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:134;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:34:\"http://staging.fliptheswitchon.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:135;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:23:\"https://duffysdough.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:136;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:27:\"https://fitfoodieliving.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:137;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:30:\"https://breakerbrotherstcg.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:138;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:22:\"https://andymation.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:139;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:26:\"https://recklessmetals.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:140;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:22:\"https://sophielark.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:141;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:26:\"http://wp.arabtherapy.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:142;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:29:\"https://creativeappliques.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:143;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:20:\"https://altitude.win\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}}}}}s:42:\"woocommerce-wcpay-march-2023-update-needed\";O:8:\"stdClass\":8:{s:4:\"slug\";s:42:\"woocommerce-wcpay-march-2023-update-needed\";s:4:\"type\";s:6:\"update\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:57:\"Action required: Security update for WooCommerce Payments\";s:7:\"content\";s:296:\"<strong>Your store requires a security update for WooCommerce Payments</strong>. Please update to the latest version of WooCommerce Payments immediately to address a potential vulnerability discovered on March 22. For more information on how to update, visit this WooCommerce Developer Blog Post.\";}}s:7:\"actions\";a:2:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:49:\"woocommerce-wcpay-march-2023-update-needed-button\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:13:\"See Blog Post\";}}s:3:\"url\";s:122:\"https://developer.woocommerce.com/2023/03/23/critical-vulnerability-detected-in-woocommerce-payments-what-you-need-to-know\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:0;s:6:\"status\";s:10:\"unactioned\";}i:1;O:8:\"stdClass\":6:{s:4:\"name\";s:57:\"woocommerce-wcpay-march-2023-update-needed-dismiss-button\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:7:\"Dismiss\";}}s:3:\"url\";s:1:\"#\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:0;s:6:\"status\";s:8:\"actioned\";}}s:5:\"rules\";a:11:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:18:\"publish_after_time\";s:13:\"publish_after\";s:19:\"2023-03-22 20:25:44\";}i:1;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:20:\"woocommerce-payments\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.8.2\";}i:2;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:20:\"woocommerce-payments\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.9.1\";}i:3;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:20:\"woocommerce-payments\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"5.0.4\";}i:4;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:20:\"woocommerce-payments\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"5.1.3\";}i:5;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:20:\"woocommerce-payments\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"5.2.2\";}i:6;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:20:\"woocommerce-payments\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"5.3.1\";}i:7;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:20:\"woocommerce-payments\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"5.4.1\";}i:8;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:20:\"woocommerce-payments\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"5.5.2\";}i:9;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:20:\"woocommerce-payments\";s:8:\"operator\";s:2:\">=\";s:7:\"version\";s:5:\"4.8.0\";}i:10;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:20:\"woocommerce-payments\";s:8:\"operator\";s:2:\"<=\";s:7:\"version\";s:5:\"5.6.1\";}}}s:34:\"tap_to_pay_iphone_q2_2023_no_wcpay\";O:8:\"stdClass\":8:{s:4:\"slug\";s:34:\"tap_to_pay_iphone_q2_2023_no_wcpay\";s:4:\"type\";s:9:\"marketing\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:52:\"Accept in-person contactless payments on your iPhone\";s:7:\"content\";s:230:\"Tap to Pay on iPhone and WooCommerce Payments is quick, secure, and simple to set up — no extra terminals or card readers are needed. Accept contactless debit and credit cards, Apple Pay, and other NFC digital wallets in person.\";}}s:7:\"actions\";a:1:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:34:\"tap_to_pay_iphone_q2_2023_no_wcpay\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:20:\"Simplify my payments\";}}s:3:\"url\";s:143:\"https://woocommerce.com/products/woocommerce-payments/?utm_source=inbox_note&utm_medium=product&utm_campaign=tap_to_pay_iphone_q2_2023_no_wcpay\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:0;s:6:\"status\";s:8:\"actioned\";}}s:5:\"rules\";a:3:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:18:\"publish_after_time\";s:13:\"publish_after\";s:19:\"2023-04-03 23:59:47\";}i:1;O:8:\"stdClass\":2:{s:4:\"type\";s:3:\"not\";s:7:\"operand\";a:1:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:17:\"plugins_activated\";s:7:\"plugins\";a:1:{i:0;s:20:\"woocommerce-payments\";}}}}i:2;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:9:\"operation\";s:1:\"=\";s:5:\"value\";s:2:\"US\";}}}s:36:\"tap_to_pay_iphone_q2_2023_with_wcpay\";O:8:\"stdClass\":8:{s:4:\"slug\";s:36:\"tap_to_pay_iphone_q2_2023_with_wcpay\";s:4:\"type\";s:9:\"marketing\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:57:\"New: accept in-person contactless payments on your iPhone\";s:7:\"content\";s:250:\"Tap to Pay on iPhone is quick, secure, and simple to set up in WooCommerce Payments — no extra terminals or card readers are needed. Accept contactless debit and credit cards, Apple Pay, and other NFC digital wallets in person in a few short steps!\";}}s:7:\"actions\";a:1:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:36:\"tap_to_pay_iphone_q2_2023_with_wcpay\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:27:\"Set up Tap to Pay on iPhone\";}}s:3:\"url\";s:234:\"https://woocommerce.com/document/woocommerce-payments/in-person-payments/woocommerce-in-person-payments-tap-to-pay-on-iphone-quick-start-guide/?utm_source=inbox_note&utm_medium=product&utm_campaign=tap_to_pay_iphone_q2_2023_with_wcpay\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:0;s:6:\"status\";s:8:\"actioned\";}}s:5:\"rules\";a:3:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:18:\"publish_after_time\";s:13:\"publish_after\";s:19:\"2023-04-03 23:59:44\";}i:1;O:8:\"stdClass\":2:{s:4:\"type\";s:17:\"plugins_activated\";s:7:\"plugins\";a:1:{i:0;s:20:\"woocommerce-payments\";}}i:2;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:9:\"operation\";s:1:\"=\";s:5:\"value\";s:2:\"US\";}}}s:48:\"woocommerce-WCPreOrders-april-2023-update-needed\";O:8:\"stdClass\":8:{s:4:\"slug\";s:48:\"woocommerce-WCPreOrders-april-2023-update-needed\";s:4:\"type\";s:6:\"update\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:68:\"Action required: Security update of WooCommerce Pre-Orders extension\";s:7:\"content\";s:220:\"<strong>Your store requires a security update for the WooCommerce Pre-Orders extension</strong>. Please update the WooCommerce Pre-Orders extension immediately to address a potential vulnerability discovered on April 11.\";}}s:7:\"actions\";a:2:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:18:\"extension-settings\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:21:\"See available updates\";}}s:3:\"url\";s:15:\"update-core.php\";s:18:\"url_is_admin_query\";b:1;s:10:\"is_primary\";b:0;s:6:\"status\";s:10:\"unactioned\";}i:1;O:8:\"stdClass\":6:{s:4:\"name\";s:7:\"dismiss\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:7:\"Dismiss\";}}s:3:\"url\";s:1:\"#\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:0;s:6:\"status\";s:8:\"actioned\";}}s:5:\"rules\";a:2:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:18:\"publish_after_time\";s:13:\"publish_after\";s:19:\"2023-04-12 22:16:37\";}i:1;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:22:\"woocommerce-pre-orders\";s:8:\"operator\";s:2:\"<=\";s:7:\"version\";s:5:\"2.0.0\";}}}s:46:\"woopay-beta-merchantrecruitment-update-04MAY23\";O:8:\"stdClass\":8:{s:4:\"slug\";s:46:\"woopay-beta-merchantrecruitment-update-04MAY23\";s:4:\"type\";s:4:\"info\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:61:\"Increase conversions with WooPay — our fastest checkout yet\";s:7:\"content\";s:321:\"WooPay, a new express checkout feature built into WooCommerce Payments, is <b>now available</b> — and you’re invited to try it. \r\n<br /><br />\r\n<b>Boost conversions</b> by offering your customers a simple, secure way to pay with a <b>single click</b>.\r\n<br /><br />\r\n<b>Update WooCommerce Payments</b> to get started.\";}}s:7:\"actions\";a:2:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:52:\"woopay-beta-merchantrecruitment-update-WCPay-04MAY23\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:27:\"Update WooCommerce Payments\";}}s:3:\"url\";s:29:\"plugins.php?plugin_status=all\";s:18:\"url_is_admin_query\";b:1;s:10:\"is_primary\";b:1;s:6:\"status\";s:10:\"unactioned\";}i:1;O:8:\"stdClass\":6:{s:4:\"name\";s:55:\"woopay-beta-merchantrecruitment-update-activate-04MAY23\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:15:\"Activate WooPay\";}}s:3:\"url\";s:93:\"admin.php?page=wc-settings&tab=checkout&section=woocommerce_payments&method=platform_checkout\";s:18:\"url_is_admin_query\";b:1;s:10:\"is_primary\";b:0;s:6:\"status\";s:8:\"actioned\";}}s:5:\"rules\";a:3:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:18:\"publish_after_time\";s:13:\"publish_after\";s:19:\"2023-05-04 18:00:06\";}i:1;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:20:\"woocommerce-payments\";s:8:\"operator\";s:1:\"<\";s:7:\"version\";s:5:\"5.8.1\";}i:2;O:8:\"stdClass\":2:{s:4:\"type\";s:2:\"or\";s:8:\"operands\";a:144:{i:0;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:36:\"http://pieroatomic3.wpcomstaging.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:1;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:35:\"https://www.handinhandparenting.org\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:2;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:25:\"http://pritikinfoods.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:3;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:25:\"https://utahrecsports.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:4;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:25:\"https://www.hunterpta.org\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:5;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:26:\"http://www.smokinbeans.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:6;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:23:\"https://shulabeauty.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:7;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:30:\"https://bingeworthytvmerch.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:8;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:31:\"http://s91.4d8.myftpupload.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:9;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:33:\"https://stephanienicolenorris.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:10;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:23:\"http://aliensshirt.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:11;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:36:\"https://libertyordeathapparelllc.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:12;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:28:\"https://cowboystatedaily.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:13;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:42:\"https://fundrgear.com/beckendorffathletics\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:14;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:50:\"http://wordpress-528155-2231771.cloudwaysapps.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:15;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:31:\"https://checkout.sohaprice.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:16;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:23:\"https://amadozstore.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:17;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:19:\"http://eliwehbe.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:18;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:19:\"http://lunabra.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:19;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:18:\"https://nptixx.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:20;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:27:\"http://louisianapantry.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:21;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:24:\"https://aplusanatomy.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:22;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:19:\"https://wildsvg.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:23;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:22:\"https://bleachfilm.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:24;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:25:\"https://benabeautyspa.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:25;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:47:\"http://barrettfitnessenterprises.wordpress.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:26;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:24:\"https://goabroadable.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:27;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:26:\"https://alexoathletica.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:28;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:25:\"https://www.fourpurls.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:29;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:29:\"https://www.hagmannreport.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:30;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:27:\"https://busybeeorganics.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:31;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:24:\"https://nallsproduce.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:32;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:23:\"https://bigtimebats.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:33;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:33:\"https://shop.cookingwithkarli.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:34;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:33:\"https://www.queenofpeacemedia.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:35;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:29:\"https://bigjohnsbeefjerky.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:36;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:24:\"https://paperbyjaney.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:37;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:31:\"https://carolinarisemembers.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:38;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:26:\"https://veroticaevents.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:39;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:18:\"https://spira.farm\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:40;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:25:\"https://endlessassist.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:41;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:26:\"https://betterlifeblog.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:42;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:26:\"https://ashleighrenard.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:43;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:28:\"https://www.turkeymerck.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:44;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:23:\"http://carfiershop.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:45;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:31:\"https://normanmusicfestival.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:46;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:35:\"http://www.olfactoryfactoryllc.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:47;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:38:\"https://fundrgear.com/anthonyathletics\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:48;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:40:\"http://tkechilifestdotcom.wordpress.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:49;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:15:\"No results foun\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:50;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:16:\"https://pvsa.org\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:51;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:22:\"http://becbatop.store/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:52;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:26:\"https://wwmeconvention.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:53;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:17:\"https://lswmp.org\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:54;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:25:\"https://bubbaskincare.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:55;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:19:\"http://fusango.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:56;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:25:\"https://vcdpostershow.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:57;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:26:\"http://www.rileysribz.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:58;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:30:\"https://www.fakeultrasound.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:59;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:31:\"http://onelongfellowsquare.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:60;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:19:\"http://agodpod.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:61;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:40:\"https://fundrgear.com/littleladybulldogs\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:62;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:25:\"https://thecirclelarp.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:63;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:19:\"https://byletam.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:64;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:25:\"https://www.nachonite.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:65;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:33:\"http://designerdab.wordpress.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:66;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:38:\"http://box2151.temp.domains/~lovebyt2/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:67;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:37:\"https://shortporchbaseballcompany.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:68;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:23:\"http://distancecme.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:69;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:29:\"https://middleswarthchips.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:70;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:24:\"https://railblazausa.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:71;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:30:\"https://mikescountrymeats.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:72;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:26:\"https://www.woodenshoe.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:73;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:27:\"https://rockspringscafe.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:74;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:28:\"http://footballfangears.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:75;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:19:\"https://ybtoner.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:76;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:24:\"https://simplyclayyy.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:77;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:26:\"https://naturecreation.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:78;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:26:\"http://marisrodriguez.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:79;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:31:\"https://asanteinternational.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:80;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:21:\"https://theatre55.org\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:81;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:37:\"https://carolynscreativeclassroom.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:82;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:23:\"https://www.miiriya.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:83;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:22:\"http://trendyds.store/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:84;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:26:\"https://wooedbythefood.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:85;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:27:\"https://papasteamstores.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:86;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:20:\"http://omdurags.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:87;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:27:\"https://happydogbarkery.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:88;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:19:\"http://kitbose.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:89;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:24:\"https://seamossdeals.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:90;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:19:\"https://zeatala.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:91;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:27:\"https://shop.atwaterffa.org\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:92;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:37:\"http://www.brettsfirstresponders.org/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:93;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:23:\"http://shirtactive.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:94;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:24:\"https://boerneparade.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:95;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:23:\"https://zorahshrine.org\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:96;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:25:\"https://davidcervenka.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:97;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:24:\"https://addisjourney.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:98;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:18:\"https://305ycle.cc\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:99;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:45:\"http://yourworstnightmarehaunt.wordpress.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:100;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:26:\"http://westcoastpreps.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:101;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:30:\"https://checkout.sohaking.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:102;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:36:\"https://www.theunshakeablepundit.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:103;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:31:\"https://www.stellaandchewys.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:104;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:27:\"https://www.raywhitcomb.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:105;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:39:\"http://constellationtheatercompany.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:106;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:23:\"https://stacynguyen.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:107;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:46:\"https://fundrgear.com/lakecreekgirlsbasketball\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:108;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:28:\"https://winslowartcenter.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:109;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:23:\"https://flufftastik.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:110;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:24:\"https://mygreenbeach.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:111;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:22:\"http://ebookvip.store/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:112;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:41:\"https://fundrgear.com/needvillevolleyball\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:113;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:25:\"https://bifocalmedia.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:114;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:16:\"https://clrc.org\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:115;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:21:\"https://hyperpins.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:116;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:45:\"https://fundrgear.com/lakecreekboysbasketball\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:117;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:33:\"https://fundrgear.com/kparktennis\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:118;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:25:\"https://mogadorspices.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:119;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:35:\"https://fundrgear.com/newcaneytrack\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:120;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:23:\"https://sigmascents.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:121;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:25:\"http://bsharisemoore.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:122;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:21:\"https://morrflate.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:123;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:23:\"https://westbrosinc.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:124;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:28:\"https://shop.danceplexaz.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:125;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:20:\"https://chikepod.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:126;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:28:\"https://www.advanahealth.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:127;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:18:\"https://tatter.org\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:128;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:33:\"https://greatawakeningbrewing.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:129;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:29:\"https://waterfowlfestival.org\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:130;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:27:\"https://preppedwellness.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:131;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:23:\"https://events.thus.org\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:132;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:37:\"http://stormtide.thefifthtrooper.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:133;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:24:\"https://www.tabsynth.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:134;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:34:\"http://staging.fliptheswitchon.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:135;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:23:\"https://duffysdough.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:136;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:27:\"https://fitfoodieliving.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:137;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:30:\"https://breakerbrotherstcg.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:138;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:22:\"https://andymation.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:139;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:26:\"https://recklessmetals.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:140;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:22:\"https://sophielark.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:141;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:26:\"http://wp.arabtherapy.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:142;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:29:\"https://creativeappliques.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:143;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:20:\"https://altitude.win\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}}}}}s:46:\"woopay-beta-existingmerchants-noaction-27APR23\";O:8:\"stdClass\":8:{s:4:\"slug\";s:46:\"woopay-beta-existingmerchants-noaction-27APR23\";s:4:\"type\";s:4:\"info\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:15:\"WooPay is back!\";s:7:\"content\";s:361:\"Thanks for previously trying WooPay, the<b> express checkout feature</b> built into WooCommerce Payments. We’re excited to announce that <b>WooPay availability has resumed</b>. No action is required on your part.\r\n<br /><br />\r\nYou can now <b>continue boosting conversions</b> by offering your customers a simple, secure way to pay with a <b>single click</b>.\";}}s:7:\"actions\";a:1:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:60:\"woopay-beta-existingmerchants-noaction-documentation-27APR23\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:13:\"Documentation\";}}s:3:\"url\";s:178:\"https://woocommerce.com/document/woopay-merchant-documentation/?utm_source=inbox_note&utm_medium=product&utm_campaign=woopay-beta-existingmerchants-noaction-documentation-27APR23\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:1;s:6:\"status\";s:8:\"actioned\";}}s:5:\"rules\";a:3:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:18:\"publish_after_time\";s:13:\"publish_after\";s:19:\"2023-04-26 19:00:23\";}i:1;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:20:\"woocommerce-payments\";s:8:\"operator\";s:2:\">=\";s:7:\"version\";s:5:\"5.8.0\";}i:2;O:8:\"stdClass\":2:{s:4:\"type\";s:2:\"or\";s:8:\"operands\";a:38:{i:0;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:35:\"https://store.startingstrongman.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:1;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:26:\"https://joacreativelab.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:2;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:33:\"https://www.pureskincaresalon.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:3;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:25:\"https://mariablaquier.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:4;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:25:\"https://getprodigital.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:5;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:30:\"https://dalefrickeholsters.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:6;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:18:\"https://sstour.org\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:7;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:22:\"https://tk-txstore.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:8;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:30:\"https://humanspiritproject.org\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:9;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:23:\"https://viradadrums.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:10;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:26:\"https://rosariumblends.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:11;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:27:\"https://organicskincare.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:12;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:27:\"https://stuckpigmedical.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:13;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:33:\"https://www.seattlegiftbasket.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:14;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:31:\"https://www.cloverandviolet.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:15;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:25:\"https://gvscholarship.org\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:16;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:22:\"https://yesimadiva.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:17;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:31:\"http://www.old.jmtrashbgone.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:18;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:28:\"https://victorialansford.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:19;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:24:\"https://craftcosplay.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:20;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:29:\"https://thefossilexchange.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:21;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:24:\"https://nextgenspeed.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:22;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:27:\"https://cappellarecords.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:23;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:29:\"https://ontimesupermarket.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:24;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:20:\"https://new2knox.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:25;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:25:\"https://lovestudiollc.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:26;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:26:\"https://thehivelivebox.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:27;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:29:\"https://socceruniformkits.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:28;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:25:\"https://willowcreativ.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:29;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:22:\"https://summitprep.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:30;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:17:\"https://howda.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:31;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:29:\"https://soapavenuecompany.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:32;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:36:\"https://subsbox.mystagingwebsite.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:33;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:26:\"https://wifflebreakers.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:34;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:30:\"https://www.mps-outfitters.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:35;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:34:\"https://howardharrisassociates.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:36;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:27:\"https://bettersaferadio.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:37;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:21:\"https://bunnyluna.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}}}}}s:44:\"woopay-beta-existingmerchants-update-27APR23\";O:8:\"stdClass\":8:{s:4:\"slug\";s:44:\"woopay-beta-existingmerchants-update-27APR23\";s:4:\"type\";s:4:\"info\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:15:\"WooPay is back!\";s:7:\"content\";s:368:\"Thanks for previously trying WooPay, the <b>express checkout feature</b> built into WooCommerce Payments. We’re excited to announce that <b>WooPay availability has resumed</b>.\r\n<br /><br />\r\n\r\nUpdate to the latest WooCommerce Payments version to <b>continue boosting conversions</b> by offering your customers a simple, secure way to pay with a <b>single click</b>.\";}}s:7:\"actions\";a:1:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:50:\"woopay-beta-existingmerchants-update-WCPay-27APR23\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:27:\"Update WooCommerce Payments\";}}s:3:\"url\";s:29:\"plugins.php?plugin_status=all\";s:18:\"url_is_admin_query\";b:1;s:10:\"is_primary\";b:1;s:6:\"status\";s:8:\"actioned\";}}s:5:\"rules\";a:3:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:18:\"publish_after_time\";s:13:\"publish_after\";s:19:\"2023-04-26 19:00:08\";}i:1;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:20:\"woocommerce-payments\";s:8:\"operator\";s:1:\"<\";s:7:\"version\";s:5:\"5.8.0\";}i:2;O:8:\"stdClass\":2:{s:4:\"type\";s:2:\"or\";s:8:\"operands\";a:38:{i:0;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:35:\"https://store.startingstrongman.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:1;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:26:\"https://joacreativelab.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:2;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:33:\"https://www.pureskincaresalon.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:3;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:25:\"https://mariablaquier.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:4;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:25:\"https://getprodigital.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:5;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:30:\"https://dalefrickeholsters.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:6;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:18:\"https://sstour.org\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:7;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:22:\"https://tk-txstore.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:8;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:30:\"https://humanspiritproject.org\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:9;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:23:\"https://viradadrums.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:10;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:26:\"https://rosariumblends.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:11;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:27:\"https://organicskincare.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:12;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:27:\"https://stuckpigmedical.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:13;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:33:\"https://www.seattlegiftbasket.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:14;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:31:\"https://www.cloverandviolet.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:15;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:25:\"https://gvscholarship.org\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:16;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:22:\"https://yesimadiva.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:17;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:31:\"http://www.old.jmtrashbgone.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:18;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:28:\"https://victorialansford.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:19;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:24:\"https://craftcosplay.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:20;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:29:\"https://thefossilexchange.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:21;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:24:\"https://nextgenspeed.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:22;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:27:\"https://cappellarecords.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:23;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:29:\"https://ontimesupermarket.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:24;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:20:\"https://new2knox.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:25;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:25:\"https://lovestudiollc.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:26;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:26:\"https://thehivelivebox.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:27;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:29:\"https://socceruniformkits.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:28;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:25:\"https://willowcreativ.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:29;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:22:\"https://summitprep.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:30;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:17:\"https://howda.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:31;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:29:\"https://soapavenuecompany.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:32;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:36:\"https://subsbox.mystagingwebsite.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:33;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:26:\"https://wifflebreakers.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:34;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:30:\"https://www.mps-outfitters.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:35;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:34:\"https://howardharrisassociates.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:36;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:27:\"https://bettersaferadio.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:37;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:21:\"https://bunnyluna.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}}}}}s:45:\"woopay-beta-merchantrecruitment-short-04MAY23\";O:8:\"stdClass\":8:{s:4:\"slug\";s:45:\"woopay-beta-merchantrecruitment-short-04MAY23\";s:4:\"type\";s:4:\"info\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:61:\"Increase conversions with WooPay — our fastest checkout yet\";s:7:\"content\";s:181:\"Be one of the first to try WooPay, a new express checkout feature for WooCommerce Payments. \r\n<br><br>\r\n<b>Boost conversions</b> by letting customers pay with a <b>single click</b>.\";}}s:7:\"actions\";a:2:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:54:\"woopay-beta-merchantrecruitment-short-activate-04MAY23\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:15:\"Activate WooPay\";}}s:3:\"url\";s:93:\"admin.php?page=wc-settings&tab=checkout&section=woocommerce_payments&method=platform_checkout\";s:18:\"url_is_admin_query\";b:1;s:10:\"is_primary\";b:1;s:6:\"status\";s:8:\"actioned\";}i:1;O:8:\"stdClass\":6:{s:4:\"name\";s:64:\"woopay-beta-merchantrecruitment-short-activate-learnmore-04MAY23\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:10:\"Learn More\";}}s:3:\"url\";s:161:\"https://woocommerce.com/woopay-businesses/?utm_source=inbox_note&utm_medium=product&utm_campaign=woopay-beta-merchantrecruitment-short-activate-learnmore-04MAY23\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:0;s:6:\"status\";s:8:\"actioned\";}}s:5:\"rules\";a:3:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:18:\"publish_after_time\";s:13:\"publish_after\";s:19:\"2023-05-04 18:00:36\";}i:1;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:20:\"woocommerce-payments\";s:8:\"operator\";s:2:\">=\";s:7:\"version\";s:5:\"5.8.1\";}i:2;O:8:\"stdClass\":2:{s:4:\"type\";s:2:\"or\";s:8:\"operands\";a:144:{i:0;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:37:\"http://pieroatomic3.wpcomstaging.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:1;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:29:\"https://www.bluebeautifly.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:2;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:30:\"http://indianrivernatural.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:3;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:28:\"https://fouroaksproducts.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:4;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:14:\"https://acb.la\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:5;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:32:\"https://www.sweetpotatoplant.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:6;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:30:\"http://www.gocaseyourself.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:7;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:18:\"http://laugun.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:8;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:28:\"https://nebraskadaybyday.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:9;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:28:\"https://vintagemarche727.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:10;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:17:\"https://kohai.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:11;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:21:\"https://gracegaze.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:12;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:25:\"https://aliensmeaning.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:13;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:29:\"https://myheritagegardens.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:14;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:25:\"http://shopmoresport.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:15;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:19:\"https://oladino.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:16;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:25:\"https://frogjumpstore.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:17;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:27:\"https://cagedthundermma.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:18;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:40:\"https://fundrgear.com/mcelwainelementary\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:19;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:16:\"https://mgco.org\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:20;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:20:\"https://500gp.io/pay\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:21;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:28:\"https://waterglassslimes.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:22;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:23:\"http://antiqueful.shop/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:23;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:24:\"https://deeperkidmin.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:24;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:45:\"https://fundrgear.com/cyspringsboysbasketball\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:25;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:27:\"https://houseofminifigs.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:26;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:38:\"http://box2273.temp.domains/~dreambx2/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:27;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:25:\"http://madebymixture.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:28;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:29:\"https://reliabletrash.company\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:29;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:27:\"https://www.daddybutter.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:30;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:29:\"https://circleqessentials.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:31;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:24:\"https://garlicbraids.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:32;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:21:\"https://fbdonline.org\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:33;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:22:\"https://galaxysedge.us\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:34;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:28:\"https://duckduckbeetfarm.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:35;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:27:\"https://varsitygraphics.net\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:36;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:25:\"http://jademackenzie.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:37;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:32:\"https://kristysketolifestyle.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:38;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:31:\"http://covid19criticalcare.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:39;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:24:\"https://parkviewprep.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:40;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:21:\"https://rock-fest.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:41;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:35:\"http://fillinxsolutions.com/etarix/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:42;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:24:\"https://doughremitx.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:43;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:33:\"https://www.montanafiddlecamp.org\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:44;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:24:\"https://fococomiccon.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:45;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:27:\"https://patricendouglas.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:46;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:18:\"http://hectue.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:47;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:25:\"https://montanamaxbbq.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:48;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:21:\"http://smellzoom.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:49;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:30:\"https://uptowne.theoandson.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:50;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:24:\"http://superbasic.store/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:51;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:21:\"http://ppodstore.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:52;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:20:\"http://kerenzan.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:53;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:23:\"https://a13bargains.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:54;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:19:\"https://colorgr.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:55;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:41:\"https://mindbodysoulcandles.com/Charlotte\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:56;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:28:\"https://peaceloveandadhd.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:57;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:23:\"http://seymoursmash.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:58;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:24:\"https://mwtournament.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:59;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:43:\"https://fundrgear.com/beckendorffgirlstrack\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:60;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:15:\"No results foun\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:61;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:23:\"http://allswellnyc.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:62;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:37:\"https://childoftheredwoodsmembers.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:63;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:41:\"https://fundrgear.com/grandoaksvolleyball\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:64;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:35:\"https://www.newhollandrochester.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:65;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:28:\"https://www.purplecatvet.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:66;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:39:\"https://www.mustangmountaincoaster.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:67;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:23:\"https://www.roccanj.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:68;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:24:\"https://www.teerico.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:69;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:29:\"https://passportunlimited.net\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:70;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:30:\"https://www.paladincards20.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:71;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:24:\"http://giantshorties.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:72;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:24:\"https://visualsports.biz\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:73;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:37:\"https://thefreakinricanrestaurant.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:74;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:37:\"http://arequestionscom.wordpress.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:75;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:31:\"https://pt.tktxcompanystore.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:76;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:27:\"https://fitfoodiechicks.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:77;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:20:\"http://nutoshop.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:78;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:27:\"https://backwoodzhiphop.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:79;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:23:\"https://gartapparel.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:80;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:30:\"https://bodega.badiaspices.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:81;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:24:\"https://rampartrange.org\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:82;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:18:\"http://teeuni.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:83;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:27:\"https://bearsinthealley.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:84;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:22:\"http://vitalbooks.net/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:85;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:34:\"https://hair-free-hair-remover.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:86;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:25:\"https://gangtaynails.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:87;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:26:\"http://crochetfoundry.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:88;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:26:\"https://westcoastbelts.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:89;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:31:\"http://payment.sundryfiles.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:90;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:33:\"http://ccadunkirk.mudhenmama.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:91;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:26:\"https://desertsupercup.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:92;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:24:\"https://shops-eminem.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:93;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:27:\"https://75yearsofracing.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:94;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:18:\"http://tixpls.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:95;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:44:\"http://legacyoutfitters.org/banquet/raffles/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:96;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:27:\"http://91170e9fc9.nxcli.io/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:97;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:27:\"https://beachwayrentals.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:98;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:26:\"https://thehivelivebox.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:99;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:16:\"https://esd.camp\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:100;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:24:\"https://mfkgamecalls.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:101;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:20:\"https://1greatce.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:102;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:25:\"https://www.luthyouth.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:103;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:34:\"https://electionintegrityidaho.org\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:104;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:20:\"http://renbundle.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:105;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:26:\"http://premierseamoss.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:106;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:19:\"https://teemart.net\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:107;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:40:\"https://fundrgear.com/beckendorffgirlsbb\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:108;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:24:\"https://visiblechild.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:109;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:21:\"http://ebookvital.me/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:110;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:21:\"https://renemarsh.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:111;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:27:\"http://www.eventricate.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:112;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:27:\"https://transgression.party\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:113;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:20:\"http://profadex.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:114;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:28:\"https://mxsbattlegrounds.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:115;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:30:\"https://www.poeinbaltimore.org\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:116;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:19:\"https://freefall.gg\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:117;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:33:\"https://underthechurchhatblog.org\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:118;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:24:\"http://naksparkle.store/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:119;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:32:\"http://bearlyburly.gay/inventory\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:120;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:35:\"https://www.premierboneandjoint.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:121;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:23:\"https://farm-2-bowl.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:122;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:24:\"https://hollandgrill.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:123;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:20:\"https://lividian.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:124;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:29:\"https://www.trainingrange.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:125;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:27:\"http://sarakepskitchen.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:126;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:35:\"https://www.phoenixyouththeatre.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:127;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:24:\"https://drivenarmsco.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:128;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:20:\"http://audiobro.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:129;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:38:\"https://www.iowaabortionaccessfund.org\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:130;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:33:\"http://findthemenu.wordpress.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:131;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:22:\"https://moderndepot.co\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:132;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:30:\"https://granitesupplements.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:133;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:24:\"https://healthyrican.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:134;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:27:\"http://utest.edsandbox.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:135;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:20:\"http://c-pounds.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:136;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:32:\"https://littleschoolofsmiths.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:137;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:23:\"https://goblinstyle.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:138;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:26:\"https://proper-testing.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:139;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:30:\"https://www.cosafoundation.org\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:140;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:26:\"https://farmsteadboxes.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:141;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:27:\"http://fundraise4books.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:142;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:22:\"https://norskenook.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:143;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:20:\"https://cajulove.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}}}}}s:52:\"woopay-beta-merchantrecruitment-short-update-04MAY23\";O:8:\"stdClass\":8:{s:4:\"slug\";s:52:\"woopay-beta-merchantrecruitment-short-update-04MAY23\";s:4:\"type\";s:4:\"info\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:61:\"Increase conversions with WooPay — our fastest checkout yet\";s:7:\"content\";s:227:\"Be one of the first to try WooPay, our new express checkout feature. <br><b>Boost conversions</b> by letting customers pay with a <b>single click</b>. <br><br>Update to the latest version of WooCommerce Payments to get started.\";}}s:7:\"actions\";a:2:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:58:\"woopay-beta-merchantrecruitment-short-update-WCPay-04MAY23\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:27:\"Update WooCommerce Payments\";}}s:3:\"url\";s:29:\"plugins.php?plugin_status=all\";s:18:\"url_is_admin_query\";b:1;s:10:\"is_primary\";b:1;s:6:\"status\";s:10:\"unactioned\";}i:1;O:8:\"stdClass\":6:{s:4:\"name\";s:61:\"woopay-beta-merchantrecruitment-short-update-activate-04MAY23\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:15:\"Activate WooPay\";}}s:3:\"url\";s:93:\"admin.php?page=wc-settings&tab=checkout&section=woocommerce_payments&method=platform_checkout\";s:18:\"url_is_admin_query\";b:1;s:10:\"is_primary\";b:0;s:6:\"status\";s:8:\"actioned\";}}s:5:\"rules\";a:3:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:18:\"publish_after_time\";s:13:\"publish_after\";s:19:\"2023-05-04 18:00:20\";}i:1;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:20:\"woocommerce-payments\";s:8:\"operator\";s:1:\"<\";s:7:\"version\";s:5:\"5.8.1\";}i:2;O:8:\"stdClass\":2:{s:4:\"type\";s:2:\"or\";s:8:\"operands\";a:144:{i:0;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:36:\"http://pieroatomic3.wpcomstaging.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:1;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:29:\"https://www.bluebeautifly.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:2;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:30:\"http://indianrivernatural.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:3;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:28:\"https://fouroaksproducts.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:4;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:14:\"https://acb.la\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:5;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:32:\"https://www.sweetpotatoplant.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:6;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:30:\"http://www.gocaseyourself.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:7;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:18:\"http://laugun.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:8;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:28:\"https://nebraskadaybyday.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:9;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:28:\"https://vintagemarche727.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:10;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:17:\"https://kohai.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:11;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:21:\"https://gracegaze.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:12;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:25:\"https://aliensmeaning.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:13;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:29:\"https://myheritagegardens.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:14;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:25:\"http://shopmoresport.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:15;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:19:\"https://oladino.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:16;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:25:\"https://frogjumpstore.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:17;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:27:\"https://cagedthundermma.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:18;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:40:\"https://fundrgear.com/mcelwainelementary\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:19;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:16:\"https://mgco.org\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:20;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:20:\"https://500gp.io/pay\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:21;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:28:\"https://waterglassslimes.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:22;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:23:\"http://antiqueful.shop/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:23;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:24:\"https://deeperkidmin.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:24;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:45:\"https://fundrgear.com/cyspringsboysbasketball\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:25;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:27:\"https://houseofminifigs.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:26;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:38:\"http://box2273.temp.domains/~dreambx2/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:27;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:25:\"http://madebymixture.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:28;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:29:\"https://reliabletrash.company\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:29;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:27:\"https://www.daddybutter.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:30;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:29:\"https://circleqessentials.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:31;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:24:\"https://garlicbraids.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:32;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:21:\"https://fbdonline.org\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:33;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:22:\"https://galaxysedge.us\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:34;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:28:\"https://duckduckbeetfarm.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:35;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:27:\"https://varsitygraphics.net\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:36;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:25:\"http://jademackenzie.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:37;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:32:\"https://kristysketolifestyle.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:38;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:31:\"http://covid19criticalcare.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:39;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:24:\"https://parkviewprep.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:40;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:21:\"https://rock-fest.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:41;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:35:\"http://fillinxsolutions.com/etarix/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:42;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:24:\"https://doughremitx.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:43;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:33:\"https://www.montanafiddlecamp.org\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:44;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:24:\"https://fococomiccon.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:45;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:27:\"https://patricendouglas.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:46;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:18:\"http://hectue.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:47;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:25:\"https://montanamaxbbq.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:48;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:21:\"http://smellzoom.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:49;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:30:\"https://uptowne.theoandson.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:50;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:24:\"http://superbasic.store/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:51;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:21:\"http://ppodstore.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:52;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:20:\"http://kerenzan.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:53;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:23:\"https://a13bargains.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:54;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:19:\"https://colorgr.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:55;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:41:\"https://mindbodysoulcandles.com/Charlotte\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:56;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:28:\"https://peaceloveandadhd.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:57;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:23:\"http://seymoursmash.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:58;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:24:\"https://mwtournament.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:59;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:43:\"https://fundrgear.com/beckendorffgirlstrack\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:60;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:15:\"No results foun\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:61;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:23:\"http://allswellnyc.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:62;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:37:\"https://childoftheredwoodsmembers.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:63;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:41:\"https://fundrgear.com/grandoaksvolleyball\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:64;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:35:\"https://www.newhollandrochester.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:65;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:28:\"https://www.purplecatvet.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:66;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:39:\"https://www.mustangmountaincoaster.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:67;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:23:\"https://www.roccanj.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:68;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:24:\"https://www.teerico.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:69;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:29:\"https://passportunlimited.net\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:70;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:30:\"https://www.paladincards20.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:71;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:24:\"http://giantshorties.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:72;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:24:\"https://visualsports.biz\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:73;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:37:\"https://thefreakinricanrestaurant.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:74;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:37:\"http://arequestionscom.wordpress.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:75;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:31:\"https://pt.tktxcompanystore.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:76;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:27:\"https://fitfoodiechicks.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:77;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:20:\"http://nutoshop.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:78;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:27:\"https://backwoodzhiphop.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:79;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:23:\"https://gartapparel.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:80;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:30:\"https://bodega.badiaspices.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:81;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:24:\"https://rampartrange.org\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:82;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:18:\"http://teeuni.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:83;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:27:\"https://bearsinthealley.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:84;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:22:\"http://vitalbooks.net/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:85;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:34:\"https://hair-free-hair-remover.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:86;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:25:\"https://gangtaynails.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:87;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:26:\"http://crochetfoundry.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:88;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:26:\"https://westcoastbelts.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:89;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:31:\"http://payment.sundryfiles.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:90;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:33:\"http://ccadunkirk.mudhenmama.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:91;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:26:\"https://desertsupercup.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:92;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:24:\"https://shops-eminem.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:93;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:27:\"https://75yearsofracing.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:94;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:18:\"http://tixpls.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:95;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:44:\"http://legacyoutfitters.org/banquet/raffles/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:96;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:27:\"http://91170e9fc9.nxcli.io/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:97;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:27:\"https://beachwayrentals.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:98;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:26:\"https://thehivelivebox.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:99;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:16:\"https://esd.camp\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:100;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:24:\"https://mfkgamecalls.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:101;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:20:\"https://1greatce.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:102;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:25:\"https://www.luthyouth.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:103;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:34:\"https://electionintegrityidaho.org\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:104;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:20:\"http://renbundle.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:105;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:26:\"http://premierseamoss.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:106;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:19:\"https://teemart.net\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:107;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:40:\"https://fundrgear.com/beckendorffgirlsbb\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:108;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:24:\"https://visiblechild.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:109;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:21:\"http://ebookvital.me/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:110;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:21:\"https://renemarsh.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:111;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:27:\"http://www.eventricate.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:112;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:27:\"https://transgression.party\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:113;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:20:\"http://profadex.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:114;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:28:\"https://mxsbattlegrounds.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:115;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:30:\"https://www.poeinbaltimore.org\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:116;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:19:\"https://freefall.gg\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:117;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:33:\"https://underthechurchhatblog.org\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:118;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:24:\"http://naksparkle.store/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:119;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:32:\"http://bearlyburly.gay/inventory\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:120;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:35:\"https://www.premierboneandjoint.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:121;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:23:\"https://farm-2-bowl.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:122;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:24:\"https://hollandgrill.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:123;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:20:\"https://lividian.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:124;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:29:\"https://www.trainingrange.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:125;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:27:\"http://sarakepskitchen.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:126;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:35:\"https://www.phoenixyouththeatre.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:127;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:24:\"https://drivenarmsco.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:128;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:20:\"http://audiobro.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:129;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:38:\"https://www.iowaabortionaccessfund.org\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:130;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:33:\"http://findthemenu.wordpress.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:131;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:22:\"https://moderndepot.co\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:132;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:30:\"https://granitesupplements.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:133;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:24:\"https://healthyrican.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:134;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:27:\"http://utest.edsandbox.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:135;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:20:\"http://c-pounds.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:136;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:32:\"https://littleschoolofsmiths.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:137;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:23:\"https://goblinstyle.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:138;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:26:\"https://proper-testing.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:139;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:30:\"https://www.cosafoundation.org\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:140;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:26:\"https://farmsteadboxes.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:141;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:27:\"http://fundraise4books.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:142;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:22:\"https://norskenook.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:143;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:20:\"https://cajulove.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}}}}}s:51:\"woopay-beta-merchantrecruitment-short-06MAY23-TESTA\";O:8:\"stdClass\":8:{s:4:\"slug\";s:51:\"woopay-beta-merchantrecruitment-short-06MAY23-TESTA\";s:4:\"type\";s:4:\"info\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:61:\"Increase conversions with WooPay — our fastest checkout yet\";s:7:\"content\";s:181:\"Be one of the first to try WooPay, a new express checkout feature for WooCommerce Payments. \r\n<br><br>\r\n<b>Boost conversions</b> by letting customers pay with a <b>single click</b>.\";}}s:7:\"actions\";a:2:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:60:\"woopay-beta-merchantrecruitment-short-activate-06MAY23-TESTA\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:22:\"Activate WooPay Test A\";}}s:3:\"url\";s:93:\"admin.php?page=wc-settings&tab=checkout&section=woocommerce_payments&method=platform_checkout\";s:18:\"url_is_admin_query\";b:1;s:10:\"is_primary\";b:1;s:6:\"status\";s:10:\"unactioned\";}i:1;O:8:\"stdClass\":6:{s:4:\"name\";s:70:\"woopay-beta-merchantrecruitment-short-activate-learnmore-06MAY23-TESTA\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:10:\"Learn More\";}}s:3:\"url\";s:167:\"https://woocommerce.com/woopay-businesses/?utm_source=inbox_note&utm_medium=product&utm_campaign=woopay-beta-merchantrecruitment-short-activate-learnmore-06MAY23-TESTA\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:0;s:6:\"status\";s:10:\"unactioned\";}}s:5:\"rules\";a:3:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:18:\"publish_after_time\";s:13:\"publish_after\";s:19:\"2023-05-05 00:01:32\";}i:1;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:20:\"woocommerce-payments\";s:8:\"operator\";s:2:\">=\";s:7:\"version\";s:5:\"5.8.1\";}i:2;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:37:\"https://pieroatomic3.wpcomstaging.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}}}s:51:\"woopay-beta-merchantrecruitment-short-06MAY23-TESTB\";O:8:\"stdClass\":8:{s:4:\"slug\";s:51:\"woopay-beta-merchantrecruitment-short-06MAY23-TESTB\";s:4:\"type\";s:4:\"info\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:61:\"Increase conversions with WooPay — our fastest checkout yet\";s:7:\"content\";s:181:\"Be one of the first to try WooPay, a new express checkout feature for WooCommerce Payments. \r\n<br><br>\r\n<b>Boost conversions</b> by letting customers pay with a <b>single click</b>.\";}}s:7:\"actions\";a:2:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:60:\"woopay-beta-merchantrecruitment-short-activate-06MAY23-TESTB\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:22:\"Activate WooPay Test B\";}}s:3:\"url\";s:93:\"admin.php?page=wc-settings&tab=checkout&section=woocommerce_payments&method=platform_checkout\";s:18:\"url_is_admin_query\";b:1;s:10:\"is_primary\";b:1;s:6:\"status\";s:10:\"unactioned\";}i:1;O:8:\"stdClass\":6:{s:4:\"name\";s:70:\"woopay-beta-merchantrecruitment-short-activate-learnmore-06MAY23-TESTA\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:10:\"Learn More\";}}s:3:\"url\";s:167:\"https://woocommerce.com/woopay-businesses/?utm_source=inbox_note&utm_medium=product&utm_campaign=woopay-beta-merchantrecruitment-short-activate-learnmore-06MAY23-TESTA\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:0;s:6:\"status\";s:10:\"unactioned\";}}s:5:\"rules\";a:3:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:18:\"publish_after_time\";s:13:\"publish_after\";s:19:\"2023-05-05 20:58:43\";}i:1;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:20:\"woocommerce-payments\";s:8:\"operator\";s:2:\">=\";s:7:\"version\";s:5:\"5.8.1\";}i:2;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:36:\"http://pieroatomic3.wpcomstaging.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}}}s:51:\"woopay-beta-merchantrecruitment-short-06MAY23-TESTC\";O:8:\"stdClass\":8:{s:4:\"slug\";s:51:\"woopay-beta-merchantrecruitment-short-06MAY23-TESTC\";s:4:\"type\";s:4:\"info\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:61:\"Increase conversions with WooPay — our fastest checkout yet\";s:7:\"content\";s:181:\"Be one of the first to try WooPay, a new express checkout feature for WooCommerce Payments. \r\n<br><br>\r\n<b>Boost conversions</b> by letting customers pay with a <b>single click</b>.\";}}s:7:\"actions\";a:2:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:60:\"woopay-beta-merchantrecruitment-short-activate-06MAY23-TESTC\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:22:\"Activate WooPay Test C\";}}s:3:\"url\";s:93:\"admin.php?page=wc-settings&tab=checkout&section=woocommerce_payments&method=platform_checkout\";s:18:\"url_is_admin_query\";b:1;s:10:\"is_primary\";b:1;s:6:\"status\";s:10:\"unactioned\";}i:1;O:8:\"stdClass\":6:{s:4:\"name\";s:70:\"woopay-beta-merchantrecruitment-short-activate-learnmore-06MAY23-TESTC\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:10:\"Learn More\";}}s:3:\"url\";s:167:\"https://woocommerce.com/woopay-businesses/?utm_source=inbox_note&utm_medium=product&utm_campaign=woopay-beta-merchantrecruitment-short-activate-learnmore-06MAY23-TESTC\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:0;s:6:\"status\";s:10:\"unactioned\";}}s:5:\"rules\";a:3:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:18:\"publish_after_time\";s:13:\"publish_after\";s:19:\"2023-05-05 21:03:33\";}i:1;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:20:\"woocommerce-payments\";s:8:\"operator\";s:2:\">=\";s:7:\"version\";s:5:\"5.8.1\";}i:2;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:38:\"https://pieroatomic3.wpcomstaging.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}}}s:51:\"woopay-beta-merchantrecruitment-short-06MAY23-TESTD\";O:8:\"stdClass\":8:{s:4:\"slug\";s:51:\"woopay-beta-merchantrecruitment-short-06MAY23-TESTD\";s:4:\"type\";s:4:\"info\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:61:\"Increase conversions with WooPay — our fastest checkout yet\";s:7:\"content\";s:181:\"Be one of the first to try WooPay, a new express checkout feature for WooCommerce Payments. \r\n<br><br>\r\n<b>Boost conversions</b> by letting customers pay with a <b>single click</b>.\";}}s:7:\"actions\";a:2:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:60:\"woopay-beta-merchantrecruitment-short-activate-06MAY23-TESTD\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:22:\"Activate WooPay Test D\";}}s:3:\"url\";s:93:\"admin.php?page=wc-settings&tab=checkout&section=woocommerce_payments&method=platform_checkout\";s:18:\"url_is_admin_query\";b:1;s:10:\"is_primary\";b:1;s:6:\"status\";s:10:\"unactioned\";}i:1;O:8:\"stdClass\":6:{s:4:\"name\";s:70:\"woopay-beta-merchantrecruitment-short-activate-learnmore-06MAY23-TESTD\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:10:\"Learn More\";}}s:3:\"url\";s:167:\"https://woocommerce.com/woopay-businesses/?utm_source=inbox_note&utm_medium=product&utm_campaign=woopay-beta-merchantrecruitment-short-activate-learnmore-06MAY23-TESTD\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:0;s:6:\"status\";s:10:\"unactioned\";}}s:5:\"rules\";a:3:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:18:\"publish_after_time\";s:13:\"publish_after\";s:19:\"2023-05-05 21:32:09\";}i:1;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:20:\"woocommerce-payments\";s:8:\"operator\";s:2:\">=\";s:7:\"version\";s:5:\"5.8.1\";}i:2;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:37:\"http://pieroatomic3.wpcomstaging.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}}}s:45:\"woopay-beta-merchantrecruitment-short-09MAY23\";O:8:\"stdClass\":8:{s:4:\"slug\";s:45:\"woopay-beta-merchantrecruitment-short-09MAY23\";s:4:\"type\";s:4:\"info\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:61:\"Increase conversions with WooPay — our fastest checkout yet\";s:7:\"content\";s:181:\"Be one of the first to try WooPay, a new express checkout feature for WooCommerce Payments. \r\n<br><br>\r\n<b>Boost conversions</b> by letting customers pay with a <b>single click</b>.\";}}s:7:\"actions\";a:2:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:61:\"woopay-beta-merchantrecruitment-short-activate-button-09MAY23\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:15:\"Activate WooPay\";}}s:3:\"url\";s:93:\"admin.php?page=wc-settings&tab=checkout&section=woocommerce_payments&method=platform_checkout\";s:18:\"url_is_admin_query\";b:1;s:10:\"is_primary\";b:1;s:6:\"status\";s:10:\"unactioned\";}i:1;O:8:\"stdClass\":6:{s:4:\"name\";s:72:\"woopay-beta-merchantrecruitment-short-activate-learnmore-button2-09MAY23\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:10:\"Learn More\";}}s:3:\"url\";s:169:\"https://woocommerce.com/woopay-businesses/?utm_source=inbox_note&utm_medium=product&utm_campaign=woopay-beta-merchantrecruitment-short-activate-learnmore-button2-09MAY23\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:0;s:6:\"status\";s:10:\"unactioned\";}}s:5:\"rules\";a:4:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:18:\"publish_after_time\";s:13:\"publish_after\";s:19:\"2023-05-08 19:18:44\";}i:1;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:20:\"woocommerce-payments\";s:8:\"operator\";s:2:\">=\";s:7:\"version\";s:5:\"5.8.1\";}i:2;O:8:\"stdClass\":6:{s:4:\"type\";s:6:\"option\";s:12:\"transformers\";a:1:{i:0;O:8:\"stdClass\":2:{s:3:\"use\";s:12:\"dot_notation\";s:9:\"arguments\";O:8:\"stdClass\":1:{s:4:\"path\";s:17:\"platform_checkout\";}}}s:11:\"option_name\";s:41:\"woocommerce_woocommerce_payments_settings\";s:9:\"operation\";s:1:\"=\";s:5:\"value\";s:2:\"no\";s:7:\"default\";b:0;}i:3;O:8:\"stdClass\":6:{s:4:\"type\";s:6:\"option\";s:12:\"transformers\";a:1:{i:0;O:8:\"stdClass\":2:{s:3:\"use\";s:12:\"dot_notation\";s:9:\"arguments\";O:8:\"stdClass\":1:{s:4:\"path\";s:31:\"data.platform_checkout_eligible\";}}}s:11:\"option_name\";s:18:\"wcpay_account_data\";s:9:\"operation\";s:1:\"=\";s:5:\"value\";b:1;s:7:\"default\";b:0;}}}s:52:\"woopay-beta-merchantrecruitment-short-update-09MAY23\";O:8:\"stdClass\":8:{s:4:\"slug\";s:52:\"woopay-beta-merchantrecruitment-short-update-09MAY23\";s:4:\"type\";s:4:\"info\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:61:\"Increase conversions with WooPay — our fastest checkout yet\";s:7:\"content\";s:227:\"Be one of the first to try WooPay, our new express checkout feature. <br><b>Boost conversions</b> by letting customers pay with a <b>single click</b>. <br><br>Update to the latest version of WooCommerce Payments to get started.\";}}s:7:\"actions\";a:2:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:58:\"woopay-beta-merchantrecruitment-short-update-WCPay-09MAY23\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:27:\"Update WooCommerce Payments\";}}s:3:\"url\";s:29:\"plugins.php?plugin_status=all\";s:18:\"url_is_admin_query\";b:1;s:10:\"is_primary\";b:1;s:6:\"status\";s:10:\"unactioned\";}i:1;O:8:\"stdClass\":6:{s:4:\"name\";s:61:\"woopay-beta-merchantrecruitment-short-update-activate-09MAY23\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:15:\"Activate WooPay\";}}s:3:\"url\";s:93:\"admin.php?page=wc-settings&tab=checkout&section=woocommerce_payments&method=platform_checkout\";s:18:\"url_is_admin_query\";b:1;s:10:\"is_primary\";b:0;s:6:\"status\";s:10:\"unactioned\";}}s:5:\"rules\";a:4:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:18:\"publish_after_time\";s:13:\"publish_after\";s:19:\"2023-05-08 19:45:57\";}i:1;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:20:\"woocommerce-payments\";s:8:\"operator\";s:1:\"<\";s:7:\"version\";s:5:\"5.8.1\";}i:2;O:8:\"stdClass\":6:{s:4:\"type\";s:6:\"option\";s:12:\"transformers\";a:1:{i:0;O:8:\"stdClass\":2:{s:3:\"use\";s:12:\"dot_notation\";s:9:\"arguments\";O:8:\"stdClass\":1:{s:4:\"path\";s:17:\"platform_checkout\";}}}s:11:\"option_name\";s:41:\"woocommerce_woocommerce_payments_settings\";s:9:\"operation\";s:1:\"=\";s:5:\"value\";s:2:\"no\";s:7:\"default\";b:0;}i:3;O:8:\"stdClass\":6:{s:4:\"type\";s:6:\"option\";s:12:\"transformers\";a:1:{i:0;O:8:\"stdClass\":2:{s:3:\"use\";s:12:\"dot_notation\";s:9:\"arguments\";O:8:\"stdClass\":1:{s:4:\"path\";s:31:\"data.platform_checkout_eligible\";}}}s:11:\"option_name\";s:18:\"wcpay_account_data\";s:9:\"operation\";s:1:\"=\";s:5:\"value\";b:1;s:7:\"default\";b:0;}}}s:41:\"ipp_refresh_q2_2023_us_inbox_notification\";O:8:\"stdClass\":8:{s:4:\"slug\";s:41:\"ipp_refresh_q2_2023_us_inbox_notification\";s:4:\"type\";s:9:\"marketing\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:38:\"Grow on the go with in-person payments\";s:7:\"content\";s:247:\"Sell your products or services on the go with the M2 card reader – a quick, synchronized, and secure way to take payments, no matter where you are. Create an order using the WooCommerce mobile app and connect your card reader to accept payments.\";}}s:7:\"actions\";a:1:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:41:\"ipp_refresh_q2_2023_us_inbox_notification\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:26:\"Grow my business on the go\";}}s:3:\"url\";s:139:\"https://woocommerce.com/in-person-payments/?utm_source=inbox_note&utm_medium=product&utm_campaign=ipp_refresh_q2_2023_us_inbox_notification\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:0;s:6:\"status\";s:8:\"actioned\";}}s:5:\"rules\";a:3:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:18:\"publish_after_time\";s:13:\"publish_after\";s:19:\"2023-05-18 04:16:26\";}i:1;O:8:\"stdClass\":2:{s:4:\"type\";s:19:\"publish_before_time\";s:14:\"publish_before\";s:19:\"2023-08-31 23:59:00\";}i:2;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:9:\"operation\";s:1:\"=\";s:5:\"value\";s:2:\"US\";}}}s:41:\"ipp_refresh_q2_2023_ca_inbox_notification\";O:8:\"stdClass\":8:{s:4:\"slug\";s:41:\"ipp_refresh_q2_2023_ca_inbox_notification\";s:4:\"type\";s:9:\"marketing\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:38:\"Grow on the go with in-person payments\";s:7:\"content\";s:254:\"Sell your products or services on the go with the WisePad 3 card reader – a quick, synchronized, and secure way to take payments, no matter where you are. Create an order using the WooCommerce mobile app and connect your card reader to accept payments.\";}}s:7:\"actions\";a:1:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:41:\"ipp_refresh_q2_2023_ca_inbox_notification\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:26:\"Grow my business on the go\";}}s:3:\"url\";s:139:\"https://woocommerce.com/in-person-payments/?utm_source=inbox_note&utm_medium=product&utm_campaign=ipp_refresh_q2_2023_ca_inbox_notification\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:0;s:6:\"status\";s:8:\"actioned\";}}s:5:\"rules\";a:3:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:18:\"publish_after_time\";s:13:\"publish_after\";s:19:\"2023-05-18 04:18:49\";}i:1;O:8:\"stdClass\":2:{s:4:\"type\";s:19:\"publish_before_time\";s:14:\"publish_before\";s:19:\"2023-08-31 23:59:00\";}i:2;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:9:\"operation\";s:1:\"=\";s:5:\"value\";s:2:\"CA\";}}}s:44:\"woocommerce-WCstripe-May-2023-updated-needed\";O:8:\"stdClass\":8:{s:4:\"slug\";s:44:\"woocommerce-WCstripe-May-2023-updated-needed\";s:4:\"type\";s:6:\"update\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:61:\"Action required: Security update of WooCommerce Stripe plugin\";s:7:\"content\";s:183:\"<strong>Your store requires a security update for the WooCommerce Stripe plugin</strong>. Please update the WooCommerce Stripe plugin immediately to address a potential vulnerability.\";}}s:7:\"actions\";a:2:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:60:\"woocommerce-WCStripe-May-2023-updated-needed-Plugin-Settings\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:21:\"See available updates\";}}s:3:\"url\";s:29:\"plugins.php?plugin_status=all\";s:18:\"url_is_admin_query\";b:1;s:10:\"is_primary\";b:0;s:6:\"status\";s:10:\"unactioned\";}i:1;O:8:\"stdClass\":6:{s:4:\"name\";s:68:\"woocommerce-WCStripe-May-2023-updated-needed-Plugin-Settings-dismiss\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:7:\"Dismiss\";}}s:3:\"url\";s:1:\"#\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:0;s:6:\"status\";s:8:\"actioned\";}}s:5:\"rules\";a:3:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:18:\"publish_after_time\";s:13:\"publish_after\";s:19:\"2023-05-31 19:54:10\";}i:1;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:26:\"woocommerce-gateway-stripe\";s:8:\"operator\";s:2:\">=\";s:7:\"version\";s:5:\"5.5.0\";}i:2;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:26:\"woocommerce-gateway-stripe\";s:8:\"operator\";s:1:\"<\";s:7:\"version\";s:5:\"7.4.1\";}}}s:47:\"woocommerce-WCPayments-June-2023-updated-needed\";O:8:\"stdClass\":8:{s:4:\"slug\";s:47:\"woocommerce-WCPayments-June-2023-updated-needed\";s:4:\"type\";s:6:\"update\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:56:\"Action required: Security update of WooCommerce Payments\";s:7:\"content\";s:187:\"<strong>Your store requires a security update for the WooCommerce Payments plugin</strong>. Please update the WooCommerce Payments plugin immediately to address a potential vulnerability.\";}}s:7:\"actions\";a:2:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:63:\"woocommerce-WCPayments-June-2023-updated-needed-Plugin-Settings\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:21:\"See available updates\";}}s:3:\"url\";s:29:\"plugins.php?plugin_status=all\";s:18:\"url_is_admin_query\";b:1;s:10:\"is_primary\";b:0;s:6:\"status\";s:10:\"unactioned\";}i:1;O:8:\"stdClass\":6:{s:4:\"name\";s:55:\"woocommerce-WCPayments-June-2023-updated-needed-Dismiss\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:7:\"Dismiss\";}}s:3:\"url\";s:1:\"#\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:0;s:6:\"status\";s:8:\"actioned\";}}s:5:\"rules\";a:20:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:18:\"publish_after_time\";s:13:\"publish_after\";s:19:\"2023-06-06 08:00:52\";}i:1;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:20:\"woocommerce-payments\";s:8:\"operator\";s:2:\">=\";s:7:\"version\";s:5:\"3.2.0\";}i:2;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:20:\"woocommerce-payments\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.2.3\";}i:3;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:20:\"woocommerce-payments\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.3.2\";}i:4;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:20:\"woocommerce-payments\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.4.2\";}i:5;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:20:\"woocommerce-payments\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.5.2\";}i:6;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:20:\"woocommerce-payments\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.6.1\";}i:7;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:20:\"woocommerce-payments\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.7.3\";}i:8;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:20:\"woocommerce-payments\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.8.3\";}i:9;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:20:\"woocommerce-payments\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.9.2\";}i:10;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:20:\"woocommerce-payments\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"5.0.5\";}i:11;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:20:\"woocommerce-payments\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"5.1.4\";}i:12;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:20:\"woocommerce-payments\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"5.2.3\";}i:13;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:20:\"woocommerce-payments\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"5.3.2\";}i:14;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:20:\"woocommerce-payments\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"5.4.2\";}i:15;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:20:\"woocommerce-payments\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"5.5.3\";}i:16;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:20:\"woocommerce-payments\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"5.6.3\";}i:17;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:20:\"woocommerce-payments\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"5.7.1\";}i:18;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:20:\"woocommerce-payments\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"5.8.2\";}i:19;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:20:\"woocommerce-payments\";s:8:\"operator\";s:1:\"<\";s:7:\"version\";s:5:\"5.9.1\";}}}s:52:\"woocommerce-WCSubscriptions-June-2023-updated-needed\";O:8:\"stdClass\":8:{s:4:\"slug\";s:52:\"woocommerce-WCSubscriptions-June-2023-updated-needed\";s:4:\"type\";s:9:\"marketing\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:61:\"Action required: Security update of WooCommerce Subscriptions\";s:7:\"content\";s:197:\"<strong>Your store requires a security update for the WooCommerce Subscriptions plugin</strong>. Please update the WooCommerce Subscriptions plugin immediately to address a potential vulnerability.\";}}s:7:\"actions\";a:2:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:68:\"woocommerce-WCSubscriptions-June-2023-updated-needed-Plugin-Settings\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:21:\"See available updates\";}}s:3:\"url\";s:29:\"plugins.php?plugin_status=all\";s:18:\"url_is_admin_query\";b:1;s:10:\"is_primary\";b:0;s:6:\"status\";s:10:\"unactioned\";}i:1;O:8:\"stdClass\":6:{s:4:\"name\";s:60:\"woocommerce-WCSubscriptions-June-2023-updated-needed-dismiss\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:7:\"Dismiss\";}}s:3:\"url\";s:1:\"#\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:0;s:6:\"status\";s:8:\"actioned\";}}s:5:\"rules\";a:3:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:18:\"publish_after_time\";s:13:\"publish_after\";s:19:\"2023-06-06 08:00:08\";}i:1;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:25:\"woocommerce-subscriptions\";s:8:\"operator\";s:2:\">=\";s:7:\"version\";s:5:\"2.1.0\";}i:2;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:25:\"woocommerce-subscriptions\";s:8:\"operator\";s:2:\"<=\";s:7:\"version\";s:5:\"5.1.2\";}}}s:54:\"woocommerce-WCReturnsWarranty-June-2023-updated-needed\";O:8:\"stdClass\":8:{s:4:\"slug\";s:54:\"woocommerce-WCReturnsWarranty-June-2023-updated-needed\";s:4:\"type\";s:6:\"update\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:87:\"Action required: Security update of WooCommerce Returns and Warranty Requests extension\";s:7:\"content\";s:270:\"<strong>Your store requires a security update for the Returns and Warranty Requests extension</strong>.  Please update to the latest version of the WooCommerce Returns and Warranty Requests extension immediately to address a potential vulnerability discovered on May 31.\";}}s:7:\"actions\";a:2:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:54:\"woocommerce-WCReturnsWarranty-June-2023-updated-needed\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:21:\"See available updates\";}}s:3:\"url\";s:29:\"plugins.php?plugin_status=all\";s:18:\"url_is_admin_query\";b:1;s:10:\"is_primary\";b:0;s:6:\"status\";s:10:\"unactioned\";}i:1;O:8:\"stdClass\":6:{s:4:\"name\";s:54:\"woocommerce-WCReturnsWarranty-June-2023-updated-needed\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:7:\"Dismiss\";}}s:3:\"url\";s:1:\"#\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:0;s:6:\"status\";s:8:\"actioned\";}}s:5:\"rules\";a:2:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:18:\"publish_after_time\";s:13:\"publish_after\";s:19:\"2023-06-02 23:53:57\";}i:1;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:20:\"woocommerce-warranty\";s:8:\"operator\";s:2:\"<=\";s:7:\"version\";s:5:\"2.1.8\";}}}s:42:\"woocommerce-WCOPC-June-2023-updated-needed\";O:8:\"stdClass\":8:{s:4:\"slug\";s:42:\"woocommerce-WCOPC-June-2023-updated-needed\";s:4:\"type\";s:6:\"update\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:65:\"Action required: Security update of WooCommerce One Page Checkout\";s:7:\"content\";s:232:\"<strong>Your shop requires a security update to address a vulnerability in the WooCommerce One Page Checkout extension</strong>. The fix for this vulnerability was released for this extension on June 13th. Please update immediately.\";}}s:7:\"actions\";a:2:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:42:\"woocommerce-WCOPC-June-2023-updated-needed\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:21:\"See available updates\";}}s:3:\"url\";s:29:\"plugins.php?plugin_status=all\";s:18:\"url_is_admin_query\";b:1;s:10:\"is_primary\";b:1;s:6:\"status\";s:8:\"actioned\";}i:1;O:8:\"stdClass\":6:{s:4:\"name\";s:42:\"woocommerce-WCOPC-June-2023-updated-needed\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:7:\"Dismiss\";}}s:3:\"url\";s:1:\"#\";s:18:\"url_is_admin_query\";b:1;s:10:\"is_primary\";b:1;s:6:\"status\";s:8:\"actioned\";}}s:5:\"rules\";a:2:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:18:\"publish_after_time\";s:13:\"publish_after\";s:19:\"2023-06-21 14:05:46\";}i:1;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:29:\"woocommerce-one-page-checkout\";s:8:\"operator\";s:1:\"<\";s:7:\"version\";s:5:\"2.4.0\";}}}s:40:\"woocommerce-WCGC-July-2023-update-needed\";O:8:\"stdClass\":8:{s:4:\"slug\";s:40:\"woocommerce-WCGC-July-2023-update-needed\";s:4:\"type\";s:6:\"update\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:68:\"Action required: Security update of WooCommerce GoCardless Extension\";s:7:\"content\";s:205:\"<strong>Your shop requires a security update to address a vulnerability in the WooCommerce GoCardless extension</strong>. The fix for this vulnerability was released on July 4th. Please update immediately.\";}}s:7:\"actions\";a:2:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:40:\"woocommerce-WCGC-July-2023-update-needed\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:21:\"See available updates\";}}s:3:\"url\";s:29:\"plugins.php?plugin_status=all\";s:18:\"url_is_admin_query\";b:1;s:10:\"is_primary\";b:1;s:6:\"status\";s:10:\"unactioned\";}i:1;O:8:\"stdClass\":6:{s:4:\"name\";s:40:\"woocommerce-WCGC-July-2023-update-needed\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:7:\"Dismiss\";}}s:3:\"url\";s:1:\"#\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:1;s:6:\"status\";s:8:\"actioned\";}}s:5:\"rules\";a:2:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:18:\"publish_after_time\";s:13:\"publish_after\";s:19:\"2023-07-04 15:36:07\";}i:1;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:30:\"woocommerce-gateway-gocardless\";s:8:\"operator\";s:2:\"<=\";s:7:\"version\";s:5:\"2.5.6\";}}}s:48:\"woocommerce-shipping-fedex-api-outage-2023-07-16\";O:8:\"stdClass\":8:{s:4:\"slug\";s:48:\"woocommerce-shipping-fedex-api-outage-2023-07-16\";s:4:\"type\";s:7:\"warning\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:40:\"Scheduled FedEx API outage — July 2023\";s:7:\"content\";s:277:\"On July 16 there will be a full outage of the FedEx API from 04:00 to 08:00 AM UTC. Due to planned maintenance by FedEx, you\'ll be unable to provide FedEx shipping rates during this time. Follow the link below for more information and recommendations on how to minimize impact.\";}}s:7:\"actions\";a:1:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:10:\"learn-more\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:10:\"Learn more\";}}s:3:\"url\";s:125:\"https://woocommerce.com/document/fedex/?utm_medium=product&utm_source=inbox_note&utm_campaign=learn-more#july-2023-api-outage\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:0;s:6:\"status\";s:10:\"unactioned\";}}s:5:\"rules\";a:3:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:18:\"publish_after_time\";s:13:\"publish_after\";s:19:\"2023-07-05 18:19:17\";}i:1;O:8:\"stdClass\":2:{s:4:\"type\";s:17:\"plugins_activated\";s:7:\"plugins\";a:1:{i:0;s:26:\"woocommerce-shipping-fedex\";}}i:2;O:8:\"stdClass\":2:{s:4:\"type\";s:19:\"publish_before_time\";s:14:\"publish_before\";s:19:\"2023-07-17 00:00:00\";}}}s:35:\"wcship-2023-07-hazmat-update-needed\";O:8:\"stdClass\":8:{s:4:\"slug\";s:35:\"wcship-2023-07-hazmat-update-needed\";s:4:\"type\";s:6:\"update\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:87:\"Action required: USPS HAZMAT compliance update for WooCommerce Shipping & Tax extension\";s:7:\"content\";s:251:\"<strong>Your store requires an update for the WooCommerce Shipping extension</strong>. Please update to the latest version of the WooCommerce Shipping &amp; Tax extension immediately to ensure compliance with new USPS HAZMAT rules currently in effect.\";}}s:7:\"actions\";a:2:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:11:\"plugin-list\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:21:\"See available updates\";}}s:3:\"url\";s:29:\"plugins.php?plugin_status=all\";s:18:\"url_is_admin_query\";b:1;s:10:\"is_primary\";b:1;s:6:\"status\";s:10:\"unactioned\";}i:1;O:8:\"stdClass\":6:{s:4:\"name\";s:7:\"dismiss\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:7:\"Dismiss\";}}s:3:\"url\";s:23:\"admin.php?page=wc-admin\";s:18:\"url_is_admin_query\";b:1;s:10:\"is_primary\";b:0;s:6:\"status\";s:8:\"actioned\";}}s:5:\"rules\";a:3:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:18:\"publish_after_time\";s:13:\"publish_after\";s:19:\"2023-07-11 20:26:59\";}i:1;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:20:\"woocommerce-services\";s:8:\"operator\";s:1:\"<\";s:7:\"version\";s:5:\"2.3.0\";}i:2;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:9:\"operation\";s:1:\"=\";s:5:\"value\";s:2:\"US\";}}}s:43:\"woocommerce-WCStripe-Aug-2023-update-needed\";O:8:\"stdClass\":8:{s:4:\"slug\";s:43:\"woocommerce-WCStripe-Aug-2023-update-needed\";s:4:\"type\";s:6:\"update\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:62:\"Action required: Security update for WooCommerce Stripe plugin\";s:7:\"content\";s:183:\"<strong>Your shop requires an important security update for the  WooCommerce Stripe plugin</strong>. The fix for this vulnerability was released on July 31. Please update immediately.\";}}s:7:\"actions\";a:2:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:43:\"woocommerce-WCStripe-Aug-2023-update-needed\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:21:\"See available updates\";}}s:3:\"url\";s:16:\"update-core.php?\";s:18:\"url_is_admin_query\";b:1;s:10:\"is_primary\";b:1;s:6:\"status\";s:10:\"unactioned\";}i:1;O:8:\"stdClass\":6:{s:4:\"name\";s:7:\"dismiss\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:8:\"Dismniss\";}}s:3:\"url\";s:1:\"#\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:1;s:6:\"status\";s:8:\"actioned\";}}s:5:\"rules\";a:4:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:18:\"publish_after_time\";s:13:\"publish_after\";s:19:\"2023-08-03 05:00:06\";}i:1;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:26:\"woocommerce-gateway-stripe\";s:8:\"operator\";s:2:\">=\";s:7:\"version\";s:3:\"5.6\";}i:2;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:26:\"woocommerce-gateway-stripe\";s:8:\"operator\";s:1:\"<\";s:7:\"version\";s:5:\"7.4.2\";}i:3;O:8:\"stdClass\":2:{s:4:\"type\";s:3:\"not\";s:7:\"operand\";a:1:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:2:\"or\";s:8:\"operands\";a:11:{i:0;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:26:\"woocommerce-gateway-stripe\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"6.3.2\";}i:1;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:26:\"woocommerce-gateway-stripe\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"6.4.5\";}i:2;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:26:\"woocommerce-gateway-stripe\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"6.5.3\";}i:3;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:26:\"woocommerce-gateway-stripe\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"6.6.2\";}i:4;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:26:\"woocommerce-gateway-stripe\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"6.7.2\";}i:5;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:26:\"woocommerce-gateway-stripe\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"6.8.2\";}i:6;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:26:\"woocommerce-gateway-stripe\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"6.9.2\";}i:7;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:26:\"woocommerce-gateway-stripe\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"7.0.4\";}i:8;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:26:\"woocommerce-gateway-stripe\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"7.1.2\";}i:9;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:26:\"woocommerce-gateway-stripe\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"7.2.2\";}i:10;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:26:\"woocommerce-gateway-stripe\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"7.3.2\";}}}}}}}s:46:\"woocommerce-WCStripe-Aug-2023-security-updated\";O:8:\"stdClass\":8:{s:4:\"slug\";s:46:\"woocommerce-WCStripe-Aug-2023-security-updated\";s:4:\"type\";s:6:\"update\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:44:\"Security update of WooCommerce Stripe plugin\";s:7:\"content\";s:144:\"<strong>Your store has been updated to the latest secure version of the WooCommerce Stripe plugin</strong>. This update was released on July 31.\";}}s:7:\"actions\";a:1:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:7:\"dismiss\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:7:\"Dismiss\";}}s:3:\"url\";s:1:\"#\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:1;s:6:\"status\";s:8:\"actioned\";}}s:5:\"rules\";a:2:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:18:\"publish_after_time\";s:13:\"publish_after\";s:19:\"2023-08-03 05:00:07\";}i:1;O:8:\"stdClass\":2:{s:4:\"type\";s:2:\"or\";s:8:\"operands\";a:11:{i:0;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:26:\"woocommerce-gateway-stripe\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"6.3.2\";}i:1;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:26:\"woocommerce-gateway-stripe\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"6.4.5\";}i:2;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:26:\"woocommerce-gateway-stripe\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"6.5.3\";}i:3;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:26:\"woocommerce-gateway-stripe\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"6.6.2\";}i:4;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:26:\"woocommerce-gateway-stripe\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"6.7.2\";}i:5;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:26:\"woocommerce-gateway-stripe\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"6.8.2\";}i:6;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:26:\"woocommerce-gateway-stripe\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"6.9.2\";}i:7;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:26:\"woocommerce-gateway-stripe\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"7.0.4\";}i:8;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:26:\"woocommerce-gateway-stripe\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"7.1.2\";}i:9;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:26:\"woocommerce-gateway-stripe\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"7.2.2\";}i:10;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:26:\"woocommerce-gateway-stripe\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"7.3.2\";}}}}}s:46:\"woocommerce-WooPayments-Aug-2023-update-needed\";O:8:\"stdClass\":8:{s:4:\"slug\";s:46:\"woocommerce-WooPayments-Aug-2023-update-needed\";s:4:\"type\";s:6:\"update\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:78:\"Action required: Security update for WooPayments (WooCommerce Payments) plugin\";s:7:\"content\";s:201:\"<strong>Your shop requires an important security update for the WooPayments (WooCommerce Payments) extension</strong>. The fix for this vulnerability was released on July 31. Please update immediately.\";}}s:7:\"actions\";a:2:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:46:\"woocommerce-WooPayments-Aug-2023-update-needed\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:21:\"See available updates\";}}s:3:\"url\";s:16:\"update-core.php?\";s:18:\"url_is_admin_query\";b:1;s:10:\"is_primary\";b:1;s:6:\"status\";s:10:\"unactioned\";}i:1;O:8:\"stdClass\":6:{s:4:\"name\";s:7:\"dismiss\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:7:\"Dismiss\";}}s:3:\"url\";s:1:\"#\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:1;s:6:\"status\";s:8:\"actioned\";}}s:5:\"rules\";a:4:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:18:\"publish_after_time\";s:13:\"publish_after\";s:19:\"2023-08-03 05:00:10\";}i:1;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:20:\"woocommerce-payments\";s:8:\"operator\";s:2:\">=\";s:7:\"version\";s:5:\"2.8.0\";}i:2;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:20:\"woocommerce-payments\";s:8:\"operator\";s:1:\"<\";s:7:\"version\";s:5:\"6.2.1\";}i:3;O:8:\"stdClass\":2:{s:4:\"type\";s:3:\"not\";s:7:\"operand\";a:1:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:2:\"or\";s:8:\"operands\";a:17:{i:0;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:20:\"woocommerce-payments\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"4.5.3\";}i:1;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:20:\"woocommerce-payments\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"4.6.2\";}i:2;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:20:\"woocommerce-payments\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"4.7.4\";}i:3;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:20:\"woocommerce-payments\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"4.8.4\";}i:4;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:20:\"woocommerce-payments\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"4.9.3\";}i:5;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:20:\"woocommerce-payments\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"5.0.6\";}i:6;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:20:\"woocommerce-payments\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"5.1.5\";}i:7;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:20:\"woocommerce-payments\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"5.2.4\";}i:8;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:20:\"woocommerce-payments\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"5.3.3\";}i:9;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:20:\"woocommerce-payments\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"5.4.3\";}i:10;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:20:\"woocommerce-payments\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"5.5.4\";}i:11;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:20:\"woocommerce-payments\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"5.6.4\";}i:12;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:20:\"woocommerce-payments\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"5.7.2\";}i:13;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:20:\"woocommerce-payments\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"5.8.3\";}i:14;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:20:\"woocommerce-payments\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"5.9.2\";}i:15;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:20:\"woocommerce-payments\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"6.0.1\";}i:16;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:20:\"woocommerce-payments\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"6.1.2\";}}}}}}}s:49:\"woocommerce-WooPayments-Aug-2023-security-updated\";O:8:\"stdClass\":8:{s:4:\"slug\";s:49:\"woocommerce-WooPayments-Aug-2023-security-updated\";s:4:\"type\";s:6:\"update\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:60:\"Security update of WooPayments (WooCommerce Payments) plugin\";s:7:\"content\";s:147:\"<strong>Your store has been updated to the more secure version of WooPayments (WooCommerce Payments)</strong>. This update was released on July 31.\";}}s:7:\"actions\";a:1:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:7:\"dismiss\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:7:\"Dismiss\";}}s:3:\"url\";s:1:\"#\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:1;s:6:\"status\";s:8:\"actioned\";}}s:5:\"rules\";a:2:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:18:\"publish_after_time\";s:13:\"publish_after\";s:19:\"2023-08-03 05:00:13\";}i:1;O:8:\"stdClass\":2:{s:4:\"type\";s:2:\"or\";s:8:\"operands\";a:17:{i:0;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:20:\"woocommerce-payments\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"4.5.3\";}i:1;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:20:\"woocommerce-payments\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"4.6.2\";}i:2;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:20:\"woocommerce-payments\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"4.7.4\";}i:3;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:20:\"woocommerce-payments\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"4.8.4\";}i:4;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:20:\"woocommerce-payments\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"4.9.3\";}i:5;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:20:\"woocommerce-payments\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"5.0.6\";}i:6;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:20:\"woocommerce-payments\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"5.1.5\";}i:7;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:20:\"woocommerce-payments\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"5.2.4\";}i:8;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:20:\"woocommerce-payments\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"5.3.3\";}i:9;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:20:\"woocommerce-payments\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"5.4.3\";}i:10;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:20:\"woocommerce-payments\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"5.5.4\";}i:11;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:20:\"woocommerce-payments\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"5.6.4\";}i:12;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:20:\"woocommerce-payments\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"5.7.2\";}i:13;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:20:\"woocommerce-payments\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"5.8.3\";}i:14;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:20:\"woocommerce-payments\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"5.9.2\";}i:15;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:20:\"woocommerce-payments\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"6.0.1\";}i:16;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:20:\"woocommerce-payments\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"6.1.2\";}}}}}s:24:\"avalara_q3-2023_noAvaTax\";O:8:\"stdClass\":8:{s:4:\"slug\";s:24:\"avalara_q3-2023_noAvaTax\";s:4:\"type\";s:9:\"marketing\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:40:\"Automatically calculate VAT in real time\";s:7:\"content\";s:284:\"Take the effort out of determining tax rates and sell confidently across borders with automated tax management from Avalara AvaTax— including built-in VAT calculation when you sell into or across the EU and UK. Save time and stay compliant when you let Avalara do the heavy lifting.\";}}s:7:\"actions\";a:1:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:24:\"avalara_q3-2023_noAvaTax\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:21:\"Automate my sales tax\";}}s:3:\"url\";s:131:\"https://woocommerce.com/products/woocommerce-avatax/?utm_source=inbox_note&utm_medium=product&utm_campaign=avalara_q3-2023_noAvaTax\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:1;s:6:\"status\";s:10:\"unactioned\";}}s:5:\"rules\";a:5:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:18:\"publish_after_time\";s:13:\"publish_after\";s:19:\"2023-08-08 22:32:23\";}i:1;O:8:\"stdClass\":2:{s:4:\"type\";s:19:\"publish_before_time\";s:14:\"publish_before\";s:19:\"2023-08-09 23:59:00\";}i:2;O:8:\"stdClass\":2:{s:4:\"type\";s:3:\"not\";s:7:\"operand\";a:1:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:17:\"plugins_activated\";s:7:\"plugins\";a:1:{i:0;s:18:\"woocommerce-avatax\";}}}}i:3;O:8:\"stdClass\":3:{s:4:\"type\";s:18:\"wcadmin_active_for\";s:9:\"operation\";s:1:\">\";s:4:\"days\";i:30;}i:4;O:8:\"stdClass\":4:{s:4:\"type\";s:20:\"total_payments_value\";s:9:\"timeframe\";s:9:\"last_year\";s:5:\"value\";i:100;s:9:\"operation\";s:1:\">\";}}}}','no'),(282,'woocommerce_admin_version','2.7.1-rc.1','yes'),(125,'https_detection_errors','a:0:{}','yes'),(805,'revslider-update-check','1695791581','yes'),(806,'revslider_update_info','O:8:\"stdClass\":0:{}','yes'),(745,'woocommerce_maybe_regenerate_images_hash','48ee8beafb0edc3dc7113ca1ade5eddf','yes'),(132,'jetpack_sync_settings_disable','0','yes'),(133,'jetpack_connection_active_plugins','a:2:{s:7:\"jetpack\";a:1:{s:4:\"name\";s:7:\"Jetpack\";}s:11:\"woocommerce\";a:1:{s:4:\"name\";s:11:\"WooCommerce\";}}','yes'),(134,'woocommerce_maxmind_geolocation_settings','a:1:{s:15:\"database_prefix\";s:32:\"9UdwqIDfddD8LVVLXi95dMqUUqaz1Gg0\";}','yes'),(135,'_transient_woocommerce_webhook_ids_status_active','a:0:{}','yes'),(136,'widget_woocommerce_widget_cart','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(137,'widget_woocommerce_layered_nav_filters','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(138,'widget_woocommerce_layered_nav','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(139,'widget_woocommerce_price_filter','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(140,'widget_woocommerce_product_categories','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(141,'widget_woocommerce_product_search','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(142,'widget_woocommerce_product_tag_cloud','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(143,'widget_woocommerce_products','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(144,'widget_woocommerce_recently_viewed_products','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(145,'widget_woocommerce_top_rated_products','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(146,'widget_woocommerce_recent_reviews','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(147,'widget_woocommerce_rating_filter','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(148,'action_scheduler_hybrid_store_demarkation','4','yes'),(149,'schema-ActionScheduler_StoreSchema','7.0.1692414994','yes'),(150,'schema-ActionScheduler_LoggerSchema','3.0.1658301474','yes'),(151,'woocommerce_permalinks','a:5:{s:12:\"product_base\";s:7:\"product\";s:13:\"category_base\";s:16:\"product-category\";s:8:\"tag_base\";s:11:\"product-tag\";s:14:\"attribute_base\";s:0:\"\";s:22:\"use_verbose_page_rules\";b:0;}','yes'),(157,'woocommerce_schema_version','430','yes'),(153,'current_theme_supports_woocommerce','yes','yes'),(154,'woocommerce_queue_flush_rewrite_rules','no','yes'),(158,'woocommerce_store_address','','yes'),(159,'woocommerce_store_address_2','','yes'),(160,'woocommerce_store_city','','yes'),(161,'woocommerce_default_country','US:CA','yes'),(162,'woocommerce_store_postcode','','yes'),(163,'woocommerce_allowed_countries','all','yes'),(164,'woocommerce_all_except_countries','a:0:{}','yes'),(165,'woocommerce_specific_allowed_countries','a:0:{}','yes'),(166,'woocommerce_ship_to_countries','','yes'),(167,'woocommerce_specific_ship_to_countries','a:0:{}','yes'),(168,'woocommerce_default_customer_address','base','yes'),(169,'woocommerce_calc_taxes','no','yes'),(170,'woocommerce_enable_coupons','no','yes'),(171,'woocommerce_calc_discounts_sequentially','no','no'),(172,'woocommerce_currency','USD','yes'),(173,'woocommerce_currency_pos','left','yes'),(174,'woocommerce_price_thousand_sep',',','yes'),(175,'woocommerce_price_decimal_sep','.','yes'),(176,'woocommerce_price_num_decimals','2','yes'),(177,'woocommerce_shop_page_id','2655','yes'),(178,'woocommerce_cart_redirect_after_add','no','yes'),(179,'woocommerce_enable_ajax_add_to_cart','no','yes'),(180,'woocommerce_placeholder_image','4','yes'),(181,'woocommerce_weight_unit','kg','yes'),(182,'woocommerce_dimension_unit','cm','yes'),(183,'woocommerce_enable_reviews','no','yes'),(184,'woocommerce_review_rating_verification_label','yes','no'),(185,'woocommerce_review_rating_verification_required','no','no'),(186,'woocommerce_enable_review_rating','yes','yes'),(187,'woocommerce_review_rating_required','yes','no'),(188,'woocommerce_manage_stock','no','yes'),(189,'woocommerce_hold_stock_minutes','60','no'),(190,'woocommerce_notify_low_stock','yes','no'),(191,'woocommerce_notify_no_stock','yes','no'),(192,'woocommerce_stock_email_recipient','yasitha.p.m@gmail.com','no'),(193,'woocommerce_notify_low_stock_amount','2','no'),(194,'woocommerce_notify_no_stock_amount','0','yes'),(195,'woocommerce_hide_out_of_stock_items','no','yes'),(196,'woocommerce_stock_format','no_amount','yes'),(197,'woocommerce_file_download_method','force','no'),(198,'woocommerce_downloads_redirect_fallback_allowed','no','no'),(199,'woocommerce_downloads_require_login','no','no'),(200,'woocommerce_downloads_grant_access_after_payment','yes','no'),(201,'woocommerce_downloads_add_hash_to_filename','yes','yes'),(202,'woocommerce_prices_include_tax','no','yes'),(203,'woocommerce_tax_based_on','shipping','yes'),(204,'woocommerce_shipping_tax_class','inherit','yes'),(205,'woocommerce_tax_round_at_subtotal','no','yes'),(206,'woocommerce_tax_classes','','yes'),(207,'woocommerce_tax_display_shop','excl','yes'),(208,'woocommerce_tax_display_cart','excl','yes'),(209,'woocommerce_price_display_suffix','','yes'),(210,'woocommerce_tax_total_display','itemized','no'),(211,'woocommerce_enable_shipping_calc','yes','no'),(212,'woocommerce_shipping_cost_requires_address','no','yes'),(213,'woocommerce_ship_to_destination','billing','no'),(214,'woocommerce_shipping_debug_mode','no','yes'),(215,'woocommerce_enable_guest_checkout','yes','no'),(216,'woocommerce_enable_checkout_login_reminder','no','no'),(217,'woocommerce_enable_signup_and_login_from_checkout','no','no'),(218,'woocommerce_enable_myaccount_registration','no','no'),(219,'woocommerce_registration_generate_username','yes','no'),(220,'woocommerce_registration_generate_password','yes','no'),(221,'woocommerce_erasure_request_removes_order_data','no','no'),(222,'woocommerce_erasure_request_removes_download_data','no','no'),(223,'woocommerce_allow_bulk_remove_personal_data','no','no'),(224,'woocommerce_registration_privacy_policy_text','Your personal data will be used to support your experience throughout this website, to manage access to your account, and for other purposes described in our [privacy_policy].','yes'),(225,'woocommerce_checkout_privacy_policy_text','Your personal data will be used to process your order, support your experience throughout this website, and for other purposes described in our [privacy_policy].','yes'),(226,'woocommerce_delete_inactive_accounts','a:2:{s:6:\"number\";s:0:\"\";s:4:\"unit\";s:6:\"months\";}','no'),(227,'woocommerce_trash_pending_orders','','no'),(228,'woocommerce_trash_failed_orders','','no'),(229,'woocommerce_trash_cancelled_orders','','no'),(230,'woocommerce_anonymize_completed_orders','a:2:{s:6:\"number\";s:0:\"\";s:4:\"unit\";s:6:\"months\";}','no'),(231,'woocommerce_email_from_name','Farmchemie','no'),(232,'woocommerce_email_from_address','yasitha.p.m@gmail.com','no'),(233,'woocommerce_email_header_image','','no'),(234,'woocommerce_email_footer_text','{site_title} &mdash; Built with {WooCommerce}','no'),(235,'woocommerce_email_base_color','#96588a','no'),(236,'woocommerce_email_background_color','#f7f7f7','no'),(237,'woocommerce_email_body_background_color','#ffffff','no'),(238,'woocommerce_email_text_color','#3c3c3c','no'),(239,'woocommerce_merchant_email_notifications','no','no'),(240,'woocommerce_cart_page_id','6','no'),(241,'woocommerce_checkout_page_id','7','no'),(242,'woocommerce_myaccount_page_id','8','no'),(243,'woocommerce_terms_page_id','','no'),(244,'woocommerce_checkout_pay_endpoint','order-pay','yes'),(245,'woocommerce_checkout_order_received_endpoint','order-received','yes'),(246,'woocommerce_myaccount_add_payment_method_endpoint','add-payment-method','yes'),(247,'woocommerce_myaccount_delete_payment_method_endpoint','delete-payment-method','yes'),(248,'woocommerce_myaccount_set_default_payment_method_endpoint','set-default-payment-method','yes'),(249,'woocommerce_myaccount_orders_endpoint','orders','yes'),(250,'woocommerce_myaccount_view_order_endpoint','view-order','yes'),(251,'woocommerce_myaccount_downloads_endpoint','downloads','yes'),(252,'woocommerce_myaccount_edit_account_endpoint','edit-account','yes'),(253,'woocommerce_myaccount_edit_address_endpoint','edit-address','yes'),(254,'woocommerce_myaccount_payment_methods_endpoint','payment-methods','yes'),(255,'woocommerce_myaccount_lost_password_endpoint','lost-password','yes'),(256,'woocommerce_logout_endpoint','customer-logout','yes'),(257,'woocommerce_api_enabled','no','yes'),(258,'woocommerce_allow_tracking','no','no'),(259,'woocommerce_show_marketplace_suggestions','yes','no'),(260,'woocommerce_analytics_enabled','yes','yes'),(261,'woocommerce_single_image_width','600','yes'),(262,'woocommerce_thumbnail_image_width','300','yes'),(263,'woocommerce_checkout_highlight_required_fields','yes','yes'),(264,'woocommerce_demo_store','no','no'),(266,'default_product_cat','15','yes'),(318,'do_activate','0','yes'),(268,'woocommerce_refund_returns_page_id','9','yes'),(271,'woocommerce_paypal_settings','a:23:{s:7:\"enabled\";s:2:\"no\";s:5:\"title\";s:6:\"PayPal\";s:11:\"description\";s:85:\"Pay via PayPal; you can pay with your credit card if you don\'t have a PayPal account.\";s:5:\"email\";s:21:\"yasitha.p.m@gmail.com\";s:8:\"advanced\";s:0:\"\";s:8:\"testmode\";s:2:\"no\";s:5:\"debug\";s:2:\"no\";s:16:\"ipn_notification\";s:3:\"yes\";s:14:\"receiver_email\";s:21:\"yasitha.p.m@gmail.com\";s:14:\"identity_token\";s:0:\"\";s:14:\"invoice_prefix\";s:3:\"WC-\";s:13:\"send_shipping\";s:3:\"yes\";s:16:\"address_override\";s:2:\"no\";s:13:\"paymentaction\";s:4:\"sale\";s:9:\"image_url\";s:0:\"\";s:11:\"api_details\";s:0:\"\";s:12:\"api_username\";s:0:\"\";s:12:\"api_password\";s:0:\"\";s:13:\"api_signature\";s:0:\"\";s:20:\"sandbox_api_username\";s:0:\"\";s:20:\"sandbox_api_password\";s:0:\"\";s:21:\"sandbox_api_signature\";s:0:\"\";s:12:\"_should_load\";s:2:\"no\";}','yes'),(272,'woocommerce_version','8.0.2','yes'),(273,'woocommerce_db_version','5.8.0','yes'),(285,'wc_remote_inbox_notifications_stored_state','O:8:\"stdClass\":2:{s:22:\"there_were_no_products\";b:1;s:22:\"there_are_now_products\";b:1;}','no'),(40358,'can_compress_scripts','1','yes'),(740,'current_theme','The7','yes'),(289,'boldgrid_settings','a:2:{s:7:\"library\";a:1:{s:35:\"boldgrid-backup/boldgrid-backup.php\";s:9:\"2.13.10.0\";}s:15:\"plugins_checked\";a:2:{s:35:\"boldgrid-backup/boldgrid-backup.php\";a:2:{s:7:\"1.14.13\";i:1658301589;s:6:\"1.15.7\";i:1692414951;}s:51:\"boldgrid-backup-premium/boldgrid-backup-premium.php\";a:1:{s:5:\"1.5.9\";i:1692414951;}}}','yes'),(290,'boldgrid_backup_id','a94f4b8d','no'),(291,'boldgrid_backup_settings','a:15:{s:8:\"schedule\";a:10:{s:10:\"dow_sunday\";i:0;s:10:\"dow_monday\";i:0;s:11:\"dow_tuesday\";i:0;s:13:\"dow_wednesday\";i:0;s:12:\"dow_thursday\";i:0;s:10:\"dow_friday\";i:0;s:12:\"dow_saturday\";i:0;s:5:\"tod_h\";i:1;s:5:\"tod_m\";i:41;s:5:\"tod_a\";s:2:\"AM\";}s:15:\"retention_count\";i:5;s:18:\"notification_email\";s:21:\"yasitha.p.m@gmail.com\";s:13:\"notifications\";a:3:{s:6:\"backup\";i:1;s:7:\"restore\";i:1;s:10:\"site_check\";b:1;}s:11:\"auto_backup\";i:1;s:13:\"auto_rollback\";i:1;s:6:\"remote\";a:1:{s:5:\"local\";a:1:{s:7:\"enabled\";b:1;}}s:14:\"exclude_tables\";a:0:{}s:24:\"folder_exclusion_include\";s:18:\"WPCORE,/wp-content\";s:24:\"folder_exclusion_exclude\";s:17:\".git,node_modules\";s:10:\"site_check\";a:4:{s:7:\"enabled\";b:1;s:6:\"logger\";b:1;s:13:\"auto_recovery\";b:0;s:8:\"interval\";i:15;}s:10:\"encrypt_db\";b:0;s:11:\"auto_update\";a:3:{s:4:\"days\";i:0;s:7:\"plugins\";a:1:{s:7:\"default\";s:1:\"0\";}s:6:\"themes\";a:1:{s:7:\"default\";s:1:\"0\";}}s:16:\"backup_directory\";s:29:\"/home/yasith5/boldgrid_backup\";s:11:\"cron_secret\";s:64:\"bc03e9ee0f529ff18a36ffd315639c1398e00cb4360e6bbd5c6670c934e0a8fd\";}','no'),(67447,'_transient_timeout__woocommerce_helper_subscriptions','1695792481','no'),(67448,'_transient__woocommerce_helper_subscriptions','a:0:{}','no'),(46009,'woocommerce_downloads_deliver_inline','','no'),(297,'jetpack_options','a:3:{s:14:\"last_heartbeat\";i:1695729831;s:7:\"version\";s:15:\"10.2:1658301589\";s:11:\"old_version\";s:15:\"10.2:1658301589\";}','yes'),(302,'_transient_jetpack_autoloader_plugin_paths','a:2:{i:0;s:25:\"{{WP_PLUGIN_DIR}}/jetpack\";i:1;s:29:\"{{WP_PLUGIN_DIR}}/woocommerce\";}','yes'),(303,'woocommerce_admin_notices','a:1:{i:0;s:6:\"update\";}','yes'),(305,'boldgrid_backup_environment','a:3:{s:8:\"hostname\";s:28:\"ecbiz240.inmotionhosting.com\";s:10:\"phpversion\";s:6:\"7.4.33\";s:9:\"wpversion\";s:5:\"6.3.1\";}','yes'),(330,'finished_updating_comment_type','1','yes'),(779,'wpcf7','a:2:{s:7:\"version\";s:3:\"5.8\";s:13:\"bulk_validate\";a:4:{s:9:\"timestamp\";i:1660126879;s:7:\"version\";s:5:\"5.6.2\";s:11:\"count_valid\";i:1;s:13:\"count_invalid\";i:0;}}','yes'),(780,'revslider_servers','a:3:{i:0;s:22:\"themepunch-ext-b.tools\";i:1;s:22:\"themepunch-ext-c.tools\";i:2;s:22:\"themepunch-ext-a.tools\";}','yes'),(781,'revslider_server_refresh','1695711960','yes'),(782,'revslider-update-check-short','1695701447','yes'),(783,'revslider-connection','1','yes'),(784,'revslider-update-hash','05603f4cde7f4abbc92230063478470e','yes'),(785,'revslider-latest-version','6.6.16','yes'),(786,'revslider-stable-version','4.2.0','yes'),(787,'revslider-notices','a:5:{i:0;O:8:\"stdClass\":9:{s:7:\"version\";s:5:\"1.0.0\";s:4:\"text\";s:546:\"<div style=\"display: block; background: #fff;text-align: center; height: 250px;\"><a href=\"https://account.sliderrevolution.com/portal/pricing/?utm_source=admin&utm_medium=banner&utm_campaign=srusers&utm_content=getpremium\" target=\"_blank\" rel=\"noopener\"><video style=\"object-fit: cover; background-size: cover; opacity: 1; width: 960px; height: 250px; display: inline-block;\" muted=\"\" loop=\"\" autoplay=\"\" preload=\"auto\"><source src=\"https://sliderrevolution.com/wp-content/uploads/2021/07/adminpremiumvid4.mp4\" type=\"video/mp4\"></video></a></div>\";s:4:\"code\";s:12:\"TPRSV6511-01\";s:5:\"color\";s:5:\"green\";s:7:\"disable\";b:0;s:9:\"is_global\";b:0;s:4:\"type\";s:1:\"3\";s:10:\"show_until\";s:19:\"0000-00-00 00:00:00\";s:10:\"additional\";a:0:{}}i:1;O:8:\"stdClass\":9:{s:7:\"version\";s:5:\"1.9.9\";s:4:\"text\";s:562:\"<div style=\"display: block; background: #fff;text-align: center; \nheight: 300px;\"><a \nhref=\"https://www.sliderrevolution.com/slider-revolution-visual-editor-version-6-6/?utm_source=admin&utm_medium=banner&utm_campaign=srusers&utm_content=update66\"\n target=\"_blank\" rel=\"noopener\"><video style=\"object-fit: \ncover; background-size: cover; opacity: 1; width: 920px; height: 300px; \ndisplay: inline-block;\" muted loop autoplay \npreload=\"auto\"><source src=\"//updates.themepunch-ext-a.tools//banners/rs60/update66videobanner2.mp4\" type=\"video/mp4\"></video></a></div>\n\";s:4:\"code\";s:8:\"TPRSV663\";s:5:\"color\";s:5:\"green\";s:7:\"disable\";b:0;s:9:\"is_global\";b:0;s:4:\"type\";s:1:\"3\";s:10:\"show_until\";s:19:\"0000-00-00 00:00:00\";s:10:\"additional\";a:0:{}}i:2;O:8:\"stdClass\":9:{s:7:\"version\";s:5:\"1.0.0\";s:4:\"text\";s:537:\"<div style=\"display: block; background: #fff;text-align: center; height: 300px;\"><a href=\"https://account.sliderrevolution.com/portal/pricing/?utm_source=admin&utm_medium=banner&utm_campaign=srusers&utm_content=getpremium2\" target=\"_blank\" rel=\"noopener\"><video style=\"object-fit: cover; background-size: cover; opacity: 1; width: 920px; height: 300px; display: inline-block;\" muted=\"\" loop=\"\" autoplay=\"\" preload=\"auto\"><source src=\"//updates.themepunch-ext-a.tools//banners/videobanner_premium2.mp4\" type=\"video/mp4\"></video></a></div>\";s:4:\"code\";s:12:\"TPRSV6518-01\";s:5:\"color\";s:5:\"green\";s:7:\"disable\";b:0;s:9:\"is_global\";b:0;s:4:\"type\";s:1:\"3\";s:10:\"show_until\";s:19:\"0000-00-00 00:00:00\";s:10:\"additional\";a:0:{}}i:3;O:8:\"stdClass\":10:{s:7:\"version\";s:5:\"0.9.9\";s:4:\"text\";s:402:\"<div style=\"display: block; background:#fff;text-align: center; height: 250px;\"><a href=\"https://www.sliderrevolution.com/wordpress-hosting/?utm_source=admin&utm_medium=banner&utm_campaign=srusers&utm_content=getwphosting\" target=\"_blank\" rel=\"noopener\"><img style=\"width: 960px; height: 250px; display: inline-block;\"  src=\"//updates.themepunch-ext-a.tools//banners/rs60/wphostingadmin.jpg\"></a></div>\";s:4:\"code\";s:12:\"TPRSV6518-02\";s:5:\"color\";s:5:\"green\";s:7:\"disable\";b:0;s:9:\"is_global\";b:0;s:10:\"registered\";b:1;s:4:\"type\";s:1:\"3\";s:10:\"show_until\";s:19:\"0000-00-00 00:00:00\";s:10:\"additional\";a:0:{}}i:4;O:8:\"stdClass\":10:{s:7:\"version\";s:5:\"9.9.9\";s:4:\"text\";s:527:\"<div style=\"display: block; background: #0d0d0e;text-align: center; height: 504px;\"><a href=\"https://account.sliderrevolution.com/portal/pricing/?utm_source=admin&utm_medium=banner&utm_campaign=srusers&utm_content=getpremium3\" target=\"_blank\" rel=\"noopener\"><video style=\"object-fit: cover; background-size: cover; opacity: 1; width: 900px; height: 504px; display: inline-block;\" muted loop autoplay preload=\"auto\"><source src=\"//updates.themepunch-ext-a.tools//banners/rs60/buypremium3.mp4\" type=\"video/mp4\"></video></a></div>\";s:4:\"code\";s:8:\"TPRSV668\";s:5:\"color\";s:5:\"green\";s:7:\"disable\";b:0;s:9:\"is_global\";b:0;s:10:\"registered\";b:0;s:4:\"type\";s:1:\"3\";s:10:\"show_until\";s:19:\"0000-00-00 00:00:00\";s:10:\"additional\";a:0:{}}}','yes'),(319,'jetpack_activated','2','yes'),(320,'wc_blocks_surface_cart_checkout_probability','74','yes'),(321,'wc_blocks_db_schema_version','260','yes'),(326,'woocommerce_meta_box_errors','a:0:{}','yes'),(325,'action_scheduler_lock_async-request-runner','1695791629','yes'),(788,'revslider-additions','O:8:\"stdClass\":2:{s:9:\"templates\";O:8:\"stdClass\":3:{s:9:\"tutorials\";a:3:{i:0;O:8:\"stdClass\":2:{s:5:\"title\";s:19:\"Rapid Fire Overview\";s:3:\"url\";s:49:\"https://www.youtube.com/watch?v=LRNTFu-MFgw&t=25s\";}i:1;O:8:\"stdClass\":2:{s:5:\"title\";s:34:\"Responsiveness in Edited Templates\";s:3:\"url\";s:43:\"https://www.youtube.com/watch?v=hP4oV8SWgKY\";}i:2;O:8:\"stdClass\":2:{s:5:\"title\";s:16:\"Animation Basics\";s:3:\"url\";s:43:\"https://www.youtube.com/watch?v=nn3azizwpbs\";}}s:5:\"guide\";O:8:\"stdClass\":3:{s:5:\"title\";s:78:\"Require Expert Technical Advice?<br />Submit a Ticket for Dedicated 1on1 Help.\";s:3:\"url\";s:36:\"https://support.sliderrevolution.com\";s:3:\"img\";s:67:\"//updates.themepunch-ext-a.tools/banners/default_template_guide.jpg\";}s:6:\"bottom\";O:8:\"stdClass\":2:{s:5:\"title\";s:32:\"Load A Template From The Library\";s:3:\"img\";s:61:\"//updates.themepunch-ext-a.tools/banners/guide_mod_banner.png\";}}s:7:\"selling\";b:1;}','yes'),(789,'rs-addons-counter','1','yes'),(790,'revslider-addons','O:8:\"stdClass\":34:{s:28:\"revslider-particlewave-addon\";O:8:\"stdClass\":16:{s:2:\"id\";s:3:\"380\";s:9:\"releaseid\";s:2:\"29\";s:4:\"slug\";s:28:\"revslider-particlewave-addon\";s:12:\"version_from\";s:6:\"6.5.15\";s:10:\"version_to\";s:5:\"9.9.9\";s:5:\"title\";s:13:\"Particle Wave\";s:6:\"line_1\";s:36:\"Create 3D particle and polygon grids\";s:6:\"line_2\";s:40:\"with lots of style and animation options\";s:9:\"available\";s:5:\"1.1.5\";s:10:\"background\";s:0:\"\";s:6:\"button\";s:0:\"\";s:4:\"sort\";s:1:\"9\";s:11:\"last_update\";s:10:\"2023-08-24\";s:6:\"global\";b:0;s:7:\"premium\";s:7:\"premium\";s:4:\"logo\";O:8:\"stdClass\":3:{s:3:\"img\";s:79:\"//updates.themepunch-ext-a.tools/revslider/addons/images/addon_particlewave.jpg\";s:5:\"color\";s:0:\"\";s:4:\"text\";s:2:\"PW\";}}s:25:\"revslider-particles-addon\";O:8:\"stdClass\":16:{s:2:\"id\";s:3:\"424\";s:9:\"releaseid\";s:1:\"7\";s:4:\"slug\";s:25:\"revslider-particles-addon\";s:12:\"version_from\";s:5:\"6.5.6\";s:10:\"version_to\";s:5:\"9.9.9\";s:5:\"title\";s:16:\"Particle Effects\";s:6:\"line_1\";s:17:\"Let\'s Parti(cle)!\";s:6:\"line_2\";s:51:\"Add interactive particle animations to your sliders\";s:9:\"available\";s:5:\"3.3.3\";s:10:\"background\";s:0:\"\";s:6:\"button\";s:11:\"How to use?\";s:4:\"sort\";s:2:\"10\";s:11:\"last_update\";s:10:\"2023-07-28\";s:6:\"global\";b:0;s:7:\"premium\";s:7:\"premium\";s:4:\"logo\";O:8:\"stdClass\":3:{s:3:\"img\";s:76:\"//updates.themepunch-ext-a.tools/revslider/addons/images/addon_particles.jpg\";s:5:\"color\";s:0:\"\";s:4:\"text\";s:2:\"PT\";}}s:27:\"revslider-bubblemorph-addon\";O:8:\"stdClass\":16:{s:2:\"id\";s:3:\"405\";s:9:\"releaseid\";s:2:\"20\";s:4:\"slug\";s:27:\"revslider-bubblemorph-addon\";s:12:\"version_from\";s:5:\"6.5.1\";s:10:\"version_to\";s:5:\"9.9.9\";s:5:\"title\";s:11:\"BubbleMorph\";s:6:\"line_1\";s:26:\"Include BubbleMorph Layers\";s:6:\"line_2\";s:33:\"for a decorative lava lamp effect\";s:9:\"available\";s:5:\"3.0.8\";s:10:\"background\";s:0:\"\";s:6:\"button\";s:6:\"How To\";s:4:\"sort\";s:2:\"20\";s:11:\"last_update\";s:10:\"2023-06-26\";s:6:\"global\";b:0;s:7:\"premium\";s:7:\"premium\";s:4:\"logo\";O:8:\"stdClass\":3:{s:3:\"img\";s:78:\"//updates.themepunch-ext-a.tools/revslider/addons/images/addon_bubblemorph.jpg\";s:5:\"color\";s:0:\"\";s:4:\"text\";s:2:\"BM\";}}s:26:\"revslider-thecluster-addon\";O:8:\"stdClass\":16:{s:2:\"id\";s:3:\"481\";s:9:\"releaseid\";s:2:\"28\";s:4:\"slug\";s:26:\"revslider-thecluster-addon\";s:12:\"version_from\";s:5:\"6.6.0\";s:10:\"version_to\";s:5:\"9.9.9\";s:5:\"title\";s:11:\"The Cluster\";s:6:\"line_1\";s:24:\"Cluster Particle Effects\";s:6:\"line_2\";s:27:\"with millions of Variations\";s:9:\"available\";s:6:\"1.0.10\";s:10:\"background\";s:0:\"\";s:6:\"button\";s:0:\"\";s:4:\"sort\";s:2:\"22\";s:11:\"last_update\";s:10:\"2023-06-26\";s:6:\"global\";b:0;s:7:\"premium\";s:7:\"premium\";s:4:\"logo\";O:8:\"stdClass\":3:{s:3:\"img\";s:74:\"//updates.themepunch-ext-a.tools/revslider/addons/images/addon_cluster.jpg\";s:5:\"color\";s:0:\"\";s:4:\"text\";s:2:\"TC\";}}s:30:\"revslider-transitionpack-addon\";O:8:\"stdClass\":16:{s:2:\"id\";s:3:\"369\";s:9:\"releaseid\";s:2:\"28\";s:4:\"slug\";s:30:\"revslider-transitionpack-addon\";s:12:\"version_from\";s:5:\"6.5.6\";s:10:\"version_to\";s:5:\"9.9.9\";s:5:\"title\";s:20:\"Advanced Transitions\";s:6:\"line_1\";s:43:\"Add never-before-seen slide transitions to \";s:6:\"line_2\";s:42:\"Slider Revolution with the power of WEBGL.\";s:9:\"available\";s:5:\"1.0.6\";s:10:\"background\";s:0:\"\";s:6:\"button\";s:0:\"\";s:4:\"sort\";s:2:\"30\";s:11:\"last_update\";s:10:\"2023-02-23\";s:6:\"global\";b:0;s:7:\"premium\";s:7:\"premium\";s:4:\"logo\";O:8:\"stdClass\":3:{s:3:\"img\";s:77:\"//updates.themepunch-ext-a.tools/revslider/addons/images/addon_transition.jpg\";s:5:\"color\";s:0:\"\";s:4:\"text\";s:2:\"AT\";}}s:27:\"revslider-beforeafter-addon\";O:8:\"stdClass\":16:{s:2:\"id\";s:3:\"507\";s:9:\"releaseid\";s:2:\"15\";s:4:\"slug\";s:27:\"revslider-beforeafter-addon\";s:12:\"version_from\";s:5:\"6.5.1\";s:10:\"version_to\";s:5:\"9.9.9\";s:5:\"title\";s:14:\"Before & After\";s:6:\"line_1\";s:35:\"Compare two slides before and after\";s:6:\"line_2\";s:33:\"use it vertically or horizontally\";s:9:\"available\";s:5:\"3.1.1\";s:10:\"background\";s:0:\"\";s:6:\"button\";s:0:\"\";s:4:\"sort\";s:2:\"40\";s:11:\"last_update\";s:10:\"2023-05-20\";s:6:\"global\";b:0;s:7:\"premium\";s:7:\"premium\";s:4:\"logo\";O:8:\"stdClass\":3:{s:3:\"img\";s:78:\"//updates.themepunch-ext-a.tools/revslider/addons/images/addon_beforeafter.jpg\";s:5:\"color\";s:0:\"\";s:4:\"text\";s:2:\"BA\";}}s:26:\"revslider-typewriter-addon\";O:8:\"stdClass\":16:{s:2:\"id\";s:3:\"418\";s:9:\"releaseid\";s:1:\"3\";s:4:\"slug\";s:26:\"revslider-typewriter-addon\";s:12:\"version_from\";s:5:\"6.5.1\";s:10:\"version_to\";s:5:\"9.9.9\";s:5:\"title\";s:17:\"Typewriter Effect\";s:6:\"line_1\";s:27:\"Enhance your slider\'s text \";s:6:\"line_2\";s:24:\"with typewriter effects \";s:9:\"available\";s:5:\"3.0.6\";s:10:\"background\";s:0:\"\";s:6:\"button\";s:9:\"Configure\";s:4:\"sort\";s:2:\"50\";s:11:\"last_update\";s:10:\"2023-01-09\";s:6:\"global\";b:0;s:7:\"premium\";s:7:\"premium\";s:4:\"logo\";O:8:\"stdClass\":3:{s:3:\"img\";s:77:\"//updates.themepunch-ext-a.tools/revslider/addons/images/addon_typewriter.jpg\";s:5:\"color\";s:0:\"\";s:4:\"text\";s:2:\"TW\";}}s:25:\"revslider-mousetrap-addon\";O:8:\"stdClass\":16:{s:2:\"id\";s:3:\"499\";s:9:\"releaseid\";s:2:\"24\";s:4:\"slug\";s:25:\"revslider-mousetrap-addon\";s:12:\"version_from\";s:5:\"6.6.0\";s:10:\"version_to\";s:5:\"9.9.9\";s:5:\"title\";s:9:\"Mousetrap\";s:6:\"line_1\";s:31:\"Create all kinds of interesting\";s:6:\"line_2\";s:19:\" mouse interactions\";s:9:\"available\";s:5:\"3.0.9\";s:10:\"background\";s:0:\"\";s:6:\"button\";s:6:\"How To\";s:4:\"sort\";s:2:\"60\";s:11:\"last_update\";s:10:\"2023-06-26\";s:6:\"global\";b:0;s:7:\"premium\";s:7:\"premium\";s:4:\"logo\";O:8:\"stdClass\":3:{s:3:\"img\";s:76:\"//updates.themepunch-ext-a.tools/revslider/addons/images/addon_mousetrap.jpg\";s:5:\"color\";s:0:\"\";s:4:\"text\";s:2:\"MT\";}}s:28:\"revslider-liquideffect-addon\";O:8:\"stdClass\":16:{s:2:\"id\";s:3:\"500\";s:9:\"releaseid\";s:2:\"21\";s:4:\"slug\";s:28:\"revslider-liquideffect-addon\";s:12:\"version_from\";s:5:\"6.6.0\";s:10:\"version_to\";s:5:\"9.9.9\";s:5:\"title\";s:10:\"Distortion\";s:6:\"line_1\";s:22:\"Add Distortion Effects\";s:6:\"line_2\";s:30:\"to your slides and transitions\";s:9:\"available\";s:5:\"3.0.5\";s:10:\"background\";s:0:\"\";s:6:\"button\";s:6:\"How To\";s:4:\"sort\";s:2:\"70\";s:11:\"last_update\";s:10:\"2023-01-09\";s:6:\"global\";b:0;s:7:\"premium\";s:7:\"premium\";s:4:\"logo\";O:8:\"stdClass\":3:{s:3:\"img\";s:77:\"//updates.themepunch-ext-a.tools/revslider/addons/images/addon_distortion.jpg\";s:5:\"color\";s:0:\"\";s:4:\"text\";s:2:\"LE\";}}s:22:\"revslider-lottie-addon\";O:8:\"stdClass\":16:{s:2:\"id\";s:3:\"420\";s:9:\"releaseid\";s:2:\"25\";s:4:\"slug\";s:22:\"revslider-lottie-addon\";s:12:\"version_from\";s:5:\"6.5.1\";s:10:\"version_to\";s:5:\"9.9.9\";s:5:\"title\";s:6:\"Lottie\";s:6:\"line_1\";s:53:\"Adds support for the popular Lottie Animation format,\";s:6:\"line_2\";s:70:\" including animation control, style customization and a local library.\";s:9:\"available\";s:5:\"3.1.2\";s:10:\"background\";s:0:\"\";s:6:\"button\";s:6:\"How To\";s:4:\"sort\";s:2:\"80\";s:11:\"last_update\";s:10:\"2023-06-26\";s:6:\"global\";b:0;s:7:\"premium\";s:7:\"premium\";s:4:\"logo\";O:8:\"stdClass\":3:{s:3:\"img\";s:73:\"//updates.themepunch-ext-a.tools/revslider/addons/images/addon_lottie.jpg\";s:5:\"color\";s:0:\"\";s:4:\"text\";s:2:\"LT\";}}s:26:\"revslider-paintbrush-addon\";O:8:\"stdClass\":16:{s:2:\"id\";s:3:\"411\";s:9:\"releaseid\";s:2:\"23\";s:4:\"slug\";s:26:\"revslider-paintbrush-addon\";s:12:\"version_from\";s:5:\"6.5.1\";s:10:\"version_to\";s:5:\"9.9.9\";s:5:\"title\";s:10:\"Paintbrush\";s:6:\"line_1\";s:14:\"Paint or Erase\";s:6:\"line_2\";s:22:\"your background images\";s:9:\"available\";s:5:\"3.0.4\";s:10:\"background\";s:0:\"\";s:6:\"button\";s:6:\"How To\";s:4:\"sort\";s:2:\"90\";s:11:\"last_update\";s:10:\"2023-08-09\";s:6:\"global\";b:0;s:7:\"premium\";s:7:\"premium\";s:4:\"logo\";O:8:\"stdClass\":3:{s:3:\"img\";s:77:\"//updates.themepunch-ext-a.tools/revslider/addons/images/addon_paintbrush.jpg\";s:5:\"color\";s:0:\"\";s:4:\"text\";s:2:\"PB\";}}s:22:\"revslider-charts-addon\";O:8:\"stdClass\":16:{s:2:\"id\";s:3:\"483\";s:9:\"releaseid\";s:2:\"27\";s:4:\"slug\";s:22:\"revslider-charts-addon\";s:12:\"version_from\";s:6:\"6.5.17\";s:10:\"version_to\";s:5:\"9.9.9\";s:5:\"title\";s:6:\"Charts\";s:6:\"line_1\";s:93:\"The Charts addon allows you to create visually impressive line or bar graphs from .csv data, \";s:6:\"line_2\";s:56:\"with tons of options to take full control of the design.\";s:9:\"available\";s:5:\"3.0.5\";s:10:\"background\";s:73:\"//updates.themepunch-ext-a.tools/revslider/addons/images/addon_charts.png\";s:6:\"button\";s:0:\"\";s:4:\"sort\";s:3:\"100\";s:11:\"last_update\";s:10:\"2022-08-04\";s:6:\"global\";b:0;s:7:\"premium\";s:7:\"premium\";s:4:\"logo\";O:8:\"stdClass\":3:{s:3:\"img\";s:73:\"//updates.themepunch-ext-a.tools/revslider/addons/images/addon_charts.jpg\";s:5:\"color\";s:0:\"\";s:4:\"text\";s:2:\"CH\";}}s:22:\"revslider-slicey-addon\";O:8:\"stdClass\":16:{s:2:\"id\";s:3:\"417\";s:9:\"releaseid\";s:2:\"13\";s:4:\"slug\";s:22:\"revslider-slicey-addon\";s:12:\"version_from\";s:5:\"6.5.1\";s:10:\"version_to\";s:5:\"9.9.9\";s:5:\"title\";s:6:\"Slicey\";s:6:\"line_1\";s:20:\"Slice \'em up nicely!\";s:6:\"line_2\";s:38:\"Create image slices of your background\";s:9:\"available\";s:5:\"3.0.4\";s:10:\"background\";s:0:\"\";s:6:\"button\";s:6:\"How To\";s:4:\"sort\";s:3:\"110\";s:11:\"last_update\";s:10:\"2023-01-09\";s:6:\"global\";b:0;s:7:\"premium\";s:7:\"premium\";s:4:\"logo\";O:8:\"stdClass\":3:{s:3:\"img\";s:73:\"//updates.themepunch-ext-a.tools/revslider/addons/images/addon_slicey.jpg\";s:5:\"color\";s:0:\"\";s:4:\"text\";s:2:\"SL\";}}s:25:\"revslider-filmstrip-addon\";O:8:\"stdClass\":16:{s:2:\"id\";s:3:\"422\";s:9:\"releaseid\";s:2:\"10\";s:4:\"slug\";s:25:\"revslider-filmstrip-addon\";s:12:\"version_from\";s:5:\"6.5.6\";s:10:\"version_to\";s:5:\"9.9.9\";s:5:\"title\";s:9:\"Filmstrip\";s:6:\"line_1\";s:44:\"Display a continously rotating set of images\";s:6:\"line_2\";s:26:\"for your slide backgrounds\";s:9:\"available\";s:5:\"3.0.6\";s:10:\"background\";s:0:\"\";s:6:\"button\";s:6:\"How To\";s:4:\"sort\";s:3:\"125\";s:11:\"last_update\";s:10:\"2023-01-09\";s:6:\"global\";b:0;s:7:\"premium\";s:7:\"premium\";s:4:\"logo\";O:8:\"stdClass\":3:{s:3:\"img\";s:76:\"//updates.themepunch-ext-a.tools/revslider/addons/images/addon_filmstrip.jpg\";s:5:\"color\";s:0:\"\";s:4:\"text\";s:2:\"FS\";}}s:27:\"revslider-maintenance-addon\";O:8:\"stdClass\":16:{s:2:\"id\";s:3:\"421\";s:9:\"releaseid\";s:1:\"4\";s:4:\"slug\";s:27:\"revslider-maintenance-addon\";s:12:\"version_from\";s:5:\"6.5.0\";s:10:\"version_to\";s:5:\"9.9.9\";s:5:\"title\";s:15:\"Coming & Maint.\";s:6:\"line_1\";s:37:\"Simple Coming Soon & Maintenance Page\";s:6:\"line_2\";s:42:\"Let your visitors know what\'s up and when!\";s:9:\"available\";s:5:\"3.0.0\";s:10:\"background\";s:0:\"\";s:6:\"button\";s:9:\"Configure\";s:4:\"sort\";s:3:\"127\";s:11:\"last_update\";s:10:\"2023-07-17\";s:6:\"global\";b:1;s:7:\"premium\";s:7:\"premium\";s:4:\"logo\";O:8:\"stdClass\":3:{s:3:\"img\";s:84:\"//updates.themepunch-ext-a.tools/revslider/addons/images/addon_underconstruction.jpg\";s:5:\"color\";s:0:\"\";s:4:\"text\";s:2:\"MT\";}}s:24:\"revslider-revealer-addon\";O:8:\"stdClass\":16:{s:2:\"id\";s:3:\"416\";s:9:\"releaseid\";s:2:\"19\";s:4:\"slug\";s:24:\"revslider-revealer-addon\";s:12:\"version_from\";s:5:\"6.5.1\";s:10:\"version_to\";s:5:\"9.9.9\";s:5:\"title\";s:6:\"Reveal\";s:6:\"line_1\";s:9:\"Reveal...\";s:6:\"line_2\";s:37:\"...your inner beast... and RevSliders\";s:9:\"available\";s:5:\"3.0.3\";s:10:\"background\";s:0:\"\";s:6:\"button\";s:6:\"How To\";s:4:\"sort\";s:3:\"130\";s:11:\"last_update\";s:10:\"2023-01-09\";s:6:\"global\";b:0;s:7:\"premium\";s:7:\"premium\";s:4:\"logo\";O:8:\"stdClass\":3:{s:3:\"img\";s:73:\"//updates.themepunch-ext-a.tools/revslider/addons/images/addon_reveal.jpg\";s:5:\"color\";s:0:\"\";s:4:\"text\";s:2:\"RV\";}}s:24:\"revslider-panorama-addon\";O:8:\"stdClass\":16:{s:2:\"id\";s:3:\"423\";s:9:\"releaseid\";s:2:\"17\";s:4:\"slug\";s:24:\"revslider-panorama-addon\";s:12:\"version_from\";s:5:\"6.5.6\";s:10:\"version_to\";s:5:\"9.9.9\";s:5:\"title\";s:8:\"Panorama\";s:6:\"line_1\";s:14:\"Panorama AddOn\";s:6:\"line_2\";s:28:\"Display images in 360 degree\";s:9:\"available\";s:5:\"3.0.9\";s:10:\"background\";s:0:\"\";s:6:\"button\";s:6:\"How To\";s:4:\"sort\";s:3:\"135\";s:11:\"last_update\";s:10:\"2023-01-09\";s:6:\"global\";b:0;s:7:\"premium\";s:7:\"premium\";s:4:\"logo\";O:8:\"stdClass\":3:{s:3:\"img\";s:75:\"//updates.themepunch-ext-a.tools/revslider/addons/images/addon_panorama.jpg\";s:5:\"color\";s:0:\"\";s:4:\"text\";s:2:\"PN\";}}s:27:\"revslider-scrollvideo-addon\";O:8:\"stdClass\":16:{s:2:\"id\";s:3:\"498\";s:9:\"releaseid\";s:2:\"26\";s:4:\"slug\";s:27:\"revslider-scrollvideo-addon\";s:12:\"version_from\";s:5:\"6.6.0\";s:10:\"version_to\";s:5:\"9.9.9\";s:5:\"title\";s:12:\"Scroll Video\";s:6:\"line_1\";s:114:\"This addon allows you to generate a sequence of images from any html5 video and play them with scroll interaction.\";s:6:\"line_2\";s:49:\"Quality options are included for optimal results!\";s:9:\"available\";s:5:\"3.0.4\";s:10:\"background\";s:78:\"//updates.themepunch-ext-a.tools/revslider/addons/images/addon_scrollvideo.jpg\";s:6:\"button\";s:6:\"How To\";s:4:\"sort\";s:3:\"140\";s:11:\"last_update\";s:10:\"2023-01-09\";s:6:\"global\";b:0;s:7:\"premium\";s:7:\"premium\";s:4:\"logo\";O:8:\"stdClass\":3:{s:3:\"img\";s:78:\"//updates.themepunch-ext-a.tools/revslider/addons/images/addon_scrollvideo.jpg\";s:5:\"color\";s:0:\"\";s:4:\"text\";s:2:\"SV\";}}s:31:\"revslider-explodinglayers-addon\";O:8:\"stdClass\":16:{s:2:\"id\";s:3:\"407\";s:9:\"releaseid\";s:2:\"22\";s:4:\"slug\";s:31:\"revslider-explodinglayers-addon\";s:12:\"version_from\";s:5:\"6.5.1\";s:10:\"version_to\";s:5:\"9.9.9\";s:5:\"title\";s:16:\"Exploding Layers\";s:6:\"line_1\";s:23:\"Add explosive particles\";s:6:\"line_2\";s:24:\"to your layers animation\";s:9:\"available\";s:5:\"3.0.5\";s:10:\"background\";s:0:\"\";s:6:\"button\";s:6:\"How To\";s:4:\"sort\";s:3:\"150\";s:11:\"last_update\";s:10:\"2023-01-09\";s:6:\"global\";b:0;s:7:\"premium\";s:7:\"premium\";s:4:\"logo\";O:8:\"stdClass\":3:{s:3:\"img\";s:76:\"//updates.themepunch-ext-a.tools/revslider/addons/images/addon_exploding.jpg\";s:5:\"color\";s:0:\"\";s:4:\"text\";s:2:\"EL\";}}s:23:\"revslider-sharing-addon\";O:8:\"stdClass\":16:{s:2:\"id\";s:3:\"397\";s:9:\"releaseid\";s:1:\"5\";s:4:\"slug\";s:23:\"revslider-sharing-addon\";s:12:\"version_from\";s:5:\"6.5.0\";s:10:\"version_to\";s:5:\"9.9.9\";s:5:\"title\";s:14:\"Social Sharing\";s:6:\"line_1\";s:17:\"Share your slides\";s:6:\"line_2\";s:50:\"with RevSlider \"actions\" because sharing is caring\";s:9:\"available\";s:5:\"3.0.1\";s:10:\"background\";s:0:\"\";s:6:\"button\";s:11:\"How to use?\";s:4:\"sort\";s:3:\"165\";s:11:\"last_update\";s:10:\"2023-07-08\";s:6:\"global\";b:1;s:7:\"premium\";s:7:\"premium\";s:4:\"logo\";O:8:\"stdClass\":3:{s:3:\"img\";s:80:\"//updates.themepunch-ext-a.tools/revslider/addons/images/addon_socialsharing.jpg\";s:5:\"color\";s:0:\"\";s:4:\"text\";s:2:\"SH\";}}s:26:\"revslider-whiteboard-addon\";O:8:\"stdClass\":16:{s:2:\"id\";s:3:\"419\";s:9:\"releaseid\";s:1:\"1\";s:4:\"slug\";s:26:\"revslider-whiteboard-addon\";s:12:\"version_from\";s:5:\"6.5.1\";s:10:\"version_to\";s:5:\"9.9.9\";s:5:\"title\";s:10:\"Whiteboard\";s:6:\"line_1\";s:31:\"Create Hand-Drawn Presentations\";s:6:\"line_2\";s:45:\"that are understandable, memorable & engaging\";s:9:\"available\";s:5:\"3.0.5\";s:10:\"background\";s:81:\"//updates.themepunch-ext-a.tools/revslider/addons/images/whiteboard_widget_bg.jpg\";s:6:\"button\";s:11:\"How to use?\";s:4:\"sort\";s:3:\"170\";s:11:\"last_update\";s:10:\"2023-01-09\";s:6:\"global\";b:0;s:7:\"premium\";s:7:\"premium\";s:4:\"logo\";O:8:\"stdClass\":3:{s:3:\"img\";s:77:\"//updates.themepunch-ext-a.tools/revslider/addons/images/addon_whiteboard.jpg\";s:5:\"color\";s:0:\"\";s:4:\"text\";s:2:\"WB\";}}s:24:\"revslider-polyfold-addon\";O:8:\"stdClass\":16:{s:2:\"id\";s:3:\"414\";s:9:\"releaseid\";s:2:\"14\";s:4:\"slug\";s:24:\"revslider-polyfold-addon\";s:12:\"version_from\";s:5:\"6.5.1\";s:10:\"version_to\";s:5:\"9.9.9\";s:5:\"title\";s:22:\"Polyfold Scroll Effect\";s:6:\"line_1\";s:32:\"Add sharp edges to your sliders \";s:6:\"line_2\";s:35:\"as they scroll into and out of view\";s:9:\"available\";s:5:\"3.0.6\";s:10:\"background\";s:0:\"\";s:6:\"button\";s:11:\"How to use?\";s:4:\"sort\";s:3:\"180\";s:11:\"last_update\";s:10:\"2023-01-09\";s:6:\"global\";b:0;s:7:\"premium\";s:7:\"premium\";s:4:\"logo\";O:8:\"stdClass\":3:{s:3:\"img\";s:75:\"//updates.themepunch-ext-a.tools/revslider/addons/images/addon_polyfold.jpg\";s:5:\"color\";s:7:\"#3e186f\";s:4:\"text\";s:2:\"PF\";}}s:29:\"revslider-domain-switch-addon\";O:8:\"stdClass\":16:{s:2:\"id\";s:2:\"78\";s:9:\"releaseid\";s:2:\"11\";s:4:\"slug\";s:29:\"revslider-domain-switch-addon\";s:12:\"version_from\";s:5:\"6.0.0\";s:10:\"version_to\";s:5:\"9.9.9\";s:5:\"title\";s:13:\"Domain Switch\";s:6:\"line_1\";s:17:\"Switch Image URLs\";s:6:\"line_2\";s:37:\"in sliders from one domain to another\";s:9:\"available\";s:5:\"1.0.1\";s:10:\"background\";s:0:\"\";s:6:\"button\";s:11:\"How to use?\";s:4:\"sort\";s:3:\"300\";s:11:\"last_update\";s:10:\"2022-02-19\";s:6:\"global\";b:0;s:7:\"premium\";s:7:\"premium\";s:4:\"logo\";O:8:\"stdClass\":3:{s:3:\"img\";s:79:\"//updates.themepunch-ext-a.tools/revslider/addons/images/addon_domainswitch.jpg\";s:5:\"color\";s:0:\"\";s:4:\"text\";s:2:\"DS\";}}s:23:\"revslider-refresh-addon\";O:8:\"stdClass\":16:{s:2:\"id\";s:3:\"415\";s:9:\"releaseid\";s:2:\"10\";s:4:\"slug\";s:23:\"revslider-refresh-addon\";s:12:\"version_from\";s:5:\"6.5.1\";s:10:\"version_to\";s:5:\"9.9.9\";s:5:\"title\";s:8:\"(Re)Load\";s:6:\"line_1\";s:39:\"Reload the current page or a custom URL\";s:6:\"line_2\";s:34:\"after a certain time, loops, slide\";s:9:\"available\";s:5:\"3.0.4\";s:10:\"background\";s:0:\"\";s:6:\"button\";s:6:\"How To\";s:4:\"sort\";s:3:\"330\";s:11:\"last_update\";s:10:\"2023-01-09\";s:6:\"global\";b:0;s:7:\"premium\";s:7:\"premium\";s:4:\"logo\";O:8:\"stdClass\":3:{s:3:\"img\";s:73:\"//updates.themepunch-ext-a.tools/revslider/addons/images/addon_reload.jpg\";s:5:\"color\";s:0:\"\";s:4:\"text\";s:2:\"RF\";}}s:25:\"revslider-rel-posts-addon\";O:8:\"stdClass\":16:{s:2:\"id\";s:2:\"55\";s:9:\"releaseid\";s:1:\"9\";s:4:\"slug\";s:25:\"revslider-rel-posts-addon\";s:12:\"version_from\";s:7:\"5.2.4.1\";s:10:\"version_to\";s:5:\"9.9.9\";s:5:\"title\";s:13:\"Related Posts\";s:6:\"line_1\";s:25:\"Add related Posts Sliders\";s:6:\"line_2\";s:31:\"at the end of your post content\";s:9:\"available\";s:5:\"2.0.2\";s:10:\"background\";s:0:\"\";s:6:\"button\";s:9:\"Configure\";s:4:\"sort\";s:3:\"340\";s:11:\"last_update\";s:10:\"2023-06-12\";s:6:\"global\";b:1;s:7:\"premium\";s:7:\"premium\";s:4:\"logo\";O:8:\"stdClass\":3:{s:3:\"img\";s:76:\"//updates.themepunch-ext-a.tools/revslider/addons/images/addon_wprelated.jpg\";s:5:\"color\";s:0:\"\";s:4:\"text\";s:2:\"RP\";}}s:20:\"revslider-snow-addon\";O:8:\"stdClass\":16:{s:2:\"id\";s:3:\"399\";s:9:\"releaseid\";s:1:\"6\";s:4:\"slug\";s:20:\"revslider-snow-addon\";s:12:\"version_from\";s:5:\"6.5.1\";s:10:\"version_to\";s:5:\"9.9.9\";s:5:\"title\";s:12:\"Holiday Snow\";s:6:\"line_1\";s:12:\"Let it snow!\";s:6:\"line_2\";s:32:\"Add animated snow to any Slider \";s:9:\"available\";s:5:\"3.0.5\";s:10:\"background\";s:0:\"\";s:6:\"button\";s:11:\"How to use?\";s:4:\"sort\";s:3:\"380\";s:11:\"last_update\";s:10:\"2023-01-09\";s:6:\"global\";b:0;s:7:\"premium\";s:7:\"premium\";s:4:\"logo\";O:8:\"stdClass\":3:{s:3:\"img\";s:71:\"//updates.themepunch-ext-a.tools/revslider/addons/images/addon_snow.jpg\";s:5:\"color\";s:0:\"\";s:4:\"text\";s:2:\"SN\";}}s:23:\"revslider-gallery-addon\";O:8:\"stdClass\":16:{s:2:\"id\";s:3:\"378\";s:9:\"releaseid\";s:1:\"2\";s:4:\"slug\";s:23:\"revslider-gallery-addon\";s:12:\"version_from\";s:6:\"6.4.11\";s:10:\"version_to\";s:5:\"9.9.9\";s:5:\"title\";s:17:\"WordPress Gallery\";s:6:\"line_1\";s:31:\"Replace the standard WP Gallery\";s:6:\"line_2\";s:31:\"with the Sliders of your choice\";s:9:\"available\";s:5:\"2.0.4\";s:10:\"background\";s:0:\"\";s:6:\"button\";s:9:\"Configure\";s:4:\"sort\";s:3:\"430\";s:11:\"last_update\";s:10:\"2022-01-31\";s:6:\"global\";b:1;s:7:\"premium\";s:7:\"premium\";s:4:\"logo\";O:8:\"stdClass\":3:{s:3:\"img\";s:76:\"//updates.themepunch-ext-a.tools/revslider/addons/images/addon_wpgallery.jpg\";s:5:\"color\";s:0:\"\";s:4:\"text\";s:2:\"GA\";}}s:22:\"revslider-backup-addon\";O:8:\"stdClass\":16:{s:2:\"id\";s:2:\"53\";s:9:\"releaseid\";s:1:\"3\";s:4:\"slug\";s:22:\"revslider-backup-addon\";s:12:\"version_from\";s:5:\"5.2.0\";s:10:\"version_to\";s:5:\"9.9.9\";s:5:\"title\";s:6:\"Backup\";s:6:\"line_1\";s:12:\"Make Backups\";s:6:\"line_2\";s:25:\"Revisions for your safety\";s:9:\"available\";s:5:\"2.0.3\";s:10:\"background\";s:0:\"\";s:6:\"button\";s:11:\"How to use?\";s:4:\"sort\";s:3:\"500\";s:11:\"last_update\";s:10:\"2023-05-31\";s:6:\"global\";b:1;s:7:\"premium\";s:7:\"premium\";s:4:\"logo\";O:8:\"stdClass\":3:{s:3:\"img\";s:73:\"//updates.themepunch-ext-a.tools/revslider/addons/images/addon_backup.jpg\";s:5:\"color\";s:0:\"\";s:4:\"text\";s:2:\"BU\";}}s:19:\"revslider-404-addon\";O:8:\"stdClass\":16:{s:2:\"id\";s:2:\"62\";s:9:\"releaseid\";s:1:\"8\";s:4:\"slug\";s:19:\"revslider-404-addon\";s:12:\"version_from\";s:3:\"5.3\";s:10:\"version_to\";s:5:\"9.9.9\";s:5:\"title\";s:3:\"404\";s:6:\"line_1\";s:39:\"Build custom 404 \"Page not Found\" Pages\";s:6:\"line_2\";s:28:\"with Slider Revolution swag!\";s:9:\"available\";s:5:\"2.0.1\";s:10:\"background\";s:0:\"\";s:6:\"button\";s:9:\"Configure\";s:4:\"sort\";s:3:\"620\";s:11:\"last_update\";s:10:\"2022-12-04\";s:6:\"global\";b:1;s:7:\"premium\";s:7:\"premium\";s:4:\"logo\";O:8:\"stdClass\":3:{s:3:\"img\";s:70:\"//updates.themepunch-ext-a.tools/revslider/addons/images/addon_404.jpg\";s:5:\"color\";s:0:\"\";s:4:\"text\";s:3:\"404\";}}s:30:\"revslider-prevnext-posts-addon\";O:8:\"stdClass\":16:{s:2:\"id\";s:2:\"63\";s:9:\"releaseid\";s:1:\"9\";s:4:\"slug\";s:30:\"revslider-prevnext-posts-addon\";s:12:\"version_from\";s:3:\"5.4\";s:10:\"version_to\";s:5:\"9.9.9\";s:5:\"title\";s:14:\"Adjacent Posts\";s:6:\"line_1\";s:30:\"Display previous and next post\";s:6:\"line_2\";s:28:\"to the currently showing one\";s:9:\"available\";s:5:\"2.0.2\";s:10:\"background\";s:0:\"\";s:6:\"button\";s:9:\"Configure\";s:4:\"sort\";s:3:\"630\";s:11:\"last_update\";s:10:\"2023-08-04\";s:6:\"global\";b:1;s:7:\"premium\";s:7:\"premium\";s:4:\"logo\";O:8:\"stdClass\":3:{s:3:\"img\";s:77:\"//updates.themepunch-ext-a.tools/revslider/addons/images/addon_wpadjacent.jpg\";s:5:\"color\";s:0:\"\";s:4:\"text\";s:2:\"PN\";}}s:21:\"revslider-login-addon\";O:8:\"stdClass\":16:{s:2:\"id\";s:3:\"388\";s:9:\"releaseid\";s:2:\"11\";s:4:\"slug\";s:21:\"revslider-login-addon\";s:12:\"version_from\";s:5:\"6.5.0\";s:10:\"version_to\";s:5:\"9.9.9\";s:5:\"title\";s:10:\"Login Page\";s:6:\"line_1\";s:25:\"Very simple WP Login Page\";s:6:\"line_2\";s:34:\"enhanced with your favorite slider\";s:9:\"available\";s:5:\"3.0.1\";s:10:\"background\";s:0:\"\";s:6:\"button\";s:9:\"Configure\";s:4:\"sort\";s:3:\"650\";s:11:\"last_update\";s:10:\"2023-06-12\";s:6:\"global\";b:1;s:7:\"premium\";s:7:\"premium\";s:4:\"logo\";O:8:\"stdClass\":3:{s:3:\"img\";s:72:\"//updates.themepunch-ext-a.tools/revslider/addons/images/addon_login.jpg\";s:5:\"color\";s:0:\"\";s:4:\"text\";s:2:\"LI\";}}s:24:\"revslider-featured-addon\";O:8:\"stdClass\":16:{s:2:\"id\";s:3:\"379\";s:9:\"releaseid\";s:2:\"12\";s:4:\"slug\";s:24:\"revslider-featured-addon\";s:12:\"version_from\";s:6:\"6.4.11\";s:10:\"version_to\";s:5:\"9.9.9\";s:5:\"title\";s:20:\"Post Featured Slider\";s:6:\"line_1\";s:25:\"Display a featured Slider\";s:6:\"line_2\";s:41:\"instead of a featured Image in your Posts\";s:9:\"available\";s:5:\"2.0.4\";s:10:\"background\";s:0:\"\";s:6:\"button\";s:9:\"Configure\";s:4:\"sort\";s:3:\"660\";s:11:\"last_update\";s:10:\"2023-05-31\";s:6:\"global\";b:1;s:7:\"premium\";s:7:\"premium\";s:4:\"logo\";O:8:\"stdClass\":3:{s:3:\"img\";s:77:\"//updates.themepunch-ext-a.tools/revslider/addons/images/addon_wpfeatured.jpg\";s:5:\"color\";s:0:\"\";s:4:\"text\";s:2:\"FT\";}}s:23:\"revslider-weather-addon\";O:8:\"stdClass\":16:{s:2:\"id\";s:3:\"402\";s:9:\"releaseid\";s:2:\"16\";s:4:\"slug\";s:23:\"revslider-weather-addon\";s:12:\"version_from\";s:5:\"6.5.0\";s:10:\"version_to\";s:5:\"9.9.9\";s:5:\"title\";s:7:\"Weather\";s:6:\"line_1\";s:21:\"Every where you go...\";s:6:\"line_2\";s:36:\"...always take the weather with you!\";s:9:\"available\";s:5:\"3.0.1\";s:10:\"background\";s:0:\"\";s:6:\"button\";s:9:\"Configure\";s:4:\"sort\";s:3:\"690\";s:11:\"last_update\";s:10:\"2023-05-31\";s:6:\"global\";b:0;s:7:\"premium\";s:7:\"premium\";s:4:\"logo\";O:8:\"stdClass\":3:{s:3:\"img\";s:74:\"//updates.themepunch-ext-a.tools/revslider/addons/images/addon_weather.jpg\";s:5:\"color\";s:0:\"\";s:4:\"text\";s:2:\"WT\";}}s:30:\"revslider-duotonefilters-addon\";O:8:\"stdClass\":16:{s:2:\"id\";s:3:\"406\";s:9:\"releaseid\";s:2:\"18\";s:4:\"slug\";s:30:\"revslider-duotonefilters-addon\";s:12:\"version_from\";s:5:\"6.5.1\";s:10:\"version_to\";s:5:\"9.9.9\";s:5:\"title\";s:7:\"Duotone\";s:6:\"line_1\";s:7:\"Duotone\";s:6:\"line_2\";s:25:\"Because one is not enough\";s:9:\"available\";s:5:\"3.0.5\";s:10:\"background\";s:0:\"\";s:6:\"button\";s:6:\"How To\";s:4:\"sort\";s:3:\"710\";s:11:\"last_update\";s:10:\"2023-01-09\";s:6:\"global\";b:0;s:7:\"premium\";s:7:\"premium\";s:4:\"logo\";O:8:\"stdClass\":3:{s:3:\"img\";s:74:\"//updates.themepunch-ext-a.tools/revslider/addons/images/addon_duotone.jpg\";s:5:\"color\";s:0:\"\";s:4:\"text\";s:3:\"DTF\";}}}','yes'),(382,'_transient_health-check-site-status-result','{\"good\":17,\"recommended\":6,\"critical\":2}','yes'),(688,'jetpack_available_modules','a:1:{s:4:\"12.4\";a:47:{s:10:\"action-bar\";s:4:\"11.4\";s:5:\"blaze\";s:4:\"12.3\";s:8:\"carousel\";s:3:\"1.5\";s:13:\"comment-likes\";s:3:\"5.1\";s:8:\"comments\";s:3:\"1.4\";s:12:\"contact-form\";s:3:\"1.3\";s:9:\"copy-post\";s:3:\"7.0\";s:20:\"custom-content-types\";s:3:\"3.1\";s:10:\"custom-css\";s:3:\"1.7\";s:21:\"enhanced-distribution\";s:3:\"1.2\";s:16:\"google-analytics\";s:3:\"4.5\";s:12:\"google-fonts\";s:6:\"10.8.0\";s:19:\"gravatar-hovercards\";s:3:\"1.1\";s:15:\"infinite-scroll\";s:3:\"2.0\";s:8:\"json-api\";s:3:\"1.9\";s:5:\"latex\";s:3:\"1.1\";s:11:\"lazy-images\";s:5:\"5.6.0\";s:5:\"likes\";s:3:\"2.2\";s:8:\"markdown\";s:3:\"2.8\";s:9:\"masterbar\";s:3:\"4.8\";s:7:\"monitor\";s:3:\"2.6\";s:5:\"notes\";s:3:\"1.9\";s:10:\"photon-cdn\";s:3:\"6.6\";s:6:\"photon\";s:3:\"2.0\";s:13:\"post-by-email\";s:3:\"2.0\";s:9:\"post-list\";s:4:\"11.3\";s:7:\"protect\";s:3:\"3.4\";s:9:\"publicize\";s:3:\"2.0\";s:13:\"related-posts\";s:3:\"2.9\";s:6:\"search\";s:3:\"5.0\";s:9:\"seo-tools\";s:3:\"4.4\";s:10:\"sharedaddy\";s:3:\"1.1\";s:10:\"shortcodes\";s:3:\"1.1\";s:10:\"shortlinks\";s:3:\"1.1\";s:8:\"sitemaps\";s:3:\"3.9\";s:3:\"sso\";s:3:\"2.6\";s:5:\"stats\";s:3:\"1.1\";s:13:\"subscriptions\";s:3:\"1.2\";s:13:\"tiled-gallery\";s:3:\"2.1\";s:10:\"vaultpress\";s:5:\"0:1.2\";s:18:\"verification-tools\";s:3:\"3.0\";s:10:\"videopress\";s:3:\"2.5\";s:3:\"waf\";s:4:\"10.9\";s:17:\"widget-visibility\";s:3:\"2.4\";s:7:\"widgets\";s:3:\"1.2\";s:21:\"woocommerce-analytics\";s:3:\"8.4\";s:7:\"wordads\";s:5:\"4.5.0\";}}','yes'),(67427,'_transient_timeout_wc_tracks_blog_details','1695877083','no'),(67428,'_transient_wc_tracks_blog_details','a:5:{s:3:\"url\";s:32:\"https://farmchemie.yasithawd.com\";s:9:\"blog_lang\";s:5:\"en_US\";s:7:\"blog_id\";b:0;s:14:\"products_count\";s:3:\"110\";s:10:\"wc_version\";s:5:\"8.0.2\";}','no'),(46028,'_transient_timeout_woocommerce_admin_remote_inbox_notifications_specs','1696334631','no'),(46029,'_transient_woocommerce_admin_remote_inbox_notifications_specs','a:1:{s:5:\"en_US\";a:60:{s:21:\"wayflyer_bnpl_q4_2021\";O:8:\"stdClass\":8:{s:4:\"slug\";s:21:\"wayflyer_bnpl_q4_2021\";s:4:\"type\";s:9:\"marketing\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:48:\"Grow your business with funding through Wayflyer\";s:7:\"content\";s:261:\"Fast, flexible financing to boost cash flow and help your business grow – one fee, no interest rates, penalties, equity, or personal guarantees. Based on your store’s performance, Wayflyer provides funding and analytical insights to invest in your business.\";}}s:7:\"actions\";a:1:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:21:\"wayflyer_bnpl_q4_2021\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:21:\"Level up with funding\";}}s:3:\"url\";s:118:\"https://woocommerce.com/products/wayflyer/?utm_source=inbox_note&utm_medium=product&utm_campaign=wayflyer_bnpl_q4_2021\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:1;s:6:\"status\";s:8:\"actioned\";}}s:5:\"rules\";a:4:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:18:\"publish_after_time\";s:13:\"publish_after\";s:19:\"2021-11-17 00:00:00\";}i:1;O:8:\"stdClass\":2:{s:4:\"type\";s:19:\"publish_before_time\";s:14:\"publish_before\";s:19:\"2021-12-18 00:00:00\";}i:2;O:8:\"stdClass\":2:{s:4:\"type\";s:2:\"or\";s:8:\"operands\";a:7:{i:0;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:9:\"operation\";s:1:\"=\";s:5:\"value\";s:2:\"AU\";}i:1;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:9:\"operation\";s:1:\"=\";s:5:\"value\";s:2:\"BE\";}i:2;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:9:\"operation\";s:1:\"=\";s:5:\"value\";s:2:\"CA\";}i:3;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:9:\"operation\";s:1:\"=\";s:5:\"value\";s:2:\"IE\";}i:4;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:9:\"operation\";s:1:\"=\";s:5:\"value\";s:2:\"NL\";}i:5;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:9:\"operation\";s:1:\"=\";s:5:\"value\";s:2:\"GB\";}i:6;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:9:\"operation\";s:1:\"=\";s:5:\"value\";s:2:\"US\";}}}i:3;O:8:\"stdClass\":2:{s:4:\"type\";s:2:\"or\";s:8:\"operands\";a:3:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:17:\"plugins_activated\";s:7:\"plugins\";a:1:{i:0;s:26:\"woocommerce-gateway-affirm\";}}i:1;O:8:\"stdClass\":2:{s:4:\"type\";s:17:\"plugins_activated\";s:7:\"plugins\";a:1:{i:0;s:32:\"afterpay-gateway-for-woocommerce\";}}i:2;O:8:\"stdClass\":2:{s:4:\"type\";s:17:\"plugins_activated\";s:7:\"plugins\";a:1:{i:0;s:31:\"klarna-payments-for-woocommerce\";}}}}}}s:35:\"wc_shipping_mobile_app_usps_q4_2021\";O:8:\"stdClass\":8:{s:4:\"slug\";s:35:\"wc_shipping_mobile_app_usps_q4_2021\";s:4:\"type\";s:9:\"marketing\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:94:\"Print and manage your shipping labels with WooCommerce Shipping and the WooCommerce Mobile App\";s:7:\"content\";s:210:\"Save time by printing, purchasing, refunding, and tracking shipping labels generated by <a href=\"https://woocommerce.com/woocommerce-shipping/\">WooCommerce Shipping</a> – all directly from your mobile device!\";}}s:7:\"actions\";a:1:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:35:\"wc_shipping_mobile_app_usps_q4_2021\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:24:\"Get WooCommerce Shipping\";}}s:3:\"url\";s:135:\"https://woocommerce.com/woocommerce-shipping/?utm_source=inbox_note&utm_medium=product&utm_campaign=wc_shipping_mobile_app_usps_q4_2021\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:1;s:6:\"status\";s:8:\"actioned\";}}s:5:\"rules\";a:5:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:18:\"publish_after_time\";s:13:\"publish_after\";s:19:\"2021-11-12 00:00:00\";}i:1;O:8:\"stdClass\":2:{s:4:\"type\";s:19:\"publish_before_time\";s:14:\"publish_before\";s:19:\"2021-11-27 00:00:00\";}i:2;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:9:\"operation\";s:1:\"=\";s:5:\"value\";s:2:\"US\";}i:3;O:8:\"stdClass\":2:{s:4:\"type\";s:17:\"plugins_activated\";s:7:\"plugins\";a:1:{i:0;s:25:\"woocommerce-shipping-usps\";}}i:4;O:8:\"stdClass\":2:{s:4:\"type\";s:3:\"not\";s:7:\"operand\";a:1:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:17:\"plugins_activated\";s:7:\"plugins\";a:1:{i:0;s:20:\"woocommerce-services\";}}}}}}s:20:\"woocommerce-services\";O:8:\"stdClass\":8:{s:4:\"slug\";s:20:\"woocommerce-services\";s:4:\"type\";s:4:\"info\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:26:\"WooCommerce Shipping & Tax\";s:7:\"content\";s:251:\"WooCommerce Shipping & Tax helps get your store \"ready to sell\" as quickly as possible. You create your products. We take care of tax calculation, payment processing, and shipping label printing! Learn more about the extension that you just installed.\";}}s:7:\"actions\";a:1:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:10:\"learn-more\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:10:\"Learn more\";}}s:3:\"url\";s:84:\"https://docs.woocommerce.com/document/woocommerce-shipping-and-tax/?utm_source=inbox\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:1;s:6:\"status\";s:10:\"unactioned\";}}s:5:\"rules\";a:3:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:18:\"publish_after_time\";s:13:\"publish_after\";s:19:\"2022-01-27 20:17:25\";}i:1;O:8:\"stdClass\":2:{s:4:\"type\";s:17:\"plugins_activated\";s:7:\"plugins\";a:1:{i:0;s:20:\"woocommerce-services\";}}i:2;O:8:\"stdClass\":3:{s:4:\"type\";s:18:\"wcadmin_active_for\";s:9:\"operation\";s:1:\"<\";s:4:\"days\";i:2;}}}s:18:\"your-first-product\";O:8:\"stdClass\":8:{s:4:\"slug\";s:18:\"your-first-product\";s:4:\"type\";s:4:\"info\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:18:\"Your first product\";s:7:\"content\";s:467:\"That’s huge! You’re well on your way to building a successful online store — now it’s time to think about how you’ll fulfill your orders.<br/><br/>Read our shipping guide to learn best practices and options for putting together your shipping strategy. And for WooCommerce stores in the United States, you can print discounted shipping labels via USPS with <a href=\"https://href.li/?https://woocommerce.com/shipping\" target=\"_blank\">WooCommerce Shipping</a>.\";}}s:7:\"actions\";a:1:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:10:\"learn-more\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:10:\"Learn more\";}}s:3:\"url\";s:130:\"https://woocommerce.com/posts/ecommerce-shipping-solutions-guide/?utm_source=inbox_note&utm_medium=product&utm_campaign=learn-more\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:1;s:6:\"status\";s:8:\"actioned\";}}s:5:\"rules\";a:5:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:18:\"publish_after_time\";s:13:\"publish_after\";s:19:\"2022-01-27 20:19:13\";}i:1;O:8:\"stdClass\":4:{s:4:\"type\";s:12:\"stored_state\";s:5:\"index\";s:22:\"there_were_no_products\";s:9:\"operation\";s:1:\"=\";s:5:\"value\";b:1;}i:2;O:8:\"stdClass\":4:{s:4:\"type\";s:12:\"stored_state\";s:5:\"index\";s:22:\"there_are_now_products\";s:9:\"operation\";s:1:\"=\";s:5:\"value\";b:1;}i:3;O:8:\"stdClass\":3:{s:4:\"type\";s:13:\"product_count\";s:9:\"operation\";s:2:\">=\";s:5:\"value\";i:1;}i:4;O:8:\"stdClass\":5:{s:4:\"type\";s:18:\"onboarding_profile\";s:5:\"index\";s:13:\"product_types\";s:9:\"operation\";s:8:\"contains\";s:5:\"value\";s:8:\"physical\";s:7:\"default\";a:0:{}}}}s:37:\"wc-admin-optimizing-the-checkout-flow\";O:8:\"stdClass\":8:{s:4:\"slug\";s:37:\"wc-admin-optimizing-the-checkout-flow\";s:4:\"type\";s:4:\"info\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:28:\"Optimizing the checkout flow\";s:7:\"content\";s:177:\"It’s crucial to get your store’s checkout as smooth as possible to avoid losing sales. Let’s take a look at how you can optimize the checkout experience for your shoppers.\";}}s:7:\"actions\";a:1:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:28:\"optimizing-the-checkout-flow\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:10:\"Learn more\";}}s:3:\"url\";s:144:\"https://woocommerce.com/posts/optimizing-woocommerce-checkout?utm_source=inbox_note&utm_medium=product&utm_campaign=optimizing-the-checkout-flow\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:1;s:6:\"status\";s:8:\"actioned\";}}s:5:\"rules\";a:3:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:18:\"publish_after_time\";s:13:\"publish_after\";s:19:\"2022-01-27 20:19:49\";}i:1;O:8:\"stdClass\":3:{s:4:\"type\";s:18:\"wcadmin_active_for\";s:9:\"operation\";s:1:\">\";s:4:\"days\";i:3;}i:2;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:45:\"woocommerce_task_list_tracked_completed_tasks\";s:9:\"operation\";s:8:\"contains\";s:5:\"value\";s:8:\"payments\";s:7:\"default\";a:0:{}}}}s:32:\"wc-payments-qualitative-feedback\";O:8:\"stdClass\":8:{s:4:\"slug\";s:32:\"wc-payments-qualitative-feedback\";s:4:\"type\";s:4:\"info\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:55:\"WooCommerce Payments setup - let us know what you think\";s:7:\"content\";s:146:\"Congrats on enabling WooCommerce Payments for your store. Please share your feedback in this 2 minute survey to help us improve the setup process.\";}}s:7:\"actions\";a:1:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:35:\"qualitative-feedback-from-new-users\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:14:\"Share feedback\";}}s:3:\"url\";s:39:\"https://automattic.survey.fm/wc-pay-new\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:1;s:6:\"status\";s:8:\"actioned\";}}s:5:\"rules\";a:2:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:18:\"publish_after_time\";s:13:\"publish_after\";s:19:\"2022-01-27 20:21:13\";}i:1;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:45:\"woocommerce_task_list_tracked_completed_tasks\";s:9:\"operation\";s:8:\"contains\";s:5:\"value\";s:20:\"woocommerce-payments\";s:7:\"default\";a:0:{}}}}s:29:\"share-your-feedback-on-paypal\";O:8:\"stdClass\":8:{s:4:\"slug\";s:29:\"share-your-feedback-on-paypal\";s:4:\"type\";s:4:\"info\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:29:\"Share your feedback on PayPal\";s:7:\"content\";s:127:\"Share your feedback in this 2 minute survey about how we can make the process of accepting payments more useful for your store.\";}}s:7:\"actions\";a:1:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:14:\"share-feedback\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:14:\"Share feedback\";}}s:3:\"url\";s:43:\"http://automattic.survey.fm/paypal-feedback\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:1;s:6:\"status\";s:10:\"unactioned\";}}s:5:\"rules\";a:3:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:18:\"publish_after_time\";s:13:\"publish_after\";s:19:\"2022-01-27 20:21:50\";}i:1;O:8:\"stdClass\":2:{s:4:\"type\";s:3:\"not\";s:7:\"operand\";a:1:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:17:\"plugins_activated\";s:7:\"plugins\";a:1:{i:0;s:26:\"woocommerce-gateway-stripe\";}}}}i:2;O:8:\"stdClass\":2:{s:4:\"type\";s:17:\"plugins_activated\";s:7:\"plugins\";a:1:{i:0;s:43:\"woocommerce-gateway-paypal-express-checkout\";}}}}s:31:\"google_listings_and_ads_install\";O:8:\"stdClass\":8:{s:4:\"slug\";s:31:\"google_listings_and_ads_install\";s:4:\"type\";s:9:\"marketing\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:35:\"Drive traffic and sales with Google\";s:7:\"content\";s:123:\"Reach online shoppers to drive traffic and sales for your store by showcasing products across Google, for free or with ads.\";}}s:7:\"actions\";a:1:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:11:\"get-started\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:11:\"Get started\";}}s:3:\"url\";s:122:\"https://woocommerce.com/products/google-listings-and-ads?utm_source=inbox_note&utm_medium=product&utm_campaign=get-started\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:1;s:6:\"status\";s:8:\"actioned\";}}s:5:\"rules\";a:3:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:18:\"publish_after_time\";s:13:\"publish_after\";s:19:\"2021-06-09 00:00:00\";}i:1;O:8:\"stdClass\":2:{s:4:\"type\";s:3:\"not\";s:7:\"operand\";a:1:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:17:\"plugins_activated\";s:7:\"plugins\";a:1:{i:0;s:23:\"google_listings_and_ads\";}}}}i:2;O:8:\"stdClass\":3:{s:4:\"type\";s:11:\"order_count\";s:9:\"operation\";s:1:\">\";s:5:\"value\";i:10;}}}s:39:\"wc-subscriptions-security-update-3-0-15\";O:8:\"stdClass\":8:{s:4:\"slug\";s:39:\"wc-subscriptions-security-update-3-0-15\";s:4:\"type\";s:4:\"info\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:42:\"WooCommerce Subscriptions security update!\";s:7:\"content\";s:738:\"We recently released an important security update to WooCommerce Subscriptions. To ensure your site’s data is protected, please upgrade <strong>WooCommerce Subscriptions to version 3.0.15</strong> or later.<br/><br/>Click the button below to view and update to the latest Subscriptions version, or log in to <a href=\"https://woocommerce.com/my-dashboard\">WooCommerce.com Dashboard</a> and navigate to your <strong>Downloads</strong> page.<br/><br/>We recommend always using the latest version of WooCommerce Subscriptions, and other software running on your site, to ensure maximum security.<br/><br/>If you have any questions we are here to help — just <a href=\"https://woocommerce.com/my-account/create-a-ticket/\">open a ticket</a>.\";}}s:7:\"actions\";a:1:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:30:\"update-wc-subscriptions-3-0-15\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:19:\"View latest version\";}}s:3:\"url\";s:30:\"&page=wc-addons&section=helper\";s:18:\"url_is_admin_query\";b:1;s:10:\"is_primary\";b:1;s:6:\"status\";s:8:\"actioned\";}}s:5:\"rules\";a:2:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:18:\"publish_after_time\";s:13:\"publish_after\";s:19:\"2022-01-27 20:30:32\";}i:1;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:25:\"woocommerce-subscriptions\";s:8:\"operator\";s:1:\"<\";s:7:\"version\";s:6:\"3.0.15\";}}}s:29:\"woocommerce-core-update-5-4-0\";O:8:\"stdClass\":8:{s:4:\"slug\";s:29:\"woocommerce-core-update-5-4-0\";s:4:\"type\";s:4:\"info\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:31:\"Update to WooCommerce 5.4.1 now\";s:7:\"content\";s:140:\"WooCommerce 5.4.1 addresses a checkout issue discovered in WooCommerce 5.4. We recommend upgrading to WooCommerce 5.4.1 as soon as possible.\";}}s:7:\"actions\";a:1:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:20:\"update-wc-core-5-4-0\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:25:\"How to update WooCommerce\";}}s:3:\"url\";s:64:\"https://docs.woocommerce.com/document/how-to-update-woocommerce/\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:1;s:6:\"status\";s:8:\"actioned\";}}s:5:\"rules\";a:2:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:18:\"publish_after_time\";s:13:\"publish_after\";s:19:\"2022-01-27 20:31:08\";}i:1;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"5.4.0\";}}}s:19:\"wcpay-promo-2020-11\";O:8:\"stdClass\":8:{s:4:\"slug\";s:19:\"wcpay-promo-2020-11\";s:4:\"type\";s:9:\"marketing\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:19:\"wcpay-promo-2020-11\";s:7:\"content\";s:19:\"wcpay-promo-2020-11\";}}s:7:\"actions\";a:0:{}s:5:\"rules\";a:0:{}}s:19:\"wcpay-promo-2020-12\";O:8:\"stdClass\":8:{s:4:\"slug\";s:19:\"wcpay-promo-2020-12\";s:4:\"type\";s:9:\"marketing\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:19:\"wcpay-promo-2020-12\";s:7:\"content\";s:19:\"wcpay-promo-2020-12\";}}s:7:\"actions\";a:0:{}s:5:\"rules\";a:0:{}}s:34:\"ppxo-pps-upgrade-paypal-payments-1\";O:8:\"stdClass\":8:{s:4:\"slug\";s:34:\"ppxo-pps-upgrade-paypal-payments-1\";s:4:\"type\";s:4:\"info\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:47:\"Get the latest PayPal extension for WooCommerce\";s:7:\"content\";s:442:\"Heads up! There’s a new PayPal on the block!<br/><br/>Now is a great time to upgrade to our latest <a href=\"https://woocommerce.com/products/woocommerce-paypal-payments/\" target=\"_blank\">PayPal extension</a> to continue to receive support and updates with PayPal.<br/><br/>Get access to a full suite of PayPal payment methods, extensive currency and country coverage, and pay later options with the all-new PayPal extension for WooCommerce.\";}}s:7:\"actions\";a:1:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:34:\"ppxo-pps-install-paypal-payments-1\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:18:\"View upgrade guide\";}}s:3:\"url\";s:96:\"https://docs.woocommerce.com/document/woocommerce-paypal-payments/paypal-payments-upgrade-guide/\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:1;s:6:\"status\";s:8:\"actioned\";}}s:5:\"rules\";a:5:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:18:\"publish_after_time\";s:13:\"publish_after\";s:19:\"2022-01-27 20:33:53\";}i:1;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\">=\";s:7:\"version\";s:3:\"5.5\";}i:2;O:8:\"stdClass\":2:{s:4:\"type\";s:3:\"not\";s:7:\"operand\";a:1:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:17:\"plugins_activated\";s:7:\"plugins\";a:1:{i:0;s:27:\"woocommerce-paypal-payments\";}}}}i:3;O:8:\"stdClass\":2:{s:4:\"type\";s:2:\"or\";s:8:\"operands\";a:2:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:17:\"plugins_activated\";s:7:\"plugins\";a:1:{i:0;s:43:\"woocommerce-gateway-paypal-express-checkout\";}}i:1;O:8:\"stdClass\":6:{s:4:\"type\";s:6:\"option\";s:12:\"transformers\";a:1:{i:0;O:8:\"stdClass\":2:{s:3:\"use\";s:12:\"dot_notation\";s:9:\"arguments\";O:8:\"stdClass\":1:{s:4:\"path\";s:7:\"enabled\";}}}s:11:\"option_name\";s:27:\"woocommerce_paypal_settings\";s:9:\"operation\";s:1:\"=\";s:5:\"value\";s:3:\"yes\";s:7:\"default\";b:0;}}}i:4;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:36:\"woocommerce_inbox_variant_assignment\";s:5:\"value\";i:7;s:7:\"default\";i:1;s:9:\"operation\";s:1:\"<\";}}}s:34:\"ppxo-pps-upgrade-paypal-payments-2\";O:8:\"stdClass\":8:{s:4:\"slug\";s:34:\"ppxo-pps-upgrade-paypal-payments-2\";s:4:\"type\";s:4:\"info\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:31:\"Upgrade your PayPal experience!\";s:7:\"content\";s:358:\"Get access to a full suite of PayPal payment methods, extensive currency and country coverage, offer subscription and recurring payments, and the new PayPal pay later options.<br /><br />Start using our <a href=\"https://woocommerce.com/products/woocommerce-paypal-payments/\" target=\"_blank\">latest PayPal today</a> to continue to receive support and updates.\";}}s:7:\"actions\";a:1:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:34:\"ppxo-pps-install-paypal-payments-2\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:18:\"View upgrade guide\";}}s:3:\"url\";s:96:\"https://docs.woocommerce.com/document/woocommerce-paypal-payments/paypal-payments-upgrade-guide/\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:1;s:6:\"status\";s:8:\"actioned\";}}s:5:\"rules\";a:5:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:18:\"publish_after_time\";s:13:\"publish_after\";s:19:\"2022-01-27 20:34:30\";}i:1;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\">=\";s:7:\"version\";s:3:\"5.5\";}i:2;O:8:\"stdClass\":2:{s:4:\"type\";s:3:\"not\";s:7:\"operand\";a:1:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:17:\"plugins_activated\";s:7:\"plugins\";a:1:{i:0;s:27:\"woocommerce-paypal-payments\";}}}}i:3;O:8:\"stdClass\":2:{s:4:\"type\";s:2:\"or\";s:8:\"operands\";a:2:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:17:\"plugins_activated\";s:7:\"plugins\";a:1:{i:0;s:43:\"woocommerce-gateway-paypal-express-checkout\";}}i:1;O:8:\"stdClass\":6:{s:4:\"type\";s:6:\"option\";s:12:\"transformers\";a:1:{i:0;O:8:\"stdClass\":2:{s:3:\"use\";s:12:\"dot_notation\";s:9:\"arguments\";O:8:\"stdClass\":1:{s:4:\"path\";s:7:\"enabled\";}}}s:11:\"option_name\";s:27:\"woocommerce_paypal_settings\";s:9:\"operation\";s:1:\"=\";s:5:\"value\";s:3:\"yes\";s:7:\"default\";b:0;}}}i:4;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:36:\"woocommerce_inbox_variant_assignment\";s:5:\"value\";i:6;s:7:\"default\";i:1;s:9:\"operation\";s:1:\">\";}}}s:46:\"woocommerce-core-sqli-july-2021-need-to-update\";O:8:\"stdClass\":8:{s:4:\"slug\";s:46:\"woocommerce-core-sqli-july-2021-need-to-update\";s:4:\"type\";s:6:\"update\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:56:\"Action required: Critical vulnerabilities in WooCommerce\";s:7:\"content\";s:574:\"In response to a critical vulnerability identified on July 13, 2021, we are working with the WordPress Plugins Team to deploy software updates to stores running WooCommerce (versions 3.3 to 5.5) and the WooCommerce Blocks feature plugin (versions 2.5 to 5.5).<br /><br />Our investigation into this vulnerability is ongoing, but <strong>we wanted to let you know now about the importance of updating immediately</strong>.<br /><br />For more information on which actions you should take, as well as answers to FAQs, please urgently review our blog post detailing this issue.\";}}s:7:\"actions\";a:2:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:10:\"learn-more\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:10:\"Learn more\";}}s:3:\"url\";s:137:\"https://woocommerce.com/posts/critical-vulnerability-detected-july-2021/?utm_source=inbox_note&utm_medium=product&utm_campaign=learn-more\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:1;s:6:\"status\";s:10:\"unactioned\";}i:1;O:8:\"stdClass\":6:{s:4:\"name\";s:7:\"dismiss\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:7:\"Dismiss\";}}s:3:\"url\";s:0:\"\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:0;s:6:\"status\";s:8:\"actioned\";}}s:5:\"rules\";a:59:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:18:\"publish_after_time\";s:13:\"publish_after\";s:19:\"2022-01-27 20:35:06\";}i:1;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"3.3.6\";}i:2;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"3.4.8\";}i:3;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"3.5.9\";}i:4;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"3.6.6\";}i:5;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"3.7.2\";}i:6;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"3.8.2\";}i:7;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"3.9.4\";}i:8;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.0.2\";}i:9;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.0.3\";}i:10;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.1.2\";}i:11;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.1.3\";}i:12;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.2.3\";}i:13;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.2.4\";}i:14;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.3.4\";}i:15;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.3.5\";}i:16;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.4.2\";}i:17;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.4.3\";}i:18;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.5.3\";}i:19;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.5.4\";}i:20;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.6.3\";}i:21;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.6.4\";}i:22;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.7.2\";}i:23;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.7.3\";}i:24;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.8.1\";}i:25;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.8.2\";}i:26;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.9.3\";}i:27;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.9.4\";}i:28;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"5.0.1\";}i:29;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"5.0.2\";}i:30;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"5.1.1\";}i:31;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"5.1.2\";}i:32;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"5.2.3\";}i:33;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"5.2.4\";}i:34;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"5.3.1\";}i:35;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"5.3.2\";}i:36;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"5.4.2\";}i:37;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"5.4.3\";}i:38;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"<\";s:7:\"version\";s:5:\"5.5.1\";}i:39;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:6:\"3.5.10\";}i:40;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"3.6.7\";}i:41;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"3.7.3\";}i:42;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"3.8.3\";}i:43;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"3.9.5\";}i:44;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.0.4\";}i:45;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.1.4\";}i:46;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.2.5\";}i:47;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.3.6\";}i:48;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.4.4\";}i:49;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.5.5\";}i:50;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.6.5\";}i:51;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.7.4\";}i:52;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.8.3\";}i:53;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.9.5\";}i:54;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"5.0.3\";}i:55;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"5.1.3\";}i:56;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"5.2.5\";}i:57;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"5.3.3\";}i:58;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"5.4.4\";}}}s:48:\"woocommerce-blocks-sqli-july-2021-need-to-update\";O:8:\"stdClass\":8:{s:4:\"slug\";s:48:\"woocommerce-blocks-sqli-july-2021-need-to-update\";s:4:\"type\";s:6:\"update\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:63:\"Action required: Critical vulnerabilities in WooCommerce Blocks\";s:7:\"content\";s:570:\"In response to a critical vulnerability identified on July 13, 2021, we are working with the WordPress Plugins Team to deploy software updates to stores running WooCommerce (versions 3.3 to 5.5) and the WooCommerce Blocks feature plugin (versions 2.5 to 5.5).<br/><br/>Our investigation into this vulnerability is ongoing, but <strong>we wanted to let you know now about the importance of updating immediately</strong>.<br/><br/>For more information on which actions you should take, as well as answers to FAQs, please urgently review our blog post detailing this issue.\";}}s:7:\"actions\";a:2:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:10:\"learn-more\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:10:\"Learn more\";}}s:3:\"url\";s:137:\"https://woocommerce.com/posts/critical-vulnerability-detected-july-2021/?utm_source=inbox_note&utm_medium=product&utm_campaign=learn-more\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:1;s:6:\"status\";s:10:\"unactioned\";}i:1;O:8:\"stdClass\":6:{s:4:\"name\";s:7:\"dismiss\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:7:\"Dismiss\";}}s:3:\"url\";b:0;s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:0;s:6:\"status\";s:8:\"actioned\";}}s:5:\"rules\";a:32:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:18:\"publish_after_time\";s:13:\"publish_after\";s:19:\"2022-01-27 20:35:42\";}i:1;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:6:\"2.5.16\";}i:2;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"2.6.2\";}i:3;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"2.7.2\";}i:4;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"2.8.1\";}i:5;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"2.9.1\";}i:6;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"3.0.1\";}i:7;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"3.1.1\";}i:8;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"3.2.1\";}i:9;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"3.3.1\";}i:10;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"3.4.1\";}i:11;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"3.5.1\";}i:12;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"3.6.1\";}i:13;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"3.7.2\";}i:14;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"3.8.1\";}i:15;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"3.9.1\";}i:16;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.0.1\";}i:17;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.1.1\";}i:18;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.2.1\";}i:19;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.3.1\";}i:20;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.4.3\";}i:21;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.5.3\";}i:22;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.6.1\";}i:23;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.7.1\";}i:24;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.8.1\";}i:25;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.9.2\";}i:26;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"5.0.1\";}i:27;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"5.1.1\";}i:28;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"5.2.1\";}i:29;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"5.3.2\";}i:30;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"5.4.1\";}i:31;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:1:\"<\";s:7:\"version\";s:5:\"5.5.1\";}}}s:45:\"woocommerce-core-sqli-july-2021-store-patched\";O:8:\"stdClass\":8:{s:4:\"slug\";s:45:\"woocommerce-core-sqli-july-2021-store-patched\";s:4:\"type\";s:6:\"update\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:55:\"Solved: Critical vulnerabilities patched in WooCommerce\";s:7:\"content\";s:433:\"In response to a critical vulnerability identified on July 13, 2021, we worked with the WordPress Plugins Team to deploy software updates to stores running WooCommerce (versions 3.3 to 5.5) and the WooCommerce Blocks feature plugin (versions 2.5 to 5.5).<br/><br/><strong>Your store has been updated to the latest secure version(s)</strong>. For more information and answers to FAQs, please review our blog post detailing this issue.\";}}s:7:\"actions\";a:2:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:10:\"learn-more\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:10:\"Learn more\";}}s:3:\"url\";s:137:\"https://woocommerce.com/posts/critical-vulnerability-detected-july-2021/?utm_source=inbox_note&utm_medium=product&utm_campaign=learn-more\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:1;s:6:\"status\";s:10:\"unactioned\";}i:1;O:8:\"stdClass\":6:{s:4:\"name\";s:7:\"dismiss\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:7:\"Dismiss\";}}s:3:\"url\";b:0;s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:0;s:6:\"status\";s:8:\"actioned\";}}s:5:\"rules\";a:4:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:18:\"publish_after_time\";s:13:\"publish_after\";s:19:\"2022-01-27 20:36:18\";}i:1;O:8:\"stdClass\":2:{s:4:\"type\";s:3:\"not\";s:7:\"operand\";a:1:{i:0;O:8:\"stdClass\":4:{s:4:\"type\";s:11:\"note_status\";s:9:\"note_name\";s:46:\"woocommerce-core-sqli-july-2021-need-to-update\";s:6:\"status\";s:7:\"pending\";s:9:\"operation\";s:1:\"=\";}}}i:2;O:8:\"stdClass\":2:{s:4:\"type\";s:3:\"not\";s:7:\"operand\";a:1:{i:0;O:8:\"stdClass\":4:{s:4:\"type\";s:11:\"note_status\";s:9:\"note_name\";s:48:\"woocommerce-blocks-sqli-july-2021-need-to-update\";s:6:\"status\";s:7:\"pending\";s:9:\"operation\";s:1:\"=\";}}}i:3;O:8:\"stdClass\":2:{s:4:\"type\";s:2:\"or\";s:8:\"operands\";a:23:{i:0;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"3.3.6\";}i:1;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"3.4.8\";}i:2;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"3.5.9\";}i:3;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"3.6.6\";}i:4;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"3.7.2\";}i:5;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"3.8.2\";}i:6;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"3.9.4\";}i:7;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"4.0.2\";}i:8;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"4.1.2\";}i:9;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"4.2.3\";}i:10;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"4.3.4\";}i:11;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"4.4.2\";}i:12;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"4.5.3\";}i:13;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"4.6.3\";}i:14;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"4.7.2\";}i:15;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"4.8.1\";}i:16;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"4.9.3\";}i:17;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"5.0.1\";}i:18;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"5.1.1\";}i:19;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"5.2.3\";}i:20;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"5.3.1\";}i:21;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"5.4.2\";}i:22;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\">=\";s:7:\"version\";s:5:\"5.5.1\";}}}}}s:47:\"woocommerce-blocks-sqli-july-2021-store-patched\";O:8:\"stdClass\":8:{s:4:\"slug\";s:47:\"woocommerce-blocks-sqli-july-2021-store-patched\";s:4:\"type\";s:6:\"update\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:62:\"Solved: Critical vulnerabilities patched in WooCommerce Blocks\";s:7:\"content\";s:433:\"In response to a critical vulnerability identified on July 13, 2021, we worked with the WordPress Plugins Team to deploy software updates to stores running WooCommerce (versions 3.3 to 5.5) and the WooCommerce Blocks feature plugin (versions 2.5 to 5.5).<br/><br/><strong>Your store has been updated to the latest secure version(s)</strong>. For more information and answers to FAQs, please review our blog post detailing this issue.\";}}s:7:\"actions\";a:2:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:10:\"learn-more\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:10:\"Learn more\";}}s:3:\"url\";s:137:\"https://woocommerce.com/posts/critical-vulnerability-detected-july-2021/?utm_source=inbox_note&utm_medium=product&utm_campaign=learn-more\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:1;s:6:\"status\";s:10:\"unactioned\";}i:1;O:8:\"stdClass\":6:{s:4:\"name\";s:7:\"dismiss\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:7:\"Dismiss\";}}s:3:\"url\";b:0;s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:0;s:6:\"status\";s:8:\"actioned\";}}s:5:\"rules\";a:4:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:18:\"publish_after_time\";s:13:\"publish_after\";s:19:\"2022-01-27 20:36:54\";}i:1;O:8:\"stdClass\":2:{s:4:\"type\";s:3:\"not\";s:7:\"operand\";a:1:{i:0;O:8:\"stdClass\":4:{s:4:\"type\";s:11:\"note_status\";s:9:\"note_name\";s:46:\"woocommerce-core-sqli-july-2021-need-to-update\";s:6:\"status\";s:7:\"pending\";s:9:\"operation\";s:1:\"=\";}}}i:2;O:8:\"stdClass\":2:{s:4:\"type\";s:3:\"not\";s:7:\"operand\";a:1:{i:0;O:8:\"stdClass\":4:{s:4:\"type\";s:11:\"note_status\";s:9:\"note_name\";s:48:\"woocommerce-blocks-sqli-july-2021-need-to-update\";s:6:\"status\";s:7:\"pending\";s:9:\"operation\";s:1:\"=\";}}}i:3;O:8:\"stdClass\":2:{s:4:\"type\";s:2:\"or\";s:8:\"operands\";a:31:{i:0;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:6:\"2.5.16\";}i:1;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"2.6.2\";}i:2;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"2.7.2\";}i:3;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"2.8.1\";}i:4;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"2.9.1\";}i:5;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"3.0.1\";}i:6;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"3.1.1\";}i:7;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"3.2.1\";}i:8;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"3.3.1\";}i:9;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"3.4.1\";}i:10;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"3.5.1\";}i:11;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"3.6.1\";}i:12;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"3.7.2\";}i:13;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"3.8.1\";}i:14;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"3.9.1\";}i:15;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"4.0.1\";}i:16;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"4.1.1\";}i:17;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"4.2.1\";}i:18;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"4.3.1\";}i:19;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"4.4.3\";}i:20;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"4.5.3\";}i:21;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"4.6.1\";}i:22;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"4.7.1\";}i:23;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"4.8.1\";}i:24;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"4.9.2\";}i:25;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"5.0.1\";}i:26;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"5.1.1\";}i:27;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"5.2.1\";}i:28;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"5.3.2\";}i:29;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"5.4.1\";}i:30;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:2:\">=\";s:7:\"version\";s:5:\"5.5.1\";}}}}}s:19:\"habit-moment-survey\";O:8:\"stdClass\":8:{s:4:\"slug\";s:19:\"habit-moment-survey\";s:4:\"type\";s:9:\"marketing\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:63:\"We’re all ears! Share your experience so far with WooCommerce\";s:7:\"content\";s:136:\"We’d love your input to shape the future of WooCommerce together. Feel free to share any feedback, ideas or suggestions that you have.\";}}s:7:\"actions\";a:1:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:14:\"share-feedback\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:14:\"Share feedback\";}}s:3:\"url\";s:45:\"https://automattic.survey.fm/store-management\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:1;s:6:\"status\";s:10:\"unactioned\";}}s:5:\"rules\";a:4:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:18:\"publish_after_time\";s:13:\"publish_after\";s:19:\"2022-01-27 20:37:30\";}i:1;O:8:\"stdClass\":3:{s:4:\"type\";s:18:\"wcadmin_active_for\";s:9:\"operation\";s:1:\">\";s:4:\"days\";i:3;}i:2;O:8:\"stdClass\":3:{s:4:\"type\";s:11:\"order_count\";s:9:\"operation\";s:1:\">\";s:5:\"value\";i:30;}i:3;O:8:\"stdClass\":3:{s:4:\"type\";s:13:\"product_count\";s:9:\"operation\";s:1:\">\";s:5:\"value\";i:0;}}}s:42:\"woocommerce-core-paypal-march-2022-updated\";O:8:\"stdClass\":8:{s:4:\"slug\";s:42:\"woocommerce-core-paypal-march-2022-updated\";s:4:\"type\";s:6:\"update\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:35:\"Security auto-update of WooCommerce\";s:7:\"content\";s:391:\"<strong>Your store has been updated to the latest secure version of WooCommerce</strong>. We worked with WordPress to deploy PayPal Standard security updates for stores running WooCommerce (version 3.5 to 6.3). It’s recommended to disable PayPal Standard, and use <a href=\"https://woocommerce.com/products/woocommerce-paypal-payments/\" target=\"_blank\">PayPal Payments</a> to accept PayPal.\";}}s:7:\"actions\";a:2:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:10:\"learn-more\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:10:\"Learn more\";}}s:3:\"url\";s:88:\"https://developer.woocommerce.com/2022/03/10/woocommerce-3-5-10-6-3-1-security-releases/\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:1;s:6:\"status\";s:10:\"unactioned\";}i:1;O:8:\"stdClass\":6:{s:4:\"name\";s:42:\"woocommerce-core-paypal-march-2022-dismiss\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:7:\"Dismiss\";}}s:3:\"url\";s:0:\"\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:0;s:6:\"status\";s:8:\"actioned\";}}s:5:\"rules\";a:3:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:18:\"publish_after_time\";s:13:\"publish_after\";s:19:\"2022-03-10 18:44:57\";}i:1;O:8:\"stdClass\":2:{s:4:\"type\";s:2:\"or\";s:8:\"operands\";a:28:{i:0;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:6:\"3.5.10\";}i:1;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"3.6.7\";}i:2;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"3.7.3\";}i:3;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"3.8.3\";}i:4;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"3.9.5\";}i:5;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"4.0.4\";}i:6;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"4.1.4\";}i:7;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"4.2.5\";}i:8;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"4.3.6\";}i:9;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"4.4.4\";}i:10;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"4.5.5\";}i:11;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"4.6.5\";}i:12;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"4.7.4\";}i:13;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"4.8.3\";}i:14;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"4.9.5\";}i:15;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"5.0.3\";}i:16;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"5.1.3\";}i:17;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"5.2.5\";}i:18;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"5.3.3\";}i:19;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"5.4.4\";}i:20;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"5.5.4\";}i:21;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"5.6.2\";}i:22;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"5.7.2\";}i:23;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"5.8.1\";}i:24;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"5.9.1\";}i:25;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"6.0.1\";}i:26;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"6.1.2\";}i:27;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"6.2.2\";}}}i:2;O:8:\"stdClass\":2:{s:4:\"type\";s:2:\"or\";s:8:\"operands\";a:2:{i:0;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"<\";s:7:\"version\";s:3:\"5.5\";}i:1;a:2:{i:0;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\">=\";s:7:\"version\";s:3:\"5.5\";}i:1;O:8:\"stdClass\":6:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:27:\"woocommerce_paypal_settings\";s:9:\"operation\";s:1:\"=\";s:5:\"value\";s:3:\"yes\";s:7:\"default\";b:0;s:12:\"transformers\";a:1:{i:0;O:8:\"stdClass\":2:{s:3:\"use\";s:12:\"dot_notation\";s:9:\"arguments\";O:8:\"stdClass\":1:{s:4:\"path\";s:7:\"enabled\";}}}}}}}}}s:47:\"woocommerce-core-paypal-march-2022-updated-nopp\";O:8:\"stdClass\":8:{s:4:\"slug\";s:47:\"woocommerce-core-paypal-march-2022-updated-nopp\";s:4:\"type\";s:6:\"update\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:35:\"Security auto-update of WooCommerce\";s:7:\"content\";s:237:\"<strong>Your store has been updated to the latest secure version of WooCommerce</strong>. We worked with WordPress to deploy security updates related to PayPal Standard payment gateway for stores running WooCommerce (version 3.5 to 6.3).\";}}s:7:\"actions\";a:2:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:10:\"learn-more\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:10:\"Learn more\";}}s:3:\"url\";s:88:\"https://developer.woocommerce.com/2022/03/10/woocommerce-3-5-10-6-3-1-security-releases/\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:1;s:6:\"status\";s:10:\"unactioned\";}i:1;O:8:\"stdClass\":6:{s:4:\"name\";s:7:\"dismiss\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:7:\"Dismiss\";}}s:3:\"url\";s:0:\"\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:0;s:6:\"status\";s:8:\"actioned\";}}s:5:\"rules\";a:3:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:18:\"publish_after_time\";s:13:\"publish_after\";s:19:\"2022-03-10 18:45:04\";}i:1;O:8:\"stdClass\":2:{s:4:\"type\";s:2:\"or\";s:8:\"operands\";a:28:{i:0;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:6:\"3.5.10\";}i:1;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"3.6.7\";}i:2;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"3.7.3\";}i:3;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"3.8.3\";}i:4;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"3.9.5\";}i:5;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"4.0.4\";}i:6;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"4.1.4\";}i:7;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"4.2.5\";}i:8;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"4.3.6\";}i:9;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"4.4.4\";}i:10;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"4.5.5\";}i:11;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"4.6.5\";}i:12;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"4.7.4\";}i:13;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"4.8.3\";}i:14;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"4.9.5\";}i:15;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"5.0.3\";}i:16;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"5.1.3\";}i:17;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"5.2.5\";}i:18;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"5.3.3\";}i:19;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"5.4.4\";}i:20;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"5.5.4\";}i:21;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"5.6.2\";}i:22;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"5.7.2\";}i:23;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"5.8.1\";}i:24;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"5.9.1\";}i:25;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"6.0.1\";}i:26;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"6.1.2\";}i:27;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"6.2.2\";}}}i:2;O:8:\"stdClass\":4:{s:4:\"type\";s:11:\"note_status\";s:9:\"note_name\";s:42:\"woocommerce-core-paypal-march-2022-updated\";s:6:\"status\";s:7:\"pending\";s:9:\"operation\";s:1:\"=\";}}}s:24:\"pinterest_03_2022_update\";O:8:\"stdClass\":8:{s:4:\"slug\";s:24:\"pinterest_03_2022_update\";s:4:\"type\";s:9:\"marketing\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:53:\"Your Pinterest for WooCommerce plugin is out of date!\";s:7:\"content\";s:262:\"Update to the latest version of Pinterest for WooCommerce to continue using this plugin and keep your store connected with Pinterest. To update, visit <strong>Plugins &gt; Installed Plugins</strong>, and click on “update now” under Pinterest for WooCommerce.\";}}s:7:\"actions\";a:1:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:24:\"pinterest_03_2022_update\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:19:\"Update Instructions\";}}s:3:\"url\";s:148:\"https://woocommerce.com/document/pinterest-for-woocommerce/?utm_source=inbox_note&utm_medium=product&utm_campaign=pinterest_03_2022_update#section-3\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:0;s:6:\"status\";s:8:\"actioned\";}}s:5:\"rules\";a:2:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:18:\"publish_after_time\";s:13:\"publish_after\";s:19:\"2022-03-23 00:00:39\";}i:1;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:25:\"pinterest-for-woocommerce\";s:8:\"operator\";s:1:\"<\";s:7:\"version\";s:5:\"1.0.8\";}}}s:33:\"store_setup_survey_survey_q2_2022\";O:8:\"stdClass\":8:{s:4:\"slug\";s:33:\"store_setup_survey_survey_q2_2022\";s:4:\"type\";s:6:\"survey\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:30:\"How is your store setup going?\";s:7:\"content\";s:232:\"Our goal is to make sure you have all the right tools to start setting up your store in the smoothest way possible.\r\nWe’d love to know if we hit our mark and how we can improve. To collect your thoughts, we made a 2-minute survey.\";}}s:7:\"actions\";a:1:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:53:\"store_setup_survey_survey_q2_2022_share_your_thoughts\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:24:\"Tell us how it’s going\";}}s:3:\"url\";s:52:\"https://automattic.survey.fm/store-setup-survey-2022\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:0;s:6:\"status\";s:8:\"actioned\";}}s:5:\"rules\";a:3:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:18:\"publish_after_time\";s:13:\"publish_after\";s:19:\"2022-05-09 08:42:10\";}i:1;O:8:\"stdClass\":3:{s:4:\"type\";s:18:\"wcadmin_active_for\";s:9:\"operation\";s:1:\">\";s:4:\"days\";i:7;}i:2;O:8:\"stdClass\":3:{s:4:\"type\";s:18:\"wcadmin_active_for\";s:9:\"operation\";s:1:\"<\";s:4:\"days\";i:9;}}}s:47:\"woocommerce-payments-august-2022-need-to-update\";O:8:\"stdClass\":8:{s:4:\"slug\";s:47:\"woocommerce-payments-august-2022-need-to-update\";s:4:\"type\";s:6:\"update\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:51:\"Action required: Please update WooCommerce Payments\";s:7:\"content\";s:213:\"An updated secure version of WooCommerce Payments is available – please ensure that you’re using the latest patch version. For more information on what action you need to take, please review the article below.\";}}s:7:\"actions\";a:2:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:10:\"learn-more\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:13:\"Find out more\";}}s:3:\"url\";s:96:\"https://developer.woocommerce.com/2022/08/09/woocommerce-payments-3-9-4-4-5-1-security-releases/\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:1;s:6:\"status\";s:10:\"unactioned\";}i:1;O:8:\"stdClass\":6:{s:4:\"name\";s:7:\"dismiss\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:7:\"Dismiss\";}}s:3:\"url\";s:0:\"\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:0;s:6:\"status\";s:8:\"actioned\";}}s:5:\"rules\";a:9:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:18:\"publish_after_time\";s:13:\"publish_after\";s:19:\"2022-08-09 14:44:17\";}i:1;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:20:\"woocommerce-payments\";s:8:\"operator\";s:2:\">=\";s:7:\"version\";s:3:\"3.9\";}i:2;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:20:\"woocommerce-payments\";s:8:\"operator\";s:1:\"<\";s:7:\"version\";s:5:\"4.5.1\";}i:3;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:20:\"woocommerce-payments\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"3.9.4\";}i:4;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:20:\"woocommerce-payments\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.0.3\";}i:5;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:20:\"woocommerce-payments\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.1.1\";}i:6;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:20:\"woocommerce-payments\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.2.2\";}i:7;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:20:\"woocommerce-payments\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.3.1\";}i:8;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:20:\"woocommerce-payments\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.4.1\";}}}s:46:\"woocommerce-payments-august-2022-store-patched\";O:8:\"stdClass\":8:{s:4:\"slug\";s:46:\"woocommerce-payments-august-2022-store-patched\";s:4:\"type\";s:6:\"update\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:51:\"WooCommerce Payments has been automatically updated\";s:7:\"content\";s:265:\"You’re now running the latest secure version of WooCommerce Payments. We’ve worked with the WordPress Plugins team to deploy a security update to stores running WooCommerce Payments (version 3.9 to 4.5). For further information, please review the article below.\";}}s:7:\"actions\";a:2:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:10:\"learn-more\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:13:\"Find out more\";}}s:3:\"url\";s:96:\"https://developer.woocommerce.com/2022/08/09/woocommerce-payments-3-9-4-4-5-1-security-releases/\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:1;s:6:\"status\";s:10:\"unactioned\";}i:1;O:8:\"stdClass\":6:{s:4:\"name\";s:7:\"dismiss\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:7:\"Dismiss\";}}s:3:\"url\";s:0:\"\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:0;s:6:\"status\";s:8:\"actioned\";}}s:5:\"rules\";a:3:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:18:\"publish_after_time\";s:13:\"publish_after\";s:19:\"2022-08-09 14:41:13\";}i:1;O:8:\"stdClass\":4:{s:4:\"type\";s:11:\"note_status\";s:9:\"note_name\";s:47:\"woocommerce-payments-august-2022-need-to-update\";s:6:\"status\";s:7:\"pending\";s:9:\"operation\";s:1:\"=\";}i:2;O:8:\"stdClass\":2:{s:4:\"type\";s:2:\"or\";s:8:\"operands\";a:7:{i:0;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:20:\"woocommerce-payments\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"3.9.4\";}i:1;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:20:\"woocommerce-payments\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"4.0.3\";}i:2;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:20:\"woocommerce-payments\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"4.1.1\";}i:3;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:20:\"woocommerce-payments\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"4.2.2\";}i:4;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:20:\"woocommerce-payments\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"4.3.1\";}i:5;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:20:\"woocommerce-payments\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"4.4.1\";}i:6;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:20:\"woocommerce-payments\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"4.5.1\";}}}}}s:48:\"needs-update-eway-payment-gateway-rin-2022-12-20\";O:8:\"stdClass\":8:{s:4:\"slug\";s:48:\"needs-update-eway-payment-gateway-rin-2022-12-20\";s:4:\"type\";s:6:\"update\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:58:\"Security vulnerability patched in WooCommerce Eway Gateway\";s:7:\"content\";s:323:\"In response to a potential vulnerability identified in WooCommerce Eway Gateway versions 3.1.0 to 3.5.0, we’ve worked to deploy security fixes and have released an updated version.\r\nNo external exploits have been detected, but we recommend you update to your latest supported version 3.1.26, 3.2.3, 3.3.1, 3.4.6, or 3.5.1\";}}s:7:\"actions\";a:2:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:62:\"needs-update-eway-payment-gateway-rin-action-button-2022-12-20\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:21:\"See available updates\";}}s:3:\"url\";s:16:\"/update-core.php\";s:18:\"url_is_admin_query\";b:1;s:10:\"is_primary\";b:0;s:6:\"status\";s:10:\"unactioned\";}i:1;O:8:\"stdClass\":6:{s:4:\"name\";s:63:\"needs-update-eway-payment-gateway-rin-dismiss-button-2022-12-20\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:7:\"Dismiss\";}}s:3:\"url\";s:1:\"#\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:0;s:6:\"status\";s:8:\"actioned\";}}s:5:\"rules\";a:7:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:18:\"publish_after_time\";s:13:\"publish_after\";s:19:\"2022-01-03 23:45:53\";}i:1;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:24:\"woocommerce-gateway-eway\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:6:\"3.1.26\";}i:2;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:24:\"woocommerce-gateway-eway\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"3.2.3\";}i:3;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:24:\"woocommerce-gateway-eway\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"3.3.1\";}i:4;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:24:\"woocommerce-gateway-eway\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"3.4.6\";}i:5;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:24:\"woocommerce-gateway-eway\";s:8:\"operator\";s:1:\"<\";s:7:\"version\";s:5:\"3.5.1\";}i:6;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:24:\"woocommerce-gateway-eway\";s:8:\"operator\";s:2:\">=\";s:7:\"version\";s:5:\"3.1.0\";}}}s:43:\"updated-eway-payment-gateway-rin-2022-12-20\";O:8:\"stdClass\":8:{s:4:\"slug\";s:43:\"updated-eway-payment-gateway-rin-2022-12-20\";s:4:\"type\";s:6:\"update\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:55:\"WooCommerce Eway Gateway has been automatically updated\";s:7:\"content\";s:280:\"Your store is now running the latest secure version of WooCommerce Eway Gateway. We worked with the WordPress Plugins team to deploy a software update to stores running WooCommerce Eway Gateway (versions 3.1.0 to 3.5.0) in response to a security vulnerability that was discovered.\";}}s:7:\"actions\";a:2:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:57:\"updated-eway-payment-gateway-rin-action-button-2022-12-20\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:15:\"See all updates\";}}s:3:\"url\";s:16:\"/update-core.php\";s:18:\"url_is_admin_query\";b:1;s:10:\"is_primary\";b:0;s:6:\"status\";s:10:\"unactioned\";}i:1;O:8:\"stdClass\":6:{s:4:\"name\";s:58:\"updated-eway-payment-gateway-rin-dismiss-button-2022-12-20\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:7:\"Dismiss\";}}s:3:\"url\";s:1:\"#\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:0;s:6:\"status\";s:8:\"actioned\";}}s:5:\"rules\";a:3:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:18:\"publish_after_time\";s:13:\"publish_after\";s:19:\"2022-01-03 23:45:06\";}i:1;O:8:\"stdClass\":4:{s:4:\"type\";s:11:\"note_status\";s:9:\"note_name\";s:48:\"needs-update-eway-payment-gateway-rin-2022-12-20\";s:6:\"status\";s:7:\"pending\";s:9:\"operation\";s:1:\"=\";}i:2;O:8:\"stdClass\":2:{s:4:\"type\";s:2:\"or\";s:8:\"operands\";a:5:{i:0;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:24:\"woocommerce-gateway-eway\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:6:\"3.1.26\";}i:1;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:24:\"woocommerce-gateway-eway\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"3.2.3\";}i:2;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:24:\"woocommerce-gateway-eway\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"3.3.1\";}i:3;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:24:\"woocommerce-gateway-eway\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"3.4.6\";}i:4;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:24:\"woocommerce-gateway-eway\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"3.5.1\";}}}}}s:31:\"ecomm-wc-navigation-survey-2023\";O:8:\"stdClass\":8:{s:4:\"slug\";s:31:\"ecomm-wc-navigation-survey-2023\";s:4:\"type\";s:4:\"info\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:39:\"Navigating WooCommerce on WordPress.com\";s:7:\"content\";s:166:\"We are improving the WooCommerce navigation on WordPress.com and would love your help to make it better! Please share your experience with us in this 2-minute survey.\";}}s:7:\"actions\";a:1:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:32:\"share-navigation-survey-feedback\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:14:\"Share feedback\";}}s:3:\"url\";s:58:\"https://automattic.survey.fm/new-ecommerce-plan-navigation\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:1;s:6:\"status\";s:8:\"actioned\";}}s:5:\"rules\";a:3:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:18:\"publish_after_time\";s:13:\"publish_after\";s:19:\"2023-01-16 09:53:44\";}i:1;O:8:\"stdClass\":2:{s:4:\"type\";s:12:\"is_ecommerce\";s:5:\"value\";b:1;}i:2;O:8:\"stdClass\":3:{s:4:\"type\";s:18:\"wcadmin_active_for\";s:9:\"operation\";s:1:\">\";s:4:\"days\";i:180;}}}s:39:\"woopay-beta-merchantrecruitment-04MAY23\";O:8:\"stdClass\":8:{s:4:\"slug\";s:39:\"woopay-beta-merchantrecruitment-04MAY23\";s:4:\"type\";s:4:\"info\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:61:\"Increase conversions with WooPay — our fastest checkout yet\";s:7:\"content\";s:319:\"WooPay, a new express checkout feature built into WooCommerce Payments, is <b>now available</b> —and we’re inviting you to be one of the first to try it. \r\n<br><br>\r\n<b>Boost conversions</b> by offering your customers a simple, secure way to pay with a <b>single click</b>.\r\n<br><br>\r\n<b>Get started in seconds.</b>\";}}s:7:\"actions\";a:2:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:48:\"woopay-beta-merchantrecruitment-activate-04MAY23\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:15:\"Activate WooPay\";}}s:3:\"url\";s:93:\"admin.php?page=wc-settings&tab=checkout&section=woocommerce_payments&method=platform_checkout\";s:18:\"url_is_admin_query\";b:1;s:10:\"is_primary\";b:1;s:6:\"status\";s:8:\"actioned\";}i:1;O:8:\"stdClass\":6:{s:4:\"name\";s:58:\"woopay-beta-merchantrecruitment-activate-learnmore-04MAY23\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:10:\"Learn More\";}}s:3:\"url\";s:155:\"https://woocommerce.com/woopay-businesses/?utm_source=inbox_note&utm_medium=product&utm_campaign=woopay-beta-merchantrecruitment-activate-learnmore-04MAY23\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:0;s:6:\"status\";s:10:\"unactioned\";}}s:5:\"rules\";a:3:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:18:\"publish_after_time\";s:13:\"publish_after\";s:19:\"2023-05-04 18:00:27\";}i:1;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:20:\"woocommerce-payments\";s:8:\"operator\";s:2:\">=\";s:7:\"version\";s:5:\"5.8.1\";}i:2;O:8:\"stdClass\":2:{s:4:\"type\";s:2:\"or\";s:8:\"operands\";a:144:{i:0;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:36:\"http://pieroatomic3.wpcomstaging.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:1;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:35:\"https://www.handinhandparenting.org\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:2;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:25:\"http://pritikinfoods.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:3;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:25:\"https://utahrecsports.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:4;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:25:\"https://www.hunterpta.org\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:5;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:26:\"http://www.smokinbeans.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:6;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:23:\"https://shulabeauty.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:7;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:30:\"https://bingeworthytvmerch.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:8;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:31:\"http://s91.4d8.myftpupload.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:9;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:33:\"https://stephanienicolenorris.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:10;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:23:\"http://aliensshirt.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:11;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:36:\"https://libertyordeathapparelllc.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:12;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:28:\"https://cowboystatedaily.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:13;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:42:\"https://fundrgear.com/beckendorffathletics\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:14;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:50:\"http://wordpress-528155-2231771.cloudwaysapps.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:15;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:31:\"https://checkout.sohaprice.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:16;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:23:\"https://amadozstore.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:17;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:19:\"http://eliwehbe.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:18;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:19:\"http://lunabra.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:19;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:18:\"https://nptixx.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:20;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:27:\"http://louisianapantry.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:21;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:24:\"https://aplusanatomy.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:22;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:19:\"https://wildsvg.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:23;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:22:\"https://bleachfilm.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:24;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:25:\"https://benabeautyspa.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:25;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:47:\"http://barrettfitnessenterprises.wordpress.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:26;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:24:\"https://goabroadable.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:27;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:26:\"https://alexoathletica.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:28;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:25:\"https://www.fourpurls.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:29;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:29:\"https://www.hagmannreport.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:30;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:27:\"https://busybeeorganics.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:31;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:24:\"https://nallsproduce.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:32;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:23:\"https://bigtimebats.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:33;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:33:\"https://shop.cookingwithkarli.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:34;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:33:\"https://www.queenofpeacemedia.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:35;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:29:\"https://bigjohnsbeefjerky.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:36;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:24:\"https://paperbyjaney.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:37;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:31:\"https://carolinarisemembers.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:38;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:26:\"https://veroticaevents.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:39;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:18:\"https://spira.farm\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:40;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:25:\"https://endlessassist.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:41;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:26:\"https://betterlifeblog.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:42;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:26:\"https://ashleighrenard.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:43;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:28:\"https://www.turkeymerck.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:44;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:23:\"http://carfiershop.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:45;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:31:\"https://normanmusicfestival.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:46;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:35:\"http://www.olfactoryfactoryllc.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:47;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:38:\"https://fundrgear.com/anthonyathletics\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:48;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:40:\"http://tkechilifestdotcom.wordpress.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:49;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:15:\"No results foun\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:50;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:16:\"https://pvsa.org\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:51;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:22:\"http://becbatop.store/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:52;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:26:\"https://wwmeconvention.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:53;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:17:\"https://lswmp.org\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:54;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:25:\"https://bubbaskincare.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:55;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:19:\"http://fusango.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:56;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:25:\"https://vcdpostershow.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:57;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:26:\"http://www.rileysribz.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:58;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:30:\"https://www.fakeultrasound.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:59;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:31:\"http://onelongfellowsquare.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:60;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:19:\"http://agodpod.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:61;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:40:\"https://fundrgear.com/littleladybulldogs\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:62;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:25:\"https://thecirclelarp.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:63;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:19:\"https://byletam.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:64;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:25:\"https://www.nachonite.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:65;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:33:\"http://designerdab.wordpress.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:66;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:38:\"http://box2151.temp.domains/~lovebyt2/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:67;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:37:\"https://shortporchbaseballcompany.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:68;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:23:\"http://distancecme.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:69;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:29:\"https://middleswarthchips.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:70;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:24:\"https://railblazausa.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:71;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:30:\"https://mikescountrymeats.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:72;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:26:\"https://www.woodenshoe.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:73;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:27:\"https://rockspringscafe.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:74;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:28:\"http://footballfangears.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:75;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:19:\"https://ybtoner.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:76;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:24:\"https://simplyclayyy.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:77;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:26:\"https://naturecreation.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:78;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:26:\"http://marisrodriguez.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:79;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:31:\"https://asanteinternational.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:80;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:21:\"https://theatre55.org\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:81;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:37:\"https://carolynscreativeclassroom.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:82;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:23:\"https://www.miiriya.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:83;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:22:\"http://trendyds.store/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:84;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:26:\"https://wooedbythefood.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:85;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:27:\"https://papasteamstores.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:86;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:20:\"http://omdurags.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:87;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:27:\"https://happydogbarkery.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:88;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:19:\"http://kitbose.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:89;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:24:\"https://seamossdeals.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:90;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:19:\"https://zeatala.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:91;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:27:\"https://shop.atwaterffa.org\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:92;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:37:\"http://www.brettsfirstresponders.org/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:93;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:23:\"http://shirtactive.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:94;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:24:\"https://boerneparade.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:95;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:23:\"https://zorahshrine.org\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:96;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:25:\"https://davidcervenka.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:97;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:24:\"https://addisjourney.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:98;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:18:\"https://305ycle.cc\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:99;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:45:\"http://yourworstnightmarehaunt.wordpress.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:100;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:26:\"http://westcoastpreps.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:101;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:30:\"https://checkout.sohaking.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:102;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:36:\"https://www.theunshakeablepundit.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:103;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:31:\"https://www.stellaandchewys.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:104;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:27:\"https://www.raywhitcomb.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:105;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:39:\"http://constellationtheatercompany.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:106;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:23:\"https://stacynguyen.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:107;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:46:\"https://fundrgear.com/lakecreekgirlsbasketball\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:108;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:28:\"https://winslowartcenter.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:109;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:23:\"https://flufftastik.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:110;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:24:\"https://mygreenbeach.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:111;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:22:\"http://ebookvip.store/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:112;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:41:\"https://fundrgear.com/needvillevolleyball\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:113;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:25:\"https://bifocalmedia.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:114;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:16:\"https://clrc.org\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:115;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:21:\"https://hyperpins.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:116;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:45:\"https://fundrgear.com/lakecreekboysbasketball\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:117;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:33:\"https://fundrgear.com/kparktennis\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:118;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:25:\"https://mogadorspices.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:119;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:35:\"https://fundrgear.com/newcaneytrack\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:120;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:23:\"https://sigmascents.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:121;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:25:\"http://bsharisemoore.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:122;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:21:\"https://morrflate.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:123;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:23:\"https://westbrosinc.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:124;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:28:\"https://shop.danceplexaz.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:125;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:20:\"https://chikepod.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:126;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:28:\"https://www.advanahealth.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:127;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:18:\"https://tatter.org\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:128;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:33:\"https://greatawakeningbrewing.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:129;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:29:\"https://waterfowlfestival.org\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:130;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:27:\"https://preppedwellness.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:131;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:23:\"https://events.thus.org\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:132;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:37:\"http://stormtide.thefifthtrooper.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:133;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:24:\"https://www.tabsynth.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:134;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:34:\"http://staging.fliptheswitchon.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:135;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:23:\"https://duffysdough.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:136;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:27:\"https://fitfoodieliving.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:137;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:30:\"https://breakerbrotherstcg.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:138;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:22:\"https://andymation.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:139;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:26:\"https://recklessmetals.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:140;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:22:\"https://sophielark.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:141;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:26:\"http://wp.arabtherapy.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:142;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:29:\"https://creativeappliques.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:143;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:20:\"https://altitude.win\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}}}}}s:42:\"woocommerce-wcpay-march-2023-update-needed\";O:8:\"stdClass\":8:{s:4:\"slug\";s:42:\"woocommerce-wcpay-march-2023-update-needed\";s:4:\"type\";s:6:\"update\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:57:\"Action required: Security update for WooCommerce Payments\";s:7:\"content\";s:296:\"<strong>Your store requires a security update for WooCommerce Payments</strong>. Please update to the latest version of WooCommerce Payments immediately to address a potential vulnerability discovered on March 22. For more information on how to update, visit this WooCommerce Developer Blog Post.\";}}s:7:\"actions\";a:2:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:49:\"woocommerce-wcpay-march-2023-update-needed-button\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:13:\"See Blog Post\";}}s:3:\"url\";s:122:\"https://developer.woocommerce.com/2023/03/23/critical-vulnerability-detected-in-woocommerce-payments-what-you-need-to-know\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:0;s:6:\"status\";s:10:\"unactioned\";}i:1;O:8:\"stdClass\":6:{s:4:\"name\";s:57:\"woocommerce-wcpay-march-2023-update-needed-dismiss-button\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:7:\"Dismiss\";}}s:3:\"url\";s:1:\"#\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:0;s:6:\"status\";s:8:\"actioned\";}}s:5:\"rules\";a:11:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:18:\"publish_after_time\";s:13:\"publish_after\";s:19:\"2023-03-22 20:25:44\";}i:1;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:20:\"woocommerce-payments\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.8.2\";}i:2;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:20:\"woocommerce-payments\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.9.1\";}i:3;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:20:\"woocommerce-payments\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"5.0.4\";}i:4;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:20:\"woocommerce-payments\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"5.1.3\";}i:5;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:20:\"woocommerce-payments\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"5.2.2\";}i:6;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:20:\"woocommerce-payments\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"5.3.1\";}i:7;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:20:\"woocommerce-payments\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"5.4.1\";}i:8;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:20:\"woocommerce-payments\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"5.5.2\";}i:9;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:20:\"woocommerce-payments\";s:8:\"operator\";s:2:\">=\";s:7:\"version\";s:5:\"4.8.0\";}i:10;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:20:\"woocommerce-payments\";s:8:\"operator\";s:2:\"<=\";s:7:\"version\";s:5:\"5.6.1\";}}}s:34:\"tap_to_pay_iphone_q2_2023_no_wcpay\";O:8:\"stdClass\":8:{s:4:\"slug\";s:34:\"tap_to_pay_iphone_q2_2023_no_wcpay\";s:4:\"type\";s:9:\"marketing\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:52:\"Accept in-person contactless payments on your iPhone\";s:7:\"content\";s:230:\"Tap to Pay on iPhone and WooCommerce Payments is quick, secure, and simple to set up — no extra terminals or card readers are needed. Accept contactless debit and credit cards, Apple Pay, and other NFC digital wallets in person.\";}}s:7:\"actions\";a:1:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:34:\"tap_to_pay_iphone_q2_2023_no_wcpay\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:20:\"Simplify my payments\";}}s:3:\"url\";s:143:\"https://woocommerce.com/products/woocommerce-payments/?utm_source=inbox_note&utm_medium=product&utm_campaign=tap_to_pay_iphone_q2_2023_no_wcpay\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:0;s:6:\"status\";s:8:\"actioned\";}}s:5:\"rules\";a:3:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:18:\"publish_after_time\";s:13:\"publish_after\";s:19:\"2023-04-03 23:59:47\";}i:1;O:8:\"stdClass\":2:{s:4:\"type\";s:3:\"not\";s:7:\"operand\";a:1:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:17:\"plugins_activated\";s:7:\"plugins\";a:1:{i:0;s:20:\"woocommerce-payments\";}}}}i:2;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:9:\"operation\";s:1:\"=\";s:5:\"value\";s:2:\"US\";}}}s:48:\"woocommerce-WCPreOrders-april-2023-update-needed\";O:8:\"stdClass\":8:{s:4:\"slug\";s:48:\"woocommerce-WCPreOrders-april-2023-update-needed\";s:4:\"type\";s:6:\"update\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:68:\"Action required: Security update of WooCommerce Pre-Orders extension\";s:7:\"content\";s:220:\"<strong>Your store requires a security update for the WooCommerce Pre-Orders extension</strong>. Please update the WooCommerce Pre-Orders extension immediately to address a potential vulnerability discovered on April 11.\";}}s:7:\"actions\";a:2:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:18:\"extension-settings\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:21:\"See available updates\";}}s:3:\"url\";s:15:\"update-core.php\";s:18:\"url_is_admin_query\";b:1;s:10:\"is_primary\";b:0;s:6:\"status\";s:10:\"unactioned\";}i:1;O:8:\"stdClass\":6:{s:4:\"name\";s:7:\"dismiss\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:7:\"Dismiss\";}}s:3:\"url\";s:1:\"#\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:0;s:6:\"status\";s:8:\"actioned\";}}s:5:\"rules\";a:2:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:18:\"publish_after_time\";s:13:\"publish_after\";s:19:\"2023-04-12 22:16:37\";}i:1;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:22:\"woocommerce-pre-orders\";s:8:\"operator\";s:2:\"<=\";s:7:\"version\";s:5:\"2.0.0\";}}}s:46:\"woopay-beta-merchantrecruitment-update-04MAY23\";O:8:\"stdClass\":8:{s:4:\"slug\";s:46:\"woopay-beta-merchantrecruitment-update-04MAY23\";s:4:\"type\";s:4:\"info\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:61:\"Increase conversions with WooPay — our fastest checkout yet\";s:7:\"content\";s:321:\"WooPay, a new express checkout feature built into WooCommerce Payments, is <b>now available</b> — and you’re invited to try it. \r\n<br /><br />\r\n<b>Boost conversions</b> by offering your customers a simple, secure way to pay with a <b>single click</b>.\r\n<br /><br />\r\n<b>Update WooCommerce Payments</b> to get started.\";}}s:7:\"actions\";a:2:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:52:\"woopay-beta-merchantrecruitment-update-WCPay-04MAY23\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:27:\"Update WooCommerce Payments\";}}s:3:\"url\";s:29:\"plugins.php?plugin_status=all\";s:18:\"url_is_admin_query\";b:1;s:10:\"is_primary\";b:1;s:6:\"status\";s:10:\"unactioned\";}i:1;O:8:\"stdClass\":6:{s:4:\"name\";s:55:\"woopay-beta-merchantrecruitment-update-activate-04MAY23\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:15:\"Activate WooPay\";}}s:3:\"url\";s:93:\"admin.php?page=wc-settings&tab=checkout&section=woocommerce_payments&method=platform_checkout\";s:18:\"url_is_admin_query\";b:1;s:10:\"is_primary\";b:0;s:6:\"status\";s:8:\"actioned\";}}s:5:\"rules\";a:3:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:18:\"publish_after_time\";s:13:\"publish_after\";s:19:\"2023-05-04 18:00:06\";}i:1;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:20:\"woocommerce-payments\";s:8:\"operator\";s:1:\"<\";s:7:\"version\";s:5:\"5.8.1\";}i:2;O:8:\"stdClass\":2:{s:4:\"type\";s:2:\"or\";s:8:\"operands\";a:144:{i:0;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:36:\"http://pieroatomic3.wpcomstaging.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:1;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:35:\"https://www.handinhandparenting.org\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:2;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:25:\"http://pritikinfoods.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:3;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:25:\"https://utahrecsports.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:4;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:25:\"https://www.hunterpta.org\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:5;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:26:\"http://www.smokinbeans.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:6;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:23:\"https://shulabeauty.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:7;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:30:\"https://bingeworthytvmerch.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:8;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:31:\"http://s91.4d8.myftpupload.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:9;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:33:\"https://stephanienicolenorris.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:10;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:23:\"http://aliensshirt.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:11;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:36:\"https://libertyordeathapparelllc.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:12;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:28:\"https://cowboystatedaily.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:13;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:42:\"https://fundrgear.com/beckendorffathletics\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:14;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:50:\"http://wordpress-528155-2231771.cloudwaysapps.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:15;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:31:\"https://checkout.sohaprice.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:16;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:23:\"https://amadozstore.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:17;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:19:\"http://eliwehbe.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:18;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:19:\"http://lunabra.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:19;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:18:\"https://nptixx.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:20;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:27:\"http://louisianapantry.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:21;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:24:\"https://aplusanatomy.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:22;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:19:\"https://wildsvg.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:23;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:22:\"https://bleachfilm.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:24;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:25:\"https://benabeautyspa.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:25;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:47:\"http://barrettfitnessenterprises.wordpress.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:26;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:24:\"https://goabroadable.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:27;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:26:\"https://alexoathletica.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:28;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:25:\"https://www.fourpurls.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:29;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:29:\"https://www.hagmannreport.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:30;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:27:\"https://busybeeorganics.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:31;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:24:\"https://nallsproduce.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:32;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:23:\"https://bigtimebats.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:33;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:33:\"https://shop.cookingwithkarli.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:34;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:33:\"https://www.queenofpeacemedia.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:35;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:29:\"https://bigjohnsbeefjerky.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:36;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:24:\"https://paperbyjaney.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:37;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:31:\"https://carolinarisemembers.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:38;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:26:\"https://veroticaevents.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:39;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:18:\"https://spira.farm\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:40;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:25:\"https://endlessassist.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:41;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:26:\"https://betterlifeblog.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:42;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:26:\"https://ashleighrenard.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:43;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:28:\"https://www.turkeymerck.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:44;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:23:\"http://carfiershop.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:45;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:31:\"https://normanmusicfestival.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:46;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:35:\"http://www.olfactoryfactoryllc.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:47;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:38:\"https://fundrgear.com/anthonyathletics\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:48;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:40:\"http://tkechilifestdotcom.wordpress.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:49;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:15:\"No results foun\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:50;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:16:\"https://pvsa.org\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:51;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:22:\"http://becbatop.store/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:52;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:26:\"https://wwmeconvention.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:53;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:17:\"https://lswmp.org\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:54;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:25:\"https://bubbaskincare.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:55;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:19:\"http://fusango.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:56;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:25:\"https://vcdpostershow.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:57;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:26:\"http://www.rileysribz.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:58;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:30:\"https://www.fakeultrasound.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:59;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:31:\"http://onelongfellowsquare.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:60;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:19:\"http://agodpod.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:61;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:40:\"https://fundrgear.com/littleladybulldogs\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:62;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:25:\"https://thecirclelarp.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:63;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:19:\"https://byletam.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:64;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:25:\"https://www.nachonite.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:65;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:33:\"http://designerdab.wordpress.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:66;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:38:\"http://box2151.temp.domains/~lovebyt2/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:67;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:37:\"https://shortporchbaseballcompany.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:68;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:23:\"http://distancecme.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:69;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:29:\"https://middleswarthchips.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:70;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:24:\"https://railblazausa.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:71;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:30:\"https://mikescountrymeats.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:72;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:26:\"https://www.woodenshoe.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:73;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:27:\"https://rockspringscafe.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:74;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:28:\"http://footballfangears.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:75;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:19:\"https://ybtoner.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:76;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:24:\"https://simplyclayyy.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:77;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:26:\"https://naturecreation.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:78;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:26:\"http://marisrodriguez.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:79;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:31:\"https://asanteinternational.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:80;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:21:\"https://theatre55.org\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:81;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:37:\"https://carolynscreativeclassroom.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:82;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:23:\"https://www.miiriya.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:83;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:22:\"http://trendyds.store/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:84;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:26:\"https://wooedbythefood.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:85;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:27:\"https://papasteamstores.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:86;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:20:\"http://omdurags.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:87;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:27:\"https://happydogbarkery.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:88;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:19:\"http://kitbose.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:89;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:24:\"https://seamossdeals.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:90;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:19:\"https://zeatala.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:91;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:27:\"https://shop.atwaterffa.org\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:92;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:37:\"http://www.brettsfirstresponders.org/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:93;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:23:\"http://shirtactive.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:94;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:24:\"https://boerneparade.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:95;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:23:\"https://zorahshrine.org\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:96;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:25:\"https://davidcervenka.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:97;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:24:\"https://addisjourney.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:98;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:18:\"https://305ycle.cc\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:99;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:45:\"http://yourworstnightmarehaunt.wordpress.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:100;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:26:\"http://westcoastpreps.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:101;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:30:\"https://checkout.sohaking.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:102;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:36:\"https://www.theunshakeablepundit.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:103;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:31:\"https://www.stellaandchewys.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:104;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:27:\"https://www.raywhitcomb.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:105;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:39:\"http://constellationtheatercompany.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:106;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:23:\"https://stacynguyen.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:107;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:46:\"https://fundrgear.com/lakecreekgirlsbasketball\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:108;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:28:\"https://winslowartcenter.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:109;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:23:\"https://flufftastik.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:110;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:24:\"https://mygreenbeach.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:111;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:22:\"http://ebookvip.store/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:112;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:41:\"https://fundrgear.com/needvillevolleyball\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:113;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:25:\"https://bifocalmedia.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:114;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:16:\"https://clrc.org\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:115;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:21:\"https://hyperpins.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:116;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:45:\"https://fundrgear.com/lakecreekboysbasketball\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:117;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:33:\"https://fundrgear.com/kparktennis\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:118;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:25:\"https://mogadorspices.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:119;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:35:\"https://fundrgear.com/newcaneytrack\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:120;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:23:\"https://sigmascents.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:121;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:25:\"http://bsharisemoore.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:122;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:21:\"https://morrflate.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:123;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:23:\"https://westbrosinc.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:124;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:28:\"https://shop.danceplexaz.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:125;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:20:\"https://chikepod.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:126;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:28:\"https://www.advanahealth.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:127;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:18:\"https://tatter.org\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:128;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:33:\"https://greatawakeningbrewing.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:129;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:29:\"https://waterfowlfestival.org\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:130;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:27:\"https://preppedwellness.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:131;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:23:\"https://events.thus.org\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:132;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:37:\"http://stormtide.thefifthtrooper.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:133;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:24:\"https://www.tabsynth.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:134;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:34:\"http://staging.fliptheswitchon.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:135;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:23:\"https://duffysdough.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:136;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:27:\"https://fitfoodieliving.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:137;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:30:\"https://breakerbrotherstcg.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:138;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:22:\"https://andymation.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:139;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:26:\"https://recklessmetals.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:140;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:22:\"https://sophielark.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:141;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:26:\"http://wp.arabtherapy.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:142;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:29:\"https://creativeappliques.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:143;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:20:\"https://altitude.win\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}}}}}s:46:\"woopay-beta-existingmerchants-noaction-27APR23\";O:8:\"stdClass\":8:{s:4:\"slug\";s:46:\"woopay-beta-existingmerchants-noaction-27APR23\";s:4:\"type\";s:4:\"info\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:15:\"WooPay is back!\";s:7:\"content\";s:361:\"Thanks for previously trying WooPay, the<b> express checkout feature</b> built into WooCommerce Payments. We’re excited to announce that <b>WooPay availability has resumed</b>. No action is required on your part.\r\n<br /><br />\r\nYou can now <b>continue boosting conversions</b> by offering your customers a simple, secure way to pay with a <b>single click</b>.\";}}s:7:\"actions\";a:1:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:60:\"woopay-beta-existingmerchants-noaction-documentation-27APR23\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:13:\"Documentation\";}}s:3:\"url\";s:178:\"https://woocommerce.com/document/woopay-merchant-documentation/?utm_source=inbox_note&utm_medium=product&utm_campaign=woopay-beta-existingmerchants-noaction-documentation-27APR23\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:1;s:6:\"status\";s:8:\"actioned\";}}s:5:\"rules\";a:3:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:18:\"publish_after_time\";s:13:\"publish_after\";s:19:\"2023-04-26 19:00:23\";}i:1;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:20:\"woocommerce-payments\";s:8:\"operator\";s:2:\">=\";s:7:\"version\";s:5:\"5.8.0\";}i:2;O:8:\"stdClass\":2:{s:4:\"type\";s:2:\"or\";s:8:\"operands\";a:38:{i:0;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:35:\"https://store.startingstrongman.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:1;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:26:\"https://joacreativelab.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:2;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:33:\"https://www.pureskincaresalon.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:3;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:25:\"https://mariablaquier.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:4;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:25:\"https://getprodigital.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:5;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:30:\"https://dalefrickeholsters.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:6;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:18:\"https://sstour.org\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:7;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:22:\"https://tk-txstore.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:8;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:30:\"https://humanspiritproject.org\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:9;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:23:\"https://viradadrums.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:10;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:26:\"https://rosariumblends.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:11;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:27:\"https://organicskincare.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:12;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:27:\"https://stuckpigmedical.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:13;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:33:\"https://www.seattlegiftbasket.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:14;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:31:\"https://www.cloverandviolet.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:15;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:25:\"https://gvscholarship.org\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:16;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:22:\"https://yesimadiva.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:17;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:31:\"http://www.old.jmtrashbgone.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:18;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:28:\"https://victorialansford.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:19;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:24:\"https://craftcosplay.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:20;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:29:\"https://thefossilexchange.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:21;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:24:\"https://nextgenspeed.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:22;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:27:\"https://cappellarecords.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:23;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:29:\"https://ontimesupermarket.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:24;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:20:\"https://new2knox.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:25;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:25:\"https://lovestudiollc.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:26;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:26:\"https://thehivelivebox.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:27;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:29:\"https://socceruniformkits.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:28;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:25:\"https://willowcreativ.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:29;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:22:\"https://summitprep.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:30;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:17:\"https://howda.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:31;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:29:\"https://soapavenuecompany.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:32;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:36:\"https://subsbox.mystagingwebsite.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:33;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:26:\"https://wifflebreakers.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:34;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:30:\"https://www.mps-outfitters.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:35;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:34:\"https://howardharrisassociates.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:36;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:27:\"https://bettersaferadio.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:37;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:21:\"https://bunnyluna.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}}}}}s:44:\"woopay-beta-existingmerchants-update-27APR23\";O:8:\"stdClass\":8:{s:4:\"slug\";s:44:\"woopay-beta-existingmerchants-update-27APR23\";s:4:\"type\";s:4:\"info\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:15:\"WooPay is back!\";s:7:\"content\";s:368:\"Thanks for previously trying WooPay, the <b>express checkout feature</b> built into WooCommerce Payments. We’re excited to announce that <b>WooPay availability has resumed</b>.\r\n<br /><br />\r\n\r\nUpdate to the latest WooCommerce Payments version to <b>continue boosting conversions</b> by offering your customers a simple, secure way to pay with a <b>single click</b>.\";}}s:7:\"actions\";a:1:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:50:\"woopay-beta-existingmerchants-update-WCPay-27APR23\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:27:\"Update WooCommerce Payments\";}}s:3:\"url\";s:29:\"plugins.php?plugin_status=all\";s:18:\"url_is_admin_query\";b:1;s:10:\"is_primary\";b:1;s:6:\"status\";s:8:\"actioned\";}}s:5:\"rules\";a:3:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:18:\"publish_after_time\";s:13:\"publish_after\";s:19:\"2023-04-26 19:00:08\";}i:1;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:20:\"woocommerce-payments\";s:8:\"operator\";s:1:\"<\";s:7:\"version\";s:5:\"5.8.0\";}i:2;O:8:\"stdClass\":2:{s:4:\"type\";s:2:\"or\";s:8:\"operands\";a:38:{i:0;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:35:\"https://store.startingstrongman.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:1;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:26:\"https://joacreativelab.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:2;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:33:\"https://www.pureskincaresalon.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:3;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:25:\"https://mariablaquier.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:4;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:25:\"https://getprodigital.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:5;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:30:\"https://dalefrickeholsters.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:6;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:18:\"https://sstour.org\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:7;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:22:\"https://tk-txstore.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:8;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:30:\"https://humanspiritproject.org\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:9;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:23:\"https://viradadrums.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:10;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:26:\"https://rosariumblends.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:11;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:27:\"https://organicskincare.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:12;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:27:\"https://stuckpigmedical.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:13;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:33:\"https://www.seattlegiftbasket.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:14;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:31:\"https://www.cloverandviolet.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:15;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:25:\"https://gvscholarship.org\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:16;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:22:\"https://yesimadiva.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:17;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:31:\"http://www.old.jmtrashbgone.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:18;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:28:\"https://victorialansford.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:19;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:24:\"https://craftcosplay.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:20;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:29:\"https://thefossilexchange.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:21;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:24:\"https://nextgenspeed.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:22;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:27:\"https://cappellarecords.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:23;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:29:\"https://ontimesupermarket.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:24;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:20:\"https://new2knox.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:25;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:25:\"https://lovestudiollc.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:26;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:26:\"https://thehivelivebox.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:27;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:29:\"https://socceruniformkits.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:28;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:25:\"https://willowcreativ.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:29;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:22:\"https://summitprep.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:30;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:17:\"https://howda.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:31;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:29:\"https://soapavenuecompany.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:32;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:36:\"https://subsbox.mystagingwebsite.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:33;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:26:\"https://wifflebreakers.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:34;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:30:\"https://www.mps-outfitters.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:35;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:34:\"https://howardharrisassociates.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:36;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:27:\"https://bettersaferadio.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:37;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:21:\"https://bunnyluna.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}}}}}s:45:\"woopay-beta-merchantrecruitment-short-04MAY23\";O:8:\"stdClass\":8:{s:4:\"slug\";s:45:\"woopay-beta-merchantrecruitment-short-04MAY23\";s:4:\"type\";s:4:\"info\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:61:\"Increase conversions with WooPay — our fastest checkout yet\";s:7:\"content\";s:181:\"Be one of the first to try WooPay, a new express checkout feature for WooCommerce Payments. \r\n<br><br>\r\n<b>Boost conversions</b> by letting customers pay with a <b>single click</b>.\";}}s:7:\"actions\";a:2:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:54:\"woopay-beta-merchantrecruitment-short-activate-04MAY23\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:15:\"Activate WooPay\";}}s:3:\"url\";s:93:\"admin.php?page=wc-settings&tab=checkout&section=woocommerce_payments&method=platform_checkout\";s:18:\"url_is_admin_query\";b:1;s:10:\"is_primary\";b:1;s:6:\"status\";s:8:\"actioned\";}i:1;O:8:\"stdClass\":6:{s:4:\"name\";s:64:\"woopay-beta-merchantrecruitment-short-activate-learnmore-04MAY23\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:10:\"Learn More\";}}s:3:\"url\";s:161:\"https://woocommerce.com/woopay-businesses/?utm_source=inbox_note&utm_medium=product&utm_campaign=woopay-beta-merchantrecruitment-short-activate-learnmore-04MAY23\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:0;s:6:\"status\";s:8:\"actioned\";}}s:5:\"rules\";a:3:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:18:\"publish_after_time\";s:13:\"publish_after\";s:19:\"2023-05-04 18:00:36\";}i:1;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:20:\"woocommerce-payments\";s:8:\"operator\";s:2:\">=\";s:7:\"version\";s:5:\"5.8.1\";}i:2;O:8:\"stdClass\":2:{s:4:\"type\";s:2:\"or\";s:8:\"operands\";a:144:{i:0;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:37:\"http://pieroatomic3.wpcomstaging.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:1;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:29:\"https://www.bluebeautifly.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:2;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:30:\"http://indianrivernatural.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:3;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:28:\"https://fouroaksproducts.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:4;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:14:\"https://acb.la\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:5;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:32:\"https://www.sweetpotatoplant.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:6;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:30:\"http://www.gocaseyourself.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:7;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:18:\"http://laugun.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:8;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:28:\"https://nebraskadaybyday.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:9;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:28:\"https://vintagemarche727.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:10;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:17:\"https://kohai.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:11;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:21:\"https://gracegaze.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:12;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:25:\"https://aliensmeaning.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:13;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:29:\"https://myheritagegardens.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:14;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:25:\"http://shopmoresport.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:15;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:19:\"https://oladino.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:16;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:25:\"https://frogjumpstore.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:17;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:27:\"https://cagedthundermma.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:18;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:40:\"https://fundrgear.com/mcelwainelementary\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:19;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:16:\"https://mgco.org\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:20;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:20:\"https://500gp.io/pay\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:21;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:28:\"https://waterglassslimes.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:22;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:23:\"http://antiqueful.shop/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:23;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:24:\"https://deeperkidmin.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:24;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:45:\"https://fundrgear.com/cyspringsboysbasketball\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:25;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:27:\"https://houseofminifigs.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:26;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:38:\"http://box2273.temp.domains/~dreambx2/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:27;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:25:\"http://madebymixture.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:28;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:29:\"https://reliabletrash.company\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:29;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:27:\"https://www.daddybutter.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:30;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:29:\"https://circleqessentials.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:31;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:24:\"https://garlicbraids.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:32;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:21:\"https://fbdonline.org\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:33;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:22:\"https://galaxysedge.us\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:34;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:28:\"https://duckduckbeetfarm.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:35;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:27:\"https://varsitygraphics.net\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:36;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:25:\"http://jademackenzie.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:37;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:32:\"https://kristysketolifestyle.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:38;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:31:\"http://covid19criticalcare.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:39;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:24:\"https://parkviewprep.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:40;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:21:\"https://rock-fest.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:41;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:35:\"http://fillinxsolutions.com/etarix/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:42;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:24:\"https://doughremitx.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:43;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:33:\"https://www.montanafiddlecamp.org\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:44;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:24:\"https://fococomiccon.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:45;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:27:\"https://patricendouglas.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:46;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:18:\"http://hectue.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:47;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:25:\"https://montanamaxbbq.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:48;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:21:\"http://smellzoom.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:49;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:30:\"https://uptowne.theoandson.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:50;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:24:\"http://superbasic.store/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:51;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:21:\"http://ppodstore.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:52;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:20:\"http://kerenzan.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:53;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:23:\"https://a13bargains.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:54;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:19:\"https://colorgr.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:55;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:41:\"https://mindbodysoulcandles.com/Charlotte\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:56;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:28:\"https://peaceloveandadhd.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:57;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:23:\"http://seymoursmash.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:58;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:24:\"https://mwtournament.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:59;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:43:\"https://fundrgear.com/beckendorffgirlstrack\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:60;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:15:\"No results foun\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:61;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:23:\"http://allswellnyc.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:62;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:37:\"https://childoftheredwoodsmembers.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:63;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:41:\"https://fundrgear.com/grandoaksvolleyball\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:64;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:35:\"https://www.newhollandrochester.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:65;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:28:\"https://www.purplecatvet.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:66;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:39:\"https://www.mustangmountaincoaster.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:67;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:23:\"https://www.roccanj.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:68;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:24:\"https://www.teerico.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:69;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:29:\"https://passportunlimited.net\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:70;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:30:\"https://www.paladincards20.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:71;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:24:\"http://giantshorties.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:72;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:24:\"https://visualsports.biz\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:73;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:37:\"https://thefreakinricanrestaurant.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:74;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:37:\"http://arequestionscom.wordpress.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:75;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:31:\"https://pt.tktxcompanystore.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:76;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:27:\"https://fitfoodiechicks.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:77;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:20:\"http://nutoshop.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:78;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:27:\"https://backwoodzhiphop.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:79;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:23:\"https://gartapparel.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:80;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:30:\"https://bodega.badiaspices.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:81;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:24:\"https://rampartrange.org\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:82;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:18:\"http://teeuni.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:83;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:27:\"https://bearsinthealley.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:84;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:22:\"http://vitalbooks.net/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:85;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:34:\"https://hair-free-hair-remover.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:86;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:25:\"https://gangtaynails.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:87;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:26:\"http://crochetfoundry.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:88;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:26:\"https://westcoastbelts.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:89;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:31:\"http://payment.sundryfiles.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:90;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:33:\"http://ccadunkirk.mudhenmama.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:91;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:26:\"https://desertsupercup.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:92;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:24:\"https://shops-eminem.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:93;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:27:\"https://75yearsofracing.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:94;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:18:\"http://tixpls.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:95;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:44:\"http://legacyoutfitters.org/banquet/raffles/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:96;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:27:\"http://91170e9fc9.nxcli.io/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:97;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:27:\"https://beachwayrentals.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:98;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:26:\"https://thehivelivebox.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:99;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:16:\"https://esd.camp\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:100;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:24:\"https://mfkgamecalls.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:101;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:20:\"https://1greatce.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:102;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:25:\"https://www.luthyouth.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:103;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:34:\"https://electionintegrityidaho.org\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:104;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:20:\"http://renbundle.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:105;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:26:\"http://premierseamoss.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:106;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:19:\"https://teemart.net\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:107;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:40:\"https://fundrgear.com/beckendorffgirlsbb\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:108;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:24:\"https://visiblechild.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:109;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:21:\"http://ebookvital.me/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:110;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:21:\"https://renemarsh.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:111;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:27:\"http://www.eventricate.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:112;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:27:\"https://transgression.party\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:113;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:20:\"http://profadex.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:114;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:28:\"https://mxsbattlegrounds.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:115;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:30:\"https://www.poeinbaltimore.org\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:116;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:19:\"https://freefall.gg\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:117;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:33:\"https://underthechurchhatblog.org\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:118;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:24:\"http://naksparkle.store/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:119;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:32:\"http://bearlyburly.gay/inventory\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:120;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:35:\"https://www.premierboneandjoint.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:121;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:23:\"https://farm-2-bowl.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:122;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:24:\"https://hollandgrill.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:123;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:20:\"https://lividian.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:124;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:29:\"https://www.trainingrange.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:125;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:27:\"http://sarakepskitchen.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:126;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:35:\"https://www.phoenixyouththeatre.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:127;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:24:\"https://drivenarmsco.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:128;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:20:\"http://audiobro.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:129;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:38:\"https://www.iowaabortionaccessfund.org\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:130;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:33:\"http://findthemenu.wordpress.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:131;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:22:\"https://moderndepot.co\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:132;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:30:\"https://granitesupplements.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:133;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:24:\"https://healthyrican.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:134;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:27:\"http://utest.edsandbox.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:135;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:20:\"http://c-pounds.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:136;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:32:\"https://littleschoolofsmiths.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:137;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:23:\"https://goblinstyle.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:138;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:26:\"https://proper-testing.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:139;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:30:\"https://www.cosafoundation.org\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:140;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:26:\"https://farmsteadboxes.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:141;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:27:\"http://fundraise4books.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:142;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:22:\"https://norskenook.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:143;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:20:\"https://cajulove.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}}}}}s:52:\"woopay-beta-merchantrecruitment-short-update-04MAY23\";O:8:\"stdClass\":8:{s:4:\"slug\";s:52:\"woopay-beta-merchantrecruitment-short-update-04MAY23\";s:4:\"type\";s:4:\"info\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:61:\"Increase conversions with WooPay — our fastest checkout yet\";s:7:\"content\";s:227:\"Be one of the first to try WooPay, our new express checkout feature. <br><b>Boost conversions</b> by letting customers pay with a <b>single click</b>. <br><br>Update to the latest version of WooCommerce Payments to get started.\";}}s:7:\"actions\";a:2:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:58:\"woopay-beta-merchantrecruitment-short-update-WCPay-04MAY23\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:27:\"Update WooCommerce Payments\";}}s:3:\"url\";s:29:\"plugins.php?plugin_status=all\";s:18:\"url_is_admin_query\";b:1;s:10:\"is_primary\";b:1;s:6:\"status\";s:10:\"unactioned\";}i:1;O:8:\"stdClass\":6:{s:4:\"name\";s:61:\"woopay-beta-merchantrecruitment-short-update-activate-04MAY23\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:15:\"Activate WooPay\";}}s:3:\"url\";s:93:\"admin.php?page=wc-settings&tab=checkout&section=woocommerce_payments&method=platform_checkout\";s:18:\"url_is_admin_query\";b:1;s:10:\"is_primary\";b:0;s:6:\"status\";s:8:\"actioned\";}}s:5:\"rules\";a:3:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:18:\"publish_after_time\";s:13:\"publish_after\";s:19:\"2023-05-04 18:00:20\";}i:1;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:20:\"woocommerce-payments\";s:8:\"operator\";s:1:\"<\";s:7:\"version\";s:5:\"5.8.1\";}i:2;O:8:\"stdClass\":2:{s:4:\"type\";s:2:\"or\";s:8:\"operands\";a:144:{i:0;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:36:\"http://pieroatomic3.wpcomstaging.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:1;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:29:\"https://www.bluebeautifly.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:2;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:30:\"http://indianrivernatural.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:3;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:28:\"https://fouroaksproducts.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:4;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:14:\"https://acb.la\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:5;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:32:\"https://www.sweetpotatoplant.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:6;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:30:\"http://www.gocaseyourself.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:7;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:18:\"http://laugun.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:8;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:28:\"https://nebraskadaybyday.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:9;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:28:\"https://vintagemarche727.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:10;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:17:\"https://kohai.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:11;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:21:\"https://gracegaze.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:12;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:25:\"https://aliensmeaning.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:13;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:29:\"https://myheritagegardens.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:14;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:25:\"http://shopmoresport.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:15;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:19:\"https://oladino.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:16;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:25:\"https://frogjumpstore.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:17;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:27:\"https://cagedthundermma.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:18;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:40:\"https://fundrgear.com/mcelwainelementary\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:19;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:16:\"https://mgco.org\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:20;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:20:\"https://500gp.io/pay\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:21;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:28:\"https://waterglassslimes.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:22;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:23:\"http://antiqueful.shop/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:23;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:24:\"https://deeperkidmin.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:24;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:45:\"https://fundrgear.com/cyspringsboysbasketball\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:25;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:27:\"https://houseofminifigs.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:26;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:38:\"http://box2273.temp.domains/~dreambx2/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:27;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:25:\"http://madebymixture.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:28;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:29:\"https://reliabletrash.company\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:29;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:27:\"https://www.daddybutter.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:30;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:29:\"https://circleqessentials.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:31;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:24:\"https://garlicbraids.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:32;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:21:\"https://fbdonline.org\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:33;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:22:\"https://galaxysedge.us\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:34;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:28:\"https://duckduckbeetfarm.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:35;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:27:\"https://varsitygraphics.net\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:36;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:25:\"http://jademackenzie.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:37;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:32:\"https://kristysketolifestyle.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:38;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:31:\"http://covid19criticalcare.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:39;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:24:\"https://parkviewprep.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:40;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:21:\"https://rock-fest.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:41;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:35:\"http://fillinxsolutions.com/etarix/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:42;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:24:\"https://doughremitx.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:43;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:33:\"https://www.montanafiddlecamp.org\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:44;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:24:\"https://fococomiccon.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:45;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:27:\"https://patricendouglas.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:46;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:18:\"http://hectue.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:47;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:25:\"https://montanamaxbbq.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:48;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:21:\"http://smellzoom.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:49;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:30:\"https://uptowne.theoandson.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:50;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:24:\"http://superbasic.store/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:51;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:21:\"http://ppodstore.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:52;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:20:\"http://kerenzan.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:53;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:23:\"https://a13bargains.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:54;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:19:\"https://colorgr.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:55;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:41:\"https://mindbodysoulcandles.com/Charlotte\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:56;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:28:\"https://peaceloveandadhd.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:57;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:23:\"http://seymoursmash.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:58;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:24:\"https://mwtournament.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:59;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:43:\"https://fundrgear.com/beckendorffgirlstrack\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:60;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:15:\"No results foun\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:61;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:23:\"http://allswellnyc.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:62;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:37:\"https://childoftheredwoodsmembers.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:63;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:41:\"https://fundrgear.com/grandoaksvolleyball\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:64;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:35:\"https://www.newhollandrochester.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:65;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:28:\"https://www.purplecatvet.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:66;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:39:\"https://www.mustangmountaincoaster.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:67;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:23:\"https://www.roccanj.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:68;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:24:\"https://www.teerico.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:69;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:29:\"https://passportunlimited.net\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:70;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:30:\"https://www.paladincards20.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:71;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:24:\"http://giantshorties.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:72;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:24:\"https://visualsports.biz\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:73;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:37:\"https://thefreakinricanrestaurant.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:74;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:37:\"http://arequestionscom.wordpress.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:75;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:31:\"https://pt.tktxcompanystore.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:76;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:27:\"https://fitfoodiechicks.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:77;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:20:\"http://nutoshop.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:78;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:27:\"https://backwoodzhiphop.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:79;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:23:\"https://gartapparel.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:80;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:30:\"https://bodega.badiaspices.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:81;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:24:\"https://rampartrange.org\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:82;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:18:\"http://teeuni.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:83;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:27:\"https://bearsinthealley.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:84;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:22:\"http://vitalbooks.net/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:85;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:34:\"https://hair-free-hair-remover.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:86;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:25:\"https://gangtaynails.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:87;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:26:\"http://crochetfoundry.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:88;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:26:\"https://westcoastbelts.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:89;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:31:\"http://payment.sundryfiles.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:90;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:33:\"http://ccadunkirk.mudhenmama.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:91;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:26:\"https://desertsupercup.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:92;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:24:\"https://shops-eminem.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:93;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:27:\"https://75yearsofracing.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:94;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:18:\"http://tixpls.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:95;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:44:\"http://legacyoutfitters.org/banquet/raffles/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:96;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:27:\"http://91170e9fc9.nxcli.io/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:97;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:27:\"https://beachwayrentals.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:98;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:26:\"https://thehivelivebox.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:99;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:16:\"https://esd.camp\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:100;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:24:\"https://mfkgamecalls.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:101;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:20:\"https://1greatce.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:102;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:25:\"https://www.luthyouth.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:103;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:34:\"https://electionintegrityidaho.org\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:104;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:20:\"http://renbundle.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:105;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:26:\"http://premierseamoss.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:106;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:19:\"https://teemart.net\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:107;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:40:\"https://fundrgear.com/beckendorffgirlsbb\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:108;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:24:\"https://visiblechild.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:109;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:21:\"http://ebookvital.me/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:110;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:21:\"https://renemarsh.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:111;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:27:\"http://www.eventricate.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:112;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:27:\"https://transgression.party\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:113;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:20:\"http://profadex.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:114;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:28:\"https://mxsbattlegrounds.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:115;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:30:\"https://www.poeinbaltimore.org\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:116;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:19:\"https://freefall.gg\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:117;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:33:\"https://underthechurchhatblog.org\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:118;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:24:\"http://naksparkle.store/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:119;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:32:\"http://bearlyburly.gay/inventory\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:120;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:35:\"https://www.premierboneandjoint.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:121;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:23:\"https://farm-2-bowl.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:122;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:24:\"https://hollandgrill.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:123;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:20:\"https://lividian.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:124;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:29:\"https://www.trainingrange.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:125;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:27:\"http://sarakepskitchen.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:126;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:35:\"https://www.phoenixyouththeatre.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:127;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:24:\"https://drivenarmsco.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:128;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:20:\"http://audiobro.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:129;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:38:\"https://www.iowaabortionaccessfund.org\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:130;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:33:\"http://findthemenu.wordpress.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:131;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:22:\"https://moderndepot.co\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:132;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:30:\"https://granitesupplements.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:133;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:24:\"https://healthyrican.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:134;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:27:\"http://utest.edsandbox.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:135;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:20:\"http://c-pounds.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:136;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:32:\"https://littleschoolofsmiths.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:137;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:23:\"https://goblinstyle.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:138;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:26:\"https://proper-testing.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:139;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:30:\"https://www.cosafoundation.org\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:140;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:26:\"https://farmsteadboxes.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:141;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:27:\"http://fundraise4books.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:142;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:22:\"https://norskenook.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:143;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:20:\"https://cajulove.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}}}}}s:51:\"woopay-beta-merchantrecruitment-short-06MAY23-TESTA\";O:8:\"stdClass\":8:{s:4:\"slug\";s:51:\"woopay-beta-merchantrecruitment-short-06MAY23-TESTA\";s:4:\"type\";s:4:\"info\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:61:\"Increase conversions with WooPay — our fastest checkout yet\";s:7:\"content\";s:181:\"Be one of the first to try WooPay, a new express checkout feature for WooCommerce Payments. \r\n<br><br>\r\n<b>Boost conversions</b> by letting customers pay with a <b>single click</b>.\";}}s:7:\"actions\";a:2:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:60:\"woopay-beta-merchantrecruitment-short-activate-06MAY23-TESTA\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:22:\"Activate WooPay Test A\";}}s:3:\"url\";s:93:\"admin.php?page=wc-settings&tab=checkout&section=woocommerce_payments&method=platform_checkout\";s:18:\"url_is_admin_query\";b:1;s:10:\"is_primary\";b:1;s:6:\"status\";s:10:\"unactioned\";}i:1;O:8:\"stdClass\":6:{s:4:\"name\";s:70:\"woopay-beta-merchantrecruitment-short-activate-learnmore-06MAY23-TESTA\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:10:\"Learn More\";}}s:3:\"url\";s:167:\"https://woocommerce.com/woopay-businesses/?utm_source=inbox_note&utm_medium=product&utm_campaign=woopay-beta-merchantrecruitment-short-activate-learnmore-06MAY23-TESTA\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:0;s:6:\"status\";s:10:\"unactioned\";}}s:5:\"rules\";a:3:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:18:\"publish_after_time\";s:13:\"publish_after\";s:19:\"2023-05-05 00:01:32\";}i:1;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:20:\"woocommerce-payments\";s:8:\"operator\";s:2:\">=\";s:7:\"version\";s:5:\"5.8.1\";}i:2;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:37:\"https://pieroatomic3.wpcomstaging.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}}}s:51:\"woopay-beta-merchantrecruitment-short-06MAY23-TESTB\";O:8:\"stdClass\":8:{s:4:\"slug\";s:51:\"woopay-beta-merchantrecruitment-short-06MAY23-TESTB\";s:4:\"type\";s:4:\"info\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:61:\"Increase conversions with WooPay — our fastest checkout yet\";s:7:\"content\";s:181:\"Be one of the first to try WooPay, a new express checkout feature for WooCommerce Payments. \r\n<br><br>\r\n<b>Boost conversions</b> by letting customers pay with a <b>single click</b>.\";}}s:7:\"actions\";a:2:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:60:\"woopay-beta-merchantrecruitment-short-activate-06MAY23-TESTB\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:22:\"Activate WooPay Test B\";}}s:3:\"url\";s:93:\"admin.php?page=wc-settings&tab=checkout&section=woocommerce_payments&method=platform_checkout\";s:18:\"url_is_admin_query\";b:1;s:10:\"is_primary\";b:1;s:6:\"status\";s:10:\"unactioned\";}i:1;O:8:\"stdClass\":6:{s:4:\"name\";s:70:\"woopay-beta-merchantrecruitment-short-activate-learnmore-06MAY23-TESTA\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:10:\"Learn More\";}}s:3:\"url\";s:167:\"https://woocommerce.com/woopay-businesses/?utm_source=inbox_note&utm_medium=product&utm_campaign=woopay-beta-merchantrecruitment-short-activate-learnmore-06MAY23-TESTA\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:0;s:6:\"status\";s:10:\"unactioned\";}}s:5:\"rules\";a:3:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:18:\"publish_after_time\";s:13:\"publish_after\";s:19:\"2023-05-05 20:58:43\";}i:1;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:20:\"woocommerce-payments\";s:8:\"operator\";s:2:\">=\";s:7:\"version\";s:5:\"5.8.1\";}i:2;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:36:\"http://pieroatomic3.wpcomstaging.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}}}s:51:\"woopay-beta-merchantrecruitment-short-06MAY23-TESTC\";O:8:\"stdClass\":8:{s:4:\"slug\";s:51:\"woopay-beta-merchantrecruitment-short-06MAY23-TESTC\";s:4:\"type\";s:4:\"info\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:61:\"Increase conversions with WooPay — our fastest checkout yet\";s:7:\"content\";s:181:\"Be one of the first to try WooPay, a new express checkout feature for WooCommerce Payments. \r\n<br><br>\r\n<b>Boost conversions</b> by letting customers pay with a <b>single click</b>.\";}}s:7:\"actions\";a:2:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:60:\"woopay-beta-merchantrecruitment-short-activate-06MAY23-TESTC\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:22:\"Activate WooPay Test C\";}}s:3:\"url\";s:93:\"admin.php?page=wc-settings&tab=checkout&section=woocommerce_payments&method=platform_checkout\";s:18:\"url_is_admin_query\";b:1;s:10:\"is_primary\";b:1;s:6:\"status\";s:10:\"unactioned\";}i:1;O:8:\"stdClass\":6:{s:4:\"name\";s:70:\"woopay-beta-merchantrecruitment-short-activate-learnmore-06MAY23-TESTC\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:10:\"Learn More\";}}s:3:\"url\";s:167:\"https://woocommerce.com/woopay-businesses/?utm_source=inbox_note&utm_medium=product&utm_campaign=woopay-beta-merchantrecruitment-short-activate-learnmore-06MAY23-TESTC\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:0;s:6:\"status\";s:10:\"unactioned\";}}s:5:\"rules\";a:3:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:18:\"publish_after_time\";s:13:\"publish_after\";s:19:\"2023-05-05 21:03:33\";}i:1;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:20:\"woocommerce-payments\";s:8:\"operator\";s:2:\">=\";s:7:\"version\";s:5:\"5.8.1\";}i:2;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:38:\"https://pieroatomic3.wpcomstaging.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}}}s:51:\"woopay-beta-merchantrecruitment-short-06MAY23-TESTD\";O:8:\"stdClass\":8:{s:4:\"slug\";s:51:\"woopay-beta-merchantrecruitment-short-06MAY23-TESTD\";s:4:\"type\";s:4:\"info\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:61:\"Increase conversions with WooPay — our fastest checkout yet\";s:7:\"content\";s:181:\"Be one of the first to try WooPay, a new express checkout feature for WooCommerce Payments. \r\n<br><br>\r\n<b>Boost conversions</b> by letting customers pay with a <b>single click</b>.\";}}s:7:\"actions\";a:2:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:60:\"woopay-beta-merchantrecruitment-short-activate-06MAY23-TESTD\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:22:\"Activate WooPay Test D\";}}s:3:\"url\";s:93:\"admin.php?page=wc-settings&tab=checkout&section=woocommerce_payments&method=platform_checkout\";s:18:\"url_is_admin_query\";b:1;s:10:\"is_primary\";b:1;s:6:\"status\";s:10:\"unactioned\";}i:1;O:8:\"stdClass\":6:{s:4:\"name\";s:70:\"woopay-beta-merchantrecruitment-short-activate-learnmore-06MAY23-TESTD\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:10:\"Learn More\";}}s:3:\"url\";s:167:\"https://woocommerce.com/woopay-businesses/?utm_source=inbox_note&utm_medium=product&utm_campaign=woopay-beta-merchantrecruitment-short-activate-learnmore-06MAY23-TESTD\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:0;s:6:\"status\";s:10:\"unactioned\";}}s:5:\"rules\";a:3:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:18:\"publish_after_time\";s:13:\"publish_after\";s:19:\"2023-05-05 21:32:09\";}i:1;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:20:\"woocommerce-payments\";s:8:\"operator\";s:2:\">=\";s:7:\"version\";s:5:\"5.8.1\";}i:2;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:37:\"http://pieroatomic3.wpcomstaging.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}}}s:45:\"woopay-beta-merchantrecruitment-short-09MAY23\";O:8:\"stdClass\":8:{s:4:\"slug\";s:45:\"woopay-beta-merchantrecruitment-short-09MAY23\";s:4:\"type\";s:4:\"info\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:61:\"Increase conversions with WooPay — our fastest checkout yet\";s:7:\"content\";s:181:\"Be one of the first to try WooPay, a new express checkout feature for WooCommerce Payments. \r\n<br><br>\r\n<b>Boost conversions</b> by letting customers pay with a <b>single click</b>.\";}}s:7:\"actions\";a:2:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:61:\"woopay-beta-merchantrecruitment-short-activate-button-09MAY23\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:15:\"Activate WooPay\";}}s:3:\"url\";s:93:\"admin.php?page=wc-settings&tab=checkout&section=woocommerce_payments&method=platform_checkout\";s:18:\"url_is_admin_query\";b:1;s:10:\"is_primary\";b:1;s:6:\"status\";s:10:\"unactioned\";}i:1;O:8:\"stdClass\":6:{s:4:\"name\";s:72:\"woopay-beta-merchantrecruitment-short-activate-learnmore-button2-09MAY23\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:10:\"Learn More\";}}s:3:\"url\";s:169:\"https://woocommerce.com/woopay-businesses/?utm_source=inbox_note&utm_medium=product&utm_campaign=woopay-beta-merchantrecruitment-short-activate-learnmore-button2-09MAY23\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:0;s:6:\"status\";s:10:\"unactioned\";}}s:5:\"rules\";a:4:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:18:\"publish_after_time\";s:13:\"publish_after\";s:19:\"2023-05-08 19:18:44\";}i:1;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:20:\"woocommerce-payments\";s:8:\"operator\";s:2:\">=\";s:7:\"version\";s:5:\"5.8.1\";}i:2;O:8:\"stdClass\":6:{s:4:\"type\";s:6:\"option\";s:12:\"transformers\";a:1:{i:0;O:8:\"stdClass\":2:{s:3:\"use\";s:12:\"dot_notation\";s:9:\"arguments\";O:8:\"stdClass\":1:{s:4:\"path\";s:17:\"platform_checkout\";}}}s:11:\"option_name\";s:41:\"woocommerce_woocommerce_payments_settings\";s:9:\"operation\";s:1:\"=\";s:5:\"value\";s:2:\"no\";s:7:\"default\";b:0;}i:3;O:8:\"stdClass\":6:{s:4:\"type\";s:6:\"option\";s:12:\"transformers\";a:1:{i:0;O:8:\"stdClass\":2:{s:3:\"use\";s:12:\"dot_notation\";s:9:\"arguments\";O:8:\"stdClass\":1:{s:4:\"path\";s:31:\"data.platform_checkout_eligible\";}}}s:11:\"option_name\";s:18:\"wcpay_account_data\";s:9:\"operation\";s:1:\"=\";s:5:\"value\";b:1;s:7:\"default\";b:0;}}}s:52:\"woopay-beta-merchantrecruitment-short-update-09MAY23\";O:8:\"stdClass\":8:{s:4:\"slug\";s:52:\"woopay-beta-merchantrecruitment-short-update-09MAY23\";s:4:\"type\";s:4:\"info\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:61:\"Increase conversions with WooPay — our fastest checkout yet\";s:7:\"content\";s:227:\"Be one of the first to try WooPay, our new express checkout feature. <br><b>Boost conversions</b> by letting customers pay with a <b>single click</b>. <br><br>Update to the latest version of WooCommerce Payments to get started.\";}}s:7:\"actions\";a:2:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:58:\"woopay-beta-merchantrecruitment-short-update-WCPay-09MAY23\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:27:\"Update WooCommerce Payments\";}}s:3:\"url\";s:29:\"plugins.php?plugin_status=all\";s:18:\"url_is_admin_query\";b:1;s:10:\"is_primary\";b:1;s:6:\"status\";s:10:\"unactioned\";}i:1;O:8:\"stdClass\":6:{s:4:\"name\";s:61:\"woopay-beta-merchantrecruitment-short-update-activate-09MAY23\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:15:\"Activate WooPay\";}}s:3:\"url\";s:93:\"admin.php?page=wc-settings&tab=checkout&section=woocommerce_payments&method=platform_checkout\";s:18:\"url_is_admin_query\";b:1;s:10:\"is_primary\";b:0;s:6:\"status\";s:10:\"unactioned\";}}s:5:\"rules\";a:4:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:18:\"publish_after_time\";s:13:\"publish_after\";s:19:\"2023-05-08 19:45:57\";}i:1;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:20:\"woocommerce-payments\";s:8:\"operator\";s:1:\"<\";s:7:\"version\";s:5:\"5.8.1\";}i:2;O:8:\"stdClass\":6:{s:4:\"type\";s:6:\"option\";s:12:\"transformers\";a:1:{i:0;O:8:\"stdClass\":2:{s:3:\"use\";s:12:\"dot_notation\";s:9:\"arguments\";O:8:\"stdClass\":1:{s:4:\"path\";s:17:\"platform_checkout\";}}}s:11:\"option_name\";s:41:\"woocommerce_woocommerce_payments_settings\";s:9:\"operation\";s:1:\"=\";s:5:\"value\";s:2:\"no\";s:7:\"default\";b:0;}i:3;O:8:\"stdClass\":6:{s:4:\"type\";s:6:\"option\";s:12:\"transformers\";a:1:{i:0;O:8:\"stdClass\":2:{s:3:\"use\";s:12:\"dot_notation\";s:9:\"arguments\";O:8:\"stdClass\":1:{s:4:\"path\";s:31:\"data.platform_checkout_eligible\";}}}s:11:\"option_name\";s:18:\"wcpay_account_data\";s:9:\"operation\";s:1:\"=\";s:5:\"value\";b:1;s:7:\"default\";b:0;}}}s:44:\"woocommerce-WCstripe-May-2023-updated-needed\";O:8:\"stdClass\":8:{s:4:\"slug\";s:44:\"woocommerce-WCstripe-May-2023-updated-needed\";s:4:\"type\";s:6:\"update\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:61:\"Action required: Security update of WooCommerce Stripe plugin\";s:7:\"content\";s:183:\"<strong>Your store requires a security update for the WooCommerce Stripe plugin</strong>. Please update the WooCommerce Stripe plugin immediately to address a potential vulnerability.\";}}s:7:\"actions\";a:2:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:60:\"woocommerce-WCStripe-May-2023-updated-needed-Plugin-Settings\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:21:\"See available updates\";}}s:3:\"url\";s:29:\"plugins.php?plugin_status=all\";s:18:\"url_is_admin_query\";b:1;s:10:\"is_primary\";b:0;s:6:\"status\";s:10:\"unactioned\";}i:1;O:8:\"stdClass\":6:{s:4:\"name\";s:68:\"woocommerce-WCStripe-May-2023-updated-needed-Plugin-Settings-dismiss\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:7:\"Dismiss\";}}s:3:\"url\";s:1:\"#\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:0;s:6:\"status\";s:8:\"actioned\";}}s:5:\"rules\";a:3:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:18:\"publish_after_time\";s:13:\"publish_after\";s:19:\"2023-05-31 19:54:10\";}i:1;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:26:\"woocommerce-gateway-stripe\";s:8:\"operator\";s:2:\">=\";s:7:\"version\";s:5:\"5.5.0\";}i:2;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:26:\"woocommerce-gateway-stripe\";s:8:\"operator\";s:1:\"<\";s:7:\"version\";s:5:\"7.4.1\";}}}s:47:\"woocommerce-WCPayments-June-2023-updated-needed\";O:8:\"stdClass\":8:{s:4:\"slug\";s:47:\"woocommerce-WCPayments-June-2023-updated-needed\";s:4:\"type\";s:6:\"update\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:56:\"Action required: Security update of WooCommerce Payments\";s:7:\"content\";s:187:\"<strong>Your store requires a security update for the WooCommerce Payments plugin</strong>. Please update the WooCommerce Payments plugin immediately to address a potential vulnerability.\";}}s:7:\"actions\";a:2:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:63:\"woocommerce-WCPayments-June-2023-updated-needed-Plugin-Settings\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:21:\"See available updates\";}}s:3:\"url\";s:29:\"plugins.php?plugin_status=all\";s:18:\"url_is_admin_query\";b:1;s:10:\"is_primary\";b:0;s:6:\"status\";s:10:\"unactioned\";}i:1;O:8:\"stdClass\":6:{s:4:\"name\";s:55:\"woocommerce-WCPayments-June-2023-updated-needed-Dismiss\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:7:\"Dismiss\";}}s:3:\"url\";s:1:\"#\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:0;s:6:\"status\";s:8:\"actioned\";}}s:5:\"rules\";a:20:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:18:\"publish_after_time\";s:13:\"publish_after\";s:19:\"2023-06-06 08:00:52\";}i:1;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:20:\"woocommerce-payments\";s:8:\"operator\";s:2:\">=\";s:7:\"version\";s:5:\"3.2.0\";}i:2;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:20:\"woocommerce-payments\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.2.3\";}i:3;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:20:\"woocommerce-payments\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.3.2\";}i:4;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:20:\"woocommerce-payments\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.4.2\";}i:5;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:20:\"woocommerce-payments\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.5.2\";}i:6;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:20:\"woocommerce-payments\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.6.1\";}i:7;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:20:\"woocommerce-payments\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.7.3\";}i:8;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:20:\"woocommerce-payments\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.8.3\";}i:9;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:20:\"woocommerce-payments\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.9.2\";}i:10;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:20:\"woocommerce-payments\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"5.0.5\";}i:11;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:20:\"woocommerce-payments\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"5.1.4\";}i:12;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:20:\"woocommerce-payments\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"5.2.3\";}i:13;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:20:\"woocommerce-payments\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"5.3.2\";}i:14;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:20:\"woocommerce-payments\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"5.4.2\";}i:15;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:20:\"woocommerce-payments\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"5.5.3\";}i:16;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:20:\"woocommerce-payments\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"5.6.3\";}i:17;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:20:\"woocommerce-payments\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"5.7.1\";}i:18;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:20:\"woocommerce-payments\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"5.8.2\";}i:19;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:20:\"woocommerce-payments\";s:8:\"operator\";s:1:\"<\";s:7:\"version\";s:5:\"5.9.1\";}}}s:52:\"woocommerce-WCSubscriptions-June-2023-updated-needed\";O:8:\"stdClass\":8:{s:4:\"slug\";s:52:\"woocommerce-WCSubscriptions-June-2023-updated-needed\";s:4:\"type\";s:9:\"marketing\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:61:\"Action required: Security update of WooCommerce Subscriptions\";s:7:\"content\";s:197:\"<strong>Your store requires a security update for the WooCommerce Subscriptions plugin</strong>. Please update the WooCommerce Subscriptions plugin immediately to address a potential vulnerability.\";}}s:7:\"actions\";a:2:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:68:\"woocommerce-WCSubscriptions-June-2023-updated-needed-Plugin-Settings\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:21:\"See available updates\";}}s:3:\"url\";s:29:\"plugins.php?plugin_status=all\";s:18:\"url_is_admin_query\";b:1;s:10:\"is_primary\";b:0;s:6:\"status\";s:10:\"unactioned\";}i:1;O:8:\"stdClass\":6:{s:4:\"name\";s:60:\"woocommerce-WCSubscriptions-June-2023-updated-needed-dismiss\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:7:\"Dismiss\";}}s:3:\"url\";s:1:\"#\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:0;s:6:\"status\";s:8:\"actioned\";}}s:5:\"rules\";a:3:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:18:\"publish_after_time\";s:13:\"publish_after\";s:19:\"2023-06-06 08:00:08\";}i:1;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:25:\"woocommerce-subscriptions\";s:8:\"operator\";s:2:\">=\";s:7:\"version\";s:5:\"2.1.0\";}i:2;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:25:\"woocommerce-subscriptions\";s:8:\"operator\";s:2:\"<=\";s:7:\"version\";s:5:\"5.1.2\";}}}s:54:\"woocommerce-WCReturnsWarranty-June-2023-updated-needed\";O:8:\"stdClass\":8:{s:4:\"slug\";s:54:\"woocommerce-WCReturnsWarranty-June-2023-updated-needed\";s:4:\"type\";s:6:\"update\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:87:\"Action required: Security update of WooCommerce Returns and Warranty Requests extension\";s:7:\"content\";s:270:\"<strong>Your store requires a security update for the Returns and Warranty Requests extension</strong>.  Please update to the latest version of the WooCommerce Returns and Warranty Requests extension immediately to address a potential vulnerability discovered on May 31.\";}}s:7:\"actions\";a:2:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:54:\"woocommerce-WCReturnsWarranty-June-2023-updated-needed\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:21:\"See available updates\";}}s:3:\"url\";s:29:\"plugins.php?plugin_status=all\";s:18:\"url_is_admin_query\";b:1;s:10:\"is_primary\";b:0;s:6:\"status\";s:10:\"unactioned\";}i:1;O:8:\"stdClass\":6:{s:4:\"name\";s:54:\"woocommerce-WCReturnsWarranty-June-2023-updated-needed\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:7:\"Dismiss\";}}s:3:\"url\";s:1:\"#\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:0;s:6:\"status\";s:8:\"actioned\";}}s:5:\"rules\";a:2:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:18:\"publish_after_time\";s:13:\"publish_after\";s:19:\"2023-06-02 23:53:57\";}i:1;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:20:\"woocommerce-warranty\";s:8:\"operator\";s:2:\"<=\";s:7:\"version\";s:5:\"2.1.8\";}}}s:42:\"woocommerce-WCOPC-June-2023-updated-needed\";O:8:\"stdClass\":8:{s:4:\"slug\";s:42:\"woocommerce-WCOPC-June-2023-updated-needed\";s:4:\"type\";s:6:\"update\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:65:\"Action required: Security update of WooCommerce One Page Checkout\";s:7:\"content\";s:232:\"<strong>Your shop requires a security update to address a vulnerability in the WooCommerce One Page Checkout extension</strong>. The fix for this vulnerability was released for this extension on June 13th. Please update immediately.\";}}s:7:\"actions\";a:2:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:42:\"woocommerce-WCOPC-June-2023-updated-needed\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:21:\"See available updates\";}}s:3:\"url\";s:29:\"plugins.php?plugin_status=all\";s:18:\"url_is_admin_query\";b:1;s:10:\"is_primary\";b:1;s:6:\"status\";s:8:\"actioned\";}i:1;O:8:\"stdClass\":6:{s:4:\"name\";s:42:\"woocommerce-WCOPC-June-2023-updated-needed\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:7:\"Dismiss\";}}s:3:\"url\";s:1:\"#\";s:18:\"url_is_admin_query\";b:1;s:10:\"is_primary\";b:1;s:6:\"status\";s:8:\"actioned\";}}s:5:\"rules\";a:2:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:18:\"publish_after_time\";s:13:\"publish_after\";s:19:\"2023-06-21 14:05:46\";}i:1;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:29:\"woocommerce-one-page-checkout\";s:8:\"operator\";s:1:\"<\";s:7:\"version\";s:5:\"2.4.0\";}}}s:40:\"woocommerce-WCGC-July-2023-update-needed\";O:8:\"stdClass\":8:{s:4:\"slug\";s:40:\"woocommerce-WCGC-July-2023-update-needed\";s:4:\"type\";s:6:\"update\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:68:\"Action required: Security update of WooCommerce GoCardless Extension\";s:7:\"content\";s:205:\"<strong>Your shop requires a security update to address a vulnerability in the WooCommerce GoCardless extension</strong>. The fix for this vulnerability was released on July 4th. Please update immediately.\";}}s:7:\"actions\";a:2:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:40:\"woocommerce-WCGC-July-2023-update-needed\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:21:\"See available updates\";}}s:3:\"url\";s:29:\"plugins.php?plugin_status=all\";s:18:\"url_is_admin_query\";b:1;s:10:\"is_primary\";b:1;s:6:\"status\";s:10:\"unactioned\";}i:1;O:8:\"stdClass\":6:{s:4:\"name\";s:40:\"woocommerce-WCGC-July-2023-update-needed\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:7:\"Dismiss\";}}s:3:\"url\";s:1:\"#\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:1;s:6:\"status\";s:8:\"actioned\";}}s:5:\"rules\";a:2:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:18:\"publish_after_time\";s:13:\"publish_after\";s:19:\"2023-07-04 15:36:07\";}i:1;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:30:\"woocommerce-gateway-gocardless\";s:8:\"operator\";s:2:\"<=\";s:7:\"version\";s:5:\"2.5.6\";}}}s:27:\"wc_admin_BNPL_WCPay_Q3_2023\";O:8:\"stdClass\":8:{s:4:\"slug\";s:27:\"wc_admin_BNPL_WCPay_Q3_2023\";s:4:\"type\";s:9:\"marketing\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:57:\"Afterpay and Affirm have arrived in WooCommerce Payments!\";s:7:\"content\";s:310:\"Give your customers more power with buy now, pay later from Afterpay and Affirm — now included as part of WooCommerce Payments! With this new integration, you can quickly offer a checkout option that converts sales and boosts average order value, all from within the same payments dashboard you already know.\";}}s:7:\"actions\";a:1:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:27:\"wc_admin_BNPL_WCPay_Q3_2023\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:25:\"Enable buy now, pay later\";}}s:3:\"url\";s:160:\"https://woocommerce.com/?post_type=documentation&p=18734002212927&preview=true&utm_source=inbox_note&utm_medium=product&utm_campaign=wc_admin_BNPL_WCPay_Q3_2023\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:1;s:6:\"status\";s:8:\"actioned\";}}s:5:\"rules\";a:4:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:18:\"publish_after_time\";s:13:\"publish_after\";s:19:\"2023-09-18 20:35:32\";}i:1;O:8:\"stdClass\":2:{s:4:\"type\";s:19:\"publish_before_time\";s:14:\"publish_before\";s:19:\"2023-09-30 23:59:00\";}i:2;O:8:\"stdClass\":2:{s:4:\"type\";s:2:\"or\";s:8:\"operands\";a:2:{i:0;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:9:\"operation\";s:1:\"=\";s:5:\"value\";s:2:\"US\";}i:1;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:9:\"operation\";s:1:\"=\";s:5:\"value\";s:2:\"CA\";}}}i:3;O:8:\"stdClass\":2:{s:4:\"type\";s:17:\"plugins_activated\";s:7:\"plugins\";a:1:{i:0;s:20:\"woocommerce-payments\";}}}}s:31:\"wc_admin_afterpay_WCPay_Q3_2023\";O:8:\"stdClass\":8:{s:4:\"slug\";s:31:\"wc_admin_afterpay_WCPay_Q3_2023\";s:4:\"type\";s:9:\"marketing\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:45:\"Afterpay has arrived in WooCommerce Payments!\";s:7:\"content\";s:299:\"Give your customers more power with buy now, pay later from Afterpay — now included as part of WooCommerce Payments! With this new integration, you can quickly offer a checkout option that converts sales and boosts average order value, all from within the same payments dashboard you already know.\";}}s:7:\"actions\";a:1:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:31:\"wc_admin_afterpay_WCPay_Q3_2023\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:25:\"Enable buy now, pay later\";}}s:3:\"url\";s:164:\"https://woocommerce.com/?post_type=documentation&p=18734002212927&preview=true&utm_source=inbox_note&utm_medium=product&utm_campaign=wc_admin_afterpay_WCPay_Q3_2023\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:1;s:6:\"status\";s:8:\"actioned\";}}s:5:\"rules\";a:4:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:18:\"publish_after_time\";s:13:\"publish_after\";s:19:\"2023-09-18 20:44:11\";}i:1;O:8:\"stdClass\":2:{s:4:\"type\";s:19:\"publish_before_time\";s:14:\"publish_before\";s:19:\"2023-09-30 23:59:00\";}i:2;O:8:\"stdClass\":2:{s:4:\"type\";s:2:\"or\";s:8:\"operands\";a:3:{i:0;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:9:\"operation\";s:1:\"=\";s:5:\"value\";s:2:\"GB\";}i:1;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:9:\"operation\";s:1:\"=\";s:5:\"value\";s:2:\"AU\";}i:2;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:9:\"operation\";s:1:\"=\";s:5:\"value\";s:2:\"NZ\";}}}i:3;O:8:\"stdClass\":2:{s:4:\"type\";s:17:\"plugins_activated\";s:7:\"plugins\";a:1:{i:0;s:19:\"woocommere-payments\";}}}}s:48:\"woocommerce-shipping-fedex-api-outage-2023-07-16\";O:8:\"stdClass\":8:{s:4:\"slug\";s:48:\"woocommerce-shipping-fedex-api-outage-2023-07-16\";s:4:\"type\";s:7:\"warning\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:40:\"Scheduled FedEx API outage — July 2023\";s:7:\"content\";s:277:\"On July 16 there will be a full outage of the FedEx API from 04:00 to 08:00 AM UTC. Due to planned maintenance by FedEx, you\'ll be unable to provide FedEx shipping rates during this time. Follow the link below for more information and recommendations on how to minimize impact.\";}}s:7:\"actions\";a:1:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:10:\"learn-more\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:10:\"Learn more\";}}s:3:\"url\";s:125:\"https://woocommerce.com/document/fedex/?utm_medium=product&utm_source=inbox_note&utm_campaign=learn-more#july-2023-api-outage\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:0;s:6:\"status\";s:10:\"unactioned\";}}s:5:\"rules\";a:3:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:18:\"publish_after_time\";s:13:\"publish_after\";s:19:\"2023-07-05 18:19:17\";}i:1;O:8:\"stdClass\":2:{s:4:\"type\";s:17:\"plugins_activated\";s:7:\"plugins\";a:1:{i:0;s:26:\"woocommerce-shipping-fedex\";}}i:2;O:8:\"stdClass\":2:{s:4:\"type\";s:19:\"publish_before_time\";s:14:\"publish_before\";s:19:\"2023-07-17 00:00:00\";}}}s:35:\"wcship-2023-07-hazmat-update-needed\";O:8:\"stdClass\":8:{s:4:\"slug\";s:35:\"wcship-2023-07-hazmat-update-needed\";s:4:\"type\";s:6:\"update\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:87:\"Action required: USPS HAZMAT compliance update for WooCommerce Shipping & Tax extension\";s:7:\"content\";s:251:\"<strong>Your store requires an update for the WooCommerce Shipping extension</strong>. Please update to the latest version of the WooCommerce Shipping &amp; Tax extension immediately to ensure compliance with new USPS HAZMAT rules currently in effect.\";}}s:7:\"actions\";a:2:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:11:\"plugin-list\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:21:\"See available updates\";}}s:3:\"url\";s:29:\"plugins.php?plugin_status=all\";s:18:\"url_is_admin_query\";b:1;s:10:\"is_primary\";b:1;s:6:\"status\";s:10:\"unactioned\";}i:1;O:8:\"stdClass\":6:{s:4:\"name\";s:7:\"dismiss\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:7:\"Dismiss\";}}s:3:\"url\";s:23:\"admin.php?page=wc-admin\";s:18:\"url_is_admin_query\";b:1;s:10:\"is_primary\";b:0;s:6:\"status\";s:8:\"actioned\";}}s:5:\"rules\";a:3:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:18:\"publish_after_time\";s:13:\"publish_after\";s:19:\"2023-07-11 20:26:59\";}i:1;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:20:\"woocommerce-services\";s:8:\"operator\";s:1:\"<\";s:7:\"version\";s:5:\"2.3.0\";}i:2;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:9:\"operation\";s:1:\"=\";s:5:\"value\";s:2:\"US\";}}}s:43:\"woocommerce-WCStripe-Aug-2023-update-needed\";O:8:\"stdClass\":8:{s:4:\"slug\";s:43:\"woocommerce-WCStripe-Aug-2023-update-needed\";s:4:\"type\";s:6:\"update\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:62:\"Action required: Security update for WooCommerce Stripe plugin\";s:7:\"content\";s:183:\"<strong>Your shop requires an important security update for the  WooCommerce Stripe plugin</strong>. The fix for this vulnerability was released on July 31. Please update immediately.\";}}s:7:\"actions\";a:2:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:43:\"woocommerce-WCStripe-Aug-2023-update-needed\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:21:\"See available updates\";}}s:3:\"url\";s:16:\"update-core.php?\";s:18:\"url_is_admin_query\";b:1;s:10:\"is_primary\";b:1;s:6:\"status\";s:10:\"unactioned\";}i:1;O:8:\"stdClass\":6:{s:4:\"name\";s:7:\"dismiss\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:7:\"Dismiss\";}}s:3:\"url\";s:1:\"#\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:1;s:6:\"status\";s:8:\"actioned\";}}s:5:\"rules\";a:4:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:18:\"publish_after_time\";s:13:\"publish_after\";s:19:\"2023-08-03 05:00:06\";}i:1;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:26:\"woocommerce-gateway-stripe\";s:8:\"operator\";s:2:\">=\";s:7:\"version\";s:3:\"5.6\";}i:2;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:26:\"woocommerce-gateway-stripe\";s:8:\"operator\";s:1:\"<\";s:7:\"version\";s:5:\"7.4.2\";}i:3;O:8:\"stdClass\":2:{s:4:\"type\";s:3:\"not\";s:7:\"operand\";a:1:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:2:\"or\";s:8:\"operands\";a:11:{i:0;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:26:\"woocommerce-gateway-stripe\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"6.3.2\";}i:1;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:26:\"woocommerce-gateway-stripe\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"6.4.5\";}i:2;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:26:\"woocommerce-gateway-stripe\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"6.5.3\";}i:3;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:26:\"woocommerce-gateway-stripe\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"6.6.2\";}i:4;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:26:\"woocommerce-gateway-stripe\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"6.7.2\";}i:5;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:26:\"woocommerce-gateway-stripe\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"6.8.2\";}i:6;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:26:\"woocommerce-gateway-stripe\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"6.9.2\";}i:7;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:26:\"woocommerce-gateway-stripe\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"7.0.4\";}i:8;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:26:\"woocommerce-gateway-stripe\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"7.1.2\";}i:9;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:26:\"woocommerce-gateway-stripe\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"7.2.2\";}i:10;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:26:\"woocommerce-gateway-stripe\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"7.3.2\";}}}}}}}s:46:\"woocommerce-WCStripe-Aug-2023-security-updated\";O:8:\"stdClass\":8:{s:4:\"slug\";s:46:\"woocommerce-WCStripe-Aug-2023-security-updated\";s:4:\"type\";s:6:\"update\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:44:\"Security update of WooCommerce Stripe plugin\";s:7:\"content\";s:144:\"<strong>Your store has been updated to the latest secure version of the WooCommerce Stripe plugin</strong>. This update was released on July 31.\";}}s:7:\"actions\";a:1:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:7:\"dismiss\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:7:\"Dismiss\";}}s:3:\"url\";s:1:\"#\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:1;s:6:\"status\";s:8:\"actioned\";}}s:5:\"rules\";a:2:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:18:\"publish_after_time\";s:13:\"publish_after\";s:19:\"2023-08-03 05:00:07\";}i:1;O:8:\"stdClass\":2:{s:4:\"type\";s:2:\"or\";s:8:\"operands\";a:11:{i:0;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:26:\"woocommerce-gateway-stripe\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"6.3.2\";}i:1;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:26:\"woocommerce-gateway-stripe\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"6.4.5\";}i:2;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:26:\"woocommerce-gateway-stripe\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"6.5.3\";}i:3;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:26:\"woocommerce-gateway-stripe\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"6.6.2\";}i:4;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:26:\"woocommerce-gateway-stripe\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"6.7.2\";}i:5;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:26:\"woocommerce-gateway-stripe\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"6.8.2\";}i:6;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:26:\"woocommerce-gateway-stripe\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"6.9.2\";}i:7;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:26:\"woocommerce-gateway-stripe\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"7.0.4\";}i:8;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:26:\"woocommerce-gateway-stripe\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"7.1.2\";}i:9;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:26:\"woocommerce-gateway-stripe\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"7.2.2\";}i:10;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:26:\"woocommerce-gateway-stripe\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"7.3.2\";}}}}}s:46:\"woocommerce-WooPayments-Aug-2023-update-needed\";O:8:\"stdClass\":8:{s:4:\"slug\";s:46:\"woocommerce-WooPayments-Aug-2023-update-needed\";s:4:\"type\";s:6:\"update\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:78:\"Action required: Security update for WooPayments (WooCommerce Payments) plugin\";s:7:\"content\";s:201:\"<strong>Your shop requires an important security update for the WooPayments (WooCommerce Payments) extension</strong>. The fix for this vulnerability was released on July 31. Please update immediately.\";}}s:7:\"actions\";a:2:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:46:\"woocommerce-WooPayments-Aug-2023-update-needed\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:21:\"See available updates\";}}s:3:\"url\";s:16:\"update-core.php?\";s:18:\"url_is_admin_query\";b:1;s:10:\"is_primary\";b:1;s:6:\"status\";s:10:\"unactioned\";}i:1;O:8:\"stdClass\":6:{s:4:\"name\";s:7:\"dismiss\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:7:\"Dismiss\";}}s:3:\"url\";s:1:\"#\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:1;s:6:\"status\";s:8:\"actioned\";}}s:5:\"rules\";a:4:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:18:\"publish_after_time\";s:13:\"publish_after\";s:19:\"2023-08-03 05:00:10\";}i:1;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:20:\"woocommerce-payments\";s:8:\"operator\";s:2:\">=\";s:7:\"version\";s:5:\"2.8.0\";}i:2;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:20:\"woocommerce-payments\";s:8:\"operator\";s:1:\"<\";s:7:\"version\";s:5:\"6.2.1\";}i:3;O:8:\"stdClass\":2:{s:4:\"type\";s:3:\"not\";s:7:\"operand\";a:1:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:2:\"or\";s:8:\"operands\";a:17:{i:0;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:20:\"woocommerce-payments\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"4.5.3\";}i:1;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:20:\"woocommerce-payments\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"4.6.2\";}i:2;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:20:\"woocommerce-payments\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"4.7.4\";}i:3;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:20:\"woocommerce-payments\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"4.8.4\";}i:4;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:20:\"woocommerce-payments\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"4.9.3\";}i:5;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:20:\"woocommerce-payments\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"5.0.6\";}i:6;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:20:\"woocommerce-payments\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"5.1.5\";}i:7;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:20:\"woocommerce-payments\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"5.2.4\";}i:8;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:20:\"woocommerce-payments\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"5.3.3\";}i:9;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:20:\"woocommerce-payments\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"5.4.3\";}i:10;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:20:\"woocommerce-payments\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"5.5.4\";}i:11;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:20:\"woocommerce-payments\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"5.6.4\";}i:12;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:20:\"woocommerce-payments\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"5.7.2\";}i:13;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:20:\"woocommerce-payments\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"5.8.3\";}i:14;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:20:\"woocommerce-payments\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"5.9.2\";}i:15;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:20:\"woocommerce-payments\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"6.0.1\";}i:16;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:20:\"woocommerce-payments\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"6.1.2\";}}}}}}}s:49:\"woocommerce-WooPayments-Aug-2023-security-updated\";O:8:\"stdClass\":8:{s:4:\"slug\";s:49:\"woocommerce-WooPayments-Aug-2023-security-updated\";s:4:\"type\";s:6:\"update\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:60:\"Security update of WooPayments (WooCommerce Payments) plugin\";s:7:\"content\";s:147:\"<strong>Your store has been updated to the more secure version of WooPayments (WooCommerce Payments)</strong>. This update was released on July 31.\";}}s:7:\"actions\";a:1:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:7:\"dismiss\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:7:\"Dismiss\";}}s:3:\"url\";s:1:\"#\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:1;s:6:\"status\";s:8:\"actioned\";}}s:5:\"rules\";a:2:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:18:\"publish_after_time\";s:13:\"publish_after\";s:19:\"2023-08-03 05:00:13\";}i:1;O:8:\"stdClass\":2:{s:4:\"type\";s:2:\"or\";s:8:\"operands\";a:17:{i:0;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:20:\"woocommerce-payments\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"4.5.3\";}i:1;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:20:\"woocommerce-payments\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"4.6.2\";}i:2;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:20:\"woocommerce-payments\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"4.7.4\";}i:3;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:20:\"woocommerce-payments\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"4.8.4\";}i:4;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:20:\"woocommerce-payments\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"4.9.3\";}i:5;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:20:\"woocommerce-payments\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"5.0.6\";}i:6;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:20:\"woocommerce-payments\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"5.1.5\";}i:7;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:20:\"woocommerce-payments\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"5.2.4\";}i:8;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:20:\"woocommerce-payments\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"5.3.3\";}i:9;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:20:\"woocommerce-payments\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"5.4.3\";}i:10;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:20:\"woocommerce-payments\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"5.5.4\";}i:11;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:20:\"woocommerce-payments\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"5.6.4\";}i:12;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:20:\"woocommerce-payments\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"5.7.2\";}i:13;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:20:\"woocommerce-payments\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"5.8.3\";}i:14;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:20:\"woocommerce-payments\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"5.9.2\";}i:15;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:20:\"woocommerce-payments\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"6.0.1\";}i:16;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:20:\"woocommerce-payments\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"6.1.2\";}}}}}s:24:\"avalara_q3-2023_noAvaTax\";O:8:\"stdClass\":8:{s:4:\"slug\";s:24:\"avalara_q3-2023_noAvaTax\";s:4:\"type\";s:9:\"marketing\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:40:\"Automatically calculate VAT in real time\";s:7:\"content\";s:284:\"Take the effort out of determining tax rates and sell confidently across borders with automated tax management from Avalara AvaTax— including built-in VAT calculation when you sell into or across the EU and UK. Save time and stay compliant when you let Avalara do the heavy lifting.\";}}s:7:\"actions\";a:1:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:24:\"avalara_q3-2023_noAvaTax\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:21:\"Automate my sales tax\";}}s:3:\"url\";s:131:\"https://woocommerce.com/products/woocommerce-avatax/?utm_source=inbox_note&utm_medium=product&utm_campaign=avalara_q3-2023_noAvaTax\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:1;s:6:\"status\";s:10:\"unactioned\";}}s:5:\"rules\";a:5:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:18:\"publish_after_time\";s:13:\"publish_after\";s:19:\"2023-08-08 22:32:23\";}i:1;O:8:\"stdClass\":2:{s:4:\"type\";s:19:\"publish_before_time\";s:14:\"publish_before\";s:19:\"2023-08-09 23:59:00\";}i:2;O:8:\"stdClass\":2:{s:4:\"type\";s:3:\"not\";s:7:\"operand\";a:1:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:17:\"plugins_activated\";s:7:\"plugins\";a:1:{i:0;s:18:\"woocommerce-avatax\";}}}}i:3;O:8:\"stdClass\":3:{s:4:\"type\";s:18:\"wcadmin_active_for\";s:9:\"operation\";s:1:\">\";s:4:\"days\";i:30;}i:4;O:8:\"stdClass\":4:{s:4:\"type\";s:20:\"total_payments_value\";s:9:\"timeframe\";s:9:\"last_year\";s:5:\"value\";i:100;s:9:\"operation\";s:1:\">\";}}}s:38:\"woo-activation-survey-blockers-22AUG23\";O:8:\"stdClass\":8:{s:4:\"slug\";s:38:\"woo-activation-survey-blockers-22AUG23\";s:4:\"type\";s:4:\"info\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:40:\"How can we help you get that first sale?\";s:7:\"content\";s:211:\"Your feedback is vital. Please take a minute to share your experience of setting up your new store and whether anything is preventing you from making those first few sales. Together, we can make Woo even better!\";}}s:7:\"actions\";a:1:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:52:\"woo-activation-survey-blockers-survey-button-22AUG23\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:21:\"Take our short survey\";}}s:3:\"url\";s:54:\"https://woocommerce.survey.fm/getting-started-with-woo\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:1;s:6:\"status\";s:10:\"unactioned\";}}s:5:\"rules\";a:4:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:18:\"publish_after_time\";s:13:\"publish_after\";s:19:\"2023-08-22 15:54:58\";}i:1;O:8:\"stdClass\":3:{s:4:\"type\";s:18:\"wcadmin_active_for\";s:9:\"operation\";s:2:\"<=\";s:4:\"days\";i:30;}i:2;O:8:\"stdClass\":3:{s:4:\"type\";s:13:\"product_count\";s:9:\"operation\";s:1:\">\";s:5:\"value\";i:1;}i:3;O:8:\"stdClass\":3:{s:4:\"type\";s:11:\"order_count\";s:9:\"operation\";s:1:\"=\";s:5:\"value\";i:0;}}}s:44:\"woocommerce-usermeta-Sept2023-productvendors\";O:8:\"stdClass\":8:{s:4:\"slug\";s:44:\"woocommerce-usermeta-Sept2023-productvendors\";s:4:\"type\";s:6:\"update\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:37:\"Your store requires a security update\";s:7:\"content\";s:339:\"<strong>Your shop needs an update to address a vulnerability in WooCommerce.</strong> The fix was released on Sept 15. Please update WooCommerce to the latest version immediately. <a href=\"https://developer.woocommerce.com/2023/09/16/woocommerce-vulnerability-reintroduced-from-7-0-1/\" />Read our developer update</a> for more information.\";}}s:7:\"actions\";a:2:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:44:\"woocommerce-usermeta-Sept2023-productvendors\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:21:\"See available updates\";}}s:3:\"url\";s:11:\"plugins.php\";s:18:\"url_is_admin_query\";b:1;s:10:\"is_primary\";b:1;s:6:\"status\";s:10:\"unactioned\";}i:1;O:8:\"stdClass\":6:{s:4:\"name\";s:7:\"dismiss\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:7:\"Dismiss\";}}s:3:\"url\";s:1:\"#\";s:18:\"url_is_admin_query\";b:1;s:10:\"is_primary\";b:1;s:6:\"status\";s:8:\"actioned\";}}s:5:\"rules\";a:3:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:18:\"publish_after_time\";s:13:\"publish_after\";s:19:\"2023-09-20 00:50:07\";}i:1;O:8:\"stdClass\":2:{s:4:\"type\";s:17:\"plugins_activated\";s:7:\"plugins\";a:1:{i:0;s:27:\"woocommerce-product-vendors\";}}i:2;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"8.1.1\";}}}}}','no'),(46170,'jetpack_sync_https_history_home_url','a:5:{i:0;s:5:\"https\";i:1;s:5:\"https\";i:2;s:5:\"https\";i:3;s:5:\"https\";i:4;s:4:\"http\";}','yes'),(46171,'jetpack_sync_https_history_site_url','a:5:{i:0;s:5:\"https\";i:1;s:5:\"https\";i:2;s:5:\"https\";i:3;s:5:\"https\";i:4;s:4:\"http\";}','yes'),(46004,'wc_blocks_use_blockified_product_grid_block_as_template','no','yes'),(46005,'wc_blocks_version','10.6.5','yes'),(46006,'woocommerce_task_list_reminder_bar_hidden','yes','yes'),(46011,'woocommerce_attribute_lookup_direct_updates','no','yes'),(46012,'woocommerce_navigation_enabled','no','yes'),(46013,'woocommerce_feature_product_block_editor_enabled','no','yes'),(46014,'woocommerce_custom_orders_table_enabled','no','yes'),(46015,'woocommerce_custom_orders_table_data_sync_enabled','no','yes'),(46016,'woocommerce_custom_orders_table_created','no','yes'),(691,'_transient_woocommerce_reports-transient-version','1660125611','yes'),(2042,'_transient_product-transient-version','1695555434','yes'),(706,'_transient_product_query-transient-version','1695639859','yes'),(2729,'the7_dashboard_settings','a:31:{s:14:\"db-auto-update\";b:1;s:9:\"mega-menu\";b:1;s:15:\"critical-alerts\";b:0;s:22:\"web-fonts-display-swap\";b:0;s:29:\"elementor-buttons-integration\";b:0;s:21:\"elementor-theme-style\";b:0;s:24:\"disable-gutenberg-styles\";b:0;s:37:\"elementor-zero-paragraph-last-spacing\";b:0;s:21:\"critical-alerts-email\";s:0:\"\";s:27:\"fontawesome-4-compatibility\";b:0;s:18:\"options-in-sidebar\";b:1;s:28:\"deprecated_elementor_widgets\";b:0;s:4:\"rows\";b:0;s:19:\"overlapping-headers\";b:0;s:29:\"deprecated_mega_menu_settings\";b:1;s:16:\"portfolio-layout\";b:0;s:15:\"admin-icons-bar\";b:0;s:9:\"portfolio\";b:1;s:14:\"portfolio-slug\";s:7:\"project\";s:26:\"portfolio-breadcrumbs-text\";s:0:\"\";s:12:\"testimonials\";b:0;s:4:\"team\";b:1;s:9:\"team-slug\";s:7:\"dt_team\";s:5:\"logos\";b:0;s:8:\"benefits\";b:0;s:6:\"albums\";b:1;s:11:\"albums-slug\";s:10:\"dt_gallery\";s:9:\"slideshow\";b:1;s:15:\"settings-preset\";s:6:\"custom\";s:24:\"the7-icons-for-elementor\";b:1;s:31:\"legacy-elementor-theme-features\";b:1;}','yes'),(43181,'elementor_active_kit','3157','yes'),(43182,'elementor_font_display','swap','yes'),(43192,'elementor_onboarded','1','yes'),(43193,'_elementor_installed_time','1692093870','yes'),(43194,'elementor_remote_info_library','a:3:{s:10:\"types_data\";a:4:{s:5:\"block\";a:2:{s:10:\"categories\";a:27:{i:0;s:8:\"404 page\";i:1;s:5:\"about\";i:2;s:7:\"archive\";i:3;s:8:\"Benefits\";i:4;s:14:\"call to action\";i:5;s:7:\"clients\";i:6;s:7:\"contact\";i:7;s:4:\"Data\";i:8;s:3:\"faq\";i:9;s:8:\"features\";i:10;s:6:\"footer\";i:11;s:7:\"Gallery\";i:12;s:6:\"header\";i:13;s:4:\"hero\";i:14;s:9:\"portfolio\";i:15;s:7:\"pricing\";i:16;s:15:\"product archive\";i:17;s:5:\"Quote\";i:18;s:15:\"Service Details\";i:19;s:8:\"services\";i:20;s:11:\"single page\";i:21;s:11:\"single post\";i:22;s:14:\"single product\";i:23;s:5:\"stats\";i:24;s:9:\"subscribe\";i:25;s:4:\"team\";i:26;s:12:\"testimonials\";}s:4:\"sets\";a:5:{i:0;s:11:\"Boxing Club\";i:1;s:19:\"Business Consultant\";i:2;s:16:\"Marketing Agency\";i:3;s:9:\"Wireframe\";i:4;s:15:\"Workshop Center\";}}s:5:\"popup\";a:1:{s:10:\"categories\";a:6:{i:0;s:10:\"bottom bar\";i:1;s:7:\"classic\";i:2;s:6:\"fly-in\";i:3;s:11:\"full screen\";i:4;s:9:\"hello bar\";i:5;s:8:\"slide-in\";}}s:2:\"lp\";a:1:{s:10:\"categories\";a:15:{i:0;s:8:\"Business\";i:1;s:16:\"Coming Soon Page\";i:2;s:9:\"eCommerce\";i:3;s:9:\"Education\";i:4;s:6:\"Events\";i:5;s:18:\"Health and Fitness\";i:6;s:3:\"NFT\";i:7;s:14:\"Online Service\";i:8;s:7:\"Product\";i:9;s:11:\"Real Estate\";i:10;s:18:\"Social Involvement\";i:11;s:14:\"Thank You Page\";i:12;s:6:\"Travel\";i:13;s:18:\"Under Construction\";i:14;s:9:\"Wireframe\";}}s:2:\"lb\";a:1:{s:10:\"categories\";a:2:{i:0;s:4:\"post\";i:1;s:7:\"product\";}}}s:10:\"categories\";a:27:{i:0;s:8:\"404 page\";i:1;s:5:\"about\";i:2;s:7:\"archive\";i:3;s:8:\"Benefits\";i:4;s:14:\"call to action\";i:5;s:7:\"clients\";i:6;s:7:\"contact\";i:7;s:4:\"Data\";i:8;s:3:\"faq\";i:9;s:8:\"features\";i:10;s:6:\"footer\";i:11;s:7:\"Gallery\";i:12;s:6:\"header\";i:13;s:4:\"hero\";i:14;s:9:\"portfolio\";i:15;s:7:\"pricing\";i:16;s:15:\"product archive\";i:17;s:5:\"Quote\";i:18;s:15:\"Service Details\";i:19;s:8:\"services\";i:20;s:11:\"single page\";i:21;s:11:\"single post\";i:22;s:14:\"single product\";i:23;s:5:\"stats\";i:24;s:9:\"subscribe\";i:25;s:4:\"team\";i:26;s:12:\"testimonials\";}s:9:\"templates\";a:823:{i:0;a:18:{s:4:\"tmpl\";i:1280;s:2:\"id\";i:22403;s:5:\"title\";s:40:\"Hello Bar | Subscribe | Aesthetic Clinic\";s:9:\"thumbnail\";s:80:\"https://library.elementor.com/wp-content/uploads/2022/03/aesthetic-clinic-19.jpg\";s:12:\"tmpl_created\";i:1647354307;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:142:\"https://library.elementor.com/popups/hello-bar-subscribe-aesthetic-clinic/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:9:\"hello bar\";s:4:\"tags\";s:48:\"[\"Barbershop\",\"Business\",\"Discount\",\"Marketing\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:1;a:18:{s:4:\"tmpl\";i:1281;s:2:\"id\";i:22410;s:5:\"title\";s:32:\"Fly-In | Discount | Hair Stylist\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2022/03/hair-stylist-20.jpg\";s:12:\"tmpl_created\";i:1647354614;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:134:\"https://library.elementor.com/popups/fly-in-discount-hair-stylist/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:32:\"[\"Barbershop\",\"Discount\",\"Hair\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:2;a:18:{s:4:\"tmpl\";i:1285;s:2:\"id\";i:22440;s:5:\"title\";s:32:\"Classic | Subscribe | Shoe Store\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2022/03/shoes-store-21.jpg\";s:12:\"tmpl_created\";i:1647418620;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:134:\"https://library.elementor.com/popups/classic-subscribe-shoe-store/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:37:\"[\"Ecommerce\",\"Marketing\",\"Subscribe\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:3;a:18:{s:4:\"tmpl\";i:1286;s:2:\"id\";i:22446;s:5:\"title\";s:37:\"Full Screen | Subscribe | Denim Store\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2022/03/denim-store-22.jpg\";s:12:\"tmpl_created\";i:1647419614;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:139:\"https://library.elementor.com/popups/full-screen-subscribe-denim-store/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:11:\"full screen\";s:4:\"tags\";s:35:\"[\"Ecommerce\",\"Fashion\",\"Marketing\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:4;a:18:{s:4:\"tmpl\";i:1287;s:2:\"id\";i:22452;s:5:\"title\";s:37:\"Fly-In | Subscribe | Pizza Restaurant\";s:9:\"thumbnail\";s:80:\"https://library.elementor.com/wp-content/uploads/2022/03/pizza-restaurant-23.jpg\";s:12:\"tmpl_created\";i:1647420733;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:139:\"https://library.elementor.com/popups/fly-in-subscribe-pizza-restaurant/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:19:\"[\"Business\",\"Food\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:5;a:18:{s:4:\"tmpl\";i:1288;s:2:\"id\";i:22458;s:5:\"title\";s:38:\"Full Screen | Subscribe | Fashion Shop\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2022/03/fashion-shop-24.jpg\";s:12:\"tmpl_created\";i:1647426379;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:140:\"https://library.elementor.com/popups/full-screen-subscribe-fashion-shop/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:11:\"full screen\";s:4:\"tags\";s:31:\"[\"Ecommerce\",\"Fashion\",\"Sales\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:6;a:18:{s:4:\"tmpl\";i:1289;s:2:\"id\";i:22464;s:5:\"title\";s:32:\"Fly-In | Contact | Makeup Studio\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2022/03/makeup-studio-25.jpg\";s:12:\"tmpl_created\";i:1647427026;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:134:\"https://library.elementor.com/popups/fly-in-contact-makeup-studio/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:22:\"[\"Business\",\"Contact\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:7;a:18:{s:4:\"tmpl\";i:1290;s:2:\"id\";i:22470;s:5:\"title\";s:32:\"Fly-In | Contact | Design Studio\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2022/03/design-studio-26.jpg\";s:12:\"tmpl_created\";i:1647428250;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:134:\"https://library.elementor.com/popups/fly-in-contact-design-studio/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:39:\"[\"Business\",\"Contact\",\"Digital Agency\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:8;a:18:{s:4:\"tmpl\";i:1291;s:2:\"id\";i:22480;s:5:\"title\";s:27:\"Classic | CTA | MasterClass\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2022/03/master-class-27.jpg\";s:12:\"tmpl_created\";i:1647428474;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:129:\"https://library.elementor.com/popups/classic-cta-masterclass/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:29:\"[\"cta\",\"Magazine\",\"Services\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:9;a:18:{s:4:\"tmpl\";i:1292;s:2:\"id\";i:22489;s:5:\"title\";s:29:\"Classic | CTA | Music Concert\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2022/03/music-concert-29.jpg\";s:12:\"tmpl_created\";i:1647429738;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:131:\"https://library.elementor.com/popups/classic-cta-music-concert/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:34:\"[\"cta\",\"Landing Pages\",\"Magazine\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:10;a:18:{s:4:\"tmpl\";i:1293;s:2:\"id\";i:22495;s:5:\"title\";s:27:\"Classic | CTA | Music Album\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2022/03/music-album-30.jpg\";s:12:\"tmpl_created\";i:1647430056;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:129:\"https://library.elementor.com/popups/classic-cta-music-album/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:34:\"[\"Ba\",\"Landing Pages\",\"Marketing\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:11;a:18:{s:4:\"tmpl\";i:1294;s:2:\"id\";i:22501;s:5:\"title\";s:37:\"Fly-In | CTA | Photography Exhibition\";s:9:\"thumbnail\";s:86:\"https://library.elementor.com/wp-content/uploads/2022/03/photography-exhibition-31.jpg\";s:12:\"tmpl_created\";i:1647430512;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:139:\"https://library.elementor.com/popups/fly-in-cta-photography-exhibition/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:33:\"[\"cta\",\"Photography\",\"Portfolio\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:12;a:18:{s:4:\"tmpl\";i:1295;s:2:\"id\";i:22507;s:5:\"title\";s:34:\"Classic | CTA | Clothing Shop Sale\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2022/03/clothing-shop-sale-32.jpg\";s:12:\"tmpl_created\";i:1647430774;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:136:\"https://library.elementor.com/popups/classic-cta-clothing-shop-sale/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:35:\"[\"Ecommerce\",\"Fashion\",\"Marketing\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:13;a:18:{s:4:\"tmpl\";i:1296;s:2:\"id\";i:22486;s:5:\"title\";s:30:\"Classic | CTA | Shop Promotion\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2022/03/shop-promotion-28.jpg\";s:12:\"tmpl_created\";i:1647430951;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:132:\"https://library.elementor.com/popups/classic-cta-shop-promotion/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:32:\"[\"cta\",\"Magazine\",\"Photography\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:14;a:18:{s:4:\"tmpl\";i:1297;s:2:\"id\";i:22516;s:5:\"title\";s:32:\"Fly-In | CTA | Glasses Shop Sale\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2022/03/glasses-shop-sale-33.jpg\";s:12:\"tmpl_created\";i:1647431136;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:134:\"https://library.elementor.com/popups/fly-in-cta-glasses-shop-sale/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:30:\"[\"Business\",\"cta\",\"Marketing\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:15;a:18:{s:4:\"tmpl\";i:1298;s:2:\"id\";i:22522;s:5:\"title\";s:30:\"Fly-In | Discount | Skate Shop\";s:9:\"thumbnail\";s:83:\"https://library.elementor.com/wp-content/uploads/2022/03/50-skate-shop-Discount.jpg\";s:12:\"tmpl_created\";i:1647434058;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:132:\"https://library.elementor.com/popups/fly-in-discount-skate-shop/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:32:\"[\"Discount\",\"Ecommerce\",\"Sales\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:16;a:18:{s:4:\"tmpl\";i:1299;s:2:\"id\";i:22532;s:5:\"title\";s:43:\"Classic | Subscription | Basketball Academy\";s:9:\"thumbnail\";s:95:\"https://library.elementor.com/wp-content/uploads/2022/03/21-basketball-academy-Subscription.jpg\";s:12:\"tmpl_created\";i:1647434608;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:145:\"https://library.elementor.com/popups/classic-subscription-basketball-academy/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:33:\"[\"Education\",\"Marketing\",\"Sport\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:17;a:18:{s:4:\"tmpl\";i:1300;s:2:\"id\";i:22543;s:5:\"title\";s:38:\"Classic | Discount | Veterinary Clinic\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2022/03/veterinery-clinic-small.jpg\";s:12:\"tmpl_created\";i:1647435581;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:140:\"https://library.elementor.com/popups/classic-discount-veterinary-clinic/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:19:\"[\"Discount\",\"Pets\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:18;a:18:{s:4:\"tmpl\";i:1301;s:2:\"id\";i:22553;s:5:\"title\";s:39:\"Classic | Contact | Business Consulting\";s:9:\"thumbnail\";s:94:\"https://library.elementor.com/wp-content/uploads/2022/03/27-business-consulting-Contact-Us.jpg\";s:12:\"tmpl_created\";i:1647439935;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:141:\"https://library.elementor.com/popups/classic-contact-business-consulting/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:22:\"[\"Business\",\"Contact\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:19;a:18:{s:4:\"tmpl\";i:1302;s:2:\"id\";i:22562;s:5:\"title\";s:28:\"Classic | Contact | Handyman\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2022/03/handyman-small.jpg\";s:12:\"tmpl_created\";i:1647440333;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:130:\"https://library.elementor.com/popups/classic-contact-handyman/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:33:\"[\"Business\",\"Contact\",\"Services\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:20;a:18:{s:4:\"tmpl\";i:1303;s:2:\"id\";i:22573;s:5:\"title\";s:40:\"Classic | Discount | Online Fashion Shop\";s:9:\"thumbnail\";s:92:\"https://library.elementor.com/wp-content/uploads/2022/03/31-online-fashion-shop-Discount.jpg\";s:12:\"tmpl_created\";i:1647462549;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:142:\"https://library.elementor.com/popups/classic-discount-online-fashion-shop/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:32:\"[\"Discount\",\"Ecommerce\",\"Sales\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:21;a:18:{s:4:\"tmpl\";i:1304;s:2:\"id\";i:22583;s:5:\"title\";s:36:\"Fly-In | Discount | Personal Trainer\";s:9:\"thumbnail\";s:83:\"https://library.elementor.com/wp-content/uploads/2022/03/personal-trainer-small.jpg\";s:12:\"tmpl_created\";i:1647503781;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:138:\"https://library.elementor.com/popups/fly-in-discount-personal-trainer/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:31:\"[\"Discount\",\"Sport\",\"Training\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:22;a:18:{s:4:\"tmpl\";i:1305;s:2:\"id\";i:22592;s:5:\"title\";s:41:\"Classic | Contact | Illustrator Portfolio\";s:9:\"thumbnail\";s:88:\"https://library.elementor.com/wp-content/uploads/2022/03/illustrator-protfolio-small.jpg\";s:12:\"tmpl_created\";i:1647504218;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:143:\"https://library.elementor.com/popups/classic-contact-illustrator-portfolio/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:49:\"[\"Contact\",\"Creative Portfolio\",\"Digital Agency\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:23;a:18:{s:4:\"tmpl\";i:1306;s:2:\"id\";i:22602;s:5:\"title\";s:46:\"Bottom Bar | Discount | Handmade Ceramics Shop\";s:9:\"thumbnail\";s:91:\"https://library.elementor.com/wp-content/uploads/2022/03/handmade-ceramic-shop-36-small.jpg\";s:12:\"tmpl_created\";i:1647507007;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:148:\"https://library.elementor.com/popups/bottom-bar-discount-handmade-ceramics-shop/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:10:\"bottom bar\";s:4:\"tags\";s:48:\"[\"Business\",\"cta\",\"Ecommerce\",\"Interior Design\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:24;a:18:{s:4:\"tmpl\";i:1307;s:2:\"id\";i:22612;s:5:\"title\";s:51:\"Classic | Contact | Classic Car Restoration Company\";s:9:\"thumbnail\";s:90:\"https://library.elementor.com/wp-content/uploads/2022/03/restoration-car-shop-37-small.jpg\";s:12:\"tmpl_created\";i:1647507310;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:153:\"https://library.elementor.com/popups/classic-contact-classic-car-restoration-company/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:32:\"[\"Booking\",\"Contact\",\"Services\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:25;a:18:{s:4:\"tmpl\";i:1308;s:2:\"id\";i:22621;s:5:\"title\";s:30:\"Classic | Booking | Life Coach\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2022/03/38-life-coach-Booking.jpg\";s:12:\"tmpl_created\";i:1647508596;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:132:\"https://library.elementor.com/popups/classic-booking-life-coach/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:33:\"[\"Booking\",\"Business\",\"Services\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:26;a:18:{s:4:\"tmpl\";i:1309;s:2:\"id\";i:22632;s:5:\"title\";s:42:\"Classic |  Subscription | Merchandise Shop\";s:9:\"thumbnail\";s:86:\"https://library.elementor.com/wp-content/uploads/2022/03/Merchandise-Shop-39-small.jpg\";s:12:\"tmpl_created\";i:1647509196;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:143:\"https://library.elementor.com/popups/classic-subscription-merchandise-shop/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:32:\"[\"Ecommerce\",\"Marketing\",\"Shop\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:27;a:18:{s:4:\"tmpl\";i:1310;s:2:\"id\";i:22643;s:5:\"title\";s:48:\"Fly-In | Contact | Non-Governmental Organization\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2022/03/NGO-41-small.jpg\";s:12:\"tmpl_created\";i:1647509528;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:150:\"https://library.elementor.com/popups/fly-in-contact-non-governmental-organization/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:11:\"[\"Contact\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:28;a:18:{s:4:\"tmpl\";i:1311;s:2:\"id\";i:22654;s:5:\"title\";s:35:\"Hello Bar | Contact | Family Doctor\";s:9:\"thumbnail\";s:83:\"https://library.elementor.com/wp-content/uploads/2022/03/family-doctor-44-small.jpg\";s:12:\"tmpl_created\";i:1647509732;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:137:\"https://library.elementor.com/popups/hello-bar-contact-family-doctor/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:9:\"hello bar\";s:4:\"tags\";s:31:\"[\"Contact\",\"Health\",\"Services\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:29;a:18:{s:4:\"tmpl\";i:1312;s:2:\"id\";i:22663;s:5:\"title\";s:36:\"Classic | Subscription | Sports Blog\";s:9:\"thumbnail\";s:87:\"https://library.elementor.com/wp-content/uploads/2022/03/45-sport-blog-Subscription.jpg\";s:12:\"tmpl_created\";i:1647509908;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:138:\"https://library.elementor.com/popups/classic-subscription-sports-blog/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:16:\"[\"Blog\",\"Sport\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:30;a:18:{s:4:\"tmpl\";i:1313;s:2:\"id\";i:22673;s:5:\"title\";s:30:\"Hello Bar | Booking | Event DJ\";s:9:\"thumbnail\";s:80:\"https://library.elementor.com/wp-content/uploads/2022/03/DJ-service-46-small.jpg\";s:12:\"tmpl_created\";i:1647510160;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:132:\"https://library.elementor.com/popups/hello-bar-booking-event-dj/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:9:\"hello bar\";s:4:\"tags\";s:31:\"[\"Booking\",\"Events\",\"Services\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:31;a:18:{s:4:\"tmpl\";i:1314;s:2:\"id\";i:22684;s:5:\"title\";s:36:\"Fly-In | Discount | Cleaning Company\";s:9:\"thumbnail\";s:89:\"https://library.elementor.com/wp-content/uploads/2022/03/51-cleaning-company-Discount.jpg\";s:12:\"tmpl_created\";i:1647510546;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:138:\"https://library.elementor.com/popups/fly-in-discount-cleaning-company/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:31:\"[\"Discount\",\"Offer\",\"Services\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:32;a:18:{s:4:\"tmpl\";i:1315;s:2:\"id\";i:22693;s:5:\"title\";s:28:\"Fly-In | Contact | Carpenter\";s:9:\"thumbnail\";s:79:\"https://library.elementor.com/wp-content/uploads/2022/03/carpenter-53-small.jpg\";s:12:\"tmpl_created\";i:1647511972;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:130:\"https://library.elementor.com/popups/fly-in-contact-carpenter/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:22:\"[\"Contact\",\"Services\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:33;a:18:{s:4:\"tmpl\";i:1316;s:2:\"id\";i:22703;s:5:\"title\";s:31:\"Classic | Booking | Yoga Studio\";s:9:\"thumbnail\";s:86:\"https://library.elementor.com/wp-content/uploads/2022/03/55-yoga-studio-Contact-Us.jpg\";s:12:\"tmpl_created\";i:1647512209;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:133:\"https://library.elementor.com/popups/classic-booking-yoga-studio/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:30:\"[\"Booking\",\"Contact\",\"Health\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:34;a:18:{s:4:\"tmpl\";i:1317;s:2:\"id\";i:22714;s:5:\"title\";s:37:\"Classic | Discount | Pet Care Company\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2022/03/56-Pet-Care-Discount.jpg\";s:12:\"tmpl_created\";i:1647513031;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:139:\"https://library.elementor.com/popups/classic-discount-pet-care-company/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:17:\"[\"Offer\",\"Sales\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:35;a:18:{s:4:\"tmpl\";i:1318;s:2:\"id\";i:22725;s:5:\"title\";s:38:\"Fly-In | Discount | Online Coffee Shop\";s:9:\"thumbnail\";s:88:\"https://library.elementor.com/wp-content/uploads/2022/03/online-coffee-shop-57-small.jpg\";s:12:\"tmpl_created\";i:1647513325;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:140:\"https://library.elementor.com/popups/fly-in-discount-online-coffee-shop/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:29:\"[\"Food\",\"Offer\",\"Restaurant\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:36;a:18:{s:4:\"tmpl\";i:1319;s:2:\"id\";i:22737;s:5:\"title\";s:44:\"Fly-In | CTA | Moving &#038; Storage Company\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2022/03/moving-company-59-small.jpg\";s:12:\"tmpl_created\";i:1647520956;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:139:\"https://library.elementor.com/popups/fly-in-cta-moving-storage-company/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:12:\"[\"Services\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:37;a:18:{s:4:\"tmpl\";i:1320;s:2:\"id\";i:22749;s:5:\"title\";s:47:\"Classic | Contact | Industrial Design Portfolio\";s:9:\"thumbnail\";s:92:\"https://library.elementor.com/wp-content/uploads/2022/03/60-industrial-design-Contact-Us.jpg\";s:12:\"tmpl_created\";i:1647528116;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:149:\"https://library.elementor.com/popups/classic-contact-industrial-design-portfolio/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:40:\"[\"Contact\",\"Interior Design\",\"Services\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:38;a:18:{s:4:\"tmpl\";i:1321;s:2:\"id\";i:22759;s:5:\"title\";s:25:\"Classic | Contact | Drone\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2022/03/drone-61-small.jpg\";s:12:\"tmpl_created\";i:1647528899;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:127:\"https://library.elementor.com/popups/classic-contact-drone/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:22:\"[\"Contact\",\"Services\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:39;a:18:{s:4:\"tmpl\";i:1322;s:2:\"id\";i:22768;s:5:\"title\";s:46:\"Full Screen | Menu | Fashion Stylist Portfolio\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2022/03/62-Fashion-Stylist-Menu.jpg\";s:12:\"tmpl_created\";i:1647529434;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:148:\"https://library.elementor.com/popups/full-screen-menu-fashion-stylist-portfolio/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:11:\"full screen\";s:4:\"tags\";s:31:\"[\"Fashion\",\"Fullscreen\",\"menu\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:40;a:18:{s:4:\"tmpl\";i:1323;s:2:\"id\";i:22780;s:5:\"title\";s:31:\"Fly-In | CTA | Landscape Design\";s:9:\"thumbnail\";s:94:\"https://library.elementor.com/wp-content/uploads/2022/03/64-Landscape-Design-Click-Through.jpg\";s:12:\"tmpl_created\";i:1647530337;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:133:\"https://library.elementor.com/popups/fly-in-cta-landscape-design/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:18:\"[\"cta\",\"Services\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:41;a:18:{s:4:\"tmpl\";i:1324;s:2:\"id\";i:22790;s:5:\"title\";s:48:\"Bottom Bar  | Contact | Architecture Photography\";s:9:\"thumbnail\";s:94:\"https://library.elementor.com/wp-content/uploads/2022/03/architecture-photography-65-small.jpg\";s:12:\"tmpl_created\";i:1647532358;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:149:\"https://library.elementor.com/popups/bottom-bar-contact-architecture-photography/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:10:\"bottom bar\";s:4:\"tags\";s:26:\"[\"Architecture\",\"Contact\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:42;a:18:{s:4:\"tmpl\";i:1325;s:2:\"id\";i:22800;s:5:\"title\";s:41:\"Fly-In  | CTA | Speech-Language Therapist\";s:9:\"thumbnail\";s:103:\"https://library.elementor.com/wp-content/uploads/2022/03/66-Speech-Language-Therapist-Click-Through.jpg\";s:12:\"tmpl_created\";i:1647532720;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:142:\"https://library.elementor.com/popups/fly-in-cta-speech-language-therapist/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:25:\"[\"cta\",\"Psychotherapist\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:43;a:18:{s:4:\"tmpl\";i:1326;s:2:\"id\";i:22812;s:5:\"title\";s:35:\"Full Screen | Verification | Winery\";s:9:\"thumbnail\";s:83:\"https://library.elementor.com/wp-content/uploads/2022/03/67-Winery-Verification.jpg\";s:12:\"tmpl_created\";i:1647761384;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:137:\"https://library.elementor.com/popups/full-screen-verification-winery/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:11:\"full screen\";s:4:\"tags\";s:24:\"[\"Alert\",\"Verification\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:44;a:18:{s:4:\"tmpl\";i:1327;s:2:\"id\";i:22822;s:5:\"title\";s:36:\"Fly-In | Subscription | Nutritionist\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2022/03/nutritionist-69-small.jpg\";s:12:\"tmpl_created\";i:1647762620;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:138:\"https://library.elementor.com/popups/fly-in-subscription-nutritionist/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:28:\"[\"Food\",\"Health\",\"Services\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:45;a:18:{s:4:\"tmpl\";i:1328;s:2:\"id\";i:22833;s:5:\"title\";s:40:\"Classic | Subscription | App &#038; SaaS\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2022/03/app-70-small.jpg\";s:12:\"tmpl_created\";i:1647762955;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:135:\"https://library.elementor.com/popups/classic-subscription-app-saas/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:14:\"[\"App\",\"SaaS\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:46;a:18:{s:4:\"tmpl\";i:1329;s:2:\"id\";i:22844;s:5:\"title\";s:41:\"Bottom Bar | Discount | Handmade Cupcakes\";s:9:\"thumbnail\";s:90:\"https://library.elementor.com/wp-content/uploads/2022/03/72-Handmade-Cupcakes-Discount.jpg\";s:12:\"tmpl_created\";i:1647763350;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:143:\"https://library.elementor.com/popups/bottom-bar-discount-handmade-cupcakes/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:10:\"bottom bar\";s:4:\"tags\";s:21:\"[\"Food\",\"Restaurant\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:47;a:18:{s:4:\"tmpl\";i:1330;s:2:\"id\";i:22855;s:5:\"title\";s:40:\"Bottom Bar | Subscription | Fashion Blog\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2022/03/fashion-blog-75-small.jpg\";s:12:\"tmpl_created\";i:1647763907;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:142:\"https://library.elementor.com/popups/bottom-bar-subscription-fashion-blog/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:10:\"bottom bar\";s:4:\"tags\";s:30:\"[\"Blog\",\"Fashion\",\"Subscribe\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:48;a:18:{s:4:\"tmpl\";i:1331;s:2:\"id\";i:22866;s:5:\"title\";s:28:\"Fly-In | CTA | Private Tutor\";s:9:\"thumbnail\";s:83:\"https://library.elementor.com/wp-content/uploads/2022/03/private-tutor-77-small.jpg\";s:12:\"tmpl_created\";i:1647764062;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:130:\"https://library.elementor.com/popups/fly-in-cta-private-tutor/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:49;a:18:{s:4:\"tmpl\";i:1332;s:2:\"id\";i:22876;s:5:\"title\";s:30:\"Classic | CTA | Tennis Academy\";s:9:\"thumbnail\";s:92:\"https://library.elementor.com/wp-content/uploads/2022/03/78-Tennis-Academy-Click-Through.jpg\";s:12:\"tmpl_created\";i:1647765192;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:132:\"https://library.elementor.com/popups/classic-cta-tennis-academy/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:50;a:18:{s:4:\"tmpl\";i:1333;s:2:\"id\";i:22887;s:5:\"title\";s:31:\"Fly-In | CTA | Shared Workspace\";s:9:\"thumbnail\";s:86:\"https://library.elementor.com/wp-content/uploads/2022/03/shared-workspace-79-small.jpg\";s:12:\"tmpl_created\";i:1647765419;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:133:\"https://library.elementor.com/popups/fly-in-cta-shared-workspace/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:18:\"[\"Business\",\"cta\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:51;a:18:{s:4:\"tmpl\";i:1334;s:2:\"id\";i:22899;s:5:\"title\";s:30:\"Bottom Bar | CTA | Art Gallery\";s:9:\"thumbnail\";s:89:\"https://library.elementor.com/wp-content/uploads/2022/03/80-Art-Gallery-Click-Through.jpg\";s:12:\"tmpl_created\";i:1647765652;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:132:\"https://library.elementor.com/popups/bottom-bar-cta-art-gallery/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:10:\"bottom bar\";s:4:\"tags\";s:13:\"[\"Art\",\"cta\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:52;a:18:{s:4:\"tmpl\";i:1335;s:2:\"id\";i:22910;s:5:\"title\";s:44:\"Fly-In | Subscription | Hiking Tours Company\";s:9:\"thumbnail\";s:90:\"https://library.elementor.com/wp-content/uploads/2022/03/hiking-tours-company-81-small.jpg\";s:12:\"tmpl_created\";i:1647765835;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:146:\"https://library.elementor.com/popups/fly-in-subscription-hiking-tours-company/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:29:\"[\"Subscribe\",\"Travel\",\"Trip\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:53;a:18:{s:4:\"tmpl\";i:1336;s:2:\"id\";i:22921;s:5:\"title\";s:26:\"Classic | CTA | Music Band\";s:9:\"thumbnail\";s:80:\"https://library.elementor.com/wp-content/uploads/2022/03/music-band-82-small.jpg\";s:12:\"tmpl_created\";i:1647769462;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:128:\"https://library.elementor.com/popups/classic-cta-music-band/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:21:\"[\"Marketing\",\"Music\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:54;a:18:{s:4:\"tmpl\";i:1337;s:2:\"id\";i:22935;s:5:\"title\";s:35:\"Classic | CTA | Computer Technician\";s:9:\"thumbnail\";s:88:\"https://library.elementor.com/wp-content/uploads/2022/03/comuter-technician-83-small.jpg\";s:12:\"tmpl_created\";i:1647769843;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:137:\"https://library.elementor.com/popups/classic-cta-computer-technician/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:18:\"[\"cta\",\"Services\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:55;a:18:{s:4:\"tmpl\";i:1338;s:2:\"id\";i:22945;s:5:\"title\";s:37:\"Classic | Discount | Delivery Company\";s:9:\"thumbnail\";s:86:\"https://library.elementor.com/wp-content/uploads/2022/03/delivery-company-88-small.jpg\";s:12:\"tmpl_created\";i:1647770834;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:139:\"https://library.elementor.com/popups/classic-discount-delivery-company/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:23:\"[\"Discount\",\"Services\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:56;a:18:{s:4:\"tmpl\";i:1339;s:2:\"id\";i:22959;s:5:\"title\";s:29:\"Classic | Discount | Eco Shop\";s:9:\"thumbnail\";s:79:\"https://library.elementor.com/wp-content/uploads/2022/03/echo-shop-89-small.jpg\";s:12:\"tmpl_created\";i:1647771211;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:131:\"https://library.elementor.com/popups/classic-discount-eco-shop/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:24:\"[\"Discount\",\"Ecommerce\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:57;a:18:{s:4:\"tmpl\";i:1340;s:2:\"id\";i:22972;s:5:\"title\";s:54:\"Fly-In | Subscription | Health &#038; Mindfulness Blog\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2022/03/health-blog-91-small.jpg\";s:12:\"tmpl_created\";i:1647771461;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:149:\"https://library.elementor.com/popups/fly-in-subscription-health-mindfulness-blog/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:21:\"[\"Health\",\"Magazine\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:58;a:18:{s:4:\"tmpl\";i:1341;s:2:\"id\";i:22982;s:5:\"title\";s:31:\"Full Screen | Menu | Art Museum\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2022/03/art-museum-112-small.jpg\";s:12:\"tmpl_created\";i:1647771938;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:133:\"https://library.elementor.com/popups/full-screen-menu-art-museum/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:11:\"full screen\";s:4:\"tags\";s:21:\"[\"Fullscreen\",\"menu\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:59;a:18:{s:4:\"tmpl\";i:1342;s:2:\"id\";i:22992;s:5:\"title\";s:40:\"Classic | Discount | Urban Clothing Shop\";s:9:\"thumbnail\";s:83:\"https://library.elementor.com/wp-content/uploads/2022/03/health-blog-91-small-1.jpg\";s:12:\"tmpl_created\";i:1647773067;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:142:\"https://library.elementor.com/popups/classic-discount-urban-clothing-shop/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:34:\"[\"Discount\",\"Ecommerce\",\"Fashion\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:60;a:18:{s:4:\"tmpl\";i:1343;s:2:\"id\";i:23004;s:5:\"title\";s:60:\"Full Screen | Menu | Digital &#038; Technology Design School\";s:9:\"thumbnail\";s:95:\"https://library.elementor.com/wp-content/uploads/2022/03/digital-design-tech-school-small-1.jpg\";s:12:\"tmpl_created\";i:1647773366;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:155:\"https://library.elementor.com/popups/full-screen-menu-digital-technology-design-school/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:11:\"full screen\";s:4:\"tags\";s:8:\"[\"menu\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:61;a:18:{s:4:\"tmpl\";i:1344;s:2:\"id\";i:23015;s:5:\"title\";s:62:\"Bottom Bar | Contact | Digital &#038; Technology Design School\";s:9:\"thumbnail\";s:93:\"https://library.elementor.com/wp-content/uploads/2022/03/digital-design-tech-school-small.jpg\";s:12:\"tmpl_created\";i:1647773492;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:157:\"https://library.elementor.com/popups/bottom-bar-contact-digital-technology-design-school/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:10:\"bottom bar\";s:4:\"tags\";s:23:\"[\"Contact\",\"Portfolio\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:62;a:18:{s:4:\"tmpl\";i:1345;s:2:\"id\";i:23025;s:5:\"title\";s:32:\"Full Screen | Menu | Flower Shop\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2022/03/flower-shop-small.jpg\";s:12:\"tmpl_created\";i:1647773820;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:134:\"https://library.elementor.com/popups/full-screen-menu-flower-shop/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:11:\"full screen\";s:4:\"tags\";s:21:\"[\"Fullscreen\",\"menu\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:63;a:18:{s:4:\"tmpl\";i:1346;s:2:\"id\";i:23037;s:5:\"title\";s:36:\"Classic | Subscription | Flower Shop\";s:9:\"thumbnail\";s:80:\"https://library.elementor.com/wp-content/uploads/2022/03/flower-shop-small-1.jpg\";s:12:\"tmpl_created\";i:1647773949;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:138:\"https://library.elementor.com/popups/classic-subscription-flower-shop/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:24:\"[\"Discount\",\"Subscribe\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:64;a:18:{s:4:\"tmpl\";i:1347;s:2:\"id\";i:23056;s:5:\"title\";s:48:\"Classic | Discount | Health &#038; Fitness eBook\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2022/03/fitness-ebook-small-1.jpg\";s:12:\"tmpl_created\";i:1647774468;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:143:\"https://library.elementor.com/popups/classic-discount-health-fitness-ebook/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:23:\"[\"Contact\",\"Marketing\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:65;a:18:{s:4:\"tmpl\";i:1348;s:2:\"id\";i:23067;s:5:\"title\";s:37:\"Fly-In | Menu | Baby Sleep Consultant\";s:9:\"thumbnail\";s:90:\"https://library.elementor.com/wp-content/uploads/2022/03/baby-sleep-consultant-small-1.jpg\";s:12:\"tmpl_created\";i:1647778954;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:127:\"https://library.elementor.com/popups/baby-sleep-consultant/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:8:\"[\"menu\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:66;a:18:{s:4:\"tmpl\";i:1349;s:2:\"id\";i:23077;s:5:\"title\";s:46:\"Classic | Subscription | Baby Sleep Consultant\";s:9:\"thumbnail\";s:88:\"https://library.elementor.com/wp-content/uploads/2022/03/baby-sleep-consultant-small.jpg\";s:12:\"tmpl_created\";i:1647779074;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:148:\"https://library.elementor.com/popups/classic-subscription-baby-sleep-consultant/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:12:\"[\"Discount\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:67;a:18:{s:4:\"tmpl\";i:1350;s:2:\"id\";i:23090;s:5:\"title\";s:33:\"Full Screen | Menu | Luxury Hotel\";s:9:\"thumbnail\";s:79:\"https://library.elementor.com/wp-content/uploads/2022/03/luxury-hotel-small.jpg\";s:12:\"tmpl_created\";i:1647779390;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:135:\"https://library.elementor.com/popups/full-screen-menu-luxury-hotel/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:11:\"full screen\";s:4:\"tags\";s:21:\"[\"Fullscreen\",\"menu\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:68;a:18:{s:4:\"tmpl\";i:1351;s:2:\"id\";i:23100;s:5:\"title\";s:31:\"Fly-In | Booking | Luxury Hotel\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2022/03/luxury-hotel-small-1.jpg\";s:12:\"tmpl_created\";i:1647779500;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:133:\"https://library.elementor.com/popups/fly-in-booking-luxury-hotel/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:20:\"[\"Booking\",\"Travel\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:69;a:18:{s:4:\"tmpl\";i:1352;s:2:\"id\";i:23109;s:5:\"title\";s:38:\"Full Screen | Menu | Design Conference\";s:9:\"thumbnail\";s:87:\"https://library.elementor.com/wp-content/uploads/2022/03/design-conference-35-small.jpg\";s:12:\"tmpl_created\";i:1647779675;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:140:\"https://library.elementor.com/popups/full-screen-menu-design-conference/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:11:\"full screen\";s:4:\"tags\";s:21:\"[\"Fullscreen\",\"menu\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:70;a:18:{s:4:\"tmpl\";i:1353;s:2:\"id\";i:23120;s:5:\"title\";s:41:\"Full Screen | Booking | Design Conference\";s:9:\"thumbnail\";s:89:\"https://library.elementor.com/wp-content/uploads/2022/03/design-conference-35-small-1.jpg\";s:12:\"tmpl_created\";i:1647779793;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:143:\"https://library.elementor.com/popups/full-screen-booking-design-conference/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:11:\"full screen\";s:4:\"tags\";s:35:\"[\"Booking\",\"Conference\",\"Creative\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:71;a:18:{s:4:\"tmpl\";i:1354;s:2:\"id\";i:23129;s:5:\"title\";s:29:\"Slide-In | Menu | VR Headsets\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2022/03/VR-headset-small.jpg\";s:12:\"tmpl_created\";i:1647781211;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:131:\"https://library.elementor.com/popups/slide-in-menu-vr-headsets/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:8:\"slide-in\";s:4:\"tags\";s:8:\"[\"menu\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:72;a:18:{s:4:\"tmpl\";i:1355;s:2:\"id\";i:23139;s:5:\"title\";s:31:\"Classic | Contact | VR Headsets\";s:9:\"thumbnail\";s:79:\"https://library.elementor.com/wp-content/uploads/2022/03/VR-headset-small-1.jpg\";s:12:\"tmpl_created\";i:1647781384;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:133:\"https://library.elementor.com/popups/classic-contact-vr-headsets/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:11:\"[\"Contact\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:73;a:18:{s:4:\"tmpl\";i:1356;s:2:\"id\";i:23149;s:5:\"title\";s:38:\"Slide-In | Menu | Portrait Photography\";s:9:\"thumbnail\";s:89:\"https://library.elementor.com/wp-content/uploads/2022/03/48-portrair-photography-Menu.jpg\";s:12:\"tmpl_created\";i:1647782336;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:140:\"https://library.elementor.com/popups/slide-in-menu-portrait-photography/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:8:\"slide-in\";s:4:\"tags\";s:8:\"[\"menu\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:74;a:18:{s:4:\"tmpl\";i:1357;s:2:\"id\";i:23159;s:5:\"title\";s:47:\"Hello Bar | Subscription | Portrait Photography\";s:9:\"thumbnail\";s:97:\"https://library.elementor.com/wp-content/uploads/2022/03/48-portrair-photography-Subscription.jpg\";s:12:\"tmpl_created\";i:1647782478;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:149:\"https://library.elementor.com/popups/hello-bar-subscription-portrait-photography/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:9:\"hello bar\";s:4:\"tags\";s:34:\"[\"Blog\",\"Photography\",\"Subscribe\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:75;a:18:{s:4:\"tmpl\";i:1358;s:2:\"id\";i:23169;s:5:\"title\";s:32:\"Full Screen | Menu | English Pub\";s:9:\"thumbnail\";s:80:\"https://library.elementor.com/wp-content/uploads/2022/03/49-englisg-pub-Menu.jpg\";s:12:\"tmpl_created\";i:1647782664;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:134:\"https://library.elementor.com/popups/full-screen-menu-english-pub/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:11:\"full screen\";s:4:\"tags\";s:21:\"[\"Fullscreen\",\"menu\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:76;a:18:{s:4:\"tmpl\";i:1359;s:2:\"id\";i:23179;s:5:\"title\";s:32:\"Classic | Discount | English Pub\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2022/03/49-englisg-pub-Discount.jpg\";s:12:\"tmpl_created\";i:1647782796;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:134:\"https://library.elementor.com/popups/classic-discount-english-pub/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:20:\"[\"Discount\",\"Offer\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:77;a:18:{s:4:\"tmpl\";i:1360;s:2:\"id\";i:23189;s:5:\"title\";s:27:\"Full Screen | Menu | Singer\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2022/03/58-Music-Artist-Menu.jpg\";s:12:\"tmpl_created\";i:1647783070;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:129:\"https://library.elementor.com/popups/full-screen-menu-singer/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:11:\"full screen\";s:4:\"tags\";s:29:\"[\"Fullscreen\",\"menu\",\"Music\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:78;a:18:{s:4:\"tmpl\";i:1361;s:2:\"id\";i:23200;s:5:\"title\";s:31:\"Classic | Subscription | Singer\";s:9:\"thumbnail\";s:89:\"https://library.elementor.com/wp-content/uploads/2022/03/58-Music-Artist-Subscription.jpg\";s:12:\"tmpl_created\";i:1647783249;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:133:\"https://library.elementor.com/popups/classic-subscription-singer/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:21:\"[\"Music\",\"Subscribe\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:79;a:18:{s:4:\"tmpl\";i:1362;s:2:\"id\";i:23210;s:5:\"title\";s:38:\"Full Screen | Menu | Virtual Assistant\";s:9:\"thumbnail\";s:86:\"https://library.elementor.com/wp-content/uploads/2022/03/virtual-assistnt-73-small.jpg\";s:12:\"tmpl_created\";i:1647784292;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:140:\"https://library.elementor.com/popups/full-screen-menu-virtual-assistant/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:11:\"full screen\";s:4:\"tags\";s:21:\"[\"Fullscreen\",\"menu\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:80;a:18:{s:4:\"tmpl\";i:1363;s:2:\"id\";i:23223;s:5:\"title\";s:39:\"Hello Bar | Contact | Virtual Assistant\";s:9:\"thumbnail\";s:92:\"https://library.elementor.com/wp-content/uploads/2022/03/73-Virtual-Assistant-Contact-Us.jpg\";s:12:\"tmpl_created\";i:1647784616;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:141:\"https://library.elementor.com/popups/hello-bar-contact-virtual-assistant/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:9:\"hello bar\";s:4:\"tags\";s:37:\"[\"Contact\",\"Psychologist\",\"Services\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:81;a:18:{s:4:\"tmpl\";i:1364;s:2:\"id\";i:23234;s:5:\"title\";s:32:\"Slide-In  | Menu | Personal Chef\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2022/03/74-Personal-Chef-Menu.jpg\";s:12:\"tmpl_created\";i:1647798194;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:133:\"https://library.elementor.com/popups/slide-in-menu-personal-chef/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:8:\"slide-in\";s:4:\"tags\";s:8:\"[\"menu\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:82;a:18:{s:4:\"tmpl\";i:1365;s:2:\"id\";i:23244;s:5:\"title\";s:29:\"Classic | CTA | Personal Chef\";s:9:\"thumbnail\";s:88:\"https://library.elementor.com/wp-content/uploads/2022/03/74-Personal-Chef-Contact-Us.jpg\";s:12:\"tmpl_created\";i:1647798297;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:131:\"https://library.elementor.com/popups/classic-cta-personal-chef/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:24:\"[\"Booking\",\"Chef\",\"cta\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:83;a:18:{s:4:\"tmpl\";i:1366;s:2:\"id\";i:23254;s:5:\"title\";s:31:\"Full Screen | Menu | Food Truck\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2022/03/food-truck-76-small-1.jpg\";s:12:\"tmpl_created\";i:1647798447;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:133:\"https://library.elementor.com/popups/full-screen-menu-food-truck/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:11:\"full screen\";s:4:\"tags\";s:21:\"[\"Fullscreen\",\"menu\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:84;a:18:{s:4:\"tmpl\";i:1367;s:2:\"id\";i:23265;s:5:\"title\";s:30:\"Fly-In | Discount | Food Truck\";s:9:\"thumbnail\";s:80:\"https://library.elementor.com/wp-content/uploads/2022/03/food-truck-76-small.jpg\";s:12:\"tmpl_created\";i:1647798657;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:132:\"https://library.elementor.com/popups/fly-in-discount-food-truck/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:20:\"[\"Discount\",\"Offer\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:85;a:18:{s:4:\"tmpl\";i:1369;s:2:\"id\";i:23323;s:5:\"title\";s:28:\"Classic | CTA | Black Friday\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2022/03/Black-Friday-6-Small.jpg\";s:12:\"tmpl_created\";i:1647855505;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:130:\"https://library.elementor.com/popups/classic-cta-black-friday/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:34:\"[\"Black Friday\",\"cta\",\"Ecommerce\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:86;a:18:{s:4:\"tmpl\";i:1370;s:2:\"id\";i:23329;s:5:\"title\";s:29:\"Slide-In | CTA | Black Friday\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2022/03/Black-Friday-5-Small.jpg\";s:12:\"tmpl_created\";i:1647855865;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:131:\"https://library.elementor.com/popups/slide-in-cta-black-friday/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:8:\"slide-in\";s:4:\"tags\";s:34:\"[\"Black Friday\",\"cta\",\"Ecommerce\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:87;a:18:{s:4:\"tmpl\";i:1371;s:2:\"id\";i:23335;s:5:\"title\";s:31:\"Slide-In | CTA | Black Friday 1\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2022/03/Black-Friday-1-Small.jpg\";s:12:\"tmpl_created\";i:1647856357;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:133:\"https://library.elementor.com/popups/slide-in-cta-black-friday-1/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:8:\"slide-in\";s:4:\"tags\";s:34:\"[\"Black Friday\",\"cta\",\"Ecommerce\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:88;a:18:{s:4:\"tmpl\";i:1372;s:2:\"id\";i:23341;s:5:\"title\";s:30:\"Classic | CTA | Black Friday 2\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2022/03/Black-Friday-3-Small.jpg\";s:12:\"tmpl_created\";i:1647856493;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:132:\"https://library.elementor.com/popups/classic-cta-black-friday-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:34:\"[\"Black Friday\",\"cta\",\"Ecommerce\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:89;a:18:{s:4:\"tmpl\";i:1373;s:2:\"id\";i:23347;s:5:\"title\";s:30:\"Classic | CTA | Black Friday 3\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2022/03/Black-Friday-2-Small.jpg\";s:12:\"tmpl_created\";i:1647856891;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:132:\"https://library.elementor.com/popups/classic-cta-black-friday-3/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:34:\"[\"Black Friday\",\"cta\",\"Ecommerce\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:90;a:18:{s:4:\"tmpl\";i:1374;s:2:\"id\";i:23354;s:5:\"title\";s:30:\"Classic | CTA | Black Friday 4\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2022/03/Black-Friday-4-Small.jpg\";s:12:\"tmpl_created\";i:1647856996;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:132:\"https://library.elementor.com/popups/classic-cta-black-friday-4/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:34:\"[\"Black Friday\",\"cta\",\"Ecommerce\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:91;a:18:{s:4:\"tmpl\";i:1375;s:2:\"id\";i:23394;s:5:\"title\";s:27:\"Classic | CTA | Halloween 1\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2022/03/Halloween-3-Small.jpg\";s:12:\"tmpl_created\";i:1647857351;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:129:\"https://library.elementor.com/popups/classic-cta-halloween-1/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:31:\"[\"cta\",\"Ecommerce\",\"Halloween\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:92;a:18:{s:4:\"tmpl\";i:1376;s:2:\"id\";i:23401;s:5:\"title\";s:33:\"Slide-In | Discount | Halloween 2\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2022/03/Halloween-2-Small.jpg\";s:12:\"tmpl_created\";i:1647857567;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:135:\"https://library.elementor.com/popups/slide-in-discount-halloween-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:8:\"slide-in\";s:4:\"tags\";s:36:\"[\"Discount\",\"Ecommerce\",\"Halloween\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:93;a:18:{s:4:\"tmpl\";i:1377;s:2:\"id\";i:23407;s:5:\"title\";s:33:\"Slide-In | Discount | Halloween 3\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2022/03/Halloween-1-Small.jpg\";s:12:\"tmpl_created\";i:1647857814;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:135:\"https://library.elementor.com/popups/slide-in-discount-halloween-3/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:8:\"slide-in\";s:4:\"tags\";s:36:\"[\"Discount\",\"Ecommerce\",\"Halloween\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:94;a:18:{s:4:\"tmpl\";i:1378;s:2:\"id\";i:23416;s:5:\"title\";s:31:\"Fly-In | Discount | Halloween 4\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2022/03/Halloween-5-Small.jpg\";s:12:\"tmpl_created\";i:1647858024;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:133:\"https://library.elementor.com/popups/fly-in-discount-halloween-4/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:44:\"[\"Discount\",\"Ecommerce\",\"Halloween\",\"Offer\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:95;a:18:{s:4:\"tmpl\";i:1379;s:2:\"id\";i:23422;s:5:\"title\";s:36:\"Classic | Subscription | Halloween 5\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2022/03/Halloween-4-Small.jpg\";s:12:\"tmpl_created\";i:1647858246;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:138:\"https://library.elementor.com/popups/classic-subscription-halloween-5/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:48:\"[\"Discount\",\"Ecommerce\",\"Halloween\",\"Subscribe\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:96;a:18:{s:4:\"tmpl\";i:1380;s:2:\"id\";i:23471;s:5:\"title\";s:28:\"Slide-In | CTA | Christmas 1\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2022/03/Christmas-2-Small.jpg\";s:12:\"tmpl_created\";i:1647859193;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:130:\"https://library.elementor.com/popups/slide-in-cta-christmas-1/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:8:\"slide-in\";s:4:\"tags\";s:19:\"[\"Christmas\",\"cta\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:97;a:18:{s:4:\"tmpl\";i:1381;s:2:\"id\";i:23477;s:5:\"title\";s:28:\"Slide-In | CTA | Christmas 2\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2022/03/Christmas-4-Small.jpg\";s:12:\"tmpl_created\";i:1647859838;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:130:\"https://library.elementor.com/popups/slide-in-cta-christmas-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:8:\"slide-in\";s:4:\"tags\";s:19:\"[\"Christmas\",\"cta\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:98;a:18:{s:4:\"tmpl\";i:1382;s:2:\"id\";i:23483;s:5:\"title\";s:26:\"Fly-In | CTA | Christmas 3\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2022/03/Christmas-1-Small.jpg\";s:12:\"tmpl_created\";i:1647860157;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:128:\"https://library.elementor.com/popups/fly-in-cta-christmas-3/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:31:\"[\"Christmas\",\"cta\",\"Ecommerce\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:99;a:18:{s:4:\"tmpl\";i:1383;s:2:\"id\";i:23489;s:5:\"title\";s:33:\"Slide-In | Discount | Christmas 4\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2022/03/Christmas-5-Small.jpg\";s:12:\"tmpl_created\";i:1647860302;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:135:\"https://library.elementor.com/popups/slide-in-discount-christmas-4/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:8:\"slide-in\";s:4:\"tags\";s:31:\"[\"Christmas\",\"cta\",\"Ecommerce\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:100;a:18:{s:4:\"tmpl\";i:1384;s:2:\"id\";i:23496;s:5:\"title\";s:32:\"Classic | Discount | Christmas 5\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2022/03/Christmas-3-Small.jpg\";s:12:\"tmpl_created\";i:1647860454;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:134:\"https://library.elementor.com/popups/classic-discount-christmas-5/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:29:\"[\"Christmas\",\"Offer\",\"Sales\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:101;a:18:{s:4:\"tmpl\";i:1385;s:2:\"id\";i:23523;s:5:\"title\";s:30:\"Classic | CTA | Valentines Day\";s:9:\"thumbnail\";s:83:\"https://library.elementor.com/wp-content/uploads/2022/03/Valentines-Day-2-Small.jpg\";s:12:\"tmpl_created\";i:1647860912;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:132:\"https://library.elementor.com/popups/classic-cta-valentines-day/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:25:\"[\"cta\",\"Valentine\'s Day\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:102;a:18:{s:4:\"tmpl\";i:1386;s:2:\"id\";i:23529;s:5:\"title\";s:39:\"Hello Bar | Discount | Valentines Day 2\";s:9:\"thumbnail\";s:83:\"https://library.elementor.com/wp-content/uploads/2022/03/Valentines-Day-1-Small.jpg\";s:12:\"tmpl_created\";i:1647861064;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:141:\"https://library.elementor.com/popups/hello-bar-discount-valentines-day-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:9:\"hello bar\";s:4:\"tags\";s:30:\"[\"Discount\",\"Valentine\'s Day\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:103;a:18:{s:4:\"tmpl\";i:1387;s:2:\"id\";i:23536;s:5:\"title\";s:32:\"Classic | CTA | Valentines Day 3\";s:9:\"thumbnail\";s:83:\"https://library.elementor.com/wp-content/uploads/2022/03/Valentines-Day-3-Small.jpg\";s:12:\"tmpl_created\";i:1647861536;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:134:\"https://library.elementor.com/popups/classic-cta-valentines-day-3/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:25:\"[\"cta\",\"Valentine\'s Day\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:104;a:18:{s:4:\"tmpl\";i:1388;s:2:\"id\";i:23586;s:5:\"title\";s:51:\"Fly-In | Subscribe | Health &#038; Wellness Company\";s:9:\"thumbnail\";s:103:\"https://library.elementor.com/wp-content/uploads/2022/03/35-Subscribe-Health-Wellness-Company-Small.jpg\";s:12:\"tmpl_created\";i:1647862008;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:146:\"https://library.elementor.com/popups/fly-in-subscribe-health-wellness-company/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:24:\"[\"Business\",\"Subscribe\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:105;a:18:{s:4:\"tmpl\";i:1389;s:2:\"id\";i:23592;s:5:\"title\";s:34:\"Classic | Subscribe | Tech Company\";s:9:\"thumbnail\";s:92:\"https://library.elementor.com/wp-content/uploads/2022/03/36-Subscribe-Tech-Company-Small.jpg\";s:12:\"tmpl_created\";i:1647866706;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:136:\"https://library.elementor.com/popups/classic-subscribe-tech-company/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:25:\"[\"Marketing\",\"Subscribe\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:106;a:18:{s:4:\"tmpl\";i:1390;s:2:\"id\";i:23598;s:5:\"title\";s:36:\"Classic | Contact Us | Fight Classes\";s:9:\"thumbnail\";s:94:\"https://library.elementor.com/wp-content/uploads/2022/03/37-Contact-Us-Fight-Classes-Small.jpg\";s:12:\"tmpl_created\";i:1647866869;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:138:\"https://library.elementor.com/popups/classic-contact-us-fight-classes/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:23:\"[\"Contact\",\"Marketing\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:107;a:18:{s:4:\"tmpl\";i:1391;s:2:\"id\";i:23611;s:5:\"title\";s:31:\"Classic | CTA | Mochi Shop Sale\";s:9:\"thumbnail\";s:99:\"https://library.elementor.com/wp-content/uploads/2022/03/39-Click-Through-Mochi-Shop-Sale-Small.jpg\";s:12:\"tmpl_created\";i:1647867750;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:133:\"https://library.elementor.com/popups/classic-cta-mochi-shop-sale/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:23:\"[\"cta\",\"Offer\",\"Sales\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:108;a:18:{s:4:\"tmpl\";i:1392;s:2:\"id\";i:23618;s:5:\"title\";s:28:\"Classic | CTA | Fashion Shop\";s:9:\"thumbnail\";s:96:\"https://library.elementor.com/wp-content/uploads/2022/03/40-Click-Through-Fashion-Shop-Small.jpg\";s:12:\"tmpl_created\";i:1647868251;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:130:\"https://library.elementor.com/popups/classic-cta-fashion-shop/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:19:\"[\"cta\",\"Ecommerce\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:109;a:18:{s:4:\"tmpl\";i:1393;s:2:\"id\";i:23624;s:5:\"title\";s:29:\"Fly-In | Login | Tech Company\";s:9:\"thumbnail\";s:88:\"https://library.elementor.com/wp-content/uploads/2022/03/41-Login-Tech-Company-Small.jpg\";s:12:\"tmpl_created\";i:1647868704;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:131:\"https://library.elementor.com/popups/fly-in-login-tech-company/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:9:\"[\"Login\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:110;a:18:{s:4:\"tmpl\";i:1394;s:2:\"id\";i:23630;s:5:\"title\";s:36:\"Fly-In | Verification | Liquor Store\";s:9:\"thumbnail\";s:95:\"https://library.elementor.com/wp-content/uploads/2022/03/42-Verification-Liquor-Store-Small.jpg\";s:12:\"tmpl_created\";i:1647870308;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:138:\"https://library.elementor.com/popups/fly-in-verification-liquor-store/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:16:\"[\"Verification\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:111;a:18:{s:4:\"tmpl\";i:1395;s:2:\"id\";i:23636;s:5:\"title\";s:39:\"Hello Bar | Subscribe | Online Magazine\";s:9:\"thumbnail\";s:95:\"https://library.elementor.com/wp-content/uploads/2022/03/44-Subscribe-Online-Magazine-Small.jpg\";s:12:\"tmpl_created\";i:1647870465;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:141:\"https://library.elementor.com/popups/hello-bar-subscribe-online-magazine/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:9:\"hello bar\";s:4:\"tags\";s:20:\"[\"Blog\",\"Subscribe\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:112;a:18:{s:4:\"tmpl\";i:1396;s:2:\"id\";i:23642;s:5:\"title\";s:27:\"Fly-In | Login | Health Spa\";s:9:\"thumbnail\";s:86:\"https://library.elementor.com/wp-content/uploads/2022/03/43-Login-Health-Spa-Small.jpg\";s:12:\"tmpl_created\";i:1647872427;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:129:\"https://library.elementor.com/popups/fly-in-login-health-spa/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:20:\"[\"Login\",\"Services\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:113;a:18:{s:4:\"tmpl\";i:1397;s:2:\"id\";i:23648;s:5:\"title\";s:33:\"Fly-In | Verification | Wine Shop\";s:9:\"thumbnail\";s:92:\"https://library.elementor.com/wp-content/uploads/2022/03/45-Verification-Wine-Shop-Small.jpg\";s:12:\"tmpl_created\";i:1647872627;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:135:\"https://library.elementor.com/popups/fly-in-verification-wine-shop/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:16:\"[\"Verification\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:114;a:18:{s:4:\"tmpl\";i:1421;s:2:\"id\";i:24235;s:5:\"title\";s:24:\"Ladydog Club &#8211; NFT\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2022/05/Ladydog_Club.jpg\";s:12:\"tmpl_created\";i:1651525072;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/lp/ladydog-club-nft/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:3:\"NFT\";s:4:\"tags\";s:100:\"[\"Art\",\"Author\",\"Business\",\"Creative\",\"Design\",\"Gallery\",\"Landing Pages\",\"NFT\",\"Products\",\"Virtual\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:115;a:18:{s:4:\"tmpl\";i:1422;s:2:\"id\";i:24166;s:5:\"title\";s:15:\"Dot &#8211; NFT\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2022/05/Dot-250_280.jpg\";s:12:\"tmpl_created\";i:1651525117;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:109:\"https://library.elementor.com/lp/dot-nft/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:3:\"NFT\";s:4:\"tags\";s:100:\"[\"Art\",\"Author\",\"Business\",\"Creative\",\"Design\",\"Gallery\",\"Landing Pages\",\"NFT\",\"Products\",\"Virtual\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:116;a:18:{s:4:\"tmpl\";i:1423;s:2:\"id\";i:24191;s:5:\"title\";s:28:\"Cosmic Neighbors &#8211; NFT\";s:9:\"thumbnail\";s:85:\"https://library.elementor.com/wp-content/uploads/2022/05/Cosmic_Neighbors-250_280.jpg\";s:12:\"tmpl_created\";i:1651525124;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/lp/cosmic-neighbors-nft/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:3:\"NFT\";s:4:\"tags\";s:100:\"[\"Art\",\"Author\",\"Business\",\"Creative\",\"Design\",\"Gallery\",\"Landing Pages\",\"NFT\",\"Products\",\"Virtual\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:117;a:18:{s:4:\"tmpl\";i:1424;s:2:\"id\";i:24255;s:5:\"title\";s:30:\"Happy Food Friends &#8211; NFT\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2022/05/Featured_Image.jpg\";s:12:\"tmpl_created\";i:1651525475;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:124:\"https://library.elementor.com/lp/happy-food-friends-nft/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:3:\"NFT\";s:4:\"tags\";s:100:\"[\"Art\",\"Author\",\"Business\",\"Creative\",\"Design\",\"Gallery\",\"Landing Pages\",\"NFT\",\"Products\",\"Virtual\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:118;a:18:{s:4:\"tmpl\";i:1443;s:2:\"id\";i:24599;s:5:\"title\";s:27:\"Wireframe &#8211; Courses 1\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2022/05/Wireframe-—-Courses-1.jpg\";s:12:\"tmpl_created\";i:1653989626;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:121:\"https://library.elementor.com/lp/wireframe-courses-1/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:9:\"Wireframe\";s:4:\"tags\";s:180:\"[\"About\",\"Academy\",\"Booking\",\"Business\",\"Course Online\",\"Features\",\"Footer\",\"Landing Pages\",\"Online Service\",\"Professional\",\"School\",\"Services\",\"Subscribe\",\"Teacher\",\"Testimonial\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:119;a:18:{s:4:\"tmpl\";i:1444;s:2:\"id\";i:24614;s:5:\"title\";s:28:\"Wireframe &#8211; Services 1\";s:9:\"thumbnail\";s:87:\"https://library.elementor.com/wp-content/uploads/2022/05/Wireframe-—-Services-1-2.jpg\";s:12:\"tmpl_created\";i:1653990084;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/lp/wireframe-services-1/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:9:\"Wireframe\";s:4:\"tags\";s:139:\"[\"About\",\"Business\",\"Contact\",\"Features\",\"Footer\",\"Form\",\"Header\",\"Landing Pages\",\"Online Service\",\"Professional\",\"Services\",\"Testimonial\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:120;a:18:{s:4:\"tmpl\";i:1445;s:2:\"id\";i:24629;s:5:\"title\";s:28:\"Wireframe &#8211; Services 2\";s:9:\"thumbnail\";s:87:\"https://library.elementor.com/wp-content/uploads/2022/05/Wireframe-—-Services-2-2.jpg\";s:12:\"tmpl_created\";i:1653990132;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/lp/wireframe-services-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:9:\"Wireframe\";s:4:\"tags\";s:123:\"[\"About\",\"Business\",\"Contact\",\"Features\",\"Footer\",\"Form\",\"Gallery\",\"Landing Pages\",\"Professional\",\"Services\",\"Testimonial\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:121;a:18:{s:4:\"tmpl\";i:1446;s:2:\"id\";i:24644;s:5:\"title\";s:27:\"Wireframe &#8211; Webinar 1\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2022/05/Wireframe-—-Webinar-1.jpg\";s:12:\"tmpl_created\";i:1653990164;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:121:\"https://library.elementor.com/lp/wireframe-webinar-1/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:9:\"Wireframe\";s:4:\"tags\";s:177:\"[\"About\",\"Academy\",\"Booking\",\"Conference\",\"Course Online\",\"Education\",\"Features\",\"Footer\",\"Form\",\"Landing Pages\",\"Online Event\",\"Online Service\",\"Subscribe\",\"Virtual\",\"Webinar\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:122;a:18:{s:4:\"tmpl\";i:1447;s:2:\"id\";i:24655;s:5:\"title\";s:28:\"Wireframe &#8211; Services 3\";s:9:\"thumbnail\";s:87:\"https://library.elementor.com/wp-content/uploads/2022/05/Wireframe-—-Services-3-2.jpg\";s:12:\"tmpl_created\";i:1653990198;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/lp/wireframe-services-3/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:9:\"Wireframe\";s:4:\"tags\";s:143:\"[\"About\",\"Agency\",\"Business\",\"Contact\",\"Footer\",\"Form\",\"Gallery\",\"Landing Pages\",\"Portfolio\",\"Professional\",\"Project\",\"Services\",\"Testimonial\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:123;a:18:{s:4:\"tmpl\";i:1448;s:2:\"id\";i:24677;s:5:\"title\";s:28:\"Wireframe &#8211; Services 4\";s:9:\"thumbnail\";s:85:\"https://library.elementor.com/wp-content/uploads/2022/05/Wireframe-—-Services-4.jpg\";s:12:\"tmpl_created\";i:1653990233;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/lp/wireframe-services-4/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:9:\"Wireframe\";s:4:\"tags\";s:102:\"[\"About\",\"Business\",\"Contact\",\"Footer\",\"Form\",\"Landing Pages\",\"Professional\",\"Services\",\"Testimonial\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:124;a:18:{s:4:\"tmpl\";i:1449;s:2:\"id\";i:24687;s:5:\"title\";s:28:\"Wireframe &#8211; Products 1\";s:9:\"thumbnail\";s:85:\"https://library.elementor.com/wp-content/uploads/2022/05/Wireframe-—-Products-1.jpg\";s:12:\"tmpl_created\";i:1653990273;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/lp/wireframe-products-1/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:9:\"Wireframe\";s:4:\"tags\";s:128:\"[\"About\",\"Booking\",\"Business\",\"Clients\",\"Ecommerce\",\"Features\",\"Footer\",\"Landing Pages\",\"Products\",\"Sales\",\"Shop\",\"Testimonial\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:125;a:18:{s:4:\"tmpl\";i:1450;s:2:\"id\";i:24706;s:5:\"title\";s:28:\"Wireframe &#8211; Services 5\";s:9:\"thumbnail\";s:85:\"https://library.elementor.com/wp-content/uploads/2022/05/Wireframe-—-Services-5.jpg\";s:12:\"tmpl_created\";i:1653990322;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/lp/wireframe-services-5/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:9:\"Wireframe\";s:4:\"tags\";s:149:\"[\"About\",\"Booking\",\"Consulting\",\"Contact\",\"Doctor\",\"Footer\",\"Form\",\"Header\",\"Landing Pages\",\"Online Service\",\"Professional\",\"Services\",\"Testimonial\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:126;a:18:{s:4:\"tmpl\";i:1451;s:2:\"id\";i:23604;s:5:\"title\";s:38:\"Classic | Subscribe | Nail Polish Shop\";s:9:\"thumbnail\";s:96:\"https://library.elementor.com/wp-content/uploads/2022/03/38-Subscribe-Nail-Polish-Shop-Small.jpg\";s:12:\"tmpl_created\";i:1660205114;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:140:\"https://library.elementor.com/popups/classic-subscribe-nail-polish-shop/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:20:\"[\"Blog\",\"Subscribe\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:127;a:18:{s:4:\"tmpl\";i:1452;s:2:\"id\";i:23047;s:5:\"title\";s:46:\"Fly-In | Contact | Health &#038; Fitness eBook\";s:9:\"thumbnail\";s:80:\"https://library.elementor.com/wp-content/uploads/2022/03/fitness-ebook-small.jpg\";s:12:\"tmpl_created\";i:1660205149;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:141:\"https://library.elementor.com/popups/fly-in-contact-health-fitness-ebook/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:28:\"[\"Contact\",\"Ebook\",\"Health\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:128;a:18:{s:4:\"tmpl\";i:1199;s:2:\"id\";i:18839;s:5:\"title\";s:27:\"Hello Bar | CTA | eCommerce\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2021/05/350x250.png\";s:12:\"tmpl_created\";i:1621870603;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:129:\"https://library.elementor.com/popups/hello-bar-cta-ecommerce/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:9:\"hello bar\";s:4:\"tags\";s:41:\"[\"Ecommerce\",\"Online Shop\",\"Sale\",\"Shop\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:129;a:18:{s:4:\"tmpl\";i:1247;s:2:\"id\";i:21907;s:5:\"title\";s:50:\"Fly-In | Team Details  | Electronic Music Festival\";s:9:\"thumbnail\";s:104:\"https://library.elementor.com/wp-content/uploads/2022/03/Kit-8-electronic-music-festival-CTA-image-1.jpg\";s:12:\"tmpl_created\";i:1646660881;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:157:\"https://library.elementor.com/popups/fly-in-team-details-popup-electronic-music-festival/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:8:\"[\"Team\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:130;a:18:{s:4:\"tmpl\";i:1253;s:2:\"id\";i:22162;s:5:\"title\";s:46:\"Full Screen | Menu | Electronic Music Festival\";s:9:\"thumbnail\";s:90:\"https://library.elementor.com/wp-content/uploads/2022/03/8-music-festival-Team-Details.jpg\";s:12:\"tmpl_created\";i:1647272934;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:154:\"https://library.elementor.com/popups/full-screen-menu-popup-electronic-music-festival/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:11:\"full screen\";s:4:\"tags\";s:21:\"[\"Fullscreen\",\"menu\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:131;a:18:{s:4:\"tmpl\";i:1254;s:2:\"id\";i:22172;s:5:\"title\";s:45:\"Classic | Discount | Health &#038; Beauty Spa\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2022/03/health-beauty-spa-small.jpg\";s:12:\"tmpl_created\";i:1647273547;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:146:\"https://library.elementor.com/popups/classic-discount-popup-health-beauty-spa/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:36:\"[\"Hair\",\"Health\",\"Sales\",\"Services\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:132;a:18:{s:4:\"tmpl\";i:1255;s:2:\"id\";i:22183;s:5:\"title\";s:44:\"Hello Bar | CTA | Environmental Organization\";s:9:\"thumbnail\";s:104:\"https://library.elementor.com/wp-content/uploads/2022/03/11-Environmental-Organization-Click-Through.jpg\";s:12:\"tmpl_created\";i:1647274384;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:152:\"https://library.elementor.com/popups/hello-bar-cta-popup-environmental-organization/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:9:\"hello bar\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:133;a:18:{s:4:\"tmpl\";i:1256;s:2:\"id\";i:22195;s:5:\"title\";s:39:\"Classic | Discount | Italian Restaurant\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2022/03/restaurant-small.jpg\";s:12:\"tmpl_created\";i:1647329432;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:147:\"https://library.elementor.com/popups/classic-discount-popup-italian-restaurant/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:22:\"[\"Restaurant\",\"Sales\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:134;a:18:{s:4:\"tmpl\";i:1257;s:2:\"id\";i:22210;s:5:\"title\";s:45:\"Bottom Bar | Discount | Technology Conference\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2022/03/tech-conference-small.jpg\";s:12:\"tmpl_created\";i:1647330423;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:153:\"https://library.elementor.com/popups/bottom-bar-discount-popup-technology-conference/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:10:\"bottom bar\";s:4:\"tags\";s:38:\"[\"Conference\",\"Sales\",\"Save the Date\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:135;a:18:{s:4:\"tmpl\";i:1258;s:2:\"id\";i:22221;s:5:\"title\";s:32:\"Hello Bar | Menu | Tattoo Studio\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2022/03/tattoo-studio-small-1.jpg\";s:12:\"tmpl_created\";i:1647330705;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:140:\"https://library.elementor.com/popups/hello-bar-menu-popup-tattoo-studio/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:9:\"hello bar\";s:4:\"tags\";s:17:\"[\"Header\",\"menu\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:136;a:18:{s:4:\"tmpl\";i:1259;s:2:\"id\";i:22231;s:5:\"title\";s:37:\"Full Screen | Booking | Tattoo Studio\";s:9:\"thumbnail\";s:80:\"https://library.elementor.com/wp-content/uploads/2022/03/tattoo-studio-small.jpg\";s:12:\"tmpl_created\";i:1647331823;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:145:\"https://library.elementor.com/popups/full-screen-booking-popup-tattoo-studio/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:11:\"full screen\";s:4:\"tags\";s:32:\"[\"Booking\",\"Contact\",\"Services\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:137;a:18:{s:4:\"tmpl\";i:1260;s:2:\"id\";i:22251;s:5:\"title\";s:34:\"Classic | Discount | Dental Clinic\";s:9:\"thumbnail\";s:80:\"https://library.elementor.com/wp-content/uploads/2022/03/dental-clinic-small.jpg\";s:12:\"tmpl_created\";i:1647332171;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:142:\"https://library.elementor.com/popups/classic-discount-popup-dental-clinic/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:30:\"[\"Health\",\"Marketing\",\"Sales\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:138;a:18:{s:4:\"tmpl\";i:1261;s:2:\"id\";i:22261;s:5:\"title\";s:34:\"Slide-In | Contact | Makeup Artist\";s:9:\"thumbnail\";s:88:\"https://library.elementor.com/wp-content/uploads/2022/03/20-Makeup-Artist-Contact-Us.jpg\";s:12:\"tmpl_created\";i:1647333946;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:142:\"https://library.elementor.com/popups/slide-in-contact-popup-makeup-artist/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:8:\"slide-in\";s:4:\"tags\";s:33:\"[\"Business\",\"Contact\",\"Services\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:139;a:18:{s:4:\"tmpl\";i:1262;s:2:\"id\";i:22271;s:5:\"title\";s:24:\"Fly-In | CTA | Headphone\";s:9:\"thumbnail\";s:79:\"https://library.elementor.com/wp-content/uploads/2022/03/headphones-1-small.jpg\";s:12:\"tmpl_created\";i:1647334784;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:132:\"https://library.elementor.com/popups/fly-in-cta-popup-headphone/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:41:\"[\"cta\",\"Ecommerce\",\"Marketing\",\"Product\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:140;a:18:{s:4:\"tmpl\";i:1263;s:2:\"id\";i:22277;s:5:\"title\";s:29:\"Classic | CTA | Online Course\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2022/03/online-course-2.jpg\";s:12:\"tmpl_created\";i:1647337110;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:137:\"https://library.elementor.com/popups/classic-cta-popup-online-course/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:35:\"[\"Course Online\",\"cta\",\"Marketing\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:141;a:18:{s:4:\"tmpl\";i:1264;s:2:\"id\";i:22283;s:5:\"title\";s:40:\"Bottom Bar | Contact | Virtual Assistant\";s:9:\"thumbnail\";s:80:\"https://library.elementor.com/wp-content/uploads/2022/03/virtual-assistant-3.jpg\";s:12:\"tmpl_created\";i:1647337517;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:148:\"https://library.elementor.com/popups/bottom-bar-contact-popup-virtual-assistant/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:10:\"bottom bar\";s:4:\"tags\";s:33:\"[\"Business\",\"Contact\",\"Services\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:142;a:18:{s:4:\"tmpl\";i:1265;s:2:\"id\";i:22289;s:5:\"title\";s:32:\"Fly-In | Contact | Private Tutor\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2022/03/private-tutor-4.jpg\";s:12:\"tmpl_created\";i:1647337676;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:140:\"https://library.elementor.com/popups/fly-in-contact-popup-private-tutor/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:27:\"[\"Contact\",\"Course Online\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:143;a:18:{s:4:\"tmpl\";i:1266;s:2:\"id\";i:22295;s:5:\"title\";s:31:\"Classic |  Login | Login Travel\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2022/03/login-travel-6.jpg\";s:12:\"tmpl_created\";i:1647339467;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:138:\"https://library.elementor.com/popups/classic-login-popup-login-travel/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:9:\"[\"Login\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:144;a:18:{s:4:\"tmpl\";i:1267;s:2:\"id\";i:22301;s:5:\"title\";s:36:\"Full Screen | Login | Login Business\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2022/03/login-business-7.jpg\";s:12:\"tmpl_created\";i:1647339782;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:144:\"https://library.elementor.com/popups/full-screen-login-popup-login-business/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:11:\"full screen\";s:4:\"tags\";s:16:\"[\"Login\",\"SaaS\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:145;a:18:{s:4:\"tmpl\";i:1268;s:2:\"id\";i:22307;s:5:\"title\";s:28:\"Classic | Login | Login Blog\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2022/03/login-blog-8.jpg\";s:12:\"tmpl_created\";i:1647339986;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:136:\"https://library.elementor.com/popups/classic-login-popup-login-blog/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:16:\"[\"Blog\",\"Login\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:146;a:18:{s:4:\"tmpl\";i:1269;s:2:\"id\";i:22313;s:5:\"title\";s:31:\"Classic | Login | Login Fashion\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2022/03/login-fashion-9.jpg\";s:12:\"tmpl_created\";i:1647340204;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:139:\"https://library.elementor.com/popups/classic-login-popup-login-fashion/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:19:\"[\"Fashion\",\"Login\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:147;a:18:{s:4:\"tmpl\";i:1270;s:2:\"id\";i:22319;s:5:\"title\";s:40:\"Classic |  Login | Login Design Platform\";s:9:\"thumbnail\";s:85:\"https://library.elementor.com/wp-content/uploads/2022/03/login-design-platform-10.jpg\";s:12:\"tmpl_created\";i:1647340531;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:147:\"https://library.elementor.com/popups/classic-login-popup-login-design-platform/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:25:\"[\"Design\",\"Login\",\"SaaS\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:148;a:18:{s:4:\"tmpl\";i:1271;s:2:\"id\";i:22325;s:5:\"title\";s:36:\"Fly-In | Contact | Digital Marketing\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2022/03/digital-marketing-11.jpg\";s:12:\"tmpl_created\";i:1647340770;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:144:\"https://library.elementor.com/popups/fly-in-contact-popup-digital-marketing/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:51:\"[\"Business\",\"Contact\",\"Digital Agency\",\"Marketing\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:149;a:18:{s:4:\"tmpl\";i:1272;s:2:\"id\";i:22331;s:5:\"title\";s:36:\"Fly-In | CTA | Dog Cat Food Delivery\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2022/03/dog-cat-food-delivery-5.jpg\";s:12:\"tmpl_created\";i:1647341069;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:144:\"https://library.elementor.com/popups/fly-in-cta-popup-dog-cat-food-delivery/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:33:\"[\"cta\",\"Delivery Service\",\"Pets\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:150;a:18:{s:4:\"tmpl\";i:1273;s:2:\"id\";i:22337;s:5:\"title\";s:37:\"Full Screen | Contact | Design Studio\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2022/03/design-studio-12.jpg\";s:12:\"tmpl_created\";i:1647341370;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:145:\"https://library.elementor.com/popups/full-screen-contact-popup-design-studio/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:11:\"full screen\";s:4:\"tags\";s:39:\"[\"Business\",\"Contact\",\"Digital Agency\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:151;a:18:{s:4:\"tmpl\";i:1274;s:2:\"id\";i:22343;s:5:\"title\";s:44:\"Classic | Contact | Support Product Platform\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2022/03/support-13.jpg\";s:12:\"tmpl_created\";i:1647341972;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:146:\"https://library.elementor.com/popups/classic-contact-support-product-platform/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:21:\"[\"Contact\",\"Support\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:152;a:18:{s:4:\"tmpl\";i:1275;s:2:\"id\";i:22371;s:5:\"title\";s:38:\"Full Screen | Contact | Small Business\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2022/03/small-business-14.jpg\";s:12:\"tmpl_created\";i:1647342508;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:140:\"https://library.elementor.com/popups/full-screen-contact-small-business/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:11:\"full screen\";s:4:\"tags\";s:40:\"[\"Business\",\"Contact\",\"Interior Design\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:153;a:18:{s:4:\"tmpl\";i:1276;s:2:\"id\";i:22377;s:5:\"title\";s:31:\"Classic | Contact | Online Shop\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2022/03/online-shop-15.jpg\";s:12:\"tmpl_created\";i:1647352786;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:133:\"https://library.elementor.com/popups/classic-contact-online-shop/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:11:\"[\"Contact\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:154;a:18:{s:4:\"tmpl\";i:1277;s:2:\"id\";i:22383;s:5:\"title\";s:40:\"Classic | Booking | Children Optometrist\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2022/03/children-optometrist-16.jpg\";s:12:\"tmpl_created\";i:1647352963;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:142:\"https://library.elementor.com/popups/classic-booking-children-optometrist/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:53:\"[\"Booking\",\"Business\",\"Contact\",\"Education\",\"Health\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:155;a:18:{s:4:\"tmpl\";i:1278;s:2:\"id\";i:22389;s:5:\"title\";s:28:\"Fly-In | Contact | Open Week\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2022/03/open-week17.jpg\";s:12:\"tmpl_created\";i:1647353281;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:130:\"https://library.elementor.com/popups/fly-in-contact-open-week/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:34:\"[\"Business\",\"Contact\",\"Marketing\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:156;a:18:{s:4:\"tmpl\";i:1279;s:2:\"id\";i:22397;s:5:\"title\";s:43:\"Full Screen | CTA | Plant Pots Online Store\";s:9:\"thumbnail\";s:87:\"https://library.elementor.com/wp-content/uploads/2022/03/plant-pots-online-store-18.jpg\";s:12:\"tmpl_created\";i:1647353429;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:145:\"https://library.elementor.com/popups/full-screen-cta-plant-pots-online-store/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:11:\"full screen\";s:4:\"tags\";s:33:\"[\"Ecommerce\",\"Marketing\",\"Sales\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:157;a:18:{s:4:\"tmpl\";i:1054;s:2:\"id\";i:15414;s:5:\"title\";s:32:\"Classic | Contact | Dance Studio\";s:9:\"thumbnail\";s:66:\"https://library.elementor.com/wp-content/uploads/2020/10/PopUp.jpg\";s:12:\"tmpl_created\";i:1603180596;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:134:\"https://library.elementor.com/popups/classic-contact-dance-studio/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:16:\"[\"Dance Studio\"]\";s:10:\"menu_order\";i:1;s:16:\"popularity_index\";i:762;s:11:\"trend_index\";i:650;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:158;a:18:{s:4:\"tmpl\";i:1398;s:2:\"id\";i:23687;s:5:\"title\";s:32:\"Pizza Promotion &#8211; Business\";s:9:\"thumbnail\";s:79:\"https://library.elementor.com/wp-content/uploads/2022/04/48-Pizza-Promotion.jpg\";s:12:\"tmpl_created\";i:1649670575;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:126:\"https://library.elementor.com/lp/pizza-promotion-business/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:92:\"[\"Business\",\"Cooking\",\"Delivery\",\"Discount\",\"Fast Food\",\"Food\",\"Landing Pages\",\"Restaurant\"]\";s:10:\"menu_order\";i:1;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:159;a:18:{s:4:\"tmpl\";i:1400;s:2:\"id\";i:23751;s:5:\"title\";s:33:\"Baby Sleep Webinar &#8211; Events\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2022/04/63-Baby-Sleep-Webinar.jpg\";s:12:\"tmpl_created\";i:1649676065;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:127:\"https://library.elementor.com/lp/baby-sleep-webinar-events/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:6:\"Events\";s:4:\"tags\";s:227:\"[\"Baby\",\"Booking\",\"Business\",\"Children\",\"Course Online\",\"Education\",\"Events\",\"Health\",\"Landing Pages\",\"Life Coach\",\"Lifestyle\",\"Online Event\",\"Online Service\",\"Parenting\",\"Professional\",\"Remote\",\"Services\",\"Training\",\"Webinar\"]\";s:10:\"menu_order\";i:1;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:160;a:18:{s:4:\"tmpl\";i:1401;s:2:\"id\";i:23776;s:5:\"title\";s:34:\"Ski Hotel Promotion &#8211; Travel\";s:9:\"thumbnail\";s:83:\"https://library.elementor.com/wp-content/uploads/2022/04/64-Ski-Hotel-Promotion.jpg\";s:12:\"tmpl_created\";i:1649691720;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:128:\"https://library.elementor.com/lp/ski-hotel-promotion-travel/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:6:\"Travel\";s:4:\"tags\";s:118:\"[\"Accommodation\",\"Booking\",\"Discount. Landing Pages\",\"Lifestyle\",\"Luxury\",\"Services\",\"Spa\",\"Travel\",\"Trip\",\"Vacation\"]\";s:10:\"menu_order\";i:1;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:161;a:18:{s:4:\"tmpl\";i:1402;s:2:\"id\";i:23804;s:5:\"title\";s:30:\"Cake Delivery &#8211; Business\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2022/04/67-Cake-Delivery.jpg\";s:12:\"tmpl_created\";i:1649692909;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:124:\"https://library.elementor.com/lp/cake-delivery-business/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:101:\"[\"Bakery\",\"Business\",\"Cake\",\"Cooking\",\"Delivery\",\"Discount\",\"Food\",\"Landing Pages\",\"Products\",\"Shop\"]\";s:10:\"menu_order\";i:1;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:162;a:18:{s:4:\"tmpl\";i:1403;s:2:\"id\";i:23832;s:5:\"title\";s:32:\"Furniture Store &#8211; Business\";s:9:\"thumbnail\";s:79:\"https://library.elementor.com/wp-content/uploads/2022/04/87-Furniture-Store.jpg\";s:12:\"tmpl_created\";i:1649694812;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:126:\"https://library.elementor.com/lp/furniture-store-business/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:232:\"[\"Architecture\",\"Art\",\"Business\",\"Construction\",\"Coupon\",\"Creative\",\"Decor\",\"Designer\",\"Discount\",\"Fashion\",\"Furniture Design\",\"Home\",\"House\",\"Interior Design\",\"Landing Pages\",\"Lifestyle\",\"Products\",\"Professional\",\"Services\",\"Shop\"]\";s:10:\"menu_order\";i:1;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:163;a:18:{s:4:\"tmpl\";i:1404;s:2:\"id\";i:23746;s:5:\"title\";s:22:\"Nails &#8211; Business\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2022/04/62-Nails-1.jpg\";s:12:\"tmpl_created\";i:1649704635;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/lp/nails-business/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:173:\"[\"Art\",\"Beauty\",\"Business\",\"Colorful\",\"Cosmetics\",\"Creative\",\"Design\",\"Discount\",\"Fashion\",\"Girly\",\"Landing Pages\",\"Lifestyle\",\"Manicure\",\"Modern\",\"Professional\",\"Services\"]\";s:10:\"menu_order\";i:1;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:164;a:18:{s:4:\"tmpl\";i:1405;s:2:\"id\";i:23846;s:5:\"title\";s:29:\"Music Festival &#8211; Events\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2022/04/88-Music-Festival.jpg\";s:12:\"tmpl_created\";i:1649707763;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/lp/music-festival-events/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:6:\"Events\";s:4:\"tags\";s:128:\"[\"Author\",\"Booking\",\"Business\",\"Creative\",\"Discount\",\"Events\",\"Landing Pages\",\"Music\",\"Online\",\"Online Event\",\"Party\",\"Virtual\"]\";s:10:\"menu_order\";i:1;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:165;a:18:{s:4:\"tmpl\";i:1406;s:2:\"id\";i:23872;s:5:\"title\";s:40:\"Fashion Styling Course &#8211; Education\";s:9:\"thumbnail\";s:86:\"https://library.elementor.com/wp-content/uploads/2022/04/89-Fashion-Styling-Course.jpg\";s:12:\"tmpl_created\";i:1649708569;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:134:\"https://library.elementor.com/lp/fashion-styling-course-education/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:9:\"Education\";s:4:\"tags\";s:173:\"[\"Aesthetic\",\"Art\",\"Beauty\",\"Business\",\"Course Online\",\"Creative\",\"Discount\",\"Education\",\"Fashion\",\"Landing Pages\",\"Lifestyle\",\"Online\",\"Online Service\",\"Stylist\",\"Virtual\"]\";s:10:\"menu_order\";i:1;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:166;a:18:{s:4:\"tmpl\";i:1407;s:2:\"id\";i:23897;s:5:\"title\";s:33:\"Bags Online Shop &#8211; Business\";s:9:\"thumbnail\";s:80:\"https://library.elementor.com/wp-content/uploads/2022/04/90-Bags-Online-Shop.jpg\";s:12:\"tmpl_created\";i:1649709513;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:127:\"https://library.elementor.com/lp/bags-online-shop-business/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:170:\"[\"Art\",\"Bag\",\"Business\",\"Creative\",\"Design\",\"Discount\",\"Fashion\",\"Landing Pages\",\"Lifestyle\",\"Luxury\",\"Modern\",\"Online\",\"Online Shop\",\"Products\",\"Sales\",\"Shop\",\"Stylist\"]\";s:10:\"menu_order\";i:1;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:167;a:18:{s:4:\"tmpl\";i:1408;s:2:\"id\";i:23932;s:5:\"title\";s:32:\"Cooking Academy &#8211; Business\";s:9:\"thumbnail\";s:79:\"https://library.elementor.com/wp-content/uploads/2022/04/91-Cooking-Academy.jpg\";s:12:\"tmpl_created\";i:1649710216;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:126:\"https://library.elementor.com/lp/cooking-academy-business/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:145:\"[\"Academy\",\"Booking\",\"Business\",\"Chef\",\"Cooking\",\"Education\",\"Food\",\"Free Trial\",\"Landing Pages\",\"Professional\",\"School\",\"Teacher\",\"Testimonial\"]\";s:10:\"menu_order\";i:1;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:168;a:18:{s:4:\"tmpl\";i:1409;s:2:\"id\";i:23970;s:5:\"title\";s:45:\"Ophthalmology Medical Clinic &#8211; Business\";s:9:\"thumbnail\";s:92:\"https://library.elementor.com/wp-content/uploads/2022/04/92-Ophthalmology-Medical-Clinic.jpg\";s:12:\"tmpl_created\";i:1649711096;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:139:\"https://library.elementor.com/lp/ophthalmology-medical-clinic-business/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:165:\"[\"About\",\"Business\",\"Care\",\"Consulting\",\"Eye\",\"Free Trial\",\"Glasses\",\"Health\",\"Landing Pages\",\"Lifestyle\",\"Medical\",\"Modern\",\"Optometrist\",\"Professional\",\"Services\"]\";s:10:\"menu_order\";i:1;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:169;a:18:{s:4:\"tmpl\";i:1425;s:2:\"id\";i:24331;s:5:\"title\";s:24:\"Wireframe &#8211; Home 1\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2022/05/Wireframe-—-Home-1.jpg\";s:12:\"tmpl_created\";i:1653988363;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/wireframe-home-1/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:102:\"[\"Business\",\"Contact\",\"Features\",\"Footer\",\"Header\",\"Homepage\",\"Professional\",\"Services\",\"Testimonial\"]\";s:10:\"menu_order\";i:1;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:170;a:18:{s:4:\"tmpl\";i:1218;s:2:\"id\";i:20792;s:5:\"title\";s:26:\"Luxury Car &#8211; Product\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2021/11/250x280-1.jpg\";s:12:\"tmpl_created\";i:1636903770;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/lp/luxury-car-product/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:7:\"Product\";s:4:\"tags\";s:54:\"[\"car\",\"Ecommerce\",\"Landing Pages\",\"Luxury\",\"Product\"]\";s:10:\"menu_order\";i:1;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:171;a:18:{s:4:\"tmpl\";i:1428;s:2:\"id\";i:24398;s:5:\"title\";s:25:\"Wireframe &#8211; About 1\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2022/05/Wireframe-—-About-1.jpg\";s:12:\"tmpl_created\";i:1653988534;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/wireframe-about-1/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:83:\"[\"About\",\"Business\",\"Contact\",\"Features\",\"Footer\",\"Professional\",\"Services\",\"Team\"]\";s:10:\"menu_order\";i:2;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:172;a:18:{s:4:\"tmpl\";i:991;s:2:\"id\";i:13413;s:5:\"title\";s:33:\"Classic | Contact | Online Course\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2020/04/PopUp-Help.jpg\";s:12:\"tmpl_created\";i:1587474761;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:135:\"https://library.elementor.com/popups/classic-contact-online-course/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:29:\"[\"Course Online\",\"Education\"]\";s:10:\"menu_order\";i:2;s:16:\"popularity_index\";i:530;s:11:\"trend_index\";i:369;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:173;a:18:{s:4:\"tmpl\";i:1053;s:2:\"id\";i:15272;s:5:\"title\";s:32:\"Classic | Contact | Psychologist\";s:9:\"thumbnail\";s:66:\"https://library.elementor.com/wp-content/uploads/2020/09/PopUp.png\";s:12:\"tmpl_created\";i:1600170487;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:134:\"https://library.elementor.com/popups/classic-contact-psychologist/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:34:\"[\"Psychologist\",\"Psychotherapist\"]\";s:10:\"menu_order\";i:3;s:16:\"popularity_index\";i:578;s:11:\"trend_index\";i:312;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:174;a:18:{s:4:\"tmpl\";i:899;s:2:\"id\";i:11839;s:5:\"title\";s:9:\"Portfolio\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2019/09/Header_small.png\";s:12:\"tmpl_created\";i:1569430015;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/blocks/portfolio-9/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:43:\"[\"creative portfolio\",\"header\",\"portfolio\"]\";s:10:\"menu_order\";i:3;s:16:\"popularity_index\";i:189;s:11:\"trend_index\";i:20;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:175;a:18:{s:4:\"tmpl\";i:1433;s:2:\"id\";i:24477;s:5:\"title\";s:27:\"Wireframe &#8211; Gallery 2\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2022/05/Wireframe-—-Gallery-2.jpg\";s:12:\"tmpl_created\";i:1653988835;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/wireframe-gallery-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:82:\"[\"Business\",\"Contact\",\"Design\",\"Footer\",\"Gallery\",\"Header\",\"Portfolio\",\"Services\"]\";s:10:\"menu_order\";i:3;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:176;a:18:{s:4:\"tmpl\";i:1205;s:2:\"id\";i:20233;s:5:\"title\";s:32:\"Art Magazine &#8211; Coming Soon\";s:9:\"thumbnail\";s:95:\"https://library.elementor.com/wp-content/uploads/2021/10/Art-Magazine-Coming-Soon-250x280-1.jpg\";s:12:\"tmpl_created\";i:1633881371;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:126:\"https://library.elementor.com/lp/art-magazine-coming-soon/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:16:\"Coming Soon Page\";s:4:\"tags\";s:48:\"[\"Art\",\"Coming Soon\",\"Landing Pages\",\"Magazine\"]\";s:10:\"menu_order\";i:3;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:177;a:18:{s:4:\"tmpl\";i:1214;s:2:\"id\";i:20539;s:5:\"title\";s:31:\"Design Blog &#8211; Coming Soon\";s:9:\"thumbnail\";s:94:\"https://library.elementor.com/wp-content/uploads/2021/10/Design-Blog-Coming-Soon-250x280-1.jpg\";s:12:\"tmpl_created\";i:1634022706;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:125:\"https://library.elementor.com/lp/design-blog-coming-soon/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:16:\"Coming Soon Page\";s:4:\"tags\";s:47:\"[\"Blog\",\"Coming Soon\",\"Design\",\"Landing Pages\"]\";s:10:\"menu_order\";i:4;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:178;a:18:{s:4:\"tmpl\";i:1224;s:2:\"id\";i:21013;s:5:\"title\";s:24:\"Restaurant &#8211; About\";s:9:\"thumbnail\";s:79:\"https://library.elementor.com/wp-content/uploads/2021/12/7-About-Restaurant.jpg\";s:12:\"tmpl_created\";i:1638795588;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/restaurant-about/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:36:\"[\"About\",\"Chef\",\"Food\",\"Restaurant\"]\";s:10:\"menu_order\";i:4;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:179;a:18:{s:4:\"tmpl\";i:992;s:2:\"id\";i:13402;s:5:\"title\";s:29:\"Classic | CTA | Online Course\";s:9:\"thumbnail\";s:83:\"https://library.elementor.com/wp-content/uploads/2020/04/Popup-Course-Completed.jpg\";s:12:\"tmpl_created\";i:1587474772;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:131:\"https://library.elementor.com/popups/classic-cta-online-course/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:29:\"[\"Course Online\",\"Education\"]\";s:10:\"menu_order\";i:4;s:16:\"popularity_index\";i:619;s:11:\"trend_index\";i:582;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:180;a:18:{s:4:\"tmpl\";i:1206;s:2:\"id\";i:20254;s:5:\"title\";s:41:\"Digital Marketing Agency &#8211; Business\";s:9:\"thumbnail\";s:95:\"https://library.elementor.com/wp-content/uploads/2021/10/Digital-Marketing-Agency-250x280-1.jpg\";s:12:\"tmpl_created\";i:1633882427;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:135:\"https://library.elementor.com/lp/digital-marketing-agency-business/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:65:\"[\"Agency\",\"Business\",\"Digital Agency\",\"Landing Pages\",\"Services\"]\";s:10:\"menu_order\";i:5;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:181;a:18:{s:4:\"tmpl\";i:1235;s:2:\"id\";i:21281;s:5:\"title\";s:25:\"Law Firm &#8211; Services\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2021/12/16-Services-Law-firm.jpg\";s:12:\"tmpl_created\";i:1638819128;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/law-firm-services-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:56:\"[\"Consulting\",\"Law\",\"Law Firm\",\"Services\",\"Testimonial\"]\";s:10:\"menu_order\";i:5;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:182;a:18:{s:4:\"tmpl\";i:1017;s:2:\"id\";i:14111;s:5:\"title\";s:36:\"Classic | Japanese restaurant | Sale\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2020/06/Pop-Up-Page-Small.jpg\";s:12:\"tmpl_created\";i:1592300400;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:138:\"https://library.elementor.com/popups/classic-japanese-restaurant-sale/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:32:\"[\"Food\",\"Japanese\",\"Restaurant\"]\";s:10:\"menu_order\";i:5;s:16:\"popularity_index\";i:717;s:11:\"trend_index\";i:697;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:183;a:18:{s:4:\"tmpl\";i:1213;s:2:\"id\";i:20509;s:5:\"title\";s:40:\"Dogs Adoption &#8211; Social Involvement\";s:9:\"thumbnail\";s:83:\"https://library.elementor.com/wp-content/uploads/2021/10/Dog-Adoption-250x280-1.jpg\";s:12:\"tmpl_created\";i:1634022353;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:134:\"https://library.elementor.com/lp/dogs-adoption-social-involvement/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:18:\"Social Involvement\";s:4:\"tags\";s:49:\"[\"Adoption\",\"Involvement\",\"Landing Pages\",\"Pets\"]\";s:10:\"menu_order\";i:6;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:184;a:18:{s:4:\"tmpl\";i:1233;s:2:\"id\";i:21205;s:5:\"title\";s:29:\"Photographer &#8211; Projects\";s:9:\"thumbnail\";s:85:\"https://library.elementor.com/wp-content/uploads/2021/12/25-Projects-Photographer.jpg\";s:12:\"tmpl_created\";i:1638818372;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/photographer-projects/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:43:\"[\"Black and white\",\"Photography\",\"Project\"]\";s:10:\"menu_order\";i:6;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:185;a:18:{s:4:\"tmpl\";i:993;s:2:\"id\";i:13422;s:5:\"title\";s:30:\"Classic | Menu | Online Course\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2020/04/PopUp-Menu.jpg\";s:12:\"tmpl_created\";i:1587474782;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:132:\"https://library.elementor.com/popups/classic-menu-online-course/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:29:\"[\"Course Online\",\"Education\"]\";s:10:\"menu_order\";i:6;s:16:\"popularity_index\";i:516;s:11:\"trend_index\";i:432;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:186;a:18:{s:4:\"tmpl\";i:925;s:2:\"id\";i:12540;s:5:\"title\";s:33:\"Classic | Menu | Travel and tours\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2019/12/PopUp_Menu_s.png\";s:12:\"tmpl_created\";i:1575960267;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:135:\"https://library.elementor.com/popups/classic-menu-travel-and-tours/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:18:\"[\"Tours\",\"Travel\"]\";s:10:\"menu_order\";i:7;s:16:\"popularity_index\";i:690;s:11:\"trend_index\";i:714;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:187;a:18:{s:4:\"tmpl\";i:1208;s:2:\"id\";i:20361;s:5:\"title\";s:51:\"Exercise &#038; Fitness Equipment &#8211; eCommerce\";s:9:\"thumbnail\";s:97:\"https://library.elementor.com/wp-content/uploads/2021/10/Exercise-Fitness-Equipment-250x280-1.jpg\";s:12:\"tmpl_created\";i:1633883766;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:138:\"https://library.elementor.com/lp/exercise-fitness-equipment-ecommerce/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:9:\"eCommerce\";s:4:\"tags\";s:50:\"[\"Fitness\",\"Health\",\"Landing Pages\",\"Online Shop\"]\";s:10:\"menu_order\";i:7;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:188;a:18:{s:4:\"tmpl\";i:1239;s:2:\"id\";i:21373;s:5:\"title\";s:28:\"Photographer &#8211; Gallery\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2021/12/18-Gallery-Photographer.jpg\";s:12:\"tmpl_created\";i:1638821177;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/photographer-gallery/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:56:\"[\"Gallery\",\"Photography\",\"Portfolio\",\"Project\",\"Travel\"]\";s:10:\"menu_order\";i:7;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:189;a:18:{s:4:\"tmpl\";i:1426;s:2:\"id\";i:24348;s:5:\"title\";s:24:\"Wireframe &#8211; Home 2\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2022/05/Wireframe-—-Home-2.jpg\";s:12:\"tmpl_created\";i:1653988444;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/wireframe-home-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:102:\"[\"Business\",\"Contact\",\"Features\",\"Footer\",\"Header\",\"Homepage\",\"Professional\",\"Services\",\"Testimonial\"]\";s:10:\"menu_order\";i:8;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:190;a:18:{s:4:\"tmpl\";i:958;s:2:\"id\";i:13129;s:5:\"title\";s:28:\"Classic | Menu | Photography\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2020/02/PopUp_s.png\";s:12:\"tmpl_created\";i:1582092645;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:130:\"https://library.elementor.com/popups/classic-menu-photography/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:27:\"[\"Photography\",\"Portfolio\"]\";s:10:\"menu_order\";i:8;s:16:\"popularity_index\";i:646;s:11:\"trend_index\";i:521;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:191;a:18:{s:4:\"tmpl\";i:1427;s:2:\"id\";i:24366;s:5:\"title\";s:24:\"Wireframe &#8211; Home 3\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2022/05/Wireframe-—-Home-3.jpg\";s:12:\"tmpl_created\";i:1653988491;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/wireframe-home-3/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:102:\"[\"Business\",\"Contact\",\"Features\",\"Footer\",\"Header\",\"Homepage\",\"Professional\",\"Services\",\"Testimonial\"]\";s:10:\"menu_order\";i:9;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:192;a:18:{s:4:\"tmpl\";i:1207;s:2:\"id\";i:20299;s:5:\"title\";s:51:\"Interior Design Consultation &#8211; Online Service\";s:9:\"thumbnail\";s:99:\"https://library.elementor.com/wp-content/uploads/2021/10/Interior-Design-Consultation-250x280-1.jpg\";s:12:\"tmpl_created\";i:1633882989;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:145:\"https://library.elementor.com/lp/interior-design-consultation-online-service/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:14:\"Online Service\";s:4:\"tags\";s:65:\"[\"Consulting\",\"Interior Design\",\"Landing Pages\",\"Online Service\"]\";s:10:\"menu_order\";i:9;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:193;a:18:{s:4:\"tmpl\";i:952;s:2:\"id\";i:12726;s:5:\"title\";s:52:\"Classic | Newsletter | Subscribe | Magazine and Blog\";s:9:\"thumbnail\";s:79:\"https://library.elementor.com/wp-content/uploads/2020/01/PopUp_Newsletter_s.png\";s:12:\"tmpl_created\";i:1579061019;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:152:\"https://library.elementor.com/popups/classic-newsletter-subscribe-magazine-and-blog/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:19:\"[\"Blog\",\"Magazine\"]\";s:10:\"menu_order\";i:9;s:16:\"popularity_index\";i:357;s:11:\"trend_index\";i:281;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:194;a:18:{s:4:\"tmpl\";i:883;s:2:\"id\";i:11468;s:5:\"title\";s:20:\"Classic | Sale | Gym\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2019/08/PopUp_Small.png\";s:12:\"tmpl_created\";i:1567393182;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/popups/classic-sale-gym/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:10;s:16:\"popularity_index\";i:696;s:11:\"trend_index\";i:740;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:195;a:18:{s:4:\"tmpl\";i:1216;s:2:\"id\";i:20623;s:5:\"title\";s:57:\"Luxurious Camping Accommodation For Events &#8211; Events\";s:9:\"thumbnail\";s:113:\"https://library.elementor.com/wp-content/uploads/2021/10/Luxurious-Camping-Accommodation-For-Events-250x280-2.jpg\";s:12:\"tmpl_created\";i:1634041681;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:151:\"https://library.elementor.com/lp/luxurious-camping-accommodation-for-events-events/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:6:\"Events\";s:4:\"tags\";s:43:\"[\"Event\",\"Events\",\"Landing Pages\",\"Travel\"]\";s:10:\"menu_order\";i:10;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:196;a:18:{s:4:\"tmpl\";i:1219;s:2:\"id\";i:20886;s:5:\"title\";s:28:\"Online Training &#8211; Home\";s:9:\"thumbnail\";s:83:\"https://library.elementor.com/wp-content/uploads/2021/12/2-Home-Online-Training.jpg\";s:12:\"tmpl_created\";i:1638784769;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/online-training-home/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:39:\"[\"Fitness\",\"Online\",\"Sport\",\"Training\"]\";s:10:\"menu_order\";i:10;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:197;a:18:{s:4:\"tmpl\";i:1065;s:2:\"id\";i:15570;s:5:\"title\";s:33:\"Classic | Subscribe | Travel Blog\";s:9:\"thumbnail\";s:66:\"https://library.elementor.com/wp-content/uploads/2020/11/PopUp.jpg\";s:12:\"tmpl_created\";i:1606215555;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:135:\"https://library.elementor.com/popups/classic-subscribe-travel-blog/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:17:\"[\"Blog\",\"Travel\"]\";s:10:\"menu_order\";i:11;s:16:\"popularity_index\";i:709;s:11:\"trend_index\";i:459;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:198;a:18:{s:4:\"tmpl\";i:1431;s:2:\"id\";i:24437;s:5:\"title\";s:25:\"Wireframe &#8211; About 4\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2022/05/Wireframe-—-About-4.jpg\";s:12:\"tmpl_created\";i:1653988733;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/wireframe-about-4/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:74:\"[\"About\",\"Business\",\"Contact\",\"Features\",\"Footer\",\"Header\",\"Professional\"]\";s:10:\"menu_order\";i:11;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:199;a:18:{s:4:\"tmpl\";i:1210;s:2:\"id\";i:20414;s:5:\"title\";s:45:\"Online English Courses &#8211; Online Service\";s:9:\"thumbnail\";s:93:\"https://library.elementor.com/wp-content/uploads/2021/10/Online-English-Courses-250x280-1.jpg\";s:12:\"tmpl_created\";i:1633884482;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:139:\"https://library.elementor.com/lp/online-english-courses-online-service/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:14:\"Online Service\";s:4:\"tags\";s:50:\"[\"Course Online\",\"Landing Pages\",\"Online Service\"]\";s:10:\"menu_order\";i:11;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:200;a:18:{s:4:\"tmpl\";i:1132;s:2:\"id\";i:16553;s:5:\"title\";s:31:\"Fly-In | Contact | Beauty Salon\";s:9:\"thumbnail\";s:66:\"https://library.elementor.com/wp-content/uploads/2020/12/PopUp.jpg\";s:12:\"tmpl_created\";i:1608622602;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:133:\"https://library.elementor.com/popups/fly-in-contact-beauty-salon/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:23:\"[\"Beauty Salon\",\"Hair\"]\";s:10:\"menu_order\";i:12;s:16:\"popularity_index\";i:691;s:11:\"trend_index\";i:428;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:201;a:18:{s:4:\"tmpl\";i:1441;s:2:\"id\";i:24574;s:5:\"title\";s:27:\"Wireframe &#8211; Contact 5\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2022/05/Wireframe-—-Contact-5.jpg\";s:12:\"tmpl_created\";i:1653989135;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/wireframe-contact-5/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:88:\"[\"Business\",\"Contact\",\"Footer\",\"Form\",\"Google Maps\",\"Header\",\"Professional\",\"Subscribe\"]\";s:10:\"menu_order\";i:12;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:202;a:18:{s:4:\"tmpl\";i:1217;s:2:\"id\";i:20333;s:5:\"title\";s:40:\"Plant Pots Online Shop &#8211; eCommerce\";s:9:\"thumbnail\";s:93:\"https://library.elementor.com/wp-content/uploads/2021/10/Plant-Pots-Online-Shop-250x280-2.jpg\";s:12:\"tmpl_created\";i:1634042184;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:134:\"https://library.elementor.com/lp/plant-pots-online-shop-ecommerce/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:9:\"eCommerce\";s:4:\"tags\";s:50:\"[\"Ecommerce\",\"Landing Pages\",\"Online Shop\",\"Shop\"]\";s:10:\"menu_order\";i:12;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:203;a:18:{s:4:\"tmpl\";i:1211;s:2:\"id\";i:20447;s:5:\"title\";s:33:\"Shared Workspace &#8211; Business\";s:9:\"thumbnail\";s:85:\"https://library.elementor.com/wp-content/uploads/2021/10/250x280-Shared-Workspace.jpg\";s:12:\"tmpl_created\";i:1633884934;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:127:\"https://library.elementor.com/lp/shared-workspace-business/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:28:\"[\"Business\",\"Landing Pages\"]\";s:10:\"menu_order\";i:13;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:204;a:18:{s:4:\"tmpl\";i:1237;s:2:\"id\";i:21313;s:5:\"title\";s:34:\"Spa &#038; Beauty &#8211; Services\";s:9:\"thumbnail\";s:89:\"https://library.elementor.com/wp-content/uploads/2021/12/Spa-Beauty-Treatments-page-1.jpg\";s:12:\"tmpl_created\";i:1638819709;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/spa-beauty-services/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:55:\"[\"Beauty\",\"Hair\",\"Health\",\"Services\",\"Spa\",\"Treatment\"]\";s:10:\"menu_order\";i:13;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:205;a:18:{s:4:\"tmpl\";i:1004;s:2:\"id\";i:13538;s:5:\"title\";s:32:\"Fly-In | Newsletter | Barbershop\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2020/05/Pop-Up-Page-Small.jpg\";s:12:\"tmpl_created\";i:1589893364;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:134:\"https://library.elementor.com/popups/fly-in-newsletter-barbershop/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:28:\"[\"Barber Shop\",\"Barbershop\"]\";s:10:\"menu_order\";i:13;s:16:\"popularity_index\";i:710;s:11:\"trend_index\";i:667;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:206;a:18:{s:4:\"tmpl\";i:924;s:2:\"id\";i:12550;s:5:\"title\";s:32:\"Fly-in | Sale | Travel and Tours\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2019/12/PopUp_s.png\";s:12:\"tmpl_created\";i:1575960263;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:133:\"https://library.elementor.com/popups/flyin-sale-travel-and-tours/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:18:\"[\"Tours\",\"Travel\"]\";s:10:\"menu_order\";i:14;s:16:\"popularity_index\";i:754;s:11:\"trend_index\";i:791;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:207;a:18:{s:4:\"tmpl\";i:1212;s:2:\"id\";i:20479;s:5:\"title\";s:49:\"Teeth Straightening &#8211; Health &#038; Fitness\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2021/10/250x280-Teeth-Whitening.jpg\";s:12:\"tmpl_created\";i:1633886115;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:136:\"https://library.elementor.com/lp/teeth-straightening-health-fitness/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:18:\"Health and Fitness\";s:4:\"tags\";s:46:\"[\"Business\",\"Dental\",\"Health\",\"Landing Pages\"]\";s:10:\"menu_order\";i:14;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:208;a:18:{s:4:\"tmpl\";i:1234;s:2:\"id\";i:21234;s:5:\"title\";s:34:\"Insurance Company &#8211; Services\";s:9:\"thumbnail\";s:90:\"https://library.elementor.com/wp-content/uploads/2021/12/15-Services-Insurance-Company.jpg\";s:12:\"tmpl_created\";i:1638818688;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:125:\"https://library.elementor.com/insurance-company-services/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:51:\"[\"Faq\",\"Form\",\"Insurance\",\"Services\",\"Testimonial\"]\";s:10:\"menu_order\";i:14;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:209;a:18:{s:4:\"tmpl\";i:1035;s:2:\"id\";i:15062;s:5:\"title\";s:35:\"Fly-In | Sign up | Flooring Company\";s:9:\"thumbnail\";s:66:\"https://library.elementor.com/wp-content/uploads/2020/08/PopUp.png\";s:12:\"tmpl_created\";i:1597739629;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:137:\"https://library.elementor.com/popups/fly-in-sign-up-flooring-company/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:39:\"[\"Flooring company\",\"Flooring website\"]\";s:10:\"menu_order\";i:15;s:16:\"popularity_index\";i:625;s:11:\"trend_index\";i:309;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:210;a:18:{s:4:\"tmpl\";i:1209;s:2:\"id\";i:20394;s:5:\"title\";s:30:\"Time Management &#8211; Events\";s:9:\"thumbnail\";s:86:\"https://library.elementor.com/wp-content/uploads/2021/10/Time-Management-250x280-1.jpg\";s:12:\"tmpl_created\";i:1633884077;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:124:\"https://library.elementor.com/lp/time-management-events/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:6:\"Events\";s:4:\"tags\";s:17:\"[\"Landing Pages\"]\";s:10:\"menu_order\";i:15;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:211;a:18:{s:4:\"tmpl\";i:1229;s:2:\"id\";i:21118;s:5:\"title\";s:28:\"Contact &#8211; Plants Store\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2021/12/12-Contact-Plants-Store.jpg\";s:12:\"tmpl_created\";i:1638802472;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/contact-plants-store/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:40:\"[\"Contact\",\"Info\",\"Plant\",\"Testimonial\"]\";s:10:\"menu_order\";i:15;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:212;a:18:{s:4:\"tmpl\";i:893;s:2:\"id\";i:11822;s:5:\"title\";s:30:\"Full Screen | Menu | Portfolio\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2019/09/PopUp_small.png\";s:12:\"tmpl_created\";i:1569429896;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:132:\"https://library.elementor.com/popups/full-screen-menu-portfolio/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:11:\"full screen\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:16;s:16:\"popularity_index\";i:654;s:11:\"trend_index\";i:626;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:213;a:18:{s:4:\"tmpl\";i:1203;s:2:\"id\";i:18591;s:5:\"title\";s:28:\"Coffee Sale &#8211; Business\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2021/04/250x280-7.png\";s:12:\"tmpl_created\";i:1633877319;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/lp/coffee-sale-business/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:33:\"[\"Coffee\",\"Landing Pages\",\"Sale\"]\";s:10:\"menu_order\";i:16;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:214;a:18:{s:4:\"tmpl\";i:1231;s:2:\"id\";i:21184;s:5:\"title\";s:28:\"Dental Care &#8211; Services\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2021/12/14-Services-Dental-Care.jpg\";s:12:\"tmpl_created\";i:1638807148;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/dental-care-services/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:45:\"[\"Dental\",\"Medical\",\"Services\",\"Testimonial\"]\";s:10:\"menu_order\";i:16;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:215;a:18:{s:4:\"tmpl\";i:1064;s:2:\"id\";i:15580;s:5:\"title\";s:31:\"Fullscreen | Menu | Travel Blog\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2020/11/PopUp-Menu.jpg\";s:12:\"tmpl_created\";i:1606215358;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:133:\"https://library.elementor.com/popups/fullscreen-menu-travel-blog/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:11:\"full screen\";s:4:\"tags\";s:17:\"[\"Blog\",\"Travel\"]\";s:10:\"menu_order\";i:17;s:16:\"popularity_index\";i:673;s:11:\"trend_index\";i:348;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:216;a:18:{s:4:\"tmpl\";i:1133;s:2:\"id\";i:16645;s:5:\"title\";s:28:\"Headphones &#8211; eCommerce\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2021/01/lp_headphones.png\";s:12:\"tmpl_created\";i:1609944115;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:121:\"https://library.elementor.com/lp/commerce-headphones/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:9:\"eCommerce\";s:4:\"tags\";s:39:\"[\"Ecommerce\",\"Landing Pages\",\"Product\"]\";s:10:\"menu_order\";i:17;s:16:\"popularity_index\";i:633;s:11:\"trend_index\";i:87;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:217;a:18:{s:4:\"tmpl\";i:1442;s:2:\"id\";i:24584;s:5:\"title\";s:27:\"Wireframe &#8211; Pricing 1\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2022/05/Wireframe-—-Pricing-1.jpg\";s:12:\"tmpl_created\";i:1653989152;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/wireframe-pricing-1/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:146:\"[\"Booking\",\"Business\",\"Clients\",\"Contact\",\"Faq\",\"Features\",\"Footer\",\"Online Service\",\"Pricing\",\"Products\",\"Professional\",\"Services\",\"Testimonial\"]\";s:10:\"menu_order\";i:17;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:218;a:18:{s:4:\"tmpl\";i:1138;s:2:\"id\";i:16762;s:5:\"title\";s:25:\"Conference &#8211; Events\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2021/01/Conference.png\";s:12:\"tmpl_created\";i:1610455119;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/lp/conference-events/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:6:\"Events\";s:4:\"tags\";s:60:\"[\"Conference\",\"Convention\",\"Event\",\"Events\",\"Landing Pages\"]\";s:10:\"menu_order\";i:18;s:16:\"popularity_index\";i:705;s:11:\"trend_index\";i:216;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:219;a:18:{s:4:\"tmpl\";i:1438;s:2:\"id\";i:24539;s:5:\"title\";s:27:\"Wireframe &#8211; Contact 2\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2022/05/Wireframe-—-Contact-2.jpg\";s:12:\"tmpl_created\";i:1653989019;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/wireframe-contact-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:69:\"[\"Business\",\"Contact\",\"Footer\",\"Google Maps\",\"Header\",\"Professional\"]\";s:10:\"menu_order\";i:18;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:220;a:18:{s:4:\"tmpl\";i:981;s:2:\"id\";i:13281;s:5:\"title\";s:37:\"Hello Bar | Contact | Interior Design\";s:9:\"thumbnail\";s:66:\"https://library.elementor.com/wp-content/uploads/2020/04/PopUp.png\";s:12:\"tmpl_created\";i:1586148801;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:139:\"https://library.elementor.com/popups/hello-bar-contact-interior-design/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:9:\"hello bar\";s:4:\"tags\";s:19:\"[\"Interior Design\"]\";s:10:\"menu_order\";i:18;s:16:\"popularity_index\";i:763;s:11:\"trend_index\";i:679;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:221;a:18:{s:4:\"tmpl\";i:1052;s:2:\"id\";i:15259;s:5:\"title\";s:31:\"Hello Bar | Menu | Psychologist\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2020/09/Menu-PopUp.png\";s:12:\"tmpl_created\";i:1600170209;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:133:\"https://library.elementor.com/popups/hello-bar-menu-psychologist/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:9:\"hello bar\";s:4:\"tags\";s:34:\"[\"Psychologist\",\"Psychotherapist\"]\";s:10:\"menu_order\";i:19;s:16:\"popularity_index\";i:739;s:11:\"trend_index\";i:583;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:222;a:18:{s:4:\"tmpl\";i:1434;s:2:\"id\";i:24494;s:5:\"title\";s:28:\"Wireframe &#8211; Services 1\";s:9:\"thumbnail\";s:85:\"https://library.elementor.com/wp-content/uploads/2022/05/Wireframe-—-Services-1.jpg\";s:12:\"tmpl_created\";i:1653988874;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/wireframe-services-1/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:53:\"[\"Business\",\"Faq\",\"Footer\",\"Professional\",\"Services\"]\";s:10:\"menu_order\";i:19;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:223;a:18:{s:4:\"tmpl\";i:1194;s:2:\"id\";i:18701;s:5:\"title\";s:32:\"Digital Course &#8211; eCommerce\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2021/04/250x280.jpg\";s:12:\"tmpl_created\";i:1618995134;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:126:\"https://library.elementor.com/lp/digital-course-ecommerce/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:9:\"eCommerce\";s:4:\"tags\";s:57:\"[\"Course Online\",\"Ecommerce\",\"Landing Pages\",\"Marketing\"]\";s:10:\"menu_order\";i:19;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:224;a:18:{s:4:\"tmpl\";i:1192;s:2:\"id\";i:18612;s:5:\"title\";s:34:\"Bag Product Sale &#8211; eCommerce\";s:9:\"thumbnail\";s:85:\"https://library.elementor.com/wp-content/uploads/2021/04/Library-Pic-Bag-Product.jpeg\";s:12:\"tmpl_created\";i:1618395406;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:128:\"https://library.elementor.com/lp/bag-product-sale-ecommerce/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:9:\"eCommerce\";s:4:\"tags\";s:61:\"[\"Bag\",\"Ecommerce\",\"Landing Pages\",\"Product\",\"Sale\",\"Travel\"]\";s:10:\"menu_order\";i:20;s:16:\"popularity_index\";i:875;s:11:\"trend_index\";i:605;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:225;a:18:{s:4:\"tmpl\";i:1227;s:2:\"id\";i:21083;s:5:\"title\";s:26:\"Conference &#8211; Contact\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2021/12/10-Contact-Conference.jpg\";s:12:\"tmpl_created\";i:1638799208;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/conference-contact/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:44:\"[\"Conference\",\"Contact\",\"Form\",\"Info\",\"Map\"]\";s:10:\"menu_order\";i:20;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:226;a:18:{s:4:\"tmpl\";i:1193;s:2:\"id\";i:18644;s:5:\"title\";s:37:\"Camera Product Sale &#8211; eCommerce\";s:9:\"thumbnail\";s:85:\"https://library.elementor.com/wp-content/uploads/2021/04/camera_sale_featured-img.jpg\";s:12:\"tmpl_created\";i:1618396388;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:131:\"https://library.elementor.com/lp/camera-product-sale-ecommerce/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:9:\"eCommerce\";s:4:\"tags\";s:59:\"[\"Camera\",\"Ecommerce\",\"Landing Pages\",\"Photography\",\"Sale\"]\";s:10:\"menu_order\";i:21;s:16:\"popularity_index\";i:873;s:11:\"trend_index\";i:535;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:227;a:18:{s:4:\"tmpl\";i:951;s:2:\"id\";i:12736;s:5:\"title\";s:41:\"Slide In | Contact Us | Magazine and Blog\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2020/01/PopUp_contact_s.png\";s:12:\"tmpl_created\";i:1579060978;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:125:\"https://library.elementor.com/popups/slide-in-contact-us/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:8:\"slide-in\";s:4:\"tags\";s:19:\"[\"Blog\",\"Magazine\"]\";s:10:\"menu_order\";i:21;s:16:\"popularity_index\";i:734;s:11:\"trend_index\";i:686;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:228;a:18:{s:4:\"tmpl\";i:1222;s:2:\"id\";i:20960;s:5:\"title\";s:26:\"Travel Agency &#8211; Home\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2021/12/5-Home-Travel-Agency.jpg\";s:12:\"tmpl_created\";i:1638788432;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/travel-agency-home/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:53:\"[\"Adventures\",\"Experience\",\"Explore\",\"Travel\",\"Trip\"]\";s:10:\"menu_order\";i:21;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:229;a:18:{s:4:\"tmpl\";i:1196;s:2:\"id\";i:18815;s:5:\"title\";s:25:\"Car Wash &#8211; Business\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2021/05/Library-Pic-Car-Wash.png\";s:12:\"tmpl_created\";i:1621336431;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/lp/car-wash-business/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:45:\"[\"Business\",\"car\",\"Discount\",\"Landing Pages\"]\";s:10:\"menu_order\";i:22;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:230;a:18:{s:4:\"tmpl\";i:1242;s:2:\"id\";i:21473;s:5:\"title\";s:40:\"Architecture Photography &#8211; Gallery\";s:9:\"thumbnail\";s:96:\"https://library.elementor.com/wp-content/uploads/2021/12/20-Gallery-Architecture-Photography.jpg\";s:12:\"tmpl_created\";i:1638822115;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:131:\"https://library.elementor.com/architecture-photography-gallery/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:52:\"[\"Architecture\",\"Gallery\",\"Photography\",\"Portfolio\"]\";s:10:\"menu_order\";i:22;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:231;a:18:{s:4:\"tmpl\";i:1015;s:2:\"id\";i:14067;s:5:\"title\";s:37:\"Slide In | Japanese restaurant | Menu\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2020/06/Menu-Pop-Up-Small.jpg\";s:12:\"tmpl_created\";i:1592290352;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:139:\"https://library.elementor.com/popups/slide-in-japanese-restaurant-menu/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:8:\"slide-in\";s:4:\"tags\";s:32:\"[\"Food\",\"Japanese\",\"Restaurant\"]\";s:10:\"menu_order\";i:22;s:16:\"popularity_index\";i:650;s:11:\"trend_index\";i:565;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:232;a:18:{s:4:\"tmpl\";i:923;s:2:\"id\";i:12229;s:5:\"title\";s:33:\"Slide In | Law Firm | Information\";s:9:\"thumbnail\";s:66:\"https://library.elementor.com/wp-content/uploads/2019/11/popup.png\";s:12:\"tmpl_created\";i:1572847842;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:135:\"https://library.elementor.com/popups/slide-in-law-firm-information/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:8:\"slide-in\";s:4:\"tags\";s:18:\"[\"Law\",\"Law Firm\"]\";s:10:\"menu_order\";i:23;s:16:\"popularity_index\";i:547;s:11:\"trend_index\";i:413;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:233;a:18:{s:4:\"tmpl\";i:1198;s:2:\"id\";i:18824;s:5:\"title\";s:33:\"Design School &#8211; Coming Soon\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2021/05/250x280-1.png\";s:12:\"tmpl_created\";i:1621336756;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:127:\"https://library.elementor.com/lp/design-school-coming-soon/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:16:\"Coming Soon Page\";s:4:\"tags\";s:49:\"[\"Coming Soon\",\"Design\",\"Landing Pages\",\"School\"]\";s:10:\"menu_order\";i:23;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:234;a:18:{s:4:\"tmpl\";i:1236;s:2:\"id\";i:21259;s:5:\"title\";s:28:\"3D Designer &#8211; Projects\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2021/12/24-Projects-3D-Designer.jpg\";s:12:\"tmpl_created\";i:1638819185;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/3d-designer-projects/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:69:\"[\"3D\",\"Creative Portfolio\",\"Design\",\"Designer\",\"Portfolio\",\"Project\"]\";s:10:\"menu_order\";i:23;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:235;a:18:{s:4:\"tmpl\";i:1028;s:2:\"id\";i:14827;s:5:\"title\";s:39:\"Slide-In | Contact | Luxury Real Estate\";s:9:\"thumbnail\";s:66:\"https://library.elementor.com/wp-content/uploads/2020/07/PopUp.png\";s:12:\"tmpl_created\";i:1595323523;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:141:\"https://library.elementor.com/popups/slide-in-contact-luxury-real-estate/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:8:\"slide-in\";s:4:\"tags\";s:28:\"[\"Real estate\",\"Realestate\"]\";s:10:\"menu_order\";i:24;s:16:\"popularity_index\";i:559;s:11:\"trend_index\";i:284;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:236;a:18:{s:4:\"tmpl\";i:1197;s:2:\"id\";i:18819;s:5:\"title\";s:27:\"Dog Walker &#8211; Business\";s:9:\"thumbnail\";s:83:\"https://library.elementor.com/wp-content/uploads/2021/05/Library-Pic-Dog-Walker.png\";s:12:\"tmpl_created\";i:1621336601;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:121:\"https://library.elementor.com/lp/dog-walker-business/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:41:\"[\"Business\",\"Dog\",\"Landing Pages\",\"Pets\"]\";s:10:\"menu_order\";i:24;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:237;a:18:{s:4:\"tmpl\";i:1238;s:2:\"id\";i:21349;s:5:\"title\";s:29:\"Architecture &#8211; Projects\";s:9:\"thumbnail\";s:85:\"https://library.elementor.com/wp-content/uploads/2021/12/23-Projects-Architecture.jpg\";s:12:\"tmpl_created\";i:1638820870;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/architecture-projects/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:70:\"[\"Architecture\",\"Creative\",\"Creative Portfolio\",\"Portfolio\",\"Project\"]\";s:10:\"menu_order\";i:24;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:238;a:18:{s:4:\"tmpl\";i:1034;s:2:\"id\";i:15075;s:5:\"title\";s:34:\"Slide-In | Menu | Flooring Company\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2020/08/PopUp-1.png\";s:12:\"tmpl_created\";i:1597739605;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:136:\"https://library.elementor.com/popups/slide-in-menu-flooring-company/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:8:\"slide-in\";s:4:\"tags\";s:39:\"[\"Flooring company\",\"Flooring website\"]\";s:10:\"menu_order\";i:25;s:16:\"popularity_index\";i:383;s:11:\"trend_index\";i:162;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:239;a:18:{s:4:\"tmpl\";i:1414;s:2:\"id\";i:24079;s:5:\"title\";s:32:\"Fashion Shop &#8211; Coming Soon\";s:9:\"thumbnail\";s:85:\"https://library.elementor.com/wp-content/uploads/2022/04/Coming-Soon-Fashion-Shop.jpg\";s:12:\"tmpl_created\";i:1650988089;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/fashion-shop-coming-soon/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:88:\"[\"Aesthetic\",\"Business\",\"Coming Soon\",\"Ecommerce\",\"Girly\",\"Lifestyle\",\"Products\",\"Shop\"]\";s:10:\"menu_order\";i:25;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:240;a:18:{s:4:\"tmpl\";i:1195;s:2:\"id\";i:18761;s:5:\"title\";s:33:\"Fashion Store &#8211; Coming Soon\";s:9:\"thumbnail\";s:86:\"https://library.elementor.com/wp-content/uploads/2021/05/Library-Pic-Fashion-Store.png\";s:12:\"tmpl_created\";i:1621336146;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:127:\"https://library.elementor.com/lp/fashion-store-coming-soon/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:16:\"Coming Soon Page\";s:4:\"tags\";s:56:\"[\"Coming Soon\",\"Fashion\",\"Landing Pages\",\"Shop\",\"store\"]\";s:10:\"menu_order\";i:25;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:241;a:18:{s:4:\"tmpl\";i:1153;s:2:\"id\";i:17060;s:5:\"title\";s:36:\"Private Tutor &#8211; Online Service\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2021/01/Online-Tutor-2.png\";s:12:\"tmpl_created\";i:1610631042;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:130:\"https://library.elementor.com/lp/private-tutor-online-service/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:14:\"Online Service\";s:4:\"tags\";s:64:\"[\"Education\",\"Landing Pages\",\"Online Service\",\"Teacher\",\"Tutor\"]\";s:10:\"menu_order\";i:26;s:16:\"popularity_index\";i:780;s:11:\"trend_index\";i:628;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:242;a:18:{s:4:\"tmpl\";i:1430;s:2:\"id\";i:24434;s:5:\"title\";s:25:\"Wireframe &#8211; About 3\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2022/05/Wireframe-—-About-3.jpg\";s:12:\"tmpl_created\";i:1653988697;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/wireframe-about-3/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:76:\"[\"About\",\"Business\",\"Contact\",\"Faq\",\"Footer\",\"Header\",\"Professional\",\"Team\"]\";s:10:\"menu_order\";i:26;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:243;a:18:{s:4:\"tmpl\";i:1158;s:2:\"id\";i:17232;s:5:\"title\";s:33:\"Life Coach &#8211; Online Service\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2021/01/Life-Coach.png\";s:12:\"tmpl_created\";i:1610902793;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:127:\"https://library.elementor.com/lp/life-coach-online-service/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:14:\"Online Service\";s:4:\"tags\";s:38:\"[\"Coach\",\"Landing Pages\",\"Life Coach\"]\";s:10:\"menu_order\";i:27;s:16:\"popularity_index\";i:787;s:11:\"trend_index\";i:751;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:244;a:18:{s:4:\"tmpl\";i:1436;s:2:\"id\";i:24515;s:5:\"title\";s:28:\"Wireframe &#8211; Services 3\";s:9:\"thumbnail\";s:85:\"https://library.elementor.com/wp-content/uploads/2022/05/Wireframe-—-Services-3.jpg\";s:12:\"tmpl_created\";i:1653988946;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/wireframe-services-3/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:66:\"[\"Business\",\"Contact\",\"Footer\",\"Header\",\"Professional\",\"Services\"]\";s:10:\"menu_order\";i:27;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:245;a:18:{s:4:\"tmpl\";i:875;s:2:\"id\";i:11241;s:5:\"title\";s:36:\"Classic | Digital Agency | Marketing\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2019/07/PopUp_small.jpg\";s:12:\"tmpl_created\";i:1564643043;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:138:\"https://library.elementor.com/popups/classic-digital-agency-marketing/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:28;s:16:\"popularity_index\";i:362;s:11:\"trend_index\";i:315;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:246;a:18:{s:4:\"tmpl\";i:1146;s:2:\"id\";i:16932;s:5:\"title\";s:35:\"Finance Consulting &#8211; Business\";s:9:\"thumbnail\";s:79:\"https://library.elementor.com/wp-content/uploads/2021/01/Finance-Consulting.png\";s:12:\"tmpl_created\";i:1610532170;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:129:\"https://library.elementor.com/lp/finance-consulting-business/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:80:\"[\"Advisor\",\"Business\",\"Consulting\",\"Finance\",\"Investment\",\"Landing Pages\",\"Tax\"]\";s:10:\"menu_order\";i:28;s:16:\"popularity_index\";i:790;s:11:\"trend_index\";i:630;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:247;a:18:{s:4:\"tmpl\";i:1429;s:2:\"id\";i:24421;s:5:\"title\";s:25:\"Wireframe &#8211; About 2\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2022/05/Wireframe-—-About-2.jpg\";s:12:\"tmpl_created\";i:1653988579;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/wireframe-about-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:87:\"[\"About\",\"Business\",\"Contact\",\"Faq\",\"Features\",\"Footer\",\"Header\",\"Professional\",\"Team\"]\";s:10:\"menu_order\";i:28;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:248;a:18:{s:4:\"tmpl\";i:674;s:2:\"id\";i:8505;s:5:\"title\";s:11:\"404 page 01\";s:9:\"thumbnail\";s:64:\"https://library.elementor.com/wp-content/uploads/2018/05/001.jpg\";s:12:\"tmpl_created\";i:1526415501;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/404-page-01/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:28;s:16:\"popularity_index\";i:533;s:11:\"trend_index\";i:222;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:249;a:18:{s:4:\"tmpl\";i:1136;s:2:\"id\";i:16721;s:5:\"title\";s:35:\"Dental &#8211; Health &amp; Fitness\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2021/01/Dental.jpg\";s:12:\"tmpl_created\";i:1610448567;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/lp/dental-health-fitness/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:18:\"Health and Fitness\";s:4:\"tags\";s:44:\"[\"Dental\",\"Doctor\",\"Health\",\"Landing Pages\"]\";s:10:\"menu_order\";i:29;s:16:\"popularity_index\";i:801;s:11:\"trend_index\";i:655;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:250;a:18:{s:4:\"tmpl\";i:1417;s:2:\"id\";i:24116;s:5:\"title\";s:32:\"Tech Company &#8211; Coming Soon\";s:9:\"thumbnail\";s:85:\"https://library.elementor.com/wp-content/uploads/2022/04/Coming-Soon-Tech-Company.jpg\";s:12:\"tmpl_created\";i:1650989265;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/tech-company-coming-soon/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:87:\"[\"Business\",\"Coding\",\"Coming Soon\",\"Computer\",\"Developer\",\"IT\",\"Services\",\"Technology\"]\";s:10:\"menu_order\";i:29;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:251;a:18:{s:4:\"tmpl\";i:675;s:2:\"id\";i:8511;s:5:\"title\";s:11:\"404 page 02\";s:9:\"thumbnail\";s:64:\"https://library.elementor.com/wp-content/uploads/2018/05/002.jpg\";s:12:\"tmpl_created\";i:1526415528;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/404-page-02/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:29;s:16:\"popularity_index\";i:347;s:11:\"trend_index\";i:155;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:252;a:18:{s:4:\"tmpl\";i:1161;s:2:\"id\";i:17269;s:5:\"title\";s:34:\"Electronics Sale &#8211; eCommerce\";s:9:\"thumbnail\";s:80:\"https://library.elementor.com/wp-content/uploads/2021/01/Electronic-Products.png\";s:12:\"tmpl_created\";i:1610903298;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:128:\"https://library.elementor.com/lp/electronics-sale-ecommerce/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:9:\"eCommerce\";s:4:\"tags\";s:29:\"[\"Ecommerce\",\"Landing Pages\"]\";s:10:\"menu_order\";i:30;s:16:\"popularity_index\";i:800;s:11:\"trend_index\";i:556;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:253;a:18:{s:4:\"tmpl\";i:1220;s:2:\"id\";i:20908;s:5:\"title\";s:42:\"Packing &#038; Moving Company &#8211; Home\";s:9:\"thumbnail\";s:90:\"https://library.elementor.com/wp-content/uploads/2021/12/3-Home-Packing-Moving-Company.jpg\";s:12:\"tmpl_created\";i:1638786127;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:126:\"https://library.elementor.com/packing-moving-company-home/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:28:\"[\"Movers\",\"Moving\",\"Storge\"]\";s:10:\"menu_order\";i:30;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:254;a:18:{s:4:\"tmpl\";i:1152;s:2:\"id\";i:17032;s:5:\"title\";s:42:\"Donate Computer &#8211; Social Involvement\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2021/01/Donation-2.png\";s:12:\"tmpl_created\";i:1610630585;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:136:\"https://library.elementor.com/lp/donate-computer-social-involvement/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:18:\"Social Involvement\";s:4:\"tags\";s:67:\"[\"Computer\",\"Donate\",\"Donation\",\"Kids\",\"Landing Pages\",\"Nonprofit\"]\";s:10:\"menu_order\";i:31;s:16:\"popularity_index\";i:718;s:11:\"trend_index\";i:278;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:255;a:18:{s:4:\"tmpl\";i:672;s:2:\"id\";i:8512;s:5:\"title\";s:11:\"404 page 03\";s:9:\"thumbnail\";s:64:\"https://library.elementor.com/wp-content/uploads/2018/05/003.jpg\";s:12:\"tmpl_created\";i:1526415449;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/404-page-03/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:31;s:16:\"popularity_index\";i:450;s:11:\"trend_index\";i:375;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:256;a:18:{s:4:\"tmpl\";i:1245;s:2:\"id\";i:21546;s:5:\"title\";s:28:\"Interior Design &#8211; Home\";s:9:\"thumbnail\";s:85:\"https://library.elementor.com/wp-content/uploads/2021/12/1-Home-Interior-Design-1.jpg\";s:12:\"tmpl_created\";i:1639046269;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/interior-design-home/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:68:\"[\"Design\",\"Form\",\"Furniture Design\",\"Interior Design\",\"Testimonial\"]\";s:10:\"menu_order\";i:31;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:257;a:18:{s:4:\"tmpl\";i:1135;s:2:\"id\";i:16684;s:5:\"title\";s:34:\"SaaS HR Management &#8211; Product\";s:9:\"thumbnail\";s:66:\"https://library.elementor.com/wp-content/uploads/2021/01/lp_hr.png\";s:12:\"tmpl_created\";i:1609945486;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:128:\"https://library.elementor.com/lp/saas-hr-management-product/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:7:\"Product\";s:4:\"tags\";s:39:\"[\"HR\",\"Landing Pages\",\"Product\",\"SaaS\"]\";s:10:\"menu_order\";i:32;s:16:\"popularity_index\";i:708;s:11:\"trend_index\";i:292;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:258;a:18:{s:4:\"tmpl\";i:671;s:2:\"id\";i:8513;s:5:\"title\";s:11:\"404 page 04\";s:9:\"thumbnail\";s:64:\"https://library.elementor.com/wp-content/uploads/2018/05/004.jpg\";s:12:\"tmpl_created\";i:1526415417;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/404-page-04/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:32;s:16:\"popularity_index\";i:420;s:11:\"trend_index\";i:176;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:259;a:18:{s:4:\"tmpl\";i:1249;s:2:\"id\";i:22137;s:5:\"title\";s:31:\"Design Blog &#8211; Coming Soon\";s:9:\"thumbnail\";s:94:\"https://library.elementor.com/wp-content/uploads/2021/10/Design-Blog-Coming-Soon-250x280-1.jpg\";s:12:\"tmpl_created\";i:1647177194;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/design-blog-coming-soon/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:47:\"[\"Blog\",\"Coming Soon\",\"Design\",\"Landing Pages\"]\";s:10:\"menu_order\";i:32;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:260;a:18:{s:4:\"tmpl\";i:1134;s:2:\"id\";i:16660;s:5:\"title\";s:37:\"Medical center &#8211; Online service\";s:9:\"thumbnail\";s:95:\"https://library.elementor.com/wp-content/uploads/2021/01/Online-medical-cosultation-250_280.png\";s:12:\"tmpl_created\";i:1609945122;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:131:\"https://library.elementor.com/lp/medical-center-online-service/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:14:\"Online Service\";s:4:\"tags\";s:44:\"[\"Landing Pages\",\"Medical\",\"Online Service\"]\";s:10:\"menu_order\";i:33;s:16:\"popularity_index\";i:750;s:11:\"trend_index\";i:332;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:261;a:18:{s:4:\"tmpl\";i:1226;s:2:\"id\";i:21069;s:5:\"title\";s:21:\"Hotel &#8211; Contact\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2021/12/9-Contact-Hotel.jpg\";s:12:\"tmpl_created\";i:1638798545;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/hotel-contact/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:36:\"[\"Contact\",\"from\",\"Info\",\"Vacation\"]\";s:10:\"menu_order\";i:33;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:262;a:18:{s:4:\"tmpl\";i:1150;s:2:\"id\";i:17001;s:5:\"title\";s:36:\"Parental Counseling &#8211; Business\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2021/01/Parenting-Coach-2.png\";s:12:\"tmpl_created\";i:1610534999;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:130:\"https://library.elementor.com/lp/parental-counseling-business/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:99:\"[\"Advisor\",\"Business\",\"Coach\",\"Counseling\",\"Landing Pages\",\"Online Service\",\"Parental\",\"Parenting\"]\";s:10:\"menu_order\";i:34;s:16:\"popularity_index\";i:817;s:11:\"trend_index\";i:0;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:263;a:18:{s:4:\"tmpl\";i:1432;s:2:\"id\";i:24461;s:5:\"title\";s:27:\"Wireframe &#8211; Gallery 1\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2022/05/Wireframe-—-Gallery-1.jpg\";s:12:\"tmpl_created\";i:1653988784;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/wireframe-gallery-1/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:82:\"[\"Business\",\"Contact\",\"Design\",\"Footer\",\"Gallery\",\"Header\",\"Portfolio\",\"Services\"]\";s:10:\"menu_order\";i:34;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:264;a:18:{s:4:\"tmpl\";i:676;s:2:\"id\";i:8514;s:5:\"title\";s:11:\"404 Page 05\";s:9:\"thumbnail\";s:64:\"https://library.elementor.com/wp-content/uploads/2018/05/005.jpg\";s:12:\"tmpl_created\";i:1526415558;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/404-page-05/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:34;s:16:\"popularity_index\";i:419;s:11:\"trend_index\";i:220;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:265;a:18:{s:4:\"tmpl\";i:1137;s:2:\"id\";i:16742;s:5:\"title\";s:31:\"Online Course &#8211; Education\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2021/01/Online-Course.png\";s:12:\"tmpl_created\";i:1610454122;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:125:\"https://library.elementor.com/lp/online-course-education/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:9:\"Education\";s:4:\"tags\";s:55:\"[\"Academy\",\"Course Online\",\"Education\",\"Landing Pages\"]\";s:10:\"menu_order\";i:35;s:16:\"popularity_index\";i:777;s:11:\"trend_index\";i:776;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:266;a:18:{s:4:\"tmpl\";i:668;s:2:\"id\";i:8523;s:5:\"title\";s:11:\"404 page 06\";s:9:\"thumbnail\";s:64:\"https://library.elementor.com/wp-content/uploads/2018/05/006.jpg\";s:12:\"tmpl_created\";i:1526415291;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/404-page-06/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:35;s:16:\"popularity_index\";i:298;s:11:\"trend_index\";i:268;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:267;a:18:{s:4:\"tmpl\";i:1440;s:2:\"id\";i:24563;s:5:\"title\";s:27:\"Wireframe &#8211; Contact 4\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2022/05/Wireframe-—-Contact-4.jpg\";s:12:\"tmpl_created\";i:1653989095;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/wireframe-contact-4/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:84:\"[\"Business\",\"Contact\",\"Footer\",\"Form\",\"Gallery\",\"Header\",\"Professional\",\"Subscribe\"]\";s:10:\"menu_order\";i:35;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:268;a:18:{s:4:\"tmpl\";i:1162;s:2:\"id\";i:17284;s:5:\"title\";s:38:\"Dietitian &#8211; Health &amp; Fitness\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2021/01/Dietitian.png\";s:12:\"tmpl_created\";i:1610903484;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:126:\"https://library.elementor.com/lp/dietitian-health-fitness/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:18:\"Health and Fitness\";s:4:\"tags\";s:39:\"[\"Fitness\",\"Health\",\"landscape design\"]\";s:10:\"menu_order\";i:36;s:16:\"popularity_index\";i:814;s:11:\"trend_index\";i:800;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:269;a:18:{s:4:\"tmpl\";i:1439;s:2:\"id\";i:24553;s:5:\"title\";s:27:\"Wireframe &#8211; Contact 3\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2022/05/Wireframe-—-Contact-3.jpg\";s:12:\"tmpl_created\";i:1653989057;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/wireframe-contact-3/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:67:\"[\"Business\",\"Contact\",\"Footer\",\"Form\",\"Professional\",\"Testimonial\"]\";s:10:\"menu_order\";i:36;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:270;a:18:{s:4:\"tmpl\";i:1144;s:2:\"id\";i:16897;s:5:\"title\";s:30:\"Personal Chef &#8211; Business\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2021/01/Personal-Chef.png\";s:12:\"tmpl_created\";i:1610466247;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:124:\"https://library.elementor.com/lp/personal-chef-business/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:53:\"[\"Business\",\"Chef\",\"Food\",\"Landing Pages\",\"Services\"]\";s:10:\"menu_order\";i:37;s:16:\"popularity_index\";i:795;s:11:\"trend_index\";i:617;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:271;a:18:{s:4:\"tmpl\";i:1435;s:2:\"id\";i:24504;s:5:\"title\";s:28:\"Wireframe &#8211; Services 2\";s:9:\"thumbnail\";s:85:\"https://library.elementor.com/wp-content/uploads/2022/05/Wireframe-—-Services-2.jpg\";s:12:\"tmpl_created\";i:1653988910;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/wireframe-services-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:80:\"[\"Business\",\"Contact\",\"Footer\",\"Header\",\"Professional\",\"Services\",\"Testimonial\"]\";s:10:\"menu_order\";i:37;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:272;a:18:{s:4:\"tmpl\";i:669;s:2:\"id\";i:8524;s:5:\"title\";s:11:\"404 page 07\";s:9:\"thumbnail\";s:64:\"https://library.elementor.com/wp-content/uploads/2018/05/007.jpg\";s:12:\"tmpl_created\";i:1526415337;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/404-page-07/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:37;s:16:\"popularity_index\";i:303;s:11:\"trend_index\";i:171;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:273;a:18:{s:4:\"tmpl\";i:1147;s:2:\"id\";i:16946;s:5:\"title\";s:52:\"Online Full-Stack Developer Course &#8211; Education\";s:9:\"thumbnail\";s:95:\"https://library.elementor.com/wp-content/uploads/2021/01/Online-Full-Stack-Developer-Course.png\";s:12:\"tmpl_created\";i:1610532778;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:146:\"https://library.elementor.com/lp/online-full-stack-developer-course-education/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:9:\"Education\";s:4:\"tags\";s:76:\"[\"Academy\",\"Coding\",\"Course Online\",\"Developer\",\"Education\",\"Landing Pages\"]\";s:10:\"menu_order\";i:38;s:16:\"popularity_index\";i:805;s:11:\"trend_index\";i:0;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:274;a:18:{s:4:\"tmpl\";i:1437;s:2:\"id\";i:24528;s:5:\"title\";s:27:\"Wireframe &#8211; Contact 1\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2022/05/Wireframe-—-Contact-1.jpg\";s:12:\"tmpl_created\";i:1653988981;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/wireframe-contact-1/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:76:\"[\"Business\",\"Contact\",\"Footer\",\"Form\",\"Google Maps\",\"Header\",\"Professional\"]\";s:10:\"menu_order\";i:38;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:275;a:18:{s:4:\"tmpl\";i:1143;s:2:\"id\";i:16868;s:5:\"title\";s:40:\"Virtual Assistant &#8211; Online Service\";s:9:\"thumbnail\";s:88:\"https://library.elementor.com/wp-content/uploads/2021/01/Virtual-Assistant-250x280-1.png\";s:12:\"tmpl_created\";i:1610465656;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:134:\"https://library.elementor.com/lp/virtual-assistant-online-service/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:14:\"Online Service\";s:4:\"tags\";s:46:\"[\"Assistant\",\"Landing Pages\",\"Online Service\"]\";s:10:\"menu_order\";i:39;s:16:\"popularity_index\";i:793;s:11:\"trend_index\";i:757;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:276;a:18:{s:4:\"tmpl\";i:673;s:2:\"id\";i:8526;s:5:\"title\";s:11:\"404 page 09\";s:9:\"thumbnail\";s:64:\"https://library.elementor.com/wp-content/uploads/2018/05/009.jpg\";s:12:\"tmpl_created\";i:1526415474;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/404-page-09/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:39;s:16:\"popularity_index\";i:477;s:11:\"trend_index\";i:285;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:277;a:18:{s:4:\"tmpl\";i:1228;s:2:\"id\";i:21104;s:5:\"title\";s:26:\"Restaurant &#8211; Contact\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2021/12/11-Contact-Restaurant.jpg\";s:12:\"tmpl_created\";i:1638800146;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/restaurant-contact/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:60:\"[\"Contact\",\"Food\",\"Form\",\"Google Maps\",\"Info\",\"Testimonial\"]\";s:10:\"menu_order\";i:39;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:278;a:18:{s:4:\"tmpl\";i:1140;s:2:\"id\";i:16812;s:5:\"title\";s:40:\"Construction Project &#8211; Real Estate\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2021/01/Construction-Project.png\";s:12:\"tmpl_created\";i:1610463582;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:134:\"https://library.elementor.com/lp/construction-project-real-estate/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:11:\"Real Estate\";s:4:\"tags\";s:59:\"[\"Construction\",\"Landing Pages\",\"Real estate\",\"Realestate\"]\";s:10:\"menu_order\";i:40;s:16:\"popularity_index\";i:796;s:11:\"trend_index\";i:724;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:279;a:18:{s:4:\"tmpl\";i:1244;s:2:\"id\";i:21393;s:5:\"title\";s:34:\"Interior Designer &#8211; Projects\";s:9:\"thumbnail\";s:99:\"https://library.elementor.com/wp-content/uploads/2021/12/big-22-Projects-Interior-Designer-New.jpeg\";s:12:\"tmpl_created\";i:1638823945;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:125:\"https://library.elementor.com/interior-designer-projects/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:93:\"[\"Creative\",\"Creative Portfolio\",\"Design\",\"Designer\",\"Interior Design\",\"Portfolio\",\"Project\"]\";s:10:\"menu_order\";i:40;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:280;a:18:{s:4:\"tmpl\";i:1148;s:2:\"id\";i:16960;s:5:\"title\";s:44:\"Dog &amp; Cat Food Delivery &#8211; Business\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2021/01/Dog-Food.png\";s:12:\"tmpl_created\";i:1610533581;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:132:\"https://library.elementor.com/lp/dog-cat-food-delivery-business/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:71:\"[\"Business\",\"Cat\",\"Delivery\",\"Dog\",\"Food\",\"Landing Pages\",\"Pet\",\"Pets\"]\";s:10:\"menu_order\";i:41;s:16:\"popularity_index\";i:782;s:11:\"trend_index\";i:510;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:281;a:18:{s:4:\"tmpl\";i:670;s:2:\"id\";i:8525;s:5:\"title\";s:11:\"404 page 08\";s:9:\"thumbnail\";s:64:\"https://library.elementor.com/wp-content/uploads/2018/05/008.jpg\";s:12:\"tmpl_created\";i:1526415374;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/404-page-08/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:41;s:16:\"popularity_index\";i:510;s:11:\"trend_index\";i:575;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:282;a:18:{s:4:\"tmpl\";i:1251;s:2:\"id\";i:22143;s:5:\"title\";s:33:\"Fashion Store &#8211; Coming Soon\";s:9:\"thumbnail\";s:86:\"https://library.elementor.com/wp-content/uploads/2021/05/Library-Pic-Fashion-Store.png\";s:12:\"tmpl_created\";i:1647177389;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:124:\"https://library.elementor.com/fashion-store-coming-soon/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:56:\"[\"Coming Soon\",\"Fashion\",\"Landing Pages\",\"Shop\",\"store\"]\";s:10:\"menu_order\";i:41;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:283;a:18:{s:4:\"tmpl\";i:1155;s:2:\"id\";i:17095;s:5:\"title\";s:36:\"Mobile Pet Grooming &#8211; Business\";s:9:\"thumbnail\";s:80:\"https://library.elementor.com/wp-content/uploads/2021/01/Mobile-Pet-Grooming.png\";s:12:\"tmpl_created\";i:1610632115;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:130:\"https://library.elementor.com/lp/mobile-pet-grooming-business/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:38:\"[\"Dog\",\"Groom\",\"Landing Pages\",\"Pets\"]\";s:10:\"menu_order\";i:42;s:16:\"popularity_index\";i:786;s:11:\"trend_index\";i:731;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:284;a:18:{s:4:\"tmpl\";i:1241;s:2:\"id\";i:21451;s:5:\"title\";s:26:\"Exhibition &#8211; Gallery\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2021/12/21-Gallery-Exhibition.jpg\";s:12:\"tmpl_created\";i:1638821855;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/exhibition-gallery/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:74:\"[\"Art\",\"Creative\",\"Creative Portfolio\",\"Exhibition\",\"Gallery\",\"Portfolio\"]\";s:10:\"menu_order\";i:42;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:285;a:18:{s:4:\"tmpl\";i:502;s:2:\"id\";i:5438;s:5:\"title\";s:7:\"About 1\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/about_black_4.png\";s:12:\"tmpl_created\";i:1520443512;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/blocks/about-1/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";i:42;s:16:\"popularity_index\";i:147;s:11:\"trend_index\";i:9;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:286;a:18:{s:4:\"tmpl\";i:1159;s:2:\"id\";i:17245;s:5:\"title\";s:34:\"Marketing Course &#8211; Education\";s:9:\"thumbnail\";s:64:\"https://library.elementor.com/wp-content/uploads/2021/01/PPC.png\";s:12:\"tmpl_created\";i:1610902958;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:128:\"https://library.elementor.com/lp/marketing-course-education/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:9:\"Education\";s:4:\"tags\";s:45:\"[\"Course Online\",\"Landing Pages\",\"Marketing\"]\";s:10:\"menu_order\";i:43;s:16:\"popularity_index\";i:770;s:11:\"trend_index\";i:430;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:287;a:18:{s:4:\"tmpl\";i:1240;s:2:\"id\";i:21430;s:5:\"title\";s:30:\"Travel Blogger &#8211; Gallery\";s:9:\"thumbnail\";s:86:\"https://library.elementor.com/wp-content/uploads/2021/12/19-Gallery-Travel-Blogger.jpg\";s:12:\"tmpl_created\";i:1638821592;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:121:\"https://library.elementor.com/travel-blogger-gallery/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:43:\"[\"Gallery\",\"Photography\",\"Slider\",\"Travel\"]\";s:10:\"menu_order\";i:43;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:288;a:18:{s:4:\"tmpl\";i:1149;s:2:\"id\";i:16983;s:5:\"title\";s:41:\"Pilates Instructor &#8211; Online Service\";s:9:\"thumbnail\";s:79:\"https://library.elementor.com/wp-content/uploads/2021/01/Pilates-Instructor.png\";s:12:\"tmpl_created\";i:1610534138;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:135:\"https://library.elementor.com/lp/pilates-instructor-online-service/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:14:\"Online Service\";s:4:\"tags\";s:70:\"[\"Free Trial\",\"Instructor\",\"Landing Pages\",\"Online Service\",\"Pilates\"]\";s:10:\"menu_order\";i:44;s:16:\"popularity_index\";i:778;s:11:\"trend_index\";i:412;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:289;a:18:{s:4:\"tmpl\";i:1416;s:2:\"id\";i:24104;s:5:\"title\";s:33:\"Ceramics Shop &#8211; Coming Soon\";s:9:\"thumbnail\";s:86:\"https://library.elementor.com/wp-content/uploads/2022/04/Coming-Soon-Ceramics-Shop.jpg\";s:12:\"tmpl_created\";i:1650988949;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:124:\"https://library.elementor.com/ceramics-shop-coming-soon/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:115:\"[\"Art\",\"Business\",\"Coming Soon\",\"Creative\",\"Decor\",\"Design\",\"Furniture Design\",\"Interior Design\",\"Products\",\"Shop\"]\";s:10:\"menu_order\";i:44;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:290;a:18:{s:4:\"tmpl\";i:557;s:2:\"id\";i:6135;s:5:\"title\";s:8:\"About 10\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/about_black_2.png\";s:12:\"tmpl_created\";i:1520443663;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/blocks/about-10/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";i:45;s:16:\"popularity_index\";i:77;s:11:\"trend_index\";i:47;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:291;a:18:{s:4:\"tmpl\";i:1412;s:2:\"id\";i:24033;s:5:\"title\";s:37:\"Dance Studio &#8211; Maintenance Mode\";s:9:\"thumbnail\";s:90:\"https://library.elementor.com/wp-content/uploads/2022/04/Maintenance-Mode-Dance-Studio.jpg\";s:12:\"tmpl_created\";i:1649881344;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:128:\"https://library.elementor.com/dance-studio-maintenance-mode/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:113:\"[\"Academy\",\"Business\",\"Dance Studio\",\"Form\",\"Pilates\",\"School\",\"Sport\",\"Teacher\",\"Training\",\"Under Construction\"]\";s:10:\"menu_order\";i:45;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:292;a:18:{s:4:\"tmpl\";i:1190;s:2:\"id\";i:18568;s:5:\"title\";s:32:\"Flower Delivery &#8211; Business\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2021/04/Flower-Delivery.png\";s:12:\"tmpl_created\";i:1617546716;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:126:\"https://library.elementor.com/lp/flower-delivery-business/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:37:\"[\"Delivery\",\"Flower\",\"Landing Pages\"]\";s:10:\"menu_order\";i:45;s:16:\"popularity_index\";i:874;s:11:\"trend_index\";i:763;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:293;a:18:{s:4:\"tmpl\";i:1145;s:2:\"id\";i:16917;s:5:\"title\";s:22:\"Webinar &#8211; Events\";s:9:\"thumbnail\";s:80:\"https://library.elementor.com/wp-content/uploads/2021/01/Webinar-Library-Pic.jpg\";s:12:\"tmpl_created\";i:1610466822;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/lp/webinar-events/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:6:\"Events\";s:4:\"tags\";s:36:\"[\"Events\",\"Landing Pages\",\"Webinar\"]\";s:10:\"menu_order\";i:46;s:16:\"popularity_index\";i:821;s:11:\"trend_index\";i:0;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:294;a:18:{s:4:\"tmpl\";i:1413;s:2:\"id\";i:24049;s:5:\"title\";s:33:\"ECO Shop &#8211; Maintenance Mode\";s:9:\"thumbnail\";s:86:\"https://library.elementor.com/wp-content/uploads/2022/04/Maintenance-Mode-ECO-Shop.jpg\";s:12:\"tmpl_created\";i:1649882053;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:124:\"https://library.elementor.com/eco-shop-maintenance-mode/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:110:\"[\"Aesthetic\",\"Business\",\"Creative\",\"Decor\",\"Health\",\"Help\",\"Lifestyle\",\"Products\",\"Shop\",\"Under Construction\"]\";s:10:\"menu_order\";i:46;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:295;a:18:{s:4:\"tmpl\";i:497;s:2:\"id\";i:5397;s:5:\"title\";s:8:\"About 11\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/about_white_1.png\";s:12:\"tmpl_created\";i:1520443503;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/blocks/about-11/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";i:46;s:16:\"popularity_index\";i:148;s:11:\"trend_index\";i:43;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:296;a:18:{s:4:\"tmpl\";i:1154;s:2:\"id\";i:17079;s:5:\"title\";s:42:\"Calls Volunteer &#8211; Social Involvement\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2021/01/Calls-Volunteer.png\";s:12:\"tmpl_created\";i:1610631774;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:136:\"https://library.elementor.com/lp/calls-volunteer-social-involvement/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:18:\"Social Involvement\";s:4:\"tags\";s:68:\"[\"Care\",\"Covid-19\",\"Help\",\"Involvement\",\"Landing Pages\",\"Volunteer\"]\";s:10:\"menu_order\";i:47;s:16:\"popularity_index\";i:854;s:11:\"trend_index\";i:0;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:297;a:18:{s:4:\"tmpl\";i:1419;s:2:\"id\";i:24136;s:5:\"title\";s:29:\"Food Blog &#8211; Coming Soon\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2022/04/Coming-Soon-Food-Blog.jpg\";s:12:\"tmpl_created\";i:1650990034;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/food-blog-coming-soon/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:62:\"[\"Blog\",\"Business\",\"Coming Soon\",\"Cooking\",\"Education\",\"Food\"]\";s:10:\"menu_order\";i:47;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:298;a:18:{s:4:\"tmpl\";i:1142;s:2:\"id\";i:16836;s:5:\"title\";s:33:\"Marketing Agency &#8211; Business\";s:9:\"thumbnail\";s:89:\"https://library.elementor.com/wp-content/uploads/2021/01/Marketing-Agency-Library-Pic.jpg\";s:12:\"tmpl_created\";i:1610464490;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:127:\"https://library.elementor.com/lp/marketing-agency-business/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:74:\"[\"Agency\",\"Business\",\"Landing Pages\",\"Marketing\",\"Marketing Landing Page\"]\";s:10:\"menu_order\";i:48;s:16:\"popularity_index\";i:816;s:11:\"trend_index\";i:787;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:299;a:18:{s:4:\"tmpl\";i:1411;s:2:\"id\";i:24020;s:5:\"title\";s:35:\"Mobile App &#8211; Maintenance Mode\";s:9:\"thumbnail\";s:88:\"https://library.elementor.com/wp-content/uploads/2022/04/Maintenance-Mode-Mobile-App.jpg\";s:12:\"tmpl_created\";i:1649880955;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:126:\"https://library.elementor.com/mobile-app-maintenance-mode/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:77:\"[\"App\",\"Business\",\"Coding\",\"Computer\",\"Launch\",\"Mobile\",\"Under Construction\"]\";s:10:\"menu_order\";i:48;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:300;a:18:{s:4:\"tmpl\";i:498;s:2:\"id\";i:5405;s:5:\"title\";s:8:\"About 12\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/about_black_1.png\";s:12:\"tmpl_created\";i:1520443505;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/blocks/about-12/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";i:48;s:16:\"popularity_index\";i:216;s:11:\"trend_index\";i:50;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:301;a:18:{s:4:\"tmpl\";i:1139;s:2:\"id\";i:16785;s:5:\"title\";s:42:\"Gym Promotion &#8211; Health &amp; Fitness\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2021/01/Gym-LP.jpg\";s:12:\"tmpl_created\";i:1610455496;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:130:\"https://library.elementor.com/lp/gym-promotion-health-fitness/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:18:\"Health and Fitness\";s:4:\"tags\";s:42:\"[\"Fitness\",\"Gym\",\"Health\",\"Landing Pages\"]\";s:10:\"menu_order\";i:49;s:16:\"popularity_index\";i:820;s:11:\"trend_index\";i:0;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:302;a:18:{s:4:\"tmpl\";i:1420;s:2:\"id\";i:24152;s:5:\"title\";s:32:\"Perfume Shop &#8211; Coming Soon\";s:9:\"thumbnail\";s:85:\"https://library.elementor.com/wp-content/uploads/2022/04/Coming-Soon-Perfume-Shop.jpg\";s:12:\"tmpl_created\";i:1650990353;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/perfume-shop-coming-soon/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:68:\"[\"Business\",\"Coming Soon\",\"Cosmetics\",\"Lifestyle\",\"Products\",\"Shop\"]\";s:10:\"menu_order\";i:49;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:303;a:18:{s:4:\"tmpl\";i:1185;s:2:\"id\";i:18492;s:5:\"title\";s:34:\"Bicycle Pre-Sale &#8211; eCommerce\";s:9:\"thumbnail\";s:90:\"https://library.elementor.com/wp-content/uploads/2021/04/Library-Pic-Bike-Landing-Page.png\";s:12:\"tmpl_created\";i:1617535552;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:128:\"https://library.elementor.com/lp/bicycle-pre-sale-ecommerce/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:9:\"eCommerce\";s:4:\"tags\";s:34:\"[\"Bicycle\",\"Landing Pages\",\"Sale\"]\";s:10:\"menu_order\";i:50;s:16:\"popularity_index\";i:871;s:11:\"trend_index\";i:826;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:304;a:18:{s:4:\"tmpl\";i:1418;s:2:\"id\";i:24126;s:5:\"title\";s:28:\"Skincare &#8211; Coming Soon\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2022/04/Coming-Soon-Skincare.jpg\";s:12:\"tmpl_created\";i:1650989585;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/skincare-coming-soon/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:128:\"[\"Aesthetic\",\"Beauty\",\"Beauty Salon\",\"Business\",\"Coming Soon\",\"Cosmetics\",\"Girly\",\"Lifestyle\",\"Services\",\"Skincare\",\"Treatment\"]\";s:10:\"menu_order\";i:51;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:305;a:18:{s:4:\"tmpl\";i:1181;s:2:\"id\";i:18349;s:5:\"title\";s:39:\"Virtual try-on glasses &#8211; Business\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2021/03/250x280-8.png\";s:12:\"tmpl_created\";i:1614772569;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:133:\"https://library.elementor.com/lp/virtual-try-on-glasses-business/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:64:\"[\"Fashion\",\"Glasses\",\"Landing Pages\",\"Online Service\",\"Virtual\"]\";s:10:\"menu_order\";i:51;s:16:\"popularity_index\";i:848;s:11:\"trend_index\";i:803;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:306;a:18:{s:4:\"tmpl\";i:500;s:2:\"id\";i:5421;s:5:\"title\";s:8:\"About 13\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/about_white_3.png\";s:12:\"tmpl_created\";i:1520443509;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/blocks/about-13/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";i:51;s:16:\"popularity_index\";i:215;s:11:\"trend_index\";i:77;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:307;a:18:{s:4:\"tmpl\";i:513;s:2:\"id\";i:5533;s:5:\"title\";s:8:\"About 15\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2018/03/about_black_10.png\";s:12:\"tmpl_created\";i:1520443534;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/blocks/about-15/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";i:52;s:16:\"popularity_index\";i:21;s:11:\"trend_index\";i:57;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:308;a:18:{s:4:\"tmpl\";i:1410;s:2:\"id\";i:24004;s:5:\"title\";s:33:\"Skincare &#8211; Maintenance Mode\";s:9:\"thumbnail\";s:86:\"https://library.elementor.com/wp-content/uploads/2022/04/Maintenance-Mode-Skincare.jpg\";s:12:\"tmpl_created\";i:1649880534;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:124:\"https://library.elementor.com/skincare-maintenance-mode/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:144:\"[\"Aesthetic\",\"Beauty\",\"Beauty Salon\",\"Business\",\"Cosmetics\",\"Girly\",\"Lifestyle\",\"Makeup\",\"Services\",\"Skincare\",\"Treatment\",\"Under Construction\"]\";s:10:\"menu_order\";i:52;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:309;a:18:{s:4:\"tmpl\";i:1172;s:2:\"id\";i:17458;s:5:\"title\";s:31:\"Moving Company &#8211; Business\";s:9:\"thumbnail\";s:87:\"https://library.elementor.com/wp-content/uploads/2021/02/Library-Pic-Moving-Company.png\";s:12:\"tmpl_created\";i:1612727025;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:125:\"https://library.elementor.com/lp/moving-company-business/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:46:\"[\"Business\",\"Landing Pages\",\"Movers\",\"Moving\"]\";s:10:\"menu_order\";i:52;s:16:\"popularity_index\";i:826;s:11:\"trend_index\";i:767;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:310;a:18:{s:4:\"tmpl\";i:1415;s:2:\"id\";i:24092;s:5:\"title\";s:29:\"Vase Shop &#8211; Coming Soon\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2022/04/Coming-Soon-Vase-Shop.jpg\";s:12:\"tmpl_created\";i:1650988613;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/vase-shop-coming-soon/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:115:\"[\"Art\",\"Business\",\"Coming Soon\",\"Creative\",\"Decor\",\"Design\",\"Furniture Design\",\"Interior Design\",\"Products\",\"Shop\"]\";s:10:\"menu_order\";i:53;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:311;a:18:{s:4:\"tmpl\";i:1186;s:2:\"id\";i:18517;s:5:\"title\";s:29:\"Food Blog &#8211; Coming Soon\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2021/04/Library-Pic-Food-Blog.png\";s:12:\"tmpl_created\";i:1617539897;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/lp/food-blog-coming-soon/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:16:\"Coming Soon Page\";s:4:\"tags\";s:45:\"[\"Blog\",\"Coming Soon\",\"Food\",\"Landing Pages\"]\";s:10:\"menu_order\";i:53;s:16:\"popularity_index\";i:844;s:11:\"trend_index\";i:672;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:312;a:18:{s:4:\"tmpl\";i:1167;s:2:\"id\";i:17379;s:5:\"title\";s:33:\"IT Service &#8211; Online Service\";s:9:\"thumbnail\";s:83:\"https://library.elementor.com/wp-content/uploads/2021/02/Library-Pic-IT-Service.png\";s:12:\"tmpl_created\";i:1612713022;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:127:\"https://library.elementor.com/lp/it-service-online-service/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:14:\"Online Service\";s:4:\"tags\";s:41:\"[\"IT\",\"Landing Pages\",\"Remote\",\"Support\"]\";s:10:\"menu_order\";i:54;s:16:\"popularity_index\";i:806;s:11:\"trend_index\";i:634;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:313;a:18:{s:4:\"tmpl\";i:1248;s:2:\"id\";i:22134;s:5:\"title\";s:32:\"Art Magazine &#8211; Coming Soon\";s:9:\"thumbnail\";s:95:\"https://library.elementor.com/wp-content/uploads/2021/10/Art-Magazine-Coming-Soon-250x280-1.jpg\";s:12:\"tmpl_created\";i:1647176713;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/art-magazine-coming-soon/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:48:\"[\"Art\",\"Coming Soon\",\"Landing Pages\",\"Magazine\"]\";s:10:\"menu_order\";i:54;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:314;a:18:{s:4:\"tmpl\";i:512;s:2:\"id\";i:5525;s:5:\"title\";s:8:\"About 14\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2018/03/about_white_10.png\";s:12:\"tmpl_created\";i:1520443532;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/blocks/about-14/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";i:55;s:16:\"popularity_index\";i:9;s:11:\"trend_index\";i:29;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:315;a:18:{s:4:\"tmpl\";i:1189;s:2:\"id\";i:18560;s:5:\"title\";s:52:\"Finance Learning Platform &#8211; Under Construction\";s:9:\"thumbnail\";s:89:\"https://library.elementor.com/wp-content/uploads/2021/04/Library-Pic-Finance-Platform.png\";s:12:\"tmpl_created\";i:1617542761;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:146:\"https://library.elementor.com/lp/finance-learning-platform-under-construction/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:18:\"Under Construction\";s:4:\"tags\";s:27:\"[\"Finance\",\"Landing Pages\"]\";s:10:\"menu_order\";i:55;s:16:\"popularity_index\";i:843;s:11:\"trend_index\";i:561;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:316;a:18:{s:4:\"tmpl\";i:1225;s:2:\"id\";i:21041;s:5:\"title\";s:41:\"Business Consulting Company &#8211; About\";s:9:\"thumbnail\";s:96:\"https://library.elementor.com/wp-content/uploads/2021/12/8-About-Business-Consulting-Company.jpg\";s:12:\"tmpl_created\";i:1638797560;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:132:\"https://library.elementor.com/business-consulting-company-about/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:51:\"[\"Coach\",\"Collaboration\",\"Consulting\",\"Life Coach\"]\";s:10:\"menu_order\";i:55;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:317;a:18:{s:4:\"tmpl\";i:1187;s:2:\"id\";i:18528;s:5:\"title\";s:36:\"Home Decor Store &#8211; Coming Soon\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2021/04/Library-Pic-Home-Decore.png\";s:12:\"tmpl_created\";i:1617541784;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:130:\"https://library.elementor.com/lp/home-decor-store-coming-soon/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:16:\"Coming Soon Page\";s:4:\"tags\";s:57:\"[\"Coming Soon\",\"Decor\",\"Interior Design\",\"Landing Pages\"]\";s:10:\"menu_order\";i:56;s:16:\"popularity_index\";i:872;s:11:\"trend_index\";i:819;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:318;a:18:{s:4:\"tmpl\";i:1243;s:2:\"id\";i:21135;s:5:\"title\";s:28:\"Construction &#8211; Service\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2021/12/13-Service-Construction.jpg\";s:12:\"tmpl_created\";i:1638823202;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/construction-service/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:48:\"[\"Architecture\",\"Construction\",\"Faq\",\"Services\"]\";s:10:\"menu_order\";i:56;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:319;a:18:{s:4:\"tmpl\";i:501;s:2:\"id\";i:5429;s:5:\"title\";s:8:\"About 16\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/about_white_4.png\";s:12:\"tmpl_created\";i:1520443510;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/blocks/about-16/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";i:56;s:16:\"popularity_index\";i:59;s:11:\"trend_index\";i:8;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:320;a:18:{s:4:\"tmpl\";i:1174;s:2:\"id\";i:17504;s:5:\"title\";s:29:\"Hair Stylist &#8211; Business\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2021/02/250x280-3.png\";s:12:\"tmpl_created\";i:1612883014;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/lp/hair-stylist-business/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:59:\"[\"Business\",\"Hair\",\"hairdresser\",\"Landing Pages\",\"Stylist\"]\";s:10:\"menu_order\";i:57;s:16:\"popularity_index\";i:840;s:11:\"trend_index\";i:806;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:321;a:18:{s:4:\"tmpl\";i:1223;s:2:\"id\";i:20981;s:5:\"title\";s:37:\"Creative Digital Agency &#8211; About\";s:9:\"thumbnail\";s:92:\"https://library.elementor.com/wp-content/uploads/2021/12/6-About-Creative-Digital-Agency.jpg\";s:12:\"tmpl_created\";i:1638789303;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:128:\"https://library.elementor.com/creative-digital-agency-about/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:51:\"[\"About\",\"Advisor\",\"Creative\",\"Creative Portfolio\"]\";s:10:\"menu_order\";i:57;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:322;a:18:{s:4:\"tmpl\";i:1184;s:2:\"id\";i:18449;s:5:\"title\";s:45:\"Aesthetic Clinic &#8211; Health &amp; Fitness\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2021/03/Aesthetic-Clinic.png\";s:12:\"tmpl_created\";i:1616682181;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:133:\"https://library.elementor.com/lp/aesthetic-clinic-health-fitness/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:18:\"Health and Fitness\";s:4:\"tags\";s:57:\"[\"Aesthetic\",\"Beauty\",\"Fitness\",\"Health\",\"Landing Pages\"]\";s:10:\"menu_order\";i:58;s:16:\"popularity_index\";i:859;s:11:\"trend_index\";i:0;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:323;a:18:{s:4:\"tmpl\";i:1221;s:2:\"id\";i:20926;s:5:\"title\";s:33:\"Doctors Online Consultation -Home\";s:9:\"thumbnail\";s:95:\"https://library.elementor.com/wp-content/uploads/2021/12/4-Home-Doctors-Online-Consultation.jpg\";s:12:\"tmpl_created\";i:1638787371;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:131:\"https://library.elementor.com/doctors-online-consultation-home/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:35:\"[\"App\",\"Health\",\"Medical\",\"Online\"]\";s:10:\"menu_order\";i:58;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:324;a:18:{s:4:\"tmpl\";i:505;s:2:\"id\";i:5464;s:5:\"title\";s:8:\"About 17\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/about_black_6.png\";s:12:\"tmpl_created\";i:1520443518;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/blocks/about-17/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";i:58;s:16:\"popularity_index\";i:220;s:11:\"trend_index\";i:142;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:325;a:18:{s:4:\"tmpl\";i:1165;s:2:\"id\";i:17353;s:5:\"title\";s:44:\"Online Cooking Course &#8211; Online Service\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2021/02/250x280-2.png\";s:12:\"tmpl_created\";i:1612705144;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:138:\"https://library.elementor.com/lp/online-cooking-course-online-service/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:14:\"Online Service\";s:4:\"tags\";s:50:\"[\"Cooking\",\"Course Online\",\"Food\",\"Landing Pages\"]\";s:10:\"menu_order\";i:59;s:16:\"popularity_index\";i:845;s:11:\"trend_index\";i:0;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:326;a:18:{s:4:\"tmpl\";i:1188;s:2:\"id\";i:18550;s:5:\"title\";s:39:\"Online Store &#8211; Under Construction\";s:9:\"thumbnail\";s:85:\"https://library.elementor.com/wp-content/uploads/2021/04/Library-Pic-Online-Store.png\";s:12:\"tmpl_created\";i:1617542506;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:133:\"https://library.elementor.com/lp/online-store-under-construction/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:18:\"Under Construction\";s:4:\"tags\";s:59:\"[\"Landing Pages\",\"Online Shop\",\"Shop\",\"Under Construction\"]\";s:10:\"menu_order\";i:60;s:16:\"popularity_index\";i:832;s:11:\"trend_index\";i:600;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:327;a:18:{s:4:\"tmpl\";i:1250;s:2:\"id\";i:22140;s:5:\"title\";s:33:\"Design School &#8211; Coming Soon\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2021/05/250x280-1.png\";s:12:\"tmpl_created\";i:1647177317;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:124:\"https://library.elementor.com/design-school-coming-soon/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:49:\"[\"Coming Soon\",\"Design\",\"Landing Pages\",\"School\"]\";s:10:\"menu_order\";i:60;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:328;a:18:{s:4:\"tmpl\";i:510;s:2:\"id\";i:5504;s:5:\"title\";s:8:\"About 18\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/about_white_9.png\";s:12:\"tmpl_created\";i:1520443528;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/blocks/about-18/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";i:60;s:16:\"popularity_index\";i:104;s:11:\"trend_index\";i:46;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:329;a:18:{s:4:\"tmpl\";i:1191;s:2:\"id\";i:18539;s:5:\"title\";s:40:\"Travel Agency &#8211; Under Construction\";s:9:\"thumbnail\";s:88:\"https://library.elementor.com/wp-content/uploads/2021/04/Library-Pic-Travel-Agency-1.png\";s:12:\"tmpl_created\";i:1617610273;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:134:\"https://library.elementor.com/lp/travel-agency-under-construction/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:18:\"Under Construction\";s:4:\"tags\";s:56:\"[\"Agency\",\"Landing Pages\",\"Travel\",\"Under Construction\"]\";s:10:\"menu_order\";i:61;s:16:\"popularity_index\";i:876;s:11:\"trend_index\";i:652;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:330;a:18:{s:4:\"tmpl\";i:1175;s:2:\"id\";i:18270;s:5:\"title\";s:24:\"Open week &#8211; Events\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2021/03/250x280.png\";s:12:\"tmpl_created\";i:1614767186;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/lp/open-week-events/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:6:\"Events\";s:4:\"tags\";s:59:\"[\"Education\",\"Event\",\"Events\",\"Landing Pages\",\"University\"]\";s:10:\"menu_order\";i:62;s:16:\"popularity_index\";i:831;s:11:\"trend_index\";i:673;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:331;a:18:{s:4:\"tmpl\";i:1177;s:2:\"id\";i:18300;s:5:\"title\";s:30:\"Makeup Artist &#8211; Business\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2021/03/250x280-2.png\";s:12:\"tmpl_created\";i:1614768608;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:124:\"https://library.elementor.com/lp/makeup-artist-business/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:79:\"[\"Beauty\",\"Business\",\"Course Online\",\"Landing Pages\",\"Makeup\",\"Online Service\"]\";s:10:\"menu_order\";i:63;s:16:\"popularity_index\";i:861;s:11:\"trend_index\";i:783;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:332;a:18:{s:4:\"tmpl\";i:511;s:2:\"id\";i:5515;s:5:\"title\";s:8:\"About 19\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/about_black_9.png\";s:12:\"tmpl_created\";i:1520443530;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/blocks/about-19/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";i:63;s:16:\"popularity_index\";i:268;s:11:\"trend_index\";i:161;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:333;a:18:{s:4:\"tmpl\";i:1179;s:2:\"id\";i:18329;s:5:\"title\";s:63:\"Online Real Estate Investment Conference &#8211; Online Service\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2021/03/250x280-5.png\";s:12:\"tmpl_created\";i:1614770404;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:157:\"https://library.elementor.com/lp/online-real-estate-investment-conference-online-service/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:14:\"Online Service\";s:4:\"tags\";s:76:\"[\"Conference\",\"Event\",\"Events\",\"Landing Pages\",\"Online Event\",\"Real estate\"]\";s:10:\"menu_order\";i:64;s:16:\"popularity_index\";i:866;s:11:\"trend_index\";i:779;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:334;a:18:{s:4:\"tmpl\";i:506;s:2:\"id\";i:5472;s:5:\"title\";s:7:\"About 2\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/about_white_7.png\";s:12:\"tmpl_created\";i:1520443520;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/blocks/about-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";i:64;s:16:\"popularity_index\";i:210;s:11:\"trend_index\";i:116;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:335;a:18:{s:4:\"tmpl\";i:1183;s:2:\"id\";i:18391;s:5:\"title\";s:45:\"Children&#8217;s Optometrist &#8211; Business\";s:9:\"thumbnail\";s:94:\"https://library.elementor.com/wp-content/uploads/2021/03/Library-Pic-Childrens-Optometrist.png\";s:12:\"tmpl_created\";i:1614773564;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:132:\"https://library.elementor.com/lp/childrens-optometrist-business/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:85:\"[\"Business\",\"Children\",\"Eye\",\"Glasses\",\"Health\",\"Kids\",\"Landing Pages\",\"Optometrist\"]\";s:10:\"menu_order\";i:65;s:16:\"popularity_index\";i:877;s:11:\"trend_index\";i:0;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:336;a:18:{s:4:\"tmpl\";i:1182;s:2:\"id\";i:18366;s:5:\"title\";s:30:\"Car Insurance &#8211; Business\";s:9:\"thumbnail\";s:86:\"https://library.elementor.com/wp-content/uploads/2021/03/Library-Pic-Car-Insurance.png\";s:12:\"tmpl_created\";i:1614773263;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:124:\"https://library.elementor.com/lp/car-insurance-business/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:46:\"[\"Business\",\"car\",\"Insurance\",\"Landing Pages\"]\";s:10:\"menu_order\";i:66;s:16:\"popularity_index\";i:869;s:11:\"trend_index\";i:797;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:337;a:18:{s:4:\"tmpl\";i:1201;s:2:\"id\";i:19144;s:5:\"title\";s:25:\"Birthday Party Invitation\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2021/06/250x280.png\";s:12:\"tmpl_created\";i:1623848691;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:124:\"https://library.elementor.com/birthday-party-invitation/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:67:\"[\"Birthday\",\"Event\",\"Landing Pages\",\"Party\",\"RSVD\",\"Save the Date\"]\";s:10:\"menu_order\";i:66;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:338;a:18:{s:4:\"tmpl\";i:1124;s:2:\"id\";i:16473;s:5:\"title\";s:26:\"Beauty Salon &#8211; About\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2020/12/about-1.jpg\";s:12:\"tmpl_created\";i:1608622373;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/beauty-salon-about/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:23:\"[\"Beauty Salon\",\"Hair\"]\";s:10:\"menu_order\";i:67;s:16:\"popularity_index\";i:615;s:11:\"trend_index\";i:184;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:339;a:18:{s:4:\"tmpl\";i:1176;s:2:\"id\";i:18291;s:5:\"title\";s:47:\"Grill Restaurant Food Delivery &#8211; Business\";s:9:\"thumbnail\";s:89:\"https://library.elementor.com/wp-content/uploads/2021/03/Library-Pic-Food-Delivery-LP.png\";s:12:\"tmpl_created\";i:1614767830;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:141:\"https://library.elementor.com/lp/grill-restaurant-food-delivery-business/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:79:\"[\"Delivery\",\"Delivery Service\",\"Fast Food\",\"Food\",\"Landing Pages\",\"Restaurant\"]\";s:10:\"menu_order\";i:67;s:16:\"popularity_index\";i:819;s:11:\"trend_index\";i:685;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:340;a:18:{s:4:\"tmpl\";i:504;s:2:\"id\";i:5455;s:5:\"title\";s:8:\"About 20\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/about_white_6.png\";s:12:\"tmpl_created\";i:1520443516;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/blocks/about-20/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";i:67;s:16:\"popularity_index\";i:134;s:11:\"trend_index\";i:70;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:341;a:18:{s:4:\"tmpl\";i:1125;s:2:\"id\";i:16488;s:5:\"title\";s:28:\"Beauty Salon &#8211; Contact\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2020/12/contact.jpg\";s:12:\"tmpl_created\";i:1608622374;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/beauty-salon-contact/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:23:\"[\"Beauty Salon\",\"Hair\"]\";s:10:\"menu_order\";i:68;s:16:\"popularity_index\";i:548;s:11:\"trend_index\";i:101;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:342;a:18:{s:4:\"tmpl\";i:1180;s:2:\"id\";i:18340;s:5:\"title\";s:30:\"Restaurant &#8211; Coming Soon\";s:9:\"thumbnail\";s:98:\"https://library.elementor.com/wp-content/uploads/2021/03/Library-Pic-Restuarant-Coming-Soon-LP.png\";s:12:\"tmpl_created\";i:1614772183;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:124:\"https://library.elementor.com/lp/restaurant-coming-soon/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:16:\"Coming Soon Page\";s:4:\"tags\";s:51:\"[\"Coming Soon\",\"Food\",\"Landing Pages\",\"Restaurant\"]\";s:10:\"menu_order\";i:68;s:16:\"popularity_index\";i:810;s:11:\"trend_index\";i:809;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:343;a:18:{s:4:\"tmpl\";i:499;s:2:\"id\";i:5413;s:5:\"title\";s:8:\"About 21\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/about_white_2.png\";s:12:\"tmpl_created\";i:1520443507;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/blocks/about-21/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";i:68;s:16:\"popularity_index\";i:83;s:11:\"trend_index\";i:52;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:344;a:18:{s:4:\"tmpl\";i:1126;s:2:\"id\";i:16496;s:5:\"title\";s:28:\"Beauty Salon &#8211; Gallery\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2020/12/gallery-1.jpg\";s:12:\"tmpl_created\";i:1608622379;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/beauty-salon-gallery/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:23:\"[\"Beauty Salon\",\"Hair\"]\";s:10:\"menu_order\";i:69;s:16:\"popularity_index\";i:491;s:11:\"trend_index\";i:90;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:345;a:18:{s:4:\"tmpl\";i:1173;s:2:\"id\";i:17480;s:5:\"title\";s:42:\"At-home Massage Therapist &#8211; Business\";s:9:\"thumbnail\";s:86:\"https://library.elementor.com/wp-content/uploads/2021/02/At-Home-Massage-Therapist.jpg\";s:12:\"tmpl_created\";i:1612879264;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:136:\"https://library.elementor.com/lp/at-home-massage-therapist-business/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:60:\"[\"Business\",\"Health\",\"Landing Pages\",\"Services\",\"Therapist\"]\";s:10:\"menu_order\";i:69;s:16:\"popularity_index\";i:856;s:11:\"trend_index\";i:0;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:346;a:18:{s:4:\"tmpl\";i:1127;s:2:\"id\";i:16457;s:5:\"title\";s:25:\"Beauty Salon &#8211; Home\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2020/12/home-1.jpg\";s:12:\"tmpl_created\";i:1608622383;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/beauty-salon-home/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:23:\"[\"Beauty Salon\",\"Hair\"]\";s:10:\"menu_order\";i:70;s:16:\"popularity_index\";i:408;s:11:\"trend_index\";i:56;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:347;a:18:{s:4:\"tmpl\";i:1178;s:2:\"id\";i:18317;s:5:\"title\";s:26:\"Insurance &#8211; Business\";s:9:\"thumbnail\";s:87:\"https://library.elementor.com/wp-content/uploads/2021/03/Library-Pic-Life-Insirance.png\";s:12:\"tmpl_created\";i:1614769488;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/lp/insurance-business/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:61:\"[\"Business\",\"Family\",\"Financial\",\"Insurance\",\"Landing Pages\"]\";s:10:\"menu_order\";i:70;s:16:\"popularity_index\";i:870;s:11:\"trend_index\";i:0;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:348;a:18:{s:4:\"tmpl\";i:1128;s:2:\"id\";i:16518;s:5:\"title\";s:29:\"Beauty Salon &#8211; Services\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2020/12/services-1.jpg\";s:12:\"tmpl_created\";i:1608622386;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/beauty-salon-services/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:23:\"[\"Beauty Salon\",\"Hair\"]\";s:10:\"menu_order\";i:71;s:16:\"popularity_index\";i:664;s:11:\"trend_index\";i:261;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:349;a:18:{s:4:\"tmpl\";i:1168;s:2:\"id\";i:17401;s:5:\"title\";s:40:\"Conference Thank You Page &#8211; Events\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2021/02/250x280.png\";s:12:\"tmpl_created\";i:1612724753;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:134:\"https://library.elementor.com/lp/conference-thank-you-page-events/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:14:\"Thank You Page\";s:4:\"tags\";s:59:\"[\"Conference\",\"Event\",\"Events\",\"Landing Pages\",\"Thank You\"]\";s:10:\"menu_order\";i:71;s:16:\"popularity_index\";i:799;s:11:\"trend_index\";i:540;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:350;a:18:{s:4:\"tmpl\";i:503;s:2:\"id\";i:5447;s:5:\"title\";s:7:\"About 3\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/about_white_5.png\";s:12:\"tmpl_created\";i:1520443514;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/about-3-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";i:71;s:16:\"popularity_index\";i:48;s:11:\"trend_index\";i:12;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:351;a:18:{s:4:\"tmpl\";i:1073;s:2:\"id\";i:15486;s:5:\"title\";s:25:\"Travel Blog &#8211; About\";s:9:\"thumbnail\";s:66:\"https://library.elementor.com/wp-content/uploads/2020/11/About.jpg\";s:12:\"tmpl_created\";i:1606215720;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/travel-blog-about/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:17:\"[\"Blog\",\"Travel\"]\";s:10:\"menu_order\";i:72;s:16:\"popularity_index\";i:608;s:11:\"trend_index\";i:343;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:352;a:18:{s:4:\"tmpl\";i:1166;s:2:\"id\";i:17368;s:5:\"title\";s:38:\"Real Estate Agency &#8211; Real-Estate\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2021/02/Library-Pic-Real-Estate.png\";s:12:\"tmpl_created\";i:1612711814;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:132:\"https://library.elementor.com/lp/real-estate-agency-real-estate/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:11:\"Real Estate\";s:4:\"tags\";s:73:\"[\"Landing Pages\",\"listing\",\"Real estate\",\"Realestate\",\"realtor\",\"realty\"]\";s:10:\"menu_order\";i:72;s:16:\"popularity_index\";i:858;s:11:\"trend_index\";i:777;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:353;a:18:{s:4:\"tmpl\";i:1074;s:2:\"id\";i:15478;s:5:\"title\";s:27:\"Travel Blog &#8211; Contact\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2020/11/Contact-Us.jpg\";s:12:\"tmpl_created\";i:1606215735;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/travel-blog-contact/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:17:\"[\"Blog\",\"Travel\"]\";s:10:\"menu_order\";i:73;s:16:\"popularity_index\";i:687;s:11:\"trend_index\";i:564;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:354;a:18:{s:4:\"tmpl\";i:1170;s:2:\"id\";i:17423;s:5:\"title\";s:57:\"Volunteer Calls Thank You Page &#8211; Social Involvement\";s:9:\"thumbnail\";s:80:\"https://library.elementor.com/wp-content/uploads/2021/02/Volunteer-Calls-TYP.jpg\";s:12:\"tmpl_created\";i:1612726058;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:151:\"https://library.elementor.com/lp/volunteer-calls-thank-you-page-social-involvement/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:14:\"Thank You Page\";s:4:\"tags\";s:62:\"[\"Care\",\"Involvement\",\"Landing Pages\",\"Thank You\",\"Volunteer\"]\";s:10:\"menu_order\";i:73;s:16:\"popularity_index\";i:857;s:11:\"trend_index\";i:818;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:355;a:18:{s:4:\"tmpl\";i:507;s:2:\"id\";i:5480;s:5:\"title\";s:7:\"About 4\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/about_black_7-1.png\";s:12:\"tmpl_created\";i:1520443522;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/about-4-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";i:73;s:16:\"popularity_index\";i:428;s:11:\"trend_index\";i:303;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:356;a:18:{s:4:\"tmpl\";i:1075;s:2:\"id\";i:15467;s:5:\"title\";s:24:\"Travel Blog &#8211; Home\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2020/11/Home.jpg\";s:12:\"tmpl_created\";i:1606215756;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/travel-blog-home/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:17:\"[\"Blog\",\"Travel\"]\";s:10:\"menu_order\";i:74;s:16:\"popularity_index\";i:567;s:11:\"trend_index\";i:224;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:357;a:18:{s:4:\"tmpl\";i:1169;s:2:\"id\";i:17409;s:5:\"title\";s:37:\"Webinar Thank You Page &#8211; Events\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2021/02/Library-Pic-Webinar-TYP.png\";s:12:\"tmpl_created\";i:1612725644;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:131:\"https://library.elementor.com/lp/webinar-thank-you-page-events/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:14:\"Thank You Page\";s:4:\"tags\";s:56:\"[\"Event\",\"Events\",\"Landing Pages\",\"Thank You\",\"Webinar\"]\";s:10:\"menu_order\";i:74;s:16:\"popularity_index\";i:868;s:11:\"trend_index\";i:0;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:358;a:18:{s:4:\"tmpl\";i:1056;s:2:\"id\";i:15317;s:5:\"title\";s:25:\"Dance Studio &#8211; Home\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2020/10/Home.jpg\";s:12:\"tmpl_created\";i:1603181291;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/dance-studio-home/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:16:\"[\"Dance Studio\"]\";s:10:\"menu_order\";i:75;s:16:\"popularity_index\";i:596;s:11:\"trend_index\";i:301;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:359;a:18:{s:4:\"tmpl\";i:545;s:2:\"id\";i:6027;s:5:\"title\";s:7:\"About 5\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/about_white_1-1.png\";s:12:\"tmpl_created\";i:1520443639;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/about-5-3/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";i:75;s:16:\"popularity_index\";i:40;s:11:\"trend_index\";i:40;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:360;a:18:{s:4:\"tmpl\";i:1160;s:2:\"id\";i:17258;s:5:\"title\";s:32:\"Beauty Product &#8211; eCommerce\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2021/01/Beauty-Product.png\";s:12:\"tmpl_created\";i:1610903153;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:126:\"https://library.elementor.com/lp/beauty-product-ecommerce/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:9:\"eCommerce\";s:4:\"tags\";s:38:\"[\"Beauty\",\"Ecommerce\",\"Landing Pages\"]\";s:10:\"menu_order\";i:75;s:16:\"popularity_index\";i:797;s:11:\"trend_index\";i:703;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:361;a:18:{s:4:\"tmpl\";i:1057;s:2:\"id\";i:15334;s:5:\"title\";s:26:\"Dance Studio &#8211; About\";s:9:\"thumbnail\";s:66:\"https://library.elementor.com/wp-content/uploads/2020/10/About.jpg\";s:12:\"tmpl_created\";i:1603181364;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/dance-studio-about/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:16:\"[\"Dance Studio\"]\";s:10:\"menu_order\";i:76;s:16:\"popularity_index\";i:626;s:11:\"trend_index\";i:373;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:362;a:18:{s:4:\"tmpl\";i:546;s:2:\"id\";i:6036;s:5:\"title\";s:7:\"About 6\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/about_black_1-1.png\";s:12:\"tmpl_created\";i:1520443641;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/about-6-3/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";i:76;s:16:\"popularity_index\";i:90;s:11:\"trend_index\";i:123;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:363;a:18:{s:4:\"tmpl\";i:1171;s:2:\"id\";i:17435;s:5:\"title\";s:39:\"Gym &#8211; App Service &#8211; Product\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2021/02/250x280-4.png\";s:12:\"tmpl_created\";i:1612726462;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:125:\"https://library.elementor.com/lp/gym-app-service-product/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:7:\"Product\";s:4:\"tags\";s:58:\"[\"App\",\"Fitness\",\"Gym\",\"Health\",\"Landing Pages\",\"Product\"]\";s:10:\"menu_order\";i:76;s:16:\"popularity_index\";i:767;s:11:\"trend_index\";i:577;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:364;a:18:{s:4:\"tmpl\";i:1058;s:2:\"id\";i:15349;s:5:\"title\";s:28:\"Dance Studio &#8211; Classes\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2020/10/Classes.jpg\";s:12:\"tmpl_created\";i:1603181425;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/dance-studio-classes/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:16:\"[\"Dance Studio\"]\";s:10:\"menu_order\";i:77;s:16:\"popularity_index\";i:629;s:11:\"trend_index\";i:458;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:365;a:18:{s:4:\"tmpl\";i:1156;s:2:\"id\";i:17111;s:5:\"title\";s:33:\"Sunglasses Sale &#8211; eCommerce\";s:9:\"thumbnail\";s:86:\"https://library.elementor.com/wp-content/uploads/2021/01/Sunglasses-LP-Library-Pic.jpg\";s:12:\"tmpl_created\";i:1610632408;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:127:\"https://library.elementor.com/lp/sunglasses-sale-ecommerce/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:9:\"eCommerce\";s:4:\"tags\";s:59:\"[\"Ecommerce\",\"Fashion\",\"Landing Pages\",\"Sale\",\"Sunglasses\"]\";s:10:\"menu_order\";i:77;s:16:\"popularity_index\";i:812;s:11:\"trend_index\";i:732;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:366;a:18:{s:4:\"tmpl\";i:1055;s:2:\"id\";i:15366;s:5:\"title\";s:29:\"Dance Studio &#8211; Schedule\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2020/10/Classes-Schedule.jpg\";s:12:\"tmpl_created\";i:1603181056;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/dance-studio-schedule/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:16:\"[\"Dance Studio\"]\";s:10:\"menu_order\";i:78;s:16:\"popularity_index\";i:698;s:11:\"trend_index\";i:602;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:367;a:18:{s:4:\"tmpl\";i:1157;s:2:\"id\";i:17223;s:5:\"title\";s:25:\"Fashion &#8211; eCommerce\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2021/01/Commerce-Fashion.png\";s:12:\"tmpl_created\";i:1610902553;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/lp/fashion-ecommerce/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:9:\"eCommerce\";s:4:\"tags\";s:29:\"[\"Ecommerce\",\"Landing Pages\"]\";s:10:\"menu_order\";i:78;s:16:\"popularity_index\";i:808;s:11:\"trend_index\";i:745;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:368;a:18:{s:4:\"tmpl\";i:1059;s:2:\"id\";i:15373;s:5:\"title\";s:28:\"Dance Studio &#8211; Pricing\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2020/10/Pricing.jpg\";s:12:\"tmpl_created\";i:1603181678;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/dance-studio-pricing/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:16:\"[\"Dance Studio\"]\";s:10:\"menu_order\";i:79;s:16:\"popularity_index\";i:731;s:11:\"trend_index\";i:661;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:369;a:18:{s:4:\"tmpl\";i:1151;s:2:\"id\";i:17017;s:5:\"title\";s:28:\"Shoes Sale &#8211; eCommerce\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2021/01/Shoes-LP-Library-Pic.jpg\";s:12:\"tmpl_created\";i:1610535361;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/lp/shoes-sale-ecommerce/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:9:\"eCommerce\";s:4:\"tags\";s:55:\"[\"Discount\",\"Ecommerce\",\"Landing Pages\",\"Sale\",\"Shoes\"]\";s:10:\"menu_order\";i:79;s:16:\"popularity_index\";i:803;s:11:\"trend_index\";i:642;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:370;a:18:{s:4:\"tmpl\";i:508;s:2:\"id\";i:5488;s:5:\"title\";s:7:\"About 7\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/about_white_8.png\";s:12:\"tmpl_created\";i:1520443524;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/blocks/about-7/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";i:79;s:16:\"popularity_index\";i:307;s:11:\"trend_index\";i:169;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:371;a:18:{s:4:\"tmpl\";i:1060;s:2:\"id\";i:15384;s:5:\"title\";s:28:\"Dance Studio &#8211; Contact\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2020/10/Contact-Us.jpg\";s:12:\"tmpl_created\";i:1603181738;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/dance-studio-contact/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:16:\"[\"Dance Studio\"]\";s:10:\"menu_order\";i:80;s:16:\"popularity_index\";i:741;s:11:\"trend_index\";i:721;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:372;a:18:{s:4:\"tmpl\";i:556;s:2:\"id\";i:6122;s:5:\"title\";s:7:\"About 8\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/about_white_2-1.png\";s:12:\"tmpl_created\";i:1520443661;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/blocks/about-8/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";i:80;s:16:\"popularity_index\";i:38;s:11:\"trend_index\";i:26;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:373;a:18:{s:4:\"tmpl\";i:1163;s:2:\"id\";i:17301;s:5:\"title\";s:53:\"Personal Chef &#8211; Thank You Page &#8211; Business\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2021/01/TYP-Personal-Chef.jpg\";s:12:\"tmpl_created\";i:1610903622;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:139:\"https://library.elementor.com/lp/personal-chef-thank-you-page-business/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:14:\"Thank You Page\";s:4:\"tags\";s:43:\"[\"Chef\",\"Food\",\"Landing Pages\",\"Thank You\"]\";s:10:\"menu_order\";i:80;s:16:\"popularity_index\";i:823;s:11:\"trend_index\";i:754;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:374;a:18:{s:4:\"tmpl\";i:1042;s:2:\"id\";i:15158;s:5:\"title\";s:26:\"Psychologist &#8211; About\";s:9:\"thumbnail\";s:66:\"https://library.elementor.com/wp-content/uploads/2020/09/About.jpg\";s:12:\"tmpl_created\";i:1600157561;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/psychologist-about/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:34:\"[\"Psychologist\",\"Psychotherapist\"]\";s:10:\"menu_order\";i:81;s:16:\"popularity_index\";i:618;s:11:\"trend_index\";i:426;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:375;a:18:{s:4:\"tmpl\";i:1164;s:2:\"id\";i:17313;s:5:\"title\";s:60:\"Development Course  &#8211; Thank You Page &#8211; Education\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2021/01/Dev-Course-TYP-.png\";s:12:\"tmpl_created\";i:1610903776;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:145:\"https://library.elementor.com/lp/development-course-thank-you-page-education/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:14:\"Thank You Page\";s:4:\"tags\";s:57:\"[\"Course Online\",\"Education\",\"Landing Pages\",\"Thank You\"]\";s:10:\"menu_order\";i:81;s:16:\"popularity_index\";i:834;s:11:\"trend_index\";i:0;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:376;a:18:{s:4:\"tmpl\";i:1045;s:2:\"id\";i:15197;s:5:\"title\";s:28:\"Psychologist &#8211; Contact\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2020/09/Contact-Us.jpg\";s:12:\"tmpl_created\";i:1600160499;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/psychologist-contact/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:34:\"[\"Psychologist\",\"Psychotherapist\"]\";s:10:\"menu_order\";i:82;s:16:\"popularity_index\";i:666;s:11:\"trend_index\";i:558;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:377;a:18:{s:4:\"tmpl\";i:509;s:2:\"id\";i:5496;s:5:\"title\";s:7:\"About 9\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/about_black_8-1.png\";s:12:\"tmpl_created\";i:1520443526;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/blocks/about-9/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";i:82;s:16:\"popularity_index\";i:523;s:11:\"trend_index\";i:453;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:378;a:18:{s:4:\"tmpl\";i:1041;s:2:\"id\";i:15142;s:5:\"title\";s:25:\"Psychologist &#8211; Home\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2020/09/Home.jpg\";s:12:\"tmpl_created\";i:1600156308;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/psychologist-home/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:34:\"[\"Psychologist\",\"Psychotherapist\"]\";s:10:\"menu_order\";i:83;s:16:\"popularity_index\";i:464;s:11:\"trend_index\";i:297;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:379;a:18:{s:4:\"tmpl\";i:1044;s:2:\"id\";i:15188;s:5:\"title\";s:28:\"Psychologist &#8211; Pricing\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2020/09/Pricing.jpg\";s:12:\"tmpl_created\";i:1600159731;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/psychologist-pricing/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:34:\"[\"Psychologist\",\"Psychotherapist\"]\";s:10:\"menu_order\";i:84;s:16:\"popularity_index\";i:732;s:11:\"trend_index\";i:537;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:380;a:18:{s:4:\"tmpl\";i:684;s:2:\"id\";i:8961;s:5:\"title\";s:9:\"archive 1\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/06/Archive_350.1.jpg\";s:12:\"tmpl_created\";i:1528639909;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/archive-1/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:84;s:16:\"popularity_index\";i:79;s:11:\"trend_index\";i:15;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:381;a:18:{s:4:\"tmpl\";i:1043;s:2:\"id\";i:15167;s:5:\"title\";s:29:\"Psychologist &#8211; Services\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2020/09/Services.jpg\";s:12:\"tmpl_created\";i:1600158206;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/psychologist-services/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:34:\"[\"Psychologist\",\"Psychotherapist\"]\";s:10:\"menu_order\";i:85;s:16:\"popularity_index\";i:606;s:11:\"trend_index\";i:379;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:382;a:18:{s:4:\"tmpl\";i:1036;s:2:\"id\";i:14932;s:5:\"title\";s:30:\"Flooring Company &#8211; About\";s:9:\"thumbnail\";s:66:\"https://library.elementor.com/wp-content/uploads/2020/08/About.png\";s:12:\"tmpl_created\";i:1597740110;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:121:\"https://library.elementor.com/flooring-company-about/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:39:\"[\"Flooring company\",\"Flooring website\"]\";s:10:\"menu_order\";i:86;s:16:\"popularity_index\";i:488;s:11:\"trend_index\";i:319;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:383;a:18:{s:4:\"tmpl\";i:685;s:2:\"id\";i:8969;s:5:\"title\";s:9:\"archive 2\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/06/Archive_350.2.jpg\";s:12:\"tmpl_created\";i:1528700014;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/archive-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:86;s:16:\"popularity_index\";i:250;s:11:\"trend_index\";i:124;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:384;a:18:{s:4:\"tmpl\";i:1037;s:2:\"id\";i:14998;s:5:\"title\";s:32:\"Flooring Company &#8211; Contact\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2020/08/Contact-Us.png\";s:12:\"tmpl_created\";i:1597740222;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/flooring-company-contact/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:39:\"[\"Flooring company\",\"Flooring website\"]\";s:10:\"menu_order\";i:87;s:16:\"popularity_index\";i:553;s:11:\"trend_index\";i:380;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:385;a:18:{s:4:\"tmpl\";i:1038;s:2:\"id\";i:14965;s:5:\"title\";s:32:\"Flooring Company &#8211; Gallery\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2020/08/Gallery.png\";s:12:\"tmpl_created\";i:1597740353;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/flooring-company-gallery/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:39:\"[\"Flooring company\",\"Flooring website\"]\";s:10:\"menu_order\";i:88;s:16:\"popularity_index\";i:371;s:11:\"trend_index\";i:291;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:386;a:18:{s:4:\"tmpl\";i:686;s:2:\"id\";i:8973;s:5:\"title\";s:9:\"archive 3\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/06/Archive_350.3.jpg\";s:12:\"tmpl_created\";i:1528700205;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/archive-3/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:88;s:16:\"popularity_index\";i:176;s:11:\"trend_index\";i:54;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:387;a:18:{s:4:\"tmpl\";i:1282;s:2:\"id\";i:22417;s:5:\"title\";s:52:\"Finance Learning Platform &#8211; Under Construction\";s:9:\"thumbnail\";s:89:\"https://library.elementor.com/wp-content/uploads/2021/04/Library-Pic-Finance-Platform.png\";s:12:\"tmpl_created\";i:1647354987;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:143:\"https://library.elementor.com/finance-learning-platform-under-construction/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:27:\"[\"Finance\",\"Landing Pages\"]\";s:10:\"menu_order\";i:89;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:388;a:18:{s:4:\"tmpl\";i:1040;s:2:\"id\";i:14947;s:5:\"title\";s:33:\"Flooring company &#8211; Services\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2020/08/Services.png\";s:12:\"tmpl_created\";i:1597740551;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:124:\"https://library.elementor.com/flooring-company-services/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:39:\"[\"Flooring company\",\"Flooring website\"]\";s:10:\"menu_order\";i:90;s:16:\"popularity_index\";i:538;s:11:\"trend_index\";i:392;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:389;a:18:{s:4:\"tmpl\";i:1039;s:2:\"id\";i:14901;s:5:\"title\";s:29:\"Flooring Company &#8211; Home\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2020/08/Home.png\";s:12:\"tmpl_created\";i:1597740474;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/flooring-company-home/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:39:\"[\"Flooring company\",\"Flooring website\"]\";s:10:\"menu_order\";i:91;s:16:\"popularity_index\";i:387;s:11:\"trend_index\";i:185;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:390;a:18:{s:4:\"tmpl\";i:687;s:2:\"id\";i:8977;s:5:\"title\";s:9:\"archive 4\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/06/Archive_350.4.jpg\";s:12:\"tmpl_created\";i:1528700326;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/archive-4/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:91;s:16:\"popularity_index\";i:354;s:11:\"trend_index\";i:396;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:391;a:18:{s:4:\"tmpl\";i:1252;s:2:\"id\";i:22146;s:5:\"title\";s:36:\"Home Decor Store &#8211; Coming Soon\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2021/04/Library-Pic-Home-Decore.png\";s:12:\"tmpl_created\";i:1647177514;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:127:\"https://library.elementor.com/home-decor-store-coming-soon/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:57:\"[\"Coming Soon\",\"Decor\",\"Interior Design\",\"Landing Pages\"]\";s:10:\"menu_order\";i:92;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:392;a:18:{s:4:\"tmpl\";i:688;s:2:\"id\";i:8981;s:5:\"title\";s:9:\"archive 5\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/06/Archive_350.5.jpg\";s:12:\"tmpl_created\";i:1528700484;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/archive-5/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:93;s:16:\"popularity_index\";i:333;s:11:\"trend_index\";i:195;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:393;a:18:{s:4:\"tmpl\";i:1021;s:2:\"id\";i:14737;s:5:\"title\";s:32:\"Luxury Real Estate &#8211; About\";s:9:\"thumbnail\";s:66:\"https://library.elementor.com/wp-content/uploads/2020/07/About.png\";s:12:\"tmpl_created\";i:1595313527;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:128:\"https://library.elementor.com/luxury-real-estate-about-page/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:28:\"[\"Real estate\",\"Realestate\"]\";s:10:\"menu_order\";i:93;s:16:\"popularity_index\";i:150;s:11:\"trend_index\";i:447;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:394;a:18:{s:4:\"tmpl\";i:689;s:2:\"id\";i:8985;s:5:\"title\";s:9:\"archive 6\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/06/Archive_350.6.jpg\";s:12:\"tmpl_created\";i:1528700612;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/archive-6/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:94;s:16:\"popularity_index\";i:204;s:11:\"trend_index\";i:95;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:395;a:18:{s:4:\"tmpl\";i:1020;s:2:\"id\";i:14756;s:5:\"title\";s:34:\"Luxury Real Estate &#8211; Contact\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2020/07/Contact-Us.png\";s:12:\"tmpl_created\";i:1595313519;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:133:\"https://library.elementor.com/luxury-real-estate-contact-us-page/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:28:\"[\"Real estate\",\"Realestate\"]\";s:10:\"menu_order\";i:94;s:16:\"popularity_index\";i:610;s:11:\"trend_index\";i:569;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:396;a:18:{s:4:\"tmpl\";i:1019;s:2:\"id\";i:14716;s:5:\"title\";s:31:\"Luxury Real Estate &#8211; Home\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2020/07/Home.png\";s:12:\"tmpl_created\";i:1595313512;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:127:\"https://library.elementor.com/luxury-real-estate-home-page/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:28:\"[\"Real estate\",\"Realestate\"]\";s:10:\"menu_order\";i:95;s:16:\"popularity_index\";i:394;s:11:\"trend_index\";i:165;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:397;a:18:{s:4:\"tmpl\";i:690;s:2:\"id\";i:8989;s:5:\"title\";s:9:\"archive 7\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/06/Archive_350.7.jpg\";s:12:\"tmpl_created\";i:1528701063;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/archive-7/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:96;s:16:\"popularity_index\";i:208;s:11:\"trend_index\";i:111;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:398;a:18:{s:4:\"tmpl\";i:1018;s:2:\"id\";i:14763;s:5:\"title\";s:31:\"Luxury Real Estate &#8211; News\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2020/07/news-Archive.png\";s:12:\"tmpl_created\";i:1595313273;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:127:\"https://library.elementor.com/luxury-real-estate-news-page/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:28:\"[\"Real estate\",\"Realestate\"]\";s:10:\"menu_order\";i:96;s:16:\"popularity_index\";i:404;s:11:\"trend_index\";i:167;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:399;a:18:{s:4:\"tmpl\";i:1283;s:2:\"id\";i:22423;s:5:\"title\";s:39:\"Online Store &#8211; Under Construction\";s:9:\"thumbnail\";s:85:\"https://library.elementor.com/wp-content/uploads/2021/04/Library-Pic-Online-Store.png\";s:12:\"tmpl_created\";i:1647355154;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:130:\"https://library.elementor.com/online-store-under-construction/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:59:\"[\"Landing Pages\",\"Online Shop\",\"Shop\",\"Under Construction\"]\";s:10:\"menu_order\";i:97;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:400;a:18:{s:4:\"tmpl\";i:691;s:2:\"id\";i:8996;s:5:\"title\";s:9:\"archive 8\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/06/Archive_350.8.jpg\";s:12:\"tmpl_created\";i:1528701290;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/archive-8/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:98;s:16:\"popularity_index\";i:227;s:11:\"trend_index\";i:153;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:401;a:18:{s:4:\"tmpl\";i:1010;s:2:\"id\";i:13960;s:5:\"title\";s:32:\"Japanese restaurant &#8211; Home\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2020/06/Home-Page.jpg\";s:12:\"tmpl_created\";i:1592289775;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:128:\"https://library.elementor.com/japanese-restaurant-home-page/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:32:\"[\"Food\",\"Japanese\",\"Restaurant\"]\";s:10:\"menu_order\";i:98;s:16:\"popularity_index\";i:537;s:11:\"trend_index\";i:287;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:402;a:18:{s:4:\"tmpl\";i:1284;s:2:\"id\";i:22428;s:5:\"title\";s:40:\"Travel Agency &#8211; Under Construction\";s:9:\"thumbnail\";s:88:\"https://library.elementor.com/wp-content/uploads/2021/04/Library-Pic-Travel-Agency-1.png\";s:12:\"tmpl_created\";i:1647355339;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:131:\"https://library.elementor.com/travel-agency-under-construction/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:56:\"[\"Agency\",\"Landing Pages\",\"Travel\",\"Under Construction\"]\";s:10:\"menu_order\";i:99;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:403;a:18:{s:4:\"tmpl\";i:692;s:2:\"id\";i:9001;s:5:\"title\";s:9:\"archive 9\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/06/Archive_350.9.jpg\";s:12:\"tmpl_created\";i:1528701433;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/archive-9/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:100;s:16:\"popularity_index\";i:265;s:11:\"trend_index\";i:208;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:404;a:18:{s:4:\"tmpl\";i:1007;s:2:\"id\";i:13993;s:5:\"title\";s:45:\"Japanese restaurant &#8211; Chef&#8217;s Menu\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2020/06/Chef_s-Menu-Page.jpg\";s:12:\"tmpl_created\";i:1592289691;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:129:\"https://library.elementor.com/japanese-restaurant-chefs-menu/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:32:\"[\"Food\",\"Japanese\",\"Restaurant\"]\";s:10:\"menu_order\";i:100;s:16:\"popularity_index\";i:651;s:11:\"trend_index\";i:675;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:405;a:18:{s:4:\"tmpl\";i:1006;s:2:\"id\";i:14012;s:5:\"title\";s:36:\"Japanese restaurant &#8211; Bar Menu\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2020/06/Bar-Menu-Page.jpg\";s:12:\"tmpl_created\";i:1592289665;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:127:\"https://library.elementor.com/japanese-restaurant-bar-menu/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:32:\"[\"Food\",\"Japanese\",\"Restaurant\"]\";s:10:\"menu_order\";i:101;s:16:\"popularity_index\";i:735;s:11:\"trend_index\";i:829;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:406;a:18:{s:4:\"tmpl\";i:1005;s:2:\"id\";i:13917;s:5:\"title\";s:33:\"Japanese restaurant &#8211; About\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2020/06/About-Page.jpg\";s:12:\"tmpl_created\";i:1592289629;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:124:\"https://library.elementor.com/japanese-restaurant-about/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:32:\"[\"Food\",\"Japanese\",\"Restaurant\"]\";s:10:\"menu_order\";i:102;s:16:\"popularity_index\";i:640;s:11:\"trend_index\";i:389;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:407;a:18:{s:4:\"tmpl\";i:997;s:2:\"id\";i:13528;s:5:\"title\";s:22:\"Barbershop &#8211; 404\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2020/05/404-Page.jpg\";s:12:\"tmpl_created\";i:1589893152;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/blocks/barbershop-404/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:34:\"[\"404\",\"Barber Shop\",\"Barbershop\"]\";s:10:\"menu_order\";i:103;s:16:\"popularity_index\";i:768;s:11:\"trend_index\";i:681;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:408;a:18:{s:4:\"tmpl\";i:1009;s:2:\"id\";i:13937;s:5:\"title\";s:35:\"Japanese restaurant &#8211; Gallery\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2020/06/Gallery-Page.jpg\";s:12:\"tmpl_created\";i:1592289748;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:126:\"https://library.elementor.com/japanese-restaurant-gallery/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:32:\"[\"Food\",\"Japanese\",\"Restaurant\"]\";s:10:\"menu_order\";i:103;s:16:\"popularity_index\";i:648;s:11:\"trend_index\";i:551;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:409;a:18:{s:4:\"tmpl\";i:1008;s:2:\"id\";i:14030;s:5:\"title\";s:34:\"Japanese restaurant &#8211; Events\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2020/06/Events-Page.jpg\";s:12:\"tmpl_created\";i:1592289713;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:125:\"https://library.elementor.com/japanese-restaurant-events/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:32:\"[\"Food\",\"Japanese\",\"Restaurant\"]\";s:10:\"menu_order\";i:104;s:16:\"popularity_index\";i:723;s:11:\"trend_index\";i:711;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:410;a:18:{s:4:\"tmpl\";i:998;s:2:\"id\";i:13518;s:5:\"title\";s:26:\"Barbershop &#8211; Archive\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2020/05/Blog-Page.jpg\";s:12:\"tmpl_created\";i:1589893157;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:124:\"https://library.elementor.com/blocks/barbershop-archive/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:28:\"[\"Barber Shop\",\"Barbershop\"]\";s:10:\"menu_order\";i:105;s:16:\"popularity_index\";i:737;s:11:\"trend_index\";i:523;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:411;a:18:{s:4:\"tmpl\";i:1016;s:2:\"id\";i:13984;s:5:\"title\";s:40:\"Japanese restaurant &#8211; Reservations\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2020/06/reservations.jpg\";s:12:\"tmpl_created\";i:1592294757;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:131:\"https://library.elementor.com/japanese-restaurant-reservations/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:32:\"[\"Food\",\"Japanese\",\"Restaurant\"]\";s:10:\"menu_order\";i:105;s:16:\"popularity_index\";i:715;s:11:\"trend_index\";i:727;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:412;a:18:{s:4:\"tmpl\";i:999;s:2:\"id\";i:13479;s:5:\"title\";s:23:\"Barbershop &#8211; Home\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2020/05/Home-Page.jpg\";s:12:\"tmpl_created\";i:1589893275;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/barbershop-home/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:28:\"[\"Barber Shop\",\"Barbershop\"]\";s:10:\"menu_order\";i:106;s:16:\"popularity_index\";i:683;s:11:\"trend_index\";i:832;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:413;a:18:{s:4:\"tmpl\";i:996;s:2:\"id\";i:13604;s:5:\"title\";s:25:\"Barbershop &#8211; Footer\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2020/05/Footer-Small.jpg\";s:12:\"tmpl_created\";i:1589893147;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/blocks/barbershop-footer/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:37:\"[\"Barber Shop\",\"Barbershop\",\"Footer\"]\";s:10:\"menu_order\";i:107;s:16:\"popularity_index\";i:555;s:11:\"trend_index\";i:267;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:414;a:18:{s:4:\"tmpl\";i:1000;s:2:\"id\";i:13503;s:5:\"title\";s:24:\"Barbershop &#8211; About\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2020/05/About-Page.jpg\";s:12:\"tmpl_created\";i:1589893289;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/barbershop-about/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:28:\"[\"Barber Shop\",\"Barbershop\"]\";s:10:\"menu_order\";i:107;s:16:\"popularity_index\";i:744;s:11:\"trend_index\";i:739;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:415;a:18:{s:4:\"tmpl\";i:995;s:2:\"id\";i:13612;s:5:\"title\";s:25:\"Barbershop &#8211; Header\";s:9:\"thumbnail\";s:79:\"https://library.elementor.com/wp-content/uploads/2020/06/barber-shop-header.jpg\";s:12:\"tmpl_created\";i:1589893142;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/blocks/barbershop-header/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:37:\"[\"Barber Shop\",\"Barbershop\",\"Header\"]\";s:10:\"menu_order\";i:108;s:16:\"popularity_index\";i:343;s:11:\"trend_index\";i:137;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:416;a:18:{s:4:\"tmpl\";i:1001;s:2:\"id\";i:13548;s:5:\"title\";s:27:\"Barbershop &#8211; Services\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2020/05/Services-Page.jpg\";s:12:\"tmpl_created\";i:1589893298;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/barbershop-services/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:28:\"[\"Barber Shop\",\"Barbershop\"]\";s:10:\"menu_order\";i:108;s:16:\"popularity_index\";i:761;s:11:\"trend_index\";i:0;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:417;a:18:{s:4:\"tmpl\";i:1002;s:2:\"id\";i:13560;s:5:\"title\";s:26:\"Barbershop &#8211; Gallery\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2020/05/Gallery-Page.jpg\";s:12:\"tmpl_created\";i:1589893307;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/barbershop-gallery/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:28:\"[\"Barber Shop\",\"Barbershop\"]\";s:10:\"menu_order\";i:109;s:16:\"popularity_index\";i:756;s:11:\"trend_index\";i:822;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:418;a:18:{s:4:\"tmpl\";i:1003;s:2:\"id\";i:13587;s:5:\"title\";s:26:\"Barbershop &#8211; Contact\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2020/05/Contact-Us-Page.jpg\";s:12:\"tmpl_created\";i:1589893315;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/barbershop-contact/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:28:\"[\"Barber Shop\",\"Barbershop\"]\";s:10:\"menu_order\";i:110;s:16:\"popularity_index\";i:753;s:11:\"trend_index\";i:0;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:419;a:18:{s:4:\"tmpl\";i:982;s:2:\"id\";i:13307;s:5:\"title\";s:26:\"Online Course &#8211; Home\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2020/04/Home.jpg\";s:12:\"tmpl_created\";i:1587474541;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/online-course-home/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:29:\"[\"Course Online\",\"Education\"]\";s:10:\"menu_order\";i:111;s:16:\"popularity_index\";i:230;s:11:\"trend_index\";i:125;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:420;a:18:{s:4:\"tmpl\";i:994;s:2:\"id\";i:13621;s:5:\"title\";s:30:\"Barbershop &#8211; Single Post\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2020/05/Single-Page.jpg\";s:12:\"tmpl_created\";i:1589893137;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:128:\"https://library.elementor.com/blocks/barbershop-single-post/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:28:\"[\"Barber Shop\",\"Barbershop\"]\";s:10:\"menu_order\";i:111;s:16:\"popularity_index\";i:736;s:11:\"trend_index\";i:580;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:421;a:18:{s:4:\"tmpl\";i:1131;s:2:\"id\";i:16527;s:5:\"title\";s:24:\"Beauty Salon &#8211; 404\";s:9:\"thumbnail\";s:64:\"https://library.elementor.com/wp-content/uploads/2020/12/404.jpg\";s:12:\"tmpl_created\";i:1608622517;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/blocks/beauty-salon-404/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:29:\"[\"404\",\"Beauty Salon\",\"Hair\"]\";s:10:\"menu_order\";i:112;s:16:\"popularity_index\";i:742;s:11:\"trend_index\";i:563;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:422;a:18:{s:4:\"tmpl\";i:983;s:2:\"id\";i:13328;s:5:\"title\";s:27:\"Online Course &#8211; About\";s:9:\"thumbnail\";s:66:\"https://library.elementor.com/wp-content/uploads/2020/04/About.jpg\";s:12:\"tmpl_created\";i:1587474558;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/online-course-about/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:29:\"[\"Course Online\",\"Education\"]\";s:10:\"menu_order\";i:112;s:16:\"popularity_index\";i:508;s:11:\"trend_index\";i:429;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:423;a:18:{s:4:\"tmpl\";i:984;s:2:\"id\";i:13338;s:5:\"title\";s:33:\"Online Course &#8211; Course Page\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2020/04/Course-Page.png\";s:12:\"tmpl_created\";i:1587474574;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:124:\"https://library.elementor.com/online-course-course-page/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:29:\"[\"Course Online\",\"Education\"]\";s:10:\"menu_order\";i:113;s:16:\"popularity_index\";i:337;s:11:\"trend_index\";i:310;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:424;a:18:{s:4:\"tmpl\";i:985;s:2:\"id\";i:13352;s:5:\"title\";s:29:\"Online Course &#8211; Contact\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2020/04/Contact-Us.jpg\";s:12:\"tmpl_created\";i:1587474591;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/online-course-contact/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:29:\"[\"Course Online\",\"Education\"]\";s:10:\"menu_order\";i:114;s:16:\"popularity_index\";i:565;s:11:\"trend_index\";i:533;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:425;a:18:{s:4:\"tmpl\";i:1130;s:2:\"id\";i:16535;s:5:\"title\";s:27:\"Beauty Salon &#8211; Footer\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2020/12/Footer.jpg\";s:12:\"tmpl_created\";i:1608622498;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:125:\"https://library.elementor.com/blocks/beauty-salon-footer/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:32:\"[\"Beauty Salon\",\"Footer\",\"Hair\"]\";s:10:\"menu_order\";i:115;s:16:\"popularity_index\";i:524;s:11:\"trend_index\";i:126;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:426;a:18:{s:4:\"tmpl\";i:971;s:2:\"id\";i:13187;s:5:\"title\";s:33:\"Interior Design &#8211; Home Page\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2020/04/Home.png\";s:12:\"tmpl_created\";i:1586148661;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:124:\"https://library.elementor.com/interior-design-home-page/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:30:\"[\"Business\",\"Interior Design\"]\";s:10:\"menu_order\";i:115;s:16:\"popularity_index\";i:331;s:11:\"trend_index\";i:264;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:427;a:18:{s:4:\"tmpl\";i:1453;s:2:\"id\";i:16346;s:5:\"title\";s:33:\"Your New Home &#8211; Real Estate\";s:9:\"thumbnail\";s:66:\"https://library.elementor.com/wp-content/uploads/2017/03/lp3-l.png\";s:12:\"tmpl_created\";i:1660205402;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:127:\"https://library.elementor.com/lp/your-new-home-real-estate/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:11:\"Real Estate\";s:4:\"tags\";s:31:\"[\"Landing Pages\",\"Real estate\"]\";s:10:\"menu_order\";i:116;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:428;a:18:{s:4:\"tmpl\";i:972;s:2:\"id\";i:13199;s:5:\"title\";s:29:\"Interior Design &#8211; About\";s:9:\"thumbnail\";s:66:\"https://library.elementor.com/wp-content/uploads/2020/04/About.png\";s:12:\"tmpl_created\";i:1586148666;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/interior-design-about/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:30:\"[\"Business\",\"Interior Design\"]\";s:10:\"menu_order\";i:116;s:16:\"popularity_index\";i:316;s:11:\"trend_index\";i:334;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:429;a:18:{s:4:\"tmpl\";i:1129;s:2:\"id\";i:16545;s:5:\"title\";s:27:\"Beauty Salon &#8211; Header\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2020/12/Header.jpg\";s:12:\"tmpl_created\";i:1608622495;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:125:\"https://library.elementor.com/blocks/beauty-salon-header/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:32:\"[\"Beauty Salon\",\"Hair\",\"Header\"]\";s:10:\"menu_order\";i:117;s:16:\"popularity_index\";i:356;s:11:\"trend_index\";i:49;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:430;a:18:{s:4:\"tmpl\";i:973;s:2:\"id\";i:13214;s:5:\"title\";s:32:\"Interior Design &#8211; Projects\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2020/04/portfolio_s.jpg\";s:12:\"tmpl_created\";i:1586148672;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/interior-design-projects/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:30:\"[\"Business\",\"Interior Design\"]\";s:10:\"menu_order\";i:117;s:16:\"popularity_index\";i:367;s:11:\"trend_index\";i:323;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:431;a:18:{s:4:\"tmpl\";i:641;s:2:\"id\";i:7686;s:5:\"title\";s:12:\"Blog Posts 1\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2018/03/blog_posts.png\";s:12:\"tmpl_created\";i:1521558047;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/blocks/blog-posts-1/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:26:\"[\"Archive\",\"Blog\",\"posts\"]\";s:10:\"menu_order\";i:118;s:16:\"popularity_index\";i:131;s:11:\"trend_index\";i:152;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:432;a:18:{s:4:\"tmpl\";i:974;s:2:\"id\";i:13229;s:5:\"title\";s:31:\"Interior Design &#8211; Contact\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2020/04/Contact-Us.png\";s:12:\"tmpl_created\";i:1586148677;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/interior-design-contact/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:30:\"[\"Business\",\"Interior Design\"]\";s:10:\"menu_order\";i:118;s:16:\"popularity_index\";i:395;s:11:\"trend_index\";i:337;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:433;a:18:{s:4:\"tmpl\";i:959;s:2:\"id\";i:12948;s:5:\"title\";s:29:\"Photography &#8211; Home Page\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2020/02/Home_s.png\";s:12:\"tmpl_created\";i:1582093442;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/photography-home-page/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:27:\"[\"Photography\",\"Portfolio\"]\";s:10:\"menu_order\";i:119;s:16:\"popularity_index\";i:241;s:11:\"trend_index\";i:201;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:434;a:18:{s:4:\"tmpl\";i:960;s:2:\"id\";i:12798;s:5:\"title\";s:25:\"Photography &#8211; About\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2020/02/About_s.png\";s:12:\"tmpl_created\";i:1582093446;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/photography-about/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:27:\"[\"Photography\",\"Portfolio\"]\";s:10:\"menu_order\";i:120;s:16:\"popularity_index\";i:499;s:11:\"trend_index\";i:374;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:435;a:18:{s:4:\"tmpl\";i:484;s:2:\"id\";i:5283;s:5:\"title\";s:9:\"Clients 1\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/clients_white_2.png\";s:12:\"tmpl_created\";i:1520443478;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/clients-1-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"clients\";s:4:\"tags\";s:11:\"[\"Clients\"]\";s:10:\"menu_order\";i:120;s:16:\"popularity_index\";i:294;s:11:\"trend_index\";i:202;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:436;a:18:{s:4:\"tmpl\";i:961;s:2:\"id\";i:12868;s:5:\"title\";s:27:\"Photography &#8211; Contact\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2020/02/Contact_s.png\";s:12:\"tmpl_created\";i:1582093450;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/photography-contact/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:27:\"[\"Photography\",\"Portfolio\"]\";s:10:\"menu_order\";i:121;s:16:\"popularity_index\";i:531;s:11:\"trend_index\";i:350;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:437;a:18:{s:4:\"tmpl\";i:962;s:2:\"id\";i:13056;s:5:\"title\";s:28:\"Photography &#8211; Wildlife\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2020/02/Wildlife_s.png\";s:12:\"tmpl_created\";i:1582093454;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/photography-wildlife/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:27:\"[\"Photography\",\"Portfolio\"]\";s:10:\"menu_order\";i:122;s:16:\"popularity_index\";i:579;s:11:\"trend_index\";i:656;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:438;a:18:{s:4:\"tmpl\";i:487;s:2:\"id\";i:5306;s:5:\"title\";s:10:\"Clients 10\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/clients_black_3.png\";s:12:\"tmpl_created\";i:1520443484;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/clients-10/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"clients\";s:4:\"tags\";s:11:\"[\"Clients\"]\";s:10:\"menu_order\";i:122;s:16:\"popularity_index\";i:657;s:11:\"trend_index\";i:581;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:439;a:18:{s:4:\"tmpl\";i:963;s:2:\"id\";i:12922;s:5:\"title\";s:37:\"Photography &#8211; Glowing Jellyfish\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2020/02/Jellyfish_S.png\";s:12:\"tmpl_created\";i:1582093457;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:128:\"https://library.elementor.com/photography-glowing-jellyfish/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:27:\"[\"Photography\",\"Portfolio\"]\";s:10:\"menu_order\";i:123;s:16:\"popularity_index\";i:628;s:11:\"trend_index\";i:532;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:440;a:18:{s:4:\"tmpl\";i:964;s:2:\"id\";i:12875;s:5:\"title\";s:36:\"Photography &#8211; Fluttering Birds\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2020/02/Birds_s.png\";s:12:\"tmpl_created\";i:1582093461;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:127:\"https://library.elementor.com/photography-fluttering-birds/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:27:\"[\"Photography\",\"Portfolio\"]\";s:10:\"menu_order\";i:124;s:16:\"popularity_index\";i:693;s:11:\"trend_index\";i:766;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:441;a:18:{s:4:\"tmpl\";i:965;s:2:\"id\";i:12962;s:5:\"title\";s:26:\"Photography &#8211; Nature\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2020/02/Nature_s.png\";s:12:\"tmpl_created\";i:1582093465;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/photography-nature/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:27:\"[\"Photography\",\"Portfolio\"]\";s:10:\"menu_order\";i:125;s:16:\"popularity_index\";i:592;s:11:\"trend_index\";i:778;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:442;a:18:{s:4:\"tmpl\";i:491;s:2:\"id\";i:5341;s:5:\"title\";s:10:\"Clients 11\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/clients_black_4.png\";s:12:\"tmpl_created\";i:1520443491;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/clients-11/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"clients\";s:4:\"tags\";s:11:\"[\"Clients\"]\";s:10:\"menu_order\";i:125;s:16:\"popularity_index\";i:603;s:11:\"trend_index\";i:633;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:443;a:18:{s:4:\"tmpl\";i:966;s:2:\"id\";i:12833;s:5:\"title\";s:38:\"Photography &#8211; Blossoming Flowers\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2020/02/Flowers_s.png\";s:12:\"tmpl_created\";i:1582093469;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:129:\"https://library.elementor.com/photography-blossoming-flowers/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:27:\"[\"Photography\",\"Portfolio\"]\";s:10:\"menu_order\";i:126;s:16:\"popularity_index\";i:597;s:11:\"trend_index\";i:750;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:444;a:18:{s:4:\"tmpl\";i:488;s:2:\"id\";i:5315;s:5:\"title\";s:10:\"Clients 12\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2018/03/form_white_4-1.png\";s:12:\"tmpl_created\";i:1520443486;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/clients-12/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"clients\";s:4:\"tags\";s:11:\"[\"Clients\"]\";s:10:\"menu_order\";i:126;s:16:\"popularity_index\";i:485;s:11:\"trend_index\";i:263;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:445;a:18:{s:4:\"tmpl\";i:967;s:2:\"id\";i:12898;s:5:\"title\";s:36:\"Photography &#8211; Forest Mushrooms\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2020/02/Mushrooms_s.png\";s:12:\"tmpl_created\";i:1582093473;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:127:\"https://library.elementor.com/photography-forest-mushrooms/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:27:\"[\"Photography\",\"Portfolio\"]\";s:10:\"menu_order\";i:127;s:16:\"popularity_index\";i:667;s:11:\"trend_index\";i:649;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:446;a:18:{s:4:\"tmpl\";i:968;s:2:\"id\";i:12994;s:5:\"title\";s:24:\"Photography &#8211; Pets\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2020/02/Pets_s.png\";s:12:\"tmpl_created\";i:1582093477;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/photography-pets/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:27:\"[\"Photography\",\"Portfolio\"]\";s:10:\"menu_order\";i:128;s:16:\"popularity_index\";i:612;s:11:\"trend_index\";i:508;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:447;a:18:{s:4:\"tmpl\";i:969;s:2:\"id\";i:12805;s:5:\"title\";s:37:\"Photography &#8211; B&amp;W Portraits\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2020/02/Black_s.png\";s:12:\"tmpl_created\";i:1582093481;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/photography-bw-portraits/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:27:\"[\"Photography\",\"Portfolio\"]\";s:10:\"menu_order\";i:129;s:16:\"popularity_index\";i:695;s:11:\"trend_index\";i:735;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:448;a:18:{s:4:\"tmpl\";i:490;s:2:\"id\";i:5333;s:5:\"title\";s:10:\"Clients 13\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/form_white_6.png\";s:12:\"tmpl_created\";i:1520443489;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/clients-13/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"clients\";s:4:\"tags\";s:11:\"[\"Clients\"]\";s:10:\"menu_order\";i:129;s:16:\"popularity_index\";i:234;s:11:\"trend_index\";i:128;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:449;a:18:{s:4:\"tmpl\";i:970;s:2:\"id\";i:13031;s:5:\"title\";s:33:\"Photography &#8211; Vivid Parrots\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2020/02/Parrots_s.png\";s:12:\"tmpl_created\";i:1582093484;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:124:\"https://library.elementor.com/photography-vivid-parrots/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:27:\"[\"Photography\",\"Portfolio\"]\";s:10:\"menu_order\";i:130;s:16:\"popularity_index\";i:660;s:11:\"trend_index\";i:643;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:450;a:18:{s:4:\"tmpl\";i:496;s:2:\"id\";i:5389;s:5:\"title\";s:10:\"Clients 14\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/form_black_9.png\";s:12:\"tmpl_created\";i:1520443501;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/clients-14/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"clients\";s:4:\"tags\";s:11:\"[\"Clients\"]\";s:10:\"menu_order\";i:130;s:16:\"popularity_index\";i:407;s:11:\"trend_index\";i:307;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:451;a:18:{s:4:\"tmpl\";i:940;s:2:\"id\";i:12621;s:5:\"title\";s:26:\"Magazine &#8211; Home Page\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2020/01/Home_s.png\";s:12:\"tmpl_created\";i:1579060604;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/magazine-home-page/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:19:\"[\"Blog\",\"Magazine\"]\";s:10:\"menu_order\";i:131;s:16:\"popularity_index\";i:167;s:11:\"trend_index\";i:121;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:452;a:18:{s:4:\"tmpl\";i:936;s:2:\"id\";i:12352;s:5:\"title\";s:24:\"Travel &#8211; Home Page\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2019/12/Home_s.png\";s:12:\"tmpl_created\";i:1575960464;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/travel-home-page/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:18:\"[\"Tours\",\"Travel\"]\";s:10:\"menu_order\";i:132;s:16:\"popularity_index\";i:291;s:11:\"trend_index\";i:194;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:453;a:18:{s:4:\"tmpl\";i:486;s:2:\"id\";i:5298;s:5:\"title\";s:10:\"Clients 15\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/clients_white_3.png\";s:12:\"tmpl_created\";i:1520443482;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/clients-15/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"clients\";s:4:\"tags\";s:11:\"[\"Clients\"]\";s:10:\"menu_order\";i:132;s:16:\"popularity_index\";i:465;s:11:\"trend_index\";i:520;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:454;a:18:{s:4:\"tmpl\";i:932;s:2:\"id\";i:12400;s:5:\"title\";s:20:\"Travel &#8211; About\";s:9:\"thumbnail\";s:66:\"https://library.elementor.com/wp-content/uploads/2019/12/About.png\";s:12:\"tmpl_created\";i:1575960441;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/travel-about/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:18:\"[\"Tours\",\"Travel\"]\";s:10:\"menu_order\";i:133;s:16:\"popularity_index\";i:444;s:11:\"trend_index\";i:445;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:455;a:18:{s:4:\"tmpl\";i:938;s:2:\"id\";i:12479;s:5:\"title\";s:20:\"Travel &#8211; Tours\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2019/12/Tours_s.png\";s:12:\"tmpl_created\";i:1575960474;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/travel-tours/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:18:\"[\"Tours\",\"Travel\"]\";s:10:\"menu_order\";i:134;s:16:\"popularity_index\";i:539;s:11:\"trend_index\";i:726;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:456;a:18:{s:4:\"tmpl\";i:495;s:2:\"id\";i:5381;s:5:\"title\";s:10:\"Clients 16\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/form_white_9.png\";s:12:\"tmpl_created\";i:1520443499;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/clients-16/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"clients\";s:4:\"tags\";s:11:\"[\"Clients\"]\";s:10:\"menu_order\";i:134;s:16:\"popularity_index\";i:198;s:11:\"trend_index\";i:168;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:457;a:18:{s:4:\"tmpl\";i:937;s:2:\"id\";i:12466;s:5:\"title\";s:27:\"Travel &#8211; Testimonials\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2019/12/Testimonials.png\";s:12:\"tmpl_created\";i:1575960469;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/travel-testimonials/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:18:\"[\"Tours\",\"Travel\"]\";s:10:\"menu_order\";i:135;s:16:\"popularity_index\";i:527;s:11:\"trend_index\";i:481;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:458;a:18:{s:4:\"tmpl\";i:935;s:2:\"id\";i:12443;s:5:\"title\";s:22:\"Travel &#8211; Gallery\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2019/12/Gallery.png\";s:12:\"tmpl_created\";i:1575960459;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/travel-gallery/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:18:\"[\"Tours\",\"Travel\"]\";s:10:\"menu_order\";i:136;s:16:\"popularity_index\";i:467;s:11:\"trend_index\";i:501;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:459;a:18:{s:4:\"tmpl\";i:934;s:2:\"id\";i:12431;s:5:\"title\";s:18:\"Travel &#8211; FAQ\";s:9:\"thumbnail\";s:64:\"https://library.elementor.com/wp-content/uploads/2019/12/FAQ.png\";s:12:\"tmpl_created\";i:1575960453;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:109:\"https://library.elementor.com/travel-faq/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:18:\"[\"Tours\",\"Travel\"]\";s:10:\"menu_order\";i:137;s:16:\"popularity_index\";i:501;s:11:\"trend_index\";i:387;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:460;a:18:{s:4:\"tmpl\";i:493;s:2:\"id\";i:5357;s:5:\"title\";s:9:\"Clients 2\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/clients_black_7.png\";s:12:\"tmpl_created\";i:1520443495;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/clients-2-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"clients\";s:4:\"tags\";s:11:\"[\"Clients\"]\";s:10:\"menu_order\";i:137;s:16:\"popularity_index\";i:341;s:11:\"trend_index\";i:232;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:461;a:18:{s:4:\"tmpl\";i:933;s:2:\"id\";i:12421;s:5:\"title\";s:27:\"Travel &#8211; Contact Page\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2019/12/Contsct-Us.png\";s:12:\"tmpl_created\";i:1575960445;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/travel-contact-page/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:18:\"[\"Tours\",\"Travel\"]\";s:10:\"menu_order\";i:138;s:16:\"popularity_index\";i:571;s:11:\"trend_index\";i:536;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:462;a:18:{s:4:\"tmpl\";i:892;s:2:\"id\";i:11763;s:5:\"title\";s:27:\"Portfolio &#8211; Home Page\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2019/09/Homepage_small.png\";s:12:\"tmpl_created\";i:1569428959;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/portfolio-home-page/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:34:\"[\"Creative Portfolio\",\"Portfolio\"]\";s:10:\"menu_order\";i:139;s:16:\"popularity_index\";i:280;s:11:\"trend_index\";i:241;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:463;a:18:{s:4:\"tmpl\";i:485;s:2:\"id\";i:5290;s:5:\"title\";s:9:\"Clients 3\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/clients_black_2.png\";s:12:\"tmpl_created\";i:1520443480;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/clients-3-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"clients\";s:4:\"tags\";s:11:\"[\"Clients\"]\";s:10:\"menu_order\";i:139;s:16:\"popularity_index\";i:545;s:11:\"trend_index\";i:502;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:464;a:18:{s:4:\"tmpl\";i:891;s:2:\"id\";i:11781;s:5:\"title\";s:23:\"Portfolio &#8211; About\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2019/09/About_small.png\";s:12:\"tmpl_created\";i:1569428955;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/portfolio-about/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:34:\"[\"Creative Portfolio\",\"Portfolio\"]\";s:10:\"menu_order\";i:140;s:16:\"popularity_index\";i:349;s:11:\"trend_index\";i:290;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:465;a:18:{s:4:\"tmpl\";i:482;s:2:\"id\";i:5266;s:5:\"title\";s:9:\"Clients 4\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/clients_white_1.png\";s:12:\"tmpl_created\";i:1520443474;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/clients-4/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"clients\";s:4:\"tags\";s:11:\"[\"Clients\"]\";s:10:\"menu_order\";i:140;s:16:\"popularity_index\";i:95;s:11:\"trend_index\";i:134;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:466;a:18:{s:4:\"tmpl\";i:890;s:2:\"id\";i:11793;s:5:\"title\";s:26:\"Portfolio &#8211; Projects\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2019/09/Projects_small.png\";s:12:\"tmpl_created\";i:1569428951;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/portfolio-projects/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:34:\"[\"Creative Portfolio\",\"Portfolio\"]\";s:10:\"menu_order\";i:141;s:16:\"popularity_index\";i:448;s:11:\"trend_index\";i:467;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:467;a:18:{s:4:\"tmpl\";i:889;s:2:\"id\";i:11800;s:5:\"title\";s:25:\"Portfolio &#8211; Contact\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2019/09/Contact_small.png\";s:12:\"tmpl_created\";i:1569428946;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/portfolio-contact/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:34:\"[\"Creative Portfolio\",\"Portfolio\"]\";s:10:\"menu_order\";i:142;s:16:\"popularity_index\";i:494;s:11:\"trend_index\";i:449;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:468;a:18:{s:4:\"tmpl\";i:866;s:2:\"id\";i:11163;s:5:\"title\";s:32:\"Digital Agency &#8211; Home Page\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2019/07/Home_small.png\";s:12:\"tmpl_created\";i:1564641877;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/digital-agency-home-page/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:30:\"[\"Digital Agency\",\"Marketing\"]\";s:10:\"menu_order\";i:143;s:16:\"popularity_index\";i:57;s:11:\"trend_index\";i:32;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:469;a:18:{s:4:\"tmpl\";i:483;s:2:\"id\";i:5275;s:5:\"title\";s:9:\"Clients 5\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/clients_black_1.png\";s:12:\"tmpl_created\";i:1520443476;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/clients-5/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"clients\";s:4:\"tags\";s:11:\"[\"Clients\"]\";s:10:\"menu_order\";i:143;s:16:\"popularity_index\";i:334;s:11:\"trend_index\";i:321;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:470;a:18:{s:4:\"tmpl\";i:492;s:2:\"id\";i:5349;s:5:\"title\";s:9:\"Clients 7\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/form_white_7.png\";s:12:\"tmpl_created\";i:1520443493;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/clients-7/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"clients\";s:4:\"tags\";s:11:\"[\"Clients\"]\";s:10:\"menu_order\";i:144;s:16:\"popularity_index\";i:233;s:11:\"trend_index\";i:92;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:471;a:18:{s:4:\"tmpl\";i:916;s:2:\"id\";i:12143;s:5:\"title\";s:22:\"Law Firm &#8211; About\";s:9:\"thumbnail\";s:66:\"https://library.elementor.com/wp-content/uploads/2019/11/about.png\";s:12:\"tmpl_created\";i:1572847069;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/law-firm-about/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:18:\"[\"Law\",\"Law Firm\"]\";s:10:\"menu_order\";i:146;s:16:\"popularity_index\";i:350;s:11:\"trend_index\";i:344;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:472;a:18:{s:4:\"tmpl\";i:489;s:2:\"id\";i:5324;s:5:\"title\";s:9:\"Clients 8\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2018/03/form_white_5-1.png\";s:12:\"tmpl_created\";i:1520443488;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/clients-8/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"clients\";s:4:\"tags\";s:11:\"[\"Clients\"]\";s:10:\"menu_order\";i:146;s:16:\"popularity_index\";i:526;s:11:\"trend_index\";i:381;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:473;a:18:{s:4:\"tmpl\";i:920;s:2:\"id\";i:12091;s:5:\"title\";s:21:\"Law Firm &#8211; Team\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2019/11/team.png\";s:12:\"tmpl_created\";i:1572847113;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/law-firm-team/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:18:\"[\"Law\",\"Law Firm\"]\";s:10:\"menu_order\";i:147;s:16:\"popularity_index\";i:318;s:11:\"trend_index\";i:314;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:474;a:18:{s:4:\"tmpl\";i:869;s:2:\"id\";i:11129;s:5:\"title\";s:28:\"Digital Agency &#8211; About\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2019/07/About_small.png\";s:12:\"tmpl_created\";i:1564641889;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/digital-agency-about/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:30:\"[\"Digital Agency\",\"Marketing\"]\";s:10:\"menu_order\";i:148;s:16:\"popularity_index\";i:182;s:11:\"trend_index\";i:166;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:475;a:18:{s:4:\"tmpl\";i:880;s:2:\"id\";i:11572;s:5:\"title\";s:19:\"Gym &#8211; Trainer\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2019/08/Trainer_Small.png\";s:12:\"tmpl_created\";i:1567392934;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:110:\"https://library.elementor.com/gym-trainer/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:7:\"[\"Gym\"]\";s:10:\"menu_order\";i:149;s:16:\"popularity_index\";i:521;s:11:\"trend_index\";i:590;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:476;a:18:{s:4:\"tmpl\";i:494;s:2:\"id\";i:5368;s:5:\"title\";s:9:\"Clients 9\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/form_white_8.png\";s:12:\"tmpl_created\";i:1520443497;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/clients-9/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"clients\";s:4:\"tags\";s:11:\"[\"Clients\"]\";s:10:\"menu_order\";i:149;s:16:\"popularity_index\";i:253;s:11:\"trend_index\";i:273;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:477;a:18:{s:4:\"tmpl\";i:917;s:2:\"id\";i:12133;s:5:\"title\";s:24:\"Law Firm &#8211; Careers\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2019/11/careers.png\";s:12:\"tmpl_created\";i:1572847078;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/law-firm-careers/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:18:\"[\"Law\",\"Law Firm\"]\";s:10:\"menu_order\";i:151;s:16:\"popularity_index\";i:583;s:11:\"trend_index\";i:640;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:478;a:18:{s:4:\"tmpl\";i:425;s:2:\"id\";i:4436;s:5:\"title\";s:11:\"Contact  16\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/02/map_black_2.png\";s:12:\"tmpl_created\";i:1520443293;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/contact-16/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"contact\";s:4:\"tags\";s:11:\"[\"Contact\"]\";s:10:\"menu_order\";i:151;s:16:\"popularity_index\";i:161;s:11:\"trend_index\";i:68;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:479;a:18:{s:4:\"tmpl\";i:915;s:2:\"id\";i:12155;s:5:\"title\";s:26:\"Law Firm &#8211; Home Page\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2019/11/home.png\";s:12:\"tmpl_created\";i:1572847054;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/law-firm-home-page/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:18:\"[\"Law\",\"Law Firm\"]\";s:10:\"menu_order\";i:152;s:16:\"popularity_index\";i:193;s:11:\"trend_index\";i:110;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:480;a:18:{s:4:\"tmpl\";i:423;s:2:\"id\";i:4420;s:5:\"title\";s:9:\"Contact 1\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/02/map_black_1.png\";s:12:\"tmpl_created\";i:1520443289;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/contact-1-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"contact\";s:4:\"tags\";s:11:\"[\"Contact\"]\";s:10:\"menu_order\";i:152;s:16:\"popularity_index\";i:196;s:11:\"trend_index\";i:127;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:481;a:18:{s:4:\"tmpl\";i:921;s:2:\"id\";i:12080;s:5:\"title\";s:24:\"Law Firm &#8211; Partner\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2019/11/partner-1.png\";s:12:\"tmpl_created\";i:1572847120;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/law-firm-partner/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:18:\"[\"Law\",\"Law Firm\"]\";s:10:\"menu_order\";i:153;s:16:\"popularity_index\";i:556;s:11:\"trend_index\";i:471;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:482;a:18:{s:4:\"tmpl\";i:534;s:2:\"id\";i:5836;s:5:\"title\";s:10:\"Contact 10\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/contact_white_2.png\";s:12:\"tmpl_created\";i:1520443597;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/contact-10/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"contact\";s:4:\"tags\";s:11:\"[\"Contact\"]\";s:10:\"menu_order\";i:154;s:16:\"popularity_index\";i:114;s:11:\"trend_index\";i:76;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:483;a:18:{s:4:\"tmpl\";i:865;s:2:\"id\";i:11074;s:5:\"title\";s:31:\"Digital Agency &#8211; Services\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2019/07/Services_small.png\";s:12:\"tmpl_created\";i:1564641872;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/digital-agency-services/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:30:\"[\"Digital Agency\",\"Marketing\"]\";s:10:\"menu_order\";i:154;s:16:\"popularity_index\";i:163;s:11:\"trend_index\";i:170;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:484;a:18:{s:4:\"tmpl\";i:879;s:2:\"id\";i:11506;s:5:\"title\";s:19:\"Gym &#8211; Classes\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2019/08/Classes_Small.png\";s:12:\"tmpl_created\";i:1567392930;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:110:\"https://library.elementor.com/gym-classes/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:7:\"[\"Gym\"]\";s:10:\"menu_order\";i:155;s:16:\"popularity_index\";i:514;s:11:\"trend_index\";i:554;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:485;a:18:{s:4:\"tmpl\";i:535;s:2:\"id\";i:5844;s:5:\"title\";s:10:\"Contact 11\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/contact_black_2.png\";s:12:\"tmpl_created\";i:1520443599;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/contact-11/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"contact\";s:4:\"tags\";s:11:\"[\"Contact\"]\";s:10:\"menu_order\";i:156;s:16:\"popularity_index\";i:289;s:11:\"trend_index\";i:313;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:486;a:18:{s:4:\"tmpl\";i:922;s:2:\"id\";i:12044;s:5:\"title\";s:24:\"Law Firm &#8211; Contact\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2019/11/contsct_us.png\";s:12:\"tmpl_created\";i:1572847130;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/law-firm-contact/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:18:\"[\"Law\",\"Law Firm\"]\";s:10:\"menu_order\";i:157;s:16:\"popularity_index\";i:437;s:11:\"trend_index\";i:304;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:487;a:18:{s:4:\"tmpl\";i:430;s:2:\"id\";i:4476;s:5:\"title\";s:10:\"Contact 15\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/02/contact_white_4.png\";s:12:\"tmpl_created\";i:1520443303;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/contact-15/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"contact\";s:4:\"tags\";s:18:\"[\"Contact\",\"Form\"]\";s:10:\"menu_order\";i:157;s:16:\"popularity_index\";i:229;s:11:\"trend_index\";i:187;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:488;a:18:{s:4:\"tmpl\";i:918;s:2:\"id\";i:12124;s:5:\"title\";s:25:\"Law Firm &#8211; Services\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2019/11/services.png\";s:12:\"tmpl_created\";i:1572847096;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/law-firm-services/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:18:\"[\"Law\",\"Law Firm\"]\";s:10:\"menu_order\";i:158;s:16:\"popularity_index\";i:433;s:11:\"trend_index\";i:296;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:489;a:18:{s:4:\"tmpl\";i:864;s:2:\"id\";i:11056;s:5:\"title\";s:35:\"Digital Agency &#8211; Social Media\";s:9:\"thumbnail\";s:79:\"https://library.elementor.com/wp-content/uploads/2019/07/Social-Media_small.png\";s:12:\"tmpl_created\";i:1564641867;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:126:\"https://library.elementor.com/digital-agency-social-media/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:30:\"[\"Digital Agency\",\"Marketing\"]\";s:10:\"menu_order\";i:159;s:16:\"popularity_index\";i:297;s:11:\"trend_index\";i:361;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:490;a:18:{s:4:\"tmpl\";i:476;s:2:\"id\";i:5214;s:5:\"title\";s:10:\"Contact 16\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/form_white_2.png\";s:12:\"tmpl_created\";i:1520443462;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/blocks/contact-16-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"contact\";s:4:\"tags\";s:18:\"[\"Contact\",\"Form\"]\";s:10:\"menu_order\";i:159;s:16:\"popularity_index\";i:194;s:11:\"trend_index\";i:106;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:491;a:18:{s:4:\"tmpl\";i:878;s:2:\"id\";i:11536;s:5:\"title\";s:19:\"Gym &#8211; Fitness\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2019/08/Fitness_Small.png\";s:12:\"tmpl_created\";i:1567392927;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:110:\"https://library.elementor.com/gym-fitness/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:7:\"[\"Gym\"]\";s:10:\"menu_order\";i:160;s:16:\"popularity_index\";i:621;s:11:\"trend_index\";i:674;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:492;a:18:{s:4:\"tmpl\";i:882;s:2:\"id\";i:11545;s:5:\"title\";s:21:\"Gym &#8211; Home Page\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2019/08/Home_Small.png\";s:12:\"tmpl_created\";i:1567392943;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/gym-home-page/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:7:\"[\"Gym\"]\";s:10:\"menu_order\";i:161;s:16:\"popularity_index\";i:310;s:11:\"trend_index\";i:229;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:493;a:18:{s:4:\"tmpl\";i:919;s:2:\"id\";i:12116;s:5:\"title\";s:24:\"Law Firm &#8211; Service\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2019/11/family_law.png\";s:12:\"tmpl_created\";i:1572847105;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/law-firm-service/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:18:\"[\"Law\",\"Law Firm\"]\";s:10:\"menu_order\";i:162;s:16:\"popularity_index\";i:489;s:11:\"trend_index\";i:339;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:494;a:18:{s:4:\"tmpl\";i:478;s:2:\"id\";i:5230;s:5:\"title\";s:10:\"Contact 17\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/form_white_3.png\";s:12:\"tmpl_created\";i:1520443466;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/contact-17/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"contact\";s:4:\"tags\";s:18:\"[\"Contact\",\"Form\"]\";s:10:\"menu_order\";i:162;s:16:\"popularity_index\";i:339;s:11:\"trend_index\";i:335;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:495;a:18:{s:4:\"tmpl\";i:868;s:2:\"id\";i:11094;s:5:\"title\";s:30:\"Digital Agency &#8211; Clients\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2019/07/Clients_small.png\";s:12:\"tmpl_created\";i:1564641885;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:121:\"https://library.elementor.com/digital-agency-clients/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:30:\"[\"Digital Agency\",\"Marketing\"]\";s:10:\"menu_order\";i:163;s:16:\"popularity_index\";i:424;s:11:\"trend_index\";i:424;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:496;a:18:{s:4:\"tmpl\";i:481;s:2:\"id\";i:5257;s:5:\"title\";s:10:\"Contact 18\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/form_white_5.png\";s:12:\"tmpl_created\";i:1520443472;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/contact-18/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"contact\";s:4:\"tags\";s:8:\"[\"Form\"]\";s:10:\"menu_order\";i:163;s:16:\"popularity_index\";i:438;s:11:\"trend_index\";i:490;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:497;a:18:{s:4:\"tmpl\";i:881;s:2:\"id\";i:11478;s:5:\"title\";s:17:\"Gym &#8211; About\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2019/08/About_Small.png\";s:12:\"tmpl_created\";i:1567392939;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/gym-about/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:7:\"[\"Gym\"]\";s:10:\"menu_order\";i:164;s:16:\"popularity_index\";i:481;s:11:\"trend_index\";i:579;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:498;a:18:{s:4:\"tmpl\";i:532;s:2:\"id\";i:5820;s:5:\"title\";s:9:\"Contact 2\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/contact_white_1.png\";s:12:\"tmpl_created\";i:1520443593;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/contact-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"contact\";s:4:\"tags\";s:11:\"[\"Contact\"]\";s:10:\"menu_order\";i:166;s:16:\"popularity_index\";i:183;s:11:\"trend_index\";i:357;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:499;a:18:{s:4:\"tmpl\";i:877;s:2:\"id\";i:11563;s:5:\"title\";s:19:\"Gym &#8211; Pricing\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2019/08/Pricing_Small.png\";s:12:\"tmpl_created\";i:1567392923;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:110:\"https://library.elementor.com/gym-pricing/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:7:\"[\"Gym\"]\";s:10:\"menu_order\";i:166;s:16:\"popularity_index\";i:577;s:11:\"trend_index\";i:736;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:500;a:18:{s:4:\"tmpl\";i:422;s:2:\"id\";i:4411;s:5:\"title\";s:9:\"Contact 3\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/02/map_white_1.png\";s:12:\"tmpl_created\";i:1520443287;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/contact-3-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"contact\";s:4:\"tags\";s:11:\"[\"Contact\"]\";s:10:\"menu_order\";i:167;s:16:\"popularity_index\";i:113;s:11:\"trend_index\";i:217;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:501;a:18:{s:4:\"tmpl\";i:867;s:2:\"id\";i:11034;s:5:\"title\";s:30:\"Digital Agency &#8211; Contact\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2019/07/Contsct-Us_small.png\";s:12:\"tmpl_created\";i:1564641881;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:121:\"https://library.elementor.com/contact-digital-agency/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:30:\"[\"Digital Agency\",\"Marketing\"]\";s:10:\"menu_order\";i:168;s:16:\"popularity_index\";i:191;s:11:\"trend_index\";i:156;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:502;a:18:{s:4:\"tmpl\";i:533;s:2:\"id\";i:5828;s:5:\"title\";s:9:\"Contact 3\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/contact_black_1.png\";s:12:\"tmpl_created\";i:1520443595;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/contact-3/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"contact\";s:4:\"tags\";s:11:\"[\"Contact\"]\";s:10:\"menu_order\";i:170;s:16:\"popularity_index\";i:312;s:11:\"trend_index\";i:495;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:503;a:18:{s:4:\"tmpl\";i:876;s:2:\"id\";i:11528;s:5:\"title\";s:19:\"Gym &#8211; Contact\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2019/08/Contact_Small.png\";s:12:\"tmpl_created\";i:1567392917;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:110:\"https://library.elementor.com/gym-contact/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:7:\"[\"Gym\"]\";s:10:\"menu_order\";i:171;s:16:\"popularity_index\";i:505;s:11:\"trend_index\";i:624;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:504;a:18:{s:4:\"tmpl\";i:424;s:2:\"id\";i:4428;s:5:\"title\";s:9:\"Contact 4\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/02/map_white_2.png\";s:12:\"tmpl_created\";i:1520443291;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/contact-4/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"contact\";s:4:\"tags\";s:11:\"[\"Contact\"]\";s:10:\"menu_order\";i:171;s:16:\"popularity_index\";i:118;s:11:\"trend_index\";i:131;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:505;a:18:{s:4:\"tmpl\";i:426;s:2:\"id\";i:4444;s:5:\"title\";s:9:\"Contact 5\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/02/contact_white_1.png\";s:12:\"tmpl_created\";i:1520443295;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/contact-5/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"contact\";s:4:\"tags\";s:11:\"[\"Contact\"]\";s:10:\"menu_order\";i:174;s:16:\"popularity_index\";i:84;s:11:\"trend_index\";i:93;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:506;a:18:{s:4:\"tmpl\";i:432;s:2:\"id\";i:4492;s:5:\"title\";s:9:\"Contact 5\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/02/map_white_3.png\";s:12:\"tmpl_created\";i:1520443307;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/contact-5-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"contact\";s:4:\"tags\";s:11:\"[\"Contact\"]\";s:10:\"menu_order\";i:176;s:16:\"popularity_index\";i:37;s:11:\"trend_index\";i:31;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:507;a:18:{s:4:\"tmpl\";i:427;s:2:\"id\";i:4452;s:5:\"title\";s:9:\"Contact 6\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/02/contact_black_1.png\";s:12:\"tmpl_created\";i:1520443296;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/contact-6/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"contact\";s:4:\"tags\";s:11:\"[\"Contact\"]\";s:10:\"menu_order\";i:178;s:16:\"popularity_index\";i:139;s:11:\"trend_index\";i:150;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:508;a:18:{s:4:\"tmpl\";i:429;s:2:\"id\";i:4468;s:5:\"title\";s:9:\"Contact 7\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/02/contact_white_3.png\";s:12:\"tmpl_created\";i:1520443301;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/contact-7/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"contact\";s:4:\"tags\";s:18:\"[\"Contact\",\"Form\"]\";s:10:\"menu_order\";i:179;s:16:\"popularity_index\";i:127;s:11:\"trend_index\";i:72;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:509;a:18:{s:4:\"tmpl\";i:431;s:2:\"id\";i:4484;s:5:\"title\";s:9:\"Contact 8\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/02/contact_black_3.png\";s:12:\"tmpl_created\";i:1520443305;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/contact-8/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"contact\";s:4:\"tags\";s:18:\"[\"Contact\",\"Form\"]\";s:10:\"menu_order\";i:182;s:16:\"popularity_index\";i:328;s:11:\"trend_index\";i:260;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:510;a:18:{s:4:\"tmpl\";i:428;s:2:\"id\";i:4460;s:5:\"title\";s:9:\"Contact 9\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/02/contact_white_2.png\";s:12:\"tmpl_created\";i:1520443298;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/contact-9/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"contact\";s:4:\"tags\";s:11:\"[\"Contact\"]\";s:10:\"menu_order\";i:184;s:16:\"popularity_index\";i:99;s:11:\"trend_index\";i:80;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:511;a:18:{s:4:\"tmpl\";i:613;s:2:\"id\";i:5558;s:5:\"title\";s:5:\"CTA 1\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_white_2.png\";s:12:\"tmpl_created\";i:1520520684;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/blocks/cta-1/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:185;s:16:\"popularity_index\";i:129;s:11:\"trend_index\";i:69;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:512;a:18:{s:4:\"tmpl\";i:634;s:2:\"id\";i:5939;s:5:\"title\";s:6:\"CTA 10\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_black_13-1.png\";s:12:\"tmpl_created\";i:1520520760;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/cta-10/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:187;s:16:\"popularity_index\";i:190;s:11:\"trend_index\";i:118;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:513;a:18:{s:4:\"tmpl\";i:633;s:2:\"id\";i:5930;s:5:\"title\";s:6:\"CTA 11\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_white_15.png\";s:12:\"tmpl_created\";i:1520520758;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/cta-11/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:190;s:16:\"popularity_index\";i:76;s:11:\"trend_index\";i:84;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:514;a:18:{s:4:\"tmpl\";i:632;s:2:\"id\";i:5921;s:5:\"title\";s:6:\"CTA 12\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_white_14.png\";s:12:\"tmpl_created\";i:1520520757;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/cta-12/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:192;s:16:\"popularity_index\";i:278;s:11:\"trend_index\";i:234;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:515;a:18:{s:4:\"tmpl\";i:618;s:2:\"id\";i:5607;s:5:\"title\";s:6:\"CTA 13\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_black_5.png\";s:12:\"tmpl_created\";i:1520520695;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/cta-13/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:194;s:16:\"popularity_index\";i:42;s:11:\"trend_index\";i:11;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:516;a:18:{s:4:\"tmpl\";i:574;s:2:\"id\";i:6017;s:5:\"title\";s:6:\"CTA 14\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_black_14.png\";s:12:\"tmpl_created\";i:1520520331;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/cta-14/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:196;s:16:\"popularity_index\";i:152;s:11:\"trend_index\";i:122;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:517;a:18:{s:4:\"tmpl\";i:628;s:2:\"id\";i:5885;s:5:\"title\";s:6:\"CTA 15\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_white_11.png\";s:12:\"tmpl_created\";i:1520520751;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/cta-15/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:197;s:16:\"popularity_index\";i:274;s:11:\"trend_index\";i:256;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:518;a:18:{s:4:\"tmpl\";i:627;s:2:\"id\";i:5877;s:5:\"title\";s:6:\"CTA 16\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_black_10.png\";s:12:\"tmpl_created\";i:1520520749;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/cta-16/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:200;s:16:\"popularity_index\";i:564;s:11:\"trend_index\";i:677;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:519;a:18:{s:4:\"tmpl\";i:625;s:2:\"id\";i:5860;s:5:\"title\";s:6:\"CTA 17\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_white_9.png\";s:12:\"tmpl_created\";i:1520520746;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/cta-17/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:201;s:16:\"popularity_index\";i:120;s:11:\"trend_index\";i:63;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:520;a:18:{s:4:\"tmpl\";i:626;s:2:\"id\";i:5869;s:5:\"title\";s:6:\"CTA 18\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_white_10.png\";s:12:\"tmpl_created\";i:1520520747;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/cta-18/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:204;s:16:\"popularity_index\";i:345;s:11:\"trend_index\";i:486;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:521;a:18:{s:4:\"tmpl\";i:611;s:2:\"id\";i:5542;s:5:\"title\";s:6:\"CTA 19\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_white_1.png\";s:12:\"tmpl_created\";i:1520520681;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/cta-19/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:205;s:16:\"popularity_index\";i:169;s:11:\"trend_index\";i:270;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:522;a:18:{s:4:\"tmpl\";i:614;s:2:\"id\";i:5567;s:5:\"title\";s:5:\"CTA 2\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_black_2.png\";s:12:\"tmpl_created\";i:1520520685;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/blocks/cta-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:207;s:16:\"popularity_index\";i:143;s:11:\"trend_index\";i:225;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:523;a:18:{s:4:\"tmpl\";i:629;s:2:\"id\";i:5893;s:5:\"title\";s:6:\"CTA 21\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_black_12.png\";s:12:\"tmpl_created\";i:1520520752;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/cta-21/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:210;s:16:\"popularity_index\";i:259;s:11:\"trend_index\";i:457;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:524;a:18:{s:4:\"tmpl\";i:619;s:2:\"id\";i:5634;s:5:\"title\";s:6:\"CTA 24\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_white_6.png\";s:12:\"tmpl_created\";i:1520520699;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/cta-24/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:212;s:16:\"popularity_index\";i:188;s:11:\"trend_index\";i:255;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:525;a:18:{s:4:\"tmpl\";i:620;s:2:\"id\";i:5642;s:5:\"title\";s:6:\"CTA 25\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_black_6.png\";s:12:\"tmpl_created\";i:1520520701;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/cta-25/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:214;s:16:\"popularity_index\";i:226;s:11:\"trend_index\";i:262;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:526;a:18:{s:4:\"tmpl\";i:615;s:2:\"id\";i:5583;s:5:\"title\";s:6:\"CTA 26\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_black_3.png\";s:12:\"tmpl_created\";i:1520520689;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/cta-26/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:216;s:16:\"popularity_index\";i:117;s:11:\"trend_index\";i:117;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:527;a:18:{s:4:\"tmpl\";i:630;s:2:\"id\";i:5904;s:5:\"title\";s:6:\"CTA 27\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_white_13.png\";s:12:\"tmpl_created\";i:1520520754;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/cta-27/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:217;s:16:\"popularity_index\";i:528;s:11:\"trend_index\";i:517;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:528;a:18:{s:4:\"tmpl\";i:631;s:2:\"id\";i:5912;s:5:\"title\";s:6:\"CTA 28\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_black_11.png\";s:12:\"tmpl_created\";i:1520520755;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/cta-28/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:219;s:16:\"popularity_index\";i:665;s:11:\"trend_index\";i:702;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:529;a:18:{s:4:\"tmpl\";i:473;s:2:\"id\";i:5189;s:5:\"title\";s:6:\"CTA 29\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/form_white_1.png\";s:12:\"tmpl_created\";i:1520443456;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/cta-29/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:8:\"[\"Form\"]\";s:10:\"menu_order\";i:221;s:16:\"popularity_index\";i:472;s:11:\"trend_index\";i:631;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:530;a:18:{s:4:\"tmpl\";i:623;s:2:\"id\";i:5667;s:5:\"title\";s:5:\"CTA 3\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_white_8.png\";s:12:\"tmpl_created\";i:1520520705;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/blocks/cta-3/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:222;s:16:\"popularity_index\";i:171;s:11:\"trend_index\";i:250;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:531;a:18:{s:4:\"tmpl\";i:474;s:2:\"id\";i:5198;s:5:\"title\";s:6:\"CTA 30\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/form_black_1.png\";s:12:\"tmpl_created\";i:1520443458;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/cta-30/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:8:\"[\"Form\"]\";s:10:\"menu_order\";i:225;s:16:\"popularity_index\";i:572;s:11:\"trend_index\";i:511;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:532;a:18:{s:4:\"tmpl\";i:475;s:2:\"id\";i:5206;s:5:\"title\";s:6:\"CTA 31\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/form_black_2.png\";s:12:\"tmpl_created\";i:1520443459;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/cta-31/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:8:\"[\"Form\"]\";s:10:\"menu_order\";i:226;s:16:\"popularity_index\";i:593;s:11:\"trend_index\";i:611;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:533;a:18:{s:4:\"tmpl\";i:480;s:2:\"id\";i:5249;s:5:\"title\";s:6:\"CTA 32\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/form_black_4.png\";s:12:\"tmpl_created\";i:1520443470;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/cta-32/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:8:\"[\"Form\"]\";s:10:\"menu_order\";i:228;s:16:\"popularity_index\";i:512;s:11:\"trend_index\";i:409;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:534;a:18:{s:4:\"tmpl\";i:612;s:2:\"id\";i:5550;s:5:\"title\";s:6:\"CTA 33\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_black_1.png\";s:12:\"tmpl_created\";i:1520520682;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/cta-33/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:231;s:16:\"popularity_index\";i:260;s:11:\"trend_index\";i:562;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:535;a:18:{s:4:\"tmpl\";i:536;s:2:\"id\";i:5852;s:5:\"title\";s:6:\"CTA 34\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2018/03/form_1.png\";s:12:\"tmpl_created\";i:1520443600;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/cta-34/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:8:\"[\"Form\"]\";s:10:\"menu_order\";i:232;s:16:\"popularity_index\";i:563;s:11:\"trend_index\";i:828;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:536;a:18:{s:4:\"tmpl\";i:624;s:2:\"id\";i:5675;s:5:\"title\";s:5:\"CTA 4\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_black_8.png\";s:12:\"tmpl_created\";i:1520520707;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/blocks/cta-4/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:235;s:16:\"popularity_index\";i:391;s:11:\"trend_index\";i:484;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:537;a:18:{s:4:\"tmpl\";i:616;s:2:\"id\";i:5591;s:5:\"title\";s:5:\"CTA 5\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_white_4.png\";s:12:\"tmpl_created\";i:1520520691;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/blocks/cta-5/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:237;s:16:\"popularity_index\";i:133;s:11:\"trend_index\";i:130;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:538;a:18:{s:4:\"tmpl\";i:617;s:2:\"id\";i:5599;s:5:\"title\";s:5:\"CTA 6\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_black_4.png\";s:12:\"tmpl_created\";i:1520520693;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/blocks/cta-6/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:239;s:16:\"popularity_index\";i:252;s:11:\"trend_index\";i:362;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:539;a:18:{s:4:\"tmpl\";i:514;s:2:\"id\";i:5575;s:5:\"title\";s:5:\"CTA 7\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_white_3.png\";s:12:\"tmpl_created\";i:1520443543;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/blocks/cta-7/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:240;s:16:\"popularity_index\";i:13;s:11:\"trend_index\";i:586;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:540;a:18:{s:4:\"tmpl\";i:622;s:2:\"id\";i:5658;s:5:\"title\";s:5:\"CTA 8\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_black_7.png\";s:12:\"tmpl_created\";i:1520520704;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/blocks/cta-8/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:243;s:16:\"popularity_index\";i:187;s:11:\"trend_index\";i:235;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:541;a:18:{s:4:\"tmpl\";i:621;s:2:\"id\";i:5650;s:5:\"title\";s:5:\"CTA 9\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_white_7.png\";s:12:\"tmpl_created\";i:1520520702;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/blocks/cta-9/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:244;s:16:\"popularity_index\";i:94;s:11:\"trend_index\";i:148;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:542;a:18:{s:4:\"tmpl\";i:1061;s:2:\"id\";i:15407;s:5:\"title\";s:24:\"Dance Studio &#8211; 404\";s:9:\"thumbnail\";s:64:\"https://library.elementor.com/wp-content/uploads/2020/10/404.jpg\";s:12:\"tmpl_created\";i:1603181958;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/blocks/dance-studio-404/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:22:\"[\"404\",\"Dance Studio\"]\";s:10:\"menu_order\";i:246;s:16:\"popularity_index\";i:783;s:11:\"trend_index\";i:710;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:543;a:18:{s:4:\"tmpl\";i:1062;s:2:\"id\";i:15400;s:5:\"title\";s:27:\"Dance Studio &#8211; Footer\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2020/10/Footer.jpg\";s:12:\"tmpl_created\";i:1603181989;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:125:\"https://library.elementor.com/blocks/dance-studio-footer/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:25:\"[\"Dance Studio\",\"Footer\"]\";s:10:\"menu_order\";i:247;s:16:\"popularity_index\";i:586;s:11:\"trend_index\";i:243;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:544;a:18:{s:4:\"tmpl\";i:1063;s:2:\"id\";i:15391;s:5:\"title\";s:27:\"Dance Studio &#8211; Header\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2020/10/Header.jpg\";s:12:\"tmpl_created\";i:1603182011;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:125:\"https://library.elementor.com/blocks/dance-studio-header/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:25:\"[\"Dance Studio\",\"Header\"]\";s:10:\"menu_order\";i:248;s:16:\"popularity_index\";i:352;s:11:\"trend_index\";i:67;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:545;a:18:{s:4:\"tmpl\";i:874;s:2:\"id\";i:11192;s:5:\"title\";s:14:\"Digital Agency\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2019/07/Footer_small.jpg\";s:12:\"tmpl_created\";i:1564642399;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/blocks/digital-agency-5/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:39:\"[\"Digital Agency\",\"Footer\",\"Marketing\"]\";s:10:\"menu_order\";i:250;s:16:\"popularity_index\";i:172;s:11:\"trend_index\";i:105;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:546;a:18:{s:4:\"tmpl\";i:873;s:2:\"id\";i:11198;s:5:\"title\";s:14:\"Digital Agency\";s:9:\"thumbnail\";s:92:\"https://library.elementor.com/wp-content/uploads/2020/06/Header-digital-marketing-agency.png\";s:12:\"tmpl_created\";i:1564642395;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/blocks/digital-agency-4/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:39:\"[\"Digital Agency\",\"Header\",\"Marketing\"]\";s:10:\"menu_order\";i:251;s:16:\"popularity_index\";i:34;s:11:\"trend_index\";i:10;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:547;a:18:{s:4:\"tmpl\";i:872;s:2:\"id\";i:11204;s:5:\"title\";s:14:\"Digital Agency\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2019/07/404_small.jpg\";s:12:\"tmpl_created\";i:1564642389;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/blocks/digital-agency-3/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:36:\"[\"404\",\"Digital Agency\",\"Marketing\"]\";s:10:\"menu_order\";i:253;s:16:\"popularity_index\";i:301;s:11:\"trend_index\";i:239;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:548;a:18:{s:4:\"tmpl\";i:871;s:2:\"id\";i:11220;s:5:\"title\";s:14:\"Digital Agency\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2019/08/Archive_small1.png\";s:12:\"tmpl_created\";i:1564642385;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/blocks/digital-agency-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:30:\"[\"Digital Agency\",\"Marketing\"]\";s:10:\"menu_order\";i:255;s:16:\"popularity_index\";i:116;s:11:\"trend_index\";i:73;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:549;a:18:{s:4:\"tmpl\";i:870;s:2:\"id\";i:11231;s:5:\"title\";s:14:\"Digital Agency\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2019/07/Post_small1.png\";s:12:\"tmpl_created\";i:1564642380;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/blocks/digital-agency/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:30:\"[\"Digital Agency\",\"Marketing\"]\";s:10:\"menu_order\";i:257;s:16:\"popularity_index\";i:145;s:11:\"trend_index\";i:71;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:550;a:18:{s:4:\"tmpl\";i:520;s:2:\"id\";i:5711;s:5:\"title\";s:5:\"FAQ 1\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/faq_black_2.png\";s:12:\"tmpl_created\";i:1520443571;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/blocks/faq-1/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:3:\"faq\";s:4:\"tags\";s:7:\"[\"Faq\"]\";s:10:\"menu_order\";i:260;s:16:\"popularity_index\";i:200;s:11:\"trend_index\";i:231;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:551;a:18:{s:4:\"tmpl\";i:523;s:2:\"id\";i:5737;s:5:\"title\";s:6:\"FAQ 10\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/faq_white_4.png\";s:12:\"tmpl_created\";i:1520443576;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/faq-10/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:3:\"faq\";s:4:\"tags\";s:7:\"[\"Faq\"]\";s:10:\"menu_order\";i:261;s:16:\"popularity_index\";i:155;s:11:\"trend_index\";i:112;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:552;a:18:{s:4:\"tmpl\";i:524;s:2:\"id\";i:5746;s:5:\"title\";s:6:\"FAQ 11\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/faq_black_4.png\";s:12:\"tmpl_created\";i:1520443578;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/faq-11/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:3:\"faq\";s:4:\"tags\";s:7:\"[\"Faq\"]\";s:10:\"menu_order\";i:264;s:16:\"popularity_index\";i:212;s:11:\"trend_index\";i:305;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:553;a:18:{s:4:\"tmpl\";i:519;s:2:\"id\";i:5703;s:5:\"title\";s:6:\"FAQ 13\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/faq_white_2.png\";s:12:\"tmpl_created\";i:1520443569;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/faq-13/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:3:\"faq\";s:4:\"tags\";s:7:\"[\"Faq\"]\";s:10:\"menu_order\";i:265;s:16:\"popularity_index\";i:29;s:11:\"trend_index\";i:38;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:554;a:18:{s:4:\"tmpl\";i:521;s:2:\"id\";i:5719;s:5:\"title\";s:5:\"FAQ 4\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/faq_white_3.png\";s:12:\"tmpl_created\";i:1520443573;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/blocks/faq-4/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:3:\"faq\";s:4:\"tags\";s:7:\"[\"Faq\"]\";s:10:\"menu_order\";i:267;s:16:\"popularity_index\";i:125;s:11:\"trend_index\";i:251;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:555;a:18:{s:4:\"tmpl\";i:522;s:2:\"id\";i:5729;s:5:\"title\";s:5:\"FAQ 5\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/faq_black_3.png\";s:12:\"tmpl_created\";i:1520443575;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/blocks/faq-5/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:3:\"faq\";s:4:\"tags\";s:7:\"[\"Faq\"]\";s:10:\"menu_order\";i:269;s:16:\"popularity_index\";i:319;s:11:\"trend_index\";i:327;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:556;a:18:{s:4:\"tmpl\";i:525;s:2:\"id\";i:5755;s:5:\"title\";s:5:\"FAQ 6\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/faq_white_5.png\";s:12:\"tmpl_created\";i:1520443580;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/blocks/faq-6/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:3:\"faq\";s:4:\"tags\";s:7:\"[\"Faq\"]\";s:10:\"menu_order\";i:271;s:16:\"popularity_index\";i:112;s:11:\"trend_index\";i:180;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:557;a:18:{s:4:\"tmpl\";i:526;s:2:\"id\";i:5764;s:5:\"title\";s:5:\"FAQ 7\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/faq_black_5.png\";s:12:\"tmpl_created\";i:1520443582;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/blocks/faq-7/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:3:\"faq\";s:4:\"tags\";s:7:\"[\"Faq\"]\";s:10:\"menu_order\";i:273;s:16:\"popularity_index\";i:338;s:11:\"trend_index\";i:474;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:558;a:18:{s:4:\"tmpl\";i:517;s:2:\"id\";i:5684;s:5:\"title\";s:5:\"FAQ 8\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/faq_white_1.png\";s:12:\"tmpl_created\";i:1520443565;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/blocks/faq-8/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:3:\"faq\";s:4:\"tags\";s:7:\"[\"Faq\"]\";s:10:\"menu_order\";i:274;s:16:\"popularity_index\";i:74;s:11:\"trend_index\";i:193;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:559;a:18:{s:4:\"tmpl\";i:518;s:2:\"id\";i:5693;s:5:\"title\";s:5:\"FAQ 9\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/faq_black_1.png\";s:12:\"tmpl_created\";i:1520443567;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/blocks/faq-9/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:3:\"faq\";s:4:\"tags\";s:7:\"[\"Faq\"]\";s:10:\"menu_order\";i:276;s:16:\"popularity_index\";i:224;s:11:\"trend_index\";i:515;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:560;a:18:{s:4:\"tmpl\";i:548;s:2:\"id\";i:6053;s:5:\"title\";s:10:\"Features 1\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/03/features_black_5.png\";s:12:\"tmpl_created\";i:1520443645;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/features-1/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"features\";s:4:\"tags\";s:12:\"[\"Features\"]\";s:10:\"menu_order\";i:277;s:16:\"popularity_index\";i:179;s:11:\"trend_index\";i:463;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:561;a:18:{s:4:\"tmpl\";i:542;s:2:\"id\";i:5991;s:5:\"title\";s:11:\"Features 10\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/03/features_white_4.png\";s:12:\"tmpl_created\";i:1520443632;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/features-10/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"features\";s:4:\"tags\";s:12:\"[\"Features\"]\";s:10:\"menu_order\";i:279;s:16:\"popularity_index\";i:135;s:11:\"trend_index\";i:265;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:562;a:18:{s:4:\"tmpl\";i:547;s:2:\"id\";i:6044;s:5:\"title\";s:11:\"Features 11\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/03/features_white_5.png\";s:12:\"tmpl_created\";i:1520443643;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/features-11/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"features\";s:4:\"tags\";s:12:\"[\"Features\"]\";s:10:\"menu_order\";i:280;s:16:\"popularity_index\";i:70;s:11:\"trend_index\";i:163;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:563;a:18:{s:4:\"tmpl\";i:566;s:2:\"id\";i:6212;s:5:\"title\";s:11:\"Features 12\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/03/features_white_7.png\";s:12:\"tmpl_created\";i:1520443684;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/features-12/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"features\";s:4:\"tags\";s:12:\"[\"Features\"]\";s:10:\"menu_order\";i:281;s:16:\"popularity_index\";i:81;s:11:\"trend_index\";i:98;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:564;a:18:{s:4:\"tmpl\";i:567;s:2:\"id\";i:6220;s:5:\"title\";s:10:\"Features 2\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/03/features_white_8.png\";s:12:\"tmpl_created\";i:1520443685;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/features-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"features\";s:4:\"tags\";s:12:\"[\"Features\"]\";s:10:\"menu_order\";i:282;s:16:\"popularity_index\";i:88;s:11:\"trend_index\";i:189;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:565;a:18:{s:4:\"tmpl\";i:541;s:2:\"id\";i:5983;s:5:\"title\";s:10:\"Features 3\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/03/features_black_3.png\";s:12:\"tmpl_created\";i:1520443630;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/features-3/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"features\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:283;s:16:\"popularity_index\";i:231;s:11:\"trend_index\";i:351;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:566;a:18:{s:4:\"tmpl\";i:540;s:2:\"id\";i:5974;s:5:\"title\";s:10:\"Features 4\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/03/features_white_3.png\";s:12:\"tmpl_created\";i:1520443629;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/features-4/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"features\";s:4:\"tags\";s:12:\"[\"Features\"]\";s:10:\"menu_order\";i:286;s:16:\"popularity_index\";i:69;s:11:\"trend_index\";i:181;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:567;a:18:{s:4:\"tmpl\";i:516;s:2:\"id\";i:5624;s:5:\"title\";s:10:\"Features 5\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/03/features_black_1.png\";s:12:\"tmpl_created\";i:1520443553;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/features-5/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"features\";s:4:\"tags\";s:12:\"[\"Features\"]\";s:10:\"menu_order\";i:287;s:16:\"popularity_index\";i:93;s:11:\"trend_index\";i:352;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:568;a:18:{s:4:\"tmpl\";i:515;s:2:\"id\";i:5615;s:5:\"title\";s:10:\"Features 6\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_white_5.png\";s:12:\"tmpl_created\";i:1520443551;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/features-6/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"features\";s:4:\"tags\";s:12:\"[\"Features\"]\";s:10:\"menu_order\";i:290;s:16:\"popularity_index\";i:41;s:11:\"trend_index\";i:119;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:569;a:18:{s:4:\"tmpl\";i:539;s:2:\"id\";i:5963;s:5:\"title\";s:10:\"Features 7\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/03/features_white_2.png\";s:12:\"tmpl_created\";i:1520443626;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/features-7/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"features\";s:4:\"tags\";s:12:\"[\"Features\"]\";s:10:\"menu_order\";i:291;s:16:\"popularity_index\";i:67;s:11:\"trend_index\";i:133;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:570;a:18:{s:4:\"tmpl\";i:565;s:2:\"id\";i:6204;s:5:\"title\";s:10:\"Features 8\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/03/progress_black_6.png\";s:12:\"tmpl_created\";i:1520443681;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/features-8/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"features\";s:4:\"tags\";s:12:\"[\"Features\"]\";s:10:\"menu_order\";i:292;s:16:\"popularity_index\";i:217;s:11:\"trend_index\";i:223;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:571;a:18:{s:4:\"tmpl\";i:564;s:2:\"id\";i:6196;s:5:\"title\";s:10:\"Features 9\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/03/features_white_6.png\";s:12:\"tmpl_created\";i:1520443680;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/features-9/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"features\";s:4:\"tags\";s:12:\"[\"Features\"]\";s:10:\"menu_order\";i:294;s:16:\"popularity_index\";i:106;s:11:\"trend_index\";i:113;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:572;a:18:{s:4:\"tmpl\";i:1033;s:2:\"id\";i:15033;s:5:\"title\";s:28:\"Flooring Company &#8211; 404\";s:9:\"thumbnail\";s:64:\"https://library.elementor.com/wp-content/uploads/2020/08/404.png\";s:12:\"tmpl_created\";i:1597739459;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:126:\"https://library.elementor.com/blocks/flooring-company-404/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:45:\"[\"404\",\"Flooring company\",\"Flooring website\"]\";s:10:\"menu_order\";i:296;s:16:\"popularity_index\";i:655;s:11:\"trend_index\";i:671;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:573;a:18:{s:4:\"tmpl\";i:1032;s:2:\"id\";i:15042;s:5:\"title\";s:32:\"Flooring Company &#8211; Archive\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2020/08/Blog.png\";s:12:\"tmpl_created\";i:1597739084;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:130:\"https://library.elementor.com/blocks/flooring-company-archive/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:39:\"[\"Flooring company\",\"Flooring website\"]\";s:10:\"menu_order\";i:297;s:16:\"popularity_index\";i:320;s:11:\"trend_index\";i:275;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:574;a:18:{s:4:\"tmpl\";i:1031;s:2:\"id\";i:15017;s:5:\"title\";s:31:\"Flooring Company &#8211; Footer\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2020/08/Footer.png\";s:12:\"tmpl_created\";i:1597738933;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:129:\"https://library.elementor.com/blocks/flooring-company-footer/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:48:\"[\"Flooring company\",\"Flooring website\",\"Footer\"]\";s:10:\"menu_order\";i:299;s:16:\"popularity_index\";i:323;s:11:\"trend_index\";i:192;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:575;a:18:{s:4:\"tmpl\";i:1030;s:2:\"id\";i:15007;s:5:\"title\";s:31:\"Flooring Company &#8211; Header\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2020/08/Header.png\";s:12:\"tmpl_created\";i:1597738896;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:129:\"https://library.elementor.com/blocks/flooring-company-header/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:48:\"[\"Flooring company\",\"Flooring website\",\"Header\"]\";s:10:\"menu_order\";i:302;s:16:\"popularity_index\";i:459;s:11:\"trend_index\";i:333;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:576;a:18:{s:4:\"tmpl\";i:1029;s:2:\"id\";i:15052;s:5:\"title\";s:36:\"Flooring Company &#8211; Single post\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2020/08/Single.png\";s:12:\"tmpl_created\";i:1597738858;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:134:\"https://library.elementor.com/blocks/flooring-company-single-post/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:39:\"[\"Flooring company\",\"Flooring website\"]\";s:10:\"menu_order\";i:303;s:16:\"popularity_index\";i:392;s:11:\"trend_index\";i:226;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:577;a:18:{s:4:\"tmpl\";i:651;s:2:\"id\";i:7837;s:5:\"title\";s:9:\"footer 01\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/footer350.14.jpg\";s:12:\"tmpl_created\";i:1524582852;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/footer-01/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:305;s:16:\"popularity_index\";i:495;s:11:\"trend_index\";i:539;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:578;a:18:{s:4:\"tmpl\";i:647;s:2:\"id\";i:7937;s:5:\"title\";s:10:\"footer 010\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/footer350.5.jpg\";s:12:\"tmpl_created\";i:1524582665;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/footer-010/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:308;s:16:\"popularity_index\";i:185;s:11:\"trend_index\";i:115;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:579;a:18:{s:4:\"tmpl\";i:646;s:2:\"id\";i:7950;s:5:\"title\";s:10:\"footer 011\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/footer350.4.jpg\";s:12:\"tmpl_created\";i:1524582631;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/footer-011/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:310;s:16:\"popularity_index\";i:244;s:11:\"trend_index\";i:203;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:580;a:18:{s:4:\"tmpl\";i:645;s:2:\"id\";i:7959;s:5:\"title\";s:10:\"footer 012\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/footer350.3.jpg\";s:12:\"tmpl_created\";i:1524582605;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/footer-012/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:311;s:16:\"popularity_index\";i:177;s:11:\"trend_index\";i:140;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:581;a:18:{s:4:\"tmpl\";i:644;s:2:\"id\";i:7982;s:5:\"title\";s:10:\"footer 013\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/footer350.2.jpg\";s:12:\"tmpl_created\";i:1524582468;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/footer-013/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:314;s:16:\"popularity_index\";i:209;s:11:\"trend_index\";i:212;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:582;a:18:{s:4:\"tmpl\";i:643;s:2:\"id\";i:7997;s:5:\"title\";s:10:\"footer 014\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/footer350.1.jpg\";s:12:\"tmpl_created\";i:1524582343;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/footer-014/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:316;s:16:\"popularity_index\";i:64;s:11:\"trend_index\";i:41;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:583;a:18:{s:4:\"tmpl\";i:693;s:2:\"id\";i:9119;s:5:\"title\";s:10:\"footer 015\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2018/07/Footer_GetStarted_350.png\";s:12:\"tmpl_created\";i:1532428138;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:110:\"https://library.elementor.com/blocks/demo/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:317;s:16:\"popularity_index\";i:240;s:11:\"trend_index\";i:154;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:584;a:18:{s:4:\"tmpl\";i:652;s:2:\"id\";i:7852;s:5:\"title\";s:9:\"footer 02\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/footer350.13.jpg\";s:12:\"tmpl_created\";i:1524582875;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/footer-02/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:320;s:16:\"popularity_index\";i:199;s:11:\"trend_index\";i:96;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:585;a:18:{s:4:\"tmpl\";i:653;s:2:\"id\";i:7862;s:5:\"title\";s:9:\"footer 03\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/footer350.12.jpg\";s:12:\"tmpl_created\";i:1524582903;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/footer-03/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:321;s:16:\"popularity_index\";i:137;s:11:\"trend_index\";i:91;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:586;a:18:{s:4:\"tmpl\";i:654;s:2:\"id\";i:7871;s:5:\"title\";s:9:\"footer 04\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/footer350.11.jpg\";s:12:\"tmpl_created\";i:1524582927;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/footer-04/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:323;s:16:\"popularity_index\";i:97;s:11:\"trend_index\";i:55;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:587;a:18:{s:4:\"tmpl\";i:655;s:2:\"id\";i:7884;s:5:\"title\";s:9:\"footer 05\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/footer350.10.jpg\";s:12:\"tmpl_created\";i:1524582944;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/footer-05/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:325;s:16:\"popularity_index\";i:92;s:11:\"trend_index\";i:109;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:588;a:18:{s:4:\"tmpl\";i:656;s:2:\"id\";i:7892;s:5:\"title\";s:9:\"footer 06\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/footer350.9.jpg\";s:12:\"tmpl_created\";i:1524583015;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/footer-06/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:326;s:16:\"popularity_index\";i:132;s:11:\"trend_index\";i:146;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:589;a:18:{s:4:\"tmpl\";i:650;s:2:\"id\";i:7904;s:5:\"title\";s:9:\"footer 07\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/footer350.8.jpg\";s:12:\"tmpl_created\";i:1524582814;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/footer-07/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:328;s:16:\"popularity_index\";i:203;s:11:\"trend_index\";i:186;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:590;a:18:{s:4:\"tmpl\";i:649;s:2:\"id\";i:7917;s:5:\"title\";s:9:\"footer 08\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/footer350.7.jpg\";s:12:\"tmpl_created\";i:1524582788;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/footer-08/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:329;s:16:\"popularity_index\";i:89;s:11:\"trend_index\";i:144;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:591;a:18:{s:4:\"tmpl\";i:648;s:2:\"id\";i:7927;s:5:\"title\";s:9:\"footer 09\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/footer350.6.jpg\";s:12:\"tmpl_created\";i:1524582691;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/footer-09/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:331;s:16:\"popularity_index\";i:178;s:11:\"trend_index\";i:100;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:592;a:18:{s:4:\"tmpl\";i:642;s:2:\"id\";i:4676;s:5:\"title\";s:8:\"Footer 7\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2018/03/footer_7.png\";s:12:\"tmpl_created\";i:1522014215;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/blocks/footer_7/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:10:\"[\"Footer\"]\";s:10:\"menu_order\";i:338;s:16:\"popularity_index\";i:237;s:11:\"trend_index\";i:346;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:593;a:18:{s:4:\"tmpl\";i:637;s:2:\"id\";i:7627;s:5:\"title\";s:8:\"Footer 8\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/footer_hero_1.png\";s:12:\"tmpl_created\";i:1521547332;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/blocks/footer-8/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:10:\"[\"Footer\"]\";s:10:\"menu_order\";i:340;s:16:\"popularity_index\";i:100;s:11:\"trend_index\";i:83;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:594;a:18:{s:4:\"tmpl\";i:638;s:2:\"id\";i:7638;s:5:\"title\";s:8:\"Footer 9\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/footer_hero_2.png\";s:12:\"tmpl_created\";i:1521547502;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/blocks/footer-9/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:10:\"[\"Footer\"]\";s:10:\"menu_order\";i:342;s:16:\"popularity_index\";i:124;s:11:\"trend_index\";i:147;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:595;a:18:{s:4:\"tmpl\";i:888;s:2:\"id\";i:11424;s:5:\"title\";s:3:\"GYM\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2019/08/404_Small.png\";s:12:\"tmpl_created\";i:1567393309;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/blocks/gym-5/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:13:\"[\"404\",\"Gym\"]\";s:10:\"menu_order\";i:344;s:16:\"popularity_index\";i:679;s:11:\"trend_index\";i:769;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:596;a:18:{s:4:\"tmpl\";i:887;s:2:\"id\";i:11435;s:5:\"title\";s:3:\"GYM\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2019/08/Archiv_Small.png\";s:12:\"tmpl_created\";i:1567393296;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/blocks/gym-4/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:7:\"[\"Gym\"]\";s:10:\"menu_order\";i:346;s:16:\"popularity_index\";i:441;s:11:\"trend_index\";i:507;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:597;a:18:{s:4:\"tmpl\";i:886;s:2:\"id\";i:11445;s:5:\"title\";s:3:\"GYM\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2019/08/Post_Small.png\";s:12:\"tmpl_created\";i:1567393229;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/blocks/gym-3/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:7:\"[\"Gym\"]\";s:10:\"menu_order\";i:349;s:16:\"popularity_index\";i:452;s:11:\"trend_index\";i:479;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:598;a:18:{s:4:\"tmpl\";i:885;s:2:\"id\";i:11453;s:5:\"title\";s:3:\"GYM\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2019/08/Footer_Small.png\";s:12:\"tmpl_created\";i:1567393224;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/blocks/gym-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:16:\"[\"Footer\",\"Gym\"]\";s:10:\"menu_order\";i:351;s:16:\"popularity_index\";i:270;s:11:\"trend_index\";i:331;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:599;a:18:{s:4:\"tmpl\";i:884;s:2:\"id\";i:11461;s:5:\"title\";s:3:\"GYM\";s:9:\"thumbnail\";s:83:\"https://library.elementor.com/wp-content/uploads/2020/06/Header-gym-and-fitness.png\";s:12:\"tmpl_created\";i:1567393219;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:109:\"https://library.elementor.com/blocks/gym/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:16:\"[\"Gym\",\"Header\"]\";s:10:\"menu_order\";i:352;s:16:\"popularity_index\";i:201;s:11:\"trend_index\";i:135;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:600;a:18:{s:4:\"tmpl\";i:635;s:2:\"id\";i:7596;s:5:\"title\";s:8:\"Header 1\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/header350.12.jpg\";s:12:\"tmpl_created\";i:1521546999;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/blocks/header-1/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:10:\"[\"Header\"]\";s:10:\"menu_order\";i:354;s:16:\"popularity_index\";i:33;s:11:\"trend_index\";i:17;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:601;a:18:{s:4:\"tmpl\";i:663;s:2:\"id\";i:7801;s:5:\"title\";s:9:\"header 10\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/header350.9.jpg\";s:12:\"tmpl_created\";i:1524583659;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/header-10/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:356;s:16:\"popularity_index\";i:51;s:11:\"trend_index\";i:14;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:602;a:18:{s:4:\"tmpl\";i:658;s:2:\"id\";i:7812;s:5:\"title\";s:9:\"header 11\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/header350.10.jpg\";s:12:\"tmpl_created\";i:1524583298;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/header-11/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:358;s:16:\"popularity_index\";i:96;s:11:\"trend_index\";i:103;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:603;a:18:{s:4:\"tmpl\";i:657;s:2:\"id\";i:7825;s:5:\"title\";s:9:\"header 12\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/header350.11.jpg\";s:12:\"tmpl_created\";i:1524583273;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/header-12/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:360;s:16:\"popularity_index\";i:63;s:11:\"trend_index\";i:75;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:604;a:18:{s:4:\"tmpl\";i:694;s:2:\"id\";i:9127;s:5:\"title\";s:9:\"header 13\";s:9:\"thumbnail\";s:86:\"https://library.elementor.com/wp-content/uploads/2018/07/Header_get_started_1200V3.png\";s:12:\"tmpl_created\";i:1532428699;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/header-13/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:362;s:16:\"popularity_index\";i:61;s:11:\"trend_index\";i:58;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:605;a:18:{s:4:\"tmpl\";i:636;s:2:\"id\";i:7615;s:5:\"title\";s:8:\"Header 2\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/header350.1.jpg\";s:12:\"tmpl_created\";i:1521547237;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/blocks/header-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:10:\"[\"Header\"]\";s:10:\"menu_order\";i:365;s:16:\"popularity_index\";i:30;s:11:\"trend_index\";i:33;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:606;a:18:{s:4:\"tmpl\";i:665;s:2:\"id\";i:7713;s:5:\"title\";s:8:\"header 3\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/header350.2.jpg\";s:12:\"tmpl_created\";i:1524584780;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/blocks/header-3/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:367;s:16:\"popularity_index\";i:43;s:11:\"trend_index\";i:28;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:607;a:18:{s:4:\"tmpl\";i:659;s:2:\"id\";i:7724;s:5:\"title\";s:8:\"header 4\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/header350.3.jpg\";s:12:\"tmpl_created\";i:1524583367;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/blocks/header-4/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:369;s:16:\"popularity_index\";i:24;s:11:\"trend_index\";i:13;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:608;a:18:{s:4:\"tmpl\";i:660;s:2:\"id\";i:7734;s:5:\"title\";s:8:\"header 5\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/header350.4.jpg\";s:12:\"tmpl_created\";i:1524583436;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/blocks/header-5/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:371;s:16:\"popularity_index\";i:36;s:11:\"trend_index\";i:18;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:609;a:18:{s:4:\"tmpl\";i:666;s:2:\"id\";i:7744;s:5:\"title\";s:8:\"Header 6\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/header350.5.jpg\";s:12:\"tmpl_created\";i:1524584784;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/blocks/header-6/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:372;s:16:\"popularity_index\";i:65;s:11:\"trend_index\";i:94;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:610;a:18:{s:4:\"tmpl\";i:664;s:2:\"id\";i:7754;s:5:\"title\";s:8:\"header 7\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/header350.6.jpg\";s:12:\"tmpl_created\";i:1524583712;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/blocks/header-7/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:375;s:16:\"popularity_index\";i:111;s:11:\"trend_index\";i:143;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:611;a:18:{s:4:\"tmpl\";i:661;s:2:\"id\";i:7771;s:5:\"title\";s:8:\"header 8\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/header350.7.jpg\";s:12:\"tmpl_created\";i:1524583540;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/blocks/header-8/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:376;s:16:\"popularity_index\";i:91;s:11:\"trend_index\";i:60;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:612;a:18:{s:4:\"tmpl\";i:662;s:2:\"id\";i:7787;s:5:\"title\";s:8:\"header 9\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/header350.8.jpg\";s:12:\"tmpl_created\";i:1524583598;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/blocks/header-9/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:379;s:16:\"popularity_index\";i:102;s:11:\"trend_index\";i:78;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:613;a:18:{s:4:\"tmpl\";i:572;s:2:\"id\";i:6266;s:5:\"title\";s:6:\"Hero 1\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/heroo_black_4.png\";s:12:\"tmpl_created\";i:1520443695;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/hero-1/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"hero\";s:4:\"tags\";s:8:\"[\"hero\"]\";s:10:\"menu_order\";i:380;s:16:\"popularity_index\";i:52;s:11:\"trend_index\";i:35;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:614;a:18:{s:4:\"tmpl\";i:528;s:2:\"id\";i:5783;s:5:\"title\";s:7:\"Hero 10\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2018/03/header_2.png\";s:12:\"tmpl_created\";i:1520443586;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/blocks/hero-10/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"hero\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:383;s:16:\"popularity_index\";i:365;s:11:\"trend_index\";i:567;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:615;a:18:{s:4:\"tmpl\";i:527;s:2:\"id\";i:5773;s:5:\"title\";s:7:\"Hero 11\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2018/03/header_1.png\";s:12:\"tmpl_created\";i:1520443584;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/blocks/hero-11/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"hero\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:384;s:16:\"popularity_index\";i:39;s:11:\"trend_index\";i:179;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:616;a:18:{s:4:\"tmpl\";i:479;s:2:\"id\";i:5238;s:5:\"title\";s:7:\"Hero 12\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/form_white_4.png\";s:12:\"tmpl_created\";i:1520443468;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/blocks/hero-12/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"hero\";s:4:\"tags\";s:8:\"[\"hero\"]\";s:10:\"menu_order\";i:386;s:16:\"popularity_index\";i:611;s:11:\"trend_index\";i:555;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:617;a:18:{s:4:\"tmpl\";i:573;s:2:\"id\";i:6274;s:5:\"title\";s:6:\"Hero 2\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/heroo_black_5.png\";s:12:\"tmpl_created\";i:1520443698;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/hero-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"hero\";s:4:\"tags\";s:8:\"[\"hero\"]\";s:10:\"menu_order\";i:389;s:16:\"popularity_index\";i:87;s:11:\"trend_index\";i:88;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:618;a:18:{s:4:\"tmpl\";i:569;s:2:\"id\";i:6239;s:5:\"title\";s:6:\"Hero 3\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/heroo_black_1.png\";s:12:\"tmpl_created\";i:1520443689;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/hero-3/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"hero\";s:4:\"tags\";s:8:\"[\"hero\"]\";s:10:\"menu_order\";i:391;s:16:\"popularity_index\";i:23;s:11:\"trend_index\";i:34;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:619;a:18:{s:4:\"tmpl\";i:571;s:2:\"id\";i:6258;s:5:\"title\";s:6:\"Hero 4\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/heroo_black_3.png\";s:12:\"tmpl_created\";i:1520443693;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/hero-4/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"hero\";s:4:\"tags\";s:8:\"[\"hero\"]\";s:10:\"menu_order\";i:393;s:16:\"popularity_index\";i:479;s:11:\"trend_index\";i:470;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:620;a:18:{s:4:\"tmpl\";i:570;s:2:\"id\";i:6249;s:5:\"title\";s:6:\"Hero 5\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/heroo_black_2.png\";s:12:\"tmpl_created\";i:1520443691;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/hero-5/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"hero\";s:4:\"tags\";s:8:\"[\"hero\"]\";s:10:\"menu_order\";i:395;s:16:\"popularity_index\";i:56;s:11:\"trend_index\";i:85;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:621;a:18:{s:4:\"tmpl\";i:568;s:2:\"id\";i:6230;s:5:\"title\";s:6:\"Hero 6\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/heroo_white_1.png\";s:12:\"tmpl_created\";i:1520443687;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/hero-6/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"hero\";s:4:\"tags\";s:8:\"[\"hero\"]\";s:10:\"menu_order\";i:396;s:16:\"popularity_index\";i:406;s:11:\"trend_index\";i:542;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:622;a:18:{s:4:\"tmpl\";i:530;s:2:\"id\";i:5801;s:5:\"title\";s:6:\"Hero 7\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2018/03/header_4.png\";s:12:\"tmpl_created\";i:1520443589;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/hero-7/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"hero\";s:4:\"tags\";s:8:\"[\"hero\"]\";s:10:\"menu_order\";i:398;s:16:\"popularity_index\";i:15;s:11:\"trend_index\";i:37;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:623;a:18:{s:4:\"tmpl\";i:531;s:2:\"id\";i:5811;s:5:\"title\";s:6:\"Hero 8\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2018/03/header_5.png\";s:12:\"tmpl_created\";i:1520443591;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/hero-8/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"hero\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:400;s:16:\"popularity_index\";i:105;s:11:\"trend_index\";i:86;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:624;a:18:{s:4:\"tmpl\";i:529;s:2:\"id\";i:5792;s:5:\"title\";s:6:\"Hero 9\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2018/03/header_3.png\";s:12:\"tmpl_created\";i:1520443588;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/hero-9/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"hero\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:403;s:16:\"popularity_index\";i:225;s:11:\"trend_index\";i:244;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:625;a:18:{s:4:\"tmpl\";i:978;s:2:\"id\";i:13251;s:5:\"title\";s:27:\"Interior Design &#8211; 404\";s:9:\"thumbnail\";s:64:\"https://library.elementor.com/wp-content/uploads/2020/04/404.png\";s:12:\"tmpl_created\";i:1586148737;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:125:\"https://library.elementor.com/blocks/interior-design-404/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:30:\"[\"Business\",\"Interior Design\"]\";s:10:\"menu_order\";i:405;s:16:\"popularity_index\";i:730;s:11:\"trend_index\";i:795;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:626;a:18:{s:4:\"tmpl\";i:979;s:2:\"id\";i:13244;s:5:\"title\";s:30:\"Interior Design &#8211; Footer\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2020/04/Footer.png\";s:12:\"tmpl_created\";i:1586148742;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:128:\"https://library.elementor.com/blocks/interior-design-footer/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:39:\"[\"Business\",\"Footer\",\"Interior Design\"]\";s:10:\"menu_order\";i:406;s:16:\"popularity_index\";i:322;s:11:\"trend_index\";i:178;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:627;a:18:{s:4:\"tmpl\";i:980;s:2:\"id\";i:13236;s:5:\"title\";s:30:\"Interior Design &#8211; Header\";s:9:\"thumbnail\";s:83:\"https://library.elementor.com/wp-content/uploads/2020/06/Header-interior-design.png\";s:12:\"tmpl_created\";i:1586148746;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:128:\"https://library.elementor.com/blocks/interior-design-header/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:39:\"[\"Business\",\"Header\",\"Interior Design\"]\";s:10:\"menu_order\";i:408;s:16:\"popularity_index\";i:146;s:11:\"trend_index\";i:64;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:628;a:18:{s:4:\"tmpl\";i:977;s:2:\"id\";i:13259;s:5:\"title\";s:36:\"Interior Design &#8211; News Archive\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2020/04/Archiv-Blog.png\";s:12:\"tmpl_created\";i:1586148733;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:134:\"https://library.elementor.com/blocks/interior-design-news-archive/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:30:\"[\"Business\",\"Interior Design\"]\";s:10:\"menu_order\";i:410;s:16:\"popularity_index\";i:436;s:11:\"trend_index\";i:132;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:629;a:18:{s:4:\"tmpl\";i:976;s:2:\"id\";i:13267;s:5:\"title\";s:35:\"Interior Design &#8211; Single News\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2020/04/Post.png\";s:12:\"tmpl_created\";i:1586148728;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:133:\"https://library.elementor.com/blocks/interior-design-single-news/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:30:\"[\"Business\",\"Interior Design\"]\";s:10:\"menu_order\";i:413;s:16:\"popularity_index\";i:402;s:11:\"trend_index\";i:108;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:630;a:18:{s:4:\"tmpl\";i:975;s:2:\"id\";i:13274;s:5:\"title\";s:38:\"Interior Design &#8211; Single Project\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2020/04/Single-Project-.png\";s:12:\"tmpl_created\";i:1586148723;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:136:\"https://library.elementor.com/blocks/interior-design-single-project/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:30:\"[\"Business\",\"Interior Design\"]\";s:10:\"menu_order\";i:414;s:16:\"popularity_index\";i:601;s:11:\"trend_index\";i:324;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:631;a:18:{s:4:\"tmpl\";i:1011;s:2:\"id\";i:14058;s:5:\"title\";s:36:\"Japanese restaurant &#8211; 404 page\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2020/06/404-Page.jpg\";s:12:\"tmpl_created\";i:1592290211;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:134:\"https://library.elementor.com/blocks/japanese-restaurant-404-page/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:38:\"[\"404\",\"Food\",\"Japanese\",\"Restaurant\"]\";s:10:\"menu_order\";i:416;s:16:\"popularity_index\";i:724;s:11:\"trend_index\";i:647;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:632;a:18:{s:4:\"tmpl\";i:1012;s:2:\"id\";i:14050;s:5:\"title\";s:34:\"Japanese restaurant &#8211; Footer\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2020/06/Footer-Small.jpg\";s:12:\"tmpl_created\";i:1592290247;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:132:\"https://library.elementor.com/blocks/japanese-restaurant-footer/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:41:\"[\"Food\",\"Footer\",\"Japanese\",\"Restaurant\"]\";s:10:\"menu_order\";i:419;s:16:\"popularity_index\";i:317;s:11:\"trend_index\";i:238;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:633;a:18:{s:4:\"tmpl\";i:1013;s:2:\"id\";i:14042;s:5:\"title\";s:34:\"Japanese Restaurant &#8211; Header\";s:9:\"thumbnail\";s:87:\"https://library.elementor.com/wp-content/uploads/2020/06/japanese-restaurant-header.jpg\";s:12:\"tmpl_created\";i:1592290277;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:132:\"https://library.elementor.com/blocks/japanese-restaurant-header/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:41:\"[\"Food\",\"Header\",\"Japanese\",\"Restaurant\"]\";s:10:\"menu_order\";i:421;s:16:\"popularity_index\";i:411;s:11:\"trend_index\";i:274;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:634;a:18:{s:4:\"tmpl\";i:914;s:2:\"id\";i:12164;s:5:\"title\";s:20:\"Law Firm &#8211; 404\";s:9:\"thumbnail\";s:64:\"https://library.elementor.com/wp-content/uploads/2019/11/404.png\";s:12:\"tmpl_created\";i:1572846979;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/blocks/law-firm-404/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:24:\"[\"404\",\"Law\",\"Law Firm\"]\";s:10:\"menu_order\";i:422;s:16:\"popularity_index\";i:704;s:11:\"trend_index\";i:716;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:635;a:18:{s:4:\"tmpl\";i:913;s:2:\"id\";i:12170;s:5:\"title\";s:23:\"Law Firm &#8211; Archiv\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2019/11/archiv.png\";s:12:\"tmpl_created\";i:1572846967;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:121:\"https://library.elementor.com/blocks/law-firm-archiv/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:18:\"[\"Law\",\"Law Firm\"]\";s:10:\"menu_order\";i:424;s:16:\"popularity_index\";i:431;s:11:\"trend_index\";i:294;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:636;a:18:{s:4:\"tmpl\";i:912;s:2:\"id\";i:12179;s:5:\"title\";s:23:\"Law Firm &#8211; Footer\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2019/11/footer.png\";s:12:\"tmpl_created\";i:1572846958;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:121:\"https://library.elementor.com/blocks/law-firm-footer/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:27:\"[\"Footer\",\"Law\",\"Law Firm\"]\";s:10:\"menu_order\";i:425;s:16:\"popularity_index\";i:388;s:11:\"trend_index\";i:240;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:637;a:18:{s:4:\"tmpl\";i:911;s:2:\"id\";i:12194;s:5:\"title\";s:23:\"Law Firm &#8211; Header\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2020/06/Header-law-firm.png\";s:12:\"tmpl_created\";i:1572846935;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:121:\"https://library.elementor.com/blocks/law-firm-header/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:27:\"[\"Header\",\"Law\",\"Law Firm\"]\";s:10:\"menu_order\";i:427;s:16:\"popularity_index\";i:80;s:11:\"trend_index\";i:39;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:638;a:18:{s:4:\"tmpl\";i:910;s:2:\"id\";i:12203;s:5:\"title\";s:30:\"Law Firm &#8211; Search Archiv\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2019/11/search_result.png\";s:12:\"tmpl_created\";i:1572846925;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:128:\"https://library.elementor.com/blocks/law-firm-search-archiv/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:18:\"[\"Law\",\"Law Firm\"]\";s:10:\"menu_order\";i:430;s:16:\"popularity_index\";i:493;s:11:\"trend_index\";i:433;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:639;a:18:{s:4:\"tmpl\";i:909;s:2:\"id\";i:12212;s:5:\"title\";s:28:\"Law Firm &#8211; Single Post\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2019/11/single.png\";s:12:\"tmpl_created\";i:1572846914;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:126:\"https://library.elementor.com/blocks/law-firm-single-post/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:18:\"[\"Law\",\"Law Firm\"]\";s:10:\"menu_order\";i:432;s:16:\"popularity_index\";i:326;s:11:\"trend_index\";i:214;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:640;a:18:{s:4:\"tmpl\";i:1022;s:2:\"id\";i:14772;s:5:\"title\";s:35:\"Luxury Real Estate &#8211; 404 page\";s:9:\"thumbnail\";s:64:\"https://library.elementor.com/wp-content/uploads/2020/07/404.png\";s:12:\"tmpl_created\";i:1595315728;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:133:\"https://library.elementor.com/blocks/luxury-real-estate-404-page/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:34:\"[\"404\",\"Real estate\",\"Realestate\"]\";s:10:\"menu_order\";i:433;s:16:\"popularity_index\";i:759;s:11:\"trend_index\";i:720;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:641;a:18:{s:4:\"tmpl\";i:1023;s:2:\"id\";i:14779;s:5:\"title\";s:33:\"Luxury Real Estate &#8211; Footer\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2020/07/Footer.png\";s:12:\"tmpl_created\";i:1595315743;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:131:\"https://library.elementor.com/blocks/luxury-real-estate-footer/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:37:\"[\"Footer\",\"Real estate\",\"Realestate\"]\";s:10:\"menu_order\";i:434;s:16:\"popularity_index\";i:536;s:11:\"trend_index\";i:505;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:642;a:18:{s:4:\"tmpl\";i:1024;s:2:\"id\";i:14790;s:5:\"title\";s:33:\"Luxury Real Estate &#8211; Header\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2020/07/Header.png\";s:12:\"tmpl_created\";i:1595315760;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:131:\"https://library.elementor.com/blocks/luxury-real-estate-header/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:37:\"[\"Header\",\"Real estate\",\"Realestate\"]\";s:10:\"menu_order\";i:436;s:16:\"popularity_index\";i:101;s:11:\"trend_index\";i:157;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:643;a:18:{s:4:\"tmpl\";i:1026;s:2:\"id\";i:14809;s:5:\"title\";s:45:\"Luxury Real Estate &#8211; Properties Archive\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2020/07/Properties.png\";s:12:\"tmpl_created\";i:1595315826;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:143:\"https://library.elementor.com/blocks/luxury-real-estate-properties-archive/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:28:\"[\"Real estate\",\"Realestate\"]\";s:10:\"menu_order\";i:438;s:16:\"popularity_index\";i:414;s:11:\"trend_index\";i:420;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:644;a:18:{s:4:\"tmpl\";i:1027;s:2:\"id\";i:14816;s:5:\"title\";s:47:\"Luxury Real Estate &#8211; Property single post\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2020/07/Single-Property-.png\";s:12:\"tmpl_created\";i:1595315847;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:145:\"https://library.elementor.com/blocks/luxury-real-estate-property-single-post/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:28:\"[\"Real estate\",\"Realestate\"]\";s:10:\"menu_order\";i:441;s:16:\"popularity_index\";i:541;s:11:\"trend_index\";i:665;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:645;a:18:{s:4:\"tmpl\";i:1025;s:2:\"id\";i:14799;s:5:\"title\";s:38:\"Luxury Real Estate &#8211; single post\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2020/07/Post.png\";s:12:\"tmpl_created\";i:1595315792;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:136:\"https://library.elementor.com/blocks/luxury-real-estate-single-post/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:28:\"[\"Real estate\",\"Realestate\"]\";s:10:\"menu_order\";i:442;s:16:\"popularity_index\";i:369;s:11:\"trend_index\";i:441;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:646;a:18:{s:4:\"tmpl\";i:950;s:2:\"id\";i:12635;s:5:\"title\";s:20:\"Magazine &#8211; 404\";s:9:\"thumbnail\";s:66:\"https://library.elementor.com/wp-content/uploads/2020/01/404_s.png\";s:12:\"tmpl_created\";i:1579060746;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/blocks/magazine-404/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:25:\"[\"404\",\"Blog\",\"Magazine\"]\";s:10:\"menu_order\";i:445;s:16:\"popularity_index\";i:645;s:11:\"trend_index\";i:734;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:647;a:18:{s:4:\"tmpl\";i:949;s:2:\"id\";i:12643;s:5:\"title\";s:24:\"Magazine &#8211; Archiv1\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2020/01/Archiv1_s.png\";s:12:\"tmpl_created\";i:1579060737;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/blocks/magazine-archiv1/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:19:\"[\"Blog\",\"Magazine\"]\";s:10:\"menu_order\";i:447;s:16:\"popularity_index\";i:346;s:11:\"trend_index\";i:272;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:648;a:18:{s:4:\"tmpl\";i:946;s:2:\"id\";i:12669;s:5:\"title\";s:23:\"Magazine &#8211; Footer\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2020/01/Footer_s.png\";s:12:\"tmpl_created\";i:1579060715;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:121:\"https://library.elementor.com/blocks/magazine-footer/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:28:\"[\"Blog\",\"Footer\",\"Magazine\"]\";s:10:\"menu_order\";i:448;s:16:\"popularity_index\";i:442;s:11:\"trend_index\";i:349;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:649;a:18:{s:4:\"tmpl\";i:945;s:2:\"id\";i:12678;s:5:\"title\";s:23:\"Magazine &#8211; Header\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2020/06/Header-magazine.png\";s:12:\"tmpl_created\";i:1579060701;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:121:\"https://library.elementor.com/blocks/magazine-header/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:28:\"[\"Blog\",\"Header\",\"Magazine\"]\";s:10:\"menu_order\";i:450;s:16:\"popularity_index\";i:295;s:11:\"trend_index\";i:197;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:650;a:18:{s:4:\"tmpl\";i:947;s:2:\"id\";i:12661;s:5:\"title\";s:23:\"Magazine &#8211; Search\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2020/01/Search_s.png\";s:12:\"tmpl_created\";i:1579060722;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:121:\"https://library.elementor.com/blocks/magazine-search/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:19:\"[\"Blog\",\"Magazine\"]\";s:10:\"menu_order\";i:452;s:16:\"popularity_index\";i:396;s:11:\"trend_index\";i:509;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:651;a:18:{s:4:\"tmpl\";i:944;s:2:\"id\";i:12688;s:5:\"title\";s:30:\"Magazine &#8211; Single Post 1\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2020/01/Post2_s.png\";s:12:\"tmpl_created\";i:1579060692;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:128:\"https://library.elementor.com/blocks/magazine-single-post-1/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:19:\"[\"Blog\",\"Magazine\"]\";s:10:\"menu_order\";i:453;s:16:\"popularity_index\";i:342;s:11:\"trend_index\";i:175;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:652;a:18:{s:4:\"tmpl\";i:943;s:2:\"id\";i:12699;s:5:\"title\";s:30:\"Magazine &#8211; Single Post 2\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2020/01/Post3_s.png\";s:12:\"tmpl_created\";i:1579060680;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:128:\"https://library.elementor.com/blocks/magazine-single-post-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:19:\"[\"Blog\",\"Magazine\"]\";s:10:\"menu_order\";i:454;s:16:\"popularity_index\";i:348;s:11:\"trend_index\";i:129;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:653;a:18:{s:4:\"tmpl\";i:942;s:2:\"id\";i:12707;s:5:\"title\";s:30:\"Magazine &#8211; Single Post 3\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2020/01/Post1_s.png\";s:12:\"tmpl_created\";i:1579060669;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:128:\"https://library.elementor.com/blocks/magazine-single-post-3/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:19:\"[\"Blog\",\"Magazine\"]\";s:10:\"menu_order\";i:457;s:16:\"popularity_index\";i:476;s:11:\"trend_index\";i:246;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:654;a:18:{s:4:\"tmpl\";i:941;s:2:\"id\";i:12716;s:5:\"title\";s:30:\"Magazine &#8211; Single Post 3\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2020/01/Post4_s.png\";s:12:\"tmpl_created\";i:1579060659;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:130:\"https://library.elementor.com/blocks/magazine-single-post-3-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:19:\"[\"Blog\",\"Magazine\"]\";s:10:\"menu_order\";i:459;s:16:\"popularity_index\";i:513;s:11:\"trend_index\";i:489;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:655;a:18:{s:4:\"tmpl\";i:948;s:2:\"id\";i:12652;s:5:\"title\";s:17:\"Magazine- Archiv2\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2020/01/Archiv2_s.png\";s:12:\"tmpl_created\";i:1579060730;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/blocks/magazine-archiv2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:19:\"[\"Blog\",\"Magazine\"]\";s:10:\"menu_order\";i:461;s:16:\"popularity_index\";i:525;s:11:\"trend_index\";i:585;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:656;a:18:{s:4:\"tmpl\";i:990;s:2:\"id\";i:13361;s:5:\"title\";s:25:\"Online Course &#8211; 404\";s:9:\"thumbnail\";s:64:\"https://library.elementor.com/wp-content/uploads/2020/04/404.jpg\";s:12:\"tmpl_created\";i:1587474710;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/blocks/online-course-404/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:35:\"[\"404\",\"Course Online\",\"Education\"]\";s:10:\"menu_order\";i:462;s:16:\"popularity_index\";i:682;s:11:\"trend_index\";i:498;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:657;a:18:{s:4:\"tmpl\";i:987;s:2:\"id\";i:13387;s:5:\"title\";s:32:\"Online Course &#8211; End Lesson\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2020/04/Lesson-End-.jpg\";s:12:\"tmpl_created\";i:1587474682;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:130:\"https://library.elementor.com/blocks/online-course-end-lesson/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:29:\"[\"Course Online\",\"Education\"]\";s:10:\"menu_order\";i:464;s:16:\"popularity_index\";i:653;s:11:\"trend_index\";i:408;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:658;a:18:{s:4:\"tmpl\";i:989;s:2:\"id\";i:13369;s:5:\"title\";s:28:\"Online Course &#8211; Footer\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2020/04/Footer.jpg\";s:12:\"tmpl_created\";i:1587474701;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:126:\"https://library.elementor.com/blocks/online-course-footer/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:38:\"[\"Course Online\",\"Education\",\"Footer\"]\";s:10:\"menu_order\";i:466;s:16:\"popularity_index\";i:389;s:11:\"trend_index\";i:308;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:659;a:18:{s:4:\"tmpl\";i:988;s:2:\"id\";i:13378;s:5:\"title\";s:28:\"Online Course &#8211; Header\";s:9:\"thumbnail\";s:92:\"https://library.elementor.com/wp-content/uploads/2020/06/Header-education-online-courses.jpg\";s:12:\"tmpl_created\";i:1587474693;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:126:\"https://library.elementor.com/blocks/online-course-header/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:38:\"[\"Course Online\",\"Education\",\"Header\"]\";s:10:\"menu_order\";i:469;s:16:\"popularity_index\";i:492;s:11:\"trend_index\";i:519;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:660;a:18:{s:4:\"tmpl\";i:986;s:2:\"id\";i:13395;s:5:\"title\";s:34:\"Online Course &#8211; Start Lesson\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2020/04/Lesson-Start.jpg\";s:12:\"tmpl_created\";i:1587474673;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:132:\"https://library.elementor.com/blocks/online-course-start-lesson/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:29:\"[\"Course Online\",\"Education\"]\";s:10:\"menu_order\";i:471;s:16:\"popularity_index\";i:672;s:11:\"trend_index\";i:578;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:661;a:18:{s:4:\"tmpl\";i:953;s:2:\"id\";i:13089;s:5:\"title\";s:23:\"Photography &#8211; 404\";s:9:\"thumbnail\";s:66:\"https://library.elementor.com/wp-content/uploads/2020/02/404_s.png\";s:12:\"tmpl_created\";i:1582091623;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:121:\"https://library.elementor.com/blocks/photography-404/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:33:\"[\"404\",\"Photography\",\"Portfolio\"]\";s:10:\"menu_order\";i:473;s:16:\"popularity_index\";i:702;s:11:\"trend_index\";i:706;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:662;a:18:{s:4:\"tmpl\";i:954;s:2:\"id\";i:13096;s:5:\"title\";s:32:\"Photography &#8211; Archiv Media\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2020/02/Archiv_s.png\";s:12:\"tmpl_created\";i:1582091742;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:130:\"https://library.elementor.com/blocks/photography-archiv-media/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:27:\"[\"Photography\",\"Portfolio\"]\";s:10:\"menu_order\";i:475;s:16:\"popularity_index\";i:631;s:11:\"trend_index\";i:405;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:663;a:18:{s:4:\"tmpl\";i:955;s:2:\"id\";i:13103;s:5:\"title\";s:26:\"Photography &#8211; Footer\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2020/02/Footer_s.png\";s:12:\"tmpl_created\";i:1582091903;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:124:\"https://library.elementor.com/blocks/photography-footer/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:36:\"[\"Footer\",\"Photography\",\"Portfolio\"]\";s:10:\"menu_order\";i:477;s:16:\"popularity_index\";i:422;s:11:\"trend_index\";i:230;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:664;a:18:{s:4:\"tmpl\";i:957;s:2:\"id\";i:13112;s:5:\"title\";s:26:\"Photography &#8211; Header\";s:9:\"thumbnail\";s:89:\"https://library.elementor.com/wp-content/uploads/2020/06/Header-photography-portfolio.png\";s:12:\"tmpl_created\";i:1582092483;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:124:\"https://library.elementor.com/blocks/photography-header/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:36:\"[\"Header\",\"Photography\",\"Portfolio\"]\";s:10:\"menu_order\";i:478;s:16:\"popularity_index\";i:325;s:11:\"trend_index\";i:205;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:665;a:18:{s:4:\"tmpl\";i:956;s:2:\"id\";i:13120;s:5:\"title\";s:31:\"Photography &#8211; Single Post\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2020/02/Post_s.png\";s:12:\"tmpl_created\";i:1582092351;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:129:\"https://library.elementor.com/blocks/photography-single-post/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:27:\"[\"Photography\",\"Portfolio\"]\";s:10:\"menu_order\";i:480;s:16:\"popularity_index\";i:671;s:11:\"trend_index\";i:645;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:666;a:18:{s:4:\"tmpl\";i:901;s:2:\"id\";i:11807;s:5:\"title\";s:9:\"Portfolio\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2019/09/404_small.png\";s:12:\"tmpl_created\";i:1569430070;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/blocks/portfolio-20/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:40:\"[\"404\",\"Creative Portfolio\",\"Portfolio\"]\";s:10:\"menu_order\";i:483;s:16:\"popularity_index\";i:480;s:11:\"trend_index\";i:497;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:667;a:18:{s:4:\"tmpl\";i:900;s:2:\"id\";i:11832;s:5:\"title\";s:9:\"Portfolio\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2019/09/Footer_small.png\";s:12:\"tmpl_created\";i:1569430019;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/blocks/portfolio-19/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:43:\"[\"Creative Portfolio\",\"Footer\",\"Portfolio\"]\";s:10:\"menu_order\";i:484;s:16:\"popularity_index\";i:246;s:11:\"trend_index\";i:102;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:668;a:18:{s:4:\"tmpl\";i:898;s:2:\"id\";i:11847;s:5:\"title\";s:9:\"Portfolio\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2019/09/Archiv_small.png\";s:12:\"tmpl_created\";i:1569430010;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/portfolio-8/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:34:\"[\"Creative Portfolio\",\"Portfolio\"]\";s:10:\"menu_order\";i:487;s:16:\"popularity_index\";i:336;s:11:\"trend_index\";i:455;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:669;a:18:{s:4:\"tmpl\";i:897;s:2:\"id\";i:11854;s:5:\"title\";s:9:\"Portfolio\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2019/09/Post_small.png\";s:12:\"tmpl_created\";i:1569429983;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/portfolio/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:34:\"[\"Creative Portfolio\",\"Portfolio\"]\";s:10:\"menu_order\";i:489;s:16:\"popularity_index\";i:482;s:11:\"trend_index\";i:609;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:670;a:18:{s:4:\"tmpl\";i:904;s:2:\"id\";i:11890;s:5:\"title\";s:9:\"Portfolio\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2020/06/Header-design-portfolio.png\";s:12:\"tmpl_created\";i:1571907344;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/portfolio-9/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:43:\"[\"Creative Portfolio\",\"Header\",\"Portfolio\"]\";s:10:\"menu_order\";i:491;s:16:\"popularity_index\";i:306;s:11:\"trend_index\";i:364;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:671;a:18:{s:4:\"tmpl\";i:896;s:2:\"id\";i:11861;s:5:\"title\";s:27:\"Portfolio &#8211; Project 1\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2019/09/Project1_small.png\";s:12:\"tmpl_created\";i:1569429975;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:125:\"https://library.elementor.com/blocks/portfolio-project-1/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:34:\"[\"Creative Portfolio\",\"Portfolio\"]\";s:10:\"menu_order\";i:493;s:16:\"popularity_index\";i:643;s:11:\"trend_index\";i:764;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:672;a:18:{s:4:\"tmpl\";i:895;s:2:\"id\";i:11870;s:5:\"title\";s:27:\"Portfolio &#8211; Project 2\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2019/09/Project2_small.png\";s:12:\"tmpl_created\";i:1569429964;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:125:\"https://library.elementor.com/blocks/portfolio-project-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:34:\"[\"Creative Portfolio\",\"Portfolio\"]\";s:10:\"menu_order\";i:495;s:16:\"popularity_index\";i:662;s:11:\"trend_index\";i:816;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:673;a:18:{s:4:\"tmpl\";i:903;s:2:\"id\";i:11897;s:5:\"title\";s:27:\"Portfolio &#8211; Project 2\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2019/09/Project2_small.png\";s:12:\"tmpl_created\";i:1569494236;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:127:\"https://library.elementor.com/blocks/portfolio-project-2-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:34:\"[\"Creative Portfolio\",\"Portfolio\"]\";s:10:\"menu_order\";i:496;s:16:\"popularity_index\";i:733;s:11:\"trend_index\";i:744;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:674;a:18:{s:4:\"tmpl\";i:894;s:2:\"id\";i:11877;s:5:\"title\";s:27:\"Portfolio &#8211; Project 3\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2019/09/Project3_small.png\";s:12:\"tmpl_created\";i:1569429954;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:125:\"https://library.elementor.com/blocks/portfolio-project-3/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:34:\"[\"Creative Portfolio\",\"Portfolio\"]\";s:10:\"menu_order\";i:498;s:16:\"popularity_index\";i:692;s:11:\"trend_index\";i:0;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:675;a:18:{s:4:\"tmpl\";i:597;s:2:\"id\";i:5019;s:5:\"title\";s:11:\"Portfolio 1\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2018/03/portfolio_black_1.png\";s:12:\"tmpl_created\";i:1520520580;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/portfolio-1/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:9:\"portfolio\";s:4:\"tags\";s:13:\"[\"Portfolio\"]\";s:10:\"menu_order\";i:500;s:16:\"popularity_index\";i:170;s:11:\"trend_index\";i:236;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:676;a:18:{s:4:\"tmpl\";i:609;s:2:\"id\";i:5141;s:5:\"title\";s:12:\"Portfolio 10\";s:9:\"thumbnail\";s:79:\"https://library.elementor.com/wp-content/uploads/2018/03/portfolio_white_10.png\";s:12:\"tmpl_created\";i:1520520601;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/blocks/portfolio-10/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:9:\"portfolio\";s:4:\"tags\";s:13:\"[\"Portfolio\"]\";s:10:\"menu_order\";i:503;s:16:\"popularity_index\";i:416;s:11:\"trend_index\";i:478;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:677;a:18:{s:4:\"tmpl\";i:598;s:2:\"id\";i:5027;s:5:\"title\";s:12:\"Portfolio 11\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2018/03/portfolio_white_2.png\";s:12:\"tmpl_created\";i:1520520581;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/blocks/portfolio-11/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:9:\"portfolio\";s:4:\"tags\";s:13:\"[\"Portfolio\"]\";s:10:\"menu_order\";i:504;s:16:\"popularity_index\";i:304;s:11:\"trend_index\";i:421;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:678;a:18:{s:4:\"tmpl\";i:599;s:2:\"id\";i:5037;s:5:\"title\";s:12:\"Portfolio 12\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2018/03/portfolio_white_3.png\";s:12:\"tmpl_created\";i:1520520583;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/blocks/portfolio-12/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:9:\"portfolio\";s:4:\"tags\";s:13:\"[\"Portfolio\"]\";s:10:\"menu_order\";i:507;s:16:\"popularity_index\";i:279;s:11:\"trend_index\";i:399;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:679;a:18:{s:4:\"tmpl\";i:600;s:2:\"id\";i:5057;s:5:\"title\";s:12:\"Portfolio 13\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2018/03/portfolio_white_4.png\";s:12:\"tmpl_created\";i:1520520586;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/blocks/portfolio-13/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:9:\"portfolio\";s:4:\"tags\";s:13:\"[\"Portfolio\"]\";s:10:\"menu_order\";i:509;s:16:\"popularity_index\";i:239;s:11:\"trend_index\";i:288;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:680;a:18:{s:4:\"tmpl\";i:601;s:2:\"id\";i:5071;s:5:\"title\";s:12:\"Portfolio 14\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2018/03/portfolio_white_5.png\";s:12:\"tmpl_created\";i:1520520588;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/blocks/portfolio-14/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:9:\"portfolio\";s:4:\"tags\";s:13:\"[\"Portfolio\"]\";s:10:\"menu_order\";i:511;s:16:\"popularity_index\";i:276;s:11:\"trend_index\";i:329;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:681;a:18:{s:4:\"tmpl\";i:603;s:2:\"id\";i:5090;s:5:\"title\";s:12:\"Portfolio 15\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2018/03/portfolio_white_6.png\";s:12:\"tmpl_created\";i:1520520591;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/blocks/portfolio-15/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:9:\"portfolio\";s:4:\"tags\";s:13:\"[\"Portfolio\"]\";s:10:\"menu_order\";i:513;s:16:\"popularity_index\";i:186;s:11:\"trend_index\";i:283;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:682;a:18:{s:4:\"tmpl\";i:604;s:2:\"id\";i:5098;s:5:\"title\";s:12:\"Portfolio 16\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2018/03/portfolio_white_7.png\";s:12:\"tmpl_created\";i:1520520593;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/blocks/portfolio-16/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:9:\"portfolio\";s:4:\"tags\";s:13:\"[\"Portfolio\"]\";s:10:\"menu_order\";i:515;s:16:\"popularity_index\";i:156;s:11:\"trend_index\";i:211;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:683;a:18:{s:4:\"tmpl\";i:606;s:2:\"id\";i:5115;s:5:\"title\";s:12:\"Portfolio 17\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2018/03/portfolio_white_8.png\";s:12:\"tmpl_created\";i:1520520596;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/blocks/portfolio-17/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:9:\"portfolio\";s:4:\"tags\";s:13:\"[\"Portfolio\"]\";s:10:\"menu_order\";i:517;s:16:\"popularity_index\";i:19;s:11:\"trend_index\";i:22;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:684;a:18:{s:4:\"tmpl\";i:608;s:2:\"id\";i:5133;s:5:\"title\";s:12:\"Portfolio 18\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2018/03/portfolio_white_9.png\";s:12:\"tmpl_created\";i:1520520599;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/blocks/portfolio-18/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:9:\"portfolio\";s:4:\"tags\";s:13:\"[\"Portfolio\"]\";s:10:\"menu_order\";i:519;s:16:\"popularity_index\";i:180;s:11:\"trend_index\";i:280;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:685;a:18:{s:4:\"tmpl\";i:610;s:2:\"id\";i:5149;s:5:\"title\";s:11:\"Portfolio 2\";s:9:\"thumbnail\";s:79:\"https://library.elementor.com/wp-content/uploads/2018/03/portfolio_black_10.png\";s:12:\"tmpl_created\";i:1520520602;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/portfolio-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:9:\"portfolio\";s:4:\"tags\";s:13:\"[\"Portfolio\"]\";s:10:\"menu_order\";i:521;s:16:\"popularity_index\";i:413;s:11:\"trend_index\";i:635;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:686;a:18:{s:4:\"tmpl\";i:468;s:2:\"id\";i:5045;s:5:\"title\";s:11:\"Portfolio 3\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2018/03/portfolio_black_2.png\";s:12:\"tmpl_created\";i:1520443423;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/portfolio-3/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:9:\"portfolio\";s:4:\"tags\";s:13:\"[\"Portfolio\"]\";s:10:\"menu_order\";i:523;s:16:\"popularity_index\";i:636;s:11:\"trend_index\";i:608;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:687;a:18:{s:4:\"tmpl\";i:602;s:2:\"id\";i:5082;s:5:\"title\";s:11:\"Portfolio 4\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2018/03/portfolio_black_4.png\";s:12:\"tmpl_created\";i:1520520589;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/portfolio-4/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:9:\"portfolio\";s:4:\"tags\";s:13:\"[\"Portfolio\"]\";s:10:\"menu_order\";i:524;s:16:\"popularity_index\";i:558;s:11:\"trend_index\";i:654;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:688;a:18:{s:4:\"tmpl\";i:605;s:2:\"id\";i:5107;s:5:\"title\";s:11:\"Portfolio 5\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2018/03/portfolio_black_7.png\";s:12:\"tmpl_created\";i:1520520594;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/portfolio-5/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:9:\"portfolio\";s:4:\"tags\";s:13:\"[\"Portfolio\"]\";s:10:\"menu_order\";i:527;s:16:\"popularity_index\";i:380;s:11:\"trend_index\";i:347;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:689;a:18:{s:4:\"tmpl\";i:607;s:2:\"id\";i:5125;s:5:\"title\";s:11:\"Portfolio 6\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2018/03/portfolio_black_8.png\";s:12:\"tmpl_created\";i:1520520597;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/portfolio-6/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:9:\"portfolio\";s:4:\"tags\";s:13:\"[\"Portfolio\"]\";s:10:\"menu_order\";i:529;s:16:\"popularity_index\";i:236;s:11:\"trend_index\";i:386;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:690;a:18:{s:4:\"tmpl\";i:596;s:2:\"id\";i:5007;s:5:\"title\";s:11:\"Portfolio 7\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2018/03/portfolio_white_1.png\";s:12:\"tmpl_created\";i:1520520578;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/portfolio-7/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:9:\"portfolio\";s:4:\"tags\";s:13:\"[\"Portfolio\"]\";s:10:\"menu_order\";i:530;s:16:\"popularity_index\";i:44;s:11:\"trend_index\";i:183;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:691;a:18:{s:4:\"tmpl\";i:434;s:2:\"id\";i:4509;s:5:\"title\";s:9:\"Pricing 1\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/02/price_black_1.png\";s:12:\"tmpl_created\";i:1520443310;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/pricing-1/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"pricing\";s:4:\"tags\";s:11:\"[\"Pricing\"]\";s:10:\"menu_order\";i:532;s:16:\"popularity_index\";i:703;s:11:\"trend_index\";i:641;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:692;a:18:{s:4:\"tmpl\";i:439;s:2:\"id\";i:4553;s:5:\"title\";s:10:\"Pricing 10\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/02/price_white_4.png\";s:12:\"tmpl_created\";i:1520443319;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/pricing-10/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"pricing\";s:4:\"tags\";s:11:\"[\"Pricing\"]\";s:10:\"menu_order\";i:534;s:16:\"popularity_index\";i:511;s:11:\"trend_index\";i:506;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:693;a:18:{s:4:\"tmpl\";i:441;s:2:\"id\";i:4572;s:5:\"title\";s:10:\"Pricing 11\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/02/price_white_5.png\";s:12:\"tmpl_created\";i:1520443324;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/pricing-11/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"pricing\";s:4:\"tags\";s:11:\"[\"Pricing\"]\";s:10:\"menu_order\";i:537;s:16:\"popularity_index\";i:308;s:11:\"trend_index\";i:248;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:694;a:18:{s:4:\"tmpl\";i:442;s:2:\"id\";i:4580;s:5:\"title\";s:10:\"Pricing 12\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/02/price_white_6.png\";s:12:\"tmpl_created\";i:1520443326;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/pricing-12/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"pricing\";s:4:\"tags\";s:11:\"[\"Pricing\"]\";s:10:\"menu_order\";i:539;s:16:\"popularity_index\";i:576;s:11:\"trend_index\";i:526;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:695;a:18:{s:4:\"tmpl\";i:444;s:2:\"id\";i:4597;s:5:\"title\";s:10:\"Pricing 13\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/02/price_white_7.png\";s:12:\"tmpl_created\";i:1520443330;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/pricing-13/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"pricing\";s:4:\"tags\";s:11:\"[\"Pricing\"]\";s:10:\"menu_order\";i:540;s:16:\"popularity_index\";i:613;s:11:\"trend_index\";i:450;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:696;a:18:{s:4:\"tmpl\";i:446;s:2:\"id\";i:4613;s:5:\"title\";s:10:\"Pricing 14\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/02/price_white_8.png\";s:12:\"tmpl_created\";i:1520443334;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/pricing-14/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"pricing\";s:4:\"tags\";s:11:\"[\"Pricing\"]\";s:10:\"menu_order\";i:543;s:16:\"popularity_index\";i:581;s:11:\"trend_index\";i:568;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:697;a:18:{s:4:\"tmpl\";i:436;s:2:\"id\";i:4529;s:5:\"title\";s:9:\"Pricing 2\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/02/price_black_2.png\";s:12:\"tmpl_created\";i:1520443314;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/pricing-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"pricing\";s:4:\"tags\";s:11:\"[\"Pricing\"]\";s:10:\"menu_order\";i:545;s:16:\"popularity_index\";i:609;s:11:\"trend_index\";i:613;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:698;a:18:{s:4:\"tmpl\";i:438;s:2:\"id\";i:4545;s:5:\"title\";s:9:\"Pricing 3\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/02/price_black_3.png\";s:12:\"tmpl_created\";i:1520443317;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/pricing-3/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"pricing\";s:4:\"tags\";s:11:\"[\"Pricing\"]\";s:10:\"menu_order\";i:547;s:16:\"popularity_index\";i:707;s:11:\"trend_index\";i:825;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:699;a:18:{s:4:\"tmpl\";i:440;s:2:\"id\";i:4562;s:5:\"title\";s:9:\"Pricing 4\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/02/price_black_4.png\";s:12:\"tmpl_created\";i:1520443322;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/pricing-4/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"pricing\";s:4:\"tags\";s:11:\"[\"Pricing\"]\";s:10:\"menu_order\";i:549;s:16:\"popularity_index\";i:697;s:11:\"trend_index\";i:821;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:700;a:18:{s:4:\"tmpl\";i:443;s:2:\"id\";i:4589;s:5:\"title\";s:9:\"Pricing 5\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/02/price_black_6.png\";s:12:\"tmpl_created\";i:1520443327;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/pricing-5/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"pricing\";s:4:\"tags\";s:11:\"[\"Pricing\"]\";s:10:\"menu_order\";i:551;s:16:\"popularity_index\";i:716;s:11:\"trend_index\";i:639;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:701;a:18:{s:4:\"tmpl\";i:445;s:2:\"id\";i:4605;s:5:\"title\";s:9:\"Pricing 6\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/02/price_black_7.png\";s:12:\"tmpl_created\";i:1520443332;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/pricing-6/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"pricing\";s:4:\"tags\";s:11:\"[\"Pricing\"]\";s:10:\"menu_order\";i:553;s:16:\"popularity_index\";i:738;s:11:\"trend_index\";i:773;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:702;a:18:{s:4:\"tmpl\";i:433;s:2:\"id\";i:4500;s:5:\"title\";s:9:\"Pricing 7\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/02/price_white_1.png\";s:12:\"tmpl_created\";i:1520443308;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/pricing-7/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"pricing\";s:4:\"tags\";s:11:\"[\"Pricing\"]\";s:10:\"menu_order\";i:554;s:16:\"popularity_index\";i:500;s:11:\"trend_index\";i:451;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:703;a:18:{s:4:\"tmpl\";i:435;s:2:\"id\";i:4521;s:5:\"title\";s:9:\"Pricing 8\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/02/price_white_2.png\";s:12:\"tmpl_created\";i:1520443312;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/pricing-8/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"pricing\";s:4:\"tags\";s:11:\"[\"Pricing\"]\";s:10:\"menu_order\";i:557;s:16:\"popularity_index\";i:311;s:11:\"trend_index\";i:372;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:704;a:18:{s:4:\"tmpl\";i:437;s:2:\"id\";i:4537;s:5:\"title\";s:9:\"Pricing 9\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/02/price_white_3.png\";s:12:\"tmpl_created\";i:1520443315;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/pricing-9/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"pricing\";s:4:\"tags\";s:11:\"[\"Pricing\"]\";s:10:\"menu_order\";i:559;s:16:\"popularity_index\";i:589;s:11:\"trend_index\";i:841;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:705;a:18:{s:4:\"tmpl\";i:701;s:2:\"id\";i:9239;s:5:\"title\";s:17:\"product archive 1\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2018/07/product-archive-350-1.png\";s:12:\"tmpl_created\";i:1532953482;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/blocks/product-archive-1/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:15:\"product archive\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:561;s:16:\"popularity_index\";i:60;s:11:\"trend_index\";i:25;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:706;a:18:{s:4:\"tmpl\";i:702;s:2:\"id\";i:9247;s:5:\"title\";s:17:\"product archive 2\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2018/07/product-archive-350-2.png\";s:12:\"tmpl_created\";i:1532953793;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/blocks/product-archive-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:15:\"product archive\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:562;s:16:\"popularity_index\";i:71;s:11:\"trend_index\";i:30;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:707;a:18:{s:4:\"tmpl\";i:703;s:2:\"id\";i:9254;s:5:\"title\";s:17:\"product archive 3\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2018/07/product-archive-350-3.png\";s:12:\"tmpl_created\";i:1532954032;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/blocks/product-archive-3/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:15:\"product archive\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:563;s:16:\"popularity_index\";i:73;s:11:\"trend_index\";i:44;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:708;a:18:{s:4:\"tmpl\";i:1046;s:2:\"id\";i:15204;s:5:\"title\";s:24:\"Psychologist &#8211; 404\";s:9:\"thumbnail\";s:64:\"https://library.elementor.com/wp-content/uploads/2020/09/404.jpg\";s:12:\"tmpl_created\";i:1600161419;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/blocks/psychologist-404/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:40:\"[\"404\",\"Psychologist\",\"Psychotherapist\"]\";s:10:\"menu_order\";i:564;s:16:\"popularity_index\";i:574;s:11:\"trend_index\";i:493;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:709;a:18:{s:4:\"tmpl\";i:1047;s:2:\"id\";i:15212;s:5:\"title\";s:28:\"Psychologist &#8211; Archive\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2020/09/Blog.jpg\";s:12:\"tmpl_created\";i:1600162340;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:126:\"https://library.elementor.com/blocks/psychologist-archive/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:34:\"[\"Psychologist\",\"Psychotherapist\"]\";s:10:\"menu_order\";i:565;s:16:\"popularity_index\";i:379;s:11:\"trend_index\";i:358;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:710;a:18:{s:4:\"tmpl\";i:1048;s:2:\"id\";i:15219;s:5:\"title\";s:27:\"Psychologist &#8211; Footer\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2020/09/Footer.jpg\";s:12:\"tmpl_created\";i:1600163069;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:125:\"https://library.elementor.com/blocks/psychologist-footer/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:43:\"[\"Footer\",\"Psychologist\",\"Psychotherapist\"]\";s:10:\"menu_order\";i:566;s:16:\"popularity_index\";i:599;s:11:\"trend_index\";i:500;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:711;a:18:{s:4:\"tmpl\";i:1049;s:2:\"id\";i:15230;s:5:\"title\";s:27:\"Psychologist &#8211; Header\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2020/09/Header.png\";s:12:\"tmpl_created\";i:1600163444;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:125:\"https://library.elementor.com/blocks/psychologist-header/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:43:\"[\"Header\",\"Psychologist\",\"Psychotherapist\"]\";s:10:\"menu_order\";i:567;s:16:\"popularity_index\";i:429;s:11:\"trend_index\";i:423;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:712;a:18:{s:4:\"tmpl\";i:1050;s:2:\"id\";i:15240;s:5:\"title\";s:34:\"Psychologist &#8211; single post 1\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2020/09/Single-Post.png\";s:12:\"tmpl_created\";i:1600164087;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:132:\"https://library.elementor.com/blocks/psychologist-single-post-1/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:34:\"[\"Psychologist\",\"Psychotherapist\"]\";s:10:\"menu_order\";i:568;s:16:\"popularity_index\";i:562;s:11:\"trend_index\";i:570;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:713;a:18:{s:4:\"tmpl\";i:1051;s:2:\"id\";i:15251;s:5:\"title\";s:34:\"Psychologist &#8211; single post 2\";s:9:\"thumbnail\";s:80:\"https://library.elementor.com/wp-content/uploads/2020/09/Single-Service-Page.png\";s:12:\"tmpl_created\";i:1600165179;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:132:\"https://library.elementor.com/blocks/psychologist-single-post-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:34:\"[\"Psychologist\",\"Psychotherapist\"]\";s:10:\"menu_order\";i:569;s:16:\"popularity_index\";i:507;s:11:\"trend_index\";i:368;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:714;a:18:{s:4:\"tmpl\";i:412;s:2:\"id\";i:4313;s:5:\"title\";s:11:\"Services 13\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/02/Service_white_8.png\";s:12:\"tmpl_created\";i:1520443268;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/services-13/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"Services\"]\";s:10:\"menu_order\";i:570;s:16:\"popularity_index\";i:115;s:11:\"trend_index\";i:53;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:715;a:18:{s:4:\"tmpl\";i:413;s:2:\"id\";i:4324;s:5:\"title\";s:11:\"Services 14\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/02/Service_white_9.png\";s:12:\"tmpl_created\";i:1520443270;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/services-14/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"Services\"]\";s:10:\"menu_order\";i:571;s:16:\"popularity_index\";i:277;s:11:\"trend_index\";i:138;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:716;a:18:{s:4:\"tmpl\";i:418;s:2:\"id\";i:4368;s:5:\"title\";s:11:\"Services 16\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/02/Service_white_13.png\";s:12:\"tmpl_created\";i:1520443279;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/services-16/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"Services\"]\";s:10:\"menu_order\";i:572;s:16:\"popularity_index\";i:62;s:11:\"trend_index\";i:59;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:717;a:18:{s:4:\"tmpl\";i:420;s:2:\"id\";i:4391;s:5:\"title\";s:11:\"Services 17\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/02/Service_white_14.png\";s:12:\"tmpl_created\";i:1520443283;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/services-17/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"Services\"]\";s:10:\"menu_order\";i:573;s:16:\"popularity_index\";i:153;s:11:\"trend_index\";i:120;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:718;a:18:{s:4:\"tmpl\";i:403;s:2:\"id\";i:4235;s:5:\"title\";s:11:\"Services 18\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/02/Service_white_2.png\";s:12:\"tmpl_created\";i:1520443251;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/services-18/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"Services\"]\";s:10:\"menu_order\";i:574;s:16:\"popularity_index\";i:273;s:11:\"trend_index\";i:172;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:719;a:18:{s:4:\"tmpl\";i:417;s:2:\"id\";i:4357;s:5:\"title\";s:11:\"Services 20\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/02/Service_white_12.png\";s:12:\"tmpl_created\";i:1520443277;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/services-20/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"Services\"]\";s:10:\"menu_order\";i:575;s:16:\"popularity_index\";i:45;s:11:\"trend_index\";i:45;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:720;a:18:{s:4:\"tmpl\";i:415;s:2:\"id\";i:4341;s:5:\"title\";s:11:\"Services 21\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/02/Service_white_11.png\";s:12:\"tmpl_created\";i:1520443274;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/services-21/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"Services\"]\";s:10:\"menu_order\";i:576;s:16:\"popularity_index\";i:142;s:11:\"trend_index\";i:114;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:721;a:18:{s:4:\"tmpl\";i:414;s:2:\"id\";i:4332;s:5:\"title\";s:11:\"Services 22\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/02/Service_white_10.png\";s:12:\"tmpl_created\";i:1520443272;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/services-22/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"Services\"]\";s:10:\"menu_order\";i:577;s:16:\"popularity_index\";i:138;s:11:\"trend_index\";i:149;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:722;a:18:{s:4:\"tmpl\";i:401;s:2:\"id\";i:4212;s:5:\"title\";s:11:\"Services 23\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/02/Service_white_1.png\";s:12:\"tmpl_created\";i:1520443248;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/services-23/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"Services\"]\";s:10:\"menu_order\";i:578;s:16:\"popularity_index\";i:136;s:11:\"trend_index\";i:302;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:723;a:18:{s:4:\"tmpl\";i:408;s:2:\"id\";i:4276;s:5:\"title\";s:11:\"Services 24\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/02/Service_black_4.png\";s:12:\"tmpl_created\";i:1520443261;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/services-24/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"Services\"]\";s:10:\"menu_order\";i:579;s:16:\"popularity_index\";i:353;s:11:\"trend_index\";i:514;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:724;a:18:{s:4:\"tmpl\";i:406;s:2:\"id\";i:4260;s:5:\"title\";s:11:\"Services 25\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/02/Service_black_3.png\";s:12:\"tmpl_created\";i:1520443257;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/services-25/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"Services\"]\";s:10:\"menu_order\";i:580;s:16:\"popularity_index\";i:184;s:11:\"trend_index\";i:209;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:725;a:18:{s:4:\"tmpl\";i:404;s:2:\"id\";i:4244;s:5:\"title\";s:11:\"Services 26\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/02/Service_black_2.png\";s:12:\"tmpl_created\";i:1520443253;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/services-26/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"Services\"]\";s:10:\"menu_order\";i:581;s:16:\"popularity_index\";i:544;s:11:\"trend_index\";i:596;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:726;a:18:{s:4:\"tmpl\";i:421;s:2:\"id\";i:4400;s:5:\"title\";s:11:\"Services 27\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/02/Service_black_13.png\";s:12:\"tmpl_created\";i:1520443285;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/services-27/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"Services\"]\";s:10:\"menu_order\";i:582;s:16:\"popularity_index\";i:286;s:11:\"trend_index\";i:438;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:727;a:18:{s:4:\"tmpl\";i:419;s:2:\"id\";i:4376;s:5:\"title\";s:11:\"Services 28\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/02/Service_black_12.png\";s:12:\"tmpl_created\";i:1520443281;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/services-28/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"Services\"]\";s:10:\"menu_order\";i:583;s:16:\"popularity_index\";i:151;s:11:\"trend_index\";i:249;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:728;a:18:{s:4:\"tmpl\";i:416;s:2:\"id\";i:4349;s:5:\"title\";s:11:\"Services 29\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/02/Service_black_11.png\";s:12:\"tmpl_created\";i:1520443275;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/services-29/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"Services\"]\";s:10:\"menu_order\";i:584;s:16:\"popularity_index\";i:330;s:11:\"trend_index\";i:483;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:729;a:18:{s:4:\"tmpl\";i:402;s:2:\"id\";i:4227;s:5:\"title\";s:11:\"Services 30\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/02/Service_black_1.png\";s:12:\"tmpl_created\";i:1520443250;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/services-30/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"Services\"]\";s:10:\"menu_order\";i:585;s:16:\"popularity_index\";i:351;s:11:\"trend_index\";i:553;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:730;a:18:{s:4:\"tmpl\";i:560;s:2:\"id\";i:6162;s:5:\"title\";s:11:\"Services 31\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/03/progress_white_1.png\";s:12:\"tmpl_created\";i:1520443668;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/services-31/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"stats\";s:4:\"tags\";s:9:\"[\"Stats\"]\";s:10:\"menu_order\";i:586;s:16:\"popularity_index\";i:372;s:11:\"trend_index\";i:550;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:731;a:18:{s:4:\"tmpl\";i:411;s:2:\"id\";i:4302;s:5:\"title\";s:10:\"Services 5\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/02/Service_white_7.png\";s:12:\"tmpl_created\";i:1520443266;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/services-5/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"Services\"]\";s:10:\"menu_order\";i:587;s:16:\"popularity_index\";i:58;s:11:\"trend_index\";i:97;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:732;a:18:{s:4:\"tmpl\";i:410;s:2:\"id\";i:4293;s:5:\"title\";s:10:\"Services 6\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/02/Service_white_6.png\";s:12:\"tmpl_created\";i:1520443265;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/services-6/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"Services\"]\";s:10:\"menu_order\";i:588;s:16:\"popularity_index\";i:288;s:11:\"trend_index\";i:269;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:733;a:18:{s:4:\"tmpl\";i:409;s:2:\"id\";i:4284;s:5:\"title\";s:10:\"Services 7\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/02/Service_white_5.png\";s:12:\"tmpl_created\";i:1520443263;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/services-7/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"Services\"]\";s:10:\"menu_order\";i:589;s:16:\"popularity_index\";i:27;s:11:\"trend_index\";i:21;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:734;a:18:{s:4:\"tmpl\";i:407;s:2:\"id\";i:4268;s:5:\"title\";s:10:\"Services 8\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/02/Service_white_4.png\";s:12:\"tmpl_created\";i:1520443259;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/services-8/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"Services\"]\";s:10:\"menu_order\";i:590;s:16:\"popularity_index\";i:173;s:11:\"trend_index\";i:213;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:735;a:18:{s:4:\"tmpl\";i:405;s:2:\"id\";i:4252;s:5:\"title\";s:10:\"Services 9\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/02/Service_white_3.png\";s:12:\"tmpl_created\";i:1520443255;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/services-9/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"Services\"]\";s:10:\"menu_order\";i:591;s:16:\"popularity_index\";i:46;s:11:\"trend_index\";i:99;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:736;a:18:{s:4:\"tmpl\";i:677;s:2:\"id\";i:8676;s:5:\"title\";s:13:\"single page 1\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2018/05/S_P350.6.jpg\";s:12:\"tmpl_created\";i:1527682423;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/blocks/single-page-1/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:592;s:16:\"popularity_index\";i:285;s:11:\"trend_index\";i:145;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:737;a:18:{s:4:\"tmpl\";i:678;s:2:\"id\";i:8678;s:5:\"title\";s:13:\"single page 2\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2018/05/S_P350.2.jpg\";s:12:\"tmpl_created\";i:1527682780;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/blocks/single-page-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:593;s:16:\"popularity_index\";i:140;s:11:\"trend_index\";i:82;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:738;a:18:{s:4:\"tmpl\";i:679;s:2:\"id\";i:8679;s:5:\"title\";s:13:\"single page 3\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2018/05/S_P350.3.jpg\";s:12:\"tmpl_created\";i:1527682847;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/blocks/single-page-3/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:594;s:16:\"popularity_index\";i:122;s:11:\"trend_index\";i:23;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:739;a:18:{s:4:\"tmpl\";i:680;s:2:\"id\";i:8680;s:5:\"title\";s:13:\"single page 4\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2018/05/S_P350.1.jpg\";s:12:\"tmpl_created\";i:1527682896;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/blocks/single-page-4/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:595;s:16:\"popularity_index\";i:373;s:11:\"trend_index\";i:190;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:740;a:18:{s:4:\"tmpl\";i:681;s:2:\"id\";i:8681;s:5:\"title\";s:13:\"single page 5\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2018/05/S_P350.5.jpg\";s:12:\"tmpl_created\";i:1527682969;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/blocks/single-page-5/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:596;s:16:\"popularity_index\";i:287;s:11:\"trend_index\";i:218;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:741;a:18:{s:4:\"tmpl\";i:682;s:2:\"id\";i:8682;s:5:\"title\";s:13:\"single page 6\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2018/05/S_P350.4.jpg\";s:12:\"tmpl_created\";i:1527683026;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/blocks/single-page-6/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:597;s:16:\"popularity_index\";i:412;s:11:\"trend_index\";i:227;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:742;a:18:{s:4:\"tmpl\";i:683;s:2:\"id\";i:8703;s:5:\"title\";s:13:\"single page 7\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2018/05/S_P350.7.jpg\";s:12:\"tmpl_created\";i:1527683072;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/blocks/single-page-7/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:598;s:16:\"popularity_index\";i:401;s:11:\"trend_index\";i:316;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:743;a:18:{s:4:\"tmpl\";i:640;s:2:\"id\";i:7650;s:5:\"title\";s:13:\"Single Post 1\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/03/single_post_1_v2.jpg\";s:12:\"tmpl_created\";i:1521557736;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/blocks/single-post-1/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:24:\"[\"Blog\",\"Post\",\"Single\"]\";s:10:\"menu_order\";i:599;s:16:\"popularity_index\";i:119;s:11:\"trend_index\";i:266;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:744;a:18:{s:4:\"tmpl\";i:639;s:2:\"id\";i:7663;s:5:\"title\";s:13:\"Single Post 2\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/03/single_post_2_v2.jpg\";s:12:\"tmpl_created\";i:1521547761;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/blocks/single-post-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:24:\"[\"Blog\",\"Post\",\"Single\"]\";s:10:\"menu_order\";i:600;s:16:\"popularity_index\";i:50;s:11:\"trend_index\";i:139;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:745;a:18:{s:4:\"tmpl\";i:705;s:2:\"id\";i:9296;s:5:\"title\";s:13:\"Single Post 3\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2018/09/3002.jpg\";s:12:\"tmpl_created\";i:1537440673;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/blocks/single-post-3/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:601;s:16:\"popularity_index\";i:213;s:11:\"trend_index\";i:204;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:746;a:18:{s:4:\"tmpl\";i:704;s:2:\"id\";i:9301;s:5:\"title\";s:13:\"Single Post 4\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2018/09/3003.jpg\";s:12:\"tmpl_created\";i:1537440661;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/blocks/single-post-4/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:602;s:16:\"popularity_index\";i:248;s:11:\"trend_index\";i:336;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:747;a:18:{s:4:\"tmpl\";i:706;s:2:\"id\";i:9313;s:5:\"title\";s:13:\"Single Post 5\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2018/09/3001.jpg\";s:12:\"tmpl_created\";i:1537440798;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/blocks/single-post-5/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:603;s:16:\"popularity_index\";i:197;s:11:\"trend_index\";i:177;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:748;a:18:{s:4:\"tmpl\";i:707;s:2:\"id\";i:9343;s:5:\"title\";s:13:\"Single Post 6\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2018/09/3004.jpg\";s:12:\"tmpl_created\";i:1537443531;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/blocks/single-post-6/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:604;s:16:\"popularity_index\";i:228;s:11:\"trend_index\";i:279;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:749;a:18:{s:4:\"tmpl\";i:708;s:2:\"id\";i:9349;s:5:\"title\";s:13:\"Single Post 7\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2018/09/3005.jpg\";s:12:\"tmpl_created\";i:1537443903;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/blocks/single-post-7/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:605;s:16:\"popularity_index\";i:158;s:11:\"trend_index\";i:253;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:750;a:18:{s:4:\"tmpl\";i:697;s:2:\"id\";i:9174;s:5:\"title\";s:17:\"single product 01\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2018/07/single_product01_350.png\";s:12:\"tmpl_created\";i:1532950125;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/blocks/single-product-01/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"single product\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:606;s:16:\"popularity_index\";i:31;s:11:\"trend_index\";i:6;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:751;a:18:{s:4:\"tmpl\";i:698;s:2:\"id\";i:9178;s:5:\"title\";s:17:\"single product 02\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2018/07/single_product02_350new.png\";s:12:\"tmpl_created\";i:1532951997;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/blocks/single-product-02/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"single product\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:607;s:16:\"popularity_index\";i:66;s:11:\"trend_index\";i:42;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:752;a:18:{s:4:\"tmpl\";i:699;s:2:\"id\";i:9180;s:5:\"title\";s:17:\"single product 03\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2018/07/single_product03_350.png\";s:12:\"tmpl_created\";i:1532952302;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/blocks/single-product-03/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"single product\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:608;s:16:\"popularity_index\";i:108;s:11:\"trend_index\";i:66;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:753;a:18:{s:4:\"tmpl\";i:700;s:2:\"id\";i:9182;s:5:\"title\";s:17:\"single product 04\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2018/07/single_product040_350.png\";s:12:\"tmpl_created\";i:1532952606;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/blocks/single-product-04/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"single product\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:609;s:16:\"popularity_index\";i:123;s:11:\"trend_index\";i:81;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:754;a:18:{s:4:\"tmpl\";i:555;s:2:\"id\";i:6114;s:5:\"title\";s:7:\"Stats 1\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/numbers_black_6.png\";s:12:\"tmpl_created\";i:1520443659;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/blocks/stats-1/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"stats\";s:4:\"tags\";s:11:\"[\"numbers\"]\";s:10:\"menu_order\";i:610;s:16:\"popularity_index\";i:434;s:11:\"trend_index\";i:692;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:755;a:18:{s:4:\"tmpl\";i:562;s:2:\"id\";i:6178;s:5:\"title\";s:8:\"Stats 10\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/03/progress_white_2.png\";s:12:\"tmpl_created\";i:1520443676;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/blocks/stats-10/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"stats\";s:4:\"tags\";s:9:\"[\"Stats\"]\";s:10:\"menu_order\";i:611;s:16:\"popularity_index\";i:435;s:11:\"trend_index\";i:755;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:756;a:18:{s:4:\"tmpl\";i:561;s:2:\"id\";i:6170;s:5:\"title\";s:8:\"Stats 11\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/03/progress_black_2.png\";s:12:\"tmpl_created\";i:1520443670;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/blocks/stats-11/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"stats\";s:4:\"tags\";s:9:\"[\"Stats\"]\";s:10:\"menu_order\";i:612;s:16:\"popularity_index\";i:366;s:11:\"trend_index\";i:552;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:757;a:18:{s:4:\"tmpl\";i:563;s:2:\"id\";i:6186;s:5:\"title\";s:8:\"Stats 12\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/03/progress_white_3.png\";s:12:\"tmpl_created\";i:1520443678;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/blocks/stats-12/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"stats\";s:4:\"tags\";s:9:\"[\"Stats\"]\";s:10:\"menu_order\";i:613;s:16:\"popularity_index\";i:569;s:11:\"trend_index\";i:811;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:758;a:18:{s:4:\"tmpl\";i:550;s:2:\"id\";i:6071;s:5:\"title\";s:8:\"Stats 13\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/numbers_white_3.png\";s:12:\"tmpl_created\";i:1520443649;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/blocks/stats-13/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"stats\";s:4:\"tags\";s:11:\"[\"numbers\"]\";s:10:\"menu_order\";i:614;s:16:\"popularity_index\";i:168;s:11:\"trend_index\";i:328;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:759;a:18:{s:4:\"tmpl\";i:554;s:2:\"id\";i:6106;s:5:\"title\";s:7:\"Stats 2\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/numbers_white_6.png\";s:12:\"tmpl_created\";i:1520443657;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/blocks/stats-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"stats\";s:4:\"tags\";s:11:\"[\"numbers\"]\";s:10:\"menu_order\";i:615;s:16:\"popularity_index\";i:361;s:11:\"trend_index\";i:784;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:760;a:18:{s:4:\"tmpl\";i:551;s:2:\"id\";i:6079;s:5:\"title\";s:7:\"Stats 3\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/numbers_white_4.png\";s:12:\"tmpl_created\";i:1520443651;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/blocks/stats-3/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"stats\";s:4:\"tags\";s:11:\"[\"numbers\"]\";s:10:\"menu_order\";i:616;s:16:\"popularity_index\";i:284;s:11:\"trend_index\";i:385;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:761;a:18:{s:4:\"tmpl\";i:552;s:2:\"id\";i:6089;s:5:\"title\";s:7:\"Stats 4\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/numbers_white_5.png\";s:12:\"tmpl_created\";i:1520443653;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/blocks/stats-4/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"stats\";s:4:\"tags\";s:9:\"[\"Stats\"]\";s:10:\"menu_order\";i:617;s:16:\"popularity_index\";i:205;s:11:\"trend_index\";i:452;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:762;a:18:{s:4:\"tmpl\";i:549;s:2:\"id\";i:6063;s:5:\"title\";s:7:\"Stats 5\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/numbers_white_2.png\";s:12:\"tmpl_created\";i:1520443647;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/blocks/stats-5/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"stats\";s:4:\"tags\";s:11:\"[\"numbers\"]\";s:10:\"menu_order\";i:618;s:16:\"popularity_index\";i:181;s:11:\"trend_index\";i:419;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:763;a:18:{s:4:\"tmpl\";i:553;s:2:\"id\";i:6097;s:5:\"title\";s:7:\"Stats 6\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/numbers_black_2.png\";s:12:\"tmpl_created\";i:1520443655;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/blocks/stats-6/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"stats\";s:4:\"tags\";s:11:\"[\"numbers\"]\";s:10:\"menu_order\";i:619;s:16:\"popularity_index\";i:264;s:11:\"trend_index\";i:492;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:764;a:18:{s:4:\"tmpl\";i:538;s:2:\"id\";i:5956;s:5:\"title\";s:7:\"Stats 7\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/numbers_black_1.png\";s:12:\"tmpl_created\";i:1520443623;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/blocks/stats-7/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"stats\";s:4:\"tags\";s:9:\"[\"Stats\"]\";s:10:\"menu_order\";i:620;s:16:\"popularity_index\";i:532;s:11:\"trend_index\";i:541;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:765;a:18:{s:4:\"tmpl\";i:537;s:2:\"id\";i:5947;s:5:\"title\";s:7:\"Stats 8\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/numbers_white_1.png\";s:12:\"tmpl_created\";i:1520443621;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/blocks/stats-8/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"stats\";s:4:\"tags\";s:9:\"[\"Stats\"]\";s:10:\"menu_order\";i:621;s:16:\"popularity_index\";i:368;s:11:\"trend_index\";i:531;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:766;a:18:{s:4:\"tmpl\";i:559;s:2:\"id\";i:6152;s:5:\"title\";s:7:\"Stats 9\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/03/progress_black_1.png\";s:12:\"tmpl_created\";i:1520443666;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/blocks/stats-9/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"stats\";s:4:\"tags\";s:9:\"[\"Stats\"]\";s:10:\"menu_order\";i:622;s:16:\"popularity_index\";i:272;s:11:\"trend_index\";i:557;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:767;a:18:{s:4:\"tmpl\";i:469;s:2:\"id\";i:5157;s:5:\"title\";s:11:\"Subscribe 1\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2018/03/subscribe_white_1.png\";s:12:\"tmpl_created\";i:1520443448;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/subscribe-1/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:9:\"subscribe\";s:4:\"tags\";s:20:\"[\"Form\",\"Subscribe\"]\";s:10:\"menu_order\";i:623;s:16:\"popularity_index\";i:340;s:11:\"trend_index\";i:293;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:768;a:18:{s:4:\"tmpl\";i:472;s:2:\"id\";i:5181;s:5:\"title\";s:11:\"Subscribe 2\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2018/03/subscribe_black_2.png\";s:12:\"tmpl_created\";i:1520443454;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/blocks/subscribe-2-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:9:\"subscribe\";s:4:\"tags\";s:20:\"[\"Form\",\"Subscribe\"]\";s:10:\"menu_order\";i:624;s:16:\"popularity_index\";i:451;s:11:\"trend_index\";i:340;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:769;a:18:{s:4:\"tmpl\";i:470;s:2:\"id\";i:5165;s:5:\"title\";s:11:\"Subscribe 3\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2018/03/subscribe_black_1.png\";s:12:\"tmpl_created\";i:1520443450;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/subscribe-3/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:9:\"subscribe\";s:4:\"tags\";s:20:\"[\"Form\",\"Subscribe\"]\";s:10:\"menu_order\";i:625;s:16:\"popularity_index\";i:520;s:11:\"trend_index\";i:620;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:770;a:18:{s:4:\"tmpl\";i:477;s:2:\"id\";i:5222;s:5:\"title\";s:11:\"Subscribe 4\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2018/03/subscribe_black_3.png\";s:12:\"tmpl_created\";i:1520443464;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/subscribe-4/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:9:\"subscribe\";s:4:\"tags\";s:20:\"[\"Form\",\"Subscribe\"]\";s:10:\"menu_order\";i:626;s:16:\"popularity_index\";i:397;s:11:\"trend_index\";i:427;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:771;a:18:{s:4:\"tmpl\";i:471;s:2:\"id\";i:5173;s:5:\"title\";s:11:\"Subscribe 5\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2018/03/subscribe_white_2.png\";s:12:\"tmpl_created\";i:1520443452;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/subscribe-5/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:9:\"subscribe\";s:4:\"tags\";s:20:\"[\"Form\",\"Subscribe\"]\";s:10:\"menu_order\";i:627;s:16:\"popularity_index\";i:261;s:11:\"trend_index\";i:237;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:772;a:18:{s:4:\"tmpl\";i:465;s:2:\"id\";i:4801;s:5:\"title\";s:7:\"Team 11\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/team_black_8.png\";s:12:\"tmpl_created\";i:1520443369;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/blocks/team-11/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"team\";s:4:\"tags\";s:8:\"[\"Team\"]\";s:10:\"menu_order\";i:628;s:16:\"popularity_index\";i:332;s:11:\"trend_index\";i:188;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:773;a:18:{s:4:\"tmpl\";i:462;s:2:\"id\";i:4770;s:5:\"title\";s:7:\"Team 12\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/team_white_6.png\";s:12:\"tmpl_created\";i:1520443364;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/team-12-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"team\";s:4:\"tags\";s:8:\"[\"Team\"]\";s:10:\"menu_order\";i:629;s:16:\"popularity_index\";i:432;s:11:\"trend_index\";i:488;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:774;a:18:{s:4:\"tmpl\";i:458;s:2:\"id\";i:4727;s:5:\"title\";s:7:\"Team 13\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/team_black_2.png\";s:12:\"tmpl_created\";i:1520443356;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/blocks/team-13/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"team\";s:4:\"tags\";s:8:\"[\"Team\"]\";s:10:\"menu_order\";i:630;s:16:\"popularity_index\";i:375;s:11:\"trend_index\";i:345;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:775;a:18:{s:4:\"tmpl\";i:543;s:2:\"id\";i:5999;s:5:\"title\";s:7:\"Team 14\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/team_black_10.png\";s:12:\"tmpl_created\";i:1520443634;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/blocks/team-14/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"team\";s:4:\"tags\";s:8:\"[\"Team\"]\";s:10:\"menu_order\";i:631;s:16:\"popularity_index\";i:110;s:11:\"trend_index\";i:318;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:776;a:18:{s:4:\"tmpl\";i:455;s:2:\"id\";i:4698;s:5:\"title\";s:7:\"Team 15\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/team_black_1.png\";s:12:\"tmpl_created\";i:1520443350;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/blocks/team-15/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"team\";s:4:\"tags\";s:8:\"[\"Team\"]\";s:10:\"menu_order\";i:632;s:16:\"popularity_index\";i:449;s:11:\"trend_index\";i:410;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:777;a:18:{s:4:\"tmpl\";i:463;s:2:\"id\";i:4781;s:5:\"title\";s:7:\"Team 16\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/team_white_7.png\";s:12:\"tmpl_created\";i:1520443365;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/blocks/team-16/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"team\";s:4:\"tags\";s:8:\"[\"Team\"]\";s:10:\"menu_order\";i:633;s:16:\"popularity_index\";i:267;s:11:\"trend_index\";i:330;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:778;a:18:{s:4:\"tmpl\";i:558;s:2:\"id\";i:6144;s:5:\"title\";s:7:\"Team 17\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/team_white_11.png\";s:12:\"tmpl_created\";i:1520443664;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/blocks/team-17/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"team\";s:4:\"tags\";s:8:\"[\"Team\"]\";s:10:\"menu_order\";i:634;s:16:\"popularity_index\";i:166;s:11:\"trend_index\";i:365;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:779;a:18:{s:4:\"tmpl\";i:464;s:2:\"id\";i:4793;s:5:\"title\";s:7:\"Team 18\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/team_white_8.png\";s:12:\"tmpl_created\";i:1520443367;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/blocks/team-18/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"team\";s:4:\"tags\";s:8:\"[\"Team\"]\";s:10:\"menu_order\";i:635;s:16:\"popularity_index\";i:207;s:11:\"trend_index\";i:173;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:780;a:18:{s:4:\"tmpl\";i:466;s:2:\"id\";i:4809;s:5:\"title\";s:7:\"Team 19\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/team_white_9.png\";s:12:\"tmpl_created\";i:1520443371;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/blocks/team-19/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"team\";s:4:\"tags\";s:8:\"[\"Team\"]\";s:10:\"menu_order\";i:636;s:16:\"popularity_index\";i:300;s:11:\"trend_index\";i:465;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:781;a:18:{s:4:\"tmpl\";i:459;s:2:\"id\";i:4736;s:5:\"title\";s:7:\"Team 20\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/team_white_4.png\";s:12:\"tmpl_created\";i:1520443358;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/blocks/team-20/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"team\";s:4:\"tags\";s:8:\"[\"Team\"]\";s:10:\"menu_order\";i:637;s:16:\"popularity_index\";i:144;s:11:\"trend_index\";i:159;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:782;a:18:{s:4:\"tmpl\";i:467;s:2:\"id\";i:4818;s:5:\"title\";s:7:\"Team 21\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/team_black_9.png\";s:12:\"tmpl_created\";i:1520443373;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/blocks/team-21/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"team\";s:4:\"tags\";s:8:\"[\"Team\"]\";s:10:\"menu_order\";i:638;s:16:\"popularity_index\";i:515;s:11:\"trend_index\";i:606;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:783;a:18:{s:4:\"tmpl\";i:461;s:2:\"id\";i:4759;s:5:\"title\";s:7:\"Team 22\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/team_white_5.png\";s:12:\"tmpl_created\";i:1520443362;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/blocks/team-22/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"team\";s:4:\"tags\";s:8:\"[\"Team\"]\";s:10:\"menu_order\";i:639;s:16:\"popularity_index\";i:299;s:11:\"trend_index\";i:376;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:784;a:18:{s:4:\"tmpl\";i:460;s:2:\"id\";i:4746;s:5:\"title\";s:7:\"Team 23\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/team_black_4.png\";s:12:\"tmpl_created\";i:1520443360;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/blocks/team-23/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"team\";s:4:\"tags\";s:8:\"[\"Team\"]\";s:10:\"menu_order\";i:640;s:16:\"popularity_index\";i:282;s:11:\"trend_index\";i:378;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:785;a:18:{s:4:\"tmpl\";i:457;s:2:\"id\";i:4718;s:5:\"title\";s:6:\"Team 4\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/team_white_3.png\";s:12:\"tmpl_created\";i:1520443354;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/team-4/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"team\";s:4:\"tags\";s:8:\"[\"Team\"]\";s:10:\"menu_order\";i:641;s:16:\"popularity_index\";i:192;s:11:\"trend_index\";i:359;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:786;a:18:{s:4:\"tmpl\";i:456;s:2:\"id\";i:4706;s:5:\"title\";s:6:\"Team 5\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/team_white_2.png\";s:12:\"tmpl_created\";i:1520443352;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/team-5/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"team\";s:4:\"tags\";s:8:\"[\"Team\"]\";s:10:\"menu_order\";i:642;s:16:\"popularity_index\";i:149;s:11:\"trend_index\";i:299;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:787;a:18:{s:4:\"tmpl\";i:544;s:2:\"id\";i:6008;s:5:\"title\";s:6:\"Team 6\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/team_white_10.png\";s:12:\"tmpl_created\";i:1520443636;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/team-6/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"team\";s:4:\"tags\";s:8:\"[\"Team\"]\";s:10:\"menu_order\";i:643;s:16:\"popularity_index\";i:75;s:11:\"trend_index\";i:277;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:788;a:18:{s:4:\"tmpl\";i:454;s:2:\"id\";i:4690;s:5:\"title\";s:6:\"Team 7\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/team_white_1.png\";s:12:\"tmpl_created\";i:1520443348;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/team-7/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"team\";s:4:\"tags\";s:8:\"[\"Team\"]\";s:10:\"menu_order\";i:644;s:16:\"popularity_index\";i:243;s:11:\"trend_index\";i:402;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:789;a:18:{s:4:\"tmpl\";i:586;s:2:\"id\";i:4921;s:5:\"title\";s:14:\"Testimonial 10\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2018/03/testimonials_black_5.png\";s:12:\"tmpl_created\";i:1520520562;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/blocks/testimonial-10/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";i:645;s:16:\"popularity_index\";i:219;s:11:\"trend_index\";i:198;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:790;a:18:{s:4:\"tmpl\";i:582;s:2:\"id\";i:4889;s:5:\"title\";s:14:\"Testimonial 11\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/customers-2.jpg\";s:12:\"tmpl_created\";i:1520520556;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/blocks/testimonial-11/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";i:646;s:16:\"popularity_index\";i:557;s:11:\"trend_index\";i:522;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:791;a:18:{s:4:\"tmpl\";i:580;s:2:\"id\";i:4871;s:5:\"title\";s:14:\"Testimonial 12\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2018/03/testimonials_black_3.png\";s:12:\"tmpl_created\";i:1520520552;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/blocks/testimonial-12/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";i:647;s:16:\"popularity_index\";i:262;s:11:\"trend_index\";i:391;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:792;a:18:{s:4:\"tmpl\";i:578;s:2:\"id\";i:4854;s:5:\"title\";s:14:\"Testimonial 13\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2018/03/testimonials_black_2.png\";s:12:\"tmpl_created\";i:1520520549;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/blocks/testimonial-13/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";i:648;s:16:\"popularity_index\";i:637;s:11:\"trend_index\";i:741;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:793;a:18:{s:4:\"tmpl\";i:595;s:2:\"id\";i:4995;s:5:\"title\";s:14:\"Testimonial 14\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2018/03/testimonials_black_12.png\";s:12:\"tmpl_created\";i:1520520577;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/blocks/testimonial-14/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";i:649;s:16:\"popularity_index\";i:400;s:11:\"trend_index\";i:411;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:794;a:18:{s:4:\"tmpl\";i:593;s:2:\"id\";i:4979;s:5:\"title\";s:14:\"Testimonial 15\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2018/03/testimonials_black_10.png\";s:12:\"tmpl_created\";i:1520520573;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/blocks/testimonial-15/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";i:650;s:16:\"popularity_index\";i:568;s:11:\"trend_index\";i:544;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:795;a:18:{s:4:\"tmpl\";i:576;s:2:\"id\";i:4835;s:5:\"title\";s:14:\"Testimonial 16\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2018/03/testimonials_black_1.png\";s:12:\"tmpl_created\";i:1520520546;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/blocks/testimonial-16/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";i:651;s:16:\"popularity_index\";i:399;s:11:\"trend_index\";i:401;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:796;a:18:{s:4:\"tmpl\";i:594;s:2:\"id\";i:4987;s:5:\"title\";s:14:\"Testimonial 17\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2018/03/testimonials_white_12-1.png\";s:12:\"tmpl_created\";i:1520520575;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/blocks/testimonial-17/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";i:652;s:16:\"popularity_index\";i:159;s:11:\"trend_index\";i:199;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:797;a:18:{s:4:\"tmpl\";i:577;s:2:\"id\";i:4843;s:5:\"title\";s:14:\"Testimonial 18\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2018/03/testimonials_white_2.png\";s:12:\"tmpl_created\";i:1520520548;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/blocks/testimonial-18/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";i:653;s:16:\"popularity_index\";i:457;s:11:\"trend_index\";i:780;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:798;a:18:{s:4:\"tmpl\";i:579;s:2:\"id\";i:4863;s:5:\"title\";s:14:\"Testimonial 19\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2018/03/testimonials_white_3.png\";s:12:\"tmpl_created\";i:1520520551;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/blocks/testimonial-19/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";i:654;s:16:\"popularity_index\";i:245;s:11:\"trend_index\";i:599;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:799;a:18:{s:4:\"tmpl\";i:581;s:2:\"id\";i:4880;s:5:\"title\";s:14:\"Testimonial 20\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/customers-1.jpg\";s:12:\"tmpl_created\";i:1520520554;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/blocks/testimonial-20/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";i:655;s:16:\"popularity_index\";i:446;s:11:\"trend_index\";i:653;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:800;a:18:{s:4:\"tmpl\";i:583;s:2:\"id\";i:4897;s:5:\"title\";s:14:\"Testimonial 21\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2018/03/testimonials_white_5.png\";s:12:\"tmpl_created\";i:1520520557;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/blocks/testimonial-21/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";i:656;s:16:\"popularity_index\";i:78;s:11:\"trend_index\";i:289;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:801;a:18:{s:4:\"tmpl\";i:584;s:2:\"id\";i:4905;s:5:\"title\";s:14:\"Testimonial 22\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2018/03/testimonials_white_6.png\";s:12:\"tmpl_created\";i:1520520559;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/blocks/testimonial-22/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";i:657;s:16:\"popularity_index\";i:121;s:11:\"trend_index\";i:221;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:802;a:18:{s:4:\"tmpl\";i:585;s:2:\"id\";i:4913;s:5:\"title\";s:14:\"Testimonial 23\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2018/03/testimonials_white_7.png\";s:12:\"tmpl_created\";i:1520520561;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/blocks/testimonial-23/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";i:658;s:16:\"popularity_index\";i:247;s:11:\"trend_index\";i:566;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:803;a:18:{s:4:\"tmpl\";i:575;s:2:\"id\";i:4826;s:5:\"title\";s:14:\"Testimonial 24\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2018/03/testimonials_white_1.png\";s:12:\"tmpl_created\";i:1520520544;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/blocks/testimonial-24-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";i:659;s:16:\"popularity_index\";i:256;s:11:\"trend_index\";i:395;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:804;a:18:{s:4:\"tmpl\";i:587;s:2:\"id\";i:4929;s:5:\"title\";s:14:\"Testimonial 24\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2018/03/testimonials_white_8.png\";s:12:\"tmpl_created\";i:1520520564;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/blocks/testimonial-24/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";i:660;s:16:\"popularity_index\";i:49;s:11:\"trend_index\";i:206;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:805;a:18:{s:4:\"tmpl\";i:591;s:2:\"id\";i:4963;s:5:\"title\";s:14:\"Testimonial 25\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2018/03/testimonials_white_10.png\";s:12:\"tmpl_created\";i:1520520570;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/blocks/testimonial-25-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";i:661;s:16:\"popularity_index\";i:417;s:11:\"trend_index\";i:546;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:806;a:18:{s:4:\"tmpl\";i:592;s:2:\"id\";i:4971;s:5:\"title\";s:14:\"Testimonial 26\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2018/03/testimonials_white_11.png\";s:12:\"tmpl_created\";i:1520520572;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/blocks/testimonial-26/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";i:662;s:16:\"popularity_index\";i:649;s:11:\"trend_index\";i:718;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:807;a:18:{s:4:\"tmpl\";i:589;s:2:\"id\";i:4947;s:5:\"title\";s:14:\"Testimonial 27\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2018/03/testimonials_white_9.png\";s:12:\"tmpl_created\";i:1520520567;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/blocks/testimonial-27/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";i:663;s:16:\"popularity_index\";i:221;s:11:\"trend_index\";i:496;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:808;a:18:{s:4:\"tmpl\";i:590;s:2:\"id\";i:4955;s:5:\"title\";s:14:\"Testimonial 29\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2018/03/testimonials_black_9.png\";s:12:\"tmpl_created\";i:1520520569;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/blocks/testimonial-29/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";i:664;s:16:\"popularity_index\";i:378;s:11:\"trend_index\";i:695;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:809;a:18:{s:4:\"tmpl\";i:588;s:2:\"id\";i:4939;s:5:\"title\";s:13:\"Testimonial 9\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2018/03/testimonials_black_8.png\";s:12:\"tmpl_created\";i:1520520565;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/blocks/testimonial-9/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";i:665;s:16:\"popularity_index\";i:103;s:11:\"trend_index\";i:341;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:810;a:18:{s:4:\"tmpl\";i:928;s:2:\"id\";i:12509;s:5:\"title\";s:18:\"Travel &#8211; 404\";s:9:\"thumbnail\";s:64:\"https://library.elementor.com/wp-content/uploads/2019/12/404.png\";s:12:\"tmpl_created\";i:1575960378;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/travel-404/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:24:\"[\"404\",\"Tours\",\"Travel\"]\";s:10:\"menu_order\";i:666;s:16:\"popularity_index\";i:747;s:11:\"trend_index\";i:712;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:811;a:18:{s:4:\"tmpl\";i:929;s:2:\"id\";i:12516;s:5:\"title\";s:27:\"Travel &#8211; Archive Blog\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2019/12/Archiv_s.png\";s:12:\"tmpl_created\";i:1575960387;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:125:\"https://library.elementor.com/blocks/travel-archive-blog/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:18:\"[\"Tours\",\"Travel\"]\";s:10:\"menu_order\";i:667;s:16:\"popularity_index\";i:496;s:11:\"trend_index\";i:487;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:812;a:18:{s:4:\"tmpl\";i:927;s:2:\"id\";i:12500;s:5:\"title\";s:21:\"Travel &#8211; Header\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2020/06/Header-travel-and-tours.png\";s:12:\"tmpl_created\";i:1575960371;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/blocks/travel-header/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:27:\"[\"Header\",\"Tours\",\"Travel\"]\";s:10:\"menu_order\";i:668;s:16:\"popularity_index\";i:443;s:11:\"trend_index\";i:434;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:813;a:18:{s:4:\"tmpl\";i:930;s:2:\"id\";i:12524;s:5:\"title\";s:26:\"Travel &#8211; Single Post\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2019/12/Single_Post_s.png\";s:12:\"tmpl_created\";i:1575960397;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:124:\"https://library.elementor.com/blocks/travel-single-post/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:18:\"[\"Tours\",\"Travel\"]\";s:10:\"menu_order\";i:669;s:16:\"popularity_index\";i:591;s:11:\"trend_index\";i:663;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:814;a:18:{s:4:\"tmpl\";i:931;s:2:\"id\";i:12531;s:5:\"title\";s:31:\"Travel &#8211; Single Post Tour\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2019/12/Single_Tour_s.png\";s:12:\"tmpl_created\";i:1575960404;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:129:\"https://library.elementor.com/blocks/travel-single-post-tour/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:18:\"[\"Tours\",\"Travel\"]\";s:10:\"menu_order\";i:670;s:16:\"popularity_index\";i:630;s:11:\"trend_index\";i:548;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:815;a:18:{s:4:\"tmpl\";i:926;s:2:\"id\";i:12492;s:5:\"title\";s:14:\"Travel -Footer\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2019/12/Footer_s.png\";s:12:\"tmpl_created\";i:1575960358;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/blocks/travel-footer/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:27:\"[\"Footer\",\"Tours\",\"Travel\"]\";s:10:\"menu_order\";i:671;s:16:\"popularity_index\";i:453;s:11:\"trend_index\";i:322;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:816;a:18:{s:4:\"tmpl\";i:1068;s:2:\"id\";i:15498;s:5:\"title\";s:23:\"Travel Blog &#8211; 404\";s:9:\"thumbnail\";s:64:\"https://library.elementor.com/wp-content/uploads/2020/11/404.jpg\";s:12:\"tmpl_created\";i:1606215636;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:121:\"https://library.elementor.com/blocks/travel-blog-404/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:23:\"[\"404\",\"Blog\",\"Travel\"]\";s:10:\"menu_order\";i:672;s:16:\"popularity_index\";i:749;s:11:\"trend_index\";i:759;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:817;a:18:{s:4:\"tmpl\";i:1069;s:2:\"id\";i:15508;s:5:\"title\";s:29:\"Travel Blog &#8211; Archive 1\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2020/11/Archive-1-350.jpg\";s:12:\"tmpl_created\";i:1606215649;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:127:\"https://library.elementor.com/blocks/travel-blog-archive-1/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:17:\"[\"Blog\",\"Travel\"]\";s:10:\"menu_order\";i:673;s:16:\"popularity_index\";i:659;s:11:\"trend_index\";i:468;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:818;a:18:{s:4:\"tmpl\";i:1070;s:2:\"id\";i:15518;s:5:\"title\";s:29:\"Travel Blog &#8211; Archive 2\";s:9:\"thumbnail\";s:79:\"https://library.elementor.com/wp-content/uploads/2020/11/Archive-2-350-Copy.jpg\";s:12:\"tmpl_created\";i:1606215663;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:127:\"https://library.elementor.com/blocks/travel-blog-archive-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:17:\"[\"Blog\",\"Travel\"]\";s:10:\"menu_order\";i:674;s:16:\"popularity_index\";i:688;s:11:\"trend_index\";i:431;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:819;a:18:{s:4:\"tmpl\";i:1071;s:2:\"id\";i:15528;s:5:\"title\";s:26:\"Travel Blog &#8211; Footer\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2020/11/Footer.jpg\";s:12:\"tmpl_created\";i:1606215673;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:124:\"https://library.elementor.com/blocks/travel-blog-footer/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:26:\"[\"Blog\",\"Footer\",\"Travel\"]\";s:10:\"menu_order\";i:675;s:16:\"popularity_index\";i:656;s:11:\"trend_index\";i:377;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:820;a:18:{s:4:\"tmpl\";i:1067;s:2:\"id\";i:15536;s:5:\"title\";s:26:\"Travel Blog &#8211; Header\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2020/11/Header.jpg\";s:12:\"tmpl_created\";i:1606215625;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:124:\"https://library.elementor.com/blocks/travel-blog-header/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:26:\"[\"Blog\",\"Header\",\"Travel\"]\";s:10:\"menu_order\";i:676;s:16:\"popularity_index\";i:584;s:11:\"trend_index\";i:228;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:821;a:18:{s:4:\"tmpl\";i:1072;s:2:\"id\";i:15545;s:5:\"title\";s:33:\"Travel Blog &#8211; Single Post 1\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2020/11/Single-1-350.jpg\";s:12:\"tmpl_created\";i:1606215684;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:131:\"https://library.elementor.com/blocks/travel-blog-single-post-1/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:17:\"[\"Blog\",\"Travel\"]\";s:10:\"menu_order\";i:677;s:16:\"popularity_index\";i:669;s:11:\"trend_index\";i:482;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:822;a:18:{s:4:\"tmpl\";i:1066;s:2:\"id\";i:15556;s:5:\"title\";s:33:\"Travel Blog &#8211; Single Post 2\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2020/11/Single-2-350.jpg\";s:12:\"tmpl_created\";i:1606215613;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:131:\"https://library.elementor.com/blocks/travel-blog-single-post-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:17:\"[\"Blog\",\"Travel\"]\";s:10:\"menu_order\";i:678;s:16:\"popularity_index\";i:652;s:11:\"trend_index\";i:454;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}}}','no');
INSERT INTO `wplf_options` VALUES (43185,'elementor_version','3.15.2','yes'),(43186,'elementor_install_history','a:1:{s:6:\"3.15.2\";i:1692093830;}','yes'),(43188,'elementor_events_db_version','1.0.0','no'),(60746,'category_children','a:0:{}','yes'),(2851,'dt_portfolio_category_children','a:0:{}','yes'),(2852,'dt_testimonials_category_children','a:0:{}','yes'),(2853,'dt_team_category_children','a:0:{}','yes'),(2854,'dt_gallery_category_children','a:0:{}','yes'),(2742,'wp_calendar_block_has_published_posts','1','yes'),(43515,'bglib_rating_prompt','a:1:{i:0;a:4:{s:6:\"plugin\";s:15:\"boldgrid-backup\";s:4:\"name\";s:18:\"any_backup_created\";s:6:\"slides\";a:4:{s:5:\"start\";a:2:{s:4:\"text\";s:212:\"It looks like you&#039;ve created 10 backups with the Total Upkeep plugin! If you feel you&#039;re getting really good value from the Total Upkeep plugin, could you do us a favor and rate us 5 stars on WordPress?\";s:9:\"decisions\";a:3:{s:9:\"sure_will\";a:3:{s:4:\"text\";s:17:\"Yes, I sure will!\";s:4:\"link\";s:61:\"https://wordpress.org/support/plugin/boldgrid-backup/reviews/\";s:5:\"slide\";s:6:\"thanks\";}s:19:\"maybe_still_testing\";a:3:{s:4:\"text\";s:47:\"Maybe later, I&#039;m still testing the plugin.\";s:6:\"snooze\";i:604800;s:5:\"slide\";s:11:\"maybe_later\";}s:11:\"already_did\";a:2:{s:4:\"text\";s:47:\"I already did / Permanently dismiss this notice\";s:5:\"slide\";s:11:\"already_did\";}}}s:6:\"thanks\";a:1:{s:4:\"text\";s:389:\"Thanks! A new page should have opened to the Total Upkeep ratings page on WordPress.org. You will need to log in to your WordPress.org account before you can post a review. If the page didn&#039;t open, please click the following link: <a href=\"https://wordpress.org/support/plugin/boldgrid-backup/reviews/\" target=\"_blank\">https://wordpress.org/support/plugin/boldgrid-backup/reviews/</a>\";}s:11:\"maybe_later\";a:1:{s:4:\"text\";s:246:\"No problem, maybe now is not a good time. We want to be your WordPress backup plugin of choice. If you&#039;re experiencing a problem or want to make a suggestion, please <a href=\"https://www.boldgrid.com/feedback\" target=\"_blank\">click here</a>.\";}s:11:\"already_did\";a:1:{s:4:\"text\";s:264:\"Thank you for the previous rating! You can help us to continue improving the Total Upkeep plugin by reporting any bugs or submitting feature requests <a href=\"https://www.boldgrid.com/feedback\" target=\"_blank\">here</a>. Thank you for using the Total Upkeep plugin!\";}}s:10:\"time_added\";i:1692159734;}}','yes'),(45954,'the7_registered','yes','no'),(45031,'font-awesome-releases','a:2:{s:12:\"refreshed_at\";i:1692333100;s:4:\"data\";a:3:{s:16:\"latest_version_5\";s:6:\"5.15.4\";s:16:\"latest_version_6\";s:5:\"6.4.2\";s:8:\"releases\";a:55:{s:5:\"5.0.1\";a:1:{s:3:\"sri\";a:2:{s:4:\"free\";a:12:{s:11:\"css/all.css\";s:71:\"sha384-VVoO3UHXsmXwXvf1kJx2jV3b1LbOfTqKL46DdeLG8z4pImkQ4GAP9GMy+MxHMDYG\";s:14:\"css/brands.css\";s:71:\"sha384-JT52EiskN0hkvVxJA8d2wg8W/tLxrC02M4u5+YAezNnBlY/N2yy3X51pKC1QaPkw\";s:19:\"css/fontawesome.css\";s:71:\"sha384-7mC9VNNEUg5vt0kVQGblkna/29L8CpTJ5fkpo0nlmTbfCoDXyuK/gPO3wx8bglOz\";s:15:\"css/regular.css\";s:71:\"sha384-JZ2w5NHrKZS6hqVAVlhUO3eHPVzjDZqOpWBZZ6opcmMwVjN7uoagKSSftrq8F0pn\";s:13:\"css/solid.css\";s:71:\"sha384-TQW9cJIp+U8M7mByg5ZKUQoIxj0ac36aOpNzqQ04HpwyrJivS38EQsKHO2rR5eit\";s:19:\"css/svg-with-js.css\";s:71:\"sha384-X1ZQAmDHBeo7eaAJwWMyyA3mva9mMK10CpRFvX8PejR0XIUjwvGDqr2TwJqwbH9S\";s:9:\"js/all.js\";s:71:\"sha384-2CD5KZ3lSO1FK9XJ2hsLsEPy5/TBISgKIk2NSEcS03GbEnWEfhzd0x6DBIkqgPN1\";s:12:\"js/brands.js\";s:71:\"sha384-i3UPn8g8uJGiS6R/++68nHyfYAnr/lE/biTuWYbya2dONccicnZZPlAH6P8EWf28\";s:17:\"js/fontawesome.js\";s:71:\"sha384-tqpP2rDLsdWkeBrG3Jachyp0yzl/pmhnsdV88ySUFZATuziAnHWsHRSS97l5D9jn\";s:13:\"js/regular.js\";s:71:\"sha384-hXqI+wajk6jJu2DXwf2oqBg6q5+HqXM5yz9smX94pDjiLzH81gAuVtjter66i1Ct\";s:11:\"js/solid.js\";s:71:\"sha384-kbPfTyGdGugnvSKEBJCd6+vYipOQ6a+2np5O4Ty3sW7tgI0MpwPyAh+QwUpMujV9\";s:14:\"js/v4-shims.js\";s:71:\"sha384-BRge2B8T+0rmvB/KszFfdQ0PDvPnhV2J80JMKrnq21Fq6tHeKFhSIrdoroXvk7eB\";}s:3:\"pro\";a:0:{}}}s:5:\"5.0.2\";a:1:{s:3:\"sri\";a:2:{s:4:\"free\";a:12:{s:11:\"css/all.css\";s:71:\"sha384-bJB2Wn8ZuuMwYA12t6nmPqVTqT64ruKTAWqdxs/Oal3vexA7RPAo3FtVU5hIil2E\";s:14:\"css/brands.css\";s:71:\"sha384-F8vNf2eNIHep58ofQztLhhWsZXaTzzfZRqFfWmh7Cup7LqrF0HCtB6UCAIIkZZYZ\";s:19:\"css/fontawesome.css\";s:71:\"sha384-CTTGZltCsihOiEwOCbT7p1lhij8kYk6lapCladmNzxj4yXj/AKp6q3+CRoNN3UCG\";s:15:\"css/regular.css\";s:71:\"sha384-GtLUznQ3nMgus15JP1pAE2UH9HAQi8gjQTNfIT+Gq6zFPeeq3y+Xtxt5HUBFF0YO\";s:13:\"css/solid.css\";s:71:\"sha384-WEKepgUDOaHRK2/r+qA7W/Srd+36IIOmBm/+wm9aSz6acYC0LkyM9UJElLVNy95T\";s:19:\"css/svg-with-js.css\";s:71:\"sha384-sV6Qj6KRPF7HrXfo5NK0evVt+YbNxUuGZU2udYKDAxwxPVTuEE6lofcZJhRMK4WT\";s:9:\"js/all.js\";s:71:\"sha384-xiGKJ+4CP2p2WkTifyjHDeZVAg1zBrnJV8LU33N7J+5BWp1biPcSpEJJY7hFiRLn\";s:12:\"js/brands.js\";s:71:\"sha384-V+scQ15NnQuKVajRBsSery7bV87d0xDAoCs4pB8ZcwW74+zzW5CkgRmIFOYw8kKX\";s:17:\"js/fontawesome.js\";s:71:\"sha384-CxMnuVDquTXcsJnW1rAfSm4uzGr12HENF1oe+JRZm4jcQDerJ6VeA1XLvAso396r\";s:13:\"js/regular.js\";s:71:\"sha384-ihKlq3j4PocIYMPkNra+ieEVsLuFzj4rp1yjn3jq+La7r4G9kf9COpWfOI8SGapM\";s:11:\"js/solid.js\";s:71:\"sha384-KDEuZV2OBU0Q264kBX2Idu9gYr5z/fQrtvUsKfuKGEDkDxV0GBVN/qi3QoLZPmbJ\";s:14:\"js/v4-shims.js\";s:71:\"sha384-0nloDHslShcnKvH94Zv8nb0zPlzTFCzfZGx9YxR2ngUWs9HXXHVx1PUQw0u9/7LE\";}s:3:\"pro\";a:0:{}}}s:5:\"5.0.3\";a:1:{s:3:\"sri\";a:2:{s:4:\"free\";a:12:{s:11:\"css/all.css\";s:71:\"sha384-KFTzeUQSHjcfuC8qqdFm+laWVqpkucx/3uXo41hhKQzUEtbNnNSk8KEEBZ+2lEQy\";s:14:\"css/brands.css\";s:71:\"sha384-J6h7hpR0mfr79Ck/ZfDrhN14FnkbkLbd+mm0yTw5spSpK08yOK/AB9IRR/Dcg8EJ\";s:19:\"css/fontawesome.css\";s:71:\"sha384-l2oTZy4pLseT/J6oW0mwsjKPhjpTctOfU191uVonzezZiqw9PPcz4AMKsIAeyR4P\";s:15:\"css/regular.css\";s:71:\"sha384-cDXlx+8npD3wa2ahyeSZvsi9VlRrMmJVIB1rpK7Ftyq4cppWM9d2mBhrlOqYBljt\";s:13:\"css/solid.css\";s:71:\"sha384-ioYc/tyAAvPTKdlEWH/BDO/Fn0RGAWisNzyfZNt74mHfA6UPN2tzjD6Nm4ieQfBR\";s:19:\"css/svg-with-js.css\";s:71:\"sha384-bnoXyQHIAXdkrtQTtvuajtPgmWqHQ8657dQ4vzySapygDMqzijBpEq96AwgX2u4N\";s:9:\"js/all.js\";s:71:\"sha384-4OPaVeLgwRHdGJplmRGxGcoGYwxBAdR8Qr9z/Av7blRYPlRIPtjTygdtpQlD1HHv\";s:12:\"js/brands.js\";s:71:\"sha384-68dqWCRgViK/UsBTW5vGfntS6GdBDT5D4KWUBXTf6IkF2NFFD+X/0QNs0FZaIELt\";s:17:\"js/fontawesome.js\";s:71:\"sha384-sBtO3o3oG61AtAKrg74kfk50JP0YHcRTwOXgTeUobbJJBgYiCcmtkh784fmHww23\";s:13:\"js/regular.js\";s:71:\"sha384-J0ggktpCvzBHSxd/a8EBQgQDIWBtASK5rhHMvGWuR/UyjuPgX0iCAcb3OlfhvlQz\";s:11:\"js/solid.js\";s:71:\"sha384-DX1/9hggbc1yKVl40n2dNF9OzLf9ZPwZm87WzIW+FinkgjSq18PXpUxOL4I0iS1+\";s:14:\"js/v4-shims.js\";s:71:\"sha384-kysXtDCmCTYxM55rHL+9xPu6+Inoi3ZzZHvcxkXs+iPj5nymJKlauQdXyzubyD0b\";}s:3:\"pro\";a:0:{}}}s:5:\"5.0.4\";a:1:{s:3:\"sri\";a:2:{s:4:\"free\";a:12:{s:11:\"css/all.css\";s:71:\"sha384-DmABxgPhJN5jlTwituIyzIUk6oqyzf3+XuP7q3VfcWA2unxgim7OSSZKKf0KSsnh\";s:14:\"css/brands.css\";s:71:\"sha384-1beec9tTZuu+KrTudmvRnGpK81r78DKCAXdphCvdG+PR+n/WCczsYPqTBTvYsM7z\";s:19:\"css/fontawesome.css\";s:71:\"sha384-xdTUmhbcetyLRVL4PAriRajOve+/5pjOiy5sJABnhXMcRMVc9HI9s2KmOCjjDK/P\";s:15:\"css/regular.css\";s:71:\"sha384-nM5tBytXTc1HDZ/A3My2gNT2TxLk/M/5yFi0QrOxaZjBi7QpKUfA2QqT+fcSxSlg\";s:13:\"css/solid.css\";s:71:\"sha384-g2aKxiZcFezoVOq4MsjaxuBbSxSlXD/NRQ5GaPLfvCtcTLgP3fYZKKAGxCM/wMfe\";s:19:\"css/svg-with-js.css\";s:71:\"sha384-MCR8qGTbdyK+hklwz1eKgGiAjT57F5HEJMs/uHRAwZ6GI5602TyGI89FyrbUwiIc\";s:9:\"js/all.js\";s:71:\"sha384-nVi8MaibAtVMFZb4R1zHUW/DsTJpG/YwPknbGABVOgk5s6Vhopl6XQD/pTCG/DKB\";s:12:\"js/brands.js\";s:71:\"sha384-dl3ONr32uA3YqpqKWzhXLs5k1YbKOn3dwiMbEP1S/XQMa3LPRwvJrhW7+lomL/uc\";s:17:\"js/fontawesome.js\";s:71:\"sha384-l7FyBM+wFIWpfmy8RYkWgEu/Me6Hrz98ijLu4nP3PkGbTtTCvtHB5ktI8hLEgEG3\";s:13:\"js/regular.js\";s:71:\"sha384-lwwoO5Gg19TptbILrLBjV28EVJ9RW3tD3cGyjCRn3OY9IuLua/YRlE47btZIXfMv\";s:11:\"js/solid.js\";s:71:\"sha384-4KkAk2UXMS9Xl3FoAAN43VJxRZ/emjElCz60xUTegPOZlbPLZGylvor2v7wQ0JNb\";s:14:\"js/v4-shims.js\";s:71:\"sha384-yfrMPoFcXUzdvECrvYRYE7wlxouXxjRSge5x6BlPPOb38tW4n0e8EW79RGU7VY0R\";}s:3:\"pro\";a:14:{s:11:\"css/all.css\";s:71:\"sha384-1RxicL8bcQJWgpr/clvtGVG7DVFJvDX/DVsJsbjKhXtdo8r5WVZQqB9AHTNPr08A\";s:14:\"css/brands.css\";s:71:\"sha384-sFwP5Zsnp6I4zQxUMPHvv8Bk16eEzU0YhaNbMCftDHPKDD+BR8WdXAHKL4xpipII\";s:19:\"css/fontawesome.css\";s:71:\"sha384-VFi8UvBDvM8muKO8ogMXi2j8vdJiu8hq1uxpX/NS8BsftBiJpheM5AuhFH1dvURx\";s:13:\"css/light.css\";s:71:\"sha384-4FGoKudkcpRXgx5UNFa5TxzaHUhnvCGFDeZKncEn9KJx/l07kcid3VbpwajrvrFW\";s:15:\"css/regular.css\";s:71:\"sha384-eyjlqgvgpHiWM0GoL4/hsTh22piTKmMTM+sfJYacddG2n9AEubqQB/w4CPJK1/1b\";s:13:\"css/solid.css\";s:71:\"sha384-TlWtvBj4TXNlpJC5Qq4aHel0R/dywVcP/6eOFC0qptQ71WWSxJCvuTajjGb1duS9\";s:19:\"css/svg-with-js.css\";s:71:\"sha384-rHay3RzsgCtbjvDmBLThu6ESXlU4Al5STjlHSpNygnbeyt04OP1uKZVXB2Zy16+T\";s:9:\"js/all.js\";s:71:\"sha384-vV0064GQjt+TcoZxVPm/f6vyAivSNofFvOHKLWxcDl784Dzm9W4BBpoTvUG4vi5a\";s:12:\"js/brands.js\";s:71:\"sha384-/877azmwW/YhoBsPeM9dh61dNr5XGbuk24lyjPbFWyrPaZPyU2oxgOY6PE1OH4z4\";s:17:\"js/fontawesome.js\";s:71:\"sha384-7L9/YJQEf9kLPc6sdtoVIsuBNxCVi4OmHPcszcY685IJIcB52hgYoL1OiwTawJS/\";s:11:\"js/light.js\";s:71:\"sha384-iXxa9ExuZ0Fi2N2VO/buuWuAgYIUXNtOaJiKLa40Bjt43KJpzJdhg2TBHyBVqCPh\";s:13:\"js/regular.js\";s:71:\"sha384-YzSStfq1m16y1v5M97ViNRpiQUCVpagVVOkqlmww8otyjFkY6EXT4dShlKNuxRDu\";s:11:\"js/solid.js\";s:71:\"sha384-WJDZ/GI6pz1VoELs6i44T3f00fguksrLXIx3LXHdlaAzmOvX/mTK5j+qzHJdKejC\";s:14:\"js/v4-shims.js\";s:71:\"sha384-8XZ16R7aSGin4NRuv6gn5xfbsvad5H8LR41g48iduwkfZEqDgXlvUjkJKgxqZUiW\";}}}s:5:\"5.0.6\";a:1:{s:3:\"sri\";a:2:{s:4:\"free\";a:12:{s:11:\"css/all.css\";s:71:\"sha384-VY3F8aCQDLImi4L+tPX4XjtiJwXDwwyXNbkH7SHts0Jlo85t1R15MlXVBKLNx+dj\";s:14:\"css/brands.css\";s:71:\"sha384-rK0EPNdv8UCeRNPzX+96ARRlf9hZM+OukGceDTdbPH30DYcSI1x5QyBU7d2I2kHX\";s:19:\"css/fontawesome.css\";s:71:\"sha384-dbkYY2NmVwxaFrr4gq04oVh6w39ovmevsgD80Il1Od3hwpgREqyPb3XqbpaSwN4x\";s:15:\"css/regular.css\";s:71:\"sha384-HGbVnizaFNw8zW+vIol9xMwBFWdV7/k61278Zo1bnMy9dLmjv48D7rtpgYRTe5Pd\";s:13:\"css/solid.css\";s:71:\"sha384-GfC9nfESTZkjCPFbevBVig3FTd6wkjRRYMtj+qFgK8mMBvGIje2rrALgiBy6pwRL\";s:19:\"css/svg-with-js.css\";s:71:\"sha384-U2b24h7gWqOYespg+vI5yiIn4ZYlTevT0N96xkGrw7ktP1gg9XwqEslsdTLJdlGg\";s:9:\"js/all.js\";s:71:\"sha384-0AJY8UERsBUKdWcyF3o2kisLKeIo6G4Tbd8Y6fbyw6qYmn4WBuqcvxokp8m2UzSD\";s:12:\"js/brands.js\";s:71:\"sha384-4iSpDug9fizYiQRPpPafdAh5NaF8yzNMjOvu3veWgaFm0iIo8y4vUi7f3Yyz5WP1\";s:17:\"js/fontawesome.js\";s:71:\"sha384-rttr/ldR2uHigckjTCjMDe47ySeFVaL3Q7xUkJZir56u8Z8h/XnHJXHocgyfb25F\";s:13:\"js/regular.js\";s:71:\"sha384-G375DXNEVfALvsggywPWDYrRxNOvXaCYt/kiq/GXmbaDW8/B0XtbC8iuLpXXm1jF\";s:11:\"js/solid.js\";s:71:\"sha384-U0ZJ7q5xbT8hEoRqj61HzpvsqNOQ8bsHY2VqSRPqGOzjHXmmV70Aw+DBC/PT00p4\";s:14:\"js/v4-shims.js\";s:71:\"sha384-L8zntmMOcCbOxXiL5Rjn6ubB7KunZiQ8U3bb9x6FFTGDEvVEESW9n+x49jm34K3W\";}s:3:\"pro\";a:14:{s:11:\"css/all.css\";s:71:\"sha384-ldFHeX3xCFvM4uf7m0mCMIoCPVwM71jopwqLZRldf+ojynoGVSxDiphfScLukkwO\";s:14:\"css/brands.css\";s:71:\"sha384-Ks7IvHjmJ4FIFxhK4iNrtW0rAVo1DlCYpe/nDsK8CnU+yactd38YiNE1GT018WPg\";s:19:\"css/fontawesome.css\";s:71:\"sha384-sATKZbJwxaEIU3unIoL1VMbIyrNNh7PlgnaiWlicWXeRA7qdnzfFzMP9AaN2wfTU\";s:13:\"css/light.css\";s:71:\"sha384-YWWfxaKIDrbFXuVQnpxASJDHmFl2K5f2vDgrcROb+rYycoqcQVdMlfu3U38boTg/\";s:15:\"css/regular.css\";s:71:\"sha384-CydLcYoDSbudHX/6hygyQD4jBMPsv91d/RwdtH1qxI79KG8kII/OzxKDwsswywA4\";s:13:\"css/solid.css\";s:71:\"sha384-uBARwTxpZ7FB08kQlCOS/dUaN3TrGGcHthrXYIhZBpdq7YtUdVDM1sAUH9NIozMl\";s:19:\"css/svg-with-js.css\";s:71:\"sha384-BptPo+4C0N+fnMTnfw7ddW/zYUJhuNEe7edve8UrMbs+fCpfDJvJcC/lpa5Nvaky\";s:9:\"js/all.js\";s:71:\"sha384-FrB6Se1Wkxlx66xA4rPuOoOolLyQt5B1uptDmtLJSIVRJDbNkmE3QOLipnMuAbUW\";s:12:\"js/brands.js\";s:71:\"sha384-G12tjfNd/W8L4IrE5+f13LUbpzVowwhNDv+WNecvxjbaGN9bbSY7epBOqUlRqXnq\";s:17:\"js/fontawesome.js\";s:71:\"sha384-Ln5PcCmuH8v+AF9nt+HkM2GfXjsn1CtVc0n+ciM8+oe3nwGyPCceDVva7bUjNfo0\";s:11:\"js/light.js\";s:71:\"sha384-jzS22FYPy68IBBet2IRM5aQDOXjg9X1g+drXIVonDtyqGFCtUA0YIdgHdvCCX/fD\";s:13:\"js/regular.js\";s:71:\"sha384-M8TFIPAJNl8UIC8OP6GFcIE0SHkGN4zjwwjz+BBTz60XhNegOrZmjNtTQNKifmXX\";s:11:\"js/solid.js\";s:71:\"sha384-R/e3QvpS9m8HcN9b9l6nNo678ekTXL31kFY/XtRHSjrihDX8A2DF8HaXhdlAtzMx\";s:14:\"js/v4-shims.js\";s:71:\"sha384-X9eLyweB0LOTEGCwMARo9+zibrXQYmBMSrhFk4ncpT/WYnPIcpTg0IgBFDgzuPwL\";}}}s:5:\"5.0.8\";a:1:{s:3:\"sri\";a:2:{s:4:\"free\";a:12:{s:11:\"css/all.css\";s:71:\"sha384-3AB7yXWz4OeoZcPbieVW64vVXEwADiYyAEhwilzWsLw+9FgqpyjjStpPnpBO8o8S\";s:14:\"css/brands.css\";s:71:\"sha384-IiIL1/ODJBRTrDTFk/pW8j0DUI5/z9m1KYsTm/RjZTNV8RHLGZXkUDwgRRbbQ+Jh\";s:19:\"css/fontawesome.css\";s:71:\"sha384-q3jl8XQu1OpdLgGFvNRnPdj5VIlCvgsDQTQB6owSOHWlAurxul7f+JpUOVdAiJ5P\";s:15:\"css/regular.css\";s:71:\"sha384-A/oR8MwZKeyJS+Y0tLZ16QIyje/AmPduwrvjeH6NLiLsp4cdE4uRJl8zobWXBm4u\";s:13:\"css/solid.css\";s:71:\"sha384-v2Tw72dyUXeU3y4aM2Y0tBJQkGfplr39mxZqlTBDUZAb9BGoC40+rdFCG0m10lXk\";s:19:\"css/svg-with-js.css\";s:71:\"sha384-TGBI4yK0MJz2ga16RLBBt4xT4aoPMPmRYhfu1Kl5IJ0gsLyOBIKHEb49BtoO+lPS\";s:9:\"js/all.js\";s:71:\"sha384-SlE991lGASHoBfWbelyBPLsUlwY1GwNDJo3jSJO04KZ33K2bwfV9YBauFfnzvynJ\";s:12:\"js/brands.js\";s:71:\"sha384-sCI3dTBIJuqT6AwL++zH7qL8ZdKaHpxU43dDt9SyOzimtQ9eyRhkG3B7KMl6AO19\";s:17:\"js/fontawesome.js\";s:71:\"sha384-7ox8Q2yzO/uWircfojVuCQOZl+ZZBg2D2J5nkpLqzH1HY0C1dHlTKIbpRz/LG23c\";s:13:\"js/regular.js\";s:71:\"sha384-t7yHmUlwFrLxHXNLstawVRBMeSLcXTbQ5hsd0ifzwGtN7ZF7RZ8ppM7Ldinuoiif\";s:11:\"js/solid.js\";s:71:\"sha384-+Ga2s7YBbhOD6nie0DzrZpJes+b2K1xkpKxTFFcx59QmVPaSA8c7pycsNaFwUK6l\";s:14:\"js/v4-shims.js\";s:71:\"sha384-4CnzNxEP5RK316IYY2+W4hc05uJdfd+p9iNVeNG9Ws3Qxf5tKolysO9wu/8rloj2\";}s:3:\"pro\";a:14:{s:11:\"css/all.css\";s:71:\"sha384-OGsxOZf8qnUumoWWSmTqXMPSNI9URpNYN35fXDb5Cv5jT6OR673ah1e5q+9xKTq6\";s:14:\"css/brands.css\";s:71:\"sha384-VRONz34zTLl4P+DLYyJ8kP8C3tB1PGtqL5p8nBAvHuoc1u32bR3RHixrjffD8Fly\";s:19:\"css/fontawesome.css\";s:71:\"sha384-+5VkSw5C1wIu2iUZEfX77QSYRb5fhjmEsRn8u4r9Ma8mvu/GvTag4LDSEAw7RjXl\";s:13:\"css/light.css\";s:71:\"sha384-shmfBA2CRxp88gq8NcvWbEN8KExYU4uvQUBEG36BStGZ5k91nGKE4wDvvWvuimbu\";s:15:\"css/regular.css\";s:71:\"sha384-0w6MzzKHIB9cUlfWSmSp1Pj6XqGGDseWSMz1Yppk3UOc1dhYhpFx1AuCkMBECEvC\";s:13:\"css/solid.css\";s:71:\"sha384-+iHwwKZGTdlVFbv4fsKmLkogfdKlp47zQGkSMDN3ANc8kXjyKudKvQwinI5VH+2C\";s:19:\"css/svg-with-js.css\";s:71:\"sha384-b2wDmqWyAwmI2rS5ut5UweBS1V32L/k1+2Oo7eCaHdXOS/1bFwC8AKevTI6N28LN\";s:9:\"js/all.js\";s:71:\"sha384-816IUmmhAwCMonQiPZBO/PTgzgsjHtpb78rpsLzldhb4HZjFzBl06Z3eu4ZuwHTz\";s:12:\"js/brands.js\";s:71:\"sha384-gJijC/2qM/p3zm2wHECHX1OMLdzlu61sNp7YfmFQxo+OyT9hO1orX7MmnHhaoXQ4\";s:17:\"js/fontawesome.js\";s:71:\"sha384-Ht3fAeBiX/rVmKVyMwONAIIt0aRoPzZgq1FzdRgR9zFo+Kcd8YDwUbFlTItfaYW4\";s:11:\"js/light.js\";s:71:\"sha384-mfSnp84URDGC1t+cg63LgVKwEs63ulRUpjNneyDZMGMAE9ZKUNZ85rMBMHucGLYP\";s:13:\"js/regular.js\";s:71:\"sha384-SIp/+zr0hyfSVIQPkAwB/L1h4fph6T3CmU4mE7IFtGJlgwoCko0Bye/1J0sjyh4v\";s:11:\"js/solid.js\";s:71:\"sha384-jTxqWCb7UqRDQDd2Nkuh5BkHe9k+ElbFLa3NaJfid5kBK/+cVktzVRXrw0isFWxf\";s:14:\"js/v4-shims.js\";s:71:\"sha384-w/sFNq23wbOXJOUpFyISABLXk9tA4Z8r9hl80er2mobEwgS7VXXYDANaWyrCWe3/\";}}}s:5:\"5.0.9\";a:1:{s:3:\"sri\";a:2:{s:4:\"free\";a:12:{s:11:\"css/all.css\";s:71:\"sha384-5SOiIsAziJl6AWe0HWRKTXlfcSHKmYV4RBF18PPJ173Kzn7jzMyFuTtk8JA7QQG1\";s:14:\"css/brands.css\";s:71:\"sha384-ATC/oZittI09GYIoscTZKDdBr/kI3lCwzw3oBMnOYCPVNJ4i7elNlCxSgLfdfFbl\";s:19:\"css/fontawesome.css\";s:71:\"sha384-Lyz+8VfV0lv38W729WFAmn77iH5OSroyONnUva4+gYaQTic3iI2fnUKtDSpbVf0J\";s:15:\"css/regular.css\";s:71:\"sha384-seionXF7gEANg+LFxIOw3+igh1ZAWgHpNR8SvE64G/Zgmjd918dTL55e8hOy7P4T\";s:13:\"css/solid.css\";s:71:\"sha384-29Ax2Ao1SMo9Pz5CxU1KMYy+aRLHmOu6hJKgWiViCYpz3f9egAJNwjnKGgr+BXDN\";s:19:\"css/svg-with-js.css\";s:71:\"sha384-Hl6tZnMfNiJHYyFxpmnRV8+pziARxY3X/4XWfFXldG7sdkkLv+Od2Gpc57P7C1g6\";s:9:\"js/all.js\";s:71:\"sha384-8iPTk2s/jMVj81dnzb/iFR2sdA7u06vHJyyLlAd4snFpCl/SnyUjRrbdJsw1pGIl\";s:12:\"js/brands.js\";s:71:\"sha384-qJKAzpOXfvmSjzbmsEtlYziSrpVjh5ROPNqb8UZ60myWy7rjTObnarseSKotmJIx\";s:17:\"js/fontawesome.js\";s:71:\"sha384-2IUdwouOFWauLdwTuAyHeMMRFfeyy4vqYNjodih+28v2ReC+8j+sLF9cK339k5hY\";s:13:\"js/regular.js\";s:71:\"sha384-BazKgf1FxrIbS1eyw7mhcLSSSD1IOsynTzzleWArWaBKoA8jItTB5QR+40+4tJT1\";s:11:\"js/solid.js\";s:71:\"sha384-P4tSluxIpPk9wNy8WSD8wJDvA8YZIkC6AQ+BfAFLXcUZIPQGu4Ifv4Kqq+i2XzrM\";s:14:\"js/v4-shims.js\";s:71:\"sha384-9f5gaI9TkuYhi5O/inzfdOXx2nkIhDsLtXqBNmtY6/c5PoqXfd0U2DAjqQVSCXQh\";}s:3:\"pro\";a:14:{s:11:\"css/all.css\";s:71:\"sha384-L+XK540vkePe55E7PAfByfvW0XpsyYpsifTpgh/w8WvH6asVg/c2zqp0EfZfZTbF\";s:14:\"css/brands.css\";s:71:\"sha384-+LMmZxgyldhNCY6nei3oAWJjHbpbROtVb+f5Ux/nahA+Xjm3wcNdu7zyB39Yj38S\";s:19:\"css/fontawesome.css\";s:71:\"sha384-31qpW3hduWGiGey9tdI9rBBxiog5pxZbPiAlD6YKIgy0P2V1meprKhvpk+xJDkMw\";s:13:\"css/light.css\";s:71:\"sha384-wD8IB6DSQidXyIWfwBrsFwTaHTQDsgzyeqzhd1jNdBZHvGSa7KRGb6Q5sMlroCyk\";s:15:\"css/regular.css\";s:71:\"sha384-hJbmKHxbgrH79UtKxubo1UTe96bOL4Xfhjaqr0csD1UMPEPbeV+446QAC+IGxY+b\";s:13:\"css/solid.css\";s:71:\"sha384-k8v16DuQ4ZFtRfpTeqTW4tcHIj5tkvUNQm1QiLs90XiToLzyFeV+yxujHjSZ2wim\";s:19:\"css/svg-with-js.css\";s:71:\"sha384-yVUvm1bVSmayKKt0YHPKotNQzlBvgNhEBbQ6U1d38bjpapXMVmE+SLXrpQ9td4Ij\";s:9:\"js/all.js\";s:71:\"sha384-DtPgXIYsUR6lLmJK14ZNUi11aAoezQtw4ut26Zwy9/6QXHH8W3+gjrRDT+lHiiW4\";s:12:\"js/brands.js\";s:71:\"sha384-yIJb2TJeTM04vupX+3lv0Qp9j0Pnk8Qm9UPYlXr3H0ROCHNNLoacpS++HWDabbzi\";s:17:\"js/fontawesome.js\";s:71:\"sha384-8QYlVHotqQzcAVhJny7MO9ZR0hASr6cRCpURV+EobTTAv5wftkn4i+U6UrMqoCis\";s:11:\"js/light.js\";s:71:\"sha384-06sraYAcw8BzUjsPn5z8Qi/QAA2/ZJl5GN3LGtRp7k+tZpu7kw+sRNXDDTU4RkOt\";s:13:\"js/regular.js\";s:71:\"sha384-C6h/8oKUfY6cVuGfFSu9uGIlFkaD1u1j+ByYGFTdFbOpHOHpw39lKxqEpRgLQg6A\";s:11:\"js/solid.js\";s:71:\"sha384-nISI3wKDp2gWn9L91zXOKXZ6JPt2mteGTnaJAMfeNgAoeLKl2AQsWLH69HMmBXHa\";s:14:\"js/v4-shims.js\";s:71:\"sha384-vuyo8HdrwozCl2DhHOJ40ytjEx9FGy0cqu8i5GHeIoSUm6MPgqCXAVoUIsudKfuE\";}}}s:6:\"5.0.10\";a:1:{s:3:\"sri\";a:2:{s:4:\"free\";a:12:{s:11:\"css/all.css\";s:71:\"sha384-+d0P83n9kaQMCwj8F4RJB66tzIwOKmrdb46+porD/OvrJ+37WqIM7UoBtwHO6Nlg\";s:14:\"css/brands.css\";s:71:\"sha384-KtmfosZaF4BaDBojD9RXBSrq5pNEO79xGiggBxf8tsX+w2dBRpVW5o0BPto2Rb2F\";s:19:\"css/fontawesome.css\";s:71:\"sha384-8WwquHbb2jqa7gKWSoAwbJBV2Q+/rQRss9UXL5wlvXOZfSodONmVnifo/+5xJIWX\";s:15:\"css/regular.css\";s:71:\"sha384-R7FIq3bpFaYzR4ogOiz75MKHyuVK0iHja8gmH1DHlZSq4tT/78gKAa7nl4PJD7GP\";s:13:\"css/solid.css\";s:71:\"sha384-HTDlLIcgXajNzMJv5hiW5s2fwegQng6Hi+fN6t5VAcwO/9qbg2YEANIyKBlqLsiT\";s:19:\"css/svg-with-js.css\";s:71:\"sha384-ucawWSvpdgQ67m4VQzI6qBOHIsGRoY2soJtCkkp15b6IaNCLgauWkbKR8SAuiDQ7\";s:9:\"js/all.js\";s:71:\"sha384-slN8GvtUJGnv6ca26v8EzVaR9DC58QEwsIk9q1QXdCU8Yu8ck/tL/5szYlBbqmS+\";s:12:\"js/brands.js\";s:71:\"sha384-6jhVhr5a+Z1nLr9h+fd7ocMEo847wnGFelCHddaOOACUeZNoQwFXTxh4ysXVam8u\";s:17:\"js/fontawesome.js\";s:71:\"sha384-M2FSA4xMm1G9m4CNXM49UcDHeWcDZNucAlz1WVHxohug0Uw1K+IpUhp/Wjg0y6qG\";s:13:\"js/regular.js\";s:71:\"sha384-JWLWlnwX0pRcCBsI3ZzOEyVDoUmngnFnbXR9VedCc3ko4R3xDG+KTMYmVciWbf4N\";s:11:\"js/solid.js\";s:71:\"sha384-Q7KAHqDd5trmfsv85beYZBsUmw0lsreFBQZfsEhzUtUn5HhpjVzwY0Aq4z8DY9sA\";s:14:\"js/v4-shims.js\";s:71:\"sha384-RLvgmog5EsZMMDnT3uJo6ScffPHTtMbhtV8pcT8kP5UJzlVRU1SP9Hccelk3zYZc\";}s:3:\"pro\";a:14:{s:11:\"css/all.css\";s:71:\"sha384-KwxQKNj2D0XKEW5O/Y6haRH39PE/xry8SAoLbpbCMraqlX7kUP6KHOnrlrtvuJLR\";s:14:\"css/brands.css\";s:71:\"sha384-cyAsyPMdnj21FGg6BEGfZdZ99a/opKBeFa8z5VoHPsPj+tLRYSxkRlPWnGkCJGyA\";s:19:\"css/fontawesome.css\";s:71:\"sha384-HE+OCjOJOPZavEcVffA6E24sIfY2RwV4JRieXa/3N5iCY8vgnTwZemElENQ8ak/K\";s:13:\"css/light.css\";s:71:\"sha384-k/d3hya1Xwx/V3yLAr7/6ibFaFIaN+xeY1eIv42A1Bn2HgfB+/YjLscji1sHLOkb\";s:15:\"css/regular.css\";s:71:\"sha384-D4yOV+i5oKU6w8CiadBDVtSim/UXmlmQfrIdRsuKT3nYhiF/Tb6YLQtyF9l0vqQF\";s:13:\"css/solid.css\";s:71:\"sha384-WjYgBJXUWNFTzFd4wNJuzUZx28GSgjzXrPO4LJrng96HFrI/nLrG1R5NET65v1yR\";s:19:\"css/svg-with-js.css\";s:71:\"sha384-S/uB02cfkgX8kd+j6f3gmw/PPTg8xSiE/w6d8dE852PzHXkGBYLrqpWFse9hInR2\";s:9:\"js/all.js\";s:71:\"sha384-+1nLPoB0gaUktsZJP+ycZectl3GX7wP8Xf2PE/JHrb7X1u7Emm+v7wJMbAcPr8Ge\";s:12:\"js/brands.js\";s:71:\"sha384-OwdVp9K/baqiXthTvRnYzMcsTaqwG19SfDkTRc/GBIhK9eYlWVVBEvLlueA0STAP\";s:17:\"js/fontawesome.js\";s:71:\"sha384-TxXqLyCP6HYGVtr9V1M1rQE7IMbBEZoDdOX+MFeYNbWNwopWKVQM8NyqtU2x+5t2\";s:11:\"js/light.js\";s:71:\"sha384-rv/n2A+UxOzR1qs4wrcOtJ7Ai5Hcn3QQ8tvEkOo5lCvqCD3xwpeO3KZP18JpSXr3\";s:13:\"js/regular.js\";s:71:\"sha384-QNGmoJVI8f07j7N4+DSn4Cdob1PTBJOR6jRGwUwqSPyL2HmvWaBPXuSXOcStGo9D\";s:11:\"js/solid.js\";s:71:\"sha384-m3J/Wb6KcNkFJIpCugSSJITG80sKhEA+16UCFdq1LnpMTOCXwwpeyrE1FmyqoArv\";s:14:\"js/v4-shims.js\";s:71:\"sha384-H+U1wWQdWbEtuQPJ4ZpMl8yWydI6xc/306L/NZkpGY8BGpeSpu39V20x03S3xcMw\";}}}s:6:\"5.0.12\";a:1:{s:3:\"sri\";a:2:{s:4:\"free\";a:12:{s:11:\"css/all.css\";s:71:\"sha384-G0fIWCsCzJIMAVNQPfjH08cyYaUtMwjJwqiRKxxE/rx96Uroj1BtIQ6MLJuheaO9\";s:14:\"css/brands.css\";s:71:\"sha384-Pln/erVatVEIIVh7sfyudOXs5oajCSHg7l5e2Me02e3TklmDuKEhQ8resTIwyI+w\";s:19:\"css/fontawesome.css\";s:71:\"sha384-rnr8fdrJ6oj4zli02To2U/e6t1qG8dvJ8yNZZPsKHcU7wFK3MGilejY5R/cUc5kf\";s:15:\"css/regular.css\";s:71:\"sha384-RGDxJbFQcd3/Rei8rYb+3xO3YREd0abxm8WfLkYj7j4HHo5ZVuNUGVx8H8GbpFTQ\";s:13:\"css/solid.css\";s:71:\"sha384-VxweGom9fDoUf7YfLTHgO0r70LVNHP5+Oi8dcR4hbEjS8UnpRtrwTx7LpHq/MWLI\";s:19:\"css/svg-with-js.css\";s:71:\"sha384-N44Xrku5FaDiZLZ8lncIZLh+x9xiqk1r0NTlUJQ5xanSpdORyQHP4Zp2WQJ9GlpJ\";s:9:\"js/all.js\";s:71:\"sha384-Voup2lBiiyZYkRto2XWqbzxHXwzcm4A5RfdfG6466bu5LqjwwrjXCMBQBLMWh7qR\";s:12:\"js/brands.js\";s:71:\"sha384-BPIhZF7kZGuZzBS4SP/oIqzpxWuOUtsPLUTVGpGw+EtB1wKt1hv63jb2OCroS3EX\";s:17:\"js/fontawesome.js\";s:71:\"sha384-6AOxTjzzZLvbTJayrLOYweuPckqh0rrB4Sj+Js8Vzgr85/qm2e0DRqi+rBzyK52J\";s:13:\"js/regular.js\";s:71:\"sha384-6XNKyHeL6pEPXURVNSKQ0lUP80a5FHqN0oFqSSS8Qviyy2u0KmCMJlQ5iLiAAPBg\";s:11:\"js/solid.js\";s:71:\"sha384-652/z7yNdGONCCBu0u5h5uF9voJhBdgruAuIDVheEaQ7O/ZC9wyyV+yZsYb32Wy7\";s:14:\"js/v4-shims.js\";s:71:\"sha384-STc8Gazx86A+NmeBWQTqa5Ob1wGSRQZevexYiUkKdiqZhi5LSZ28XYAvgptHK5HH\";}s:3:\"pro\";a:14:{s:11:\"css/all.css\";s:71:\"sha384-HX5QvHXoIsrUAY0tE/wG8+Wt1MwvaY28d9Zciqcj6Ob7Tw99tFPo4YUXcZw9l930\";s:14:\"css/brands.css\";s:71:\"sha384-M4owBK0KiG0Vz+G5z/8v8tBb1+w9ts66Z6xKkZEPgBwzISkrcNra4GxZcvJPyaGB\";s:19:\"css/fontawesome.css\";s:71:\"sha384-ZDxYpspDwfEsC0ZJDb74i/Rqjb1CnX3a69Dz9vXv4PvvlTEkgMI02TATTRNJoZ06\";s:13:\"css/light.css\";s:71:\"sha384-PWGGmWk9+xVydf1Gzso0ouaikBBKLu4nCY52q+tBUMq5iXmRhpgTuDkjbtxZ1rXT\";s:15:\"css/regular.css\";s:71:\"sha384-tYZB+BP2inzRg01pQhSlW4Tloc0ULXYGiBaf5kSB5Tb3+l84bJy+PKerqziKz3iv\";s:13:\"css/solid.css\";s:71:\"sha384-KY40QRrgoQAM9BPN+gm7JoK30M/P6QqKRCbXUS3uWbPfycyiVeEsPkGNMhcNL3DU\";s:19:\"css/svg-with-js.css\";s:71:\"sha384-ubRAMbpAKC+ULwg5mkUQLFReIXq1yeiKIcfV7cYp+rEaeINfEglYX6JOte80PCDk\";s:9:\"js/all.js\";s:71:\"sha384-quzri7saio48xMf3ED3HiI5YaItt68Q+0J3qc9EIfk1jk3QqCJhS24l6CZpUGfEe\";s:12:\"js/brands.js\";s:71:\"sha384-QlvHmHtevrYI4s/vdiK6chTDouw2pRA5av6ZLVtENubkoCgSZz4ZaXVvplQ1FRPs\";s:17:\"js/fontawesome.js\";s:71:\"sha384-CUrLKzrygRugRUPtEJ1u4nV4Ec6GnuDMRDGaxfoFXLI+sraWS6rqGg2Sjfs6BTet\";s:11:\"js/light.js\";s:71:\"sha384-z7YlG414oqy0TO7qY/nGfC8zd1LL8JAX3iNQ3iLybUIziHzaMYqBwUvhizEwV0Fd\";s:13:\"js/regular.js\";s:71:\"sha384-p/qo0lifpToZ0ubNiv1WFzlmYJU+BOenvU+evARCvCqALvbpZuqmZQ207vmYD6QL\";s:11:\"js/solid.js\";s:71:\"sha384-y//1Knkpeyl2S568g2ECqUA4n3MKf+kpj1/sfjUQbR1WtBPONceBHrQVMiAqfjLH\";s:14:\"js/v4-shims.js\";s:71:\"sha384-6+8zJP76v3EziONR2vMd32iSU3qbdicAE8KNp+NWniM6mBmvN80NlY+sbvCO+w7M\";}}}s:6:\"5.0.13\";a:1:{s:3:\"sri\";a:2:{s:4:\"free\";a:12:{s:11:\"css/all.css\";s:71:\"sha384-DNOHZ68U8hZfKXOrtjWvjxusGo9WQnrNx2sqG0tfsghAvtVlRW3tvkXWZh58N9jp\";s:14:\"css/brands.css\";s:71:\"sha384-VGCZwiSnlHXYDojsRqeMn3IVvdzTx5JEuHgqZ3bYLCLUBV8rvihHApoA1Aso2TZA\";s:19:\"css/fontawesome.css\";s:71:\"sha384-GVa9GOgVQgOk+TNYXu7S/InPTfSDTtBalSgkgqQ7sCik56N9ztlkoTr2f/T44oKV\";s:15:\"css/regular.css\";s:71:\"sha384-EWu6DiBz01XlR6XGsVuabDMbDN6RT8cwNoY+3tIH+6pUCfaNldJYJQfQlbEIWLyA\";s:13:\"css/solid.css\";s:71:\"sha384-Rw5qeepMFvJVEZdSo1nDQD5B6wX0m7c5Z/pLNvjkB14W6Yki1hKbSEQaX9ffUbWe\";s:19:\"css/svg-with-js.css\";s:71:\"sha384-LAtyQAMHxrIJzktG06ww5mJ0KQ+uCqQIJFjwj+ceCjUlZ2jkLwJZt1nBGw4KaFEZ\";s:9:\"js/all.js\";s:71:\"sha384-xymdQtn1n3lH2wcu0qhcdaOpQwyoarkgLVxC/wZ5q7h9gHtxICrpcaSUfygqZGOe\";s:12:\"js/brands.js\";s:71:\"sha384-G/XjSSGjG98ANkPn82CYar6ZFqo7iCeZwVZIbNWhAmvCF2l+9b5S21K4udM7TGNu\";s:17:\"js/fontawesome.js\";s:71:\"sha384-6OIrr52G08NpOFSZdxxz1xdNSndlD4vdcf/q2myIUVO0VsqaGHJsB0RaBE01VTOY\";s:13:\"js/regular.js\";s:71:\"sha384-IJ3h7bJ6KqiB70L7/+fc44fl+nKF5eOFkgM9l/zZii9xs7W2aJrwIlyHZiowN+Du\";s:11:\"js/solid.js\";s:71:\"sha384-tzzSw1/Vo+0N5UhStP3bvwWPq+uvzCMfrN1fEFe+xBmv1C/AtVX5K0uZtmcHitFZ\";s:14:\"js/v4-shims.js\";s:71:\"sha384-qqI1UsWtMEdkxgOhFCatSq+JwGYOQW+RSazfcjlyZFNGjfwT/T1iJ26+mp70qvXx\";}s:3:\"pro\";a:14:{s:11:\"css/all.css\";s:71:\"sha384-oi8o31xSQq8S0RpBcb4FaLB8LJi9AT8oIdmS1QldR8Ui7KUQjNAnDlJjp55Ba8FG\";s:14:\"css/brands.css\";s:71:\"sha384-t3MQUMU0g3tY/0O/50ja6YVaEFYwPpOiPbrHk9p5DmYtkHJU2U1/ujNhYruOJwcj\";s:19:\"css/fontawesome.css\";s:71:\"sha384-LDuQaX4rOgqi4rbWCyWj3XVBlgDzuxGy/E6vWN6U7c25/eSJIwyKhy9WgZCHQWXz\";s:13:\"css/light.css\";s:71:\"sha384-d8NbeymhHpk+ydwT2rk4GxrRuC9pDL/3A6EIedSEYb+LE+KQ5QKgIWTjYwHj/NBs\";s:15:\"css/regular.css\";s:71:\"sha384-HLkkol/uuRVQDnHaAwidOxb1uCbd78FoGV/teF8vONYKRP9oPQcBZKFdi3LYDy/C\";s:13:\"css/solid.css\";s:71:\"sha384-drdlAcijFWubhOfj9OS/gy2Gs34hVhVT90FgJLzrldrLI+7E7lwBxmanEEhKTRTS\";s:19:\"css/svg-with-js.css\";s:71:\"sha384-8YpCivPy+AkMdZ0uAvEP04Gs77AN/6mS5AmZqkCwniP51zSG8rCMaH06OYuC4iXd\";s:9:\"js/all.js\";s:71:\"sha384-d84LGg2pm9KhR4mCAs3N29GQ4OYNy+K+FBHX8WhimHpPm86c839++MDABegrZ3gn\";s:12:\"js/brands.js\";s:71:\"sha384-44Hl7UlQr9JXHFcZOp9qWHk2H1lrsAN/cG3GNgB2JqbciecuJ2/B9sjelOMttzBM\";s:17:\"js/fontawesome.js\";s:71:\"sha384-BUkEHIKZJ0ussRY3zYfFL7R0LpqWmucr9K38zMTJWdGQywTjmzbejVSNIHuNEhug\";s:11:\"js/light.js\";s:71:\"sha384-+iGqamqASU/OvBgGwlIHH6HSEgiluzJvTqcjJy8IN9QG9aUfd0z0pKpTlH7TpU7X\";s:13:\"js/regular.js\";s:71:\"sha384-1bAvs6o5Yb7MMzvTI3oq2qkreCQFDXb6KISLBhrHR+3sJ/mm7ZWfnQVRwScbPEmd\";s:11:\"js/solid.js\";s:71:\"sha384-CucLC75yxFXtBjA/DCHWMS14abAUhf5HmFRdHyKURqqLqi3OrLsyhCyqp83qjiOR\";s:14:\"js/v4-shims.js\";s:71:\"sha384-LDfu/SrM7ecLU6uUcXDDIg59Va/6VIXvEDzOZEiBJCh148mMGba7k3BUFp1fo79X\";}}}s:5:\"5.1.0\";a:1:{s:3:\"sri\";a:2:{s:4:\"free\";a:13:{s:11:\"css/all.css\";s:71:\"sha384-lKuwvrZot6UHsBSfcMvOkWwlCMgc0TaWr+30HWe3a4ltaBwTZhyTEggF5tJv8tbt\";s:14:\"css/brands.css\";s:71:\"sha384-7xAnn7Zm3QC1jFjVc1A6v/toepoG3JXboQYzbM0jrPzou9OFXm/fY6Z/XiIebl/k\";s:19:\"css/fontawesome.css\";s:71:\"sha384-ozJwkrqb90Oa3ZNb+yKFW2lToAWYdTiF1vt8JiH5ptTGHTGcN7qdoR1F95e0kYyG\";s:15:\"css/regular.css\";s:71:\"sha384-avJt9MoJH2rB4PKRsJRHZv7yiFZn8LrnXuzvmZoD3fh1aL6aM6s0BBcnCvBe6XSD\";s:13:\"css/solid.css\";s:71:\"sha384-TbilV5Lbhlwdyc4RuIV/JhD8NR+BfMrvz4BL5QFa2we1hQu6wvREr3v6XSRfCTRp\";s:19:\"css/svg-with-js.css\";s:71:\"sha384-5aLiCANDiVeIiNfzcW+kXWzWdC6riDYfxLS6ifvejaqYOiEufCh0zVLMkW4nr8iC\";s:16:\"css/v4-shims.css\";s:71:\"sha384-epK5t6ciulYxBQbRDZyYJFVuWey/zPlkBIbv6UujFdGiIwQCeWOyv5PVp2UQXbr2\";s:9:\"js/all.js\";s:71:\"sha384-3LK/3kTpDE/Pkp8gTNp2gR/2gOiwQ6QaO7Td0zV76UFJVhqLl4Vl3KL1We6q6wR9\";s:12:\"js/brands.js\";s:71:\"sha384-ZqDZAkGUHrXxm3bvcTCmQWz4lt7QGLxzlqauKOyLwg8U0wYcYPDIIVTbZZXjbfsM\";s:17:\"js/fontawesome.js\";s:71:\"sha384-juNb2Ils/YfoXkciRFz//Bi34FN+KKL2AN4R/COdBOMD9/sV/UsxI6++NqifNitM\";s:13:\"js/regular.js\";s:71:\"sha384-Y+AVd32cSTAMpwehrH10RiRmA28kvu879VbHTG58mUFhd+Uxl/bkAXsgcIesWn3a\";s:11:\"js/solid.js\";s:71:\"sha384-Z7p3uC4xXkxbK7/4keZjny0hTCWPXWfXl/mJ36+pW7ffAGnXzO7P+iCZ0mZv5Zt0\";s:14:\"js/v4-shims.js\";s:71:\"sha384-3qT9zZfeo1gcy2NmVv5dAhtOYkj91cMLXRkasOiRB/v+EU3G+LZUyk5uqZQdIPsV\";}s:3:\"pro\";a:15:{s:11:\"css/all.css\";s:71:\"sha384-87DrmpqHRiY8hPLIr7ByqhPIywuSsjuQAfMXAE0sMUpY3BM7nXjf+mLIUSvhDArs\";s:14:\"css/brands.css\";s:71:\"sha384-C1HxUFJBptCeaMsYCbPUw8fdL2Cblu3mJZilxrfujE+7QLr8BfuzBl5rPLNM61F6\";s:19:\"css/fontawesome.css\";s:71:\"sha384-PnWzJku7hTqk2JREATthkLpYeVVGcBbXG5yEzk7hD2HIr/VxffIDfNSR7p7u4HUy\";s:13:\"css/light.css\";s:71:\"sha384-ANTAgj8tbw0vj4HgQ4HsB886G2pH15LXbruHPCBcUcaPAtn66UMxh8HQcb1cH141\";s:15:\"css/regular.css\";s:71:\"sha384-6kuJOVhnZHzJdVIZJcWiMZVi/JwinbqLbVxIbR73nNqXnYJDQ5TGtf+3XyASO4Am\";s:13:\"css/solid.css\";s:71:\"sha384-rvfDcG9KDoxdTesRF/nZ/sj8CdQU+hy6JbNMwxUTqpoI2LaPK8ASQk6E4bgabrox\";s:19:\"css/svg-with-js.css\";s:71:\"sha384-/h6SKuA/ysT91EgYEGm9B6Z6zlaxuvKeW/JB7FWdGwCFalafxmGzJE2a63hS1BLm\";s:16:\"css/v4-shims.css\";s:71:\"sha384-2RBBYH6GaI11IJzJ6V1eL7kXXON+epoQIt+HqpzQdBrtyT7gNwKPDxo2roxUbtW9\";s:9:\"js/all.js\";s:71:\"sha384-E5SpgaZcbSJx0Iabb3Jr2AfTRiFnrdOw1mhO19DzzrT9L+wCpDyHUG2q07aQdO6E\";s:12:\"js/brands.js\";s:71:\"sha384-QPbiRUBnwCr8JYNjjm7CB0QP9h4MLvWUZhsChFX6dLzRkY22/nAxVYqa5nUTd6PL\";s:17:\"js/fontawesome.js\";s:71:\"sha384-ckjcH5WkBMAwWPjTJiy7K2LaLp37yyCVKAs3DKjhPdo0lRCDIScolBzRsuaSu+bQ\";s:11:\"js/light.js\";s:71:\"sha384-77i21WTcIcnSPKxwR794RLUQitpNqm6K3Fxsjx8hgoc3ZZbPJu5orgvU/7xS3EFq\";s:13:\"js/regular.js\";s:71:\"sha384-S21AhcbZ5SXPXH+MH7JuToqmKYXviahLaD1s9yApRbu1JDiMjPBGQIw/3PCHKUio\";s:11:\"js/solid.js\";s:71:\"sha384-q6QALO/4RSDjqnloeDcGnkB0JdK3MykIi6dUW5YD66JHE3JFf8rwtV5AQdYHdE0X\";s:14:\"js/v4-shims.js\";s:71:\"sha384-9gfBAY6DS3wT0yuvYN1aaA1Q9R0fYQHliQWLChuYDWJJ0wQJpoNZrzlcqd4+qqny\";}}}s:5:\"5.1.1\";a:1:{s:3:\"sri\";a:2:{s:4:\"free\";a:13:{s:11:\"css/all.css\";s:71:\"sha384-O8whS3fhG2OnA5Kas0Y9l3cfpmYjapjI0E4theH4iuMD+pLhbf6JI0jIMfYcK3yZ\";s:14:\"css/brands.css\";s:71:\"sha384-SYNjKRRe+vDW0KSn/LrkhG++hqCLJg9ev1jIh8CHKuEA132pgAz+WofmKAhPpTR7\";s:19:\"css/fontawesome.css\";s:71:\"sha384-0b7ERybvrT5RZyD80ojw6KNKz6nIAlgOKXIcJ0CV7A6Iia8yt2y1bBfLBOwoc9fQ\";s:15:\"css/regular.css\";s:71:\"sha384-QNorH84/Id/CMkUkiFb5yTU3E/qqapnCVt6k5xh1PFIJ9hJ8VfovwwH/eMLQTjGS\";s:13:\"css/solid.css\";s:71:\"sha384-S2gVFTIn1tJ/Plf+40+RRAxBCiBU5oAMFUJxTXT3vOlxtXm7MGjVj62mDpbujs4C\";s:19:\"css/svg-with-js.css\";s:71:\"sha384-EH3TEAKYd7R0QbCS4OFuYoEpaXITVg5c/gdZ/beEaAbRjMGVuVLLFjiIKOneCzGZ\";s:16:\"css/v4-shims.css\";s:71:\"sha384-LCsPWAjCFLDeFHB5Y0SBIOqgC5othK8pIZiJAdbJDiN10B2HXEm1mFNHtED8cViz\";s:9:\"js/all.js\";s:71:\"sha384-BtvRZcyfv4r0x/phJt9Y9HhnN5ur1Z+kZbKVgzVBAlQZX4jvAuImlIz+bG7TS00a\";s:12:\"js/brands.js\";s:71:\"sha384-0inRy4HkP0hJ038ZyfQ4vLl+F4POKbqnaUB6ewmU4dWP0ki8Q27A0VFiVRIpscvL\";s:17:\"js/fontawesome.js\";s:71:\"sha384-NY6PHjYLP2f+gL3uaVfqUZImmw71ArL9+Roi9o+I4+RBqArA2CfW1sJ1wkABFfPe\";s:13:\"js/regular.js\";s:71:\"sha384-sAzYCvbTTKFOxT4VHu+ZjHRMXjvfjT6TAqOng28g4jba88Peg5+hkoVIqQKGjmj1\";s:11:\"js/solid.js\";s:71:\"sha384-GXi56ipjsBwAe6v5X4xSrVNXGOmpdJYZEEh/0/GqJ3JTHsfDsF8v0YQvZCJYAiGu\";s:14:\"js/v4-shims.js\";s:71:\"sha384-T69Lzd4bE7W8/vVrxvfsx45/AAKf6QmKEg5zSl0v9aZwo/pTKseq81mxdpARTQpx\";}s:3:\"pro\";a:15:{s:11:\"css/all.css\";s:71:\"sha384-xyMU7RufUdPGVOZRrc2z2nRWVWBONzqa0NFctWglHmt5q5ukL22+lvHAqhqsIm3h\";s:14:\"css/brands.css\";s:71:\"sha384-E5dVkWQIVhVPtBz/KK2TS7EM9l1+5XiWFPX7l3+5ayHPwDguGsHqof3GQbk55AS3\";s:19:\"css/fontawesome.css\";s:71:\"sha384-bHoj6f1b1CQ6zapOREeYBO/JnDjeV1fLuKn3KHnbqAAnkLva11KY3m8YyKPVXYLF\";s:13:\"css/light.css\";s:71:\"sha384-EGKQAl6ZrGi/zGxZ4ykVhc/A3tFVeBiLnneETILtcxQnZpo7ejmb4BkNa3zSgo4K\";s:15:\"css/regular.css\";s:71:\"sha384-AKIrAHbICIQF+NEqtykrcdzMjExDiKLa9hOyUVsr4PlHtktH7xaD10vO98UnPjuE\";s:13:\"css/solid.css\";s:71:\"sha384-Ux3tEr1RmnxCht2XbPkWWBuotwMVXKOe0PkWN/nmiD5CSV6Tyjl+Kr0J0iX1yd0q\";s:19:\"css/svg-with-js.css\";s:71:\"sha384-++BmJ9x4V05AhCNnLr/RjPTY4BAFuhZsESUqH5hiwZspBvy7F+DRGvSH8tGHw9P/\";s:16:\"css/v4-shims.css\";s:71:\"sha384-TUicmScQcYANFcc4OQKEX6V1Zek9o9t+dwW/2tZoXmSigBk9JqfHxZZFlSo+0oRl\";s:9:\"js/all.js\";s:71:\"sha384-cHcg4nvWPIGArJhEgL2F5e09Cn1GyPQpNYKbPatFCpDefCbezZjPA3PhLozKTZnv\";s:12:\"js/brands.js\";s:71:\"sha384-KCMfKsP/3VgeibBQRMu4bT+9041Hi2v9PIz9FLOPJBEvxCBklc4o7tRwwQu4FWsT\";s:17:\"js/fontawesome.js\";s:71:\"sha384-EWJRWU7LQt+ri8YtDjTr8adATyP7y8DwlpE8zruoUC4nHNjtWZMU+iPYK+tFaV3U\";s:11:\"js/light.js\";s:71:\"sha384-0rp6k6cJIuLV1ORowDSSKr4VbEqb664PQUWdBvhJyt6IfkshVb0r6UlOkX6yVdaI\";s:13:\"js/regular.js\";s:71:\"sha384-Mw6yr+W+X+ckaAUbsPUb2BcU3Af9aSjmPMIlMr2iplN0VQIpscDWy/VwY5w0sz9w\";s:11:\"js/solid.js\";s:71:\"sha384-PyvJtlnGBA/R+hfVbHbnzfeT8G/iTORqPhR5WKGTQXlfmLe5bV+d64NECHG4sIMa\";s:14:\"js/v4-shims.js\";s:71:\"sha384-rJQjFeDWQReL3KmIeV81jB594CgKx/MmXyAgiuu88Jo253P+PSMgWzivZQtR6N6J\";}}}s:5:\"5.2.0\";a:1:{s:3:\"sri\";a:2:{s:4:\"free\";a:13:{s:11:\"css/all.css\";s:71:\"sha384-hWVjflwFxL6sNzntih27bfxkr27PmbbK/iSvJ+a4+0owXq79v+lsFkW54bOGbiDQ\";s:14:\"css/brands.css\";s:71:\"sha384-nT8r1Kzllf71iZl81CdFzObMsaLOhqBU1JD2+XoAALbdtWaXDOlWOZTR4v1ktjPE\";s:19:\"css/fontawesome.css\";s:71:\"sha384-HbmWTHay9psM8qyzEKPc8odH4DsOuzdejtnr+OFtDmOcIVnhgReQ4GZBH7uwcjf6\";s:15:\"css/regular.css\";s:71:\"sha384-zkhEzh7td0PG30vxQk1D9liRKeizzot4eqkJ8gB3/I+mZ1rjgQk+BSt2F6rT2c+I\";s:13:\"css/solid.css\";s:71:\"sha384-wnAC7ln+XN0UKdcPvJvtqIH3jOjs9pnKnq9qX68ImXvOGz2JuFoEiCjT8jyZQX2z\";s:19:\"css/svg-with-js.css\";s:71:\"sha384-jKeGgxY7zPT61fNXg6OMRDu8vsxOPRLMlgAIUHo1KVag4lyu5B03KsDLYOTMM4ld\";s:16:\"css/v4-shims.css\";s:71:\"sha384-W14o25dsDf2S/y9FS68rJKUyCoBGkLwr8owWTSTTHj4LOoHdrgSxw1cmNQMULiRb\";s:9:\"js/all.js\";s:71:\"sha384-4oV5EgaV02iISL2ban6c/RmotsABqE4yZxZLcYMAdG7FAPsyHYAPpywE9PJo+Khy\";s:12:\"js/brands.js\";s:71:\"sha384-4BRtleJgTYsMKIVuV1Z7lNE29r4MxwKR7u88TWG2GaXsmSljIykt/YDbmKndKGID\";s:17:\"js/fontawesome.js\";s:71:\"sha384-QcnrgQuRmocjIBY6ByWMmDvUg3HO4MSdVjY7ynJwZfvTDhVPPQOUI9TRzc6/7ZO1\";s:13:\"js/regular.js\";s:71:\"sha384-YdSTwqfKxyP06Jj3UzTeumv8M+Pme60+KND4oF+5r5VeUCvdkw7NhSzFYWbe00ba\";s:11:\"js/solid.js\";s:71:\"sha384-YmNA3b9AQuWW8KZguYfqJa/YhKNTwGVD5pQc1cN0ZAVRudFFtR17HR7rooNcVXe4\";s:14:\"js/v4-shims.js\";s:71:\"sha384-rn4uxZDX7xwNq5bkqSbpSQ3s4tK9evZrXAO1Gv9WTZK4p1+NFsJvOQmkos19ebn2\";}s:3:\"pro\";a:15:{s:11:\"css/all.css\";s:71:\"sha384-TXfwrfuHVznxCssTxWoPZjhcss/hp38gEOH8UPZG/JcXonvBQ6SlsIF49wUzsGno\";s:14:\"css/brands.css\";s:71:\"sha384-Ei2oxwH0wpwmp7KPdhYnajC5fWDdMENOjDw9OfzWvcFcOGn0Egy+L5AAculaqBbD\";s:19:\"css/fontawesome.css\";s:71:\"sha384-4eP+1rYQmuI3hxrmyE+GT/EIiNbF4R85ciN3jMpmIh+bU5Hz2IU7AdcVe+JS+AJz\";s:13:\"css/light.css\";s:71:\"sha384-pcDR01P1wNxsYZiEYdROCAYhU2u8VHOctLrYRonRFtkf/TGEQFWt0rqFbPGWlyn4\";s:15:\"css/regular.css\";s:71:\"sha384-g3XsWx0Sqi7JIjLKVnwUxEvqrxTMQPIf3PN+vTdWY2AhduP/rnj0rw89v0nbD4Ro\";s:13:\"css/solid.css\";s:71:\"sha384-B/E/KxBX31kY/5sew+X4c8e6ErosbqOOsA3t4k6VVmx8Hrz//v0tEUtXmUVx9X6Q\";s:19:\"css/svg-with-js.css\";s:71:\"sha384-O6mvz45yC1vfdu/EgUxAoSGrP+sFtepMtj7eOQIW1G3WT9Sj5djActZC0hd/F42D\";s:16:\"css/v4-shims.css\";s:71:\"sha384-2QRS8Mv2zxkE2FAZ5/vfIJ7i0j+oF15LolHAhqFp9Tm4fQ2FEOzgPj4w/mWOTdnC\";s:9:\"js/all.js\";s:71:\"sha384-yBZ34R8uZDBb7pIwm+whKmsCiRDZXCW1vPPn/3Gz0xm4E95frfRNrOmAUfGbSGqN\";s:12:\"js/brands.js\";s:71:\"sha384-eg9wHuvEPj6+GlGomBRaMHLF0QfCnjdASWDKd84DMeM9phhyDaPFou/nHJBt0bz+\";s:17:\"js/fontawesome.js\";s:71:\"sha384-FQUuiJxt9F0hPc9IP3M5ndmqK53iBCGcy4ZSx8QirhYOIs8l7x+e1/zdswyZEigi\";s:11:\"js/light.js\";s:71:\"sha384-glAz6mCeiwAe/kHHHG/OvhrjA4+AH55ZfH8fwYp48YCY61POwUmOrH/oYOaF2Ujy\";s:13:\"js/regular.js\";s:71:\"sha384-8hKZY21U4J3r9N0GFl+24YnDkbRhs8y/nXT6BaZ+sOJDNmz+1DhFawE9UYL37XzB\";s:11:\"js/solid.js\";s:71:\"sha384-1j3ph9Rf+Aaz6rrizz6cdFxU9ZbUyvkbiwQ5+T/BY4I5mk37vUpTA8S9ZZOlfdWu\";s:14:\"js/v4-shims.js\";s:71:\"sha384-aoMjEUBUPf5GpXx1WJUeTZ/gBmGqQB1u8uUc2J5LW2xnQtJKkGulESZ+rkoj182s\";}}}s:5:\"5.3.1\";a:1:{s:3:\"sri\";a:2:{s:4:\"free\";a:13:{s:11:\"css/all.css\";s:71:\"sha384-mzrmE5qonljUremFsqc01SB46JvROS7bZs3IO2EmfFsd15uHvIt+Y8vEf7N7fWAU\";s:14:\"css/brands.css\";s:71:\"sha384-rf1bqOAj3+pw6NqYrtaE1/4Se2NBwkIfeYbsFdtiR6TQz0acWiwJbv1IM/Nt/ite\";s:19:\"css/fontawesome.css\";s:71:\"sha384-1rquJLNOM3ijoueaaeS5m+McXPJCGdr5HcA03/VHXxcp2kX2sUrQDmFc3jR5i/C7\";s:15:\"css/regular.css\";s:71:\"sha384-ZlNfXjxAqKFWCwMwQFGhmMh3i89dWDnaFU2/VZg9CvsMGA7hXHQsPIqS+JIAmgEq\";s:13:\"css/solid.css\";s:71:\"sha384-VGP9aw4WtGH/uPAOseYxZ+Vz/vaTb1ehm1bwx92Fm8dTrE+3boLfF1SpAtB1z7HW\";s:19:\"css/svg-with-js.css\";s:71:\"sha384-4K9ulTwOtsXr+7hczR7fImKfUZY5THwqvfxwPx1VUCEOt4qssi2Vm+kHY7NJQPoy\";s:16:\"css/v4-shims.css\";s:71:\"sha384-lmquXrF9qn7mMo6iRQ662vN44vTTVUBpcdtDFWPxD9uFPqC/aMn6pcQrTTupiv1A\";s:9:\"js/all.js\";s:71:\"sha384-kW+oWsYx3YpxvjtZjFXqazFpA7UP/MbiY4jvs+RWZo2+N94PFZ36T6TFkc9O3qoB\";s:12:\"js/brands.js\";s:71:\"sha384-2vdvXGQdnt+ze3ylY5ESeZ9TOxwxlOsldUzQBwtjvRpen1FwDT767SqyVbYrltjb\";s:17:\"js/fontawesome.js\";s:71:\"sha384-2OfHGv4zQZxcNK+oL8TR9pA+ADXtUODqGpIRy1zOgioC4X3+2vbOAp5Qv7uHM4Z8\";s:13:\"js/regular.js\";s:71:\"sha384-sqmLTIuB+bQgkyOcdJ/hAvXl51Z7qqdK/lcH/rt6sdvDKFincQWI+fVgcDZM6NMz\";s:11:\"js/solid.js\";s:71:\"sha384-GJiigN/ef2B3HMj0haY+eMmG4EIIrhWgGJ2Rv0IaWnNdWdbWPr1sRLkGz7xfjOFw\";s:14:\"js/v4-shims.js\";s:71:\"sha384-DtdEw3/pBQuSag11V3is/UZMjGkGMLDRBgk1UVAOvH6cYoqKjBmCEhePm13skjRV\";}s:3:\"pro\";a:15:{s:11:\"css/all.css\";s:71:\"sha384-9ralMzdK1QYsk4yBY680hmsb4/hJ98xK3w0TIaJ3ll4POWpWUYaA2bRjGGujGT8w\";s:14:\"css/brands.css\";s:71:\"sha384-AOiME8p6xSUbTO/93cbYmpOihKrqxrLjvkT2lOpIov+udKmjXXXFLfpKeqwTjNTC\";s:19:\"css/fontawesome.css\";s:71:\"sha384-Yz2UJoJEWBkb0TBzOd2kozX5/G4+z5WzWMMZz1Np2vwnFjF5FypnmBUBPH2gUa1F\";s:13:\"css/light.css\";s:71:\"sha384-9QuzjQIM/Un6pY9bKVJGLW8PauASO8Mf9y3QcsHhfZSXNyXGoXt/POh3VLeiv4mw\";s:15:\"css/regular.css\";s:71:\"sha384-pofSFWh/aTwxUvfNhg+LRpOXIFViguTD++4CNlmwgXOrQZj1EOJewBT+DmUVeyJN\";s:13:\"css/solid.css\";s:71:\"sha384-wJu5pIbEyJzi+kRgVKVQkPNKI104yNC+IAyK7XXEVGgPGe+LTEERIkpSZbc/wrOx\";s:19:\"css/svg-with-js.css\";s:71:\"sha384-Hmg9TonawJaGH8ayFFnEBwvkx61BYLPAOV7b/YDGQEVIs1jh9pWQigAavMuD+Vc/\";s:16:\"css/v4-shims.css\";s:71:\"sha384-1YFoQoO5Em1oxLErpWpJuswiqPFVHl8HLDUaLjJGJH8+Nra/Y1D6uOZkEgfH5OZf\";s:9:\"js/all.js\";s:71:\"sha384-eAVkiER0fL/ySiqS7dXu8TLpoR8d9KRzIYtG0Tz7pi24qgQIIupp0fn2XA1H90fP\";s:12:\"js/brands.js\";s:71:\"sha384-am5AyalpQCEfbKe6FYiGZc2vX080nrcueZmrbkljxLdQDJ5q5Vu9QDROD/QefEp1\";s:17:\"js/fontawesome.js\";s:71:\"sha384-u3o36ga3mMU6/lK/zdiER4h7pPtAK7wBuN0DrZPH22v01RZL8bKZkULIjxcx2/X/\";s:11:\"js/light.js\";s:71:\"sha384-2R0W5LA7dXp3ze/WhvjXlUcDaHRhtGlKYxN9QMhGDdjmj2EI1bub5ysSwofJwGfI\";s:13:\"js/regular.js\";s:71:\"sha384-EbI+OvKb7noKOfu8MSi/vCbi0KWlM61MjHDmRk4/vwJkPsMIRcJggYLDGWv7VeYY\";s:11:\"js/solid.js\";s:71:\"sha384-U4vTrZsQ4ooEtzL162EZfTtCiJNTXOwGDBzV91//DI5L/h48ibzHBiHJmPLpx2hO\";s:14:\"js/v4-shims.js\";s:71:\"sha384-8e1r0+5VTqCqkg/9vG+cnipytzBkEh9fpESgVwBZAizMkWRfiaTkdhgdnhLGwuPd\";}}}s:5:\"5.4.1\";a:1:{s:3:\"sri\";a:2:{s:4:\"free\";a:13:{s:11:\"css/all.css\";s:71:\"sha384-5sAR7xN1Nv6T6+dT2mhtzEpVJvfS3NScPQTrOxhwjIuvcA67KV2R5Jz6kr4abQsz\";s:14:\"css/brands.css\";s:71:\"sha384-Px1uYmw7+bCkOsNAiAV5nxGKJ0Ixn5nChyW8lCK1Li1ic9nbO5pC/iXaq27X5ENt\";s:19:\"css/fontawesome.css\";s:71:\"sha384-BzCy2fixOYd0HObpx3GMefNqdbA7Qjcc91RgYeDjrHTIEXqiF00jKvgQG0+zY/7I\";s:15:\"css/regular.css\";s:71:\"sha384-4e3mPOi7K1/4SAx8aMeZqaZ1Pm4l73ZnRRquHFWzPh2Pa4PMAgZm8/WNh6ydcygU\";s:13:\"css/solid.css\";s:71:\"sha384-osqezT+30O6N/vsMqwW8Ch6wKlMofqueuia2H7fePy42uC05rm1G+BUPSd2iBSJL\";s:19:\"css/svg-with-js.css\";s:71:\"sha384-2MWWLQq91kFwloAny7gkgoeV33bD/cE3A9ZbB2rCN/YAAR/VEHVoDq6vRJJYTaxM\";s:16:\"css/v4-shims.css\";s:71:\"sha384-YIDcSvDDaIskj/WDlWwjrNdK194YAGWc1CScdo2tXl3IQVS1zS07xQaoAFlXCf1P\";s:9:\"js/all.js\";s:71:\"sha384-L469/ELG4Bg9sDQbl0hvjMq8pOcqFgkSpwhwnslzvVVGpDjYJ6wJJyYjvG3u8XW7\";s:12:\"js/brands.js\";s:71:\"sha384-lc/yFuYW3B0EW9B2QSpod2KeBxq6/ZizGwAW6mRLUe3kKUVlSBfDIVZKwKIz/DBg\";s:17:\"js/fontawesome.js\";s:71:\"sha384-ISRc+776vRkDOTSbmnyoZFmwHy7hw2UR3KJpb4YtcfOyqUqhLGou8j5YmYnvQQJ4\";s:13:\"js/regular.js\";s:71:\"sha384-SQqzt64aAzh3UJ9XghcA//GE8+NxAIRcuCrrekyDokXP6Bbt/FYAFlV6VSPrZKwH\";s:11:\"js/solid.js\";s:71:\"sha384-agDKwSYPuGlC0wD14lKXXwb94jlUkbkoSugquwmKRKWv/nDXe1kApDS/gqUlRQmZ\";s:14:\"js/v4-shims.js\";s:71:\"sha384-/s2EnwEz7C3ziRundAGzeOAoGYffu84oY4SOHjhI/2Wqk3Z0usUm9bjdduzhZ9+z\";}s:3:\"pro\";a:15:{s:11:\"css/all.css\";s:71:\"sha384-POYwD7xcktv3gUeZO5s/9nUbRJG/WOmV6jfEGikMJu77LGYO8Rfs2X7URG822aum\";s:14:\"css/brands.css\";s:71:\"sha384-rmUpvtaCngUop5CYz7WL1LnqkMweXskxP+1AXmkuMSbImsUuy82bUYS4A8Syd3Pf\";s:19:\"css/fontawesome.css\";s:71:\"sha384-PPeKwWhk5XZBVVq089DuhGmjaEVB1r+jdmx6jZrqzlef8ojhZXG+E/D6SP7uO1dk\";s:13:\"css/light.css\";s:71:\"sha384-DZAoxBcs4G15aUXLX4vKbO53ye8L8AB/zg07HOVhIMVclhx8rdWye0AJSQl51ehV\";s:15:\"css/regular.css\";s:71:\"sha384-xKPOvJDwdb/n5w2kh6cxds98Ae2d5N63xkIydEdoYeA2bxIKUmmyU9lZ9j58mLYS\";s:13:\"css/solid.css\";s:71:\"sha384-oT4lQmwnKx98HRnFgaGvgCdjtKOjep9CjfMdAOPtJU8Vy6NY3X34GfqL0H43ydJn\";s:19:\"css/svg-with-js.css\";s:71:\"sha384-j2EtHJUHBAZF9vkmX0TSA/QqYMf0Npp9P2leJGZFDbLHbcI62HH8w7FRcUMNf8Q2\";s:16:\"css/v4-shims.css\";s:71:\"sha384-aaXKvb/d7l2hTm3ZDWCy5v4ct5zXIslt+70K4xalZPLu3ifrkYcG61m4u+DIQGEk\";s:9:\"js/all.js\";s:71:\"sha384-0+tugznPwCEvPiypW+OwmFjAQvRKlgI0ZZZW3nofNlLMmbYXbmNvfX/9up9XQSRs\";s:12:\"js/brands.js\";s:71:\"sha384-ShBqjf9lFG58e2NmhnbVlhAOPCWdzkPbBmAEcQ37Liu3TwOYxIizS7J1P3rRLJHm\";s:17:\"js/fontawesome.js\";s:71:\"sha384-8vKKeD0uIV/HXM5ym3RGB4O7rZ43fCdpiXqP047w7sEE3igcK0Y1U9ApEArcRBDJ\";s:11:\"js/light.js\";s:71:\"sha384-jlaccvPpizUbHU/8pYAsDEwhhBae8MUcYqHHsKkjFcFsEp3Y6LrVXh0GA84aAkTg\";s:13:\"js/regular.js\";s:71:\"sha384-MB7Bz/7e8sBWnZgblSLUfFOOi+V1PIkRG/Ex1NMeu0CovaXCzHyCMwAwOF+FAo1s\";s:11:\"js/solid.js\";s:71:\"sha384-KlTWIsOnBg7LJobQmLsv5fQ1qbx73K+o8/xhoUDoIba13SxF4bT5W2WgV3d8mZIw\";s:14:\"js/v4-shims.js\";s:71:\"sha384-e+EZ4XUeGXVd0FDmP/mFu7FFe+qVX738ayOS2AErNIPSLz5oZ3OgVa9zEyCds3HP\";}}}s:5:\"5.4.2\";a:1:{s:3:\"sri\";a:2:{s:4:\"free\";a:13:{s:11:\"css/all.css\";s:71:\"sha384-/rXc/GQVaYpyDdyxK+ecHPVYJSN9bmVFBvjA/9eOB+pb3F2w2N6fc5qB9Ew5yIns\";s:14:\"css/brands.css\";s:71:\"sha384-BCEeiNUiLzxxoeYaIu7jJqq0aVVz2O2Ig4WbWEmRQ2Dx/AAxNV1wMDBXyyrxw1Zd\";s:19:\"css/fontawesome.css\";s:71:\"sha384-HU5rcgG/yUrsDGWsVACclYdzdCcn5yU8V/3V84zSrPDHwZEdjykadlgI6RHrxGrJ\";s:15:\"css/regular.css\";s:71:\"sha384-OEIzojYBMrmz48aIjVQj7VG38613/sxpP58OW9h5zBYC7biGFlv9tyu5kWmaAYlF\";s:13:\"css/solid.css\";s:71:\"sha384-uKQOWcYZKOuKmpYpvT0xCFAs/wE157X5Ua3H5onoRAOCNkJAMX/6QF0iXGGQV9cP\";s:19:\"css/svg-with-js.css\";s:71:\"sha384-+moUZLBX5mmeUnjaImkzlTo5cXyQWAvzbqQapNFd7+dGIaap0koo0rtfe8lHD38R\";s:16:\"css/v4-shims.css\";s:71:\"sha384-SlbnWxwEHTVYxDLrpIRrG2BpsTpWALbJ6Tx5Fq+XNHRBL7xI6xwhVpuUGrrbLBXe\";s:9:\"js/all.js\";s:71:\"sha384-wp96dIgDl5BLlOXb4VMinXPNiB32VYBSoXOoiARzSTXY+tsK8yDTYfvdTyqzdGGN\";s:12:\"js/brands.js\";s:71:\"sha384-i1RNpxOOEnRm63Ii3TuV0aM8bJ+6Pv6XHpRSJbN7QlIzZIsl7m36R0GhOTTGN3F9\";s:17:\"js/fontawesome.js\";s:71:\"sha384-n1qPouQQJ9VNZnZeNZWSDiclpIOJwZBS2bkD6rEX+DTmMXTKXBVCZw2cGbU/I17z\";s:13:\"js/regular.js\";s:71:\"sha384-Uj7q9rRb3eJNp0j1kXwOBgEWDGbAiJ7Dcuz4hLRQdtza6pawbo/Bmwgr58THzHyR\";s:11:\"js/solid.js\";s:71:\"sha384-OQNCj138epg9A13jaL9L/d5vMlK2jyPL4aOgi37KYt07aZARbv/eFGp/wnrCxkW5\";s:14:\"js/v4-shims.js\";s:71:\"sha384-fzYnAZZYxpOQTjc3Y1eP04DGdMLAy+PeiZ8+ICh4FDLkJR/NJiAgKgK2vEpGx3au\";}s:3:\"pro\";a:15:{s:11:\"css/all.css\";s:71:\"sha384-zhaLg9HKxTxDljOPXpWHGn91XMDH+sYAWRSgvzHes290/ISyrNicGrd6BInTnx3L\";s:14:\"css/brands.css\";s:71:\"sha384-RjTk1OTKX8K8S4QfwhFOfbNSbQxLFgN6jqDw05QuBDDEbc/x6xlPtkPSO4vA1TtI\";s:19:\"css/fontawesome.css\";s:71:\"sha384-XkH+Vmez3OoFo52K+SkBE61xZ7vKh9tF35gL9Yf8rD3RtKUqIQGoTJTsLdR5u8rt\";s:13:\"css/light.css\";s:71:\"sha384-n0uyPlhqrQyWPPzm6+B9xDeZKCD81RgGRsTO7PQt3McgMXSR9zjhGaD5cXHwk+D8\";s:15:\"css/regular.css\";s:71:\"sha384-+OdrK32QtByk1ipA7b4+uLddrcWs2bx3nn37Dl5h98PW1AYKIrRZKveBl6AcpgcD\";s:13:\"css/solid.css\";s:71:\"sha384-SYCdBxlsgGngJi9eiKt5Tk6UtOJs1Jq5eU3yZDZ+hOe0GKk/obXhHy50IYVVdJro\";s:19:\"css/svg-with-js.css\";s:71:\"sha384-3f24zIRoR/ma/cnROK52rTVZpgCXKQ92/89RDq7GO7/9IxIl3VQV/tF6ecGgvUs8\";s:16:\"css/v4-shims.css\";s:71:\"sha384-ah4vMGE5UgKcCIB90FZl8BOcusXAVTm070n1UuOrNQA9QwkgnhqASrop/Oblr6wY\";s:9:\"js/all.js\";s:71:\"sha384-+lZy0zDh4RS9ZG6+Od6x6irKqoBH4NSy0m7IW8UGbzGZ/rupt9Cd9NdEb5S7+V9w\";s:12:\"js/brands.js\";s:71:\"sha384-LVdS6BqWBV1V0OyGzWK0HrGN4uDZbpO6hja1oVh86MhthieoER2crgKS/KsaiN8E\";s:17:\"js/fontawesome.js\";s:71:\"sha384-zMrS036pMtJ0Ukzo5x2YiTrYDGDaoeO8Yd0IHhI/PaEnfrY/nMHqvKME8C7dHhUE\";s:11:\"js/light.js\";s:71:\"sha384-hOiC7FL4572/E3aEEeWM6dF3ch/qFz59R91pAJqjYEKHBXN5u7e2oAYAgeSGF1VB\";s:13:\"js/regular.js\";s:71:\"sha384-f1yYCENdJ+9NE5J2T8weglyMCtTqRJOeGP9qaLwO43aYY0PVeuAfmsGgTegByFW6\";s:11:\"js/solid.js\";s:71:\"sha384-XlRgTEYU6HJ02+ZCuXW2/CgjnpV2+8FuQPTJSJ/+ZCQS5ZXRfIS5FHDRhMvOL++d\";s:14:\"js/v4-shims.js\";s:71:\"sha384-6TX+vqRZyQq+vB25wCb101/vY510EN37QZgs5f1dfG1+QYuIoQGdFFV8sx8W36AL\";}}}s:5:\"5.5.0\";a:1:{s:3:\"sri\";a:2:{s:4:\"free\";a:13:{s:11:\"css/all.css\";s:71:\"sha384-B4dIYHKNBt8Bc12p+WXckhzcICo0wtJAoU8YZTY5qE0Id1GSseTk6S+L3BlXeVIU\";s:14:\"css/brands.css\";s:71:\"sha384-QT2Z8ljl3UupqMtQNmPyhSPO/d5qbrzWmFxJqmY7tqoTuT2YrQLEqzvVOP2cT5XW\";s:19:\"css/fontawesome.css\";s:71:\"sha384-u5J7JghGz0qUrmEsWzBQkfvc8nK3fUT7DCaQzNQ+q4oEXhGSx+P2OqjWsfIRB8QT\";s:15:\"css/regular.css\";s:71:\"sha384-z3ccjLyn+akM2DtvRQCXJwvT5bGZsspS4uptQKNXNg778nyzvdMqiGcqHVGiAUyY\";s:13:\"css/solid.css\";s:71:\"sha384-rdyFrfAIC05c5ph7BKz3l5NG5yEottvO/DQ0dCrwD8gzeQDjYBHNr1ucUpQuljos\";s:19:\"css/svg-with-js.css\";s:71:\"sha384-NKdowA6EzI4CWz/dLjoC7dhVj+KczesQbwkbt6y3aRTi1JPZBy2uOocsmHmYvkux\";s:16:\"css/v4-shims.css\";s:71:\"sha384-TTjEZR8VsD+LjNa98drkrTRYhdUEaS3gAGE7PGnx2qkePR3fZtnVNoAfxPNyf+IQ\";s:9:\"js/all.js\";s:71:\"sha384-GqVMZRt5Gn7tB9D9q7ONtcp4gtHIUEW/yG7h98J7IpE3kpi+srfFyyB/04OV6pG0\";s:12:\"js/brands.js\";s:71:\"sha384-S2C955KPLo8/zc2J7kJTG38hvFV+SnzXM6hwfEUhGHw5wPo6uXbnbjSJgw3clO4G\";s:17:\"js/fontawesome.js\";s:71:\"sha384-bNOdVeWbABef8Lh4uZ8c3lJXVlHdf8W5hh1OpJ4dGyqIEhMmcnJrosjQ36Kniaqm\";s:13:\"js/regular.js\";s:71:\"sha384-XrvTJeiQ46fxxPrZP6fay5yejA2FV4G1XsS8E4Piz6Fz+7FaEFTw7A7GR972irVV\";s:11:\"js/solid.js\";s:71:\"sha384-Xgf/DMe1667bioB9X1UM5QX+EG6FolMT4K7G+6rqNZBSONbmPh/qZ62nBPfTx+xG\";s:14:\"js/v4-shims.js\";s:71:\"sha384-vBDTb50BKnwbvJZ5ZC5dsGJNQydTI7ZoAjCeJkdta6nSewwGXCnppKI5lrIQX4Qu\";}s:3:\"pro\";a:15:{s:11:\"css/all.css\";s:71:\"sha384-j8y0ITrvFafF4EkV1mPW0BKm6dp3c+J9Fky22Man50Ofxo2wNe5pT1oZejDH9/Dt\";s:14:\"css/brands.css\";s:71:\"sha384-t0iPfoyIjBoVR2Kw/65HArpRWQy0/xKBUmdEVTs5VYBb/yiPZxMY6egc9MROr/Og\";s:19:\"css/fontawesome.css\";s:71:\"sha384-srL3Qh9R/n855m4o5fegS//B2q0R1md7z6ndDYaPj8iEp0j0IuKdFVWMY0JosKPF\";s:13:\"css/light.css\";s:71:\"sha384-33RmjeesW9BZ4wR2Gm3n4iBXOvGTto4znqL2kZleiRanWDxM59IHIq5RsbRioqxb\";s:15:\"css/regular.css\";s:71:\"sha384-UPs+YiUhgn0/I0swkJmk3PSj3SWmzDrM+S0S09xLI/UUmHBU7ivRHryI3uVL6H+m\";s:13:\"css/solid.css\";s:71:\"sha384-YIyAArzQv8q6Av1kr9cwxHhFcfNBUaolJindR2XO8E3OLp6z3d8My3oWLd33ET7M\";s:19:\"css/svg-with-js.css\";s:71:\"sha384-a2sfkqnB9p/zq6OT4QhuD80qQZ70fGDmo4JUNqP5E7NIICvgRNPjIBkQE/Qcl3SN\";s:16:\"css/v4-shims.css\";s:71:\"sha384-SNyDPad7e8WM4Nu7W/f1x3qsDrLxMCvXurQfwNdp418WWmkkTQuPBGYDZA6rSg0X\";s:9:\"js/all.js\";s:71:\"sha384-3yBLeJ4waqGSAf4A8pjZ13UF7GuhgbdKnBQvIp/TkWoXtQbtwjlIPNjkDRJ46UCn\";s:12:\"js/brands.js\";s:71:\"sha384-oMyy7aPCmlH4ZGEaKHW+zAoaKDWIFh6iqJ53lusMpn+Kp8SN5nJ2kzkP1qd0+icb\";s:17:\"js/fontawesome.js\";s:71:\"sha384-oPma1F1txBbqTG+1O7BEx0A/qFtD+R661ULJLmI9RDQ0PfbRP1tQU3vBIBbJIAxL\";s:11:\"js/light.js\";s:71:\"sha384-SVEn5VmGP1fxV9V5TOZOTwL9dCg50Yb0Xn4fbV9Ic/kp8we6kv4zPVcs9seU0675\";s:13:\"js/regular.js\";s:71:\"sha384-gbY/GPDSEaMQ9cjqWLbLcaxUCtCeExO9oUEZLrOQHfFLoV5ouwIrqF6mGnjyIOc2\";s:11:\"js/solid.js\";s:71:\"sha384-VxezC2Q+YoC+yUILib+HlmOsFiqNzYtQIXsHYY6ST7QZVfgBNs2giKE97ijGMgUH\";s:14:\"js/v4-shims.js\";s:71:\"sha384-8sPM0eSaqmdF9ruedfsxEZfxVcIp0cwhosrBhWl/Q4t1eQSMXl6tYenNe87MraQ6\";}}}s:5:\"5.6.0\";a:1:{s:3:\"sri\";a:2:{s:4:\"free\";a:13:{s:11:\"css/all.css\";s:71:\"sha384-aOkxzJ5uQz7WBObEZcHvV5JvRW3TUc2rNPA7pe3AwnsUohiw1Vj2Rgx2KSOkF5+h\";s:14:\"css/brands.css\";s:71:\"sha384-oT8S/zsbHtHRVSs2Weo00ensyC4I8kyMsMhqTD4XrWxyi8NHHxnS0Hy+QEtgeKUE\";s:19:\"css/fontawesome.css\";s:71:\"sha384-J4287OME5B0yzlP80TtfccOBwJJt6xiO2KS14V7z0mVCRwpz+71z7lwP4yoFbTnD\";s:15:\"css/regular.css\";s:71:\"sha384-yWI8JeRmJFie/rrEn4skBd/XXXfUWuc7wAhaj9q71PzjdYD3JslHSEU7BXCCcVyP\";s:13:\"css/solid.css\";s:71:\"sha384-COsgLGwf6vbsibKzWojSqhIjQND/Sa0RWQ5BHFrKOz5JrUObnh5GEBUH2oZwITuM\";s:19:\"css/svg-with-js.css\";s:71:\"sha384-nHELFCUV8tffuhz6PkFYcEl6VCneIQgaHNbLkOHukzJs12+rUiKwsVmVhbqhEAq7\";s:16:\"css/v4-shims.css\";s:71:\"sha384-HiCW4rrGA9WlUM512GMhD+YfcMidwWluZzyu+X55gfVYgAPrlIkG5BnHyAl/VHJO\";s:9:\"js/all.js\";s:71:\"sha384-z9ZOvGHHo21RqN5De4rfJMoAxYpaVoiYhuJXPyVmSs8yn20IE3PmBM534CffwSJI\";s:12:\"js/brands.js\";s:71:\"sha384-GEA3+tbEaglIUriKygE2OQX9k7YrAMJ5oZF0mb8Xx7hUmTTWDuQDtPY4l13jl99w\";s:17:\"js/fontawesome.js\";s:71:\"sha384-tHFnt8QELQGC1IJzcTUX5zFEnn/FLVa0ADTmxRyeSmWukJ4umWnJbwiMTkw/bKEK\";s:13:\"js/regular.js\";s:71:\"sha384-gy4pB6yY1j4DPCG6rZcE6NX1Lnqz8ZJEfotVUvCN2EGwlUS3WUHxcn8rrEOYiyiS\";s:11:\"js/solid.js\";s:71:\"sha384-akyniW0Jfrt1Z7kvRmaF2fkq9vuVQAPEGN4qq7s17l9PG3zz7FThoWnfVxpvnUn9\";s:14:\"js/v4-shims.js\";s:71:\"sha384-08SAgv7bDUyzB5O71dehOCZ42IpryGqW/G+GdxeFmBfaB71QIZWe5ZXBFKYFTEu4\";}s:3:\"pro\";a:15:{s:11:\"css/all.css\";s:71:\"sha384-rTQdcTFdT69CgbBErourkScWQ6j5WQ4aAoCF0UyPhog3PNysM/xz/kqshWKP4NLA\";s:14:\"css/brands.css\";s:71:\"sha384-84OQfm1oTwjnXmujNUnQC09L4G7mglZspQwfSNPvf5V3zAA1sdvqbIigA9AWY5DB\";s:19:\"css/fontawesome.css\";s:71:\"sha384-NFsDS9VURN70zaqw67F1OtJ6MtdeCrHeGMD1KzqIv5ft0JiHgVtV7u+v09yR+iEZ\";s:13:\"css/light.css\";s:71:\"sha384-aofICWgqJQbZZCaWEU7H0ULLqXTBu/DAALblEYqLfQSjb2ASOw0tADOdJ5rmVDWL\";s:15:\"css/regular.css\";s:71:\"sha384-voao2F8iKUwwSMRhLJ982edrRSHOmc5v5rvQ/5aH5pvSAx1aoL6usygGSRz3jfHF\";s:13:\"css/solid.css\";s:71:\"sha384-RYuivM1ikcxEL+96Q/7B/CcvyswPRuOatldvqvk+Bm3hwVKZUjay1ohuPUyD9ZYk\";s:19:\"css/svg-with-js.css\";s:71:\"sha384-NYMicmsVmKaI5/JVN8JamOLMuIrbzeu4Gc+cike3jcoDpaLfMtvWPJeNhnx8K8x0\";s:16:\"css/v4-shims.css\";s:71:\"sha384-L7wiz9NeFS+vFpG/jl0zBsE7EqrVfeNoaHhnvxlsfwihUr9FIbDnfQqv5r8o02wQ\";s:9:\"js/all.js\";s:71:\"sha384-rDdEqfkiaN9iEfS6XrBzTxL5wVFzBoMsyHmoAIl/T7VdxJvGYuM5bDlDOkmE6r3C\";s:12:\"js/brands.js\";s:71:\"sha384-TN18fDSDUbMxI3DK3z2G8Pl68N7jvVjWPBx8z0m7YhoWKnmGdKRJ6S90IcyeUXUy\";s:17:\"js/fontawesome.js\";s:71:\"sha384-Oa9P+sg4Q/5Yo0a/UoRAG8zLSexWLxLgbPb12tgvs/swrfePVf6IdrwoW2RGV2pU\";s:11:\"js/light.js\";s:71:\"sha384-6DMqAgIR8HN9OqBF3zfhQ4Tmh+KO9Sf0QAwxGkiaKO51dFGBBxBTmdOSneYESZZ0\";s:13:\"js/regular.js\";s:71:\"sha384-LvwwgOzFfwTikawPye02NmwONhyBLBbmu04J+IuLBS6HdNHX3JnRqY80mscKVLTH\";s:11:\"js/solid.js\";s:71:\"sha384-71d190zi1266uo3WuvCJ77V1YdXxDfm5GPMySGFKTMHsoHaxKhPe5XkKaH9iPLWC\";s:14:\"js/v4-shims.js\";s:71:\"sha384-Rr25noDuBAtBUFs9feRsF3EK8Pw5bWuhYxD7ztcDUJqR/eiCpNPGIeyO5Ago6pYW\";}}}s:5:\"5.6.1\";a:1:{s:3:\"sri\";a:2:{s:4:\"free\";a:13:{s:11:\"css/all.css\";s:71:\"sha384-gfdkjb5BdAXd+lj+gudLWI+BXq4IuLW5IT+brZEZsLFm++aCMlF1V92rMkPaX4PP\";s:14:\"css/brands.css\";s:71:\"sha384-whKHCkwP9f4MyD1vda26+XRyEg2zkyZezur14Kxc784RxUU1E7HvWVYj9EoJnUV7\";s:19:\"css/fontawesome.css\";s:71:\"sha384-WK8BzK0mpgOdhCxq86nInFqSWLzR5UAsNg0MGX9aDaIIrFWQ38dGdhwnNCAoXFxL\";s:15:\"css/regular.css\";s:71:\"sha384-l+NpTtA08hNNeMp0aMBg/cqPh507w3OvQSRoGnHcVoDCS9OtgxqgR7u8mLQv8poF\";s:13:\"css/solid.css\";s:71:\"sha384-aj0h5DVQ8jfwc8DA7JiM+Dysv7z+qYrFYZR+Qd/TwnmpDI6UaB3GJRRTdY8jYGS4\";s:19:\"css/svg-with-js.css\";s:71:\"sha384-ir31wc9kqVZclsGL3U5IucynDpj1TeEzDCvxEWqw8QuxLFETRgirOiygjXdjId3z\";s:16:\"css/v4-shims.css\";s:71:\"sha384-s0z+GcIRRdtdjGfnyKRFh9Oaw3aasU/TFotdFmreqjf+a+Mks2Umj0CrlN0S9lqi\";s:9:\"js/all.js\";s:71:\"sha384-R5JkiUweZpJjELPWqttAYmYM1P3SNEJRM6ecTQF05pFFtxmCO+Y1CiUhvuDzgSVZ\";s:12:\"js/brands.js\";s:71:\"sha384-rsLJp1pKbmeEMVcdsNJfAWZ9FQP5CrQt6Vikj/usZcTgrD28FhqYqKJn5XIaoXjm\";s:17:\"js/fontawesome.js\";s:71:\"sha384-T6YzYwAGZAItTIkYlBzfwqa07o9R1AND3Lgt6Or6c5IdukY7tqShoryqwpKrpeIB\";s:13:\"js/regular.js\";s:71:\"sha384-+e+pqX41PD6VrFw9HZ3YKJHFT+SZoEMBmnMpLUpHrdd5BE46xHCrzap9c6kfTi9H\";s:11:\"js/solid.js\";s:71:\"sha384-8Lgyylu0vfTGCXDKe435hJgX8s96c19R+dvpH0NHKdX47GA7TmMj+BDiZZ76qqhT\";s:14:\"js/v4-shims.js\";s:71:\"sha384-LqOeBjW8oAuwB6xooSoyjAV+CcJLQGftH6m0Xoo+mhJ0TlEAVR9jBsAXXpeEJlyP\";}s:3:\"pro\";a:15:{s:11:\"css/all.css\";s:71:\"sha384-NJXGk7R+8gWGBdutmr+/d6XDokLwQhF1U3VA7FhvBDlOq7cNdI69z7NQdnXxcF7k\";s:14:\"css/brands.css\";s:71:\"sha384-2k7wpGHb3PA1OZUtSqAk+nIVo2wgBQdEoL1F/FnC+/HHi2bh3N9aSstY0Af72gka\";s:19:\"css/fontawesome.css\";s:71:\"sha384-GQK3B9PHv3SNzYUrdlEpL6CFKQlW/Co4va906SViL0F6U16Li47NXtvwWmFnetYk\";s:13:\"css/light.css\";s:71:\"sha384-QXb14MpvHKJr57ixwhGSXACaU/eGo/NwF/uWE97+C5QPdq8sLQhM1+WKDk6vando\";s:15:\"css/regular.css\";s:71:\"sha384-ThqFFlbk+2bnAn1zc61SL7r8sFUVUkFvtsT+jYr1Jy6xTlvdcqzcerrDGrHqWv6j\";s:13:\"css/solid.css\";s:71:\"sha384-pbj30780YbUh3WmbEAhOL8tHgoaU4xrdmAN+RewL6HsW9EOMIIE4+6rerMXTfJXq\";s:19:\"css/svg-with-js.css\";s:71:\"sha384-fjim8BUuF/D2Y8Qyr4U5iLdeKqzyQe927qD4SIdbPDyX2iSN6xNGhoyd2jTiw+Sx\";s:16:\"css/v4-shims.css\";s:71:\"sha384-c2aTxrKw0nWEPlLqENAD5t3J3Ajs/o5LBudKFP44hexDYKKQTgRCAaECkBk+p3L9\";s:9:\"js/all.js\";s:71:\"sha384-ncMWtRMSOo+cLmfdaa6vmMGzBJKysBDF9tq5YK1MAnAjcyipdW2vgTS1jOntY4fs\";s:12:\"js/brands.js\";s:71:\"sha384-+4YdTIsot+hvYL7nKQ9cJs7OWaFvJ7ZTkVretfEoX8uDiTED9tumG/9RsRmlW3jX\";s:17:\"js/fontawesome.js\";s:71:\"sha384-Ya+lFT8MCnVaSXkMxO4FEUsv4BG1VrVAMY0PiCnmJ4Sq57zoarae8T2EgioHiaMA\";s:11:\"js/light.js\";s:71:\"sha384-hy7ipunNmCKP7KpzkasGow2eTRYx9IbxV0BvBqlWLWRu8mlWMNrj9y6qOLEnxIuF\";s:13:\"js/regular.js\";s:71:\"sha384-8VWoI12VOwcfxYszEUreYXR4Jh1+oxv+mfsVISgPJTsc2Ftw4RC+bO719C+PunjY\";s:11:\"js/solid.js\";s:71:\"sha384-Pl3KUQLNwa33i6dvnL77HMDxZPk93eoi1kB5xZ0eGKgTEt39iQkHdSM6/w53By9e\";s:14:\"js/v4-shims.js\";s:71:\"sha384-ts+GFi6rOAISeHC+EnLaj6AOSoosWr3TALIaYSeHCVsNHkGLlTtzdbMvolIe6tG7\";}}}s:5:\"5.6.3\";a:1:{s:3:\"sri\";a:2:{s:4:\"free\";a:13:{s:11:\"css/all.css\";s:71:\"sha384-UHRtZLI+pbxtHCWp1t77Bi1L4ZtiqrqD80Kn4Z8NTSRyMA2Fd33n5dQ8lWUE00s/\";s:14:\"css/brands.css\";s:71:\"sha384-1KLgFVb/gHrlDGLFPgMbeedi6tQBLcWvyNUN+YKXbD7ZFbjX6BLpMDf0PJ32XJfX\";s:19:\"css/fontawesome.css\";s:71:\"sha384-jLuaxTTBR42U2qJ/pm4JRouHkEDHkVqH0T1nyQXn1mZ7Snycpf6Rl25VBNthU4z0\";s:15:\"css/regular.css\";s:71:\"sha384-aubIA90W7NxJ+Ly4QHAqo1JBSwQ0jejV75iHhj59KRwVjLVHjuhS3LkDAoa/ltO4\";s:13:\"css/solid.css\";s:71:\"sha384-+0VIRx+yz1WBcCTXBkVQYIBVNEFH1eP6Zknm16roZCyeNg2maWEpk/l/KsyFKs7G\";s:19:\"css/svg-with-js.css\";s:71:\"sha384-KHV7fADs212mr+U2tmuDnxozv2BzTX1qhxPoZ/lT2QcUFkjwat694MI3AzyiVJ+q\";s:16:\"css/v4-shims.css\";s:71:\"sha384-DrjN/yxBJAblffPf548CARk30Xz2Glal7YO5kqQ8c8GHgrAMXZN2ZDTGwV9xTDJF\";s:9:\"js/all.js\";s:71:\"sha384-EIHISlAOj4zgYieurP0SdoiBYfGJKkgWedPHH4jCzpCXLmzVsw1ouK59MuUtP4a1\";s:12:\"js/brands.js\";s:71:\"sha384-VLgz+MgaFCnsFLiBwE3ItNouuqbWV2ZnIqfsA6QRHksEAQfgbcoaQ4PP0ZeS0zS5\";s:17:\"js/fontawesome.js\";s:71:\"sha384-treYPdjUrP4rW5q82SnECO7TPVAz4bpas16yuE9F5o7CeBn2YYw1yr5oC8s8Mf8t\";s:13:\"js/regular.js\";s:71:\"sha384-V+AkgA1cZ+p3DRK63AHCaXvO68V7B5eHoxl7QVN21zftbkFn/sGAIVR7vmQL3Zhp\";s:11:\"js/solid.js\";s:71:\"sha384-F4BRNf3onawQt7LDHDJm/hwm3wBtbLIfGk1VSB/3nn3E+7Rox1YpYcKJMsmHBJIl\";s:14:\"js/v4-shims.js\";s:71:\"sha384-miy+FCz1uGOaEWy6IaOB4X2pp60+e6jaSECmnvz+qo7Os/Q1oflHUIrS0JdfNafk\";}s:3:\"pro\";a:15:{s:11:\"css/all.css\";s:71:\"sha384-LRlmVvLKVApDVGuspQFnRQJjkv0P7/YFrw84YYQtmYG4nK8c+M+NlmYDCv0rKWpG\";s:14:\"css/brands.css\";s:71:\"sha384-1KLgFVb/gHrlDGLFPgMbeedi6tQBLcWvyNUN+YKXbD7ZFbjX6BLpMDf0PJ32XJfX\";s:19:\"css/fontawesome.css\";s:71:\"sha384-toEUmnrGu+eq8XUD6ovsr/vFX+R3v9+FUGAnpef+uwGKMCeqZkcZfkXQ0Pls5WS7\";s:13:\"css/light.css\";s:71:\"sha384-ouQ4uivIto2ZdBS6+torZMbImJhWA6/m7/CAGY9z0FNDmoAF6uWAEnavvIsR1EBt\";s:15:\"css/regular.css\";s:71:\"sha384-IXqJGQI1K0IzdpdY2ASrRbDgPr1rUKzDAA90uL7iX1hPQf6Tkve9Z82TUVWm9aje\";s:13:\"css/solid.css\";s:71:\"sha384-5XPOduYq6F78ZOuHxFHpQJCD2l7aCHCf0+o8qKTD2VfqJTgPT3YkyuBGsDSrVsic\";s:19:\"css/svg-with-js.css\";s:71:\"sha384-KHV7fADs212mr+U2tmuDnxozv2BzTX1qhxPoZ/lT2QcUFkjwat694MI3AzyiVJ+q\";s:16:\"css/v4-shims.css\";s:71:\"sha384-U1d6UqL28bnGVHunjKzlOZ8IatZ4il21uTor0FijL3224okgH54hOnOVB50CDK0M\";s:9:\"js/all.js\";s:71:\"sha384-4Gm0M5DjJ0zGaEtLu0ztNIoHWiuJ5rKiaVlpZKeNqXAW49eIIa2ymxb3C4c3uEXR\";s:12:\"js/brands.js\";s:71:\"sha384-VLgz+MgaFCnsFLiBwE3ItNouuqbWV2ZnIqfsA6QRHksEAQfgbcoaQ4PP0ZeS0zS5\";s:17:\"js/fontawesome.js\";s:71:\"sha384-treYPdjUrP4rW5q82SnECO7TPVAz4bpas16yuE9F5o7CeBn2YYw1yr5oC8s8Mf8t\";s:11:\"js/light.js\";s:71:\"sha384-E2rKHkorMllWJmt2GKXlwZ3+kPl6i3FrJ8ihFkf6F7F/AtGvuXY21bQC8mhz2Po+\";s:13:\"js/regular.js\";s:71:\"sha384-nX7teCj1FtQErhxXjr+JWXfe4EjU6KlgeVBHAzQ/L95eWzwx+W1+HuQGmxZT9VkS\";s:11:\"js/solid.js\";s:71:\"sha384-2ZaaAuh8tTVN1nHRrlXAX1tz8fGhZDgusJdBI5BBGycCq37AUonw8dHlPpx7iD6N\";s:14:\"js/v4-shims.js\";s:71:\"sha384-q8jijYZFNY4pjTA22Qe+33WWGmm0tpPPfMEdUxmXNoEkN5YeCMJYxGcl+XiCckQh\";}}}s:5:\"5.7.0\";a:1:{s:3:\"sri\";a:2:{s:4:\"free\";a:13:{s:11:\"css/all.css\";s:71:\"sha384-lZN37f5QGtY3VHgisS14W3ExzMWZxybE1SJSEsQp9S+oqd12jhcu+A56Ebc1zFSJ\";s:14:\"css/brands.css\";s:71:\"sha384-BKw0P+CQz9xmby+uplDwp82Py8x1xtYPK3ORn/ZSoe6Dk3ETP59WCDnX+fI1XCKK\";s:19:\"css/fontawesome.css\";s:71:\"sha384-4aon80D8rXCGx9ayDt85LbyUHeMWd3UiBaWliBlJ53yzm9hqN21A+o1pqoyK04h+\";s:15:\"css/regular.css\";s:71:\"sha384-IG162Tfx2WTn//TRUi9ahZHsz47lNKzYOp0b6Vv8qltVlPkub2yj9TVwzNck6GEF\";s:13:\"css/solid.css\";s:71:\"sha384-r/k8YTFqmlOaqRkZuSiE9trsrDXkh07mRaoGBMoDcmA58OHILZPsk29i2BsFng1B\";s:19:\"css/svg-with-js.css\";s:71:\"sha384-3oHRxwaq4aKTY0NVNLfynvnb/U7E0MGiosKUE4cNMIDRezfXvssVlwQ+xsuBLbXf\";s:16:\"css/v4-shims.css\";s:71:\"sha384-DrjN/yxBJAblffPf548CARk30Xz2Glal7YO5kqQ8c8GHgrAMXZN2ZDTGwV9xTDJF\";s:9:\"js/all.js\";s:71:\"sha384-qD/MNBVMm3hVYCbRTSOW130+CWeRIKbpot9/gR1BHkd7sIct4QKhT1hOPd+2hO8K\";s:12:\"js/brands.js\";s:71:\"sha384-zJ8/qgGmKwL+kr/xmGA6s1oXK63ah5/1rHuILmZ44sO2Bbq1V3p3eRTkuGcivyhD\";s:17:\"js/fontawesome.js\";s:71:\"sha384-av0fZBtv517ppGAYKqqaiTvWEK6WXW7W0N1ocPSPI/wi+h8qlgWck2Hikm5cxH0E\";s:13:\"js/regular.js\";s:71:\"sha384-Gxfqh68NuE4s0o2renzieYkDYVbdJynynsdrB7UG9yEvgpS9TVM+c4bknWfQXUBg\";s:11:\"js/solid.js\";s:71:\"sha384-6FXzJ8R8IC4v/SKPI8oOcRrUkJU8uvFK6YJ4eDY11bJQz4lRw5/wGthflEOX8hjL\";s:14:\"js/v4-shims.js\";s:71:\"sha384-miy+FCz1uGOaEWy6IaOB4X2pp60+e6jaSECmnvz+qo7Os/Q1oflHUIrS0JdfNafk\";}s:3:\"pro\";a:15:{s:11:\"css/all.css\";s:71:\"sha384-6jHF7Z3XI3fF4XZixAuSu0gGKrXwoX/w3uFPxC56OtjChio7wtTGJWRW53Nhx6Ev\";s:14:\"css/brands.css\";s:71:\"sha384-BKw0P+CQz9xmby+uplDwp82Py8x1xtYPK3ORn/ZSoe6Dk3ETP59WCDnX+fI1XCKK\";s:19:\"css/fontawesome.css\";s:71:\"sha384-iD1qS/uJjE9q9kecNUe9R4FRvcinAvTcPClTz7NI8RI5gUsJ+eaeJeblG1Ex0ieh\";s:13:\"css/light.css\";s:71:\"sha384-puvvQVSC+mXL7INuI0i5Q7QkwwIyYIBJ7caGHiUXD7FndtoyNd78NxgvuBJAYI2m\";s:15:\"css/regular.css\";s:71:\"sha384-4Cp0kYV2i1JFDfp6MQAdlrauJM+WTabydjMk5iJ7A9D+TXIh5zQMd5KXydBCAUN4\";s:13:\"css/solid.css\";s:71:\"sha384-j+2fZ2qAg9GyYKkVpuwm+HLQVz6EYCaTqS3KKx8oectYXMgm4bRmohzCfEvi5j7J\";s:19:\"css/svg-with-js.css\";s:71:\"sha384-3oHRxwaq4aKTY0NVNLfynvnb/U7E0MGiosKUE4cNMIDRezfXvssVlwQ+xsuBLbXf\";s:16:\"css/v4-shims.css\";s:71:\"sha384-U1d6UqL28bnGVHunjKzlOZ8IatZ4il21uTor0FijL3224okgH54hOnOVB50CDK0M\";s:9:\"js/all.js\";s:71:\"sha384-uyhTADGMAJuHgGNdH+rozTpOkfXUORTgjTmMBtxR8ISQjOs+IIWb8UBn9ixSd4xo\";s:12:\"js/brands.js\";s:71:\"sha384-zJ8/qgGmKwL+kr/xmGA6s1oXK63ah5/1rHuILmZ44sO2Bbq1V3p3eRTkuGcivyhD\";s:17:\"js/fontawesome.js\";s:71:\"sha384-av0fZBtv517ppGAYKqqaiTvWEK6WXW7W0N1ocPSPI/wi+h8qlgWck2Hikm5cxH0E\";s:11:\"js/light.js\";s:71:\"sha384-Vs12SjRkIvphC81scjUNowpLYnSOLOrSGxOwVe00oEvWto49wVgjd6BfdeCPcArI\";s:13:\"js/regular.js\";s:71:\"sha384-JZmzMsvgUATRcNmXpyJHLhiqsREsPN/GBj7O5ifVfRU1o4vBp2dsjawGzYzl0QVW\";s:11:\"js/solid.js\";s:71:\"sha384-OzCiQJ65BS/RiwFjTWyem+uRtZ4/LnrVVbwHTT8fR5Q9rYqAaavyOK51RDxkXQzm\";s:14:\"js/v4-shims.js\";s:71:\"sha384-q8jijYZFNY4pjTA22Qe+33WWGmm0tpPPfMEdUxmXNoEkN5YeCMJYxGcl+XiCckQh\";}}}s:5:\"5.7.1\";a:1:{s:3:\"sri\";a:2:{s:4:\"free\";a:13:{s:11:\"css/all.css\";s:71:\"sha384-fnmOCqbTlWIlj8LyTjo7mOUStjsKC4pOpQbqyi7RrhN7udi9RwhKkMHpvLbHG9Sr\";s:14:\"css/brands.css\";s:71:\"sha384-BKw0P+CQz9xmby+uplDwp82Py8x1xtYPK3ORn/ZSoe6Dk3ETP59WCDnX+fI1XCKK\";s:19:\"css/fontawesome.css\";s:71:\"sha384-4aon80D8rXCGx9ayDt85LbyUHeMWd3UiBaWliBlJ53yzm9hqN21A+o1pqoyK04h+\";s:15:\"css/regular.css\";s:71:\"sha384-IG162Tfx2WTn//TRUi9ahZHsz47lNKzYOp0b6Vv8qltVlPkub2yj9TVwzNck6GEF\";s:13:\"css/solid.css\";s:71:\"sha384-r/k8YTFqmlOaqRkZuSiE9trsrDXkh07mRaoGBMoDcmA58OHILZPsk29i2BsFng1B\";s:19:\"css/svg-with-js.css\";s:71:\"sha384-3oHRxwaq4aKTY0NVNLfynvnb/U7E0MGiosKUE4cNMIDRezfXvssVlwQ+xsuBLbXf\";s:16:\"css/v4-shims.css\";s:71:\"sha384-DrjN/yxBJAblffPf548CARk30Xz2Glal7YO5kqQ8c8GHgrAMXZN2ZDTGwV9xTDJF\";s:9:\"js/all.js\";s:71:\"sha384-eVEQC9zshBn0rFj4+TU78eNA19HMNigMviK/PU/FFjLXqa/GKPgX58rvt5Z8PLs7\";s:12:\"js/brands.js\";s:71:\"sha384-zJ8/qgGmKwL+kr/xmGA6s1oXK63ah5/1rHuILmZ44sO2Bbq1V3p3eRTkuGcivyhD\";s:17:\"js/fontawesome.js\";s:71:\"sha384-Qmms7kHsbqYnKkSwiePYzreT+ufFVSNBhfLOEp0sEEfEVdORDs/aEnGaJy/l4eoy\";s:13:\"js/regular.js\";s:71:\"sha384-Gxfqh68NuE4s0o2renzieYkDYVbdJynynsdrB7UG9yEvgpS9TVM+c4bknWfQXUBg\";s:11:\"js/solid.js\";s:71:\"sha384-6FXzJ8R8IC4v/SKPI8oOcRrUkJU8uvFK6YJ4eDY11bJQz4lRw5/wGthflEOX8hjL\";s:14:\"js/v4-shims.js\";s:71:\"sha384-miy+FCz1uGOaEWy6IaOB4X2pp60+e6jaSECmnvz+qo7Os/Q1oflHUIrS0JdfNafk\";}s:3:\"pro\";a:15:{s:11:\"css/all.css\";s:71:\"sha384-6jHF7Z3XI3fF4XZixAuSu0gGKrXwoX/w3uFPxC56OtjChio7wtTGJWRW53Nhx6Ev\";s:14:\"css/brands.css\";s:71:\"sha384-BKw0P+CQz9xmby+uplDwp82Py8x1xtYPK3ORn/ZSoe6Dk3ETP59WCDnX+fI1XCKK\";s:19:\"css/fontawesome.css\";s:71:\"sha384-iD1qS/uJjE9q9kecNUe9R4FRvcinAvTcPClTz7NI8RI5gUsJ+eaeJeblG1Ex0ieh\";s:13:\"css/light.css\";s:71:\"sha384-puvvQVSC+mXL7INuI0i5Q7QkwwIyYIBJ7caGHiUXD7FndtoyNd78NxgvuBJAYI2m\";s:15:\"css/regular.css\";s:71:\"sha384-4Cp0kYV2i1JFDfp6MQAdlrauJM+WTabydjMk5iJ7A9D+TXIh5zQMd5KXydBCAUN4\";s:13:\"css/solid.css\";s:71:\"sha384-j+2fZ2qAg9GyYKkVpuwm+HLQVz6EYCaTqS3KKx8oectYXMgm4bRmohzCfEvi5j7J\";s:19:\"css/svg-with-js.css\";s:71:\"sha384-3oHRxwaq4aKTY0NVNLfynvnb/U7E0MGiosKUE4cNMIDRezfXvssVlwQ+xsuBLbXf\";s:16:\"css/v4-shims.css\";s:71:\"sha384-U1d6UqL28bnGVHunjKzlOZ8IatZ4il21uTor0FijL3224okgH54hOnOVB50CDK0M\";s:9:\"js/all.js\";s:71:\"sha384-5atZgfYD4MHp6kAnxjw4yM3binN4Yh5XXKAIO6m2kIB9CqdRUladdvTdffLnTK3N\";s:12:\"js/brands.js\";s:71:\"sha384-zJ8/qgGmKwL+kr/xmGA6s1oXK63ah5/1rHuILmZ44sO2Bbq1V3p3eRTkuGcivyhD\";s:17:\"js/fontawesome.js\";s:71:\"sha384-Qmms7kHsbqYnKkSwiePYzreT+ufFVSNBhfLOEp0sEEfEVdORDs/aEnGaJy/l4eoy\";s:11:\"js/light.js\";s:71:\"sha384-ua13CrU9gkzyOVxhPFl96iHgwnYTuTZ96YYiG08m1fYLvz8cVyHluzkzK9WcFLpT\";s:13:\"js/regular.js\";s:71:\"sha384-SdSeoV46BZSFmxvlUQwl3ImF6ton2ST4pPzYOmTTkFUm+UjdzORM0pTtF0sIHydx\";s:11:\"js/solid.js\";s:71:\"sha384-eLZVpmyzMTRsfwRGkcmyu0PXR5qqYDBCSh5PoYLdWFfDmMIibSuru0Blk+nq1Vfm\";s:14:\"js/v4-shims.js\";s:71:\"sha384-q8jijYZFNY4pjTA22Qe+33WWGmm0tpPPfMEdUxmXNoEkN5YeCMJYxGcl+XiCckQh\";}}}s:5:\"5.7.2\";a:1:{s:3:\"sri\";a:2:{s:4:\"free\";a:13:{s:11:\"css/all.css\";s:71:\"sha384-fnmOCqbTlWIlj8LyTjo7mOUStjsKC4pOpQbqyi7RrhN7udi9RwhKkMHpvLbHG9Sr\";s:14:\"css/brands.css\";s:71:\"sha384-BKw0P+CQz9xmby+uplDwp82Py8x1xtYPK3ORn/ZSoe6Dk3ETP59WCDnX+fI1XCKK\";s:19:\"css/fontawesome.css\";s:71:\"sha384-4aon80D8rXCGx9ayDt85LbyUHeMWd3UiBaWliBlJ53yzm9hqN21A+o1pqoyK04h+\";s:15:\"css/regular.css\";s:71:\"sha384-IG162Tfx2WTn//TRUi9ahZHsz47lNKzYOp0b6Vv8qltVlPkub2yj9TVwzNck6GEF\";s:13:\"css/solid.css\";s:71:\"sha384-r/k8YTFqmlOaqRkZuSiE9trsrDXkh07mRaoGBMoDcmA58OHILZPsk29i2BsFng1B\";s:19:\"css/svg-with-js.css\";s:71:\"sha384-3oHRxwaq4aKTY0NVNLfynvnb/U7E0MGiosKUE4cNMIDRezfXvssVlwQ+xsuBLbXf\";s:16:\"css/v4-shims.css\";s:71:\"sha384-DrjN/yxBJAblffPf548CARk30Xz2Glal7YO5kqQ8c8GHgrAMXZN2ZDTGwV9xTDJF\";s:9:\"js/all.js\";s:71:\"sha384-0pzryjIRos8mFBWMzSSZApWtPl/5++eIfzYmTgBBmXYdhvxPc+XcFEk+zJwDgWbP\";s:12:\"js/brands.js\";s:71:\"sha384-zJ8/qgGmKwL+kr/xmGA6s1oXK63ah5/1rHuILmZ44sO2Bbq1V3p3eRTkuGcivyhD\";s:17:\"js/fontawesome.js\";s:71:\"sha384-xl26xwG2NVtJDw2/96Lmg09++ZjrXPc89j0j7JHjLOdSwHDHPHiucUjfllW0Ywrq\";s:13:\"js/regular.js\";s:71:\"sha384-Gxfqh68NuE4s0o2renzieYkDYVbdJynynsdrB7UG9yEvgpS9TVM+c4bknWfQXUBg\";s:11:\"js/solid.js\";s:71:\"sha384-6FXzJ8R8IC4v/SKPI8oOcRrUkJU8uvFK6YJ4eDY11bJQz4lRw5/wGthflEOX8hjL\";s:14:\"js/v4-shims.js\";s:71:\"sha384-miy+FCz1uGOaEWy6IaOB4X2pp60+e6jaSECmnvz+qo7Os/Q1oflHUIrS0JdfNafk\";}s:3:\"pro\";a:15:{s:11:\"css/all.css\";s:71:\"sha384-6jHF7Z3XI3fF4XZixAuSu0gGKrXwoX/w3uFPxC56OtjChio7wtTGJWRW53Nhx6Ev\";s:14:\"css/brands.css\";s:71:\"sha384-BKw0P+CQz9xmby+uplDwp82Py8x1xtYPK3ORn/ZSoe6Dk3ETP59WCDnX+fI1XCKK\";s:19:\"css/fontawesome.css\";s:71:\"sha384-iD1qS/uJjE9q9kecNUe9R4FRvcinAvTcPClTz7NI8RI5gUsJ+eaeJeblG1Ex0ieh\";s:13:\"css/light.css\";s:71:\"sha384-puvvQVSC+mXL7INuI0i5Q7QkwwIyYIBJ7caGHiUXD7FndtoyNd78NxgvuBJAYI2m\";s:15:\"css/regular.css\";s:71:\"sha384-4Cp0kYV2i1JFDfp6MQAdlrauJM+WTabydjMk5iJ7A9D+TXIh5zQMd5KXydBCAUN4\";s:13:\"css/solid.css\";s:71:\"sha384-j+2fZ2qAg9GyYKkVpuwm+HLQVz6EYCaTqS3KKx8oectYXMgm4bRmohzCfEvi5j7J\";s:19:\"css/svg-with-js.css\";s:71:\"sha384-3oHRxwaq4aKTY0NVNLfynvnb/U7E0MGiosKUE4cNMIDRezfXvssVlwQ+xsuBLbXf\";s:16:\"css/v4-shims.css\";s:71:\"sha384-U1d6UqL28bnGVHunjKzlOZ8IatZ4il21uTor0FijL3224okgH54hOnOVB50CDK0M\";s:9:\"js/all.js\";s:71:\"sha384-I3Hhe9TkmlsxzooTtbRzdeLbmkFQE9DVzX/19uTZfHk1zn/uWUyk+a+GyrHyseSq\";s:12:\"js/brands.js\";s:71:\"sha384-zJ8/qgGmKwL+kr/xmGA6s1oXK63ah5/1rHuILmZ44sO2Bbq1V3p3eRTkuGcivyhD\";s:17:\"js/fontawesome.js\";s:71:\"sha384-xl26xwG2NVtJDw2/96Lmg09++ZjrXPc89j0j7JHjLOdSwHDHPHiucUjfllW0Ywrq\";s:11:\"js/light.js\";s:71:\"sha384-ua13CrU9gkzyOVxhPFl96iHgwnYTuTZ96YYiG08m1fYLvz8cVyHluzkzK9WcFLpT\";s:13:\"js/regular.js\";s:71:\"sha384-SdSeoV46BZSFmxvlUQwl3ImF6ton2ST4pPzYOmTTkFUm+UjdzORM0pTtF0sIHydx\";s:11:\"js/solid.js\";s:71:\"sha384-eLZVpmyzMTRsfwRGkcmyu0PXR5qqYDBCSh5PoYLdWFfDmMIibSuru0Blk+nq1Vfm\";s:14:\"js/v4-shims.js\";s:71:\"sha384-q8jijYZFNY4pjTA22Qe+33WWGmm0tpPPfMEdUxmXNoEkN5YeCMJYxGcl+XiCckQh\";}}}s:5:\"5.8.0\";a:1:{s:3:\"sri\";a:2:{s:4:\"free\";a:13:{s:11:\"css/all.css\";s:71:\"sha384-Mmxa0mLqhmOeaE8vgOSbKacftZcsNYDjQzuCOm6D02luYSzBG8vpaOykv9lFQ51Y\";s:14:\"css/brands.css\";s:71:\"sha384-5G2m52y/zN053yjBCyNXXotYpL2r5k1wg9aakiM5OgK9kdcCB68EECUce5vZiz/8\";s:19:\"css/fontawesome.css\";s:71:\"sha384-Sbwc59I1SOoVoCGgBCwAe/M1j5a9cHixHv/7x9vOxORnT73jUaxyK0paobkk3JSt\";s:15:\"css/regular.css\";s:71:\"sha384-Vma7aWQBdmjVfr98uRd1HcA/r6wPYrlNrIvQBJhDCvZi3X9gVuHtqUKUYep/1KKk\";s:13:\"css/solid.css\";s:71:\"sha384-n4xPrkfCJ3FzmPwM/Nf1QQu7Qx6oDcsbMp+qPOxrJ5w0Tq19ZWd9ylcMWkzKEpwP\";s:19:\"css/svg-with-js.css\";s:71:\"sha384-5ywFB7dcUP6RcAWMLvCE58MQE5YMXWSPjly1IqItdN0w0TqoJD+w68U7C3ShoZRk\";s:16:\"css/v4-shims.css\";s:71:\"sha384-IaQiZkMW7NRKIS04GeT98++WyQ6RNaEQlHoHoDrhU+hhCJE4EkfL7itJyj/vanQT\";s:9:\"js/all.js\";s:71:\"sha384-ukiibbYjFS/1dhODSWD+PrZ6+CGCgf8VbyUH7bQQNUulL+2r59uGYToovytTf4Xm\";s:12:\"js/brands.js\";s:71:\"sha384-Gt4maPu5ZO/PkTh32sKMYmmCLGuWtMkv5YBtFZpx4Tu+Of3kFZPYBw9iD/pi4L6s\";s:17:\"js/fontawesome.js\";s:71:\"sha384-TAztyRuTlqgZ97tz982rMo44MRC58wyCC0pqKZY3cKWJNkK00qMd3DhQ7R25jpCe\";s:13:\"js/regular.js\";s:71:\"sha384-IQnlolMpq26nEj6AOd6JOnY2jqCa69uFBqCGBCWSm4EFZYprebVtp3Z2xVLMElvs\";s:11:\"js/solid.js\";s:71:\"sha384-prcFDC6iTvvWsx2iSZtbDdeMVWWOtxcQXXagr9uPHwi42uae31Y3Q17eehHuC0JL\";s:14:\"js/v4-shims.js\";s:71:\"sha384-l9bFz0TmR1ecMQdb9mzBeiLLX3z0mqeK0Bsxhim3nnHB9PoA6o3FUumLH7K6W6/D\";}s:3:\"pro\";a:15:{s:11:\"css/all.css\";s:71:\"sha384-/pOR6TNYPdUaQQQRKQ4XHznZ4U2K/Lscb3u6jshUngC/31fLTuyX9FZb24gp4O3J\";s:14:\"css/brands.css\";s:71:\"sha384-OxPYtFc8yWHWBo2MFY4rHs5dKcTpNGuyft0hQ+K/vSUJA21jrxi+Py412o2wMvsL\";s:19:\"css/fontawesome.css\";s:71:\"sha384-/0C3VuTlEzBany89/Wf2OJLSGrduLCC28kuoGL/PCGJjGj01pVtiqOcgZZ9AtlET\";s:13:\"css/light.css\";s:71:\"sha384-YmipRqYc8Wly1koaxcpAPTnvJIqXBN4Ue5+l0drZn34sdM+UufP6v8D8/s9xxXOI\";s:15:\"css/regular.css\";s:71:\"sha384-iUhpWyroENmdb/oNEGUdCk4J+TfFOm/SNYi79nN/Hb1aQgjofylAAuRTUfpK2yP1\";s:13:\"css/solid.css\";s:71:\"sha384-maIT5Qg1FqlJhNYpN2IgLAb5XPLY8CqZ7tKBQyjHh+nx/7JXsI5bp+8JHnUgeuyw\";s:19:\"css/svg-with-js.css\";s:71:\"sha384-BUeh/IoVXY+o863GdrQzogOOSo3ABFpxuc9xZhQVnsM2T2vKmrpHGZwaEqqX/SZs\";s:16:\"css/v4-shims.css\";s:71:\"sha384-lRITDKAHusCdCcsQiEA2IIoqExMRD36Tbn9CZj00L8klRpDyMeOoPSv6ubcNAHux\";s:9:\"js/all.js\";s:71:\"sha384-gUdv3ElxXd3gVdbCqjppYoQanRONrQDSdaZY3zn1KeASeS8YGy+T/JDaD2ohyarV\";s:12:\"js/brands.js\";s:71:\"sha384-XLy4uPbRNbMJUgEm6JLmHI784E68XjgSbheIn0fP/6GdZtCcsZmlXvceAGvhzKCh\";s:17:\"js/fontawesome.js\";s:71:\"sha384-aoV9M7ZLyivlmo8GKrkeWiOUQzBnYBpP6U8gW7WXfhssy+HtO87KzowcBokSiK3g\";s:11:\"js/light.js\";s:71:\"sha384-+itlrN2dvS1RqmWnkLQkDqzANbdKqtt6JyQfE/DXxFnhg/PXf0ufRBCSp0c6q81i\";s:13:\"js/regular.js\";s:71:\"sha384-GoKOHat5yLSUYiGMfLJkuCErUZrNlW+2FeFYuKOt7sUWbqvMQOqfB+mdpfCU/8Q4\";s:11:\"js/solid.js\";s:71:\"sha384-jOmpRjxTFmJAVhf7+H7o9joWtQWHRZLdr+B25WojM1yfhB9wFkDvQ3x0VDDn4aAI\";s:14:\"js/v4-shims.js\";s:71:\"sha384-gaNKDFtFZuAyZDkB8Wov1Vl24lMu5MD5MXLmUSu+4HzB8tTVwemJnhqN4Zuj27wd\";}}}s:5:\"5.8.1\";a:1:{s:3:\"sri\";a:2:{s:4:\"free\";a:13:{s:11:\"css/all.css\";s:71:\"sha384-50oBUHEmvpQ+1lW4y57PTFmhCaXp0ML5d60M1M7uH2+nqUivzIebhndOJK28anvf\";s:14:\"css/brands.css\";s:71:\"sha384-n9+6/aSqa9lBidZMRCQHTHKJscPq6NW4pCQBiMmHdUCvPN8ZOg2zJJTkC7WIezWv\";s:19:\"css/fontawesome.css\";s:71:\"sha384-vd1e11sR28tEK9YANUtpIOdjGW14pS87bUBuOIoBILVWLFnS+MCX9T6MMf0VdPGq\";s:15:\"css/regular.css\";s:71:\"sha384-FKw7x8fCxuvzBwOJmhTJJsKzBl8dnN9e2R4+pXRfYoHivikuHkzWyhKWDSMcGNK8\";s:13:\"css/solid.css\";s:71:\"sha384-QokYePQSOwpBDuhlHOsX0ymF6R/vLk/UQVz3WHa6wygxI5oGTmDTv8wahFOSspdm\";s:19:\"css/svg-with-js.css\";s:71:\"sha384-acBDV8BDMPEP50gJeFdMIg9yE8eOPuFdBV9r+2F492NUbKhURdQvglFkG0Q+0rlE\";s:16:\"css/v4-shims.css\";s:71:\"sha384-knhdgIEP1JBPHETtXGyUk1FXV22kd1ZAN8yyExweAKAfztV5+kSBjUff4pHDG38c\";s:9:\"js/all.js\";s:71:\"sha384-g5uSoOSBd7KkhAMlnQILrecXvzst9TdC09/VM+pjDTCM+1il8RHz5fKANTFFb+gQ\";s:12:\"js/brands.js\";s:71:\"sha384-rUOIFHM3HXni/WG5pzDhA1e2Js5nn4bWudTYujHbbI9ztBIxK54CL4ZNZWwcBQeD\";s:17:\"js/fontawesome.js\";s:71:\"sha384-EMmnH+Njn8umuoSMZ3Ae3bC9hDknHKOWL2e9WJD/cN6XLeAN7tr5ZQ0Hx5HDHtkS\";s:13:\"js/regular.js\";s:71:\"sha384-Uc9toywOA44owltk1MWl0lQZ+L0mBzJkLQcdif6+JtG9izvok9DLJtCZX57Uq3k2\";s:11:\"js/solid.js\";s:71:\"sha384-IA6YnujJIO+z1m4NKyAGvZ9Wmxrd4Px8WFqhFcgRmwLaJaiwijYgApVpo1MV8p77\";s:14:\"js/v4-shims.js\";s:71:\"sha384-DWlD0qU0+4WTFKXrFbt8wXq/1NHvOGT8vwllYM0W2gIeqgaCC3bZ0U464mDtbR70\";}s:3:\"pro\";a:15:{s:11:\"css/all.css\";s:71:\"sha384-Bx4pytHkyTDy3aJKjGkGoHPt3tvv6zlwwjc3iqN7ktaiEMLDPqLSZYts2OjKcBx1\";s:14:\"css/brands.css\";s:71:\"sha384-9Wenwezdk1eEhfcpps+Heco4zWw6KuZ2VlevoPomUwWYYZd3nBX0kZ1hBV2zSIKF\";s:19:\"css/fontawesome.css\";s:71:\"sha384-4HqGlagEHMyfaDQVabl1wx7GCtGw6hDl3sKJEhqQjOCrXrvizhaA2j4hK8Piewtr\";s:13:\"css/light.css\";s:71:\"sha384-3SMOAKCN8LYSMjkWz1ChDg4pHSLtD+LuKXaZoHxE1oyDneLR6Ebjm3XHMHO9fWu3\";s:15:\"css/regular.css\";s:71:\"sha384-ELBQxbOyxSZRtZPNO1mVgYkEzMOXFNmQY6CLV1nw+4IZoiHWeuwYTnABxPxxsuBE\";s:13:\"css/solid.css\";s:71:\"sha384-MkkthiFx7890Rev6vwUJO4gRT4yuH5tqMm/Wl4/n9/qptaBpiGcMyjfgq2K4h394\";s:19:\"css/svg-with-js.css\";s:71:\"sha384-LnvOeE4ntog9dzgq63i0OoI6jKPp3p0y693Fh4Fd4eOyx/UsAw0kHXbLKqML1p9R\";s:16:\"css/v4-shims.css\";s:71:\"sha384-68zdIccmue/irEHOgRiyNsWTZAGftSb6RkEtUhgaD+8213AXnbThq7m3WsO+B02H\";s:9:\"js/all.js\";s:71:\"sha384-GBwm0s/0wYcqnK/JmrCoRqWYIWzFiGEucsfFqkB76Ouii5+d4R31vWHPQtfhv55b\";s:12:\"js/brands.js\";s:71:\"sha384-b4zU5X+9uCyU5wpeWBsEIFph6tTD8ERLbUs93uYGQGNqzbcfPDeY6c4jMhTAfBri\";s:17:\"js/fontawesome.js\";s:71:\"sha384-w6QYwIdCVqcYkHtaFutVu3VlDeu+pBFvlp7e0/tygMFwnWTl13KuVYfsp0ediPpA\";s:11:\"js/light.js\";s:71:\"sha384-avwGKnev1pyXYEbWxXSg9S4rpTsws+5vQpoj76SfcccEzOL162Ei8+z4a6AlaMeE\";s:13:\"js/regular.js\";s:71:\"sha384-lv9QOXVC8fPRX14JTtgPGx1JjQPfjnqnp+bTlEnrW2FRawdJ4V8oe4Yq4kdfgJIp\";s:11:\"js/solid.js\";s:71:\"sha384-sJjbbGVKgAaulHq0KZK5MsUx9YmPj+4G3oY2vmW12iBNEFkkhObBezK0ZhSXchIs\";s:14:\"js/v4-shims.js\";s:71:\"sha384-J8Vif9iMSqb5RK45yq6+dnrM1lTP1oQcIHtKpoH0irzUJD/1gCK0pQgIr0hO+hta\";}}}s:5:\"5.8.2\";a:1:{s:3:\"sri\";a:2:{s:4:\"free\";a:13:{s:11:\"css/all.css\";s:71:\"sha384-oS3vJWv+0UjzBfQzYUhtDYW+Pj2yciDJxpsK1OYPAYjqT085Qq/1cq5FLXAZQ7Ay\";s:14:\"css/brands.css\";s:71:\"sha384-i2PyM6FMpVnxjRPi0KW/xIS7hkeSznkllv+Hx/MtYDaHA5VcF0yL3KVlvzp8bWjQ\";s:19:\"css/fontawesome.css\";s:71:\"sha384-sri+NftO+0hcisDKgr287Y/1LVnInHJ1l+XC7+FOabmTTIK0HnE2ID+xxvJ21c5J\";s:15:\"css/regular.css\";s:71:\"sha384-hCIN6p9+1T+YkCd3wWjB5yufpReULIPQ21XA/ncf3oZ631q2HEhdC7JgKqbk//4+\";s:13:\"css/solid.css\";s:71:\"sha384-ioUrHig76ITq4aEJ67dHzTvqjsAP/7IzgwE7lgJcg2r7BRNGYSK0LwSmROzYtgzs\";s:19:\"css/svg-with-js.css\";s:71:\"sha384-PLvJTjM1QH/74H66d1I1vU8KYsjkbjSJn87gUIUsIO6Xjf8fRO8Hxdevr46EkV7M\";s:16:\"css/v4-shims.css\";s:71:\"sha384-XyBa62YmP9n5OJlz31oJcSVUqdJJ1dgQZriaAHtKZn/8Bu8KJ+PMJ/jjVGvhwvQi\";s:9:\"js/all.js\";s:71:\"sha384-DJ25uNYET2XCl5ZF++U8eNxPWqcKohUUBUpKGlNLMchM7q4Wjg2CUpjHLaL8yYPH\";s:12:\"js/brands.js\";s:71:\"sha384-GtvEzzhN52RvAD7CnSR7TcPw555abR8NK28tAqa/GgIDk59o0TsaK6FHglLstzCf\";s:17:\"js/fontawesome.js\";s:71:\"sha384-Ia7KZbX22R7DDSbxNmxHqPQ15ceNzg2U4h5A8dy3K47G2fV1k658BTxXjp7rdhXa\";s:13:\"js/regular.js\";s:71:\"sha384-iFYyWQkY/Zvsdq3IIxRJI2FBoXPj6g73ok7rIH3sZGulA7E5PvFqB5BOELomUuyh\";s:11:\"js/solid.js\";s:71:\"sha384-+2/MEhV42Ne5nONkjLVCZFGh5IaEQmfXyvGlsibBiATelTFbVGoLB1sqhczi0hlf\";s:14:\"js/v4-shims.js\";s:71:\"sha384-5i8QG9UXrCZePXfj1ac87dq22tNtGoJ22fmjXaJI8iIy072+ZKv1NZHbsTMfYvnV\";}s:3:\"pro\";a:15:{s:11:\"css/all.css\";s:71:\"sha384-xVVam1KS4+Qt2OrFa+VdRUoXygyKIuNWUUUBZYv+n27STsJ7oDOHJgfF0bNKLMJF\";s:14:\"css/brands.css\";s:71:\"sha384-BeZiOfMYSXjscewXEIJ0PDoBy27u+zVSTP5ZuW3kjEZKCn7pOB7v+oQVtAtHfY0v\";s:19:\"css/fontawesome.css\";s:71:\"sha384-fqilzf6i0kkOYm+DT4UC9pWzYf4/eFdJKroY1jZyE7n8eYLujyYM9VCucGf/LdVD\";s:13:\"css/light.css\";s:71:\"sha384-0WqtEOayxoyo7wgxUc5l2RvIbaWTyny0LrJbwsKhrKXUyopxvaNFLIoob4dXRwLO\";s:15:\"css/regular.css\";s:71:\"sha384-jyNdSTwsauV6/i9u6sKFOZBrxlr4QREAY295HsNy8laz4LYryhnPdz0ewFVERKfV\";s:13:\"css/solid.css\";s:71:\"sha384-dUUyoHgD2BplZp1AnRbRu0HPC5jscpJEJaJjqnBh7Y5PT1gW7cM6BQEgrcOsSa7e\";s:19:\"css/svg-with-js.css\";s:71:\"sha384-+BcpgpzTfqttc/C2LUPzGXIGunaa/aIuSC/BPO2BBqqMbHNRCF7d3DU54LxbCzTS\";s:16:\"css/v4-shims.css\";s:71:\"sha384-TpRSvWoRbPKMMxDvVZgEa9wxoOZyawahRkC2P+ksDRxjPSvZjhEf5nU7pqSWBCQF\";s:9:\"js/all.js\";s:71:\"sha384-RLPiEwcAdrH2NjFcwJipJtlFoIN1xvqPYeeDX5yYtSNu+HTIkQCDvPQ9thsUnPUS\";s:12:\"js/brands.js\";s:71:\"sha384-NBtHk407eZGNubj82MbaKt5CrNLfhnYmCbpjSyDk/nWemMXE/mfvm3c1MPjfnWmU\";s:17:\"js/fontawesome.js\";s:71:\"sha384-b7K10RWf2Q3m26zPrKzM95th5yJnxEw+vpCzNITZFKV8UgxPgHb61bS0xFkKdV2I\";s:11:\"js/light.js\";s:71:\"sha384-BMiulaMo0kY9ExzwDFFjsXkU373Br7qSwYa/hdDlWEWEkE3flk4mBFvMwlpye3Aw\";s:13:\"js/regular.js\";s:71:\"sha384-uMEQdPXvyCTabszTyCxRRMDh/xIcRlT/fpq2DKkcjR6+lOqq2111EL0C1OiRVu1E\";s:11:\"js/solid.js\";s:71:\"sha384-9fQzIUDeLlrPRI2CT9AqVv6Yr0JgEY0+rr7ngyaatQAQrEHhCv5CvG8F8UFdgk7u\";s:14:\"js/v4-shims.js\";s:71:\"sha384-Ts0FauTmSRKZNl+Uw+WC04UuoVYd2gXlJ+OcUvb1NDrV2XmDcgCr8PPv5MY/7KZR\";}}}s:5:\"5.9.0\";a:1:{s:3:\"sri\";a:2:{s:4:\"free\";a:13:{s:11:\"css/all.css\";s:71:\"sha384-i1LQnF23gykqWXg6jxC2ZbCbUMxyw5gLZY6UiUS98LYV5unm8GWmfkIS6jqJfb4E\";s:14:\"css/brands.css\";s:71:\"sha384-vfTtNoEyqnxivzqkzc+mvlVeCWPGwMlIIkeTkt0mcUQNmFLyyXxY5SgZIkKQIXRK\";s:19:\"css/fontawesome.css\";s:71:\"sha384-NnhYAEceBbm5rQuNvCv6o4iIoPZlkaWfvuXVh4XkRNvHWKgu/Mk2nEjFZpPQdwiz\";s:15:\"css/regular.css\";s:71:\"sha384-5E/NXotaQSDJW8gq/9pxwQHSPRrb21suHuLPqOIlgob8QC8ltM13i6HLujrhWmBL\";s:13:\"css/solid.css\";s:71:\"sha384-ypqxM+6jj5ropInEPawU1UEhbuOuBkkz59KyIbbsTu4Sw62PfV3KUnQadMbIoAzq\";s:19:\"css/svg-with-js.css\";s:71:\"sha384-Bfk4oyOug+rBqsciYilQ+iwazXsMTURz/M6Gfx7fb02KNeW5VHwt7aHTXWNU9B2W\";s:16:\"css/v4-shims.css\";s:71:\"sha384-zpflLcSaYRmTsnK2LTOdvChgML+Tt/4aE2szcblLVBXd8Jq/HGz6rhZqZ+4TkK75\";s:9:\"js/all.js\";s:71:\"sha384-7Gk1S6elg570RSJJxILsRiq8o0CO99g1zjfOISrqjFUCjxHDn3TmaWoWOqt6eswF\";s:12:\"js/brands.js\";s:71:\"sha384-CZZj1HZWqgh/CGR22Lnl6+fZC6IDR10ga+wECjipCR3zId+7ZxZP1JNI+YgdzyO/\";s:17:\"js/fontawesome.js\";s:71:\"sha384-RXRrB6R44g3RRohoKLAOK5MjNq4PVvz7iZErCckeyobGIJLpTP2qq6xjJFuKnfZu\";s:13:\"js/regular.js\";s:71:\"sha384-xrLv+W4OudHJZ6QDKuv+el28Wyr4OMO0qSQuBiPqhBsnSGKdGct/ElQm+2/fx/eS\";s:11:\"js/solid.js\";s:71:\"sha384-kDWpGOpzLEy85/cK1Df/ba6PkpDHAKUGOX4YHEt0sFzHdrTY1rGmT/gYHN3zCcF0\";s:14:\"js/v4-shims.js\";s:71:\"sha384-npD7syUhXOZUTbAzJEyIPGq/8gGAhBmei7JkUwUki9hAtz9oPkFJwx5f3vGb7SOi\";}s:3:\"pro\";a:15:{s:11:\"css/all.css\";s:71:\"sha384-vlOMx0hKjUCl4WzuhIhSNZSm2yQCaf0mOU1hEDK/iztH3gU4v5NMmJln9273A6Jz\";s:14:\"css/brands.css\";s:71:\"sha384-wRa49NRotGDh34aLO1Hjbu65qHSTF/ZNSBm7uTpMUa2EQ1Csq7Zlswm+FR9hcWtn\";s:19:\"css/fontawesome.css\";s:71:\"sha384-QSCxeayZXa6bvOhHReoQRGN7utvnOnY3JoBHGxM61JQQ1EXA7AT3m7dnlHXLhnCj\";s:13:\"css/light.css\";s:71:\"sha384-/ggAGHSQWxssDRflcj0aeAlGN2rNgsnWOLv1ZU5FEvjQWxP53glq5pNPjtfldVVN\";s:15:\"css/regular.css\";s:71:\"sha384-FrLF2uGffV1P93pQZme192v/cHRu1XlgjMreWAScHPPjBz/p9pNTx/bTV83x8peQ\";s:13:\"css/solid.css\";s:71:\"sha384-KyLwW4NRDhAz4RVatBCvFATniD3ze5rJvP1usxUFectdGgG8n+7OTcZug8s4bj5H\";s:19:\"css/svg-with-js.css\";s:71:\"sha384-dwNK02s77FqYOBDJpF4ttbI23g2UUTrI9euJ+OQGonHAy4W1kCpAyV7ozLK24GWz\";s:16:\"css/v4-shims.css\";s:71:\"sha384-tlZ/hMWxtcO6JxnBPYGsa5Oiu1gmAqp/bY7s7G6m5OOCJvcNQ6Fo39YHu4Elr+Hf\";s:9:\"js/all.js\";s:71:\"sha384-nKdXFHC25mX+ztWymakpQ8nRykznAcZ+yHi9XETJ8CuVvvSGeg/0QCPhvDb41hUb\";s:12:\"js/brands.js\";s:71:\"sha384-4Md2NBtJT8CgVnGaoonPkhRdMvGcFRH/nATvRJ0+2VsJ5bjySPpBil+KbSC+9yFv\";s:17:\"js/fontawesome.js\";s:71:\"sha384-nFIVFc2+uHHcH70YEBnMC6UmUjVxcQ0rZJe7u58lz5aUDQRz0l3xFmVSdao7Ag/K\";s:11:\"js/light.js\";s:71:\"sha384-C6XejYBP1H4YOZVReSXSBion6LKXOt7htNgjRlcKQSsMnL+/Ok1vyvI5EQs1/H1e\";s:13:\"js/regular.js\";s:71:\"sha384-GlXg5Pw5UjuoWpx2tbE3LsctnmBsngO5u5c+nK1slAwSuwN86zPzez+sFxncM+Tc\";s:11:\"js/solid.js\";s:71:\"sha384-pAEZwWHMzeWUPLx+edoghTzc+LBoBSIWMNFPeZGDiFDP6WL4g+EHr7DhQMUpjSLZ\";s:14:\"js/v4-shims.js\";s:71:\"sha384-A2MQ6ZItVBjKp0Efdmi8Xze6uRApxGoHzuGImgZGk6JfuaQ9Vkcev6HtJSQzftWE\";}}}s:6:\"5.10.0\";a:1:{s:3:\"sri\";a:2:{s:4:\"free\";a:14:{s:11:\"css/all.css\";s:71:\"sha384-0c38nfCMzF8w8DBI+9nTWzApOpr1z0WuyswL4y6x/2ZTtmj/Ki5TedKeUcFusC/k\";s:14:\"css/brands.css\";s:71:\"sha384-19EzMRnOAF4Gg36FukRf0Bee26rnZC49Ld5mFG+8XiQ8ddeKQYj7Rnl12YxIoHe6\";s:19:\"css/fontawesome.css\";s:71:\"sha384-YYaKmJMZQbIhKGKC1QGjVKSQ3s9OlZitN6xQQEPksarSkM0WNkq5Kke0yehyNwyT\";s:15:\"css/regular.css\";s:71:\"sha384-OVGJJ0J6OIuVjxoE5rUQPFweGgzO0xT+HKN5IChh3LTrsWQKjHocfKq+nk/8DogN\";s:13:\"css/solid.css\";s:71:\"sha384-dHM1276IWlmmltsiRRg04ASaTBbgAqnnjneOemUaqff0rqTtVHw5qqKE5i0k4Qll\";s:19:\"css/svg-with-js.css\";s:71:\"sha384-oBn2TNb41FLJEvg05fPEoAhWHErn7PR1FiyT6NjQkoPzDDg1n/e/GrwRgh34gDmQ\";s:16:\"css/v4-shims.css\";s:71:\"sha384-R4Ah6+FGj2TWi1SbbJo01aRwLwdNunBoW4ALQ4SdcDpyQpKoP0pTL3Ce0Hf0oMOh\";s:9:\"js/all.js\";s:71:\"sha384-BfzGEucsDAHnSR99xBvG8cNHx7h6sEbKJejtvqlMrN8nMi3gP2ds+sMAjWfWnZyn\";s:12:\"js/brands.js\";s:71:\"sha384-SgCx6DCTHwPNfTrT8PeDNKVR+bLsTKTVnBbtZYSLgfp4dd+KGa6j4/Jy96HTd0nw\";s:24:\"js/conflict-detection.js\";s:71:\"sha384-yhpUSfH+AXwjqsle/7pS92NQZivmuHw41bqBfGxkaV4ftpRTE9Z6MNd2oh9x/BBm\";s:17:\"js/fontawesome.js\";s:71:\"sha384-LMbxIMq/Ra43sLL8MF9d0C8NDym6Cp7d2rtvvZUd5n4EuGE3GSYBmf6JV41EB7+y\";s:13:\"js/regular.js\";s:71:\"sha384-eX5P9jt8OdQQ4ME1Y4Q90r5k0qCw55F9jie73NYjcSEHIYYV+x3MW3XgqK7HDuOG\";s:11:\"js/solid.js\";s:71:\"sha384-WvtEEwvz7coGHFMqz/gUsacHkjubSgzLIieTORXey1KIpl+/r1Sk5owMdBxnGFHy\";s:14:\"js/v4-shims.js\";s:71:\"sha384-RT+uACaLSP2jOOLdRXKvxcgxA/WNa36UYkM14r9ODCgz51g7frfTdR+Jv3q46NW3\";}s:3:\"pro\";a:18:{s:11:\"css/all.css\";s:71:\"sha384-AYmEC3Yw5cVb3ZcuHtOA93w35dYTsvhLPVnYs9eStHfGJvOvKxVfELGroGkvsg+p\";s:14:\"css/brands.css\";s:71:\"sha384-/BwiSb9M4ZqztN8bEG+VrC9ohWSBX3qEV95+/+gBJoE4+zG3KqcLj8ShUhBIALSm\";s:15:\"css/duotone.css\";s:71:\"sha384-R3QzTxyukP03CMqKFe0ssp5wUvBPEyy9ZspCB+Y01fEjhMwcXixTyeot+S40+AjZ\";s:19:\"css/fontawesome.css\";s:71:\"sha384-eHoocPgXsiuZh+Yy6+7DsKAerLXyJmu2Hadh4QYyt+8v86geixVYwFqUvMU8X90l\";s:13:\"css/light.css\";s:71:\"sha384-2CRj/5C4pwyS5v+q0KXxQ39b3qsKQNE6T+9FFaAOlps/XjJcK+M20aMUxuQtRLaZ\";s:15:\"css/regular.css\";s:71:\"sha384-pWItZRjB6NLzlrnwcL+2alve4CtHiaLj9W5ZwGPgy6dtMzCPsGv/qEcRvrbVkW5i\";s:13:\"css/solid.css\";s:71:\"sha384-Zbnz7QaugaSWTYmuSFTHGzMLxXAu2vzmqJhA/DS3bnaZGJaatH8apOWXfFaP6PMh\";s:19:\"css/svg-with-js.css\";s:71:\"sha384-85qDq8Thytv8iDkEBcdksps8EZiX4DEo3vh6Ijk38Xi4RVm37Ttn+HU9rsXho2fN\";s:16:\"css/v4-shims.css\";s:71:\"sha384-y51MGgwaeLjbh5fbY1GJ6PypnEoMkGu8MoR1HRE/p/hHfiEE1G9bK/79bstJpyYk\";s:9:\"js/all.js\";s:71:\"sha384-G/ZR3ntz68JZrH4pfPJyRbjW+c0+ojii5f+GYiYwldYU69A+Ejat6yIfLSxljXxD\";s:12:\"js/brands.js\";s:71:\"sha384-8TDwqaS9Kr9a/3cVS6+XkvWUM1tz6XdS8s2urD5rXY1Cz22kPF77ZuG1gIWaz6kZ\";s:24:\"js/conflict-detection.js\";s:71:\"sha384-JB1N15Wp6AIOL3sQ9Tm4a0kATlQy9/+/nLmU9B2wv4K4gGNAUFZEU7qDcxIPJLXy\";s:13:\"js/duotone.js\";s:71:\"sha384-PcDzzpTJzDDda2YUM4EY5ZqnZQ3DTIFtoaAn7t07N0UIY1HVyaxIHRzROmFBd48z\";s:17:\"js/fontawesome.js\";s:71:\"sha384-8YSeMunSTZdDZy7rZxfG3NqC3KnYaCKxTJMm9yoILgIoMpXeTKDrV8TeV9C5ItEc\";s:11:\"js/light.js\";s:71:\"sha384-sEc8iKGnMxm+Dm4AQabXbw0DKZU9FtFrWMppMOsxaUZsLL5pcpQs4aL/OfefTw7g\";s:13:\"js/regular.js\";s:71:\"sha384-wNQjNuGVt9TzLWqaxsZvH5uIDIxEkpSCeSPg6nF2ud6AK9jXY9yMFA6CbcZrr+cZ\";s:11:\"js/solid.js\";s:71:\"sha384-Vh+IVHoo4c4JXOfJBoUxIiEJf6bB443zoyGtwY8WbBmCU+7fAq9QX9JLtFcNSPZl\";s:14:\"js/v4-shims.js\";s:71:\"sha384-vzU1ar4oP9lOG/JJdj1q/+3aatI/ZbpyHIMelvsAi2Ee8gCiTIb/YhqRymLLZkje\";}}}s:6:\"5.10.1\";a:1:{s:3:\"sri\";a:2:{s:4:\"free\";a:14:{s:11:\"css/all.css\";s:71:\"sha384-wxqG4glGB3nlqX0bi23nmgwCSjWIW13BdLUEYC4VIMehfbcro/ATkyDsF/AbIOVe\";s:14:\"css/brands.css\";s:71:\"sha384-+B+cmd37r9agFUqHw5ABups/+o97SqA/Y6S5b3ly2q0ABacloQs0HZOQAX1NpJhF\";s:19:\"css/fontawesome.css\";s:71:\"sha384-jUGOH+gYMCfz2jbO6DW8vojES/a323h7dcoT6qI7Bvod9mew/wwTZryjccmaMOkf\";s:15:\"css/regular.css\";s:71:\"sha384-gr19od0wAxe2+mYHEXvS7Y1ppn+ESoAQzTYGPauVJYyAYYl0NBQaKveeQnzez2Rm\";s:13:\"css/solid.css\";s:71:\"sha384-VUnOJnDrNS0aVOhF6puq5SPJOP5oOvIO6n54m14E2/OHv6DU1gklJ4EImoD382c5\";s:19:\"css/svg-with-js.css\";s:71:\"sha384-94OQehjHMl3lApC2tWmjwtxlB0oEtSE2zrTdf8uuWEaDEkkCxXK/w0vFs5J5WPU1\";s:16:\"css/v4-shims.css\";s:71:\"sha384-i1lF6V7EeiD7KOgGLtAvJiK1GAQx4ogzG6B9gpEaDuHSLZuM3sFtPZrI6H2Gzqs6\";s:9:\"js/all.js\";s:71:\"sha384-aC/bNmpJEYrEVX5KNHN+m0CmvycQX9wDnYv8X2gdXQjrbtDP5OcU5DRiXwL6bPwr\";s:12:\"js/brands.js\";s:71:\"sha384-BZIBcmKlroIkWe3e13MZbUHZdmagAU/8cnXo9mIW5p5wzf+/U5ULLQ8TVioSuCnC\";s:24:\"js/conflict-detection.js\";s:71:\"sha384-A6TzAYakDQ9XwDY1hOPxAxI/3t6kol61Ed9hvHegEwcENzAE0vLojG6wItQDmclf\";s:17:\"js/fontawesome.js\";s:71:\"sha384-NXKh+ixIINN/JHIorH6fcTNwaAekBk2v7azch6cKmQm7wtb0yBt8ctqn1FAspAW5\";s:13:\"js/regular.js\";s:71:\"sha384-7Sk1mIxPYoZb2I3YK86sPsPMftKqv0aWP+dgX//x1mF1mSOYydXmX7DbtHN99bea\";s:11:\"js/solid.js\";s:71:\"sha384-dc4FEGpFyXnyL9DbieF6I8Xzipdt7GRHX6k8RM/ow6+IDISjPeeTwTiAkNzjv2OI\";s:14:\"js/v4-shims.js\";s:71:\"sha384-BtUWeH6hQDQGUZewQDmWRMisAxvs1LtqoVQgmbFptFnH1GpBw2b2vZenxfFmRtOS\";}s:3:\"pro\";a:18:{s:11:\"css/all.css\";s:71:\"sha384-y++enYq9sdV7msNmXr08kJdkX4zEI1gMjjkw0l9ttOepH7fMdhb7CePwuRQCfwCr\";s:14:\"css/brands.css\";s:71:\"sha384-9J78p9RP9gty/jk0TJPvYSzmYYCH4cRRkDMnZGxZNh1wdaXLvXzIk90EWrxjjqr9\";s:15:\"css/duotone.css\";s:71:\"sha384-Na50X0DRTNz+Sc+4XbFXONmaknKHBHw6gvRZ4coLQCl7ZLXziulq+4wvTZxkaM+U\";s:19:\"css/fontawesome.css\";s:71:\"sha384-OvQaO09Stu8nVnOdc+6B3WjpKg9dfBxoakdLxJKAYgsz62+DzBUCvWRxPl9LRVSq\";s:13:\"css/light.css\";s:71:\"sha384-CL557/BMzDSg/4ctPpKDphHJgLqpdJ5rvOklcaHzLHpX+qsgd4V/xao6Rya4xKMQ\";s:15:\"css/regular.css\";s:71:\"sha384-yLDdP4XFV3JqISKN0JaZ0kdyks9S+U2o9uBmNbmZh85yjdF/kpu+oY3/eXQcGHhT\";s:13:\"css/solid.css\";s:71:\"sha384-BrYpEWmuPyxLgVmvUGa111AoxZ3kKwiG4TVjjewWZV9vww+dTLWpmEffDSEg9Gf5\";s:19:\"css/svg-with-js.css\";s:71:\"sha384-V8iByeksgr2la9ceLV1jNv7uWdzI3pYZLNzgYqWmQuQZa7khs4d6QC84YnMWoKxx\";s:16:\"css/v4-shims.css\";s:71:\"sha384-rql5zubvrhoXpo5buqgoiKryiT02OHCEtveKZrj4NX/C2Kuy7W2P7vl+RVzBUl9m\";s:9:\"js/all.js\";s:71:\"sha384-FW78RPcSpi13vjx77nPWQIrQbNSLkPBopb0qGzLCxD2x4Kr6FA8V05C/6cpgkKPL\";s:12:\"js/brands.js\";s:71:\"sha384-DGr5D3fYhGn4bylN+nFRaxvPt6s4FjV7B5EhOOFUKW0JKU2vco3q3xtgSZeeEYpw\";s:24:\"js/conflict-detection.js\";s:71:\"sha384-++EkH6KNUkbsGzUhPmRa5yboy873FnCrHLPNWnvcfYOzCCShCQHtdQ3RQTt3WDsW\";s:13:\"js/duotone.js\";s:71:\"sha384-QwVJpiaupNLHQYsfQUftqzWXMT+SsU4AKnlvxDGzNjTq5xPXRbG/ohsvyIEyK2uf\";s:17:\"js/fontawesome.js\";s:71:\"sha384-v97MeHGTkmNphZhn+D7412xlPlc61o4jy6CouRwKfNltfXH68HcYhmQBr2j/J/Vp\";s:11:\"js/light.js\";s:71:\"sha384-TZInz5PvbxRzxSlGI1WYKmrrBBk/XTTZymO6w+smmSVD6RFpfZd+JtSye/viSFxA\";s:13:\"js/regular.js\";s:71:\"sha384-ZlV+aQMpcvCEqNPe9qTu/S6+eBL+DfRjOxr9wtsoZyGnJ/vwQk/U2SZhZ8tJqH5F\";s:11:\"js/solid.js\";s:71:\"sha384-WtnuXyp6MLUsHy3FAqJyL7aL0a/mdUjPwIs/Ub7FXJZufo/0qH9aFsTDY5Q6Bx3m\";s:14:\"js/v4-shims.js\";s:71:\"sha384-P9HMMmM/ObyzYMvKfF0Xf40MYwNdkI08AwhSyCsAVlmXZkJ9GaI0Z23pozRg8HAe\";}}}s:6:\"5.10.2\";a:1:{s:3:\"sri\";a:2:{s:4:\"free\";a:14:{s:11:\"css/all.css\";s:71:\"sha384-rtJEYb85SiYWgfpCr0jn174XgJTn4rptSOQsMroFBPQSGLdOC5IbubP6lJ35qoM9\";s:14:\"css/brands.css\";s:71:\"sha384-qVnmyLTtnGPGEN3HDG2MCEOXWH1Yk/i70lKRuV+gMCDQg+jblQlFGPf1mejWUyYG\";s:19:\"css/fontawesome.css\";s:71:\"sha384-hM7EQerc09E4O3zhtvF2iqcB4ZkEu9xkLQndhXdGGCEJ/sB4JK54SuKGmIC35UTf\";s:15:\"css/regular.css\";s:71:\"sha384-zuVEAfuEXYtKnHpmwmkhzwMdR2uek5gePU1XveESmScyRJHbncv8rLEAt+ofv7ze\";s:13:\"css/solid.css\";s:71:\"sha384-qPldrzmea0i8jhonuql0da/kQWeaXdQl+krGXcTQUdRUGHcXBfSrBbZLbyMcCWcF\";s:19:\"css/svg-with-js.css\";s:71:\"sha384-G0mvrlfkz9DnjBCRmY8Wf7nC8wTxDsHE3pGAc7/4rDLh5+v9Z00qi/uyjjcDf1nf\";s:16:\"css/v4-shims.css\";s:71:\"sha384-updXts+unDswrMsYxLc5R+HfSmF8CuEIOe48Rj3DoVoPUIImOT1fs26H/tr/H9gC\";s:9:\"js/all.js\";s:71:\"sha384-QMu+Y+eu45Nfr9fmFOlw8EqjiUreChmoQ7k7C1pFNO8hEbGv9yzsszTmz+RzwyCh\";s:12:\"js/brands.js\";s:71:\"sha384-0kDL5YEgNJjL/kNToZYEds3evLmosarb6OU2eKqRYu6O28jcJc121tjUC40sG9VB\";s:24:\"js/conflict-detection.js\";s:71:\"sha384-Hg1lNcVEsyCqBb1J4/U9X9IW2DEhAKIBfBIE0J0eiWGEX9LEpEULwcsqoAb6HDgG\";s:17:\"js/fontawesome.js\";s:71:\"sha384-5WtMZ7frOu4PgR22YgRSlercgEU28i5Zn39Svk6+2cg1MOigLDSsvXccsmJO2Wxp\";s:13:\"js/regular.js\";s:71:\"sha384-CYi/gunDGMYA12KV546MNRqsjbbWSyKgPjA9BwVMBQmIMhzVrjyUJwkV9uujzHLJ\";s:11:\"js/solid.js\";s:71:\"sha384-RbVpZhfPW/1SmcShwIOauawY5vJWxTCeEnmiUCiY2SbkrbKuSGTqJ9NnBUmcP95A\";s:14:\"js/v4-shims.js\";s:71:\"sha384-gDM1aRghQ5DRg+fSCROSYawrJhbAHqa6Teb2Br0qRJtb+vRJlyU4U4xnmN5cwJ9j\";}s:3:\"pro\";a:18:{s:11:\"css/all.css\";s:71:\"sha384-XxNLWSzCxOe/CFcHcAiJAZ7LarLmw3f4975gOO6QkxvULbGGNDoSOTzItGUG++Q+\";s:14:\"css/brands.css\";s:71:\"sha384-hIpb1kefRKjC/r6WxN0S6Nai7+AuherqCoHKD0HNdXkbzJkZcS4o62bJ7ODiBWAu\";s:15:\"css/duotone.css\";s:71:\"sha384-B6+5TXCEkY2Io8b+v2Ki0aEWnpCFgBYkOzXAHY3oQ4tr90JpQC1RErwFbvJ9CRt8\";s:19:\"css/fontawesome.css\";s:71:\"sha384-1sdMwbsd8X7Y+nVcEr/4D35smQEaEd6Qz+R00Y+NPUkG8MyRa97RrX5I4nqDt6X7\";s:13:\"css/light.css\";s:71:\"sha384-dlxpRYGi8Pjg49IqtrDIVZmCOQZ//oDKDkoqbn/IXrwwQDP4Uf0ys6+eH1z9sfhV\";s:15:\"css/regular.css\";s:71:\"sha384-hKM7KqUOh6F2PI59uEhofbDs/5qHHdJEULlmNWJEQcu3D/5/vl5zpwBrveC4GAbI\";s:13:\"css/solid.css\";s:71:\"sha384-FCdq+BRoY+lV7Zy7HKKQ4zoywYLRyasGk6IrmrXfmYs0xIgL0QrPeEPTu3T4Uqcc\";s:19:\"css/svg-with-js.css\";s:71:\"sha384-+OTv1mrGtdzHGeAuFSVKpPvaMXNpUu+W+Xs4xYz2RgUlrBctmMyE3noRImN5j+ot\";s:16:\"css/v4-shims.css\";s:71:\"sha384-88Tda+TyAtJK9/cRRXAWdJjyE56Tg4ai2x7RoSEqSVodcInAoV0HNQ2ofaGCidyr\";s:9:\"js/all.js\";s:71:\"sha384-lowSFbzpSYKDOsvnpi2JVneSnkrbVjOTwcHOWpC+tj/YT1mxTDIB3ZqbtllmfUSC\";s:12:\"js/brands.js\";s:71:\"sha384-nyTyvpFz3BvQZucRUSSEDlyivN7GAC2Xhgl9M92o/rt/KfEZ7LkqusFXlCjM4DvC\";s:24:\"js/conflict-detection.js\";s:71:\"sha384-eYjh/PZbsWw6lqYWtDM+NlcRs3pUkOk8r4mxv/x0xDjmYPXTxPKQ8ZNXxOnd0UCL\";s:13:\"js/duotone.js\";s:71:\"sha384-2j1n2yG+7lkO9CjnN1DSQOGJoDEaJPEr+TPmTer3pK/yD3bQ/Kk8bqJyS3LfCK26\";s:17:\"js/fontawesome.js\";s:71:\"sha384-sy0tjZ+ivgcg2wUVVEmLMO5wfntWOSyQaD7AQec0iXINci5JAP92T8sM4YldYQIA\";s:11:\"js/light.js\";s:71:\"sha384-vh/BsPXkl02OgBjk1HJkukipMWFU6vHADY4W3u9BXIrKjcRFw5Y5XikVLoLElHee\";s:13:\"js/regular.js\";s:71:\"sha384-p89srWlrnSOel/vi/SpBD/wyTTJhu+27jcfOazOCUnLTpcxG+NVuYs/okkO2JBox\";s:11:\"js/solid.js\";s:71:\"sha384-JzK2muq5DGAdfmBP1xyuFUAYGceTmP/Y84tZvRxkdtsjwuIcd8Hpf1D+5izeBUQP\";s:14:\"js/v4-shims.js\";s:71:\"sha384-z089sTZgTLfns4lyNCTpVbdQA6JAhOs6JXwRH4ig0M6EHPg+Lzp/hdcx2OHQn/v8\";}}}s:6:\"5.11.0\";a:1:{s:3:\"sri\";a:2:{s:4:\"free\";a:14:{s:11:\"css/all.css\";s:71:\"sha384-XLYVh3ZsmvjnjODXg/qvDYjcINmPLORACP+Tk6qA3jNLbStl84PzAeEz2Su02511\";s:14:\"css/brands.css\";s:71:\"sha384-ngkCSSyhFgmeG9/8GICGMwnX44Q70/NN2XuNgrpMHOAjXVjYwTvtQML/2+2EH5mm\";s:19:\"css/fontawesome.css\";s:71:\"sha384-saSWCOAroWA1DTfG19axC5l7ej+/lsLpGrQjthhULGGw0FKZqZmxdjRhWqjypqgH\";s:15:\"css/regular.css\";s:71:\"sha384-NJ6bXu66piTFdxVfLXmQuxcjGye4blIA4H2DybHqY1WFdYSxbKQo6W0G53caD7MY\";s:13:\"css/solid.css\";s:71:\"sha384-1Ln0i7HCe1LMHO25AgX/9s/3XzTLIMev2SYgQz8xSyXSa3775gIb15NIpJoDRYDg\";s:19:\"css/svg-with-js.css\";s:71:\"sha384-utbeJwkEmotPPgnsjR2cFDH5mR1JrU1EX02CRdVYlT6MuuLA6/jK0M1UcDXBVNa1\";s:16:\"css/v4-shims.css\";s:71:\"sha384-QZ/09hWMymER1waFUW4M2iM55h3bf5FVf516rOAYf9G2mHSpAj+oo/6jrxhxiVq4\";s:9:\"js/all.js\";s:71:\"sha384-Zgm+jt84FBq52ezxzG1WPrUHXPTLraCVSuBDiGgz/mX0FZxgdkTZNephFvciYglv\";s:12:\"js/brands.js\";s:71:\"sha384-FYnxcuBilMBfd4M0z3ZhTEWrorBL6P6mqaDWsYN46z3iJszwg7yqVAft8mxPhWQf\";s:24:\"js/conflict-detection.js\";s:71:\"sha384-nDF1UhY85TnH6TtkBtlcaTXQh2EGA+oy54oi//hchZ6BIO8n0yZOdEDcqy3Lj6SH\";s:17:\"js/fontawesome.js\";s:71:\"sha384-+4PGPfaOiBMXBdbxBpjj3c78flBTf1SoDBBbEHY2P8SuIKsjNJ59vjhjpMClcRVk\";s:13:\"js/regular.js\";s:71:\"sha384-sPFXZNRvY5NMeQlqaEJyF/3Lrrcqi+EowkFdHnHe2B5/GSLq+RN8eAfpDiFzWveB\";s:11:\"js/solid.js\";s:71:\"sha384-abaNJNBN26YUz3JKjkP/eHqZP+7EaMLIkyR/I4JNQXin7CWBKc81Tmgh2//K2gfd\";s:14:\"js/v4-shims.js\";s:71:\"sha384-uQinggJhGToi55IHZla+hhoeR3xafp4JLhuIZzag3QFHKDyLLolL8IuCRM2aLdxy\";}s:3:\"pro\";a:18:{s:11:\"css/all.css\";s:71:\"sha384-eRd7BE4pd4YyGL79iaO+/+GQtuNU464XOqRShZHNdRwR66wJIzi0UirzOFzuoMOo\";s:14:\"css/brands.css\";s:71:\"sha384-/DL+sGDGYNVXNSXzx8omqgYJuKJWhPfJC0j3sM06CPE7CKypUtyAtAburBBMbhWn\";s:15:\"css/duotone.css\";s:71:\"sha384-JrGJDz5LRxQ3s3dW4Av8oo0oPABX1FQPzGwpVizHFqVT7RXKd2suPslh8/k6EFvo\";s:19:\"css/fontawesome.css\";s:71:\"sha384-ASwVckljSlVqrp7J4fCNW1Zfqp4GBw13f/oq/bwtr1KNG1j5lzKrfTpvoivwJZpS\";s:13:\"css/light.css\";s:71:\"sha384-SE3odAKV/Li06jtOem3j03b4qHD5AfOLS3ip3Ie7HS0QtdLJuRozlFcEiBnKhIjj\";s:15:\"css/regular.css\";s:71:\"sha384-v0Phnxb9e1tIN8ABEpuqr9+U98eA2hbSnnxnIFWqTyvwFd4QjVV9NOCl19hLotTv\";s:13:\"css/solid.css\";s:71:\"sha384-23irw3gzc0cirSOm9k0vC4Cb8339DDxFatLW9p83F4RsFK/1HuRvePKAltYrdlBX\";s:19:\"css/svg-with-js.css\";s:71:\"sha384-c8uzxHbCxkqcTDgRCHmj0nVIK7Z72qzR5ciNuZIQQKWVMb0Trzdh3g9EmdybHyb/\";s:16:\"css/v4-shims.css\";s:71:\"sha384-+/X59I6aJtu7U5st0yw42TmOgz2GTi80ici4b4Zr3fVKaib7AhAhXm17vhXVqNN6\";s:9:\"js/all.js\";s:71:\"sha384-jaxx6ehyna+t5i9JERhQruWpH3C/xGZQJz6/+xqO5C/eWWJ7ysIZIe9BAULfRy+f\";s:12:\"js/brands.js\";s:71:\"sha384-om6tKqxNyejPYGBkAEpF5czG8EOB93m9G17YUGoJgRtei7kJnA4P4+w73UfDPtLl\";s:24:\"js/conflict-detection.js\";s:71:\"sha384-I8WM/bXtfWQr8u2t0OIaUfJNpTd6LnCbNnrQpaKQN4/Pdek5IOtrXdpcXpLwzCoc\";s:13:\"js/duotone.js\";s:71:\"sha384-tit+/K18O6+uMPCuvEcobuzvT7aFly7Raxqnszuar7OzNloVr2oIugu9S/T3MNgn\";s:17:\"js/fontawesome.js\";s:71:\"sha384-kAYceFs9TzH4f4HsWzAZvbE7yJRTcOUe2UeJVCdVV8AYbspSlxAIwUg7yGHrtSKe\";s:11:\"js/light.js\";s:71:\"sha384-zam67iVIo4OJbdPFYrgsf4Te4l96q61wYKpT72nLO78ICkwXk27OlsN4SQYHOlI6\";s:13:\"js/regular.js\";s:71:\"sha384-8QzBYxpPIH9HEZ96HhicnkJ8XYzELjI6YQabAc2ANT0wExEgzeKwnNdQM3B0YPzX\";s:11:\"js/solid.js\";s:71:\"sha384-vTIqr5UHlJnlDEDAZB19P3NuSQy0Ynbzj7w5ofBkLPpN1bb7N2uZ/z0GNZGCIFxW\";s:14:\"js/v4-shims.js\";s:71:\"sha384-56L2fWZDluSTJKVxfc7PF+HoFsBrcdkn/Wj79nB2pzTgaYmqLT5T2pn6PLbMvHHq\";}}}s:6:\"5.11.1\";a:1:{s:3:\"sri\";a:2:{s:4:\"free\";a:14:{s:11:\"css/all.css\";s:71:\"sha384-IT8OQ5/IfeLGe8ZMxjj3QQNqT0zhBJSiFCL3uolrGgKRuenIU+mMS94kck/AHZWu\";s:14:\"css/brands.css\";s:71:\"sha384-UMAQJEtrY4iFRXQIYIXWfTd0GPzHrhSPK1SJ3fEeGGgtkC3m5qhKESA0yOXahpmJ\";s:19:\"css/fontawesome.css\";s:71:\"sha384-8dpIy0am6bmWHK+abUbC1sgkCSD6WstSMjjNB7JVa+rprKurA6xisqNHg6DESJWW\";s:15:\"css/regular.css\";s:71:\"sha384-5JoPxivOfpG9KRKbjXkqhwpMZ7vvAATGi77NPd6sC2ruJrWa/hKqoLBIWC1n1N/U\";s:13:\"css/solid.css\";s:71:\"sha384-20Qlvv++Kgw8B9SXDkUX4JrITPco1UXcaB1mkymQFgx8cM9azG2Ig9Sy3khBpWip\";s:19:\"css/svg-with-js.css\";s:71:\"sha384-jv39B+1DxC6iSROYUwIeI9RUDrl9ckXFPOOlys2dTXchRTodXzqX0lm6GUwN4iLA\";s:16:\"css/v4-shims.css\";s:71:\"sha384-iJU+Et4BsM2cUxdymLmM7B8IF6IkyAYIcJRKroT/XuA5+2bWL9u+KJ1ZItC4bcdo\";s:9:\"js/all.js\";s:71:\"sha384-4Uei2cJ8mOycRxb1dxppaomro+V4vHdGuT3NfYGpENdgukEOcOrNB43OdzBiHdpZ\";s:12:\"js/brands.js\";s:71:\"sha384-q5JjSRgEoLV9cBFXvjGX8xxIxWN+LcGaDFBxSid/9XwjhecfXMQK9Ak7bcPSFT0M\";s:24:\"js/conflict-detection.js\";s:71:\"sha384-LqGhhRx8iThhBm6ytksB4x9veweiV+qNa2soZmn8V37E4Nohq1ccRoaSr4o8YAGQ\";s:17:\"js/fontawesome.js\";s:71:\"sha384-jwx8I0tSvPLf7ZV1KwBdmXpCHgduVujQNEzmHuLEiCYql63uV/C9TCtdBU7E5TL/\";s:13:\"js/regular.js\";s:71:\"sha384-W1XmDNwB/NY1P/H0BiR107pc9NC7aTrPvwXbrZewndT3nyrmFm/7IIc0AxxcHQ/N\";s:11:\"js/solid.js\";s:71:\"sha384-kDwQ866HvlesMeZEZYvoa7AceBir+K+jB/0PVVSs/1bX0JtTvAm3aFEgOCOCt3c3\";s:14:\"js/v4-shims.js\";s:71:\"sha384-gtnOUe72T7BrqVgxbkcbbwZGJLyyHFFtefPxPZ5t/rmQ7vMNXbxml7JJkSNfHmkV\";}s:3:\"pro\";a:18:{s:11:\"css/all.css\";s:71:\"sha384-sr3GDThhNP8BxHFoTK4zKFgOjcrT8vzaiLwnwU+yB31BCaNj3QMX6YVXcv8AeBAy\";s:14:\"css/brands.css\";s:71:\"sha384-4sG0FgVejJMQM47pqYyG+7afeARX2P0HYkQ8JCKf3ZqTcpJ3/SWefUFX8kdm8eYV\";s:15:\"css/duotone.css\";s:71:\"sha384-q4v2/qv2HhGIAcd04NDH2XuGq8Bzu+xNYUI3gcKFfWt09m/dgZlvUC0rQJ3KtGg/\";s:19:\"css/fontawesome.css\";s:71:\"sha384-O68Og25nY+MZZRUiP6gm7XPDuHsNC5DgKWEoxn6+3CFcGLRXuFihbGO/8c5Ned0i\";s:13:\"css/light.css\";s:71:\"sha384-Rg8mXhpzJH99uBsgdsCp9zXjkcsw/pm+s4Kgu/56eRQSd8SAszYc6hssH5MLusHl\";s:15:\"css/regular.css\";s:71:\"sha384-RjVm0cyaQYehIEaR5Tt+JDfgnUUtY7GP/N4rEglG6DxLUhzozRl6HTH5NfPQ0X1/\";s:13:\"css/solid.css\";s:71:\"sha384-/SNkE+jEmgiOubdXCmBU+e2fWH200um/crHWjo/Rni9rhQuxT4demqM/PAyc+tXU\";s:19:\"css/svg-with-js.css\";s:71:\"sha384-9q0WPwNHncxttx1Sf3c/G9lszy6f82L4rYAYW+JF0PRBNvJ1mVyYivrsep7J+Fud\";s:16:\"css/v4-shims.css\";s:71:\"sha384-1oMR0RRrEohmWSZo0t/tezQF1gyGc/b73Bba+qyZLEGdTAPORCf4p+pQm/iycsgj\";s:9:\"js/all.js\";s:71:\"sha384-7DVhSuOn0R5KmazSuDzmwQHOIPfU4+n8x8AifcGCoSOGATBJh55ZY41LSL37PB6m\";s:12:\"js/brands.js\";s:71:\"sha384-QRf6gn0gPrg4U0aYZ5s/Sx7xXy9gplYMzh82CI51530v89R9s9xGG8ljaSqYflQU\";s:24:\"js/conflict-detection.js\";s:71:\"sha384-jKcJk7TgESeW6RZgq9/e8kTr0jRQ/JvaM//YDKwhF9wyvXk8lQs27OQ6cgv3FXTt\";s:13:\"js/duotone.js\";s:71:\"sha384-CeUA4+L5GZZwc5CGnvQVaT/Yrv5HuRydWW/QDCiXZnuORKxut4zKDa2WUaCS7fvo\";s:17:\"js/fontawesome.js\";s:71:\"sha384-hvER25BD06AWxsJLW7cQmGKjQp9PSZttpMIo36kIq2TTPEhP4lIT3VMFul89Ym6d\";s:11:\"js/light.js\";s:71:\"sha384-qvh52W5+cWrTxhfM559wBnsSqplMQIEjQkHnAE8c6MViBcH1OKvI1u4IGR+26hZK\";s:13:\"js/regular.js\";s:71:\"sha384-owKa0I4sfD0ooTioBE3KJEbjcmAZi2LeCbkqHr7/vkUeG/U5OyCGxYlcz8axgnSe\";s:11:\"js/solid.js\";s:71:\"sha384-hNm7JVaYkbmX1gZWRwOXVFKJ3onp68grA2bFGmFSMCQueJbgNvKR+iItAjM/PiuT\";s:14:\"js/v4-shims.js\";s:71:\"sha384-1MuEmp8vgjvrraTYbqRjvuZbLs+vFg2oeN+87QTVYX2EAXM90T4bzBm7HIFFzAp7\";}}}s:6:\"5.11.2\";a:1:{s:3:\"sri\";a:2:{s:4:\"free\";a:14:{s:11:\"css/all.css\";s:71:\"sha384-KA6wR/X5RY4zFAHpv/CnoG2UW1uogYfdnP67Uv7eULvTveboZJg0qUpmJZb5VqzN\";s:14:\"css/brands.css\";s:71:\"sha384-tft2+pObMD7rYFMZlLUziw/8QrQeKHU4GYYvA5jVaggC74ZrYdTASheA2vckPcX5\";s:19:\"css/fontawesome.css\";s:71:\"sha384-+pqJl+lfXqeZZHwVRNTbv2+eicpo+1TR/AEzHYYDKfAits/WRK21xLOwzOxZzJEZ\";s:15:\"css/regular.css\";s:71:\"sha384-zgXo5aJZxI4cJSgWSRtbv7q4JB6PzrmOTAWiZt2CqN25ifeKsCuQZ/pUNoPgjcTb\";s:13:\"css/solid.css\";s:71:\"sha384-doPVn+s3XZuxfJLS7K1E+sUl25XMZtTVb3O46RyV3JDU2ehfc0Aks4z0ufFpA2WC\";s:19:\"css/svg-with-js.css\";s:71:\"sha384-PCpLTPQTGcSAXFltutjYRSDJAXJItRY88oa9XgNyYJuwrgJGx+uNVmtGSDS2PPvL\";s:16:\"css/v4-shims.css\";s:71:\"sha384-/EdpJd7d6gGFiQ/vhh7iOjiZdf4+6K4al/XrX6FxxZwDSrAdWxAynr4p/EA/vyPQ\";s:9:\"js/all.js\";s:71:\"sha384-b3ua1l97aVGAPEIe48b4TC60WUQbQaGi2jqAWM90y0OZXZeyaTCWtBTKtjW2GXG1\";s:12:\"js/brands.js\";s:71:\"sha384-b2GpqFrJizV0BUEdbrITdOA5HnxnlrErt7MlEERWd6NSJ32rHeibEvyyCuA13OAS\";s:24:\"js/conflict-detection.js\";s:71:\"sha384-b1XIrGvAvE1F4q9vHz2OmkU7bBKvxebE+Q/bW+d4lG90kACkPFm/ZQuS9tlTwVD+\";s:17:\"js/fontawesome.js\";s:71:\"sha384-EYYaHDhIRoBhd/Ir/1fPnxg9rZLk/55lKtlNT5KrIcONoCS2kjf7ZWzMoCLLACeo\";s:13:\"js/regular.js\";s:71:\"sha384-vIxiYcREJ+yKr8tRXG0gCdepcyuhCTkHwiTdG0qVTHSQvjO0pmllh1QAy93JYsE5\";s:11:\"js/solid.js\";s:71:\"sha384-Mf3ap7OwO+bjTkzM1RsrothLh38uKXvMWJ2TQPXGHqZcqfeI/cyCV+sfV0IDnBDq\";s:14:\"js/v4-shims.js\";s:71:\"sha384-G5fIV0dSzZ1nDQSh+B5u3TRX2UtPcd5UWyi2WS1fZIpJQ/JpJCdShAZ+wmILZ7Qd\";}s:3:\"pro\";a:18:{s:11:\"css/all.css\";s:71:\"sha384-zrnmn8R8KkWl12rAZFt4yKjxplaDaT7/EUkKm7AovijfrQItFWR7O/JJn4DAa/gx\";s:14:\"css/brands.css\";s:71:\"sha384-dd+UlUKIkNDLBFy2GZJRdMODxfdUjx/PanzxBbsXaRBkyjHzUeDX3mj6q53uL825\";s:15:\"css/duotone.css\";s:71:\"sha384-tHth4ugEmPOZTBSN4Hi2oYiHY6vpxIL8clasFZidKyR6Gm34+U6wx6A9eZHqTs2W\";s:19:\"css/fontawesome.css\";s:71:\"sha384-bQakmC+XBF+eCf93fSR/57kAeX91i0BDyXyj8My8/e/3Bcno5zhEGM02xNvpXV+2\";s:13:\"css/light.css\";s:71:\"sha384-yNf+8hATd/MoR/yfZG0nBBtjTfxZEM1rJos9BgjBaVuLcu711wcecTXBlfS91nfj\";s:15:\"css/regular.css\";s:71:\"sha384-H5RIR1XTDkiiLdUTNtbYvWKpNd2qsPBeGzpT5PD495znZL9JCA7119EMPNfCASw1\";s:13:\"css/solid.css\";s:71:\"sha384-LkNnzh6wVxsC0m3vcQ0T5L6csSYpgSYniG/AKJqWBsHT7PVpeO0QHkBw4dW1WfVu\";s:19:\"css/svg-with-js.css\";s:71:\"sha384-Mh++Qzb28x/RVEo6SYO87IyopQpwhzveyGIVg/AfbCLCEHUINYcCy24fkArgPFNc\";s:16:\"css/v4-shims.css\";s:71:\"sha384-A1hDH1BUL9ZdoEFsPEJY4LRFhu70QJj+RaY50Zoqd568i+ONa9LHCI+uoWDT0Lut\";s:9:\"js/all.js\";s:71:\"sha384-S++1cFhwpxbtRScUliTyprAMK33gMHbukurY4rNyt9CxIniGm6PfioUsQPoAITQJ\";s:12:\"js/brands.js\";s:71:\"sha384-NuqRsJYX4n2gSY6iMRHPZJxtpR40C8Lc/CV66yyeP1Vu5W2QSuVyPxMRpRIGihE+\";s:24:\"js/conflict-detection.js\";s:71:\"sha384-GLrjh9czojGY48hc8pYlf/3FRNEBu9OWvNAta7SMilmijx8+ciGGVZyD+VwV4FVP\";s:13:\"js/duotone.js\";s:71:\"sha384-uO8Ntsr5QW0kAl13UUiYRBDhu3foxlKI+jZjPBApRxFDX2tgO/GYiCXIYiGixOU5\";s:17:\"js/fontawesome.js\";s:71:\"sha384-FdPoPmNNPrerz9uF/cNSTyPmNCRf6b81QDEPk0JlXAaailLV3DT9yA8plMzyffNZ\";s:11:\"js/light.js\";s:71:\"sha384-zE0WHJZIhNaysmywEoQBm6THN0uK5wAyfKWoN6lJPGOlrMB8hf0Yt4/+bex9jZi2\";s:13:\"js/regular.js\";s:71:\"sha384-+3mzeMYwSyHPQfOsqYlwcE3OSC7aI/+DjyVLkBxqWP9O+JyoEtzidrSonbNKh1uy\";s:11:\"js/solid.js\";s:71:\"sha384-9I7yL3g1YvBlMZjZ0bWzPqP1m3Ic5t3EgFq/MqNm2r8FUxDVowt7dO4S1IFleLqZ\";s:14:\"js/v4-shims.js\";s:71:\"sha384-+Onl+wOd5BbZvaC8Q/mQUO3lZAqsUyD+xqhS57VlU7gIpqXBMcS9Tw94A9uMZRwX\";}}}s:6:\"5.12.0\";a:1:{s:3:\"sri\";a:2:{s:4:\"free\";a:14:{s:11:\"css/all.css\";s:71:\"sha384-REHJTs1r2ErKBuJB0fCK99gCYsVjwxHrSU0N7I1zl9vZbggVJXRMsv/sLlOAGb4M\";s:14:\"css/brands.css\";s:71:\"sha384-ouytoyjvzHVJu1m+KEtJ+2Ys+WFsXUlknprEuQAUs62XNn0shj9U2QeTwdJQmPR1\";s:19:\"css/fontawesome.css\";s:71:\"sha384-VoScp22LWX8GkkUAmdkkkj+rz+/r84lmCD6FALIryJxjwBSz6kE6oebSlamQx19e\";s:15:\"css/regular.css\";s:71:\"sha384-uUtN9GUP/RxDz5kko+qO6znqTP45OrABIxrrPhm8tax1s1huRxYCF7xDm+YunNDB\";s:13:\"css/solid.css\";s:71:\"sha384-9AfJF7pZ+RYk3wXpf8ge6fc3XhPaW3Xl57Qj/mSzPckn9Tu8zJ9qUipWq+/utX20\";s:19:\"css/svg-with-js.css\";s:71:\"sha384-e3I5IwYfes9z/NL+oosxhrbsLa9R8TaEY+Krsm07Fcz7q/R+8nswvn20QsrR8tsb\";s:16:\"css/v4-shims.css\";s:71:\"sha384-AL44/7DEVqkvY9j8IjGLGZgFmHAjuHa+2RIWKxDliMNIfSs9g14/BRpYwHrWQgz6\";s:9:\"js/all.js\";s:71:\"sha384-S+e0w/GqyDFzOU88KBBRbedIB4IMF55OzWmROqS6nlDcXlEaV8PcFi4DHZYfDk4Y\";s:12:\"js/brands.js\";s:71:\"sha384-NLUhiMQCi+OH3uxQu0Ems+2GYt6KJ89f90f4kZlK0BoDB63kHZqAICPl7nQHppJy\";s:24:\"js/conflict-detection.js\";s:71:\"sha384-PpGSW7GgJeChJyQc4XW1MIgUrRkMZudoPYOYAqGERZ+w8ammaWDBQvHM3Qp85XCV\";s:17:\"js/fontawesome.js\";s:71:\"sha384-aolToWrR1Hn3EFHDZtvTl0mtjuJJKLxSu/6b2tlr1g9dS+RLt6QVshweU+2e1v6V\";s:13:\"js/regular.js\";s:71:\"sha384-LCyqT0dvDekY5RP1UquYgUJARvp4tHVJocO5ICwoWSyVoSXrKpJrRrDYxj7+ukHO\";s:11:\"js/solid.js\";s:71:\"sha384-QsXs4eh2k/7mk3dvvNMhJJDjh8UQ++vWm4e7ULJ1UZTbOv3wQOzn+4ULg5iLW+Ph\";s:14:\"js/v4-shims.js\";s:71:\"sha384-NNQFVmb048Dmy0GH4ex0kGVcjxaPeY6JA1+ImM4Lsfr4HOD5CNMvCSoIfjeJJWX9\";}s:3:\"pro\";a:18:{s:11:\"css/all.css\";s:71:\"sha384-ekOryaXPbeCpWQNxMwSWVvQ0+1VrStoPJq54shlYhR8HzQgig1v5fas6YgOqLoKz\";s:14:\"css/brands.css\";s:71:\"sha384-z3CBOpMFSI4D+GXPvBsSW5vXhm4MEzWuC/CycHv+vsuzuztOzPpomZimFLeWNOgk\";s:15:\"css/duotone.css\";s:71:\"sha384-SnqCl1xqt09zXtBnCqJWrwMR2wbeWfxeAEB8e2QuoHdWNY1V5k0HrDi889EMHehh\";s:19:\"css/fontawesome.css\";s:71:\"sha384-CtsKDnRWWHDhjRZ5qgpCFCGpib2FU2SChFu0xRt81grgvXq1P+lbpROQoBLxlU4o\";s:13:\"css/light.css\";s:71:\"sha384-i+ivMdAc0+wLEnd+UdXLpYGNTbyn/0Rjz7EqmkqEOkfat5/2T+S63wn3WDk6h4Yh\";s:15:\"css/regular.css\";s:71:\"sha384-hCQzyeTkj8xmAEG5HT7Hx6t6DUkpTM34rr6FHL04J4AWtPtryU6EjsEDb+Gf17KD\";s:13:\"css/solid.css\";s:71:\"sha384-U9f9KTMQ1TBvUUFLpp6FgAy1M59lrF3q3rYTHPRVtT8OzY3xyyFUzKevJFYHEbhq\";s:19:\"css/svg-with-js.css\";s:71:\"sha384-CpTDS+d/m1rbSfuYxoVJXNCmq6ovovJAD1qgFE+K1Vf5N/n5Nt5yEoZq1UovRsXR\";s:16:\"css/v4-shims.css\";s:71:\"sha384-w49b1IAwJTEsYuPUW2QuSzpWNnhksbL+b/1q2eGObJ2CVV/HO5ubRS4jyMLB4cGs\";s:9:\"js/all.js\";s:71:\"sha384-t1m5KR+UJYhp5D1IG6cS5MuYjxDyh/lIkrB1YUpSPfGxgR4r7pA2xW+KoAfcE5IZ\";s:12:\"js/brands.js\";s:71:\"sha384-L2A2TL70Fg2x6gHvF0zTdYDo163eb/op5YdWXAr/rWfprmIjt6Ib+mdHv60yzNh2\";s:24:\"js/conflict-detection.js\";s:71:\"sha384-Tj7c3TfdpwGV2RqPFYgEbtUTrY+wJeAPDMsuUTvdrbMDWlP6gpUN6LNbXNf1C8BA\";s:13:\"js/duotone.js\";s:71:\"sha384-wAGnJyD+rhKARbazT5ohAk3YosShbJZGkuSG5lrKQOfQpG+7Q7o6ZmAvNqeJ7mFf\";s:17:\"js/fontawesome.js\";s:71:\"sha384-YdKgBdzRKP5F/uorpoOtlS1fRNfveZicpRkkQTn0pQdqGWQs6AMr7Jby3mA/G53+\";s:11:\"js/light.js\";s:71:\"sha384-VuS+lIluvKV9KjbEENEaZi4Ixed0QRYlUr6DI6+U1vj/rOfMP7wl84Z53+fMZXM5\";s:13:\"js/regular.js\";s:71:\"sha384-lS00sjHGt6pxefm2C7siOngllQ0WM3NoXEgwBb79KI3nh2iB5F/vkL7q09F/Z3tj\";s:11:\"js/solid.js\";s:71:\"sha384-ejND26kSb92qqj9cH70EMoR8jytCElYWiCB0v+JkXBz6+2ccBkNJkJZuMmrXY9L+\";s:14:\"js/v4-shims.js\";s:71:\"sha384-xCtgvUZSTFqAix3U6PrST0KLLMXPkzVPwXq3AbYkoKi81K4Ppryd5D8lUII1MeU+\";}}}s:6:\"5.12.1\";a:1:{s:3:\"sri\";a:2:{s:4:\"free\";a:14:{s:11:\"css/all.css\";s:71:\"sha384-v8BU367qNbs/aIZIxuivaU55N5GPF89WBerHoGA4QTcbUjYiLQtKdrfXnqAcXyTv\";s:14:\"css/brands.css\";s:71:\"sha384-+2AYGyI2bR10NExh4Lu/3NQmpNxck8EcRE7aATrMi9QQ9OAKQAQw1bcrlWkp0tdM\";s:19:\"css/fontawesome.css\";s:71:\"sha384-C1VkjHy10mh0wo7rz2xEDdqrfn5C+AJpaCpUyScFHzKb0mnAU3I//2RrdAE+LfQ6\";s:15:\"css/regular.css\";s:71:\"sha384-ZYhRqsbjqPY5BrYAS/7RLN0cbKU9T2MfB24Lb42Gyv2BHvW5sujo7gc5gXEReTq9\";s:13:\"css/solid.css\";s:71:\"sha384-yiUBjfJC2dVbhAEtVzEfH+R8ZQJ91V1C+Vtr1ZDTX+gUBZWrNyVrs/Nvc1fzi8GP\";s:19:\"css/svg-with-js.css\";s:71:\"sha384-XBFwYq8dzGeC/rGkEgveavwuEU0D16mIKfWeCX6deYzhMUaa8GX4CgA5c/YHP2xo\";s:16:\"css/v4-shims.css\";s:71:\"sha384-C8a18+Gvny8XkjAdfto/vjAUdpGuPtl1Ix/K2BgKhFaVO6w4onVVHiEaN9h9XsvX\";s:9:\"js/all.js\";s:71:\"sha384-ZbbbT1gw3joYkKRqh0kWyRp32UAvdqkpbLedQJSlnI8iLQcFVxaGyrOgOJiDQTTR\";s:12:\"js/brands.js\";s:71:\"sha384-KASsDRWwlErb8dTf+e5TxRXMnbXrVlbPbn1hS5B/yS4vNsF7mHHO+Gw1bBDhcyOt\";s:24:\"js/conflict-detection.js\";s:71:\"sha384-fHnSzPZE3xYvvXY0y51vln9J+Jd0eK4HughCkcA0NsBpmAGgU97n65RbDqUgnWf1\";s:17:\"js/fontawesome.js\";s:71:\"sha384-H4naMsxnUrIT8qihjWfwIKXi5biIYnqUsQ+vIJGZIKfA+7/O3FxgvMrdH77X+aID\";s:13:\"js/regular.js\";s:71:\"sha384-yUk5aOIIy62R2bRFbFq0+bo+ChWYs75cusETAJ1KYvEMRiEbQZmNU6u+PK60t536\";s:11:\"js/solid.js\";s:71:\"sha384-OSCcNUu98kEBVxq0vZaBr0wdmmd2ojuJwvWuSRKD0V10PWmvTetja8mxGfZm5PsV\";s:14:\"js/v4-shims.js\";s:71:\"sha384-/OZ1Lht4J1/FfstamqqFX1tF7PkDWDKbvat1bkWByC2KRJwGzm/H2bVuw8N4SD8y\";}s:3:\"pro\";a:18:{s:11:\"css/all.css\";s:71:\"sha384-TxKWSXbsweFt0o2WqfkfJRRNVaPdzXJ/YLqgStggBVRREXkwU7OKz+xXtqOU4u8+\";s:14:\"css/brands.css\";s:71:\"sha384-oRjDIXtfHT9YAjxHLAbf8PsJklTJN+dl7PmnAlOTYJhNAspi+/xgU4f12vi5xGzz\";s:15:\"css/duotone.css\";s:71:\"sha384-qrJ30c8jzW/3IOQRl4RddzzMsw3YIUWq5YhHW/8D8EJnS+5J13GpCGVEVI3ELc/W\";s:19:\"css/fontawesome.css\";s:71:\"sha384-k8n1hWo+b1vuRb6E3KATGC++lfNDnJTtJ6pS2BFF3tp/OshnO7uhzoOj/zJbGfwg\";s:13:\"css/light.css\";s:71:\"sha384-iUpVK/Fzq7teRSWAUmJsnlccV1OgC2fMpgreA8gxAm68UxbZPiMu3GP4IbKdKIUh\";s:15:\"css/regular.css\";s:71:\"sha384-QprxpKrx/cRYKXmWVkM97ert3857dCN6bbf6cRMELoa1+IYdsHoqweHwJksEfb0j\";s:13:\"css/solid.css\";s:71:\"sha384-uef1Ib3WhVuFbw7CZtyE+4IDCiKe1/bGU0vJ2naf8VQHKAeA67yU344LBk/H6nhx\";s:19:\"css/svg-with-js.css\";s:71:\"sha384-GucW5chDMZnyGPL1yaIe1GOHu/X7ixbmNjinYEIVr8a4Q4ewZjgipeXJhVi1lsrd\";s:16:\"css/v4-shims.css\";s:71:\"sha384-58YCAaXf5eAJ+1vna1eEUPuU+Ez6EhIPG77PXmK7QciGJsDNAHt2D8ke3vDio+Hz\";s:9:\"js/all.js\";s:71:\"sha384-RiuSF/PBDHssKXqYfH16Hw3famw7Xg29hNO7Lg636dZXUg42q2UtNLPsGfihOxT9\";s:12:\"js/brands.js\";s:71:\"sha384-yrJPiY+1PdmFAwIfz5kqOJt6qBz7DmhXnjLZWLQ9FopoqnhHIBdOQk6hafYoSquV\";s:24:\"js/conflict-detection.js\";s:71:\"sha384-bIg1sG9EStRr/9ohrrZJs0/uTEvUEEOO+NWuOAsIj3a1ZCHqvWUW6w975b4BSbqI\";s:13:\"js/duotone.js\";s:71:\"sha384-1EFXmt5rBEAK6aeEt/mZiYu0QhdFqz7oRm0Kc4xKyZ2IkrQYBc5F77PWXv3Jl4jY\";s:17:\"js/fontawesome.js\";s:71:\"sha384-P6BxA/EZmb6ypE1RKWOU6G8Ww/wI6w4R6uP6u9mkq3uaBehDQxHOLax3fLvDqkvt\";s:11:\"js/light.js\";s:71:\"sha384-08D3jBd9Co2q3IJB/9qnaukQ4ZhFWVLATRpNirJUQ+yQ/oUORDPfJ7Z2OWySf7/A\";s:13:\"js/regular.js\";s:71:\"sha384-zw99I3pdjnsTnY9W+2pz18pxMpOw12uAiVqYL4dZJOf0Lm8dio2v03Y0L2wzECI7\";s:11:\"js/solid.js\";s:71:\"sha384-Jr2b2cxzFQ84TxM+s7yh1jUu1f4FLCHQQDT3ZeBYZNQo+xvCw52PmB7GbC9yqSqA\";s:14:\"js/v4-shims.js\";s:71:\"sha384-sLzGuPzMXKEht2hBPBvC5ere217qvxFZ1AogesHLWdB5ojWBInm4wE4J+HV7PB6z\";}}}s:6:\"5.13.0\";a:1:{s:3:\"sri\";a:2:{s:4:\"free\";a:14:{s:11:\"css/all.css\";s:71:\"sha384-Bfad6CLCknfcloXFOyFnlgtENryhrpZCe29RTifKEixXQZ38WheV+i/6YWSzkz3V\";s:14:\"css/brands.css\";s:71:\"sha384-yZSrIKdp94pouX5Mo4J2MnZUIAuHlZhe3H2c4FRXeUcHvI2k0zNtPrBu8p3bjun5\";s:19:\"css/fontawesome.css\";s:71:\"sha384-syoT0d9IcMjfxtHzbJUlNIuL19vD9XQAdOzftC+llPALVSZdxUpVXE0niLOiw/mn\";s:15:\"css/regular.css\";s:71:\"sha384-rbtXN6sVGIr49U/9DEVUaY55JgfUhjDiDo3EC0wYxfjknaJamv0+cF3XvyaovFbC\";s:13:\"css/solid.css\";s:71:\"sha384-fZFUEa75TqnWs6kJuLABg1hDDArGv1sOKyoqc7RubztZ1lvSU7BS+rc5mwf1Is5a\";s:19:\"css/svg-with-js.css\";s:71:\"sha384-zMDYkJEHc2iapAk7o9HXGGD5N2+GGhOFQPDdNTYvlcc0gBA5r7r5f0aSYeCvm0qn\";s:16:\"css/v4-shims.css\";s:71:\"sha384-/7iOrVBege33/9vHFYEtviVcxjUsNCqyeMnlW/Ms+PH8uRdFkKFmqf9CbVAN0Qef\";s:9:\"js/all.js\";s:71:\"sha384-ujbKXb9V3HdK7jcWL6kHL1c+2Lj4MR4Gkjl7UtwpSHg/ClpViddK9TI7yU53frPN\";s:12:\"js/brands.js\";s:71:\"sha384-c4QRk2vaIFBj+66H3IMCeLBpgmeNbFV8HqOs55qMib1v/dM3JXdodyctPNa9hTyl\";s:24:\"js/conflict-detection.js\";s:71:\"sha384-sDmAMseQ6ZkNcFsP2c8NLyUmSqzUpn9PdoWqr/IP+mXZANSiuN9/09SKaEaMJ39l\";s:17:\"js/fontawesome.js\";s:71:\"sha384-/uNTArWag0fq+MOMnITxuc/uQTqh5NVc+1x0LO4xG//FFwUa8Xff8zrZXIpETdf9\";s:13:\"js/regular.js\";s:71:\"sha384-5FWE8IhPJgMtacw/tJgCapT/ag4ftBYmykFO3KUsozTQ9JKaQhH2oX7RZdCDyWxg\";s:11:\"js/solid.js\";s:71:\"sha384-dCJKkv4KgC8c4IlevkK2DC4yY+rQidnMOt91EmILDbdn8M6cdsjaUbf6awWnsCaZ\";s:14:\"js/v4-shims.js\";s:71:\"sha384-XrjUu+3vbvZoLzAa5lC50XIslajkadQ9kvvTTq0odZ+LCoNEGqomuCdORdHv6wZ6\";}s:3:\"pro\";a:18:{s:11:\"css/all.css\";s:71:\"sha384-IIED/eyOkM6ihtOiQsX2zizxFBphgnv1zbe1bKA+njdFzkr6cDNy16jfIKWu4FNH\";s:14:\"css/brands.css\";s:71:\"sha384-YJugi/aYht+lwnwrJEOZp+tAEQ+DxNy2WByHkJcz+0oxlJu8YMSeEwsvZubB8F/E\";s:15:\"css/duotone.css\";s:71:\"sha384-oRY9z8lvkaf2a1RyLPsz9ba5IbYiz1X/udoO3kZH3WM+gidZ+eELnojAqaBwvAmB\";s:19:\"css/fontawesome.css\";s:71:\"sha384-tSxOKkJ+YPQOZg1RZd01upxL2FeeFVkHtkL0+04oWgcm9jnvH+EQNLxhpaNYblG2\";s:13:\"css/light.css\";s:71:\"sha384-HLeT9I9TL5c2ujLOZhv6z58D+FdF5R//KTyhCOiYBp1ZX9ZEdaVKPxZmzPx/tMWY\";s:15:\"css/regular.css\";s:71:\"sha384-BPtrG4jSUTPogkW6mA5hAGjvJapJnnMa8tKHQOR9MnrINanXN/IGDInK/SngoAFb\";s:13:\"css/solid.css\";s:71:\"sha384-9mSry5MRUHIfL5zghm8hV6FRKJIMfpofq3NWCyo+Kko5c16y0um8WfF5lB2EGIHJ\";s:19:\"css/svg-with-js.css\";s:71:\"sha384-9WuNcdGCglpaefA1oUecTWMQL/+LmrCJiJJM+pDHX+82lfkj1CKUYLc6DZJQ+1/s\";s:16:\"css/v4-shims.css\";s:71:\"sha384-/WH+7sthk7TduL5PHd16Jew3Hd7eKInsAclAq/MoZWeyR4bMgUj12MSN79PtHEjc\";s:9:\"js/all.js\";s:71:\"sha384-Z0e6PSokCQP510gixgZGPs+obVv8eogS/eS2+/7lLSMOfmLnWBgPQppPispQXGUM\";s:12:\"js/brands.js\";s:71:\"sha384-T90KA1rFqB4OFs7EjJ9EGjXJkOXPhELY4hLaFVnB0LaTNUFGn3QyzNJZh307KVVc\";s:24:\"js/conflict-detection.js\";s:71:\"sha384-8g5Au/J6e7pPZjkCDisd8Jd9psYpdlosRUbac9lOdXAADXrNgc20T1Xc24eIy3I7\";s:13:\"js/duotone.js\";s:71:\"sha384-dkbWEvgccxMcr38iB9BWNiExUnolXcLY54hGUJkFUqThvx5XsvcEervgRgRWz5fl\";s:17:\"js/fontawesome.js\";s:71:\"sha384-bU46hq+Od2wfS4XGCT7Ab5XmYYYY8LURSiGsr4YLIrUWBPeImW/B+OkFEcHhOzuF\";s:11:\"js/light.js\";s:71:\"sha384-ipYj2yPBG2ozjlrUCd6AheWkvEpqcCQNY7yxX8wDoIJc5Lr1zVXAE4sKB3hVfjfT\";s:13:\"js/regular.js\";s:71:\"sha384-5CC2/v59nxbyM1595fgM84ERvZXK5WbpCnB9/dd1gTJc2LyitbiKhULkaiXZNj6V\";s:11:\"js/solid.js\";s:71:\"sha384-Imz7xdjp2/vTu6azMFMusPHfSLwcYmj5ZWzOXv3esrLD8IDP9AMA28bwpJZwaR1g\";s:14:\"js/v4-shims.js\";s:71:\"sha384-ZbnNry/TJ2Ald71QRyefS1elxArPz0oOfiNFxpfSO0Yb5lnnftVJMFbENL3j0hCf\";}}}s:6:\"5.13.1\";a:1:{s:3:\"sri\";a:2:{s:4:\"free\";a:14:{s:11:\"css/all.css\";s:71:\"sha384-xxzQGERXS00kBmZW/6qxqJPyxW3UR0BPsL4c8ILaIWXva5kFi7TxkIIaMiKtqV1Q\";s:14:\"css/brands.css\";s:71:\"sha384-pmyS4Hp0pc0tA0poF+AKYeURgyIgYLt12rD/6gLC98rTImbSYIe75vT2/3jK4zIh\";s:19:\"css/fontawesome.css\";s:71:\"sha384-O6duc3QftgMWW3awKiGYswymy288kVFZgGWC/4YCl48Y0codWJRgs8DA0N4dX/zx\";s:15:\"css/regular.css\";s:71:\"sha384-aDoEE1PtWF0YZqVk7el3O+QPApPko7v9/7VYyuzjhHWwJ3cmn0m7xE3/FkHSpPNT\";s:13:\"css/solid.css\";s:71:\"sha384-wG7JbYjXVhle8f17qIp6KJaO/5PsPzOrT76RgvdRGLHj0yXZZ3jg98yb0GNRv1+M\";s:19:\"css/svg-with-js.css\";s:71:\"sha384-CFCaxC5Lp+1aYrNgJjxz8bNrgnzVPnSxma3pb+m90jym25B+q2vYd3JfLQR00SNn\";s:16:\"css/v4-shims.css\";s:71:\"sha384-KkCLkpBvvcSnFQn3PbNkSgmwKGj7ln8pQe/6BOAE0i+/fU9QYEx5CtwduPRyTNob\";s:9:\"js/all.js\";s:71:\"sha384-heKROmDHlJdBb+n64p+i+wLplNYUZPaZmp2HZ4J6KCqzmd33FJ8QClrOV3IdHZm5\";s:12:\"js/brands.js\";s:71:\"sha384-Ay9V1h0l5sywM7gJ5YvOc05QytfKqZAElRgqU5kPcIIUAUBqLOYwu9gnW6p5t/FN\";s:24:\"js/conflict-detection.js\";s:71:\"sha384-xDU4X/EdF/mFSa0TktUKBTHd/td1gTc+xWNLKdYcvrAUZExjiWhDnrLM4lGkqzeH\";s:17:\"js/fontawesome.js\";s:71:\"sha384-4NJBLvz0eHSgtSVDb+VOLh4cxmVluIBqCaNw97NvJAo18r+qV9pze1g4YnhB/X6Y\";s:13:\"js/regular.js\";s:71:\"sha384-omrmE/gvA72r1j409JaSn3V6w5f7Mx7GZpjB8xqS4nLwGpT7Zj2obev62Y9QcCZr\";s:11:\"js/solid.js\";s:71:\"sha384-81RFXCmeESYg4G/uFGo6Tu/eeK3klw0oKItW3nPhi2BuryJcE4lkOkwWsW6jzoNz\";s:14:\"js/v4-shims.js\";s:71:\"sha384-CtI1i5e/58ZMUgZkT75wgboNZAbEXBNToPY17SfEmfyKvGuJW7DP418LdXkjI++F\";}s:3:\"pro\";a:18:{s:11:\"css/all.css\";s:71:\"sha384-B9BoFFAuBaCfqw6lxWBZrhg/z4NkwqdBci+E+Sc2XlK/Rz25RYn8Fetb+Aw5irxa\";s:14:\"css/brands.css\";s:71:\"sha384-e0CAD3LQqbxBCI1WW9pe35Vr+ogbg41axplGx9yY6Woaw6h+zHnB7v4sVuZjHDnK\";s:15:\"css/duotone.css\";s:71:\"sha384-jZslG/z2CMKpawOGi2BzAUH7QBRu5umkFNeP0Op1SZksaT8WGx5MuZazFfE/XR9h\";s:19:\"css/fontawesome.css\";s:71:\"sha384-eKHMjnfl7jrOmk1Fw4dpPDTetBHFOho47C/omrsmBVN2ii45aI8s97OUFVtGg1CR\";s:13:\"css/light.css\";s:71:\"sha384-N45G0WPo8CMcXE4y+hOnuWLp2TJxNbhk/YbM4GQEymB5fPGzOXVH+er/7Z15oBjl\";s:15:\"css/regular.css\";s:71:\"sha384-h1Eirl+AlKkBdUtIMW1hm36KarFrx3iEfjcnTYKeeUdZTOsT8hLDc0lnlNG2jPn5\";s:13:\"css/solid.css\";s:71:\"sha384-F78AVlY1oEzT5bXRSwVzraqWTcbpglP7ILEEE3rmu1gIfm/TUo5gpdN4YVfvp7Xj\";s:19:\"css/svg-with-js.css\";s:71:\"sha384-ZFFudtU+0nvUFj6ogUZSspaq7QhLb6JJX6jSIu5UiZAbZMhnBJfNwZahptQ4MQ/i\";s:16:\"css/v4-shims.css\";s:71:\"sha384-He820UjOck3Qu+A0dH2+CmHOeYAYN0kqRW3s6hHC/Jzu8IXSeZF2pn+lgVpz4KuJ\";s:9:\"js/all.js\";s:71:\"sha384-RFburpZVVirucdjarLLIoBiT+LY5YuPB8XboZYWRuWpElr46csH7Ia2nsHfkfBZF\";s:12:\"js/brands.js\";s:71:\"sha384-bM9U2rf0yP/4jsztQkRVwJnqtVcLJzwAMaVgd4sfQYxxm0ru+TieQ4ZaxKW4vsyo\";s:24:\"js/conflict-detection.js\";s:71:\"sha384-DuzRvwD99f8XqXEPIxkpB1F+Ik6c2AZMj6gWcEDwFUCAgtVSelRH9Dos4SMxw/+i\";s:13:\"js/duotone.js\";s:71:\"sha384-uABtWM9HIHso7RIYTkd4w0zB8IgL/hTcPNyYTVA62Qw0lK3umduLb+vIYtXCd6W8\";s:17:\"js/fontawesome.js\";s:71:\"sha384-Ta21ZAqXVyXVqLCnHENnO2ULnrJQzNdGFAbMR1nbZOSV7PcTcZVIWZJCCcRYy2Q4\";s:11:\"js/light.js\";s:71:\"sha384-+8Y6x3Roex77ZBdaQqtTN2QKu/TIOdzoswRYxryfW9ELmUxMTYLgzdz5nlA/3ndC\";s:13:\"js/regular.js\";s:71:\"sha384-sSHWg/dKYjGSJU6C17C2qGImASfPcJqy2BaW/iTzifkPJmzprIMH1tl4/tIbWq8M\";s:11:\"js/solid.js\";s:71:\"sha384-VBOdkc1roPM6EIGTBi2yraUNs04SZ9+TsLzF0vIecIKYf6oXYxAYgjzMpH8UdZYh\";s:14:\"js/v4-shims.js\";s:71:\"sha384-iwdWtJevtQK06+Bbqeb7Oo+osfnPQWsHQWR+5SeND0soWVUGjfyRC2XdttrYI2j+\";}}}s:6:\"5.14.0\";a:1:{s:3:\"sri\";a:2:{s:4:\"free\";a:14:{s:11:\"css/all.css\";s:71:\"sha384-HzLeBuhoNPvSl5KYnjx0BT+WB0QEEqLprO+NBkkk5gbc67FTaL7XIGa2w1L0Xbgc\";s:14:\"css/brands.css\";s:71:\"sha384-MiOGyNsVTeSVUjE9q/52dpdZjrr7yQAjVRUs23Bir5NhrTq0YA0rny4u/qe4dxNj\";s:19:\"css/fontawesome.css\";s:71:\"sha384-PRy/NDAXVTUcXlWA3voA+JO/UMtzWgsYuwMxjuu6DfFPgzJpciUiPwgsvp48fl3p\";s:15:\"css/regular.css\";s:71:\"sha384-e46AbGhCSICtPh8xpc35ZioOrHg2PGsH1Bpy/vyr9AhEMVhttzxc+2GSMSP+Y60P\";s:13:\"css/solid.css\";s:71:\"sha384-TN9eFVoW87zV3Q7PfVXNZFuCwsmMwkuOTOUsyESfMS9uwDTf7yrxXH78rsXT3xf0\";s:19:\"css/svg-with-js.css\";s:71:\"sha384-PB7dcmSOBXciTYYzTvxdvcCEy4k3woMwwVAtsIA3LUQyKW21C7UL9EcGtd6IRNLc\";s:16:\"css/v4-shims.css\";s:71:\"sha384-9aKO2QU3KETrRCCXFbhLK16iRd15nC+OYEmpVb54jY8/CEXz/GVRsnM73wcbYw+m\";s:9:\"js/all.js\";s:71:\"sha384-3Nqiqht3ZZEO8FKj7GR1upiI385J92VwWNLj+FqHxtLYxd9l+WYpeqSOrLh0T12c\";s:12:\"js/brands.js\";s:71:\"sha384-V7gsTxvUZaeC6NAsCa24o3WvPOXwSsUM8/SBgy+fxlzWL3xEGXHsAv2E3UO5zKcZ\";s:24:\"js/conflict-detection.js\";s:71:\"sha384-uMs7U5rgbKM9mJ/p05oZ+z+8uK1lwLhl96KWxP5odG0wm26IfhzgKQ0ktZnc2PYP\";s:17:\"js/fontawesome.js\";s:71:\"sha384-DNo9bmYZCHLtp0n0l0XA2UsoRHX1nx38aRP+p9yoP5A8kVTfeWG3aySMOq5FD/v3\";s:13:\"js/regular.js\";s:71:\"sha384-zHXcIX0meH+eFgqCa9QdLtYfc+0p7KcF4fVB+gMVFjV6rzYv+LxSIuF5i2eGVDlt\";s:11:\"js/solid.js\";s:71:\"sha384-4RG3cEPIlCBy6VNzxM9ZoEwZW+65ed5JDOfaJAnQqwV6ha/jZDJTXjFmvjFM4bk4\";s:14:\"js/v4-shims.js\";s:71:\"sha384-g+ezV6Pq6549QkJkkz2wmW/wpazNaliTdSg/HX4bKsQ7S8cfyMOiyAfzfWPtlVR9\";}s:3:\"pro\";a:18:{s:11:\"css/all.css\";s:71:\"sha384-VhBcF/php0Z/P5ZxlxaEx1GwqTQVIBu4G4giRWxTKOCjTxsPFETUDdVL5B6vYvOt\";s:14:\"css/brands.css\";s:71:\"sha384-DkuHshSFBB5Ozmaoq36ICABPCsIIbamipzuH7NO0sxDIDrJloLD43yBzNLI3gxS6\";s:15:\"css/duotone.css\";s:71:\"sha384-QRFqAT1IRNAzMGALiXfanFtQEBoLDPPh1vnrMbxHa+UeJkCTHO3TpYXHQ+GK1pKg\";s:19:\"css/fontawesome.css\";s:71:\"sha384-CAxg0L30Vie2vI3AniQ4UA+pSswoJmr/MK5Dl5DP9YlE1nzJn4z5updw5S3i/Nsn\";s:13:\"css/light.css\";s:71:\"sha384-LmKkPHDqucxgmrtLKWrMGZc5nnHQYAdFkSzMtl1OcvTZn4pebmVziSZPtp27MA6u\";s:15:\"css/regular.css\";s:71:\"sha384-izRgjQadEFrlAsdFZjlQ4v6Ff2E0R02RwYZwdL8lrt398rQmLNOFYYNk9qQoqjDP\";s:13:\"css/solid.css\";s:71:\"sha384-qJugmlTDyF5CNuv00JB+04BCmCVi5C2ZZhsIVMX0wxWr7U3ZuOsmO+nOLtoTxeWG\";s:19:\"css/svg-with-js.css\";s:71:\"sha384-EjLtrKO3gucE2cOzLw8A5aJpQ9oXEJTxlTkbLrrL4JR7xGLPI8B1fyK3ygNxeLxq\";s:16:\"css/v4-shims.css\";s:71:\"sha384-oydBLEZZlqJqf0OWwXyyj91mRqrL25j/VMAvTl0BA0iIMoJGDTSksMDnqkl+TWLA\";s:9:\"js/all.js\";s:71:\"sha384-8nFttujfhbCh3CZJ34J+BtLPrg9cGflbku3ZQUTUewA7mqA8TG5Uip4fzQRbERs0\";s:12:\"js/brands.js\";s:71:\"sha384-9112PiGcvkxlUNBecZ0rk0c6zEGUKlR/enlHdLy0Xu42kfHEbIKsFVBsmEn+6cEt\";s:24:\"js/conflict-detection.js\";s:71:\"sha384-9rbnCwKDHzpLDHYvYRqRWcyLZc3anAu+oe1dRxPOk7RcqBzjAv7CYTvAQJGkUNXS\";s:13:\"js/duotone.js\";s:71:\"sha384-HFlrQxjzjMUAiYmFuUKrkp90VMEpD/dpb8unLEWH5QXnUs2xHw5zd8aiztrPBLbT\";s:17:\"js/fontawesome.js\";s:71:\"sha384-XULY2W1C7bGq9gruRvsk8Zyhq33b1/TgBBKzJ+8dzWkJm0kObgcry2qU+Qf+HOZw\";s:11:\"js/light.js\";s:71:\"sha384-a8Ul+Nmi3glFYXvks3ShdxGHyk09LsZ3+TIjDr2vj9lMx2F29TqTJm7U0EutxFdH\";s:13:\"js/regular.js\";s:71:\"sha384-B8V2/SCNt/naDJB0LkeljUBBYYhGFm/rUVnNsFYlutzbeSTTzVEqxRo8SN3tuHSl\";s:11:\"js/solid.js\";s:71:\"sha384-CjNAVlgtLE9uQuDgWphA+b5vXjcy5spSSezhnbGWUZl0VDkAxzeU8elFOdDs4qaU\";s:14:\"js/v4-shims.js\";s:71:\"sha384-kN/8Lc85No/I30OsF5JSmBzc0W1W0AvgBJGA1eEtVSfaiIeg8oPTJ8CerHqDREVn\";}}}s:6:\"5.15.1\";a:1:{s:3:\"sri\";a:2:{s:4:\"free\";a:14:{s:11:\"css/all.css\";s:71:\"sha384-vp86vTRFVJgpjF9jiIGPEEqYqlDwgyBgEF109VFjmqGmIY/Y4HV4d3Gp2irVfcrp\";s:14:\"css/brands.css\";s:71:\"sha384-/feuykTegPRR7MxelAQ+2VUMibQwKyO6okSsWiblZAJhUSTF9QAVR0QLk6YwNURa\";s:19:\"css/fontawesome.css\";s:71:\"sha384-ijEtygNrZDKunAWYDdV3wAZWvTHSrGhdUfImfngIba35nhQ03lSNgfTJAKaGFjk2\";s:15:\"css/regular.css\";s:71:\"sha384-APzfePYec2VC7jyJSpgbPrqGZ365g49SgeW+7abV1GaUnDwW7dQIYFc+EuAuIx0c\";s:13:\"css/solid.css\";s:71:\"sha384-yo370P8tRI3EbMVcDU+ziwsS/s62yNv3tgdMqDSsRSILohhnOrDNl142Df8wuHA+\";s:19:\"css/svg-with-js.css\";s:71:\"sha384-wvKQCF3aHjf73vG90/oO/tFarRthMbxfbW1DeHM+eJJYWmiFLJ0DyCzE1aSFHazB\";s:16:\"css/v4-shims.css\";s:71:\"sha384-WCuYjm/u5NsK4s/NfnJeHuMj6zzN2HFyjhBu/SnZJj7eZ6+ds4zqIM3wYgL59Clf\";s:9:\"js/all.js\";s:71:\"sha384-9/D4ECZvKMVEJ9Bhr3ZnUAF+Ahlagp1cyPC7h5yDlZdXs4DQ/vRftzfd+2uFUuqS\";s:12:\"js/brands.js\";s:71:\"sha384-GUtlu2Qit8cdodM5DbKnbDIWFJA8nWCVEwETZXY2xvKV1TFLtD/AL+bCOsPyh05M\";s:24:\"js/conflict-detection.js\";s:71:\"sha384-sefi04js7ZytQojQsuOy097ewgefakplyIWjkCI75Wz1IxHB/9NAAinmgLG3uDt/\";s:17:\"js/fontawesome.js\";s:71:\"sha384-v0OPwyxrMWxEgAVlmUqvjeEr48Eh/SOZ2DRtVYJCx1ZNDfWBfNMWUjwUwBCJgfO4\";s:13:\"js/regular.js\";s:71:\"sha384-i9Vys31h0tPXNeAe12HKp4zkBi0S3LAH4OGYRSWKSrdnPYTS4pQgCc/HakrenJBh\";s:11:\"js/solid.js\";s:71:\"sha384-oKbh94nlFq571cjny1jaIBlQwzTJW4KYExGYjslYSoG/J/w68zUI+KHPRveXB6EY\";s:14:\"js/v4-shims.js\";s:71:\"sha384-IEHK9LKBXJdi7Y/gik7R6VYPuwx8hMiwQuaOh7BQUQ9rKmWr2N04KYFdmt5Xi0qG\";}s:3:\"pro\";a:18:{s:11:\"css/all.css\";s:71:\"sha384-9ZfPnbegQSumzaE7mks2IYgHoayLtuto3AS6ieArECeaR8nCfliJVuLh/GaQ1gyM\";s:14:\"css/brands.css\";s:71:\"sha384-YgEKO0tR8hhGPO9Dv3YGK+GstKp44//D72dbOA0oTX+7myWawnkifErid6FIpP9W\";s:15:\"css/duotone.css\";s:71:\"sha384-bXXzjCj9fg9FACS6tpRWhBsNqQ7j7swH/U3MKTJrZuRbF3ktmj9g/lie7L3CNSTd\";s:19:\"css/fontawesome.css\";s:71:\"sha384-RFOcGND+1HYm6OyEAF5WKkoZnwv/cXQpCX6KduKC1vAKAoohkNYWNPhkx4fsH9Fn\";s:13:\"css/light.css\";s:71:\"sha384-yWmEVLm9kM0L2w+XPDQQUv6tARNHEYPPwdDplMiVced5iOVoiUIToRveagZ56DVa\";s:15:\"css/regular.css\";s:71:\"sha384-pvlGSUiPzTZa8YsqGs23BENlf3D4ddnLRdl2q5R1ekGw7nnWJZ0AK74DUr0mzLTH\";s:13:\"css/solid.css\";s:71:\"sha384-LRz1HmzqffP7wO7piC0QSObi89cOdpFP7qMIx/UZ+qK2TdoDBdl+LidxFVnYu23p\";s:19:\"css/svg-with-js.css\";s:71:\"sha384-mFHdQxElacASluqApikB6+SUGnAOWouxc19KqW5eZGoZ+b4A/Cj6pMUCGn6g1uZ+\";s:16:\"css/v4-shims.css\";s:71:\"sha384-r35xeRHwDKxzFjeApFdZuwo9D/nV4p0BPL4BxIVmsyKQGWWBaxG59Gr/9x7IfVog\";s:9:\"js/all.js\";s:71:\"sha384-Vipr9QSlUeD/qnhkau6GBnZnUmVkbaRZ0PgB1KjvWa1UoNBKnuzg1TgbJJn2a12T\";s:12:\"js/brands.js\";s:71:\"sha384-rdZ4AVYAMfVJRjRJzozK2JY6LOdLxKdUkHuegulAuMdllLH7M9AllgBLuYmBe+zm\";s:24:\"js/conflict-detection.js\";s:71:\"sha384-qgGl/EYa0JYIveAO7M9W/hshMqlMyo0G/QHio/5D5r1ZbZxAoqcTTReeL4gRrL4m\";s:13:\"js/duotone.js\";s:71:\"sha384-4qqOVq7ZvSMSgZij30G8q1kOs7pBiAWrSVKqWRv32l99D/qqXlMpFQK8wLSfeQEZ\";s:17:\"js/fontawesome.js\";s:71:\"sha384-whiLNjPVOuBfSNjL/tLtRWANHP97vxmZ5OoUK496MOTzH07UdmxDLsnSBgvvjLNf\";s:11:\"js/light.js\";s:71:\"sha384-AEYbWLXnCyDCeopMCsF+A4qHLchpzJ4wMnZiE74Bcp6qLWwXIJCWY0ASqAf0qYrf\";s:13:\"js/regular.js\";s:71:\"sha384-wM50oZlS/21q6M6tlw0EWan+0yFpuRC/PrPeimdGxjCjfx45F0x3NZggS5uFp5uv\";s:11:\"js/solid.js\";s:71:\"sha384-PezVa2U3+0USHwNA7bgvfA+uSS1IPVdTat51a5IgvNGHUJjcvsj+TheZ6X30JybM\";s:14:\"js/v4-shims.js\";s:71:\"sha384-MafE1kr6MZ6PhxNeH0/kvg7f5ramk1tE+y/dBi4C6WgxaKU4mNGRxPNxcEZ5maAx\";}}}s:6:\"5.15.2\";a:1:{s:3:\"sri\";a:2:{s:4:\"free\";a:14:{s:11:\"css/all.css\";s:71:\"sha384-vSIIfh2YWi9wW0r9iZe7RJPrKwp6bG+s9QZMoITbCckVJqGCCRhc+ccxNcdpHuYu\";s:14:\"css/brands.css\";s:71:\"sha384-RTi1U6SIW2G3kUi5NslKQjA34F8CsQCVduJO50jqtxhR2KY++LR7KZS2886EwXrk\";s:19:\"css/fontawesome.css\";s:71:\"sha384-Hx1dya9ptAdKu2hLNR5C2Cwgm+wCfwD0VMGE6jk5OUxxa9I58YfxOCwEtRog+3wk\";s:15:\"css/regular.css\";s:71:\"sha384-GMkIgTgosuQEt2PEwBHI7MMRsrQplN2sT/7bzPOIxG+Hn37iTlZXFb37m6uE+iHj\";s:13:\"css/solid.css\";s:71:\"sha384-6qO6EOFIDfvv6uzAzozX/BvMu/qkIIHxWYOVMjpVjX+NtPuNyd3YiOEflKIIV2ka\";s:19:\"css/svg-with-js.css\";s:71:\"sha384-6iJDq4HKs21oqDV0KkGhh5uve3aJBXwTX0ACa8Fp5Sx7fcZtIumvT+GSzqSEsceV\";s:16:\"css/v4-shims.css\";s:71:\"sha384-1CjXmylX8++C7CVZORGA9EwcbYDfZV2D4Kl1pTm3hp2I/usHDafIrgBJNuRTDQ4f\";s:9:\"js/all.js\";s:71:\"sha384-vuFJ2JiSdUpXLKGK+tDteQZBqNlMwAjhZ3TvPaDfN9QmbPb7Q8qUpbSNapQev3YF\";s:12:\"js/brands.js\";s:71:\"sha384-CFHIjJ6e4s9fugmZkgMS+xAN9t3pMb8WzxVLSL61rvRx/NfBorLHHVF+7/xxhpll\";s:24:\"js/conflict-detection.js\";s:71:\"sha384-SY45zU2Pf71PV9B/kvEgK9jzpEbe14MiprEwrg1VcbXdBcjXbNTPwoXfp6A+ntJG\";s:17:\"js/fontawesome.js\";s:71:\"sha384-PIP1h/CVyNo59Pr+vM6s86Zkm82HEv890eKMTpB5eqJZFZQwZuMwf73Sy5SzVrK8\";s:13:\"js/regular.js\";s:71:\"sha384-ghS5pTGfZccQRYN4cnBH4kBWGY/ePY4j4VKfFliJmM6ZYomFMIo462PxXa2RGqWR\";s:11:\"js/solid.js\";s:71:\"sha384-rKdfCFMYG2O/K+5WQDPmcKngEtAvqyIxYkazidXjp48yEiCcl//F6lxZ9cZ8MhM+\";s:14:\"js/v4-shims.js\";s:71:\"sha384-VxtQ3wW8qt0QTDld0MGEB9IMEOyCOtvOXC7I0JU3T01V6NR+C6MP5HxC+tGNkhdV\";}s:3:\"pro\";a:18:{s:11:\"css/all.css\";s:71:\"sha384-yJpxAFV0Ip/w63YkZfDWDTU6re/Oc3ZiVqMa97pi8uPt92y0wzeK3UFM2yQRhEom\";s:14:\"css/brands.css\";s:71:\"sha384-rsNdgxJGzM0RuTegPn4p1eHXocyvt3ZbnTifPXmOewdRLCOqzP22d/M+WxbRiwSN\";s:15:\"css/duotone.css\";s:71:\"sha384-E4/odus3ylondNThYB3uIGSZpewOhvhh0QD8x2p7S0ot6p/JcbVd//lr7cMEUIBc\";s:19:\"css/fontawesome.css\";s:71:\"sha384-RZW433tEsVW3OLEaC2n31z0V1DmyQdjrwNKMRLBjyZQ7r4RU0PxYhkvjKCsZMCO3\";s:13:\"css/light.css\";s:71:\"sha384-oJib4m7hS3ZSiUXjFvObb+ZFf2AGOBOUX+MFk3CuBZwz8LQSe3d3EgZHHJBkJGXT\";s:15:\"css/regular.css\";s:71:\"sha384-ffFT2jJN64hGajTqkZsA2KE2SDBO2Gcmb0wr10fRLpKNDWYcl3M3KsLuzQHg5QAh\";s:13:\"css/solid.css\";s:71:\"sha384-PfqDBw8PmSrNcYq7F4SvYoZekYP2x84SYAyG41rncZdySTjSS9eWEE7ynvJRElQY\";s:19:\"css/svg-with-js.css\";s:71:\"sha384-MeQL8xjLhct6yZa8AXEQOD0yWeV925K9YrlcgspMC+IdCbI3q1b8B7VX8NS6N3lS\";s:16:\"css/v4-shims.css\";s:71:\"sha384-vfegZgYJmcP2K/VrhAwtTtU1OgvF83Y8zoQ524YvQFIGowI3tr8C6wvpWUsSLUZA\";s:9:\"js/all.js\";s:71:\"sha384-ZbBwfM248+qoG5GJvuV2PmK9gvlW3dXpgC/jeIn45pWWroL3v+5K1ZAth+gs165y\";s:12:\"js/brands.js\";s:71:\"sha384-K53M8ZRlon+Wd3MVzcIEU1NZXEh4h98NnLM8WZ/7E98pbg0J1q17tKGgr45c5qCs\";s:24:\"js/conflict-detection.js\";s:71:\"sha384-whZrbu3lLf9+EK7QxSHsdpAWM0drsjefOTFm3zfcUhZSInAwLaIrdOd2Qd8MKDMW\";s:13:\"js/duotone.js\";s:71:\"sha384-nTarcZNLMStpbHz1QpoaqVDyKoUrzncdV+zZ040hkinCtVKl8gTXSiyUM4h0K48M\";s:17:\"js/fontawesome.js\";s:71:\"sha384-dy2wSTcBbCGnFNjThZw/FfuNbPeoGoOSWgX7HmvH3PKcJ0Se3w3CZnalamfRuLpE\";s:11:\"js/light.js\";s:71:\"sha384-gL1IbgNyLHskDPg9uinrWBfxmDsla3neHzcEAIjbzQTx6W69Jvs9S/fRBXUt6FbW\";s:13:\"js/regular.js\";s:71:\"sha384-9JMXUFvwOD5rSQZs74FEC4SsybjccRbbwK7iiQiriFSd4sPr7pB7/ghp1KZH7tCr\";s:11:\"js/solid.js\";s:71:\"sha384-oVJ5+ellTPbci7MOrfl59xerw0M0RnQEGG0jx/JlNyOpkvrXHaZUCfKJUs08+gVi\";s:14:\"js/v4-shims.js\";s:71:\"sha384-ht5Q/pi1VU6byhn9MctthIZ2kSBqK5GhhR9gnTzPM+BJlAyCymRS3xx74c9twxdh\";}}}s:6:\"5.15.3\";a:1:{s:3:\"sri\";a:2:{s:4:\"free\";a:14:{s:11:\"css/all.css\";s:71:\"sha384-SZXxX4whJ79/gErwcOYf+zWLeJdY/qpuqC4cAa9rOGUstPomtqpuNWT9wdPEn2fk\";s:14:\"css/brands.css\";s:71:\"sha384-V5Z1KgRRJyY878qCx7+zUeTDm0FgjoYrbmSortFqRPGz+Ue6XDe4uIiMqB3tB/wd\";s:19:\"css/fontawesome.css\";s:71:\"sha384-wESLQ85D6gbsF459vf1CiZ2+rr+CsxRY0RpiF1tLlQpDnAgg6rwdsUF1+Ics2bni\";s:15:\"css/regular.css\";s:71:\"sha384-Dn9L7vwedvmbdep+J8U5Zbrp+ES46dt8pm8ZMUu9iOR9isC4+Y/KP1h4StrDd/F+\";s:13:\"css/solid.css\";s:71:\"sha384-LA8Ug4T/nhVkyhrSmSirsoAo9iDrBk8E7U80aSPeD+w3vO8PzOJIS6agGcbIwwX0\";s:19:\"css/svg-with-js.css\";s:71:\"sha384-C4KLoR3asMHYArL0nLQXEaFZIFfRMiV0Ul0DvsMfSMZ+YLJwFu0Rpxix+EZwqxOy\";s:16:\"css/v4-shims.css\";s:71:\"sha384-C2B+KlPW+WkR0Ld9loR1x3cXp7asA0iGVodhCoJ4hwrWm/d9qKS59BGisq+2Y0/D\";s:9:\"js/all.js\";s:71:\"sha384-haqrlim99xjfMxRP6EWtafs0sB1WKcMdynwZleuUSwJR0mDeRYbhtY+KPMr+JL6f\";s:12:\"js/brands.js\";s:71:\"sha384-oEE/PrsvhwsuT1MjC4sgnz39CQ84HoPt8jwH0RLyJDdDOKulN+UEbm9IgJW0aTu5\";s:24:\"js/conflict-detection.js\";s:71:\"sha384-OwOgf6Oss8Oh+cy6VnIGLlcyMhaaOPN+3gyLv2UyvjybuPrTNNgJljGYEAqSglUM\";s:17:\"js/fontawesome.js\";s:71:\"sha384-hD97VKS04Rv8VYShf782apVZOVP6bVH/ubzrWXIIbKOwnD6gsDIcB29K03FL1A9J\";s:13:\"js/regular.js\";s:71:\"sha384-bPKzNk+f6IzEi89cU+jf3bwWzJQqo+U1/QYUijuD7XD9WO3MSrrAVVEglIOCo6VD\";s:11:\"js/solid.js\";s:71:\"sha384-9xA4r2/2cctd+IZZKLvI1hmeHZ5Yp8xXkS6J8inDtdyZCqhEHVcTGmSUCbNED5Ae\";s:14:\"js/v4-shims.js\";s:71:\"sha384-oJX16kNznlRQV8hvYpOXlQKGc8xQj+HgmxViFoFiQgx0jZ4QKELTQecpcx905Pkg\";}s:3:\"pro\";a:18:{s:11:\"css/all.css\";s:71:\"sha384-iKbFRxucmOHIcpWdX9NTZ5WETOPm0Goy0WmfyNcl52qSYtc2Buk0NCe6jU1sWWNB\";s:14:\"css/brands.css\";s:71:\"sha384-GTxp/8UKFkexlguDtPsFi90d++F9f26nZCM99OSQo69514FK7Of5mgM9Efhs5O9L\";s:15:\"css/duotone.css\";s:71:\"sha384-nuPd13VLdsw5iBtqelv9tQ6l6+CteSUrmoT5enzHVJodx7WdNUYXNwgVpA7bgsXn\";s:19:\"css/fontawesome.css\";s:71:\"sha384-DHjwMcq12OEB4DQ+qulZDDroaXZqm7h9V6AjiP/RuUF8NhxUa8x6UWdv1AeZS+90\";s:13:\"css/light.css\";s:71:\"sha384-IvEgf1JJYgCtB5fP9nmT3uC7DY96POpmhUjo/98B8FMju1w295nj5yGBfwgD3MYj\";s:15:\"css/regular.css\";s:71:\"sha384-Z3GHSXKByZgv1Ri9CiFq0jYUQ982JHZOOg4awUHcuVBjTxwNd+PVQO1/PSwChyzK\";s:13:\"css/solid.css\";s:71:\"sha384-Ymp/JSUSR6EuZ4KjxcliW8lJ7wkYBR6oasX7EMi6SG0QBPmNUDAEG9rd7Ogy0Ca/\";s:19:\"css/svg-with-js.css\";s:71:\"sha384-n/+zO4Fk1/R4EL7q+xf44zBEgvFziVgA7BUNwfjcGjHq/X6U0v25ESHqN/l5Wprm\";s:16:\"css/v4-shims.css\";s:71:\"sha384-yV4xIIsecn1iqxJy3IC5YyRSLwtkkFuOvfPvj1hGH5NLLej9Cum4hPOUL2uQYfQ6\";s:9:\"js/all.js\";s:71:\"sha384-OF9QwbqmlzSPpIxe2GYS8lkGFyaFfrgUPD2J3qj8zGVps17Y/x8EK2U8PEl6UrpH\";s:12:\"js/brands.js\";s:71:\"sha384-5u0zCiPDAEBQPvGxnai1VRZiSs9yQmyspSLrg0Fc7ru5CeddU1cef/24itMCpcWb\";s:24:\"js/conflict-detection.js\";s:71:\"sha384-W0jz7GGBNDbeSyOhqqJrtOVDFLX4Qlqm/5K4RqM9ZpPIZL6tmDCMkEIheypFOiSK\";s:13:\"js/duotone.js\";s:71:\"sha384-rutYU6OuFfIS5MmBE4wrpMhP633bNlRHqn/SFpcetMTKr+rsBxnoTd80mkHI7wum\";s:17:\"js/fontawesome.js\";s:71:\"sha384-hwdDrjZFQbBwoFcHZZ/6e61XHiwY9csS0Wxi8i5jUgTurxmYITntaGLFYCssX7By\";s:11:\"js/light.js\";s:71:\"sha384-soVEahH07bOeX1Nlhdi4VQ+yvDpIGN9A/qbzm/PgfDrpvh7AaCTyMkQNk1spjHbf\";s:13:\"js/regular.js\";s:71:\"sha384-GR++czVV+1briVrgT0SHxwKuKqqXqfkRb2NxZ8O4rad/c/iKIn85PDSaZQ3cjiAZ\";s:11:\"js/solid.js\";s:71:\"sha384-JwTquvZ50ZD4wvDw99MHsjx621x02jCoiXBKy103wTwDMBbDLmhRcCV4v9mq5CV4\";s:14:\"js/v4-shims.js\";s:71:\"sha384-xczhE4W0SRyRFalFfxUKqclGdqLDVnc/F118WebJIQ/QyS3XKXIHXTieQKG1rG/+\";}}}s:6:\"5.15.4\";a:1:{s:3:\"sri\";a:2:{s:4:\"free\";a:14:{s:11:\"css/all.css\";s:71:\"sha384-DyZ88mC6Up2uqS4h/KRgHuoeGwBcD4Ng9SiP4dIRy0EXTlnuz47vAwmeGwVChigm\";s:14:\"css/brands.css\";s:71:\"sha384-S5yUroXKhsCryF2hYGm7i8RQ/ThL96qmmWD+lF5AZTdOdsxChQktVW+cKP/s4eav\";s:19:\"css/fontawesome.css\";s:71:\"sha384-jLKHWM3JRmfMU0A5x5AkjWkw/EYfGUAGagvnfryNV3F9VqM98XiIH7VBGVoxVSc7\";s:15:\"css/regular.css\";s:71:\"sha384-e7wK18mMVsIpE/BDLrCQ99c7gROAxr9czDzslePcAHgCLGCRidxq1mrNCLVF2oaj\";s:13:\"css/solid.css\";s:71:\"sha384-Tv5i09RULyHKMwX0E8wJUqSOaXlyu3SQxORObAI08iUwIalMmN5L6AvlPX2LMoSE\";s:19:\"css/svg-with-js.css\";s:71:\"sha384-meSUsKN46Q06zfndZ6zDskLd5vJrCPwgb2izpfSMfWpQLijQApceQWIsbpLy2lAF\";s:16:\"css/v4-shims.css\";s:71:\"sha384-Vq76wejb3QJM4nDatBa5rUOve+9gkegsjCebvV/9fvXlGWo4HCMR4cJZjjcF6Viv\";s:9:\"js/all.js\";s:71:\"sha384-rOA1PnstxnOBLzCLMcre8ybwbTmemjzdNlILg8O7z1lUkLXozs4DHonlDtnE7fpc\";s:12:\"js/brands.js\";s:71:\"sha384-xf4z6gHzXeY6YwFJm8AKcD9SSq8TsfF4+UJj1JxzwQHk+VNATxkknGEzmdtYV0w1\";s:24:\"js/conflict-detection.js\";s:71:\"sha384-b4+d5l6vwWgdPDCbk4SG+VPRplFp3JtWehGqKvfat/MWON5/PSWvf0l89dpfUDUG\";s:17:\"js/fontawesome.js\";s:71:\"sha384-dPBGbj4Uoy1OOpM4+aRGfAOc0W37JkROT+3uynUgTHZCHZNMHfGXsmmvYTffZjYO\";s:13:\"js/regular.js\";s:71:\"sha384-EEuk6Tk/hsJ0IJMUp+btTmHLuWPGGIm8I3xmxRawuWaY1xqWEm3EKVdnHNlYX+6t\";s:11:\"js/solid.js\";s:71:\"sha384-/BxOvRagtVDn9dJ+JGCtcofNXgQO/CCCVKdMfL115s3gOgQxWaX/tSq5V8dRgsbc\";s:14:\"js/v4-shims.js\";s:71:\"sha384-bx00wqJq+zY9QLCMa/zViZPu1f0GJ3VXwF4GSw3GbfjwO28QCFr4qadCrNmJQ/9N\";}s:3:\"pro\";a:18:{s:11:\"css/all.css\";s:71:\"sha384-rqn26AG5Pj86AF4SO72RK5fyefcQ/x32DNQfChxWvbXIyXFePlEktwD18fEz+kQU\";s:14:\"css/brands.css\";s:71:\"sha384-Q9/9nfR6hUHbM3NjqxA59j5l/9c23JjwDDuPsV5SKplBvgLpFDtJmukyC2oCwp28\";s:15:\"css/duotone.css\";s:71:\"sha384-Zi3Yce9z7/mhFiZHlM/DEBTnheymZyqrjMoWYPP8xtNCl+LtJKnaJ0vaGnPfqc/i\";s:19:\"css/fontawesome.css\";s:71:\"sha384-ig3RKyui4sECvuz+WE8EmFYy7sjRvEvy82mmhfV7ljRieb+0f8eEZKxHv2KC0+io\";s:13:\"css/light.css\";s:71:\"sha384-zCLzLBaV9kpBZtwZ72K00PI4UjqXZhrzMeVtYGOOHqL2N5PXSVw2MtJjaWTKYDHW\";s:15:\"css/regular.css\";s:71:\"sha384-sDvgA98ePLM7diZOYxIrDEITlUxoFxdt0CPuqjdLr/w62pPuOc73uFoigWEnVpDa\";s:13:\"css/solid.css\";s:71:\"sha384-2aj01VFITmYatwqdIKc7PHVmhLqFnnkVCilBk0Uj/fGoczNJXKvV45XlyHr/HU9g\";s:19:\"css/svg-with-js.css\";s:71:\"sha384-cHJCnE8H1fC+puOpWCd6OSOmJ1q8KxWtIm/JUpb9705KggGjyKbMzryJWJDw2OPb\";s:16:\"css/v4-shims.css\";s:71:\"sha384-sKQhO4q55X7e4nIIO+wnutVfpIITv8+QJG6hE15hThUjV3ssIxUGT4VAoAGYmOU5\";s:9:\"js/all.js\";s:71:\"sha384-8nTbev/iV1sg3ESYOAkRPRDMDa5s0sknqroAe9z4DiM+WDr1i/VKi5xLWsn87Car\";s:12:\"js/brands.js\";s:71:\"sha384-MwpSaMFXAxVGLfxKR0S/SL1BvfRLmlowKeqIE/yF7uW5ax+r1fqRs12asOCkF9Jf\";s:24:\"js/conflict-detection.js\";s:71:\"sha384-my7QwPFkgZPqsrDx/vNCyAMQw86Ee5ZUeCUBA7CF0l9rWFcxoH+h+NdSGyYBh2pq\";s:13:\"js/duotone.js\";s:71:\"sha384-AFpIAPhppteteZyLTXU8oPEbmuNz5WwwWSVAKJxuEn51LibO/iPZ+fC5DzmLJzoo\";s:17:\"js/fontawesome.js\";s:71:\"sha384-RTs6cAeLGZoCPlBxXNxYfQnVIrvTagXGxIhrXFjWgp4i4E5urdGFLlkfbsk1Nd+L\";s:11:\"js/light.js\";s:71:\"sha384-6EhWHErkaXt19GTK7f+5rRc16ekdzvItcFycGZi1GS/AycADXj7L2tkZ9z2O71ot\";s:13:\"js/regular.js\";s:71:\"sha384-WWzdx7E114gkDQnLVS/7s5WUTa5KQUqY5D8LGqBB7y132sxhUbrIHfqde9aenKnJ\";s:11:\"js/solid.js\";s:71:\"sha384-DfpPYefTs8qX3aeMuUJxalewnmVXDDtxcIJFo+Bz1qrNTaoEwMIaZkfoWx404GvG\";s:14:\"js/v4-shims.js\";s:71:\"sha384-9lueRrgA8PnJBSmeS0/jHPFpZZ/hC/7n/XNQhCroAsZSoTtaEj6Q+ewHcpgFPqFw\";}}}s:11:\"6.0.0-beta1\";a:1:{s:3:\"sri\";a:2:{s:4:\"free\";a:14:{s:11:\"css/all.css\";s:71:\"sha384-QTEmscQJYWW3qGP+JMq44fmHSM1SbRIn3hxdZ0RBhX7yzbDOmdhCzVDY/nCs7Yfh\";s:14:\"css/brands.css\";s:71:\"sha384-YxspAfDWGMmVGaoWFDjr/ceg8QdLKNj76+YDQ3iXiX1d64PMg/rVRUQMIcd7loDR\";s:19:\"css/fontawesome.css\";s:71:\"sha384-Y63uHbYQVeMm+hkTj/YJpPSWvwA7maoOgWIcH/L/Zil8zxKQNclQIgNioLyE+zQT\";s:15:\"css/regular.css\";s:71:\"sha384-3+YTU1oGJl/DJPoU+JvGaD8K0waHM6gIPSWeabncnJ1y/LzxnMdPNvXxvbJtzkH4\";s:13:\"css/solid.css\";s:71:\"sha384-SVoL9P0p4yDjJ7K7qukXf8FBr4TcwUEZpvnQv80juxlb+QtrhT0zH3Gidw6aACkN\";s:19:\"css/svg-with-js.css\";s:71:\"sha384-bhQY/O7CPf/LJ1fFQ19Hb4zwFDg7vUCZT9GLZM4RVTzxhZCINjHGSM7VaB36hnHe\";s:16:\"css/v4-shims.css\";s:71:\"sha384-4q5P4wLQvP0vMZgsfSOPe2qSqfL+Y76J/5hi9QW1QqtZ0qdgSrcFRIv5MgSNtFX4\";s:9:\"js/all.js\";s:71:\"sha384-s6zGSTvDy4KZ4ncPlsj+2l4ATGBt+gXsKFfd4lR4QKFl2RgB4iOoqZzDkRqndbvR\";s:12:\"js/brands.js\";s:71:\"sha384-gksSOJLGNOMoFqSuS5Ki/PIhYoVzeS8bWP7Gg6b/6gY3FXNGW3ZwRY12rkFGpvz9\";s:24:\"js/conflict-detection.js\";s:71:\"sha384-JsmVGsnClQ/8mX7vDm+8UJ9XHlqIuwxPIKrIkpXt4mJZiaeCzg/uXxY3OjB7MajC\";s:17:\"js/fontawesome.js\";s:71:\"sha384-PkZHTzZps6BUB70Jc6Ujwh17lPpgjVJlG98uCR+Dg+bsDNAHk7UbcsVq9pUY0QM5\";s:13:\"js/regular.js\";s:71:\"sha384-i/4zUQF6PMLPil02YpE9smRx7XTQ0/bwaSlMl4QZRk0yFj0PCJqkv231+5hjbcsq\";s:11:\"js/solid.js\";s:71:\"sha384-ufQzc6WFPbylIrm5F6yJOtKS4KCrT6hoEuGPNEMv+9Y2ZVmEC0Jt5Tqf25Q2hOa8\";s:14:\"js/v4-shims.js\";s:71:\"sha384-3dTEd1SkEJhxEBZpeAOJF+PzflHEdVc87NLQ1dQd1UFpZNiygckU0Ku29kJavA2Q\";}s:3:\"pro\";a:0:{}}}s:11:\"6.0.0-beta2\";a:1:{s:3:\"sri\";a:2:{s:4:\"free\";a:14:{s:11:\"css/all.css\";s:71:\"sha384-H8oq+jCbb0QVbhroj1DucOj59MYLAHR4vQPc0ClgJJzMS/YL7OcRJfM/ehkfKqhU\";s:14:\"css/brands.css\";s:71:\"sha384-9RVmH5wLHK5upannGNFElXHKDeCRaoz+RuosjPpGqwUmn2+p5J5IBUd0P726kTk3\";s:19:\"css/fontawesome.css\";s:71:\"sha384-m+NmQ9JGB4PGDECPUaU3EyjsUk6jyyMoM53D/n//nHSADtoSKusJc/BF/ZffIvI0\";s:15:\"css/regular.css\";s:71:\"sha384-mwb6xqj3Cg9cBoRZDNp2p4Sv49gYTCgHVLVwbErL3sJCA+RJ3Xhwq19ezzyT1KqX\";s:13:\"css/solid.css\";s:71:\"sha384-sBOgtFigRpSU/zNyZLGNKX6O+VrUJzHdITsX3+nGRutcAaSdRMmnc8LOJk8XzoDM\";s:19:\"css/svg-with-js.css\";s:71:\"sha384-/ShrxWgDzY0RmtJK6gusdzSMS1yYysWIr6y1FFEG9B7naj2HqXMNxatmNRgmRDCx\";s:16:\"css/v4-shims.css\";s:71:\"sha384-wA6dLShvXgKngeGUYrFpv9/zgLLUtPxBL9y1OD9u5uQmeT3wWxvZVue3BO4xo4f0\";s:9:\"js/all.js\";s:71:\"sha384-vwquPQ7YyWL/EWINiNcgCpPP9Wbx44bLyI1NbrUJmEacQGGGWUzpERymaTAjvS9H\";s:12:\"js/brands.js\";s:71:\"sha384-X5eSej258z73rxsuRybt1adaWo6MobuyduuEYgYhbJMavb1jXYBhCqd1ZwRC9/7W\";s:24:\"js/conflict-detection.js\";s:71:\"sha384-MOke50TwkELSa34Yzu6DEGxTlT3Wdn5DynHvqLANi/pFPBZxRDnFhJnD6mE/GuoP\";s:17:\"js/fontawesome.js\";s:71:\"sha384-vo5XH3GmQrg9pkTZYURBhzEXm7Xslw9fD0z49HVMvdquMGvwTiUKJP4he5iFSPot\";s:13:\"js/regular.js\";s:71:\"sha384-UDm7R3v5rW8y32ssB0WDalZIS8AztwsdQERaPBHTRLStI7Bfr/fhWLuXr5nYZG8M\";s:11:\"js/solid.js\";s:71:\"sha384-f199SbfL8tgeze5wETQ87SF+anBX6Dmf9bWZSBvW02HFz602Fqhv1u1iCnKgdbls\";s:14:\"js/v4-shims.js\";s:71:\"sha384-Teg5BVlogMJp4To5SNk5eS6Ct/+y3KN9D/UWWXr4e2JhUbT1rgnLDWGXp/TG/0a/\";}s:3:\"pro\";a:0:{}}}s:11:\"6.0.0-beta3\";a:1:{s:3:\"sri\";a:2:{s:4:\"free\";a:16:{s:11:\"css/all.css\";s:71:\"sha384-5e2ESR8Ycmos6g3gAKr1Jvwye8sW4U1u/cAKulfVJnkakCcMqhOudbtPnvJ+nbv7\";s:14:\"css/brands.css\";s:71:\"sha384-Lzg1sLP4sLS8KyVySlmRH4QzbOnIzlp/h2MYRTDkxMPKwaD+zxathmN655nRjRSG\";s:19:\"css/fontawesome.css\";s:71:\"sha384-RAtjHVFRUZs4Tif4stxk4r1UN31mhO2m2ii67jtwlyWDXls6IDZ6/N2bHxt3bA48\";s:15:\"css/regular.css\";s:71:\"sha384-TvfVCWnd24+5zZ+qmyScSguhYpT7YtOajZ0b4IVLn3+T3dFYzXkgu/EE/Nrf2km5\";s:13:\"css/solid.css\";s:71:\"sha384-4veAyGk1Tas2qyx7CD/29iLDa8aarX6vdaWWVPD7K/m8FdvH9ae9yFNbWOxmP1hZ\";s:19:\"css/svg-with-js.css\";s:71:\"sha384-MLxC4sgXwbw5k1vFBDb68XNAF7UdJ7e1ibhu+ySJnAakTpweYCcq7jCcQpd5nJjU\";s:20:\"css/v4-font-face.css\";s:71:\"sha384-LJQ43yQLnfgXK8pn645vHWEmSJrVqisZaieRPj7NGV7cCzlL/B67BDv8gMRBS53i\";s:16:\"css/v4-shims.css\";s:71:\"sha384-zCIuCI9fw3QOcUPL5/7JfB3Qw6sjEimma+57eLWmHPHyVgqGmX5XLwGi3Ak5fLzQ\";s:20:\"css/v5-font-face.css\";s:71:\"sha384-W7b35mq2oJvzl9StEqMDWhapHEgwLh3/iohOpz2RopU0+3/eOmb8eubYCz0OwUcj\";s:9:\"js/all.js\";s:71:\"sha384-6e7nA5mhBVXnMIAtGPETl10C7oipDhu2IN/lyxyjAJG+KzNtRLqrqFJN5wJ+6/qU\";s:12:\"js/brands.js\";s:71:\"sha384-zY1eKUaz/NWcOf6xnU5eePxV3anVtTTAlu33RytBcT9jGz8dstwzZbVpp2l609NT\";s:24:\"js/conflict-detection.js\";s:71:\"sha384-rN+BHnX2WMsUD7VYL6PykWIyqG6SyEu6IdhgM42fLyWqC7JlY2k76ufmZvMFU43a\";s:17:\"js/fontawesome.js\";s:71:\"sha384-W1qlouWJA+8MQIORaSCnwNHhaPuAMwQGosDEwU/g4kkawDb4WwLy3ZWVpa/KtRXb\";s:13:\"js/regular.js\";s:71:\"sha384-Axuj5+DJ+mQA38QqwpWCujH6bCefx3brdTdN+ffhy6oxdqSvs1evxn4iX828SSe6\";s:11:\"js/solid.js\";s:71:\"sha384-9d1SM0Z1PczSHlc0bwe5j/n1kjp14H06SgMcxbmNkp6ZSQa6CqneEHKQkfVGPcR7\";s:14:\"js/v4-shims.js\";s:71:\"sha384-ZkRpffzN60bZU7hfI/zFR3Nv603593UFKpz6QAm3FUAUqGa60uzGmuEGLB5BZNsY\";}s:3:\"pro\";a:0:{}}}s:5:\"6.0.0\";a:1:{s:3:\"sri\";a:2:{s:4:\"free\";a:16:{s:11:\"css/all.css\";s:71:\"sha384-3B6NwesSXE7YJlcLI9RpRqGf2p/EgVH8BgoKTaUrmKNDkHPStTQ3EyoYjCGXaOTS\";s:14:\"css/brands.css\";s:71:\"sha384-Adcde+txsvO9VVaHmK9GsiU0ps9W6rwF+IlMCjHpCeU5j18z8lenKNx6AV7OuQKy\";s:19:\"css/fontawesome.css\";s:71:\"sha384-caIQK8zI/KcZVq2HWogTcGbcxd9c0Alp2SDcy0eOHIjipClzJQ8HEkSNcoXtKq+w\";s:15:\"css/regular.css\";s:71:\"sha384-CAcRRHVEmhGr2UjS0hlffWvnfewfvVqvDJP03d3f3NctPBCvDfPMY6L8r4to10MT\";s:13:\"css/solid.css\";s:71:\"sha384-zW4IamLJkgRrzYFdEixnM4hbhScK8Q/B0aYHqhGxQf6jrj1pxNaEzS7n65YVdFsW\";s:19:\"css/svg-with-js.css\";s:71:\"sha384-+FYTcfgXTek/jHYrY62q/wv2/QxcumMqXHB/9ZHrAwFBiACe0XD+xXBvrlpG93Qd\";s:20:\"css/v4-font-face.css\";s:71:\"sha384-K7jXM/Fd0TzcNoMz1bK2/PRaJLYkgynKTlUyKXatOFEovvEO1Zownee30wS0rxq4\";s:16:\"css/v4-shims.css\";s:71:\"sha384-Mo3tUbn02WJ1eXNOTbemz64sjSQx9PEUk4o3BJbDNrfhSAfbPobKWeqYpV3xkTBC\";s:20:\"css/v5-font-face.css\";s:71:\"sha384-iYWocEeLglluGxouLD/E0jzilCIbE6LTAKof7ZPB7/YSAogAA6bLTJyo2T98POzn\";s:9:\"js/all.js\";s:71:\"sha384-l+HksIGR+lyuyBo1+1zCBSRt6v4yklWu7RbG0Cv+jDLDD9WFcEIwZLHioVB4Wkau\";s:12:\"js/brands.js\";s:71:\"sha384-ZCobqGyWQ2Qg///QRAi+jqRlO/9aWmMHd6tb0emtG9QBX9t77I71IHg19T90mlfk\";s:24:\"js/conflict-detection.js\";s:71:\"sha384-5v1FR2qOT+wEONoibSzBiWIvpXEOyyRuvOtNOfwijR3h4K7tg12vL4TNx4iSsQWX\";s:17:\"js/fontawesome.js\";s:71:\"sha384-pULjvYk4ZbCHxvgkOUhY3s6wbSkRp/9WHqh+NdM+FkmDQsdJeg2XyOHSEQ0AZlr4\";s:13:\"js/regular.js\";s:71:\"sha384-7XHlSs/t85udVElMnHlVDct1GXjA01UIyQLQRbYc3bxChziaGT776dBUgqd/o82r\";s:11:\"js/solid.js\";s:71:\"sha384-IWq2srnodX6Z+US+NFdwALHXDvdogKkBx7sUMzfypASSeqsNzF+gAS48WnkPcYbf\";s:14:\"js/v4-shims.js\";s:71:\"sha384-ybkuz/OxDnyDU81HhdheMi5FjVHdKkPPnnfX2H5pClfR9x+aAMkenwEbVe0AdPt9\";}s:3:\"pro\";a:0:{}}}s:5:\"6.1.0\";a:1:{s:3:\"sri\";a:2:{s:4:\"free\";a:16:{s:11:\"css/all.css\";s:71:\"sha384-eLT4eRYPHTmTsFGFAzjcCWX+wHfUInVWNm9YnwpiatljsZOwXtwV2Hh6sHM6zZD9\";s:14:\"css/brands.css\";s:71:\"sha384-E8UvjEv9HnIyjcD0D2Nfr/M7y5wA7GK+DoLhh5Sbfd0MtCSpdREBn8Wc/SdeaBDA\";s:19:\"css/fontawesome.css\";s:71:\"sha384-RLM8Rxp/DcBfCfSI3bGwwoMMxxy34D2e58WAqXmmdnh0WYlAQ8jeOB3A1ed5KUSm\";s:15:\"css/regular.css\";s:71:\"sha384-luZMTbX5lx1yPkwYfjdCtbXx2AL3j1H+ffZ1LJSuxepC2TKyGzv3zkgftThS/BDN\";s:13:\"css/solid.css\";s:71:\"sha384-ltWlpN+Dl8XfKEnC9oW+dDRF8Z7jsYkxQ/WMRoJ2VHH5G2nQZ4if2NWwmV0ybzZ7\";s:19:\"css/svg-with-js.css\";s:71:\"sha384-gLJsqV+iGZdsakTXDecPQLbmHTTUB6vIJ2ukjLJTPa+YXsdHu5alOSYZZTagrVSG\";s:20:\"css/v4-font-face.css\";s:71:\"sha384-WTcUA4jr+YtMif40YOsaoMazuo9cigaWqC7Vrj6PjPzPt/VegPK08OEyRvvIauzD\";s:16:\"css/v4-shims.css\";s:71:\"sha384-k1PPow2i4/GbflsJCusORB91wBmXUDdw6pOkXu2vQWXIsmLbIL0t/aA7FroyJf1r\";s:20:\"css/v5-font-face.css\";s:71:\"sha384-SXOfPW9HC6/r4BP4QoUVZNVol9D+ncClNpAseJsRONb9L1F7QgV6ltEXcLnYJv9H\";s:9:\"js/all.js\";s:71:\"sha384-vLLEq/Un/eZFmXAu4Xxf8F00RSSMzPcI7iDiT6hpB4zFpezCEGhb5daeR8PLyrLI\";s:12:\"js/brands.js\";s:71:\"sha384-cNUzI2P088AN66Vx9jSolJDKuj/ZWgTtbwYleQo9MedrXul9DrmthXUDN2iFVk9u\";s:24:\"js/conflict-detection.js\";s:71:\"sha384-te3/sj8uC87v52yVrB6zr3Fm5m0AyGLAHYUIx853+yLbLffUUfXrdztSp/yFACrc\";s:17:\"js/fontawesome.js\";s:71:\"sha384-n82ItqkVbr/bDMKi4caJ2ZLCgihjr3y0aF69FTVAfwQmyFRVucR9QvBKz7DliBNY\";s:13:\"js/regular.js\";s:71:\"sha384-/wcH7fFePVuXUD0zgIUKgQwvWV21321nbGpvX01SjmZ01yE/n68/Wp8rBxpsKI/+\";s:11:\"js/solid.js\";s:71:\"sha384-A4ZBrBkKFVj3yXr0kIOFHs3vCQDJSHAU9OiRxm9X42e+amWJl68HpDCbONxiMp12\";s:14:\"js/v4-shims.js\";s:71:\"sha384-WqC1w5exlfB7/5UiHTZp/YAnoS9Ovlzh55EwGjzaMxZZtL1omDGlh7KehDlpgKUr\";}s:3:\"pro\";a:0:{}}}s:5:\"6.1.1\";a:1:{s:3:\"sri\";a:2:{s:4:\"free\";a:16:{s:11:\"css/all.css\";s:71:\"sha384-/frq1SRXYH/bSyou/HUp/hib7RVN1TawQYja658FEOodR/FQBKVqT9Ol+Oz3Olq5\";s:14:\"css/brands.css\";s:71:\"sha384-GjGxypaJovIS9KvmJ0F1G5aXPEfMvk9dMgnwAAw7UOfX7zTQZMapUiXX/+8HlctD\";s:19:\"css/fontawesome.css\";s:71:\"sha384-zIaWifL2YFF1qaDiAo0JFgsmasocJ/rqu7LKYH8CoBEXqGbb9eO+Xi3s6fQhgFWM\";s:15:\"css/regular.css\";s:71:\"sha384-i84Ve3MkmiZYhWmYDjLPpHYYvg36qy5F11ipncNWsQMTrwZ8nGSSX3Q2QnmwEGdR\";s:13:\"css/solid.css\";s:71:\"sha384-DhmF1FmzR9+RBLmbsAts3Sp+i6cZMWQwNTRsew7pO/e4gvzqmzcpAzhDIwllPonQ\";s:19:\"css/svg-with-js.css\";s:71:\"sha384-ET/prSuhSJFD66MbC3j2l1MrZtW8jdamNc+wmMcmh804U+5Isyo29kVkPjr+4+9P\";s:20:\"css/v4-font-face.css\";s:71:\"sha384-DPkhMKJRq9+6LzxVlr0poYa5+EQVr/onntse7iwk6coJonLqzoCBzSKF6ccKoXRm\";s:16:\"css/v4-shims.css\";s:71:\"sha384-4Jczmr1SlicmtiAiHGxwWtSzLJAS97HzJsKGqfC0JtZktLrPXIux1u6GJNVRRqiN\";s:20:\"css/v5-font-face.css\";s:71:\"sha384-QmV/KObe6h/Mb8GC5urJmE9hmFaZDtdnqpCUz9P9nDHFgMeDXyI6IARqnuDRkYu1\";s:9:\"js/all.js\";s:71:\"sha384-xBXmu0dk1bEoiwd71wOonQLyH+VpgR1XcDH3rtxrLww5ajNTuMvBdL5SOiFZnNdp\";s:12:\"js/brands.js\";s:71:\"sha384-jUDsa+5FKZnKIWUpGkvYZHGEx5UxPEu6XJtEMH9ZGXZZkUNVWX1vs+a51vHKs3EY\";s:24:\"js/conflict-detection.js\";s:71:\"sha384-SgqpzfPaFrGdMcCtSUb4dAD1aDr5a93AfPBL+tk14acF93aGDvasqDcPFbHe24pS\";s:17:\"js/fontawesome.js\";s:71:\"sha384-9zErGp+biBilRrlpD1l3ExnaqXc8QLITlNpGtb4OL6W1JChl0wwmDNs4U/0UA8L8\";s:13:\"js/regular.js\";s:71:\"sha384-5ZhDHsI9yoa8E6DaGJCLj2Lgi8w4KE42IQi4jvmqYVCaza4Iqi8/hSniWspK7fUs\";s:11:\"js/solid.js\";s:71:\"sha384-KPytPVc+hwHwX9HXl4tA7SWJ0Sob6StzjVRoxC4Q4U0JgXujpuVrkBxR0Hsf8A25\";s:14:\"js/v4-shims.js\";s:71:\"sha384-lUDzd+x9AFWWpLYlM0ZCD+x586cN20gzVDrjHh8HUz22j1QwqTKQGkmd64bfBeZi\";}s:3:\"pro\";a:0:{}}}s:5:\"6.1.2\";a:1:{s:3:\"sri\";a:2:{s:4:\"free\";a:16:{s:11:\"css/all.css\";s:71:\"sha384-fZCoUih8XsaUZnNDOiLqnby1tMJ0sE7oBbNk2Xxf5x8Z4SvNQ9j83vFMa/erbVrV\";s:14:\"css/brands.css\";s:71:\"sha384-bSSRmv/7zc8N//nlEscKMJrVdXnmDX0i3KY5/Z25DbCimvRgRrefGMGQORqrdfD+\";s:19:\"css/fontawesome.css\";s:71:\"sha384-X8QTME3FCg1DLb58++lPvsjbQoCT9bp3MsUU3grbIny/3ZwUJkRNO8NPW6zqzuW9\";s:15:\"css/regular.css\";s:71:\"sha384-VkONnoon0mCxG87ODS8tYdngkEsiD8Sd23d3b4KRiZfPqB9YD9hlTNWSc1pkWUct\";s:13:\"css/solid.css\";s:71:\"sha384-0BumEd2qDQ2SCps2Pnnhegpr+si0PveDhbdhKgLYwY9x611h8s22Zh8td+W7jeys\";s:19:\"css/svg-with-js.css\";s:71:\"sha384-GCDsQfUYx2ESsVn+lTf9CyU+PGOUBXnknizovQ4IJxE5loN0RHLpN+vRHxwybMFN\";s:20:\"css/v4-font-face.css\";s:71:\"sha384-E84k0fsWgsf0UqlJxsjgvjalIakzDn/aoXROK5S9mgTazm9ZOb/8zZ0qyqkdKDD7\";s:16:\"css/v4-shims.css\";s:71:\"sha384-iW7MVRJO9Fj06GFbRcMqdZBcVQhjBWlVXUjtY7XCppA+DZUoHBQ7B8VB+EjXUkPV\";s:20:\"css/v5-font-face.css\";s:71:\"sha384-C2uLsOCgtzzsIRkD2hyqhqJnsO6tKm8ec1erAE0iUqF9rveCxghE19k8tc41ksjq\";s:9:\"js/all.js\";s:71:\"sha384-11X1bEJVFeFtn94r1jlvSC7tlJkV2VJctorjswdLzqOJ6ZvYBSZQkaQVXG0R4Flt\";s:12:\"js/brands.js\";s:71:\"sha384-U5yq7AQDGZ6J9YLnrFCX7Qb4jl4/ARIio5SQIZcB5bLjDxI9j3Z3rg1jows2sbu3\";s:24:\"js/conflict-detection.js\";s:71:\"sha384-vGTTZfVQhZ4yWSot55BXgm/SDH+MsKEeG2GFPNoKnoFJmosfJzkaPyMucBkV94KT\";s:17:\"js/fontawesome.js\";s:71:\"sha384-hAYe7Q//ZOaw3fT5VW5hCn+guWuzOj8+KjXlS95ZxcRnVX+SxyugquCJURnqC7UK\";s:13:\"js/regular.js\";s:71:\"sha384-60G9FrRhST1TC039tICDDsfkkIa1Smg8kwF6wa9wYEpDqGrd5kQtp9JCsfWW7GCA\";s:11:\"js/solid.js\";s:71:\"sha384-tc7MH1B8eIPGWXxQScItgwJcDhnfKKXr7R39oJJCo9oQ5QssIq6fJM9HvdSHlmUE\";s:14:\"js/v4-shims.js\";s:71:\"sha384-JwJ3z2CNw6j4LN4k+tA6GEN2OQSUzcSBpWIsEqlngCZqnfxDsQUe5SURjhpXLhvY\";}s:3:\"pro\";a:0:{}}}s:5:\"6.2.0\";a:1:{s:3:\"sri\";a:2:{s:4:\"free\";a:16:{s:11:\"css/all.css\";s:71:\"sha384-SOnAn/m2fVJCwnbEYgD4xzrPtvsXdElhOVvR8ND1YjB5nhGNwwf7nBQlhfAwHAZC\";s:14:\"css/brands.css\";s:71:\"sha384-aPlaxY3ZTSh7uDmsF2W7hsMfri06sIyTmCDnY7ERd0fdq3Sf5bUKYZMvomNxUaXn\";s:19:\"css/fontawesome.css\";s:71:\"sha384-z4tVnCr80ZcL0iufVdGQSUzNvJsKjEtqYZjiQrrYKlpGow+btDHDfQWkFjoaz/Zr\";s:15:\"css/regular.css\";s:71:\"sha384-wn3adrQUGPbU211xcXhUrH0E0l+tYlkc3uXQ8WiBvnHj6ZU9E1vKwzjRaCKUenlU\";s:13:\"css/solid.css\";s:71:\"sha384-0mfI7+kSnb5u0q8irmrfJVv1jYIBfeR+8BsSsgUDjP4HCYuQ+kLshHc4xpHeBqrp\";s:19:\"css/svg-with-js.css\";s:71:\"sha384-lvs3gozt+olLidIy5GkpdCk5cvS3LPkq49a9KDlN1Xh1bkPTNGeTL6SJCX6gqyYx\";s:20:\"css/v4-font-face.css\";s:71:\"sha384-RSx4BCEB9OLjPKMTvFSenXMC8VTsramvoyHB5iSB1VvRvjZ+nendH6WKbigGUl31\";s:16:\"css/v4-shims.css\";s:71:\"sha384-MAgG0MNwzSXBbmOw4KK9yjMrRaUNSCk3WoZPkzVC1rmhXzerY4gqk/BLNYtdOFCO\";s:20:\"css/v5-font-face.css\";s:71:\"sha384-RS0a4x4GGXTod9x2HdKnveb/E8M6PuU4d/ZQVzhS+333QRA/Ozo84SeOKdLTZ2yN\";s:9:\"js/all.js\";s:71:\"sha384-W5zCdxUh9KjkijDohSc4bFCIfbZKNYcz/hdWjfRL1whrEJO6YBXMaZcAZU5YWJNW\";s:12:\"js/brands.js\";s:71:\"sha384-09m3HDo5mYd2JdkpussYgOLApaYuUblFkHtmeNGHcQv5bXjDeCFdH2iVYjUT8dQ/\";s:24:\"js/conflict-detection.js\";s:71:\"sha384-lbmBDViH+2PwoLg/9cPkkkTMdiyjpcY/jpRNab/Tt0ZmaSdv+85nXkEXaCe/kFp0\";s:17:\"js/fontawesome.js\";s:71:\"sha384-KZ1LJTCtJ2KL1x2pH7hR3CElXzG3s0P624sTHaiTFoSKBMBlwu0mrvkjm8jKox6f\";s:13:\"js/regular.js\";s:71:\"sha384-9P5qtFxImyObPMiImjKy+Kc+r+0+br3QTmRpQSswRkuWxTlb1Jsn7wG/i1i5xJjp\";s:11:\"js/solid.js\";s:71:\"sha384-H6YBpm4VRWLTfp0nRZIrLoT2zc1rWaEEYxYC+HyWXxSKY+AUn5evalgkgT0EpMDN\";s:14:\"js/v4-shims.js\";s:71:\"sha384-FirTqNsw+MidIWcJQan+CwXPSApCil9UBGO7gSOrDvmnzlApH42azPyb5gSH12vT\";}s:3:\"pro\";a:0:{}}}s:5:\"6.2.1\";a:1:{s:3:\"sri\";a:2:{s:4:\"free\";a:16:{s:11:\"css/all.css\";s:71:\"sha384-twcuYPV86B3vvpwNhWJuaLdUSLF9+ttgM2A6M870UYXrOsxKfER2MKox5cirApyA\";s:14:\"css/brands.css\";s:71:\"sha384-zzq6oTpui+lGFqUViC9Wq0M0ruPnfZLT+vZoMnTIf7z5TIhLggF72ZKZD0dGWakx\";s:19:\"css/fontawesome.css\";s:71:\"sha384-QYIZto+st3yW+o8+5OHfT6S482Zsvz2WfOzpFSXMF9zqeLcFV0/wlZpMtyFcZALm\";s:15:\"css/regular.css\";s:71:\"sha384-ec0IxhWgl7nOQwUxu15+OAt2ylNSDoZllO5JM+Wlfp5iRzHOV7834BmFjztiNi1a\";s:13:\"css/solid.css\";s:71:\"sha384-XA4GNh8NX8EYkM7X7NCXQzS7tTEzSelPJ2gF6s+KKgR7Fcep3WAa9iKAxyYEQBqh\";s:19:\"css/svg-with-js.css\";s:71:\"sha384-Hb+xoMIh5T/8ALSNePRt0QBxUzia2Csd7In9RrXrwe3btQGQk9QHDQtpl5W/3oNR\";s:20:\"css/v4-font-face.css\";s:71:\"sha384-O4Uaae/V6mzTlKODhK4IpUZZiXIuaH//HQIvOJgzp+YRf+0ms93I87n4WtBYLudx\";s:16:\"css/v4-shims.css\";s:71:\"sha384-RreHPODFsMyzCpG+dKnwxOSjmjkuPWWdYP8sLpBRoSd8qPNJwaxKGUdxhQOKwUc7\";s:20:\"css/v5-font-face.css\";s:71:\"sha384-MReR7mQQUkCxHgYCao8fyFmmRcib7wPhbYWSNMZeFKTaoe0r0NePq6eeDHHfDHoR\";s:9:\"js/all.js\";s:71:\"sha384-sCgwm7cN2+PN5J6MEF+tnqkCY4Wc5WRcGU+I9b04LSQaPRMO09dnbrVilAWAbH1z\";s:12:\"js/brands.js\";s:71:\"sha384-paSlHD0OmJVQU3bqeDxqGDmSDHe9M4KOKTS5fMPqUnLBatCB5mFvvUWCyFmuaWU/\";s:24:\"js/conflict-detection.js\";s:71:\"sha384-+VJZyx6TPe/0fC+AtQuiPhcJ3vxer0IsFetCmdTQKAlBkj0JQPtHG5wlHTjTMR2P\";s:17:\"js/fontawesome.js\";s:71:\"sha384-zqHeJ5LxaaUrtMetMhaqvaChYEnpeC2GD7jY9JtkUU7ALLAiMHF8VEs/9hI45Rlk\";s:13:\"js/regular.js\";s:71:\"sha384-V8GcQvIrFZ6r5GLjZ1HYSOuM0xejDxJM7Q88AzR4e3ErN2SHiVEIRJ9fMxu8hLD9\";s:11:\"js/solid.js\";s:71:\"sha384-hnLkLr3nX34CKy5QEs25fE1nSgfHyy9WeOa2te+FT3Q9L5m4L5aNizHqOEdFPX7s\";s:14:\"js/v4-shims.js\";s:71:\"sha384-r4s+tpoonjJ7uL821D+ZropRuilrahBs/t7I5GxACKAAVGLOlq+1O+yQklgFyawo\";}s:3:\"pro\";a:0:{}}}s:5:\"6.3.0\";a:1:{s:3:\"sri\";a:2:{s:4:\"free\";a:16:{s:11:\"css/all.css\";s:71:\"sha384-nYX0jQk7JxCp1jdj3j2QdJbEJaTvTlhexnpMjwIkYQLdk9ZE3/g8CBw87XP2N0pR\";s:14:\"css/brands.css\";s:71:\"sha384-nAID/7ZbfvEYU+xSZ0WSonEMJwE3L/H601tipVgerMsWXyzaigVLkTK01HvpcFXt\";s:19:\"css/fontawesome.css\";s:71:\"sha384-IfdMaxM7xApqzQmi9UKLIQPSX+440ganmZq+rMGyqDukniVtKl003KdPruUrtXtK\";s:15:\"css/regular.css\";s:71:\"sha384-ix51dCg7sGikKC5kWHfI3mtSd1gIH4xMi7/QU+Af5fqLFjJf8hpbeb3TYZ6cIUV+\";s:13:\"css/solid.css\";s:71:\"sha384-PxcNnk8LvpDOF9+oRKY/0jnWn7dad+8aYUBNBvUlkcVedXQVe08FomQti4AD5v8V\";s:19:\"css/svg-with-js.css\";s:71:\"sha384-/siyQcTjrZDFe29mEtEHK7Eb4EhdKEvYw+vgxleGBDIrHDHZbq3CnTLFfBubXXI4\";s:20:\"css/v4-font-face.css\";s:71:\"sha384-NKf3ykwJFzOuD3j328idnfCz39TdN8EmH8pKT9lKR8HGEwrr7e8EetwwJ4easRJd\";s:16:\"css/v4-shims.css\";s:71:\"sha384-SQz6YOYE9rzJdPMcxCxNEmEuaYeT0ayZY/ZxArYWtTnvBwcfHI6rCwtgsOonZ+08\";s:20:\"css/v5-font-face.css\";s:71:\"sha384-a4b/G2DeLnJR7cWqyrY2Sp1zq2yloVgemqVyajo2TOgC+CyG89CFGs3h/4t6tE6C\";s:9:\"js/all.js\";s:71:\"sha384-QM3vQ1ro1SUguF26PKxC17ZxibTi/ixpgL9NRL5/RHw1AmA0pfSeGCh6k+uqbyzJ\";s:12:\"js/brands.js\";s:71:\"sha384-+dgonENyuv/Ma5wK3qD7a5ah/QkyvBj6vKZRydt/XL8UZ4/vW+knK6Mzgz0n1Tur\";s:24:\"js/conflict-detection.js\";s:71:\"sha384-9spX59FjXN5m4FE1qKeJAkbeccFpPSSkK7uRDbyfsWMLoovjBrKMwI7QPzr9IItI\";s:17:\"js/fontawesome.js\";s:71:\"sha384-/fIp3d9vqOYL5eP47pOEUYZ/h5dXL4fD9Rc4DWSuIqMZkUj+DA94qNELNYZm8VJS\";s:13:\"js/regular.js\";s:71:\"sha384-sQbun49r1isRugOLIXUMavarR+iGPwX3CD+RnzFVwcq5a6ytn90mjg95EavZR7FQ\";s:11:\"js/solid.js\";s:71:\"sha384-G+v/7MQzsBBqsKVV3XKv8ThIDYIyXG6LJWqTPBrADbzQf/Ok8cTgjl0X+smak2c5\";s:14:\"js/v4-shims.js\";s:71:\"sha384-wIToinlzS6m/RbLlDnKRNYNV9AH+JiQw4YYjKJLDHvRHM3otJbm3Yo6HW5Tmlm6Q\";}s:3:\"pro\";a:0:{}}}s:5:\"6.4.0\";a:1:{s:3:\"sri\";a:2:{s:4:\"free\";a:16:{s:11:\"css/all.css\";s:71:\"sha384-iw3OoTErCYJJB9mCa8LNS2hbsQ7M3C0EpIsO/H5+EGAkPGc6rk+V8i04oW/K5xq0\";s:14:\"css/brands.css\";s:71:\"sha384-2ExAXhxetFPlyL5ZypKQbz0ZrD6S0xW1jF2n+bGda67tIfsjcfHQy3FkuA1IjuxK\";s:19:\"css/fontawesome.css\";s:71:\"sha384-bGIKHDMAvn+yR8S/yTRi+6S++WqBdA+TaJ1nOZf079H6r492oh7V6uAqq739oSZC\";s:15:\"css/regular.css\";s:71:\"sha384-PwY/RecMsWJ0YLCPnyfLG+ditDiQgCzulWE8Smf0xlxWwmIct3nAJIYTB4KiBmol\";s:13:\"css/solid.css\";s:71:\"sha384-o96F2rFLAgwGpsvjLInkYtEFanaHuHeDtH47SxRhOsBCB2GOvUZke4yVjULPMFnv\";s:19:\"css/svg-with-js.css\";s:71:\"sha384-TYQbrAtum7hSQLm6r6N4LzjKCQcUdp06+INnw7PSirZXzTDCnTYfXHs9rKgd3rXF\";s:20:\"css/v4-font-face.css\";s:71:\"sha384-RJB8qXHAWja9guGLx18CQW+Z9LexNZMjoJw8l6YyjDEbb0KGlh9Zm82z19LHC1Am\";s:16:\"css/v4-shims.css\";s:71:\"sha384-TjXU13dTMPo+5ZlOUI1IGXvpmajjoetPqbUJqTx+uZ1bGwylKHNEItuVe/mg/H6l\";s:20:\"css/v5-font-face.css\";s:71:\"sha384-QjaWSlkEh5wyDERdlOeoQqTkMLC4uT8RssNlE2KX9a59xyaVpqRTyfed0QhFkT6H\";s:9:\"js/all.js\";s:71:\"sha384-Y7LSKwoY+C2iyfu/oupNnkGEN3EgA6skmJeVg5AyQk7ttcjX0XsLREmmuJW/SdbU\";s:12:\"js/brands.js\";s:71:\"sha384-LZKIVE6U9qJ1ysu6iReojA6FFHyh3907bZcgwYnIGZZGKNFIbzPGCF76fZdKRIpS\";s:24:\"js/conflict-detection.js\";s:71:\"sha384-PJJ6fWM8zRjqPjf5DIS4/IdPD0hjOoh1BJdH1TKp7N/Kl6Udgg0WaO6fc0IeMYvX\";s:17:\"js/fontawesome.js\";s:71:\"sha384-UOiUgfGrkdraMjJCXCBJ3es7S0WlAfRzwutEkKdSvdAJBEi80T6ccH436MepipvI\";s:13:\"js/regular.js\";s:71:\"sha384-fjFyr4zQKu1Z1JVjcnvN7Leu0+LILepNI2mfYinScaEyzjpQeBqpaOzw63muFY6v\";s:11:\"js/solid.js\";s:71:\"sha384-AjHxetn+/jiyhsDh7L3DL9B9DkI+MfPjArOp6M34vqincKmDeAn77n8d5tFsopuW\";s:14:\"js/v4-shims.js\";s:71:\"sha384-nWS6DcsdR7/yv6wq4luARu6vZs/04baVXV/1X6zrvy63FZuMoIv5DvS0I9HRZuNE\";}s:3:\"pro\";a:0:{}}}s:5:\"6.4.1\";a:1:{s:3:\"sri\";a:2:{s:4:\"free\";a:16:{s:11:\"css/all.css\";s:71:\"sha384-kjpykepEMjugguAhJkXwcfET7pbrXrP3Xv+uS6EUmR2aHXI4b7zHffvacfrhF39/\";s:14:\"css/brands.css\";s:71:\"sha384-J1jdtNZGe4Wc5IYc1OlZow87jcNr6HnHpojEw9YuPbTwkl7Kx7NqvEgxb59Iski3\";s:19:\"css/fontawesome.css\";s:71:\"sha384-P6O5pbBNnrpS0pILLzahZhFOP1UpcX7AMd73G9IuE2nF8HyPrUbIeLjvZEs0Ug7b\";s:15:\"css/regular.css\";s:71:\"sha384-MbJGQW0c7awBys9sW+AAoBKV1U2kQxiIxXqd8A4febZ60zN3B4UVTSRjRDYntCv+\";s:13:\"css/solid.css\";s:71:\"sha384-6tgiprR9pLbvcfkGzWxHwhJH2jzw56OQ7s2NnY2FuILGo5UmXETk8L3aFYwPpteC\";s:19:\"css/svg-with-js.css\";s:71:\"sha384-NQoFKbwXmyuKVJTvBi7CsAIsHXT6mwCybNUvHrU32r1X+BTbaMoiT3Ir6tg7MX+L\";s:20:\"css/v4-font-face.css\";s:71:\"sha384-U3414fYccumRqk4+ReNAk1QyXcZ6yPQskOCLFtjj+LH1H9Br3fraFMi2UsvxlOWg\";s:16:\"css/v4-shims.css\";s:71:\"sha384-NAfgAM5AYoEaYx6qI1zuWC7Vnm+IGYraBS6e3Ictl2u7+giHMRDHuiU2VdIhpwG/\";s:20:\"css/v5-font-face.css\";s:71:\"sha384-Zf5ib/vBlmsWb669+mZLzGHfsdf7+F1cMBmYUYjWSUOunf2TmRo/y9FLMKQ6MFDq\";s:9:\"js/all.js\";s:71:\"sha384-XTz3JQr6C2UgQyMjOXqtE1ktB22L84QvY/8e3iReKei6VGYNS1c3vfN7tkatleGm\";s:12:\"js/brands.js\";s:71:\"sha384-bN6dDWPHPXl3lPomKGOzW55M7flHxNfki0fIeDHz5I95fUy/KSPRyoLa2cFmmeHd\";s:24:\"js/conflict-detection.js\";s:71:\"sha384-/tkC+DsW6wGAAuYHzm8moq4WwyPHbxeoeYIdmYCqnCBwPfEVbma64R5StM6McXfT\";s:17:\"js/fontawesome.js\";s:71:\"sha384-Aj/6TFpUzUHDZXFwF1XFeekLst+gcZBlYfTBFTFuAJ421PJ3prYGyWJnIwyE6mVy\";s:13:\"js/regular.js\";s:71:\"sha384-tnBSYFMgfb4WogZHJ3seCNCCpk3MYR021WyVrcOOy+pXWRXx58/5ERosIXTkPUdg\";s:11:\"js/solid.js\";s:71:\"sha384-hDNCpQUw2n0Ov+4u2SwyiGyABcpjtGu2S2D9OU7SOO7thmkEeXKHPiAWCH6xG+qr\";s:14:\"js/v4-shims.js\";s:71:\"sha384-oclpB7dZf9YOfq4V7npmeZegIGMkDUrO4O8SWF4DmaWxhvrx2KDt+5S5OU10W24Q\";}s:3:\"pro\";a:0:{}}}s:5:\"6.4.2\";a:1:{s:3:\"sri\";a:2:{s:4:\"free\";a:16:{s:11:\"css/all.css\";s:71:\"sha384-blOohCVdhjmtROpu8+CfTnUWham9nkX7P7OZQMst+RUnhtoY/9qemFAkIKOYxDI3\";s:14:\"css/brands.css\";s:71:\"sha384-zLGWoEQo4d0pyo9mhl8re+s13DMgD50yZvmt2KepO9EKPRKSKb6ejYyyrOacdxbF\";s:19:\"css/fontawesome.css\";s:71:\"sha384-BY+fdrpOd3gfeRvTSMT+VUZmA728cfF9Z2G42xpaRkUGu2i3DyzpTURDo5A6CaLK\";s:15:\"css/regular.css\";s:71:\"sha384-Gr3CEO2spqs7Ewi5axeUTudhnllwvDm72lMG5zKbXWSq+U2Ff8hmq0WdfRrI5nKd\";s:13:\"css/solid.css\";s:71:\"sha384-mg8zF75oNHlYRnMloT+F976njuLh73k82hwA0CQiqS/puYzt7Malpig8RB7LITnK\";s:19:\"css/svg-with-js.css\";s:71:\"sha384-PCXckRqKk8Xt3VfIU/oSoVwuHBgHF9BH4O3YqogDn6oyjR522YZn39faZ53B4D5p\";s:20:\"css/v4-font-face.css\";s:71:\"sha384-ei3Y0Qqq+DvNJsXkVPPQXhcsPOyaiBoUs3RNHwBpCEg2IPjfyoGWr/TvaJzcuG7t\";s:16:\"css/v4-shims.css\";s:71:\"sha384-IqMDcR2qh8kGcGdRrxwop5R2GiUY5h8aDR/LhYxPYiXh3sAAGGDkFvFqWgFvTsTd\";s:20:\"css/v5-font-face.css\";s:71:\"sha384-RxpdTG8UQZB3H27HKEylcaGUDSJZCrrGOimS4DWEHS7jUgWlV9hKmCKx99zQRgmA\";s:9:\"js/all.js\";s:71:\"sha384-NhxsZw9+Y+PdEOvg8BK3sOUXXTzoRmr4/ncl+Ogurt6kQgJAVJaJ4LFhjD8qXtol\";s:12:\"js/brands.js\";s:71:\"sha384-HgDRzw9OXl6njKttsRM6bzXDEX0jXjFz4ftMEacmpWzS/YHZMrzhqmx/hCizzsD+\";s:24:\"js/conflict-detection.js\";s:71:\"sha384-1yE9Wj7LRkXyyUe0SlAsUwkMCqav8PeA/E9JQG6l1eM0VF+CZLdyD2eMeXRAGlDU\";s:17:\"js/fontawesome.js\";s:71:\"sha384-/iuJV08jLDUeRALEMlZ6fs0Bw++/li2mlOSJxBM7Iv5yj5XbrUdLKtMQN43ZZFBp\";s:13:\"js/regular.js\";s:71:\"sha384-k9pHsn2VVHLVUoLLHm5UPmO16bFnmJc7la2s6uYaMQiHNADkZEig8rlqQaqLI150\";s:11:\"js/solid.js\";s:71:\"sha384-zBYnK6/d/8LjD972/72gCvlHfb+ySSWaznogBkpV6JsVtY9cvEmRy1ACPom2Frtr\";s:14:\"js/v4-shims.js\";s:71:\"sha384-qx63XMht9MNrP09QOmEVrRXzomNz1CKA/p07kyef8nQ+qC/FNDZROxdpMzpLVjeD\";}s:3:\"pro\";a:0:{}}}}}}','no'),(67415,'_transient_timeout_jetpack_https_test','1695877081','no'),(67416,'_transient_jetpack_https_test','1','no'),(67417,'_transient_timeout_jetpack_https_test_message','1695877081','no'),(67421,'_site_transient_timeout_theme_roots','1695792481','no'),(67422,'_site_transient_theme_roots','a:6:{s:7:\"dt-the7\";s:7:\"/themes\";s:10:\"storefront\";s:7:\"/themes\";s:12:\"twentytwenty\";s:7:\"/themes\";s:15:\"twentytwentyone\";s:7:\"/themes\";s:17:\"twentytwentythree\";s:7:\"/themes\";s:15:\"twentytwentytwo\";s:7:\"/themes\";}','no'),(67398,'_transient_timeout__woocommerce_helper_updates','1695810025','no'),(67399,'_transient__woocommerce_helper_updates','a:4:{s:4:\"hash\";s:32:\"d751713988987e9331980363e24189ce\";s:7:\"updated\";i:1695766825;s:8:\"products\";a:0:{}s:6:\"errors\";a:1:{i:0;s:10:\"http-error\";}}','no'),(1423,'the7_demo_content_items_list','a:72:{s:7:\"landing\";a:10:{s:5:\"title\";s:7:\"Landing\";s:2:\"id\";s:7:\"landing\";s:10:\"screenshot\";s:46:\"//repo.the7.io/demo-content/assets/landing.jpg\";s:4:\"link\";s:16:\"https://the7.io/\";s:16:\"required_plugins\";a:3:{i:0;s:12:\"dt-the7-core\";i:1;s:9:\"elementor\";i:2;s:12:\"pro-elements\";}s:4:\"tags\";a:2:{i:0;s:8:\"one page\";i:1;s:9:\"elementor\";}s:17:\"attachments_batch\";i:3;s:19:\"include_attachments\";b:1;s:11:\"top_content\";s:0:\"\";s:14:\"bottom_content\";s:0:\"\";}s:14:\"elementor-main\";a:10:{s:5:\"title\";s:9:\"Main Demo\";s:2:\"id\";s:14:\"elementor-main\";s:10:\"screenshot\";s:53:\"//repo.the7.io/demo-content/assets/elementor-main.jpg\";s:4:\"link\";s:30:\"https://the7.io/elementor-main\";s:16:\"required_plugins\";a:4:{i:0;s:12:\"dt-the7-core\";i:1;s:9:\"elementor\";i:2;s:12:\"pro-elements\";i:3;s:11:\"woocommerce\";}s:4:\"tags\";a:3:{i:0;s:10:\"multi page\";i:1;s:9:\"elementor\";i:2;s:5:\"store\";}s:17:\"attachments_batch\";i:3;s:19:\"include_attachments\";b:1;s:11:\"top_content\";s:0:\"\";s:14:\"bottom_content\";s:0:\"\";}s:20:\"elementor-restaurant\";a:10:{s:5:\"title\";s:10:\"Restaurant\";s:2:\"id\";s:20:\"elementor-restaurant\";s:10:\"screenshot\";s:59:\"//repo.the7.io/demo-content/assets/elementor-restaurant.jpg\";s:4:\"link\";s:36:\"https://the7.io/elementor-restaurant\";s:16:\"required_plugins\";a:2:{i:0;s:9:\"elementor\";i:1;s:12:\"pro-elements\";}s:4:\"tags\";a:2:{i:0;s:10:\"multi page\";i:1;s:9:\"elementor\";}s:17:\"attachments_batch\";i:3;s:19:\"include_attachments\";b:1;s:11:\"top_content\";s:0:\"\";s:14:\"bottom_content\";s:0:\"\";}s:17:\"elementor-company\";a:10:{s:5:\"title\";s:7:\"Company\";s:2:\"id\";s:17:\"elementor-company\";s:10:\"screenshot\";s:56:\"//repo.the7.io/demo-content/assets/elementor-company.jpg\";s:4:\"link\";s:33:\"https://the7.io/elementor-company\";s:16:\"required_plugins\";a:4:{i:0;s:12:\"dt-the7-core\";i:1;s:9:\"elementor\";i:2;s:12:\"pro-elements\";i:3;s:9:\"revslider\";}s:4:\"tags\";a:2:{i:0;s:10:\"multi page\";i:1;s:9:\"elementor\";}s:17:\"attachments_batch\";i:3;s:19:\"include_attachments\";b:1;s:11:\"top_content\";s:0:\"\";s:14:\"bottom_content\";s:0:\"\";}s:6:\"retail\";a:10:{s:5:\"title\";s:11:\"Retail Shop\";s:2:\"id\";s:6:\"retail\";s:10:\"screenshot\";s:45:\"//repo.the7.io/demo-content/assets/retail.jpg\";s:4:\"link\";s:22:\"https://the7.io/retail\";s:16:\"required_plugins\";a:3:{i:0;s:9:\"elementor\";i:1;s:12:\"pro-elements\";i:2;s:11:\"woocommerce\";}s:4:\"tags\";a:3:{i:0;s:10:\"multi page\";i:1;s:9:\"elementor\";i:2;s:5:\"store\";}s:17:\"attachments_batch\";i:3;s:19:\"include_attachments\";b:1;s:11:\"top_content\";s:0:\"\";s:14:\"bottom_content\";s:0:\"\";}s:14:\"elementor-shop\";a:10:{s:5:\"title\";s:11:\"Online Shop\";s:2:\"id\";s:14:\"elementor-shop\";s:10:\"screenshot\";s:53:\"//repo.the7.io/demo-content/assets/elementor-shop.jpg\";s:4:\"link\";s:30:\"https://the7.io/elementor-shop\";s:16:\"required_plugins\";a:3:{i:0;s:9:\"elementor\";i:1;s:12:\"pro-elements\";i:2;s:11:\"woocommerce\";}s:4:\"tags\";a:3:{i:0;s:10:\"multi page\";i:1;s:9:\"elementor\";i:2;s:5:\"store\";}s:17:\"attachments_batch\";i:3;s:19:\"include_attachments\";b:1;s:11:\"top_content\";s:0:\"\";s:14:\"bottom_content\";s:0:\"\";}s:4:\"main\";a:10:{s:5:\"title\";s:17:\"Classic Main Demo\";s:2:\"id\";s:4:\"main\";s:10:\"screenshot\";s:43:\"//repo.the7.io/demo-content/assets/main.jpg\";s:4:\"link\";s:21:\"https://the7.io/main/\";s:16:\"required_plugins\";a:6:{i:0;s:12:\"dt-the7-core\";i:1;s:10:\"go_pricing\";i:2;s:11:\"js_composer\";i:3;s:9:\"revslider\";i:4;s:18:\"Ultimate_VC_Addons\";i:5;s:11:\"woocommerce\";}s:4:\"tags\";a:3:{i:0;s:10:\"multi page\";i:1;s:8:\"wpbakery\";i:2;s:5:\"store\";}s:17:\"attachments_batch\";i:3;s:19:\"include_attachments\";b:1;s:11:\"top_content\";s:0:\"\";s:14:\"bottom_content\";s:0:\"\";}s:10:\"accounting\";a:10:{s:5:\"title\";s:10:\"Accounting\";s:2:\"id\";s:10:\"accounting\";s:10:\"screenshot\";s:49:\"//repo.the7.io/demo-content/assets/accounting.jpg\";s:4:\"link\";s:26:\"https://the7.io/accounting\";s:16:\"required_plugins\";a:3:{i:0;s:12:\"dt-the7-core\";i:1;s:9:\"elementor\";i:2;s:12:\"pro-elements\";}s:4:\"tags\";a:2:{i:0;s:10:\"multi page\";i:1;s:9:\"elementor\";}s:17:\"attachments_batch\";i:3;s:19:\"include_attachments\";b:1;s:11:\"top_content\";s:0:\"\";s:14:\"bottom_content\";s:0:\"\";}s:10:\"sales-page\";a:10:{s:5:\"title\";s:18:\"Sales Landing Page\";s:2:\"id\";s:10:\"sales-page\";s:10:\"screenshot\";s:49:\"//repo.the7.io/demo-content/assets/sales-page.jpg\";s:4:\"link\";s:27:\"https://the7.io/sales-page/\";s:16:\"required_plugins\";a:3:{i:0;s:9:\"elementor\";i:1;s:12:\"pro-elements\";i:2;s:11:\"woocommerce\";}s:4:\"tags\";a:3:{i:0;s:8:\"one page\";i:1;s:9:\"elementor\";i:2;s:5:\"store\";}s:17:\"attachments_batch\";i:3;s:19:\"include_attachments\";b:1;s:11:\"top_content\";s:0:\"\";s:14:\"bottom_content\";s:0:\"\";}s:6:\"winery\";a:10:{s:5:\"title\";s:6:\"Winery\";s:2:\"id\";s:6:\"winery\";s:10:\"screenshot\";s:45:\"//repo.the7.io/demo-content/assets/winery.jpg\";s:4:\"link\";s:23:\"https://the7.io/winery/\";s:16:\"required_plugins\";a:3:{i:0;s:9:\"elementor\";i:1;s:12:\"pro-elements\";i:2;s:11:\"woocommerce\";}s:4:\"tags\";a:3:{i:0;s:10:\"multi page\";i:1;s:9:\"elementor\";i:2;s:5:\"store\";}s:17:\"attachments_batch\";i:3;s:19:\"include_attachments\";b:1;s:11:\"top_content\";s:0:\"\";s:14:\"bottom_content\";s:0:\"\";}s:16:\"elementor-agency\";a:10:{s:5:\"title\";s:16:\"Elementor Agency\";s:2:\"id\";s:16:\"elementor-agency\";s:10:\"screenshot\";s:55:\"//repo.the7.io/demo-content/assets/elementor-agency.jpg\";s:4:\"link\";s:33:\"https://the7.io/elementor-agency/\";s:16:\"required_plugins\";a:3:{i:0;s:9:\"elementor\";i:1;s:12:\"pro-elements\";i:2;s:12:\"dt-the7-core\";}s:4:\"tags\";a:2:{i:0;s:8:\"one page\";i:1;s:9:\"elementor\";}s:17:\"attachments_batch\";i:3;s:19:\"include_attachments\";b:1;s:11:\"top_content\";s:0:\"\";s:14:\"bottom_content\";s:0:\"\";}s:13:\"fashion-store\";a:10:{s:5:\"title\";s:13:\"Fashion Store\";s:2:\"id\";s:13:\"fashion-store\";s:10:\"screenshot\";s:52:\"//repo.the7.io/demo-content/assets/fashion-store.jpg\";s:4:\"link\";s:30:\"https://the7.io/fashion-store/\";s:16:\"required_plugins\";a:5:{i:0;s:9:\"elementor\";i:1;s:12:\"pro-elements\";i:2;s:12:\"dt-the7-core\";i:3;s:9:\"revslider\";i:4;s:11:\"woocommerce\";}s:4:\"tags\";a:3:{i:0;s:10:\"multi page\";i:1;s:9:\"elementor\";i:2;s:5:\"store\";}s:17:\"attachments_batch\";i:3;s:19:\"include_attachments\";b:1;s:11:\"top_content\";s:0:\"\";s:14:\"bottom_content\";s:0:\"\";}s:12:\"fashion-blog\";a:10:{s:5:\"title\";s:12:\"Fashion Blog\";s:2:\"id\";s:12:\"fashion-blog\";s:10:\"screenshot\";s:51:\"//repo.the7.io/demo-content/assets/fashion-blog.jpg\";s:4:\"link\";s:29:\"https://the7.io/fashion-blog/\";s:16:\"required_plugins\";a:3:{i:0;s:9:\"elementor\";i:1;s:12:\"pro-elements\";i:2;s:12:\"dt-the7-core\";}s:4:\"tags\";a:2:{i:0;s:10:\"multi page\";i:1;s:9:\"elementor\";}s:17:\"attachments_batch\";i:3;s:19:\"include_attachments\";b:1;s:11:\"top_content\";s:0:\"\";s:14:\"bottom_content\";s:0:\"\";}s:17:\"business-advisors\";a:10:{s:5:\"title\";s:17:\"Business Advisors\";s:2:\"id\";s:17:\"business-advisors\";s:10:\"screenshot\";s:56:\"//repo.the7.io/demo-content/assets/business-advisors.jpg\";s:4:\"link\";s:34:\"https://the7.io/business-advisors/\";s:16:\"required_plugins\";a:4:{i:0;s:9:\"elementor\";i:1;s:12:\"pro-elements\";i:2;s:12:\"dt-the7-core\";i:3;s:11:\"woocommerce\";}s:4:\"tags\";a:2:{i:0;s:10:\"multi page\";i:1;s:9:\"elementor\";}s:17:\"attachments_batch\";i:3;s:19:\"include_attachments\";b:1;s:11:\"top_content\";s:0:\"\";s:14:\"bottom_content\";s:0:\"\";}s:14:\"online-courses\";a:10:{s:5:\"title\";s:14:\"Online Courses\";s:2:\"id\";s:14:\"online-courses\";s:10:\"screenshot\";s:53:\"//repo.the7.io/demo-content/assets/online-courses.jpg\";s:4:\"link\";s:31:\"https://the7.io/online-courses/\";s:16:\"required_plugins\";a:5:{i:0;s:9:\"elementor\";i:1;s:12:\"pro-elements\";i:2;s:12:\"dt-the7-core\";i:3;s:4:\"give\";i:4;s:11:\"woocommerce\";}s:4:\"tags\";a:3:{i:0;s:10:\"multi page\";i:1;s:9:\"elementor\";i:2;s:5:\"store\";}s:17:\"attachments_batch\";i:3;s:19:\"include_attachments\";b:1;s:11:\"top_content\";s:0:\"\";s:14:\"bottom_content\";s:0:\"\";}s:32:\"elementor-minimal-creative-light\";a:10:{s:5:\"title\";s:22:\"Minimal Creative Light\";s:2:\"id\";s:32:\"elementor-minimal-creative-light\";s:10:\"screenshot\";s:71:\"//repo.the7.io/demo-content/assets/elementor-minimal-creative-light.jpg\";s:4:\"link\";s:49:\"https://the7.io/elementor-minimal-creative-light/\";s:16:\"required_plugins\";a:3:{i:0;s:9:\"elementor\";i:1;s:12:\"pro-elements\";i:2;s:12:\"dt-the7-core\";}s:4:\"tags\";a:2:{i:0;s:10:\"multi page\";i:1;s:9:\"elementor\";}s:17:\"attachments_batch\";i:3;s:19:\"include_attachments\";b:1;s:11:\"top_content\";s:0:\"\";s:14:\"bottom_content\";s:0:\"\";}s:31:\"elementor-minimal-creative-dark\";a:10:{s:5:\"title\";s:31:\"Elementor Minimal Creative Dark\";s:2:\"id\";s:31:\"elementor-minimal-creative-dark\";s:10:\"screenshot\";s:70:\"//repo.the7.io/demo-content/assets/elementor-minimal-creative-dark.jpg\";s:4:\"link\";s:48:\"https://the7.io/elementor-minimal-creative-dark/\";s:16:\"required_plugins\";a:3:{i:0;s:9:\"elementor\";i:1;s:12:\"pro-elements\";i:2;s:12:\"dt-the7-core\";}s:4:\"tags\";a:2:{i:0;s:10:\"multi page\";i:1;s:9:\"elementor\";}s:17:\"attachments_batch\";i:3;s:19:\"include_attachments\";b:1;s:11:\"top_content\";s:0:\"\";s:14:\"bottom_content\";s:0:\"\";}s:9:\"logistics\";a:10:{s:5:\"title\";s:15:\"Seven Logistics\";s:2:\"id\";s:9:\"logistics\";s:10:\"screenshot\";s:48:\"//repo.the7.io/demo-content/assets/logistics.jpg\";s:4:\"link\";s:26:\"https://the7.io/logistics/\";s:16:\"required_plugins\";a:4:{i:0;s:14:\"contact-form-7\";i:1;s:9:\"elementor\";i:2;s:12:\"pro-elements\";i:3;s:12:\"dt-the7-core\";}s:4:\"tags\";a:2:{i:0;s:10:\"multi page\";i:1;s:9:\"elementor\";}s:17:\"attachments_batch\";i:3;s:19:\"include_attachments\";b:1;s:11:\"top_content\";s:0:\"\";s:14:\"bottom_content\";s:0:\"\";}s:10:\"consulting\";a:10:{s:5:\"title\";s:16:\"Seven Consulting\";s:2:\"id\";s:10:\"consulting\";s:10:\"screenshot\";s:49:\"//repo.the7.io/demo-content/assets/consulting.jpg\";s:4:\"link\";s:27:\"https://the7.io/consulting/\";s:16:\"required_plugins\";a:4:{i:0;s:14:\"contact-form-7\";i:1;s:9:\"elementor\";i:2;s:12:\"pro-elements\";i:3;s:12:\"dt-the7-core\";}s:4:\"tags\";a:2:{i:0;s:8:\"one page\";i:1;s:9:\"elementor\";}s:17:\"attachments_batch\";i:3;s:19:\"include_attachments\";b:1;s:11:\"top_content\";s:0:\"\";s:14:\"bottom_content\";s:0:\"\";}s:18:\"elementor-business\";a:10:{s:5:\"title\";s:18:\"Elementor Business\";s:2:\"id\";s:18:\"elementor-business\";s:10:\"screenshot\";s:57:\"//repo.the7.io/demo-content/assets/elementor-business.jpg\";s:4:\"link\";s:35:\"https://the7.io/elementor-business/\";s:16:\"required_plugins\";a:5:{i:0;s:14:\"contact-form-7\";i:1;s:9:\"elementor\";i:2;s:12:\"pro-elements\";i:3;s:12:\"dt-the7-core\";i:4;s:9:\"revslider\";}s:4:\"tags\";a:2:{i:0;s:10:\"multi page\";i:1;s:9:\"elementor\";}s:17:\"attachments_batch\";i:3;s:19:\"include_attachments\";b:1;s:11:\"top_content\";s:0:\"\";s:14:\"bottom_content\";s:0:\"\";}s:8:\"clothing\";a:10:{s:5:\"title\";s:8:\"Clothing\";s:2:\"id\";s:8:\"clothing\";s:10:\"screenshot\";s:47:\"//repo.the7.io/demo-content/assets/clothing.jpg\";s:4:\"link\";s:25:\"https://the7.io/clothing/\";s:16:\"required_plugins\";a:6:{i:0;s:12:\"dt-the7-core\";i:1;s:11:\"js_composer\";i:2;s:9:\"revslider\";i:3;s:18:\"Ultimate_VC_Addons\";i:4;s:11:\"woocommerce\";i:5;s:23:\"ti-woocommerce-wishlist\";}s:4:\"tags\";a:3:{i:0;s:10:\"multi page\";i:1;s:8:\"wpbakery\";i:2;s:5:\"store\";}s:17:\"attachments_batch\";i:3;s:19:\"include_attachments\";b:1;s:11:\"top_content\";s:0:\"\";s:14:\"bottom_content\";s:0:\"\";}s:16:\"wpbakery-starter\";a:10:{s:5:\"title\";s:16:\"WPBakery Starter\";s:2:\"id\";s:16:\"wpbakery-starter\";s:10:\"screenshot\";s:55:\"//repo.the7.io/demo-content/assets/wpbakery-starter.jpg\";s:4:\"link\";s:33:\"https://the7.io/wpbakery-starter/\";s:16:\"required_plugins\";a:4:{i:0;s:12:\"dt-the7-core\";i:1;s:11:\"js_composer\";i:2;s:9:\"revslider\";i:3;s:18:\"Ultimate_VC_Addons\";}s:4:\"tags\";a:2:{i:0;s:10:\"multi page\";i:1;s:8:\"wpbakery\";}s:17:\"attachments_batch\";i:3;s:19:\"include_attachments\";b:1;s:11:\"top_content\";s:0:\"\";s:14:\"bottom_content\";s:0:\"\";}s:17:\"elementor-starter\";a:10:{s:5:\"title\";s:17:\"Elementor Starter\";s:2:\"id\";s:17:\"elementor-starter\";s:10:\"screenshot\";s:56:\"//repo.the7.io/demo-content/assets/elementor-starter.jpg\";s:4:\"link\";s:34:\"https://the7.io/elementor-starter/\";s:16:\"required_plugins\";a:3:{i:0;s:12:\"dt-the7-core\";i:1;s:9:\"elementor\";i:2;s:12:\"pro-elements\";}s:4:\"tags\";a:2:{i:0;s:10:\"multi page\";i:1;s:9:\"elementor\";}s:17:\"attachments_batch\";i:3;s:19:\"include_attachments\";b:1;s:11:\"top_content\";s:0:\"\";s:14:\"bottom_content\";s:0:\"\";}s:7:\"company\";a:10:{s:5:\"title\";s:7:\"Company\";s:2:\"id\";s:7:\"company\";s:10:\"screenshot\";s:46:\"//repo.the7.io/demo-content/assets/company.jpg\";s:4:\"link\";s:24:\"https://the7.io/company/\";s:16:\"required_plugins\";a:4:{i:0;s:12:\"dt-the7-core\";i:1;s:11:\"js_composer\";i:2;s:9:\"revslider\";i:3;s:18:\"Ultimate_VC_Addons\";}s:4:\"tags\";a:2:{i:0;s:10:\"multi page\";i:1;s:8:\"wpbakery\";}s:17:\"attachments_batch\";i:3;s:19:\"include_attachments\";b:1;s:11:\"top_content\";s:0:\"\";s:14:\"bottom_content\";s:0:\"\";}s:13:\"beauty-studio\";a:10:{s:5:\"title\";s:13:\"Beauty Studio\";s:2:\"id\";s:13:\"beauty-studio\";s:10:\"screenshot\";s:52:\"//repo.the7.io/demo-content/assets/beauty-studio.jpg\";s:4:\"link\";s:30:\"https://the7.io/beauty-studio/\";s:16:\"required_plugins\";a:4:{i:0;s:12:\"dt-the7-core\";i:1;s:11:\"js_composer\";i:2;s:9:\"revslider\";i:3;s:18:\"Ultimate_VC_Addons\";}s:4:\"tags\";a:2:{i:0;s:10:\"multi page\";i:1;s:8:\"wpbakery\";}s:17:\"attachments_batch\";i:3;s:19:\"include_attachments\";b:1;s:11:\"top_content\";s:0:\"\";s:14:\"bottom_content\";s:0:\"\";}s:6:\"dental\";a:10:{s:5:\"title\";s:6:\"Dental\";s:2:\"id\";s:6:\"dental\";s:10:\"screenshot\";s:45:\"//repo.the7.io/demo-content/assets/dental.jpg\";s:4:\"link\";s:23:\"https://the7.io/dental/\";s:16:\"required_plugins\";a:4:{i:0;s:12:\"dt-the7-core\";i:1;s:11:\"js_composer\";i:2;s:9:\"revslider\";i:3;s:18:\"Ultimate_VC_Addons\";}s:4:\"tags\";a:2:{i:0;s:10:\"multi page\";i:1;s:8:\"wpbakery\";}s:17:\"attachments_batch\";i:3;s:19:\"include_attachments\";b:1;s:11:\"top_content\";s:0:\"\";s:14:\"bottom_content\";s:0:\"\";}s:10:\"dev-studio\";a:10:{s:5:\"title\";s:9:\"Seven Dev\";s:2:\"id\";s:10:\"dev-studio\";s:10:\"screenshot\";s:49:\"//repo.the7.io/demo-content/assets/dev-studio.jpg\";s:4:\"link\";s:27:\"https://the7.io/dev-studio/\";s:16:\"required_plugins\";a:3:{i:0;s:12:\"dt-the7-core\";i:1;s:11:\"js_composer\";i:2;s:18:\"Ultimate_VC_Addons\";}s:4:\"tags\";a:2:{i:0;s:10:\"multi page\";i:1;s:8:\"wpbakery\";}s:17:\"attachments_batch\";i:3;s:19:\"include_attachments\";b:1;s:11:\"top_content\";s:0:\"\";s:14:\"bottom_content\";s:0:\"\";}s:12:\"nutritionist\";a:10:{s:5:\"title\";s:12:\"Nutritionist\";s:2:\"id\";s:12:\"nutritionist\";s:10:\"screenshot\";s:51:\"//repo.the7.io/demo-content/assets/nutritionist.jpg\";s:4:\"link\";s:29:\"https://the7.io/nutritionist/\";s:16:\"required_plugins\";a:4:{i:0;s:9:\"revslider\";i:1;s:12:\"dt-the7-core\";i:2;s:11:\"js_composer\";i:3;s:18:\"Ultimate_VC_Addons\";}s:4:\"tags\";a:2:{i:0;s:8:\"one page\";i:1;s:8:\"wpbakery\";}s:17:\"attachments_batch\";i:3;s:19:\"include_attachments\";b:1;s:11:\"top_content\";s:0:\"\";s:14:\"bottom_content\";s:0:\"\";}s:7:\"wedding\";a:10:{s:5:\"title\";s:7:\"Wedding\";s:2:\"id\";s:7:\"wedding\";s:10:\"screenshot\";s:46:\"//repo.the7.io/demo-content/assets/wedding.jpg\";s:4:\"link\";s:24:\"https://the7.io/wedding/\";s:16:\"required_plugins\";a:5:{i:0;s:9:\"revslider\";i:1;s:12:\"dt-the7-core\";i:2;s:14:\"contact-form-7\";i:3;s:11:\"js_composer\";i:4;s:18:\"Ultimate_VC_Addons\";}s:4:\"tags\";a:2:{i:0;s:8:\"one page\";i:1;s:8:\"wpbakery\";}s:17:\"attachments_batch\";i:3;s:19:\"include_attachments\";b:1;s:11:\"top_content\";s:0:\"\";s:14:\"bottom_content\";s:0:\"\";}s:4:\"yoga\";a:10:{s:5:\"title\";s:4:\"Yoga\";s:2:\"id\";s:4:\"yoga\";s:10:\"screenshot\";s:43:\"//repo.the7.io/demo-content/assets/yoga.jpg\";s:4:\"link\";s:21:\"https://the7.io/yoga/\";s:16:\"required_plugins\";a:5:{i:0;s:12:\"dt-the7-core\";i:1;s:14:\"contact-form-7\";i:2;s:11:\"js_composer\";i:3;s:18:\"Ultimate_VC_Addons\";i:4;s:15:\"stripe-payments\";}s:4:\"tags\";a:2:{i:0;s:10:\"multi page\";i:1;s:8:\"wpbakery\";}s:17:\"attachments_batch\";i:3;s:19:\"include_attachments\";b:1;s:11:\"top_content\";s:0:\"\";s:14:\"bottom_content\";s:0:\"\";}s:5:\"hotel\";a:10:{s:5:\"title\";s:5:\"Hotel\";s:2:\"id\";s:5:\"hotel\";s:10:\"screenshot\";s:44:\"//repo.the7.io/demo-content/assets/hotel.jpg\";s:4:\"link\";s:22:\"https://the7.io/hotel/\";s:16:\"required_plugins\";a:6:{i:0;s:9:\"revslider\";i:1;s:12:\"dt-the7-core\";i:2;s:14:\"contact-form-7\";i:3;s:11:\"js_composer\";i:4;s:18:\"Ultimate_VC_Addons\";i:5;s:28:\"motopress-hotel-booking-lite\";}s:4:\"tags\";a:2:{i:0;s:10:\"multi page\";i:1;s:8:\"wpbakery\";}s:17:\"attachments_batch\";i:3;s:19:\"include_attachments\";b:1;s:11:\"top_content\";s:0:\"\";s:14:\"bottom_content\";s:0:\"\";}s:6:\"church\";a:10:{s:5:\"title\";s:6:\"Church\";s:2:\"id\";s:6:\"church\";s:10:\"screenshot\";s:45:\"//repo.the7.io/demo-content/assets/church.jpg\";s:4:\"link\";s:23:\"https://the7.io/church/\";s:16:\"required_plugins\";a:4:{i:0;s:12:\"dt-the7-core\";i:1;s:11:\"js_composer\";i:2;s:18:\"Ultimate_VC_Addons\";i:3;s:4:\"give\";}s:4:\"tags\";a:2:{i:0;s:10:\"multi page\";i:1;s:8:\"wpbakery\";}s:17:\"attachments_batch\";i:3;s:19:\"include_attachments\";b:1;s:11:\"top_content\";s:0:\"\";s:14:\"bottom_content\";s:0:\"\";}s:15:\"modern-business\";a:10:{s:5:\"title\";s:15:\"Modern Business\";s:2:\"id\";s:15:\"modern-business\";s:10:\"screenshot\";s:54:\"//repo.the7.io/demo-content/assets/modern-business.jpg\";s:4:\"link\";s:32:\"https://the7.io/modern-business/\";s:16:\"required_plugins\";a:4:{i:0;s:12:\"dt-the7-core\";i:1;s:9:\"revslider\";i:2;s:11:\"js_composer\";i:3;s:18:\"Ultimate_VC_Addons\";}s:4:\"tags\";a:2:{i:0;s:10:\"multi page\";i:1;s:8:\"wpbakery\";}s:17:\"attachments_batch\";i:3;s:19:\"include_attachments\";b:1;s:11:\"top_content\";s:0:\"\";s:14:\"bottom_content\";s:0:\"\";}s:16:\"minimal-creative\";a:10:{s:5:\"title\";s:16:\"Minimal Creative\";s:2:\"id\";s:16:\"minimal-creative\";s:10:\"screenshot\";s:55:\"//repo.the7.io/demo-content/assets/minimal-creative.jpg\";s:4:\"link\";s:33:\"https://the7.io/minimal-creative/\";s:16:\"required_plugins\";a:4:{i:0;s:12:\"dt-the7-core\";i:1;s:9:\"revslider\";i:2;s:11:\"js_composer\";i:3;s:18:\"Ultimate_VC_Addons\";}s:4:\"tags\";a:2:{i:0;s:10:\"multi page\";i:1;s:8:\"wpbakery\";}s:17:\"attachments_batch\";i:3;s:19:\"include_attachments\";b:1;s:11:\"top_content\";s:0:\"\";s:14:\"bottom_content\";s:0:\"\";}s:4:\"weed\";a:10:{s:5:\"title\";s:4:\"Weed\";s:2:\"id\";s:4:\"weed\";s:10:\"screenshot\";s:43:\"//repo.the7.io/demo-content/assets/weed.jpg\";s:4:\"link\";s:21:\"https://the7.io/weed/\";s:16:\"required_plugins\";a:5:{i:0;s:12:\"dt-the7-core\";i:1;s:9:\"revslider\";i:2;s:11:\"js_composer\";i:3;s:18:\"Ultimate_VC_Addons\";i:4;s:11:\"woocommerce\";}s:4:\"tags\";a:3:{i:0;s:10:\"multi page\";i:1;s:8:\"wpbakery\";i:2;s:5:\"store\";}s:17:\"attachments_batch\";i:3;s:19:\"include_attachments\";b:1;s:11:\"top_content\";s:0:\"\";s:14:\"bottom_content\";s:0:\"\";}s:10:\"g-creative\";a:10:{s:5:\"title\";s:18:\"Gutenberg Creative\";s:2:\"id\";s:10:\"g-creative\";s:10:\"screenshot\";s:49:\"//repo.the7.io/demo-content/assets/g-creative.jpg\";s:4:\"link\";s:27:\"https://the7.io/g-creative/\";s:16:\"required_plugins\";a:3:{i:0;s:14:\"contact-form-7\";i:1;s:12:\"dt-the7-core\";i:2;s:9:\"revslider\";}s:4:\"tags\";a:2:{i:0;s:10:\"multi page\";i:1;s:9:\"gutenberg\";}s:17:\"attachments_batch\";i:3;s:19:\"include_attachments\";b:1;s:11:\"top_content\";s:0:\"\";s:14:\"bottom_content\";s:0:\"\";}s:10:\"g-business\";a:10:{s:5:\"title\";s:18:\"Gutenberg Business\";s:2:\"id\";s:10:\"g-business\";s:10:\"screenshot\";s:49:\"//repo.the7.io/demo-content/assets/g-business.jpg\";s:4:\"link\";s:27:\"https://the7.io/g-business/\";s:16:\"required_plugins\";a:3:{i:0;s:14:\"contact-form-7\";i:1;s:12:\"dt-the7-core\";i:2;s:9:\"revslider\";}s:4:\"tags\";a:2:{i:0;s:10:\"multi page\";i:1;s:9:\"gutenberg\";}s:17:\"attachments_batch\";i:3;s:19:\"include_attachments\";b:1;s:11:\"top_content\";s:0:\"\";s:14:\"bottom_content\";s:0:\"\";}s:9:\"corporate\";a:10:{s:5:\"title\";s:9:\"Corporate\";s:2:\"id\";s:9:\"corporate\";s:10:\"screenshot\";s:48:\"//repo.the7.io/demo-content/assets/corporate.jpg\";s:4:\"link\";s:26:\"https://the7.io/corporate/\";s:16:\"required_plugins\";a:5:{i:0;s:14:\"contact-form-7\";i:1;s:12:\"dt-the7-core\";i:2;s:11:\"js_composer\";i:3;s:9:\"revslider\";i:4;s:18:\"Ultimate_VC_Addons\";}s:4:\"tags\";a:2:{i:0;s:10:\"multi page\";i:1;s:8:\"wpbakery\";}s:17:\"attachments_batch\";i:3;s:19:\"include_attachments\";b:1;s:11:\"top_content\";s:0:\"\";s:14:\"bottom_content\";s:0:\"\";}s:6:\"agency\";a:10:{s:5:\"title\";s:6:\"Agency\";s:2:\"id\";s:6:\"agency\";s:10:\"screenshot\";s:45:\"//repo.the7.io/demo-content/assets/agency.jpg\";s:4:\"link\";s:23:\"https://the7.io/agency/\";s:16:\"required_plugins\";a:4:{i:0;s:12:\"dt-the7-core\";i:1;s:11:\"js_composer\";i:2;s:9:\"revslider\";i:3;s:18:\"Ultimate_VC_Addons\";}s:4:\"tags\";a:2:{i:0;s:10:\"multi page\";i:1;s:8:\"wpbakery\";}s:17:\"attachments_batch\";i:3;s:19:\"include_attachments\";b:1;s:11:\"top_content\";s:0:\"\";s:14:\"bottom_content\";s:0:\"\";}s:12:\"event-agency\";a:10:{s:5:\"title\";s:12:\"Event Agency\";s:2:\"id\";s:12:\"event-agency\";s:10:\"screenshot\";s:51:\"//repo.the7.io/demo-content/assets/event-agency.jpg\";s:4:\"link\";s:29:\"https://the7.io/event-agency/\";s:16:\"required_plugins\";a:4:{i:0;s:12:\"dt-the7-core\";i:1;s:11:\"js_composer\";i:2;s:9:\"revslider\";i:3;s:18:\"Ultimate_VC_Addons\";}s:4:\"tags\";a:2:{i:0;s:10:\"multi page\";i:1;s:8:\"wpbakery\";}s:17:\"attachments_batch\";i:3;s:19:\"include_attachments\";b:1;s:11:\"top_content\";s:0:\"\";s:14:\"bottom_content\";s:0:\"\";}s:16:\"software-company\";a:10:{s:5:\"title\";s:16:\"Software Company\";s:2:\"id\";s:16:\"software-company\";s:10:\"screenshot\";s:55:\"//repo.the7.io/demo-content/assets/software-company.jpg\";s:4:\"link\";s:33:\"https://the7.io/software-company/\";s:16:\"required_plugins\";a:4:{i:0;s:12:\"dt-the7-core\";i:1;s:11:\"js_composer\";i:2;s:9:\"revslider\";i:3;s:18:\"Ultimate_VC_Addons\";}s:4:\"tags\";a:2:{i:0;s:10:\"multi page\";i:1;s:8:\"wpbakery\";}s:17:\"attachments_batch\";i:3;s:19:\"include_attachments\";b:1;s:11:\"top_content\";s:0:\"\";s:14:\"bottom_content\";s:0:\"\";}s:14:\"digital-agency\";a:10:{s:5:\"title\";s:17:\"Web Design Agency\";s:2:\"id\";s:14:\"digital-agency\";s:10:\"screenshot\";s:53:\"//repo.the7.io/demo-content/assets/digital-agency.jpg\";s:4:\"link\";s:31:\"https://the7.io/digital-agency/\";s:16:\"required_plugins\";a:4:{i:0;s:12:\"dt-the7-core\";i:1;s:11:\"js_composer\";i:2;s:9:\"revslider\";i:3;s:18:\"Ultimate_VC_Addons\";}s:4:\"tags\";a:2:{i:0;s:10:\"multi page\";i:1;s:8:\"wpbakery\";}s:17:\"attachments_batch\";i:3;s:19:\"include_attachments\";b:1;s:11:\"top_content\";s:0:\"\";s:14:\"bottom_content\";s:0:\"\";}s:11:\"small-store\";a:10:{s:5:\"title\";s:11:\"Small Store\";s:2:\"id\";s:11:\"small-store\";s:10:\"screenshot\";s:50:\"//repo.the7.io/demo-content/assets/small-store.jpg\";s:4:\"link\";s:28:\"https://the7.io/small-store/\";s:16:\"required_plugins\";a:5:{i:0;s:12:\"dt-the7-core\";i:1;s:11:\"js_composer\";i:2;s:9:\"revslider\";i:3;s:18:\"Ultimate_VC_Addons\";i:4;s:11:\"woocommerce\";}s:4:\"tags\";a:3:{i:0;s:8:\"one page\";i:1;s:8:\"wpbakery\";i:2;s:5:\"store\";}s:17:\"attachments_batch\";i:3;s:19:\"include_attachments\";b:1;s:11:\"top_content\";s:0:\"\";s:14:\"bottom_content\";s:0:\"\";}s:14:\"ecommerce-book\";a:10:{s:5:\"title\";s:10:\"Book Store\";s:2:\"id\";s:14:\"ecommerce-book\";s:10:\"screenshot\";s:49:\"//repo.the7.io/demo-content/assets/book-store.jpg\";s:4:\"link\";s:31:\"https://the7.io/ecommerce-book/\";s:16:\"required_plugins\";a:4:{i:0;s:11:\"js_composer\";i:1;s:9:\"revslider\";i:2;s:18:\"Ultimate_VC_Addons\";i:3;s:11:\"woocommerce\";}s:4:\"tags\";a:3:{i:0;s:8:\"one page\";i:1;s:8:\"wpbakery\";i:2;s:5:\"store\";}s:17:\"attachments_batch\";i:3;s:19:\"include_attachments\";b:0;s:11:\"top_content\";s:0:\"\";s:14:\"bottom_content\";s:0:\"\";}s:8:\"creative\";a:10:{s:5:\"title\";s:14:\"Digital Agency\";s:2:\"id\";s:8:\"creative\";s:10:\"screenshot\";s:47:\"//repo.the7.io/demo-content/assets/creative.jpg\";s:4:\"link\";s:25:\"https://the7.io/creative/\";s:16:\"required_plugins\";a:4:{i:0;s:12:\"dt-the7-core\";i:1;s:11:\"js_composer\";i:2;s:9:\"revslider\";i:3;s:18:\"Ultimate_VC_Addons\";}s:4:\"tags\";a:2:{i:0;s:10:\"multi page\";i:1;s:8:\"wpbakery\";}s:17:\"attachments_batch\";i:3;s:19:\"include_attachments\";b:1;s:11:\"top_content\";s:0:\"\";s:14:\"bottom_content\";s:0:\"\";}s:8:\"one-page\";a:10:{s:5:\"title\";s:15:\"Creative Agency\";s:2:\"id\";s:8:\"one-page\";s:10:\"screenshot\";s:47:\"//repo.the7.io/demo-content/assets/one-page.jpg\";s:4:\"link\";s:25:\"https://the7.io/one-page/\";s:16:\"required_plugins\";a:5:{i:0;s:12:\"dt-the7-core\";i:1;s:10:\"go_pricing\";i:2;s:11:\"js_composer\";i:3;s:9:\"revslider\";i:4;s:18:\"Ultimate_VC_Addons\";}s:4:\"tags\";a:2:{i:0;s:8:\"one page\";i:1;s:8:\"wpbakery\";}s:17:\"attachments_batch\";i:3;s:19:\"include_attachments\";b:1;s:11:\"top_content\";s:0:\"\";s:14:\"bottom_content\";s:0:\"\";}s:17:\"business-one-page\";a:10:{s:5:\"title\";s:25:\"Business One Page Website\";s:2:\"id\";s:17:\"business-one-page\";s:10:\"screenshot\";s:56:\"//repo.the7.io/demo-content/assets/business-one-page.jpg\";s:4:\"link\";s:34:\"https://the7.io/business-one-page/\";s:16:\"required_plugins\";a:4:{i:0;s:12:\"dt-the7-core\";i:1;s:11:\"js_composer\";i:2;s:9:\"revslider\";i:3;s:18:\"Ultimate_VC_Addons\";}s:4:\"tags\";a:2:{i:0;s:8:\"one page\";i:1;s:8:\"wpbakery\";}s:17:\"attachments_batch\";i:3;s:19:\"include_attachments\";b:1;s:11:\"top_content\";s:0:\"\";s:14:\"bottom_content\";s:0:\"\";}s:8:\"business\";a:10:{s:5:\"title\";s:8:\"Business\";s:2:\"id\";s:8:\"business\";s:10:\"screenshot\";s:47:\"//repo.the7.io/demo-content/assets/business.jpg\";s:4:\"link\";s:25:\"https://the7.io/business/\";s:16:\"required_plugins\";a:4:{i:0;s:12:\"dt-the7-core\";i:1;s:11:\"js_composer\";i:2;s:9:\"revslider\";i:3;s:18:\"Ultimate_VC_Addons\";}s:4:\"tags\";a:2:{i:0;s:10:\"multi page\";i:1;s:8:\"wpbakery\";}s:17:\"attachments_batch\";i:3;s:19:\"include_attachments\";b:0;s:11:\"top_content\";s:0:\"\";s:14:\"bottom_content\";s:0:\"\";}s:4:\"shop\";a:10:{s:5:\"title\";s:4:\"Shop\";s:2:\"id\";s:4:\"shop\";s:10:\"screenshot\";s:43:\"//repo.the7.io/demo-content/assets/shop.jpg\";s:4:\"link\";s:21:\"https://the7.io/shop/\";s:16:\"required_plugins\";a:5:{i:0;s:12:\"dt-the7-core\";i:1;s:11:\"js_composer\";i:2;s:9:\"revslider\";i:3;s:18:\"Ultimate_VC_Addons\";i:4;s:11:\"woocommerce\";}s:4:\"tags\";a:3:{i:0;s:10:\"multi page\";i:1;s:8:\"wpbakery\";i:2;s:5:\"store\";}s:17:\"attachments_batch\";i:3;s:19:\"include_attachments\";b:1;s:11:\"top_content\";s:0:\"\";s:14:\"bottom_content\";s:0:\"\";}s:6:\"coffee\";a:10:{s:5:\"title\";s:6:\"Coffee\";s:2:\"id\";s:6:\"coffee\";s:10:\"screenshot\";s:45:\"//repo.the7.io/demo-content/assets/coffee.jpg\";s:4:\"link\";s:23:\"https://the7.io/coffee/\";s:16:\"required_plugins\";a:4:{i:0;s:12:\"dt-the7-core\";i:1;s:11:\"js_composer\";i:2;s:9:\"revslider\";i:3;s:18:\"Ultimate_VC_Addons\";}s:4:\"tags\";a:2:{i:0;s:8:\"one page\";i:1;s:8:\"wpbakery\";}s:17:\"attachments_batch\";i:3;s:19:\"include_attachments\";b:1;s:11:\"top_content\";s:0:\"\";s:14:\"bottom_content\";s:0:\"\";}s:16:\"marketing-agency\";a:10:{s:5:\"title\";s:16:\"Marketing Agency\";s:2:\"id\";s:16:\"marketing-agency\";s:10:\"screenshot\";s:55:\"//repo.the7.io/demo-content/assets/marketing-agency.jpg\";s:4:\"link\";s:33:\"https://the7.io/marketing-agency/\";s:16:\"required_plugins\";a:4:{i:0;s:12:\"dt-the7-core\";i:1;s:11:\"js_composer\";i:2;s:9:\"revslider\";i:3;s:18:\"Ultimate_VC_Addons\";}s:4:\"tags\";a:2:{i:0;s:10:\"multi page\";i:1;s:8:\"wpbakery\";}s:17:\"attachments_batch\";i:3;s:19:\"include_attachments\";b:1;s:11:\"top_content\";s:0:\"\";s:14:\"bottom_content\";s:0:\"\";}s:12:\"construction\";a:10:{s:5:\"title\";s:12:\"Construction\";s:2:\"id\";s:12:\"construction\";s:10:\"screenshot\";s:51:\"//repo.the7.io/demo-content/assets/construction.jpg\";s:4:\"link\";s:29:\"https://the7.io/construction/\";s:16:\"required_plugins\";a:4:{i:0;s:12:\"dt-the7-core\";i:1;s:11:\"js_composer\";i:2;s:9:\"revslider\";i:3;s:18:\"Ultimate_VC_Addons\";}s:4:\"tags\";a:2:{i:0;s:10:\"multi page\";i:1;s:8:\"wpbakery\";}s:17:\"attachments_batch\";i:3;s:19:\"include_attachments\";b:1;s:11:\"top_content\";s:0:\"\";s:14:\"bottom_content\";s:0:\"\";}s:10:\"restaurant\";a:10:{s:5:\"title\";s:10:\"Restaurant\";s:2:\"id\";s:10:\"restaurant\";s:10:\"screenshot\";s:49:\"//repo.the7.io/demo-content/assets/restaurant.jpg\";s:4:\"link\";s:27:\"https://the7.io/restaurant/\";s:16:\"required_plugins\";a:4:{i:0;s:12:\"dt-the7-core\";i:1;s:11:\"js_composer\";i:2;s:9:\"revslider\";i:3;s:18:\"Ultimate_VC_Addons\";}s:4:\"tags\";a:2:{i:0;s:10:\"multi page\";i:1;s:8:\"wpbakery\";}s:17:\"attachments_batch\";i:3;s:19:\"include_attachments\";b:1;s:11:\"top_content\";s:0:\"\";s:14:\"bottom_content\";s:0:\"\";}s:7:\"medical\";a:10:{s:5:\"title\";s:7:\"Medical\";s:2:\"id\";s:7:\"medical\";s:10:\"screenshot\";s:46:\"//repo.the7.io/demo-content/assets/medical.jpg\";s:4:\"link\";s:24:\"https://the7.io/medical/\";s:16:\"required_plugins\";a:4:{i:0;s:12:\"dt-the7-core\";i:1;s:11:\"js_composer\";i:2;s:9:\"revslider\";i:3;s:18:\"Ultimate_VC_Addons\";}s:4:\"tags\";a:2:{i:0;s:10:\"multi page\";i:1;s:8:\"wpbakery\";}s:17:\"attachments_batch\";i:3;s:19:\"include_attachments\";b:0;s:11:\"top_content\";s:0:\"\";s:14:\"bottom_content\";s:0:\"\";}s:4:\"news\";a:10:{s:5:\"title\";s:11:\"Blog & News\";s:2:\"id\";s:4:\"news\";s:10:\"screenshot\";s:43:\"//repo.the7.io/demo-content/assets/news.jpg\";s:4:\"link\";s:21:\"https://the7.io/news/\";s:16:\"required_plugins\";a:3:{i:0;s:12:\"dt-the7-core\";i:1;s:11:\"js_composer\";i:2;s:18:\"Ultimate_VC_Addons\";}s:4:\"tags\";a:2:{i:0;s:10:\"multi page\";i:1;s:8:\"wpbakery\";}s:17:\"attachments_batch\";i:3;s:19:\"include_attachments\";b:0;s:11:\"top_content\";s:0:\"\";s:14:\"bottom_content\";s:0:\"\";}s:10:\"conference\";a:10:{s:5:\"title\";s:10:\"Conference\";s:2:\"id\";s:10:\"conference\";s:10:\"screenshot\";s:49:\"//repo.the7.io/demo-content/assets/conference.jpg\";s:4:\"link\";s:27:\"https://the7.io/conference/\";s:16:\"required_plugins\";a:4:{i:0;s:12:\"dt-the7-core\";i:1;s:11:\"js_composer\";i:2;s:9:\"revslider\";i:3;s:18:\"Ultimate_VC_Addons\";}s:4:\"tags\";a:2:{i:0;s:8:\"one page\";i:1;s:8:\"wpbakery\";}s:17:\"attachments_batch\";i:3;s:19:\"include_attachments\";b:0;s:11:\"top_content\";s:0:\"\";s:14:\"bottom_content\";s:0:\"\";}s:3:\"psy\";a:10:{s:5:\"title\";s:10:\"Psychology\";s:2:\"id\";s:3:\"psy\";s:10:\"screenshot\";s:42:\"//repo.the7.io/demo-content/assets/psy.jpg\";s:4:\"link\";s:20:\"https://the7.io/psy/\";s:16:\"required_plugins\";a:4:{i:0;s:12:\"dt-the7-core\";i:1;s:11:\"js_composer\";i:2;s:9:\"revslider\";i:3;s:18:\"Ultimate_VC_Addons\";}s:4:\"tags\";a:2:{i:0;s:10:\"multi page\";i:1;s:8:\"wpbakery\";}s:17:\"attachments_batch\";i:3;s:19:\"include_attachments\";b:0;s:11:\"top_content\";s:0:\"\";s:14:\"bottom_content\";s:0:\"\";}s:5:\"photo\";a:10:{s:5:\"title\";s:11:\"Photography\";s:2:\"id\";s:5:\"photo\";s:10:\"screenshot\";s:44:\"//repo.the7.io/demo-content/assets/photo.jpg\";s:4:\"link\";s:22:\"https://the7.io/photo/\";s:16:\"required_plugins\";a:4:{i:0;s:12:\"dt-the7-core\";i:1;s:10:\"go_pricing\";i:2;s:11:\"js_composer\";i:3;s:18:\"Ultimate_VC_Addons\";}s:4:\"tags\";a:2:{i:0;s:10:\"multi page\";i:1;s:8:\"wpbakery\";}s:17:\"attachments_batch\";i:3;s:19:\"include_attachments\";b:1;s:11:\"top_content\";s:0:\"\";s:14:\"bottom_content\";s:0:\"\";}s:7:\"product\";a:10:{s:5:\"title\";s:7:\"Product\";s:2:\"id\";s:7:\"product\";s:10:\"screenshot\";s:46:\"//repo.the7.io/demo-content/assets/product.jpg\";s:4:\"link\";s:24:\"https://the7.io/product/\";s:16:\"required_plugins\";a:4:{i:0;s:12:\"dt-the7-core\";i:1;s:11:\"js_composer\";i:2;s:9:\"revslider\";i:3;s:18:\"Ultimate_VC_Addons\";}s:4:\"tags\";a:2:{i:0;s:8:\"one page\";i:1;s:8:\"wpbakery\";}s:17:\"attachments_batch\";i:3;s:19:\"include_attachments\";b:1;s:11:\"top_content\";s:0:\"\";s:14:\"bottom_content\";s:0:\"\";}s:5:\"dance\";a:10:{s:5:\"title\";s:12:\"Dance School\";s:2:\"id\";s:5:\"dance\";s:10:\"screenshot\";s:44:\"//repo.the7.io/demo-content/assets/dance.jpg\";s:4:\"link\";s:22:\"https://the7.io/dance/\";s:16:\"required_plugins\";a:4:{i:0;s:12:\"dt-the7-core\";i:1;s:11:\"js_composer\";i:2;s:9:\"revslider\";i:3;s:18:\"Ultimate_VC_Addons\";}s:4:\"tags\";a:2:{i:0;s:10:\"multi page\";i:1;s:8:\"wpbakery\";}s:17:\"attachments_batch\";i:3;s:19:\"include_attachments\";b:1;s:11:\"top_content\";s:0:\"\";s:14:\"bottom_content\";s:0:\"\";}s:10:\"expedition\";a:10:{s:5:\"title\";s:10:\"Expedition\";s:2:\"id\";s:10:\"expedition\";s:10:\"screenshot\";s:49:\"//repo.the7.io/demo-content/assets/expedition.jpg\";s:4:\"link\";s:27:\"https://the7.io/expedition/\";s:16:\"required_plugins\";a:5:{i:0;s:14:\"contact-form-7\";i:1;s:12:\"dt-the7-core\";i:2;s:11:\"js_composer\";i:3;s:9:\"revslider\";i:4;s:18:\"Ultimate_VC_Addons\";}s:4:\"tags\";a:2:{i:0;s:8:\"one page\";i:1;s:8:\"wpbakery\";}s:17:\"attachments_batch\";i:3;s:19:\"include_attachments\";b:1;s:11:\"top_content\";s:0:\"\";s:14:\"bottom_content\";s:0:\"\";}s:3:\"app\";a:10:{s:5:\"title\";s:3:\"App\";s:2:\"id\";s:3:\"app\";s:10:\"screenshot\";s:42:\"//repo.the7.io/demo-content/assets/app.jpg\";s:4:\"link\";s:20:\"https://the7.io/app/\";s:16:\"required_plugins\";a:4:{i:0;s:12:\"dt-the7-core\";i:1;s:11:\"js_composer\";i:2;s:9:\"revslider\";i:3;s:18:\"Ultimate_VC_Addons\";}s:4:\"tags\";a:2:{i:0;s:8:\"one page\";i:1;s:8:\"wpbakery\";}s:17:\"attachments_batch\";i:3;s:19:\"include_attachments\";b:1;s:11:\"top_content\";s:0:\"\";s:14:\"bottom_content\";s:0:\"\";}s:17:\"personal-creative\";a:10:{s:5:\"title\";s:25:\"Personal Creative Website\";s:2:\"id\";s:17:\"personal-creative\";s:10:\"screenshot\";s:56:\"//repo.the7.io/demo-content/assets/personal-creative.jpg\";s:4:\"link\";s:34:\"https://the7.io/personal-creative/\";s:16:\"required_plugins\";a:4:{i:0;s:12:\"dt-the7-core\";i:1;s:11:\"js_composer\";i:2;s:9:\"revslider\";i:3;s:18:\"Ultimate_VC_Addons\";}s:4:\"tags\";a:2:{i:0;s:8:\"one page\";i:1;s:8:\"wpbakery\";}s:17:\"attachments_batch\";i:3;s:19:\"include_attachments\";b:1;s:11:\"top_content\";s:0:\"\";s:14:\"bottom_content\";s:0:\"\";}s:7:\"hosting\";a:10:{s:5:\"title\";s:7:\"Hosting\";s:2:\"id\";s:7:\"hosting\";s:10:\"screenshot\";s:46:\"//repo.the7.io/demo-content/assets/hosting.jpg\";s:4:\"link\";s:24:\"https://the7.io/hosting/\";s:16:\"required_plugins\";a:4:{i:0;s:12:\"dt-the7-core\";i:1;s:11:\"js_composer\";i:2;s:9:\"revslider\";i:3;s:18:\"Ultimate_VC_Addons\";}s:4:\"tags\";a:2:{i:0;s:8:\"one page\";i:1;s:8:\"wpbakery\";}s:17:\"attachments_batch\";i:3;s:19:\"include_attachments\";b:0;s:11:\"top_content\";s:0:\"\";s:14:\"bottom_content\";s:0:\"\";}s:3:\"law\";a:10:{s:5:\"title\";s:3:\"Law\";s:2:\"id\";s:3:\"law\";s:10:\"screenshot\";s:42:\"//repo.the7.io/demo-content/assets/law.jpg\";s:4:\"link\";s:20:\"https://the7.io/law/\";s:16:\"required_plugins\";a:4:{i:0;s:12:\"dt-the7-core\";i:1;s:11:\"js_composer\";i:2;s:9:\"revslider\";i:3;s:18:\"Ultimate_VC_Addons\";}s:4:\"tags\";a:2:{i:0;s:8:\"one page\";i:1;s:8:\"wpbakery\";}s:17:\"attachments_batch\";i:3;s:19:\"include_attachments\";b:1;s:11:\"top_content\";s:0:\"\";s:14:\"bottom_content\";s:0:\"\";}s:14:\"digital-artist\";a:10:{s:5:\"title\";s:14:\"Digital Artist\";s:2:\"id\";s:14:\"digital-artist\";s:10:\"screenshot\";s:53:\"//repo.the7.io/demo-content/assets/digital-artist.jpg\";s:4:\"link\";s:31:\"https://the7.io/digital-artist/\";s:16:\"required_plugins\";a:4:{i:0;s:12:\"dt-the7-core\";i:1;s:11:\"js_composer\";i:2;s:9:\"revslider\";i:3;s:18:\"Ultimate_VC_Addons\";}s:4:\"tags\";a:2:{i:0;s:8:\"one page\";i:1;s:8:\"wpbakery\";}s:17:\"attachments_batch\";i:3;s:19:\"include_attachments\";b:1;s:11:\"top_content\";s:0:\"\";s:14:\"bottom_content\";s:0:\"\";}s:10:\"web-master\";a:10:{s:5:\"title\";s:10:\"Web Master\";s:2:\"id\";s:10:\"web-master\";s:10:\"screenshot\";s:49:\"//repo.the7.io/demo-content/assets/web-master.jpg\";s:4:\"link\";s:27:\"https://the7.io/web-master/\";s:16:\"required_plugins\";a:4:{i:0;s:12:\"dt-the7-core\";i:1;s:11:\"js_composer\";i:2;s:9:\"revslider\";i:3;s:18:\"Ultimate_VC_Addons\";}s:4:\"tags\";a:2:{i:0;s:8:\"one page\";i:1;s:8:\"wpbakery\";}s:17:\"attachments_batch\";i:3;s:19:\"include_attachments\";b:1;s:11:\"top_content\";s:0:\"\";s:14:\"bottom_content\";s:0:\"\";}s:2:\"cv\";a:10:{s:5:\"title\";s:2:\"CV\";s:2:\"id\";s:2:\"cv\";s:10:\"screenshot\";s:41:\"//repo.the7.io/demo-content/assets/cv.jpg\";s:4:\"link\";s:19:\"https://the7.io/cv/\";s:16:\"required_plugins\";a:4:{i:0;s:12:\"dt-the7-core\";i:1;s:11:\"js_composer\";i:2;s:9:\"revslider\";i:3;s:18:\"Ultimate_VC_Addons\";}s:4:\"tags\";a:2:{i:0;s:8:\"one page\";i:1;s:8:\"wpbakery\";}s:17:\"attachments_batch\";i:3;s:19:\"include_attachments\";b:1;s:11:\"top_content\";s:0:\"\";s:14:\"bottom_content\";s:0:\"\";}s:14:\"coming-soon-02\";a:10:{s:5:\"title\";s:22:\"Coming Soon Revolution\";s:2:\"id\";s:14:\"coming-soon-02\";s:10:\"screenshot\";s:53:\"//repo.the7.io/demo-content/assets/coming-soon-02.jpg\";s:4:\"link\";s:31:\"https://the7.io/coming-soon-02/\";s:16:\"required_plugins\";a:4:{i:0;s:12:\"dt-the7-core\";i:1;s:11:\"js_composer\";i:2;s:9:\"revslider\";i:3;s:18:\"Ultimate_VC_Addons\";}s:4:\"tags\";a:2:{i:0;s:8:\"one page\";i:1;s:8:\"wpbakery\";}s:17:\"attachments_batch\";i:3;s:19:\"include_attachments\";b:1;s:11:\"top_content\";s:0:\"\";s:14:\"bottom_content\";s:0:\"\";}s:14:\"coming-soon-01\";a:10:{s:5:\"title\";s:19:\"Coming Soon Minimal\";s:2:\"id\";s:14:\"coming-soon-01\";s:10:\"screenshot\";s:53:\"//repo.the7.io/demo-content/assets/coming-soon-01.jpg\";s:4:\"link\";s:31:\"https://the7.io/coming-soon-01/\";s:16:\"required_plugins\";a:3:{i:0;s:12:\"dt-the7-core\";i:1;s:11:\"js_composer\";i:2;s:18:\"Ultimate_VC_Addons\";}s:4:\"tags\";a:2:{i:0;s:8:\"one page\";i:1;s:8:\"wpbakery\";}s:17:\"attachments_batch\";i:3;s:19:\"include_attachments\";b:1;s:11:\"top_content\";s:0:\"\";s:14:\"bottom_content\";s:0:\"\";}s:11:\"old-landing\";a:10:{s:5:\"title\";s:11:\"Old Landing\";s:2:\"id\";s:11:\"old-landing\";s:10:\"screenshot\";s:50:\"//repo.the7.io/demo-content/assets/old-landing.jpg\";s:4:\"link\";s:28:\"https://the7.io/old-landing/\";s:16:\"required_plugins\";a:4:{i:0;s:12:\"dt-the7-core\";i:1;s:11:\"js_composer\";i:2;s:9:\"revslider\";i:3;s:18:\"Ultimate_VC_Addons\";}s:4:\"tags\";a:2:{i:0;s:8:\"one page\";i:1;s:8:\"wpbakery\";}s:17:\"attachments_batch\";i:3;s:19:\"include_attachments\";b:1;s:11:\"top_content\";s:0:\"\";s:14:\"bottom_content\";s:0:\"\";}s:17:\"elementor-main-v9\";a:10:{s:5:\"title\";s:22:\"Elementor Main Classic\";s:2:\"id\";s:17:\"elementor-main-v9\";s:10:\"screenshot\";s:56:\"//repo.the7.io/demo-content/assets/elementor-main-v9.jpg\";s:4:\"link\";s:33:\"https://the7.io/elementor-main-v9\";s:16:\"required_plugins\";a:4:{i:0;s:12:\"dt-the7-core\";i:1;s:9:\"elementor\";i:2;s:12:\"pro-elements\";i:3;s:11:\"woocommerce\";}s:4:\"tags\";a:3:{i:0;s:10:\"multi page\";i:1;s:9:\"elementor\";i:2;s:5:\"store\";}s:17:\"attachments_batch\";i:3;s:19:\"include_attachments\";b:1;s:11:\"top_content\";s:0:\"\";s:14:\"bottom_content\";s:0:\"\";}}','no'),(1424,'the7_demo_content_last_update','1661248064','no'),(1438,'the7_options_view_mode','backend','yes'),(1440,'the7_options_saved','1','no'),(43195,'elementor_remote_info_feed_data','a:3:{i:0;a:5:{s:5:\"title\";s:73:\"Elementor 3.16 - Faster Performance, Flexible Design, and more Accessible\";s:7:\"excerpt\";s:210:\"Elementor 3.16 activates Flexbox Containers by default for new websites, improves site loading speed with performance enhancements, increases accessibility for visitors who use assistive technologies, and more.\";s:7:\"created\";i:1695134049;s:5:\"badge\";s:3:\"NEW\";s:3:\"url\";s:152:\"https://elementor.com/blog/316-faster-performance-flexible-design-accessibility/?utm_source=wp-overview-widget&utm_medium=wp-dash&utm_campaign=news-feed\";}i:1;a:5:{s:5:\"title\";s:82:\"Elementor 3.15 is Here - Check out The Taxonomy Filter, Nested Accordion, and More\";s:7:\"excerpt\";s:241:\"This release includes the first phase of the much-awaited Taxonomy Filter, the new and improved Accordion widget with nested items, enhanced styling capabilities for Carousel widgets, fun new Elementor AI Image tools, and the new Apps Page. \";s:7:\"created\";i:1691513693;s:5:\"badge\";s:3:\"NEW\";s:3:\"url\";s:157:\"https://elementor.com/blog/introducing-315-taxonomy-filter-nested-accordion-and-more/?utm_source=wp-overview-widget&utm_medium=wp-dash&utm_campaign=news-feed\";}i:2;a:5:{s:5:\"title\";s:97:\"Introducing Elementor 3.14 - Gain More Design Flexibility with Nested Carousels and Loop Grid Ads\";s:7:\"excerpt\";s:239:\"This version includes a new Carousel widget, extends the Loop Grid with the ability to place static content within the Loop, a Global Styles Preview, and a multitude of highly requested styling capabilities, and new Elementor AI features. \";s:7:\"created\";i:1688394655;s:5:\"badge\";s:3:\"NEW\";s:3:\"url\";s:154:\"https://elementor.com/blog/introducing-314-nested-carousel-loop-grid-ads-and-more/?utm_source=wp-overview-widget&utm_medium=wp-dash&utm_campaign=news-feed\";}}','no'),(57473,'wqoecf_quote_or_enquiry_settings','a:8:{s:6:\"status\";s:2:\"on\";s:10:\"allow_user\";s:2:\"on\";s:19:\"product_single_page\";s:2:\"on\";s:17:\"product_list_page\";s:2:\"on\";s:13:\"contact_form7\";s:4:\"3474\";s:12:\"button_color\";s:7:\"#782d88\";s:11:\"button_text\";s:7:\"Enquiry\";s:17:\"wqoecf_form_title\";s:15:\"Product Enquiry\";}','yes'),(57547,'_transient_timeout_wc_product_loop_8c0362bd1494682e2e40367f61d6fcc4','1696998428','no'),(57548,'_transient_wc_product_loop_8c0362bd1494682e2e40367f61d6fcc4','a:2:{s:7:\"version\";s:10:\"1694406149\";s:5:\"value\";O:8:\"stdClass\":5:{s:3:\"ids\";a:1:{i:0;i:3461;}s:5:\"total\";i:1;s:11:\"total_pages\";i:1;s:8:\"per_page\";i:10;s:12:\"current_page\";i:1;}}','no'),(57469,'jetpack_waf_needs_update','1','yes'),(57615,'_site_transient_boldgrid_plugins_filtered','a:2:{s:35:\"boldgrid-backup/boldgrid-backup.php\";a:14:{s:4:\"Name\";s:12:\"Total Upkeep\";s:9:\"PluginURI\";s:41:\"https://www.boldgrid.com/boldgrid-backup/\";s:7:\"Version\";s:6:\"1.15.7\";s:11:\"Description\";s:159:\"Automated backups, remote backup to Amazon S3 and Google Drive, stop website crashes before they happen and more. Total Upkeep is the backup solution you need.\";s:6:\"Author\";s:8:\"BoldGrid\";s:9:\"AuthorURI\";s:25:\"https://www.boldgrid.com/\";s:10:\"TextDomain\";s:15:\"boldgrid-backup\";s:10:\"DomainPath\";s:10:\"/languages\";s:7:\"Network\";b:0;s:10:\"RequiresWP\";s:0:\"\";s:11:\"RequiresPHP\";s:0:\"\";s:9:\"UpdateURI\";s:0:\"\";s:5:\"Title\";s:12:\"Total Upkeep\";s:10:\"AuthorName\";s:8:\"BoldGrid\";}s:51:\"boldgrid-backup-premium/boldgrid-backup-premium.php\";a:14:{s:4:\"Name\";s:20:\"Total Upkeep Premium\";s:9:\"PluginURI\";s:41:\"https://www.boldgrid.com/boldgrid-backup/\";s:7:\"Version\";s:5:\"1.5.9\";s:11:\"Description\";s:46:\"Premium extension for the Total Upkeep plugin.\";s:6:\"Author\";s:8:\"BoldGrid\";s:9:\"AuthorURI\";s:25:\"https://www.boldgrid.com/\";s:10:\"TextDomain\";s:15:\"boldgrid-backup\";s:10:\"DomainPath\";s:10:\"/languages\";s:7:\"Network\";b:0;s:10:\"RequiresWP\";s:0:\"\";s:11:\"RequiresPHP\";s:0:\"\";s:9:\"UpdateURI\";s:0:\"\";s:5:\"Title\";s:20:\"Total Upkeep Premium\";s:10:\"AuthorName\";s:8:\"BoldGrid\";}}','no'),(1663,'nav_menu_options','a:2:{i:0;b:0;s:8:\"auto_add\";a:0:{}}','yes'),(1736,'rs_image_meta_todo','a:0:{}','yes'),(6743,'widget_wfacebook_feed','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(6744,'widget_wyoutube_feed','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(6751,'wis_feeds_facebook','a:1:{i:1;O:17:\"WIS_Facebook_Feed\":1:{s:8:\"instance\";a:24:{s:2:\"id\";i:1;s:5:\"title\";s:13:\"Facebook feed\";s:16:\"show_feed_header\";i:0;s:8:\"template\";s:7:\"masonry\";s:7:\"account\";s:0:\"\";s:12:\"refresh_hour\";s:1:\"5\";s:13:\"images_number\";s:2:\"20\";s:14:\"enable_stories\";i:0;s:11:\"title_words\";s:1:\"5\";s:7:\"orderby\";s:4:\"rand\";s:13:\"fbimages_link\";s:8:\"fb_popup\";s:13:\"blocked_words\";s:0:\"\";s:6:\"gutter\";s:1:\"5\";s:18:\"masonry_post_width\";s:3:\"200\";s:15:\"m_images_number\";i:20;s:13:\"m_title_words\";i:5;s:9:\"m_orderby\";s:4:\"rand\";s:15:\"m_fbimages_link\";s:9:\"post_page\";s:18:\"m_show_feed_header\";i:0;s:10:\"m_template\";s:7:\"masonry\";s:8:\"m_gutter\";i:5;s:20:\"m_masonry_post_width\";i:200;s:10:\"csrf_check\";s:10:\"cae88eca9d\";s:16:\"_wp_http_referer\";s:62:\"/wp-admin/admin.php?page=feeds-wisw&social=facebook&action=add\";}}}','yes'),(7037,'bglib_activity','a:1:{s:15:\"boldgrid-backup\";a:1:{s:18:\"any_backup_created\";i:16;}}','yes'),(40320,'db_upgraded','','yes'),(2034,'woocommerce_marketplace_suggestions','a:2:{s:11:\"suggestions\";a:28:{i:0;a:4:{s:4:\"slug\";s:28:\"product-edit-meta-tab-header\";s:7:\"context\";s:28:\"product-edit-meta-tab-header\";s:5:\"title\";s:22:\"Recommended extensions\";s:13:\"allow-dismiss\";b:0;}i:1;a:6:{s:4:\"slug\";s:39:\"product-edit-meta-tab-footer-browse-all\";s:7:\"context\";s:28:\"product-edit-meta-tab-footer\";s:9:\"link-text\";s:21:\"Browse all extensions\";s:3:\"url\";s:64:\"https://woocommerce.com/product-category/woocommerce-extensions/\";s:8:\"promoted\";s:31:\"category-woocommerce-extensions\";s:13:\"allow-dismiss\";b:0;}i:2;a:9:{s:4:\"slug\";s:46:\"product-edit-mailchimp-woocommerce-memberships\";s:7:\"product\";s:33:\"woocommerce-memberships-mailchimp\";s:14:\"show-if-active\";a:1:{i:0;s:23:\"woocommerce-memberships\";}s:7:\"context\";a:1:{i:0;s:26:\"product-edit-meta-tab-body\";}s:4:\"icon\";s:116:\"https://woocommerce.com/wp-content/plugins/wccom-plugins/marketplace-suggestions/icons/mailchimp-for-memberships.svg\";s:5:\"title\";s:25:\"Mailchimp for Memberships\";s:4:\"copy\";s:79:\"Completely automate your email lists by syncing membership changes to Mailchimp\";s:11:\"button-text\";s:10:\"Learn More\";s:3:\"url\";s:67:\"https://woocommerce.com/products/mailchimp-woocommerce-memberships/\";}i:3;a:9:{s:4:\"slug\";s:19:\"product-edit-addons\";s:7:\"product\";s:26:\"woocommerce-product-addons\";s:14:\"show-if-active\";a:2:{i:0;s:25:\"woocommerce-subscriptions\";i:1;s:20:\"woocommerce-bookings\";}s:7:\"context\";a:1:{i:0;s:26:\"product-edit-meta-tab-body\";}s:4:\"icon\";s:106:\"https://woocommerce.com/wp-content/plugins/wccom-plugins/marketplace-suggestions/icons/product-add-ons.svg\";s:5:\"title\";s:15:\"Product Add-Ons\";s:4:\"copy\";s:93:\"Offer add-ons like gift wrapping, special messages or other special options for your products\";s:11:\"button-text\";s:10:\"Learn More\";s:3:\"url\";s:49:\"https://woocommerce.com/products/product-add-ons/\";}i:4;a:9:{s:4:\"slug\";s:46:\"product-edit-woocommerce-subscriptions-gifting\";s:7:\"product\";s:33:\"woocommerce-subscriptions-gifting\";s:14:\"show-if-active\";a:1:{i:0;s:25:\"woocommerce-subscriptions\";}s:7:\"context\";a:1:{i:0;s:26:\"product-edit-meta-tab-body\";}s:4:\"icon\";s:116:\"https://woocommerce.com/wp-content/plugins/wccom-plugins/marketplace-suggestions/icons/gifting-for-subscriptions.svg\";s:5:\"title\";s:25:\"Gifting for Subscriptions\";s:4:\"copy\";s:70:\"Let customers buy subscriptions for others - they\'re the ultimate gift\";s:11:\"button-text\";s:10:\"Learn More\";s:3:\"url\";s:67:\"https://woocommerce.com/products/woocommerce-subscriptions-gifting/\";}i:5;a:9:{s:4:\"slug\";s:42:\"product-edit-teams-woocommerce-memberships\";s:7:\"product\";s:33:\"woocommerce-memberships-for-teams\";s:14:\"show-if-active\";a:1:{i:0;s:23:\"woocommerce-memberships\";}s:7:\"context\";a:1:{i:0;s:26:\"product-edit-meta-tab-body\";}s:4:\"icon\";s:112:\"https://woocommerce.com/wp-content/plugins/wccom-plugins/marketplace-suggestions/icons/teams-for-memberships.svg\";s:5:\"title\";s:21:\"Teams for Memberships\";s:4:\"copy\";s:123:\"Adds B2B functionality to WooCommerce Memberships, allowing sites to sell team, group, corporate, or family member accounts\";s:11:\"button-text\";s:10:\"Learn More\";s:3:\"url\";s:63:\"https://woocommerce.com/products/teams-woocommerce-memberships/\";}i:6;a:8:{s:4:\"slug\";s:29:\"product-edit-variation-images\";s:7:\"product\";s:39:\"woocommerce-additional-variation-images\";s:7:\"context\";a:1:{i:0;s:26:\"product-edit-meta-tab-body\";}s:4:\"icon\";s:118:\"https://woocommerce.com/wp-content/plugins/wccom-plugins/marketplace-suggestions/icons/additional-variation-images.svg\";s:5:\"title\";s:27:\"Additional Variation Images\";s:4:\"copy\";s:72:\"Showcase your products in the best light with a image for each variation\";s:11:\"button-text\";s:10:\"Learn More\";s:3:\"url\";s:73:\"https://woocommerce.com/products/woocommerce-additional-variation-images/\";}i:7;a:9:{s:4:\"slug\";s:47:\"product-edit-woocommerce-subscription-downloads\";s:7:\"product\";s:34:\"woocommerce-subscription-downloads\";s:14:\"show-if-active\";a:1:{i:0;s:25:\"woocommerce-subscriptions\";}s:7:\"context\";a:1:{i:0;s:26:\"product-edit-meta-tab-body\";}s:4:\"icon\";s:113:\"https://woocommerce.com/wp-content/plugins/wccom-plugins/marketplace-suggestions/icons/subscription-downloads.svg\";s:5:\"title\";s:22:\"Subscription Downloads\";s:4:\"copy\";s:57:\"Give customers special downloads with their subscriptions\";s:11:\"button-text\";s:10:\"Learn More\";s:3:\"url\";s:68:\"https://woocommerce.com/products/woocommerce-subscription-downloads/\";}i:8;a:8:{s:4:\"slug\";s:31:\"product-edit-min-max-quantities\";s:7:\"product\";s:30:\"woocommerce-min-max-quantities\";s:7:\"context\";a:1:{i:0;s:26:\"product-edit-meta-tab-body\";}s:4:\"icon\";s:109:\"https://woocommerce.com/wp-content/plugins/wccom-plugins/marketplace-suggestions/icons/min-max-quantities.svg\";s:5:\"title\";s:18:\"Min/Max Quantities\";s:4:\"copy\";s:81:\"Specify minimum and maximum allowed product quantities for orders to be completed\";s:11:\"button-text\";s:10:\"Learn More\";s:3:\"url\";s:52:\"https://woocommerce.com/products/min-max-quantities/\";}i:9;a:8:{s:4:\"slug\";s:28:\"product-edit-name-your-price\";s:7:\"product\";s:27:\"woocommerce-name-your-price\";s:7:\"context\";a:1:{i:0;s:26:\"product-edit-meta-tab-body\";}s:4:\"icon\";s:106:\"https://woocommerce.com/wp-content/plugins/wccom-plugins/marketplace-suggestions/icons/name-your-price.svg\";s:5:\"title\";s:15:\"Name Your Price\";s:4:\"copy\";s:70:\"Let customers pay what they want - useful for donations, tips and more\";s:11:\"button-text\";s:10:\"Learn More\";s:3:\"url\";s:49:\"https://woocommerce.com/products/name-your-price/\";}i:10;a:8:{s:4:\"slug\";s:42:\"product-edit-woocommerce-one-page-checkout\";s:7:\"product\";s:29:\"woocommerce-one-page-checkout\";s:7:\"context\";a:1:{i:0;s:26:\"product-edit-meta-tab-body\";}s:4:\"icon\";s:108:\"https://woocommerce.com/wp-content/plugins/wccom-plugins/marketplace-suggestions/icons/one-page-checkout.svg\";s:5:\"title\";s:17:\"One Page Checkout\";s:4:\"copy\";s:92:\"Don\'t make customers click around - let them choose products, checkout & pay all on one page\";s:11:\"button-text\";s:10:\"Learn More\";s:3:\"url\";s:63:\"https://woocommerce.com/products/woocommerce-one-page-checkout/\";}i:11;a:9:{s:4:\"slug\";s:24:\"product-edit-automatewoo\";s:7:\"product\";s:11:\"automatewoo\";s:14:\"show-if-active\";a:1:{i:0;s:25:\"woocommerce-subscriptions\";}s:7:\"context\";a:1:{i:0;s:26:\"product-edit-meta-tab-body\";}s:4:\"icon\";s:104:\"https://woocommerce.com/wp-content/plugins/wccom-plugins/marketplace-suggestions/icons/subscriptions.svg\";s:5:\"title\";s:23:\"Automate your marketing\";s:4:\"copy\";s:89:\"Win customers and keep them coming back with a nearly endless range of powerful workflows\";s:11:\"button-text\";s:10:\"Learn More\";s:3:\"url\";s:45:\"https://woocommerce.com/products/automatewoo/\";}i:12;a:4:{s:4:\"slug\";s:19:\"orders-empty-header\";s:7:\"context\";s:24:\"orders-list-empty-header\";s:5:\"title\";s:20:\"Tools for your store\";s:13:\"allow-dismiss\";b:0;}i:13;a:6:{s:4:\"slug\";s:30:\"orders-empty-footer-browse-all\";s:7:\"context\";s:24:\"orders-list-empty-footer\";s:9:\"link-text\";s:21:\"Browse all extensions\";s:3:\"url\";s:64:\"https://woocommerce.com/product-category/woocommerce-extensions/\";s:8:\"promoted\";s:31:\"category-woocommerce-extensions\";s:13:\"allow-dismiss\";b:0;}i:14;a:8:{s:4:\"slug\";s:19:\"orders-empty-wc-pay\";s:7:\"context\";s:22:\"orders-list-empty-body\";s:7:\"product\";s:20:\"woocommerce-payments\";s:4:\"icon\";s:111:\"https://woocommerce.com/wp-content/plugins/wccom-plugins/marketplace-suggestions/icons/woocommerce-payments.svg\";s:5:\"title\";s:20:\"WooCommerce Payments\";s:4:\"copy\";s:125:\"Securely accept payments and manage transactions directly from your WooCommerce dashboard – no setup costs or monthly fees.\";s:11:\"button-text\";s:10:\"Learn More\";s:3:\"url\";s:54:\"https://woocommerce.com/products/woocommerce-payments/\";}i:15;a:8:{s:4:\"slug\";s:19:\"orders-empty-zapier\";s:7:\"context\";s:22:\"orders-list-empty-body\";s:7:\"product\";s:18:\"woocommerce-zapier\";s:4:\"icon\";s:97:\"https://woocommerce.com/wp-content/plugins/wccom-plugins/marketplace-suggestions/icons/zapier.svg\";s:5:\"title\";s:6:\"Zapier\";s:4:\"copy\";s:88:\"Save time and increase productivity by connecting your store to more than 1000+ services\";s:11:\"button-text\";s:10:\"Learn More\";s:3:\"url\";s:52:\"https://woocommerce.com/products/woocommerce-zapier/\";}i:16;a:8:{s:4:\"slug\";s:30:\"orders-empty-shipment-tracking\";s:7:\"context\";s:22:\"orders-list-empty-body\";s:7:\"product\";s:29:\"woocommerce-shipment-tracking\";s:4:\"icon\";s:108:\"https://woocommerce.com/wp-content/plugins/wccom-plugins/marketplace-suggestions/icons/shipment-tracking.svg\";s:5:\"title\";s:17:\"Shipment Tracking\";s:4:\"copy\";s:86:\"Let customers know when their orders will arrive by adding shipment tracking to emails\";s:11:\"button-text\";s:10:\"Learn More\";s:3:\"url\";s:51:\"https://woocommerce.com/products/shipment-tracking/\";}i:17;a:8:{s:4:\"slug\";s:32:\"orders-empty-table-rate-shipping\";s:7:\"context\";s:22:\"orders-list-empty-body\";s:7:\"product\";s:31:\"woocommerce-table-rate-shipping\";s:4:\"icon\";s:110:\"https://woocommerce.com/wp-content/plugins/wccom-plugins/marketplace-suggestions/icons/table-rate-shipping.svg\";s:5:\"title\";s:19:\"Table Rate Shipping\";s:4:\"copy\";s:122:\"Advanced, flexible shipping. Define multiple shipping rates based on location, price, weight, shipping class or item count\";s:11:\"button-text\";s:10:\"Learn More\";s:3:\"url\";s:53:\"https://woocommerce.com/products/table-rate-shipping/\";}i:18;a:8:{s:4:\"slug\";s:40:\"orders-empty-shipping-carrier-extensions\";s:7:\"context\";s:22:\"orders-list-empty-body\";s:4:\"icon\";s:118:\"https://woocommerce.com/wp-content/plugins/wccom-plugins/marketplace-suggestions/icons/shipping-carrier-extensions.svg\";s:5:\"title\";s:27:\"Shipping Carrier Extensions\";s:4:\"copy\";s:116:\"Show live rates from FedEx, UPS, USPS and more directly on your store - never under or overcharge for shipping again\";s:11:\"button-text\";s:13:\"Find Carriers\";s:8:\"promoted\";s:26:\"category-shipping-carriers\";s:3:\"url\";s:99:\"https://woocommerce.com/product-category/woocommerce-extensions/shipping-methods/shipping-carriers/\";}i:19;a:8:{s:4:\"slug\";s:32:\"orders-empty-google-product-feed\";s:7:\"context\";s:22:\"orders-list-empty-body\";s:7:\"product\";s:25:\"woocommerce-product-feeds\";s:4:\"icon\";s:110:\"https://woocommerce.com/wp-content/plugins/wccom-plugins/marketplace-suggestions/icons/google-product-feed.svg\";s:5:\"title\";s:19:\"Google Product Feed\";s:4:\"copy\";s:76:\"Increase sales by letting customers find you when they\'re shopping on Google\";s:11:\"button-text\";s:10:\"Learn More\";s:3:\"url\";s:53:\"https://woocommerce.com/products/google-product-feed/\";}i:20;a:4:{s:4:\"slug\";s:35:\"products-empty-header-product-types\";s:7:\"context\";s:26:\"products-list-empty-header\";s:5:\"title\";s:23:\"Other types of products\";s:13:\"allow-dismiss\";b:0;}i:21;a:6:{s:4:\"slug\";s:32:\"products-empty-footer-browse-all\";s:7:\"context\";s:26:\"products-list-empty-footer\";s:9:\"link-text\";s:21:\"Browse all extensions\";s:3:\"url\";s:64:\"https://woocommerce.com/product-category/woocommerce-extensions/\";s:8:\"promoted\";s:31:\"category-woocommerce-extensions\";s:13:\"allow-dismiss\";b:0;}i:22;a:8:{s:4:\"slug\";s:30:\"products-empty-product-vendors\";s:7:\"context\";s:24:\"products-list-empty-body\";s:7:\"product\";s:27:\"woocommerce-product-vendors\";s:4:\"icon\";s:106:\"https://woocommerce.com/wp-content/plugins/wccom-plugins/marketplace-suggestions/icons/product-vendors.svg\";s:5:\"title\";s:15:\"Product Vendors\";s:4:\"copy\";s:47:\"Turn your store into a multi-vendor marketplace\";s:11:\"button-text\";s:10:\"Learn More\";s:3:\"url\";s:49:\"https://woocommerce.com/products/product-vendors/\";}i:23;a:8:{s:4:\"slug\";s:26:\"products-empty-memberships\";s:7:\"context\";s:24:\"products-list-empty-body\";s:7:\"product\";s:23:\"woocommerce-memberships\";s:4:\"icon\";s:102:\"https://woocommerce.com/wp-content/plugins/wccom-plugins/marketplace-suggestions/icons/memberships.svg\";s:5:\"title\";s:11:\"Memberships\";s:4:\"copy\";s:76:\"Give members access to restricted content or products, for a fee or for free\";s:11:\"button-text\";s:10:\"Learn More\";s:3:\"url\";s:57:\"https://woocommerce.com/products/woocommerce-memberships/\";}i:24;a:9:{s:4:\"slug\";s:35:\"products-empty-woocommerce-deposits\";s:7:\"context\";s:24:\"products-list-empty-body\";s:7:\"product\";s:20:\"woocommerce-deposits\";s:14:\"show-if-active\";a:1:{i:0;s:20:\"woocommerce-bookings\";}s:4:\"icon\";s:99:\"https://woocommerce.com/wp-content/plugins/wccom-plugins/marketplace-suggestions/icons/deposits.svg\";s:5:\"title\";s:8:\"Deposits\";s:4:\"copy\";s:75:\"Make it easier for customers to pay by offering a deposit or a payment plan\";s:11:\"button-text\";s:10:\"Learn More\";s:3:\"url\";s:54:\"https://woocommerce.com/products/woocommerce-deposits/\";}i:25;a:8:{s:4:\"slug\";s:40:\"products-empty-woocommerce-subscriptions\";s:7:\"context\";s:24:\"products-list-empty-body\";s:7:\"product\";s:25:\"woocommerce-subscriptions\";s:4:\"icon\";s:104:\"https://woocommerce.com/wp-content/plugins/wccom-plugins/marketplace-suggestions/icons/subscriptions.svg\";s:5:\"title\";s:13:\"Subscriptions\";s:4:\"copy\";s:97:\"Let customers subscribe to your products or services and pay on a weekly, monthly or annual basis\";s:11:\"button-text\";s:10:\"Learn More\";s:3:\"url\";s:59:\"https://woocommerce.com/products/woocommerce-subscriptions/\";}i:26;a:8:{s:4:\"slug\";s:35:\"products-empty-woocommerce-bookings\";s:7:\"context\";s:24:\"products-list-empty-body\";s:7:\"product\";s:20:\"woocommerce-bookings\";s:4:\"icon\";s:99:\"https://woocommerce.com/wp-content/plugins/wccom-plugins/marketplace-suggestions/icons/bookings.svg\";s:5:\"title\";s:8:\"Bookings\";s:4:\"copy\";s:99:\"Allow customers to book appointments, make reservations or rent equipment without leaving your site\";s:11:\"button-text\";s:10:\"Learn More\";s:3:\"url\";s:54:\"https://woocommerce.com/products/woocommerce-bookings/\";}i:27;a:8:{s:4:\"slug\";s:30:\"products-empty-product-bundles\";s:7:\"context\";s:24:\"products-list-empty-body\";s:7:\"product\";s:27:\"woocommerce-product-bundles\";s:4:\"icon\";s:106:\"https://woocommerce.com/wp-content/plugins/wccom-plugins/marketplace-suggestions/icons/product-bundles.svg\";s:5:\"title\";s:15:\"Product Bundles\";s:4:\"copy\";s:49:\"Offer customizable bundles and assembled products\";s:11:\"button-text\";s:10:\"Learn More\";s:3:\"url\";s:49:\"https://woocommerce.com/products/product-bundles/\";}}s:7:\"updated\";i:1695185786;}','no'),(2116,'_transient_shipping-transient-version','1660902996','yes'),(16205,'the7_product_presets','a:2:{i:0;a:95:{s:20:\"_dt_sidebar_position\";s:8:\"disabled\";s:25:\"_dt_sidebar_widgetarea_id\";s:9:\"sidebar_1\";s:26:\"_dt_sidebar_hide_on_mobile\";s:1:\"0\";s:15:\"_dt_footer_show\";s:1:\"1\";s:24:\"_dt_footer_widgetarea_id\";s:9:\"sidebar_2\";s:25:\"_dt_footer_hide_on_mobile\";s:1:\"0\";s:16:\"_dt_header_title\";s:7:\"enabled\";s:21:\"_dt_header_background\";s:6:\"normal\";s:37:\"_dt_header_background_below_slideshow\";s:8:\"disabled\";s:38:\"_dt_header_transparent_bg_color_scheme\";s:5:\"light\";s:39:\"_dt_header_transparent_top_bar_bg_color\";s:7:\"#ffffff\";s:41:\"_dt_header_transparent_top_bar_bg_opacity\";s:2:\"25\";s:31:\"_dt_header_transparent_bg_color\";s:7:\"#000000\";s:33:\"_dt_header_transparent_bg_opacity\";s:2:\"50\";s:30:\"_dt_header_disabled_background\";s:6:\"normal\";s:47:\"_dt_header_disabled_transparent_bg_color_scheme\";s:5:\"light\";s:48:\"_dt_header_disabled_transparent_top_bar_bg_color\";s:7:\"#ffffff\";s:50:\"_dt_header_disabled_transparent_top_bar_bg_opacity\";s:2:\"25\";s:40:\"_dt_header_disabled_transparent_bg_color\";s:7:\"#000000\";s:42:\"_dt_header_disabled_transparent_bg_opacity\";s:2:\"50\";s:29:\"_dt_page_overrides_top_margin\";s:0:\"\";s:31:\"_dt_page_overrides_right_margin\";s:0:\"\";s:32:\"_dt_page_overrides_bottom_margin\";s:0:\"\";s:30:\"_dt_page_overrides_left_margin\";s:0:\"\";s:27:\"_dt_mobile_page_padding_top\";s:0:\"\";s:29:\"_dt_mobile_page_padding_right\";s:0:\"\";s:30:\"_dt_mobile_page_padding_bottom\";s:0:\"\";s:28:\"_dt_mobile_page_padding_left\";s:0:\"\";s:18:\"_dt_slideshow_mode\";s:8:\"porthole\";s:20:\"_dt_slideshow_layout\";s:9:\"fullwidth\";s:21:\"_dt_slideshow_scaling\";s:4:\"fill\";s:22:\"_dt_slideshow_autoplay\";s:6:\"paused\";s:32:\"_dt_slideshow_autoslide_interval\";s:4:\"5000\";s:27:\"_dt_slideshow_hide_captions\";s:1:\"0\";s:35:\"_dt_slideshow_photo_scroller_layout\";s:10:\"fullscreen\";s:37:\"_dt_slideshow_photo_scroller_bg_color\";s:7:\"#000000\";s:36:\"_dt_slideshow_photo_scroller_overlay\";s:1:\"1\";s:40:\"_dt_slideshow_photo_scroller_top_padding\";s:1:\"0\";s:43:\"_dt_slideshow_photo_scroller_bottom_padding\";s:1:\"0\";s:42:\"_dt_slideshow_photo_scroller_side_paddings\";s:1:\"0\";s:45:\"_dt_slideshow_photo_scroller_inactive_opacity\";s:2:\"15\";s:50:\"_dt_slideshow_photo_scroller_thumbnails_visibility\";s:4:\"show\";s:45:\"_dt_slideshow_photo_scroller_thumbnails_width\";s:0:\"\";s:46:\"_dt_slideshow_photo_scroller_thumbnails_height\";s:2:\"85\";s:37:\"_dt_slideshow_photo_scroller_autoplay\";s:4:\"play\";s:43:\"_dt_slideshow_photo_scroller_autoplay_speed\";s:4:\"4000\";s:41:\"_dt_slideshow_photo_scroller_ls_max_width\";s:3:\"100\";s:41:\"_dt_slideshow_photo_scroller_ls_min_width\";s:1:\"0\";s:39:\"_dt_slideshow_photo_scroller_ls_fill_dt\";s:3:\"fit\";s:40:\"_dt_slideshow_photo_scroller_ls_fill_mob\";s:3:\"fit\";s:41:\"_dt_slideshow_photo_scroller_pt_max_width\";s:3:\"100\";s:41:\"_dt_slideshow_photo_scroller_pt_min_width\";s:1:\"0\";s:39:\"_dt_slideshow_photo_scroller_pt_fill_dt\";s:3:\"fit\";s:40:\"_dt_slideshow_photo_scroller_pt_fill_mob\";s:3:\"fit\";s:31:\"_dt_slideshow_revolution_slider\";s:4:\"none\";s:26:\"_dt_slideshow_layer_slider\";s:4:\"none\";s:40:\"_dt_slideshow_layer_show_bg_and_paddings\";s:1:\"0\";s:31:\"_dt_fancy_header_title_aligment\";s:6:\"center\";s:23:\"_dt_fancy_header_height\";s:3:\"300\";s:28:\"_dt_fancy_header_padding-top\";s:3:\"0px\";s:31:\"_dt_fancy_header_padding-bottom\";s:3:\"0px\";s:28:\"_dt_fancy_header_breadcrumbs\";s:7:\"enabled\";s:39:\"_dt_fancy_header_breadcrumbs_text_color\";s:7:\"#ffffff\";s:37:\"_dt_fancy_header_breadcrumbs_bg_color\";s:8:\"disabled\";s:27:\"_dt_fancy_header_title_mode\";s:6:\"custom\";s:32:\"_dt_fancy_header_title_font_size\";s:2:\"30\";s:34:\"_dt_fancy_header_title_line_height\";s:2:\"36\";s:31:\"_dt_fancy_header_text_transform\";s:4:\"none\";s:33:\"_dt_fancy_header_title_color_mode\";s:5:\"color\";s:28:\"_dt_fancy_header_title_color\";s:7:\"#ffffff\";s:35:\"_dt_fancy_header_subtitle_font_size\";s:2:\"18\";s:37:\"_dt_fancy_header_subtitle_line_height\";s:2:\"26\";s:40:\"_dt_fancy_header_subtitle_text_transform\";s:4:\"none\";s:36:\"_dt_fancy_header_subtitle_color_mode\";s:5:\"color\";s:31:\"_dt_fancy_header_subtitle_color\";s:7:\"#ffffff\";s:25:\"_dt_fancy_header_bg_color\";s:7:\"#222222\";s:32:\"_dt_fancy_header_bg_image_origin\";s:6:\"custom\";s:25:\"_dt_fancy_header_bg_image\";a:0:{}s:26:\"_dt_fancy_header_bg_repeat\";s:9:\"no-repeat\";s:30:\"_dt_fancy_header_bg_position_x\";s:6:\"center\";s:30:\"_dt_fancy_header_bg_position_y\";s:6:\"center\";s:30:\"_dt_fancy_header_bg_fullscreen\";s:1:\"1\";s:27:\"_dt_fancy_header_bg_overlay\";s:1:\"0\";s:30:\"_dt_fancy_header_overlay_color\";s:4:\"#000\";s:35:\"_dt_fancy_header_bg_overlay_opacity\";s:2:\"50\";s:30:\"_dt_fancy_header_scroll_effect\";s:7:\"default\";s:28:\"_dt_fancy_header_bg_parallax\";s:3:\"0.5\";s:31:\"_dt_fancy_header_responsiveness\";s:7:\"enabled\";s:38:\"_dt_fancy_header_responsiveness_switch\";s:5:\"778px\";s:34:\"_dt_fancy_header_responsive_height\";s:2:\"70\";s:37:\"_dt_fancy_header_responsive_font_size\";s:2:\"30\";s:45:\"_dt_fancy_header_responsive_title_line_height\";s:2:\"38\";s:46:\"_dt_fancy_header_responsive_subtitle_font_size\";s:2:\"20\";s:48:\"_dt_fancy_header_responsive_subtitle_line_height\";s:2:\"28\";s:39:\"_dt_fancy_header_responsive_breadcrumbs\";s:8:\"disabled\";}i:1;a:95:{s:20:\"_dt_sidebar_position\";s:8:\"disabled\";s:25:\"_dt_sidebar_widgetarea_id\";s:9:\"sidebar_1\";s:26:\"_dt_sidebar_hide_on_mobile\";s:1:\"0\";s:15:\"_dt_footer_show\";s:1:\"1\";s:24:\"_dt_footer_widgetarea_id\";s:9:\"sidebar_2\";s:25:\"_dt_footer_hide_on_mobile\";s:1:\"0\";s:16:\"_dt_header_title\";s:5:\"fancy\";s:21:\"_dt_header_background\";s:6:\"normal\";s:37:\"_dt_header_background_below_slideshow\";s:8:\"disabled\";s:38:\"_dt_header_transparent_bg_color_scheme\";s:5:\"light\";s:39:\"_dt_header_transparent_top_bar_bg_color\";s:7:\"#ffffff\";s:41:\"_dt_header_transparent_top_bar_bg_opacity\";s:2:\"25\";s:31:\"_dt_header_transparent_bg_color\";s:7:\"#000000\";s:33:\"_dt_header_transparent_bg_opacity\";s:2:\"50\";s:30:\"_dt_header_disabled_background\";s:6:\"normal\";s:47:\"_dt_header_disabled_transparent_bg_color_scheme\";s:5:\"light\";s:48:\"_dt_header_disabled_transparent_top_bar_bg_color\";s:7:\"#ffffff\";s:50:\"_dt_header_disabled_transparent_top_bar_bg_opacity\";s:2:\"25\";s:40:\"_dt_header_disabled_transparent_bg_color\";s:7:\"#000000\";s:42:\"_dt_header_disabled_transparent_bg_opacity\";s:2:\"50\";s:29:\"_dt_page_overrides_top_margin\";s:0:\"\";s:31:\"_dt_page_overrides_right_margin\";s:0:\"\";s:32:\"_dt_page_overrides_bottom_margin\";s:0:\"\";s:30:\"_dt_page_overrides_left_margin\";s:0:\"\";s:27:\"_dt_mobile_page_padding_top\";s:0:\"\";s:29:\"_dt_mobile_page_padding_right\";s:0:\"\";s:30:\"_dt_mobile_page_padding_bottom\";s:0:\"\";s:28:\"_dt_mobile_page_padding_left\";s:0:\"\";s:18:\"_dt_slideshow_mode\";s:8:\"porthole\";s:20:\"_dt_slideshow_layout\";s:9:\"fullwidth\";s:21:\"_dt_slideshow_scaling\";s:4:\"fill\";s:22:\"_dt_slideshow_autoplay\";s:6:\"paused\";s:32:\"_dt_slideshow_autoslide_interval\";s:4:\"5000\";s:27:\"_dt_slideshow_hide_captions\";s:1:\"0\";s:35:\"_dt_slideshow_photo_scroller_layout\";s:10:\"fullscreen\";s:37:\"_dt_slideshow_photo_scroller_bg_color\";s:7:\"#000000\";s:36:\"_dt_slideshow_photo_scroller_overlay\";s:1:\"1\";s:40:\"_dt_slideshow_photo_scroller_top_padding\";s:1:\"0\";s:43:\"_dt_slideshow_photo_scroller_bottom_padding\";s:1:\"0\";s:42:\"_dt_slideshow_photo_scroller_side_paddings\";s:1:\"0\";s:45:\"_dt_slideshow_photo_scroller_inactive_opacity\";s:2:\"15\";s:50:\"_dt_slideshow_photo_scroller_thumbnails_visibility\";s:4:\"show\";s:45:\"_dt_slideshow_photo_scroller_thumbnails_width\";s:0:\"\";s:46:\"_dt_slideshow_photo_scroller_thumbnails_height\";s:2:\"85\";s:37:\"_dt_slideshow_photo_scroller_autoplay\";s:4:\"play\";s:43:\"_dt_slideshow_photo_scroller_autoplay_speed\";s:4:\"4000\";s:41:\"_dt_slideshow_photo_scroller_ls_max_width\";s:3:\"100\";s:41:\"_dt_slideshow_photo_scroller_ls_min_width\";s:1:\"0\";s:39:\"_dt_slideshow_photo_scroller_ls_fill_dt\";s:3:\"fit\";s:40:\"_dt_slideshow_photo_scroller_ls_fill_mob\";s:3:\"fit\";s:41:\"_dt_slideshow_photo_scroller_pt_max_width\";s:3:\"100\";s:41:\"_dt_slideshow_photo_scroller_pt_min_width\";s:1:\"0\";s:39:\"_dt_slideshow_photo_scroller_pt_fill_dt\";s:3:\"fit\";s:40:\"_dt_slideshow_photo_scroller_pt_fill_mob\";s:3:\"fit\";s:31:\"_dt_slideshow_revolution_slider\";s:4:\"none\";s:26:\"_dt_slideshow_layer_slider\";s:4:\"none\";s:40:\"_dt_slideshow_layer_show_bg_and_paddings\";s:1:\"0\";s:31:\"_dt_fancy_header_title_aligment\";s:8:\"all_left\";s:23:\"_dt_fancy_header_height\";s:3:\"300\";s:28:\"_dt_fancy_header_padding-top\";s:3:\"0px\";s:31:\"_dt_fancy_header_padding-bottom\";s:3:\"0px\";s:28:\"_dt_fancy_header_breadcrumbs\";s:8:\"disabled\";s:39:\"_dt_fancy_header_breadcrumbs_text_color\";s:7:\"#ffffff\";s:37:\"_dt_fancy_header_breadcrumbs_bg_color\";s:8:\"disabled\";s:27:\"_dt_fancy_header_title_mode\";s:7:\"generic\";s:32:\"_dt_fancy_header_title_font_size\";s:2:\"30\";s:34:\"_dt_fancy_header_title_line_height\";s:2:\"36\";s:31:\"_dt_fancy_header_text_transform\";s:4:\"none\";s:33:\"_dt_fancy_header_title_color_mode\";s:5:\"color\";s:28:\"_dt_fancy_header_title_color\";s:7:\"#ffffff\";s:35:\"_dt_fancy_header_subtitle_font_size\";s:2:\"18\";s:37:\"_dt_fancy_header_subtitle_line_height\";s:2:\"26\";s:40:\"_dt_fancy_header_subtitle_text_transform\";s:4:\"none\";s:36:\"_dt_fancy_header_subtitle_color_mode\";s:5:\"color\";s:31:\"_dt_fancy_header_subtitle_color\";s:7:\"#ffffff\";s:25:\"_dt_fancy_header_bg_color\";s:7:\"#762b87\";s:32:\"_dt_fancy_header_bg_image_origin\";s:6:\"custom\";s:25:\"_dt_fancy_header_bg_image\";a:0:{}s:26:\"_dt_fancy_header_bg_repeat\";s:9:\"no-repeat\";s:30:\"_dt_fancy_header_bg_position_x\";s:6:\"center\";s:30:\"_dt_fancy_header_bg_position_y\";s:6:\"center\";s:30:\"_dt_fancy_header_bg_fullscreen\";s:1:\"1\";s:27:\"_dt_fancy_header_bg_overlay\";s:1:\"0\";s:30:\"_dt_fancy_header_overlay_color\";s:4:\"#000\";s:35:\"_dt_fancy_header_bg_overlay_opacity\";s:2:\"50\";s:30:\"_dt_fancy_header_scroll_effect\";s:7:\"default\";s:28:\"_dt_fancy_header_bg_parallax\";s:3:\"0.5\";s:31:\"_dt_fancy_header_responsiveness\";s:7:\"enabled\";s:38:\"_dt_fancy_header_responsiveness_switch\";s:5:\"778px\";s:34:\"_dt_fancy_header_responsive_height\";s:3:\"200\";s:37:\"_dt_fancy_header_responsive_font_size\";s:2:\"30\";s:45:\"_dt_fancy_header_responsive_title_line_height\";s:2:\"38\";s:46:\"_dt_fancy_header_responsive_subtitle_font_size\";s:2:\"20\";s:48:\"_dt_fancy_header_responsive_subtitle_line_height\";s:2:\"28\";s:39:\"_dt_fancy_header_responsive_breadcrumbs\";s:8:\"disabled\";}}','yes'),(16206,'the7_product_presets_names','a:2:{i:0;s:23:\"PRODUCT PRESET CUSTOM 1\";i:1;s:23:\"product preset custom 2\";}','yes'),(5797,'secret_key','+NY]TaJ-[_QSbYaX}Ky@%dX>^n/]V.+Z._;kk`UZeL%LSFlaUgc{R->`KU?fx,Kg','no'),(14776,'widget_recent-posts','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(14777,'widget_recent-comments','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(55555,'_transient_timeout_wc_blocks_query_daabd62dba027ed7484f55271ed7f223','1696566690','no'),(55556,'_transient_wc_blocks_query_daabd62dba027ed7484f55271ed7f223','a:2:{s:7:\"version\";s:10:\"1693808732\";s:5:\"value\";a:1:{i:0;i:3432;}}','no'),(54740,'_transient_wc_product_loop_274cb36e64025559649b86ed95c8ef25','a:2:{s:7:\"version\";s:10:\"1694406149\";s:5:\"value\";O:8:\"stdClass\":5:{s:3:\"ids\";a:10:{i:0;i:3370;i:1;i:2774;i:2;i:3309;i:3;i:3352;i:4;i:3362;i:5;i:3355;i:6;i:3331;i:7;i:3316;i:8;i:3361;i:9;i:3324;}s:5:\"total\";i:10;s:11:\"total_pages\";i:1;s:8:\"per_page\";i:10;s:12:\"current_page\";i:1;}}','no'),(6443,'fs_active_plugins','O:8:\"stdClass\":0:{}','yes'),(7035,'boldgrid_backup_last_backup','1695791543','no'),(7036,'boldgrid_backup_latest_backup','a:34:{s:4:\"mode\";s:6:\"backup\";s:6:\"dryrun\";b:0;s:10:\"compressor\";s:7:\"php_zip\";s:8:\"filesize\";i:312193550;s:4:\"save\";b:1;s:10:\"total_size\";i:531995103;s:14:\"folder_include\";s:18:\"WPCORE,/wp-content\";s:14:\"folder_exclude\";s:17:\".git,node_modules\";s:13:\"table_exclude\";a:0:{}s:5:\"title\";s:19:\"09-27-2023-10-39-pm\";s:11:\"description\";N;s:7:\"ABSPATH\";s:39:\"/home/yasith5/farmchemie.yasithawd.com/\";s:9:\"backup_id\";s:8:\"a94f4b8d\";s:7:\"siteurl\";s:32:\"https://farmchemie.yasithawd.com\";s:9:\"timestamp\";i:1695791396;s:17:\"gateway_interface\";s:7:\"CGI/1.1\";s:9:\"http_host\";s:24:\"farmchemie.yasithawd.com\";s:13:\"php_sapi_name\";s:8:\"cgi-fcgi\";s:9:\"php_uname\";s:113:\"Linux ecbiz240.inmotionhosting.com 3.10.0-962.3.2.lve1.5.38.el7.x86_64 #1 SMP Thu Jun 18 05:28:41 EDT 2020 x86_64\";s:11:\"php_version\";s:6:\"7.4.33\";s:11:\"server_addr\";s:13:\"198.46.88.214\";s:11:\"server_name\";s:24:\"farmchemie.yasithawd.com\";s:15:\"server_protocol\";s:8:\"HTTP/2.0\";s:15:\"server_software\";s:6:\"Apache\";s:3:\"uid\";i:5358;s:8:\"username\";s:7:\"yasith5\";s:10:\"encrypt_db\";b:0;s:7:\"trigger\";s:36:\"fc_ypm_admin (yasitha.p.m@gmail.com)\";s:8:\"filepath\";s:99:\"/home/yasith5/boldgrid_backup/boldgrid-backup-farmchemie.yasithawd.com-a94f4b8d-20230927-051006.zip\";s:11:\"lastmodunix\";i:1695791543;s:8:\"duration\";s:6:\"146.62\";s:11:\"db_duration\";s:4:\"0.93\";s:11:\"db_filename\";s:33:\"yasith5_wp750.20230927-050957.sql\";s:12:\"mail_success\";b:0;}','yes'),(6444,'fs_debug_mode','','yes'),(6445,'fs_accounts','a:7:{s:21:\"id_slug_type_path_map\";a:2:{i:4142;a:3:{s:4:\"slug\";s:21:\"easy-facebook-likebox\";s:4:\"type\";s:6:\"plugin\";s:4:\"path\";s:47:\"easy-facebook-likebox/easy-facebook-likebox.php\";}i:3473;a:3:{s:4:\"slug\";s:22:\"woo-product-attachment\";s:4:\"type\";s:6:\"plugin\";s:4:\"path\";s:57:\"woo-product-attachment/woocommerce-product-attachment.php\";}}s:11:\"plugin_data\";a:2:{s:21:\"easy-facebook-likebox\";a:18:{s:16:\"plugin_main_file\";O:8:\"stdClass\":1:{s:4:\"path\";s:47:\"easy-facebook-likebox/easy-facebook-likebox.php\";}s:20:\"is_network_activated\";b:0;s:17:\"install_timestamp\";i:1661917454;s:17:\"was_plugin_loaded\";b:1;s:21:\"is_plugin_new_install\";b:1;s:16:\"sdk_last_version\";N;s:11:\"sdk_version\";s:5:\"2.4.5\";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:5:\"6.3.8\";s:19:\"plugin_upgrade_mode\";b:1;s:21:\"plugin_downgrade_mode\";b:0;s:17:\"connectivity_test\";a:6:{s:12:\"is_connected\";b:1;s:4:\"host\";s:24:\"farmchemie.yasithawd.com\";s:9:\"server_ip\";s:14:\"113.59.200.199\";s:9:\"is_active\";b:1;s:9:\"timestamp\";i:1661917454;s:7:\"version\";s:5:\"6.3.8\";}s:15:\"prev_is_premium\";b:0;s:12:\"is_anonymous\";a:3:{s:2:\"is\";b:1;s:9:\"timestamp\";i:1661924699;s:7:\"version\";s:5:\"6.3.8\";}s:21:\"trial_promotion_shown\";i:1686540694;s:30:\"affiliate_program_notice_shown\";i:1668743587;}s:22:\"woo-product-attachment\";a:17:{s:16:\"plugin_main_file\";O:8:\"stdClass\":1:{s:4:\"path\";s:57:\"woo-product-attachment/woocommerce-product-attachment.php\";}s:20:\"is_network_activated\";b:0;s:17:\"install_timestamp\";i:1694409146;s:17:\"was_plugin_loaded\";b:1;s:21:\"is_plugin_new_install\";b:1;s:16:\"sdk_last_version\";N;s:11:\"sdk_version\";s:6:\"2.5.10\";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:5:\"2.2.0\";s:19:\"plugin_upgrade_mode\";b:1;s:21:\"plugin_downgrade_mode\";b:0;s:17:\"connectivity_test\";a:6:{s:12:\"is_connected\";N;s:4:\"host\";s:24:\"farmchemie.yasithawd.com\";s:9:\"server_ip\";s:13:\"198.46.88.214\";s:9:\"is_active\";b:1;s:9:\"timestamp\";i:1694409146;s:7:\"version\";s:5:\"2.2.0\";}s:15:\"prev_is_premium\";b:0;s:12:\"is_anonymous\";a:3:{s:2:\"is\";b:1;s:9:\"timestamp\";i:1694409172;s:7:\"version\";s:5:\"2.2.0\";}s:16:\"uninstall_reason\";O:8:\"stdClass\":3:{s:2:\"id\";s:2:\"13\";s:4:\"info\";s:0:\"\";s:12:\"is_anonymous\";b:1;}}}s:13:\"file_slug_map\";a:2:{s:47:\"easy-facebook-likebox/easy-facebook-likebox.php\";s:21:\"easy-facebook-likebox\";s:57:\"woo-product-attachment/woocommerce-product-attachment.php\";s:22:\"woo-product-attachment\";}s:7:\"plugins\";a:2:{s:21:\"easy-facebook-likebox\";O:9:\"FS_Plugin\":24:{s:16:\"parent_plugin_id\";N;s:5:\"title\";s:16:\"Easy Social Feed\";s:4:\"slug\";s:21:\"easy-facebook-likebox\";s:12:\"premium_slug\";s:29:\"easy-facebook-likebox-premium\";s:4:\"type\";s:6:\"plugin\";s:20:\"affiliate_moderation\";s:3:\"all\";s:19:\"is_wp_org_compliant\";b:1;s:22:\"premium_releases_count\";N;s:4:\"file\";s:47:\"easy-facebook-likebox/easy-facebook-likebox.php\";s:7:\"version\";s:5:\"6.3.8\";s:11:\"auto_update\";N;s:4:\"info\";N;s:10:\"is_premium\";b:0;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:17:\"opt_in_moderation\";N;s:10:\"public_key\";s:32:\"pk_d982f4dff842224ca5e54c84f6822\";s:10:\"secret_key\";N;s:2:\"id\";s:4:\"4142\";s:7:\"updated\";N;s:7:\"created\";N;s:22:\"\0FS_Entity\0_is_updated\";b:0;}s:22:\"woo-product-attachment\";O:9:\"FS_Plugin\":24:{s:16:\"parent_plugin_id\";N;s:5:\"title\";s:34:\"Product Attachment for WooCommerce\";s:4:\"slug\";s:22:\"woo-product-attachment\";s:12:\"premium_slug\";s:30:\"woo-product-attachment-premium\";s:4:\"type\";s:6:\"plugin\";s:20:\"affiliate_moderation\";s:8:\"selected\";s:19:\"is_wp_org_compliant\";b:1;s:22:\"premium_releases_count\";N;s:4:\"file\";s:57:\"woo-product-attachment/woocommerce-product-attachment.php\";s:7:\"version\";s:5:\"2.2.0\";s:11:\"auto_update\";N;s:4:\"info\";N;s:10:\"is_premium\";b:0;s:14:\"premium_suffix\";s:7:\"Premium\";s:7:\"is_live\";b:1;s:9:\"bundle_id\";N;s:17:\"bundle_public_key\";N;s:17:\"opt_in_moderation\";N;s:10:\"public_key\";s:32:\"pk_eac499ce039e8334a8d30870fd1fd\";s:10:\"secret_key\";N;s:2:\"id\";s:4:\"3473\";s:7:\"updated\";N;s:7:\"created\";N;s:22:\"\0FS_Entity\0_is_updated\";b:0;}}s:9:\"unique_id\";s:32:\"88acee460b91fc7f5b22be750247eba7\";s:6:\"addons\";a:1:{i:4142;a:2:{i:0;O:9:\"FS_Plugin\":24:{s:16:\"parent_plugin_id\";s:4:\"4142\";s:5:\"title\";s:9:\"Multifeed\";s:4:\"slug\";s:13:\"esf-multifeed\";s:12:\"premium_slug\";s:21:\"esf-multifeed-premium\";s:4:\"type\";s:6:\"plugin\";s:20:\"affiliate_moderation\";N;s:19:\"is_wp_org_compliant\";b:0;s:22:\"premium_releases_count\";i:4;s:4:\"file\";N;s:7:\"version\";N;s:11:\"auto_update\";N;s:4:\"info\";O:14:\"FS_Plugin_Info\":13:{s:9:\"plugin_id\";s:4:\"7320\";s:11:\"description\";s:203:\"The Multifeed extension adds the ability to display posts or events from multiple Facebook pages and Instagram accounts in one single feed. The posts are ordered by date with the newest posts at the top.\";s:17:\"short_description\";s:99:\"Easily display posts, photos, and videos from multiple Facebook/Instagram pages in one single feed.\";s:10:\"banner_url\";s:67:\"https://s3-us-west-2.amazonaws.com/freemius/plugins/7320/banner.png\";s:15:\"card_banner_url\";s:72:\"https://s3-us-west-2.amazonaws.com/freemius/plugins/7320/card_banner.png\";s:15:\"selling_point_0\";s:79:\"Display posts from multiple Facebook pages or Instagram accounts in single feed\";s:15:\"selling_point_1\";s:38:\"Merge posts/photos from FB/IG accounts\";s:15:\"selling_point_2\";s:70:\"Display posts from multiple Instagram/Facebook accounts in single feed\";s:11:\"screenshots\";O:8:\"stdClass\":4:{s:12:\"screenshot_0\";s:74:\"https://s3-us-west-2.amazonaws.com/freemius/plugins/7320/screenshots/0.png\";s:12:\"screenshot_1\";s:74:\"https://s3-us-west-2.amazonaws.com/freemius/plugins/7320/screenshots/1.png\";s:12:\"screenshot_2\";s:74:\"https://s3-us-west-2.amazonaws.com/freemius/plugins/7320/screenshots/2.png\";s:12:\"screenshot_3\";s:74:\"https://s3-us-west-2.amazonaws.com/freemius/plugins/7320/screenshots/3.png\";}s:2:\"id\";s:4:\"1979\";s:7:\"updated\";s:19:\"2023-05-11 12:36:50\";s:7:\"created\";s:19:\"2020-12-28 21:56:45\";s:22:\"\0FS_Entity\0_is_updated\";b:0;}s:10:\"is_premium\";b:0;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:17:\"opt_in_moderation\";N;s:10:\"public_key\";s:32:\"pk_614dfe1097ba6696e1ad9e72efa30\";s:10:\"secret_key\";N;s:2:\"id\";s:4:\"7320\";s:7:\"updated\";s:19:\"2023-08-10 16:27:58\";s:7:\"created\";s:19:\"2020-12-01 13:58:08\";s:22:\"\0FS_Entity\0_is_updated\";b:0;}i:1;O:9:\"FS_Plugin\":24:{s:16:\"parent_plugin_id\";s:4:\"4142\";s:5:\"title\";s:13:\"Featured Post\";s:4:\"slug\";s:17:\"esf-featured-post\";s:12:\"premium_slug\";s:25:\"esf-featured-post-premium\";s:4:\"type\";s:6:\"plugin\";s:20:\"affiliate_moderation\";N;s:19:\"is_wp_org_compliant\";b:0;s:22:\"premium_releases_count\";i:3;s:4:\"file\";N;s:7:\"version\";N;s:11:\"auto_update\";N;s:4:\"info\";O:14:\"FS_Plugin_Info\":13:{s:9:\"plugin_id\";s:4:\"8262\";s:11:\"description\";s:138:\"The Featured Post extension adds the ability to display single post or events from Facebook pages or Instagram account in one single feed.\";s:17:\"short_description\";s:81:\"Select any single post from Facebook and Instagram Feed to show as featured post.\";s:10:\"banner_url\";s:67:\"https://s3-us-west-2.amazonaws.com/freemius/plugins/8262/banner.png\";s:15:\"card_banner_url\";s:72:\"https://s3-us-west-2.amazonaws.com/freemius/plugins/8262/card_banner.png\";s:15:\"selling_point_0\";s:56:\"Display single post as Featured post from Facebook feed.\";s:15:\"selling_point_1\";s:57:\"Display single post as Featured post from Instagram feed.\";s:15:\"selling_point_2\";s:68:\"Select post visually from dashboard and get the generated shortcode.\";s:11:\"screenshots\";O:8:\"stdClass\":4:{s:12:\"screenshot_0\";s:74:\"https://s3-us-west-2.amazonaws.com/freemius/plugins/8262/screenshots/0.png\";s:12:\"screenshot_1\";s:74:\"https://s3-us-west-2.amazonaws.com/freemius/plugins/8262/screenshots/1.png\";s:12:\"screenshot_2\";s:74:\"https://s3-us-west-2.amazonaws.com/freemius/plugins/8262/screenshots/2.jpg\";s:12:\"screenshot_3\";s:74:\"https://s3-us-west-2.amazonaws.com/freemius/plugins/8262/screenshots/3.jpg\";}s:2:\"id\";s:4:\"2193\";s:7:\"updated\";s:19:\"2021-05-10 17:01:15\";s:7:\"created\";s:19:\"2021-05-10 16:16:35\";s:22:\"\0FS_Entity\0_is_updated\";b:0;}s:10:\"is_premium\";b:0;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:17:\"opt_in_moderation\";N;s:10:\"public_key\";s:32:\"pk_2f68aaddd0c6fe6607dba2ee0d7e1\";s:10:\"secret_key\";N;s:2:\"id\";s:4:\"8262\";s:7:\"updated\";s:19:\"2023-08-10 16:27:58\";s:7:\"created\";s:19:\"2021-04-26 18:26:35\";s:22:\"\0FS_Entity\0_is_updated\";b:0;}}}s:13:\"admin_notices\";a:2:{s:21:\"easy-facebook-likebox\";a:0:{}s:22:\"woo-product-attachment\";a:0:{}}}','yes'),(6446,'fs_gdpr','a:1:{s:2:\"u1\";a:1:{s:8:\"required\";b:0;}}','yes'),(6447,'fs_api_cache','a:0:{}','no'),(6450,'fta_settings','a:3:{s:7:\"version\";s:5:\"6.3.8\";s:11:\"installDate\";s:19:\"2022-08-31 03:44:15\";s:7:\"plugins\";a:2:{s:8:\"facebook\";a:13:{s:4:\"name\";s:44:\"Custom Facebook Feed - Page Plugin (Likebox)\";s:4:\"slug\";s:21:\"easy-facebook-likebox\";s:13:\"activate_slug\";s:8:\"facebook\";s:11:\"description\";s:143:\"Display customizable and mobile-friendly Facebook post, images, videos, events, albums feed and Facebook page plugin using shortcode and widget\";s:8:\"img_name\";s:12:\"fb_cover.png\";s:6:\"status\";s:9:\"activated\";s:15:\"default_skin_id\";i:2436;s:15:\"default_page_id\";i:2439;s:14:\"approved_pages\";a:1:{i:101893462042343;a:7:{s:12:\"access_token\";s:210:\"EAAIm4pouIcQBAE89DMq3DIawJKgb7CEyF9QVpI96r8p0RAGJWGHgYXZAdZATZBmdrrksumZBtffGTsIZC37BWicpuvbDFjs2RjNtMEsUwTM22YN60zHuPr1Q0kodBPMtwb1W2jsR1GUhL2XaiTXf4jOROZBQ2XqYqzobphtJPfUXRwd1XODfU0LFLlOhd4x6IlZChmjsrksTQZDZD\";s:8:\"username\";s:13:\"FarmchemieLtd\";s:2:\"id\";s:15:\"101893462042343\";s:4:\"name\";s:26:\"Farmchemie Private Limited\";s:9:\"fan_count\";i:2258;s:8:\"category\";s:22:\"Pharmaceutical company\";s:5:\"about\";s:155:\"Engaged in the importation, distribution & manufacturing of veterinary pharmaceuticals, animal feed supplements / additives, biologicals,\npoultry equipment\";}}s:12:\"access_token\";s:214:\"EAAIm4pouIcQBAA6X61eGgBRk9JFpL1DuiGb72k6z6FGLsgywne7dUMBZA5uym4UvbDGLsHUHF8N0k8grXrXxjOZCWNymNB6SDn1oLbyxy6aShrcFJdCm70ihZCIiZATCByK2YOkjXqSmih333dq0gBsiciP5fozGXDDKxmtpBrkdE5nYcuTsfG7MmfyQESkMG5FEewbVw2iZB1mbM3DiO\";s:4:\"type\";s:4:\"page\";s:6:\"author\";O:8:\"stdClass\":2:{s:2:\"id\";s:15:\"428910029343836\";s:4:\"name\";s:6:\"Ud Wan\";}s:17:\"access_token_info\";a:5:{s:22:\"data_access_expires_at\";i:1669712571;s:10:\"expires_at\";i:1661943600;s:8:\"is_valid\";b:1;s:9:\"issued_at\";N;s:6:\"app_id\";s:15:\"605704644600260\";}}s:9:\"instagram\";a:8:{s:4:\"name\";s:21:\"Custom Instagram Feed\";s:4:\"slug\";s:3:\"mif\";s:13:\"activate_slug\";s:9:\"instagram\";s:11:\"description\";s:164:\"Display stunning photos from the Instagram account in the feed, any Hashtag Feed and gallery of photos in the PopUp using shortcode, widget, inside popup and widget\";s:8:\"img_name\";s:15:\"insta_cover.png\";s:6:\"status\";s:9:\"activated\";s:15:\"default_skin_id\";i:2434;s:15:\"default_page_id\";i:2435;}}}','yes'),(6763,'widget_ffwd_info','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(6451,'widget_easy_facebook_feed','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(6452,'widget_easy_facebook_page_plugin','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(6453,'widget_esf_instagram_feed','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(6742,'widget_jr_insta_slider','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(57621,'wcpoa_product_tab_name','Attachment','yes'),(57622,'wcpoa_order_tab_name','Attachment','yes'),(57623,'wcpoa_admin_order_tab_name','Attachment','yes'),(57624,'wcpoa_att_btn_in_order_list','wcpoa_att_btn_in_order_list_enable','yes'),(57625,'wcpoa_attachments_show_in_email','yes','yes'),(57626,'wcpoa_att_btn_position','wcpoa_att_btn_position_after','yes'),(57627,'wcpoa_att_in_my_acc','wcpoa_att_in_my_acc_enable','yes'),(57628,'wcpoa_att_in_thankyou','wcpoa_att_in_thankyou_enable','yes'),(57629,'wcpoa_attachments_action_on_click','download','yes'),(58085,'product_cat_children','a:1:{i:64;a:3:{i:0;i:102;i:1;i:114;i:2;i:121;}}','yes'),(6740,'wis_plugin_activated','1661923267','yes'),(6741,'wis_plugin_version','2.0.7','yes'),(6535,'widget_weblizar_facebook_likebox','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(6536,'widget_weblizar_facebook_feed_widget','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(6488,'fts-date-and-time-format','one-day-ago','yes'),(6489,'fts_clear_cache_developer_mode','86400','yes'),(6490,'fts_admin_bar_menu','show-admin-bar-menu','yes'),(6493,'rating_fts_slick_notice','pending','yes'),(6548,'weblizar_facebook_shortcode_settings','s:351:\"a:11:{s:15:\"FacebookPageUrl\";s:38:\"https://www.facebook.com/FarmchemieLtd\";s:11:\"ColorScheme\";s:0:\"\";s:6:\"Header\";s:0:\"\";s:6:\"Stream\";s:4:\"true\";s:5:\"Width\";s:4:\"1000\";s:6:\"Height\";s:3:\"400\";s:7:\"FbAppId\";s:15:\"488390501239538\";s:10:\"ShowBorder\";s:4:\"true\";s:9:\"ShowFaces\";s:4:\"true\";s:9:\"ForceWall\";s:5:\"false\";s:18:\"weblizar_locale_fb\";s:5:\"en_GB\";}\";','yes'),(6681,'smuzsf_plugin_version','1.0','yes'),(6764,'ffwd_old_version','1.2.7','yes'),(6765,'ffwd_admin_notice','a:1:{s:15:\"two_week_review\";a:2:{s:5:\"start\";s:9:\"9/14/2022\";s:3:\"int\";i:14;}}','yes'),(6845,'weblizar_facebook_feed_option_settings','s:442:\"a:7:{s:9:\"ffp_limit\";s:0:\"\";s:19:\"ffp_timeline_layout\";s:10:\"full_width\";s:16:\"feed_customs_css\";s:0:\"\";s:15:\"ffp_hover_color\";s:7:\"#2e2c2c\";s:16:\"ffp_header_check\";s:0:\"\";s:12:\"ffp_page_url\";s:0:\"\";s:11:\"ffp_page_id\";s:214:\"EAAIm4pouIcQBAA6X61eGgBRk9JFpL1DuiGb72k6z6FGLsgywne7dUMBZA5uym4UvbDGLsHUHF8N0k8grXrXxjOZCWNymNB6SDn1oLbyxy6aShrcFJdCm70ihZCIiZATCByK2YOkjXqSmih333dq0gBsiciP5fozGXDDKxmtpBrkdE5nYcuTsfG7MmfyQESkMG5FEewbVw2iZB1mbM3DiO\";}\";','yes'),(6761,'ffwd_autoupdate_time','1692162424','yes'),(6762,'ffwd_version','1.2.7','yes'),(6752,'wis_feeds_last_id','1','yes'),(6801,'embedpress:elements','a:2:{s:9:\"gutenberg\";a:14:{s:17:\"google-docs-block\";s:17:\"google-docs-block\";s:8:\"document\";s:8:\"document\";s:10:\"embedpress\";s:10:\"embedpress\";s:14:\"embedpress-pdf\";s:14:\"embedpress-pdf\";s:19:\"google-sheets-block\";s:19:\"google-sheets-block\";s:19:\"google-slides-block\";s:19:\"google-slides-block\";s:13:\"youtube-block\";s:13:\"youtube-block\";s:18:\"google-forms-block\";s:18:\"google-forms-block\";s:21:\"google-drawings-block\";s:21:\"google-drawings-block\";s:17:\"google-maps-block\";s:17:\"google-maps-block\";s:12:\"twitch-block\";s:12:\"twitch-block\";s:12:\"wistia-block\";s:12:\"wistia-block\";s:11:\"vimeo-block\";s:11:\"vimeo-block\";s:19:\"embedpress-calendar\";s:19:\"embedpress-calendar\";}s:9:\"elementor\";a:4:{s:19:\"embedpress-document\";s:19:\"embedpress-document\";s:10:\"embedpress\";s:10:\"embedpress\";s:14:\"embedpress-pdf\";s:14:\"embedpress-pdf\";s:19:\"embedpress-calendar\";s:19:\"embedpress-calendar\";}}','yes'),(6802,'embedpress','a:3:{s:24:\"need_first_time_redirect\";b:0;s:19:\"enablePluginInAdmin\";i:1;s:19:\"enablePluginInFront\";i:1;}','yes'),(6803,'embedpress_elements_updated','1','yes'),(6804,'embedpress_v_320_migration','1','yes'),(6805,'embedpress_v_330_migration','1','yes'),(6806,'embedpress_notices','a:3:{s:5:\"optin\";a:2:{s:5:\"start\";i:1661924347;s:10:\"recurrence\";i:30;}s:7:\"version\";s:5:\"1.0.0\";s:6:\"review\";a:2:{s:5:\"start\";i:1663220348;s:10:\"recurrence\";i:30;}}','no'),(6808,'embedpress_activation_redirect_done','1','yes'),(6809,'epgc_client_secret','','no'),(6810,'epgc_selected_calendar_ids','a:0:{}','no'),(6811,'widget_wef_widget','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(7507,'wpins_block_notice','a:1:{s:10:\"embedpress\";s:10:\"embedpress\";}','yes'),(6853,'fb_like_btn_color','light','yes'),(6854,'fb_language','en_US','yes'),(6855,'fb_show_follow_btn','Please Select Option','yes'),(6856,'fb_show_follow_like_box_cover','Please Select Option','yes'),(6857,'fb_show_follow_btn_where','','yes'),(6858,'fb_header_extra_text_color','','yes'),(6859,'fb_text_color','','yes'),(6860,'fb_link_color','','yes'),(6861,'fb_link_color_hover','','yes'),(6862,'fb_feed_width','','yes'),(6863,'fb_feed_margin','','yes'),(6864,'fb_feed_padding','','yes'),(6865,'fb_feed_background_color','','yes'),(6866,'fb_post_background_color','','yes'),(6867,'fb_grid_border_bottom_color','','yes'),(6868,'fb_grid_posts_background_color','','yes'),(6869,'fb_border_bottom_color','','yes'),(6870,'fts_facebook_custom_api_token','Oa2E2U9OjwwJHqg+JewW1VpiZEV5MjNDWFpJckpOZU81ZzViZ1doQllQK3V0R0FOUDFCdXVaV0JWTE1VdWlpdGx0ZldnbC9yc0gxODlNOXNFcVZmR3MyZ3EvYWttd3hUeUQySHhDSi9lRnJUVzNVTlpoSHB5WW1OVk9ZZHVKU1o1Zjh1TVZPSFhRaGh0QTBGTzRPM2paNVVFVnJiTU9KLys3QkErc1BGR0Rpc3pxelZHZkRkR3Zza0t1eUEyNktDU3lGMCtPQnhFWk5PelNOYzE5QVlmcmRpKzRrNUpoMG9CbVpQWFJYcHF4MnY0RVBMTlpYN3ZnZVg0R0tCd0RXU1c3UTFxRmJQRUYvcHh2UW1tUEEzaXdHQkRyUW8yMC8zcGtsNFplQXpnRklpczdZV0lESURiM0Z4Z0tqcXg5elQxTmQrbEZaV1FpbVRYcXk3c3JnVGpxbFpKNkNPa3J4M202OUtydGtra1AwYzJSNGFjT2lMYU40Y3RHT2FYdEx1UUlrPQ==','yes'),(6871,'fb_event_title_color','','yes'),(6872,'fb_event_title_size','','yes'),(6873,'fb_event_maplink_color','','yes'),(6874,'fb_events_title_color','','yes'),(6875,'fb_events_title_size','','yes'),(6876,'fb_events_map_link_color','','yes'),(6877,'fb_hide_shared_by_etc_text','','yes'),(6878,'fb_title_htag','','yes'),(6879,'fb_title_htag_size','','yes'),(6880,'fts_facebook_custom_api_token_biz','','yes'),(6881,'fb_reviews_text_color','','yes'),(6882,'fb_reviews_backg_color','','yes'),(6883,'fb_reviews_star_language','','yes'),(6884,'fb_reviews_recommended_language','','yes'),(6885,'fb_reviews_see_more_reviews_language','','yes'),(6886,'fb_reviews_overall_rating_background_border_hide','','yes'),(6887,'fb_reviews_overall_rating_background_color','','yes'),(6888,'fb_reviews_overall_rating_border_color','','yes'),(6889,'fb_reviews_overall_rating_text_color','','yes'),(6890,'fb_reviews_overall_rating_background_padding','','yes'),(6891,'fb_reviews_remove_see_reviews_link','','yes'),(6892,'fb_reviews_overall_rating_of_5_stars_text','','yes'),(6893,'fb_reviews_overall_rating_reviews_text','','yes'),(6894,'fb_max_image_width','','yes'),(6895,'fb_hide_images_in_posts','','yes'),(6896,'fb_hide_error_handler_message','','yes'),(6897,'fb_count_offset','','yes'),(6898,'fb_hide_no_posts_message','','yes'),(6899,'fts_facebook_custom_api_token_user_id','','yes'),(6900,'fts_facebook_custom_api_token_user_name','','yes'),(6901,'fts_facebook_custom_api_token_profile_image','','yes'),(6902,'fts_facebook_custom_api_token_user_id_biz','','yes'),(6903,'fts_facebook_custom_api_token_user_name_biz','','yes'),(6904,'fts_facebook_custom_api_token_biz_profile_image','','yes'),(6905,'fb_loadmore_background_color','','yes'),(6906,'fb_loadmore_text_color','','yes'),(6907,'fb_load_more_text','','yes'),(6908,'fb_no_more_posts_text','','yes'),(6909,'fb_no_more_photos_text','','yes'),(6910,'fb_no_more_videos_text','','yes'),(6911,'fb_no_more_reviews_text','','yes'),(6912,'fb_text_size','','yes'),(6913,'fb_view_on_fb_fts','','yes'),(7044,'auto_core_update_notified','a:4:{s:4:\"type\";s:7:\"success\";s:5:\"email\";s:21:\"yasitha.p.m@gmail.com\";s:7:\"version\";s:5:\"6.3.1\";s:9:\"timestamp\";i:1693336933;}','no'),(62464,'_transient_timeout_jetpack_file_data_12.4','1697427507','no'),(62465,'_transient_jetpack_file_data_12.4','a:1:{s:32:\"3fd340ad52927afb3bbb9e98575eccfd\";a:15:{s:4:\"name\";s:0:\"\";s:11:\"description\";s:0:\"\";s:4:\"sort\";s:0:\"\";s:20:\"recommendation_order\";s:0:\"\";s:10:\"introduced\";s:0:\"\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:0:\"\";s:24:\"requires_user_connection\";s:0:\"\";s:13:\"auto_activate\";s:0:\"\";s:11:\"module_tags\";s:0:\"\";s:7:\"feature\";s:0:\"\";s:25:\"additional_search_queries\";s:0:\"\";s:12:\"plan_classes\";s:0:\"\";}}','no'),(15055,'_transient_wc_count_comments','O:8:\"stdClass\":7:{s:14:\"total_comments\";i:0;s:3:\"all\";i:0;s:9:\"moderated\";i:0;s:8:\"approved\";i:0;s:4:\"spam\";i:0;s:5:\"trash\";i:0;s:12:\"post-trashed\";i:0;}','yes'),(7034,'boldgrid_backup_in_progress_data','a:7:{s:6:\"status\";s:22:\"Backing up database...\";s:12:\"log_filename\";s:22:\"archive-1695791616.log\";s:3:\"pid\";i:1557688;s:10:\"start_time\";i:1695791616;s:7:\"trigger\";s:36:\"fc_ypm_admin (yasitha.p.m@gmail.com)\";s:6:\"tables\";a:67:{i:0;s:28:\"wplf_actionscheduler_actions\";i:1;s:27:\"wplf_actionscheduler_claims\";i:2;s:27:\"wplf_actionscheduler_groups\";i:3;s:25:\"wplf_actionscheduler_logs\";i:4;s:16:\"wplf_commentmeta\";i:5;s:13:\"wplf_comments\";i:6;s:13:\"wplf_e_events\";i:7;s:10:\"wplf_links\";i:8;s:12:\"wplf_options\";i:9;s:13:\"wplf_postmeta\";i:10;s:10:\"wplf_posts\";i:11;s:18:\"wplf_revslider_css\";i:12;s:22:\"wplf_revslider_css_bkp\";i:13;s:31:\"wplf_revslider_layer_animations\";i:14;s:35:\"wplf_revslider_layer_animations_bkp\";i:15;s:26:\"wplf_revslider_navigations\";i:16;s:30:\"wplf_revslider_navigations_bkp\";i:17;s:22:\"wplf_revslider_sliders\";i:18;s:26:\"wplf_revslider_sliders_bkp\";i:19;s:21:\"wplf_revslider_slides\";i:20;s:25:\"wplf_revslider_slides_bkp\";i:21;s:28:\"wplf_revslider_static_slides\";i:22;s:32:\"wplf_revslider_static_slides_bkp\";i:23;s:23:\"wplf_term_relationships\";i:24;s:18:\"wplf_term_taxonomy\";i:25;s:13:\"wplf_termmeta\";i:26;s:10:\"wplf_terms\";i:27;s:13:\"wplf_usermeta\";i:28;s:10:\"wplf_users\";i:29;s:26:\"wplf_wc_admin_note_actions\";i:30;s:19:\"wplf_wc_admin_notes\";i:31;s:23:\"wplf_wc_category_lookup\";i:32;s:23:\"wplf_wc_customer_lookup\";i:33;s:20:\"wplf_wc_download_log\";i:34;s:23:\"wplf_wc_order_addresses\";i:35;s:27:\"wplf_wc_order_coupon_lookup\";i:36;s:30:\"wplf_wc_order_operational_data\";i:37;s:28:\"wplf_wc_order_product_lookup\";i:38;s:19:\"wplf_wc_order_stats\";i:39;s:24:\"wplf_wc_order_tax_lookup\";i:40;s:33:\"wplf_wc_product_attributes_lookup\";i:41;s:36:\"wplf_wc_product_download_directories\";i:42;s:27:\"wplf_wc_product_meta_lookup\";i:43;s:19:\"wplf_wc_rate_limits\";i:44;s:22:\"wplf_wc_reserved_stock\";i:45;s:24:\"wplf_wc_tax_rate_classes\";i:46;s:16:\"wplf_wc_webhooks\";i:47;s:15:\"wplf_wd_fb_data\";i:48;s:15:\"wplf_wd_fb_info\";i:49;s:17:\"wplf_wd_fb_option\";i:50;s:20:\"wplf_wd_fb_shortcode\";i:51;s:16:\"wplf_wd_fb_theme\";i:52;s:25:\"wplf_woocommerce_api_keys\";i:53;s:37:\"wplf_woocommerce_attribute_taxonomies\";i:54;s:49:\"wplf_woocommerce_downloadable_product_permissions\";i:55;s:20:\"wplf_woocommerce_log\";i:56;s:31:\"wplf_woocommerce_order_itemmeta\";i:57;s:28:\"wplf_woocommerce_order_items\";i:58;s:34:\"wplf_woocommerce_payment_tokenmeta\";i:59;s:31:\"wplf_woocommerce_payment_tokens\";i:60;s:25:\"wplf_woocommerce_sessions\";i:61;s:40:\"wplf_woocommerce_shipping_zone_locations\";i:62;s:38:\"wplf_woocommerce_shipping_zone_methods\";i:63;s:31:\"wplf_woocommerce_shipping_zones\";i:64;s:35:\"wplf_woocommerce_tax_rate_locations\";i:65;s:26:\"wplf_woocommerce_tax_rates\";i:66;s:17:\"wplf_wpforms_lite\";}s:4:\"step\";i:1;}','yes'),(741,'theme_mods_dt-the7','a:3:{i:0;b:0;s:18:\"nav_menu_locations\";a:1:{s:7:\"primary\";i:17;}s:18:\"custom_css_post_id\";i:-1;}','yes'),(742,'theme_switched','','yes'),(881,'the7_last_dynamic_stylesheets_hash','53fe5068cd8a608267298070140fbf1d','yes'),(766,'the7_plugins_last_check','1695791305','no'),(767,'optionsframework','a:2:{s:2:\"id\";s:4:\"the7\";s:12:\"knownoptions\";a:1:{i:0;s:4:\"the7\";}}','yes'),(768,'the7','a:1053:{s:31:\"advanced-fvm_enable_integration\";s:1:\"0\";s:27:\"advanced-fvm_script_timeout\";s:4:\"50ms\";s:35:\"advanced-normalize_resize_on_mobile\";s:1:\"1\";s:25:\"advanced-speed_img_resize\";s:1:\"1\";s:21:\"blog-fancy_date-style\";s:10:\"horizontal\";s:26:\"blog-thumbnail_proportions\";a:2:{s:5:\"width\";i:2;s:6:\"height\";i:1;}s:19:\"blog-thumbnail_size\";s:6:\"resize\";s:19:\"bottom_bar-bg_color\";s:22:\"rgba(255,255,255,0.12)\";s:19:\"bottom_bar-bg_image\";a:4:{s:5:\"image\";s:0:\"\";s:6:\"repeat\";s:6:\"repeat\";s:10:\"position_x\";s:6:\"center\";s:10:\"position_y\";s:3:\"top\";}s:25:\"bottom_bar-collapse_after\";s:5:\"990px\";s:16:\"bottom_bar-color\";s:7:\"#ffffff\";s:21:\"bottom_bar-copyrights\";s:47:\"Coptyright ©  [dt_year] <b>Farmchemie(pvt)</b>\";s:18:\"bottom_bar-credits\";b:0;s:18:\"bottom_bar-enabled\";s:1:\"1\";s:17:\"bottom_bar-height\";s:4:\"60px\";s:17:\"bottom_bar-layout\";s:9:\"logo_left\";s:20:\"bottom_bar-line_size\";s:3:\"1px\";s:23:\"bottom_bar-logo-padding\";s:16:\"8px 12px 8px 0px\";s:18:\"bottom_bar-logo_hd\";a:2:{i:0;s:0:\"\";i:1;i:0;}s:23:\"bottom_bar-logo_regular\";a:2:{i:0;s:0:\"\";i:1;i:0;}s:30:\"bottom_bar-menu-collapse_after\";s:5:\"778px\";s:18:\"bottom_bar-padding\";s:9:\"10px 10px\";s:16:\"bottom_bar-style\";s:18:\"content_width_line\";s:15:\"bottom_bar-text\";s:0:\"\";s:22:\"breadcrumbs-typography\";a:4:{s:11:\"font_family\";s:6:\"Roboto\";s:14:\"text_transform\";s:4:\"none\";s:9:\"font_size\";s:2:\"14\";s:11:\"line_height\";s:2:\"24\";}s:20:\"breadcrumbs_bg_color\";s:17:\"rgba(89,68,146,1)\";s:24:\"breadcrumbs_border_color\";s:19:\"rgba(255,255,255,0)\";s:25:\"breadcrumbs_border_radius\";s:3:\"2px\";s:24:\"breadcrumbs_border_width\";s:3:\"0px\";s:18:\"breadcrumbs_margin\";s:16:\"10px 0px 0px 0px\";s:19:\"breadcrumbs_padding\";s:15:\"0px 0px 0px 0px\";s:13:\"button-shadow\";a:6:{s:5:\"color\";s:13:\"rgba(0,0,0,0)\";s:10:\"horizontal\";s:1:\"0\";s:8:\"vertical\";s:1:\"0\";s:4:\"blur\";s:2:\"10\";s:6:\"spread\";s:1:\"0\";s:8:\"position\";s:7:\"outline\";}s:19:\"button-shadow-hover\";a:6:{s:5:\"color\";s:13:\"rgba(0,0,0,0)\";s:10:\"horizontal\";s:1:\"0\";s:8:\"vertical\";s:1:\"0\";s:4:\"blur\";s:2:\"10\";s:6:\"spread\";s:1:\"0\";s:8:\"position\";s:7:\"outline\";}s:20:\"buttons-border-color\";s:7:\"#ffffff\";s:25:\"buttons-border-color_mode\";s:6:\"accent\";s:13:\"buttons-color\";s:7:\"#81d742\";s:22:\"buttons-color_gradient\";s:31:\"135deg|#13aa4a 30%|#84df31 100%\";s:18:\"buttons-color_mode\";s:6:\"accent\";s:26:\"buttons-hover-border-color\";s:7:\"#ffffff\";s:31:\"buttons-hover-border-color_mode\";s:6:\"accent\";s:19:\"buttons-hover_color\";s:7:\"#81d742\";s:28:\"buttons-hover_color_gradient\";s:29:\"0deg|#23aadd 30%|#37ce9d 100%\";s:24:\"buttons-hover_color_mode\";s:6:\"accent\";s:26:\"buttons-l-custom-icon-size\";s:1:\"1\";s:19:\"buttons-l-icon-size\";s:2:\"18\";s:20:\"buttons-l-min-height\";s:3:\"1px\";s:19:\"buttons-l-min-width\";s:3:\"1px\";s:20:\"buttons-l-typography\";a:4:{s:11:\"font_family\";s:7:\"Exo:700\";s:14:\"text_transform\";s:4:\"none\";s:9:\"font_size\";s:2:\"18\";s:14:\"letter_spacing\";s:1:\"0\";}s:23:\"buttons-l_border_radius\";s:3:\"1px\";s:22:\"buttons-l_border_width\";s:3:\"0px\";s:17:\"buttons-l_padding\";s:19:\"16px 24px 16px 24px\";s:26:\"buttons-m-custom-icon-size\";s:1:\"1\";s:19:\"buttons-m-icon-size\";s:2:\"14\";s:20:\"buttons-m-min-height\";s:3:\"1px\";s:19:\"buttons-m-min-width\";s:3:\"1px\";s:20:\"buttons-m-typography\";a:4:{s:11:\"font_family\";s:7:\"Exo:700\";s:14:\"text_transform\";s:4:\"none\";s:9:\"font_size\";s:2:\"14\";s:14:\"letter_spacing\";s:1:\"0\";}s:23:\"buttons-m_border_radius\";s:3:\"1px\";s:22:\"buttons-m_border_width\";s:3:\"0px\";s:17:\"buttons-m_padding\";s:19:\"12px 18px 12px 18px\";s:26:\"buttons-s-custom-icon-size\";s:1:\"1\";s:19:\"buttons-s-icon-size\";s:2:\"12\";s:20:\"buttons-s-min-height\";s:3:\"1px\";s:19:\"buttons-s-min-width\";s:3:\"1px\";s:20:\"buttons-s-typography\";a:4:{s:11:\"font_family\";s:7:\"Exo:700\";s:14:\"text_transform\";s:4:\"none\";s:9:\"font_size\";s:2:\"12\";s:14:\"letter_spacing\";s:1:\"0\";}s:23:\"buttons-s_border_radius\";s:3:\"1px\";s:22:\"buttons-s_border_width\";s:3:\"0px\";s:17:\"buttons-s_padding\";s:17:\"8px 14px 7px 14px\";s:18:\"buttons-text_color\";s:7:\"#ffffff\";s:23:\"buttons-text_color_mode\";s:5:\"color\";s:24:\"buttons-text_hover_color\";s:7:\"#ffffff\";s:29:\"buttons-text_hover_color_mode\";s:5:\"color\";s:20:\"contact_form_message\";s:1:\"1\";s:33:\"contact_form_recaptcha_secret_key\";s:0:\"\";s:31:\"contact_form_recaptcha_site_key\";s:0:\"\";s:27:\"contact_form_security_token\";s:20:\"c9d5fd81a615cc6413fe\";s:21:\"content-headers_color\";s:7:\"#333333\";s:19:\"content-links_color\";s:7:\"#8224e3\";s:26:\"content-primary_text_color\";s:7:\"#000000\";s:28:\"content-secondary_text_color\";s:7:\"#000000\";s:21:\"custom_error_messages\";s:48:\"The message has not been sent. Plaese try again.\";s:32:\"custom_error_messages_validation\";s:61:\"One or more fields have an error. Please check and try again.\";s:23:\"custom_success_messages\";s:27:\"Your message has been sent.\";s:14:\"dividers-color\";s:16:\"rgba(0,0,0,0.08)\";s:17:\"filter-typography\";a:3:{s:11:\"font_family\";s:7:\"Exo:700\";s:14:\"text_transform\";s:4:\"none\";s:9:\"font_size\";s:2:\"14\";}s:14:\"fonts-big_size\";a:2:{s:9:\"font_size\";s:4:\"18px\";s:11:\"line_height\";s:5:\"1.6em\";}s:17:\"fonts-font_family\";s:3:\"Exo\";s:19:\"fonts-h1-typography\";a:4:{s:11:\"font_family\";s:7:\"Exo:700\";s:20:\"responsive_font_size\";a:3:{s:7:\"desktop\";s:4:\"52px\";s:6:\"tablet\";s:4:\"34px\";s:6:\"mobile\";s:4:\"34px\";}s:22:\"responsive_line_height\";a:1:{s:7:\"desktop\";s:4:\"62px\";}s:14:\"text_transform\";s:4:\"none\";}s:19:\"fonts-h2-typography\";a:4:{s:11:\"font_family\";s:7:\"Exo:700\";s:20:\"responsive_font_size\";a:1:{s:7:\"desktop\";s:4:\"34px\";}s:22:\"responsive_line_height\";a:1:{s:7:\"desktop\";s:4:\"44px\";}s:14:\"text_transform\";s:4:\"none\";}s:19:\"fonts-h3-typography\";a:4:{s:11:\"font_family\";s:7:\"Exo:700\";s:20:\"responsive_font_size\";a:1:{s:7:\"desktop\";s:4:\"24px\";}s:22:\"responsive_line_height\";a:1:{s:7:\"desktop\";s:4:\"34px\";}s:14:\"text_transform\";s:4:\"none\";}s:19:\"fonts-h4-typography\";a:4:{s:11:\"font_family\";s:7:\"Exo:700\";s:20:\"responsive_font_size\";a:1:{s:7:\"desktop\";s:4:\"24px\";}s:22:\"responsive_line_height\";a:1:{s:7:\"desktop\";s:4:\"30px\";}s:14:\"text_transform\";s:4:\"none\";}s:19:\"fonts-h5-typography\";a:4:{s:11:\"font_family\";s:7:\"Exo:700\";s:20:\"responsive_font_size\";a:1:{s:7:\"desktop\";s:4:\"16px\";}s:22:\"responsive_line_height\";a:1:{s:7:\"desktop\";s:4:\"26px\";}s:14:\"text_transform\";s:4:\"none\";}s:19:\"fonts-h6-typography\";a:4:{s:11:\"font_family\";s:7:\"Exo:700\";s:20:\"responsive_font_size\";a:1:{s:7:\"desktop\";s:4:\"14px\";}s:22:\"responsive_line_height\";a:1:{s:7:\"desktop\";s:4:\"24px\";}s:14:\"text_transform\";s:4:\"none\";}s:25:\"fonts-headers-font-family\";s:0:\"\";s:28:\"fonts-headers-text-transform\";s:0:\"\";s:17:\"fonts-normal_size\";a:2:{s:9:\"font_size\";s:4:\"15px\";s:11:\"line_height\";s:5:\"1.5em\";}s:16:\"fonts-small_size\";a:2:{s:9:\"font_size\";s:4:\"13px\";s:11:\"line_height\";s:5:\"1.4em\";}s:20:\"fonts-widget-content\";a:4:{s:11:\"font_family\";s:3:\"Exo\";s:20:\"responsive_font_size\";a:1:{s:7:\"desktop\";s:4:\"15px\";}s:22:\"responsive_line_height\";a:1:{s:7:\"desktop\";s:4:\"20px\";}s:14:\"text_transform\";s:4:\"none\";}s:18:\"fonts-widget-title\";a:4:{s:11:\"font_family\";s:3:\"Exo\";s:20:\"responsive_font_size\";a:1:{s:7:\"desktop\";s:4:\"18px\";}s:22:\"responsive_line_height\";a:1:{s:7:\"desktop\";s:4:\"20px\";}s:14:\"text_transform\";s:4:\"none\";}s:17:\"fonts-woo-content\";a:4:{s:11:\"font_family\";s:3:\"Exo\";s:20:\"responsive_font_size\";a:1:{s:7:\"desktop\";s:4:\"15px\";}s:22:\"responsive_line_height\";a:1:{s:7:\"desktop\";s:4:\"20px\";}s:14:\"text_transform\";s:4:\"none\";}s:15:\"fonts-woo-title\";a:4:{s:11:\"font_family\";s:3:\"Exo\";s:20:\"responsive_font_size\";a:1:{s:7:\"desktop\";s:4:\"15px\";}s:22:\"responsive_line_height\";a:1:{s:7:\"desktop\";s:4:\"20px\";}s:14:\"text_transform\";s:9:\"uppercase\";}s:24:\"footer-accent_text_color\";s:0:\"\";s:15:\"footer-bg_color\";s:7:\"#059444\";s:15:\"footer-bg_image\";a:4:{s:5:\"image\";s:0:\"\";s:6:\"repeat\";s:6:\"repeat\";s:10:\"position_x\";s:6:\"center\";s:10:\"position_y\";s:3:\"top\";}s:21:\"footer-collapse_after\";s:5:\"778px\";s:29:\"footer-collapse_columns_after\";s:5:\"992px\";s:17:\"footer-decoration\";s:4:\"none\";s:27:\"footer-decoration-line_size\";s:3:\"1px\";s:31:\"footer-decoration_outline_color\";s:7:\"#853497\";s:20:\"footer-headers_color\";s:7:\"#ffffff\";s:19:\"footer-is_fullwidth\";s:1:\"1\";s:13:\"footer-layout\";s:15:\"1/4+1/4+1/4+1/4\";s:21:\"footer-mobile_padding\";s:19:\"50px 20px 15px 20px\";s:14:\"footer-padding\";s:19:\"50px 50px 25px 50px\";s:23:\"footer-paddings-columns\";s:4:\"25px\";s:25:\"footer-primary_text_color\";s:7:\"#ffffff\";s:21:\"footer-slide-out-mode\";s:1:\"0\";s:12:\"footer-style\";s:16:\"solid_background\";s:23:\"general-accent_bg_color\";s:7:\"#039447\";s:32:\"general-accent_bg_color_gradient\";s:31:\"135deg|#1ebbf0 30%|#39dfaa 100%\";s:25:\"general-accent_color_mode\";s:5:\"color\";s:29:\"general-album_back_button_url\";s:0:\"\";s:25:\"general-album_meta_author\";b:0;s:29:\"general-album_meta_categories\";b:0;s:27:\"general-album_meta_comments\";b:0;s:23:\"general-album_meta_date\";b:0;s:21:\"general-album_meta_on\";s:1:\"0\";s:25:\"general-beautiful_loading\";s:7:\"enabled\";s:16:\"general-bg_color\";s:19:\"rgba(255,255,255,1)\";s:16:\"general-bg_fixed\";b:0;s:21:\"general-bg_fullscreen\";b:0;s:16:\"general-bg_image\";a:4:{s:5:\"image\";s:0:\"\";s:6:\"repeat\";s:6:\"repeat\";s:10:\"position_x\";s:6:\"center\";s:10:\"position_y\";s:3:\"top\";}s:24:\"general-blog_meta_author\";s:1:\"1\";s:28:\"general-blog_meta_categories\";s:1:\"1\";s:26:\"general-blog_meta_comments\";s:1:\"1\";s:22:\"general-blog_meta_date\";s:1:\"1\";s:20:\"general-blog_meta_on\";s:1:\"0\";s:22:\"general-blog_meta_tags\";s:1:\"1\";s:21:\"general-border_radius\";s:3:\"0px\";s:17:\"general-box_width\";s:6:\"1280px\";s:22:\"general-boxed_bg_color\";s:7:\"#f7f7f7\";s:22:\"general-boxed_bg_fixed\";s:1:\"1\";s:27:\"general-boxed_bg_fullscreen\";s:1:\"1\";s:22:\"general-boxed_bg_image\";a:4:{s:5:\"image\";s:0:\"\";s:6:\"repeat\";s:9:\"no-repeat\";s:10:\"position_x\";s:6:\"center\";s:10:\"position_y\";s:6:\"center\";}s:28:\"general-breadcrumbs_bg_color\";s:8:\"disabled\";s:25:\"general-breadcrumbs_color\";s:7:\"#adafb3\";s:33:\"general-contact_form_send_mail_to\";s:0:\"\";s:30:\"general-content_boxes_bg_color\";s:16:\"rgba(0,0,0,0.04)\";s:32:\"general-content_boxes_decoration\";s:4:\"none\";s:46:\"general-content_boxes_decoration_outline_color\";s:13:\"rgba(0,0,0,0)\";s:21:\"general-content_width\";s:6:\"1300px\";s:18:\"general-custom_css\";s:880:\".sub-nav .menu-item i.fa,\r\n.sub-nav .menu-item i.fas,\r\n.sub-nav .menu-item i.far,\r\n.sub-nav .menu-item i.fab {\r\n	text-align: center;\r\n	width: 1.25em;\r\n}\r\n\r\n\r\nh2.fancy-subtitle.start-animation-done.start-animation {\r\n    font-style: italic;\r\n}\r\n\r\n\r\n\r\n.widget.widget_presscore-custom-menu-one {\r\n\r\npadding-top: 10px;\r\n\r\n}\r\n\r\n\r\nselect.orderby {\r\n    display: none;\r\n}\r\n\r\n.wqoecf-pop-up-box div.wpcf7>form>p input[type=\"submit\"] {\r\n    padding: 12px;\r\n    background-color: #782d88 !important;\r\n    font-weight: bold;\r\n    font-size: 16px;\r\n    border: 0;\r\n    width: auto;\r\n    color: #fff !important;\r\n    margin: auto;\r\n    display: table;\r\n}\r\n\r\n\r\n\r\n.footer .custom-categories a:hover span.item-name, .footer .cat-item a:hover span.item-name, .footer .custom-menu a:hover, .footer .custom-menu li.act > a, .footer .widget_recent_comments a:hover {\r\n    color: #722f8b!important;\r\n}\";s:21:\"general-custom_loader\";s:0:\"\";s:15:\"general-favicon\";s:49:\"/wp-content/uploads/2023/08/2-favicon-16x16-1.png\";s:18:\"general-favicon_hd\";s:49:\"/wp-content/uploads/2023/08/2-favicon_32x32px.png\";s:21:\"general-filter-margin\";s:15:\"0px 3px 0px 3px\";s:22:\"general-filter-padding\";s:17:\"6px 15px 6px 15px\";s:20:\"general-filter_style\";s:7:\"minimal\";s:39:\"general-filter_style-material-line_size\";s:3:\"2px\";s:42:\"general-filter_style-minimal-border_radius\";s:5:\"100px\";s:32:\"general-fullscreen_overlay_color\";s:19:\"rgba(255,255,255,1)\";s:37:\"general-fullscreen_overlay_color_mode\";s:5:\"color\";s:35:\"general-fullscreen_overlay_gradient\";s:31:\"135deg|#2edded 30%|#0084bb 100%\";s:34:\"general-fullscreen_overlay_opacity\";s:3:\"100\";s:30:\"general-handheld_icon-old_ipad\";s:0:\"\";s:32:\"general-handheld_icon-old_iphone\";s:0:\"\";s:33:\"general-handheld_icon-retina_ipad\";s:0:\"\";s:35:\"general-handheld_icon-retina_iphone\";s:0:\"\";s:27:\"general-images_lazy_loading\";s:1:\"1\";s:14:\"general-layout\";s:4:\"wide\";s:27:\"general-lightbox_arrow_size\";s:4:\"62px\";s:32:\"general-lightbox_overlay_opacity\";s:2:\"85\";s:20:\"general-loader_style\";s:14:\"double_circles\";s:25:\"general-navigation_margin\";s:4:\"50px\";s:26:\"general-next_prev_in_album\";s:1:\"1\";s:25:\"general-next_prev_in_blog\";s:1:\"0\";s:30:\"general-next_prev_in_portfolio\";s:1:\"1\";s:29:\"general-page-title-typography\";a:4:{s:11:\"font_family\";s:7:\"Exo:700\";s:14:\"text_transform\";s:4:\"none\";s:9:\"font_size\";s:2:\"34\";s:11:\"line_height\";s:2:\"44\";}s:27:\"general-page_content_margin\";s:19:\"70px 50px 70px 50px\";s:34:\"general-page_content_mobile_margin\";s:19:\"70px 20px 70px 20px\";s:29:\"general-portfolio_meta_author\";b:0;s:33:\"general-portfolio_meta_categories\";b:0;s:31:\"general-portfolio_meta_comments\";b:0;s:27:\"general-portfolio_meta_date\";b:0;s:25:\"general-portfolio_meta_on\";s:1:\"1\";s:39:\"general-portfolio_thumbnail_proportions\";a:2:{s:5:\"width\";i:3;s:6:\"height\";i:2;}s:32:\"general-portfolio_thumbnail_size\";s:8:\"original\";s:28:\"general-post_back_button_url\";s:0:\"\";s:31:\"general-project_back_button_url\";s:0:\"\";s:28:\"general-rel_posts_head_title\";s:13:\"Related Posts\";s:21:\"general-rel_posts_max\";s:1:\"6\";s:28:\"general-rel_projects_details\";b:0;s:28:\"general-rel_projects_excerpt\";b:0;s:31:\"general-rel_projects_head_title\";s:16:\"Related Projects\";s:32:\"general-rel_projects_info_author\";b:0;s:36:\"general-rel_projects_info_categories\";b:0;s:34:\"general-rel_projects_info_comments\";b:0;s:30:\"general-rel_projects_info_date\";b:0;s:25:\"general-rel_projects_link\";b:0;s:24:\"general-rel_projects_max\";s:2:\"12\";s:26:\"general-rel_projects_title\";b:0;s:25:\"general-rel_projects_zoom\";b:0;s:18:\"general-responsive\";s:1:\"1\";s:31:\"general-responsive_title_height\";s:3:\"0px\";s:36:\"general-responsive_title_line_height\";s:2:\"34\";s:29:\"general-responsive_title_size\";s:2:\"24\";s:27:\"general-show_author_in_blog\";s:1:\"0\";s:33:\"general-show_back_button_in_album\";s:1:\"0\";s:32:\"general-show_back_button_in_post\";s:1:\"0\";s:35:\"general-show_back_button_in_project\";s:1:\"0\";s:24:\"general-show_breadcrumbs\";s:1:\"0\";s:22:\"general-show_rel_posts\";s:1:\"0\";s:25:\"general-show_rel_projects\";s:1:\"0\";s:19:\"general-show_titles\";s:1:\"0\";s:21:\"general-smooth_scroll\";s:3:\"off\";s:21:\"general-spinner_color\";s:19:\"rgba(51,51,51,0.25)\";s:31:\"general-switch_content_paddings\";s:5:\"778px\";s:19:\"general-title_align\";s:6:\"center\";s:22:\"general-title_bg_color\";s:7:\"#792c8a\";s:27:\"general-title_bg_fullscreen\";b:0;s:25:\"general-title_bg_gradient\";s:31:\"135deg|#4a66d6 30%|#12b4ea 100%\";s:22:\"general-title_bg_image\";a:4:{s:5:\"image\";s:0:\"\";s:6:\"repeat\";s:6:\"repeat\";s:10:\"position_x\";s:6:\"center\";s:10:\"position_y\";s:6:\"center\";}s:21:\"general-title_bg_mode\";s:10:\"background\";s:24:\"general-title_bg_overlay\";b:0;s:25:\"general-title_bg_parallax\";s:1:\"0\";s:19:\"general-title_color\";s:7:\"#ffffff\";s:24:\"general-title_decoration\";s:4:\"none\";s:35:\"general-title_decoration_line_color\";s:19:\"rgba(51,51,51,0.11)\";s:36:\"general-title_decoration_line_height\";s:3:\"6px\";s:35:\"general-title_decoration_line_style\";s:6:\"double\";s:38:\"general-title_decoration_outline_color\";s:18:\"rgba(30,115,190,0)\";s:39:\"general-title_decoration_outline_height\";s:4:\"10px\";s:38:\"general-title_decoration_outline_style\";s:5:\"solid\";s:27:\"general-title_enable_bg_img\";s:8:\"disabled\";s:20:\"general-title_height\";s:5:\"200px\";s:27:\"general-title_overlay_color\";s:15:\"rgba(0,0,0,0.5)\";s:36:\"general-title_responsive_breadcrumbs\";b:0;s:27:\"general-title_scroll_effect\";s:7:\"default\";s:36:\"general-titles-responsiveness-switch\";s:5:\"778px\";s:29:\"general-titles_responsiveness\";s:1:\"1\";s:21:\"general-tracking_code\";s:0:\"\";s:17:\"header-background\";s:6:\"normal\";s:15:\"header-bg-color\";s:19:\"rgba(255,255,255,1)\";s:15:\"header-bg-image\";a:4:{s:5:\"image\";s:44:\"/wp-content/uploads/2022/08/HeaderImage3.png\";s:6:\"repeat\";s:9:\"no-repeat\";s:10:\"position_x\";s:6:\"center\";s:10:\"position_y\";s:6:\"center\";}s:18:\"header-bg-is_fixed\";b:0;s:23:\"header-bg-is_fullscreen\";b:0;s:23:\"header-classic-elements\";a:0:{}s:51:\"header-classic-elements-near_logo-custom-icon-color\";s:0:\"\";s:50:\"header-classic-elements-near_logo-custom-icon-size\";s:2:\"16\";s:44:\"header-classic-elements-near_logo-font_color\";s:7:\"#888888\";s:44:\"header-classic-elements-near_logo-typography\";a:2:{s:11:\"font_family\";s:3:\"Exo\";s:9:\"font_size\";s:2:\"14\";}s:46:\"header-classic-elements-near_logo_left-padding\";s:15:\"0px 0px 0px 0px\";s:47:\"header-classic-elements-near_logo_right-padding\";s:15:\"0px 0px 0px 0px\";s:51:\"header-classic-elements-near_menu-custom-icon-color\";s:0:\"\";s:50:\"header-classic-elements-near_menu-custom-icon-size\";s:2:\"16\";s:44:\"header-classic-elements-near_menu-font_color\";s:7:\"#888888\";s:44:\"header-classic-elements-near_menu-typography\";a:2:{s:11:\"font_family\";s:3:\"Exo\";s:9:\"font_size\";s:2:\"14\";}s:47:\"header-classic-elements-near_menu_right-padding\";s:16:\"0px 0px 0px 40px\";s:21:\"header-classic-height\";s:5:\"280px\";s:27:\"header-classic-is_fullwidth\";s:1:\"0\";s:28:\"header-classic-logo-position\";s:6:\"center\";s:28:\"header-classic-menu-bg-color\";s:7:\"#ffffff\";s:28:\"header-classic-menu-bg-style\";s:8:\"disabled\";s:29:\"header-classic-menu-line_size\";s:3:\"1px\";s:26:\"header-classic-menu-margin\";s:7:\"0px 0px\";s:28:\"header-classic-menu-position\";s:6:\"center\";s:28:\"header-classic-show_elements\";s:1:\"1\";s:27:\"header-classic-side-padding\";s:9:\"30px 30px\";s:30:\"header-classic-switch_paddings\";s:3:\"0px\";s:30:\"header-classic_mobile_paddings\";s:7:\"0px 0px\";s:17:\"header-decoration\";s:8:\"disabled\";s:23:\"header-decoration-color\";s:7:\"#81d742\";s:27:\"header-decoration-line_size\";s:3:\"5px\";s:27:\"header-elements-button-1-bg\";s:6:\"accent\";s:33:\"header-elements-button-1-bg-color\";s:7:\"#ffffff\";s:36:\"header-elements-button-1-bg-gradient\";s:31:\"135deg|#ffffff 30%|#000000 100%\";s:37:\"header-elements-button-1-border-color\";s:6:\"accent\";s:42:\"header-elements-button-1-border-color-mono\";s:7:\"#ffffff\";s:38:\"header-elements-button-1-border_radius\";s:3:\"0px\";s:37:\"header-elements-button-1-border_width\";s:3:\"1px\";s:36:\"header-elements-button-1-choose-icon\";s:0:\"\";s:44:\"header-elements-button-1-first-header-switch\";s:9:\"near_logo\";s:33:\"header-elements-button-1-hover-bg\";s:6:\"accent\";s:39:\"header-elements-button-1-hover-bg-color\";s:7:\"#ffffff\";s:42:\"header-elements-button-1-hover-bg-gradient\";s:31:\"135deg|#ffffff 30%|#000000 100%\";s:43:\"header-elements-button-1-hover-border-color\";s:6:\"accent\";s:48:\"header-elements-button-1-hover-border-color-mono\";s:7:\"#ffffff\";s:41:\"header-elements-button-1-hover-icon-color\";s:5:\"color\";s:50:\"header-elements-button-1-hover-icon-color-gradient\";s:30:\"90deg|#ffffff 30%|#000000 100%\";s:46:\"header-elements-button-1-hover-icon-color-mono\";s:7:\"#ffffff\";s:29:\"header-elements-button-1-icon\";b:0;s:35:\"header-elements-button-1-icon-color\";s:5:\"color\";s:44:\"header-elements-button-1-icon-color-gradient\";s:30:\"90deg|#ffffff 30%|#000000 100%\";s:40:\"header-elements-button-1-icon-color-mono\";s:7:\"#ffffff\";s:38:\"header-elements-button-1-icon-position\";s:5:\"right\";s:34:\"header-elements-button-1-icon-size\";s:2:\"14\";s:33:\"header-elements-button-1-icon_gap\";s:3:\"5px\";s:29:\"header-elements-button-1-name\";s:6:\"Button\";s:36:\"header-elements-button-1-on-desktops\";s:4:\"show\";s:32:\"header-elements-button-1-padding\";s:19:\"10px 20px 10px 20px\";s:45:\"header-elements-button-1-second-header-switch\";s:7:\"in_menu\";s:38:\"header-elements-button-1-smooth-scroll\";b:0;s:31:\"header-elements-button-1-target\";b:0;s:35:\"header-elements-button-1-typography\";a:2:{s:11:\"font_family\";s:10:\"Roboto:700\";s:9:\"font_size\";s:2:\"14\";}s:28:\"header-elements-button-1-url\";s:0:\"\";s:27:\"header-elements-button-2-bg\";s:6:\"accent\";s:33:\"header-elements-button-2-bg-color\";s:7:\"#ffffff\";s:36:\"header-elements-button-2-bg-gradient\";s:31:\"135deg|#ffffff 30%|#000000 100%\";s:37:\"header-elements-button-2-border-color\";s:6:\"accent\";s:42:\"header-elements-button-2-border-color-mono\";s:7:\"#ffffff\";s:38:\"header-elements-button-2-border_radius\";s:3:\"0px\";s:37:\"header-elements-button-2-border_width\";s:3:\"1px\";s:36:\"header-elements-button-2-choose-icon\";s:0:\"\";s:44:\"header-elements-button-2-first-header-switch\";s:9:\"near_logo\";s:33:\"header-elements-button-2-hover-bg\";s:6:\"accent\";s:39:\"header-elements-button-2-hover-bg-color\";s:7:\"#ffffff\";s:42:\"header-elements-button-2-hover-bg-gradient\";s:31:\"135deg|#ffffff 30%|#000000 100%\";s:43:\"header-elements-button-2-hover-border-color\";s:6:\"accent\";s:48:\"header-elements-button-2-hover-border-color-mono\";s:7:\"#ffffff\";s:41:\"header-elements-button-2-hover-icon-color\";s:5:\"color\";s:50:\"header-elements-button-2-hover-icon-color-gradient\";s:30:\"90deg|#ffffff 30%|#000000 100%\";s:46:\"header-elements-button-2-hover-icon-color-mono\";s:7:\"#ffffff\";s:29:\"header-elements-button-2-icon\";b:0;s:35:\"header-elements-button-2-icon-color\";s:5:\"color\";s:44:\"header-elements-button-2-icon-color-gradient\";s:30:\"90deg|#ffffff 30%|#000000 100%\";s:40:\"header-elements-button-2-icon-color-mono\";s:7:\"#ffffff\";s:38:\"header-elements-button-2-icon-position\";s:5:\"right\";s:34:\"header-elements-button-2-icon-size\";s:2:\"14\";s:33:\"header-elements-button-2-icon_gap\";s:3:\"5px\";s:29:\"header-elements-button-2-name\";s:6:\"Button\";s:36:\"header-elements-button-2-on-desktops\";s:4:\"show\";s:32:\"header-elements-button-2-padding\";s:19:\"10px 20px 10px 20px\";s:45:\"header-elements-button-2-second-header-switch\";s:7:\"in_menu\";s:38:\"header-elements-button-2-smooth-scroll\";b:0;s:31:\"header-elements-button-2-target\";b:0;s:35:\"header-elements-button-2-typography\";a:2:{s:11:\"font_family\";s:10:\"Roboto:700\";s:9:\"font_size\";s:2:\"14\";}s:28:\"header-elements-button-2-url\";s:0:\"\";s:39:\"header-elements-contact-address-caption\";s:44:\"8500 Beverly Boulevard Los Angeles, CA 90048\";s:43:\"header-elements-contact-address-custom-icon\";s:25:\"the7-mw-icon-address-bold\";s:51:\"header-elements-contact-address-first-header-switch\";s:9:\"near_logo\";s:36:\"header-elements-contact-address-icon\";s:6:\"custom\";s:43:\"header-elements-contact-address-on-desktops\";s:4:\"show\";s:52:\"header-elements-contact-address-second-header-switch\";s:7:\"in_menu\";s:35:\"header-elements-contact-address-url\";s:0:\"\";s:37:\"header-elements-contact-clock-caption\";s:32:\"Monday – Friday 10 AM – 8 PM\";s:41:\"header-elements-contact-clock-custom-icon\";s:31:\"icomoon-the7-font-the7-clock-01\";s:49:\"header-elements-contact-clock-first-header-switch\";s:12:\"top_bar_left\";s:34:\"header-elements-contact-clock-icon\";s:6:\"custom\";s:41:\"header-elements-contact-clock-on-desktops\";s:4:\"show\";s:50:\"header-elements-contact-clock-second-header-switch\";s:7:\"in_menu\";s:33:\"header-elements-contact-clock-url\";s:0:\"\";s:37:\"header-elements-contact-email-caption\";s:18:\"sales@yoursite.com\";s:41:\"header-elements-contact-email-custom-icon\";s:22:\"the7-mw-icon-mail-bold\";s:49:\"header-elements-contact-email-first-header-switch\";s:9:\"near_logo\";s:34:\"header-elements-contact-email-icon\";s:6:\"custom\";s:41:\"header-elements-contact-email-on-desktops\";s:4:\"show\";s:50:\"header-elements-contact-email-second-header-switch\";s:7:\"in_menu\";s:33:\"header-elements-contact-email-url\";s:0:\"\";s:46:\"header-elements-contact-multipurpose_1-caption\";s:0:\"\";s:50:\"header-elements-contact-multipurpose_1-custom-icon\";s:0:\"\";s:58:\"header-elements-contact-multipurpose_1-first-header-switch\";s:9:\"near_logo\";s:43:\"header-elements-contact-multipurpose_1-icon\";s:6:\"custom\";s:50:\"header-elements-contact-multipurpose_1-on-desktops\";s:4:\"show\";s:59:\"header-elements-contact-multipurpose_1-second-header-switch\";s:7:\"in_menu\";s:42:\"header-elements-contact-multipurpose_1-url\";s:0:\"\";s:46:\"header-elements-contact-multipurpose_2-caption\";s:0:\"\";s:50:\"header-elements-contact-multipurpose_2-custom-icon\";s:0:\"\";s:58:\"header-elements-contact-multipurpose_2-first-header-switch\";s:9:\"near_logo\";s:43:\"header-elements-contact-multipurpose_2-icon\";s:6:\"custom\";s:50:\"header-elements-contact-multipurpose_2-on-desktops\";s:4:\"show\";s:59:\"header-elements-contact-multipurpose_2-second-header-switch\";s:7:\"in_menu\";s:42:\"header-elements-contact-multipurpose_2-url\";s:0:\"\";s:46:\"header-elements-contact-multipurpose_3-caption\";s:0:\"\";s:50:\"header-elements-contact-multipurpose_3-custom-icon\";s:0:\"\";s:58:\"header-elements-contact-multipurpose_3-first-header-switch\";s:9:\"near_logo\";s:43:\"header-elements-contact-multipurpose_3-icon\";s:6:\"custom\";s:50:\"header-elements-contact-multipurpose_3-on-desktops\";s:4:\"show\";s:59:\"header-elements-contact-multipurpose_3-second-header-switch\";s:7:\"in_menu\";s:42:\"header-elements-contact-multipurpose_3-url\";s:0:\"\";s:46:\"header-elements-contact-multipurpose_4-caption\";s:0:\"\";s:50:\"header-elements-contact-multipurpose_4-custom-icon\";s:0:\"\";s:58:\"header-elements-contact-multipurpose_4-first-header-switch\";s:9:\"near_logo\";s:43:\"header-elements-contact-multipurpose_4-icon\";s:6:\"custom\";s:50:\"header-elements-contact-multipurpose_4-on-desktops\";s:4:\"show\";s:59:\"header-elements-contact-multipurpose_4-second-header-switch\";s:7:\"in_menu\";s:42:\"header-elements-contact-multipurpose_4-url\";s:0:\"\";s:37:\"header-elements-contact-phone-caption\";s:13:\"011 322 44 56\";s:41:\"header-elements-contact-phone-custom-icon\";s:31:\"icomoon-the7-font-the7-phone-06\";s:49:\"header-elements-contact-phone-first-header-switch\";s:12:\"top_bar_left\";s:34:\"header-elements-contact-phone-icon\";s:6:\"custom\";s:41:\"header-elements-contact-phone-on-desktops\";s:4:\"show\";s:50:\"header-elements-contact-phone-second-header-switch\";s:7:\"in_menu\";s:33:\"header-elements-contact-phone-url\";s:0:\"\";s:37:\"header-elements-contact-skype-caption\";s:10:\"Your_Skype\";s:41:\"header-elements-contact-skype-custom-icon\";s:23:\"the7-mw-icon-skype-bold\";s:49:\"header-elements-contact-skype-first-header-switch\";s:9:\"near_logo\";s:34:\"header-elements-contact-skype-icon\";s:6:\"custom\";s:41:\"header-elements-contact-skype-on-desktops\";s:4:\"show\";s:50:\"header-elements-contact-skype-second-header-switch\";s:7:\"in_menu\";s:33:\"header-elements-contact-skype-url\";s:0:\"\";s:29:\"header-elements-login-caption\";s:5:\"Login\";s:33:\"header-elements-login-custom-icon\";s:23:\"the7-mw-icon-login-bold\";s:41:\"header-elements-login-first-header-switch\";s:9:\"near_logo\";s:26:\"header-elements-login-icon\";s:6:\"custom\";s:32:\"header-elements-login-logout_url\";s:0:\"\";s:33:\"header-elements-login-on-desktops\";s:4:\"show\";s:42:\"header-elements-login-second-header-switch\";s:7:\"in_menu\";s:25:\"header-elements-login-url\";s:23:\"https://themeforest.net\";s:36:\"header-elements-login-use_logout_url\";b:0;s:30:\"header-elements-logout-caption\";s:6:\"Logout\";s:40:\"header-elements-menu-first-header-switch\";s:9:\"near_logo\";s:25:\"header-elements-menu-icon\";s:6:\"custom\";s:32:\"header-elements-menu-on-desktops\";s:4:\"show\";s:41:\"header-elements-menu-second-header-switch\";s:6:\"hidden\";s:26:\"header-elements-menu-style\";s:8:\"dropdown\";s:39:\"header-elements-menu-style-first-switch\";s:8:\"dropdown\";s:40:\"header-elements-menu-style-second-switch\";s:8:\"dropdown\";s:41:\"header-elements-menu2-first-header-switch\";s:9:\"near_logo\";s:26:\"header-elements-menu2-icon\";s:6:\"custom\";s:33:\"header-elements-menu2-on-desktops\";s:4:\"show\";s:42:\"header-elements-menu2-second-header-switch\";s:7:\"in_menu\";s:27:\"header-elements-menu2-style\";s:8:\"dropdown\";s:40:\"header-elements-menu2-style-first-switch\";s:8:\"dropdown\";s:41:\"header-elements-menu2-style-second-switch\";s:8:\"dropdown\";s:33:\"header-elements-menu2_custom-icon\";s:31:\"the7-mw-icon-dropdown-menu-bold\";s:32:\"header-elements-menu_custom-icon\";s:31:\"the7-mw-icon-dropdown-menu-bold\";s:25:\"header-elements-search-by\";s:7:\"general\";s:30:\"header-elements-search-caption\";s:0:\"\";s:42:\"header-elements-search-first-header-switch\";s:9:\"near_logo\";s:27:\"header-elements-search-icon\";s:6:\"custom\";s:36:\"header-elements-search-input-caption\";s:22:\"Type and hit enter …\";s:34:\"header-elements-search-on-desktops\";s:4:\"show\";s:43:\"header-elements-search-second-header-switch\";s:9:\"near_logo\";s:34:\"header-elements-search_custom-icon\";s:24:\"the7-mw-icon-search-bold\";s:25:\"header-elements-soc_icons\";a:4:{i:1;a:2:{s:4:\"icon\";s:8:\"facebook\";s:3:\"url\";s:1:\"/\";}i:2;a:2:{s:4:\"icon\";s:7:\"twitter\";s:3:\"url\";s:1:\"/\";}i:3;a:2:{s:4:\"icon\";s:9:\"instagram\";s:3:\"url\";s:1:\"/\";}i:4;a:2:{s:4:\"icon\";s:8:\"you-tube\";s:3:\"url\";s:1:\"/\";}}s:28:\"header-elements-soc_icons-bg\";s:5:\"color\";s:34:\"header-elements-soc_icons-bg-color\";s:16:\"rgba(0,0,0,0.07)\";s:37:\"header-elements-soc_icons-bg-gradient\";s:31:\"135deg|#ffffff 30%|#000000 100%\";s:33:\"header-elements-soc_icons-bg-size\";s:4:\"26px\";s:32:\"header-elements-soc_icons-border\";s:8:\"disabled\";s:38:\"header-elements-soc_icons-border-color\";s:7:\"#ffffff\";s:31:\"header-elements-soc_icons-color\";s:7:\"#aeb1b5\";s:45:\"header-elements-soc_icons-first-header-switch\";s:13:\"top_bar_right\";s:34:\"header-elements-soc_icons-hover-bg\";s:6:\"accent\";s:40:\"header-elements-soc_icons-hover-bg-color\";s:18:\"rgba(21,191,230,1)\";s:43:\"header-elements-soc_icons-hover-bg-gradient\";s:31:\"135deg|#ffffff 30%|#000000 100%\";s:38:\"header-elements-soc_icons-hover-border\";s:8:\"disabled\";s:44:\"header-elements-soc_icons-hover-border-color\";s:7:\"#ffffff\";s:37:\"header-elements-soc_icons-hover-color\";s:7:\"#ffffff\";s:37:\"header-elements-soc_icons-on-desktops\";s:4:\"show\";s:46:\"header-elements-soc_icons-second-header-switch\";s:7:\"in_menu\";s:30:\"header-elements-soc_icons-size\";s:4:\"16px\";s:39:\"header-elements-soc_icons_border_radius\";s:5:\"100px\";s:38:\"header-elements-soc_icons_border_width\";s:3:\"1px\";s:29:\"header-elements-soc_icons_gap\";i:5;s:20:\"header-elements-text\";s:35:\"Some call to action text goes here!\";s:22:\"header-elements-text-2\";s:35:\"Some call to action text goes here!\";s:42:\"header-elements-text-2-first-header-switch\";s:9:\"near_logo\";s:34:\"header-elements-text-2-on-desktops\";s:4:\"show\";s:43:\"header-elements-text-2-second-header-switch\";s:7:\"in_menu\";s:22:\"header-elements-text-3\";s:35:\"Some call to action text goes here!\";s:42:\"header-elements-text-3-first-header-switch\";s:9:\"near_logo\";s:34:\"header-elements-text-3-on-desktops\";s:4:\"show\";s:43:\"header-elements-text-3-second-header-switch\";s:7:\"in_menu\";s:22:\"header-elements-text-4\";s:0:\"\";s:42:\"header-elements-text-4-first-header-switch\";s:9:\"near_logo\";s:34:\"header-elements-text-4-on-desktops\";s:4:\"show\";s:43:\"header-elements-text-4-second-header-switch\";s:7:\"in_menu\";s:22:\"header-elements-text-5\";s:0:\"\";s:42:\"header-elements-text-5-first-header-switch\";s:9:\"near_logo\";s:34:\"header-elements-text-5-on-desktops\";s:4:\"show\";s:43:\"header-elements-text-5-second-header-switch\";s:7:\"in_menu\";s:40:\"header-elements-text-first-header-switch\";s:9:\"near_logo\";s:32:\"header-elements-text-on-desktops\";s:4:\"show\";s:41:\"header-elements-text-second-header-switch\";s:7:\"in_menu\";s:40:\"header-elements-woocommerce_cart-caption\";s:0:\"\";s:43:\"header-elements-woocommerce_cart-counter-bg\";s:6:\"accent\";s:49:\"header-elements-woocommerce_cart-counter-bg-color\";s:7:\"#000000\";s:52:\"header-elements-woocommerce_cart-counter-bg-gradient\";s:30:\"90deg|#37a0fe 30%|#6b5ffd 100%\";s:46:\"header-elements-woocommerce_cart-counter-color\";s:7:\"#ffffff\";s:46:\"header-elements-woocommerce_cart-counter-style\";s:5:\"round\";s:44:\"header-elements-woocommerce_cart-custom-icon\";s:22:\"the7-mw-icon-cart-bold\";s:52:\"header-elements-woocommerce_cart-first-header-switch\";s:9:\"near_logo\";s:45:\"header-elements-woocommerce_cart-font-content\";a:4:{s:11:\"font_family\";s:6:\"Roboto\";s:20:\"responsive_font_size\";a:1:{s:7:\"desktop\";s:4:\"15px\";}s:22:\"responsive_line_height\";a:1:{s:7:\"desktop\";s:5:\"1.4em\";}s:14:\"text_transform\";s:4:\"none\";}s:37:\"header-elements-woocommerce_cart-icon\";s:6:\"custom\";s:44:\"header-elements-woocommerce_cart-on-desktops\";s:4:\"show\";s:53:\"header-elements-woocommerce_cart-second-header-switch\";s:9:\"near_logo\";s:45:\"header-elements-woocommerce_cart-show_counter\";s:7:\"allways\";s:46:\"header-elements-woocommerce_cart-show_sub_cart\";s:1:\"1\";s:55:\"header-elements-woocommerce_cart-show_sub_cart_behavior\";s:5:\"hover\";s:46:\"header-elements-woocommerce_cart-show_subtotal\";s:1:\"1\";s:50:\"header-elements-woocommerce_cart-sub_cart-bg-color\";s:7:\"#ffffff\";s:50:\"header-elements-woocommerce_cart-sub_cart-bg-width\";i:260;s:52:\"header-elements-woocommerce_cart-sub_cart-font-color\";s:7:\"#333333\";s:40:\"header-floating-mobile-first_switch-logo\";s:7:\"desktop\";s:41:\"header-floating-mobile-second_switch-logo\";s:7:\"desktop\";s:33:\"header-floating_microwidgets-font\";s:7:\"default\";s:39:\"header-floating_microwidgets-font-color\";s:7:\"#ffffff\";s:33:\"header-floating_microwidgets-icon\";s:7:\"default\";s:39:\"header-floating_microwidgets-icon-color\";s:7:\"#ffffff\";s:49:\"header-floating_navigation-active_item-font-color\";s:7:\"#ffffff\";s:52:\"header-floating_navigation-active_item-font-gradient\";s:30:\"90deg|#ffffff 30%|#000000 100%\";s:35:\"header-floating_navigation-bg-color\";s:19:\"rgba(255,255,255,1)\";s:35:\"header-floating_navigation-bg-image\";a:4:{s:5:\"image\";s:44:\"/wp-content/uploads/2022/08/HeaderImage3.png\";s:6:\"repeat\";s:9:\"no-repeat\";s:10:\"position_x\";s:6:\"center\";s:10:\"position_y\";s:6:\"bottom\";}s:43:\"header-floating_navigation-bg-is_fullscreen\";b:0;s:37:\"header-floating_navigation-decoration\";s:8:\"disabled\";s:43:\"header-floating_navigation-decoration-color\";s:19:\"rgba(51,51,51,0.11)\";s:47:\"header-floating_navigation-decoration-line_size\";s:3:\"1px\";s:38:\"header-floating_navigation-font-active\";s:7:\"default\";s:37:\"header-floating_navigation-font-color\";s:7:\"#ffffff\";s:37:\"header-floating_navigation-font-hover\";s:7:\"default\";s:38:\"header-floating_navigation-font-normal\";s:7:\"default\";s:33:\"header-floating_navigation-height\";s:5:\"180px\";s:43:\"header-floating_navigation-hover-font-color\";s:7:\"#ffffff\";s:46:\"header-floating_navigation-hover-font-gradient\";s:30:\"90deg|#ffffff 30%|#000000 100%\";s:37:\"header-floating_navigation-show_after\";s:4:\"94px\";s:32:\"header-floating_navigation-style\";s:6:\"sticky\";s:34:\"header-floating_navigation-top-bar\";b:0;s:22:\"header-inline-elements\";a:0:{}s:50:\"header-inline-elements-near_menu-custom-icon-color\";s:0:\"\";s:49:\"header-inline-elements-near_menu-custom-icon-size\";s:2:\"16\";s:43:\"header-inline-elements-near_menu-font_color\";s:7:\"#333333\";s:43:\"header-inline-elements-near_menu-typography\";a:2:{s:11:\"font_family\";s:10:\"Roboto:700\";s:9:\"font_size\";s:2:\"13\";}s:46:\"header-inline-elements-near_menu_right-padding\";s:15:\"0px 0px 0px 5px\";s:20:\"header-inline-height\";s:4:\"90px\";s:26:\"header-inline-is_fullwidth\";s:1:\"0\";s:27:\"header-inline-menu-position\";s:6:\"center\";s:27:\"header-inline-show_elements\";s:1:\"1\";s:26:\"header-inline-side-padding\";s:9:\"50px 50px\";s:29:\"header-inline-switch_paddings\";s:5:\"778px\";s:29:\"header-inline_mobile_paddings\";s:9:\"20px 20px\";s:13:\"header-layout\";s:7:\"classic\";s:19:\"header-logo-padding\";s:15:\"0px 5px 0px 0px\";s:14:\"header-logo_hd\";a:2:{i:0;s:0:\"\";i:1;i:0;}s:19:\"header-logo_regular\";a:2:{i:0;s:45:\"/wp-content/uploads/2023/08/552px-x-128px.gif\";i:1;i:3080;}s:32:\"header-mega-menu-desc-font-color\";s:7:\"#333333\";s:32:\"header-mega-menu-desc-typography\";a:2:{s:11:\"font_family\";s:3:\"Exo\";s:9:\"font_size\";s:2:\"10\";}s:30:\"header-mega-menu-items-padding\";s:17:\"9px 10px 9px 10px\";s:40:\"header-mega-menu-submenu-2-level-spacing\";s:3:\"0px\";s:35:\"header-mega-menu-submenu-bg-padding\";s:19:\"20px 10px 20px 10px\";s:39:\"header-mega-menu-submenu-column-padding\";s:17:\"0px 10px 0px 10px\";s:37:\"header-mega-menu-submenu-column-width\";s:5:\"260px\";s:45:\"header-mega-menu-title-active_item-font-color\";s:7:\"#ffffff\";s:51:\"header-mega-menu-title-active_item-font-color-style\";s:8:\"gradient\";s:48:\"header-mega-menu-title-active_item-font-gradient\";s:30:\"90deg|#8224e3 30%|#eeee22 100%\";s:33:\"header-mega-menu-title-font-color\";s:7:\"#333333\";s:39:\"header-mega-menu-title-hover-font-color\";s:7:\"#ffffff\";s:45:\"header-mega-menu-title-hover-font-color-style\";s:8:\"gradient\";s:42:\"header-mega-menu-title-hover-font-gradient\";s:29:\"90deg|#1e73be 30%|#eeee22 99%\";s:32:\"header-mega-menu-title-icon-size\";s:2:\"16\";s:33:\"header-mega-menu-title-typography\";a:3:{s:11:\"font_family\";s:7:\"Exo:700\";s:14:\"text_transform\";s:9:\"uppercase\";s:9:\"font_size\";s:2:\"16\";}s:36:\"header-mega-menu-widget-accent-color\";s:0:\"\";s:34:\"header-mega-menu-widget-font-color\";s:7:\"#333333\";s:35:\"header-mega-menu-widget-title-color\";s:7:\"#333333\";s:34:\"header-menu-active_item-font-color\";s:7:\"#722f8b\";s:40:\"header-menu-active_item-font-color-style\";s:5:\"color\";s:37:\"header-menu-active_item-font-gradient\";s:30:\"90deg|#ffffff 30%|#000000 100%\";s:30:\"header-menu-close_icon-caption\";s:8:\"disabled\";s:35:\"header-menu-close_icon-caption-text\";s:10:\"Navigation\";s:41:\"header-menu-close_icon-caption-typography\";a:3:{s:11:\"font_family\";s:6:\"Roboto\";s:14:\"text_transform\";s:9:\"uppercase\";s:9:\"font_size\";s:2:\"16\";}s:34:\"header-menu-close_icon-caption_gap\";s:4:\"20px\";s:31:\"header-menu-close_icon-position\";s:7:\"outside\";s:27:\"header-menu-close_icon-size\";s:11:\"fade_medium\";s:41:\"header-menu-decoration-other-active-color\";s:22:\"rgba(255,255,255,0.15)\";s:47:\"header-menu-decoration-other-active-color-style\";s:6:\"accent\";s:44:\"header-menu-decoration-other-active-gradient\";s:55:\"135deg|rgba(255,255,255,0.15) 30%|rgba(0,0,0,0.15) 100%\";s:40:\"header-menu-decoration-other-active-line\";s:1:\"0\";s:46:\"header-menu-decoration-other-active-line-color\";s:20:\"rgba(130,36,227,0.3)\";s:52:\"header-menu-decoration-other-active-line-color-style\";s:5:\"color\";s:49:\"header-menu-decoration-other-active-line-gradient\";s:56:\"135deg|rgba(221,51,51,0.3) 30%|rgba(129,215,66,0.3) 100%\";s:48:\"header-menu-decoration-other-active-line-opacity\";s:2:\"30\";s:43:\"header-menu-decoration-other-active-opacity\";s:2:\"15\";s:41:\"header-menu-decoration-other-active-style\";s:10:\"background\";s:42:\"header-menu-decoration-other-border-radius\";s:1:\"3\";s:40:\"header-menu-decoration-other-hover-color\";s:22:\"rgba(255,255,255,0.15)\";s:46:\"header-menu-decoration-other-hover-color-style\";s:6:\"accent\";s:43:\"header-menu-decoration-other-hover-gradient\";s:55:\"135deg|rgba(255,255,255,0.15) 30%|rgba(0,0,0,0.15) 100%\";s:39:\"header-menu-decoration-other-hover-line\";s:1:\"0\";s:45:\"header-menu-decoration-other-hover-line-color\";s:20:\"rgba(221,51,51,0.23)\";s:51:\"header-menu-decoration-other-hover-line-color-style\";s:8:\"gradient\";s:48:\"header-menu-decoration-other-hover-line-gradient\";s:55:\"135deg|rgba(255,255,255,0.23) 30%|rgba(0,0,0,0.23) 100%\";s:47:\"header-menu-decoration-other-hover-line-opacity\";s:2:\"23\";s:40:\"header-menu-decoration-other-hover-style\";s:10:\"background\";s:38:\"header-menu-decoration-other-line_size\";s:3:\"2px\";s:47:\"header-menu-decoration-other-links-is_justified\";s:1:\"1\";s:36:\"header-menu-decoration-other-opacity\";s:2:\"15\";s:28:\"header-menu-decoration-style\";s:9:\"underline\";s:38:\"header-menu-decoration-underline-color\";s:7:\"#722f8b\";s:44:\"header-menu-decoration-underline-color-style\";s:6:\"accent\";s:42:\"header-menu-decoration-underline-direction\";s:13:\"left_to_right\";s:41:\"header-menu-decoration-underline-gradient\";s:31:\"135deg|#ffffff 30%|#000000 100%\";s:42:\"header-menu-decoration-underline-line_size\";s:3:\"2px\";s:26:\"header-menu-dividers-color\";s:19:\"rgba(17,17,17,0.14)\";s:27:\"header-menu-dividers-height\";s:4:\"24px\";s:33:\"header-menu-dividers-height-style\";s:6:\"custom\";s:29:\"header-menu-dividers-surround\";s:1:\"0\";s:26:\"header-menu-dividers-width\";s:3:\"1px\";s:22:\"header-menu-font-color\";s:7:\"#333333\";s:28:\"header-menu-hover-font-color\";s:7:\"#333333\";s:34:\"header-menu-hover-font-color-style\";s:6:\"accent\";s:31:\"header-menu-hover-font-gradient\";s:30:\"90deg|#8224e3 30%|#751257 100%\";s:21:\"header-menu-icon-size\";s:2:\"14\";s:23:\"header-menu-item-margin\";s:19:\"18px 10px 18px 10px\";s:24:\"header-menu-item-padding\";s:15:\"4px 4px 4px 4px\";s:47:\"header-menu-item-surround_margins-custom-margin\";s:4:\"30px\";s:39:\"header-menu-item-surround_margins-style\";s:8:\"disabled\";s:25:\"header-menu-show_dividers\";s:1:\"0\";s:31:\"header-menu-show_next_lvl_icons\";b:0;s:35:\"header-menu-submenu-active-bg-color\";s:21:\"rgba(137,92,184,0.07)\";s:41:\"header-menu-submenu-active-bg-color-style\";s:6:\"accent\";s:38:\"header-menu-submenu-active-bg-gradient\";s:30:\"90deg|#81d742 30%|#eeee22 100%\";s:37:\"header-menu-submenu-active-bg-opacity\";s:1:\"7\";s:37:\"header-menu-submenu-active-font-color\";s:7:\"#ffffff\";s:43:\"header-menu-submenu-active-font-color-style\";s:6:\"accent\";s:40:\"header-menu-submenu-active-font-gradient\";s:30:\"90deg|#ffffff 30%|#000000 100%\";s:28:\"header-menu-submenu-bg-color\";s:7:\"#ffffff\";s:28:\"header-menu-submenu-bg-hover\";s:10:\"background\";s:30:\"header-menu-submenu-bg-padding\";s:17:\"9px 10px 9px 10px\";s:28:\"header-menu-submenu-bg-width\";s:5:\"280px\";s:27:\"header-menu-submenu-display\";s:5:\"hover\";s:30:\"header-menu-submenu-font-color\";s:7:\"#333333\";s:34:\"header-menu-submenu-hover-bg-color\";s:21:\"rgba(137,92,184,0.07)\";s:40:\"header-menu-submenu-hover-bg-color-style\";s:6:\"accent\";s:37:\"header-menu-submenu-hover-bg-gradient\";s:30:\"90deg|#81d742 30%|#eeee22 100%\";s:36:\"header-menu-submenu-hover-bg-opacity\";s:1:\"7\";s:36:\"header-menu-submenu-hover-font-color\";s:7:\"#895cb8\";s:42:\"header-menu-submenu-hover-font-color-style\";s:6:\"accent\";s:39:\"header-menu-submenu-hover-font-gradient\";s:30:\"90deg|#81d742 30%|#eeee22 100%\";s:29:\"header-menu-submenu-icon-size\";s:2:\"14\";s:31:\"header-menu-submenu-item-margin\";s:15:\"0px 0px 2px 0px\";s:32:\"header-menu-submenu-item-padding\";s:19:\"10px 10px 10px 10px\";s:39:\"header-menu-submenu-parent_is_clickable\";s:1:\"1\";s:39:\"header-menu-submenu-show_next_lvl_icons\";s:1:\"1\";s:39:\"header-menu-submenu-subtitle-typography\";a:2:{s:11:\"font_family\";s:3:\"Exo\";s:9:\"font_size\";s:2:\"10\";}s:30:\"header-menu-submenu-typography\";a:3:{s:11:\"font_family\";s:7:\"Exo:500\";s:14:\"text_transform\";s:10:\"capitalize\";s:9:\"font_size\";s:2:\"16\";}s:31:\"header-menu-subtitle-typography\";a:2:{s:11:\"font_family\";s:13:\"Exo:400italic\";s:9:\"font_size\";s:2:\"11\";}s:22:\"header-menu-typography\";a:3:{s:11:\"font_family\";s:7:\"Exo:700\";s:14:\"text_transform\";s:9:\"uppercase\";s:9:\"font_size\";s:2:\"18\";}s:25:\"header-menu_close_icon-bg\";s:7:\"enabled\";s:39:\"header-menu_close_icon-bg-border-radius\";s:3:\"0px\";s:38:\"header-menu_close_icon-bg-border-width\";s:3:\"0px\";s:31:\"header-menu_close_icon-bg-color\";s:22:\"rgba(255,255,255,0.75)\";s:31:\"header-menu_close_icon-bg-hover\";s:7:\"enabled\";s:29:\"header-menu_close_icon-border\";s:7:\"enabled\";s:35:\"header-menu_close_icon-border-color\";s:0:\"\";s:41:\"header-menu_close_icon-border-color-hover\";s:0:\"\";s:35:\"header-menu_close_icon-border-hover\";s:7:\"enabled\";s:36:\"header-menu_close_icon-caption_color\";s:7:\"#000000\";s:42:\"header-menu_close_icon-caption_color-hover\";s:7:\"#000000\";s:28:\"header-menu_close_icon-color\";s:7:\"#000000\";s:34:\"header-menu_close_icon-hover-color\";s:7:\"#000000\";s:29:\"header-menu_close_icon-margin\";s:19:\"30px 30px 30px 30px\";s:30:\"header-menu_close_icon-padding\";s:19:\"15px 15px 15px 15px\";s:19:\"header-menu_icon-bg\";s:7:\"enabled\";s:33:\"header-menu_icon-bg-border-radius\";s:3:\"0px\";s:32:\"header-menu_icon-bg-border-width\";s:3:\"0px\";s:25:\"header-menu_icon-bg-color\";s:22:\"rgba(255,255,255,0.75)\";s:31:\"header-menu_icon-bg-color-hover\";s:22:\"rgba(255,255,255,0.75)\";s:25:\"header-menu_icon-bg-hover\";s:7:\"enabled\";s:23:\"header-menu_icon-border\";s:7:\"enabled\";s:29:\"header-menu_icon-border-color\";s:0:\"\";s:29:\"header-menu_icon-border-hover\";s:7:\"enabled\";s:35:\"header-menu_icon-border-hover-color\";s:0:\"\";s:24:\"header-menu_icon-caption\";s:8:\"disabled\";s:32:\"header-menu_icon-caption-padding\";s:19:\"18px 15px 18px 15px\";s:29:\"header-menu_icon-caption-text\";s:4:\"Menu\";s:35:\"header-menu_icon-caption-typography\";a:3:{s:11:\"font_family\";s:6:\"Roboto\";s:14:\"text_transform\";s:4:\"none\";s:9:\"font_size\";s:2:\"16\";}s:30:\"header-menu_icon-caption_color\";s:7:\"#000000\";s:36:\"header-menu_icon-caption_color-hover\";s:7:\"#000000\";s:28:\"header-menu_icon-caption_gap\";s:4:\"10px\";s:22:\"header-menu_icon-color\";s:7:\"#000000\";s:28:\"header-menu_icon-color-hover\";s:7:\"#000000\";s:25:\"header-menu_icon-elements\";a:0:{}s:44:\"header-menu_icon-elements-below_menu-padding\";s:15:\"0px 0px 0px 0px\";s:53:\"header-menu_icon-elements-near_menu-custom-icon-color\";s:0:\"\";s:52:\"header-menu_icon-elements-near_menu-custom-icon-size\";s:2:\"16\";s:46:\"header-menu_icon-elements-near_menu-font_color\";s:7:\"#888888\";s:46:\"header-menu_icon-elements-near_menu-typography\";a:2:{s:11:\"font_family\";s:5:\"Arial\";s:9:\"font_size\";s:2:\"14\";}s:31:\"header-menu_icon-hover-bg-color\";s:22:\"rgba(255,255,255,0.75)\";s:23:\"header-menu_icon-margin\";s:15:\"0px 0px 0px 0px\";s:30:\"header-menu_icon-show_elements\";s:1:\"0\";s:21:\"header-menu_icon-size\";s:6:\"medium\";s:21:\"header-mixed-bg-color\";s:19:\"rgba(255,255,255,1)\";s:23:\"header-mixed-decoration\";s:6:\"shadow\";s:29:\"header-mixed-decoration-color\";s:18:\"rgba(221,153,51,1)\";s:28:\"header-mixed-decoration_size\";s:3:\"1px\";s:29:\"header-mixed-floating-top-bar\";b:0;s:28:\"header-mixed-sticky-bg-color\";s:7:\"#000000\";s:29:\"header-mobile-content-padding\";s:19:\"45px 15px 30px 30px\";s:24:\"header-mobile-decoration\";s:6:\"shadow\";s:30:\"header-mobile-decoration-color\";s:7:\"#ffffff\";s:34:\"header-mobile-decoration-line_size\";s:3:\"1px\";s:32:\"header-mobile-first_switch-after\";s:5:\"992px\";s:33:\"header-mobile-first_switch-height\";s:4:\"60px\";s:33:\"header-mobile-first_switch-layout\";s:10:\"right_left\";s:31:\"header-mobile-first_switch-logo\";s:7:\"desktop\";s:39:\"header-mobile-first_switch-side-padding\";s:9:\"50px 50px\";s:31:\"header-mobile-floating-bg-color\";s:4:\"#fff\";s:33:\"header-mobile-floating_navigation\";s:6:\"sticky\";s:29:\"header-mobile-header-bg-color\";s:19:\"rgba(255,255,255,1)\";s:24:\"header-mobile-menu-align\";s:5:\"right\";s:27:\"header-mobile-menu-bg-color\";s:19:\"rgba(255,255,255,1)\";s:27:\"header-mobile-menu-bg-width\";s:5:\"330px\";s:37:\"header-mobile-menu-close_icon-caption\";s:8:\"disabled\";s:42:\"header-mobile-menu-close_icon-caption-text\";s:4:\"Menu\";s:48:\"header-mobile-menu-close_icon-caption-typography\";a:3:{s:11:\"font_family\";s:6:\"Roboto\";s:14:\"text_transform\";s:4:\"none\";s:9:\"font_size\";s:2:\"16\";}s:41:\"header-mobile-menu-close_icon-caption_gap\";s:4:\"10px\";s:38:\"header-mobile-menu-close_icon-position\";s:5:\"right\";s:34:\"header-mobile-menu-close_icon-size\";s:11:\"fade_medium\";s:33:\"header-mobile-menu-dividers-color\";s:19:\"rgba(51,51,51,0.12)\";s:34:\"header-mobile-menu-dividers-height\";s:3:\"1px\";s:29:\"header-mobile-menu-font-color\";s:7:\"#333333\";s:35:\"header-mobile-menu-font-hover-color\";s:7:\"#3c3e45\";s:41:\"header-mobile-menu-font-hover-color-style\";s:6:\"accent\";s:38:\"header-mobile-menu-font-hover-gradient\";s:30:\"90deg|#b78ce2 30%|#1e73be 100%\";s:32:\"header-mobile-menu-show_dividers\";s:1:\"1\";s:29:\"header-mobile-menu-typography\";a:3:{s:11:\"font_family\";s:10:\"Roboto:700\";s:14:\"text_transform\";s:4:\"none\";s:9:\"font_size\";s:2:\"16\";}s:38:\"header-mobile-menu_close-caption_color\";s:4:\"#fff\";s:44:\"header-mobile-menu_close-caption_color-hover\";s:4:\"#fff\";s:32:\"header-mobile-menu_close_icon-bg\";s:7:\"enabled\";s:46:\"header-mobile-menu_close_icon-bg-border-radius\";s:3:\"0px\";s:45:\"header-mobile-menu_close_icon-bg-border-width\";s:3:\"0px\";s:38:\"header-mobile-menu_close_icon-bg-color\";s:0:\"\";s:38:\"header-mobile-menu_close_icon-bg-hover\";s:7:\"enabled\";s:36:\"header-mobile-menu_close_icon-border\";s:8:\"disabled\";s:42:\"header-mobile-menu_close_icon-border-color\";s:0:\"\";s:48:\"header-mobile-menu_close_icon-border-color-hover\";s:0:\"\";s:42:\"header-mobile-menu_close_icon-border-hover\";s:8:\"disabled\";s:35:\"header-mobile-menu_close_icon-color\";s:4:\"#fff\";s:41:\"header-mobile-menu_close_icon-hover-color\";s:4:\"#fff\";s:36:\"header-mobile-menu_close_icon-margin\";s:16:\"15px 0px 0px 0px\";s:37:\"header-mobile-menu_close_icon-padding\";s:15:\"5px 5px 5px 5px\";s:40:\"header-mobile-menu_icon-bg-border-radius\";s:3:\"0px\";s:39:\"header-mobile-menu_icon-bg-border-width\";s:3:\"0px\";s:32:\"header-mobile-menu_icon-bg-color\";s:19:\"rgba(255,255,255,0)\";s:38:\"header-mobile-menu_icon-bg-color-hover\";s:19:\"rgba(255,255,255,0)\";s:33:\"header-mobile-menu_icon-bg-enable\";s:1:\"0\";s:32:\"header-mobile-menu_icon-bg-hover\";s:1:\"0\";s:30:\"header-mobile-menu_icon-border\";s:8:\"disabled\";s:36:\"header-mobile-menu_icon-border-color\";s:0:\"\";s:36:\"header-mobile-menu_icon-border-hover\";s:8:\"disabled\";s:42:\"header-mobile-menu_icon-border-hover-color\";s:0:\"\";s:31:\"header-mobile-menu_icon-caption\";s:8:\"disabled\";s:39:\"header-mobile-menu_icon-caption-padding\";s:17:\"12px 9px 12px 9px\";s:36:\"header-mobile-menu_icon-caption-text\";s:4:\"Menu\";s:42:\"header-mobile-menu_icon-caption-typography\";a:3:{s:11:\"font_family\";s:6:\"Roboto\";s:14:\"text_transform\";s:4:\"none\";s:9:\"font_size\";s:2:\"16\";}s:37:\"header-mobile-menu_icon-caption_color\";s:7:\"#333333\";s:43:\"header-mobile-menu_icon-caption_color-hover\";s:7:\"#333333\";s:35:\"header-mobile-menu_icon-caption_gap\";s:4:\"10px\";s:29:\"header-mobile-menu_icon-color\";s:7:\"#333333\";s:35:\"header-mobile-menu_icon-color-hover\";s:7:\"#333333\";s:38:\"header-mobile-menu_icon-hover-bg-color\";s:0:\"\";s:30:\"header-mobile-menu_icon-margin\";s:15:\"0px 0px 0px 0px\";s:28:\"header-mobile-menu_icon-size\";s:5:\"small\";s:44:\"header-mobile-microwidgets-custom-icon-color\";s:0:\"\";s:43:\"header-mobile-microwidgets-custom-icon-size\";s:2:\"16\";s:37:\"header-mobile-microwidgets-font-color\";s:7:\"#333333\";s:37:\"header-mobile-microwidgets-typography\";a:2:{s:11:\"font_family\";s:7:\"Exo:700\";s:9:\"font_size\";s:2:\"13\";}s:30:\"header-mobile-overlay-bg-color\";s:18:\"rgba(17,17,17,0.5)\";s:33:\"header-mobile-second_switch-after\";s:5:\"778px\";s:34:\"header-mobile-second_switch-height\";s:4:\"60px\";s:34:\"header-mobile-second_switch-layout\";s:10:\"right_left\";s:32:\"header-mobile-second_switch-logo\";s:7:\"desktop\";s:40:\"header-mobile-second_switch-side-padding\";s:9:\"20px 20px\";s:32:\"header-mobile-submenu-typography\";a:3:{s:11:\"font_family\";s:10:\"Roboto:500\";s:14:\"text_transform\";s:4:\"none\";s:9:\"font_size\";s:2:\"13\";}s:30:\"header-overlay-content-padding\";s:15:\"0px 0px 0px 0px\";s:31:\"header-overlay-content-position\";s:6:\"center\";s:28:\"header-overlay-content-width\";s:5:\"300px\";s:28:\"header-overlay-logo-position\";s:12:\"fully_inside\";s:35:\"header-overlay-menu-items_alignment\";s:6:\"center\";s:30:\"header-overlay-menu-items_link\";s:9:\"fullwidth\";s:28:\"header-overlay-menu-position\";s:8:\"v_center\";s:31:\"header-show_floating_navigation\";s:1:\"1\";s:27:\"header-side-content-padding\";s:17:\"50px 0px 40px 0px\";s:20:\"header-side-elements\";a:1:{s:10:\"below_menu\";a:3:{i:0;s:12:\"social_icons\";i:1;s:5:\"email\";i:2;s:5:\"phone\";}}s:39:\"header-side-elements-below_menu-padding\";s:17:\"0px 35px 0px 35px\";s:48:\"header-side-elements-near_menu-custom-icon-color\";s:0:\"\";s:47:\"header-side-elements-near_menu-custom-icon-size\";s:2:\"16\";s:41:\"header-side-elements-near_menu-font_color\";s:7:\"#888888\";s:41:\"header-side-elements-near_menu-typography\";a:2:{s:11:\"font_family\";s:5:\"Arial\";s:9:\"font_size\";s:2:\"14\";}s:25:\"header-side-logo-position\";s:6:\"inside\";s:32:\"header-side-menu-items_alignment\";s:6:\"center\";s:27:\"header-side-menu-items_link\";s:9:\"fullwidth\";s:25:\"header-side-menu-position\";s:5:\"v_top\";s:33:\"header-side-menu-submenu-position\";s:4:\"down\";s:20:\"header-side-position\";s:5:\"right\";s:25:\"header-side-show_elements\";s:1:\"1\";s:17:\"header-side-width\";s:5:\"300px\";s:25:\"header-side_line-elements\";a:0:{}s:44:\"header-side_line-elements-below_menu-padding\";s:15:\"0px 0px 0px 0px\";s:53:\"header-side_line-elements-near_menu-custom-icon-color\";s:0:\"\";s:52:\"header-side_line-elements-near_menu-custom-icon-size\";s:2:\"16\";s:46:\"header-side_line-elements-near_menu-font_color\";s:7:\"#888888\";s:46:\"header-side_line-elements-near_menu-typography\";a:2:{s:11:\"font_family\";s:5:\"Arial\";s:9:\"font_size\";s:2:\"14\";}s:30:\"header-side_line-show_elements\";s:1:\"0\";s:22:\"header-side_line-width\";s:4:\"60px\";s:32:\"header-slide_out-content-padding\";s:17:\"50px 0px 50px 0px\";s:30:\"header-slide_out-logo-position\";s:12:\"fully_inside\";s:37:\"header-slide_out-menu-items_alignment\";s:6:\"center\";s:32:\"header-slide_out-menu-items_link\";s:9:\"fullwidth\";s:30:\"header-slide_out-menu-position\";s:5:\"v_top\";s:34:\"header-slide_out-overlay-animation\";s:4:\"fade\";s:33:\"header-slide_out-overlay-bg-color\";s:18:\"rgba(17,17,17,0.4)\";s:39:\"header-slide_out-overlay-bg-color-style\";s:5:\"color\";s:36:\"header-slide_out-overlay-bg-gradient\";s:58:\"135deg|rgba(205,183,226,0.4) 30%|rgba(130,20,130,0.4) 100%\";s:35:\"header-slide_out-overlay-bg-opacity\";s:2:\"40\";s:25:\"header-slide_out-position\";s:4:\"left\";s:22:\"header-slide_out-width\";s:5:\"400px\";s:21:\"header-split-elements\";a:2:{s:14:\"near_menu_left\";a:1:{i:0;s:6:\"search\";}s:15:\"near_menu_right\";a:1:{i:0;s:4:\"cart\";}}s:49:\"header-split-elements-near_menu-custom-icon-color\";s:0:\"\";s:48:\"header-split-elements-near_menu-custom-icon-size\";s:2:\"16\";s:42:\"header-split-elements-near_menu-font_color\";s:7:\"#888888\";s:42:\"header-split-elements-near_menu-typography\";a:2:{s:11:\"font_family\";s:5:\"Arial\";s:9:\"font_size\";s:2:\"14\";}s:44:\"header-split-elements-near_menu_left-padding\";s:17:\"0px 20px 0px 20px\";s:45:\"header-split-elements-near_menu_right-padding\";s:17:\"0px 20px 0px 20px\";s:19:\"header-split-height\";s:5:\"100px\";s:25:\"header-split-is_fullwidth\";s:1:\"0\";s:26:\"header-split-menu-position\";s:7:\"outside\";s:26:\"header-split-show_elements\";s:1:\"1\";s:25:\"header-split-side-padding\";s:9:\"30px 30px\";s:28:\"header-split-switch_paddings\";s:3:\"0px\";s:28:\"header-split_mobile_paddings\";s:7:\"0px 0px\";s:33:\"header-style-floating-choose_logo\";s:6:\"custom\";s:34:\"header-style-floating-logo-padding\";s:16:\"0px 18px 0px 0px\";s:29:\"header-style-floating-logo_hd\";a:2:{i:0;s:0:\"\";i:1;i:0;}s:34:\"header-style-floating-logo_regular\";a:2:{i:0;s:42:\"/wp-content/uploads/2023/08/366px-80px.gif\";i:1;i:3081;}s:41:\"header-style-floating-mobile-logo-padding\";s:15:\"0px 0px 0px 0px\";s:36:\"header-style-floating-mobile-logo_hd\";a:2:{i:0;s:0:\"\";i:1;i:0;}s:41:\"header-style-floating-mobile-logo_regular\";a:2:{i:0;s:0:\"\";i:1;i:0;}s:31:\"header-style-mixed-logo-padding\";s:15:\"0px 0px 0px 0px\";s:26:\"header-style-mixed-logo_hd\";a:2:{i:0;s:0:\"\";i:1;i:0;}s:31:\"header-style-mixed-logo_regular\";a:2:{i:0;s:0:\"\";i:1;i:0;}s:48:\"header-style-mixed-top_line-floating-choose_logo\";s:4:\"main\";s:49:\"header-style-mixed-top_line-floating-logo-padding\";s:15:\"0px 0px 0px 0px\";s:44:\"header-style-mixed-top_line-floating-logo_hd\";a:2:{i:0;s:0:\"\";i:1;i:0;}s:49:\"header-style-mixed-top_line-floating-logo_regular\";a:2:{i:0;s:0:\"\";i:1;i:0;}s:51:\"header-style-mixed-transparent-top_line-choose_logo\";s:4:\"main\";s:52:\"header-style-mixed-transparent-top_line-logo-padding\";s:15:\"0px 0px 0px 0px\";s:47:\"header-style-mixed-transparent-top_line-logo_hd\";a:2:{i:0;s:0:\"\";i:1;i:0;}s:52:\"header-style-mixed-transparent-top_line-logo_regular\";a:2:{i:0;s:0:\"\";i:1;i:0;}s:32:\"header-style-mobile-logo-padding\";s:15:\"0px 0px 0px 0px\";s:27:\"header-style-mobile-logo_hd\";a:2:{i:0;s:0:\"\";i:1;i:0;}s:32:\"header-style-mobile-logo_regular\";a:2:{i:0;s:0:\"\";i:1;i:0;}s:36:\"header-style-transparent-choose_logo\";s:4:\"main\";s:37:\"header-style-transparent-logo-padding\";s:15:\"0px 5px 0px 0px\";s:32:\"header-style-transparent-logo_hd\";a:2:{i:0;s:0:\"\";i:1;i:0;}s:37:\"header-style-transparent-logo_regular\";a:2:{i:0;s:41:\"/wp-content/uploads/2022/08/gif-logo5.gif\";i:1;i:2400;}s:44:\"header-style-transparent-mobile-logo-padding\";s:15:\"0px 0px 0px 0px\";s:39:\"header-style-transparent-mobile-logo_hd\";a:2:{i:0;s:0:\"\";i:1;i:0;}s:44:\"header-style-transparent-mobile-logo_regular\";a:2:{i:0;s:0:\"\";i:1;i:0;}s:24:\"header-top_line-elements\";a:0:{}s:43:\"header-top_line-elements-below_menu-padding\";s:15:\"0px 0px 0px 0px\";s:54:\"header-top_line-elements-in_top_line-custom-icon-color\";s:0:\"\";s:53:\"header-top_line-elements-in_top_line-custom-icon-size\";s:2:\"16\";s:47:\"header-top_line-elements-in_top_line-font_color\";s:7:\"#888888\";s:47:\"header-top_line-elements-in_top_line-typography\";a:2:{s:11:\"font_family\";s:5:\"Arial\";s:9:\"font_size\";s:2:\"14\";}s:52:\"header-top_line-elements-near_menu-custom-icon-color\";s:0:\"\";s:51:\"header-top_line-elements-near_menu-custom-icon-size\";s:2:\"16\";s:45:\"header-top_line-elements-near_menu-font_color\";s:7:\"#888888\";s:45:\"header-top_line-elements-near_menu-typography\";a:2:{s:11:\"font_family\";s:5:\"Arial\";s:9:\"font_size\";s:2:\"14\";}s:41:\"header-top_line-elements-top_line-padding\";s:15:\"0px 0px 0px 0px\";s:47:\"header-top_line-elements-top_line_right-padding\";s:15:\"0px 0px 0px 0px\";s:29:\"header-top_line-show_elements\";s:1:\"0\";s:28:\"header-top_line-side-padding\";s:9:\"30px 30px\";s:31:\"header-top_line-switch_paddings\";s:3:\"0px\";s:31:\"header-top_line_mobile_paddings\";s:7:\"0px 0px\";s:43:\"header-transparent-mobile-first_switch-logo\";s:7:\"desktop\";s:44:\"header-transparent-mobile-second_switch-logo\";s:7:\"desktop\";s:27:\"header-transparent_bg_color\";s:18:\"rgba(238,238,34,1)\";s:17:\"header_navigation\";s:9:\"slide_out\";s:17:\"image_hover-color\";s:20:\"rgba(12,162,224,0.2)\";s:26:\"image_hover-color_gradient\";s:56:\"135deg|rgba(46,221,237,0.2) 30%|rgba(0,132,187,0.2) 100%\";s:22:\"image_hover-color_mode\";s:6:\"accent\";s:19:\"image_hover-opacity\";s:2:\"20\";s:34:\"image_hover-project_rollover_color\";s:16:\"rgba(0,0,0,0.85)\";s:43:\"image_hover-project_rollover_color_gradient\";s:58:\"135deg|rgba(46,221,237,0.85) 30%|rgba(0,132,187,0.85) 100%\";s:39:\"image_hover-project_rollover_color_mode\";s:6:\"accent\";s:36:\"image_hover-project_rollover_opacity\";s:2:\"85\";s:17:\"image_hover-style\";s:4:\"none\";s:14:\"input_bg_color\";s:19:\"rgba(253,253,253,1)\";s:18:\"input_border_color\";s:19:\"rgba(51,51,51,0.11)\";s:19:\"input_border_radius\";s:3:\"2px\";s:18:\"input_border_width\";s:15:\"1px 1px 1px 1px\";s:11:\"input_color\";s:7:\"#8b8d94\";s:12:\"input_height\";s:4:\"40px\";s:13:\"input_padding\";s:17:\"5px 15px 5px 15px\";s:25:\"layout-menu_icon-position\";s:15:\"menu_icon_right\";s:35:\"layout-menu_icon-show_floating_logo\";s:1:\"1\";s:22:\"layout-top_line-height\";s:5:\"130px\";s:28:\"layout-top_line-is_fullwidth\";s:1:\"0\";s:25:\"layout-top_line-is_sticky\";s:1:\"0\";s:29:\"layout-top_line-logo-position\";s:4:\"left\";s:42:\"menu-mobile-microwidgets-custom-icon-color\";s:0:\"\";s:41:\"menu-mobile-microwidgets-custom-icon-size\";s:2:\"16\";s:35:\"menu-mobile-microwidgets-font-color\";s:7:\"#b1b4b8\";s:35:\"menu-mobile-microwidgets-typography\";a:2:{s:11:\"font_family\";s:7:\"Exo:500\";s:9:\"font_size\";s:2:\"13\";}s:16:\"message_bg_color\";s:0:\"\";s:13:\"message_color\";s:7:\"#ffffff\";s:32:\"microwidgets-search-active-width\";s:5:\"200px\";s:26:\"microwidgets-search-height\";s:4:\"34px\";s:30:\"microwidgets-search-typography\";a:2:{s:11:\"font_family\";s:6:\"Roboto\";s:9:\"font_size\";s:2:\"14\";}s:25:\"microwidgets-search-width\";s:5:\"200px\";s:35:\"microwidgets-search_bg-border-color\";s:7:\"#e2e2e2\";s:28:\"microwidgets-search_bg-color\";s:7:\"#f4f4f4\";s:36:\"microwidgets-search_bg_border_radius\";s:3:\"0px\";s:35:\"microwidgets-search_bg_border_width\";s:3:\"0px\";s:31:\"microwidgets-search_custom-icon\";s:24:\"the7-mw-icon-search-bold\";s:30:\"microwidgets-search_font-color\";s:7:\"#aaaaaa\";s:24:\"microwidgets-search_icon\";s:6:\"custom\";s:29:\"microwidgets-search_icon-size\";s:2:\"16\";s:33:\"microwidgets-search_input-padding\";s:9:\"12px 12px\";s:30:\"microwidgets-search_overlay-bg\";s:5:\"color\";s:36:\"microwidgets-search_overlay-bg-color\";s:15:\"rgba(0,0,0,0.9)\";s:39:\"microwidgets-search_overlay-bg-gradient\";s:31:\"135deg|#ffffff 30%|#000000 100%\";s:25:\"microwidgets-search_style\";s:5:\"popup\";s:52:\"page_title-background-style-transparent-color_scheme\";s:5:\"light\";s:18:\"page_title-padding\";s:9:\"30px 30px\";s:30:\"portfolio-rel_projects_columns\";a:6:{s:12:\"wide_desktop\";i:4;s:7:\"desktop\";i:3;s:6:\"laptop\";i:3;s:8:\"h_tablet\";i:3;s:8:\"v_tablet\";i:2;s:5:\"phone\";i:1;}s:34:\"portfolio-rel_projects_proportions\";a:2:{s:5:\"width\";i:1;s:6:\"height\";i:1;}s:26:\"post-show_fancy_categories\";b:0;s:20:\"post-show_fancy_date\";s:1:\"1\";s:6:\"preset\";s:7:\"skin11r\";s:33:\"show_static_part_of_archive_title\";s:1:\"1\";s:16:\"sidebar-bg_color\";s:7:\"#ffffff\";s:16:\"sidebar-bg_image\";a:4:{s:5:\"image\";s:74:\"/wp-content/themes/dt-the7/images/backgrounds/patterns/full/grid-light.png\";s:6:\"repeat\";s:6:\"repeat\";s:10:\"position_x\";s:6:\"center\";s:10:\"position_y\";s:6:\"center\";}s:18:\"sidebar-decoration\";s:7:\"outline\";s:32:\"sidebar-decoration_outline_color\";s:7:\"#8224e3\";s:27:\"sidebar-distance_to_content\";s:4:\"50px\";s:26:\"sidebar-divider-horizontal\";s:1:\"1\";s:24:\"sidebar-divider-vertical\";s:1:\"1\";s:16:\"sidebar-floating\";s:1:\"1\";s:21:\"sidebar-headers_color\";s:7:\"#079547\";s:26:\"sidebar-primary_text_color\";s:7:\"#000000\";s:22:\"sidebar-responsiveness\";s:5:\"998px\";s:25:\"sidebar-vertical_distance\";s:4:\"60px\";s:20:\"sidebar-visual_style\";s:13:\"with_dividers\";s:13:\"sidebar-width\";s:3:\"30%\";s:19:\"social_buttons-page\";a:0:{}s:32:\"social_buttons-page-button_title\";s:15:\"Share this page\";s:20:\"social_buttons-photo\";a:0:{}s:33:\"social_buttons-photo-button_title\";s:16:\"Share this image\";s:29:\"social_buttons-portfolio_post\";a:0:{}s:42:\"social_buttons-portfolio_post-button_title\";s:15:\"Share this post\";s:19:\"social_buttons-post\";a:0:{}s:32:\"social_buttons-post-button_title\";s:15:\"Share this post\";s:22:\"social_buttons-product\";a:4:{i:0;s:7:\"twitter\";i:1;s:8:\"facebook\";i:2;s:9:\"pinterest\";i:3;s:8:\"linkedin\";}s:35:\"social_buttons-product-button_title\";s:18:\"Share this product\";s:25:\"social_buttons-visibility\";s:7:\"allways\";s:25:\"stripes-stripe_1_bg_image\";a:4:{s:5:\"image\";s:0:\"\";s:6:\"repeat\";s:6:\"repeat\";s:10:\"position_x\";s:6:\"center\";s:10:\"position_y\";s:6:\"center\";}s:22:\"stripes-stripe_1_color\";s:7:\"#f8f8f9\";s:39:\"stripes-stripe_1_content_boxes_bg_color\";s:7:\"#ffffff\";s:41:\"stripes-stripe_1_content_boxes_bg_opacity\";s:3:\"100\";s:41:\"stripes-stripe_1_content_boxes_decoration\";s:4:\"none\";s:55:\"stripes-stripe_1_content_boxes_decoration_outline_color\";s:7:\"#dd3333\";s:57:\"stripes-stripe_1_content_boxes_decoration_outline_opacity\";s:3:\"100\";s:30:\"stripes-stripe_1_headers_color\";s:7:\"#3b3f4a\";s:24:\"stripes-stripe_1_outline\";s:4:\"hide\";s:30:\"stripes-stripe_1_outline_color\";s:7:\"#44bb70\";s:32:\"stripes-stripe_1_outline_opacity\";s:3:\"100\";s:27:\"stripes-stripe_1_text_color\";s:7:\"#787d85\";s:25:\"stripes-stripe_2_bg_image\";a:4:{s:5:\"image\";s:0:\"\";s:6:\"repeat\";s:6:\"repeat\";s:10:\"position_x\";s:6:\"center\";s:10:\"position_y\";s:6:\"center\";}s:22:\"stripes-stripe_2_color\";s:7:\"#23262d\";s:39:\"stripes-stripe_2_content_boxes_bg_color\";s:7:\"#ffffff\";s:41:\"stripes-stripe_2_content_boxes_bg_opacity\";s:2:\"10\";s:41:\"stripes-stripe_2_content_boxes_decoration\";s:4:\"none\";s:55:\"stripes-stripe_2_content_boxes_decoration_outline_color\";s:7:\"#ffffff\";s:57:\"stripes-stripe_2_content_boxes_decoration_outline_opacity\";s:2:\"15\";s:30:\"stripes-stripe_2_headers_color\";s:7:\"#ffffff\";s:24:\"stripes-stripe_2_outline\";s:4:\"hide\";s:30:\"stripes-stripe_2_outline_color\";s:7:\"#ffffff\";s:32:\"stripes-stripe_2_outline_opacity\";s:2:\"15\";s:27:\"stripes-stripe_2_text_color\";s:7:\"#8b9199\";s:25:\"stripes-stripe_3_bg_image\";a:4:{s:5:\"image\";s:61:\"/inc/presets/images/full/skin22.stripes-stripe-3-bg-image.jpg\";s:6:\"repeat\";s:6:\"repeat\";s:10:\"position_x\";s:6:\"center\";s:10:\"position_y\";s:6:\"center\";}s:22:\"stripes-stripe_3_color\";s:7:\"#000000\";s:39:\"stripes-stripe_3_content_boxes_bg_color\";s:7:\"#ffffff\";s:41:\"stripes-stripe_3_content_boxes_bg_opacity\";s:2:\"10\";s:41:\"stripes-stripe_3_content_boxes_decoration\";s:4:\"none\";s:55:\"stripes-stripe_3_content_boxes_decoration_outline_color\";s:7:\"#ffffff\";s:57:\"stripes-stripe_3_content_boxes_decoration_outline_opacity\";s:2:\"19\";s:30:\"stripes-stripe_3_headers_color\";s:7:\"#ffffff\";s:24:\"stripes-stripe_3_outline\";s:4:\"hide\";s:30:\"stripes-stripe_3_outline_color\";s:7:\"#252728\";s:32:\"stripes-stripe_3_outline_opacity\";s:3:\"100\";s:27:\"stripes-stripe_3_text_color\";s:7:\"#ffffff\";s:20:\"template_page_id_404\";i:0;s:23:\"template_page_id_author\";i:0;s:36:\"template_page_id_author_full_content\";s:1:\"0\";s:30:\"template_page_id_blog_category\";i:0;s:43:\"template_page_id_blog_category_full_content\";s:1:\"0\";s:26:\"template_page_id_blog_tags\";i:0;s:39:\"template_page_id_blog_tags_full_content\";s:1:\"0\";s:21:\"template_page_id_date\";i:0;s:34:\"template_page_id_date_full_content\";s:1:\"0\";s:23:\"template_page_id_search\";i:0;s:36:\"template_page_id_search_full_content\";s:1:\"0\";s:19:\"the7_opengraph_tags\";s:1:\"1\";s:14:\"top-bar-height\";s:4:\"36px\";s:28:\"top-bar-transparent_bg_color\";s:15:\"rgba(0,0,0,0.5)\";s:16:\"top_bar-bg-color\";s:19:\"rgba(255,255,255,0)\";s:16:\"top_bar-bg-image\";a:4:{s:5:\"image\";s:82:\"/wp-content/themes/dt-the7/images/backgrounds/patterns/full/low_contrast_linen.jpg\";s:6:\"repeat\";s:6:\"repeat\";s:10:\"position_x\";s:6:\"center\";s:10:\"position_y\";s:6:\"center\";}s:16:\"top_bar-bg-style\";s:8:\"disabled\";s:25:\"top_bar-custom-icon-color\";s:0:\"\";s:24:\"top_bar-custom-icon-size\";s:2:\"16\";s:18:\"top_bar-font-color\";s:7:\"#b1b4b8\";s:18:\"top_bar-line-color\";s:19:\"rgba(51,51,51,0.11)\";s:34:\"top_bar-line-in-transparent-header\";b:0;s:17:\"top_bar-line_size\";s:3:\"1px\";s:18:\"top_bar-line_style\";s:5:\"solid\";s:15:\"top_bar-padding\";s:17:\"3px 50px 3px 50px\";s:23:\"top_bar-switch_paddings\";s:5:\"600px\";s:18:\"top_bar-typography\";a:3:{s:11:\"font_family\";s:7:\"Exo:500\";s:14:\"text_transform\";s:4:\"none\";s:9:\"font_size\";s:2:\"13\";}s:23:\"top_bar_mobile_paddings\";s:17:\"3px 20px 3px 20px\";s:12:\"wc_view_mode\";s:12:\"masonry_grid\";s:10:\"widget_gap\";s:4:\"20px\";s:11:\"widgetareas\";a:4:{i:1;a:2:{s:12:\"sidebar_name\";s:15:\"Default Sidebar\";s:12:\"sidebar_desc\";s:27:\"Sidebar primary widget area\";}i:2;a:2:{s:12:\"sidebar_name\";s:14:\"Default Footer\";s:12:\"sidebar_desc\";s:26:\"Footer primary widget area\";}i:3;a:2:{s:12:\"sidebar_name\";s:13:\"custom footer\";s:12:\"sidebar_desc\";s:0:\"\";}i:4;a:2:{s:12:\"sidebar_name\";s:6:\"topbar\";s:12:\"sidebar_desc\";s:0:\"\";}}s:24:\"woocommerce-product_zoom\";s:1:\"1\";s:23:\"woocommerce-related_btn\";s:1:\"0\";s:28:\"woocommerce_add_to_cart_icon\";s:30:\"icomoon-the7-font-the7-cart-04\";s:24:\"woocommerce_cart_padding\";s:8:\"60px 0px\";s:23:\"woocommerce_cart_switch\";s:5:\"990px\";s:28:\"woocommerce_cart_total_width\";s:3:\"50%\";s:24:\"woocommerce_details_icon\";s:21:\"dt-icon-the7-menu-012\";s:25:\"woocommerce_display_align\";s:6:\"center\";s:32:\"woocommerce_display_product_info\";s:11:\"under_image\";s:23:\"woocommerce_hover_image\";s:1:\"0\";s:23:\"woocommerce_list_switch\";s:5:\"778px\";s:28:\"woocommerce_product_cart_gap\";s:4:\"25px\";s:28:\"woocommerce_product_desc_gap\";s:4:\"15px\";s:29:\"woocommerce_product_img_width\";s:3:\"35%\";s:29:\"woocommerce_product_price_gap\";s:3:\"5px\";s:30:\"woocommerce_product_rating_gap\";s:4:\"10px\";s:26:\"woocommerce_product_switch\";s:5:\"778px\";s:29:\"woocommerce_product_title_gap\";s:4:\"15px\";s:28:\"woocommerce_rel_products_max\";s:1:\"6\";s:33:\"woocommerce_shop-sidebar-collapse\";s:1:\"1\";s:37:\"woocommerce_shop_template_bwb_columns\";a:4:{s:7:\"desktop\";i:3;s:8:\"h_tablet\";i:3;s:8:\"v_tablet\";i:2;s:5:\"phone\";i:1;}s:42:\"woocommerce_shop_template_column_min_width\";s:5:\"220px\";s:33:\"woocommerce_shop_template_columns\";i:5;s:29:\"woocommerce_shop_template_gap\";s:4:\"35px\";s:35:\"woocommerce_shop_template_img_width\";s:3:\"50%\";s:33:\"woocommerce_shop_template_isotope\";s:4:\"grid\";s:40:\"woocommerce_shop_template_layout_default\";s:20:\"masonry_grid_default\";s:40:\"woocommerce_shop_template_loading_effect\";s:7:\"fade_in\";s:40:\"woocommerce_shop_template_responsiveness\";s:19:\"browser_width_based\";s:26:\"woocommerce_show_cart_icon\";s:1:\"0\";s:26:\"woocommerce_show_list_desc\";s:1:\"1\";s:29:\"woocommerce_show_masonry_desc\";s:1:\"0\";s:30:\"woocommerce_show_product_price\";s:1:\"0\";s:31:\"woocommerce_show_product_rating\";s:1:\"0\";s:31:\"woocommerce_show_product_titles\";s:1:\"1\";s:37:\"woocommerce_show_single_product_title\";s:5:\"never\";s:22:\"woocommerce_show_steps\";s:1:\"1\";s:28:\"woocommerce_steps-bg_opacity\";s:3:\"100\";s:26:\"woocommerce_steps_bg_color\";s:7:\"#ffffff\";s:23:\"woocommerce_steps_color\";s:7:\"#333333\";}','yes'),(749,'the7_dev_tool_option','a:8:{s:11:\"theme_title\";s:4:\"The7\";s:9:\"theme_url\";s:16:\"https://the7.io/\";s:12:\"theme_author\";s:11:\"Dream-Theme\";s:16:\"theme_author_uri\";s:24:\"https://dream-theme.com/\";s:17:\"theme_description\";s:384:\"Any design, any layout. No coding required. The7 is the most customisable WordPress theme on the market up to date. Add the power of Visual Composer, The7 Post Types, Ultimate Addons, Slider Revolution, and WooCommerce to the mix, and you’ll get the ultimate web-site building toolkit! Theme is translation ready, compatible with WPML, SEO and mobile friendly (certified by Google).\";s:10:\"theme_tags\";s:186:\"multipurpose, responsive, retina ready, SEO ready, mobile friendly, iOS, material design, clean, minimal, business, corporate, portfolio, creative, photography, one page site, micro site\";s:10:\"theme_name\";s:4:\"The7\";s:10:\"screenshot\";s:0:\"\";}','yes'),(750,'the7_theme_activation_log','a:2:{i:0;a:2:{s:7:\"version\";s:7:\"10.10.0\";s:12:\"activated_at\";i:1660126755;}i:1;a:2:{s:7:\"version\";s:6:\"11.8.1\";s:12:\"activated_at\";i:1692495411;}}','no'),(751,'widget_presscore-contact-info-widget','a:3:{i:4;a:4:{s:5:\"title\";s:18:\"Contact Infomation\";s:4:\"text\";s:0:\"\";s:5:\"links\";a:0:{}s:6:\"fields\";a:3:{i:0;a:2:{s:5:\"title\";s:12:\"<b>Phone</b>\";s:7:\"content\";s:19:\"+94 (0) 11 298 3922\";}i:1;a:2:{s:5:\"title\";s:12:\"<b>Email</b>\";s:7:\"content\";s:19:\"info@farmchemie.com\";}i:2;a:2:{s:5:\"title\";s:14:\"<b>Address</b>\";s:7:\"content\";s:43:\"No. 78, Industrial Zone, Katuwana, Homagama\";}}}i:5;a:4:{s:5:\"title\";s:18:\"Contact Infomation\";s:4:\"text\";s:0:\"\";s:5:\"links\";a:0:{}s:6:\"fields\";a:3:{i:0;a:2:{s:5:\"title\";s:12:\"<b>Phone</b>\";s:7:\"content\";s:19:\"+94 (0) 11 298 3922\";}i:1;a:2:{s:5:\"title\";s:12:\"<b>Email</b>\";s:7:\"content\";s:19:\"info@farmchemie.com\";}i:2;a:2:{s:5:\"title\";s:14:\"<b>Address</b>\";s:7:\"content\";s:43:\"No. 78, Industrial Zone, Katuwana, Homagama\";}}}s:12:\"_multiwidget\";i:1;}','yes'),(752,'widget_presscore-custom-menu-one','a:4:{i:2;a:5:{s:5:\"title\";s:0:\"\";s:4:\"menu\";s:2:\"27\";s:7:\"divider\";b:1;s:9:\"bold_text\";b:1;s:10:\"show_arrow\";b:1;}i:3;a:5:{s:5:\"title\";s:0:\"\";s:4:\"menu\";s:2:\"27\";s:7:\"divider\";b:1;s:9:\"bold_text\";b:1;s:10:\"show_arrow\";b:1;}i:5;a:5:{s:5:\"title\";s:8:\"Category\";s:4:\"menu\";s:3:\"129\";s:7:\"divider\";b:0;s:9:\"bold_text\";b:0;s:10:\"show_arrow\";b:1;}s:12:\"_multiwidget\";i:1;}','yes'),(753,'widget_presscore-custom-menu-two','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(754,'widget_presscore-blog-posts','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(755,'widget_presscore-blog-categories','a:2:{i:2;a:3:{s:5:\"title\";s:0:\"\";s:6:\"select\";s:3:\"all\";s:4:\"cats\";a:0:{}}s:12:\"_multiwidget\";i:1;}','yes'),(756,'widget_presscore-progress-bars-widget','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(757,'widget_presscore-contact-form-widget','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(758,'widget_presscore-accordion-widget','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(46287,'the7_db_version','11.6.0.1','yes'),(760,'the7_dismissed_admin_notices','a:5:{i:0;s:12:\"the7_updated\";i:1;s:22:\"the7_auto_deactivation\";i:2;s:23:\"turn-on-critical-alerts\";i:3;s:22:\"the7_auto_deactivation\";i:4;s:36:\"the7_show_registration_splash_screen\";}','yes'),(761,'the7_force_regen_css','','yes'),(762,'the7_beautiful_loader_inline_css','body #load {\n  display: block;\n  height: 100%;\n  overflow: hidden;\n  position: fixed;\n  width: 100%;\n  z-index: 9901;\n  opacity: 1;\n  visibility: visible;\n  transition: all .35s ease-out;\n}\n.load-wrap {\n  width: 100%;\n  height: 100%;\n  background-position: center center;\n  background-repeat: no-repeat;\n  text-align: center;\n  display: -ms-flexbox;\n  display: -ms-flex;\n  display: flex;\n  -ms-align-items: center;\n  -ms-flex-align: center;\n  align-items: center;\n  -ms-flex-flow: column wrap;\n  flex-flow: column wrap;\n  -ms-flex-pack: center;\n  -ms-justify-content: center;\n  justify-content: center;\n}\n.load-wrap > svg {\n  position: absolute;\n  top: 50%;\n  left: 50%;\n  transform: translate(-50%,-50%);\n}\n#load {\n  background: var(--the7-elementor-beautiful-loading-bg,#ffffff);\n  --the7-beautiful-spinner-color2: var(--the7-beautiful-spinner-color,rgba(51,51,51,0.25));\n}\n','yes'),(763,'the7_style_version','11.8.1','yes'),(774,'the7_purchase_code','16328aec-6188-4c79-ab55-baa8e6fc0fa6','no'),(45956,'the7_registered_domains_count','2','no'),(45959,'the7_plugins_list','a:16:{i:0;a:8:{s:4:\"name\";s:13:\"The7 Elements\";s:4:\"slug\";s:12:\"dt-the7-core\";s:8:\"required\";b:0;s:7:\"version\";s:5:\"2.7.6\";s:6:\"tested\";s:3:\"6.3\";s:16:\"force_activation\";b:0;s:18:\"force_deactivation\";b:0;s:6:\"source\";s:101:\"https://repo.the7.io/plugins/download.php?code=16328aec-6188-4c79-ab55-baa8e6fc0fa6&item=dt-the7-core\";}i:1;a:8:{s:4:\"name\";s:8:\"The7 CLI\";s:4:\"slug\";s:8:\"the7-cli\";s:8:\"required\";b:0;s:7:\"version\";s:5:\"1.0.0\";s:6:\"tested\";s:3:\"6.3\";s:16:\"force_activation\";b:0;s:18:\"force_deactivation\";b:0;s:6:\"source\";s:97:\"https://repo.the7.io/plugins/download.php?code=16328aec-6188-4c79-ab55-baa8e6fc0fa6&item=the7-cli\";}i:2;a:7:{s:4:\"name\";s:21:\"WPBakery Page Builder\";s:4:\"slug\";s:11:\"js_composer\";s:8:\"required\";b:0;s:7:\"version\";s:3:\"7.0\";s:16:\"force_activation\";b:0;s:18:\"force_deactivation\";b:0;s:6:\"source\";s:100:\"https://repo.the7.io/plugins/download.php?code=16328aec-6188-4c79-ab55-baa8e6fc0fa6&item=js_composer\";}i:3;a:7:{s:4:\"name\";s:17:\"Slider Revolution\";s:4:\"slug\";s:9:\"revslider\";s:8:\"required\";b:0;s:7:\"version\";s:6:\"6.6.16\";s:16:\"force_activation\";b:0;s:18:\"force_deactivation\";b:0;s:6:\"source\";s:98:\"https://repo.the7.io/plugins/download.php?code=16328aec-6188-4c79-ab55-baa8e6fc0fa6&item=revslider\";}i:4;a:7:{s:4:\"name\";s:48:\"Go Pricing - WordPress Responsive Pricing Tables\";s:4:\"slug\";s:10:\"go_pricing\";s:8:\"required\";b:0;s:7:\"version\";s:3:\"3.4\";s:16:\"force_activation\";b:0;s:18:\"force_deactivation\";b:0;s:6:\"source\";s:99:\"https://repo.the7.io/plugins/download.php?code=16328aec-6188-4c79-ab55-baa8e6fc0fa6&item=go_pricing\";}i:5;a:9:{s:4:\"name\";s:35:\"Ultimate Addons for Visual Composer\";s:4:\"slug\";s:18:\"Ultimate_VC_Addons\";s:8:\"required\";b:0;s:7:\"version\";s:7:\"3.19.17\";s:4:\"icon\";s:70:\"http://support.brainstormforce.com/wp-content/uploads/2017/07/uavc.jpg\";s:5:\"icons\";a:1:{s:2:\"1x\";s:70:\"http://support.brainstormforce.com/wp-content/uploads/2017/07/uavc.jpg\";}s:16:\"force_activation\";b:0;s:18:\"force_deactivation\";b:0;s:6:\"source\";s:107:\"https://repo.the7.io/plugins/download.php?code=16328aec-6188-4c79-ab55-baa8e6fc0fa6&item=Ultimate_VC_Addons\";}i:6;a:7:{s:4:\"name\";s:11:\"ConvertPlus\";s:4:\"slug\";s:11:\"convertplug\";s:8:\"required\";b:0;s:7:\"version\";s:6:\"3.5.24\";s:16:\"force_activation\";b:0;s:18:\"force_deactivation\";b:0;s:6:\"source\";s:100:\"https://repo.the7.io/plugins/download.php?code=16328aec-6188-4c79-ab55-baa8e6fc0fa6&item=convertplug\";}i:7;a:7:{s:4:\"name\";s:20:\"Fast Velocity Minify\";s:4:\"slug\";s:20:\"fast-velocity-minify\";s:8:\"required\";b:0;s:7:\"version\";s:5:\"3.4.0\";s:16:\"force_activation\";b:0;s:18:\"force_deactivation\";b:0;s:6:\"source\";s:109:\"https://repo.the7.io/plugins/download.php?code=16328aec-6188-4c79-ab55-baa8e6fc0fa6&item=fast-velocity-minify\";}i:8;a:3:{s:4:\"name\";s:14:\"Contact Form 7\";s:4:\"slug\";s:14:\"contact-form-7\";s:8:\"required\";b:0;}i:9;a:3:{s:4:\"name\";s:49:\"Give – Donation Plugin and Fundraising Platform\";s:4:\"slug\";s:4:\"give\";s:8:\"required\";b:0;}i:10;a:3:{s:4:\"name\";s:18:\"Hotel Booking Lite\";s:4:\"slug\";s:28:\"motopress-hotel-booking-lite\";s:8:\"required\";b:0;}i:11;a:3:{s:4:\"name\";s:15:\"Stripe Payments\";s:4:\"slug\";s:15:\"stripe-payments\";s:8:\"required\";b:0;}i:12;a:3:{s:4:\"name\";s:9:\"Elementor\";s:4:\"slug\";s:9:\"elementor\";s:8:\"required\";b:0;}i:13;a:3:{s:4:\"name\";s:11:\"WooCommerce\";s:4:\"slug\";s:11:\"woocommerce\";s:8:\"required\";b:0;}i:14;a:3:{s:4:\"name\";s:23:\"TI WooCommerce Wishlist\";s:4:\"slug\";s:23:\"ti-woocommerce-wishlist\";s:8:\"required\";b:0;}i:15;a:5:{s:4:\"name\";s:12:\"PRO Elements\";s:14:\"protected_slug\";s:12:\"pro-elements\";s:8:\"required\";b:0;s:7:\"aliases\";a:1:{i:0;s:13:\"elementor-pro\";}s:6:\"source\";s:84:\"https://github.com/proelements/proelements/releases/latest/download/pro-elements.zip\";}}','no'),(791,'revslider-library-check','1694523800','yes'),(792,'revslider-library-hash','dae3de1eb57eeeee008b70e9a23844b5','yes'),(793,'rs-library','a:3:{s:4:\"hash\";s:32:\"dae3de1eb57eeeee008b70e9a23844b5\";s:7:\"objects\";a:417:{i:0;a:12:{s:2:\"id\";s:3:\"198\";s:6:\"handle\";s:16:\"object_dvd_1.png\";s:4:\"name\";s:3:\"DVD\";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:1:\"4\";s:6:\"handle\";s:5:\"music\";s:4:\"name\";s:5:\"Music\";}i:1;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1000\";s:6:\"height\";s:4:\"1000\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-10-17 12:43:17\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:1;a:12:{s:2:\"id\";s:3:\"188\";s:6:\"handle\";s:18:\"object_plant_1.png\";s:4:\"name\";s:7:\"Plant 1\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"18\";s:6:\"handle\";s:4:\"misc\";s:4:\"name\";s:4:\"Misc\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1500\";s:6:\"height\";s:4:\"1500\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-09-12 16:25:27\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:2;a:12:{s:2:\"id\";s:3:\"187\";s:6:\"handle\";s:16:\"object_pen_1.png\";s:4:\"name\";s:5:\"Pen 1\";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:1:\"5\";s:6:\"handle\";s:3:\"art\";s:4:\"name\";s:3:\"Art\";}i:1;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1000\";s:6:\"height\";s:4:\"1000\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-09-12 16:25:27\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:3;a:12:{s:2:\"id\";s:3:\"172\";s:6:\"handle\";s:16:\"object_egg_1.png\";s:4:\"name\";s:3:\"Egg\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"16\";s:6:\"handle\";s:4:\"food\";s:4:\"name\";s:4:\"Food\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:3:\"600\";s:6:\"height\";s:3:\"600\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-18 15:34:49\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:4;a:12:{s:2:\"id\";s:3:\"171\";s:6:\"handle\";s:19:\"object_guitar_1.png\";s:4:\"name\";s:6:\"Guitar\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"4\";s:6:\"handle\";s:5:\"music\";s:4:\"name\";s:5:\"Music\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1600\";s:6:\"height\";s:4:\"1600\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-18 15:34:49\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:5;a:12:{s:2:\"id\";s:3:\"170\";s:6:\"handle\";s:21:\"object_envelope_1.png\";s:4:\"name\";s:15:\"Closed Envelope\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1500\";s:6:\"height\";s:4:\"1500\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-18 15:34:49\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:6;a:12:{s:2:\"id\";s:3:\"169\";s:6:\"handle\";s:19:\"object_postit_2.png\";s:4:\"name\";s:18:\"Postit Label White\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:3:\"900\";s:6:\"height\";s:3:\"900\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-18 15:34:49\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:7;a:12:{s:2:\"id\";s:3:\"168\";s:6:\"handle\";s:21:\"object_envelope_2.png\";s:4:\"name\";s:13:\"Open Envelope\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1500\";s:6:\"height\";s:4:\"1500\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-18 15:34:49\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:8;a:12:{s:2:\"id\";s:3:\"167\";s:6:\"handle\";s:17:\"object_eggs_1.png\";s:4:\"name\";s:10:\"Egg Carton\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"16\";s:6:\"handle\";s:4:\"food\";s:4:\"name\";s:4:\"Food\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1600\";s:6:\"height\";s:4:\"1600\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-18 15:34:49\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:9;a:12:{s:2:\"id\";s:3:\"166\";s:6:\"handle\";s:25:\"object_bottleopener_1.png\";s:4:\"name\";s:13:\"Bottle Opener\";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:2:\"18\";s:6:\"handle\";s:4:\"misc\";s:4:\"name\";s:4:\"Misc\";}i:1;a:3:{s:2:\"id\";s:2:\"16\";s:6:\"handle\";s:4:\"food\";s:4:\"name\";s:4:\"Food\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:3:\"800\";s:6:\"height\";s:3:\"800\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-18 15:34:49\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:10;a:12:{s:2:\"id\";s:3:\"165\";s:6:\"handle\";s:23:\"object_blueprints_1.png\";s:4:\"name\";s:10:\"Blueprints\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1600\";s:6:\"height\";s:4:\"1600\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-18 15:34:49\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:11;a:12:{s:2:\"id\";s:3:\"164\";s:6:\"handle\";s:22:\"object_holepunch_1.png\";s:4:\"name\";s:10:\"Hole punch\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1500\";s:6:\"height\";s:4:\"1500\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-18 15:34:49\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:12;a:12:{s:2:\"id\";s:3:\"163\";s:6:\"handle\";s:20:\"object_speaker_1.png\";s:4:\"name\";s:13:\"Black Speaker\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"4\";s:6:\"handle\";s:5:\"music\";s:4:\"name\";s:5:\"Music\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1500\";s:6:\"height\";s:4:\"1500\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-18 15:34:49\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:13;a:12:{s:2:\"id\";s:3:\"162\";s:6:\"handle\";s:19:\"object_eraser_1.png\";s:4:\"name\";s:6:\"Eraser\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:3:\"500\";s:6:\"height\";s:3:\"500\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-18 15:34:49\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:14;a:12:{s:2:\"id\";s:3:\"161\";s:6:\"handle\";s:23:\"object_vinylcover_1.png\";s:4:\"name\";s:11:\"Vinyl Cover\";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:1:\"4\";s:6:\"handle\";s:5:\"music\";s:4:\"name\";s:5:\"Music\";}i:1;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1600\";s:6:\"height\";s:4:\"1600\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-18 15:34:49\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:15;a:12:{s:2:\"id\";s:3:\"160\";s:6:\"handle\";s:20:\"object_booklet_1.png\";s:4:\"name\";s:9:\"Booklet 1\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1600\";s:6:\"height\";s:4:\"1600\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-18 15:34:49\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:16;a:12:{s:2:\"id\";s:3:\"159\";s:6:\"handle\";s:22:\"object_earphones_2.png\";s:4:\"name\";s:11:\"Earphones 2\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"4\";s:6:\"handle\";s:5:\"music\";s:4:\"name\";s:5:\"Music\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1600\";s:6:\"height\";s:4:\"1600\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-18 15:34:49\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:17;a:12:{s:2:\"id\";s:3:\"158\";s:6:\"handle\";s:18:\"object_vinyl_1.png\";s:4:\"name\";s:5:\"Vinyl\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"4\";s:6:\"handle\";s:5:\"music\";s:4:\"name\";s:5:\"Music\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1600\";s:6:\"height\";s:4:\"1600\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-18 15:34:49\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:18;a:12:{s:2:\"id\";s:3:\"157\";s:6:\"handle\";s:19:\"object_postit_1.png\";s:4:\"name\";s:17:\"Postit Label Pink\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:3:\"900\";s:6:\"height\";s:3:\"900\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-18 15:34:49\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:19;a:12:{s:2:\"id\";s:3:\"156\";s:6:\"handle\";s:23:\"object_mechpencil_1.png\";s:4:\"name\";s:17:\"Mechanical Pencil\";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:1:\"5\";s:6:\"handle\";s:3:\"art\";s:4:\"name\";s:3:\"Art\";}i:1;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1000\";s:6:\"height\";s:4:\"1000\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-18 15:34:49\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:20;a:12:{s:2:\"id\";s:3:\"155\";s:6:\"handle\";s:22:\"object_turntable_1.png\";s:4:\"name\";s:9:\"Turntable\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"4\";s:6:\"handle\";s:5:\"music\";s:4:\"name\";s:5:\"Music\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1600\";s:6:\"height\";s:4:\"1600\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-18 15:34:49\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:21;a:12:{s:2:\"id\";s:3:\"154\";s:6:\"handle\";s:19:\"object_folder_2.png\";s:4:\"name\";s:19:\"Closed Folder Black\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1600\";s:6:\"height\";s:4:\"1600\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-18 15:34:49\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:22;a:12:{s:2:\"id\";s:3:\"153\";s:6:\"handle\";s:19:\"object_postit_4.png\";s:4:\"name\";s:18:\"Postit Label Green\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:3:\"900\";s:6:\"height\";s:3:\"900\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-18 15:34:49\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:23;a:12:{s:2:\"id\";s:3:\"152\";s:6:\"handle\";s:19:\"object_folder_1.png\";s:4:\"name\";s:12:\"Blank Folder\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1600\";s:6:\"height\";s:4:\"1600\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-18 15:34:49\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:24;a:12:{s:2:\"id\";s:3:\"151\";s:6:\"handle\";s:19:\"object_pencup_1.png\";s:4:\"name\";s:7:\"Pen Cup\";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:1:\"5\";s:6:\"handle\";s:3:\"art\";s:4:\"name\";s:3:\"Art\";}i:1;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1000\";s:6:\"height\";s:4:\"1000\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-18 15:34:49\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:25;a:12:{s:2:\"id\";s:3:\"150\";s:6:\"handle\";s:23:\"object_winebottle_1.png\";s:4:\"name\";s:15:\"Red Wine Bottle\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"16\";s:6:\"handle\";s:4:\"food\";s:4:\"name\";s:4:\"Food\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1600\";s:6:\"height\";s:4:\"1600\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-18 15:34:49\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:26;a:12:{s:2:\"id\";s:3:\"149\";s:6:\"handle\";s:23:\"object_headphones_1.png\";s:4:\"name\";s:10:\"Headphones\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"4\";s:6:\"handle\";s:5:\"music\";s:4:\"name\";s:5:\"Music\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1600\";s:6:\"height\";s:4:\"1600\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-18 15:34:49\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:27;a:12:{s:2:\"id\";s:3:\"148\";s:6:\"handle\";s:22:\"object_earphones_1.png\";s:4:\"name\";s:9:\"Earphones\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"4\";s:6:\"handle\";s:5:\"music\";s:4:\"name\";s:5:\"Music\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1500\";s:6:\"height\";s:4:\"1500\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-18 15:34:49\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:28;a:12:{s:2:\"id\";s:3:\"147\";s:6:\"handle\";s:19:\"object_postit_3.png\";s:4:\"name\";s:19:\"Postit Label Yellow\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:3:\"900\";s:6:\"height\";s:3:\"900\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-18 15:34:49\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:29;a:12:{s:2:\"id\";s:3:\"146\";s:6:\"handle\";s:22:\"object_corkscrew_1.png\";s:4:\"name\";s:23:\"Corkscrew Bottle Opener\";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:2:\"18\";s:6:\"handle\";s:4:\"misc\";s:4:\"name\";s:4:\"Misc\";}i:1;a:3:{s:2:\"id\";s:2:\"16\";s:6:\"handle\";s:4:\"food\";s:4:\"name\";s:4:\"Food\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1300\";s:6:\"height\";s:4:\"1300\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-18 15:34:49\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:30;a:12:{s:2:\"id\";s:3:\"145\";s:6:\"handle\";s:19:\"object_muffin_1.png\";s:4:\"name\";s:16:\"Chocolate Muffin\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"16\";s:6:\"handle\";s:4:\"food\";s:4:\"name\";s:4:\"Food\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:3:\"900\";s:6:\"height\";s:3:\"900\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-17 13:48:44\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:31;a:12:{s:2:\"id\";s:3:\"144\";s:6:\"handle\";s:18:\"object_chair_2.png\";s:4:\"name\";s:12:\"Yellow Chair\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"18\";s:6:\"handle\";s:4:\"misc\";s:4:\"name\";s:4:\"Misc\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1500\";s:6:\"height\";s:4:\"1500\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-17 13:48:44\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:32;a:12:{s:2:\"id\";s:3:\"143\";s:6:\"handle\";s:18:\"object_knife_2.png\";s:4:\"name\";s:7:\"Knife 2\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"16\";s:6:\"handle\";s:4:\"food\";s:4:\"name\";s:4:\"Food\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1600\";s:6:\"height\";s:4:\"1600\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-17 13:48:44\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:33;a:12:{s:2:\"id\";s:3:\"142\";s:6:\"handle\";s:26:\"object_choppingboard_2.png\";s:4:\"name\";s:16:\"Chopping Board 3\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"16\";s:6:\"handle\";s:4:\"food\";s:4:\"name\";s:4:\"Food\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1600\";s:6:\"height\";s:4:\"1600\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-17 13:48:44\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:34;a:12:{s:2:\"id\";s:3:\"141\";s:6:\"handle\";s:26:\"object_choppingboard_3.png\";s:4:\"name\";s:16:\"Chopping Board 2\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"16\";s:6:\"handle\";s:4:\"food\";s:4:\"name\";s:4:\"Food\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1600\";s:6:\"height\";s:4:\"1600\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-17 13:48:44\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:35;a:12:{s:2:\"id\";s:3:\"140\";s:6:\"handle\";s:19:\"object_coffee_2.png\";s:4:\"name\";s:12:\"Coffee Cup 2\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"16\";s:6:\"handle\";s:4:\"food\";s:4:\"name\";s:4:\"Food\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1200\";s:6:\"height\";s:4:\"1200\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-17 13:48:44\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:36;a:12:{s:2:\"id\";s:3:\"139\";s:6:\"handle\";s:18:\"object_bread_1.png\";s:4:\"name\";s:15:\"Croissant Bread\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"16\";s:6:\"handle\";s:4:\"food\";s:4:\"name\";s:4:\"Food\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1500\";s:6:\"height\";s:4:\"1500\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-17 13:48:44\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:37;a:12:{s:2:\"id\";s:3:\"138\";s:6:\"handle\";s:18:\"object_spoon_2.png\";s:4:\"name\";s:12:\"Wodden Spoon\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"16\";s:6:\"handle\";s:4:\"food\";s:4:\"name\";s:4:\"Food\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1600\";s:6:\"height\";s:4:\"1600\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-17 13:48:44\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:38;a:12:{s:2:\"id\";s:3:\"137\";s:6:\"handle\";s:26:\"object_choppingboard_1.png\";s:4:\"name\";s:16:\"Chopping Board 1\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"16\";s:6:\"handle\";s:4:\"food\";s:4:\"name\";s:4:\"Food\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1600\";s:6:\"height\";s:4:\"1600\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-17 13:48:44\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:39;a:12:{s:2:\"id\";s:3:\"136\";s:6:\"handle\";s:16:\"object_cup_2.png\";s:4:\"name\";s:11:\"Empty Cup 2\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"16\";s:6:\"handle\";s:4:\"food\";s:4:\"name\";s:4:\"Food\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1400\";s:6:\"height\";s:4:\"1400\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-17 13:48:44\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:40;a:12:{s:2:\"id\";s:3:\"135\";s:6:\"handle\";s:18:\"object_knife_1.png\";s:4:\"name\";s:5:\"Knife\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"16\";s:6:\"handle\";s:4:\"food\";s:4:\"name\";s:4:\"Food\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1500\";s:6:\"height\";s:4:\"1500\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-17 13:48:44\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:41;a:12:{s:2:\"id\";s:3:\"134\";s:6:\"handle\";s:18:\"object_spoon_1.png\";s:4:\"name\";s:5:\"Spoon\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"16\";s:6:\"handle\";s:4:\"food\";s:4:\"name\";s:4:\"Food\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1600\";s:6:\"height\";s:4:\"1600\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-17 13:48:44\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:42;a:12:{s:2:\"id\";s:3:\"133\";s:6:\"handle\";s:16:\"object_cup_1.png\";s:4:\"name\";s:9:\"Empty Cup\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"16\";s:6:\"handle\";s:4:\"food\";s:4:\"name\";s:4:\"Food\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1400\";s:6:\"height\";s:4:\"1400\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-17 13:48:44\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:43;a:12:{s:2:\"id\";s:3:\"132\";s:6:\"handle\";s:18:\"object_chair_3.png\";s:4:\"name\";s:11:\"White Chair\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1600\";s:6:\"height\";s:4:\"1600\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-17 13:48:44\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:44;a:12:{s:2:\"id\";s:3:\"131\";s:6:\"handle\";s:19:\"object_coffee_1.png\";s:4:\"name\";s:10:\"Coffee Cup\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"16\";s:6:\"handle\";s:4:\"food\";s:4:\"name\";s:4:\"Food\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1500\";s:6:\"height\";s:4:\"1500\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-17 13:48:44\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:45;a:12:{s:2:\"id\";s:3:\"130\";s:6:\"handle\";s:19:\"object_frypan_2.png\";s:4:\"name\";s:9:\"Fry Pan 2\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"16\";s:6:\"handle\";s:4:\"food\";s:4:\"name\";s:4:\"Food\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1600\";s:6:\"height\";s:4:\"1600\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-17 13:48:44\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:46;a:12:{s:2:\"id\";s:3:\"129\";s:6:\"handle\";s:19:\"object_frypan_1.png\";s:4:\"name\";s:9:\"Fry Pan 1\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"16\";s:6:\"handle\";s:4:\"food\";s:4:\"name\";s:4:\"Food\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1600\";s:6:\"height\";s:4:\"1600\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-17 13:48:44\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:47;a:12:{s:2:\"id\";s:3:\"128\";s:6:\"handle\";s:17:\"object_fork_1.png\";s:4:\"name\";s:4:\"Fork\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"16\";s:6:\"handle\";s:4:\"food\";s:4:\"name\";s:4:\"Food\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1500\";s:6:\"height\";s:4:\"1500\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-17 13:48:44\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:48;a:12:{s:2:\"id\";s:3:\"127\";s:6:\"handle\";s:20:\"object_dishrag_1.png\";s:4:\"name\";s:13:\"Dishrag Cloth\";s:4:\"tags\";a:0:{}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1600\";s:6:\"height\";s:4:\"1600\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-17 13:48:44\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:49;a:12:{s:2:\"id\";s:3:\"126\";s:6:\"handle\";s:20:\"object_wacom_pen.png\";s:4:\"name\";s:17:\"Wacom Drawing Pen\";s:4:\"tags\";a:3:{i:0;a:3:{s:2:\"id\";s:1:\"5\";s:6:\"handle\";s:3:\"art\";s:4:\"name\";s:3:\"Art\";}i:1;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}i:2;a:3:{s:2:\"id\";s:1:\"2\";s:6:\"handle\";s:6:\"device\";s:4:\"name\";s:6:\"Device\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1060\";s:6:\"height\";s:4:\"1000\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-15 16:50:55\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:50;a:12:{s:2:\"id\";s:3:\"125\";s:6:\"handle\";s:21:\"object_occulus_vr.png\";s:4:\"name\";s:23:\"Occulus Virtual Reality\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"1\";s:6:\"handle\";s:11:\"accessories\";s:4:\"name\";s:11:\"Accessories\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1500\";s:6:\"height\";s:4:\"1500\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-15 16:50:55\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:51;a:12:{s:2:\"id\";s:3:\"124\";s:6:\"handle\";s:18:\"object_antenna.png\";s:4:\"name\";s:13:\"Antenna Radar\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"18\";s:6:\"handle\";s:4:\"misc\";s:4:\"name\";s:4:\"Misc\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1600\";s:6:\"height\";s:4:\"1600\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-15 16:50:55\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:52;a:12:{s:2:\"id\";s:3:\"123\";s:6:\"handle\";s:21:\"object_solarpanel.png\";s:4:\"name\";s:11:\"Solar Panel\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"18\";s:6:\"handle\";s:4:\"misc\";s:4:\"name\";s:4:\"Misc\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1600\";s:6:\"height\";s:4:\"1600\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-15 16:50:55\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:53;a:12:{s:2:\"id\";s:3:\"122\";s:6:\"handle\";s:16:\"object_wacom.png\";s:4:\"name\";s:20:\"Wacom Drawing Tablet\";s:4:\"tags\";a:3:{i:0;a:3:{s:2:\"id\";s:1:\"5\";s:6:\"handle\";s:3:\"art\";s:4:\"name\";s:3:\"Art\";}i:1;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}i:2;a:3:{s:2:\"id\";s:1:\"2\";s:6:\"handle\";s:6:\"device\";s:4:\"name\";s:6:\"Device\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1600\";s:6:\"height\";s:4:\"1600\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-15 16:50:55\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:54;a:12:{s:2:\"id\";s:3:\"121\";s:6:\"handle\";s:18:\"object_earth_2.png\";s:4:\"name\";s:20:\"Earth Globe Planet 2\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"18\";s:6:\"handle\";s:4:\"misc\";s:4:\"name\";s:4:\"Misc\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1500\";s:6:\"height\";s:4:\"1500\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-15 16:50:55\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:55;a:12:{s:2:\"id\";s:3:\"120\";s:6:\"handle\";s:18:\"object_chair_1.png\";s:4:\"name\";s:12:\"Office Chair\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1600\";s:6:\"height\";s:4:\"1600\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-15 16:50:55\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:56;a:12:{s:2:\"id\";s:3:\"119\";s:6:\"handle\";s:24:\"object_windturbine_2.png\";s:4:\"name\";s:14:\"Wind Turbine 2\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"18\";s:6:\"handle\";s:4:\"misc\";s:4:\"name\";s:4:\"Misc\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1600\";s:6:\"height\";s:4:\"1600\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-15 16:50:55\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:57;a:12:{s:2:\"id\";s:3:\"118\";s:6:\"handle\";s:22:\"object_windturbine.png\";s:4:\"name\";s:12:\"Wind Turbine\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"18\";s:6:\"handle\";s:4:\"misc\";s:4:\"name\";s:4:\"Misc\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1600\";s:6:\"height\";s:4:\"1600\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-15 16:50:55\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:58;a:12:{s:2:\"id\";s:3:\"117\";s:6:\"handle\";s:16:\"object_earth.png\";s:4:\"name\";s:18:\"Earth Globe Planet\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"18\";s:6:\"handle\";s:4:\"misc\";s:4:\"name\";s:4:\"Misc\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1500\";s:6:\"height\";s:4:\"1500\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-15 16:50:55\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:59;a:12:{s:2:\"id\";s:2:\"88\";s:6:\"handle\";s:24:\"object_eiffeltower_2.png\";s:4:\"name\";s:13:\"Eiffeltower 2\";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:2:\"18\";s:6:\"handle\";s:4:\"misc\";s:4:\"name\";s:4:\"Misc\";}i:1;a:3:{s:2:\"id\";s:1:\"1\";s:6:\"handle\";s:11:\"accessories\";s:4:\"name\";s:11:\"Accessories\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:3:\"700\";s:6:\"height\";s:3:\"700\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-12 16:51:11\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:60;a:12:{s:2:\"id\";s:2:\"87\";s:6:\"handle\";s:21:\"object_notebook_1.png\";s:4:\"name\";s:11:\"Notebook PC\";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:1:\"2\";s:6:\"handle\";s:6:\"device\";s:4:\"name\";s:6:\"Device\";}i:1;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"2000\";s:6:\"height\";s:4:\"2000\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-12 16:51:11\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:61;a:12:{s:2:\"id\";s:2:\"86\";s:6:\"handle\";s:20:\"object_macbook_1.png\";s:4:\"name\";s:20:\"Apple Macbook Silver\";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:1:\"2\";s:6:\"handle\";s:6:\"device\";s:4:\"name\";s:6:\"Device\";}i:1;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"2000\";s:6:\"height\";s:4:\"2000\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-12 16:51:11\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:62;a:12:{s:2:\"id\";s:2:\"85\";s:6:\"handle\";s:18:\"object_canon_2.png\";s:4:\"name\";s:21:\"Canon Camera DSLR Top\";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:1:\"5\";s:6:\"handle\";s:3:\"art\";s:4:\"name\";s:3:\"Art\";}i:1;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1500\";s:6:\"height\";s:4:\"1500\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-12 16:51:11\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:63;a:12:{s:2:\"id\";s:2:\"84\";s:6:\"handle\";s:19:\"object_iphone_3.png\";s:4:\"name\";s:25:\"Apple iPhone Silver White\";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:1:\"2\";s:6:\"handle\";s:6:\"device\";s:4:\"name\";s:6:\"Device\";}i:1;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1500\";s:6:\"height\";s:4:\"1500\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-12 16:51:11\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:64;a:12:{s:2:\"id\";s:2:\"83\";s:6:\"handle\";s:18:\"object_candy_2.png\";s:4:\"name\";s:15:\"Candy Colored 2\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"16\";s:6:\"handle\";s:4:\"food\";s:4:\"name\";s:4:\"Food\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:3:\"800\";s:6:\"height\";s:3:\"800\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-12 16:51:11\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:65;a:12:{s:2:\"id\";s:2:\"82\";s:6:\"handle\";s:21:\"object_macmouse_1.png\";s:4:\"name\";s:15:\"Apple Mac Mouse\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1000\";s:6:\"height\";s:4:\"1000\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-12 16:51:11\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:66;a:12:{s:2:\"id\";s:2:\"81\";s:6:\"handle\";s:19:\"object_iphone_1.png\";s:4:\"name\";s:18:\"Apple iPhone Black\";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:1:\"2\";s:6:\"handle\";s:6:\"device\";s:4:\"name\";s:6:\"Device\";}i:1;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1500\";s:6:\"height\";s:4:\"1500\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-12 16:51:11\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:67;a:12:{s:2:\"id\";s:2:\"80\";s:6:\"handle\";s:17:\"object_deco_1.png\";s:4:\"name\";s:17:\"White Deco Object\";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:2:\"18\";s:6:\"handle\";s:4:\"misc\";s:4:\"name\";s:4:\"Misc\";}i:1;a:3:{s:2:\"id\";s:1:\"1\";s:6:\"handle\";s:11:\"accessories\";s:4:\"name\";s:11:\"Accessories\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:3:\"800\";s:6:\"height\";s:3:\"800\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-12 16:51:11\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:68;a:12:{s:2:\"id\";s:2:\"79\";s:6:\"handle\";s:23:\"object_applewatch_1.png\";s:4:\"name\";s:24:\"Apple Watch White Silver\";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:1:\"2\";s:6:\"handle\";s:6:\"device\";s:4:\"name\";s:6:\"Device\";}i:1;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:3:\"800\";s:6:\"height\";s:3:\"800\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-12 16:51:11\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:69;a:12:{s:2:\"id\";s:2:\"78\";s:6:\"handle\";s:23:\"object_swissknife_1.png\";s:4:\"name\";s:11:\"Swiss Knife\";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:2:\"18\";s:6:\"handle\";s:4:\"misc\";s:4:\"name\";s:4:\"Misc\";}i:1;a:3:{s:2:\"id\";s:1:\"1\";s:6:\"handle\";s:11:\"accessories\";s:4:\"name\";s:11:\"Accessories\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:3:\"800\";s:6:\"height\";s:3:\"800\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-12 16:51:11\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:70;a:12:{s:2:\"id\";s:2:\"77\";s:6:\"handle\";s:23:\"object_applewatch_2.png\";s:4:\"name\";s:17:\"Apple Watch Black\";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:1:\"2\";s:6:\"handle\";s:6:\"device\";s:4:\"name\";s:6:\"Device\";}i:1;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:3:\"800\";s:6:\"height\";s:3:\"800\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-12 16:51:11\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:71;a:12:{s:2:\"id\";s:2:\"76\";s:6:\"handle\";s:18:\"object_candy_1.png\";s:4:\"name\";s:13:\"Candy Colored\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"16\";s:6:\"handle\";s:4:\"food\";s:4:\"name\";s:4:\"Food\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:3:\"800\";s:6:\"height\";s:3:\"800\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-12 16:51:11\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:72;a:12:{s:2:\"id\";s:2:\"75\";s:6:\"handle\";s:17:\"object_ipad_1.png\";s:4:\"name\";s:16:\"Apple iPad Black\";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:1:\"2\";s:6:\"handle\";s:6:\"device\";s:4:\"name\";s:6:\"Device\";}i:1;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"2000\";s:6:\"height\";s:4:\"2000\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-12 16:51:11\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:73;a:12:{s:2:\"id\";s:2:\"74\";s:6:\"handle\";s:17:\"object_lamp_2.png\";s:4:\"name\";s:15:\"Black Desk Lamp\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1600\";s:6:\"height\";s:4:\"1600\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-12 16:51:11\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:74;a:12:{s:2:\"id\";s:2:\"73\";s:6:\"handle\";s:18:\"object_canon_1.png\";s:4:\"name\";s:17:\"Canon Camera DLSR\";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:1:\"5\";s:6:\"handle\";s:3:\"art\";s:4:\"name\";s:3:\"Art\";}i:1;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1500\";s:6:\"height\";s:4:\"1500\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-12 16:51:11\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:75;a:12:{s:2:\"id\";s:2:\"72\";s:6:\"handle\";s:23:\"object_blackberry_2.png\";s:4:\"name\";s:12:\"Blackberry 3\";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:1:\"2\";s:6:\"handle\";s:6:\"device\";s:4:\"name\";s:6:\"Device\";}i:1;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1000\";s:6:\"height\";s:4:\"1000\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-12 16:51:11\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:76;a:12:{s:2:\"id\";s:2:\"71\";s:6:\"handle\";s:19:\"object_iphone_2.png\";s:4:\"name\";s:19:\"Apple iPhone Silver\";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:1:\"2\";s:6:\"handle\";s:6:\"device\";s:4:\"name\";s:6:\"Device\";}i:1;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1500\";s:6:\"height\";s:4:\"1500\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-12 16:51:11\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:77;a:12:{s:2:\"id\";s:2:\"70\";s:6:\"handle\";s:17:\"object_ipad_2.png\";s:4:\"name\";s:15:\"Apple iPad Gold\";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:1:\"2\";s:6:\"handle\";s:6:\"device\";s:4:\"name\";s:6:\"Device\";}i:1;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"2000\";s:6:\"height\";s:4:\"2000\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-12 16:51:11\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:78;a:12:{s:2:\"id\";s:2:\"69\";s:6:\"handle\";s:20:\"object_printer_1.png\";s:4:\"name\";s:7:\"Printer\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1600\";s:6:\"height\";s:4:\"1600\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-12 16:51:11\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:79;a:12:{s:2:\"id\";s:2:\"68\";s:6:\"handle\";s:20:\"object_pcmouse_1.png\";s:4:\"name\";s:14:\"Black PC Mouse\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1000\";s:6:\"height\";s:4:\"1000\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-12 16:51:11\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:80;a:12:{s:2:\"id\";s:2:\"67\";s:6:\"handle\";s:17:\"object_ipad_3.png\";s:4:\"name\";s:17:\"Apple iPad Silver\";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:1:\"2\";s:6:\"handle\";s:6:\"device\";s:4:\"name\";s:6:\"Device\";}i:1;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"2000\";s:6:\"height\";s:4:\"2000\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-12 16:51:11\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:81;a:12:{s:2:\"id\";s:2:\"66\";s:6:\"handle\";s:17:\"object_lamp_1.png\";s:4:\"name\";s:13:\"Desk Lamp Top\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1600\";s:6:\"height\";s:4:\"1600\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-12 16:51:11\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:82;a:12:{s:2:\"id\";s:2:\"65\";s:6:\"handle\";s:22:\"object_macscreen_1.png\";s:4:\"name\";s:16:\"Apple Mac Screen\";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:1:\"2\";s:6:\"handle\";s:6:\"device\";s:4:\"name\";s:6:\"Device\";}i:1;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"2000\";s:6:\"height\";s:4:\"2000\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-12 16:51:11\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:83;a:12:{s:2:\"id\";s:2:\"64\";s:6:\"handle\";s:23:\"object_blackberry_3.png\";s:4:\"name\";s:12:\"Blackberry 2\";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:1:\"2\";s:6:\"handle\";s:6:\"device\";s:4:\"name\";s:6:\"Device\";}i:1;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1000\";s:6:\"height\";s:4:\"1000\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-12 16:51:11\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:84;a:12:{s:2:\"id\";s:2:\"63\";s:6:\"handle\";s:23:\"object_applewatch_3.png\";s:4:\"name\";s:16:\"Apple Watch Gold\";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:1:\"2\";s:6:\"handle\";s:6:\"device\";s:4:\"name\";s:6:\"Device\";}i:1;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:3:\"800\";s:6:\"height\";s:3:\"800\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-12 16:51:11\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:85;a:12:{s:2:\"id\";s:2:\"62\";s:6:\"handle\";s:23:\"object_blackberry_1.png\";s:4:\"name\";s:10:\"Blackberry\";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:1:\"2\";s:6:\"handle\";s:6:\"device\";s:4:\"name\";s:6:\"Device\";}i:1;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1000\";s:6:\"height\";s:4:\"1000\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-12 16:51:11\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:86;a:12:{s:2:\"id\";s:2:\"49\";s:6:\"handle\";s:19:\"object_bottle_1.png\";s:4:\"name\";s:18:\"Brown Glass Bottle\";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:2:\"18\";s:6:\"handle\";s:4:\"misc\";s:4:\"name\";s:4:\"Misc\";}i:1;a:3:{s:2:\"id\";s:2:\"16\";s:6:\"handle\";s:4:\"food\";s:4:\"name\";s:4:\"Food\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1600\";s:6:\"height\";s:4:\"1600\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-12 12:57:32\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:87;a:12:{s:2:\"id\";s:2:\"48\";s:6:\"handle\";s:20:\"object_glasses_1.png\";s:4:\"name\";s:19:\"Hipster Glasses Top\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"1\";s:6:\"handle\";s:11:\"accessories\";s:4:\"name\";s:11:\"Accessories\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1000\";s:6:\"height\";s:4:\"1000\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-12 12:57:32\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:88;a:12:{s:2:\"id\";s:2:\"47\";s:6:\"handle\";s:21:\"object_magazine_1.png\";s:4:\"name\";s:14:\"Blank Magazine\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1600\";s:6:\"height\";s:4:\"1600\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-12 12:57:32\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:89;a:12:{s:2:\"id\";s:2:\"46\";s:6:\"handle\";s:28:\"object_leatherdocument_2.png\";s:4:\"name\";s:24:\"Black Leather Document 2\";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}i:1;a:3:{s:2:\"id\";s:1:\"1\";s:6:\"handle\";s:11:\"accessories\";s:4:\"name\";s:11:\"Accessories\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1600\";s:6:\"height\";s:4:\"1600\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-12 12:57:32\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:90;a:12:{s:2:\"id\";s:2:\"45\";s:6:\"handle\";s:18:\"object_purse_2.png\";s:4:\"name\";s:13:\"Black Purse 2\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"1\";s:6:\"handle\";s:11:\"accessories\";s:4:\"name\";s:11:\"Accessories\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1600\";s:6:\"height\";s:4:\"1600\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-12 12:57:32\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:91;a:12:{s:2:\"id\";s:2:\"44\";s:6:\"handle\";s:23:\"object_typewriter_1.png\";s:4:\"name\";s:18:\"Retro Typewriter 2\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1600\";s:6:\"height\";s:4:\"1600\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-12 12:57:32\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:92;a:12:{s:2:\"id\";s:2:\"43\";s:6:\"handle\";s:17:\"object_book_5.png\";s:4:\"name\";s:9:\"Old Books\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1600\";s:6:\"height\";s:4:\"1600\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-12 12:57:32\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:93;a:12:{s:2:\"id\";s:2:\"42\";s:6:\"handle\";s:28:\"object_leatherdocument_1.png\";s:4:\"name\";s:29:\"Black Leather Document Closed\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1600\";s:6:\"height\";s:4:\"1600\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-12 12:57:32\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:94;a:12:{s:2:\"id\";s:2:\"41\";s:6:\"handle\";s:17:\"object_book_4.png\";s:4:\"name\";s:8:\"Old Book\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1600\";s:6:\"height\";s:4:\"1600\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-12 12:57:32\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:95;a:12:{s:2:\"id\";s:2:\"40\";s:6:\"handle\";s:19:\"object_wallet_2.png\";s:4:\"name\";s:22:\"Black Leather Document\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"1\";s:6:\"handle\";s:11:\"accessories\";s:4:\"name\";s:11:\"Accessories\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1500\";s:6:\"height\";s:4:\"1500\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-12 12:57:32\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:96;a:12:{s:2:\"id\";s:2:\"39\";s:6:\"handle\";s:18:\"object_quill_2.png\";s:4:\"name\";s:15:\"Quill Feather 2\";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:1:\"5\";s:6:\"handle\";s:3:\"art\";s:4:\"name\";s:3:\"Art\";}i:1;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1600\";s:6:\"height\";s:4:\"1600\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-12 12:57:32\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:97;a:12:{s:2:\"id\";s:2:\"38\";s:6:\"handle\";s:24:\"object_eiffeltower_1.png\";s:4:\"name\";s:11:\"Eiffeltower\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"18\";s:6:\"handle\";s:4:\"misc\";s:4:\"name\";s:4:\"Misc\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1000\";s:6:\"height\";s:4:\"1000\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-12 12:57:32\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:98;a:12:{s:2:\"id\";s:2:\"37\";s:6:\"handle\";s:21:\"object_magazine_2.png\";s:4:\"name\";s:11:\"Open Book 3\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1600\";s:6:\"height\";s:4:\"1333\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-12 12:57:32\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:99;a:12:{s:2:\"id\";s:2:\"36\";s:6:\"handle\";s:17:\"object_book_1.png\";s:4:\"name\";s:10:\"Blank Book\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1600\";s:6:\"height\";s:4:\"1600\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-12 12:57:32\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:100;a:12:{s:2:\"id\";s:2:\"35\";s:6:\"handle\";s:20:\"object_glasses_2.png\";s:4:\"name\";s:15:\"Hipster Glasses\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"1\";s:6:\"handle\";s:11:\"accessories\";s:4:\"name\";s:11:\"Accessories\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1000\";s:6:\"height\";s:4:\"1000\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-12 12:57:32\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:101;a:12:{s:2:\"id\";s:2:\"34\";s:6:\"handle\";s:17:\"object_book_2.png\";s:4:\"name\";s:11:\"Open Book 2\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1600\";s:6:\"height\";s:4:\"1600\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-12 12:57:32\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:102;a:12:{s:2:\"id\";s:2:\"33\";s:6:\"handle\";s:19:\"object_gloves_1.png\";s:4:\"name\";s:12:\"Black Gloves\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"1\";s:6:\"handle\";s:11:\"accessories\";s:4:\"name\";s:11:\"Accessories\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1600\";s:6:\"height\";s:4:\"1600\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-12 12:57:32\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:103;a:12:{s:2:\"id\";s:2:\"32\";s:6:\"handle\";s:23:\"object_typewriter_2.png\";s:4:\"name\";s:16:\"Retro Typewriter\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1600\";s:6:\"height\";s:4:\"1600\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-12 12:57:32\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:104;a:12:{s:2:\"id\";s:2:\"31\";s:6:\"handle\";s:17:\"object_book_3.png\";s:4:\"name\";s:9:\"Open Book\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1600\";s:6:\"height\";s:4:\"1600\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-12 12:57:32\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:105;a:12:{s:2:\"id\";s:2:\"30\";s:6:\"handle\";s:19:\"object_wallet_1.png\";s:4:\"name\";s:12:\"Black Wallet\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"1\";s:6:\"handle\";s:11:\"accessories\";s:4:\"name\";s:11:\"Accessories\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1500\";s:6:\"height\";s:4:\"1500\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-12 12:57:32\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:106;a:12:{s:2:\"id\";s:2:\"29\";s:6:\"handle\";s:18:\"object_purse_1.png\";s:4:\"name\";s:11:\"Black Purse\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"1\";s:6:\"handle\";s:11:\"accessories\";s:4:\"name\";s:11:\"Accessories\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1600\";s:6:\"height\";s:4:\"1600\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-12 12:57:32\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:107;a:12:{s:2:\"id\";s:2:\"28\";s:6:\"handle\";s:18:\"object_quill_1.png\";s:4:\"name\";s:13:\"Quill Feather\";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:1:\"5\";s:6:\"handle\";s:3:\"art\";s:4:\"name\";s:3:\"Art\";}i:1;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1600\";s:6:\"height\";s:4:\"1600\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-12 12:57:32\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:108;a:12:{s:2:\"id\";s:2:\"27\";s:6:\"handle\";s:19:\"object_artbox_2.png\";s:4:\"name\";s:16:\"Art Box Colors 2\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"5\";s:6:\"handle\";s:3:\"art\";s:4:\"name\";s:3:\"Art\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1600\";s:6:\"height\";s:4:\"1600\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-12 10:59:23\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:109;a:12:{s:2:\"id\";s:2:\"26\";s:6:\"handle\";s:18:\"object_cloth_1.png\";s:4:\"name\";s:17:\"Cloth Paint Color\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"5\";s:6:\"handle\";s:3:\"art\";s:4:\"name\";s:3:\"Art\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1400\";s:6:\"height\";s:4:\"1400\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-12 10:59:23\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:110;a:12:{s:2:\"id\";s:2:\"25\";s:6:\"handle\";s:21:\"object_brushpot_1.png\";s:4:\"name\";s:9:\"Brush Pot\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"5\";s:6:\"handle\";s:3:\"art\";s:4:\"name\";s:3:\"Art\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:3:\"984\";s:6:\"height\";s:3:\"984\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-12 10:59:23\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:111;a:12:{s:2:\"id\";s:2:\"24\";s:6:\"handle\";s:24:\"object_paintbucket_1.png\";s:4:\"name\";s:12:\"Paint Bucket\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"5\";s:6:\"handle\";s:3:\"art\";s:4:\"name\";s:3:\"Art\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1400\";s:6:\"height\";s:4:\"1400\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-12 10:59:23\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:112;a:12:{s:2:\"id\";s:2:\"23\";s:6:\"handle\";s:23:\"object_paintbrush_2.png\";s:4:\"name\";s:12:\"Paintbrush 3\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"5\";s:6:\"handle\";s:3:\"art\";s:4:\"name\";s:3:\"Art\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:3:\"700\";s:6:\"height\";s:3:\"700\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-12 10:59:23\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:113;a:12:{s:2:\"id\";s:2:\"22\";s:6:\"handle\";s:19:\"object_artbox_1.png\";s:4:\"name\";s:14:\"Art Box Colors\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"5\";s:6:\"handle\";s:3:\"art\";s:4:\"name\";s:3:\"Art\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1600\";s:6:\"height\";s:4:\"1600\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-12 10:59:23\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:114;a:12:{s:2:\"id\";s:2:\"21\";s:6:\"handle\";s:23:\"object_paintbrush_3.png\";s:4:\"name\";s:12:\"Paintbrush 2\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"5\";s:6:\"handle\";s:3:\"art\";s:4:\"name\";s:3:\"Art\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1100\";s:6:\"height\";s:4:\"1100\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-12 10:59:23\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:115;a:12:{s:2:\"id\";s:2:\"20\";s:6:\"handle\";s:23:\"object_paintbrush_1.png\";s:4:\"name\";s:12:\"Paintbrush 1\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"5\";s:6:\"handle\";s:3:\"art\";s:4:\"name\";s:3:\"Art\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1000\";s:6:\"height\";s:4:\"1000\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-12 10:59:23\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:116;a:12:{s:2:\"id\";s:2:\"11\";s:6:\"handle\";s:21:\"table_radio_right.png\";s:4:\"name\";s:18:\"Radio Speaker Wood\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"4\";s:6:\"handle\";s:5:\"music\";s:4:\"name\";s:5:\"Music\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1600\";s:6:\"height\";s:4:\"1600\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-11 13:37:51\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:117;a:12:{s:2:\"id\";s:2:\"10\";s:6:\"handle\";s:18:\"keyboard_apple.png\";s:4:\"name\";s:14:\"Apple Keyboard\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1600\";s:6:\"height\";s:4:\"1600\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-11 13:37:51\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:118;a:12:{s:2:\"id\";s:1:\"9\";s:6:\"handle\";s:20:\"macbook_top_gold.png\";s:4:\"name\";s:18:\"Apple Macbook Gold\";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:1:\"2\";s:6:\"handle\";s:6:\"device\";s:4:\"name\";s:6:\"Device\";}i:1;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1600\";s:6:\"height\";s:4:\"1600\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-11 13:37:51\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:119;a:12:{s:2:\"id\";s:1:\"8\";s:6:\"handle\";s:21:\"nexus6_front_blue.png\";s:4:\"name\";s:19:\"Google Nexus 6 Blue\";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:1:\"2\";s:6:\"handle\";s:6:\"device\";s:4:\"name\";s:6:\"Device\";}i:1;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1100\";s:6:\"height\";s:4:\"1100\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-11 13:37:51\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:120;a:12:{s:2:\"id\";s:3:\"479\";s:6:\"handle\";s:31:\"Tram-beside-waiting-station.jpg\";s:4:\"name\";s:27:\"Tram beside waiting station\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"21\";s:6:\"handle\";s:4:\"City\";s:4:\"name\";s:4:\"City\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1450\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:52:06\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:121;a:12:{s:2:\"id\";s:3:\"478\";s:6:\"handle\";s:14:\"Pulling-up.jpg\";s:4:\"name\";s:10:\"Pulling up\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"27\";s:6:\"handle\";s:5:\"sport\";s:4:\"name\";s:5:\"Sport\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1297\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:41:20\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:122;a:12:{s:2:\"id\";s:3:\"477\";s:6:\"handle\";s:16:\"Snowboarding.jpg\";s:4:\"name\";s:12:\"Snowboarding\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"27\";s:6:\"handle\";s:5:\"sport\";s:4:\"name\";s:5:\"Sport\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1290\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:41:20\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:123;a:12:{s:2:\"id\";s:3:\"476\";s:6:\"handle\";s:16:\"Morning-yoga.jpg\";s:4:\"name\";s:12:\"Morning yoga\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"27\";s:6:\"handle\";s:5:\"sport\";s:4:\"name\";s:5:\"Sport\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1346\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:40:23\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:124;a:12:{s:2:\"id\";s:3:\"475\";s:6:\"handle\";s:8:\"Yoga.jpg\";s:4:\"name\";s:4:\"Yoga\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"27\";s:6:\"handle\";s:5:\"sport\";s:4:\"name\";s:5:\"Sport\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1079\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:40:23\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:125;a:12:{s:2:\"id\";s:3:\"474\";s:6:\"handle\";s:14:\"Golf-balls.jpg\";s:4:\"name\";s:10:\"Golf balls\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"27\";s:6:\"handle\";s:5:\"sport\";s:4:\"name\";s:5:\"Sport\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:40:23\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:126;a:12:{s:2:\"id\";s:3:\"473\";s:6:\"handle\";s:19:\"Confident-Boxer.jpg\";s:4:\"name\";s:15:\"Confident Boxer\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"27\";s:6:\"handle\";s:5:\"sport\";s:4:\"name\";s:5:\"Sport\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:40:23\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:127;a:12:{s:2:\"id\";s:3:\"472\";s:6:\"handle\";s:11:\"Aerobic.jpg\";s:4:\"name\";s:7:\"Aerobic\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"27\";s:6:\"handle\";s:5:\"sport\";s:4:\"name\";s:5:\"Sport\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:40:23\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:128;a:12:{s:2:\"id\";s:3:\"471\";s:6:\"handle\";s:18:\"Riding-bicycle.jpg\";s:4:\"name\";s:14:\"Riding bicycle\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"27\";s:6:\"handle\";s:5:\"sport\";s:4:\"name\";s:5:\"Sport\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1358\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:38:24\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:129;a:12:{s:2:\"id\";s:3:\"470\";s:6:\"handle\";s:27:\"woman-with-barbell-back.jpg\";s:4:\"name\";s:23:\"woman with barbell back\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"27\";s:6:\"handle\";s:5:\"sport\";s:4:\"name\";s:5:\"Sport\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:38:24\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:130;a:12:{s:2:\"id\";s:3:\"469\";s:6:\"handle\";s:24:\"Woman-lying-on-floor.jpg\";s:4:\"name\";s:20:\"Woman lying on floor\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"27\";s:6:\"handle\";s:5:\"sport\";s:4:\"name\";s:5:\"Sport\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1318\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:38:24\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:131;a:12:{s:2:\"id\";s:3:\"468\";s:6:\"handle\";s:27:\"Holding-black-dumbbells.jpg\";s:4:\"name\";s:23:\"Holding black dumbbells\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"27\";s:6:\"handle\";s:5:\"sport\";s:4:\"name\";s:5:\"Sport\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1275\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:38:24\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:132;a:12:{s:2:\"id\";s:3:\"467\";s:6:\"handle\";s:25:\"Woman-using-dumbbells.jpg\";s:4:\"name\";s:21:\"Woman using dumbbells\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"27\";s:6:\"handle\";s:5:\"sport\";s:4:\"name\";s:5:\"Sport\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1425\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:38:24\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:133;a:12:{s:2:\"id\";s:3:\"466\";s:6:\"handle\";s:16:\"Soccer-cleat.jpg\";s:4:\"name\";s:12:\"Soccer cleat\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"27\";s:6:\"handle\";s:5:\"sport\";s:4:\"name\";s:5:\"Sport\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:38:24\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:134;a:12:{s:2:\"id\";s:3:\"465\";s:6:\"handle\";s:16:\"Soccer-field.jpg\";s:4:\"name\";s:12:\"Soccer field\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"27\";s:6:\"handle\";s:5:\"sport\";s:4:\"name\";s:5:\"Sport\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1440\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:38:24\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:135;a:12:{s:2:\"id\";s:3:\"464\";s:6:\"handle\";s:23:\"Man-tying-his-shoes.jpg\";s:4:\"name\";s:19:\"Man tying his shoes\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"27\";s:6:\"handle\";s:5:\"sport\";s:4:\"name\";s:5:\"Sport\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1200\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:38:24\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:136;a:12:{s:2:\"id\";s:3:\"463\";s:6:\"handle\";s:10:\"Boxing.jpg\";s:4:\"name\";s:6:\"Boxing\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"27\";s:6:\"handle\";s:5:\"sport\";s:4:\"name\";s:5:\"Sport\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:38:24\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:137;a:12:{s:2:\"id\";s:3:\"462\";s:6:\"handle\";s:22:\"woman-with-barbell.jpg\";s:4:\"name\";s:18:\"woman with barbell\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"27\";s:6:\"handle\";s:5:\"sport\";s:4:\"name\";s:5:\"Sport\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:38:24\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:138;a:12:{s:2:\"id\";s:3:\"461\";s:6:\"handle\";s:12:\"Crossfit.jpg\";s:4:\"name\";s:8:\"Crossfit\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"27\";s:6:\"handle\";s:5:\"sport\";s:4:\"name\";s:5:\"Sport\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:38:24\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:139;a:12:{s:2:\"id\";s:3:\"460\";s:6:\"handle\";s:25:\"Man-and-woman-jogging.jpg\";s:4:\"name\";s:21:\"Man and woman jogging\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"27\";s:6:\"handle\";s:5:\"sport\";s:4:\"name\";s:5:\"Sport\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1440\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:38:24\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:140;a:12:{s:2:\"id\";s:3:\"459\";s:6:\"handle\";s:16:\"Playing-golf.jpg\";s:4:\"name\";s:12:\"Playing golf\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"27\";s:6:\"handle\";s:5:\"sport\";s:4:\"name\";s:5:\"Sport\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:38:24\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:141;a:12:{s:2:\"id\";s:3:\"458\";s:6:\"handle\";s:18:\"Surfer-in-wave.jpg\";s:4:\"name\";s:14:\"Surfer in wave\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"27\";s:6:\"handle\";s:5:\"sport\";s:4:\"name\";s:5:\"Sport\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:38:24\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:142;a:12:{s:2:\"id\";s:3:\"457\";s:6:\"handle\";s:25:\"Woman-lifting-barbell.jpg\";s:4:\"name\";s:21:\"Woman lifting barbell\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"27\";s:6:\"handle\";s:5:\"sport\";s:4:\"name\";s:5:\"Sport\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:38:24\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:143;a:12:{s:2:\"id\";s:3:\"456\";s:6:\"handle\";s:14:\"Stretching.jpg\";s:4:\"name\";s:10:\"Stretching\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"27\";s:6:\"handle\";s:5:\"sport\";s:4:\"name\";s:5:\"Sport\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1277\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:38:24\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:144;a:12:{s:2:\"id\";s:3:\"455\";s:6:\"handle\";s:18:\"Snowboarding-2.jpg\";s:4:\"name\";s:14:\"Snowboarding 2\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"27\";s:6:\"handle\";s:5:\"sport\";s:4:\"name\";s:5:\"Sport\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:38:24\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:145;a:12:{s:2:\"id\";s:3:\"454\";s:6:\"handle\";s:11:\"Balance.jpg\";s:4:\"name\";s:7:\"Balance\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"27\";s:6:\"handle\";s:5:\"sport\";s:4:\"name\";s:5:\"Sport\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1920\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:38:24\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:146;a:12:{s:2:\"id\";s:3:\"453\";s:6:\"handle\";s:19:\"Pool-meditation.jpg\";s:4:\"name\";s:15:\"Pool meditation\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"27\";s:6:\"handle\";s:5:\"sport\";s:4:\"name\";s:5:\"Sport\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:38:24\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:147;a:12:{s:2:\"id\";s:3:\"452\";s:6:\"handle\";s:18:\"Soccer-stadium.jpg\";s:4:\"name\";s:14:\"Soccer stadium\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"27\";s:6:\"handle\";s:5:\"sport\";s:4:\"name\";s:5:\"Sport\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:38:24\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:148;a:12:{s:2:\"id\";s:3:\"451\";s:6:\"handle\";s:25:\"Soccer-field-top-view.jpg\";s:4:\"name\";s:21:\"Soccer field top view\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"27\";s:6:\"handle\";s:5:\"sport\";s:4:\"name\";s:5:\"Sport\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1440\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:38:24\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:149;a:12:{s:2:\"id\";s:3:\"450\";s:6:\"handle\";s:14:\"Basketball.jpg\";s:4:\"name\";s:10:\"Basketball\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"27\";s:6:\"handle\";s:5:\"sport\";s:4:\"name\";s:5:\"Sport\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:38:24\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:150;a:12:{s:2:\"id\";s:3:\"449\";s:6:\"handle\";s:14:\"in-the-fog.jpg\";s:4:\"name\";s:10:\"in the fog\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"27\";s:6:\"handle\";s:5:\"sport\";s:4:\"name\";s:5:\"Sport\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:38:24\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:151;a:12:{s:2:\"id\";s:3:\"448\";s:6:\"handle\";s:13:\"Handstand.jpg\";s:4:\"name\";s:9:\"Handstand\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"27\";s:6:\"handle\";s:5:\"sport\";s:4:\"name\";s:5:\"Sport\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1079\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:38:24\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:152;a:12:{s:2:\"id\";s:3:\"447\";s:6:\"handle\";s:11:\"Friends.jpg\";s:4:\"name\";s:7:\"Friends\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"24\";s:6:\"handle\";s:6:\"People\";s:4:\"name\";s:6:\"People\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1282\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:36:58\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:153;a:12:{s:2:\"id\";s:3:\"446\";s:6:\"handle\";s:28:\"Sneakers-on-the-railroad.jpg\";s:4:\"name\";s:24:\"Sneakers on the railroad\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"24\";s:6:\"handle\";s:6:\"People\";s:4:\"name\";s:6:\"People\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:36:58\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:154;a:12:{s:2:\"id\";s:3:\"445\";s:6:\"handle\";s:23:\"Family-on-the-ocean.jpg\";s:4:\"name\";s:19:\"Family on the ocean\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"24\";s:6:\"handle\";s:6:\"People\";s:4:\"name\";s:6:\"People\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:36:58\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:155;a:12:{s:2:\"id\";s:3:\"444\";s:6:\"handle\";s:10:\"Sunset.jpg\";s:4:\"name\";s:6:\"Sunset\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"24\";s:6:\"handle\";s:6:\"People\";s:4:\"name\";s:6:\"People\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:36:58\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:156;a:12:{s:2:\"id\";s:3:\"443\";s:6:\"handle\";s:9:\"Books.jpg\";s:4:\"name\";s:5:\"Books\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"24\";s:6:\"handle\";s:6:\"People\";s:4:\"name\";s:6:\"People\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1275\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:36:58\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:157;a:12:{s:2:\"id\";s:3:\"442\";s:6:\"handle\";s:25:\"Looking-at-the-window.jpg\";s:4:\"name\";s:21:\"Looking at the window\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"24\";s:6:\"handle\";s:6:\"People\";s:4:\"name\";s:6:\"People\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:36:58\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:158;a:12:{s:2:\"id\";s:3:\"441\";s:6:\"handle\";s:48:\"woman-standing-near-buildings-during-daytime.jpg\";s:4:\"name\";s:44:\"woman standing near buildings during daytime\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"24\";s:6:\"handle\";s:6:\"People\";s:4:\"name\";s:6:\"People\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1278\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:36:58\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:159;a:12:{s:2:\"id\";s:3:\"440\";s:6:\"handle\";s:12:\"Lollipop.jpg\";s:4:\"name\";s:8:\"Lollipop\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"24\";s:6:\"handle\";s:6:\"People\";s:4:\"name\";s:6:\"People\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1395\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:36:58\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:160;a:12:{s:2:\"id\";s:3:\"439\";s:6:\"handle\";s:26:\"People-crossing-street.jpg\";s:4:\"name\";s:22:\"People crossing street\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"24\";s:6:\"handle\";s:6:\"People\";s:4:\"name\";s:6:\"People\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1278\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:36:58\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:161;a:12:{s:2:\"id\";s:3:\"438\";s:6:\"handle\";s:24:\"Friends-on-the-shore.jpg\";s:4:\"name\";s:20:\"Friends on the shore\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"24\";s:6:\"handle\";s:6:\"People\";s:4:\"name\";s:6:\"People\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:36:58\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:162;a:12:{s:2:\"id\";s:3:\"437\";s:6:\"handle\";s:13:\"Coworkers.jpg\";s:4:\"name\";s:9:\"Coworkers\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"24\";s:6:\"handle\";s:6:\"People\";s:4:\"name\";s:6:\"People\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:36:58\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:163;a:12:{s:2:\"id\";s:3:\"436\";s:6:\"handle\";s:27:\"Hiking-in-the-Dolomites.jpg\";s:4:\"name\";s:23:\"Hiking in the Dolomites\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"24\";s:6:\"handle\";s:6:\"People\";s:4:\"name\";s:6:\"People\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:36:58\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:164;a:12:{s:2:\"id\";s:3:\"435\";s:6:\"handle\";s:18:\"Successful-man.jpg\";s:4:\"name\";s:14:\"Successful man\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"24\";s:6:\"handle\";s:6:\"People\";s:4:\"name\";s:6:\"People\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:36:58\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:165;a:12:{s:2:\"id\";s:3:\"434\";s:6:\"handle\";s:23:\"Beautiful-sunny-day.jpg\";s:4:\"name\";s:19:\"Beautiful sunny day\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"24\";s:6:\"handle\";s:6:\"People\";s:4:\"name\";s:6:\"People\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:36:58\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:166;a:12:{s:2:\"id\";s:3:\"433\";s:6:\"handle\";s:8:\"Guys.jpg\";s:4:\"name\";s:4:\"Guys\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"24\";s:6:\"handle\";s:6:\"People\";s:4:\"name\";s:6:\"People\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:36:58\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:167;a:12:{s:2:\"id\";s:3:\"432\";s:6:\"handle\";s:19:\"Confetti-Shower.jpg\";s:4:\"name\";s:15:\"Confetti Shower\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"24\";s:6:\"handle\";s:6:\"People\";s:4:\"name\";s:6:\"People\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:36:58\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:168;a:12:{s:2:\"id\";s:3:\"431\";s:6:\"handle\";s:24:\"Sun-was-setting-down.jpg\";s:4:\"name\";s:20:\"Sun was setting down\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"24\";s:6:\"handle\";s:6:\"People\";s:4:\"name\";s:6:\"People\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:36:58\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:169;a:12:{s:2:\"id\";s:3:\"430\";s:6:\"handle\";s:9:\"Jumps.jpg\";s:4:\"name\";s:5:\"Jumps\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"24\";s:6:\"handle\";s:6:\"People\";s:4:\"name\";s:6:\"People\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:36:58\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:170;a:12:{s:2:\"id\";s:3:\"429\";s:6:\"handle\";s:23:\"Friends-by-the-fire.jpg\";s:4:\"name\";s:19:\"Friends by the fire\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"24\";s:6:\"handle\";s:6:\"People\";s:4:\"name\";s:6:\"People\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:36:58\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:171;a:12:{s:2:\"id\";s:3:\"428\";s:6:\"handle\";s:21:\"Under-the-blanket.jpg\";s:4:\"name\";s:17:\"Under the blanket\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"24\";s:6:\"handle\";s:6:\"People\";s:4:\"name\";s:6:\"People\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1413\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:36:58\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:172;a:12:{s:2:\"id\";s:3:\"427\";s:6:\"handle\";s:18:\"Pretty-in-Pink.jpg\";s:4:\"name\";s:14:\"Pretty in Pink\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"24\";s:6:\"handle\";s:6:\"People\";s:4:\"name\";s:6:\"People\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1394\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:36:58\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:173;a:12:{s:2:\"id\";s:3:\"426\";s:6:\"handle\";s:31:\"Discussions-at-a-long-table.jpg\";s:4:\"name\";s:27:\"Discussions at a long table\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"24\";s:6:\"handle\";s:6:\"People\";s:4:\"name\";s:6:\"People\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1268\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:36:58\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:174;a:12:{s:2:\"id\";s:3:\"425\";s:6:\"handle\";s:18:\"Lost-in-Lemons.jpg\";s:4:\"name\";s:14:\"Lost in Lemons\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"24\";s:6:\"handle\";s:6:\"People\";s:4:\"name\";s:6:\"People\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:36:58\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:175;a:12:{s:2:\"id\";s:3:\"424\";s:6:\"handle\";s:13:\"Team-work.jpg\";s:4:\"name\";s:9:\"Team work\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"24\";s:6:\"handle\";s:6:\"People\";s:4:\"name\";s:6:\"People\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1281\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:36:58\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:176;a:12:{s:2:\"id\";s:3:\"423\";s:6:\"handle\";s:20:\"Romantic-evening.jpg\";s:4:\"name\";s:16:\"Romantic evening\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"24\";s:6:\"handle\";s:6:\"People\";s:4:\"name\";s:6:\"People\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1263\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:36:58\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:177;a:12:{s:2:\"id\";s:3:\"422\";s:6:\"handle\";s:19:\"Crew-collective.jpg\";s:4:\"name\";s:15:\"Crew collective\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1278\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:33:11\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:178;a:12:{s:2:\"id\";s:3:\"421\";s:6:\"handle\";s:8:\"Code.jpg\";s:4:\"name\";s:4:\"Code\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:33:11\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:179;a:12:{s:2:\"id\";s:3:\"420\";s:6:\"handle\";s:48:\"Yellow-ceramic-mug-beside-gray-aluminum-iMac.jpg\";s:4:\"name\";s:44:\"Yellow ceramic mug beside gray aluminum iMac\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:33:11\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:180;a:12:{s:2:\"id\";s:3:\"419\";s:6:\"handle\";s:11:\"My-desk.jpg\";s:4:\"name\";s:7:\"My desk\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1315\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:33:11\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:181;a:12:{s:2:\"id\";s:3:\"418\";s:6:\"handle\";s:17:\"Cooperation-2.jpg\";s:4:\"name\";s:13:\"Cooperation 2\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:33:11\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:182;a:12:{s:2:\"id\";s:3:\"417\";s:6:\"handle\";s:33:\"MacBook-on-top-of-brown-table.jpg\";s:4:\"name\";s:29:\"MacBook on top of brown table\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:33:11\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:183;a:12:{s:2:\"id\";s:3:\"416\";s:6:\"handle\";s:27:\"Beautiful-working-place.jpg\";s:4:\"name\";s:23:\"Beautiful working place\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:33:11\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:184;a:12:{s:2:\"id\";s:3:\"415\";s:6:\"handle\";s:14:\"Typewriter.jpg\";s:4:\"name\";s:10:\"Typewriter\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:33:11\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:185;a:12:{s:2:\"id\";s:3:\"414\";s:6:\"handle\";s:19:\"White-desk-lamp.jpg\";s:4:\"name\";s:15:\"White desk lamp\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1282\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:33:11\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:186;a:12:{s:2:\"id\";s:3:\"413\";s:6:\"handle\";s:18:\"Office-working.jpg\";s:4:\"name\";s:14:\"Office working\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:33:11\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:187;a:12:{s:2:\"id\";s:3:\"412\";s:6:\"handle\";s:36:\"Silver-iMac-on-brown-wooden-desk.jpg\";s:4:\"name\";s:32:\"Silver iMac on brown wooden desk\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1240\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:33:11\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:188;a:12:{s:2:\"id\";s:3:\"411\";s:6:\"handle\";s:23:\"Working-in-progress.jpg\";s:4:\"name\";s:19:\"Working in progress\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:33:11\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:189;a:12:{s:2:\"id\";s:3:\"410\";s:6:\"handle\";s:15:\"Cooperation.jpg\";s:4:\"name\";s:11:\"Cooperation\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:33:11\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:190;a:12:{s:2:\"id\";s:3:\"409\";s:6:\"handle\";s:17:\"Working-place.jpg\";s:4:\"name\";s:13:\"Working place\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1281\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:33:11\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:191;a:12:{s:2:\"id\";s:3:\"408\";s:6:\"handle\";s:16:\"Working-desk.jpg\";s:4:\"name\";s:12:\"Working desk\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:33:11\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:192;a:12:{s:2:\"id\";s:3:\"407\";s:6:\"handle\";s:23:\"low-angle-of-forest.jpg\";s:4:\"name\";s:19:\"low angle of forest\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"19\";s:6:\"handle\";s:6:\"nature\";s:4:\"name\";s:6:\"Nature\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:31:55\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:193;a:12:{s:2:\"id\";s:3:\"406\";s:6:\"handle\";s:23:\"Lake-under-blue-sky.jpg\";s:4:\"name\";s:19:\"Lake under blue sky\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"19\";s:6:\"handle\";s:6:\"nature\";s:4:\"name\";s:6:\"Nature\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1351\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:31:55\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:194;a:12:{s:2:\"id\";s:3:\"405\";s:6:\"handle\";s:21:\"Blue-starry-night.jpg\";s:4:\"name\";s:17:\"Blue starry night\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"19\";s:6:\"handle\";s:6:\"nature\";s:4:\"name\";s:6:\"Nature\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:31:55\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:195;a:12:{s:2:\"id\";s:3:\"404\";s:6:\"handle\";s:22:\"Aerial-photography.jpg\";s:4:\"name\";s:18:\"Aerial photography\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"19\";s:6:\"handle\";s:6:\"nature\";s:4:\"name\";s:6:\"Nature\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1440\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:31:55\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:196;a:12:{s:2:\"id\";s:3:\"403\";s:6:\"handle\";s:14:\"Red-clouds.jpg\";s:4:\"name\";s:10:\"Red clouds\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"19\";s:6:\"handle\";s:6:\"nature\";s:4:\"name\";s:6:\"Nature\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:31:55\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:197;a:12:{s:2:\"id\";s:3:\"402\";s:6:\"handle\";s:14:\"Snow-field.jpg\";s:4:\"name\";s:10:\"Snow field\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"19\";s:6:\"handle\";s:6:\"nature\";s:4:\"name\";s:6:\"Nature\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1227\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:31:55\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:198;a:12:{s:2:\"id\";s:3:\"401\";s:6:\"handle\";s:13:\"White-sky.jpg\";s:4:\"name\";s:9:\"White sky\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"19\";s:6:\"handle\";s:6:\"nature\";s:4:\"name\";s:6:\"Nature\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1281\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:31:55\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:199;a:12:{s:2:\"id\";s:3:\"400\";s:6:\"handle\";s:24:\"Trees-covered-by-fog.jpg\";s:4:\"name\";s:20:\"Trees covered by fog\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"19\";s:6:\"handle\";s:6:\"nature\";s:4:\"name\";s:6:\"Nature\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1277\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:31:55\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:200;a:12:{s:2:\"id\";s:3:\"399\";s:6:\"handle\";s:26:\"Red-and-white-mushroom.jpg\";s:4:\"name\";s:22:\"Red and white mushroom\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"19\";s:6:\"handle\";s:6:\"nature\";s:4:\"name\";s:6:\"Nature\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:31:55\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:201;a:12:{s:2:\"id\";s:3:\"398\";s:6:\"handle\";s:24:\"Lake-near-pine-trees.jpg\";s:4:\"name\";s:20:\"Lake near pine trees\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"19\";s:6:\"handle\";s:6:\"nature\";s:4:\"name\";s:6:\"Nature\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:31:55\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:202;a:12:{s:2:\"id\";s:3:\"397\";s:6:\"handle\";s:35:\"After-a-long-day-of-backpacking.jpg\";s:4:\"name\";s:31:\"After a long day of backpacking\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"19\";s:6:\"handle\";s:6:\"nature\";s:4:\"name\";s:6:\"Nature\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:31:55\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:203;a:12:{s:2:\"id\";s:3:\"396\";s:6:\"handle\";s:32:\"Mountains-during-golden-hour.jpg\";s:4:\"name\";s:28:\"Mountains during golden hour\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"19\";s:6:\"handle\";s:6:\"nature\";s:4:\"name\";s:6:\"Nature\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:31:55\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:204;a:12:{s:2:\"id\";s:3:\"395\";s:6:\"handle\";s:27:\"Man-looking-on-mountain.jpg\";s:4:\"name\";s:23:\"Man looking on mountain\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"19\";s:6:\"handle\";s:6:\"nature\";s:4:\"name\";s:6:\"Nature\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:31:55\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:205;a:12:{s:2:\"id\";s:3:\"394\";s:6:\"handle\";s:19:\"Body-of-water-2.jpg\";s:4:\"name\";s:15:\"Body of water 2\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"19\";s:6:\"handle\";s:6:\"nature\";s:4:\"name\";s:6:\"Nature\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:31:55\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:206;a:12:{s:2:\"id\";s:3:\"393\";s:6:\"handle\";s:15:\"Brown-cliff.jpg\";s:4:\"name\";s:11:\"Brown cliff\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"19\";s:6:\"handle\";s:6:\"nature\";s:4:\"name\";s:6:\"Nature\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1440\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:31:55\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:207;a:12:{s:2:\"id\";s:3:\"392\";s:6:\"handle\";s:20:\"Green-foggy-tree.jpg\";s:4:\"name\";s:16:\"Green foggy tree\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"19\";s:6:\"handle\";s:6:\"nature\";s:4:\"name\";s:6:\"Nature\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1417\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:31:55\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:208;a:12:{s:2:\"id\";s:3:\"391\";s:6:\"handle\";s:32:\"Grayscale-photo-of-mountains.jpg\";s:4:\"name\";s:28:\"Grayscale photo of mountains\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"19\";s:6:\"handle\";s:6:\"nature\";s:4:\"name\";s:6:\"Nature\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:31:55\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:209;a:12:{s:2:\"id\";s:3:\"390\";s:6:\"handle\";s:19:\"Under-sunny-sky.jpg\";s:4:\"name\";s:15:\"Under sunny sky\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"19\";s:6:\"handle\";s:6:\"nature\";s:4:\"name\";s:6:\"Nature\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:31:55\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:210;a:12:{s:2:\"id\";s:3:\"389\";s:6:\"handle\";s:16:\"Rock-concert.jpg\";s:4:\"name\";s:12:\"Rock concert\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"4\";s:6:\"handle\";s:5:\"music\";s:4:\"name\";s:5:\"Music\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1443\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:25:26\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:211;a:12:{s:2:\"id\";s:3:\"388\";s:6:\"handle\";s:30:\"Group-of-people-in-concert.jpg\";s:4:\"name\";s:26:\"Group of people in concert\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"4\";s:6:\"handle\";s:5:\"music\";s:4:\"name\";s:5:\"Music\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:25:26\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:212;a:12:{s:2:\"id\";s:3:\"387\";s:6:\"handle\";s:6:\"DJ.jpg\";s:4:\"name\";s:2:\"DJ\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"4\";s:6:\"handle\";s:5:\"music\";s:4:\"name\";s:5:\"Music\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1282\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:25:26\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:213;a:12:{s:2:\"id\";s:3:\"386\";s:6:\"handle\";s:56:\"Woman-standing-watching-LED-light-musical-instrument.jpg\";s:4:\"name\";s:52:\"Woman standing watching LED light musical instrument\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"4\";s:6:\"handle\";s:5:\"music\";s:4:\"name\";s:5:\"Music\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:25:26\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:214;a:12:{s:2:\"id\";s:3:\"385\";s:6:\"handle\";s:16:\"Concert-hall.jpg\";s:4:\"name\";s:12:\"Concert hall\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"4\";s:6:\"handle\";s:5:\"music\";s:4:\"name\";s:5:\"Music\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1282\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:25:26\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:215;a:12:{s:2:\"id\";s:3:\"384\";s:6:\"handle\";s:18:\"Concert-hall-2.jpg\";s:4:\"name\";s:14:\"Concert hall 2\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"4\";s:6:\"handle\";s:5:\"music\";s:4:\"name\";s:5:\"Music\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1282\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:25:26\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:216;a:12:{s:2:\"id\";s:3:\"383\";s:6:\"handle\";s:29:\"man-playing-upright-piano.jpg\";s:4:\"name\";s:25:\"man playing upright piano\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"4\";s:6:\"handle\";s:5:\"music\";s:4:\"name\";s:5:\"Music\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1340\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:25:26\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:217;a:12:{s:2:\"id\";s:3:\"382\";s:6:\"handle\";s:30:\"person-performing-on-stage.jpg\";s:4:\"name\";s:26:\"person performing on stage\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"4\";s:6:\"handle\";s:5:\"music\";s:4:\"name\";s:5:\"Music\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:25:26\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:218;a:12:{s:2:\"id\";s:3:\"381\";s:6:\"handle\";s:27:\"Brown-string-instrument.jpg\";s:4:\"name\";s:23:\"Brown string instrument\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"4\";s:6:\"handle\";s:5:\"music\";s:4:\"name\";s:5:\"Music\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1272\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:25:26\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:219;a:12:{s:2:\"id\";s:3:\"380\";s:6:\"handle\";s:36:\"silhouette-of-person-with-guitar.jpg\";s:4:\"name\";s:32:\"silhouette of person with guitar\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"4\";s:6:\"handle\";s:5:\"music\";s:4:\"name\";s:5:\"Music\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:25:26\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:220;a:12:{s:2:\"id\";s:3:\"379\";s:6:\"handle\";s:14:\"Party-fans.jpg\";s:4:\"name\";s:10:\"Party fans\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"4\";s:6:\"handle\";s:5:\"music\";s:4:\"name\";s:5:\"Music\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:25:26\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:221;a:12:{s:2:\"id\";s:3:\"378\";s:6:\"handle\";s:24:\"Condenser-microphone.jpg\";s:4:\"name\";s:20:\"Condenser microphone\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"4\";s:6:\"handle\";s:5:\"music\";s:4:\"name\";s:5:\"Music\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1440\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:25:26\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:222;a:12:{s:2:\"id\";s:3:\"377\";s:6:\"handle\";s:42:\"Low-angle-photo-of-high-rise-buildings.jpg\";s:4:\"name\";s:38:\"Low angle photo of high rise buildings\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"21\";s:6:\"handle\";s:4:\"City\";s:4:\"name\";s:4:\"City\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:24:11\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:223;a:12:{s:2:\"id\";s:3:\"376\";s:6:\"handle\";s:23:\"High-rise-buildings.jpg\";s:4:\"name\";s:19:\"High rise buildings\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"21\";s:6:\"handle\";s:4:\"City\";s:4:\"name\";s:4:\"City\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:24:11\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:224;a:12:{s:2:\"id\";s:3:\"375\";s:6:\"handle\";s:16:\"Cable-bridge.jpg\";s:4:\"name\";s:12:\"Cable bridge\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"21\";s:6:\"handle\";s:4:\"City\";s:4:\"name\";s:4:\"City\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1272\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:24:11\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:225;a:12:{s:2:\"id\";s:3:\"374\";s:6:\"handle\";s:35:\"Bokeh-effect-from-street-lights.jpg\";s:4:\"name\";s:31:\"Bokeh effect from street lights\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"21\";s:6:\"handle\";s:4:\"City\";s:4:\"name\";s:4:\"City\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:24:11\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:226;a:12:{s:2:\"id\";s:3:\"373\";s:6:\"handle\";s:18:\"Low-angle-view.jpg\";s:4:\"name\";s:14:\"Low angle view\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"21\";s:6:\"handle\";s:4:\"City\";s:4:\"name\";s:4:\"City\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:24:11\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:227;a:12:{s:2:\"id\";s:3:\"372\";s:6:\"handle\";s:21:\"Double-decker-bus.jpg\";s:4:\"name\";s:17:\"Double decker bus\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"21\";s:6:\"handle\";s:4:\"City\";s:4:\"name\";s:4:\"City\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1373\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:24:11\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:228;a:12:{s:2:\"id\";s:3:\"371\";s:6:\"handle\";s:32:\"Buildings-near-body-of-water.jpg\";s:4:\"name\";s:28:\"Buildings near body of water\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"21\";s:6:\"handle\";s:4:\"City\";s:4:\"name\";s:4:\"City\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1370\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:24:11\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:229;a:12:{s:2:\"id\";s:3:\"370\";s:6:\"handle\";s:18:\"Satellite-view.jpg\";s:4:\"name\";s:14:\"Satellite view\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"21\";s:6:\"handle\";s:4:\"City\";s:4:\"name\";s:4:\"City\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1278\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:24:11\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:230;a:12:{s:2:\"id\";s:3:\"369\";s:6:\"handle\";s:14:\"Twin-Tower.jpg\";s:4:\"name\";s:10:\"Twin Tower\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"21\";s:6:\"handle\";s:4:\"City\";s:4:\"name\";s:4:\"City\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1440\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:24:11\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:231;a:12:{s:2:\"id\";s:3:\"368\";s:6:\"handle\";s:22:\"Two-person-walking.jpg\";s:4:\"name\";s:18:\"Two person walking\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"21\";s:6:\"handle\";s:4:\"City\";s:4:\"name\";s:4:\"City\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1345\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:24:11\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:232;a:12:{s:2:\"id\";s:3:\"367\";s:6:\"handle\";s:15:\"Sears-Tower.jpg\";s:4:\"name\";s:11:\"Sears Tower\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"21\";s:6:\"handle\";s:4:\"City\";s:4:\"name\";s:4:\"City\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:24:11\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:233;a:12:{s:2:\"id\";s:3:\"366\";s:6:\"handle\";s:19:\"Night-cityscape.jpg\";s:4:\"name\";s:15:\"Night cityscape\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"21\";s:6:\"handle\";s:4:\"City\";s:4:\"name\";s:4:\"City\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:24:11\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:234;a:12:{s:2:\"id\";s:3:\"365\";s:6:\"handle\";s:25:\"Empire-State-Building.jpg\";s:4:\"name\";s:21:\"Empire State Building\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"21\";s:6:\"handle\";s:4:\"City\";s:4:\"name\";s:4:\"City\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:24:11\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:235;a:12:{s:2:\"id\";s:3:\"364\";s:6:\"handle\";s:9:\"Paris.jpg\";s:4:\"name\";s:5:\"Paris\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"21\";s:6:\"handle\";s:4:\"City\";s:4:\"name\";s:4:\"City\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:24:11\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:236;a:12:{s:2:\"id\";s:3:\"363\";s:6:\"handle\";s:31:\"Building-during-golden-hour.jpg\";s:4:\"name\";s:27:\"Building during golden hour\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"21\";s:6:\"handle\";s:4:\"City\";s:4:\"name\";s:4:\"City\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1288\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:24:11\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:237;a:12:{s:2:\"id\";s:3:\"362\";s:6:\"handle\";s:21:\"Afternoon-skyline.jpg\";s:4:\"name\";s:17:\"Afternoon skyline\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"21\";s:6:\"handle\";s:4:\"City\";s:4:\"name\";s:4:\"City\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:24:11\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:238;a:12:{s:2:\"id\";s:3:\"361\";s:6:\"handle\";s:22:\"Concrete-buildings.jpg\";s:4:\"name\";s:18:\"Concrete buildings\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"21\";s:6:\"handle\";s:4:\"City\";s:4:\"name\";s:4:\"City\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1440\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:24:11\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:239;a:12:{s:2:\"id\";s:3:\"360\";s:6:\"handle\";s:26:\"Architectural-building.jpg\";s:4:\"name\";s:22:\"Architectural building\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"21\";s:6:\"handle\";s:4:\"City\";s:4:\"name\";s:4:\"City\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1382\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:24:11\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:240;a:12:{s:2:\"id\";s:3:\"359\";s:6:\"handle\";s:23:\"Skyline-photography.jpg\";s:4:\"name\";s:19:\"Skyline photography\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"21\";s:6:\"handle\";s:4:\"City\";s:4:\"name\";s:4:\"City\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:24:11\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:241;a:12:{s:2:\"id\";s:3:\"358\";s:6:\"handle\";s:38:\"People-standing-on-pedestrian-lane.jpg\";s:4:\"name\";s:34:\"People standing on pedestrian lane\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"21\";s:6:\"handle\";s:4:\"City\";s:4:\"name\";s:4:\"City\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1154\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:24:11\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:242;a:12:{s:2:\"id\";s:3:\"357\";s:6:\"handle\";s:16:\"Burj-Khalifa.jpg\";s:4:\"name\";s:12:\"Burj Khalifa\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"21\";s:6:\"handle\";s:4:\"City\";s:4:\"name\";s:4:\"City\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:24:11\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:243;a:12:{s:2:\"id\";s:3:\"356\";s:6:\"handle\";s:13:\"Skycraper.jpg\";s:4:\"name\";s:9:\"Skycraper\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"21\";s:6:\"handle\";s:4:\"City\";s:4:\"name\";s:4:\"City\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1281\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:24:11\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:244;a:12:{s:2:\"id\";s:3:\"355\";s:6:\"handle\";s:14:\"Gray-tower.jpg\";s:4:\"name\";s:10:\"Gray tower\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"21\";s:6:\"handle\";s:4:\"City\";s:4:\"name\";s:4:\"City\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1433\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:24:11\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:245;a:12:{s:2:\"id\";s:3:\"354\";s:6:\"handle\";s:28:\"One-fine-day-in-Maldives.jpg\";s:4:\"name\";s:24:\"One fine day in Maldives\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"20\";s:6:\"handle\";s:5:\"Beach\";s:4:\"name\";s:5:\"Beach\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1116\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-15 14:18:38\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:246;a:12:{s:2:\"id\";s:3:\"353\";s:6:\"handle\";s:25:\"Boat-on-body-of-water.jpg\";s:4:\"name\";s:21:\"Boat on body of water\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"20\";s:6:\"handle\";s:5:\"Beach\";s:4:\"name\";s:5:\"Beach\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-15 14:18:38\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:247;a:12:{s:2:\"id\";s:3:\"352\";s:6:\"handle\";s:33:\"Aerial-photo-of-body-of-water.jpg\";s:4:\"name\";s:29:\"Aerial photo of body of water\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"20\";s:6:\"handle\";s:5:\"Beach\";s:4:\"name\";s:5:\"Beach\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1078\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-15 14:18:38\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:248;a:12:{s:2:\"id\";s:3:\"351\";s:6:\"handle\";s:31:\"Assorted-color-beach-houses.jpg\";s:4:\"name\";s:27:\"Assorted color beach houses\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"20\";s:6:\"handle\";s:5:\"Beach\";s:4:\"name\";s:5:\"Beach\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1135\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-15 14:18:38\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:249;a:12:{s:2:\"id\";s:3:\"350\";s:6:\"handle\";s:36:\"Woman-leaning-on-tree-near-beach.jpg\";s:4:\"name\";s:32:\"Woman leaning on tree near beach\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"20\";s:6:\"handle\";s:5:\"Beach\";s:4:\"name\";s:5:\"Beach\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1559\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-15 14:18:38\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:250;a:12:{s:2:\"id\";s:3:\"349\";s:6:\"handle\";s:17:\"Body-of-water.jpg\";s:4:\"name\";s:13:\"Body of water\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"20\";s:6:\"handle\";s:5:\"Beach\";s:4:\"name\";s:5:\"Beach\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1269\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-15 14:18:38\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:251;a:12:{s:2:\"id\";s:3:\"348\";s:6:\"handle\";s:17:\"People-on-sea.jpg\";s:4:\"name\";s:13:\"People on sea\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"20\";s:6:\"handle\";s:5:\"Beach\";s:4:\"name\";s:5:\"Beach\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1278\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-15 14:18:38\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:252;a:12:{s:2:\"id\";s:3:\"347\";s:6:\"handle\";s:31:\"Man-sitting-beside-of-woman.jpg\";s:4:\"name\";s:27:\"Man sitting beside of woman\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"20\";s:6:\"handle\";s:5:\"Beach\";s:4:\"name\";s:5:\"Beach\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1277\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-15 14:18:38\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:253;a:12:{s:2:\"id\";s:3:\"346\";s:6:\"handle\";s:22:\"woman-in-the-water.jpg\";s:4:\"name\";s:18:\"woman in the water\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"20\";s:6:\"handle\";s:5:\"Beach\";s:4:\"name\";s:5:\"Beach\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-15 14:18:38\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:254;a:12:{s:2:\"id\";s:3:\"345\";s:6:\"handle\";s:39:\"Brown-stone-near-sea-at-golden-hour.jpg\";s:4:\"name\";s:35:\"Brown stone near sea at golden hour\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"20\";s:6:\"handle\";s:5:\"Beach\";s:4:\"name\";s:5:\"Beach\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-15 14:18:38\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:255;a:12:{s:2:\"id\";s:3:\"344\";s:6:\"handle\";s:18:\"Birds-eye-view.jpg\";s:4:\"name\";s:14:\"Birds eye view\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"20\";s:6:\"handle\";s:5:\"Beach\";s:4:\"name\";s:5:\"Beach\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1079\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-15 14:18:38\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:256;a:12:{s:2:\"id\";s:3:\"343\";s:6:\"handle\";s:18:\"Empty-seashore.jpg\";s:4:\"name\";s:14:\"Empty seashore\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"20\";s:6:\"handle\";s:5:\"Beach\";s:4:\"name\";s:5:\"Beach\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1365\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-15 14:18:38\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:257;a:12:{s:2:\"id\";s:3:\"342\";s:6:\"handle\";s:31:\"Seashore-during-golden-hour.jpg\";s:4:\"name\";s:27:\"Seashore during golden hour\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"20\";s:6:\"handle\";s:5:\"Beach\";s:4:\"name\";s:5:\"Beach\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1439\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-15 14:18:38\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:258;a:12:{s:2:\"id\";s:3:\"341\";s:6:\"handle\";s:16:\"Coconut-tree.jpg\";s:4:\"name\";s:12:\"Coconut tree\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"20\";s:6:\"handle\";s:5:\"Beach\";s:4:\"name\";s:5:\"Beach\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1278\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-15 14:18:38\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:259;a:12:{s:2:\"id\";s:3:\"340\";s:6:\"handle\";s:37:\"Aerial-photography-of-beach-shore.jpg\";s:4:\"name\";s:33:\"Aerial photography of beach shore\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"20\";s:6:\"handle\";s:5:\"Beach\";s:4:\"name\";s:5:\"Beach\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1439\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-15 14:18:38\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:260;a:12:{s:2:\"id\";s:3:\"197\";s:6:\"handle\";s:17:\"relax_hammock.jpg\";s:4:\"name\";s:13:\"Relax Hammock\";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:2:\"24\";s:6:\"handle\";s:6:\"People\";s:4:\"name\";s:6:\"People\";}i:1;a:3:{s:2:\"id\";s:2:\"21\";s:6:\"handle\";s:4:\"City\";s:4:\"name\";s:4:\"City\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-10-17 12:41:12\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:261;a:12:{s:2:\"id\";s:3:\"196\";s:6:\"handle\";s:16:\"beach_houses.jpg\";s:4:\"name\";s:12:\"Beach Houses\";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:2:\"20\";s:6:\"handle\";s:5:\"Beach\";s:4:\"name\";s:5:\"Beach\";}i:1;a:3:{s:2:\"id\";s:2:\"22\";s:6:\"handle\";s:3:\"Sky\";s:4:\"name\";s:3:\"Sky\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-10-17 12:41:12\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:262;a:12:{s:2:\"id\";s:3:\"195\";s:6:\"handle\";s:17:\"forest_road_2.jpg\";s:4:\"name\";s:13:\"Forest Road 2\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"19\";s:6:\"handle\";s:6:\"nature\";s:4:\"name\";s:6:\"Nature\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-10-17 12:41:12\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:263;a:12:{s:2:\"id\";s:3:\"194\";s:6:\"handle\";s:14:\"clean_desk.jpg\";s:4:\"name\";s:10:\"Clean Desk\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"21\";s:6:\"handle\";s:4:\"City\";s:4:\"name\";s:4:\"City\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-10-17 12:41:12\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:264;a:12:{s:2:\"id\";s:3:\"193\";s:6:\"handle\";s:19:\"mountain_view_6.jpg\";s:4:\"name\";s:15:\"Mountain View 6\";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:2:\"22\";s:6:\"handle\";s:3:\"Sky\";s:4:\"name\";s:3:\"Sky\";}i:1;a:3:{s:2:\"id\";s:2:\"23\";s:6:\"handle\";s:5:\"Night\";s:4:\"name\";s:5:\"Night\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1249\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-10-17 12:41:12\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:265;a:12:{s:2:\"id\";s:3:\"192\";s:6:\"handle\";s:14:\"corn_field.jpg\";s:4:\"name\";s:10:\"Corn Field\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"22\";s:6:\"handle\";s:3:\"Sky\";s:4:\"name\";s:3:\"Sky\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1320\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-10-17 12:41:12\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:266;a:12:{s:2:\"id\";s:3:\"191\";s:6:\"handle\";s:21:\"stylish_apartment.jpg\";s:4:\"name\";s:17:\"Stylish Apartment\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"21\";s:6:\"handle\";s:4:\"City\";s:4:\"name\";s:4:\"City\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1281\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-10-17 12:41:12\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:267;a:12:{s:2:\"id\";s:3:\"190\";s:6:\"handle\";s:24:\"hipster_coffee_house.jpg\";s:4:\"name\";s:20:\"Hipster Coffee House\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"21\";s:6:\"handle\";s:4:\"City\";s:4:\"name\";s:4:\"City\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-10-17 12:41:12\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:268;a:12:{s:2:\"id\";s:3:\"189\";s:6:\"handle\";s:16:\"blurry_beach.jpg\";s:4:\"name\";s:12:\"Blurry Beach\";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:2:\"20\";s:6:\"handle\";s:5:\"Beach\";s:4:\"name\";s:5:\"Beach\";}i:1;a:3:{s:2:\"id\";s:2:\"22\";s:6:\"handle\";s:3:\"Sky\";s:4:\"name\";s:3:\"Sky\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-10-17 12:41:12\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:269;a:12:{s:2:\"id\";s:3:\"186\";s:6:\"handle\";s:17:\"greens_street.jpg\";s:4:\"name\";s:13:\"Greens Street\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"21\";s:6:\"handle\";s:4:\"City\";s:4:\"name\";s:4:\"City\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1277\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-09-05 15:29:22\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:270;a:12:{s:2:\"id\";s:3:\"185\";s:6:\"handle\";s:10:\"desert.jpg\";s:4:\"name\";s:6:\"Desert\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"22\";s:6:\"handle\";s:3:\"Sky\";s:4:\"name\";s:3:\"Sky\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-09-05 15:29:22\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:271;a:12:{s:2:\"id\";s:3:\"184\";s:6:\"handle\";s:19:\"mountain_view_5.jpg\";s:4:\"name\";s:15:\"Mountain View 5\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"22\";s:6:\"handle\";s:3:\"Sky\";s:4:\"name\";s:3:\"Sky\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-09-05 15:29:22\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:272;a:12:{s:2:\"id\";s:3:\"183\";s:6:\"handle\";s:10:\"laptop.jpg\";s:4:\"name\";s:6:\"Laptop\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"21\";s:6:\"handle\";s:4:\"City\";s:4:\"name\";s:4:\"City\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1391\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-09-05 15:29:22\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:273;a:12:{s:2:\"id\";s:3:\"182\";s:6:\"handle\";s:16:\"grand_canyon.jpg\";s:4:\"name\";s:12:\"Grand Canyon\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"22\";s:6:\"handle\";s:3:\"Sky\";s:4:\"name\";s:3:\"Sky\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1287\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-09-05 15:29:22\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:274;a:12:{s:2:\"id\";s:3:\"181\";s:6:\"handle\";s:20:\"landscape_clouds.jpg\";s:4:\"name\";s:16:\"Landscape Clouds\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"22\";s:6:\"handle\";s:3:\"Sky\";s:4:\"name\";s:3:\"Sky\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1272\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-09-05 15:29:22\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:275;a:12:{s:2:\"id\";s:3:\"180\";s:6:\"handle\";s:17:\"highway_night.jpg\";s:4:\"name\";s:13:\"Highway Night\";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:2:\"23\";s:6:\"handle\";s:5:\"Night\";s:4:\"name\";s:5:\"Night\";}i:1;a:3:{s:2:\"id\";s:2:\"21\";s:6:\"handle\";s:4:\"City\";s:4:\"name\";s:4:\"City\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1440\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-09-05 15:29:22\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:276;a:12:{s:2:\"id\";s:3:\"179\";s:6:\"handle\";s:15:\"beach_water.jpg\";s:4:\"name\";s:11:\"Beach Water\";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:2:\"20\";s:6:\"handle\";s:5:\"Beach\";s:4:\"name\";s:5:\"Beach\";}i:1;a:3:{s:2:\"id\";s:2:\"22\";s:6:\"handle\";s:3:\"Sky\";s:4:\"name\";s:3:\"Sky\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-09-05 15:29:22\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:277;a:12:{s:2:\"id\";s:3:\"177\";s:6:\"handle\";s:15:\"woman_beach.jpg\";s:4:\"name\";s:11:\"Woman Beach\";s:4:\"tags\";a:4:{i:0;a:3:{s:2:\"id\";s:2:\"20\";s:6:\"handle\";s:5:\"Beach\";s:4:\"name\";s:5:\"Beach\";}i:1;a:3:{s:2:\"id\";s:2:\"22\";s:6:\"handle\";s:3:\"Sky\";s:4:\"name\";s:3:\"Sky\";}i:2;a:3:{s:2:\"id\";s:2:\"19\";s:6:\"handle\";s:6:\"nature\";s:4:\"name\";s:6:\"Nature\";}i:3;a:3:{s:2:\"id\";s:2:\"24\";s:6:\"handle\";s:6:\"People\";s:4:\"name\";s:6:\"People\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-09-05 15:29:22\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:278;a:12:{s:2:\"id\";s:3:\"175\";s:6:\"handle\";s:12:\"cool_guy.jpg\";s:4:\"name\";s:8:\"Cool Guy\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"24\";s:6:\"handle\";s:6:\"People\";s:4:\"name\";s:6:\"People\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-09-05 15:29:22\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:279;a:12:{s:2:\"id\";s:3:\"174\";s:6:\"handle\";s:13:\"beach_sea.jpg\";s:4:\"name\";s:9:\"Beach Sea\";s:4:\"tags\";a:3:{i:0;a:3:{s:2:\"id\";s:2:\"20\";s:6:\"handle\";s:5:\"Beach\";s:4:\"name\";s:5:\"Beach\";}i:1;a:3:{s:2:\"id\";s:2:\"22\";s:6:\"handle\";s:3:\"Sky\";s:4:\"name\";s:3:\"Sky\";}i:2;a:3:{s:2:\"id\";s:2:\"19\";s:6:\"handle\";s:6:\"nature\";s:4:\"name\";s:6:\"Nature\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-09-05 15:29:22\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:280;a:12:{s:2:\"id\";s:3:\"173\";s:6:\"handle\";s:17:\"bridge_clouds.jpg\";s:4:\"name\";s:13:\"Bridge Clouds\";s:4:\"tags\";a:3:{i:0;a:3:{s:2:\"id\";s:2:\"22\";s:6:\"handle\";s:3:\"Sky\";s:4:\"name\";s:3:\"Sky\";}i:1;a:3:{s:2:\"id\";s:2:\"19\";s:6:\"handle\";s:6:\"nature\";s:4:\"name\";s:6:\"Nature\";}i:2;a:3:{s:2:\"id\";s:2:\"21\";s:6:\"handle\";s:4:\"City\";s:4:\"name\";s:4:\"City\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1281\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-09-05 15:29:22\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:281;a:12:{s:2:\"id\";s:3:\"116\";s:6:\"handle\";s:19:\"mountain_view_2.jpg\";s:4:\"name\";s:15:\"Mountain View 2\";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:2:\"22\";s:6:\"handle\";s:3:\"Sky\";s:4:\"name\";s:3:\"Sky\";}i:1;a:3:{s:2:\"id\";s:2:\"19\";s:6:\"handle\";s:6:\"nature\";s:4:\"name\";s:6:\"Nature\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1275\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-15 14:29:46\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:282;a:12:{s:2:\"id\";s:3:\"115\";s:6:\"handle\";s:16:\"desert_trees.jpg\";s:4:\"name\";s:12:\"Desert Trees\";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:2:\"22\";s:6:\"handle\";s:3:\"Sky\";s:4:\"name\";s:3:\"Sky\";}i:1;a:3:{s:2:\"id\";s:2:\"19\";s:6:\"handle\";s:6:\"nature\";s:4:\"name\";s:6:\"Nature\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1275\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-15 14:29:46\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:283;a:12:{s:2:\"id\";s:3:\"114\";s:6:\"handle\";s:20:\"explore_moutains.jpg\";s:4:\"name\";s:17:\"Explore Mountains\";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:2:\"22\";s:6:\"handle\";s:3:\"Sky\";s:4:\"name\";s:3:\"Sky\";}i:1;a:3:{s:2:\"id\";s:2:\"19\";s:6:\"handle\";s:6:\"nature\";s:4:\"name\";s:6:\"Nature\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-15 14:29:46\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:284;a:12:{s:2:\"id\";s:3:\"113\";s:6:\"handle\";s:19:\"night_skyline_2.jpg\";s:4:\"name\";s:15:\"Night Skyline 2\";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:2:\"23\";s:6:\"handle\";s:5:\"Night\";s:4:\"name\";s:5:\"Night\";}i:1;a:3:{s:2:\"id\";s:2:\"21\";s:6:\"handle\";s:4:\"City\";s:4:\"name\";s:4:\"City\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-15 14:29:46\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:285;a:12:{s:2:\"id\";s:3:\"112\";s:6:\"handle\";s:15:\"cliff_ocean.jpg\";s:4:\"name\";s:11:\"Cliff Ocean\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"19\";s:6:\"handle\";s:6:\"nature\";s:4:\"name\";s:6:\"Nature\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-15 14:29:46\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:286;a:12:{s:2:\"id\";s:3:\"111\";s:6:\"handle\";s:14:\"city_smoke.jpg\";s:4:\"name\";s:10:\"City Smoke\";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:2:\"24\";s:6:\"handle\";s:6:\"People\";s:4:\"name\";s:6:\"People\";}i:1;a:3:{s:2:\"id\";s:2:\"21\";s:6:\"handle\";s:4:\"City\";s:4:\"name\";s:4:\"City\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-15 14:29:46\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:287;a:12:{s:2:\"id\";s:3:\"110\";s:6:\"handle\";s:16:\"surfer_beach.jpg\";s:4:\"name\";s:12:\"Surfer Beach\";s:4:\"tags\";a:3:{i:0;a:3:{s:2:\"id\";s:2:\"20\";s:6:\"handle\";s:5:\"Beach\";s:4:\"name\";s:5:\"Beach\";}i:1;a:3:{s:2:\"id\";s:2:\"22\";s:6:\"handle\";s:3:\"Sky\";s:4:\"name\";s:3:\"Sky\";}i:2;a:3:{s:2:\"id\";s:2:\"19\";s:6:\"handle\";s:6:\"nature\";s:4:\"name\";s:6:\"Nature\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1278\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-15 14:29:46\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:288;a:12:{s:2:\"id\";s:3:\"109\";s:6:\"handle\";s:13:\"sky_night.jpg\";s:4:\"name\";s:9:\"Sky Night\";s:4:\"tags\";a:3:{i:0;a:3:{s:2:\"id\";s:2:\"22\";s:6:\"handle\";s:3:\"Sky\";s:4:\"name\";s:3:\"Sky\";}i:1;a:3:{s:2:\"id\";s:2:\"19\";s:6:\"handle\";s:6:\"nature\";s:4:\"name\";s:6:\"Nature\";}i:2;a:3:{s:2:\"id\";s:2:\"23\";s:6:\"handle\";s:5:\"Night\";s:4:\"name\";s:5:\"Night\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1282\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-15 14:29:46\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:289;a:12:{s:2:\"id\";s:3:\"108\";s:6:\"handle\";s:15:\"palm_sunset.jpg\";s:4:\"name\";s:11:\"Palm Sunset\";s:4:\"tags\";a:4:{i:0;a:3:{s:2:\"id\";s:2:\"22\";s:6:\"handle\";s:3:\"Sky\";s:4:\"name\";s:3:\"Sky\";}i:1;a:3:{s:2:\"id\";s:2:\"19\";s:6:\"handle\";s:6:\"nature\";s:4:\"name\";s:6:\"Nature\";}i:2;a:3:{s:2:\"id\";s:2:\"21\";s:6:\"handle\";s:4:\"City\";s:4:\"name\";s:4:\"City\";}i:3;a:3:{s:2:\"id\";s:2:\"23\";s:6:\"handle\";s:5:\"Night\";s:4:\"name\";s:5:\"Night\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1372\";s:6:\"height\";s:4:\"1920\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-15 14:29:46\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:290;a:12:{s:2:\"id\";s:3:\"107\";s:6:\"handle\";s:18:\"concert_people.jpg\";s:4:\"name\";s:14:\"Concert People\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"24\";s:6:\"handle\";s:6:\"People\";s:4:\"name\";s:6:\"People\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1277\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-15 14:29:46\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:291;a:12:{s:2:\"id\";s:3:\"106\";s:6:\"handle\";s:15:\"forest_road.jpg\";s:4:\"name\";s:11:\"Forest Road\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"19\";s:6:\"handle\";s:6:\"nature\";s:4:\"name\";s:6:\"Nature\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1282\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-15 14:29:46\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:292;a:12:{s:2:\"id\";s:3:\"105\";s:6:\"handle\";s:15:\"beach_ocean.jpg\";s:4:\"name\";s:11:\"Beach Ocean\";s:4:\"tags\";a:3:{i:0;a:3:{s:2:\"id\";s:2:\"20\";s:6:\"handle\";s:5:\"Beach\";s:4:\"name\";s:5:\"Beach\";}i:1;a:3:{s:2:\"id\";s:2:\"22\";s:6:\"handle\";s:3:\"Sky\";s:4:\"name\";s:3:\"Sky\";}i:2;a:3:{s:2:\"id\";s:2:\"19\";s:6:\"handle\";s:6:\"nature\";s:4:\"name\";s:6:\"Nature\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-15 14:29:46\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:293;a:12:{s:2:\"id\";s:3:\"104\";s:6:\"handle\";s:18:\"mountain_night.jpg\";s:4:\"name\";s:14:\"Mountain Night\";s:4:\"tags\";a:3:{i:0;a:3:{s:2:\"id\";s:2:\"22\";s:6:\"handle\";s:3:\"Sky\";s:4:\"name\";s:3:\"Sky\";}i:1;a:3:{s:2:\"id\";s:2:\"19\";s:6:\"handle\";s:6:\"nature\";s:4:\"name\";s:6:\"Nature\";}i:2;a:3:{s:2:\"id\";s:2:\"23\";s:6:\"handle\";s:5:\"Night\";s:4:\"name\";s:5:\"Night\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1277\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-15 14:29:46\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:294;a:12:{s:2:\"id\";s:3:\"103\";s:6:\"handle\";s:19:\"ocean_mountains.jpg\";s:4:\"name\";s:15:\"Ocean Mountains\";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:2:\"22\";s:6:\"handle\";s:3:\"Sky\";s:4:\"name\";s:3:\"Sky\";}i:1;a:3:{s:2:\"id\";s:2:\"19\";s:6:\"handle\";s:6:\"nature\";s:4:\"name\";s:6:\"Nature\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1282\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-15 14:29:46\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:295;a:12:{s:2:\"id\";s:3:\"102\";s:6:\"handle\";s:10:\"forest.jpg\";s:4:\"name\";s:6:\"Forest\";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:2:\"22\";s:6:\"handle\";s:3:\"Sky\";s:4:\"name\";s:3:\"Sky\";}i:1;a:3:{s:2:\"id\";s:2:\"19\";s:6:\"handle\";s:6:\"nature\";s:4:\"name\";s:6:\"Nature\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-15 14:29:46\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:296;a:12:{s:2:\"id\";s:3:\"101\";s:6:\"handle\";s:16:\"ocean_stones.jpg\";s:4:\"name\";s:12:\"Ocean Stones\";s:4:\"tags\";a:3:{i:0;a:3:{s:2:\"id\";s:2:\"20\";s:6:\"handle\";s:5:\"Beach\";s:4:\"name\";s:5:\"Beach\";}i:1;a:3:{s:2:\"id\";s:2:\"22\";s:6:\"handle\";s:3:\"Sky\";s:4:\"name\";s:3:\"Sky\";}i:2;a:3:{s:2:\"id\";s:2:\"19\";s:6:\"handle\";s:6:\"nature\";s:4:\"name\";s:6:\"Nature\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-15 14:29:46\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:297;a:12:{s:2:\"id\";s:3:\"100\";s:6:\"handle\";s:16:\"country_road.jpg\";s:4:\"name\";s:12:\"Country Road\";s:4:\"tags\";a:3:{i:0;a:3:{s:2:\"id\";s:2:\"22\";s:6:\"handle\";s:3:\"Sky\";s:4:\"name\";s:3:\"Sky\";}i:1;a:3:{s:2:\"id\";s:2:\"19\";s:6:\"handle\";s:6:\"nature\";s:4:\"name\";s:6:\"Nature\";}i:2;a:3:{s:2:\"id\";s:2:\"21\";s:6:\"handle\";s:4:\"City\";s:4:\"name\";s:4:\"City\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:3:\"800\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-15 14:29:46\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:298;a:12:{s:2:\"id\";s:2:\"99\";s:6:\"handle\";s:9:\"beach.jpg\";s:4:\"name\";s:5:\"Beach\";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:2:\"20\";s:6:\"handle\";s:5:\"Beach\";s:4:\"name\";s:5:\"Beach\";}i:1;a:3:{s:2:\"id\";s:2:\"19\";s:6:\"handle\";s:6:\"nature\";s:4:\"name\";s:6:\"Nature\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-15 14:29:46\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:299;a:12:{s:2:\"id\";s:2:\"98\";s:6:\"handle\";s:16:\"city_skyline.jpg\";s:4:\"name\";s:12:\"City Skyline\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"21\";s:6:\"handle\";s:4:\"City\";s:4:\"name\";s:4:\"City\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-15 14:29:46\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:300;a:12:{s:2:\"id\";s:2:\"97\";s:6:\"handle\";s:17:\"night_skyline.jpg\";s:4:\"name\";s:13:\"Night Skyline\";s:4:\"tags\";a:3:{i:0;a:3:{s:2:\"id\";s:2:\"22\";s:6:\"handle\";s:3:\"Sky\";s:4:\"name\";s:3:\"Sky\";}i:1;a:3:{s:2:\"id\";s:2:\"21\";s:6:\"handle\";s:4:\"City\";s:4:\"name\";s:4:\"City\";}i:2;a:3:{s:2:\"id\";s:2:\"23\";s:6:\"handle\";s:5:\"Night\";s:4:\"name\";s:5:\"Night\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-15 14:29:46\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:301;a:12:{s:2:\"id\";s:2:\"96\";s:6:\"handle\";s:14:\"city_river.jpg\";s:4:\"name\";s:10:\"City River\";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:2:\"22\";s:6:\"handle\";s:3:\"Sky\";s:4:\"name\";s:3:\"Sky\";}i:1;a:3:{s:2:\"id\";s:2:\"21\";s:6:\"handle\";s:4:\"City\";s:4:\"name\";s:4:\"City\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-15 14:29:46\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:302;a:12:{s:2:\"id\";s:2:\"95\";s:6:\"handle\";s:19:\"mountain_view_3.jpg\";s:4:\"name\";s:15:\"Mountain View 3\";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:2:\"22\";s:6:\"handle\";s:3:\"Sky\";s:4:\"name\";s:3:\"Sky\";}i:1;a:3:{s:2:\"id\";s:2:\"19\";s:6:\"handle\";s:6:\"nature\";s:4:\"name\";s:6:\"Nature\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1281\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-15 14:29:46\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:303;a:12:{s:2:\"id\";s:2:\"94\";s:6:\"handle\";s:14:\"misty_farm.jpg\";s:4:\"name\";s:10:\"Misty Farm\";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:2:\"22\";s:6:\"handle\";s:3:\"Sky\";s:4:\"name\";s:3:\"Sky\";}i:1;a:3:{s:2:\"id\";s:2:\"19\";s:6:\"handle\";s:6:\"nature\";s:4:\"name\";s:6:\"Nature\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-15 14:29:46\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:304;a:12:{s:2:\"id\";s:2:\"93\";s:6:\"handle\";s:17:\"mountain_path.jpg\";s:4:\"name\";s:13:\"Mountain Path\";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:2:\"22\";s:6:\"handle\";s:3:\"Sky\";s:4:\"name\";s:3:\"Sky\";}i:1;a:3:{s:2:\"id\";s:2:\"19\";s:6:\"handle\";s:6:\"nature\";s:4:\"name\";s:6:\"Nature\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-15 14:29:46\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:305;a:12:{s:2:\"id\";s:2:\"92\";s:6:\"handle\";s:19:\"night_skyline_3.jpg\";s:4:\"name\";s:15:\"Night Skyline 3\";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:2:\"22\";s:6:\"handle\";s:3:\"Sky\";s:4:\"name\";s:3:\"Sky\";}i:1;a:3:{s:2:\"id\";s:2:\"21\";s:6:\"handle\";s:4:\"City\";s:4:\"name\";s:4:\"City\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-15 14:29:46\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:306;a:12:{s:2:\"id\";s:2:\"91\";s:6:\"handle\";s:17:\"mountain_view.jpg\";s:4:\"name\";s:13:\"Mountain View\";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:2:\"22\";s:6:\"handle\";s:3:\"Sky\";s:4:\"name\";s:3:\"Sky\";}i:1;a:3:{s:2:\"id\";s:2:\"19\";s:6:\"handle\";s:6:\"nature\";s:4:\"name\";s:6:\"Nature\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1160\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-15 14:29:46\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:307;a:12:{s:2:\"id\";s:2:\"90\";s:6:\"handle\";s:19:\"rocky_landscape.jpg\";s:4:\"name\";s:15:\"Rocky Landscape\";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:2:\"22\";s:6:\"handle\";s:3:\"Sky\";s:4:\"name\";s:3:\"Sky\";}i:1;a:3:{s:2:\"id\";s:2:\"19\";s:6:\"handle\";s:6:\"nature\";s:4:\"name\";s:6:\"Nature\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-15 14:29:46\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:308;a:12:{s:2:\"id\";s:2:\"89\";s:6:\"handle\";s:19:\"mountain_view_4.jpg\";s:4:\"name\";s:15:\"Mountain View 4\";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:2:\"22\";s:6:\"handle\";s:3:\"Sky\";s:4:\"name\";s:3:\"Sky\";}i:1;a:3:{s:2:\"id\";s:2:\"19\";s:6:\"handle\";s:6:\"nature\";s:4:\"name\";s:6:\"Nature\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1203\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-15 14:29:46\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:309;a:13:{s:2:\"id\";s:3:\"529\";s:6:\"handle\";s:13:\"Fitness-4.jpg\";s:5:\"video\";s:13:\"Fitness-4.mp4\";s:4:\"name\";s:10:\"Fitness 4 \";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"27\";s:6:\"handle\";s:5:\"sport\";s:4:\"name\";s:5:\"Sport\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-23 11:46:50\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"3\";}i:310;a:13:{s:2:\"id\";s:3:\"528\";s:6:\"handle\";s:13:\"Fitness-3.jpg\";s:5:\"video\";s:13:\"Fitness-3.mp4\";s:4:\"name\";s:10:\"Fitness 3 \";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"27\";s:6:\"handle\";s:5:\"sport\";s:4:\"name\";s:5:\"Sport\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-23 11:46:50\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"3\";}i:311;a:13:{s:2:\"id\";s:3:\"527\";s:6:\"handle\";s:9:\"Chess.jpg\";s:5:\"video\";s:9:\"Chess.mp4\";s:4:\"name\";s:6:\"Chess \";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"27\";s:6:\"handle\";s:5:\"sport\";s:4:\"name\";s:5:\"Sport\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-23 11:46:50\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"3\";}i:312;a:13:{s:2:\"id\";s:3:\"526\";s:6:\"handle\";s:13:\"Fitness-2.jpg\";s:5:\"video\";s:13:\"Fitness-2.mp4\";s:4:\"name\";s:10:\"Fitness 2 \";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"27\";s:6:\"handle\";s:5:\"sport\";s:4:\"name\";s:5:\"Sport\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-23 11:46:50\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"3\";}i:313;a:13:{s:2:\"id\";s:3:\"525\";s:6:\"handle\";s:11:\"Fitness.jpg\";s:5:\"video\";s:11:\"Fitness.mp4\";s:4:\"name\";s:8:\"Fitness \";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"27\";s:6:\"handle\";s:5:\"sport\";s:4:\"name\";s:5:\"Sport\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-23 11:46:50\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"3\";}i:314;a:13:{s:2:\"id\";s:3:\"524\";s:6:\"handle\";s:9:\"Earth.jpg\";s:5:\"video\";s:9:\"Earth.mp4\";s:4:\"name\";s:6:\"Earth \";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"29\";s:6:\"handle\";s:5:\"space\";s:4:\"name\";s:5:\"Space\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-23 11:44:06\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"3\";}i:315;a:13:{s:2:\"id\";s:3:\"523\";s:6:\"handle\";s:11:\"Space-2.jpg\";s:5:\"video\";s:11:\"Space-2.mp4\";s:4:\"name\";s:8:\"Space 2 \";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"29\";s:6:\"handle\";s:5:\"space\";s:4:\"name\";s:5:\"Space\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1440\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-23 11:44:06\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"3\";}i:316;a:13:{s:2:\"id\";s:3:\"522\";s:6:\"handle\";s:13:\"Asteroids.jpg\";s:5:\"video\";s:13:\"Asteroids.mp4\";s:4:\"name\";s:10:\"Asteroids \";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"29\";s:6:\"handle\";s:5:\"space\";s:4:\"name\";s:5:\"Space\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-23 11:44:06\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"3\";}i:317;a:13:{s:2:\"id\";s:3:\"521\";s:6:\"handle\";s:9:\"Space.jpg\";s:5:\"video\";s:9:\"Space.mp4\";s:4:\"name\";s:6:\"Space \";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"29\";s:6:\"handle\";s:5:\"space\";s:4:\"name\";s:5:\"Space\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-23 11:44:06\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"3\";}i:318;a:13:{s:2:\"id\";s:3:\"520\";s:6:\"handle\";s:10:\"People.jpg\";s:5:\"video\";s:10:\"People.mp4\";s:4:\"name\";s:7:\"People \";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"24\";s:6:\"handle\";s:6:\"People\";s:4:\"name\";s:6:\"People\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-23 11:42:16\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"3\";}i:319;a:13:{s:2:\"id\";s:3:\"519\";s:6:\"handle\";s:11:\"Walking.jpg\";s:5:\"video\";s:11:\"Walking.mp4\";s:4:\"name\";s:8:\"Walking \";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"24\";s:6:\"handle\";s:6:\"People\";s:4:\"name\";s:6:\"People\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-23 11:42:16\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"3\";}i:320;a:13:{s:2:\"id\";s:3:\"518\";s:6:\"handle\";s:19:\"Double-Exposure.jpg\";s:5:\"video\";s:19:\"Double-Exposure.mp4\";s:4:\"name\";s:16:\"Double Exposure \";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"24\";s:6:\"handle\";s:6:\"People\";s:4:\"name\";s:6:\"People\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-23 11:42:16\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"3\";}i:321;a:13:{s:2:\"id\";s:3:\"517\";s:6:\"handle\";s:8:\"Girl.jpg\";s:5:\"video\";s:8:\"Girl.mp4\";s:4:\"name\";s:5:\"Girl \";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"24\";s:6:\"handle\";s:6:\"People\";s:4:\"name\";s:6:\"People\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1088\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-23 11:42:16\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"3\";}i:322;a:13:{s:2:\"id\";s:3:\"516\";s:6:\"handle\";s:17:\"Bengal-Lights.jpg\";s:5:\"video\";s:17:\"Bengal-Lights.mp4\";s:4:\"name\";s:14:\"Bengal Lights \";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"24\";s:6:\"handle\";s:6:\"People\";s:4:\"name\";s:6:\"People\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-23 11:42:16\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"3\";}i:323;a:13:{s:2:\"id\";s:3:\"515\";s:6:\"handle\";s:13:\"Swiping-2.jpg\";s:5:\"video\";s:13:\"Swiping-2.mp4\";s:4:\"name\";s:10:\"Swiping 2 \";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-23 11:39:19\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"3\";}i:324;a:13:{s:2:\"id\";s:3:\"514\";s:6:\"handle\";s:11:\"Mock-Up.jpg\";s:5:\"video\";s:11:\"Mock-Up.mp4\";s:4:\"name\";s:8:\"Mock Up \";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-23 11:39:19\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"3\";}i:325;a:13:{s:2:\"id\";s:3:\"513\";s:6:\"handle\";s:13:\"Countdown.jpg\";s:5:\"video\";s:13:\"Countdown.mp4\";s:4:\"name\";s:10:\"Countdown \";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-23 11:39:19\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"3\";}i:326;a:13:{s:2:\"id\";s:3:\"512\";s:6:\"handle\";s:18:\"Wall-Sketching.jpg\";s:5:\"video\";s:18:\"Wall-Sketching.mp4\";s:4:\"name\";s:15:\"Wall Sketching \";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-23 11:39:19\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"3\";}i:327;a:13:{s:2:\"id\";s:3:\"511\";s:6:\"handle\";s:26:\"Typing-on-the-keyboard.jpg\";s:5:\"video\";s:26:\"Typing-on-the-keyboard.mp4\";s:4:\"name\";s:23:\"Typing on the keyboard \";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-23 11:39:19\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"3\";}i:328;a:13:{s:2:\"id\";s:3:\"510\";s:6:\"handle\";s:11:\"Meeting.jpg\";s:5:\"video\";s:11:\"Meeting.mp4\";s:4:\"name\";s:8:\"Meeting \";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-23 11:39:19\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"3\";}i:329;a:13:{s:2:\"id\";s:3:\"509\";s:6:\"handle\";s:11:\"Swiping.jpg\";s:5:\"video\";s:11:\"Swiping.mp4\";s:4:\"name\";s:8:\"Swiping \";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-23 11:39:19\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"3\";}i:330;a:13:{s:2:\"id\";s:3:\"508\";s:6:\"handle\";s:9:\"Alarm.jpg\";s:5:\"video\";s:9:\"Alarm.mp4\";s:4:\"name\";s:6:\"Alarm \";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1013\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-23 11:39:19\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"3\";}i:331;a:13:{s:2:\"id\";s:3:\"507\";s:6:\"handle\";s:13:\"Hey-World.jpg\";s:5:\"video\";s:13:\"Hey-World.mp4\";s:4:\"name\";s:10:\"Hey World \";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-23 11:39:19\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"3\";}i:332;a:13:{s:2:\"id\";s:3:\"506\";s:6:\"handle\";s:28:\"Typing-on-the-keyboard-2.jpg\";s:5:\"video\";s:28:\"Typing-on-the-keyboard-2.mp4\";s:4:\"name\";s:25:\"Typing on the keyboard 2 \";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-23 11:39:19\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"3\";}i:333;a:13:{s:2:\"id\";s:3:\"505\";s:6:\"handle\";s:10:\"Valley.jpg\";s:5:\"video\";s:10:\"Valley.mp4\";s:4:\"name\";s:7:\"Valley \";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"19\";s:6:\"handle\";s:6:\"nature\";s:4:\"name\";s:6:\"Nature\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-23 11:35:27\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"3\";}i:334;a:13:{s:2:\"id\";s:3:\"504\";s:6:\"handle\";s:9:\"Stars.jpg\";s:5:\"video\";s:9:\"Stars.mp4\";s:4:\"name\";s:6:\"Stars \";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"19\";s:6:\"handle\";s:6:\"nature\";s:4:\"name\";s:6:\"Nature\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-23 11:35:27\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"3\";}i:335;a:13:{s:2:\"id\";s:3:\"503\";s:6:\"handle\";s:21:\"Car-in-the-forest.jpg\";s:5:\"video\";s:21:\"Car-in-the-forest.mp4\";s:4:\"name\";s:18:\"Car in the forest \";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"19\";s:6:\"handle\";s:6:\"nature\";s:4:\"name\";s:6:\"Nature\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1012\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-23 11:35:27\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"3\";}i:336;a:13:{s:2:\"id\";s:3:\"502\";s:6:\"handle\";s:15:\"Aerial-Shot.jpg\";s:5:\"video\";s:15:\"Aerial-Shot.mp4\";s:4:\"name\";s:12:\"Aerial Shot \";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"19\";s:6:\"handle\";s:6:\"nature\";s:4:\"name\";s:6:\"Nature\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-23 11:35:27\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"3\";}i:337;a:13:{s:2:\"id\";s:3:\"501\";s:6:\"handle\";s:14:\"Disco-Ball.jpg\";s:5:\"video\";s:14:\"Disco-Ball.mp4\";s:4:\"name\";s:11:\"Disco Ball \";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"4\";s:6:\"handle\";s:5:\"music\";s:4:\"name\";s:5:\"Music\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-23 11:33:16\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"3\";}i:338;a:13:{s:2:\"id\";s:3:\"500\";s:6:\"handle\";s:22:\"Man-Playing-Guitar.jpg\";s:5:\"video\";s:22:\"Man-Playing-Guitar.mp4\";s:4:\"name\";s:19:\"Man Playing Guitar \";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"4\";s:6:\"handle\";s:5:\"music\";s:4:\"name\";s:5:\"Music\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-23 11:33:16\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"3\";}i:339;a:13:{s:2:\"id\";s:3:\"499\";s:6:\"handle\";s:14:\"Live-Music.jpg\";s:5:\"video\";s:14:\"Live-Music.mp4\";s:4:\"name\";s:11:\"Live Music \";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"4\";s:6:\"handle\";s:5:\"music\";s:4:\"name\";s:5:\"Music\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-23 11:33:16\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"3\";}i:340;a:13:{s:2:\"id\";s:3:\"498\";s:6:\"handle\";s:12:\"Cheer-Up.jpg\";s:5:\"video\";s:12:\"Cheer-Up.mp4\";s:4:\"name\";s:9:\"Cheer Up \";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"4\";s:6:\"handle\";s:5:\"music\";s:4:\"name\";s:5:\"Music\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-23 11:33:16\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"3\";}i:341;a:13:{s:2:\"id\";s:3:\"497\";s:6:\"handle\";s:14:\"Night-club.jpg\";s:5:\"video\";s:14:\"Night-club.mp4\";s:4:\"name\";s:11:\"Night club \";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"4\";s:6:\"handle\";s:5:\"music\";s:4:\"name\";s:5:\"Music\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-23 11:33:16\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"3\";}i:342;a:13:{s:2:\"id\";s:3:\"496\";s:6:\"handle\";s:17:\"Cup-Of-Coffee.jpg\";s:5:\"video\";s:17:\"Cup-Of-Coffee.mp4\";s:4:\"name\";s:14:\"Cup Of Coffee \";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"16\";s:6:\"handle\";s:4:\"food\";s:4:\"name\";s:4:\"Food\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-23 11:30:48\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"3\";}i:343;a:13:{s:2:\"id\";s:3:\"495\";s:6:\"handle\";s:7:\"Pot.jpg\";s:5:\"video\";s:7:\"Pot.mp4\";s:4:\"name\";s:4:\"Pot \";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"16\";s:6:\"handle\";s:4:\"food\";s:4:\"name\";s:4:\"Food\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-23 11:30:48\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"3\";}i:344;a:13:{s:2:\"id\";s:3:\"494\";s:6:\"handle\";s:11:\"Grill-2.jpg\";s:5:\"video\";s:11:\"Grill-2.mp4\";s:4:\"name\";s:8:\"Grill 2 \";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"16\";s:6:\"handle\";s:4:\"food\";s:4:\"name\";s:4:\"Food\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-23 11:30:48\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"3\";}i:345;a:13:{s:2:\"id\";s:3:\"493\";s:6:\"handle\";s:13:\"Rice-Bowl.jpg\";s:5:\"video\";s:13:\"Rice-Bowl.mp4\";s:4:\"name\";s:10:\"Rice Bowl \";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"16\";s:6:\"handle\";s:4:\"food\";s:4:\"name\";s:4:\"Food\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1010\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-23 11:30:48\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"3\";}i:346;a:13:{s:2:\"id\";s:3:\"492\";s:6:\"handle\";s:9:\"Grill.jpg\";s:5:\"video\";s:9:\"Grill.mp4\";s:4:\"name\";s:6:\"Grill \";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"16\";s:6:\"handle\";s:4:\"food\";s:4:\"name\";s:4:\"Food\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-23 11:30:48\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"3\";}i:347;a:13:{s:2:\"id\";s:3:\"491\";s:6:\"handle\";s:9:\"Water.jpg\";s:5:\"video\";s:9:\"Water.mp4\";s:4:\"name\";s:6:\"Water \";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"20\";s:6:\"handle\";s:5:\"Beach\";s:4:\"name\";s:5:\"Beach\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-23 11:24:15\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"3\";}i:348;a:13:{s:2:\"id\";s:3:\"490\";s:6:\"handle\";s:17:\"Feet-and-Sand.jpg\";s:5:\"video\";s:17:\"Feet-and-Sand.mp4\";s:4:\"name\";s:14:\"Feet and Sand \";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"20\";s:6:\"handle\";s:5:\"Beach\";s:4:\"name\";s:5:\"Beach\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-23 11:24:15\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"3\";}i:349;a:13:{s:2:\"id\";s:3:\"489\";s:6:\"handle\";s:9:\"Ocean.jpg\";s:5:\"video\";s:9:\"Ocean.mp4\";s:4:\"name\";s:6:\"Ocean \";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"20\";s:6:\"handle\";s:5:\"Beach\";s:4:\"name\";s:5:\"Beach\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-23 11:24:15\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"3\";}i:350;a:13:{s:2:\"id\";s:3:\"488\";s:6:\"handle\";s:9:\"Waves.jpg\";s:5:\"video\";s:9:\"Waves.mp4\";s:4:\"name\";s:6:\"Waves \";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"20\";s:6:\"handle\";s:5:\"Beach\";s:4:\"name\";s:5:\"Beach\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-23 11:24:15\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"3\";}i:351;a:13:{s:2:\"id\";s:3:\"487\";s:6:\"handle\";s:10:\"Hearts.jpg\";s:5:\"video\";s:10:\"Hearts.mp4\";s:4:\"name\";s:7:\"Hearts \";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"28\";s:6:\"handle\";s:11:\"abstraction\";s:4:\"name\";s:11:\"Abstraction\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-23 11:20:38\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"3\";}i:352;a:13:{s:2:\"id\";s:3:\"486\";s:6:\"handle\";s:12:\"Octagons.jpg\";s:5:\"video\";s:12:\"Octagons.mp4\";s:4:\"name\";s:9:\"Octagons \";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"28\";s:6:\"handle\";s:11:\"abstraction\";s:4:\"name\";s:11:\"Abstraction\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-23 11:20:38\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"3\";}i:353;a:13:{s:2:\"id\";s:3:\"485\";s:6:\"handle\";s:11:\"Squares.jpg\";s:5:\"video\";s:11:\"Squares.mp4\";s:4:\"name\";s:8:\"Squares \";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"28\";s:6:\"handle\";s:11:\"abstraction\";s:4:\"name\";s:11:\"Abstraction\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-23 11:20:38\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"3\";}i:354;a:13:{s:2:\"id\";s:3:\"484\";s:6:\"handle\";s:12:\"Pink-ink.jpg\";s:5:\"video\";s:12:\"Pink-ink.mp4\";s:4:\"name\";s:9:\"Pink ink \";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"28\";s:6:\"handle\";s:11:\"abstraction\";s:4:\"name\";s:11:\"Abstraction\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-23 11:20:38\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"3\";}i:355;a:13:{s:2:\"id\";s:3:\"483\";s:6:\"handle\";s:22:\"Blurred-Background.jpg\";s:5:\"video\";s:22:\"Blurred-Background.mp4\";s:4:\"name\";s:19:\"Blurred Background \";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"28\";s:6:\"handle\";s:11:\"abstraction\";s:4:\"name\";s:11:\"Abstraction\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-23 11:20:38\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"3\";}i:356;a:13:{s:2:\"id\";s:3:\"482\";s:6:\"handle\";s:20:\"Blinking-bubbles.jpg\";s:5:\"video\";s:20:\"Blinking-bubbles.mp4\";s:4:\"name\";s:17:\"Blinking bubbles \";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"28\";s:6:\"handle\";s:11:\"abstraction\";s:4:\"name\";s:11:\"Abstraction\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-23 11:20:38\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"3\";}i:357;a:13:{s:2:\"id\";s:3:\"481\";s:6:\"handle\";s:13:\"Fireworks.jpg\";s:5:\"video\";s:13:\"Fireworks.mp4\";s:4:\"name\";s:10:\"Fireworks \";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"28\";s:6:\"handle\";s:11:\"abstraction\";s:4:\"name\";s:11:\"Abstraction\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-23 11:20:38\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"3\";}i:358;a:13:{s:2:\"id\";s:3:\"480\";s:6:\"handle\";s:12:\"Dark-ink.jpg\";s:5:\"video\";s:12:\"Dark-ink.mp4\";s:4:\"name\";s:9:\"Dark ink \";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"28\";s:6:\"handle\";s:11:\"abstraction\";s:4:\"name\";s:11:\"Abstraction\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-23 11:20:38\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"3\";}i:359;a:13:{s:2:\"id\";s:3:\"238\";s:6:\"handle\";s:12:\"Mt_Baker.jpg\";s:5:\"video\";s:12:\"Mt_Baker.mp4\";s:4:\"name\";s:9:\"Mt Baker \";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"19\";s:6:\"handle\";s:6:\"nature\";s:4:\"name\";s:6:\"Nature\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2018-07-16 15:34:55\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"3\";}i:360;a:13:{s:2:\"id\";s:3:\"237\";s:6:\"handle\";s:16:\"Two-Swimmers.jpg\";s:5:\"video\";s:16:\"Two-Swimmers.mp4\";s:4:\"name\";s:13:\"Two Swimmers \";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"19\";s:6:\"handle\";s:6:\"nature\";s:4:\"name\";s:6:\"Nature\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2018-07-16 15:34:55\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"3\";}i:361;a:13:{s:2:\"id\";s:3:\"236\";s:6:\"handle\";s:14:\"Boats_Maze.jpg\";s:5:\"video\";s:14:\"Boats_Maze.mp4\";s:4:\"name\";s:11:\"Boats Maze \";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"19\";s:6:\"handle\";s:6:\"nature\";s:4:\"name\";s:6:\"Nature\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2018-07-16 15:34:55\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"3\";}i:362;a:13:{s:2:\"id\";s:3:\"235\";s:6:\"handle\";s:18:\"Candolim-Beach.jpg\";s:5:\"video\";s:18:\"Candolim-Beach.mp4\";s:4:\"name\";s:15:\"Candolim Beach \";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:2:\"20\";s:6:\"handle\";s:5:\"Beach\";s:4:\"name\";s:5:\"Beach\";}i:1;a:3:{s:2:\"id\";s:2:\"19\";s:6:\"handle\";s:6:\"nature\";s:4:\"name\";s:6:\"Nature\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2018-07-16 15:34:55\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"3\";}i:363;a:13:{s:2:\"id\";s:3:\"234\";s:6:\"handle\";s:17:\"Working-Space.jpg\";s:5:\"video\";s:17:\"Working-Space.mp4\";s:4:\"name\";s:14:\"Working Space \";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2018-07-16 15:34:55\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"3\";}i:364;a:13:{s:2:\"id\";s:3:\"233\";s:6:\"handle\";s:9:\"Wavez.jpg\";s:5:\"video\";s:9:\"Wavez.mp4\";s:4:\"name\";s:6:\"Wavez \";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"19\";s:6:\"handle\";s:6:\"nature\";s:4:\"name\";s:6:\"Nature\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2018-07-16 15:34:55\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"3\";}i:365;a:13:{s:2:\"id\";s:3:\"232\";s:6:\"handle\";s:17:\"Coconut-Grove.jpg\";s:5:\"video\";s:17:\"Coconut-Grove.mp4\";s:4:\"name\";s:14:\"Coconut Grove \";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"19\";s:6:\"handle\";s:6:\"nature\";s:4:\"name\";s:6:\"Nature\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2018-07-16 15:34:55\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"3\";}i:366;a:13:{s:2:\"id\";s:3:\"231\";s:6:\"handle\";s:19:\"Very-Open-Space.jpg\";s:5:\"video\";s:19:\"Very-Open-Space.mp4\";s:4:\"name\";s:16:\"Very Open Space \";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2018-07-16 15:34:55\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"3\";}i:367;a:13:{s:2:\"id\";s:3:\"230\";s:6:\"handle\";s:14:\"Office-Day.jpg\";s:5:\"video\";s:14:\"Office-Day.mp4\";s:4:\"name\";s:11:\"Office Day \";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2018-07-16 15:34:55\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"3\";}i:368;a:13:{s:2:\"id\";s:3:\"229\";s:6:\"handle\";s:12:\"The-Hill.jpg\";s:5:\"video\";s:12:\"The-Hill.mp4\";s:4:\"name\";s:9:\"The Hill \";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:1:\"5\";s:6:\"handle\";s:3:\"art\";s:4:\"name\";s:3:\"Art\";}i:1;a:3:{s:2:\"id\";s:2:\"19\";s:6:\"handle\";s:6:\"nature\";s:4:\"name\";s:6:\"Nature\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2018-07-16 15:34:55\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"3\";}i:369;a:13:{s:2:\"id\";s:3:\"339\";s:6:\"handle\";s:19:\"best_price_dark.jpg\";s:5:\"video\";s:19:\"best_price_dark.mp4\";s:4:\"name\";s:15:\"best_price_dark\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"25\";s:6:\"handle\";s:4:\"dark\";s:4:\"name\";s:4:\"Dark\";}}s:11:\"description\";s:15:\"best_price_dark\";s:5:\"width\";s:3:\"552\";s:6:\"height\";s:3:\"300\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-03-26 09:24:35\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"4\";}i:370;a:13:{s:2:\"id\";s:3:\"337\";s:6:\"handle\";s:27:\"limited_time_offer_dark.jpg\";s:5:\"video\";s:27:\"limited_time_offer_dark.mp4\";s:4:\"name\";s:23:\"limited_time_offer_dark\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"25\";s:6:\"handle\";s:4:\"dark\";s:4:\"name\";s:4:\"Dark\";}}s:11:\"description\";s:23:\"limited_time_offer_dark\";s:5:\"width\";s:3:\"552\";s:6:\"height\";s:3:\"300\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-03-26 09:24:35\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"4\";}i:371;a:13:{s:2:\"id\";s:3:\"336\";s:6:\"handle\";s:26:\"slider_revolution_dark.jpg\";s:5:\"video\";s:26:\"slider_revolution_dark.mp4\";s:4:\"name\";s:22:\"slider_revolution_dark\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"25\";s:6:\"handle\";s:4:\"dark\";s:4:\"name\";s:4:\"Dark\";}}s:11:\"description\";s:22:\"slider_revolution_dark\";s:5:\"width\";s:3:\"552\";s:6:\"height\";s:3:\"300\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-03-26 09:24:35\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"4\";}i:372;a:13:{s:2:\"id\";s:3:\"335\";s:6:\"handle\";s:19:\"mick_brown_dark.jpg\";s:5:\"video\";s:19:\"mick_brown_dark.mp4\";s:4:\"name\";s:15:\"mick_brown_dark\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"25\";s:6:\"handle\";s:4:\"dark\";s:4:\"name\";s:4:\"Dark\";}}s:11:\"description\";s:15:\"mick_brown_dark\";s:5:\"width\";s:3:\"552\";s:6:\"height\";s:3:\"300\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-03-26 09:24:35\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"4\";}i:373;a:13:{s:2:\"id\";s:3:\"334\";s:6:\"handle\";s:14:\"sales_dark.jpg\";s:5:\"video\";s:14:\"sales_dark.mp4\";s:4:\"name\";s:10:\"sales_dark\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"25\";s:6:\"handle\";s:4:\"dark\";s:4:\"name\";s:4:\"Dark\";}}s:11:\"description\";s:10:\"sales_dark\";s:5:\"width\";s:3:\"552\";s:6:\"height\";s:3:\"300\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-03-12 08:32:18\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"4\";}i:374;a:13:{s:2:\"id\";s:3:\"333\";s:6:\"handle\";s:21:\"robert_smith_dark.jpg\";s:5:\"video\";s:21:\"robert_smith_dark.mp4\";s:4:\"name\";s:17:\"robert_smith_dark\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"25\";s:6:\"handle\";s:4:\"dark\";s:4:\"name\";s:4:\"Dark\";}}s:11:\"description\";s:17:\"robert_smith_dark\";s:5:\"width\";s:3:\"552\";s:6:\"height\";s:3:\"300\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-03-12 08:32:18\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"4\";}i:375;a:13:{s:2:\"id\";s:3:\"332\";s:6:\"handle\";s:21:\"product_name_dark.jpg\";s:5:\"video\";s:21:\"product_name_dark.mp4\";s:4:\"name\";s:17:\"product_name_dark\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"25\";s:6:\"handle\";s:4:\"dark\";s:4:\"name\";s:4:\"Dark\";}}s:11:\"description\";s:17:\"product_name_dark\";s:5:\"width\";s:3:\"552\";s:6:\"height\";s:3:\"300\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-03-12 08:32:18\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"4\";}i:376;a:13:{s:2:\"id\";s:3:\"331\";s:6:\"handle\";s:21:\"high_quality_dark.jpg\";s:5:\"video\";s:21:\"high_quality_dark.mp4\";s:4:\"name\";s:17:\"high_quality_dark\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"25\";s:6:\"handle\";s:4:\"dark\";s:4:\"name\";s:4:\"Dark\";}}s:11:\"description\";s:17:\"high_quality_dark\";s:5:\"width\";s:3:\"552\";s:6:\"height\";s:3:\"300\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-03-12 08:32:18\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"4\";}i:377;a:13:{s:2:\"id\";s:3:\"330\";s:6:\"handle\";s:24:\"robert_johnson_light.jpg\";s:5:\"video\";s:24:\"robert_johnson_light.mp4\";s:4:\"name\";s:20:\"robert_johnson_light\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"26\";s:6:\"handle\";s:5:\"light\";s:4:\"name\";s:5:\"Light\";}}s:11:\"description\";s:20:\"robert_johnson_light\";s:5:\"width\";s:3:\"552\";s:6:\"height\";s:3:\"300\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-03-12 08:32:18\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"4\";}i:378;a:13:{s:2:\"id\";s:3:\"329\";s:6:\"handle\";s:21:\"jake_collins_dark.jpg\";s:5:\"video\";s:21:\"jake_collins_dark.mp4\";s:4:\"name\";s:17:\"jake_collins_dark\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"25\";s:6:\"handle\";s:4:\"dark\";s:4:\"name\";s:4:\"Dark\";}}s:11:\"description\";s:17:\"jake_collins_dark\";s:5:\"width\";s:3:\"552\";s:6:\"height\";s:3:\"300\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-03-12 08:32:18\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"4\";}i:379;a:13:{s:2:\"id\";s:3:\"328\";s:6:\"handle\";s:22:\"daniele_wood_light.jpg\";s:5:\"video\";s:22:\"daniele_wood_light.mp4\";s:4:\"name\";s:18:\"daniele_wood_light\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"26\";s:6:\"handle\";s:5:\"light\";s:4:\"name\";s:5:\"Light\";}}s:11:\"description\";s:18:\"daniele_wood_light\";s:5:\"width\";s:3:\"552\";s:6:\"height\";s:3:\"300\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-03-12 08:31:30\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"4\";}i:380;a:13:{s:2:\"id\";s:3:\"327\";s:6:\"handle\";s:23:\"michael_blake_light.jpg\";s:5:\"video\";s:23:\"michael_blake_light.mp4\";s:4:\"name\";s:19:\"michael_blake_light\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"26\";s:6:\"handle\";s:5:\"light\";s:4:\"name\";s:5:\"Light\";}}s:11:\"description\";s:19:\"michael_blake_light\";s:5:\"width\";s:3:\"552\";s:6:\"height\";s:3:\"300\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-03-05 09:20:21\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"4\";}i:381;a:13:{s:2:\"id\";s:3:\"326\";s:6:\"handle\";s:22:\"product_name_light.jpg\";s:5:\"video\";s:22:\"product_name_light.mp4\";s:4:\"name\";s:18:\"product_name_light\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"26\";s:6:\"handle\";s:5:\"light\";s:4:\"name\";s:5:\"Light\";}}s:11:\"description\";s:18:\"product_name_light\";s:5:\"width\";s:3:\"552\";s:6:\"height\";s:3:\"300\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-03-05 09:20:21\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"4\";}i:382;a:13:{s:2:\"id\";s:3:\"325\";s:6:\"handle\";s:24:\"rebecca_cooper_light.jpg\";s:5:\"video\";s:24:\"rebecca_cooper_light.mp4\";s:4:\"name\";s:20:\"rebecca_cooper_light\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"26\";s:6:\"handle\";s:5:\"light\";s:4:\"name\";s:5:\"Light\";}}s:11:\"description\";s:20:\"rebecca_cooper_light\";s:5:\"width\";s:3:\"552\";s:6:\"height\";s:3:\"300\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-03-05 09:20:21\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"4\";}i:383;a:13:{s:2:\"id\";s:3:\"324\";s:6:\"handle\";s:28:\"limited_time_offer_light.jpg\";s:5:\"video\";s:28:\"limited_time_offer_light.mp4\";s:4:\"name\";s:24:\"limited_time_offer_light\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"26\";s:6:\"handle\";s:5:\"light\";s:4:\"name\";s:5:\"Light\";}}s:11:\"description\";s:24:\"limited_time_offer_light\";s:5:\"width\";s:3:\"552\";s:6:\"height\";s:3:\"300\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-03-05 09:20:21\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"4\";}i:384;a:13:{s:2:\"id\";s:3:\"322\";s:6:\"handle\";s:22:\"jake_michael_light.jpg\";s:5:\"video\";s:22:\"jake_michael_light.mp4\";s:4:\"name\";s:18:\"jake_michael_light\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"26\";s:6:\"handle\";s:5:\"light\";s:4:\"name\";s:5:\"Light\";}}s:11:\"description\";s:18:\"jake_michael_light\";s:5:\"width\";s:3:\"552\";s:6:\"height\";s:3:\"300\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-03-05 09:20:21\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"4\";}i:385;a:13:{s:2:\"id\";s:3:\"321\";s:6:\"handle\";s:23:\"colin_johnson_light.jpg\";s:5:\"video\";s:23:\"colin_johnson_light.mp4\";s:4:\"name\";s:19:\"colin_johnson_light\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"26\";s:6:\"handle\";s:5:\"light\";s:4:\"name\";s:5:\"Light\";}}s:11:\"description\";s:19:\"colin_johnson_light\";s:5:\"width\";s:3:\"552\";s:6:\"height\";s:3:\"300\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-03-05 09:20:21\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"4\";}i:386;a:13:{s:2:\"id\";s:3:\"320\";s:6:\"handle\";s:21:\"colin_morris_dark.jpg\";s:5:\"video\";s:21:\"colin_morris_dark.mp4\";s:4:\"name\";s:17:\"colin_morris_dark\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"25\";s:6:\"handle\";s:4:\"dark\";s:4:\"name\";s:4:\"Dark\";}}s:11:\"description\";s:17:\"colin_morris_dark\";s:5:\"width\";s:3:\"552\";s:6:\"height\";s:3:\"300\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-02-21 09:07:08\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"4\";}i:387;a:13:{s:2:\"id\";s:3:\"319\";s:6:\"handle\";s:22:\"justin_cooper_dark.jpg\";s:5:\"video\";s:22:\"justin_cooper_dark.mp4\";s:4:\"name\";s:18:\"justin_cooper_dark\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"25\";s:6:\"handle\";s:4:\"dark\";s:4:\"name\";s:4:\"Dark\";}}s:11:\"description\";s:18:\"justin_cooper_dark\";s:5:\"width\";s:3:\"552\";s:6:\"height\";s:3:\"300\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-02-21 09:07:08\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"4\";}i:388;a:13:{s:2:\"id\";s:3:\"318\";s:6:\"handle\";s:21:\"james-dodson_dark.jpg\";s:5:\"video\";s:21:\"james-dodson_dark.mp4\";s:4:\"name\";s:17:\"james-dodson_dark\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"25\";s:6:\"handle\";s:4:\"dark\";s:4:\"name\";s:4:\"Dark\";}}s:11:\"description\";s:17:\"james-dodson_dark\";s:5:\"width\";s:3:\"552\";s:6:\"height\";s:3:\"300\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-02-21 09:07:08\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"4\";}i:389;a:13:{s:2:\"id\";s:3:\"317\";s:6:\"handle\";s:23:\"robert_sanders_dark.jpg\";s:5:\"video\";s:23:\"robert_sanders_dark.mp4\";s:4:\"name\";s:19:\"robert_sanders_dark\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"25\";s:6:\"handle\";s:4:\"dark\";s:4:\"name\";s:4:\"Dark\";}}s:11:\"description\";s:19:\"robert_sanders_dark\";s:5:\"width\";s:3:\"552\";s:6:\"height\";s:3:\"300\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-02-21 09:07:08\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"4\";}i:390;a:13:{s:2:\"id\";s:3:\"316\";s:6:\"handle\";s:21:\"emily_carney_dark.jpg\";s:5:\"video\";s:21:\"emily_carney_dark.mp4\";s:4:\"name\";s:17:\"emily_carney_dark\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"25\";s:6:\"handle\";s:4:\"dark\";s:4:\"name\";s:4:\"Dark\";}}s:11:\"description\";s:17:\"emily_carney_dark\";s:5:\"width\";s:3:\"552\";s:6:\"height\";s:3:\"300\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-02-21 09:07:08\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"4\";}i:391;a:13:{s:2:\"id\";s:3:\"315\";s:6:\"handle\";s:22:\"michael-smith_dark.jpg\";s:5:\"video\";s:22:\"michael-smith_dark.mp4\";s:4:\"name\";s:18:\"michael-smith_dark\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"25\";s:6:\"handle\";s:4:\"dark\";s:4:\"name\";s:4:\"Dark\";}}s:11:\"description\";s:18:\"michael-smith_dark\";s:5:\"width\";s:3:\"552\";s:6:\"height\";s:3:\"300\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-02-21 09:07:08\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"4\";}i:392;a:13:{s:2:\"id\";s:3:\"314\";s:6:\"handle\";s:23:\"sandra_johnson_dark.jpg\";s:5:\"video\";s:23:\"sandra_johnson_dark.mp4\";s:4:\"name\";s:19:\"sandra_johnson_dark\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"25\";s:6:\"handle\";s:4:\"dark\";s:4:\"name\";s:4:\"Dark\";}}s:11:\"description\";s:19:\"sandra_johnson_dark\";s:5:\"width\";s:3:\"552\";s:6:\"height\";s:3:\"300\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-02-21 09:07:08\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"4\";}i:393;a:13:{s:2:\"id\";s:3:\"313\";s:6:\"handle\";s:22:\"robert_bolton_dark.jpg\";s:5:\"video\";s:22:\"robert_bolton_dark.mp4\";s:4:\"name\";s:18:\"robert_bolton_dark\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"25\";s:6:\"handle\";s:4:\"dark\";s:4:\"name\";s:4:\"Dark\";}}s:11:\"description\";s:18:\"robert_bolton_dark\";s:5:\"width\";s:3:\"552\";s:6:\"height\";s:3:\"300\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-02-21 09:07:08\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"4\";}i:394;a:13:{s:2:\"id\";s:3:\"312\";s:6:\"handle\";s:25:\"elegant_captions_dark.png\";s:5:\"video\";s:25:\"elegant_captions_dark.mp4\";s:4:\"name\";s:21:\"elegant_captions_dark\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"25\";s:6:\"handle\";s:4:\"dark\";s:4:\"name\";s:4:\"Dark\";}}s:11:\"description\";s:21:\"elegant_captions_dark\";s:5:\"width\";s:3:\"552\";s:6:\"height\";s:3:\"300\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-02-18 14:41:45\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"4\";}i:395;a:13:{s:2:\"id\";s:3:\"311\";s:6:\"handle\";s:19:\"Caption_Dark_06.png\";s:5:\"video\";s:19:\"Caption_Dark_06.mp4\";s:4:\"name\";s:15:\"Caption_Dark_06\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"25\";s:6:\"handle\";s:4:\"dark\";s:4:\"name\";s:4:\"Dark\";}}s:11:\"description\";s:15:\"Caption_Dark_06\";s:5:\"width\";s:3:\"414\";s:6:\"height\";s:3:\"225\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-02-14 13:18:35\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"4\";}i:396;a:13:{s:2:\"id\";s:3:\"310\";s:6:\"handle\";s:19:\"Header_Light_02.png\";s:5:\"video\";s:19:\"Header_Light_02.mp4\";s:4:\"name\";s:15:\"Header_Light_02\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"26\";s:6:\"handle\";s:5:\"light\";s:4:\"name\";s:5:\"Light\";}}s:11:\"description\";s:15:\"Header_Light_02\";s:5:\"width\";s:3:\"552\";s:6:\"height\";s:3:\"300\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-02-14 13:18:35\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"4\";}i:397;a:13:{s:2:\"id\";s:3:\"309\";s:6:\"handle\";s:21:\"Columns_4_Dark_01.png\";s:5:\"video\";s:21:\"Columns_4_Dark_01.mp4\";s:4:\"name\";s:17:\"Columns_4_Dark_01\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"25\";s:6:\"handle\";s:4:\"dark\";s:4:\"name\";s:4:\"Dark\";}}s:11:\"description\";s:17:\"Columns_4_Dark_01\";s:5:\"width\";s:3:\"552\";s:6:\"height\";s:3:\"300\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-02-14 13:18:35\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"4\";}i:398;a:13:{s:2:\"id\";s:3:\"308\";s:6:\"handle\";s:18:\"Header_Dark_01.png\";s:5:\"video\";s:18:\"Header_Dark_01.mp4\";s:4:\"name\";s:14:\"Header_Dark_01\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"25\";s:6:\"handle\";s:4:\"dark\";s:4:\"name\";s:4:\"Dark\";}}s:11:\"description\";s:14:\"Header_Dark_01\";s:5:\"width\";s:3:\"552\";s:6:\"height\";s:3:\"300\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-02-14 13:18:35\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"4\";}i:399;a:13:{s:2:\"id\";s:3:\"307\";s:6:\"handle\";s:19:\"Caption_Dark_03.png\";s:5:\"video\";s:19:\"Caption_Dark_03.mp4\";s:4:\"name\";s:15:\"Caption_Dark_03\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"25\";s:6:\"handle\";s:4:\"dark\";s:4:\"name\";s:4:\"Dark\";}}s:11:\"description\";s:15:\"Caption_Dark_03\";s:5:\"width\";s:3:\"552\";s:6:\"height\";s:3:\"300\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-02-14 13:18:35\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"4\";}i:400;a:13:{s:2:\"id\";s:3:\"306\";s:6:\"handle\";s:21:\"Columns_3_Dark_01.png\";s:5:\"video\";s:21:\"Columns_3_Dark_01.mp4\";s:4:\"name\";s:17:\"Columns_3_Dark_01\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"25\";s:6:\"handle\";s:4:\"dark\";s:4:\"name\";s:4:\"Dark\";}}s:11:\"description\";s:17:\"Columns_3_Dark_01\";s:5:\"width\";s:3:\"552\";s:6:\"height\";s:3:\"300\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-02-14 13:18:35\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"4\";}i:401;a:13:{s:2:\"id\";s:3:\"305\";s:6:\"handle\";s:19:\"Caption_Dark_05.png\";s:5:\"video\";s:19:\"Caption_Dark_05.mp4\";s:4:\"name\";s:15:\"Caption_Dark_05\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"25\";s:6:\"handle\";s:4:\"dark\";s:4:\"name\";s:4:\"Dark\";}}s:11:\"description\";s:15:\"Caption_Dark_05\";s:5:\"width\";s:4:\"1104\";s:6:\"height\";s:3:\"600\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-02-14 13:18:35\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"4\";}i:402;a:13:{s:2:\"id\";s:3:\"304\";s:6:\"handle\";s:20:\"Caption_Light_06.png\";s:5:\"video\";s:20:\"Caption_Light_06.mp4\";s:4:\"name\";s:16:\"Caption_Light_06\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"26\";s:6:\"handle\";s:5:\"light\";s:4:\"name\";s:5:\"Light\";}}s:11:\"description\";s:16:\"Caption_Light_06\";s:5:\"width\";s:3:\"828\";s:6:\"height\";s:3:\"450\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-02-14 13:18:35\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"4\";}i:403;a:13:{s:2:\"id\";s:3:\"303\";s:6:\"handle\";s:19:\"Header_Light_01.png\";s:5:\"video\";s:19:\"Header_Light_01.mp4\";s:4:\"name\";s:15:\"Header_Light_01\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"26\";s:6:\"handle\";s:5:\"light\";s:4:\"name\";s:5:\"Light\";}}s:11:\"description\";s:15:\"Header_Light_01\";s:5:\"width\";s:3:\"552\";s:6:\"height\";s:3:\"300\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-02-14 13:18:35\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"4\";}i:404;a:13:{s:2:\"id\";s:3:\"302\";s:6:\"handle\";s:20:\"Caption_Light_03.png\";s:5:\"video\";s:20:\"Caption_Light_03.mp4\";s:4:\"name\";s:16:\"Caption_Light_03\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"26\";s:6:\"handle\";s:5:\"light\";s:4:\"name\";s:5:\"Light\";}}s:11:\"description\";s:16:\"Caption_Light_03\";s:5:\"width\";s:3:\"552\";s:6:\"height\";s:3:\"300\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-02-14 13:18:35\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"4\";}i:405;a:13:{s:2:\"id\";s:3:\"301\";s:6:\"handle\";s:19:\"Caption_Dark_01.png\";s:5:\"video\";s:19:\"Caption_Dark_01.mp4\";s:4:\"name\";s:15:\"Caption_Dark_01\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"25\";s:6:\"handle\";s:4:\"dark\";s:4:\"name\";s:4:\"Dark\";}}s:11:\"description\";s:15:\"Caption_Dark_01\";s:5:\"width\";s:3:\"552\";s:6:\"height\";s:3:\"300\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-02-14 13:18:35\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"4\";}i:406;a:13:{s:2:\"id\";s:3:\"300\";s:6:\"handle\";s:21:\"PromoCode_Dark_01.png\";s:5:\"video\";s:21:\"PromoCode_Dark_01.mp4\";s:4:\"name\";s:17:\"PromoCode_Dark_01\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"25\";s:6:\"handle\";s:4:\"dark\";s:4:\"name\";s:4:\"Dark\";}}s:11:\"description\";s:17:\"PromoCode_Dark_01\";s:5:\"width\";s:3:\"552\";s:6:\"height\";s:3:\"300\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-02-14 13:18:35\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"4\";}i:407;a:13:{s:2:\"id\";s:3:\"299\";s:6:\"handle\";s:19:\"Caption_Dark_02.png\";s:5:\"video\";s:19:\"Caption_Dark_02.mp4\";s:4:\"name\";s:15:\"Caption_Dark_02\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"25\";s:6:\"handle\";s:4:\"dark\";s:4:\"name\";s:4:\"Dark\";}}s:11:\"description\";s:15:\"Caption_Dark_02\";s:5:\"width\";s:3:\"552\";s:6:\"height\";s:3:\"300\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-02-14 13:18:35\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"4\";}i:408;a:13:{s:2:\"id\";s:3:\"298\";s:6:\"handle\";s:18:\"Header_Dark_02.png\";s:5:\"video\";s:18:\"Header_Dark_02.mp4\";s:4:\"name\";s:14:\"Header_Dark_02\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"25\";s:6:\"handle\";s:4:\"dark\";s:4:\"name\";s:4:\"Dark\";}}s:11:\"description\";s:14:\"Header_Dark_02\";s:5:\"width\";s:3:\"552\";s:6:\"height\";s:3:\"300\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-02-14 13:18:35\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"4\";}i:409;a:13:{s:2:\"id\";s:3:\"297\";s:6:\"handle\";s:22:\"Columns_3_Light_01.png\";s:5:\"video\";s:22:\"Columns_3_Light_01.mp4\";s:4:\"name\";s:18:\"Columns_3_Light_01\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"26\";s:6:\"handle\";s:5:\"light\";s:4:\"name\";s:5:\"Light\";}}s:11:\"description\";s:18:\"Columns_3_Light_01\";s:5:\"width\";s:3:\"552\";s:6:\"height\";s:3:\"300\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-02-14 13:18:35\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"4\";}i:410;a:13:{s:2:\"id\";s:3:\"296\";s:6:\"handle\";s:20:\"Caption_Light_01.png\";s:5:\"video\";s:20:\"Caption_Light_01.mp4\";s:4:\"name\";s:16:\"Caption_Light_01\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"26\";s:6:\"handle\";s:5:\"light\";s:4:\"name\";s:5:\"Light\";}}s:11:\"description\";s:16:\"Caption_Light_01\";s:5:\"width\";s:3:\"552\";s:6:\"height\";s:3:\"300\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-02-14 13:18:35\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"4\";}i:411;a:13:{s:2:\"id\";s:3:\"295\";s:6:\"handle\";s:19:\"Caption_Dark_04.png\";s:5:\"video\";s:19:\"Caption_Dark_04.mp4\";s:4:\"name\";s:15:\"Caption_Dark_04\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"25\";s:6:\"handle\";s:4:\"dark\";s:4:\"name\";s:4:\"Dark\";}}s:11:\"description\";s:15:\"Caption_Dark_04\";s:5:\"width\";s:3:\"552\";s:6:\"height\";s:3:\"300\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-02-14 13:18:35\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"4\";}i:412;a:13:{s:2:\"id\";s:3:\"294\";s:6:\"handle\";s:20:\"Caption_Light_02.png\";s:5:\"video\";s:20:\"Caption_Light_02.mp4\";s:4:\"name\";s:16:\"Caption_Light_02\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"26\";s:6:\"handle\";s:5:\"light\";s:4:\"name\";s:5:\"Light\";}}s:11:\"description\";s:16:\"Caption_Light_02\";s:5:\"width\";s:3:\"828\";s:6:\"height\";s:3:\"450\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-02-14 13:18:35\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"4\";}i:413;a:13:{s:2:\"id\";s:3:\"293\";s:6:\"handle\";s:20:\"Caption_Light_04.png\";s:5:\"video\";s:20:\"Caption_Light_04.mp4\";s:4:\"name\";s:16:\"Caption_Light_04\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"26\";s:6:\"handle\";s:5:\"light\";s:4:\"name\";s:5:\"Light\";}}s:11:\"description\";s:16:\"Caption_Light_04\";s:5:\"width\";s:4:\"1104\";s:6:\"height\";s:3:\"600\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-02-14 13:18:35\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"4\";}i:414;a:13:{s:2:\"id\";s:3:\"292\";s:6:\"handle\";s:22:\"Columns_4_Light_01.png\";s:5:\"video\";s:22:\"Columns_4_Light_01.mp4\";s:4:\"name\";s:18:\"Columns_4_Light_01\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"26\";s:6:\"handle\";s:5:\"light\";s:4:\"name\";s:5:\"Light\";}}s:11:\"description\";s:18:\"Columns_4_Light_01\";s:5:\"width\";s:3:\"552\";s:6:\"height\";s:3:\"300\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-02-14 13:18:35\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"4\";}i:415;a:13:{s:2:\"id\";s:3:\"291\";s:6:\"handle\";s:20:\"Caption_Light_05.png\";s:5:\"video\";s:20:\"Caption_Light_05.mp4\";s:4:\"name\";s:16:\"Caption_Light_05\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"26\";s:6:\"handle\";s:5:\"light\";s:4:\"name\";s:5:\"Light\";}}s:11:\"description\";s:16:\"Caption_Light_05\";s:5:\"width\";s:3:\"552\";s:6:\"height\";s:3:\"300\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-02-14 13:18:35\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"4\";}i:416;a:13:{s:2:\"id\";s:3:\"290\";s:6:\"handle\";s:22:\"PromoCode_Light_01.png\";s:5:\"video\";s:22:\"PromoCode_Light_01.mp4\";s:4:\"name\";s:18:\"PromoCode_Light_01\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"26\";s:6:\"handle\";s:5:\"light\";s:4:\"name\";s:5:\"Light\";}}s:11:\"description\";s:18:\"PromoCode_Light_01\";s:5:\"width\";s:3:\"552\";s:6:\"height\";s:3:\"300\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-02-14 13:18:35\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"4\";}}s:4:\"tags\";a:18:{i:28;a:3:{s:2:\"id\";s:2:\"28\";s:6:\"handle\";s:11:\"abstraction\";s:4:\"name\";s:11:\"Abstraction\";}i:1;a:3:{s:2:\"id\";s:1:\"1\";s:6:\"handle\";s:11:\"accessories\";s:4:\"name\";s:11:\"Accessories\";}i:5;a:3:{s:2:\"id\";s:1:\"5\";s:6:\"handle\";s:3:\"art\";s:4:\"name\";s:3:\"Art\";}i:20;a:3:{s:2:\"id\";s:2:\"20\";s:6:\"handle\";s:5:\"Beach\";s:4:\"name\";s:5:\"Beach\";}i:21;a:3:{s:2:\"id\";s:2:\"21\";s:6:\"handle\";s:4:\"City\";s:4:\"name\";s:4:\"City\";}i:25;a:3:{s:2:\"id\";s:2:\"25\";s:6:\"handle\";s:4:\"dark\";s:4:\"name\";s:4:\"Dark\";}i:2;a:3:{s:2:\"id\";s:1:\"2\";s:6:\"handle\";s:6:\"device\";s:4:\"name\";s:6:\"Device\";}i:16;a:3:{s:2:\"id\";s:2:\"16\";s:6:\"handle\";s:4:\"food\";s:4:\"name\";s:4:\"Food\";}i:26;a:3:{s:2:\"id\";s:2:\"26\";s:6:\"handle\";s:5:\"light\";s:4:\"name\";s:5:\"Light\";}i:18;a:3:{s:2:\"id\";s:2:\"18\";s:6:\"handle\";s:4:\"misc\";s:4:\"name\";s:4:\"Misc\";}i:4;a:3:{s:2:\"id\";s:1:\"4\";s:6:\"handle\";s:5:\"music\";s:4:\"name\";s:5:\"Music\";}i:19;a:3:{s:2:\"id\";s:2:\"19\";s:6:\"handle\";s:6:\"nature\";s:4:\"name\";s:6:\"Nature\";}i:23;a:3:{s:2:\"id\";s:2:\"23\";s:6:\"handle\";s:5:\"Night\";s:4:\"name\";s:5:\"Night\";}i:3;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}i:24;a:3:{s:2:\"id\";s:2:\"24\";s:6:\"handle\";s:6:\"People\";s:4:\"name\";s:6:\"People\";}i:22;a:3:{s:2:\"id\";s:2:\"22\";s:6:\"handle\";s:3:\"Sky\";s:4:\"name\";s:3:\"Sky\";}i:29;a:3:{s:2:\"id\";s:2:\"29\";s:6:\"handle\";s:5:\"space\";s:4:\"name\";s:5:\"Space\";}i:27;a:3:{s:2:\"id\";s:2:\"27\";s:6:\"handle\";s:5:\"sport\";s:4:\"name\";s:5:\"Sport\";}}}','no'),(794,'revslider-templates-check','1695652383','yes'),(795,'revslider-templates-hash','f1fc8b7accb7c4a965697b2ef76cda35','yes'),(796,'rs-templates-new','','no'),(798,'rs-templates-counter','0','no'),(799,'revslider_table_version','1.0.12','yes'),(829,'bsf_last_update_check','1695791581','yes'),(802,'bsf_force_check_extensions','','no'),(2706,'widget_presscore-portfolio','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(2705,'recently_activated','a:0:{}','yes'),(808,'ultimate_row','enable','yes'),(809,'ultimate_animation','disable','yes'),(810,'revslider_update_version','6.6.0','yes'),(811,'ultimate_google_fonts','a:0:{}','no'),(812,'ultimate_selected_google_fonts','a:0:{}','yes'),(813,'widget_rev-slider-widget','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(814,'vc_version','7.0','yes'),(816,'wpb_js_the7_js_composer_purchase_code','16328aec-6188-4c79-ab55-baa8e6fc0fa6','no'),(818,'bsf-updater-version','1.27.15','yes'),(819,'brainstrom_products','a:1:{s:7:\"plugins\";a:1:{i:6892199;a:32:{s:2:\"id\";s:7:\"6892199\";s:4:\"name\";s:41:\"Ultimate Addons for WPBakery Page Builder\";s:4:\"slug\";s:18:\"Ultimate_VC_Addons\";s:10:\"short_name\";s:0:\"\";s:11:\"description\";s:153:\"The top seller new plugin of 2016. Install Ultimate with WPBakery Page Builder and you will probably have everything you need to build stunning websites.\";s:7:\"version\";s:7:\"3.19.14\";s:12:\"download_url\";s:0:\"\";s:12:\"version_beta\";s:0:\"\";s:17:\"download_url_beta\";s:0:\"\";s:6:\"tested\";s:3:\"6.0\";s:14:\"privacy_policy\";s:132:\"https://store.brainstormforce.com/privacy-policy/?utm_source=license-form&utm_medium=privacy-policy&utm_campaign=graupi-license-form\";s:16:\"terms_conditions\";s:144:\"https://store.brainstormforce.com/terms-and-conditions/?utm_source=license-form&utm_medium=terms-and-conditions&utm_campaign=graupi-license-form\";s:12:\"purchase_url\";s:74:\"https://codecanyon.net/cart/add_items?item_ids=6892199&ref=BrainstormForce\";s:13:\"changelog_url\";s:47:\"https://ultimate.brainstormforce.com/changelog/\";s:4:\"type\";s:6:\"plugin\";s:8:\"in_house\";s:4:\"true\";s:9:\"on_market\";s:4:\"true\";s:15:\"is_product_free\";s:5:\"false\";s:14:\"has-extensions\";s:5:\"false\";s:13:\"support_forum\";s:37:\"http://brainstormforce.freshdesk.com/\";s:25:\"after_registration_action\";s:0:\"\";s:13:\"product_image\";s:65:\"//support.brainstormforce.com/wp-content/uploads/2017/07/uavc.jpg\";s:32:\"show_on_register_licence_listing\";s:4:\"true\";s:15:\"show_on_listing\";s:4:\"true\";s:13:\"is_support_on\";s:4:\"true\";s:14:\"envato_item_id\";s:7:\"6892199\";s:8:\"template\";s:41:\"Ultimate_VC_Addons/Ultimate_VC_Addons.php\";s:6:\"remote\";s:7:\"3.19.18\";s:12:\"purchase_key\";s:0:\"\";s:6:\"status\";s:14:\"not-registered\";s:7:\"message\";s:0:\"\";s:12:\"product_name\";s:41:\"Ultimate Addons for WPBakery Page Builder\";}}}','yes'),(820,'brainstrom_bundled_products','a:0:{}','yes'),(821,'ultimate_updater','enabled','yes'),(822,'ultimate_constants','a:3:{s:24:\"ULTIMATE_NO_UPDATE_CHECK\";b:0;s:28:\"ULTIMATE_NO_EDIT_PAGE_NOTICE\";b:0;s:30:\"ULTIMATE_NO_PLUGIN_PAGE_NOTICE\";b:0;}','yes'),(823,'ultimate_modules','a:44:{i:0;s:18:\"ultimate_animation\";i:1;s:16:\"ultimate_buttons\";i:2;s:18:\"ultimate_countdown\";i:3;s:17:\"ultimate_flip_box\";i:4;s:20:\"ultimate_google_maps\";i:5;s:22:\"ultimate_google_trends\";i:6;s:17:\"ultimate_headings\";i:7;s:22:\"ultimate_icon_timeline\";i:8;s:17:\"ultimate_info_box\";i:9;s:20:\"ultimate_info_circle\";i:10;s:18:\"ultimate_info_list\";i:11;s:20:\"ultimate_info_tables\";i:12;s:28:\"ultimate_interactive_banners\";i:13;s:29:\"ultimate_interactive_banner_2\";i:14;s:15:\"ultimate_modals\";i:15;s:17:\"ultimate_parallax\";i:16;s:23:\"ultimate_pricing_tables\";i:17;s:15:\"ultimate_spacer\";i:18;s:22:\"ultimate_stats_counter\";i:19;s:20:\"ultimate_swatch_book\";i:20;s:14:\"ultimate_icons\";i:21;s:18:\"ultimate_list_icon\";i:22;s:17:\"ultimate_carousel\";i:23;s:18:\"ultimate_fancytext\";i:24;s:22:\"ultimate_highlight_box\";i:25;s:20:\"ultimate_info_banner\";i:26;s:15:\"ultimate_ihover\";i:27;s:16:\"ultimate_hotspot\";i:28;s:21:\"ultimate_video_banner\";i:29;s:11:\"woocomposer\";i:30;s:20:\"ultimate_dual_button\";i:31;s:13:\"ultimate_link\";i:32;s:19:\"ultimate_fancy_text\";i:33;s:23:\"ultimate_hightlight_box\";i:34;s:20:\"ultimate_content_box\";i:35;s:24:\"ultimate_image_separator\";i:36;s:27:\"ultimate_expandable_section\";i:37;s:12:\"ultimate_tab\";i:38;s:23:\"ultimate_sticky_section\";i:39;s:13:\"ultimate_team\";i:40;s:21:\"ultimate_range_slider\";i:41;s:15:\"ultimate_videos\";i:42;s:16:\"ultimate_ribbons\";i:43;s:20:\"ultimate_dual_colors\";}','yes'),(831,'wpb_js_composer_license_activation_notified','yes','yes'),(832,'rs_cache_overlay','6.6.15','yes'),(833,'revslider_update_revision_current','6.6.0','yes'),(2704,'the7pt_flush_rewrite_rules','','yes'),(2707,'widget_presscore-photos','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(2708,'widget_presscore-team','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(2709,'widget_presscore-testimonials-list','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(2710,'widget_presscore-testimonials-slider','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(2728,'the7pt_db_version','2.2.4','yes'),(882,'presscore_less_css_is_writable','1','yes'),(883,'the7_dynamic_css_cache','a:0:{}','yes'),(884,'the7_dynamic_css_version','df32389b5cf0','yes'),(54739,'_transient_timeout_wc_product_loop_274cb36e64025559649b86ed95c8ef25','1696998933','no'),(66223,'_transient_timeout_orders-all-statuses','1696119423','no'),(66224,'_transient_orders-all-statuses','a:2:{s:7:\"version\";s:10:\"1660125611\";s:5:\"value\";a:0:{}}','no'),(45032,'font-awesome','a:8:{s:6:\"usePro\";b:0;s:6:\"compat\";b:1;s:10:\"technology\";s:7:\"webfont\";s:14:\"pseudoElements\";b:1;s:8:\"kitToken\";N;s:8:\"apiToken\";b:0;s:11:\"dataVersion\";i:4;s:7:\"version\";s:5:\"6.4.2\";}','yes'),(45033,'font-awesome-conflict-detection','a:2:{s:20:\"detectConflictsUntil\";i:0;s:19:\"unregisteredClients\";a:0:{}}','yes'),(45034,'_transient_timeout_font-awesome-last-used-release','1723821210','no'),(45035,'_transient_font-awesome-last-used-release','a:5:{s:7:\"version\";s:5:\"6.4.2\";s:7:\"use_pro\";b:0;s:7:\"use_svg\";b:0;s:17:\"use_compatibility\";b:1;s:9:\"resources\";a:2:{s:3:\"all\";O:32:\"FortAwesome\\FontAwesome_Resource\":2:{s:9:\"\0*\0source\";s:55:\"https://use.fontawesome.com/releases/v6.4.2/css/all.css\";s:16:\"\0*\0integrity_key\";s:71:\"sha384-blOohCVdhjmtROpu8+CfTnUWham9nkX7P7OZQMst+RUnhtoY/9qemFAkIKOYxDI3\";}s:8:\"v4-shims\";O:32:\"FortAwesome\\FontAwesome_Resource\":2:{s:9:\"\0*\0source\";s:60:\"https://use.fontawesome.com/releases/v6.4.2/css/v4-shims.css\";s:16:\"\0*\0integrity_key\";s:71:\"sha384-IqMDcR2qh8kGcGdRrxwop5R2GiUY5h8aDR/LhYxPYiXh3sAAGGDkFvFqWgFvTsTd\";}}}','no'),(46036,'woocommerce_attribute_lookup_enabled','yes','yes'),(15102,'wpb_js_templates','a:3:{s:26:\"template_base_1_3428394311\";a:2:{s:4:\"name\";s:15:\"template_base_1\";s:8:\"template\";s:7673:\"[vc_row full_width=\"stretch_row_content\" bg_type=\"image\" parallax_style=\"vcpb-default\" bg_image_new=\"id^2524|url^https://farmchemie.yasithawd.com/wp-content/uploads/2022/09/marketbgimg1.png|caption^null|alt^null|title^marketbgimg1|description^null\" bg_image_repeat=\"no-repeat\" css=\".vc_custom_1662730336770{margin-right: 0px !important;margin-left: 0px !important;padding-right: 0px !important;padding-left: 0px !important;}\"][vc_column css=\".vc_custom_1662730433019{padding-right: 0px !important;padding-left: 0px !important;}\"][ultimate_heading main_heading=\"SELECT YOUR MARKET/REGION\" main_heading_color=\"#6e368d\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:48px;\"][/ultimate_heading][vc_empty_space height=\"300px\" css=\".vc_custom_1662447237222{margin: 0px !important;padding: 0px !important;background-image: url(https://farmchemie.yasithawd.com/wp-content/uploads/2022/09/marketbgimg1-sp.png?id=2527) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\"][vc_row_inner][vc_column_inner el_class=\"customborderradius1\" width=\"1/3\" css=\".vc_custom_1662539141341{background-color: #6e368d !important;}\"][ult_animation_block animation=\"fadeIn\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][bsf-info-box icon_type=\"custom\" icon_img=\"id^2537|url^https://farmchemie.yasithawd.com/wp-content/uploads/2022/09/earthicon-1.png|caption^null|alt^null|title^earthicon-1|description^null\" img_width=\"100\" title=\"Global\" pos=\"right\" title_font_style=\"font-weight:bold;\" title_font_size=\"desktop:48px;\" title_font_color=\"#ffffff\" desc_font_size=\"desktop:24px;\" desc_font_color=\"#ffffff\"]International Market[/bsf-info-box][/ult_animation_block][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner el_class=\"customborderradius1\" width=\"1/3\" css=\".vc_custom_1662539133598{background-color: #059444 !important;}\"][ult_animation_block animation=\"fadeIn\" animation_duration=\"3\" animation_delay=\"0\" animation_iteration_count=\"1\"][bsf-info-box icon_type=\"custom\" icon_img=\"id^2536|url^https://farmchemie.yasithawd.com/wp-content/uploads/2022/09/srilankaicon-1.png|caption^null|alt^null|title^srilankaicon-1|description^null\" img_width=\"100\" title=\"Local\" pos=\"left\" title_font_style=\"font-weight:bold;\" title_font_size=\"desktop:48px;\" title_font_color=\"#ffffff\" desc_font_size=\"desktop:24px;\" desc_font_color=\"#ffffff\"]Sri Lankan Market[/bsf-info-box][/ult_animation_block][/vc_column_inner][/vc_row_inner][vc_row_inner equal_height=\"yes\" css=\".vc_custom_1662370166856{margin-top: 20px !important;margin-right: 50px !important;margin-left: 50px !important;}\"][vc_column_inner width=\"5/12\"][vc_column_text]FARMCHEMIE is a world-renowned manufacturer of feed additives and feed supplements. We offer our FarmStar and PetStar branded products to the international markets.[/vc_column_text][/vc_column_inner][vc_column_inner width=\"2/12\"][/vc_column_inner][vc_column_inner width=\"5/12\"][vc_column_text]FARMCHEMIE offers an island wide distribution, technical consultation and poultry vaccination services of high-quality animal healthcare products from world-renowned suppliers.[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_row_inner equal_height=\"yes\" content_placement=\"middle\" css=\".vc_custom_1662460080909{margin-top: 20px !important;margin-right: 50px !important;margin-bottom: 10px !important;margin-left: 50px !important;}\"][vc_column_inner width=\"2/12\"][vc_single_image image=\"2599\" img_size=\"full\"][/vc_column_inner][vc_column_inner width=\"1/12\"][/vc_column_inner][vc_column_inner width=\"2/12\"][vc_single_image image=\"2598\" img_size=\"full\"][/vc_column_inner][vc_column_inner width=\"2/12\"][/vc_column_inner][vc_column_inner width=\"1/12\"][/vc_column_inner][vc_column_inner width=\"1/12\"][vc_single_image image=\"2593\" img_size=\"full\"][vc_single_image image=\"2596\" img_size=\"full\"][/vc_column_inner][vc_column_inner width=\"1/12\"][vc_single_image image=\"2595\" img_size=\"full\"][/vc_column_inner][vc_column_inner width=\"1/12\"][vc_single_image image=\"2594\" img_size=\"full\"][vc_single_image image=\"2597\" img_size=\"full\"][/vc_column_inner][vc_column_inner width=\"1/12\"][/vc_column_inner][/vc_row_inner][vc_row_inner equal_height=\"yes\" css=\".vc_custom_1662370166856{margin-top: 20px !important;margin-right: 50px !important;margin-left: 50px !important;}\"][vc_column_inner width=\"5/12\"][vc_column_text]We provide toll-manufacturing services to globally recognized marketing companies for the Asian &amp; African markets. Our manufacturing plant is equipped with fully automated production lines from Bühler.[/vc_column_text][/vc_column_inner][vc_column_inner width=\"2/12\"][/vc_column_inner][vc_column_inner width=\"5/12\"][vc_column_text]We offer both locally manufactured and imported products to cater the poultry, dairy, swine, pet-care and aqua markets.[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_row_inner equal_height=\"yes\" content_placement=\"middle\" css=\".vc_custom_1662460080909{margin-top: 20px !important;margin-right: 50px !important;margin-bottom: 10px !important;margin-left: 50px !important;}\"][vc_column_inner width=\"5/12\"][vc_single_image image=\"2600\" img_size=\"full\" alignment=\"center\"][/vc_column_inner][vc_column_inner width=\"2/12\"][/vc_column_inner][vc_column_inner width=\"5/12\"][vc_single_image image=\"2615\" img_size=\"full\" alignment=\"center\"][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner width=\"1/2\"][ult_buttons btn_title=\"READ MORE\" btn_align=\"ubtn-center\" btn_size=\"ubtn-custom\" btn_width=\"300\" btn_height=\"60\" btn_title_color=\"#6e368d\" btn_bg_color=\"rgba(224,224,224,0.01)\" icon=\"dt-icon-the7-menu-014\" icon_size=\"40\" icon_color=\"#6e368d\" btn_icon_pos=\"ubtn-sep-icon-at-right\" btn_font_style=\"font-weight:bold;\" btn_font_size=\"desktop:24px;\"][/vc_column_inner][vc_column_inner width=\"1/2\"][ult_buttons btn_title=\"READ MORE\" btn_align=\"ubtn-center\" btn_size=\"ubtn-custom\" btn_width=\"300\" btn_height=\"60\" btn_title_color=\"#059444\" btn_bg_color=\"rgba(224,224,224,0.01)\" icon=\"dt-icon-the7-menu-013\" icon_size=\"40\" icon_color=\"#059444\" btn_icon_pos=\"ubtn-sep-icon-at-left\" btn_font_style=\"font-weight:bold;\" btn_font_size=\"desktop:24px;\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row full_width=\"stretch_row_content_no_spaces\" full_height=\"yes\" columns_placement=\"top\" bg_type=\"image\" parallax_style=\"vcpb-default\" bg_image_new=\"id^2604|url^https://farmchemie.yasithawd.com/wp-content/uploads/2022/09/rowimg_mod_4HigherRes1.jpg|caption^null|alt^null|title^rowimg_mod_4HigherRes1|description^null\" bg_image_repeat=\"no-repeat\"][vc_column][ultimate_heading main_heading=\"SPIRIT OF INNOVATION IN ANIMAL HEALTH\" main_heading_color=\"#6e368d\" main_heading_style=\"font-weight:bold;\" main_heading_font_size=\"desktop:48px;\"][/ultimate_heading][vc_row_inner css=\".vc_custom_1662456998651{padding-bottom: 500px !important;}\"][vc_column_inner][/vc_column_inner][/vc_row_inner][vc_row_inner content_placement=\"bottom\" css=\".vc_custom_1662458571859{padding-right: 0px !important;padding-bottom: 10px !important;padding-left: 0px !important;}\"][vc_column_inner el_class=\"customborderradius1\" width=\"6/12\" css=\".vc_custom_1662539148421{background-color: rgba(255,255,255,0.5) !important;*background-color: rgb(255,255,255) !important;}\"][vc_single_image image=\"2567\" img_size=\"full\" alignment=\"center\"][/vc_column_inner][vc_column_inner width=\"3/12\"][/vc_column_inner][vc_column_inner width=\"3/12\" css=\".vc_custom_1662371690284{background-color: #6e368d !important;}\"][vc_single_image image=\"2566\" img_size=\"full\" alignment=\"center\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row]\";}s:28:\"about-temp-test-1_3937926202\";a:2:{s:4:\"name\";s:17:\"about temp test 1\";s:8:\"template\";s:6447:\"[vc_row][vc_column][ultimate_heading main_heading=\"Our History\" main_heading_color=\"#762888\" alignment=\"left\"][/ultimate_heading][icon_timeline timeline_style=\"jstime\" timeline_line_color=\"#059444\" time_sep_color=\"#059444\" time_sep_bg_color=\"#059444\"][icon_timeline_sep time_sep_title=\"Founded in 2002\" font_size=\"desktop:13px;\"][icon_timeline_feat]Founded in 2002 by Mr. Uditha Wanigasinghe, an agriculturist who had a mission to aid valuable livestock producers in the country to enhance the yield and profitability of production. FARMCHEMIE introduced unprecedented solutions and consistent technical services to gain our customers’ trust and became the market leader in animal health products in 2006 within just four years.[/icon_timeline_feat][icon_timeline_item time_title=\"2006 Sri Lankan Avian Influenza\"]<img class=\"alignnone size-medium wp-image-2895\" src=\"https://farmchemie.yasithawd.com/wp-content/uploads/2023/05/WhatsApp-Image-2023-05-16-at-2.43.25-AM-300x225.jpeg\" alt=\"\" width=\"300\" height=\"225\" />\n\nIn 2006, the Sri Lankan poultry industry was affected with Avian Influenza which became a difficult period for the growth of FARMCHEMIE. This was the key factor in our decision to diversify into Agro Products. PLANTCHEM &amp; PLANTSEEDS were established to offer solutions in Agro specialty fertilizers, pesticides and seeds to invaluable cultivators.[/icon_timeline_item][icon_timeline_item time_title=\"2010 FEED CHEMIE\"]<img class=\"alignnone size-medium wp-image-2896\" src=\"https://farmchemie.yasithawd.com/wp-content/uploads/2023/05/WhatsApp-Image-2023-05-16-at-2.43.38-AM-300x225.jpeg\" alt=\"\" width=\"300\" height=\"225\" />\n\nIn 2010, FEED CHEMIE became the subsequent addition to ever-growing vision of Mr. Uditha Wanigasinghe and entered the Animal Feed Additives market.[/icon_timeline_item][icon_timeline_item time_title=\"2012 Production facility\"]<img class=\"alignnone wp-image-2897 size-medium\" src=\"https://farmchemie.yasithawd.com/wp-content/uploads/2023/05/WhatsApp-Image-2023-05-16-at-2.43.56-AM-300x254.jpeg\" alt=\"\" width=\"300\" height=\"254\" />\n\nThe year 2012 is described as a turning point in our journey as FARMCHEMIE established our first production facility for the manufacturing and packing of animal health products. FARMCHEMIE became the first animal health organization in Sri Lanka to obtain ISO 9001:2015 and WHO GMP International Quality Certification. With our own formulation unit, FARMCHEMIE was able to offer customized solutions to cater the needs of the Sri Lankan Livestock Industry.[/icon_timeline_item][icon_timeline_item time_title=\"2016 Another key milestone\"]<img class=\"alignnone wp-image-2898 size-medium\" src=\"https://farmchemie.yasithawd.com/wp-content/uploads/2023/05/WhatsApp-Image-2023-05-16-at-2.44.00-AM-229x300.jpeg\" alt=\"\" width=\"229\" height=\"300\" />\n\nThe year 2016 was another key milestone with the entry to the International Markets. FARMCHEMIE exported our first Feed Premix consignment to India and in 2018 our export operation was distinctly established as FARMCHEMIE MANUFACTURERS, a Board of Investment (BOI) approved entity.[/icon_timeline_item][icon_timeline_feat time_title=\"invested in fully automated manufacturing facility from Bühler\"]<img class=\"alignnone wp-image-2899 size-medium\" src=\"https://farmchemie.yasithawd.com/wp-content/uploads/2023/05/WhatsApp-Image-2023-05-16-at-2.44.14-AM-300x192.jpeg\" alt=\"\" width=\"300\" height=\"192\" />\n\nFARMCHEMIE MANUFACTURERS has invested in fully automated manufacturing facility from Bühler and became the first Sri Lankan owned company to obtain FAMI-QS International Quality Certification.[/icon_timeline_feat][icon_timeline_feat time_title=\"DYEVSTA\"]<img class=\"alignnone wp-image-2901 size-medium\" src=\"https://farmchemie.yasithawd.com/wp-content/uploads/2023/05/WhatsApp-Image-2023-05-16-at-2.45.03-AM-300x59.jpeg\" alt=\"\" width=\"300\" height=\"59\" />\n\nWith the trust and reputation built as a reliable manufacturer of animal feed additives and supplements in the global market, several world-renowned international brands have appointed FARMCHEMIE MANUFACTURERS as the official toll manufacturer partner. FARMCHEMIE MANUFACTURERS exports a wide range of products consisting of premixes, specialty feed additives, oral liquid supplements and pet supplements to various markets in South Asia, East Asia, Middle East and Africa.\n\nFARMCHEMIE, FEED CHEMIE &amp; FARMCHEMIE MANUFACTURERS currently operate under the ownership of our holding company, DYVESTA.\n\nDYEVSTA has become the pinnacle of Animal Nutrition and Health.\n\nDYVESTA is Dynamic, through our continuous evolution, growth and progress. DYVESTA is Diverse, in terms of both our business strategy and our community. DYVESTA is Devoted to our valuable business partners through exceptional service.[/icon_timeline_feat][/icon_timeline][/vc_column][/vc_row][vc_row full_width=\"stretch_row_content\" equal_height=\"yes\" bg_type=\"grad\" bg_override=\"ex-full\" bg_grad=\"background: -webkit-gradient(linear, left top, left bottom, color-stop(49%, #039447), color-stop(51%, #762888));background: -moz-linear-gradient(45deg,#039447 49%,#762888 51%);background: -webkit-linear-gradient(45deg,#039447 49%,#762888 51%);background: -o-linear-gradient(45deg,#039447 49%,#762888 51%);background: -ms-linear-gradient(45deg,#039447 49%,#762888 51%);background: linear-gradient(45deg,#039447 49%,#762888 51%);\" css=\".vc_custom_1686543324238{padding-top: 35px !important;padding-bottom: 70px !important;}\"][vc_column width=\"1/2\"][ultimate_heading main_heading=\"Vision\" main_heading_color=\"#762888\" sub_heading_color=\"#ffffff\"]To become a world renowned manufacturer of Animal Health products and a trusted partner among our stakeholders for our integrity as well as for providing effective solutions[/ultimate_heading][/vc_column][vc_column width=\"1/2\"][ultimate_heading main_heading=\"Mission\" main_heading_color=\"#039447\" sub_heading_color=\"#ffffff\"]To be the customers’ first and best choice by ensuring outstanding satisfaction through a well-trained and dedicated team. Prompt and quality solutions to our customers’ requirements will determine the increase of return on investment for us.[/ultimate_heading][/vc_column][/vc_row][vc_row css=\".vc_custom_1684836308288{margin-top: 15px !important;}\"][vc_column][ultimate_heading main_heading=\"Achievements\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;\"][/ultimate_heading][/vc_column][/vc_row]\";}s:27:\"about-us1-temp-1_2192227240\";a:2:{s:4:\"name\";s:16:\"about-us1-temp-1\";s:8:\"template\";s:14122:\"[vc_row full_width=\"stretch_row_content_no_spaces\"][vc_column][ultimate_heading main_heading=\"Our History\" main_heading_color=\"#762888\" alignment=\"left\"][/ultimate_heading][vc_single_image image=\"3211\" img_size=\"full\" alignment=\"center\"][/vc_column][/vc_row][vc_row disable_element=\"yes\"][vc_column][vc_row_inner css=\".vc_custom_1686713784619{margin-top: 35px !important;}\"][vc_column_inner width=\"1/3\"][vc_single_image image=\"3106\" img_size=\"full\"][/vc_column_inner][vc_column_inner width=\"2/3\"][ultimate_heading main_heading=\"Founded in 2002\" heading_tag=\"h3\" main_heading_color=\"#039447\" alignment=\"left\" sub_heading_font_size=\"desktop:18px;\"]Founded in 2002 by Mr. Uditha Wanigasinghe, an agriculturist who had a mission to aid valuable livestock producers in the country to enhance the yield and profitability of production. FARMCHEMIE introduced unprecedented solutions and consistent technical services to gain our customers’ trust and became the market leader in animal health products in 2006 within just four years.[/ultimate_heading][/vc_column_inner][/vc_row_inner][vc_row_inner rtl_reverse=\"yes\" css=\".vc_custom_1686714025469{margin-top: 35px !important;}\"][vc_column_inner width=\"2/3\"][ultimate_heading main_heading=\"2006\" heading_tag=\"h3\" main_heading_color=\"#039447\" alignment=\"left\"]In 2006, the Sri Lankan poultry industry was affected with Avian Influenza which became a difficult period for the growth of FARMCHEMIE. This was the key factor in our decision to diversify into Agro Products. PLANTCHEM &amp; PLANTSEEDS were established to offer solutions in Agro specialty fertilizers, pesticides and seeds to invaluable cultivators.[/ultimate_heading][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_single_image image=\"3107\" img_size=\"full\"][/vc_column_inner][/vc_row_inner][vc_row_inner css=\".vc_custom_1686713784619{margin-top: 35px !important;}\"][vc_column_inner width=\"1/3\"][vc_single_image image=\"3108\" img_size=\"full\"][/vc_column_inner][vc_column_inner width=\"2/3\"][ultimate_heading main_heading=\"2010\" heading_tag=\"h3\" main_heading_color=\"#039447\" alignment=\"left\"]In 2010, FEED CHEMIE became the subsequent addition to ever-growing vision of Mr. Uditha Wanigasinghe and entered the Animal Feed Additives market.[/ultimate_heading][/vc_column_inner][/vc_row_inner][vc_row_inner rtl_reverse=\"yes\" css=\".vc_custom_1686714115148{margin-top: 35px !important;}\"][vc_column_inner width=\"2/3\"][ultimate_heading main_heading=\"2012\" heading_tag=\"h3\" main_heading_color=\"#039447\" alignment=\"left\"]The year 2012 is described as a turning point in our journey as FARMCHEMIE established our first production facility for the manufacturing and packing of animal health products. FARMCHEMIE became the first animal health organization in Sri Lanka to obtain ISO 9001:2015 and WHO GMP International Quality Certification. With our own formulation unit, FARMCHEMIE was able to offer customized solutions to cater the needs of the Sri Lankan Livestock Industry.[/ultimate_heading][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_single_image image=\"3111\" img_size=\"full\"][/vc_column_inner][/vc_row_inner][vc_row_inner css=\".vc_custom_1686713784619{margin-top: 35px !important;}\"][vc_column_inner width=\"1/3\"][vc_single_image image=\"3112\" img_size=\"full\"][/vc_column_inner][vc_column_inner width=\"2/3\"][ultimate_heading main_heading=\"2016\" heading_tag=\"h3\" main_heading_color=\"#039447\" alignment=\"left\"]The year 2016 was another key milestone with the entry to the International Markets. FARMCHEMIE exported our first Feed Premix consignment to India and in 2018 our export operation was distinctly established as FARMCHEMIE MANUFACTURERS, a Board of Investment (BOI) approved entity.[/ultimate_heading][/vc_column_inner][/vc_row_inner][vc_row_inner css=\".vc_custom_1686713784619{margin-top: 35px !important;}\"][vc_column_inner width=\"2/3\"][ultimate_heading main_heading=\"Fully automated manufacturing\" heading_tag=\"h3\" main_heading_color=\"#039447\" alignment=\"left\"]FARMCHEMIE MANUFACTURERS has invested in fully automated manufacturing facility from Bühler and became the first Sri Lankan owned company to obtain FAMI-QS International Quality Certification.[/ultimate_heading][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_single_image image=\"3110\" img_size=\"full\"][/vc_column_inner][/vc_row_inner][vc_row_inner css=\".vc_custom_1686713784619{margin-top: 35px !important;}\"][vc_column_inner width=\"1/3\"][vc_single_image image=\"3116\" img_size=\"full\"][/vc_column_inner][vc_column_inner width=\"2/3\"][ultimate_heading main_heading=\"Official toll manufacturer partner\" heading_tag=\"h3\" main_heading_color=\"#039447\" alignment=\"left\"]With the trust and reputation built as a reliable manufacturer of animal feed additives and supplements in the global market, several world-renowned international brands have appointed FARMCHEMIE MANUFACTURERS as the official toll manufacturer partner. FARMCHEMIE MANUFACTURERS exports a wide range of products consisting of premixes, specialty feed additives, oral liquid supplements and pet supplements to various markets in South Asia, East Asia, Middle East and Africa.\n\nFARMCHEMIE, FEED CHEMIE &amp; FARMCHEMIE MANUFACTURERS currently operate under the ownership of our holding company, DYVESTA.\n\nDYEVSTA has become the pinnacle of Animal Nutrition and Health.\n\nDYVESTA is Dynamic, through our continuous evolution, growth and progress. DYVESTA is Diverse, in terms of both our business strategy and our community. DYVESTA is Devoted to our valuable business partners through exceptional service.[/ultimate_heading][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row full_width=\"stretch_row\" equal_height=\"yes\" bg_type=\"image\" parallax_style=\"vcpb-default\" bg_image_new=\"id^2524|url^https://farmchemie.yasithawd.com/wp-content/uploads/2022/09/marketbgimg1.png|caption^null|alt^null|title^marketbgimg1|description^null\" bg_image_repeat=\"no-repeat\" enable_overlay=\"enable_overlay_value\" overlay_color=\"#000000\" overlay_pattern=\"01.png\" overlay_pattern_opacity=\"5\" css=\".vc_custom_1686720701314{margin-top: 35px !important;padding-top: 65px !important;padding-bottom: 100px !important;}\"][vc_column][vc_row_inner equal_height=\"yes\"][vc_column_inner width=\"1/2\"][ultimate_heading main_heading=\"Vision\" main_heading_color=\"#039447\" sub_heading_color=\"#039447\"]To be the customers’ first and best choice by ensuring outstanding satisfaction through a well-trained and dedicated team. Prompt and quality solutions to our customers’ requirements will determine the increase of return on investment for us.[/ultimate_heading][/vc_column_inner][vc_column_inner width=\"1/2\"][ultimate_heading main_heading=\"Mission\" main_heading_color=\"#762888\" sub_heading_color=\"#762888\"]To become a world renowned manufacturer of Animal Health products and a trusted partner among our stakeholders for our integrity as well as for providing effective solutions[/ultimate_heading][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row css=\".vc_custom_1684836308288{margin-top: 15px !important;}\"][vc_column][ultimate_heading main_heading=\"Achievements\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;\"][/ultimate_heading][vc_row_inner gap=\"20\"][vc_column_inner width=\"1/2\" css=\".vc_custom_1691995519863{background-color: #f4ab20 !important;border: 1px solid #f4ab20 !important;border-radius: 35px !important;}\"][bsf-info-box icon_type=\"custom\" icon_img=\"id^3117|url^https://farmchemie.yasithawd.com/wp-content/uploads/2023/08/Pink_-H.png|caption^null|alt^null|title^Pink_-H|description^null\" img_width=\"60\" icon_style=\"advanced\" icon_border_style=\"solid\" icon_color_border=\"#ffffff\" icon_border_size=\"1\" icon_border_radius=\"500\" icon_border_spacing=\"1\" title=\"First Free Sale Certificate obtained from Veterinary Drug Control Authority (VDCA) for Veterinary Pharmaceuticals\" title_font_style=\"font-weight:bold;\" title_font_size=\"desktop:20px;\"][/bsf-info-box][/vc_column_inner][vc_column_inner width=\"1/2\" css=\".vc_custom_1691995661095{background-color: #722f8b !important;border: 1px solid #722f8b !important;border-radius: 35px !important;}\"][bsf-info-box icon_type=\"custom\" icon_img=\"id^3117|url^https://farmchemie.yasithawd.com/wp-content/uploads/2023/08/Pink_-H.png|caption^null|alt^null|title^Pink_-H|description^null\" img_width=\"60\" icon_style=\"advanced\" icon_border_style=\"solid\" icon_color_border=\"#ffffff\" icon_border_size=\"1\" icon_border_radius=\"500\" icon_border_spacing=\"1\" title=\"First ISO 9001: 2015 ,WHO-GMP Quality Management systems certified Animal Health company in Sri Lanka since August, 2012\" title_font_style=\"font-weight:bold;\" title_font_color=\"#ffffff\" title_font_size=\"desktop:20px;\"][/bsf-info-box][/vc_column_inner][/vc_row_inner][vc_row_inner gap=\"20\"][vc_column_inner width=\"1/2\" css=\".vc_custom_1691995661095{background-color: #722f8b !important;border: 1px solid #722f8b !important;border-radius: 35px !important;}\"][bsf-info-box icon_type=\"custom\" icon_img=\"id^3117|url^https://farmchemie.yasithawd.com/wp-content/uploads/2023/08/Pink_-H.png|caption^null|alt^null|title^Pink_-H|description^null\" img_width=\"60\" icon_style=\"advanced\" icon_border_style=\"solid\" icon_color_border=\"#ffffff\" icon_border_size=\"1\" icon_border_radius=\"500\" icon_border_spacing=\"1\" title=\"First FAMI-QS certified company in sri lanka\" title_font_style=\"font-weight:bold;\" title_font_color=\"#ffffff\" title_font_size=\"desktop:20px;\"][/bsf-info-box][/vc_column_inner][vc_column_inner width=\"1/2\" css=\".vc_custom_1691995519863{background-color: #f4ab20 !important;border: 1px solid #f4ab20 !important;border-radius: 35px !important;}\"][bsf-info-box icon_type=\"custom\" icon_img=\"id^3117|url^https://farmchemie.yasithawd.com/wp-content/uploads/2023/08/Pink_-H.png|caption^null|alt^null|title^Pink_-H|description^null\" img_width=\"60\" icon_style=\"advanced\" icon_border_style=\"solid\" icon_color_border=\"#ffffff\" icon_border_size=\"1\" icon_border_radius=\"500\" icon_border_spacing=\"1\" title=\"First Certificate of Ethical Trading certified in Livestock industry\" title_font_style=\"font-weight:bold;\" title_font_size=\"desktop:20px;\"][/bsf-info-box][/vc_column_inner][/vc_row_inner][vc_row_inner gap=\"20\"][vc_column_inner width=\"1/4\" css=\".vc_custom_1691996718116{border-radius: 35px !important;}\"][/vc_column_inner][vc_column_inner width=\"2/4\" css=\".vc_custom_1691995519863{background-color: #f4ab20 !important;border: 1px solid #f4ab20 !important;border-radius: 35px !important;}\"][bsf-info-box icon_type=\"custom\" icon_img=\"id^3117|url^https://farmchemie.yasithawd.com/wp-content/uploads/2023/08/Pink_-H.png|caption^null|alt^null|title^Pink_-H|description^null\" img_width=\"60\" icon_style=\"advanced\" icon_border_style=\"solid\" icon_color_border=\"#ffffff\" icon_border_size=\"1\" icon_border_radius=\"500\" icon_border_spacing=\"1\" title=\"First Silver awarded company at National Exports Awards in Livestock industry\" title_font_style=\"font-weight:bold;\" title_font_size=\"desktop:20px;\"][/bsf-info-box][/vc_column_inner][vc_column_inner width=\"1/4\"][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner width=\"1/6\"][/vc_column_inner][vc_column_inner width=\"2/3\"][vc_single_image image=\"3126\" img_size=\"full\" alignment=\"center\"][vc_single_image image=\"3125\" img_size=\"full\" alignment=\"center\"][/vc_column_inner][vc_column_inner width=\"1/6\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row][vc_column][ultimate_heading main_heading=\"Board Of Directors\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;margin-bottom:35px;\"][/ultimate_heading][ultimate_carousel slides_on_desk=\"1\" slides_on_tabs=\"1\" slides_on_mob=\"1\" arrow_style=\"square-bg\" arrow_bg_color=\"#039447\" arrow_color=\"#ffffff\" next_icon=\"ultsl-arrow-right6\" prev_icon=\"ultsl-arrow-left6\" dots_color=\"#039447\" item_animation=\"fadeIn\"][vc_row_inner][vc_column_inner width=\"1/2\"][vc_single_image image=\"3170\" img_size=\"large\" alignment=\"center\" style=\"vc_box_outline_circle_2\" border_color=\"black\" image_hovers=\"false\"][/vc_column_inner][vc_column_inner width=\"1/2\"][ultimate_heading main_heading=\"Quisque sed nibh tristique\" heading_tag=\"h3\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;\"]Duis lorem risus, aliquet a auctor a, venenatis in dui. Praesent et eros et risus dapibus placerat hendrerit cursus magna.[/ultimate_heading][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner width=\"1/2\"][vc_single_image image=\"3171\" img_size=\"large\" alignment=\"center\" style=\"vc_box_outline_circle_2\" border_color=\"black\" image_hovers=\"false\"][/vc_column_inner][vc_column_inner width=\"1/2\"][ultimate_heading main_heading=\"Quisque sed nibh tristique\" heading_tag=\"h3\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;\"]Duis lorem risus, aliquet a auctor a, venenatis in dui. Praesent et eros et risus dapibus placerat hendrerit cursus magna.[/ultimate_heading][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner width=\"1/2\"][vc_single_image image=\"3173\" img_size=\"large\" alignment=\"center\" style=\"vc_box_outline_circle_2\" border_color=\"black\" image_hovers=\"false\"][/vc_column_inner][vc_column_inner width=\"1/2\"][ultimate_heading main_heading=\"Quisque sed nibh tristique\" heading_tag=\"h3\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;\"]Duis lorem risus, aliquet a auctor a, venenatis in dui. Praesent et eros et risus dapibus placerat hendrerit cursus magna.[/ultimate_heading][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner width=\"1/2\"][vc_single_image image=\"3172\" img_size=\"large\" alignment=\"center\" style=\"vc_box_outline_circle_2\" border_color=\"black\" image_hovers=\"false\"][/vc_column_inner][vc_column_inner width=\"1/2\"][ultimate_heading main_heading=\"Quisque sed nibh tristique\" heading_tag=\"h3\" main_heading_color=\"#762888\" alignment=\"left\" main_heading_margin=\"margin-top:35px;\"]Duis lorem risus, aliquet a auctor a, venenatis in dui. Praesent et eros et risus dapibus placerat hendrerit cursus magna.[/ultimate_heading][/vc_column_inner][/vc_row_inner][/ultimate_carousel][/vc_column][/vc_row]\";}}','no'),(20420,'woocommerce_task_list_welcome_modal_dismissed','yes','yes'),(67400,'_site_transient_update_themes','O:8:\"stdClass\":5:{s:12:\"last_checked\";i:1695766825;s:7:\"checked\";a:6:{s:7:\"dt-the7\";s:6:\"11.8.1\";s:10:\"storefront\";s:5:\"3.9.1\";s:12:\"twentytwenty\";s:3:\"2.0\";s:15:\"twentytwentyone\";s:3:\"1.6\";s:17:\"twentytwentythree\";s:3:\"1.0\";s:15:\"twentytwentytwo\";s:3:\"1.2\";}s:8:\"response\";a:6:{s:10:\"storefront\";a:6:{s:5:\"theme\";s:10:\"storefront\";s:11:\"new_version\";s:5:\"4.5.3\";s:3:\"url\";s:40:\"https://wordpress.org/themes/storefront/\";s:7:\"package\";s:58:\"https://downloads.wordpress.org/theme/storefront.4.5.3.zip\";s:8:\"requires\";b:0;s:12:\"requires_php\";s:5:\"5.6.0\";}s:12:\"twentytwenty\";a:6:{s:5:\"theme\";s:12:\"twentytwenty\";s:11:\"new_version\";s:3:\"2.2\";s:3:\"url\";s:42:\"https://wordpress.org/themes/twentytwenty/\";s:7:\"package\";s:58:\"https://downloads.wordpress.org/theme/twentytwenty.2.2.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.8\";s:3:\"url\";s:45:\"https://wordpress.org/themes/twentytwentyone/\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/theme/twentytwentyone.1.8.zip\";s:8:\"requires\";s:3:\"5.3\";s:12:\"requires_php\";s:3:\"5.6\";}s:17:\"twentytwentythree\";a:6:{s:5:\"theme\";s:17:\"twentytwentythree\";s:11:\"new_version\";s:3:\"1.2\";s:3:\"url\";s:47:\"https://wordpress.org/themes/twentytwentythree/\";s:7:\"package\";s:63:\"https://downloads.wordpress.org/theme/twentytwentythree.1.2.zip\";s:8:\"requires\";s:3:\"6.1\";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.4\";s:3:\"url\";s:45:\"https://wordpress.org/themes/twentytwentytwo/\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/theme/twentytwentytwo.1.4.zip\";s:8:\"requires\";s:3:\"5.9\";s:12:\"requires_php\";s:3:\"5.6\";}s:7:\"dt-the7\";a:6:{s:5:\"theme\";s:7:\"dt-the7\";s:11:\"new_version\";s:6:\"11.9.1\";s:3:\"url\";s:26:\"https://the7.io/changelog/\";s:7:\"package\";s:96:\"https://repo.the7.io/theme/download.php?code=16328aec-6188-4c79-ab55-baa8e6fc0fa6&version=11.9.1\";s:8:\"requires\";s:3:\"5.4\";s:12:\"requires_php\";s:5:\"7.0.0\";}}s:9:\"no_update\";a:0:{}s:12:\"translations\";a:0:{}}','no'),(67401,'_site_transient_update_plugins','O:8:\"stdClass\":4:{s:12:\"last_checked\";i:1695791581;s:8:\"response\";a:6:{s:19:\"akismet/akismet.php\";O:8:\"stdClass\":12:{s:2:\"id\";s:21:\"w.org/plugins/akismet\";s:4:\"slug\";s:7:\"akismet\";s:6:\"plugin\";s:19:\"akismet/akismet.php\";s:11:\"new_version\";s:3:\"5.3\";s:3:\"url\";s:38:\"https://wordpress.org/plugins/akismet/\";s:7:\"package\";s:54:\"https://downloads.wordpress.org/plugin/akismet.5.3.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:60:\"https://ps.w.org/akismet/assets/icon-256x256.png?rev=2818463\";s:2:\"1x\";s:60:\"https://ps.w.org/akismet/assets/icon-128x128.png?rev=2818463\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:63:\"https://ps.w.org/akismet/assets/banner-1544x500.png?rev=2900731\";s:2:\"1x\";s:62:\"https://ps.w.org/akismet/assets/banner-772x250.png?rev=2900731\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"5.8\";s:6:\"tested\";s:5:\"6.3.1\";s:12:\"requires_php\";s:6:\"5.6.20\";}s:23:\"elementor/elementor.php\";O:8:\"stdClass\":12:{s:2:\"id\";s:23:\"w.org/plugins/elementor\";s:4:\"slug\";s:9:\"elementor\";s:6:\"plugin\";s:23:\"elementor/elementor.php\";s:11:\"new_version\";s:6:\"3.16.4\";s:3:\"url\";s:40:\"https://wordpress.org/plugins/elementor/\";s:7:\"package\";s:59:\"https://downloads.wordpress.org/plugin/elementor.3.16.4.zip\";s:5:\"icons\";a:2:{s:2:\"1x\";s:54:\"https://ps.w.org/elementor/assets/icon.svg?rev=2597493\";s:3:\"svg\";s:54:\"https://ps.w.org/elementor/assets/icon.svg?rev=2597493\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:65:\"https://ps.w.org/elementor/assets/banner-1544x500.png?rev=2597493\";s:2:\"1x\";s:64:\"https://ps.w.org/elementor/assets/banner-772x250.png?rev=2597493\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"6.0\";s:6:\"tested\";s:5:\"6.3.1\";s:12:\"requires_php\";s:3:\"7.0\";}s:19:\"jetpack/jetpack.php\";O:8:\"stdClass\":12:{s:2:\"id\";s:21:\"w.org/plugins/jetpack\";s:4:\"slug\";s:7:\"jetpack\";s:6:\"plugin\";s:19:\"jetpack/jetpack.php\";s:11:\"new_version\";s:6:\"12.6.1\";s:3:\"url\";s:38:\"https://wordpress.org/plugins/jetpack/\";s:7:\"package\";s:57:\"https://downloads.wordpress.org/plugin/jetpack.12.6.1.zip\";s:5:\"icons\";a:2:{s:2:\"1x\";s:52:\"https://ps.w.org/jetpack/assets/icon.svg?rev=2819237\";s:3:\"svg\";s:52:\"https://ps.w.org/jetpack/assets/icon.svg?rev=2819237\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:63:\"https://ps.w.org/jetpack/assets/banner-1544x500.png?rev=2653649\";s:2:\"1x\";s:62:\"https://ps.w.org/jetpack/assets/banner-772x250.png?rev=2653649\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"6.2\";s:6:\"tested\";s:5:\"6.3.1\";s:12:\"requires_php\";s:3:\"5.6\";}s:27:\"woocommerce/woocommerce.php\";O:8:\"stdClass\":12:{s:2:\"id\";s:25:\"w.org/plugins/woocommerce\";s:4:\"slug\";s:11:\"woocommerce\";s:6:\"plugin\";s:27:\"woocommerce/woocommerce.php\";s:11:\"new_version\";s:5:\"8.1.1\";s:3:\"url\";s:42:\"https://wordpress.org/plugins/woocommerce/\";s:7:\"package\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.8.1.1.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:64:\"https://ps.w.org/woocommerce/assets/icon-256x256.gif?rev=2869506\";s:2:\"1x\";s:64:\"https://ps.w.org/woocommerce/assets/icon-128x128.gif?rev=2869506\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:67:\"https://ps.w.org/woocommerce/assets/banner-1544x500.png?rev=2366418\";s:2:\"1x\";s:66:\"https://ps.w.org/woocommerce/assets/banner-772x250.png?rev=2366418\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"6.2\";s:6:\"tested\";s:5:\"6.3.1\";s:12:\"requires_php\";s:3:\"7.3\";}s:41:\"Ultimate_VC_Addons/Ultimate_VC_Addons.php\";O:8:\"stdClass\":12:{s:2:\"id\";s:41:\"Ultimate_VC_Addons/Ultimate_VC_Addons.php\";s:4:\"slug\";s:18:\"Ultimate_VC_Addons\";s:6:\"plugin\";s:41:\"Ultimate_VC_Addons/Ultimate_VC_Addons.php\";s:11:\"new_version\";s:7:\"3.19.17\";s:3:\"url\";s:0:\"\";s:7:\"package\";s:107:\"https://repo.the7.io/plugins/download.php?code=16328aec-6188-4c79-ab55-baa8e6fc0fa6&item=Ultimate_VC_Addons\";s:5:\"icons\";a:1:{s:2:\"1x\";s:70:\"http://support.brainstormforce.com/wp-content/uploads/2017/07/uavc.jpg\";}s:7:\"banners\";a:0:{}s:11:\"banners_rtl\";a:0:{}s:6:\"tested\";s:0:\"\";s:12:\"requires_php\";s:0:\"\";s:13:\"compatibility\";O:8:\"stdClass\":0:{}}s:23:\"revslider/revslider.php\";O:8:\"stdClass\":12:{s:2:\"id\";s:23:\"revslider/revslider.php\";s:4:\"slug\";s:9:\"revslider\";s:6:\"plugin\";s:23:\"revslider/revslider.php\";s:11:\"new_version\";s:6:\"6.6.16\";s:3:\"url\";s:0:\"\";s:7:\"package\";s:98:\"https://repo.the7.io/plugins/download.php?code=16328aec-6188-4c79-ab55-baa8e6fc0fa6&item=revslider\";s:5:\"icons\";a:0:{}s:7:\"banners\";a:0:{}s:11:\"banners_rtl\";a:0:{}s:6:\"tested\";s:0:\"\";s:12:\"requires_php\";s:0:\"\";s:13:\"compatibility\";O:8:\"stdClass\":0:{}}}s:12:\"translations\";a:0:{}s:9:\"no_update\";a:8:{s:33:\"classic-editor/classic-editor.php\";O:8:\"stdClass\":10:{s:2:\"id\";s:28:\"w.org/plugins/classic-editor\";s:4:\"slug\";s:14:\"classic-editor\";s:6:\"plugin\";s:33:\"classic-editor/classic-editor.php\";s:11:\"new_version\";s:5:\"1.6.3\";s:3:\"url\";s:45:\"https://wordpress.org/plugins/classic-editor/\";s:7:\"package\";s:63:\"https://downloads.wordpress.org/plugin/classic-editor.1.6.3.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:67:\"https://ps.w.org/classic-editor/assets/icon-256x256.png?rev=1998671\";s:2:\"1x\";s:67:\"https://ps.w.org/classic-editor/assets/icon-128x128.png?rev=1998671\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:70:\"https://ps.w.org/classic-editor/assets/banner-1544x500.png?rev=1998671\";s:2:\"1x\";s:69:\"https://ps.w.org/classic-editor/assets/banner-772x250.png?rev=1998676\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"4.9\";}s:36:\"contact-form-7/wp-contact-form-7.php\";O:8:\"stdClass\":10:{s:2:\"id\";s:28:\"w.org/plugins/contact-form-7\";s:4:\"slug\";s:14:\"contact-form-7\";s:6:\"plugin\";s:36:\"contact-form-7/wp-contact-form-7.php\";s:11:\"new_version\";s:3:\"5.8\";s:3:\"url\";s:45:\"https://wordpress.org/plugins/contact-form-7/\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/plugin/contact-form-7.5.8.zip\";s:5:\"icons\";a:2:{s:2:\"1x\";s:59:\"https://ps.w.org/contact-form-7/assets/icon.svg?rev=2339255\";s:3:\"svg\";s:59:\"https://ps.w.org/contact-form-7/assets/icon.svg?rev=2339255\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:69:\"https://ps.w.org/contact-form-7/assets/banner-1544x500.png?rev=860901\";s:2:\"1x\";s:68:\"https://ps.w.org/contact-form-7/assets/banner-772x250.png?rev=880427\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"6.2\";}s:22:\"font-awesome/index.php\";O:8:\"stdClass\":10:{s:2:\"id\";s:26:\"w.org/plugins/font-awesome\";s:4:\"slug\";s:12:\"font-awesome\";s:6:\"plugin\";s:22:\"font-awesome/index.php\";s:11:\"new_version\";s:5:\"4.4.0\";s:3:\"url\";s:43:\"https://wordpress.org/plugins/font-awesome/\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/plugin/font-awesome.4.4.0.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:65:\"https://ps.w.org/font-awesome/assets/icon-256x256.png?rev=1991998\";s:2:\"1x\";s:65:\"https://ps.w.org/font-awesome/assets/icon-128x128.png?rev=1991998\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:68:\"https://ps.w.org/font-awesome/assets/banner-1544x500.png?rev=1991998\";s:2:\"1x\";s:67:\"https://ps.w.org/font-awesome/assets/banner-772x250.png?rev=1991993\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"4.7\";}s:9:\"hello.php\";O:8:\"stdClass\":10:{s:2:\"id\";s:25:\"w.org/plugins/hello-dolly\";s:4:\"slug\";s:11:\"hello-dolly\";s:6:\"plugin\";s:9:\"hello.php\";s:11:\"new_version\";s:5:\"1.7.2\";s:3:\"url\";s:42:\"https://wordpress.org/plugins/hello-dolly/\";s:7:\"package\";s:60:\"https://downloads.wordpress.org/plugin/hello-dolly.1.7.2.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:64:\"https://ps.w.org/hello-dolly/assets/icon-256x256.jpg?rev=2052855\";s:2:\"1x\";s:64:\"https://ps.w.org/hello-dolly/assets/icon-128x128.jpg?rev=2052855\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:67:\"https://ps.w.org/hello-dolly/assets/banner-1544x500.jpg?rev=2645582\";s:2:\"1x\";s:66:\"https://ps.w.org/hello-dolly/assets/banner-772x250.jpg?rev=2052855\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"4.6\";}s:35:\"boldgrid-backup/boldgrid-backup.php\";O:8:\"stdClass\":10:{s:2:\"id\";s:29:\"w.org/plugins/boldgrid-backup\";s:4:\"slug\";s:15:\"boldgrid-backup\";s:6:\"plugin\";s:35:\"boldgrid-backup/boldgrid-backup.php\";s:11:\"new_version\";s:6:\"1.15.7\";s:3:\"url\";s:46:\"https://wordpress.org/plugins/boldgrid-backup/\";s:7:\"package\";s:65:\"https://downloads.wordpress.org/plugin/boldgrid-backup.1.15.7.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:68:\"https://ps.w.org/boldgrid-backup/assets/icon-256x256.png?rev=1880952\";s:2:\"1x\";s:68:\"https://ps.w.org/boldgrid-backup/assets/icon-128x128.png?rev=1880952\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:71:\"https://ps.w.org/boldgrid-backup/assets/banner-1544x500.png?rev=1880952\";s:2:\"1x\";s:70:\"https://ps.w.org/boldgrid-backup/assets/banner-772x250.png?rev=1880952\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"4.4\";}s:83:\"woo-quote-or-enquiry-contact-form-7/woocommerce-quote-or-enquiry-contact-form-7.php\";O:8:\"stdClass\":10:{s:2:\"id\";s:49:\"w.org/plugins/woo-quote-or-enquiry-contact-form-7\";s:4:\"slug\";s:35:\"woo-quote-or-enquiry-contact-form-7\";s:6:\"plugin\";s:83:\"woo-quote-or-enquiry-contact-form-7/woocommerce-quote-or-enquiry-contact-form-7.php\";s:11:\"new_version\";s:3:\"2.7\";s:3:\"url\";s:66:\"https://wordpress.org/plugins/woo-quote-or-enquiry-contact-form-7/\";s:7:\"package\";s:82:\"https://downloads.wordpress.org/plugin/woo-quote-or-enquiry-contact-form-7.2.7.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:88:\"https://ps.w.org/woo-quote-or-enquiry-contact-form-7/assets/icon-256x256.png?rev=2822039\";s:2:\"1x\";s:88:\"https://ps.w.org/woo-quote-or-enquiry-contact-form-7/assets/icon-256x256.png?rev=2822039\";}s:7:\"banners\";a:1:{s:2:\"1x\";s:90:\"https://ps.w.org/woo-quote-or-enquiry-contact-form-7/assets/banner-772x250.png?rev=2822039\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:5:\"3.0.1\";}s:29:\"dt-the7-core/dt-the7-core.php\";O:8:\"stdClass\":12:{s:2:\"id\";s:29:\"dt-the7-core/dt-the7-core.php\";s:4:\"slug\";s:12:\"dt-the7-core\";s:6:\"plugin\";s:29:\"dt-the7-core/dt-the7-core.php\";s:11:\"new_version\";s:5:\"2.7.6\";s:3:\"url\";s:0:\"\";s:7:\"package\";s:0:\"\";s:5:\"icons\";a:0:{}s:7:\"banners\";a:0:{}s:11:\"banners_rtl\";a:0:{}s:6:\"tested\";s:0:\"\";s:12:\"requires_php\";s:0:\"\";s:13:\"compatibility\";O:8:\"stdClass\":0:{}}s:27:\"js_composer/js_composer.php\";O:8:\"stdClass\":12:{s:2:\"id\";s:27:\"js_composer/js_composer.php\";s:4:\"slug\";s:11:\"js_composer\";s:6:\"plugin\";s:27:\"js_composer/js_composer.php\";s:11:\"new_version\";s:3:\"7.0\";s:3:\"url\";s:0:\"\";s:7:\"package\";s:0:\"\";s:5:\"icons\";a:0:{}s:7:\"banners\";a:0:{}s:11:\"banners_rtl\";a:0:{}s:6:\"tested\";s:0:\"\";s:12:\"requires_php\";s:0:\"\";s:13:\"compatibility\";O:8:\"stdClass\":0:{}}}}','no'),(67379,'_transient_timeout_boldgrid_backup_system_zip_test','1695798364','no'),(67380,'_transient_boldgrid_backup_system_zip_test','1','no'),(55619,'_transient_timeout_wc_blocks_query_7c4baab41857da1b9d4c536524b8beb5','1696568038','no'),(55620,'_transient_wc_blocks_query_7c4baab41857da1b9d4c536524b8beb5','a:2:{s:7:\"version\";s:10:\"1693975866\";s:5:\"value\";a:9:{i:0;i:3461;i:1;i:3453;i:2;i:3450;i:3;i:3447;i:4;i:3442;i:5;i:3441;i:6;i:3440;i:7;i:3439;i:8;i:3438;}}','no'),(55568,'_elementor_settings_update_time','1694429642','yes'),(58969,'revslider-global-settings','{\"tracking\":\"2023-10-17\"}','yes'),(67381,'_transient_timeout_boldgrid_backup_is_functional','1695798364','no'),(67382,'_transient_boldgrid_backup_is_functional','1','no'),(64642,'_site_transient_timeout_php_check_990bfacb848fa087bcfc06850f5e4447','1695884358','no'),(64643,'_site_transient_php_check_990bfacb848fa087bcfc06850f5e4447','a:5:{s:19:\"recommended_version\";s:3:\"7.4\";s:15:\"minimum_version\";s:3:\"7.0\";s:12:\"is_supported\";b:1;s:9:\"is_secure\";b:1;s:13:\"is_acceptable\";b:1;}','no'),(55588,'elementor_experiment-e_dom_optimization','default','yes'),(55569,'elementor_cpt_support','a:0:{}','yes'),(55570,'elementor_disable_color_schemes','yes','yes'),(55571,'elementor_disable_typography_schemes','yes','yes'),(55572,'elementor_allow_tracking','no','yes'),(55573,'elementor_google_maps_api_key','','yes'),(55574,'elementor_css_print_method','external','yes'),(55575,'elementor_editor_break_lines','','yes'),(55576,'elementor_unfiltered_files_upload','','yes'),(55577,'elementor_google_font','1','yes'),(55578,'elementor_load_fa4_shim','','yes'),(55579,'elementor_meta_generator_tag','','yes'),(55580,'elementor_experiment-e_font_icon_svg','default','yes'),(55581,'elementor_experiment-container','default','yes'),(55582,'elementor_experiment-container_grid','default','yes'),(55583,'elementor_experiment-editor_v2','default','yes'),(55584,'elementor_experiment-landing-pages','default','yes'),(55585,'elementor_experiment-nested-elements','default','yes'),(55586,'elementor_experiment-e_lazyload','default','yes'),(55587,'elementor_experiment-e_global_styleguide','default','yes'),(55589,'elementor_experiment-e_optimized_assets_loading','default','yes'),(67051,'_transient_timeout_woocommerce_admin_payment_method_promotion_specs','1696227888','no'),(67052,'_transient_woocommerce_admin_payment_method_promotion_specs','a:1:{s:5:\"en_US\";a:2:{s:27:\"woocommerce_payments:woopay\";O:8:\"stdClass\":8:{s:2:\"id\";s:27:\"woocommerce_payments:woopay\";s:5:\"title\";s:20:\"WooCommerce Payments\";s:7:\"content\";s:393:\"Payments made simple — including WooPay, a new express checkout feature.<br/><br/>By using WooPayments you agree to the <a href=\"https://wordpress.com/tos/\" target=\"_blank\">Terms of Service</a> (including WooPay <a href=\"https://wordpress.com/tos/#more-woopay-specifically\" target=\"_blank\">merchant terms</a>) and <a href=\"https://automattic.com/privacy/\" target=\"_blank\">Privacy Policy</a>.\";s:5:\"image\";s:101:\"https://woocommerce.com/wp-content/plugins/wccom-plugins/payment-gateway-suggestions/images/wcpay.svg\";s:7:\"plugins\";a:1:{i:0;s:20:\"woocommerce-payments\";}s:10:\"is_visible\";a:3:{i:0;O:8:\"stdClass\":6:{s:4:\"type\";s:6:\"option\";s:12:\"transformers\";a:2:{i:0;O:8:\"stdClass\":2:{s:3:\"use\";s:12:\"dot_notation\";s:9:\"arguments\";O:8:\"stdClass\":1:{s:4:\"path\";s:8:\"industry\";}}i:1;O:8:\"stdClass\":2:{s:3:\"use\";s:12:\"array_column\";s:9:\"arguments\";O:8:\"stdClass\":1:{s:3:\"key\";s:4:\"slug\";}}}s:11:\"option_name\";s:30:\"woocommerce_onboarding_profile\";s:9:\"operation\";s:9:\"!contains\";s:5:\"value\";s:31:\"cbd-other-hemp-derived-products\";s:7:\"default\";a:0:{}}i:1;O:8:\"stdClass\":2:{s:4:\"type\";s:2:\"or\";s:8:\"operands\";a:1:{i:0;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"US\";s:9:\"operation\";s:1:\"=\";}}}i:2;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:7:\"version\";s:9:\"8.1.0-dev\";s:8:\"operator\";s:2:\">=\";}}s:9:\"sub_title\";s:865:\"<img class=\"wcpay-visa-icon wcpay-icon\" src=\"https://woocommerce.com/wp-content/plugins/wccom-plugins/payment-gateway-suggestions/images/icons/visa.svg\" alt=\"Visa\"><img class=\"wcpay-mastercard-icon wcpay-icon\" src=\"https://woocommerce.com/wp-content/plugins/wccom-plugins/payment-gateway-suggestions/images/icons/mastercard.svg\" alt=\"Mastercard\"><img class=\"wcpay-amex-icon wcpay-icon\" src=\"https://woocommerce.com/wp-content/plugins/wccom-plugins/payment-gateway-suggestions/images/icons/amex.svg\" alt=\"Amex\"><img class=\"wcpay-googlepay-icon wcpay-icon\" src=\"https://woocommerce.com/wp-content/plugins/wccom-plugins/payment-gateway-suggestions/images/icons/googlepay.svg\" alt=\"Googlepay\"><img class=\"wcpay-applepay-icon wcpay-icon\" src=\"https://woocommerce.com/wp-content/plugins/wccom-plugins/payment-gateway-suggestions/images/icons/applepay.svg\" alt=\"Applepay\">\";s:15:\"additional_info\";O:8:\"stdClass\":1:{s:18:\"experiment_version\";s:2:\"v2\";}}s:20:\"woocommerce_payments\";O:8:\"stdClass\":8:{s:2:\"id\";s:20:\"woocommerce_payments\";s:5:\"title\";s:20:\"WooCommerce Payments\";s:7:\"content\";s:369:\"Payments made simple, with no monthly fees – designed exclusively for WooCommerce stores. Accept credit cards, debit cards, and other popular payment methods.<br/><br/>By clicking “Install”, you agree to the <a href=\"https://wordpress.com/tos/\" target=\"_blank\">Terms of Service</a> and <a href=\"https://automattic.com/privacy/\" target=\"_blank\">Privacy policy</a>.\";s:5:\"image\";s:101:\"https://woocommerce.com/wp-content/plugins/wccom-plugins/payment-gateway-suggestions/images/wcpay.svg\";s:7:\"plugins\";a:1:{i:0;s:20:\"woocommerce-payments\";}s:10:\"is_visible\";a:2:{i:0;O:8:\"stdClass\":6:{s:4:\"type\";s:6:\"option\";s:12:\"transformers\";a:2:{i:0;O:8:\"stdClass\":2:{s:3:\"use\";s:12:\"dot_notation\";s:9:\"arguments\";O:8:\"stdClass\":1:{s:4:\"path\";s:8:\"industry\";}}i:1;O:8:\"stdClass\":2:{s:3:\"use\";s:12:\"array_column\";s:9:\"arguments\";O:8:\"stdClass\":1:{s:3:\"key\";s:4:\"slug\";}}}s:11:\"option_name\";s:30:\"woocommerce_onboarding_profile\";s:9:\"operation\";s:9:\"!contains\";s:5:\"value\";s:31:\"cbd-other-hemp-derived-products\";s:7:\"default\";a:0:{}}i:1;O:8:\"stdClass\":2:{s:4:\"type\";s:2:\"or\";s:8:\"operands\";a:39:{i:0;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"US\";s:9:\"operation\";s:1:\"=\";}i:1;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"PR\";s:9:\"operation\";s:1:\"=\";}i:2;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"AU\";s:9:\"operation\";s:1:\"=\";}i:3;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"CA\";s:9:\"operation\";s:1:\"=\";}i:4;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"DE\";s:9:\"operation\";s:1:\"=\";}i:5;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"ES\";s:9:\"operation\";s:1:\"=\";}i:6;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"FR\";s:9:\"operation\";s:1:\"=\";}i:7;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"GB\";s:9:\"operation\";s:1:\"=\";}i:8;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"IE\";s:9:\"operation\";s:1:\"=\";}i:9;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"IT\";s:9:\"operation\";s:1:\"=\";}i:10;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"NZ\";s:9:\"operation\";s:1:\"=\";}i:11;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"AT\";s:9:\"operation\";s:1:\"=\";}i:12;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"BE\";s:9:\"operation\";s:1:\"=\";}i:13;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"NL\";s:9:\"operation\";s:1:\"=\";}i:14;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"PL\";s:9:\"operation\";s:1:\"=\";}i:15;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"PT\";s:9:\"operation\";s:1:\"=\";}i:16;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"CH\";s:9:\"operation\";s:1:\"=\";}i:17;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"HK\";s:9:\"operation\";s:1:\"=\";}i:18;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"SG\";s:9:\"operation\";s:1:\"=\";}i:19;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"CY\";s:9:\"operation\";s:1:\"=\";}i:20;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"DK\";s:9:\"operation\";s:1:\"=\";}i:21;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"EE\";s:9:\"operation\";s:1:\"=\";}i:22;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"FI\";s:9:\"operation\";s:1:\"=\";}i:23;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"GR\";s:9:\"operation\";s:1:\"=\";}i:24;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"LU\";s:9:\"operation\";s:1:\"=\";}i:25;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"LT\";s:9:\"operation\";s:1:\"=\";}i:26;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"LV\";s:9:\"operation\";s:1:\"=\";}i:27;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"NO\";s:9:\"operation\";s:1:\"=\";}i:28;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"MT\";s:9:\"operation\";s:1:\"=\";}i:29;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"SI\";s:9:\"operation\";s:1:\"=\";}i:30;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"SK\";s:9:\"operation\";s:1:\"=\";}i:31;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"BG\";s:9:\"operation\";s:1:\"=\";}i:32;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"CZ\";s:9:\"operation\";s:1:\"=\";}i:33;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"HR\";s:9:\"operation\";s:1:\"=\";}i:34;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"HU\";s:9:\"operation\";s:1:\"=\";}i:35;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"RO\";s:9:\"operation\";s:1:\"=\";}i:36;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"SE\";s:9:\"operation\";s:1:\"=\";}i:37;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"JP\";s:9:\"operation\";s:1:\"=\";}i:38;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"AE\";s:9:\"operation\";s:1:\"=\";}}}}s:9:\"sub_title\";s:865:\"<img class=\"wcpay-visa-icon wcpay-icon\" src=\"https://woocommerce.com/wp-content/plugins/wccom-plugins/payment-gateway-suggestions/images/icons/visa.svg\" alt=\"Visa\"><img class=\"wcpay-mastercard-icon wcpay-icon\" src=\"https://woocommerce.com/wp-content/plugins/wccom-plugins/payment-gateway-suggestions/images/icons/mastercard.svg\" alt=\"Mastercard\"><img class=\"wcpay-amex-icon wcpay-icon\" src=\"https://woocommerce.com/wp-content/plugins/wccom-plugins/payment-gateway-suggestions/images/icons/amex.svg\" alt=\"Amex\"><img class=\"wcpay-googlepay-icon wcpay-icon\" src=\"https://woocommerce.com/wp-content/plugins/wccom-plugins/payment-gateway-suggestions/images/icons/googlepay.svg\" alt=\"Googlepay\"><img class=\"wcpay-applepay-icon wcpay-icon\" src=\"https://woocommerce.com/wp-content/plugins/wccom-plugins/payment-gateway-suggestions/images/icons/applepay.svg\" alt=\"Applepay\">\";s:15:\"additional_info\";O:8:\"stdClass\":1:{s:18:\"experiment_version\";s:2:\"v2\";}}}}','no'),(57630,'wcpoa_att_download_btn','wcpoa_att_btn','yes'),(57631,'wcpoa_att_btn_in_order_down_tab','wcpoa_att_btn_in_order_down_tab_enable','yes'),(57632,'wcpoa_expired_date_label','yes','yes'),(57633,'wcpoa_product_download_type','download_by_btn','yes'),(67449,'_transient_timeout_wc_upgrade_notice_8.1.1','1695877982','no'),(67450,'_transient_wc_upgrade_notice_8.1.1','','no'),(57645,'action_scheduler_migration_status','complete','yes'),(55590,'elementor_experiment-e_optimized_css_loading','default','yes'),(55591,'elementor_experiment-additional_custom_breakpoints','default','yes'),(55592,'elementor_experiment-e_swiper_latest','default','yes'),(55557,'_transient_timeout_wc_blocks_query_0e95037cec9591bd6fd0c79a4adfd2ff','1696566708','no'),(55558,'_transient_wc_blocks_query_0e95037cec9591bd6fd0c79a4adfd2ff','a:2:{s:7:\"version\";s:10:\"1693808732\";s:5:\"value\";a:1:{i:0;i:3432;}}','no'),(55560,'_transient_timeout_wc_blocks_query_3986b08c1fb13f4cf5e0f806a389d6b7','1696566724','no'),(55561,'_transient_wc_blocks_query_3986b08c1fb13f4cf5e0f806a389d6b7','a:2:{s:7:\"version\";s:10:\"1693808732\";s:5:\"value\";a:0:{}}','no'),(797,'rs-templates','eNrs/WuXGzeW541+lSjNWj0vjqjC/eKZ6WfJsl12j1XWKanLp55SLy9cM1likmxeJGf16u9+gLgwEIwIZqbIzGRK6C7bUgAEgxH4/7AB7L3xX88u1fry2TfPCJXQM0CoFcgDipXBDnqpkYeGUkSePX+2nk2tWz375r+egfivqQ0fg+H6ZrqZufDnVzO1Xk9N8UqtFtu1m4UiNZuqdSgyVdHEtEX/nC4HCl7Ey8+fbavGCVMAWosFMMBY5wQ1hFDmHBPGinhP06uLgVbe/7G61xf/WF6ESsuV+zh1n0LFy81m+c37P77/Y7iymG0308X8xebSXbnldm4uX5jF1fs/No1MqjYmy9n2Yjp//8fQ0Ee3WoePxFt7AV6AcGXl/nM7Xbl4tzRcouHSp6ndxCcKEYk1Lt304nIT/s5A/Kt1a7OaLjdVM/97vVTzorz9//P+2WZz9ZtZzDduvnn/7F9/2a6K+oc9L/x2NpuULRfN/RXud3W1nLkXxXcrdfG8WH+aLl2xiB+amg/FZlHM1cfphdq4P/zv8EDCF/3r+9X7ef8rwwXjwhc2tcJdGhXv+C+7h1R8q9YuXPfT2SZ2gb8/273J/wjPt3xCv9XP4tk383Cz4ZeGbw6NIADZBKAJQgXE3yD4DcbxlSjzQV243xarsks9i4/mamHVrP6zsnYavzh2nvDXi9Ah3G9NR9td2K5m6V+rzhA/bTbTj67untP5eqNms/iOvJqt3X8/D5eb/osG+u/bqp/3eu+6ud7punVPS/utApYpiYgwEjCmCSBagaAjq6yhxqP9fls1cVSn/RQeZPjEel312vXl4tPkIv7q1fX99NziUNd92XTcYnc3TW8tPk1DH95Mr9zqeaFDR3GbdaHmtlCrVahVd9n4E++h09Zv8NZdlpxPl0W7LovTLls98uKd0uu0w1aXN9XVuru21zqd1QHkJAzk10wCiLDCFnDFKBXIEG9B21nbBk7UVesWJ7HJSSOCO3dWUA5OR3TWeaG2m8VkPf2nq/rrquqkqjCLxaxYL2fTcI/u903op9OrsnMWzntnNi+KP9eIrT4RbnwzNWrW6diby+1VeOa5O6fdGe+6M0m68w/hIejF4kPxgwuV2/7s6+sTX12venTnaqdPUwoYwdBSDbXSRiNqjafIUCAsQQ7v+nSniRP16r02e/0ZHu7PAhxlNRTvLqfrphuHP8WuHfts6JWz62K5WG5noVfYQl+H/r173uvNyqmrF8W/bdebYjGvdRA/Pw8/IlQP1kRJcVV8ulwEisffdnezYu022+Vv88XGrW/4Ge8uXVH/rVgvtitT3kz4fLyT/62Ky5Xz4UPxzazLV/Pp06feO6kNuPatvf9j6OHbmWvI8/6P/8NHY2n1/lmxUasLtwlt/qZnav4h3MP7tj++LZ/P+2fht6h/fVG8Vh/CI9quXLyb6Xy53RTXi2iuLVargIXi5ZufwmW/WNW0mM4DBXZwCb9iM51fBCTowLt/rf998Fm2D+bVpTMfFuEL4/cNPYgDfdQuzPYqNFPe1OBP/i6tUf7YIvyKQqs4ll+62fLF5wAqvPiFmarZlbNT9SRxRXa4oh1crS+jIlNQNVcaRJV/78CJeKIlJJZZjamDEgLoPQDYEMedwiqBU/nhE2EpqHqyDE+wmdaUNY+3DQUT/eH2BuPQr8JfyptpJLG5VJswsZkX2hVhVhGswTh2Bt1sVouyB5by+uT0erpxyagbKLZdBy0VV3EyMvl06cK8KNzKYjaLM6F6GM5jb6cz011nZmlnLkFY/KmaNKR9uixoZhNt1+5c7s5/bJioh2GQq/BvxoVjCmrhnQ6jBoXlCF738E4bpxp/q0Y/157cH3/JHc3Juw3A1UN/oOH3KwI22/VxnvTxP11fJR37ovxb1ZvDn7uzImIF9BB7ybyWOkzkqSehX0sGKcBI77pw+OBR/XaH5b0Z/Opmy5HVnfkuaD4TMCfWUDA3ti/u1ZIMMoo6LN4/+855tZ2Fq61tWb254vvQGdu7WkfBmUs1Dw8izPguXD2TC3PAxmp7u7hqLdT4DfNjzNKL2UKr2WSmrsMLD58bNkffRrvMFO//WPyprF/8XNWvzNLPsSZ/CspZbU2pw/J13vY3ePWfpTE99dcTvQ23uprEFzly6+WjjL0hPuFYr7Kjm7v8WuzgpwhSvgOpSED6Y0DMLGJmaLH/sinsL/f3i/YMB0URZNhzhJUkyHOBMIVeASyZxq3h0G/nVKuncRH9VLYDR+DOtnF1A/FKZGUA7m65v1qTmhfN+w763yg9CX0y1PrsddNY654W/M+oF4tdL5aDvfhtMK5M9Yv7vXjdFu734qao04tRsHOBtgQCr0kwe420oS87paFDkGIw0Iubdk7Ui5dqFR6A+r3dDPiciR6+sTMf7spDvfN5GIfbPYFyG6AcWsuV1t3y6rq4iissm9SSDu2G3xYXTv6Qp3Np35btZixIOvdP0W4pfnSrRdKpS2NmclldrDpzeSle6fRhbjUUXEBLiEfKGiSMZIgQICRRysBdH959/ERdNzY1KRsd6LLofndcX4ZueHW1mM+uK1s32XQt76iIN1fo2cJ8qLexKoPw9N2xfENPsTPCxDUg9Q2Ihqa6WKmrgQWGspne+kLnardvQsjDFAzEpXyDNA3dVCgUZmnQCmZ0u4DWaeJE/XPa/JAD26s3rPAzcuMKw40TmluuL7SPPa/wD06p2geUl/i/7iV+2DqFwNQr5Gf3Uc0XxV+C7aG2KxV667cqdQ6ZleWrXbFWrYvIQFl3KwBy4QUOgy3jFmrkdOAXFQRobYEmraPIQEOnWi3dLflMNu5qGdnxRa88ffaWQF5xyitOecXpIUDcujrB1NfptQo9/genNnFQ7vnoXYVSXxXu8Jtc6/qVOgCQwmGCqzQAQFLtrGGeASyxc9zvsJs0cBRuj5570zs74K3LhYVgEQa5TZfLwE+7+DQv6tsoFr5SRnym9W9pyPToZCxNVHdXPGYxn6WYW0cvmHp6vY52YjMXLN59ShcpShuymV5NNp/atYpeSUfWNqjaQw01pQJQLzFCBjFiKI0OuLSdF/aaOZEt1W339tt46AVCB9TPJLqjNVXeSFHfSNfz9q/TK7d4Xvz47vXPtNTQ34IKtsHG+hjudrE+e/VXP60Uf+xKWf1nrf7WbwrSnvqbraPi5XazCDOP6x4DdqEYqq2RkqBX3uFBGM0tF5xqaOISPMaYi+hyRTwj1HK2x4NeY/dBhbvbAtW6+w4GBNDPgkF3G+n9s92PfFaUbzGuGb0o3u7FkCi9TgNJkiWOJwQKo8oH9bVYC096ow62zmkw9U77s/u0Dj/VfLgIPy6807/G0SrhxTyUT/SufPKxLq9oUZVeVFf3QnWcd4Qog5UHXtIACC+IEZApIBBvV2A6TZw4/qHcUVgfv99B77zfsb+hUZkF7XOsrIJqLSbSYl18unTzwsXNuGZ2Hb7Nufnj8aD8DQegkDAhXuv9uK9oIvF0t5Vafz7I97HQ31Eqxbq/oZRe7NoJCjBpsEaCWa2lcwRTGp1QCHcYA9BlwGm3k8omV4vwgher452x7w6A+P27iUK7MV/tbiqd+pUUf1q5gIHY/9T8OlLj4g95rSDPFk4n8tbXDIoRkRdvFutN+avtiN4ny1Cj8jsZlH5S3qUA8g6EuQLA0iCptCQIaG8hVc5QIsQgBZLGTuW6Exv87FjII3lwB9/1X8Mdv4l3XMQ7vud1g3PYKY4db1J2vHrxeXirOBjecXs40ig+mGJzHSZU14tt8SluHYYKdrqOllTeMI6Pp5Lpk4RV61II5T6s9ryuSmJ0nK52VzoIkmHSgQWlWCjIjQizEGcF5JQT4DlwqougEzpd3TgRgfdthwz7V30Icw29Xc3XTbz1E5xkVL8sTzKegKRbT0oE9iU9uOAwsMrQX2LwEkAnHWQOYIYREZAygxCQLrp6ONlV9YOuL9z79KLcbehPufd1Xg6I7/9YLNV2HcSz3WzCO34yYs/LCE8miUrrnYrgnsJnwQILhtjA0F2V9Afw5HpH8AxJoKRgxApDDMMQckGoYM5CY6h3HcEnjZxwSaFudT29mG+XNy8s3uTPdVdH6lJeiciDqqPWTJDSIrqiXsfAltdqOjOX06tl0d5xUd1x4aduZp/saP+8AsHzkgl38m+KaZtiKpr4OyZXzQOaBLHGeP3JXodJPPYGZd8+YbOwrvaAynA6VzglWclSB9Q/LzbFn9zcraYmBdNic7G7WDNpd6k7q7CCayWpAwjBACYvEBY8/BZknLI+sT92nz+Vb2l45NXuwMlWND7DszQGcVR3sZfdqfR9LPYjlErRBpW5DzschCl97KDZaTQ7jea14zOFZ+s0ilKn0TeXi83iYqWWl+n+0LJztaJncq3rLKoR4IgSrrzm1BHpMdbhCfCYyQSzdncoaeBUa8Fti19LUogSLXXUaM4MkZGbkXu+yG1dexEZRu5QdogUar38EEOFXWNWCaIFlVohbA0J/xVhcu2wEowS6tUQjU+dI6Js+ojsunsJS48i8s6tLzM5MzkzOTtQotblGqUu12+dWpnL4ofF6mp/jXNdFsVFpqvuIud+wV7eaOk01BZ4hDRWSAOkoFKIQmuhx+0q534rp8rU02v2LFc5q9Dxcj1zF2Jf3XoRfkbA27qIaw6JP0UJ6C9i6bP+ndWPj0uQefXxfLnROl6j1PG6yYw0ZMo1WYt6Ztx+QQcchhqFoMBSYBz4gQxgxHmDPENOOdqGZey3crJd0UCJiZ8dPCHhphQe4MhEM17NzfWe9Va6gbqgHa9sbcOsjZq51iNr467Wn5ff61R42L3R7Hn5ZZkNrYM1Sh2s3y4Xq03PoWldXt0zFsprPTNBWMcVDFMzjBRmyDIoLKKSeq+Q56g9w6f9/Kky9exyXR0fWXHn5Gfzovo9RXl/dsS/6al5OmS3pqco7datGqVu1e9CF4xb7ntnbWyqy92jNtKL3VmA12HoVp7GzJ1UOK65dlZQKRwR2JidvNMWTiTwbpPHnrNB7vGcjeZR5yRcgyslzePJKbi+7hRcqPWpRqlPdeVF2A/z+hiv9+K8Ole7nphKIGIc9B7LMncgE95IZxUD1lPcekJ0mjgRrfbavLuL9XFJIe6Cq+p5Z1gNwqp6OBlVXzmqWl9xDHqo2psuldLvTJZ2V/ZWRjgN//OSQY6tEFRIY63RgEEENOddPp066W7Z6MMfc7qfdLd6gpVPdTLfaKdOX3Kk+dvST82o9ebg/s51lbOneo3ReX42XW/+n/iv//Pm57ev7H9+9+tfX//bmzf/v++3v3z/n3/7/v/7+uV6CT6+/Nsnin4b1PnVQk9ntSt7JfPwo9fxl1YJuV+UF8snntx6nuCdxVmKrVc7Tr3af3W6eLMKg1sYgL5Tqw8JkT45PVlWRRNbFVVg2i/YS6ijBUfGAwaEY9hgRQF2VGBOrMGg3Xzfb+WUuUqTM8w+A1YEZG+ovPOed96zN9SpIdx672N0AML7tuE+KruL6oOlHSZrFv2fhEQUIegxY5wjyCWXFjHHPBhl8uSk9qOKSh07tuGOUOZ3hnJ4zW417x/PEDq7q83LwoafZtz6RfFul7NoHdOgOmUu68KG4hXRbChaT2fXf8ir89l4uz9uJAe74xFu/FyeUXQAHNUhQqPkaIu72edRsOKoZUop5jznlCAphbQUUMiIRIPoaNs6ih3tMS/twYeZHI9FjoyLJ4OL1ukak0O46JKiVu+sLtkhIr2+t1SOsFWaag8hloZhiQUSjHAlrSOuY1akjZzUR2d5EnMiz/HyHC/P8fIc7wTwbX2rcepb3aRQ7+9Q1gu1vT3KvetdlwonXbC+hDKceOqBAZpJbhwHwlOl2l2AvUZOhN5eq8cmg2LgHj0rwqN/Fx993qwcpGTzePJ25de9XYlb727MBsi1N7esGdCZUCbX9uJANDIQKUIFgdp6BI2WDAPqkRHBftzH1QmXnRpUVctPA6TC97112egrb1c+le3Kn52K8/14+PDibhaemysdyLsu88s3GXnaLnhzOp6qgaJsoHxeQ0+9MV+L6q6LvMt6LghtPeRxx0O+ms19XyaoTH3ky+sT11yvveTTq/tnQXoqnbRa8GDlOcIDPmOMnRCWKJ+ExZRNVC3UIIWfBVI9vZjoxczeR56ez4iIGc3Ts51P/3Prmmlz9cNLOIUf8LyIv6DE1BOcOP8QhOS3q/CRaHvN/fRiWwGsWCyreehy5mLwVXk+W2x5SN53tiGrCMWJCUPoP9RHVb2j0Zn2qyqe8dXbt+//+G9vaxsyGIHmizcN36zc1XR79cVMX9tAAJwGAryqu/H/u1hcJQBrsof+s7pc8Su9uLeZ4LwwVvPqWG7mPfMKh5mrAohr2pqBdQuxgaPold7JI2LrY0xKXxMqOS8+XTcs44Jva2qEX1wrNnTp93+sVgcbWYXpXnlBVatUI4ItV8KKl02dqq9v4ikubroKE+h472E28wR5+dOmuCr3wrQrJRseePxQTBobmwnPNrQT7jead+WDCl9an98Z64WhY2qm4Q5m15UpHATS3FQm1jkSqw0IwGlAwA+LhR0KSPbhej+pTOdq9/Qnrj0lNACKMSoUUBgIw4HhSHIuk0ytsYn9MOTfyk2Kz2JX544e0+bqRiGX9pZ1GzXdySImJyj3OcubfPHoGFOregNmt54XJ9txMlvtF2SofR1Qe9LB1rgNHiBp8MBfYgKAuDUUk4GsE66t6oLSV2K9A1v3codsHEAJCMNWYs484vEwCRmDM4OZxgzUO7I1bZRNHGWQde9mLPAaPuQ8ct+to7bT1DxIMW4hRBlWM8lZ6OvVzPIRENJZqPv+lmt0yUG4eUb5lFH2ZFfESBt3QNK4g3cr9TFYE/UO/avq9NUUZ5uywmRdVpiYtkIdbD5Y3PV61Y5bBg03nECnDVcKGgeBQBoYzWEbdj7Y1lGca5psDst7DMOtPamvc7h39TObA2/XtU1UKB0s1cCchtC1v1cLk+xz8kg+J3kCec+Iar3yCeoueRm33HRXu+oru4Wu+PfuGhePsZhAYCc4BcGwQp5xwjiiEHKFTbrGFT98FGaSRfkk9Wj5As4kjX5e3MrzwMymz2dT6/lPcMd8ClOUH3bqT5e3WiRUmaPaJa79ku6BRFAogrX1QmKMNQ3/h6FnljljHaZt3oteM0cRLMnVGdrQanU3mwke4tfnWUy7LcWUZtUvzTQ75pzlofCjLy7535fGnzaUgKShBK/iMd/hk8UPQR62uyVYF/ldSW0sda93EwBKgLRnRmKImEGGYYQZYloGIwox1E7V9ho5EXo2i625vMMSO3ygw4fqpahwN6Vn6/4BRPi7yVKtwhtTvz/eutRnHbb+vPJjyuo/c/W3vuwk9WXH3xVvmo731ri5S49uqAvW9fX6zIb0akf6FFLGPDSOEcmBcJIr4Kn1ygPqFGztjk4TJxI+tjsF3Sb/5yHd8ztbG6l8q9Xd+Msq7VehQLF26cdld/ou3l6p1aYJxlutoqiuyqS7kYxVbvHF/ON0buIaTnhRtRdZ8W6xmG2my3W5OxbNq3kddfTIlkyXWDmKOi9Bn5xirV87Sf3afw1z5B/Chxer1CMzvO3QoeOufejQ7Xrz3vXu6V9hpoEs5E5ow41iUANJoacYUMWpTE456DZy3E6aWy+jO/PHJDj6RCbM3SOk+5bIgFXzRGyTnIErm1EnBlDrFU5414xKQrJvTNsQrJUbMjeEGnuJly0m1FCrBKAEEiCxIwwwZkIJp/CG5A2hudPZWbXZdkcy7YVps6PIlBhZ3XlWYjFZt9xcThL/8Z0fgJkttnb95UAsGySPxoPWx5qIjkGyeLW4unIxDvTb6UUKhEUA/0Wr/vKv3c1uH4wOhSWjLNggAjjBNImpi6nGBCTbTtVnj9T1wtT3eYRfIjj+XKVbxf+mT3W5WMc5VA4A7kzL0if0tnqfg0HAazeLVIzYqQeLdQwJLj6p+Wb36L7SWI+godC3ygwdsZe3CnmahGp9qokcIdTbq/ChLqOa37yui3a06hR0uQW5QcoaQw0xRDOhuDIs6A4jrwAGKbc6rTwCwVLLZM8wQYz18FVkfmV+ZX49Cr9a52nacZ52oep2Fd/3j2U+gHTjfDoPVvU8vO12x3x3qcMsgImASjpEBQXQa4eFEJoIgYFTolwpr7fKd58/dqmnvutqWjaayuBBHXwSv+nU1yeKaF3YaZhBrSIWkqXS2tNwsdtOv4wrYee4DP1lLT3n5ao8Ob01OmnrsE1Th+2XFy7Ggf1apa/r41OV5ZMy290OoOnF7sqU1A4pby2lChhhgQ3/GAORVsQI1EYCpy0cBdG6oTr93v2DtDiGpOW61IfS72g1X6fpDKqsK2V3SEBqonl0XoF3ylxO3cfIrGnzA7K/5dfhb/l02dd6gtPUE/ydU1f1zCIhXngFm1Cwg1399w7nrHAahr4PuOISxV1CCIUOk17PgUHlT67urv7wcUEnl9srPVfT2aQ0rCa9idUdXMPhC3IoXeqdnR3ij+smSi11t26UGIVnp+todoS/1G85MC7NMFc6YNY/sbIdXxQ/nY8/Zibe7Yj3dKJyPj8PWJ3pdddd12UysCDySRTCTUnAqk+Xz7ttoXeneVv3kUeL1jef4v3RYiDxxO7t95JP9Eq6JypxRpml1qgwlCBGDUDUaKSwZUwKIPfHkL0cFKcZS/YSUZxkUAE3DyrFLUaVXWqKPK7c/7iy66F5ZMkjS87+cW9jSxt3QdO4C/J/iyYdb28+ol08ILtexduNLZ2r3bkJN9Q7Lz2iHGBuuYJEACyUQgoK2uYQ7zRxqnhV8mGXF7Vc02hyid9lgEE3DDD7PgacHrNMU99uUd9otUgTXkgTylCe9lCH2p/XWoyOvuHxGImpd/E8ikUaSeJmpQP5WWdFGokWeYzVmbyYnicJtwV5uLL+bR7puFltS6y3ATWU3nlxvV67vmxK0zX2Tln3wGgILeLICI44V1xhYaXj3kLsEJeE7y21dxo6FezL1fY7OFqcerW9l4AzJynIS0g5scuXvkDTBv5Q1knschU9Dt4uFvNOcpd4db1IMia0l7r+H15IZ72UlELkYooEwYhCznGEoEAySfHSfP7ILMaxmUlsJ4n12c5jP442QHMi1SSC+374+nl5X/YPQwvST5596LXx+LTz3Lb8qFbTMH2M1nLTZvS+W0+DERa6rFvnTPJPIO/fcce1VU9zEglXLrKkOrxhnaVe2Un8dmIrL76Egzu+tEGiDc6iaXDWq8tVmKxdBWy9nYeXuR/mvg4XuyHuuyt72aMJ1x4IzI3yXjDDEIEyXGVMApQs3u8+ftxQ0dz1JLY3GnRF79tRMPVjudrGwPNZPPi2eaTlbdt0jV4Vcxe9B+Oz9mp3hEembM6umvF1CF9tLBkVnTTR5kPxbeybr7fhYXTyRJsPOhQkGaKrC920HJ5SrqhXFnnLjJICKaYcc5JByTBPckNXnz4yLbT5MImtTK7i3U7K8iO3Gk+8hBBvsdCl2Ct4jXjtxTXgK+1sDMd4G910X8W40WaVNR/0lldGs6td5FYbYUbTCLO3M+c+FD+H3haniW/CDXaSc4TCWVW2rIqa7Bzdgu50nXvuEQNCYqaEcihmFMOaWymdc9gn6Tm6rRyFtLqd8oTwSUxXlkzd28nD+c7V58XL5XJSv4jJm3KiHsO9Fvof0Re5yRodqFBZHnWgfGngVLmI2gRmT9aWy+uMZ2uDoTNiWRttxtJosyCgMZKp5XKIY93LXS8w4TQDEWIGEkGUFt5GHzDjMOPCJts4nTaOi5kIBOhz7C70QuWlew9AGyFYuP+ivv96qTESrD68qJx+BU3r7XRm7zUI7exCznI4xNnZaCD836T8XwHAN+X/Hp1rrA0FY2ko2Hdu/aG3IBb6z4fugtjuSjdZGkcKKiEVdlhjjI0mVjuNsPAUE9MGz+4+fhTCyp3n2NTtExCdmlnaqXBvUSrxPtIsjzHz0GJWhNt3ando7afLaJmV59iWCYkWn+Yvcl7ELO/Ty7uNdmKdcy9mLryRP7tP676PoYll81C0SxtQ75R2r3eTOyODPUXQOwy1AFIQ7YCH0kElhUzSI+41cqLcY7HBO/ienFr9I6fwlL91J7NqWalxQW+d8+4o/FgrZxx79DnKWYq9DVZhabDKTyWm/1S5tCZCL1/qxe5ypfL0YtfHzHloOcWUW4+MplhLCQwnCoW5CsStxNMWTqTv5eVi03oP336FeE/oYD/TIL+j0Mv72DkHr7fTjdKzcoCs40+iA/GqUcsjzDe+DOeyvCSTcXcL3LXxEyyNnwhvcm7Vyha/vhmA3rounXxaTvbZN1DWPT8HI4CpFgpxRpEVQECrrVeYYGtkmbq1XmXuN/RFk7B1rq2WCAZeQejEoTtMYhxeS8tK//dJqDfVPrwPM61FtRNffrYo+1oVFXjjDZfLSplMj5+0bIBSz/7+X+8DhzaX75998/5ZO4Y2CgmvMNzm+3R47RS9WF4u3z97/v7ZXF25so22BxQvrf1lXpYGRpWFlVhDc3WTI0/p/Y2Sffbf//HsvOnahjEwOjxzfBNeTPFtnU6uM3usJmTxxU2adHPJHHK/tMNYT4ynWjsKlVdUYQY5JVoH1BqttEfdmeR+U+cxnzwu7W1xl7yRK/sm3nGdNfKLTwMZu9yk7HK3zgIZO+nmeuk6aSB3A1DOBPkkTb/W65+lXv8/NZ7cH13x6+V04/QiDOrplLet8Cktr+e+Q6VdPwMqNFE+zIItM8xwbZyhCFFBqMNOk3YSPNTUUXRKWpy0TU52W/LVxl013t3CG/S0a2DNRDCKqVkDq0XlV4ur8nr7QnaGVfUAGrk96ER5KCDAuNVGBSQ81EFrjW9Gvdla1C9oPeoxekumpt2j6g+DTOm9kN0Sgo4hxLXq8vz9ac7fxyzjXufoGMf7pQP2cdtrjrGP74Kz8zeW2wADJjrj0XzxsXIM722zTHdlyfjTXOomccCEAM0kRMxKAwXz1hoOsYZCh4eBkkGn+fzBkebG3qtdsLL2T5yqZy6T6J1zuwEG379b284dd+YuomnnlXWTqNm9o6peFI80ukRNz6bzD2VK5Aph578gO3p0Z457+LJ97vAEyTOiahv3wFL/4e/U6kPxqu7T35bOYZPitZtvU1eVUGdSZieImYBLD7LJVVWlOa3UfAh6Hqu3d/AO0RYhxqG02GCLIWFUIsmZw9Co9oytsdaOw3HZarKeVKOtiqC43fpEB8QAkWOOAvxbmEdHP7zKI6w1Y8vo32o6H2FX7oTVmSaK0HHrF1xEl7B15HPQjQ+fqD8d38d9kvEn3z0HolwFjiSIr2t3n83cRcWlDbejRf3Cnjd4S5aT7xRtWn5rs9ZR9Y/1TWGmnY6+Lh/jLtw1cNjVfoZ6Fel1zsyqLKDiL7svuAPF6vdz3GJFKP+h1mYRGTICuOZa6KLhp1SouifoNV9VUgaNULCNouDgJgr+6MrM7IcoCG+DQLiX4VgE3BHqHQvmphBGSYysQVIZxSn0B/kHM/wy/DL8ngD84BnCrw274PAm+L3U4d3eQD80UXWtGxlYV+2QEElBAJQAUgQVlFwJJImBmniOrU+coA40mHmYeZh5+AR4iM6Ph7wN1+DoJh6+dauPU+PWNyART9ZtxRup2NbuOoBbhZ1lgBKOwn8VYoYHg1FT5AX1Ah0EY9tmZmNmY2bjE2AjPkM2trEuHN/Exjf14aA3sJFMlm3FG9nY1u6wUUpHPAFYSosAYlAxiCEg2AJHgQbmIBvbNjMbMxszGw+zsY6Oenw+kjPkYxsexMlNfHzn1pvp1WI+DR++gZE0dL5O5Rs52f1Ed4LtJUTQAeesjS6gTlCHcEAlJ1gZpQ+ysttu5mXmZeblE7Al6Rmyso0t4vQmVr4KH7555ZFNzK7ejYTcVe4m7AsTamc0hNh7BD0I1qPjyhogGOY4SUp9sMnMxczFzMUnwEV2hlxso4I4u4mLPywWm47L4xCW+MQ31W6kYlN3z2L0FHJPDTeUOOyAQdZyjI23mABweEumaTEzMTMxM/EJMJGfIRPbYCSeZpf/ucyidoOf4i1cFG/yThQAAsmhxwQLbqmXREFPHOXceSyQ2gHw5I6JGXkZeRl5p0Lembkjjjhl8zbUhYsbabfnj9glEDxMuq4PIqHac8ilIMHEg8ZBiJxwJgaHA0KpGaEczITLhMuEO1vCwTMkXBt2wuWNhNt3Orydv+EtXA0FAUgTBhgW8SghixmJmVQhgzEakNsxs+4kXoaZe5l7mXv3yD10htxrA00EuJF7A86Ft/YrvJ1LIdfCOIW4J5YpB7mhDrrwB0Qo1xawMQCeypswMzAzMDPwHhmIz5CBbbyJgDcycMCJ8Nb+g7dzHbSQCIkpZshyiBDDzFgVTEIaQEi042MMPJXXYGZgZmBm4D0ykJwfA0UbYyLQjQwccRS8k4/g7d0DAUOUam8Jgo4Az6FXAspgKWJptQd4jIen9AzMTMxMzEy8RybSM2RiG1si8I1M7DsE3tYX8FZugEIJYTAhnHGmGcTOUKuRd9QyjOHoVsipPAAz/zL/Mv/ukX/sDPnXxo4IciP/eo5/t/T5u427HyYYAE0I4AoBiZ1GDjogBBPBFMRQjsHvNJ5+mX2ZfZl998g+fobsa2NBRBoL8s6Zy+LfwhuchztrWbcJl/+xu1rxLbnW3eLwElkOLDQQCMyFl5BqKAwyTnNo2y2OpIFHBdgLeEKE1Rldy+Y6CV3bw/EKG769lFl1vkOxWan5unr7T/Bgq3yA1DllbRZtMINIgxleqVXxnVOzoIbLUqy7s01UuM/ken2mSXq1mzdUg6hrIShVQjliobVMOIil9pClp2KmTRwn8NDUpG3rToeY7Kl7L18zoyCrO6v76ai7dcsXqVt+ND7eVknEoy9+PzF7OXEoK3S88buXu+fCWSeg5cSQoOswJ0EOcWLDRAULZY2g3TnJro1TjeRtq7VPf0/scEjs+L6Ts5enwsU6KryeOCuJj7tEQHWutJ6Fnl/nZ8+HVOZDLr5ICrXu8iJ1l3+1cqo8puiHVXgX8YTB1M6oC31SVtsa+yV7u2OYGY2ZUB5roxTywdrQwGnnHSO4XRvpNXMP50Xc1ubAD3JGxOXU2ubSuiJTPKNhs5peXITpuy0+TlVxT4dEDEp56NiITMFMwS+SgrK1xWTHFgtPZl28ac5q+b60BVJTLJY3CxWtJZZe7QAQYm0h9Rpb64WWgkCjKdVCYiGN4Yl7QNrEKPyKW3WA3UJKZcqkgeB3OJ73MAglACcC4dUirhjHmqtFfEn7J+Ws81E5GYgZiPcNxNYslKlZ+N12sVnMXX9SaquCHQPrv3dDJCURLC4dByOQG8ZomH1yY4M9SIQxpo0Yqj98qvnnpVOx35aCuKPxRw6cmytOxrztfPqfW9eSLlQJ7MtHg+VFry+OK23sokxjF19P47mKs/3sE6vfhhJOVFe7u+7AMsWEpFZDRT2SGjIuAYOUQiM92KGl+uxxZLmqbnZSbzcmW7O3WdhiB8woCMFXsMkem/xp/jjH79WH7/1bqPe2rNc9fS88hnhb7zsdMjT0rjkC97p+4jWi7eLTPDJoU54+PgvPtqZR3WANofiL49mEan4dj4KMDFh3HA10eOQXq8U2wKvTTLDOGkE2XxNf4rrQC3v9PJZV77180E2No8YLtdmspnq7cWPmXGW7FS939aon+P7Zi010Wgg3X917uJASuHzp2bviCXtXXFa5Mk7lZNEo7Nf6tTcSO7M0I2RkIGuDUSEAAyPZXmaRVf309gayeLW7JSs0YVAwSZlnjjFlgQHCEYqR1tq6ZCCLn32wgQzcbSDjIA9keSDLA1keyPJAdibZZMYGMpkMZHBgINtPILP6bTBjTH255wsNgSGaGIC9RCLGhTjpJNUmDGcwGcxOkBPm/kYzmUezPJrl0SyPZnk0O5ccQSOjWZyLtcMZGhjOBnJirH4bS4LRlnSzXlglsRPUMEUIZRZiBAiAhHsguE/8WNrPn+vQBmEe2/LYlse2PLad49i2braZH2F0w+c4usFkdMMDo9tPc99ZdfxtWl3YG9Xi1e6Ixhxmwglv4xY95ER5ZqQAWEjlKE73z+Jnz3U0E3kwy4NZHszyYJYnaueSxGt0KEPJUJambPhpvl5OV1X83Y+l51YyoE3bwsumrBrbeiXdCCjpAdFIO6AZFF5xB0UY4wTWgmme5CnsNXMqJ7SyZNK0efRAd8fAg9K5KnU/i52xGa+8U5ttuMmAi//chvrT8K6uA2tD99q42puq9Ksyi8Us8cetQfx4TmHJj3hR/FsYmQrXcQ9LvMPitWSQKJ3FvgZfsRI6T9FTLNq3LSDSvAav1YX653TICfWqLlku1slaTudqhwqGMuQxodwRZ7UFGEgqfUzkzBwI/91RodPEqYjQNDruknqT9xjpOqRCAE4UAq0qN/xJ4oaPv5u86Xrivyi+n/9jcf2H7J+a/VO/FP/UaIq01EmTLvzZfVr37RH3+zIY7EP2SK+kmyLPI2CpCsO4kcA6C4QWmHotncCA29Ye6TVzKvrMw+8ZN0fg/Zoj4+HYpcCWbhUBU/igpdgB7XQdTNvrgIki3vb+lDzOIeLv+ENRyqOI+nhYJgWVx6lkRaM4Hd1uNjlHRMbR8TiiCY74wIJfM/t7U88LE2Nob5VtuatRAWrHovGK1X3Wfw9qaGb5v0Urevkb/O0ct7PuOC9yxdhEulLXYh6fyIVrFwBrC6kO2hlbeapspIiqaqkrwiuuduWFwbwwmBcG88Lg+TrWhzfgHntxkCfDnjx8jnt/5Bs6SH109Dtc+YYRkHwR57GXpuToKHgZcRGDxtcz5z70wvFLC3Ixn1h3Ff80Wygbh7pq82ydc7Vm6D3ugeyPjTg0hrgkgAjedJxdn3G3xdvnkg0/9fzTGWoZal/NkesPyLPRlYokjgSmcSTvrpfu0yr8mFU/f9JmV+aaojoh9V7BnrOSF1o5wIwhimtIhWUCGAAdldYa1Gal3mvlZHu5u3YnTcM34w2Xl066oTtdl9puaNBs567CPDxeT5586A2T0JPrX9zMH89g3+ahVkqbNeZmAKhfzfpOcBxYIkm6QnjG8cogcXqvYrdurF2xk1Nerz28Xvvs7//1PtBoc/n+2Tfvn7XdsvcS3qeddr/0xfJy+f7Z8/fP5ioYJrGl5O28tPaXeVka0FgW1g8nNBn/GegW74c6xvuBrhGbePbf//HsvJecYRJBAdMIim9nLnS+1wvr+vtgOpaFm3R7u2B71zsYR44QJzmjkllOuVKaAO8VEkAwa3wbRbHXyJG5QGNjk9jaJK673MEj5zDA77z5PuySU91Otcb84+t3P9N0BfNj+NmL50X4YbPpP2t2zd2nItxbUf6uaKG6R09ZnN1yvmC3HJi4oMPUBf1d+SxnUzPdXO/ncdokZYMpnXoVuseQWGqg49Qp5RXDTGAhqcJIMeSJca13eq+Zk3rvDUAC3Q0S8mzc04s8h81z2IfYjehg4cxz/dAx5iW+ypCMMa9nFHVotGcYDXFvwEaSgAMJHbFUKGO4hcgLgKxDPphJmtth8t2D5/Lx7LuzgZTpl+n3tdEPniP9EkdsSMfo90uYdIzCb1EXjrOvrNHNla6t8DIeEoEdJoAQyRgxjGoFudcUDqOvbOfMyIdxBl8GXwbfueYSGQVf4gsO2Rj4fo1uy7+64rvFGP0+hRqfnF0cBGBTqcNApQQAihAdZrtOaQwIJDaAzWOkvUvcxAebOjMMinK5IGMwYzBj8ByTToxiMPFBh3wMg29Wi3+4bl6lDpSWbfk4BJtKHQhSz6DGCmKAsVZMUaigQBxAhh1QdGT1r2kqQzBDMEPwSUGQnCMEWQJBccgWXBd/iqcXHjIG1xd1jcPmYFWtG7HspFdeGEqdRQ4HAEqoEWaMOw451uMGYdXY2e2H5JlxpmGm4SEa0nOkYRKfAeUYDd8pPXOjBuGmKR2HYFWlA0CPhNbEWAScgR5JBa3jVlFlgTRI4mEAVg2d3YYIlZl+mX6Zfgfox86RfknoBgJj9Iu9J7Qd3sLVGAJNp8o4B5N63fz60eFZSQ48xYRIwDnxSjhAsac6WIjDMExaOzsiMp6JmImYiXiAiPwciZgEfyA4RsQfFovN+B6xb0rHOVhV6SbSkc5poIkWFBnqOcEOasuZw0545PwwAquGzox+XOTJcIZfht8h+IkzhB9KAiYQGt0f6YXwpkQaD+AdqTUWvhuv/JZ+5rHgdnT4bugHhzpHxF4bAVEGLa+LfylWi0/rJqFpkOimPH7D2ciPGCURgDPdVGEXxXKxqZKd5njeTLv7jec9iRP0Awb5jqIuCf5AafDHn6fGFS/ntngVeup8P/wjlobCsuy31wPhH70K3WmuFzG4FzHDCWEEhRkuoYboMBEPU17WTnN7zRxn4c1DcxMTG5sEFC7DYw6Pa3IzGveSJ7I6mCwHhWQQZrPvYoeLf6lhcabBIGyMgUkwCCLjDOyFg3To9ONgOMhAlW4gHJMYAozDb9YIKIYo5QYJQhWxTEE4TMIfTxAO8kAsvGsahAzDDMOvBYbwHGGYxIYgOg7Dt271MVxZj+EwKR8HYlOpg0SAPEfOMMAEAEYgSLUJuFNAMkSc4MNIbJp6ElDELFuIGYoZiucWNzIKxSRuBLFxKO6frN4h1MuhQ9b7NbrRwhQCz7zVWjhJOHbCIOSZRIppI6QfZuHL449efyjrMLsLZhBmEJ5d5MgoCJPIEcTHQfjXmNcoAWHEiZrbEii/fawLOyDs1+imltJaOqgsRpJgagwFgBJkgeEAUVcGMVc/q99OBmEGYQbhEwYhOUcQJtEjSBxYMwz6nkWNr8doeJnWGEdiW63rPe2xZMpDhhWXFlmqMbUacgOd4kqxYS62jWU4ZjhmOD5hONJzhGMSTILkOBwHIow789g3IxHGg5W6qWYcY5KG/3deYC8kp5oiJKQBQhFLyPC8+c1JIozvCYqsezQoy0zMTDx3Jq6b83wfmorsHKmYBJlgME7Fd+73TdVrxkzGmEpXNzXGTca2WpeNHmOnBZZGMqcwQtQr76ERFgukwchUum0sm4wZjxmPT9hk5OcIxyTeBMNxOL4KH/yls8fSoZQJxQO7LEN1uhlpglFopTY+TKIx5dYBxyDhADgJpGB4mIl1S08CiDQDMQMxA/HsYlDGgIiTGBSMxoHYC8HrEGo4BG+gyh4NJbLcc6Qx51ARxynxEmqrAMN6bLPlFCF4DwRDcj4wzCy8bxbG06S363jaX3leycJM1axYX6pVvFSfVrX7mc0rG6haHfO0+9oncHrJE0SxPEcUJzEyOPUPF2BdvN1cB/H8FOPSEgiHkh10w5+7Pj1CCKg0hZ5Djby2GiHAKbIYwQBXtaNr+OBxNA0NTNbx/iZl3NztjkSCJz/TLn53dYRQKf/Qiz+46kz3eFBQcxS7AP9zXZ2SVB7j6bfzD9fN6Z1P/+Sjp3bw0dHoeJJHIeEkEgTTzklp2+awy/rRdI5K2652K53NKWnNpW5uA6wtc9CYclsCYCMJ8QpQDRSygqcHpDWfP/ZstG1zouWkae9RIFCbPFel9KMZFQyhUjCrqJAY8BtvtT2t96OazmKKr4oI9f0W5a09HgwOcGB9Awie8DmPJ9gAeJowSCIhcOr0+2pxFe3Bt4vwKF4Go/CXeQKDqjCWvYxHRO6IsHe9O9+CiIow5wKUahnmJlI6LZlWFEkAvWqxsNfIcWwwZWOTdWhtUtm2j8uG3UmuByDRf/R3p8HdB66xU0qv1DT+EDUPk9aBY0p7xf1zStPf8y/F6/YDn3lsafdg33Ahvtj0RSf39EROL8WJ7z0+4HLaT8dRLiaEnlMvKIwm5BitdzAlR7r2cV6LHXuJOsSdjzF1RWe6NpyoYy9BRxguVLmwcF20PyZZZFi61dSFXvei+H7mLuKSxMiAH2bq4bs7I35JhGrhZQeJ0FHCqw8j4h/yCkpeTb7XXB9HxbY/YI6P0fWLxGkfp76qb+ehP9azmp4hsw6FqmPC7K50I9gJEFZQxrVQnnLInFLaYgkIQo7CNoH57uPHmS2xmWZK81hmS3hYgXalriMa0ucYMNFZBi7nL5sBM+dFGO4D1dYxrVFMYpQsPL5/9uMiVFbXZctBNKc3de5+JHv53AesnPZ637wpH8wJD2CvH1L1deunYsAkruI49YZ8o1abaRj/m67zyzy1XpZ1adPXF3OX7OP0yrqnTBEGoZGAOUyNYsAzyK0SDEGuw6RCJrZNr6Hj1LnfYCB5a9Ecfyb7nYVabOfT/9y6ormv2uAIMlObcktn7VYfXbWRs95s5/NojlcrlnEQSqV8v+sOrn/ee7kQYS6n7qOz4YaDvXVxGW5zpq4DRqrlxZIur96+TT78otizWsx2vQkzgH/WFlTV9vPww2fVg4i8+fbn7//8XfH6l+++L356/fJP3wfmVF8TjayLRWzmfdDJxzhvsEW5plxMwjhd8mQd/9jewPtnd3xSX93axxhim066HuLsXmEftg1O1smQ/oTB+2O0lRfFT3OzKs3n7+cXoa34pqpev0fPaoHt27IXvo4a+vu77WaxmqrZf+whvGtyVz836UFlt9nUnw3IugzD22Yxmdb3MXG7+5jE+5jsEW9dziRLNUxKNfxxb8homu6zMlJ8Ob+41ZiSeNgTcGBMefdpcWBM2XxajI4poawzpmjhjPYEY04Uk44ojZF0SmASxhXnxeiYEho67Zhyh82sL2csOd2qVabMac27xK2bwENSDOPWIQNvU5ePyDGWdgWJsTbIUEapFZZCYyE3QZ0gps/h5IAgY1MnkmS7z1G3nm2887bxsnl3z7vcGbsPg93EYZyk/pFvFquNX8ymi+KvAWidjfplU/SxKalZ273e9dZRhiMMvKdaCOA1M8Ij4bU2EGGdnM+318ipjiLYNTupOtrNibtPnZFxcI8uYlWXOwE20sNO1+H6dcXS3S0XbZx5XBRP6PtJXT8vwk+fTUvHvKh+HwalHcLXtbddCaiWPev75vNcfZxelKgoKZFs70/jHke5nT+/0xJ+X3F/vJgttJpNSgKvRxbw30ZgmeLnsk69Wl//qDyhzsx9HOaSxCedpMnCXy6XxdswUTZhgpzwVi2X6/ZqxdrkWjfro0DKeYmhBphJIIA2GBiskAr/xrDNdJY0cBxjQ0OTpqVk13UUs/dsxr7rbm9exl3VhfelRqPrQ+iPi9l14KptVjx2GwORSfHwr9K7fF7Et7Esj0nYFM0PrL3UXxR/cpu4d7raBHDH1fkI2OlsFuzHVfzeEuChgXXxwV03xy7s6L2afqjp/YfHnMDWz2FQ1J2yAU03z/CtWS1ms6zsWtmJizNJXZz/tAoj4ua6+M6tpxcxBXbHzfmiKrVl4U7inavdvUJtteNYMUe1RxIYTQhEHAhlCMSkzfvfaeJIF0i33iTybvpJ2dcmCED+8DmuS6mXnsV7ek80drUItlUco8KrUr8Xa+PmlTexWSxm+1Pd9Yswopa3uy558X5/8aFhRRhvg7Wmd3EOzuaVqPNa734VD/WOb7r4/ncTaoeu8LJ03IgD7Ka0pP4WX3FUYvFTuUBw4pVuU97BRM0nrr6DiSrvII6W1Y5eHCUm8W1PyiWKA2vcXRbccnWbJG7YJHXDJoAU369W4Rm86bp6hQIXry9TB6/0YjeZoDUMWQGQJkhzDIRgFBplILfAENEmzUpbOI5CoaVJ2dQktpW47zwKewanceX6WLWQVJS3WsRb7cW1lctRjVESX0hZq/ZQKH7xAVDb1bq0JMrmw0tdtIFzu28uv23lLrYztapYeFmdjvAQPAo4ggEQXwSV/vvcTYvEjZp03KjVKo5xs+JP8SOr60TOpi662JVUit673p1AECiw8DFDKMKGAAepkVJ44BSUFLWi3mvkVAs1TbOTXbs3zyDIqYXd3ERR30RrwQfTYqvDgy92JkWzSHy5uZrRokyVWhoYlRtn+Nroy1jFR55SlM0tPs2gAJJ4I5PUG/mH6ewqGm/LWvdJb/ZN0a4f767sW8dh6POII2MgtYKF7qt46LvASUdFexbM7uPH9d1dM7Uf3S5CqHiUJcZNx704jjDtM63nuclKoyqjcqbzbehMwTqOk7loK61dGWNdx9ws3apav3sRO248fjCeIbguZotNnFzvtk2qFb/FsnKQnU0/RAMstFFeXi9dHB2DMmz4+aUl9LieeJ33tj9A7RX2B6hv28ik+HzfNs/3657/Ji6ypOMiG19l8UvoSCr1jY1XF/XF2jl2d6nriYeM0N4bDbFQghngcZj/Wqc1sw6QdlRqP3+ke2xsZ1I2NIkD026p9sGHI1ckD69ncrr5PxbXjdW5jo7xsbJ9Xg4+k3r0qXcd2uiBarkqBh+Eca10yQ+Tlso+vVqsN3HZ62o6jz5CyzBXWawfV6h5fntakSaOtCR1pG0CVPaj8Ospy7S+XAk1vdg9lJII6zmzUkpCmQpWow6jrpHWh785BHZSTVs40nqsWqo8mnqLVA8t2deqXHmqA++aKd7b2dS463oEft5xZS/FF2dxKob9lAtTtVdDnPz9I0bJXqqPpXt7IuHrcn4483+o4miToNl6q20kdvYyRtpM1+WSyDreVEwXMJsVahvG8LhbVt5FQItaLmfT065sfYa7fPnYBh3mk5KDw3P75L+cZa1mA/Dlzryq4VYuav11GuSwWK2LX8P9bhGAclP8sIgbjPe1yNWsB+/MvdSNaXhJqwOQ265oJf6aNPXXfK3WH4a2zq7C9d7eWXqxmwXeSIINhg5ZJQ3DGlGknNKeUmKr/PTVr0hbOA5dYZgNT2w2iS1O2iYf3sjoPMG9ScTFStkAnU1LEHWl/lnm/SkzkTROUPW7X78oXhb1D9t5PJSWRhneOL9uFsH+8CBoeQKz4cT3ke75PlaLDP/vYnFVgWzddX0si/8ZStezvWMC94v2MmhQzI1ygHIgrdVSG80xp4QDRYUkqdPjXjtHezyW7U1igxXD15+1a0zud94cO3lnyI70VWW8Wu0m6XaBalUGm95w+6Jo8p2tp2Vg6815LarB2+wazwPz12CPJy54NHXB+26xjZHc3/++XJThjb0VMVtWcHW5a4orAgwVdhlgJUJSU6ONp9oq6rU1TAkHoEJamB0Dhlo61XJv1fakaXzc+7m3n0NOunRWBpEmQ1NcrirT1tWBp66o7rRo7rSRaJPM5t/X9WZMtf+yS2dYDnifyhWzxtM4D3tVx6eJHxRN/aBeBzxs1DQmo6jHv96Z4Vd1lWY8ueweGz5cvNf9DSOMYY8hV0hp6yGXWjtMoAWQtYkrhts60uyr20yHvmZkbNq/xRhYLijfzyhYZm8q56Kti3/UR9ymfF7vh5TpHFtfi70tkRfdiWnM2VSOcrPp/EP1pyCI/7mKypq7h3CEum9F1HO0N7O4XBePHyi+dZfT8Dt/0eV5KNH9676cDpbxSyfxIU90+aWTha4PYRmdgY2I5JZzMZr4OtGOr9NiYf/sPq1jIPYkOhisBpLKXIRK81ApRuuVe/mr8cQyB+seTC7TfPK38Mnfyk9+nlx3d3CnBDPohiFrL8EM/4xZ28Cz3ik4PoFKxj4MOmodHaHXjbvwtBv4EpcGVGOnNkPgxSKq2odP1sNbMEarYS00uikW5ULyYLKWOOwtp/Hr53b6cWq3qv2kL/PIVkkdq4Exp57JqWdu2OR+3p6Bc+KMun0FnWFKGj7G4MTDi9IhBr928+0Adq+qy5105mlZx1IiYYYgEAXQe0yAN9YAZTx3GmuFGGlX9NMWjrOPTgTc026v57McMgKfegLxW+EOPmL28FHUJf5vlA2hrjdHbCCyNzfcw93A1NAwxoBm2mpPJfNYhHmip/EkxPAfRGUPeKeYEp4l8rKNmQGbD1e8B8Sic0Rs4pRJ+RBif71UmwDaxWaAsp9i2eViM8bZprxLWi0INI4RJaVijBBllQZEGk8JoMb2SNu0klmbWZtZm43Zm0mLz5G0iZ8sFUOk/aEKOLADoPVt0SBom/JuWAfQ1hENpMMcAKs4FFhK6ZSHmBtjeqBtWnkM0OL73evLoM2gzaA9OWjJOYI28XWmcgi0b5eLTZlbZ4C066RsELW7Ct2TwbEAnCEClUDCQUM5I5hLSQin1CPdY+2umceALcmwzbDNsH1yKwj0HHGb+GczMITbV+2O3j5tk82+Qdg25R3WWiQtIQwoBiB1GFggLOKQIIwsrnbUu6xtWskLCBm1GbVP2CHgQWHLzhG2SdQAg8OwDd1zuxlkbVMygtqyuEtaSZnQGErsJKOce+UYBhorxpHggg6QtmwkgzaDNoM2LyDcDFl+jpBNgjMYGlypXSw2g24HvikYXqUtS/cipz3BXkhotLCUYk4hkdYQrQ0WSPZt2aqNDNgM2AzYDNibASvOELAsCQJieNCKrbtL/FWHIgmaTlhmBrw5mGCk+u3iCeoPlzEFv9WV742/za0ef4ZtDjHIHM4cHl68vS8gp/g6w9ACMcblJLyLkbHQgiKGc4/EF+iqaDTGIJbv7ZsRYKFyzmtFJFfcEhDzbijojXOWDMYZxFbu3QI+gsDZEs4EzgR+DEv4BvA+ZpDDKHSTeC42GM8VesrFeKRD6HUXh6Md2hrd/IraEMsNdEQQTg2zzgPqoWdWaE9ZH71tOxm+Gb4Zvhm+d4IvOkf4JhFmjI3Ct/5lI/Q1u9JR/NZVuoeQao8JZdgqZjXiXBokqZSaAqwBd3KQvzsuZgBnAGcAZwDfAcD4HAGcxJ+xwfizdy5I/GoxjzlvBgC86RYPEjit00EwA0xzjJkTzDNpKOOUIIs9wRwiTVkPwWlLmcGZwZnB2YH3jhQm50jhJDaNiVEzeNTtIVqmh10f2hrd5V+vhVDOeA0h89YxbpywFGmLNfWADtrAD+QCkfGb8Zvx+2WZwPQc4ZvEq7E0Xu1bF561K1768Mzqh52wV5elKhbuxrIKvb2Srs3rGKRAwrjDhgHmBhEtBTWOQsy8Rjvk9po59jDZ2NykbO8up3S8wKfPeDpd12diVHCos3LFnh1VVD/393+sH32TDPwyoDH6N4duFskToFMdhdBkB0/PDFpXSYRjOtWr0NFK3IZnEYvCC9xcv7hHMtY5SZscZLcFWj+79n5u7WGeVY9nXWPr4M/6UqzGO+RMT1Q0lDi9VzyQPT3FwNeeOJ0l0WY8jTZ7U5/aPnAgSH2ge+9MkL3r3c0xggnhjAPEgFKKO+E9Y8ZZb62mXLVeY91GTpUjvW52dzzInYhJD/BSlm/x9rz8ebEoEz2XJlagSfN764TP4W3Nrv+f4peg4rqkaG65wWqAbXmeUUzjU4IzjLvFrG42dO2cGr3u2klsD09je34JL3yXgv7dSoXZSvni2h6+SGps0gpVRx8u3vPD8ZBp7ZhhlhFm4nHOWkCugMUWJgdoDrd1XLdP25y0jY4fDHDPff5tddxreltFe1tVHvP1VZiFXobhfRYGFq/s7jz54ioeK9A562sTPxBjq/Kg/3UM+vn0wtOSMQnI4WjorKS35Sm2A8ckrZuC7hFJ1eXu2RCIEuYc8kz5QEEmkKDIE0khkBob3DseqWrjREcjNY09NOpe7o5yKI8hnAVl+u2sOdAk6qd/gv16Wx4OXAFw7wCI9Ysv4FCH43ssTyIceBrh8M6Zy1eLg8ckbEIVs7jNIQkHavZDGmLV3+KQFvvn5/XWve/7nJgx+IKdOFah90TzMmleJv0KIxW+MltkgKVnGGkhx8aHJNKCk/74sHeEQw3eoRMckqKOOUOpo847F8wYYz30njtksZZAYQCdar3LkgaOs2VOPzqcYBstjw55dMibaCfj6WMGUIyyNAmg4LTP0l7kRA2q4aCJTmH3pGhNObEQc2ad1NARIIyEnkLHiOSW7xP1FKESmamZqZmp58XUbGifWXDH6MCQBHdw1h8YXupuorQatkoPZElLy7pRHApBZpVAGDpKIRRWcIe5RZgKAZHZHxXKFvKgkAeFPChkQ/s8T7AY5WkSq8F5n6dv49qyces+UtdtyRBVm+IOWJ0nSlirNXUQYgYx9lwbiBBHRDiE9sHaNJLZmtma2ZrZep6HVoyyNYnA4KLP1r+G9hd9sH6sLw9RtSzrpvPlWkuEBLSAeiy91EY6ozj0EjgCekgtW8g8zTzNPM08Pc9TKUZ5mgRVcNnn6ZvVsKW6XB2wU6vCbjQFktATQJzXTkGkNRQQU6R0oKrzEO4jtWoiMzUzNTM1M/U8D58YZWoSeyFAn6kjmRpqXB1K1DBQZS9LOgPaUuiZFoBKiRjzzmjugz0LhXb7lD1dmobM2szazNonnZjhFrTl50jbJBxIwD5te8kYalQN52HoFHYtWAKUNpYSCTGnCBAGFYlrAp5TobDeZ+spsi9kqmaqZqp+2RasOEemJoFEIg0k+jk0VPzqVHhjKVI/7a5UMK3/3o0UVloixyTmxBHDtTCME+gdQI5yoltH2/rDp4oQnpUpa6o2o2fHJMbu3XSsehk+dDCfwp1jJato38i3KlCovKGiuqHn3TjIUDWw0U69d7E/FCa8/MCxqF+3Ko+er2IrY7x7aDOCsXDKXFYNvHiQOOEx757kSe/79nSK+p49ad/66kP5RBIYJdLAKMxA8UbNFyt1pYp3oSslMgxly7poJ8XkWneqiBFHwFtlrNZYeEadCJcUUpIZiuxOjkkDx0kyNDSx7mLlXHhBajYJc8/wAiYfp6tNGK0nm/BbbhnXd1JhvpzvBuOdIdNkONk96PjU4w3u9FplNCklWI7O8RcV1S8qrtTqg9s8rgybVzbsY5eWDbnY1b/6qxdhEn0i0uiT77aLTTDKy4w3nQQDtiqox5mdCLuX9xJooDASesywxpAwJ5lFQDFPiKRCJu4b3TZONTo2rVZRqePj44AM2QlFWGYb6smwyZCxLnCx8KXOMCiah1/JI4yEH9V0pnT4YDCio0b1Kg6O8zApSN/TL/PHVuSTcnt9Pvwr6v5SP/uhnzJUo/97kjfzdSMmCcoQaVBGmL3EIaVHmFV5fR8wnasdvnCvOEXUCu/jHzGjRkuhCOZOCIdbvnSaOBVemhlo3fhdEpWwex7jyzRl2wiXyIzkcf8ShvdPl9NgTodnsS4gKVESfs9sEQNV1jFVmZ7Ow+BfRvlXP62IhdG4b7KbRMNAza8bmz78LU4tM4KOR1D1wIenGN2y/m9oX/PXTB0EWsMGwXSH6tXqerlZmO0qzDvNdX/335Tle3kU04sd9hiiAQpfgAX3EErCEMKScycJsNLJdjsqbeE49JjOD5ikicLCT5mo5XSipxuzmM4nLk403fZqMptuXLwywCV2twS2n2X2vGuIZEK9cu4flyyeB3pMr8o5Rvc3FbV3RfE6ZrsLFJsXEIfeVZfHhYKYOGy9XS4Xq/Dx53GpdRPRVH2w+DhVpSlVN1vmXQwD8Zuf7jPt0ptqPXPlfFwwXpQ38P7Zq+16s7gq/i2YcG/LR/b+WbF25ZpjZfDtFkXiMmn5K9bPS7RO534Rlz0uq3ROQTtTf508gxeh7y6iX15MLRnvqPnSVfjA+z/GFC7bq3n808VqsV0W5bJw9Via57xxv28KN3NxnXFdJ2Mz5QuZznMqp5zK6X4JjRJCp7taP11dVYSKi8pN+t4Gz9OmsN0yGk2Kc7DuflqcXeUjM+O0X9qSeff1VTbxMDiJz7AQT5Ahp320v4abexNvrohzlHhzRXlz1ebWRVz7CdPPTbOnFe7KfJhd7+35qEDa9Ta82Otg/U3D1wRy7JqrNxjiNleZNTLu/Sw+RUPR94Ub7FEXjdHQwHoR7yK0tYquG4m9OZt+KDNJmngxSbzX5J16kbe88pbXfeXO2Vwv3afVdCR3735pH//vdjVOCf6huxqfVkTtuOuh+09LBtIOB0hGGyJI7m1Z8ZwikgdHi3NL/lPOQAYHQZwMgmhwEOwlrWhHquG8Ffvl3dyGFFtFIaIMA6Exgc5YgIG2RAiMULtHud/KcZOW+xsVT+DukUfFPCpmR5AvdTA89VjymImPxscRkowjeHAceR0G8I0KHx6cTV0lpcOjSVulO6BADhl3GnuHkOYOMBoTYQCjHbMUm/6A0jaUx5Q8puQxJY8pX/fkBJ3lgEKTAYUMDij1OSuDw8lyVzYymNQV9vzPISYeMUwEsUhrY7nzQAjvtfaa6IGhpG4mDyR5IMkDSfZSPw7E+CxBzBIQ00EQf+fW04v5IIdtUzSC4aq8Q2EJHbScG6iQQIxgwRkWgHhiAdIGsQEKV61kCGcIZwhnCB8HYXKWEOYJhNmwNXy52Cw2Fyu1vLweNoljhV35mFncVuqmwMPWemAo5xpIToCnRnvkcLCNLQvW8pBp3DaVyZzJnMmcyXwcmelZklkkZOaDZP7TamoHiXxRFYygOJZ28zszCXBgFBRSa4E1MlzFg+Gsw4rb5Fi4bhuPBV+Y4Zvhm+H7hcCXnSV8ZQLfNFXpD9v5h+vip/lmtaifdAJgHwv3HOyTax3mIktgzKLvrbJQasmZdhhTRLEREtHW7k0aOA64ZUOTabz1SRPV3brYl+/5Ztje5EV/d9gGjpZ3VpR31sTcBKTWR2qvYssNXucugE/tzvOsPmMrnUbepAd5/iG8IOc+PC+0U+GJxCM/IwwDWabxHNDSfX36zxh8mFOKZCCeypf+S3CnzFFaR8cAQJAMIGlu1ldByavirzHt0Wt1of45nadBACaWTqLmJ1d16XgUwOHK+2EAZe3fYu3fmtpHBgSk3z+NAU+z9j6SbFc7zNyUuOU+Ts5NH3d1j7vHnpj2uzCuKgFWJHOfGlVKqkKtVmp+UUYWVUGksXp3PCnqe8iGdh5XhseVz3Aj+YKgPIrBs/NuH8V7EoSLwAjeu+fblrSs8DtwxG23tLtCrpxxjnpFPTZYcU9smeiHMMgUpu3qTLeNI2Nx75vtJ1ikyWzPbP/yF1FuR8pH9d0epWQSCIvgMCV7QUAtxYaDgPbLu6sqNO4nCqAsxEBwajnBQgEuKTIaGDvAylMEAWVaZlpmWj6wX/XXaBCjs8R8EuqJ0IgxPF2XuBu0h3dlYyZxVaGbA5NqBCRSRHqLtNOUSExijlogefibHrKKq2Yy6jPqM+q/FsMYnyUxk6BGhIeJ2dtdTMizt8eYAjOt0D0YETnInfXeOMic5cJQooHzCHvLHaBdYKbNZGBmYGZgfgnHxNwOmeQskZmE7SEyjMw/u0/rYWDOq5IxXMbiDiwpk8JiiKFWkEAnlTfBzJSAcSytLZ9qD5axkYzKjMqMyq/FtqRnCcokrA7RYVC+mkUn1BFWml3hGC7rGl0fYknjfpQkAqOYL8N6ZahxDCAcpudQDxGzbidDM0MzQ/NrgSY7S2gmYXCIjUAzvG7VyQqRomxXOArNqkYHmsABY6AVnnlGAXDUC4U0kNArrIkZhmbVToZmhmaG5tcCTX6W0Ewi1BAfhuabxXqzn+k6gc8yFN+Q6/qG2gfcXGP135blYzyVn2uM0Jq55EZuBUuY/VwzLLOf61e+rZ+i8OwcXdEY45NAOCRGdqpKKA76u3aoOer32qvVMZKhE8ALKAUK1jFxisc0asgSr6S0uPQr629ctW2dzFC+H/ZnQzmzPxvKpyPpozrCjlEUJdFgSB6k6LA/bIdAB/xiB+p1T/USlkPOENeOGUsdBxIhpRmQTBKr/QGWnthPNtM00zTTNPvJ3pNBjc5yGEiixjC4wZi2U3WDNV3VuNGcDtX2TnYUADNhnUWKEQ+MtYR4yDhBEIsyJfK4PR0ay0NAHgLyEPDVGNT4LEmaRJZheJiki5U7DNKqwk0cDbW62YQNkxhKYD1iCArMmIWecweB8ZQCdQijoa1M0UzRTNGvhqLkLCmaBG5hdJCiB50fagTd7APRrdjBKccGKCGkR5pRogTXVGkFvefMa0PNAZye2iMiEzUTNRP13IlKz5KoSWAX3g/smhc/q7mNaQsHHCLms6psmTpB7Bd0iYm4CvN4YDFEHiHDFJVSOG21VN5R1CFm2srxoJxP6uYqPoZu1DLyMXJIVmjsPt8Wf6GdiIsqaefrCnybS7WpaozmklTz66J2jmsQ9LyC5HxRbOdzZ8KvVavrws1KgK7vTsgbNPW1H1z5WMn7UBJrhPuxRq+2PTvIbDcd0cYLXU9P7kmwcICTmlgMKFcAG6sxFlRZpHnXvAmfPoU1E5oJVsxqE0bE6WJS9+FzUWv5HLvGyrx4OZtNfppPynTBzY0Xv9bj/7oZmkrxhp8QRlztwggRh7H1VXyLq2L3e9cvih/DLc7K9LFlXtiybvxYtBwS4cessFcLPQ1Y8DE7tw0WkFfry/BVfzihpMdzid5+eHw0RSRBJTgNKvl1MQ83VFo9H2KW50lEb7p9+SmpsMvvvhp397ux/r7D38gHjnP5G2x0WEG3ORuEn9jbb/ip71n+5UD9PJjvs8UqJj/+pK5L4/py8clEO7nUxE4uxWI+C/OIF8W/xaTLdR8In76M84PSmK5voZRLtNYv1cdgizfKWTllr+tGgqW+dFFJJqdWzrOGu7sG3mm6MEqgs/Oxw2NwTYJPMBuD6557XUqowYySvQpde0RJzpxUSjkqDfFcUo2Fp9JTBYQVO9D2mjnOMLlPsJ7AMMlgzWDNyzGfx9dH9bwbZWsSo4L5GFt7Tncd6g372w1U6abthZhLz7mSAEkGFDAOIkuIDTM+6ZL9wYGGMmMzYzNjs/F6Jv5so3BNgkOwGIPrS73oLJh1eKfqwnG0ljX2MpkB7jUkwFuMhDIGAywwAE5RBAQaIWvZTgZrBmsG69eU8uzWhMXnSFicBI5gOUbYX+NS+Nia66e6cJSwVY0OYQnhTGIaU+kibiUiMVUkgFBzDoCBdpCwVTuZsJmwmbB5eeC8POBG+ZpEZBAwxte+81uHUyN+b0N1uh7EjkgIKYpuw9o4pIXzKli1xCBlDULDlD2Jt1vmbOZs5uyXtURAzxKwSaAGSQM1vt1qXUVnLC8TsOry8lV9teJpcq2bGAICZJmnhAGlBTKawfAvJz20kkLSZk9LGjgOm1VDk7KlSXXcenRsCgS90avmAaiZPtLoxTX5ZV6oqPp1yZGAEBOPq+8eGv+z+qgmPweEFOvNdfh0c4h86OvRAW7hK472lfDZbsGnPG03ebNDfm+94r7jW/XQds/sqz60FifxACSNB/huut6EgTS+9vIZJYK1u6Lyp+5Eu3d9b/PZEmakRFJr5BXDkHnomHEWA6hUm4Vgr5HjxNs2dn7S7T7gWwk3+chTVO5s+p+xd+5exL50++V97SaP4PuyYlZw4n9Ouv7nW138MLveSy2y1b6+1viu1le6C+5Kc6ylBMQCxwhWmGpAOJUCSCl0eqpe/fFjvVe3elK20/Uzb8zOz1GsOKliwwSkeqLXs3ReEi3Hvt62a7cuDW+9inOLuftUfP/7craw1fgbfua6UX0r9TC/UeFePqpS7JUOXhTv1DJCIPqfz6ZXwby0Vf3QK8JUJ97eVM1eFI/oiO6aXzYrf9iQtAer9NU99Iy+bnEnbukkdUt/o0Kf0Kvt+rI3PC93Rd3hee/6XpIgaohQMSGEJtpzpBCVMVGxpsAzBRIn3E4jx4m+beyOwzPa91enZXbiUw7P3QcchRqV3obcdQfrcN9hjF3MiqtFkH41aKsqrKQZo0OtGwbngIhyXr/+Jkyjt2UVp2bPi1dxuWP3t7dmpTbmsnjtih9Wzj3ukJ68wQHV75f2Bb/fjZ+s1H+MCy2L+CMCxv99HiyZTheqbZVQ42+xDzThDWVoUb9D/P3dNhg5Aev/sUeQ7uJN9dsTfZWi2tSfDbrZlvcx6cmsVFSKouYzqSTrNza/uBWnkmABQjucWoW66vfBQIFlXXibIIGDdfcDBMYrfy6o9tq7XXzwTTbJCcICes93JCo4fGo9rWYRYZaA45rcoqiW9srVz3KJObzZ0Hu1U+EpxOXV5mdHqpXFxdq4uKD6cl5Mr8IT3cRai6Wbx3YbwH1yOi5FrvNaaV4rPWma4NAdN1MTxsfhsaZTODTU1BXObeI4RsmzC2YgY/BPghkIG4J/z9m2IcuIo+1ecfcUYKQ9UcBTiJmgWFumLWYMcaq4YkAnw0GnkWNN1XsZAU5iqOYRII8A2SvhVgx91ICFUX4mAQuED/Gz7i9DADW7omGCNpPLFKFhcm+o18Jzwmn4hylNrAFYOMq8BLaP0KazZYZmhmaGft0MRWfJ0CQugYghhv6wWGyGbVDflAwTtCruAJQxar2XTjGnPGRIIQXDf6NRqqS1AzZo1UjmZ+Zn5ucXkWL9K1+MwOc4CJAkdIKkoRM/uyJ0UB/6SPjQdqU6pnRMJxkKJ6u0cG/1uV/nwOrzeOXP4/5Ae43b7rksQ/cf8J7nbjsw1ESMuK9TVe6SPEVNl/CuT4lOmntRvG2cfKdX8TE3CK0Wd4pSCdEPuGy4Av+mrNC2sQ6DjnerKvFb7U28ij7EeXzI40Nepb5xYBik6NmtUtOxwSGJ+6BgYHDYy7bTUHco0U5a1pkYII8UUxhjgqF33hHFNdZMSYE08p7uRou0heNmBfc9OpxgepBHhzw65NWX0/D1UVewR9mahHxQOMDW3gZgQ63h/b9uadeRnBEKjMLaUUWUkFR6zClSWnLiKCc9wp5i9y8zNjM2M/bLyA5xK8qis6RsEqtD0QBl31xOZ4v1Ynl5PUDaZVo4SNu2Rne3kGLkLUAy/GCnoYCAOU4hAVILh5KsZv12MnUzdTN1s2V7K+bis2RuEl1F8QBzf1gs7ABtfXV5kLOxrBt9YYlmChlNrUPWBqYCJ7QCBlNCofU9wsYWMlszWzNbM1tvxVZylmxNgtsoGWDrz6p4pVYbN8DXmZqYumiQsU15123DY4g4kYxLg7WiyBAIhVRMixjzJnucbVrJrM2szazNrL0Va+lZsjYJ0KN02I7dDK7QDnvHdUu7OXqQN4hAJxzV0lHrJafCEEyIcEgCPmTNbvIKbWZsZmxm7C0Zy86SsUkcHE3j4P7sPq3bY3vfNivaDWnnoXhyVRdPdgveFW+HCrvxcNAjAylgWmkdnQ4IlQRADyi0yCZngg61dBx0h1q861mD90HavUddIW1dfFSr6WK7LmYq0CZmZIhnCq63y5gwslhHYZhdRsgKoM+LH9+9/pmWvPxb+MxWu+JjaHLxovhTzMFSKihmXgq4uCjCn+MTaYD1h0fNzLAq00UMnw3aLes7IVWpJr765CskicuiaVzWX+LT+T72mAE1h34xm7iycF/L/aK989ClcQxj5ggTQdGSYMGNjHYTMwK0W9v9do7Tcb+9czgxtP+Um6QrwUaw03UYmK9jjtZZUd16I/MyqYYKKg8jYPEhGAp6uwrjsQ6d6WK12AYpl+KurKu6B4VGNpfbKz1X01lxGQ+SrAnwIp8GWmkhia+haXzND9WpqX0Pj/o41X0Pj+7lrvMcccYRxz2xGBorAebcMBSGNSsdou1GY7eN4/p+01awi5d1g7fVwAPMGZqnGwz7Zf2Iw1yhMtrDPYZuWysjkYQqj9Utj7beRcPEX7czpOOYVR6D7WJozSb8NZjS2m0+Rat6l4zol/CxKoFM8b6TujVYl1UameJKfSjTnIXZy1V1xnboOEFVYaT8Q84R+sWMgzQJq6BpWMXbMOEq2flLJG+i/XVdsKivV9LvXO1ugCmPPOReeMtI+KOQ1mhshLUIC0LbJYNOE8cJv2lqUrY1MZerIKwrtW4g8DnqL4fFU+n/39dVkvLuU24oEJS9XC2uFvGQ7KUz01Bej3/NpH8RHk7AQfU7n0fV/yPmQa+zla0XV+GT88Wn62L300NL09V0k8bQndqQvWtuwXiHQxJur/e1+zaUZdEm7u4sdXf/Vq106D9xREmTcJdXy1GwH/2UFB4Iexqo9Zkpt5OGbp3/E91gkJ4gyCl5ctWC3XbtYujpbt2uudlmba08aX42C4oMd39VLrwU5Zlk9eH023WYpK7XL4pvt9OZ7WhuHY+jD5oZSxHXfNVnGKh5XS6fRnCXBbkuMM4u3oeNATDxSWdwGID9WUvKnmHf9H6N7iQeGimpxcxiGd14FCDGe+s5xR5p1S7H9ds58qCC+6DmKY4oyNTM1PxqdzMOw/NRg3lGwZm4mTM0As7X1RFJezGTKYOqQ5QGwydHqnU5ypBhXlPDMGAec+2Mho5SzrEJs9BhjiaNZZhmmGaYfk0wRWcJ08R/nOERmP4wXa03MbF76LsjNPWxymTdVBnFaVqvG8VjPAc6rq8FcxSZAFGnKBUUIUw5tWqQp2lrGagZqBmoXxNQ8VkCNXEaZ2QEqC+jIEdIquqyUYSWFTrs1EZoho033AuDCeRYE2+pBgJ5A+gwO8tmMjQzNDM0vyZokrOEZuL9zegINN+61cepcesRbq7b4lF0NnW6R8kxChG0zAvilbYCIoU0Q1BzJhwEbpCeTUsZoBmgGaBfE0DpWQI0ce1mbASg1Z/H+Kl3paP4rKt08x0B7KR3RjKJAUcQSiO8sMEgZRIYYgfpWTeU4ZnhmeH5NcGTnSU8Ez96xkfgGftKaHuMnqYtHsVnU2cvt4YxQHhqmZHAauMtoABpqwKJICsPTO7zs2kpAzQDNAP0awIoP0uAJsEXTIxtIu0HcHc2cgaDuPs1uvEYzCiqHLCOG6s1MgpKTILl6QB0NjkUut9OBmcGZwbn1wROcY7gZEnkCksjV36YbqLwilezrU5j1qrLExMu77pYG7o2VNpNfUGcgsAyYZlSFlrPkMbaGc9h9ABtIzgHmzoykC1t8pYxLA8QxZk+6TaCrQKEW5VhZGWomq3kuYs9qX9OUf5M27AmSXFRJcHYrmJXa0JfgmzqheMiBnUH4kwXFUDXM+c+FJuVmq+rLviHHNhZSSSJE+FpnMjbhTFR7uZysZilsV3l9cm6uV7HdqVXO5qQEjBNRFz2955xILkPl1z4P4KsJbCN7UqbODK2q2qqlMLnBXPehxTqJ3pXJXRexBPXQ85WcH9CTuIdeBrv8HobDYlv1TzNU3oVL050uNgf5wbKuoqGjktGufYwpoNGXkBIFABKCwecbke5gYaO0/VAg5+Vb6ScLJw048juGd9F2cmnbifr9WJ+sX4ephR6e1WdmFhmI1lnTX+hmk5c8TnqZCDZ5RDbc8FPEqB1XO/3rnf3mLgQQBrvNYKaGWKxp0opZJXTYcpvk8QjnUaOzTrSaeyYrAsv8Mlzj3Se711EnXz0dqK20/WlW3/RZuqPcd6/KF7FnEmuUMV304tp6OzVs30XVwdW5Zz3b/G5xIza0zYJ3t/fbTeL1VTN/mNPT92lg+rHJd2t7GOb+rOhI4VnP9ksJqa8h4ma2Ooeqr63Ke+h7Hvx3ZQJtqeuSSFY9sJUu02zvU78Yjm/uJWwE7dwnrqFv5rO3VWZiaqXWMg0RftphfYLuvsfFDtujdZMM8qU45oYCS3GmAopsNhpe7+V48S939odci+e2vT+djEL46v7fbOuEyru7i0RWprSpMpoUt33Q2c0eQITxsQBl6cOuPi79hzoV1vdcSTDdrI7vdrUZVXn7ZXs9V4dRiYFBZJe+DhIScWZMBZbprFpD9ruNXNc9+019/jd+F3slOoqJra7KMKzLm+rPRy77r9GxVQ+MQGQu3aT5lDsKhnQLnXogyaoewI9OvGO5Kl35Gtnp0atYphj/MNs5yLZDE7phKquO6n+MNt5MDaDSD+txo0fOZBso/nsb0dl2rjxDj6jm58g0cb4c990EuZelDkY+6lx619TLFfx3Zsy49XlYr2M433eLsnbJfebL2O0955j9gw+xsTE4ZGzYSZ25p0JSvoB353C7tTTEaOEN0hAhwCiUGPvvYLSEg68a6eenSaOXEW6B+qdYg0pUy9T76lvEt8Ffo+a/WIUfImzIudD4OvlDNrxZDhh0F5xF3/YiXAREW6FkcxTIrQBFFKPCSDY9/F3ilRBGYAZgBmAjw9AdJYATJwNuRgC4H509Q4ng6HV3dJuTgqstHRCQkqdR5QggQAO1MNAI+k56tPvBEHVGX4Zfhl+jw8/fI7w44nDIJeD1l/Q+KzU+ZABmBSO2IBNje4yNzZCceIoAYgI6aESVAEjsJDAeThkBjbtZBhmGGYYPnUYkrOEYeIaKsAQDAdSRuyIMpYvolehQ0IhmNRAYGIJI9IagxGC2llGpQACsD4JT5MpIoMwgzCD8PFBSM8ShIlrrYBDIAyvYrNYDXLQ7oqGMViXdyPvjLSUq5itERGiqecuzImBFdwIgrzsU7BuJUMwQzBD8KlDkJ0lBBNfZIGGIPgXt3ZqZS6HKLhqy4Yx2FTYO9vUCaIk9EZoYSmSzHFIHY1HK3BmQZ+DTTMZhBmEGYQnAeHO2/gxUMjPEoWJ97bAQyj89fK6eHW5WKwHXQQ/XV6bpnCYhrsaHRwyqyyDhnEEEbdOOkyFIEYpQi2RagCHu3YyDzMPMw+fumEozpKGSUCAIEM0rHN7DaHQ7IqGQViXd9cIpTaYKiu00wwpSKQhCIU/uQDBKoh9D4N1KxmCGYIZgk8dgvIsIZjEkIjBGJJefq4dT4aTc+0Vd/eLjWfYUYSxxpZhAKSjzsX8htGBmus+AU+RlisDMAMwA/AM/KbBWRIwiRgRacTIq5iMxhX/tpiGPtMPnDNl8eQfsXg8Vm6o1oHwuKr6ccFxna+s/1KmJGy+/ohY0BMEyXUea0OL2xHPKF9STk+DcheZcZlx9xsRl3bVcwyCE2NIS2JBBO8jbS8ErmbEUABcUtSdykIoqVGWa4c9hQIoxLjGxDhhvGStu0vSwJGJGe6Raicw5jLVMtWeluV2A9weNchtFGxJjIcQfbD1QtxqUAwHuHUKO3gLk1IrlNXSYuUggiz8hXBMlQnTV43APt5OEdyWAZcBlwH3cIBD5wg4kcRxCNkH3JvL6WyxXiwvr/uQW6ZlQ6BrK+ydWK+pMSoYckpwb4GXEmrBHVeOQ4P4PuzaZjLwMvAy8J4K8PBZAi+J1ZCgD7xXajW06mbqy0OYK8s6hCMcIEistcg4QwVlSHrNpQLeSiBsb7ZatpDhluGW4fZU4EbOEm5J/IWEfbhVGWT7dNs014fwVhV2wy7CbJUJIZmRSHHtNSMYCoANl04Q0eNb1UQGXAZcBtxTARw9S8AlsRUS9QH3w3Rui39f9wnnQ8F2PUK4qrB7dAOzmAtCOLZeMaKNkw46AgGUUMr+HLVqIhMuEy4T7qkQjp0l4ZKQCYkHCLfvHdcAaNA3rlPYDZEAiBtEneCKese9FRyFP0IDJOMS0h7gTuAXlwGXAZcB93CA42cJuCQKQnaiIKbz6ZWaFW92B7ANJI+v6kx2h7QdSBp/oGovSXxV97dd3SOzxY999SHAoQdIF997wl26lWyPvbw9i6c6bafpJOGzZd8prNuo6axYxseXaZdpd8+J4vf77Tn6xskx3iUBD5Ie4t0hzvWCHvYrdI/XFVhLrjGAlnoPNOTBrmNcxbQoCvvWuOs1c2Tgw32A7xSRDxl8GXxPOhPALQj4qA50o/RLgh0kO2jtvS7v85Ctd1XXOEzCqlp3sis4ccw4gxnDjAOPgFTCCkU8YhqycR5WjT0CFWGmYqZipuLRVLzJ6w4+ChWTeAmZxku8nF+EmsW32/V07tZDx6epssZE1zXG578jFQ/EglWfOG7qO/atjxsCNvJY9xf33OLKbVZT87w9LXAxj0/swnUBWFGvImNmX2bfw02F93ryGU6Eq2CFIeglsRRS9KG3FyRWk2QoSCwp6rqleAcMYQJZiDB0DksotJOOeKPDlLjdtE0aOM60uwfcncCwy7jLuPui9jlupt5jTn5HiSeT4Aop+8TrRY/VOBmOHusUdg9Hk4QhBqAlzpowr/VeSGkd84wxa0iPe6eIHsvky+TL5DsD8qGzJF8bZYEB6JPvz+7Tus+9eXV1iHqxqMM8jSGFgHKGnZUQQWI08kAZiBikHMl95sUGMvEy8TLxnjzx8FkSDyXEg33iDZwAVANl7PyfveK9EFpAGYUGEsEdVMxgFEw/DgDkOh6Uu0+/05z9kwmYCZgJeAYEJGdJQJwQEA0QcGtM9XP2AbgrGORfVdqNzoi5AyQniiBnvAAOOsN8zCPgjSIY9PBXtZHpl+mX6ffk6UfPkn4koR/u068Xt1HjZDhuo1PYPQrcWeKUQp4LgTGFWkkjJeHeOQ8pdvvoO0XcRiZfJl8m3xmQj50l+WhCPtInX9NV9v37aqo0/W7QuW+oTjfTig3TXkIh9dYL4oNNiCB3JECSK26SvKBDLWUqZipmKp69m9/NXOSP6OQ3zsU28APDdD78F7dZbM1l8a0LDzz037ktXvqucVhX2eGw/ns3Z6gQksQpL1TaCk2IMMJiijXUMaK3RV/94YO0u6k/rao2Jrq854mK9zup3vTjOC83D7HuqYFqpfjdyjuzCei4juQItx67QxWju7xcbBbrQrdPvfwVRf3TpvOLuzPtRhUM9P1nf/+v96ELbS7fP/vmfXhMH6uq9aOtnmzorEG278tXMlb8Ynm5fP/s+ftnc3XlyrbqDlV2puKltb/My/LQp8viGhyh1fjPAPje111kNWl7QrxY9+7qa9dlA8/++z+e3U7AHce0ezJUBuXHE/mlE7J3btdtEsVtwtXJDl2V6pJr3TmYFA5pxIgHQEEImUVQAGGYogRDhnbKSxo4Sn1VO5eLTyaMaHWDj2pnBLmVRWGoqO4m2gnbWW0zrGfOfQjWQtxyCAXmw3a5LrxTm+3KlYEFV2FSetlaHs5H0T6M+m4/8jxaxxVJx03t6TdOfSheXri5uR5wDF+G0okqS8edwgcqHXAIj7WPcwcf+r7HdQUfeIh7tnEdrvO8mMWv2ZnFq2zxZov3fp27k755jo7daAxYMgEW3QdWz8mxZMKwi2NS1HX24QhqyyBy0mtDoUAECmWxt9yCMPK27GobOG5yf2JwncDgzeDK4DrzBczD/HpUF+0RdkXnxJZdrGds6fBOezZWfbFPrrKk66fjmNAQQOQ1wEQCS6jhPmZJNWGaDmUXXOXnM7cytzK3zohb6Cy5lThYQ77PraGUMiUZRvPJdEu7yROgFBYKQbWSTlKEoMHYEUB8NMq06TLsRJlkMscyxzLHTsoxfJYcS9ymodjnWM9ppsTCsMtMUtQNCrZhOsiE5GG+qLHiQGosgBWBCchzprv4OoW7TGZXZldm10nZRc6SXYnLH0qD3NIMprPwnjrL9EkSqKasy7H9Cl3PZ44x04IL6ojiGnGvjPKQEu4AYaQN/Og1c2QOq0V4EfN+CquH3/x9WVT3Uiz7aavK3SevIuZCc4EIhYpYq5RZ7vgWZjFbrAJgivCN04t55lvm24Pw7XXVae81gd+PsYMs4s5/6OjfrVTs+SZ85bJY+OJV7Pix+G/xPbxtk7kV320XmzDgF9+X27DF399tN4vVVM3+Yw+a3d5WbbEm767aqa4/G0B2ufg02Syi08BETWx9N4Egy8nCT0oZxuLomjEpTaR4N7FmdTeTalO45EuK6uYL3v+xeqKT3ROd1JbNi+X84jDQ8RjQE09GBAeB3lsR3H378LJgt7jrv2OxIhwRbwnF1lEMsXGaMckMtDrxIthrJIM8gzyD/JxBjjLIHxnkieslQsOW+WIVFPGuvD5oncfyyaYuH7PQ20odtButqWFOcGoM9IhqwnB0UJdGaeeRGLLS26Yy4DPgM+DPGfA4A/6RAZ849yJ8APC1QA4g3uxqHIR8Xa1rwRvBMYQQCcO5JN4r5hzgTgFGBBBoFPON5DLoM+gz6M8Y9CSD/pFBnzjDIzII+iiN0PJ6kPGmLRzBe1Oj63BqBfTh5yorsGYSQeG5E5gTLgAWjg6QvWknQz1DPUP9nKFOM9QfGepJwABKAwZeLpfF283WDp79qJbLybosPHDoRa/OgfCm8G2/Vd925JkXvS99+OMdd7TeRfGHH7Fu9NqeZrtorlcxsVcLPY1MDM/duo9utlhGjQfQq6tM7Ezsez7LYqf2c4x2IiPwgknEAGJj8Np3+wiFk6pw8uuw30e/RteNzTjgsaEEQaJBPM0MK6md8ZZKjkHrhdtv58g0J6eg26ls0Uy3TLcnltTpEOQeNSRqFHBJaAHiw4AbyGaccOftSEbjgSp7HhGec84Qj+k8pUVeOqsU04KES1TJIca9PU1m49tADmfIZchlyN0VcujcIBeurH+bRzhEezJ8Yru+DI2VPyVeKSGYxCUgMQzBfV+whEovh5zB9su7OWW8CJyzBkJmGJKBhNoK6QMHA/sUckPse3m8O1i27jL4MvjuB3z4LK27JEs7ksNgG9hRSajzamRLZaDKHuG0tiie1CMFthgSj1Gw6gCwWsYQ0yHCvTrJpkqGXIZchtz9QI6cJeSSyCycRma92uqYIrfeq0z4ZkLBRCUFFdq6l7s+ngBbi02w0ADhwV4zzIb/WM2IV8CZdou428ZxJOu29fiZAHdUq7MAljtdG/f7pnAzF/v2+nkR77m/Pxx0Of0wnV8UJry8yBhVqrTQ281mMc+5AOuOnESk4DQi5dsSEv1NshIe4/tjneIDW2NlveN2xTpf9RnuCyfI9dd5SMMBzyNZr8s+GVpw6zgUT0O9Kr/l+kXx72ulZ1X+2HDz5sPsOvTw9WZxNf1nLMijch6V73fbbF/6Z7dzRsdglkRlYNSD2d757xU/ho5/b0s6AzKWiHNPsUZGU2UYIQoyIjXhBnPE20Oh2s8fNxjfRDh0/4kdMuEy4b7YecdNoHvU3TN648JyibwkTgHjHvJ6uVErpAwnR03LugsrliuMrDZGA219PPmdGI+U9UpSoNAe+E6RHvVY4y6jL6Mvo+/z0YfODX0l7BJffUx6sOuHYlUUGQnA6hR2eAc0RB5rKLDCRiDAHI6pcIRFVmKYZIPuNJGBl4GXgfdUgYfPEniJHzumfeCp1WK7drM+8dqCIeTVpR3mOaLKnAKWGi8hoRhQTpUUyGLrTXlMSId5dRsZehl6GXong14i3IcCHzlH8KHEBx6zAfCFfrkdsPR21wexVxbuOb0bg4DQEiPkKcHUAk+8D9NbZqVVuke9sokMvQy9DL2naunRswRe4hOPeQ94f1pNbY92F9XFAdTFku7WhdFEE2iRlMhpBSCSCGrhNTeSWaX2OBc/nyGXIZch91Qhx84SconPOxY9yP01tL+oekmPdR9jWdXfhpGXVOjOa7mBliCNoICSE+ix48hAjKhVjjq7R76kmQzADMAMwKcKQH6WAEx847HsAbB3GkkFkeHjSNKyLvGs8ExRSjinwdYzjlKhPArzWmRN+Pse8U5xIEmGXYZdht3jwU6cJewSH3kCerD7OYpdL37v4W7WFgwArynd27zQAFGNAdBQCU8gt4A4LQCE2Cuz76DStJGhl6GXoXcy6NVxEA+HPXkD9uCjYC+JqCBpRMWf1Wa7cvUTTqg3L69Pdk+vgl7nahd2zkNFqCDOQIO1MIgZDKgxihAnQBsX1GniIOtu6lR1S+735Wyxcqtdk49x1Fz9GL+v76Xpse8a+G3Xbl2K/rtpgNaq7MORZW9U+LOZNdnx1jG73uSX+fphIoGe/f2/3ocOtLl8/+yb9+ERfawjq5b1Xa1jer0g2PflexgufLG8XL5/9vx9eLFXrmyn+U3rJuVf+E2/zMs6oUeXVWpohHbjPwPQe1/3jNWk7QDxYt23q69elw08++/nw79iNv3PqJvyHoZ+SL+8/1uS1/VAPyamRby/2Kw6h+N3ZXbSMB7/4MqOGzriYr3Z9dpLtSl+uooRubHb/qX0nF2fLHOjr79zsgzfmap2OBFjlzkD2RcHeZcEXZA06OLlalP8KdZeXadJFlebycXuasW65Fo3Sa4wFEiqXLAfOcbcMUc1UoJC6rhlbVxZ0sCRgdxtQ7eIfexZeOhFeRjIvQY/zuKA/ry4cIsrt1mF8bEJhCwpNw2fDZ1pEwMfr9T6QxIX+WWEPL5ZLa6CJVklP30dpfQXZ6Lp1ZhgdS7UV0164B/DVKxR4al0taxuosp5ehW1tSpvYmc11ilQmxzFkzgfnFSJig/oLyhmUitm8vZuIkzCAEgaBhCeys4UDc/kKrzZVI0mKQ53WxaPB3ceqn0g1jP92HEhn4du4HEiQIeeb5x/lRMStyrHsaDJVZhcVXXCkFDmXeh8sPydtpngvCjeXi4+mTiHKaua7SratmGCs/hHtFyeh2lPlZOslHydFzx8TTDjr+psD1EE65lzH4rNSs3XlZ7+kKdueep219DRMcs1/MmpgKohe69b1rf1/lKWn42BN87Jswt9ZWMDQBIaQcjYANALB0tLJz8ORoUNVNk7o4Zz6zgnWnhKBDcQcWbi2cHYGpHkjR1o6MhcFacdDU4wN82jQR4N8u7FZ7L1UaNtR7maRGAQOsrVbi7uLukGUnH3KnSI6o2OiQaAAdwqiziwSHHjPCEYaufFCFGPTsSdeZp5mnn6FDZGbklUdI5ExUloB2FjRH1Tq3GMqkn5OFmbSt3gXiMIhxwbzLH0XHIurEEGeCM5II4M07VpKhM2EzYTNlusjx8zPMrXJJKE8FGLtdxtux41WnfFB+zWqk4HrpwKqyAChmhmKAOMSeSVB0oRrJRhI6Zr1VJma2ZrZmtm6+OHJY+yNQlgIWKMrQNn13RwN3Z6zWCl7lqrslQLAg20QjrJrdVecmSEhlBpO2K7nuYEm8zXzNfM1y+Gr/Qs+ZrExxA57sbQOz2iw7ux8yMGK+07HGGDCSBMawmd1ohgR6xihBNqy7jsAb6e5gyJzNfM18zXL4av7Cz5moTk0M6xFfGFVxnF1sX3zUNOAVtVmMQKk7RCRdjh4u7SAGCQU+4hEt4yFCN2EOeQWqU51jyxXQfbOhKudZsmtqld6FhuonzoIKVn3uOk1h5+5k1XL2N4LlZObXZgWfhSecvFcjtTQRnlzyj+pSh/SO3Ofkonz1I4d/AIqm6oeqwDTkG94r5f0LfVT3rZ/KCn7/79Kr7BGExV/BQ9cyvNFt/WPXBuJ9Vv/SkeDti8+lN5qYaBdrJZTEx5C+HLJtP2FnYiCLdQvZLyfMKbfcRHlF6p8kY/VZwEx9A0OCbYXMX3q1UA/tvYRYt38cUm/Anlk7J8UpZPmvIKP4OlHfowApGyhjsDEBWIYSQcAY5SpCBxsHVbHWzqOPjEJl3ZZIzDO1PYpEbdJ3Ud++6V+lBbaeXdF2UU4VUUqHYqfD5YP1+GT/meVovYGd/EH1uGZ/w6DUZeGPXDO9sEFa83TtnI4lfR+fxvwS786zQYFosThm3sCXcSO9Cu6wzLclgBt/Qex0kIB01DOH4OeIiRBG8qx+5GjLPqcnlP497iQ7UOeInPlsf5hne+Tm+ns1tHqIkT+oSnT6waw3vxt7sw3WoiswmfUCvbxN/GjljefRwzqoipOGLUv67SYLSLS13q7Xo6d+sqIiHOwu4zOLcaqer+E+9lcxm50fya+uXt5jlB4Ytw45ErwVpYhSldUQoyGP/VTy3Wl4vVxixs+EGrxVVZM2BlEad5MdHidVEJwJY/+kXxcrZePI8He13F4OXQxtSHeiXGwn3MnbPO1pOudfuU19+Er++8lRgQEsyK5HL5UF/Vx4S9NPUUJc4/9z5aJeh4/+xF4OnUfChvuTpPbN3/5rKBcGleXCxiw++DIq7DE5z8a30U2br+kvAKypaqOVFES/XQflm6HaFf149O7WbaVZ3O7b0pn3Jd9YaukE87qudze4w7O49vPgbtJOSH4hFol519jNz1xLizRtar0LGibDCbGKZGKQSs4s4JhZVmgnvBKPN+h/VeM8dZUCdi+5F2VGZ7Zntm+xNcsrsB8Y/qeD6K9ySgh5IxvNdB5esxxPu2fBzzTaXuhDlMjbXhSMUMYhBIKBQjgjErtebSwGHUN009CO5hxn3GfcZ9xv3dcI/PEvdJnBGlY7jvn3vQQeXI8QdDdbonjVMNAXSKEg4dJ0AqxwOvlLCEem1GzPqTHIaQUZ9Rn1GfUX8/qCfniHqSBEBRNor63mGGXfgOn2k4VKd7EASxSgDKFdMaM86NVNZLD4X3hhkPRlB/ihMOM+oz6jPqM+rvB/XoLFGfxGJRPob6dzFf29ViHjd/x3i/6dYZh35asXuIt8AsnmQLobEUQkoQsoJ5QIQERvuRBZ20ubyGn/Gf8Z/xf474p2eJ/yRcjIpDizptxz60thOdgpTpON6OLfG0VbuDgPWaUKYR94o7zTQkkFrhBQijg09yRx9oMA8DeRjIw0AeBs5xGGBnOQwkUW1UjnvqzJbjnjpl2SFPnfA+Okv6igJEMPRSc88QkVZKHa4wYh2ylo956syWGe8Z7xnvGe/niHd+lnhPguoYGPXU2T/br+s3M3jE30CV7un1iilvMIdWWwaMhpB7oYCnFkinjBzx0TnBgX8Z8xnzGfMZ8/eDeXGWmE9CFxkcw3zSK8ZYX8pzclVXGQd+Uq+7hsMMNYBgoAmzljjmmCCQSUaUMJTYYeonrWX0Z/Rn9Gf0nyP6H/VIx1H0J/GxHHbSEq2Wi1Xsg+0hle3RSnXZofOU9qocPERpr+7nZhna/8q7nG8Gy0unPT+peYLvOqfXmkV4B5UGg063axeP8krQvcuWVAF6l13oTUCdX8ymgWBz92n9PHz1NB6O9jzgQl09bxIKPa+FUd/M88JtzIuYdGBVfv86nq12Gbtp1JALT+U6DC9lypw/nDDi/TNO3dlcL92n1XQkxcZ+aT/DxrtdjVPm1xi6q7uev9NX0tmFYsoxPiShmBwN8mHg5J1GiGPH7nTLuznMiQ8Gk8MCIgWZgB4ApYWkAjhqYeeEiG4rx6YoOyE8TpKg7CuGx8nTWt0swEcNlBsVXxIox/HI4DwL/dcVb4Oh6+aDIqyrTHZVRsTYrdcVJUXKOymcF1B6Hl4lINBqbTUnkmE5IMpua1mcX5E48wB/Zj6co3xJIrM4GeTLS90NymoF3pSM0KQs7mbJ05564ZklxmAAmXFKMCSk0SQefswGIFI2ktmRB/bPFx4+R+HRJE6G00Hh7d7roPjS0hEB7qp0Y98hMkhbLogP8oNYImuDnU2IwgYbjwdEuGsoCzEL8fOFSM5SiEkUA2eDQnx1qVbDI2BTMiLAsrgjPmIRt1JjjYw3xnEa5rSIKeU1RkhJPyC+spEsvCy8zxcePUvhJf7jnA8K78/hZQ7qri4YkV0s7Wa+14w6S7kCloQJq6RWaI6FB0oijywfUF1sI4sui+7zRcfOUnSJty4Xw4u509W0yqzaX8xtisYWc8vyjvQgZsZDJSEDxAkogZBOY8qxYg4CoIYWc8tWsviy+D5ffPwsxZf4UnI5KL6RaNlWHO8OhMoO1+qOhJArZ4Dy1mDoMMdUGq8IYHECyLAZkOO7kwXJZlGekSjv4djmm2UpzlKWie+bAIOyfLtZrNygHpuSESGWxd3ll9BxNSQMAWsNw4RjxiFzwFhvw8gIBxRYNpKll8fDzxeePEvhJZ5HYtjz6O12Gf40vPjSlo2Jr6rQkZ8kiCCJFBeAM+OYMPEIXyq4RsxYZYfkVzWTBZgFeIR3AThLBSa+PQKNWKTqasQSLQtGLVB11V35DDJzhElNFVCIEsoQNdgzy73HWrpBy1NdZdVl1R2hurN06qGJU48Ydup562J/cLZ4Ux8dWbwr6wyOg3XdSVN30tQdGxeHP9D193EWGwI9hY5pTwAJ46SDXMa8qcI4PTRODjebFZwVfISCz9JthiZuM4LcTsG30+4dVNtdZwWSGS4s9QBwjyUACAlFgEQUUofcbfSalZpXd47S6ll62rDE00YMe9q8qt7k8Bb/rmxsk7+q0F3kAd5hhSGEkobR02qFHQXaQqWloOlxsPvNZA3m0fIIBZ6liw1LXGwEG5ll/l4f5D0y1/x9M2mKR2ecTZ3ugg/WTGiNsGXUWwiQ0EzTMO+EUguq6eC8s2kpqzGr8Qg1nqXfDUv8bsSw383rhZ7OXPFyuRxUY1U8qYpH1NjW6ajRUYkwkxZhrJ1iHBOArVKQGuaIFEPuAG1LWY1ZjUeo8SwdcljikCOGHXJeVS9uxDxtC8fs07pGd1SEykkihKZEc4CAF+Hv1mtvmaEMD+mwaSerMKvwCBWepWcOSzxzxLBnTi/FWauMHwbzm+2Xd9PcAGi9BMojgD1gUBIDFRScUMulYENeAD+cILNZVt9Xrr6zdMBhiQOOHHHAMavQJYp3i/C/YaO0qjF5t5hUNcZWUdNq3XyDlgkfrFAaZCkVIdQxpwGl1jsXBsqhIbHTWFZmVuYRyjxLDx3W+geEiVqizG9X21C5eO3m20SNurw6uaqudhSYFO0l+9AIGq6cQ4RLLjHGzElGEAaWOdwGRCUNHKe0uqFbyAz1ZYZOLLP6OW46GmuSva2q5G6q2M6n/7l1RWh6ehEThKlNsd5Mw3MtYoR1lEexrPZwin8p1m71cWqCGqs9gHXViA0/opJtEJizxWal5uuqMxWhtxWhy4UWtzO1ml0X03CLq+j2O794cb6yqp9drakdp+4jtcePi08Rbq/KVHLhhTTgX00vwmsKj7MMUw9yKN7WTznyKSZX+zGm5ijzqv393XazWE3V7D/2lNr22pizoHprSf8tO+2m/mxQ0uXiUzyuokprN1GTdXUvm+ZeJireSxDKZF3dyyTcyyTcy+QyZuOIHavs6ykdmubf/7F6qJP6ob5YVpEgo+So/FWHyCEScpA+OX6s+sIeOeoeMkSOWNQ1oTFBygIIwhRWcq1MMJyBD1a1Q5xqTPbJERvI5PhSyTGWcURvtZ65qzACXw6lHOkV93OOfFtWeR2rnDLpSC2a6lvXd085cnv6oUy/B6efTOhH+/Tbz6lSk0UNJVRJy/YA6KCxyGFmpOICGygx8lZ5hxwhfQCq41OpZAJmAj5BAuJMwIcmIAcJAdmA/ReEPyvF3zcCk6JBS7Ap70Y2ci8oQjbmksKMMM4w1hZrSDxx2MmeOdi0komYZ5N3ognJNHlwmsCEJrxPkwEf21qYyxG/2r3iri+tIgw5CTHHgKBgVRlFLUPYWuGEInwfJcuT+M9mknx1JKGZJA9OEpSQRPRJ8rbupX2SrNuSIZI0xd2DCrVzGjquqEGCIA0p9Q5iZTQ3kFG7T5KmkUySp0mS27jd53naKA9Z5uGD8xAnPJR9HsYDbQbXqsyuYIiGdWkHhhhqZpW3GlmvKRGQIkaxY8B6qrA2+zCs28gszCz8ClnIMwsfnIWtFyCBoM/CngtgDZfh8007hV2fB06p9MBQTlyYVEoaiEiA5choDWAfhKc40zRz8KubXYpMkAcnCE0I0slodLldmcuht7Y7Ua2s0RPowLlqwxUPna42/InPdFQc+XqrVh9u56qITn3K2vCzbfwVw99c+Nu6ORyw6aOXi0bzc7cJJHFrNzcuejWWnovV73xRvPyopjMVbIlCxfbKLYPywMX4g4v6x754mHPT7uZ1ONrlzu3oMYzG5MQSOaG+nPrnjlWdc+TQsbSwu0wDCRISQu6gQ1o6xyHzWkpImEYOJEcipE0c6fB7Wh2dwuX3y9LRqZ14by2nx8w5NC6lxJMX4r6U/n0Z3nB0rP7+434qhKqjNhUmuwpD4tqrtXeEGFOIOW+tchJJjr1zxDlqvOLUlwZ3R2V7bWW5nbXcTp9x5NaCQ2cpuMQBFpK+4HrHalUddPhMraSsIynhPMTYY89YmFAyLADGRAnsEHfOar0vqVOcppWF9IWOW/gsZZR4UkLal9EbtQ6TuIHxqi0YklJd2j2dDlJnDRAYh/EIa44wBVoYyeN5tF6SfTHVbWQ5ZTmd22lXo3ISiVseZANyulxsFsWf4sdW1wOiisWTtnhQWmmdjsCsJAIIJTkk0lhqscaYEoUEAdL79BiegZayzLLMzu1sq3GZJf5qkPdl9mpxdbWdTzcDEkuLhuS1K+8GLyNCHFPMcsUkjNuqyiHLAWcUYqB60tq1kmWVZXVup1eNyypx3oKiL6u3bnW1mPc1tbs+JKiqsDut8s56KbC2lHrvgecKMhtmWIo7WrmNddRUNZGllKV0bmdRjUsp8fuBcmiE6iedaoaOkYxT3eLu0p+GYVxiwnEaeiIlwlspHMHlIQBAgv7wdJJcU1lSX6ikxFlKKnEfQaAvqX4Gqap/jqSPSgu7tp7klAUVWWwNkY4gZ5VVBDuGJda8t+h3ksRRWUpfqJTkWUop8aNAA34UP5fv42ZvivK93d6nYrj6zZ4Vw587rdLqWMXsYHFuDhajffHs3CzwmNoSNwuExtQ25mxRlh52uUirdCda0ADgiabIeEoRJNZJKB32EEMEvdkfytKG7mdA+1yZ5RHtYUa0W6vtUb0wRpWWeGEgPKa0G30xKhncziNjsG43FzDDisigQgco5cpQj51j0CLKPNVWDYvwQbwzshrP3T3j1npEZ6nHxEkDkTE9jrhqVDo45LCR1OhuhBFmhBOOeQHi8WrOako8NOV8jjs2rLh7dN7IOvtCRj18lipLfDgQHVPZqCdH1fsP+3N06nS9OozB1hkGKWUOIQkt81gY6BR1UiQJRodaymrLajtXF48xtcnExQOxUbUddvSoVXALd4+Bml3r0oW5HACQSy01B0ADQJkMFqZRlEuARvR3/64fWYVfiArpWaow8QBBfEyFB/xAKh3c5A2yV6ubxoh4Y4Al2AopvZUMQqatNpQbbqgbmdfds2dIVt0Xojp2lqpLHESQGFPdmJtIJYCDziJplY7YvMFAh7kbB1gbrhGmjFGDmVYqzPGIGxbbfTqOZKV9IUrjZ6m0xH8EyfHxbcyLpBlsDvqSdCt1DxK0IoxrXjHsjKbS+GDrUgaYcMYLi+jY4HaffiVZcV+I4sRZKi5xL8FgTHFjTiZV/z/oapJW6SYah0xwjkQ8QJda4xlC0kjDFJHWe46HtXafbidZaV+I0uRZKi3xPsGp98lfFuHj8eUc8DxZ1XVu4XUyWvWAx8noZz5PYKPN3U5c+MSeJqMPuDDhc5Vq6pPFfoiZej6qWREEFoZ141ab8Md4ppizzbFjQXBtHqFdfqFz9CU51LPOzo+EjOkm8SPBaEg3e+eF7Xrf0IlhncLukiKyUHjuPRYeIe8JhIo4T6z0lMjk4ItOE8eNRKcUyglGoScnlBOPM3fRy6N6goxqJfEEwXhIK3snZO064NAZWZ3C7rEIwXjTSFimrZNUQmC0cZQjrRGFKAll6TSRtfKYWjm5r8Zd1ILOUi2JnwYmQ2r5eTp32+WQXmZNybBiquKOZhjDUAoAIRKAUowVsBgJg7mjTFlt+5qpGsmq+UpHGHyWmkm8LjAd10yBxlUzQTfoZoK6lpnQhkArBbKGcOGs0sE8U0pKwqBNMpv2msna+Uq1Q85QOwQkPhSYDWmndk0o3pUFAwK6qCpMNnWFYRV1anV9BBXBikcPXMO5Usx5B6nQACjNjQcDg1Cnraynr1RP9Cz1lHhDYH5ATweUdJOG9jJ6IgUJsUwwoI1HxEloqQ5WnTIIeTiqnqybx9SNUavFdu1mj6QddpbaSXwasBjSzttluJ2u6+yuI67bsmH1NBW6rkOOAEuUgMAg7IWl3lFjqVEYOoeGBp+mmayfr3Tc4WepncRLAcsh7fT2S3ddcPhUh73i7j4pCRMdiix1lHkDg+UYvc6dcNoHYw6pvmpOcbJD1syT1Yw4S80kfgYEDGnmO7dR01nxurzLAeXYsnxyVZcP6yet1F2xptBKKBDA3nPJabTjlPRQOyA9hrqvorSprKWvduX6Jl8C+ChqSnwJCLxJTcNrcWn/PrAi163WXUwwnkKnNQ5GHbTOSMKJUNAByAx1nh/WVF6d+4pVBcFZyipxNSAdVwMX3tb34QPhV729XHwyah3+0DzAnbRCrYkra03Wda3J7jFX8ootTaqWJk1Lk6qljraIYBpp7ZBkHCHH45HRPMyTsAGUw2S8OtDgkfoa/zW3O9/rlAp7OS/czF2oIKHmXkonuFJP8U6L6k6Lfyn/tglFdbd+Ufwwc79PS+e3uS3Mdr1ZXE3/GTvqPajpKA11fHHuyVob7PaJ1wBJvQZ+Wi+u3GY1Nf2+Pm2K9jv4fkE3nkEDBij0xjNGpCLEIyQRIMQRSBRuQ9T3WzmuK/dbu03/pafsv4VZzBYrv509L3Z3U58q155YV54uF+rMrjv9tPrsuuy/4QudC99StZx7cN2Dk518ku7k/7pYlOFwbmUaYBdvAyimJunLnxaLiakr1T1ksm4q7XlXHqy771Y5Xvnz+vFAewNdGdzQlY/0qHxZWyWhk6r59EpFo2XoMe969aTYXE7X0ZU5uixXv79xOq4OYLQLt57/z02xDVTvNBX6nLoHv8rn8TU2D/Jou+dgHzs7N0s6JqFkY5+kG/vfT/Z+XKKctmzytjsM1NOIXoXugjDF2HgrsEHKQYQ8woATB53l3CPaDge9Zo4bD06jo6OHhCero73FrUeU06N6YY5JCSb7/IQdklJvtavX0Sevh9a7Rqp1s+Ah6gA1OEwgKKRaIsWpVQByw4QSDI+Lq2osSyxL7Daum/BRJJZs/RN+g8H33fVcXXUsvlCr1+nbWpXUDtTpriwLhwwjHnMsHaXIUIYNEYZKj4B37SrYgQZvobUD5xnXvXd9W9XBs1adrR5JV3ZBbut71Vu7GnYqnT3WXAgmO/sk3dn/drZIEkAWP4Q55XS9GYo203XNiYs1J76qeSDm7IYPHIg8u+UnP28QGm7z4adM5en0h5/+XqRns+K7Ww7ehX6WawTaqfA3v50V8cepWS202KnOMQ7t5p53dtMkNqauZO+fyCF19TIa77r45WA2473i7t6/Qs5hEqZIzgIoJKFaMeKYhFhA4NqYtL1GjrPdbi2b3kBCSiWdclvlKcrmxHv/d1fPo86KRpWTeABQMKSc/Yyou06thrKhdku7G5OWA0kdYV5p5DQJEx8AiADeQq6YM33ZqOOzoJ5ssMmqeRzVoLNUTbLTT+GQat4sVhu/mE0XQ8pZJoXD6tnV6Ho6c2St0RpwzZAUSAuDIEZCMRzPgUZ9Be3aySr6qlWEz1JFycY+RUMq+tWFewr/3Y+82fXvT1WF4cib4VrdDX1vvAZaSiSkgSiYc8QwjgHTOkwnkvOVhtvKqvqqVUXOUlWJ3wDFh1T1qo3AGBVWEqVxWFtNxe5WkoVaSy6t9kYJrWTMUKqgAZ4xiksv7RF5Nc1lhT2mwu4hRufuKqNnqbLEt4GSg2OX+31zcOiqym8YuUKljrIwYh5xiZEkimNpLVbKYGOC5DGyXhwYuEJTWVVf9bjFzlJRiasDpYNzKrXaTN163BpcVhVusAY7tbqbRoQr5aDGTFhssJUAco8YcMwwRQkfmF+lbWVVfdWq4ueoKpR4PVB2SFWHrMGmm99oDe5X7GYM8RIEE1BxHXSlnHPcY82AMFYBxpKjkEabywr76q1BcZYqSxwfKD84do1Yg7uB5JA1mFbay2KlCMeEGcOw1ELH81eo9QpSBDVz/sDAla3Br33ckmepqMRfgg76S/ywnbv4VkatQV9VuMEa7NTqpp2XjnOICeHIYGwo046E8ZRjj6SF3vZF1Wkrq+rr3u0FZymrxFGCykOy6nmV93r5etC3fKRadycYUiCBINAgargRHoRJF5CCG2CAEHxcWaeIO8rSOpEZ+AiiOksfCpT4UDBwcKwasf52A8ch6y+t1JVTkBBwiDAfQ1Et8sRRayCjzMMwcJkDA1W2/r76ceosHSxQ4mDBBh0s6uN9htRkdkXDQqrLOxqiBAkABdJGCUYIdogRoTEMoiLQDS391a1k+Xzd8jlLzwqUeFaw1LOiXIYw/Yzzy/r6fsb55Gp3+8mHGZonAnDtpfPEaEitso6W/ymfauNTnjRxbPDSysaMHeuyrUnoThdu51n7P8qW2cPHMsUHWVR3UYR3vg3PdruOXShGTewe9/feO7MpXlo7+eX0Z/oMdPtnf/+v9+Hhby7fP/vmfXgCH+tA5+Z9rCehUy7m79+Xj3y48MXycvn+2fP3z+bqypXtNL9nnfygX+ZlndB7yyr1qwztxn9ifMzee3xf94LVpH3X8WLdj6uvXpcNPPvv/3h23mEdKHG2YB1ni60uD0FZrJaX+2LTZdnkKpZ1Bdcr2d+eckwbA5UTAEvsPfYcC+Es1tKLZJVvv5l7Fx49M+F1Hv/jq656IdX7GNBdr7ivvOoH7X7P1y26xPeCke7oFuqq3wdGt/J6b3Rrr3aEhiRwglFMMGLOQSicZMpx4wDFwiuUjm5tE/cuMvLwImt+YBFvqpFZaeBdxTWA8O+PrjrqLr61xYOI7PyD/VDiysBSV4a/hnYW+73zY7zY7ZrtpW6iHunCLAUEGwsTILQGRCAHsXecYquSAaD9/L13SvzwnXI9jXOQoQGg7Jk/vnv9My3KR5C7Y+yOOPEBYKkPwP918zBSrubr/S75wc3DoBQKut2ye7m7BkW9kI56qrGUUEtJHdLeaQqMdzLxR+u2ce/dEz1a9yzvptDh1V+sFtu5rRA60F9Vsd7q8EKK9nW40rrOvbfsvcneOuvsrav11FQUeLUIHyoHoNTMjuVVzzBpeW1qD5V2aesZooZRJ5TShAnpFWWWMooQl5a25woMNnWPPfvhu3T7s+Iptr+Gm3sTb656+FVo7brqzOWdPq/o+7zYTSift5ZEzJcWTF33hwfJkvaFzIOf53nFA5Am8Tlgqc/Bzyr+4Di3/Gs8B+jtosOZWVM6+RiP5FkvEsoMlHVnGlYRajyyUjsDuONQYB1m9eH/pGC6DZAYaOg4wrQNxrYCuLbzjV18mt8OL+yEeIkZat2m+PaXX96++0Pxsl06TlOV7G63iLdb7G63O/WPeUffP3tVreHG1/T+2RnM/q9UnCHN1dy4IZX2ivsqTX5R8S/F6/YDn6nZ9svtwsQL4Xtjippdd0ju6amIN/FsYKlnw7/Po8H1KnzxZrXdtxHKwsleYSXdflE3clBD5KUSSFFNhCVUccCtl2FmxoLZ20YO9ts5Trjbsj3Tae+hJfu3xTYM97NZMYvz/zJP0E6p5f0V6f0F8c7LUJhyvygr9Ukr9dXKxc3A8Fb6wirexBf87lJt3m8RgDJ0kO/j2tAm3GPx1+l6uokJc3+9nAZgxy4UDMkPxd/fbcPlqZr9xx4EbpVlq/7s+v0fTXljEzWf9BVS7lROYs6qSey2E9fc1eRjfVeTT/GuJteL7STY3h9KSaUIar7o/R8HuFDp+GZEJX4iHAztylXWZMKnpmSyK6ngtHd9zxnYRA8QSJzAiklBJMBMEm+p4M7q1s1+r5HjsLSeLz7tDOfJ2ri5e3gu/SnYEUEOizCn/lSuSgbzYGGrmUkkzttwk+2m3Nt4k2XC8jr32V92P+8PeYvui7HqE1cSDsdV1zmPY08ayUkcvZLuvjjAGHODpJJcCciMccYo7qgHmjoExrR37LEb5lonnWPiakE/tP5eXql/uir9f+MW0gC2EmHcmyvvdbc0UK91ZRl+6TJMXFJ46pLydqOCFTBwOkmjxXWs0DtPpp/ucLjegSyHhz/wmcNg2Wb4+Nxc3+YMnJsEeYIch9UDflne0k6Wmz2vrnR9r5pSrxNLfe4+FX/ahjaDci+io5j5EKz3K7UKSgpm7lKVoeXBhPfBBtuu3IuiNhOrnKPPuwcnzFQgxGb9hzPMiTjaGc8uFSIf01nikcJxT2ev3Xzb09ZVdbHjLdmWdH1QNIaQAuuhAI4LYjlT0FOnYs4cD+hOZu3nj7QrTyyoEzhKfg2COrFj5a11dVcH/4X3a7eJv/AbsPz9efLP/9K9K7NvIIl/5unF1dDF9w8k1sSThZOeWHtJSysxDGcsTcu680EUs+8AqD1z8WQHZQW0wnrAiBRIyj3JniJXaRbtVyVa9PmiLaWH479Q/BccE+5QvdXg1YeSbuLjw2lPuq+qztfTrtldHxBvc35UZ52Zch5mkAxAjJ2mVkhiCPMIoiBn5/WeeptO/6Dy7R3ThV6UySizfp+GfvHn63dCo/AmOPk3usXgSxvhdoff9nJ4C/+czq37PXwLeyBJk8RPirO+pPsJUmrNjWRF6ZZ23aUcwxgzG/4VROwhcMZ4S63kBDpm9sfk0+Q/yaPyo6j6FEf43UXN5GHUfJcRudUyfCgtJ15jnPe0PJSeuZLHaG7mveJuZiPpjcfWM+oF4dA7DLQzweIGBuEwW96T84myMudh+usapul5D9P0oaSduGlxMS7t+rT1cYXXB5/fIPS6VkfvnAjiDSU+zKRVdNwyEjspEYIMQ2DcmN7rtvIw/nSH8UfQPXvMs95GVZj4W3E5OP/thue389OB2PxOYffARBtPWUdMcyAxRFhJK73yBBGrmMF0YP57dFR+VthXNa7yczaY0UONqolzkgA9Pf+wWGwGlqJ9c3lAzVVZN6UahxhZA6lw3BqriYsBQwoqBQACQu2JuWrhYbUMs5H8pMUs7kPMeyJFxxnK+KEknXg+CdiT9J/dp/XMbYZkPU+LBqTdlu9tDnNmrWXCase0VdQZx10YvbmikEC8J++2lUeWeB6un5LC5R3N4e061Aw/sCwPz6v8b/j7+pv/UVuLD7VnRBIfKNE58Gh6UbzdxvNti7eqm810ejFZlyWTtUrSmO5d755PyTgPNjKHQHKGEZAWYeKl8chxxkySZ7vbyHEq3Gtssr5cLO90xvipNbj3UIu34YYaF8NSgW2OKnftitDRTejSpSNi6cHodoc2Nwo+t1Xhz/Pl+3HxqdgsokNi9OJ/2cRtRGeD2XTuYtnf4u//cXHlKo/+U7noXy4+TTaL6LcY3fSbiJHS4yB+cyyLT35yGb65dtnfud2P+uPvK+GWzvgk8ZMSqZ/Uu5X66ELl1dCGz6Yp7G/69Iu6RyEJiglxliHMQsdDEjDFJcDUQks5aHOK9Ns5TpdVexM9W6SnKj30qbEvi+o+ingfRXMfdcxw9NR3600VIpSECX9w80InAfGfMXwF2267/G0e5hHrG+7wz4s4RMdjzUsn5ep66b4cx88wSof7KsoXsQ73H27MFS6oLCinPA7dhcH5YrbQahbH2vBow0hT1n7xv3UA4L++unTmQxiCy7H9f6vicuX8/3l/u1doF2Z7Fe6mzJ8X2g0j5UVps/6mZ2r+Idz8d2mN8PPVv5YcKyPT+27VxaWbLV8cnew1e07fnrZt2NT38wt1UR4JsAo2X/h9DWbKN1aS95d5CeJywDoxe9soKVffx2RZ3ccODmHavao4vCjvoxzJDwB4AHzL+e0YnLi/iU4ip9XiHy55NGkup6poYNN9r6DrRSONoMoSwKySBGtrEfVAeMuIZJy06Un2WzmOvf3WHjwio6jvYZ+5MU/DuqRsTAK8rshXc62ZOQS2uUCQ2fUfzi599GOFMZDE7Uukbl9xNj3UX+Mkt99ZO1e7W0vMUy2xhBQAiRQGAAsPGYzp0glQ7dZSp4njuuleUw/fR+MN5A56kg5KEycm0XViWqyuq3WE9eFwm1Avmouh3q2ibg5UPxh8c4vPfe56UNv0Zyz/nCTkJnnWg5FtTU8OHc1G+6Aal4vwJYtgnwS7LVyOvyOeGRRqlxPSNu9OfFgvitfTOptOnLmWJuh0bqcfp3arSjs7fnnb9N9++fe/lE1en2fgzeHeeXbxN2JMf4njkeA9/fXib2JXHY6/aUq600iPPDdWQiKAh9R4LxyHAHguhGEUJEuszeePXVw9SkwnWUv9WsR08hXVu2nqUQ/XGNVT4u0jRE9PAyEysb+Ohci0Zd19SajC7IACKBQixljDoUGCYWe945y6PVWdJkQm6+or0RU6S10l/jtCDtuJBRy2CydwWFl1YTfDmZLeOcmt8YRzh5kFRCgvlAQoXFF70qqbyNrK2lrfR+jKw2gr8aWRoKetOjZsQF11JxrT1664G9/JOWaQaG0cJVgLrIBFGikrvDJGsj2F7RrJGssaW99HQMnDaCxxbpFwZPxCI+MXOjR+dTP6IMeBcNg4rTTlRiGgERLea0UQM44Pjl8oaytra30fMR0Po63ET0WiEW3hEW3hQ9rC3bVuSJnxgEnPKCPEKy8BRMgqTShEGA5qC2dtZW2tTxE38TjaSvxOJB61DdGobYgO24bd0SuoCRvLuYU+zLyYdEwGKxGEqw4yp/iIbZjHr6yx22mMn6XGEr8CSUbGLzIyfpFD4xfpxiZRZYhw4f/DYGWRwQIBZoJl6LjTmonB8YtkbWVtre8jlOFhtJU4QEg6On7h0fELHx6/uhaiQEYZijzWiksDKJXeAWWBsV5arNHI+JVtxKyx22lMnqPGWOLDIVMfjp2z9uvpfNr8vERpV+Fy40yxk1l6sSMuY5gBCmvgJcZKCBOPvdYOeIUlN7A9Nz5t4RbKOuCPWL+IoKpumze7HKEXCJ9YZLsjC+K99KN0LlUMEggdwa3m8UQjvVIBbOErphfzUjajzkhFzEMe5fQ/YKK5b7fTWdRw6d6EAPj/7L5qnU8E/mLyHLPE/0Om/h8/xEz037nZNB7gs3/gng+FE1sX7pTbubqXcAY5qRHynuAYXscodU5hAgWmFpBWup0mTqXdTqP1OX4PruC/ba+ugtTexcNHyqP1dsINdT5O58atm/P1zKWaly7XZjErveKbM/meh8K9ROSt0qezWVD2qjq0vhT8+mqx2B19ugg/t4lLyPo99iSz8pmGh70cPHelW9j/Fa+bChk/ibuM7LjLVAbkr1ERP6U9OzXUq8cQVTOZ7tWpiDRao+tOow0iSADNmPSIcUwM99YKTZnATrbn1I42dypSHfiCBwfWyzocp7qnFlclpILlcF3a2o0x0UQgPa+gFaMU+0BazsLnIqt2YVP3AKS7H66YjyU8qaQTTx2Zeur8v24epjbmch46yMX1IZ/uf7r5ZLOreQuv7hs+cMCv+5afPFbYw1/zOao+gbv3DS+iijZuJhJBwdMPZZD/vApyTUKO218Urplyal+H77wovq8JEYMOS/FfhElGTH0QZjAP5NH9lU0hbiWxs3NMl2MYaZ2SKAB7GNlzS4/qGnJKb653zzzSFFtOKaBCc+oVgxxRCKwxCnmk2wzVzadPNbjfmgHoARYTvigGnHhR7u4qelRX9FEF0URBcE9BPUf02DuH3dDbku5eLbbYWOsAxUAwyLxV3CGJgELSAcA6Orq1C/oDj6ZZSXdVUh5Uz9yDfhQHLMEB2sPBS73YbvZooOprPRiUBd388BRY4qUm2AEUxlQpKcBaKuKcYZTCDgvKj2cUZBR8DSjAZ4kCnqAA76Hghyo/23qPBr693ANCU9Zhgiee+2C6e+Uo11BTqmzofhB7gAHnosOEpoWMhYyFrwEL5CyxIBIskD0s/DW0vthjwsf6Wg8IZUGXBkpg66EmVHNJISecgwAFACl1QnrcoUH58YyCjIKvAQX0LFEgExTQPRS8WU3NtEqZlcBgubvaw0Fd1HUJQNALRw2kzEqAuGfKCQ8NdQQxtDdlqBvISMhI+BqQwM4RCRwkSGC9fb31Znq1mMfkfcW7smB/O6+tMNnUFXqg6NfqLjNI5ZymkhlAKLXWUkYUAwpZQqSGvMOMflsZHxkfXwM++FniAyb44AfwcQAcNyGjAwuqgAOQQCqlYVgg4YiW0mFtBMOYsVFYZEycOyZuc7ZVBsWZR+yMggIloBD7i5P75/qUi4eDp/q0Jd3UutxrwQBxSCmvhPFGck+V59RbJWF33nHrE30yELLd8ORxIM8SBzjBQepO+EZN5xu92q4vk4c/CX2/hUNbZVJV2TGiV9I9GEhiYiHmzHqAmAfeE0oIDwjgmjrXHnfda+ZUqFi2DVcuspP2/J1HAsbY846kiMFDS7cqr35SpeRDRynW8UiO8riE8sVPN2VJSY0mfKn0Ju5FCz6uP3Dy8Aeh0C0dosLuSeXwhCfty8wTJ0SYOiG+uVxsFhfhEcUjeA54Mi+TerfwYz5Y/YAX860+dzSTDn3JI7kyH3wPI2QK4iyPkHAVidoj0uMJFp+MWtcF5c/erItPi9WH9fPGqKkiGeqTuOqQrfXMuQ/xxJj5uuqNj+zg/KXJ/xaCOze/5nK8HURK4pUJ4RhSeu6Zaenkx0E/zYEq3dRwyDqhsYbOGUUtsBAIziVUSBjDSDvzGWjoZHbNqRlyCsPmy2fIiR2k7yrGx3SPHhdi4g8J0fjYPjPRin1rVs7NxwRZ15rsao0Ls1t17+xwx3CYcnCprNDcAKW49pARbam3wg8LtNtgFmoW6ucLFZ2lUBNvRYjHhNq8zjGJJuXj4mwqdWWpkeEKUgIJo55zJ5BUUhkqJGKYymFZNk1lQX7hgsxG+Fk6P4/jJPFyhGQMJ2+afjnGk7TCOFB2tbrri4oaQwFSkgLKEXVhkJdOeSIoClb5yEC/aysjJY/xny9KcpaiTPwNIR0T5av6JY1pMikfl2RTqXsogTKQII6xsYgBTS2NwY3GYSAEBZwMK7JpKgsyC/LzBUnPUZAi8faDbEyQve34jjx+GNyXH6jS9duJAUNMKCmEBRx5DYlmzJigTuQUYcNS/OGkO/VZiF+jENlZCjHxm4N8TIivy1sc0WFTOC7DskY3JxbThCvOqLJQauMIR4wS4D1HEBrAh1VYtpNFmEX4+SK8yXkVPooIE580mPqkfTsLny9+WE1teNdvy2TGvUg5HetMfFlnUic87kbOjdboSFIxRZRGDnkOsFLOAQUdgwgKAbW1bUDtaHOnUuaBL7g5+zQphXoqUZYvoLqTYuF9+OoidJqgl6vorrZZfFIru476KvxqcVXK07rl5nIdahelLp5XmtrExJyddNRlls7Q7bYz95gJM2eLzWbqhhaR0pL+ClI/BffPZf3H8kmpnm3ZTYZ+TK/4Nr8oVdwTd1Z5u5yGEeLfl8Xf4ljwVkWnwjehyy6q9Il1atjql9Y/u0qvHZ/D399tY+50NfuPPfrdStj1Z+M0Nt7EZLucxAFpso43MVnubqLKS6kqqTe6V81NlNpPUdu0e4AXL5ZVGOFNfjgicQKEqRPgq0u1im5lf17MJ+Fp+elm0k8zbqpKk/kiRhKWlfaTjrdJxg/V3Xe7Ga98Kp+b8W+4jQGEu6g9gb/N+4En3ozq759VTsPbtYvpPxtX4X6m8sqGmYa/ueJfmizFu37U5AQt7Z5dzvOKdcXUxOStj+td8+SAfIcV/oN6Ojsfm1FcJG57CAzgYi9/YKOyoRyCaVn3NDjOJVFYAgIN9xAJ67AO0yWpheMW2B0v0hZOZYGdlAsnmBd9cVw48SzoTrp6VHeZUU0lfmsIDmiq57LW9NHhrILd0m6GTgYk44Jb4ixDkiCjLRGeKcqdtMT3lHXa7IJZW/esrduE792fuu7q4xKnlWu3iT/0GwmWvz8X8V+8+df/0t/EPyb//K9Z78qqd+X9A6k2cXJDaGgknK7L3jwwGO5KhsfDqrjrKWOosYw77DSFBhiFHeWQAKGMcJLr/pBYNZKV+8WMitlovgE/+CwH98TFDuEBTPywndv1ACR8fX0QEWVhN2cwsIpSYjhF0nkJJaMOMigUIJpA0AdE2UTGQ8bD14IHcpZ4SFzmEBnAw9utMW49BIj1rmQQEXVxBxLAYEqIMFACijhigDnBCeFCMIWJcD1I1I1kTGRMfC2YoGeJicSJD9EhTFQHvA5hYlcyjImquJtRFHHuIaFWemmwBwBjrYWJPVkTI/urBHUjGRN5Ce5GfbFz1JdMfPIQG9DXr4vVzF6p5YDAPrVFgwpryrs5Oh0ARiuDmNQSGY2ItxhhgCT3hAnak1jTStZY1tiNGuNnqbHE3Q7xAY39rFbhpf50VSVi2JfZLJZOpnXpoNKSKnsZsiXiADODNCQMIYERBCxcFVwb4XhPbElDWW9ZbzfqTZyl3hLPOiSGbMZluJvFatBobIuGrca6vOvY6i2IisLx2HhIIZbKSyexJdw5JPtjWtNK1ljW2I0ak2epscR7CsnBrdvZcnDjdrYc37addW1F4jHl0ACNuAcMMiLCHMxLqqHCnkMxsGk7y3Zi1tQt3CHAWYoq8THCQz5Gvdio3Z7GYFhUt7Q7DcMEeBUERRnDVAnFBTQGc0O0p1iY/q7JSYOhsri+ZHGdpbORTJyNcMfZaDp38RWZMGatFtVJAx3TsCmfxIdapf1v7cPB0m7wIVRUGkq0ltwgToBEFiGrPfEMCJrsPQw1dTLFDTf+SGIbeuRBZ5tOpuA2PWkMrAjam63LfERVFIWeLQLkis2l2kRpxvpNq88TfbnNJkYChD4SgzcqDb543FygX+yOw+dFKdwxnuBy8WmyWUxCl5tezCeq6s71isVxkQq3ank/DmFY/7eMQZCJKxVOXam+K++h+O7PL8ciwOq7tHM1HP81Ut51ipRQAB9saq4AdxQIjLyBigmvidMK7cg00tip2DTa/M3HmJN7oNPIw+/y6f0WAAXULo358x6gqjCvClCBZ9t1mex8uyrm7lM3yqjS+yPGgz2xjOXPc1TbVxzVdnwKZpm4puHUNS3Mr2zxnZuFj6+um15QPboEvWEqZMMoUdVq+ta6qVXh90CdrnFovfbKEGrCnzgHCGGhFdQEK++EbzNTHGjwVBg++BWPYyh+fSjOxmFH7D8uPsV8B3U/UP0w1fC/Mrr1l0/z4t/L91r/7lPFr+5bhfsxqpPwvzK0dfFpPil7VvOmWiNx1Ho8hInb2pCJIx0m+zD7izPTpSteqVVM/jcbyidf3sOqrDcxdb0D+eRvqr4f0Hqw/qliWoe+5OGjWbu5N8xiUZ5vU93WukkJ4ApXn2ATZ63vB19TwrcXxavZ1JQNxc9W84tisXTzwLFlUIR1GzWdFfG5PVCK+DutHN3UC88uABSN6SzxRMP0Bp3dIK/9hdqhOt1cclpJJmmwDBRCijkpvWQEQxumagA60TUTekI4oX1wvMjycm1fbbuO8dBye9Sl2hGpUZA4pWE2IrX99FRp77wayk7Vq9ANIzFUIyepNFZy7LyhBgrBFVYE8fQw+V4zWV5PJTr0ocWFHjPv1Ki4Em803PFGW6yWi1V8dYesRdPUuo2teLhyL/VJU/u3pvZveju3s+MznvRvo0w7M4sa0Yvfb6MxdkhjZT+5m8YGnnapK63WcQMjtRGbm64tSKWLufo4vSh19KKIjTU/pCh7VvjAvFgHWzQI67ooO9hiHi9XN/C8mM6tCwakVfNN3FmJduXO6mj09EDmIwIITgCcQFlA+g0k38C9jceDnfLsjEc8JrrEJQ2Lg6I7qLXeDn+vRneBH1ingMMYS4iNpk5rL6x1VhisBG6PGei3c4tRLVHc3gLCLVK2ZUXdl4nYlRRi31B4akk9upwS7zMsB+X0c8v2vpwS8I/IqanRzUWAkUGc62AcKiSEAdZ7ywVxBBCIGB2QU9POieWUB6h/fRiTsCsmTL7B7Agxwcc0CEfFlHidkY7X2bWOCfIPGYOxxq0MwdGKPSMw1jy1/df99ke2/YKKkv2JnXYu1XonqvJs6/oz5Qwp3OJmaoJEWmFFna0rdV2Geyl/T3SZWaxKeekgmUs1vwizqlKVYaIW7mhqPhTbZVw2D/Jq1hTjty1WJx+nnn+mEUjAN4h2RTbaEe/FAKz3HF6tXNS1Kn4I/92G3lCeFRHfyNvaK+ld3E8KFz9O58ati79O1/FBruOH/69zyzBVVDY+5BNvRZjyxiZq4usbm9RdZbKubmwSN7rixerGJh/rG4sf/hBubLKqbuzAxkT5yCfNI5/8GiXTDKlDOxNd1JAx1CQ+eASOomaUML3xulPaPQ+HOl9m0SNSaAutMV4gRLTXyrqO73injZO5290FOXfNZ5yRcxLTmKBvCDklaDJkzgIyiVMdQeP2zNAMoava0WnCcLUOf4yWUGnnLKCUWm+iOweRBnPHTfgPGuHPXSYM2fY5NxB91qSCgm/g59o7R08oMobuDUOJkxlJncx+XSzad/vLPJ1PfVoswnO4ChOgZKl6MW8nVGMVOuixHigpjfNYCuiMZkBY74mzlGMVI/ca9Iy1dir2pO3vnEnNh4dfz3hZrVoU4dG/qm+oXVAo/m273hRrt6ndNsK9X5RZXUr6pGsPgSazWaTLcrHczsodq5Iv5efStpfl4Syb9X3MqdpneifOsG9AMHe6nIk9sfYbexMuntv2MB1TVuLxRMgBZRVvN9Ez/xYCm6ybmod1VtfrunAaSanCggLMpONSQweFRBCDeAKg9TfKrW70Fqp7SoqrftRuJG/l9mbmoo9UXDjclJvNMQiwfgTPivouC7/oSOq8lESDmA4pqe14ZyUoNiaoxLWJ0DFBvfu0uElJm0+LwxIKFboJSqzlklvhpFASYuEpZVgzoSV12kFzWDuhtTxUfZFDFfuG8jsOVegchyqYeDIRdkBZtxyqQo+/1VDV1uvIDXmsvQ5jUrAPGeEEMeMkYB6CMEON53PeJLc8VD2xoSr+j37eUIXOcaiCifcS4XuCqiev9c8b0VI9kZzsTgzoy6hbpbusI5SCYZSCgFHnvI9ppz2ywirnmdVwUEHd9r6KIat+dDcPWFXFRxuu2nMjPl9i8huI7zhYgbMcrBInJSIOauvwcNXt74cGrMGae0MWkk54CwE0XMowSEGKFJcQaoyNYrcQ3FcxaNU6etQR6wRiQuAGy298vAJnOV4lnkpE7mnq52l4IHZwuJrMyrKBUapb0k3q4wmlnmPGqeLYauedCI9XhOmVJB7xVCvdZu5jTNr/BQ+sj/5oVMd9Rl18u9V65l4vVsvLKuSzlERobRoaWLn1JlasfkCTM+TpDGXLxXpTHjd7sxLHolB1+Xyu4vMZCkXtFffjUdMn/IAhqHs0wd8AfKoQ1JX6VLzcxP5V7kAtqrhTt3ufb+r32ZyrWqu7zolw6nDUcDcT1dxNvFLGoLqd+predWDfow+T24WcUph4jFFwCGqH7YTOlx8yE4YqdtdgBRFQojDuExaet5NUSagUxTAUOCgHrYShVr9AEA4bCsex8IeuAfG8WN7G7nhoO+NLpxv5BtNMt5PTLXFSo3CPbt1pXWqwJdOBvv9rv8K+32uoUVWIl36z16GrBcblJYKHtauS11ulWx9cjvscS2twzoP+/+296ZbcOJIu+Cqs/tH1J6gmAa4xd24fpXKdW6rSlFSZc+/knDwgCUaw5O70Jt0Vipoz7z5YuIAkQIDuDEWkkt3KypTTzAhi+WAw2OJYTky9yhdfzD57pJPSiCB4X/lAvXqkmoE4Scf6gGot9XTzS6rRGrYV9RJX1BWLJ74F7ooGgy+5hpRGA8F1yB+UTqTeUEQaT5v5psuPKbowNiQ8HWEqkjQJSxUEw4z2wHFBkMUwcyLX8X3s5znMgzhykzh0c9R7Lyqkrea+qJSvX3DzXtTx4gWXo8MJ1VSXJpox6X/yUTV5xj0Smc6825MNgQU1NaEPr6yfcrqerAcaytSESyGL6t67ZhlaiEZV0c+74eHyjxZRf+6sgtHT1ZoXFZFK9ho2C9kipoubPtohIryLkWrTXJVE/65TfCALci2V+4+ZUfB3flAANoCW69wCcOuFKx0UWk/Rg/Xd4Q7d0bMhA6PWT5R6T9Ip+Zosgnf35amsLbIyWHK1+qmcQw82btrCYaJ1DX3gbSEEj/aRtcUuK55bdO7k0KKsTT/M7lHW+AAh+Kf5on8a64+puZc17a5Cx3tqhhgafCXPhkDtOK7jpXkOoIsBQjhxvTiBaQBxGCEhubRE0FoYPRBN0In38PhdXx6v7+g4tqDIbRqPltjYX/9DbKn1cF8ynGZOzVlRk+97pLhaVAR8q1Ne7oqSQD+d++18I/SPT+88/pXaMTp48m+huzI8WW+IDlzui38RpfZDhQ7N3tlsJ3QyMPvGALqeynU97Zpin7qm2NyUZpOmcOOGiFwz4CQDBFNcEtz8fNHN7+8Y7azv6AFJ4jtBvoJsxPTZGJsmT4Ym2Tggn4iSHOdhEOUODN00QSBx8yxzUjfrkGkiZi1cooLtVnKTmu/Z4GiUG3BXYAo0tIkWbyJR4nJcEUzpMgUWNaHDiGt8TYQDxRxR73yWyJV24Xr+IBx+nYX7/nQ+HHq1gh/kugUrTtUmI9WTrdu6aUmzNDnQdetVnF1i7RL5sp2uFcNFCwQPQl/0IHyPyMGhscpOV21NnrZW0vG6lTwbZo1J8zByYsePchhBD/ip7zkxQi5wPAj93qFdImittSsV/aXX7Du+0PiSzYq7goyORfr9fWsRaY3hZLLj6mBlTZZaekBrZ3GX8ax+Pj3h9HjED1VBC2FI1ITx06mW8KGjWFNJkLXqK0rurlR3vHgQdvxMSdB9IHhS+qG0Hs4vxS7bFTmWpv7o6l48NFRz6T9miScpQKbUK6UJlkhWYoskKD9a0X77HaqL3aPFN5u+dM1gcxc1gV7ve7TZlUNjxL3hWc0bjzdeNufwCR+ofkG3zA/nBFvsmMPMvMdnURg82w1ahSEahrrOTrYvkt7jG4zIbKHJLLuY11ZXay7C/3bYkWZa787JrkjRk54VkrYxfZxrq7lSzQPRdOO0Mfaxb8ycKaOb8G336gNaQxVgCO6hfjQPGBN9RLnyJrH1KsKBioJgmDgeBsBFkednQeZ5Qe5loYMj10+iUFJTa7Li166rtTqkxF8xpAj78Tfk1StAS3jruGtDywYrXwBWBA9ZP56HlXHOZ8nik6Z+VtENc6zDAAVR5LtxnAeRh7LQg24Qphij0MlSbw5TVk0EvUHK82opPvkTXAElqyfl2KDEEEoEv9RA9Ev9Ae3pWZx6AlCbiXBtO1FU7hgpcyqhBoiedKyv6AiHnvlRlOW+4zs5QJ6PXCfCOQS+G6EQ+EneZyPTSV2zAO+puX+Vv8cEalil17WwppnuzOuUD/4IZphdpZ34zJ2HXsY38HM+FP91xtxU2tjbUbJjiYDIh34xDUVlghH7e2i+EJ9MzRdv2NMvb6zwbBBT9xqKhdHaJt5vG1Pa3zG9VyNQSvq34sM4Ndc8FY419jzSO7QR9ok1gufHmvabGr+0MGBq5xW8ToNBakR6L4Ap4h+t98ddcaI1sGj2rOkZi1Ha+Q59Ks+VUKJ4+PtI6QlB4HkhIrqP62VR7sM8yQMHeHkGHQiFlMa9kGq9qsRcKlnVR7umH2fz1GALUMhf1eRLU4p15SjwjqyoQ1Okgl/FNA43e/QRc42ncaWjd8KPNFb+lN439xVNESg2evQDXzHfCKs4/blJdtbjVEG+/PGGCxRrIB9x1d1XNsjHbcqPFrWeUr+fxhL9p+dQmALbdSlIUJwAL8CiKbieBqLr6Vtunn/XXeJT9YlMs53k3qR5MrkzGf4+TDWa4gzEyI98HISuD5GLs5Am3crSLAni/qZzJGStRcRvH+zOR8GevEd/ceI/zWVnpyxy5Z6vJOGQMLnq3DVF0zoPVfK4uV35x0+Mm9+bU+2ALIFGzCvrnbBS6PJo/Qbp+shxTT8dPU/u8HaRuN6tt1YsGlEHBscCXrvyGyL5rirP1Mm3id94oitS0sbBSYAXo02693cRG83FqEkpxPEK44tCv+gFX9lA9JX9uajPRMd4TRSM78tqX0/X+idGYRMFi55c9v2GOX4wWO1e5ofIR0kOnCT1yK7p5xg6EQxRClPs9q6xYylrLfex3GfbK9vr0X9Sd3OU0H2RLD2ymKlfVLeuWYLORyvf4c8FVcjpGm5W9HCx31iHkmyspxNzxaKVWg8ZkVw9Mgdaco4mP6zsgX7ZQo5uWUDhc+92gpdhIHoZCjDQuDtRTwph3id3rfPRPX/AZ/3w56Evj58kTk5mfRoEKIs8D8AchY6XhI6LxRR3QxlrzXgBWATpC73B/dnwi6Vzv3Hrpm4dZHK33t301p/rfW0aUr4Q7srqDpfn2iLbVVZ0KmVG2PdEleucwuob678llfXrf7CiZ6J++et/DCoZkwf4M5ki9N10qTAXc0yWSLuk8tWT2t5sPuC/AydLxUfsaaANmWdH2SeMHk4/4G1L8FzN71cIi/iSObFIKKYf8jr7hA7pwCX0GWwrke3EzW2476xtW/kHt4P90ACNqBQ2RbTX0gVbLBP0vhn1brS7mFpFBJfVwJ/kcv+BnJvT+xYgpgYRSpSfD31AbvfLUKXz8iwNsQud0Euy1At8x4lDkGahE6WhWCatZV83O/sd+4y2f5Yc2tbc0r6lx6XiQCYTsvLz6Vwx8yrRynB5uLFYS62HstplgnKH9uhfwnGts13wix76RNjP+Gc2Bzhx1+NFQK3eIazNMyAwU8MMN5iIeeBrstl1Kd97j2/Mrq3+9CTK4vJ98Gtwv/s6Edh3b31vbQT+vls7dquNtcdwZp2wPmCyCt6U+yM1VDxZvvxJK7rDOLums0+kFUSFZq2Ywe0eMQ0P5FBwWA6CgRWOX6bsiHo8NMWl/H6lhe09I7QTQtgbtToIlz4dpoyLnChIcObFaZ4AWgQo85w8dtMs8HAc9llOpaLWs8pJhHd3pWan9WBVy3ZnZOsv0QQrG6KFMU7MTibexNOjBs8Vg2gAbPpo8Q+z6IcJIP4nAasperbB5IgcSe5KfurHh7NV8KiHjNX64KYMAtn80ETdHXBNDv4ZAfBXLwS9N9X5JQJ3cAuvNqa+tr4taMwNVZN/QWxC/kKwnN60HXF7dKcXO+MkOO0t5VrYTS8jm4bYD+iR4vgDgfO6aQi/lKRRruP8N6KuKIdvOVqaQrngIh6ILuIUvmkcTm9ekkS1MhqppWn6aFhmNcz9hEC152Wpn4R+khIIR1mCExCFGPfq+FTOaiGtE8mLrKyr43YD1I31hyq8ZEvmUYs0fcDBKvb07rmmKvyOYC0LEyMLw2IKR32qio88cozP30HmArL/P9xT21F5aFN/VBm17dZdFoORHt7Guew4kBeHdHcmv/X3pbviI26Q/4bDPvPdKFMyJ8nfswJZRXphSMyTaOhfIUi6t050617tu/Et3j8SLTJ/bNPFTT00vjnTfbtiY9y6xa0X658JDbBJA6beGXbCG8Biz7tFbHLnJAEiU2gUnOGDQa7k4oCrR+tDscfMJW+a3JUR2KeGoM93OPx9WNEJpGmGcgf5Kc3rClwc4QjBPAhdgKOkv2EeCVktm+FQ7LOZKD7g3Y5jVPlA1FgyjOINco6S845a2dt2tgmRBPj6S6uMNmBEYajFs97dg4DhCNwyq5gmchn6a7A8LmSmHMjKohXnRBz+09M4oG3a7FcB1C68hfHaZoif27KJDWB3iMQq+dGVVHMfgW8quh7es8X0VNaItoZjC94dkrDqfSfaGO4wkNDG2Gxlz+V2HGGloTUZCqEGgRhq8H6PqpP1l+ITXa+0cNg7MgyV9bMregZRGnvHaFjVLrquK/uTOw13nCMdBzuyV9v81TZ5tc1ebf98fQS1rBHd9siMQA9kojG1kTTNDMzXjID8Kyavs9jeTaYrRUzWTVZelXuLCKGudBa6QwWzLTD0nuoePJN9q69SizRXklF1wyqNPjY2hi79baMrNAEJZIaUDzUDdrJ2mjAHoiXbO9K4ndWNXaPSMsCnLS0O1FmBzr9XbduAY3WnOOvXwZT69d8azb1u3BiaLYXnddgzcZBe6JKx4b1AE3ydj/XKFuyZeux/DM04tp3Qcr1bCG+9YRzqHAK8uLyBkQrfhPiH0DHAN2CAb8Ac38ACfANfFt/Ahm8bvv1x8C0aJ0WdQ4AXh2+xCt+EGInQNcA3aIBv0Bzf4AJ8g18W3+CGbxu+/XHwbZhCR4MALw3fmNOXFN+EAJZwEMBCTejiYZTa1G13HObOfx3Gd2HfgVEWum4OMI4gCNIwTiGKsROQKdwHtXPe1dJ3fenDZ7yB1wsHL5WlUuJp3y5zz711wbrHtGc/ognhKqEYrsIuUcUlTkaaLRp2+ThZ6sOnoypwfo7TIPaDJAPYJf+fpr4PUZSEXugmvfvLUMbLWfrutvT/GEv/j6W0eBEBtIvRzH2RaCbEIIViDNJrFg0mwhmLD5vAGP91AF956sUBcGKYBy5Z6rTuq+OnOPGdIEd+1tuYOO+msWyw9XI0Fpouw7t4jYMXucaFEIxQDMF4j6tPRUoGaXBL1vw4Wendg8Fid6I8BChyEU5ilGcI+WHuex72IHRRkPXBtB37tt639X7Nep/zqrhkwYNrNnX4Ehe8Jzjwh6ID/7uq/CemJSDFBX9sfpws+O7BYMG7bp4HDo5AnuYs6wxIyTElxTBN3SzKhRukln1b8NuCf6INflH4P1/x/q3jXnN37L3IFS/4eYein/f3ZUmjzsT1nrOfpgaJ9vehKcILc5TGcRDFKI78NMydPMxynHqQAEGQdKu95d4W+7bYX4o2T5Y6+eNcvNT9F7nUBb/lUPRb/u4zWRrUrc76ZlemHy3XogkYBksftyR2QklslyVxmCCBgmwADCF048hJcO5g5AQggJnjJyAKEh+FPgGIDhgUwv4wOPGauSXfob5we5darisx+b2YWkdMfrksvIKtut8OBIjrDby+AvAKbp3wYvAKXiR4Cf67YawHL6AFL2AGXmAYjYGzEDq5C33fzcMoiVEUJq4fJyHIohRHGvACG3ht4LWB1zx4hbcguBi8whcJXoJzbuTIzCqsuoHUuMLrC9hKG0v7fJiW1A1RDnIPAzeMgtB1EUixh1In9TwYoGxiammlbIewDQpelMUlugYMomurMTwJGAierJE79vQCY08vIPX0GmolKMpcB+ahDzH2nczLIxchz3WcLI+SMI+Hnl7PpISAbZFv+71kiQOH/FnXYf25ndU9wZkzAmNPL3GJM/+ryRLnvw6tJtgPyPTPo9RLAkwWBvST0MGu56I0Rag/eHDebYlvS3zz6Hoyjy6CWuGtH1+MWu6LRC3BPzWCMm8PIPH2mKJX/2RoOkEg86MoAbGLwpCWlQ5QGoahFyTIzZA/8fdgKNb8N7BP9+d9ckDFboO0DdJegNZCS59cvP7Bi1z/gkdnNPXoBGOPzunKb34eZvTCMY68zEU4daIMB9iJYy+EQQST3MF+OPTp3DSXbZm/pGUOnVvXv3iZwxe5zAWnzsiXGSOBzAwJlAbI4XqP4yQNUhT6eZD52HGj0CFrP/dzPwEgAeHU9Lgt+W3JvyijIwS3TnDxovde4qL3BcfOKJi6eYGJmxeQe3mNF3uWe3GQgTwju3wcEhUfJ0kQxH6UJoHrjJy8tpW+rfSXtLl71+jw/otc54I7ZxTOuEkAvY8XMPPxAhIfL4Sxl3kujlOy8ZPzfhbESZ5gghRulrqJ2k0CPKeP14YTG05IccI3dfsGL82dSokTgi9oFOlxAmhxApjhBBj5KQCURsCLvNTPQODEcezFYZTHvkP+JhgHFMI2nNhw4gXhRHjrXG4sCF8kTghul1Gs9lwCas8loPFcGrkypG7gZaHjQRSRUwTCIIYu9hLse0nuB1jlubRBwQYFL8uIEN0CcDEYPKvnkhIMBDfG2Bl7LsGx5xKUei7BUTCI4/ggzvzACzyQhgEO3Ch20tzBuR+m+dBzCT7PIofbIt/2e8kS98CtA9dNRffcaeh8wTkxdseeS3DsuQSlnktwlOchS4gqH3soyT0cpK4TRlGaZLSQdAwSMPRc2pb4tsRf1D7uBaaXAfCFOfqoF7ngnhiDyUU/nFz0Q/lFPxz596SOm6dxEmdB4OUgpOnnUIDcJEki30lHF/3bQt8W+kvay8Nr0sqCF7nMBX++WOrPB2X+fFDpzzdc716CMjf1UBj4Kc7DLIYZTEMMkIPDIIng1J9vW/Lbkn9BS953rlHf4Ytc8oILX+zJzHVQZqiDShPdcMljCGGIIs8FAPuRExClPvQyjKIsTHIYplPj3LbktyX/otR5372F7sWL3nuRi15w6Iv9qW8PnKZwgooUTsPl7gMv9zzPR+TE4JMFjnM3S8lSB7kDQJSm4xRO22LfFvtL2t/hNfu7/xKXeiC48cXBzLU91Lv3QDP3Hihx70lcL4hR7NNk84mH3SwgIBE4XuR4oRtk6hRO8Dndezac2HBCihOeaQAyfGHuPWqcENwA41CPE0CLE8AMJ4aX+TBHKKBKA/AinIMEwcx30jRwssT3w8TV4ATYcGLDiReEE/4tvFyfCF8kTghugHGkdu+BavceqHHvGR4paAxQ4ocpdHBIjhQhOU2gMCOrBwE3gbnSvWc7WmxQ8LLsCMa+fvCFufeowUDw9YtFX79/VAnp5venCuOT9f4jnQy8OwVUOFMau2Y0dk1pmnrvHTwoKYZJ4r3EjXAcodR3EYoBQCDwktDz3SgLctBnCVCKWwsplC8YgsSXR4g3fD2mFAkeLdoI8jvi+TAeitO9Ve8w/mj1WTXqG+tc01nJFir/LpYUI2tyM76yXlvtlzME+HNtHXFFTncnAhX1uTjRrIwMVer78iFFTBoBhOxM9wi6YMnk/4hP9OeUrFdU3B1WL9GgXqeq1CP78kwQo0JHWdaR0cNpwpG3LcGTZxm5+WNkTnE9y43ocQs6Cn+oJ1KGpGjXOzMGjujM+D2qT9b3ZZlZ35yrO7avEu5zRVOZTmDv8bzfP9oJI6w7qBv8OjwRZRj6wEF55MShF4HIzSFCyA2yKAUA9M5QAxFrQVpOPo2gV5k1gsk4tp/WgacJmsUrotlbRDQIlhc23RXkp9rKMdEx7s+Hu+qR4xmDrRNp+6O1K8uPFGR4a4kyQ6DwXNFf/okerKwqj0f6F3Qo9g0iUnCq92VJ5BTknRWdGOT3P1nfERQj6CbmnR0jHO0qq8K097IO7l49DazdLE6s9HtBtzESuI7tupYLqM8FhNciwY/lA1VS2aZIVjwZ0W+Lmkz4R+snMoNwxucUnQV/PZ8qJoc8yUuisFr/k067X3g6Yuv//nA+lVWBdv/PCFyMFlnDS10gywf7VNpp1yA74w2yi75BNmmQfWgbRJ7kJTmN2HQd2E1+ZLYURVRr3/Hrfwzx5Xi4MwI8XwA80bXzAzqdytL67hNV0dve+NCqA73G3GLeidHbmNK3je1PUMeOflRZ3ZRtXGWd8/3G+H5r+H5rHl8LiLNtuh4Ll5ZV/0CBjsx8XB3ISezxWN6R9Ul0vKwiQ0t+ag9ebQrtXmmjAHmPW6XNYh9k7cgkY4oa7Snrl3tMSFgObnbeaqGUYh6yOn224Z28gVGRprKjXDptwo01PYbekWbzYyRl3R+JgkgnqYWoQnKiH0KOeMP3kc4iuuOrJznhNRB7c0kx9U2VfDmqJN1AAKsFH459c2ex7KnqwYtbEJnc1rfkLNS9/Fs2obkig6z35+pYFUy5eFPuSrZaMNo9yeaDbWRnpCkdsPG1ZdOmkEd11xQ7pU2hI4Hp7qLcdnjn2qxz7eb7ZLvP0Nyg3I8CYT8Cqv2IxR1M1O4BbrO4gZGxobFFquiGOjnycOLkIHczHCQxCjwvC0CQel4IgBP1lapU0tZSz594N4q33ehr2Y2+OjiHluvekj/AXR/ONyh/cigPBSiHKihn0SUqEEfNQzV8M4pRlpkIoRwktIRw5DkwSKGPUph5yA0jnAVy4GZyNsjeIHvpbfEsUk+vinpYI4qqfxWsuRusPQusRQKseUpYq05FfaqVwNY9noE2TjP0tXfdJPCdCLgejIM4gGnkByhPya+Oh/1IAW5c0gZvG7wtsUGnqKIWih2tptZqpxeCXXALrzuSgw3sngXsYgHsfBXYvU/vMXXZUKFd3T9Xw11LNMoEkmAviX2IQjfO0xglOcroGRxHURI7CmWuFbUB3gZ4lxzBN0vwV2I6iG/d8KptB27bznNsO6EjbDuBatv5K35QKtgH/ky93VCCYUkKB6Mckf8DuRt5XorSMPVTF+eJE7sgc+VbDRWzbTPbNvMkTuYdkAH31r9Of/Y2IHsWIHMFIAtVQMZDclVQlrdP1WDGSYYJtlI3yEMQO2Hs5QCDwA+CNEJRiqI88GIohzMuaAO0DdCeGNDgrRtdBWj+BmjPAmhAADQxNuj9CVWn81E2dF0yIU4yQYKpV9gM5dgRTEV6dUiQQu6X9//6C6LHIu4N27RqgD1CgM2N4BpLp8e5ys+7joliBDo8SrCld5hFVk5g6v7Gwqh+pJOSzMmsgQ3uNXtOyID3vrQWzikm1l1szy+8BZj6UX44J9j6RHq6tNi6ZBLOh4L2H6IBR+eaedh2AUc0zrO+aXx7W2xMSdeQ+VdaRBg5J2cWqhvEk30Nh9KExjZQvD2W1Skvd0XZEby8i/tjuXskbcxk5+7hs+mJ+13z3HqfVuVuZ33HhuPLn7ld24GWE9MSiHCUMk2NDE/iePXa+v58sH5BjxTeGyCn8/HNh9fWe8wcvfky+fBQWt+cCToe6tWgHNn5mYA1YmungW7ycjs9EezmL+dQfnoo7YS/fAa8leimBXCgAnAoAHgsAXCatlkC2nv+8zAHnPBsGK/lJGHkw9TxMy9EcYwDFwURTkOcO4ics/sscIKE1YI5nwy54w25f3fI/a7C++K8v1RhbWENglvPXRXWNkhbDdKEoC3XkUDaj3xnHkNas2FLIY0+G95EIc/FQZSgNErSMI9hmIQ4if0QOy5OXHcCaVTCBmkbpD0vpP0RVE7oXYHNS72o/lUcMvyZDBF0nF83pF6I1EK0metKkHrsDdo2QeoIOng4AGsAUOQGCYqjwAsDBIMc5zCKwjz3MhejKViv6v65ofWG1htaK9E6uPX9S9EaXIrWG1YvxmohEssFEqz+nq18XA/ySbbtyJuHtqtC7Z5ilEDeScIkCkOYIOgkWepHSRQAzwOu7+doajro5Wz4veH3ht9Pjt/xrXuxtg03bfsLIrgQgOXCOQQHcwgOtAgORpaSIAp8P0hRlHqQpgNGMXQTiGOPqOKZo0ZwsCH4huAbgj81gnvOpKqROYJ7mwb+xfBbiDRzPQl+f8BoL0HuE/9Zitn02RCt4yDO3ZzgdZ6BMMCp42Vpknux63kZyKMJWlMJG05vOL3h9JPjNLh1waU47W93jk+KzUJgnOtLsPnvDBJrCTxX3RMpQjePh0aRzAc+dEDkBn4KYJhmyM89kMI8BG7K3DiGIN0I2XB6w+kNp58cpyGB6ktxOtgsIl8OtSMhrswNJKhNukmC2KT9KrQmj4alDHIcpglAsZdlEYiBG8bYDehFZJqD0Juq00TAhtIbSm8o/eQo7d86F6N0uGnTT4rLQpicG8os1eMIuc52LA2OGz4dFqQPoRcEjgcy14mCOM5gECR5nKIEJBihKUCvGxK3YfSG0as7J3vBpHytObRFG7Q9KbQJAXOuLGDuZzaPWUUtCb6xWc7LXalATiAZFurNMx+iCGUx9PwAuT5Ige+EcR54MIRhOEE6QdAGdxvcvVy4C6+4v4qvLbK1wd0s3AnhZa4YXvbmvirq055Muh+K/GS9QVVm/aVZf++GpSTSltS+I6R2SkjtZqmy+PxpvLABxzhuWMdyLfLp5JshIPO0WSuQ+AdWqo2Cx+keHT5yLPxUkJEvq5riH7La+iQWmWJWxsGMTe5u9H4kKJChx1rAyOyRHPqKlAAOmXS0RKtATj/eoh8/SpfwU0YD6GlyBDJ5y/0eV33Sg5rXG3ygtZXIGqNpDqz6iFMyZa2sqNPyTIu3CK27b9r0yvpA/pYXVX1qighOUY+szoJWMisfDlR4woR8pk39VCT01aUl4OGfniRjbPMx+eclZ/H6UD7IzuH979Mz+Hvy7LlSitGJUKQ7XEuNB8OHEutBS/Cl7AZ/iMRowHYiWmPJmRStNYDnJwnWvqZkJVTtQUI8IHCke5D4aQP/5R62RbCeejGr6IZh0CFOAj9wYZQ5YZAiWvM6i3PkpzhP3KS3Neg3i3XU8S+wKcXbprRtStumtG1Kyzel6BaGT7IpPfuGJIQ9Ale/IQH9hgQMN6ShazZGTgbSPEuQ76SREzhpEGAcJnEYpzCJoGRDGkrbNqJtI9o2og3CFRDuOre+dy2Euy8SwoVoSCBGQ/60p4g9qUVX0J/H9efEH4e5h30U5WlOK9s7kRO7YZBkMAuSNHQSDyV5h8uihGbE7KvB+IAfkrI62EPhRgAM1gRgBr8W632Cbb/+20P58Ou/WXlV7kdg3IMrL2qfkCG8qwjwZRb7hq4QNEPK4pDuzqQZFMB3mLzhHz9xaEX1o3VAn4o7boIXakL3a+/lFHb+ihCDwIVrO17jlSHm7niuuu+RECoHxFC578+7nfULneHTNZ6TZzab/eOFPnky1MJAGIPI8XCI3BziNCaaWB4ggis+8v0461b7RMxa6leGd0ValOfalrzCaOF7Ky78X/CfiQ5DPoaiPVmD5R6TxU21F1bdna5Vsv5fWa+trt1tet0bq8L1kUwLqgXRb7FYozoAaBK4kh+xRaY7gYYyp5oO0XxqzAuAI+u4I+8rK0Sf1Xuiod1QiBCQoTxuUPCUUOA6NCew59w63kqF338u6jO7Gn1Hdo+SFiyviMabNjXfiR5cVNY/DsV/ncnWndI7U/KcDAyZEn877IrD6nXfPzXtsY+8PfTfrD2s5PuJtsc+s/bYNW0Pfc7aY5esPTN3eFOsMSz9HgnhZUAML3t9nE3ji44mKXwVVONrOBnZ1U4HdDHu0cGWCV8B35beu31PNRhk1afz4cBSgvN4Z6utr3XDjlUWEYfxob4vT9YdHavqkZ9GcX0q9uWBnu96vYZlMk8K6kNARmtye39PD5dEUEFUqt1u5XPaH7s0LUes0CJnHQBu/eE1imLpPFGe2zetPWLqjcAqZPOzCd0//yfVn9/yCUPbODA3reec0BpIJB4KrDI2P2GQBtlUobf5DGbLdGL8kYMdaXubw9z+YOys4KkQUAjiAr4CAUf5cEVMkeXEHT8faH4pTF3HyRIYRCk55mWOG/kgy+PId5M48vrUCGMpq/ljLYRG94lVv68NGv/wmhzHxeDW9VbDxQ0TvyQmxkKIFAgUmDhKqCuCiSyp7vj5KOGXB+LQS5woBzGAcRTEEODMBzH5NQtyKSaumlz3idXFDRM3THRoXQTHuQQTl5rDLW2E6AaRV0KkEK0EwhFEfls+HHYlylrX3xFMZs3j1jlXBpVjmmH8ko/TFAc+iLw0jf3UdwKiROIgDwBRKFlmzR4ux5I2yPx9Q+bYKV7AF+jeAnAJvoBN53p2QBFihECk0LnGqbHFpSdNjz0hGOAIOW56YZhAjMI09iD53yDBYRT7Tuh7GKZStWvdNNkbiDwpiDTXCwthBN46wSUwAjcYeXYYEWJvQKyAkTbnpwJJ8v6xEkxammHKfSdATh5C34cpObihLArC2MkTFCAX4jyT4kkraYOUr1cv8W+d6BJA8TZAeXZAEQIpoKMAFB6//IalyJEhCo8qlqTQkRIN4yfiBMTQyeM0o9bxLE0THHtp4qY0sTAGUkzpRG2gstmHfj/2IRjcuv4lOOlvOPnsOCn490NXgZPvu/Wo0r3qAYUSKwWy4YnOS3GEMU6TMM9RFgBEw80AwVAH5nEmR0tB2IaXX/O5LroQXoINXp4dXgTfcwhG8PKhn5+19YE9GKKLMIFr+9QQTMBlSjVMa4hR6OUowG7k5BhAxwlTmAHXT9zECZnbXo8tU1kbtGyq2O9HFfOcW+BegpXhhpXPjpWCIz+ESqfWHqCUjq0DEqUyJtINnfxDD0YoCh1EXb7CDHlpGAHX8YPMd91cbl8XpW2Y+RWrY55768eXQMzSbH1Wmec1PtHvu7XJtn38fDP6F/DJv/635Jb+Rfjnf9tNfqkmv/y6eRs8PaIJbvpQ7aY/qAQzXOrTajDj50MPg9hxYQ7iIMIezIM4yKM0hTBH0CdLP3QVyLViVZgNsV6aFZ+muL/Ieym+Cq98DlTDfznX4NUGUOsDlOBFD1Ve9JMEzoNrQGkS5ynFML0pdqELgiQGcY4TGMV5jJ0I5tCjVay8QH7huG4y5w2otuPo0x9H/XEZKFPP0c2d/rnBMXAEd3o4dqeXp36mbZ1J+zx6PCzml+PIdf3MSQLXj9LYyXEMMtf1PJyFiTNU3Z4i3fMGiC9OcwtuvYtOmq57fabkDT2uRA/B0xyKnuaCBYvm1GGTmc0YAUeE6Wu3E94+cppRsPYc6ThiW0l7LXhIBacl6RKW19oQPvwVA7dfHyy8w3c0Gw1vfZuLomrX/Svr+x3+XCQsl3tmpef6VO6Lf9F07K/WXfptjxgvf+habsDu/YZJ9eamzpPEKTcpGX6gOMCW+eDKqk2ZTjHh9Yl2PP3bTyeKFbj6hOu1UzHQhGl8dQ/uqdrs6RQKUNsOuzhRiGDtmFn06iWhXfm+auULLuEw0q18V7fsJ/lr5VRD76s0dfMY4Cwh2kPmhXkUOamTeHkYYujB3qNTLmstneLpYWFxvpom9R5RGB5EJaGm6fNEdLD+0yI7LVMHyM9WWpJ24uyVZf2N0IjaRftdFh0dpkL4bdIZ+qL0vixrzDNhsYw2vCpFzaWSdmJUF7vHFn7qF4I9njuuuHU19my489S4I/iQw1iHO0CHO8AId4ZJSpMAZW4Q+kmUuV7qpGkawDxPHTcBwEUonccdsOHOHx534C3wL8Ydd8Od58AdwdXcc3S4A3W4A41wBw6TsyQeCkGeeE6eeo6DQjf0ibLjJnGSgCzA87gDN9z5w+NOcOu4F+MO2HDnOXBHcN32XB3ueDrc8YxwxxuVjE5RHGUBAR4PJDDKcsfzcIwBCugDOI873oY7f3jcCW/9y208cMOd58AdwafbAzrc8XW44xvhjj9MvITiJE5DkPhuACLsQg+SccZxkucwdv18Hnf8DXf+8LgT34LLccfbcOc5cEfwj/ZE/+hvMT5a39K+/FtKk+T/Qka8auocCeiTETI7o29tAaf7Zeidk6aOH8eRT6+dnSjHHg4DlKVhnuQxcnvvnI59vdzmjUC7pB9iP9APsXl93WcAkw/oI7aQRRtkFQcyX+mEZC0TyhjAb62+ttTrrihwd6lMr52a9dsnFO9qBdOyLqQ5BDLtBNEqLuQ9uEJ8/u/J+2v+FnrD2VZ+oYVfkppKwhZ+xGR6ndL75oKLVnjhfVdh+vqsu+1as+bvhYVe2iJdD4iM8EwRr/65uo4XmeRkVL64Yw/5E9PaBwAS1W2lhOfspp1OtG+Lu4K0wfrHgQhjc59lOBdu2fnKfk9LOtedI8DKYMju2Un/k4XImmOfu+awBOfCHXvzI2tO6zMyg4kUp2yKUzbDKZt9jc1xyjDzeeAILtWe6FI9nBjvycekPGl/C3/t7LLZ9Kp7glb5kj0e3arFKPXCMM8CSNA4ytzIBVmU0SIQThTHwo27TNZaKKmSbpQBeE18/KkeqlREval55Sp0IvoWtnha/LZ4Ot6RhdioZ5h72bCaWn2VGFrRHJ/YgvlPVvFqOKhsacoB1cIHenHP1S7qGJQJUPoJ31CY7moEikVnJmXcmxJdxW5noT36F25atitI0+s/rYSiw/IRG5xCZ5Bp5io4bRyVkOim9IGO6fcYE+Xy9Y5u57yURIUxwSMyKemiIcC7MpI2HkpI9E+is8vOaUtsRFvSFJGgLcn6lsyAqAKnDOCT/FL/dqCIQ91AGJgK7t+e6P7NvRtZB/6I0bB0Dvc9ZJ903z7jEDp5MkDPPECh62de4jrYCb0gDzE5vjpOBIMEuSjp0HMiZi3glAj+4jolq5RF3y6okGSG4+pwY+Xn05mWXCtSizWVa328qf3hssrPO+uuQhlDpLYOTrl7vCMg1s4Oi86OTstsd0NeU5C0fEdbX9OiOQzdTji97xTG5ExAHNd1B+tNIR7eJJ6NlINkRv1FM3YMTjCFyPQjOUK/AEVzT49bpwodZbA4ejjFxLctwXNXuv0agB3eDlzZV9GTP5CldnwU8f0bIj6ryiOfq92398exp9KRT6wpIsAnTVNs2pRuqOxOz5iB9il+GirFruCp7ome6u/LHSLa0mNNULDTiafV0GpKZteMrNtSxoXR5oiGxkknDxMQYBTmEQBR5jk4wnGaOzn0Eh/3pdPnJK7m1j77jmezTwqqJQGbqrb+0/pLWX60DiXZBSqyFKtXVj9gbcWpG14jkQA3O+nzSmutoZH+7SOF9H5jYVD/SJ4eUevmOjJHst9Z8TXuSN84y76ynkTR/aPEA339uO47A/vxM9V+DFzByd4Tnez/dqRaFFlAxxnYY0QUFI5K0FOTDCDPcX0nJliXxnGAMs9PgRvGmQMD38u9OO51W7W8tQCvnHmDEdwFa1pQKQqJdV2tomZK6BFX9LRttU3sjZds4GjzbyzygbviX20t7GRHwJIf0nlJ76Qih/SCAuoDenxl/USLXx/Kk/XPM62STfbP3uW/k8pfRpRYXjsbEUWa7ORWXpy6FnBtvMVcWtuyJh+DuNn2C6Gi5OYG2G7QeuaubXk8WK8fMK3d2dZabA0sjer/zZk03Sad/jOqWIe/Jw+YzfmJ9CpyaOYNaostNlOYK1XITpoG2Z94g+y6adCMdjWzlE3VLMGx3xMd+38hg0DGmZyZ3twjapp9TXbaH8gJ4l7MUZOyZ11M3dQEqSIYXf1ikOPAjWhy1SANUj+BbkCrkrkoA2l/O6OSthbQPJCPpoujtps3UUvGHftoQ6QJ11Ss7kurRo+1RRYNYte0ZH7TSrNWQsb/cPef1i90LjMjejdavOHcrnjTKVJ8EvZXKxSAeG/w0zY7lTd3g01Ba8HUyGtRN1GLdlPrtnnTq+fWqtqRmuoe4pOp1tFO6+fRm76u2HBI/liuf+v7t26wLpD/JEzDZshQh0Rsg+vn/tMgt7AQprDALo462JiBaiUQmgK1EAnhiZEQ36P6npoDusSufJuTVMrNOWWfbLWZaMqiuXqGcTSmnONaWJZLNUTkeM0ITKtpSqv6UZuhqKLR+diQ/MlimmJ3aU7+uz4XJ346bfSy1rxCb8n3qPqITwxY0f6ImL2f2kGpTkc6BNet5kKPts3Jtg0P7xx62CLrnIX2ZYWb4/VTuejcXA7cvxeLpgTtXM9y4a1D02QPHI7ka/GJI1k7G+L7855MoscWAegk+2ZX3lnvypraWV43V4U3bF69pXPjqUyINW9JCxgUIxPSEvtIW2K3d5YMRukcnYHNpke7IPb3Su126HAUqGBUCOzwHS2MatFz7OioAEBR243yJIJhnHsh9AI3hDlyssxzQJYhGMKgr7qrgr11dN0nA9V4A9UNVC8HVe/WXxNUN0B9YkAVIlZ8V6+XjtMLKXRMaa6hOdph4qEoyqHneDAJkJ+nSU7/100hBCBPfAdoIHbdLEQb0G5A+xKBNhqnFTcG2qtTMW1AewHQCiE6vhii8/25OhQsj5had21JVNqrimCouPqh78UQZ36euRgDHIQu+ccjumyG07S/EVJJWw1RlfK/OKa+q8p9eeqvs+k1dmNs7dK8Nbm6rCO7526usrGlGrdX1ncovecYPcTOrMhzTJcbEflYnk/cZYnadxNM79wJ3taETHSsJ80pKRRbBWnDpyI70+RxTSzKKHzo2S25v2NIBdByvVvHv/W8lcyf/+e5SD/uHtk9FfWG+4FOKvsvje39bZFWJZsznR99e821MjL+F28Hu57KCECyy8X2DsDet+3oHeiblTCDjEqwMTWFCkFDvhg09H1xYl5+PzzuZ7CQE9l3j3slGipJhngYRLGXxRGGHvJjB0cOcjMnzWAWZmnk9r7zanmrIeLMG0wwETgrYuJbGmM08KL/VJB/lRUBssZX6L44MQwk7SUwlDIvzkcCTJg7+TSf0/G3HjzUf15wdGfOZfw+gLvl3xA9tP5IcJCD50m4E6GBR51rKkVGMq8IH0HRPz3jDbhnu7Hl0sRUg1wN6/gUvj3vTsUeZwVqFSu2X/yFlril7gZMkXrDowCeTKHad43org+ou/iONoLedlMtym5CEeYwQ70kTVFDiLLxB4ULCuvfrb+XSUl0uyYCKeuOq/3xocuHW9h21VDzpmTdufHYUY9uUsyYxrcphIsqmkPG05jxWuyYf8sK+LH0luVHFhhj3e2K/bHG1P2PQgXzJGd/Yy1tvMSJQp4X1Jua3VfvdsUdJnDyynpNwIHAQ3dZ3SbMbZ106LZJXcRZfA46FLhuLrmJxPNx7QPnxSrRV+BexyGOJg0fp8EyXHhf5u5kh/HH9t1NuE2nWv1IJrL9gc6Wbyo6S57s8Ekb0a7uJtKm06uo46vNohoS2oi5pL+F3faq/rgZquBSiKPx/Xm4lKlZ86gyySI+Sz2sZOU5SQjiIHN9N45DMsliHIeeh5zUoQWa+6TiGlxbR/NajJ7uE2tfG3p+legZ3HrRk6HnhpwrIec0HhEIcSz+oOLCT6qCC8VsvYVCWW4BoQQG5CQaey5MQhwEWZ5lKMp9N0y8MHFFZHyCagtPrkduSLghoX8LnFt/FT1y/VuMDQmHOiQQQll8MZTlbUFDB3fWh8djyfwoH9WK5J7T2qeOVqVLaimHTucwzQOYBb7nZpDgZeZhP4a+Q/7JQpj0+ca0YtcCUIMXfXFt8i03m+GBh/gk8VhnSxMjwPnX3FjC5/C7Yi6qAVJeA4ddHJclzUhWkVmEPlvJOaF3zW0GCyo/35GRm5r2Xr2kBBZfl1+3ZwOfXmzAeODpeJV5kn0QQaQ9m1ZvyzKjezHHSBauQyOr2DT69lyeysP6qdFObQtYFrQ9aYFd5g1Asvgc6tbAonKypgUzQNmQzICOoX0SCJE4vhiJ4zke75Q3XRZCAR7JU97gVHzKAVHybACBMHcS4NP45Rgmbuj4RH30YvKX2At85KIOAiWC1gI9qWgjVdFdEeZoQCWHtF1Zn6b3FtRv5XDgdbhYool7TLQh6veC67qbsJSfjhb9nt51Ruj8Z7xp8MlqpjcN0CF/Vo+14wmvaIzGh3t0+EiXM5+zfZqvp83sdWhS6tEgjRNtAl3PfGL1qb202bxkC8Z0+QrxGb4Yn4HflPs9rtJxIKKwhnHakNg12k3UGunToSoTp8gLPejETpplKSIrGWPXiTDCcRCmfreOpaLWWsm98GGAo+FyBmsu55JFvt2zA+DB6oeAhko2Bz5stWc6doYjexG7qWKeG4hm1DrS8MtO1RGdOP6TbGKPLIaXOrcdyLedOBHpu7Qoz3UPHCzHIvNkY0InKRHoldyBAYdqnqx8PWmKFrRcn3cLwK0PVkILmiaIXTl+94hZ7tr/Ofzs96zXuUPNE+Q3ucMnftmIyevt8sAxYbgiajp1+etnUEK+IE1xQghACGQBCDzAXxV9wGN9R+4K02cji3kU4dgFQZZgD0EvdUAaxch1XT/38jyeeMMKgtZ2gh2I/uK48KYpiEd358997hHuV8gSUbGLcXLMKWkSKBYZSzGEHWgSjIhqQHRVxGGkcaKtGi+vFijKh0OnPxBZZKnT++9XT76K/xgnEgJMEfVeBcMwgXUcJt60qcj+jk/kiMqVmm576E8njYnnqUw4bUY00kGkGY1iw9QYVhi0O6IIy0jhNCEBBlOYEtz6A9Gt/y9kruOqIJ1wKudcTncNnV1TOpXJZpZq6NKfZCgDoQ/cJExjclpxk8CNsjwHOXKg2+s4syLXgjPNSybABp4Y2D50CZUbVGKO98Uh3Z0zutkyGWhHjiuHs3VAn4o7nkOMn2cOHykUEtk0kQhVnFo3rTP5O81pWrOqxYQY7WgOVFEXerVlVXoSfBt65z9HMiLJXZbggh6ILujfYOqx/N0n5knGcthJbRUJJbMxI+M54SRGizmiYYGsPArTLPD9EOA4ST2MHTdOU3LocdPQz/ucbHMSV8vJdqYqoa35Qr3tdtVc7/e4bgy3PF9R116ixeQUJFg2NbtMydKmqY4/U+2Gpunb0WyZQ+2osYa2Btlt2a+67EO27AOi09y6Vy/793i3a05adCJaH2gS01MXRcBuor474OquyTfZ1qZYS5+pyfuboxZ9v33i728THbE5h9n7+RKpBbOfXJGZxYSL0gQDwYc8EH3Iuxrx78rqlJe7ohxHME5dQrsy7seWR+GqOXUMXcI6dg815r0W3LQvMjrIrVkKnek71OzOTK1ds7qDV2d8fSC6C8usRdWZYs+ytLwiZ2wCcFSnOZYnZs5lQTJk1fBbrbL6KFxk1aeqoHaim0FKpCYBPIXGB3KMOFYlRUj2qPFmZocGfpRs3NtP+EhOEyXN9cauqNnbLg29MXYTIL3Oe2VLN/x78nfgW0JIs4x4cODvsASivojz7A9iTJD1FtXloXoUWtc7QXRH6Kc6O4/Ck3hTBNzqXSHaY/TMttN2tN19ShvNqfeJiFQHayEMIfDmN563iBzKJidrCRrvCaHCs3aeeqBQg8RxMxxgj5z4XexBH+ZuEIWBEyMUhELlx3mZa6nUT7/rxNuus+06264j3XUg+fO0u86243yhHUeI5Aj8+R3nXVX+k9q83fn95sjJbNdgt+loh5VTXAyRGzoZzJ0gC90AeJ6fY2q/iWMI/bm9ppO47TTbTrPtNL/3nSa89fzVdprVnbq3ncZ8p4FCrEsQmO00wGynAQt2GjAs/RrDIM4Rzv3EQ44fuinNXxMCD4KM/L9jstOAbafZdpptp/md7zQuuHXi1XYasO00z7jTCJFFQWi200CznQYu2GngMP4yDSIAkzjPcYLiMPUDhILcIxuQ68TYz012GrjtNNtOs+00v/edxrt1wGo7Ddx2mmfcaYSwrCAy22k8s53GW7DTeMPALTf309RL48yFKA8TstNkOQqTMI28LMWxyU7jbTvNttNsO83vfacJbj1ntZ3G23aaZ9xphAjCIDbbaXyzncZfsNP4Q58AmEbYjTLfDzLkeA7OA5QCGIHMI/tN7JnsNP6202w7zbbT/M53GuDcgvXONP620zzjTiPEoIaO2U4TmO00wYKdJhje07iRBz1EvQFQ7MdJBnOIndjxMfABcIzONMG202w7zbbT/N53GvfWd1fbaYJtp3nGnUYIIw5ds50mNNtpwgU7TTjYaZLE9X0QekHkx2EQ4DzB0I2zMHWQG4cRNtlpwm2n2Xaabaf5ve803ppezuG20zzjTiPEpodgmGe5m21vdmcCFBULex1mXG4nrZ1ykm5zkTwbJdcJ49DNUxA7WQijHKWIbCmu46RpmKHQE5MujwWtmHl5LJpFyZpk2AlerZku9Kec5Y8YZ9dCXTG0IdC3raapdmjqLRqFTOkZeP9C1tW7SigDdMP3jGYd/r3rj35Hqs8V3j3SYpWoqQhk4UfSJ+iUkv5YthMQkD0ffzuUpIf5Wn3qzKH3uB07WTD76OkUUqfdQqsltTP+S0Os69hOYLGaHytUNmJZaH9uc6r90mQneX9qkrm926FHrlTwSmjtcn/dTSoW5/7Tfk2EpAWl7DbPm00zplDArEmbWBp0MiEfecQ7r4rWrs9uovM4dpZiYQYqZfBjmMIHCiHuoRjiTstp1kQk7SiebHdavaMhsdt8vOPoQhXB0CHK9aIo93Mvg3megdgFeewDJ0kQQMBz+wwdKmmrAaRS/pcGyB/K6g43GQLPZKR45rEdRpWQJ/mGACN9P5/TRHRJlhvPncyzH/cZfG6EwmY9YHZZlNtCvy1AIiLycGhKrNK/EGEVOtyxfPg02w9NAVSvApQCEH1DhG5ZP2YwMr6F3trJzN6fyYpAu2ki+vWhcFpEl716mn7eCPFUyGIKe0KAdSgGWL9Fd+hf9Gz6hq9GSar5hsJu1uskwbz8+QDzgtBxcQoQSsIgBT50HC8LcOaHvp/mcR70aeXlwlZLJq/8li+Kdx+GwNQ8aHGJlq7NiprulayiOBlNui+1VFNNkJVhfmX9pfiIGQPekeV4oIf+pnAkyybf4mQPfDfMYDBMg0ZfjlFdEIUxISiI9+UnwljkVnHiNdEPGGc4e3qtkX4UQ/cNCSH5E62EhG1pZoZ6H4iq2K77Jg9SiwdEZ3vcPVVSR55PFnP8o7phuxybZEj7QSP0KR27RjcfM1NWXAqOQixw6OvBkejYdEXqMdKuW8JZqGzIhs6MiZuHGQhjJ/By5OZJTDRE4DgOjnGShokOMRuZG3C+AOD88+rIaaRGbgjaIyittLkh6JMhqCfEuIbBAEG5efYHykH+/QZV1FIvVnZrSOyGxBZIOGqqCIZ5L90ojiIPQT/CXhx5aZQTLTN2g9iJc9/r8VIlbT2k5PLvGvlpJ/9ZwLJpjtU0pz/00qPP1Dp2j+gtUoUxAVKaDZPO61YEgdXyTPODP9wXtLYbeXHCEmSSVf7vhIqaE7OujkCDhWmbXDzjhcrbRJqMTvgWIu44rknetfUTbXm+w5+LZEfAly20PQXsdQ/nMn20HT6zEgE94JDDq7/24fVHslj/RYaXbDntuvoLGxOhoAi9SXyqE+x99/7uroPPCaGaCHn/LMwolrIpzggRjqEY4fhXTKZQv7E3E/sXOlE+4M8nAW4OhJI2M2M3s+PDrPTpAGjiLABOlqdRlrsJ9pPYDxA53ToB8lLkZ2EHNFJRa6GMVDgHf5rE/5nApuCKDtOyEHk9Naf0g9IoUfyemzSSQQAzfLwiGnV7E/L6J+uO5kFFtJAQz7U7MPyR9tRHgjf1AR2Pj/0ViQgcM5chra3vTy/72uOr1MI89xbE14LiNwSNPlrf0oIS/F6jKlN2Hca1r65aATfmrax9JfTldkZe3lxg8Je3WldXo4DNW73WJUcbUywUYvBCMQbv75gQnyt6H/S3Q3MD3twkCzjYU9mEyqZUdk/F0XCGZliGwAtD6OCcaF+xF4Rp4gcgRNgFMIJE/+qzicwIXAsZP5JTz47oJ2Smdu9q/XYGxa6+KDy+tvrmCJDYl0MbnB7J0bHalShrMa85h1LVDJ1o8RRab4Aakwk5PVXWXLf6H7+eHScP+PdbM9NApwXmJVHbeDkietAtDrQuYHOzgtoyTqweQk0VlBrjl6Z/efDWD6+FmtfW97S4Dd2mvkP1o/ULehx6otAyjX9pbvTb+Sz2+9rl3ZCdkwaxm1QyWR7tB/Q49EehVRtbd5Ru0gsLQV/sbW7JmwKTELIViiFbv5RlX9dqfM3wUJZ9BamhUjZ9NPSRz6Hv5XHmhhlMIgI9OMzyBKVOAqIYJX2G1qmc1QodHMi+QBUwyRu+NNSwRPdN4TVWMq226KzpNC9m2KLlvvl197CGd3O5ymo2jyqi0PvYQ3MI/FLKk9CffyBfwq9U+wuf4D73G4xIc6i+B7+1RHwZlgt8siNx0r7fhtlg9UuqPcoBdwoZ7XWAKdwKcUuRMwu304sL5dtnwFd2XREEWUROwC50IAAQJTjFKUy9CDhJmkW5M4PBK99UbFD8FFC8ge/vG3x959YJN/BdH3yFUJ7IHYBve8Z7R2tnS9Td9tRPr+mmGq/k6fC+I/I95GMnwSBOiaJLi5U7SRJHWYyD0BMBVyJqvQJfR1wxBybFa57FDIn29C7rTnKwpW2T3RY3N8XsTuKRLGHy35Nb5lfWtw01Q/RkV97xC2SLzMKSHo9TdiCnPoRZxolYQdXezkltlIczpfpi5seLLoF/LxCuhjtw6zqr+FczG+N3ZMKXj5iMHytUzfwF3rdTHwu2RzJxbNLSIzNXr4x+zLWal2dum8PO+vaONMeu++b01kixOXow7Ga8TSGruQG23y/DQyHgJAI6PJzqo3Nt6NBxtqGDMJSMICIOgZeHoR+hPAeujxKIQ4+oqAQoO5Cck7hh5deAlU/ieP37x0k4KKO14eQXw0khDCWCI5xk2GD9TMSWc4rjJ0qg1hzFx8MqI5nvpDlIwwC5OdEg8yjJoE9gMkQOUSFDieooyloLD1XSvzwMipfUYq/rrklYvVgaVZcWB8xAzWKfYtEOoaCKPx9pPWxyDHzFfRGKk8Xiux93RX1/Q3CRxgRkVkKW311Vngn2MQEcBlEjjeIoeTFbjzcjzxgW1JcXpxN9HStqS8jOO2yl92WR8oYzT5nG8l+/2uwFm73AYGPwB9lG1rAXsNuyn4uE3ytyb6XmfqzZF77pl8FgGT6N/YBdln2i7bHL5jq/zTHRbAz9spxClMqeIEVf001BCNKJvEFsYnpP2pXSS+Cu0z60GDAtvYsE+u6jWsxQl901ZRuX3JXz3Z/3yfUhijMtun6riC7YKsQmTbN/dFsCWSS4Otw0EY1E1UXHIybjQ2C6yyLCDbjNFX/j3dg5THJrL/cxZ/f7vX/VP8/0Vpo5AFj0uvaE+2DwhAik2jqZUyXdGHhMI9kASoITlfWxIIurzC0GGn96tiQgMzf3fnzrhoPsE6az/0mqur4WrJzN/f97giPU6ZRj2DdkBLjbJe3pd0JWljdNVpb1bv97g2dz8183TeHwRaDsxDwwmT+mkCDGbhLEzCCX2Mnthb/ddrI+AUWsgjQhtCbyVZD2Fh/OKvja82eDpEYTgmGAdZR6QZb4Hkr8PEsS1/EQSlMnTUCQeRESAqxHYtaLrH5S2Io32HpSe4BKg1WiFrx1nVvgPx1qbYj1xRDLF0JZokCFWD9ixOyX0xQRQqPuGZGiBLWacmjCdGEWZ7HrZAmEoeuDMMVJnMcAgdDxw0wOZgN5G6ptqNarZwtxDQwC567ANXfDtefFNSF0JgpVuEaDZaxvdmX6UQVq1ExvJw2FGtF6slGYHnSyLEJ+jvIwBTFIfS+J4zQCAAQpS1EmgbNe2IZlfxgsMz5pLkQ0/9YLVkE0sCHa8yKaEAATRSpEe52QpaACM9Q8VOMYoxi5m/tRjFMXBzDGGTlaxonn+R4IfOqII5SZmsrZ0GvTxK6Fr/DW8VaBL7jB1/PClxAmE8Uq+GrDGz+whwoYa8MQTw2RGs4GlEMP7hS5YYJTkKWe66AgjVDkIBdGaeBABFM5rA3kbfC2KWeXWc+iWy9aBdS8DdSeF9SEYJTY0YCaBs5MgGwAYVkekHmVO4HrhLEbgzzDgZuGoR8EwEuDeQjbwGsDrwuNZMC5he4q8OVv8PW88CWEc8SuEr7aBP1KABMIZiCspRqAmOd5SYh8B0Qx+RdEboAx8mk0XRLmTqQCsVbWBmMbjF2kgwFw665zgxlsIPa8ICbEYMRAC2LWWzYuOiiz9w2ZAaBx2qHVLI5jLyHnyTQisOY5cRb6eZYmaZj7keP4GljjEjdw2+xnFytpcJBE+Qp8u7qi0YZv1+GbEDsRQxW+0USmRLgK19LusRrPGpphmTw3z700d7LAh04WxnmYBSHBs5yAWRZHCn+MRtKGX5tydply5t968SrgFW3K2fOCl+DjH4s+/jxf4ZtyT0alqMkcn/iW8aSCaUcxdixTPB/6X/iI6FsQJNh38tSP3BQiH2HoJk6MfdSnSVYIWwvBlOJNsCtcEbvaZBZNGGyCyUzhyYlRThO1CPlFuxpsD2LYCkuQx8au/5pxvvhXZIVae5TxWmysMOgh3Z3J3/fn3ak4EnzDn9PixGPGEGHC3esodZdEmf6FNWHHCoReUsVz1dgt3l2sp2SRT5PH07Cnb3iHv86/RD22P0QIl8vKeLq39F7l+myrJY0C/6mtTkg/qA3WYgPHchHywXuahKv0/XYhvL8LzurfzyeYYc5VFUoaxmj5QkBDLAY0/IJJP5L1++6+PHWRazMxWg+c3j5S+jb5jD5Gy5RtHKPVNM9mzWtjlptWXR3JK2nT9UgeXVcbhDVmUuqtUURZSCybVURDYPU4uwyrJa0C8onS8sRdVAwvQNfiPk+2ukdFh/NVSbVNljm/PN/dC5zWPfkaVvC5jeklmkf6sdE1qVp6ItsF6VvMyt5ZjDQpP1tt3tM22b2Ygv+VtW7gVtpXXLh4J+iKls4VP651lY9r6zsyQOlp2wlW3Qnisc+QKVg9SUidJH/YoB1dMYN3ZKmyAjtr59GVZBAb4GlXzuDYtMAgca4MYLXHhMBRbDOBEIUSB5ptRrOrjG0cMprhFVTsJNBBmUdOK0GS5KEDPXJeCHw3AV6EhAQRUuBfKT3Ek2wq8bapqDaVp95Tts3kq9hMgDe2o6+6mWwbycobiRD2E4e688r4KlB62pBeBKoph9eAQeKRzQWFMAmjIPchcPIocr00yzKYZ2h2a1n3EnDbYF7+BnNJlPa2qfwON5Xw1oerbCrutZez26ZisKkIkVexGHlFJtMnsvpf3+FDyoo9ZtMjSsbAi9vUaXXEbHxMURGM/ElQDjKI0hDA0M+DMPByALwshlngOKh3k1NJW2sbObFPthH75OELvvxegi3hcylc88yafFRYFs6y/2uTbb67I81wXhzIf+0e6Y3qr/+GkvITtv7dSvBjech+/Tchaf2JZrEnE5OQ8htdivyTMrnytHnPfmnxu83a2aIldG/9tarZ9sk726TtwhXkO5aH9S27oDmdKo4UTCP4UJ3r00NZnYiCsXJ6tj5/Z5vGXTDWUweBmgwStfx3LWKXAKe+RTM4qMQWQ/N/IARtxWLQ1v8oaPnTg/U/DkRAPcqAL6DfR/Z8lKG+gz7p05H/SQayJMrTDOIgSVwce3HmOGns5FmA0z7vu1TUakXW+Nfaipd8aeD77hPp+YKh3Z/JXKXOIERNLpmyyptoEaWUeZkk57o4EE27SaTZtHyCXOTRpIAtXS7UdaQpPGtTPwOuVXcb9a4tSEmoyZQlswd9bquKk1c2JXMrTF6StsXdGETTcoZ0Dv6ZUBEN/UDaXlyWoG1VqPw6tU3oDcLNVqkG/v6c9LWMvyk/99mO/3Eo/us8qYnxLa6Lu8NTlQWvhdbYCW1Ne216Zq0ZrVg7Y62ZwU05MJmCZh8UFjpiUNiHgiyltkNQJeYcISj92LWOP+IQOX4w1ArD3E8zDxOtNABu7ichduIkdQhQhiAT0ouMpawFjORIfDjZjWplC28xA8VoZW2QAuOJTEeu6YndzRIHs4015RUOm6TE1gP36WpmEkcn9lUsbevA/4Vod3VJi9tae5wVqMlxPEhQfMNcWCjupe25ilc0oq/cFxQrd7z4UYPA3KRBW8tedT7S7NzULYY3gbK1iqtQlvLpy0/eLPM6BjZwqOOeT9BmLVWtgQzyfcNhZVUnP9DKoLTeVKOvfSjSj3hFX7sGYDhQEIXLHs50VmiSVie16UbbaGgn3oYZWJksZlNE8QVEcRWI8he2cOSQsmueTTGFPRlGxoc4DjwHOVkWkvNm6njQAwjSMmeJ43tICipMzIYqG6o8CaoEt+BqVBnhwWiNGq3CQFiFYqDRO0yw6FRWWH0OOmICFZREdRRSEQyXZh55IQBh7EdkIkPXdZ0o9l0UhiFwMehz8aikrbVC1fKfY4Gq+n9UN4A0NSdHoYJZMekawI/0VEOOdswuxJds61HdXA8Qyew7/1z3NQ2vWsHtMatdyG1NGVYIpvX7+4QVK3lP3ROP5fG8Q7xxbaO2OgerHZs46ni3Dk3Ova4uw1SV7w536I4pMs1k5WYnajzEXUnBxsj+VAoN01dw05BuDXNrE7W3465MYFtIY0arUUKXqXYTCrgqBji9JcNCX2H946cpou6bh/a5GGPp9NEARUMcxk6MHEi0GT+PnDRKUOQ6buoncZJkvb/PVM5a+CmT/BzIOe3h/tKJ24QYKJK1yACqaQ2NPyJqD7uwqj8WRAF+RW2qDN8IQfqR2YWyCdaJAGyPqr9OobdBthurxtWnIsXkv8gSEfQVajlCstAq9u52lRFcf3YTPMGndHeuFWED46dTNJzW4qGD94YzPSNCBoMs4KsYlpht/tviriDtaC7Wfj0Dx41rctzj84CPe2NnojFZT2RVYkb5jDelvfCq7XY22sWhty+RSTYDkBI8MoXGSIBGMXzqRzLbH60fSyINPdbWj7wERYuN9/Spfd88tZsCFRwcJc+G5QRQgiHI4wAmaRBkMMgDN0z92E8RyN28j/iUCFoLHqWivzQ+/kIPcuTEVD2WB2yxJlltk7ixk07VA36gAYBv7mlR6z2ik7Op88bKU9U4fdKj1R/Kwn0z7+nygOjdmNrZpX+u9ncheEKU7+dAVGA5MXMMideuW03BoQlX6jZ38vwfNb+x7kCEbpvv0W59pbPz8GDlQHlEUhfDQ57T2yWqdXYLnl5w1rQlM6AqwzFTVI0FVBWDmt7TtWj9u/U+LezvC4v6qBEs4MrGRAFlC5c3lZDnhX0UyMcqqQnx+KiPojjNEQqAhzyUhnEcO26eRn4SOaCHYRPJHS7zDrq8pit719x7TEA6XtufkJ/uccUc1YRKgCec3h/KXXn3yI10h4IqkaT5tEShlRcMmq2HipxvKvqAjT6Re3+uyRA3hrL9Ob236Hnp1dOWj6Kx2mRi55+3YoK/x/tWaDuuDTxW0iu89dZSi9kH0bRAXDH+uSBfV1bMA/b1gSdz+FDsmQ3qHb1k54rJX2gFTdIdP/HKwivD+altE9eQPzVtoo8Qb5NNb/NtmoOAtonfxe54mzj8zwG7EVQaIn3oCEgvxhW9Ic0hi/pI4GNPHfda+3QL7uJzW3jO0Vz6dADfUY5wGqMsd+IQhijNIpxnKAuRm6ZJEMIOvqWi1tKjU1F42gn/8iBND6uSDtdVnGXA3h3w61NVDEwG9A6w9wknL+GnMUv8bHYlg58j2md8odEhBLx13BUuNMZqHvzW4vpL77Lb5Tz7sXVwJ71Luv2p9DtI1ixbvb3PbpfRrPOxJ9jaTELF+j8RXfx8nCT6MV7zrrDmxRAQz/H45TFTiN+UhI9pAMKyJyT8bpdpqqlIwle+imB4hA5cL0tgFrgx9PMsB16chRkGOTk/gyzKu8WvkrbW+lfLN4EA1131NN0kD1GNggYL+A3KPT2d1fRQjnbcrsjuShoaghYnbjzMCrJB1ax+dGlRD0v+M303y7lU3xeH53c327S3F6S9sSO4G9yC6Nbznv+yOQQCiokxB9+fq0PB0mDxK8+f6nJPpkGRTk+oeUvaXM8ULen4dKojHKAbjPw8wl6G0jiPPIxCAKMoD/wgAY4DWBlt/pk6qWuhnP49XxztXltdo/j98cTjlunp9el8OLQ3FrSFBM92uNF46j/xi+Sk3GXcZaOL0CFbffeRFot7K1LqSXv6M9eD2rPw+E67CV7o23YsMDWos7udstxb/Hqw3mIWrkUR6N+67gtAESigiOi//0tZZjRTHJ18BhXWH3ryBQXWDbkmuXsEtkkmumujYGeatAJORItxQvSlTyua2im7ofetlZ1XBT5ku8cbjg79KajBjA5K2DmIOvc3q57qTwk5hw8dXtovZ4kpiUChJ4Y2r13xETeZJrtX3KOatBQfLII5RXrekQVGmsLRgkcKDC9v+a3wDW3BPzG7xKWv7Dxo2AVeikgPfUKnyY3tHh0OuCIsu1350Li+sLRwzUnnYJWHHdHfLG4YSJseOFVn1j1EVm3RjJp5RRCNwiE1/pF2XxqNNXMQnKn5/tVBG7Rd33KdW9+7dYaZ0w3B5Emy60hOwV1kV2tl6A7EvX/N+zUjWCXH4C6Wq2lDfyLuXWt0MaxzMKiNZVXuCEJwguuMdgTrdXWy/nbA/QFttAfY5Ghut5lrh/fKbWIEKdUw3w6AAQidzAscP4JRnGWJA0EepEGUBTDrY1nlslZLiPC0W0G8bQVf31awxhX873wDcGlJWdd5sg1gA/8nBH8hjsR1Z8F/XEd2isXSYrIKslFRbC/HMciR64RZ7HoZSrwIBEHkZkmUudkM/q9aVnbbALYNYNsALtkA4lsXrLEBuNsG8IU3ACGEyQWzGwAtaTCL/w+lEKashH9KNbwc87M4yvMYhzhNfYDjNMr9NAli7MIcJfEM+lNZG/hv4P+SwP9SV4AWSwG8deAaWAo2LP3CWCqELblwFks/0DQ8+/JAP3IWU09DQg22itQDjHWdNPVQDAGAaQjjNMtCgIIcxFmWZ8mshUWUuWHthrWbov2MijYEKynacNscvvDmIARuud7s5sDSS8xvC7gl0WwInG5obEG5C90oTVEMvBAErpu5SZ6HfoZBBD08sxVwadsmsG0C2ybwnJuAf+tHa2wC3rYJfOFNQIgzc/3ZTeD7sjwNK5tM4DhvSTSbAKcbbAJOHODEj5BLdH83Q34OQIQxCHLPS1Poz20CXNq2CWybwLYJPOcmEN3CcI1NwN82gS+7CURCCJobzG4CP1De6tFyZ/eBO07l6neClnKwF8RBDFLX9zEEoQdxgDI/8IM8j6M8dSPfm9kLWnnbbrDtBi9pN7jI8O7BW9dbA1GDa0twbIi6EFGFAD83NEJUYIKowBhRwTBVA/SiMMt8FydBlLl56EUpUbQdN3MDP0ZIj6hgQ9QNUX//iBoM6nRcjqjhhqhfGFGFYEM3MkJUaIKo0BhR4dBDPIudMA78NHB8EIKcOoiHiAy56zvYh1CPqHBD1A1Rf/+IGg9ikS9H1GhD1C+MqELgpRsbIapngqieMaJ6Q48QjEIvz0OHaKWJE0ZemCbkxO87fh4AP4j1iOptiLoh6u8eUX1y6o/XQNR4Q9QvjKhC4CJwjBDVN0FU3xhR/QGi5mEaJ66b+36cB3GeEC01z90UxdSWmnqZHlH9DVE3RP39IypNmbNKMIizQeoXhlQhHBCI4YAsNVc3ZCwLzZtzVZOue83KPQ6TplHqrjU2pbY5tS1Sc4w1oB1GizhJEARZEoIIJ5Ef+XHkIA96HswT6CR9KjUDwatlJ6ev6vKYsOSWKX8V6l/1xVH3ux3+hNpaU21pmi5NOUtGPgTXLnPiELX4p1jdp7yilb87CKbFQFvhHClbONyu9hdf7QNWntONbj24djLIt7gmwFL8i47od3k3fAz5hHzgT4V6+/71Nmav70GvTwI+A3gmOGGYDzISYt6AGPP2lmfD+hEVFc17TnN8N/v9IIcarb9Ei6vZ94SQZROtp/nT1EQDOANxBgA5f0PXyeMcoBj7jpf7gZ+kCEaBJ+ROU0tcrQgN+34mn2Zbp8l1m+83hC+wIny9H6patDl/rtuErn0FGDK6hB63lfZaJazXH2kKwa5CTFOngaYetf+LaJrF6dHi+YdviO6Z4bJhHwTS8AJNTUPQOePZwpmgaYEumja8KcXXTMtGJKLlaU7ngtE2SMlgt8uDWg8/FX8mqu6pqPFWymvLUzmzbXi2Gzb+C35w7bbxmu8YdI7+wnMFflvUBB8eyb8JbFMd3PrbscmtSmb13+iPZJ2xInhsM1lVeUZ2m9OVVtRh9cp4c8i/m+bYJW8OSxBets0hZ2u+uWj06FmgNt1PhLg/IMb9/USJ7yq07wwQ3alD9OgqWrLWDtAfDHqfrjmi4Y4SoSQGruuEaRR6EXbzIKRuXOQ/yT9RH+o3J3E9Q0SV0fNr3RT5WJZyfNX9hCg9ZUXGpaZn+oRsGtlAMyaAy40PVsMiFKf/VCRkgZ+sfjxzjDN+vmdgf2ORbzySSUjXTfuNTwfbrLYkKy1peDTvICK+Be7gaD4zRenB/Alz9PByXbvHDmAYevTt+Z52cQsqrdVgZfX03LShQxUGGf3CoMPcIUkzUWbApGu83XRml7/fpp2pP5cDFcIIwWPAM0MYYIYwwARhhu5NSeA7UZaBxA2AixPPy1M3dmOH4AwIoYNMEAZsCPNVIowf3zrOlQjjbgjz5RFGiEwCvhnCQDOEgSYIM3T3SZIsS8IwDDI/yGPPDZGPkJvnGYSBHzlGOgzcEOYrRBhA4OXWv1aHARvCfHGEiYWwFxCYIYxnhjCeCcKM3F9iNw1ykKdB4iZeFgOAUj/OcgACGOaOZ4Iw3oYwXyfCgFsPXIkwcEOYL48wfRgIHLjYNXb9vvpV01Fi8Xhu+u6rUz10JKMaBjOU47oFPU3z2wxQCMMwsg7+h+qNEnhwx/DAEaNDB4edHjt0CINooSNHUzCka8uofkmODumjRcSVu51gAecGcIIZu7Ki5Uq4+btb+r9Wvx4uWP5zLf0pZ/4UDxSQqN8GZWReEtQHpbuwxJ8RaT22UE0oMKsfz6ql8PG5scgzxIriUh8N9ui/Ieu+wvn//utoLY3HLEf/RZpN32o3jbKTXZl+rAU/nF//zTqh6g6fiLTfkh06fCQNf9Pg6jeMmhaPPlXnlPfiPa4w6Q3031/9t6T67/Qfec/13fDmHqcfqZcIhQdZ22emXVam531bZlHa1m9FCtYw7pWD6q74kFi87x7vjq+MrnxnqigMcNsh/2ezPxZRC9mfAW6PF/4T1xx4ndFZ/i2BNtIjKXnt0SpzWtGMlp4tBfM4WyuE8lyeaCnx5j52ZdgmLbaRnTWtIfBxtMvcZmuQPu6s49xhgVDy1jTXszMAznvV7nq1dUDRIjczjkuRuw838RzxRvab6kyIJ05DAnAnjGLi5TbFbTXhGLYVlJeBt0KYBLvBGLvdV2BF7KY1N5vu7DCbldNsvRCrdlo2d6ziHSW9IPnI/M2ozxxuXTysf+9uYtvrTy4kIx/Bi/gRMKCuc8IFGaJlplh19fMOVUS1YZeo9ML1cLd8S7gIRFT3msk5ITovqxQquxWcPJ5eCX7DSN5Ski95E6gDQvU6+iI1WN4zhcD+UBV3d6wOMUsmb73F1vtmmrDq3GRi/VjuG5/dp/JE4cqJfWrbwlPI23ts17wtzDGFtMW+J21hK2MGC3nHGiMgVN0hxkJ4CAjNTsfN0cPggHzklCNE1DOMkVGtur/gI3D0hzgCzxWWX3wS9m0HWk5EC5e7T3JfeCGgbKfhBadhMTxCDOGlVUIfT3i3k7ljC3gi0k18jDs0maUaxvBC5GZh6gUO8FES5U4S56kXR9TeFkRZr4nNilzL5laLL5EohXrMgSsXRD/vTvS83FcvZtEAjSOu3PuM+oozKKHn64EvmjjGzJGMsdVP70r2R9K6OrD0qNnQiweJ25+rwmcs+vCLVrAf8IHMDzY9Xv9EqznwDVe29O86UhsVdr83q09XBhxjZaJvj/36J7trz2qVPXVNMlQt4IqqxU+HEwv9YI6pZMlPh+QdG5K2iTdk7aa7M13iZNNDn1CxQ2Si0y1uYl55ZQ0c/sfBQxQhZsFEdPlv6g0zpuyRLLMibbUd8po9UXJYOBK1prGqwWXenhYf2qruuk97aqXnAhw6PR7xQ0WYKqlL6OjpFIU+dBRrgpCsVWrX1gQT5RXTADvpR0weS7CUkViv85W/44/roOvbbkx9Yxx46w7rpOog+UvXSv2ZusATTCHa/Adq9vlpz9qD66FG/XNB/lVW9ZOd0ZkrPulrogRT8xM5EzbtGGjVhIy3Y0a91m4yWv1aabMUokigGH78Ax3LUanUH+jbf5RUR+0eDP1fsixBOQRu5uMwzyBRmhH53zxMgsiLYX873bGvpRZ/gU0z3jbNl7ppquJApCaCBtSCQbDaE4DaBmhfCNCEMAbojgGNrcIxorU/TiGNPRnWnQCBkwE39GDgBMCLUBzhJI1z7ORhhpAzxDTGv4HaBmrPA2rxreeuBWruBmrPCGpC5AQEY1D7S3lX1mNQa3+cghp7MgA1op45LtHUIs/zfTd3ozT3Ms9HQeRDcu7IhqDG+DdQ20DtWUDNBbdusBaogQ3UnhHUhGANCCeaGotnn6hq7a8SXY09GuBaFAUAe5hgmJ/CLAjzyImcOItikOW+l/sjZW3PLbobsG3AdvVl9ZKUUx20ebcQrAVtcIO2Z4O20BGiRKA3hrY35fFxDGzNb1NYow+GRa+CMI0D14/8IAM4DRIM3cQJgiwCKYBOMAQ1yr5B2gZpz6OrheMi4FcAmrcB2jMCmlCbBPpjQPtQlruJqtb+OIU09mSY7QNGjp/jFMQxilIUgcCPUwc6yMvdgGhvQ0xj/BuobaD2lHqa0s3n93U1rbzGdaNbuNo52t+w+RmxWahyAoOJsonq6TG6/VGibtInA2wOEy/08sRNkxT6buY4IQTId33gpamD8OjGg/Fv2Lxh87MonACseOMRbKD2jKAmRJLAcAxqrdf+B/bjCNxaD/T24RTkBhTDmncYRCnMCaaGmJywYRhGIIn9zAGxk7gBHoLdQM4GehvoGYKeEE38DU/Lex3qebfAWQv1wg31nhH1hGgXGClQT4F3c0g3rJScYoCdLHFSD+UuiCGIEw+4QexCSPALSDFuQ7cN3Z7pWgQEt85q1yLRBm/PCG9CUA+MJ1ZEIVv5xJg4fCaxKYqpzgemxSTL89CL8yj209yLvNiNcwTDOEPIS7E7Mi0KYjbI2yDvuSBvkn/0CsiLN8h7RsgT4iu8SXzF92V5YvGmA7Drfp3CHH80tM/5QRAGGIM8icks8mEWedjx/SiJsZ96cAhwXMAGbRu0PYuBDtLT6mouyVugxXMimxBo4YmBFj/zvCLf8tn6twO2aSYcEeX43Lf5fO7qR1bTeGw14TgMm7/U5i+1u5deC3DyBghJDBcinbdiGPYv95igQMUyBNJsVIjmdmnrPFY3dDnR/FT16YZWDOx/z4q7gqZRKnYE9k5kcpTkx3/89Ot//OP/EqjKyjrel6fyrkLHe/rDaVBkkvy3uqIkLenXZiHcl/XJauYvXeQP6PELqVw3f5yaawFBWMuFtw691x3Aq2IxPnVI7rIEEEPA8VSAIwRBeEAFOOTb3uLDWYU2dCD544FyJaMZhkikvhuGsePHMXUnxiE5RmYuDJzcQSDwkg6SZJLWUre+JBrFGxp9eYt+t4698T3mSuv42dew4PPvwZk1/L7FcNUqHpUqVKxjSa3CGHlR7iHge0EahRl03TyIAUIuAlnoIE+5ktetUrit5d+vZvGHUimCWxBcCUXuS4QiV/DR97wZKBLzLrdoNDhukB4WaQaApCQcYFLmwyxJoiDL3TxFPkpjz8FJHCHH85MwDztMUorbYOkPDEt/vHMOTep5JSiBFwlKgp+958+AEks9PANI7fNZMGJEw+CiOIhw4ia5F+HYz7I0TeM8CX3fD33gxLESiJioDYS+GhBa0/jbrlrXufX8K1ctfJGrVvDA9oKZVTu57xmfMXLp1Y+carBwceCAMIWR48RZCNM8yjKEk9DB5LSTRShSnmryVS+EtpX7FakPc0sZjEvwLl/K3otcyoLfsRfOLOVv8QkVO+tnukzU2zCnshuq2c1YIB3WeMsRClLs5KkHkRPldI2jFFEjZAJi4Cu3ZEHgtrw3o8XCBe7dOtfu1bqoMPdZFrjgYuuJLrZ/47f5v6BTem+9vy+PUxskv/C3HyiJTcb4OLZCqghGZWGxD1w3TqAHsgBilEWOh2IXA5ThOOizLamkrbWa1fK/+OKlmeN/VQ7Br//Ga/zUp/PhQJ0n2qI+BN9KWoilPuK0yIuUDPYjK8LCvsmqGALScj7Uy4K86f5ck5E81a+sX1jm+VPNC1qw501RuB0ii/Y0XuCI1k6rGbhM1ndakjnGC8CUuXUqyHm3wLSYEKuYwTGTtEv0/tijA4GVV9b3GJ3OFf2l3hNF7H5YYoj6kxBMKvfFv5hPChueety0Y1VSfwHWQRjtackPK6lIa4dZ81m/8PYymaRbbkg7PlKq4kReZhEhtB7IfVk01I2DC+9MOkHIO4o986wprR1GNGU/6S9W86gDtfLw5Dcqf8QLXhfQUiYwuIVXZ+cfe728Yw5TJ+tNuScwXdS96xOdBLzeGxn8X8/AceP6CxQ3OvIG2WnXoAaZWFEjXvKNwZVRcSOOKjZDFZt+iM2/Tub6It0xBK9lLx6UdcMPNAqtdQtqOk1SiaCh7MqAcMppGRIN3XAbSfMYuDBzExSnIPVcGAEPwpRAMcpy2MflaoSutZskzWta56Q2xfnzaYS8VtzsGBHAztn+0MM0Oh4JDFJEo/hLW0wge9cWkruxCJ6yOod0bTT7QOtr2JScYzLJbzXdDtDh0Wq6Rth1xL2AlYqqHm8kW8DNdA/AO0yLVU52Ab546KZBNro7dDcCf1b/jvCxInet3xhFAUJD91DW/qadf6555RXum1jUaUl6gTUbf04x63myT1BispE+eSmWpRj/dWXdD2wAmUd4eOsFz16WJXQFd2ZfdGem2dvbxcUcVN8W2T8JUB/wI0/l15QHFUCRsrRgxIp39iw8F5/dsXB0NGUY1mvyswTACDko8AIAsJfBOHfjGLpOkPm4T5dlKn0tvKTzugVJ9r59/z5ePU4oYaqpj7wycH4n4gY5sxI0SSmWUU3ggB8scbB7P+q802UpU3E4lJ+4X69iKtAanATBGtDsgCzh0Ell1KfHHeYgaiGuYO+JrktUXnKKxqwarVjT7qZDXqbNCoWkCuoUzjGwINpxTR2qB2WpWkTkdUEnDa5JZ9PuuGkqVtFzwzkhM9/6RPQT1GJ1ltGdpPXmPpXn9L5TscWGkg+j0EovX54KPr9WzfjmDwL6ETXCeOEtdF4A6Aue3r7o6f0jwZcdxZgGEZpDsEQB7ihtDrNNjdKJAqyhG155uEEKQz8CYQ5T30uzDAAP54ELMMTQRT2yzwtdDdC713Bob17zjArwOBZGM15MpZUEvbxFH+kxMSl3mZUXlWDALJtolM4wI0a1dMYIdKAVAen8fGW9aXRZosh+ono5oqYbopmK1Uq5seaOAm9Tj7RRV9nkPJx2j6NAnBZWm8gYsqkQRETVR6YwrxoNs6qm+ru1RoQEoizXuXUIPvkvAJ8Ex3BfdAx/j/bnChXW9+fdjqwZjA99nVdZqVBObvfkfRXTacVQA+JhMurEJygVQYQIVjlxgoGXJG6EgIPTOEL9PY6J5NXqhzbvyvt3ddWTnxG4RgrosSTH0lYBNRnU5qS9Q9Ud0dkYcDFdj6lp1EpMzU2NRpmcT6fuqH1CiXVAn4o7hlc31DBKFcbWPEB13Jooru8baCNgdWS6aVUyKvKXskJ7RNvadK31gKqqKCt2YEeHj+zQ3SuYNVOoKTyQFdyo0E8HVe3YLjpP32MaH6mqJzh6OsWpyYbCVOw3nOk5sMt1LHZ9fQteAnYJDvG+6BD//lzlTcV5ZgDPLFZQWIZb5DiTtwXhE0pqM/PNTJ1TA45xgJ2O5Wok0sg3RCF/xQC7b5ujY8lA6KGsCIyQhd3XKx7UJ+7Ccn/Vjh1d6TJV60/WB6pqDXSaTvkhC4e09HwgnHf4dGK6TXtKPd2TdX3HX/+APmFmeWQWweJTcRpoVHQxWbuCvOZANTCLJyx9gXVMf7faUcQqKVNft1sYD67QdfPiJUfl+QoAA4Ibve+NAaz7Mlo0SFS16GpvH9rNw4F7zJRipE3lge9nXoBz5EbQ8/0kz9MIIz/LMjfKe21qImc13enpESveEOu5EOuelzmdAS6J90y39KNbHzzp0n/2ZS84qvu+ctm7yjXvzi94d2jERz4EWZgy1xnf83LPRQGKXNLpCEZhrFjt7rbUt6W+xlL/anUUf1JN7Qqgcl8kUAm++X6gBCqgBCowD1RgmIwpCwPgRjgDme96XhJnaeoEQZwkEEMvQAqgAhtQbUC1AdUcUHm3LlwLqMCLBCoh8sAPlUAFlUAF54EKDoAKeSDxvSyP3QSkMI5ColoBACInBUHiOZkCqOAGVBtQbUA1B1TBikAFXyRQCREUfqQEKk8JVN48UHnDiGQ3zBMnS5Hr4gB6wPVACF0/dCMv8CIAFUDlbUC1AdUGVHNAFd06qx39vBcJVILjvi867vvOr//hO9b746440Q+md8itgziPbxOwy3ds8ofR2py286TvaDmaaSmH7ks+8MghMUIpgBnMPSfKUwRT0ks5yFDaA5tW7GpQx17RuAG0bvxZ8wojJ1T/CZ2X9IPWufrcWq87L8wuVIt5f9b9xX2CdtTVr26z7nJ3f+6/1PgPoCY67B7tcps8tul/dAFi86l+idCqiYxqXfath3seSLAjM5m7qZJvx6jqcZDFhpH2kck98JWauEeN3J/6JMS9DxSPZ7uxCNJUdk7dKTLC3YYxlAfyF0Y89fjaPKVWBNuIeRuAWxg9r7cB+aX+7UBxgV4bMnwUnPkD0Zn/+7LMrHdsRp3Q0EVwEhNLaW2RttfB3g+DY7WUQ0saTrDjIIwdEOR5mCCyBhDKYifGNNl5n6ZPK3YteMzpi47ii9qHy+Jm1wTJfxw+4WLH8JHmh6YAQDSsJsqTaGgHLOp/2nF9RTTAgWdlVtT3uO70uM6lcxCj9KlIyF9PfSBTE21bpE2sbvsxNY+CL4bxT02ItPWd4PLZgumNRR0+yVz7F9MQi4r8vaZBAues8dgaheKeic6LqF8pC/Un/yFC5yvrr+WDkOO9icmfeih1wQg7+mnV46styumJYdKNaJQTPTyHz++UBQSH90B0eP+e5eJ/z1yov23yRrxF1UfMJrLENUtgsBsGu2OYOpWakQ/TmSZ5FiQ4ilGKYg9AJw5CP4BZ4CZhHCS9GmkmezWwZG+r2duaDBv2vnvbMx6eJaUVGEKKQ2sTxayDgC6vBz0a01NvyQCGfwymIUM/dWkEWuWK9EZSUB4mulVFez/4mz7utINUqqYJEZuvrHdCoClZDIe0wF38Pf2NR0gh0oKnjrfv3EZv2gMzS7hAlOHPSzDrSEGZKLzUEiBDrOnzKV69a2isX2j2gWcAKhqO6RBl7mUAleD5Hgw838m8IJP0r2w6kz4jjOiz9b/Kct8E300VOc5iMxa7ZbEpSxP4ONbnTBmGmU4zB8UO9JDrwJhodX7iJGGQJ1EWYuDAtDfnGUpf7fDL33dg7zu27/sXfR+Pw1ym5AWrJ0cxHdI2WYqoYnVgxg7BTDMgCLKvR1GJXA9ilkVEj6F7gkX/ovxjex6RTk6g5HRL9r+sIghWk7e1XvddMFDbi0xPoz1p8Z6suV89M1fienR6ZjlT+GBYbDCs+iNRKbnRkB2Zu0j97kWD4/MIR/knPxS73VzGkgHYClH9TX4XbiCgOaB4ZoqaAzviMZ7MqNn1B4uWfbkpUL4uxTG2XRYe7wYDY+az4bHgzR+I3vzf4MeSTFK6kn8ui6xfvywQjy2bdmcTax8mjI0GWdifCFsHvaPfBwibhrkXItcNE+imYZCFOUSZDzzPQQnOoj7gfSRktTwgQ7E9lrKoSBbp3m709TOA6f/RQBlvZq9E8RVNlzv7jlMfN2i9JpBEzpJE76NmP5TTuJUdwRwKEPT2g56S6TGVUpFvLLIb68zO5SwbBxlLTK9Iyj2iJ1AW894hI+2TTmuk58NDUacMa3IKskSHpBpjatVpYedFE/d+Q2FoX9RYCEw6UXx8RbaJb0bfdWNRRbc8N7+dDx8P5cOBn4RZdBNVVumX0FQ67PyvCP6nf2GT7UlD1i9ULX/v4etfV4xVzKq9ebceeHZUvvm3A374rdktueWTADVPpEaxmk3fIu2iHslE/H97LZqSWX2J2DHxADLJ2I4YgY4RKBihjhEqGD0do6dg9HWMPmckS7IhaLtU312SpIUGfTXgMu6oAZdxLw24jLtowCX0D99qTiip53unpzPvmwmPQc9MeGDX1pzgdVKWH+0c0xUz09oB5bC9TE59z7beWQmMxvhbh/T67xzS68d+SK8f9SF9P975rkg/VvYdRZ3qcb4LBqSTXrx73M+yk+fGvdfT6nuup+1nRp/MwggZp+TGLVWy6huuZNWPvpLVk3RBe8dg2AUt+QVdMGJd0gUj1iVdMGLtu4DnoWKK2dynMzJKNZnSbDs2WhsDyokceid1KMlp/YTO9K4pQfNbj4TeeDTUvPrhUPPqx0PNqwcnNW8PVHtUHJoEA7N9J9AZ99mUR99XUx59H015VH0TzvCEfZ/grOhmnX16mJ/nE2rz/lFwGvSSgtOgrxScqh4LtJzBqN+6VCHkYFySw/KjQe9NeBb2oYrftCdV/Kb9qeI37VUVf9+35MBS2wk5Mt1V9NjOi0HP9iznuOOUE+xkT00gWCQ0HhUJk34oJEz6/pcwedKPtKmZhDvrGn+vwCPvQO0m2FHJ+Q1HUT2EO3yiFgCjdgi0U1nl6Y4WBS/SeTEdmflUGLMYTIQxi8E0GLPod8cJS78p9kUd5teGQGfcH1MefYdMefQ9MuXRd8mUx9cC2JQn0G6+U55QwRPN8EQKnniGJ1bwuM7coDqymWF2BpIxXDJXlp+DZpgXzZ7l1qIZ5kXzacy8aGKNmRfNsDHzoqk2Zl425yazpJ98NUZVek/T3e/1iD8mnkB+e74zmsZjYuMprGDUT18Fo37qKhj101bBqJ+yCkb9dFUw6qeqglE/TRWMcT8raNkmA8WG00kn1umhYIqG1nwoEk6kfCr2uDTSUAeUcjnaz+moJvwPOOlKT2So+jgrZkxsvEwUjPplomDULxMFo6f8cP2ckHLMdmifGddYcM8ik9xQ7fg98LxIkXbJQEn4jMZJwmc0TBK+fpRo1Mk5wUYLZUQ76b/muXY4BLrprsKDIrlPzzyCMEo8TZ8/u51MmQy2kikTHN/MMKcuk6sZSrf0akbgMb6aEXiEqxkabWC0YVPKxZu1hMngimXKZHDPMmUyuGyZMuk3ZwmTfmOWMPXmwao8Ma8z+6GssvnrvJaUUU43ygp9wju7pjT0bvXYXHfPbZlSFuMBnmXXD/Usu37QZ9k9cUXSgjK6xUhplixEgd5oEQr0wgLsUyLzFMHzi3BMbb4SFZwGy1HBabAmFZwGC1PBKdx/8/BunBOiTAe0Q1rzMZbyGYy1lK8f89Yvi/pgzV+SDCinWyP5K8ECWjdphx7n1/mI1nx/lPIZbJFSPqhR2myYXaC3Ea6p6laWSXE3L4yRyDjTknoNp7jek97XyRgQT30WaIBGQf2H5xd2RzaRwIIyHm1WXGZWhkg4kVKeqxNG8+ukoTGeG0N6/ZwY0uvxY0ivR40hvX4nH9LrN/EhfSj2rU0fmClSjZTFupScz7jXF2tUcj7jUVisV8n5jEdFqV0l7JaiOWLMjsyA0nhcZFz6UZFxwdGabyIm7jHS+cBJ6I3br+bVf4WaVzwPUcffutSoNj3ZAh1sxGKiho1Y+nbWh/JBvyN3VOY76IjDYO8ccUDhpJB+TNAh05wROJFEX8D4Y+NSfmTJWGYVhiHxAo1BymiiMkgZhVVxPJq2fkg66YkM1x/1Y91RTfhpPo0DvQI18k8d0C7wUJXxmfioyvhMvFRlfCZ+qjI+f+jdZeSbJRAa95KESd9FEiZ9/0iY9J0jYdLvhBIm/TYoYdKb/SVMUQ8XtHwgqjL74WhkDZTQyxeOzXwQDN0npBwSD8CuDOPDPdmLkpI0ROMJKOEwn3Yz3Abzb4bbYCLOcBvMyBlug6k5w20wR2e4DSbrDHckzAReEVSjbvRkC8Z8xGIy0COWfjNj9xnMzkHzXyU7smnbe3w4z+9ICqbpBichdBeLdo3kAhslRI9dLL3hM+5/vQww205o17j6REtTL25qz3pVaydi5hvstbaO5Q3uWa9q8ESMfsobidGDnJEYPdoZifFnR8G3aaBmsS8PBdotH4khu9GCCmxaPO6SJdVxGr0ntPOyPGnU1znGqbVrIZ6ZQNmQxl0gz9W1zwS5rgQtQ7y6DKquRylzgLoMm66HpesR6Xowuh6HzCHocvRZBjwXYY4x3FyCNKYgc8LpPUsVguYNrQKd+X3mhMfgEnPCIxi/iIqKETkK1fc0pcLcOUekNDcSSLgMTAQSLgMDgYTLk1xkmqF+R3rBFabAtuT+UmBbcnkpsC25uRTYZNeW5eGktWJNqC+4uhxyLrm8HHIazA8Fp4EJScGpP4+qOPVnURWn/hyq4ozEy00KZMm52LHMELoFIaGX+aKJNCYubmN6ncyU5hDRbOhyFp1kI21GwaOTnRV1Sq+Zl8hueZZ46c3wG3nrzfAbee3N8OtX2Dy/rxw3vXlbynFpv8pM3ZJ5SpSOU8kLay+arAKfblYZ6CtSjqkmVKbnuvXj0HjYCZQLXOymXCY+dlMuwTZ1Lk+l7nKE05ibFwb0BnaEAb2BwWBAb2AZGNDrd5ohfR9HWf2mhXdOMpkZlRbDq9+ksF39pj+2NjQSXqNzW09mPMATFv0YT1iEm87fikOu6x1KIksGcCwqZnQ1uDmfUE/k7dEd+ldxwPT2odaEtAuUC4Lap1wmYe1TLpPA9ilXr8Ljz8ddadxzE2rjL1Zx6r9axan/chVn//WnxyN+qAigVwa+5mNi8wOmnNHglCln7FdMssOHjFZjMBi7Ee30iM3ydO2KtDg96vFtQj0vz6B9Evp5mSzRsblIRj4v8eEenR5wVpoLbTnm5RLE+yfWwa+Uw3yOzXAbTLQZbgOX7Bnu6aY8R+03KSKbRL3N9i0dp/qOHsmWjRTnmR8rVmZqwUhx+nmZNBqDqKA0jNJcsMA0L91AbZXQT2T+lRy8Xh+yN/Tu/be3uvU/oZ6X96N+/Uvo52W+NzlgSjnm5b7WKlpT8mkuBEKCDhnzZPjNIEPDhHxeYpdhqTYX2/PMf/87E7SSchij1Ry3Hq3muPVoNcetP0LMcfvysTrhzydm3l4wVj3P/DwwMeDLGOalGiCKhH4iM3Lmv5g8n/Aku3NlYIHoycx9dscsBg67Y5Ze83rDnErfl+XhNU1YOtvYEe3UR/NQPiCtlI5qkReqyGHmhSpyDOJXWGLlNmV9qY9iGdObZ6xQ8hokrFDyqr9Fl5xLQj8ZwwnNfYWX9RDjmMotK6IC7IqSpszWLIoRrXl/S/kM+lrKZ5AXRMpnkBJEymeQDUTKF4g+xkZ5GAW6aYbNCtG6ozzh9nyuTZFyIsdzPFxVZaW9JxIJpy6XTWCEiQvniHbJNaSEz+giUsJndBUp4TO4aJLyGVwzSfkCIcprt69PleaKt6MyN+6OOAwMuyMOIb6Bpk0vj7hCmjwcLZn53jJmMdhcxiwGaVjGLAYJWMYsk4sOfVSdSLj0WkNkMr4jEpmgYIWsPxoBk0i4wAY5YTIxQU6YTCyQEyZvEhhLUxWQR7rz3JR8iVohZzXSKuSsBpuditVgv1OxCs6L5TnZYfz5WNZnoj7ojZgyBvP7HDWzweWOmlmY8uX5cELFof10A7uhnGW6QZdlRiMKtJZNkVApxaBdQ1Lz9NoyNoNM2zI2OGk3s4LdlyejlrfEyl5oct9mRtJaYqW0+lga5NyZUC/u2TGneeeOOaf9axQNPCZe/AXyeOBBM/RmgRGtepD1xoAh6ezSo9lnjZcfJVZKS3bl3YJl2JPPSmwS5xiLbMv/qGQae3LKGBZPDAkzkH7mgkHtyafGGpyXFWZli0xsNmPqBeHWck6TkGs5p2AMaG6jTfSsEa255iHlM1A7pHx926k7T7uh9rXV5jMRSFnMExLMsRvkJZhjlyVLoTm3DLOlUFKp33Ba6r3xBDqVDJMrTJFSJUfvxyESqqQYedeNaFWy9NcTIqFKyrEybQ+nVMkxRkwJ/SKfbzmvme+3nBeOv8Xkak6klHioodO91ieN0Sw4qIr0JmdUkd7Eb1Gk7096MHCOtJQE2s9bIwQ642+a8ui/a8oz8Yaj1chsDaIOSZf6xg3ZjF3khmyCCxX+hNHOpNkDSnOHLwmXgc+XhEtwYkG0qCNNqMOLEM6bqvaoOnVK15i1+47joZFdUYvvo4lT60jygHEod84sphcCFELgEiGw/8JzdYcrXdWakciW59LvGvEv/qQR//hrbPLIplb7ChWnxd814L7qC2WSLvtWmaT+q8l5zq50p46h2JZlMuNT6ueEl0hiDBf204B5adcMmPveuC/J39EjgQuiLS7pkyHjpGeK4z1FTqpJ17be0DCUPWWeyKdVWFJNfNpQaMNxYd8PuYHQjs/k94N9VxW7Za0R+C5u01TG0mkhk9HPjn2ZFDtM5v4JFbvluC5jv/Rb1aIWf7JalPjlB/xo48/pPTrc4UXfLDJe/LUSIcu/UyKk/8K+yhg7idl5UdUnm4fWLfjeOTGTVTsmrnFKi0xf/dKBHO1bT/dFtcJLRTGTd9b3JcGu+lRWSyaPwHXhzJlKWDptphL6OVOfj7gi1B/xySw8fSRawn7pd6pFLf5gtSioEOUtF+UpRPnLRfndeDT5mYtDTedlumSqjVmnuk31eDyVJvnXBMIF8bMTJpPQ2QmTSdTshEmsjLnnZetNnObHxNPImJbAbu/JajOBPf2MzGYWGEpsqGfkGbjPjInnWmdYgUvKMSOXKCaZoUBKKkmUcPj4aDCLBboFAfNjHpNo+TEPHCRvq6jflD4kZEgqTQPHHxvM6zHxjLR9Udc6q/eEWi7PpiS2YX7HAfWiDI8yTrMcjzJOKPsGenFj+gWUdq4/TELEp+SzEnlog7FETj47ZsXhjijQZnN0wmIg2XTOSpiM2p0VaHHDCY+JbJ2+J2cxkLxwGIdc8jSRprlex8Ty1qZng8alCzI7jRgMF23PYJaRVWAwS8UqMBj4NQ4ZDLJmDBkMkmUMGfQFxUYMBrXuxiPnCKn8D2TN1afqnH7U71kTaklpAIHCAAUk9PMy9feBU3Lzux4Vq8G1j4rV4AZIxepJu4DWwNEEx0zJZzvVCJpkDFMXh3OS7DABxOP9vHNDT2fu1jDhMXBomPAIl1YFPSLTG3V9NMmI1vzaSspncG8l5TNI8SDlM0j1IOUzSPkg5QuEfeWc5LtHrSrQUEniRIrDKanO9b1+jEa0CxxdZXwmXq4yvqlbhgkMjmhl8TL8uYnD1ZhYLc3gwn1EO5FFVZR7nOt1SZFQKcWgq4akxqMsZdMPspQNTtp9vC92ZV3qjs5TcmVP0HJoRrIooVLKjtW5P2EjSS3xXJtOhqOjmC0sSXmbYsPk6ChjMK+DrmY2qIiuZjaoja5m9gTvA7SzqUn6ZNQVU/IFfggKVhNnBAWrUKAN1ffUemOweIek5mYaGZuBpUbGBsXazjXZuHb6zBgDyqnSg6qEZua6L48mfTAln5XYXHZp8VXBMyvb+MZIxTQrXa+qT6hn5Rk58ckYZqXy/zYX2tDPymzUY3OhLcP8aOnhd0ouKbd2OuC6tqnSZZ/w/rhDmv1ByrEgQE/NbRKsp+Y2yFA6w93jcF2mKe209L4sNR4AIqV58J+EyyD+T8IlRP6c6yK1uUOXyRhK6M1D35S8BhFwSl6DQDglr/5Ao+b1hf13cB2s2XwHtAt2XhmfybYr4xOM10Sv2LOarib29xGxuQFPzmhgyJMz9u2Hmd2eLOz0nGhAfUJt7umq4DTwd1VwCmuQeRRVBnvzgHKaPq99ahK+N6RVy9JvvkPSmVa1iXAMG9aSqyUabeQTarW8rExPZWUoriFWSyNLj1pL783EtdTmaKrgNMBSBacBkio4venXP9w/0h1HF0I9IVf3p4lxcUyslmagBI1op5cdzJHS4Parp1PJMLnnEilVcgztBxNqlTz9oV8kVEk5kWOP2ddxSpWcvDhk59pEDqdUytGP/YByOouKQ7En59kuxcn8PBpTm69xBafBGldwGqxxBaen/npyTsw0HrgKnst7YsB/QX8M+C/olQG/gR45y683kM/z628T5/n7Er6IXhZnekwT6KZltPkzk2K6IqVKjtapQqBTyTDSFEa0SllncqCqzURxUpUkAxwaUKrkNPZ5g2UoYzAvX6xmNqhfrGbWr74ZZv3Sm2HWr7sZ5v52Kinu7KTcGSybAeXUSNM+NbH+DWnVskxuesbEamk0LN1MFKWc+UKjw8CUXC3RxKo1pJ3I+js+lWeNwt7QGC+aIb1+nQzph6GtJmd0gW5RWO7Sk/mUR7ixxOijyRwW6KZ3i/SZ/vDZk8klmGloQ1K5JJM7zp5OnVHQfsC7tNxjs5yCLfWMPINOGtLOtY36eNiNHLP29RxauUaXznKeGdlGRvIp+UTi6+PRfn86Z4TmF4MhmpLPSTTKmiyhn5Opz5g8Jp6T9sakGyX000PWOcE2ouqmNi3GkNTcnChjMzAmytjEgGhq6jW4H2vJJJcs9JHR1V1PqJBitG2LlCo5JqmRhqTmnlQyNgNnKhmbXgmUsunVPymbP+klfeamAaWit7UxCj2ZQgJL9sHrMhoIEqgV8owu+3pChRSmeyXlZwM5LenCWTRiM51FIzbTWTRiM51FIzb98UHK1h8cDiw3m5H/ikhp7rgi4TLwWJFw9TCJqpNtkuBWoDM/YU54DA6WEx6D8+SExxNSjB+YcyrdI2yDAgoS+skiGtLoNIsJtXH/qTj1vajihPJvMCpWIOXQ9A3zA31c0D2cYV6qkfIl5ZiXa6QySTlkCajt72hiafs9zaRrf6ClQ3SZqKccU5c7Hqxh02gNfSXLCfW8vCa3ZG0us+WYl2uyG8sYNFINNCoZw7xU47xZSi59X9gncnLT12Cc4dPNi91xybzYHTXzwsC/c0o/L5NlLzOwcKqYJtLxAVd3j3ZWFQdyzNQujSm5RqL+WC6h18g0CfyVcpjJtcFyyTYwlA0vkA01sstKWzpvSq+RaTB5ZQwaqfqJK6GX7D7VkZbWw2aKyZB4RlpjwLDf6z04VUwz0vV2ihHtjKx3RvY8Cf2MzDf3qDJtH6OdkfVX3WXVkHRuhAsyE+7WkfXBdJOSsyzQP2fYTZTQGXYo+a732qwqI9qZPnp/PlIjoak0Tj3b52hv3NdoP9cyvCOaM846Hdr+oDXQarmXvO/SN10wb1QylkwelQz9uVAvQ28p0MvQmw30MvQ3/noZoQwLDbIOTKhnV8Hnk/2N1polY5iR+pbHJbw+Hg2l9gxz+4DZcW5MPiPxe70uMSaeW5cs2bL9oSR/TD98wDNNl47JBn6qTMzeQ9IZSVpNekg6I0lrTB2SzkjS6+Ij2hlZtEZgbSiL0c7IMnJLmZLrWqfR4yfUs/JME+lLWWYkm+TCHxHPSDMyUE/JzVP9q1gNylioWPX7kZJVvw0pWfW7j5JV8Hipzie0M7gs6+mmNwv8mRYvBDqVDIMIMYFQ2RIzn5QRsUqaUfXpEa35nYmUz+DSRMpncGsi5fPG32wWWTekXfrNIz7jbx7xGX/ziG/yzUZXhwNS1YwxuaoTKaeqwv25Su+NbAMipUrOP44pK6Fqf/dJrxNKWcwPAHPsBrr/HDscf5eBPUIgVPXOO1Rrg0WGpEpJNP2d/YPBnZqMQSX1Tbnfnw/FyUhiR6yS9h5Xe129XZFS3SoTHXtIq5Jlol2LlCo5f6EwvmDViPTzMi9YQVLGpetoTojxapoTAuXfa7yyBPL5HlywygYMGqlLV5yEbf4Ni1bfiGVesvlKFOl1rTVflUOOebnmK1Skn8isyvQjSkySFwwo1XK0OueA0jxIV8JlEKIr4dJrJzIu/alAxuVP+2dXHPD5aNZDnFbd1/y55kg6oVbLa/w2DJxU5SxayYtkLp8bS/1bFIwLZsjS0s0KRv3BUcGot1UqGMPpGNXH8lDrNoQJtXrMDXTuEa1aVsbrCOiv+qQcy2fSAm54Fbd3Fbd/FXdwFXd4FXd0FXd8FbeQdfMi9utmm3vddHOvm2/udRPOvW7GuddNOfe6OecumnQq+DHdboc810GQlh9eye9dye9fyR9cyR9eyR9dyR9fya+DJL2Aa2ege+0UdK+dg+61k9C9dha6105D99p56C6ciOMUhU1dXRO3979Tvu843/uW7/0yJ3i9DJOoTJ2M3iJS1N19nf4Dx8TGX6Vg1H+KgrFv/3fMEoGrtP3C2Q94z4oEMeeapQOjZNV/hJJ15jPst1rFfCqWM13xSQMBl3zYQED/eb+U5eQDv308oH2RLv3Ehu2ajxyKuOgzhyKEsLxdyQ2QJnF1Q9rpRUv73ODCcECqlmQWYDwlV0t8wBnzYNYbOOQseslmMYEqLvMLO40Eg6s7jQSDSzyNBIPIL40EgyAwjYRgZg7gz6eFU4BwzMxWVJ0KXC+ZWwMWveRlc2vMtXxuKSQsmFsKCQvmlkLCgrmlkLBgbikkBDNzwHhuiRzqGZCfD7giatKCuTVg0Us20KcUPMvnlZR/wayS8i+YU1L+BTNKyr9gPkn5g5lRN55NIod6zE2y/Y2JZQUKTkVqcuEzoFSUI7FZ/Q8Dh6UxtbJwglG7esqJHB7+rRXSk00kfMQHOzlXB4MIqCGpMvlBRVNs7KjHsS5eTcqxMGxczm0aPS7nNg0il3ObxpLLuU1DyuXcgRA7dz6k93RtfGJV7Ett7OCEfjLC/6CFe2wxnnVW5JR8IvFdu+q+y3OsWewjWp0sjQV0Qj2RRw771Uf9jXNPppBgcGwRCRVSTIJXB5QqOSbq2ZDUPD+5jM0gQbmMDY7abXbMGtEq+qDPBcStVktENiwL+0TBbto3CnY9Ts2y64Fqll2PVLPsgWSC6/b7AaVicA0udEVChRSaS3KHT2aSemJpdrr6TK00do10WvGQ1nwjlPIZbIFSPiHjHKsLvSOPjUBjSm6ef07FapCGTsWqXxxKVv3CULLqF4WStV8QjZe1WbePic3LlckZDeqVyRn1Ha5g1He3glHf2QpGvUOKgjEcFqAyGqAB5bKSU4uHRsZlWGRq8aDIuPQjIuPSD4eMS18QVcYVCUBfEkXXQL9rySRbBX1kpN/1hAopLIWX7RqIaSgVctpEtSaSOtrZNgHjNoFZOdBYDtR8G1jwbfNt8ozb5GnaBBe0CUrzydsPOKkLXfkdgXBR7vQRk1nC9BGTWZb0EVMfL0MLDBIdcFd80jlZDiinHc/vix6K071d7HZncrxkCR3nfQKVXOaqvEaCgTavkWCg0Gsk9L39L3zQg1tLNOlj+sAA2HoyqQT9LVtHJeU3yi8lEkqlMOuXVgSjkvLTJEK6TBwCnVSGGBNrYCCXs2glL5JpPO8VjPrprmDUz3IF43ByGxz0ejKJtagtumtmexpRG3eeilPfeyrO/oDGwlHuKnS8J5BgEL4koZ/2i0izIC3QDN/8O1pvGnPpLce8XLNEQXKWeclGwTJSjnm5BsEyEvp5mQqXl0ol863UxTTZIaIC5VWRoUdasJNmlNCjqpJrmjH6HlXFyUAZFwmVUkxqKQ1IzfNOy9gM8k7L2OD064u61ibMHtIq+yA/H7LaSBKjVMoxqXUyolXLIkpwgQ1lcVqlrIey2mV7dDQS1hIrpe1QdYftYo/usJFAgV79tSaBKmPimTm9OxrO6J36O03qXg1Ip5K6eozsAopJqQ1rRgocFxSOnHIvqR455e7XX4br4u5gZwdkjm0KnmmRXPEkY+/K06nADYf5CWjIJ39HhdPiiM0sUjIG8zK8amaDKrxqZoMivGpmvbVqhllvtJphDqTDoA8Bm1BfNADLSjCpOJd1/bLiSyrOZZ0uL7uUdlmu2kExq2F8JHoJgW6CBJ2E31oJvyVkP9zhmXdoygaOyc2hTsVqgHMqVv3IKln1Q6tk9SW9Z5SfaUp+Qe8tzs+kZF3Se4vzMylZhd57TIRrosVzm3Irp/VA9PygDEjNB0TGZjAYMjaDgZCxeaqeNJuMcp4LO+CCaTnLv7RLFBOU9M1DWaZtHEFHXR7mp5mKaaKcqAhtGkujCVXQ8BqPhJkc/YiYydGPjJkcPYSYydHvtGZygvkxPT2UyweTMJnNGEJ48Yzpea+bMRM5F86YiZwLZ8xEzoUzZiLnwhkzkSOfMY2t3sSZW802O2uGpEvnjZT7opkzJ2nZ3JmTtGz2zElaNn/mJC2bQXOSBnOIbGL/dS4yw6kzpJ6dMQPKpRNGxnzRfJkRtGy6zAhaNltmBC2bLDOCls2VGUHDqdJQUH3YUGEmXJyJ/vRbxsMRVTJNJolKNGftldOKzP/iE17kO69iMldP5wUY6KfzAoRqsOIFg8HSldCbO7UpeQ382pS8Bq5tSl4D7zYlrz+In2/D5/U9OKE2T+yh4DRIU6XgNMhTpeDsjyg1Qn1NGIPvl9Cbe3koeQ38O5S8UGJBfyh22a7I8eKD/VRC83DuJQbdpuS6wFwvl7DEZC+XYHDu1UgwMM1oJOh3LJ0EvcejTkI4N9Z687OK6ZqRXmaM1gi4aJyXmaY1Ai4aZYmhetkgiwL6Mb5DLMyRgiQFGFzjw4n5fZksax2zeQ58M0EGGfHNBBnkxzcTZJAt30yQaNnOc0yOLjv0qTzrbnkF2mrB3aeMzcScLWEzMWVL2EzM2BK2vptorp8KY6PQ7RGt+Y4t5TPYraV8Bj6YUj6DaCopn0EYlZRPjy5yPr3bvJwv0iYVk/PF+mRiioF3hDDn+kyLN1QnOy+rfa0Jdh4SG88jBaN+IikY9TNJwaifSgpGoar5nY15YKs+Wn1Aah51JmMzCDqTsRkEXMvYRvc7+fnwUX+jQ6mW3eEIHIa3NgKH4T2NwGGAuSOOftj3Jduzkt25MoyYlXKYRxbMcBuEGMxwG8QazHDr+3COWw/Jc9x6YJ7j1sPzHHcf3USf0JR7hiAwJTc3uahYDSwuKlYDg4uKVbjYJNo1S/q9xzSr+Lw9d0hrbr6V8hlYa6V8BsZZKZ+BLVbKZ2B6lfLpp7icrz/Q1Hu6d+2KT1TrpleNtFxzZX9yDW0g7xn/Xzj/3wj/O8b/s6t9A7jyDUD7BnjlG3pbEXVz1kTycZLJ5QZpTlfDXSNhSDqRxKJz5iVwkmmcVlM4SROK2FJNk+Q0xaZck/jnMb8+8LnjMI547jiMQ507DuMY547DOLi54xi4Ip7ITHJ1HoiMaFq4+vNxh+j6bUNNWf6veWEKHkPZ4ALZQDlfmiS0ZtOmJV48e0aM5pNoxGg+l0aM5lNqxGg+s0aMwRCYgB6YpoPEUGaek5Mo4UQX/tuREQnNfwP7dH/eJwdU7Ia4ppHV0KhnGjCbY2D57ALL5xVYPqPA8rkEls8ioAAoYIBPQAsh4AJ4AobwBC6AJ2AGT2AJPIFL4QlcCk/gUngCl8ITuBSegByeoB6eoByeoB6eoPGADMj1wzAghyO0ggZoBdXACc2AE6qnLjSbtHD5dIXLJ+q0lxqVBproPVC7+OEFwAINgQVeACzQDFjgEmCBlwILvBRY4KXAAi8FFngpsMAJsJyrBB3s+lRhfLLrj4buGEou487XSdCPgk6Cfjh0EvTjopOgHyCdBL1hQidBb3/TSdBflOgkGFyZaKeUoy/BopVhUIVFK6M3lzye9/tHmkD2DmvuSweUxmtExqVfFzIu/VqQcennv4yrt92f0OlUljamZVbbHDqda1Dr4WNoWuKyfmOyfmtk/TZ2Ehq8kOkdBlimYjLP9TcvwCDj37wAKP8+fSqaKflkpx2SVKei1mSBkDFc1lND5oW9NGQ2yIyoZjbIjahmVkz2Or3H2VmTEkfKcVlfjrgXduaIWzHfaO458++h1POzzSB0X0IvzW56Oh8n+GKIKyr2iXyjtMktobKV2msrkVApRb/0B5RKOW2SKW1uvTG5XiJYJhEoJZ4w2hvJooRKKRX+VOjm74hWKSs9ISM5hE7dT2Y5fXtSpSSeCV/vHymhl2TVqAi27VFt3xU5SxWa2Tt0yHjFDOO9WidG8j7xsWY26qTPfNXgLcDwLUOmiXSWM8WoLppA2EixDYqiSbgMKqJJuPSbpIxLvzvKuPptMT/vdvZDkZ3uTfpoQm2eQ0LBaZBDQsFpkENCwdlf2KPjxRuTjFUqV7sxjYmnF6ICgXaDGhNLpWXlw2FXoowcDcgOrsljKWOYbaN++5tQG88jFad+Hqk4ofQbjBJByhhme4aDu26DknLMyq1Z2rv6vjyZN1jguaj3p/xg0LaFCSjlLLNfbZyIUsWkka5RbMbEs9IMFIopuVSiqUIxop0q+31H9BHVC4IXlfzzb5hXHuQs5oeuOXaDU9ccu8Ehdo7dm+8WsLxbwHXdAq7rFnBdt5hf2s2y+/O9Cpf3KryuV+F1vTq9YZKSecu/yzMDAH+5ZP+6HvOv6zH/unnoT5ZnhjHRd4pPWJOOr6FSV4B7QJ/60tNmpeAGLOYXZXPsBtdlc+wGl2Zz7AZXZ3PsvqTunEm21Qn19Hhe7lBl14810d0X1QefYzQPINILMYgm0gsxCC3SCzGIM9ILMQg60gsxiEDSCzEIR9ILMYhN0guJu9n4tyMNySRUx0VzUc1mPBO1IvTzUCtCPwu1IvRzUCvCHySnPdX9TZcRRquYpslRUX1PwyW6cxJP4bHQvCCXonnJvO1GymJuwJljN7DizLEbmHLm2A1ygs6x+7qhM8itOsN4ZQ8vzbiqF3Jpby/Nw6oXIpohq0PBUjItmdEKpgVGyVkBJrbJWQEmJspZAQa9PC9A6OHidMB1bd897hf1sZLNvJd1Igz6WSfCoKd1Igz6Wiei721U2HZVJiXZk2pOm2ExmZP5ZQ2RhA7ZSNhpLEx88Qz5vMFoltXcRmgixsBcayJGP+xGYjyx+4zta8WseY0WptrTmuOPR55q6XHJWGi5F5XiMpFkVp/LRJJZ0S4TSf24eI7HL/gMk5VJ6I17TM2r7yM1r75X1Lx9P+AuLR0toGoyk6Qcxn0xx63vjTlufX/McXsTnY1r/uZqsEC/WEOb8porZlNec31sytv3w6443OGK1mw4lcvUqFlO474xkaLvJRMp+v4ykaLf7k2kCPkvMErvuStUvSiv4hyjeW4MvRCDTBl6IQZ5M/RCvGkiyr5kt1y/MfVsMZU314I9KoyyXM2zLk+LOSdmQXLMOTEGuUFMxBgkDDERY5DvzESMQdYzEzF6u6CRmGhuarVFnt2lE6tjvGZajYVcNKnGQi6aUmMhF02osRDfpOfBpT0P1uh5sEbPgzV6HqzR82BJz8NLex6u0fNwjZ6Ha/Q8XKPn4ZKe9y7teW+NnvfW6HlvjZ731uh5b0nP+5f2vL9Gz/tr9Ly/Rs/7a/S8v6Tng0t7Plij54M1ej5Yo+eDNXo+WNLz4aU9H67R8+EaPR+u0fPhGj0fyizLnctESsux6626Y/olplwFr5H9VsErONyyWK0ipZRot0OfjczUCibzr5oXYPBp8wIMjNLzAvrz8R7doX8VB2oSPJxYKJiB6VjOMzVQy+lMykzMs5qbpk3EGNilTcQYGKVNxPRD8xbV5aF6tH8gA0gTz70xqWynYjLuMo0AfWdpBPRr84Dp3W1ZZTQ3dW0y8aQcxl82x63/rDlu/dDPcevhe467x+2/04IT5wqRidVm3rN/4bap2V6d4TPuW70MfQ/rZej7WS9D39t6GXqzkl6G3qakl6E3KOll6P3M9DIMkjsYTDKD9A4GUuTFsBYWZluILErWZSWuFmKKktWb6YKlhcCurwB2femv62t+zW+0PbIey/pkNlckHBP95xdC9Y5RvaNU73kj3usHYI7ReAwMhOiHwUCIfiQMhOhR2UCIHpYNhASSacG9MBbNC5FlwbKZYTdZMzPsJgtmht2kNN4Mu3C6rNJ7AtfpwKPswpQwclk0Lab8dfpA2TH1ND5OpOCe/2ZHShXbgkOlRoTJsVIjAsq/84Q/n3jCNvOP7Hnm+9AglHdCPi/xWJUpnYYGEaFKNqM3LJZ92VgPmReO8pBZMb5mZRXkLJqe6u8x9e5uM4wX9pxUyNIelAoxMcFohXjyTqPmAZQuWBQNgyIzBdGCjqgqarPKWgoe4wGY5zdNXKHiN01hoeIXlD6c8aQetFLlOIRi4T70SyPrHZPVaBXvRn4gshfOKxMSBnNVQs1soEiomQ3UCDWzpvf1EKFmu6pjFsKDVsRlnaSAhowGlR5Y4baa57oxmDsqJuNu0gjQd5JGQL8TfTwUn/CiUqhSDuMvm+PWf9Yct37Y57iF8P3i8NjOiQxV80rXmNg8VFrOaBAkLWc0CI+WMxoE6MsZ9ec9BWMg7epdcXd/Mu5rRn1RZ4ucy3pb5FzW3SLnsv4WOZd1uMjZ9/iRJlVl7q4LVryKyTyAfV6AQQj7vACDIPZ5AQZh7PMChIJpRIGpaAqCc2F2mzcmX3C9pmA1uVJTsPYbwz06Hh/te6I1Z+ix1uelktBPg/KJ0oZZvE6dFnZeLC48ayKge+vxoAnSNxcGFMLgJcKgQph3iTCPCyOd+2aHHvdldbwv6r3ZbaWUw3j6zXHrZ+Act345z3FLgoqWuOurmJaHF13qpq8RsCDQSOee3weXcmgjJ7Y9PlU0zn5JdK6c+YIo3VlBS6J1ZwUtidqdFTS46ckeyuojPVRcaVX9RRDVXK7ZH8b5B+n7WK3WtkicHp/lLBOInpLpTYQKHgPZ9EMXiqYsS27C1OxG12BqdqM7MDW7iUl/ht2f6VXjvHnzrAbjx8OAFr6DMxlIN8ipp2IykH7HPWTchfJbtivm4EjEJfNwJALqvxNc9p3g+u8E138nMP9OeNl3wuu/E17/ndD8O73LvtO7/ju967/TM/9O/7Lv9K//Tv/67/Qn3/kjVcna/dz+pTjd22/OVV1W9msaM69VTw34pxmLzkSX4Q6p96io6tPjDtdmKp6acYF6pxViotpphZiodVohJglZtEL6vbk41Cd0V6F9OyFM86TOMU4vmtTE4NK3gCVvgZe+BS55i3fpW7wlb1mQIfenTsrY27Z70Xtyfng84d1Ops7PvmaW03jxmUjRrz4TKfrlZyJFv/5MpOgtpSZS9D6iJlL0XqImUvR+oiZSDDxFjaadga+okRyDcmBGclQz2F02hV3VHHaXTWJXNYvdZdPYVc1jd9lEdnv7/x0+4IoHI6FCcGpfmL3wh17M65/sXzoxE0PFD/T5jzrbREc1AWr25KfDyUQAI5NL+Et5V9Z6CYxM0Qbq2GAggtMZ4/OUR4/GUx44bOub8viobymlkn/rh7LcGXwqI1v2pSKL4YeKLOPvRLXJkDAy+Ze2+/YHrbPalHxWorGsZf03ZDLswSGTfp+WMOm3ZQmTfheWMAWjqWhqyppQL5yYU07T+TnlHE3T7/VmLIFuMq0+FfUZ7ewM18XdoTthVoZI/TPn/pZzt2EblVw69YLROenKGObbbOajK2cxHsVZdv1QzrL34znoTeplZuS6qeSa9NuY8rXW9i7l0I6HgWVVzqJt8bf4hIqd/XOBHxa1W+AzHnO9DP3A62XoAVMvQ4+fehl6ONXL0B9p9DLCbuzLw47G0z6gU3pvnJ9PxWQ86hoB+iHXCNCPt0ZAfy34TYUfqL7Q6uWNb6rR+V/Da9xdZnL0vWYmR995ZnK8ocG0IXqg5s63RfbP8lwd8CNXgu3v8hxr/LVNhUzg7cfi7p55UtlcBL9INxtBDa/xCJrJ0Y+gmRz9CJrJ6UfwPdqfK3La/P682/GiYp2dzNAUZiDA3CJmLszAMGYuzMA+Zi6s79z6XOW0VFu529kJOehkzGXhcXEZXo2YfjApYXf/QA/M80M3IZ8ssSGJu0Ccq5EFFsgCGllwgSyokeUtkDW1XfuOTf68P+6Kk/2eT5MWS/muPStdy228kEwl6VeRqST9EjKV1K+f7+nV3TvRva7r+vd6ZUbLbdybppL0vWkqSd+bppKE3qSXY/g92xy+Le6KE1El36LqIz5R86QR2JuJMO/XJeIMOneJOChcA6GKoOlfGd+7NinQ/yrLfaN4mEw2UyELLocWCTS5J1ok0OTKaJFAT8jW/FgeMvt0j+1PZZFpEjQPaEeA+//9f/8/qOg6NQ==','no'),(66201,'_transient_timeout_wc_report_orders_stats_171178ea9da6e90148cae7f4bca22481','1696119334','no'),(66202,'_transient_wc_report_orders_stats_171178ea9da6e90148cae7f4bca22481','a:2:{s:7:\"version\";s:10:\"1660125611\";s:5:\"value\";O:8:\"stdClass\":5:{s:6:\"totals\";O:8:\"stdClass\":15:{s:12:\"orders_count\";i:0;s:14:\"num_items_sold\";i:0;s:11:\"gross_sales\";d:0;s:11:\"total_sales\";d:0;s:7:\"coupons\";d:0;s:13:\"coupons_count\";i:0;s:7:\"refunds\";d:0;s:5:\"taxes\";d:0;s:8:\"shipping\";d:0;s:11:\"net_revenue\";d:0;s:19:\"avg_items_per_order\";d:0;s:15:\"avg_order_value\";d:0;s:15:\"total_customers\";i:0;s:8:\"products\";i:0;s:8:\"segments\";a:0:{}}s:9:\"intervals\";a:4:{i:0;a:6:{s:8:\"interval\";s:7:\"2023-38\";s:10:\"date_start\";s:19:\"2023-09-18 00:00:00\";s:14:\"date_start_gmt\";s:19:\"2023-09-18 00:00:00\";s:8:\"date_end\";s:19:\"2023-09-24 23:59:59\";s:12:\"date_end_gmt\";s:19:\"2023-09-24 23:59:59\";s:9:\"subtotals\";O:8:\"stdClass\":14:{s:12:\"orders_count\";i:0;s:14:\"num_items_sold\";i:0;s:11:\"gross_sales\";d:0;s:11:\"total_sales\";d:0;s:7:\"coupons\";d:0;s:13:\"coupons_count\";i:0;s:7:\"refunds\";d:0;s:5:\"taxes\";d:0;s:8:\"shipping\";d:0;s:11:\"net_revenue\";d:0;s:19:\"avg_items_per_order\";d:0;s:15:\"avg_order_value\";d:0;s:15:\"total_customers\";i:0;s:8:\"segments\";a:0:{}}}i:1;a:6:{s:8:\"interval\";s:7:\"2023-37\";s:10:\"date_start\";s:19:\"2023-09-11 00:00:00\";s:14:\"date_start_gmt\";s:19:\"2023-09-11 00:00:00\";s:8:\"date_end\";s:19:\"2023-09-17 23:59:59\";s:12:\"date_end_gmt\";s:19:\"2023-09-17 23:59:59\";s:9:\"subtotals\";O:8:\"stdClass\":14:{s:12:\"orders_count\";i:0;s:14:\"num_items_sold\";i:0;s:11:\"gross_sales\";d:0;s:11:\"total_sales\";d:0;s:7:\"coupons\";d:0;s:13:\"coupons_count\";i:0;s:7:\"refunds\";d:0;s:5:\"taxes\";d:0;s:8:\"shipping\";d:0;s:11:\"net_revenue\";d:0;s:19:\"avg_items_per_order\";d:0;s:15:\"avg_order_value\";d:0;s:15:\"total_customers\";i:0;s:8:\"segments\";a:0:{}}}i:2;a:6:{s:8:\"interval\";s:7:\"2023-36\";s:10:\"date_start\";s:19:\"2023-09-04 00:00:00\";s:14:\"date_start_gmt\";s:19:\"2023-09-04 00:00:00\";s:8:\"date_end\";s:19:\"2023-09-10 23:59:59\";s:12:\"date_end_gmt\";s:19:\"2023-09-10 23:59:59\";s:9:\"subtotals\";O:8:\"stdClass\":14:{s:12:\"orders_count\";i:0;s:14:\"num_items_sold\";i:0;s:11:\"gross_sales\";d:0;s:11:\"total_sales\";d:0;s:7:\"coupons\";d:0;s:13:\"coupons_count\";i:0;s:7:\"refunds\";d:0;s:5:\"taxes\";d:0;s:8:\"shipping\";d:0;s:11:\"net_revenue\";d:0;s:19:\"avg_items_per_order\";d:0;s:15:\"avg_order_value\";d:0;s:15:\"total_customers\";i:0;s:8:\"segments\";a:0:{}}}i:3;a:6:{s:8:\"interval\";s:7:\"2023-35\";s:10:\"date_start\";s:19:\"2023-09-01 00:00:00\";s:14:\"date_start_gmt\";s:19:\"2023-09-01 00:00:00\";s:8:\"date_end\";s:19:\"2023-09-03 23:59:59\";s:12:\"date_end_gmt\";s:19:\"2023-09-03 23:59:59\";s:9:\"subtotals\";O:8:\"stdClass\":14:{s:12:\"orders_count\";i:0;s:14:\"num_items_sold\";i:0;s:11:\"gross_sales\";d:0;s:11:\"total_sales\";d:0;s:7:\"coupons\";d:0;s:13:\"coupons_count\";i:0;s:7:\"refunds\";d:0;s:5:\"taxes\";d:0;s:8:\"shipping\";d:0;s:11:\"net_revenue\";d:0;s:19:\"avg_items_per_order\";d:0;s:15:\"avg_order_value\";d:0;s:15:\"total_customers\";i:0;s:8:\"segments\";a:0:{}}}}s:5:\"total\";i:4;s:5:\"pages\";i:1;s:7:\"page_no\";i:1;}}','no'),(66203,'_transient_timeout_wc_report_products_stats_8bbf850fb77a214545caceb00f08b0f5','1696119334','no'),(66204,'_transient_wc_report_products_stats_8bbf850fb77a214545caceb00f08b0f5','a:2:{s:7:\"version\";s:10:\"1660125611\";s:5:\"value\";O:8:\"stdClass\":5:{s:6:\"totals\";O:8:\"stdClass\":6:{s:10:\"items_sold\";i:0;s:11:\"net_revenue\";d:0;s:12:\"orders_count\";i:0;s:14:\"products_count\";i:0;s:16:\"variations_count\";i:0;s:8:\"segments\";a:0:{}}s:9:\"intervals\";a:4:{i:0;a:6:{s:8:\"interval\";s:7:\"2023-38\";s:10:\"date_start\";s:19:\"2023-09-18 00:00:00\";s:14:\"date_start_gmt\";s:19:\"2023-09-18 00:00:00\";s:8:\"date_end\";s:19:\"2023-09-24 23:59:59\";s:12:\"date_end_gmt\";s:19:\"2023-09-24 23:59:59\";s:9:\"subtotals\";O:8:\"stdClass\":6:{s:10:\"items_sold\";i:0;s:11:\"net_revenue\";d:0;s:12:\"orders_count\";i:0;s:14:\"products_count\";i:0;s:16:\"variations_count\";i:0;s:8:\"segments\";a:0:{}}}i:1;a:6:{s:8:\"interval\";s:7:\"2023-37\";s:10:\"date_start\";s:19:\"2023-09-11 00:00:00\";s:14:\"date_start_gmt\";s:19:\"2023-09-11 00:00:00\";s:8:\"date_end\";s:19:\"2023-09-17 23:59:59\";s:12:\"date_end_gmt\";s:19:\"2023-09-17 23:59:59\";s:9:\"subtotals\";O:8:\"stdClass\":6:{s:10:\"items_sold\";i:0;s:11:\"net_revenue\";d:0;s:12:\"orders_count\";i:0;s:14:\"products_count\";i:0;s:16:\"variations_count\";i:0;s:8:\"segments\";a:0:{}}}i:2;a:6:{s:8:\"interval\";s:7:\"2023-36\";s:10:\"date_start\";s:19:\"2023-09-04 00:00:00\";s:14:\"date_start_gmt\";s:19:\"2023-09-04 00:00:00\";s:8:\"date_end\";s:19:\"2023-09-10 23:59:59\";s:12:\"date_end_gmt\";s:19:\"2023-09-10 23:59:59\";s:9:\"subtotals\";O:8:\"stdClass\":6:{s:10:\"items_sold\";i:0;s:11:\"net_revenue\";d:0;s:12:\"orders_count\";i:0;s:14:\"products_count\";i:0;s:16:\"variations_count\";i:0;s:8:\"segments\";a:0:{}}}i:3;a:6:{s:8:\"interval\";s:7:\"2023-35\";s:10:\"date_start\";s:19:\"2023-09-01 00:00:00\";s:14:\"date_start_gmt\";s:19:\"2023-09-01 00:00:00\";s:8:\"date_end\";s:19:\"2023-09-03 23:59:59\";s:12:\"date_end_gmt\";s:19:\"2023-09-03 23:59:59\";s:9:\"subtotals\";O:8:\"stdClass\":6:{s:10:\"items_sold\";i:0;s:11:\"net_revenue\";d:0;s:12:\"orders_count\";i:0;s:14:\"products_count\";i:0;s:16:\"variations_count\";i:0;s:8:\"segments\";a:0:{}}}}s:5:\"total\";i:4;s:5:\"pages\";i:1;s:7:\"page_no\";i:1;}}','no'),(66205,'_transient_timeout_wc_report_variations_stats_4659516b3910b78fe631fad329808e18','1696119334','no'),(66206,'_transient_wc_report_variations_stats_4659516b3910b78fe631fad329808e18','a:2:{s:7:\"version\";s:10:\"1660125611\";s:5:\"value\";O:8:\"stdClass\":5:{s:6:\"totals\";O:8:\"stdClass\":5:{s:10:\"items_sold\";i:0;s:11:\"net_revenue\";d:0;s:12:\"orders_count\";i:0;s:16:\"variations_count\";i:0;s:8:\"segments\";a:0:{}}s:9:\"intervals\";a:4:{i:0;a:6:{s:8:\"interval\";s:7:\"2023-38\";s:10:\"date_start\";s:19:\"2023-09-18 00:00:00\";s:14:\"date_start_gmt\";s:19:\"2023-09-18 00:00:00\";s:8:\"date_end\";s:19:\"2023-09-24 23:59:59\";s:12:\"date_end_gmt\";s:19:\"2023-09-24 23:59:59\";s:9:\"subtotals\";O:8:\"stdClass\":5:{s:10:\"items_sold\";i:0;s:11:\"net_revenue\";d:0;s:12:\"orders_count\";i:0;s:16:\"variations_count\";i:0;s:8:\"segments\";a:0:{}}}i:1;a:6:{s:8:\"interval\";s:7:\"2023-37\";s:10:\"date_start\";s:19:\"2023-09-11 00:00:00\";s:14:\"date_start_gmt\";s:19:\"2023-09-11 00:00:00\";s:8:\"date_end\";s:19:\"2023-09-17 23:59:59\";s:12:\"date_end_gmt\";s:19:\"2023-09-17 23:59:59\";s:9:\"subtotals\";O:8:\"stdClass\":5:{s:10:\"items_sold\";i:0;s:11:\"net_revenue\";d:0;s:12:\"orders_count\";i:0;s:16:\"variations_count\";i:0;s:8:\"segments\";a:0:{}}}i:2;a:6:{s:8:\"interval\";s:7:\"2023-36\";s:10:\"date_start\";s:19:\"2023-09-04 00:00:00\";s:14:\"date_start_gmt\";s:19:\"2023-09-04 00:00:00\";s:8:\"date_end\";s:19:\"2023-09-10 23:59:59\";s:12:\"date_end_gmt\";s:19:\"2023-09-10 23:59:59\";s:9:\"subtotals\";O:8:\"stdClass\":5:{s:10:\"items_sold\";i:0;s:11:\"net_revenue\";d:0;s:12:\"orders_count\";i:0;s:16:\"variations_count\";i:0;s:8:\"segments\";a:0:{}}}i:3;a:6:{s:8:\"interval\";s:7:\"2023-35\";s:10:\"date_start\";s:19:\"2023-09-01 00:00:00\";s:14:\"date_start_gmt\";s:19:\"2023-09-01 00:00:00\";s:8:\"date_end\";s:19:\"2023-09-03 23:59:59\";s:12:\"date_end_gmt\";s:19:\"2023-09-03 23:59:59\";s:9:\"subtotals\";O:8:\"stdClass\":5:{s:10:\"items_sold\";i:0;s:11:\"net_revenue\";d:0;s:12:\"orders_count\";i:0;s:16:\"variations_count\";i:0;s:8:\"segments\";a:0:{}}}}s:5:\"total\";i:4;s:5:\"pages\";i:1;s:7:\"page_no\";i:1;}}','no'),(66207,'_transient_timeout_wc_report_orders_stats_4b6d2f63605d80e43d6f4a07f02e10d4','1696119334','no'),(66208,'_transient_wc_report_orders_stats_4b6d2f63605d80e43d6f4a07f02e10d4','a:2:{s:7:\"version\";s:10:\"1660125611\";s:5:\"value\";O:8:\"stdClass\":5:{s:6:\"totals\";O:8:\"stdClass\":4:{s:11:\"net_revenue\";d:0;s:8:\"products\";i:0;s:13:\"coupons_count\";i:0;s:8:\"segments\";a:0:{}}s:9:\"intervals\";a:24:{i:0;a:6:{s:8:\"interval\";s:10:\"2023-09-01\";s:10:\"date_start\";s:19:\"2023-09-01 00:00:00\";s:14:\"date_start_gmt\";s:19:\"2023-09-01 00:00:00\";s:8:\"date_end\";s:19:\"2023-09-01 23:59:59\";s:12:\"date_end_gmt\";s:19:\"2023-09-01 23:59:59\";s:9:\"subtotals\";O:8:\"stdClass\":3:{s:11:\"net_revenue\";d:0;s:13:\"coupons_count\";i:0;s:8:\"segments\";a:0:{}}}i:1;a:6:{s:8:\"interval\";s:10:\"2023-09-02\";s:10:\"date_start\";s:19:\"2023-09-02 00:00:00\";s:14:\"date_start_gmt\";s:19:\"2023-09-02 00:00:00\";s:8:\"date_end\";s:19:\"2023-09-02 23:59:59\";s:12:\"date_end_gmt\";s:19:\"2023-09-02 23:59:59\";s:9:\"subtotals\";O:8:\"stdClass\":3:{s:11:\"net_revenue\";d:0;s:13:\"coupons_count\";i:0;s:8:\"segments\";a:0:{}}}i:2;a:6:{s:8:\"interval\";s:10:\"2023-09-03\";s:10:\"date_start\";s:19:\"2023-09-03 00:00:00\";s:14:\"date_start_gmt\";s:19:\"2023-09-03 00:00:00\";s:8:\"date_end\";s:19:\"2023-09-03 23:59:59\";s:12:\"date_end_gmt\";s:19:\"2023-09-03 23:59:59\";s:9:\"subtotals\";O:8:\"stdClass\":3:{s:11:\"net_revenue\";d:0;s:13:\"coupons_count\";i:0;s:8:\"segments\";a:0:{}}}i:3;a:6:{s:8:\"interval\";s:10:\"2023-09-04\";s:10:\"date_start\";s:19:\"2023-09-04 00:00:00\";s:14:\"date_start_gmt\";s:19:\"2023-09-04 00:00:00\";s:8:\"date_end\";s:19:\"2023-09-04 23:59:59\";s:12:\"date_end_gmt\";s:19:\"2023-09-04 23:59:59\";s:9:\"subtotals\";O:8:\"stdClass\":3:{s:11:\"net_revenue\";d:0;s:13:\"coupons_count\";i:0;s:8:\"segments\";a:0:{}}}i:4;a:6:{s:8:\"interval\";s:10:\"2023-09-05\";s:10:\"date_start\";s:19:\"2023-09-05 00:00:00\";s:14:\"date_start_gmt\";s:19:\"2023-09-05 00:00:00\";s:8:\"date_end\";s:19:\"2023-09-05 23:59:59\";s:12:\"date_end_gmt\";s:19:\"2023-09-05 23:59:59\";s:9:\"subtotals\";O:8:\"stdClass\":3:{s:11:\"net_revenue\";d:0;s:13:\"coupons_count\";i:0;s:8:\"segments\";a:0:{}}}i:5;a:6:{s:8:\"interval\";s:10:\"2023-09-06\";s:10:\"date_start\";s:19:\"2023-09-06 00:00:00\";s:14:\"date_start_gmt\";s:19:\"2023-09-06 00:00:00\";s:8:\"date_end\";s:19:\"2023-09-06 23:59:59\";s:12:\"date_end_gmt\";s:19:\"2023-09-06 23:59:59\";s:9:\"subtotals\";O:8:\"stdClass\":3:{s:11:\"net_revenue\";d:0;s:13:\"coupons_count\";i:0;s:8:\"segments\";a:0:{}}}i:6;a:6:{s:8:\"interval\";s:10:\"2023-09-07\";s:10:\"date_start\";s:19:\"2023-09-07 00:00:00\";s:14:\"date_start_gmt\";s:19:\"2023-09-07 00:00:00\";s:8:\"date_end\";s:19:\"2023-09-07 23:59:59\";s:12:\"date_end_gmt\";s:19:\"2023-09-07 23:59:59\";s:9:\"subtotals\";O:8:\"stdClass\":3:{s:11:\"net_revenue\";d:0;s:13:\"coupons_count\";i:0;s:8:\"segments\";a:0:{}}}i:7;a:6:{s:8:\"interval\";s:10:\"2023-09-08\";s:10:\"date_start\";s:19:\"2023-09-08 00:00:00\";s:14:\"date_start_gmt\";s:19:\"2023-09-08 00:00:00\";s:8:\"date_end\";s:19:\"2023-09-08 23:59:59\";s:12:\"date_end_gmt\";s:19:\"2023-09-08 23:59:59\";s:9:\"subtotals\";O:8:\"stdClass\":3:{s:11:\"net_revenue\";d:0;s:13:\"coupons_count\";i:0;s:8:\"segments\";a:0:{}}}i:8;a:6:{s:8:\"interval\";s:10:\"2023-09-09\";s:10:\"date_start\";s:19:\"2023-09-09 00:00:00\";s:14:\"date_start_gmt\";s:19:\"2023-09-09 00:00:00\";s:8:\"date_end\";s:19:\"2023-09-09 23:59:59\";s:12:\"date_end_gmt\";s:19:\"2023-09-09 23:59:59\";s:9:\"subtotals\";O:8:\"stdClass\":3:{s:11:\"net_revenue\";d:0;s:13:\"coupons_count\";i:0;s:8:\"segments\";a:0:{}}}i:9;a:6:{s:8:\"interval\";s:10:\"2023-09-10\";s:10:\"date_start\";s:19:\"2023-09-10 00:00:00\";s:14:\"date_start_gmt\";s:19:\"2023-09-10 00:00:00\";s:8:\"date_end\";s:19:\"2023-09-10 23:59:59\";s:12:\"date_end_gmt\";s:19:\"2023-09-10 23:59:59\";s:9:\"subtotals\";O:8:\"stdClass\":3:{s:11:\"net_revenue\";d:0;s:13:\"coupons_count\";i:0;s:8:\"segments\";a:0:{}}}i:10;a:6:{s:8:\"interval\";s:10:\"2023-09-11\";s:10:\"date_start\";s:19:\"2023-09-11 00:00:00\";s:14:\"date_start_gmt\";s:19:\"2023-09-11 00:00:00\";s:8:\"date_end\";s:19:\"2023-09-11 23:59:59\";s:12:\"date_end_gmt\";s:19:\"2023-09-11 23:59:59\";s:9:\"subtotals\";O:8:\"stdClass\":3:{s:11:\"net_revenue\";d:0;s:13:\"coupons_count\";i:0;s:8:\"segments\";a:0:{}}}i:11;a:6:{s:8:\"interval\";s:10:\"2023-09-12\";s:10:\"date_start\";s:19:\"2023-09-12 00:00:00\";s:14:\"date_start_gmt\";s:19:\"2023-09-12 00:00:00\";s:8:\"date_end\";s:19:\"2023-09-12 23:59:59\";s:12:\"date_end_gmt\";s:19:\"2023-09-12 23:59:59\";s:9:\"subtotals\";O:8:\"stdClass\":3:{s:11:\"net_revenue\";d:0;s:13:\"coupons_count\";i:0;s:8:\"segments\";a:0:{}}}i:12;a:6:{s:8:\"interval\";s:10:\"2023-09-13\";s:10:\"date_start\";s:19:\"2023-09-13 00:00:00\";s:14:\"date_start_gmt\";s:19:\"2023-09-13 00:00:00\";s:8:\"date_end\";s:19:\"2023-09-13 23:59:59\";s:12:\"date_end_gmt\";s:19:\"2023-09-13 23:59:59\";s:9:\"subtotals\";O:8:\"stdClass\":3:{s:11:\"net_revenue\";d:0;s:13:\"coupons_count\";i:0;s:8:\"segments\";a:0:{}}}i:13;a:6:{s:8:\"interval\";s:10:\"2023-09-14\";s:10:\"date_start\";s:19:\"2023-09-14 00:00:00\";s:14:\"date_start_gmt\";s:19:\"2023-09-14 00:00:00\";s:8:\"date_end\";s:19:\"2023-09-14 23:59:59\";s:12:\"date_end_gmt\";s:19:\"2023-09-14 23:59:59\";s:9:\"subtotals\";O:8:\"stdClass\":3:{s:11:\"net_revenue\";d:0;s:13:\"coupons_count\";i:0;s:8:\"segments\";a:0:{}}}i:14;a:6:{s:8:\"interval\";s:10:\"2023-09-15\";s:10:\"date_start\";s:19:\"2023-09-15 00:00:00\";s:14:\"date_start_gmt\";s:19:\"2023-09-15 00:00:00\";s:8:\"date_end\";s:19:\"2023-09-15 23:59:59\";s:12:\"date_end_gmt\";s:19:\"2023-09-15 23:59:59\";s:9:\"subtotals\";O:8:\"stdClass\":3:{s:11:\"net_revenue\";d:0;s:13:\"coupons_count\";i:0;s:8:\"segments\";a:0:{}}}i:15;a:6:{s:8:\"interval\";s:10:\"2023-09-16\";s:10:\"date_start\";s:19:\"2023-09-16 00:00:00\";s:14:\"date_start_gmt\";s:19:\"2023-09-16 00:00:00\";s:8:\"date_end\";s:19:\"2023-09-16 23:59:59\";s:12:\"date_end_gmt\";s:19:\"2023-09-16 23:59:59\";s:9:\"subtotals\";O:8:\"stdClass\":3:{s:11:\"net_revenue\";d:0;s:13:\"coupons_count\";i:0;s:8:\"segments\";a:0:{}}}i:16;a:6:{s:8:\"interval\";s:10:\"2023-09-17\";s:10:\"date_start\";s:19:\"2023-09-17 00:00:00\";s:14:\"date_start_gmt\";s:19:\"2023-09-17 00:00:00\";s:8:\"date_end\";s:19:\"2023-09-17 23:59:59\";s:12:\"date_end_gmt\";s:19:\"2023-09-17 23:59:59\";s:9:\"subtotals\";O:8:\"stdClass\":3:{s:11:\"net_revenue\";d:0;s:13:\"coupons_count\";i:0;s:8:\"segments\";a:0:{}}}i:17;a:6:{s:8:\"interval\";s:10:\"2023-09-18\";s:10:\"date_start\";s:19:\"2023-09-18 00:00:00\";s:14:\"date_start_gmt\";s:19:\"2023-09-18 00:00:00\";s:8:\"date_end\";s:19:\"2023-09-18 23:59:59\";s:12:\"date_end_gmt\";s:19:\"2023-09-18 23:59:59\";s:9:\"subtotals\";O:8:\"stdClass\":3:{s:11:\"net_revenue\";d:0;s:13:\"coupons_count\";i:0;s:8:\"segments\";a:0:{}}}i:18;a:6:{s:8:\"interval\";s:10:\"2023-09-19\";s:10:\"date_start\";s:19:\"2023-09-19 00:00:00\";s:14:\"date_start_gmt\";s:19:\"2023-09-19 00:00:00\";s:8:\"date_end\";s:19:\"2023-09-19 23:59:59\";s:12:\"date_end_gmt\";s:19:\"2023-09-19 23:59:59\";s:9:\"subtotals\";O:8:\"stdClass\":3:{s:11:\"net_revenue\";d:0;s:13:\"coupons_count\";i:0;s:8:\"segments\";a:0:{}}}i:19;a:6:{s:8:\"interval\";s:10:\"2023-09-20\";s:10:\"date_start\";s:19:\"2023-09-20 00:00:00\";s:14:\"date_start_gmt\";s:19:\"2023-09-20 00:00:00\";s:8:\"date_end\";s:19:\"2023-09-20 23:59:59\";s:12:\"date_end_gmt\";s:19:\"2023-09-20 23:59:59\";s:9:\"subtotals\";O:8:\"stdClass\":3:{s:11:\"net_revenue\";d:0;s:13:\"coupons_count\";i:0;s:8:\"segments\";a:0:{}}}i:20;a:6:{s:8:\"interval\";s:10:\"2023-09-21\";s:10:\"date_start\";s:19:\"2023-09-21 00:00:00\";s:14:\"date_start_gmt\";s:19:\"2023-09-21 00:00:00\";s:8:\"date_end\";s:19:\"2023-09-21 23:59:59\";s:12:\"date_end_gmt\";s:19:\"2023-09-21 23:59:59\";s:9:\"subtotals\";O:8:\"stdClass\":3:{s:11:\"net_revenue\";d:0;s:13:\"coupons_count\";i:0;s:8:\"segments\";a:0:{}}}i:21;a:6:{s:8:\"interval\";s:10:\"2023-09-22\";s:10:\"date_start\";s:19:\"2023-09-22 00:00:00\";s:14:\"date_start_gmt\";s:19:\"2023-09-22 00:00:00\";s:8:\"date_end\";s:19:\"2023-09-22 23:59:59\";s:12:\"date_end_gmt\";s:19:\"2023-09-22 23:59:59\";s:9:\"subtotals\";O:8:\"stdClass\":3:{s:11:\"net_revenue\";d:0;s:13:\"coupons_count\";i:0;s:8:\"segments\";a:0:{}}}i:22;a:6:{s:8:\"interval\";s:10:\"2023-09-23\";s:10:\"date_start\";s:19:\"2023-09-23 00:00:00\";s:14:\"date_start_gmt\";s:19:\"2023-09-23 00:00:00\";s:8:\"date_end\";s:19:\"2023-09-23 23:59:59\";s:12:\"date_end_gmt\";s:19:\"2023-09-23 23:59:59\";s:9:\"subtotals\";O:8:\"stdClass\":3:{s:11:\"net_revenue\";d:0;s:13:\"coupons_count\";i:0;s:8:\"segments\";a:0:{}}}i:23;a:6:{s:8:\"interval\";s:10:\"2023-09-24\";s:10:\"date_start\";s:19:\"2023-09-24 00:00:00\";s:14:\"date_start_gmt\";s:19:\"2023-09-24 00:00:00\";s:8:\"date_end\";s:19:\"2023-09-24 23:59:59\";s:12:\"date_end_gmt\";s:19:\"2023-09-24 23:59:59\";s:9:\"subtotals\";O:8:\"stdClass\":3:{s:11:\"net_revenue\";d:0;s:13:\"coupons_count\";i:0;s:8:\"segments\";a:0:{}}}}s:5:\"total\";i:24;s:5:\"pages\";i:1;s:7:\"page_no\";i:1;}}','no'),(65752,'_site_transient_timeout_browser_b104917d5b32679ec35ec15d6804ed2e','1696069336','no'),(66199,'_transient_timeout_wc_report_orders_stats_3a1fa6456fe569a735aaccb3e0eb3122','1696119334','no'),(66200,'_transient_wc_report_orders_stats_3a1fa6456fe569a735aaccb3e0eb3122','a:2:{s:7:\"version\";s:10:\"1660125611\";s:5:\"value\";O:8:\"stdClass\":5:{s:6:\"totals\";O:8:\"stdClass\":15:{s:12:\"orders_count\";i:0;s:14:\"num_items_sold\";i:0;s:11:\"gross_sales\";d:0;s:11:\"total_sales\";d:0;s:7:\"coupons\";d:0;s:13:\"coupons_count\";i:0;s:7:\"refunds\";d:0;s:5:\"taxes\";d:0;s:8:\"shipping\";d:0;s:11:\"net_revenue\";d:0;s:19:\"avg_items_per_order\";d:0;s:15:\"avg_order_value\";d:0;s:15:\"total_customers\";i:0;s:8:\"products\";i:0;s:8:\"segments\";a:0:{}}s:9:\"intervals\";a:4:{i:0;a:6:{s:8:\"interval\";s:7:\"2023-38\";s:10:\"date_start\";s:19:\"2023-09-18 00:00:00\";s:14:\"date_start_gmt\";s:19:\"2023-09-18 00:00:00\";s:8:\"date_end\";s:19:\"2023-09-24 23:59:59\";s:12:\"date_end_gmt\";s:19:\"2023-09-24 23:59:59\";s:9:\"subtotals\";O:8:\"stdClass\":14:{s:12:\"orders_count\";i:0;s:14:\"num_items_sold\";i:0;s:11:\"gross_sales\";d:0;s:11:\"total_sales\";d:0;s:7:\"coupons\";d:0;s:13:\"coupons_count\";i:0;s:7:\"refunds\";d:0;s:5:\"taxes\";d:0;s:8:\"shipping\";d:0;s:11:\"net_revenue\";d:0;s:19:\"avg_items_per_order\";d:0;s:15:\"avg_order_value\";d:0;s:15:\"total_customers\";i:0;s:8:\"segments\";a:0:{}}}i:1;a:6:{s:8:\"interval\";s:7:\"2023-37\";s:10:\"date_start\";s:19:\"2023-09-11 00:00:00\";s:14:\"date_start_gmt\";s:19:\"2023-09-11 00:00:00\";s:8:\"date_end\";s:19:\"2023-09-17 23:59:59\";s:12:\"date_end_gmt\";s:19:\"2023-09-17 23:59:59\";s:9:\"subtotals\";O:8:\"stdClass\":14:{s:12:\"orders_count\";i:0;s:14:\"num_items_sold\";i:0;s:11:\"gross_sales\";d:0;s:11:\"total_sales\";d:0;s:7:\"coupons\";d:0;s:13:\"coupons_count\";i:0;s:7:\"refunds\";d:0;s:5:\"taxes\";d:0;s:8:\"shipping\";d:0;s:11:\"net_revenue\";d:0;s:19:\"avg_items_per_order\";d:0;s:15:\"avg_order_value\";d:0;s:15:\"total_customers\";i:0;s:8:\"segments\";a:0:{}}}i:2;a:6:{s:8:\"interval\";s:7:\"2023-36\";s:10:\"date_start\";s:19:\"2023-09-04 00:00:00\";s:14:\"date_start_gmt\";s:19:\"2023-09-04 00:00:00\";s:8:\"date_end\";s:19:\"2023-09-10 23:59:59\";s:12:\"date_end_gmt\";s:19:\"2023-09-10 23:59:59\";s:9:\"subtotals\";O:8:\"stdClass\":14:{s:12:\"orders_count\";i:0;s:14:\"num_items_sold\";i:0;s:11:\"gross_sales\";d:0;s:11:\"total_sales\";d:0;s:7:\"coupons\";d:0;s:13:\"coupons_count\";i:0;s:7:\"refunds\";d:0;s:5:\"taxes\";d:0;s:8:\"shipping\";d:0;s:11:\"net_revenue\";d:0;s:19:\"avg_items_per_order\";d:0;s:15:\"avg_order_value\";d:0;s:15:\"total_customers\";i:0;s:8:\"segments\";a:0:{}}}i:3;a:6:{s:8:\"interval\";s:7:\"2023-35\";s:10:\"date_start\";s:19:\"2023-09-01 00:00:00\";s:14:\"date_start_gmt\";s:19:\"2023-09-01 00:00:00\";s:8:\"date_end\";s:19:\"2023-09-03 23:59:59\";s:12:\"date_end_gmt\";s:19:\"2023-09-03 23:59:59\";s:9:\"subtotals\";O:8:\"stdClass\":14:{s:12:\"orders_count\";i:0;s:14:\"num_items_sold\";i:0;s:11:\"gross_sales\";d:0;s:11:\"total_sales\";d:0;s:7:\"coupons\";d:0;s:13:\"coupons_count\";i:0;s:7:\"refunds\";d:0;s:5:\"taxes\";d:0;s:8:\"shipping\";d:0;s:11:\"net_revenue\";d:0;s:19:\"avg_items_per_order\";d:0;s:15:\"avg_order_value\";d:0;s:15:\"total_customers\";i:0;s:8:\"segments\";a:0:{}}}}s:5:\"total\";i:4;s:5:\"pages\";i:1;s:7:\"page_no\";i:1;}}','no'),(65753,'_site_transient_browser_b104917d5b32679ec35ec15d6804ed2e','a:10:{s:4:\"name\";s:5:\"Opera\";s:7:\"version\";s:9:\"102.0.0.0\";s:8:\"platform\";s:7:\"Windows\";s:10:\"update_url\";s:22:\"https://www.opera.com/\";s:7:\"img_src\";s:42:\"http://s.w.org/images/browsers/opera.png?1\";s:11:\"img_src_ssl\";s:43:\"https://s.w.org/images/browsers/opera.png?1\";s:15:\"current_version\";s:5:\"12.18\";s:7:\"upgrade\";b:0;s:8:\"insecure\";b:0;s:6:\"mobile\";b:0;}','no'),(65754,'_transient_timeout_wc_report_orders_stats_29d0a4684d4e4964b0532835886994fc','1696069337','no'),(65755,'_transient_wc_report_orders_stats_29d0a4684d4e4964b0532835886994fc','a:2:{s:7:\"version\";s:10:\"1660125611\";s:5:\"value\";O:8:\"stdClass\":5:{s:6:\"totals\";O:8:\"stdClass\":15:{s:12:\"orders_count\";i:0;s:14:\"num_items_sold\";i:0;s:11:\"gross_sales\";d:0;s:11:\"total_sales\";d:0;s:7:\"coupons\";d:0;s:13:\"coupons_count\";i:0;s:7:\"refunds\";d:0;s:5:\"taxes\";d:0;s:8:\"shipping\";d:0;s:11:\"net_revenue\";d:0;s:19:\"avg_items_per_order\";d:0;s:15:\"avg_order_value\";d:0;s:15:\"total_customers\";i:0;s:8:\"products\";i:0;s:8:\"segments\";a:0:{}}s:9:\"intervals\";a:4:{i:0;a:6:{s:8:\"interval\";s:7:\"2023-38\";s:10:\"date_start\";s:19:\"2023-09-18 00:00:00\";s:14:\"date_start_gmt\";s:19:\"2023-09-18 00:00:00\";s:8:\"date_end\";s:19:\"2023-09-23 23:59:59\";s:12:\"date_end_gmt\";s:19:\"2023-09-23 23:59:59\";s:9:\"subtotals\";O:8:\"stdClass\":14:{s:12:\"orders_count\";i:0;s:14:\"num_items_sold\";i:0;s:11:\"gross_sales\";d:0;s:11:\"total_sales\";d:0;s:7:\"coupons\";d:0;s:13:\"coupons_count\";i:0;s:7:\"refunds\";d:0;s:5:\"taxes\";d:0;s:8:\"shipping\";d:0;s:11:\"net_revenue\";d:0;s:19:\"avg_items_per_order\";d:0;s:15:\"avg_order_value\";d:0;s:15:\"total_customers\";i:0;s:8:\"segments\";a:0:{}}}i:1;a:6:{s:8:\"interval\";s:7:\"2023-37\";s:10:\"date_start\";s:19:\"2023-09-11 00:00:00\";s:14:\"date_start_gmt\";s:19:\"2023-09-11 00:00:00\";s:8:\"date_end\";s:19:\"2023-09-17 23:59:59\";s:12:\"date_end_gmt\";s:19:\"2023-09-17 23:59:59\";s:9:\"subtotals\";O:8:\"stdClass\":14:{s:12:\"orders_count\";i:0;s:14:\"num_items_sold\";i:0;s:11:\"gross_sales\";d:0;s:11:\"total_sales\";d:0;s:7:\"coupons\";d:0;s:13:\"coupons_count\";i:0;s:7:\"refunds\";d:0;s:5:\"taxes\";d:0;s:8:\"shipping\";d:0;s:11:\"net_revenue\";d:0;s:19:\"avg_items_per_order\";d:0;s:15:\"avg_order_value\";d:0;s:15:\"total_customers\";i:0;s:8:\"segments\";a:0:{}}}i:2;a:6:{s:8:\"interval\";s:7:\"2023-36\";s:10:\"date_start\";s:19:\"2023-09-04 00:00:00\";s:14:\"date_start_gmt\";s:19:\"2023-09-04 00:00:00\";s:8:\"date_end\";s:19:\"2023-09-10 23:59:59\";s:12:\"date_end_gmt\";s:19:\"2023-09-10 23:59:59\";s:9:\"subtotals\";O:8:\"stdClass\":14:{s:12:\"orders_count\";i:0;s:14:\"num_items_sold\";i:0;s:11:\"gross_sales\";d:0;s:11:\"total_sales\";d:0;s:7:\"coupons\";d:0;s:13:\"coupons_count\";i:0;s:7:\"refunds\";d:0;s:5:\"taxes\";d:0;s:8:\"shipping\";d:0;s:11:\"net_revenue\";d:0;s:19:\"avg_items_per_order\";d:0;s:15:\"avg_order_value\";d:0;s:15:\"total_customers\";i:0;s:8:\"segments\";a:0:{}}}i:3;a:6:{s:8:\"interval\";s:7:\"2023-35\";s:10:\"date_start\";s:19:\"2023-09-01 00:00:00\";s:14:\"date_start_gmt\";s:19:\"2023-09-01 00:00:00\";s:8:\"date_end\";s:19:\"2023-09-03 23:59:59\";s:12:\"date_end_gmt\";s:19:\"2023-09-03 23:59:59\";s:9:\"subtotals\";O:8:\"stdClass\":14:{s:12:\"orders_count\";i:0;s:14:\"num_items_sold\";i:0;s:11:\"gross_sales\";d:0;s:11:\"total_sales\";d:0;s:7:\"coupons\";d:0;s:13:\"coupons_count\";i:0;s:7:\"refunds\";d:0;s:5:\"taxes\";d:0;s:8:\"shipping\";d:0;s:11:\"net_revenue\";d:0;s:19:\"avg_items_per_order\";d:0;s:15:\"avg_order_value\";d:0;s:15:\"total_customers\";i:0;s:8:\"segments\";a:0:{}}}}s:5:\"total\";i:4;s:5:\"pages\";i:1;s:7:\"page_no\";i:1;}}','no'),(65756,'_transient_timeout_wc_report_orders_stats_0d21ee9557eafb32328839f20fbfcdde','1696069337','no'),(65757,'_transient_wc_report_orders_stats_0d21ee9557eafb32328839f20fbfcdde','a:2:{s:7:\"version\";s:10:\"1660125611\";s:5:\"value\";O:8:\"stdClass\":5:{s:6:\"totals\";O:8:\"stdClass\":15:{s:12:\"orders_count\";i:0;s:14:\"num_items_sold\";i:0;s:11:\"gross_sales\";d:0;s:11:\"total_sales\";d:0;s:7:\"coupons\";d:0;s:13:\"coupons_count\";i:0;s:7:\"refunds\";d:0;s:5:\"taxes\";d:0;s:8:\"shipping\";d:0;s:11:\"net_revenue\";d:0;s:19:\"avg_items_per_order\";d:0;s:15:\"avg_order_value\";d:0;s:15:\"total_customers\";i:0;s:8:\"products\";i:0;s:8:\"segments\";a:0:{}}s:9:\"intervals\";a:4:{i:0;a:6:{s:8:\"interval\";s:7:\"2023-38\";s:10:\"date_start\";s:19:\"2023-09-18 00:00:00\";s:14:\"date_start_gmt\";s:19:\"2023-09-18 00:00:00\";s:8:\"date_end\";s:19:\"2023-09-23 23:59:59\";s:12:\"date_end_gmt\";s:19:\"2023-09-23 23:59:59\";s:9:\"subtotals\";O:8:\"stdClass\":14:{s:12:\"orders_count\";i:0;s:14:\"num_items_sold\";i:0;s:11:\"gross_sales\";d:0;s:11:\"total_sales\";d:0;s:7:\"coupons\";d:0;s:13:\"coupons_count\";i:0;s:7:\"refunds\";d:0;s:5:\"taxes\";d:0;s:8:\"shipping\";d:0;s:11:\"net_revenue\";d:0;s:19:\"avg_items_per_order\";d:0;s:15:\"avg_order_value\";d:0;s:15:\"total_customers\";i:0;s:8:\"segments\";a:0:{}}}i:1;a:6:{s:8:\"interval\";s:7:\"2023-37\";s:10:\"date_start\";s:19:\"2023-09-11 00:00:00\";s:14:\"date_start_gmt\";s:19:\"2023-09-11 00:00:00\";s:8:\"date_end\";s:19:\"2023-09-17 23:59:59\";s:12:\"date_end_gmt\";s:19:\"2023-09-17 23:59:59\";s:9:\"subtotals\";O:8:\"stdClass\":14:{s:12:\"orders_count\";i:0;s:14:\"num_items_sold\";i:0;s:11:\"gross_sales\";d:0;s:11:\"total_sales\";d:0;s:7:\"coupons\";d:0;s:13:\"coupons_count\";i:0;s:7:\"refunds\";d:0;s:5:\"taxes\";d:0;s:8:\"shipping\";d:0;s:11:\"net_revenue\";d:0;s:19:\"avg_items_per_order\";d:0;s:15:\"avg_order_value\";d:0;s:15:\"total_customers\";i:0;s:8:\"segments\";a:0:{}}}i:2;a:6:{s:8:\"interval\";s:7:\"2023-36\";s:10:\"date_start\";s:19:\"2023-09-04 00:00:00\";s:14:\"date_start_gmt\";s:19:\"2023-09-04 00:00:00\";s:8:\"date_end\";s:19:\"2023-09-10 23:59:59\";s:12:\"date_end_gmt\";s:19:\"2023-09-10 23:59:59\";s:9:\"subtotals\";O:8:\"stdClass\":14:{s:12:\"orders_count\";i:0;s:14:\"num_items_sold\";i:0;s:11:\"gross_sales\";d:0;s:11:\"total_sales\";d:0;s:7:\"coupons\";d:0;s:13:\"coupons_count\";i:0;s:7:\"refunds\";d:0;s:5:\"taxes\";d:0;s:8:\"shipping\";d:0;s:11:\"net_revenue\";d:0;s:19:\"avg_items_per_order\";d:0;s:15:\"avg_order_value\";d:0;s:15:\"total_customers\";i:0;s:8:\"segments\";a:0:{}}}i:3;a:6:{s:8:\"interval\";s:7:\"2023-35\";s:10:\"date_start\";s:19:\"2023-09-01 00:00:00\";s:14:\"date_start_gmt\";s:19:\"2023-09-01 00:00:00\";s:8:\"date_end\";s:19:\"2023-09-03 23:59:59\";s:12:\"date_end_gmt\";s:19:\"2023-09-03 23:59:59\";s:9:\"subtotals\";O:8:\"stdClass\":14:{s:12:\"orders_count\";i:0;s:14:\"num_items_sold\";i:0;s:11:\"gross_sales\";d:0;s:11:\"total_sales\";d:0;s:7:\"coupons\";d:0;s:13:\"coupons_count\";i:0;s:7:\"refunds\";d:0;s:5:\"taxes\";d:0;s:8:\"shipping\";d:0;s:11:\"net_revenue\";d:0;s:19:\"avg_items_per_order\";d:0;s:15:\"avg_order_value\";d:0;s:15:\"total_customers\";i:0;s:8:\"segments\";a:0:{}}}}s:5:\"total\";i:4;s:5:\"pages\";i:1;s:7:\"page_no\";i:1;}}','no'),(65758,'_transient_timeout_wc_report_products_stats_d1e98df4609bc40283c91a56b55bdbf3','1696069337','no'),(65759,'_transient_wc_report_products_stats_d1e98df4609bc40283c91a56b55bdbf3','a:2:{s:7:\"version\";s:10:\"1660125611\";s:5:\"value\";O:8:\"stdClass\":5:{s:6:\"totals\";O:8:\"stdClass\":6:{s:10:\"items_sold\";i:0;s:11:\"net_revenue\";d:0;s:12:\"orders_count\";i:0;s:14:\"products_count\";i:0;s:16:\"variations_count\";i:0;s:8:\"segments\";a:0:{}}s:9:\"intervals\";a:4:{i:0;a:6:{s:8:\"interval\";s:7:\"2023-38\";s:10:\"date_start\";s:19:\"2023-09-18 00:00:00\";s:14:\"date_start_gmt\";s:19:\"2023-09-18 00:00:00\";s:8:\"date_end\";s:19:\"2023-09-23 23:59:59\";s:12:\"date_end_gmt\";s:19:\"2023-09-23 23:59:59\";s:9:\"subtotals\";O:8:\"stdClass\":6:{s:10:\"items_sold\";i:0;s:11:\"net_revenue\";d:0;s:12:\"orders_count\";i:0;s:14:\"products_count\";i:0;s:16:\"variations_count\";i:0;s:8:\"segments\";a:0:{}}}i:1;a:6:{s:8:\"interval\";s:7:\"2023-37\";s:10:\"date_start\";s:19:\"2023-09-11 00:00:00\";s:14:\"date_start_gmt\";s:19:\"2023-09-11 00:00:00\";s:8:\"date_end\";s:19:\"2023-09-17 23:59:59\";s:12:\"date_end_gmt\";s:19:\"2023-09-17 23:59:59\";s:9:\"subtotals\";O:8:\"stdClass\":6:{s:10:\"items_sold\";i:0;s:11:\"net_revenue\";d:0;s:12:\"orders_count\";i:0;s:14:\"products_count\";i:0;s:16:\"variations_count\";i:0;s:8:\"segments\";a:0:{}}}i:2;a:6:{s:8:\"interval\";s:7:\"2023-36\";s:10:\"date_start\";s:19:\"2023-09-04 00:00:00\";s:14:\"date_start_gmt\";s:19:\"2023-09-04 00:00:00\";s:8:\"date_end\";s:19:\"2023-09-10 23:59:59\";s:12:\"date_end_gmt\";s:19:\"2023-09-10 23:59:59\";s:9:\"subtotals\";O:8:\"stdClass\":6:{s:10:\"items_sold\";i:0;s:11:\"net_revenue\";d:0;s:12:\"orders_count\";i:0;s:14:\"products_count\";i:0;s:16:\"variations_count\";i:0;s:8:\"segments\";a:0:{}}}i:3;a:6:{s:8:\"interval\";s:7:\"2023-35\";s:10:\"date_start\";s:19:\"2023-09-01 00:00:00\";s:14:\"date_start_gmt\";s:19:\"2023-09-01 00:00:00\";s:8:\"date_end\";s:19:\"2023-09-03 23:59:59\";s:12:\"date_end_gmt\";s:19:\"2023-09-03 23:59:59\";s:9:\"subtotals\";O:8:\"stdClass\":6:{s:10:\"items_sold\";i:0;s:11:\"net_revenue\";d:0;s:12:\"orders_count\";i:0;s:14:\"products_count\";i:0;s:16:\"variations_count\";i:0;s:8:\"segments\";a:0:{}}}}s:5:\"total\";i:4;s:5:\"pages\";i:1;s:7:\"page_no\";i:1;}}','no'),(65760,'_transient_timeout_wc_report_variations_stats_6e9e4148245d23d3b7bf732a58606f12','1696069337','no'),(65761,'_transient_wc_report_variations_stats_6e9e4148245d23d3b7bf732a58606f12','a:2:{s:7:\"version\";s:10:\"1660125611\";s:5:\"value\";O:8:\"stdClass\":5:{s:6:\"totals\";O:8:\"stdClass\":5:{s:10:\"items_sold\";i:0;s:11:\"net_revenue\";d:0;s:12:\"orders_count\";i:0;s:16:\"variations_count\";i:0;s:8:\"segments\";a:0:{}}s:9:\"intervals\";a:4:{i:0;a:6:{s:8:\"interval\";s:7:\"2023-38\";s:10:\"date_start\";s:19:\"2023-09-18 00:00:00\";s:14:\"date_start_gmt\";s:19:\"2023-09-18 00:00:00\";s:8:\"date_end\";s:19:\"2023-09-23 23:59:59\";s:12:\"date_end_gmt\";s:19:\"2023-09-23 23:59:59\";s:9:\"subtotals\";O:8:\"stdClass\":5:{s:10:\"items_sold\";i:0;s:11:\"net_revenue\";d:0;s:12:\"orders_count\";i:0;s:16:\"variations_count\";i:0;s:8:\"segments\";a:0:{}}}i:1;a:6:{s:8:\"interval\";s:7:\"2023-37\";s:10:\"date_start\";s:19:\"2023-09-11 00:00:00\";s:14:\"date_start_gmt\";s:19:\"2023-09-11 00:00:00\";s:8:\"date_end\";s:19:\"2023-09-17 23:59:59\";s:12:\"date_end_gmt\";s:19:\"2023-09-17 23:59:59\";s:9:\"subtotals\";O:8:\"stdClass\":5:{s:10:\"items_sold\";i:0;s:11:\"net_revenue\";d:0;s:12:\"orders_count\";i:0;s:16:\"variations_count\";i:0;s:8:\"segments\";a:0:{}}}i:2;a:6:{s:8:\"interval\";s:7:\"2023-36\";s:10:\"date_start\";s:19:\"2023-09-04 00:00:00\";s:14:\"date_start_gmt\";s:19:\"2023-09-04 00:00:00\";s:8:\"date_end\";s:19:\"2023-09-10 23:59:59\";s:12:\"date_end_gmt\";s:19:\"2023-09-10 23:59:59\";s:9:\"subtotals\";O:8:\"stdClass\":5:{s:10:\"items_sold\";i:0;s:11:\"net_revenue\";d:0;s:12:\"orders_count\";i:0;s:16:\"variations_count\";i:0;s:8:\"segments\";a:0:{}}}i:3;a:6:{s:8:\"interval\";s:7:\"2023-35\";s:10:\"date_start\";s:19:\"2023-09-01 00:00:00\";s:14:\"date_start_gmt\";s:19:\"2023-09-01 00:00:00\";s:8:\"date_end\";s:19:\"2023-09-03 23:59:59\";s:12:\"date_end_gmt\";s:19:\"2023-09-03 23:59:59\";s:9:\"subtotals\";O:8:\"stdClass\":5:{s:10:\"items_sold\";i:0;s:11:\"net_revenue\";d:0;s:12:\"orders_count\";i:0;s:16:\"variations_count\";i:0;s:8:\"segments\";a:0:{}}}}s:5:\"total\";i:4;s:5:\"pages\";i:1;s:7:\"page_no\";i:1;}}','no'),(65762,'_transient_timeout_wc_report_orders_stats_5e6d6817285698210cf5ec626bb0e86f','1696069337','no'),(65763,'_transient_wc_report_orders_stats_5e6d6817285698210cf5ec626bb0e86f','a:2:{s:7:\"version\";s:10:\"1660125611\";s:5:\"value\";O:8:\"stdClass\":5:{s:6:\"totals\";O:8:\"stdClass\":4:{s:11:\"net_revenue\";d:0;s:8:\"products\";i:0;s:13:\"coupons_count\";i:0;s:8:\"segments\";a:0:{}}s:9:\"intervals\";a:23:{i:0;a:6:{s:8:\"interval\";s:10:\"2023-09-01\";s:10:\"date_start\";s:19:\"2023-09-01 00:00:00\";s:14:\"date_start_gmt\";s:19:\"2023-09-01 00:00:00\";s:8:\"date_end\";s:19:\"2023-09-01 23:59:59\";s:12:\"date_end_gmt\";s:19:\"2023-09-01 23:59:59\";s:9:\"subtotals\";O:8:\"stdClass\":3:{s:11:\"net_revenue\";d:0;s:13:\"coupons_count\";i:0;s:8:\"segments\";a:0:{}}}i:1;a:6:{s:8:\"interval\";s:10:\"2023-09-02\";s:10:\"date_start\";s:19:\"2023-09-02 00:00:00\";s:14:\"date_start_gmt\";s:19:\"2023-09-02 00:00:00\";s:8:\"date_end\";s:19:\"2023-09-02 23:59:59\";s:12:\"date_end_gmt\";s:19:\"2023-09-02 23:59:59\";s:9:\"subtotals\";O:8:\"stdClass\":3:{s:11:\"net_revenue\";d:0;s:13:\"coupons_count\";i:0;s:8:\"segments\";a:0:{}}}i:2;a:6:{s:8:\"interval\";s:10:\"2023-09-03\";s:10:\"date_start\";s:19:\"2023-09-03 00:00:00\";s:14:\"date_start_gmt\";s:19:\"2023-09-03 00:00:00\";s:8:\"date_end\";s:19:\"2023-09-03 23:59:59\";s:12:\"date_end_gmt\";s:19:\"2023-09-03 23:59:59\";s:9:\"subtotals\";O:8:\"stdClass\":3:{s:11:\"net_revenue\";d:0;s:13:\"coupons_count\";i:0;s:8:\"segments\";a:0:{}}}i:3;a:6:{s:8:\"interval\";s:10:\"2023-09-04\";s:10:\"date_start\";s:19:\"2023-09-04 00:00:00\";s:14:\"date_start_gmt\";s:19:\"2023-09-04 00:00:00\";s:8:\"date_end\";s:19:\"2023-09-04 23:59:59\";s:12:\"date_end_gmt\";s:19:\"2023-09-04 23:59:59\";s:9:\"subtotals\";O:8:\"stdClass\":3:{s:11:\"net_revenue\";d:0;s:13:\"coupons_count\";i:0;s:8:\"segments\";a:0:{}}}i:4;a:6:{s:8:\"interval\";s:10:\"2023-09-05\";s:10:\"date_start\";s:19:\"2023-09-05 00:00:00\";s:14:\"date_start_gmt\";s:19:\"2023-09-05 00:00:00\";s:8:\"date_end\";s:19:\"2023-09-05 23:59:59\";s:12:\"date_end_gmt\";s:19:\"2023-09-05 23:59:59\";s:9:\"subtotals\";O:8:\"stdClass\":3:{s:11:\"net_revenue\";d:0;s:13:\"coupons_count\";i:0;s:8:\"segments\";a:0:{}}}i:5;a:6:{s:8:\"interval\";s:10:\"2023-09-06\";s:10:\"date_start\";s:19:\"2023-09-06 00:00:00\";s:14:\"date_start_gmt\";s:19:\"2023-09-06 00:00:00\";s:8:\"date_end\";s:19:\"2023-09-06 23:59:59\";s:12:\"date_end_gmt\";s:19:\"2023-09-06 23:59:59\";s:9:\"subtotals\";O:8:\"stdClass\":3:{s:11:\"net_revenue\";d:0;s:13:\"coupons_count\";i:0;s:8:\"segments\";a:0:{}}}i:6;a:6:{s:8:\"interval\";s:10:\"2023-09-07\";s:10:\"date_start\";s:19:\"2023-09-07 00:00:00\";s:14:\"date_start_gmt\";s:19:\"2023-09-07 00:00:00\";s:8:\"date_end\";s:19:\"2023-09-07 23:59:59\";s:12:\"date_end_gmt\";s:19:\"2023-09-07 23:59:59\";s:9:\"subtotals\";O:8:\"stdClass\":3:{s:11:\"net_revenue\";d:0;s:13:\"coupons_count\";i:0;s:8:\"segments\";a:0:{}}}i:7;a:6:{s:8:\"interval\";s:10:\"2023-09-08\";s:10:\"date_start\";s:19:\"2023-09-08 00:00:00\";s:14:\"date_start_gmt\";s:19:\"2023-09-08 00:00:00\";s:8:\"date_end\";s:19:\"2023-09-08 23:59:59\";s:12:\"date_end_gmt\";s:19:\"2023-09-08 23:59:59\";s:9:\"subtotals\";O:8:\"stdClass\":3:{s:11:\"net_revenue\";d:0;s:13:\"coupons_count\";i:0;s:8:\"segments\";a:0:{}}}i:8;a:6:{s:8:\"interval\";s:10:\"2023-09-09\";s:10:\"date_start\";s:19:\"2023-09-09 00:00:00\";s:14:\"date_start_gmt\";s:19:\"2023-09-09 00:00:00\";s:8:\"date_end\";s:19:\"2023-09-09 23:59:59\";s:12:\"date_end_gmt\";s:19:\"2023-09-09 23:59:59\";s:9:\"subtotals\";O:8:\"stdClass\":3:{s:11:\"net_revenue\";d:0;s:13:\"coupons_count\";i:0;s:8:\"segments\";a:0:{}}}i:9;a:6:{s:8:\"interval\";s:10:\"2023-09-10\";s:10:\"date_start\";s:19:\"2023-09-10 00:00:00\";s:14:\"date_start_gmt\";s:19:\"2023-09-10 00:00:00\";s:8:\"date_end\";s:19:\"2023-09-10 23:59:59\";s:12:\"date_end_gmt\";s:19:\"2023-09-10 23:59:59\";s:9:\"subtotals\";O:8:\"stdClass\":3:{s:11:\"net_revenue\";d:0;s:13:\"coupons_count\";i:0;s:8:\"segments\";a:0:{}}}i:10;a:6:{s:8:\"interval\";s:10:\"2023-09-11\";s:10:\"date_start\";s:19:\"2023-09-11 00:00:00\";s:14:\"date_start_gmt\";s:19:\"2023-09-11 00:00:00\";s:8:\"date_end\";s:19:\"2023-09-11 23:59:59\";s:12:\"date_end_gmt\";s:19:\"2023-09-11 23:59:59\";s:9:\"subtotals\";O:8:\"stdClass\":3:{s:11:\"net_revenue\";d:0;s:13:\"coupons_count\";i:0;s:8:\"segments\";a:0:{}}}i:11;a:6:{s:8:\"interval\";s:10:\"2023-09-12\";s:10:\"date_start\";s:19:\"2023-09-12 00:00:00\";s:14:\"date_start_gmt\";s:19:\"2023-09-12 00:00:00\";s:8:\"date_end\";s:19:\"2023-09-12 23:59:59\";s:12:\"date_end_gmt\";s:19:\"2023-09-12 23:59:59\";s:9:\"subtotals\";O:8:\"stdClass\":3:{s:11:\"net_revenue\";d:0;s:13:\"coupons_count\";i:0;s:8:\"segments\";a:0:{}}}i:12;a:6:{s:8:\"interval\";s:10:\"2023-09-13\";s:10:\"date_start\";s:19:\"2023-09-13 00:00:00\";s:14:\"date_start_gmt\";s:19:\"2023-09-13 00:00:00\";s:8:\"date_end\";s:19:\"2023-09-13 23:59:59\";s:12:\"date_end_gmt\";s:19:\"2023-09-13 23:59:59\";s:9:\"subtotals\";O:8:\"stdClass\":3:{s:11:\"net_revenue\";d:0;s:13:\"coupons_count\";i:0;s:8:\"segments\";a:0:{}}}i:13;a:6:{s:8:\"interval\";s:10:\"2023-09-14\";s:10:\"date_start\";s:19:\"2023-09-14 00:00:00\";s:14:\"date_start_gmt\";s:19:\"2023-09-14 00:00:00\";s:8:\"date_end\";s:19:\"2023-09-14 23:59:59\";s:12:\"date_end_gmt\";s:19:\"2023-09-14 23:59:59\";s:9:\"subtotals\";O:8:\"stdClass\":3:{s:11:\"net_revenue\";d:0;s:13:\"coupons_count\";i:0;s:8:\"segments\";a:0:{}}}i:14;a:6:{s:8:\"interval\";s:10:\"2023-09-15\";s:10:\"date_start\";s:19:\"2023-09-15 00:00:00\";s:14:\"date_start_gmt\";s:19:\"2023-09-15 00:00:00\";s:8:\"date_end\";s:19:\"2023-09-15 23:59:59\";s:12:\"date_end_gmt\";s:19:\"2023-09-15 23:59:59\";s:9:\"subtotals\";O:8:\"stdClass\":3:{s:11:\"net_revenue\";d:0;s:13:\"coupons_count\";i:0;s:8:\"segments\";a:0:{}}}i:15;a:6:{s:8:\"interval\";s:10:\"2023-09-16\";s:10:\"date_start\";s:19:\"2023-09-16 00:00:00\";s:14:\"date_start_gmt\";s:19:\"2023-09-16 00:00:00\";s:8:\"date_end\";s:19:\"2023-09-16 23:59:59\";s:12:\"date_end_gmt\";s:19:\"2023-09-16 23:59:59\";s:9:\"subtotals\";O:8:\"stdClass\":3:{s:11:\"net_revenue\";d:0;s:13:\"coupons_count\";i:0;s:8:\"segments\";a:0:{}}}i:16;a:6:{s:8:\"interval\";s:10:\"2023-09-17\";s:10:\"date_start\";s:19:\"2023-09-17 00:00:00\";s:14:\"date_start_gmt\";s:19:\"2023-09-17 00:00:00\";s:8:\"date_end\";s:19:\"2023-09-17 23:59:59\";s:12:\"date_end_gmt\";s:19:\"2023-09-17 23:59:59\";s:9:\"subtotals\";O:8:\"stdClass\":3:{s:11:\"net_revenue\";d:0;s:13:\"coupons_count\";i:0;s:8:\"segments\";a:0:{}}}i:17;a:6:{s:8:\"interval\";s:10:\"2023-09-18\";s:10:\"date_start\";s:19:\"2023-09-18 00:00:00\";s:14:\"date_start_gmt\";s:19:\"2023-09-18 00:00:00\";s:8:\"date_end\";s:19:\"2023-09-18 23:59:59\";s:12:\"date_end_gmt\";s:19:\"2023-09-18 23:59:59\";s:9:\"subtotals\";O:8:\"stdClass\":3:{s:11:\"net_revenue\";d:0;s:13:\"coupons_count\";i:0;s:8:\"segments\";a:0:{}}}i:18;a:6:{s:8:\"interval\";s:10:\"2023-09-19\";s:10:\"date_start\";s:19:\"2023-09-19 00:00:00\";s:14:\"date_start_gmt\";s:19:\"2023-09-19 00:00:00\";s:8:\"date_end\";s:19:\"2023-09-19 23:59:59\";s:12:\"date_end_gmt\";s:19:\"2023-09-19 23:59:59\";s:9:\"subtotals\";O:8:\"stdClass\":3:{s:11:\"net_revenue\";d:0;s:13:\"coupons_count\";i:0;s:8:\"segments\";a:0:{}}}i:19;a:6:{s:8:\"interval\";s:10:\"2023-09-20\";s:10:\"date_start\";s:19:\"2023-09-20 00:00:00\";s:14:\"date_start_gmt\";s:19:\"2023-09-20 00:00:00\";s:8:\"date_end\";s:19:\"2023-09-20 23:59:59\";s:12:\"date_end_gmt\";s:19:\"2023-09-20 23:59:59\";s:9:\"subtotals\";O:8:\"stdClass\":3:{s:11:\"net_revenue\";d:0;s:13:\"coupons_count\";i:0;s:8:\"segments\";a:0:{}}}i:20;a:6:{s:8:\"interval\";s:10:\"2023-09-21\";s:10:\"date_start\";s:19:\"2023-09-21 00:00:00\";s:14:\"date_start_gmt\";s:19:\"2023-09-21 00:00:00\";s:8:\"date_end\";s:19:\"2023-09-21 23:59:59\";s:12:\"date_end_gmt\";s:19:\"2023-09-21 23:59:59\";s:9:\"subtotals\";O:8:\"stdClass\":3:{s:11:\"net_revenue\";d:0;s:13:\"coupons_count\";i:0;s:8:\"segments\";a:0:{}}}i:21;a:6:{s:8:\"interval\";s:10:\"2023-09-22\";s:10:\"date_start\";s:19:\"2023-09-22 00:00:00\";s:14:\"date_start_gmt\";s:19:\"2023-09-22 00:00:00\";s:8:\"date_end\";s:19:\"2023-09-22 23:59:59\";s:12:\"date_end_gmt\";s:19:\"2023-09-22 23:59:59\";s:9:\"subtotals\";O:8:\"stdClass\":3:{s:11:\"net_revenue\";d:0;s:13:\"coupons_count\";i:0;s:8:\"segments\";a:0:{}}}i:22;a:6:{s:8:\"interval\";s:10:\"2023-09-23\";s:10:\"date_start\";s:19:\"2023-09-23 00:00:00\";s:14:\"date_start_gmt\";s:19:\"2023-09-23 00:00:00\";s:8:\"date_end\";s:19:\"2023-09-23 23:59:59\";s:12:\"date_end_gmt\";s:19:\"2023-09-23 23:59:59\";s:9:\"subtotals\";O:8:\"stdClass\":3:{s:11:\"net_revenue\";d:0;s:13:\"coupons_count\";i:0;s:8:\"segments\";a:0:{}}}}s:5:\"total\";i:23;s:5:\"pages\";i:1;s:7:\"page_no\";i:1;}}','no'),(67413,'_transient_timeout_wcpay_welcome_page_incentive','1695877081','no'),(67414,'_transient_wcpay_welcome_page_incentive','a:2:{s:9:\"incentive\";a:0:{}s:12:\"context_hash\";s:32:\"6d37bc19d822af681f896b21065134c7\";}','no'),(67418,'_transient_jetpack_https_test_message','','no'),(67213,'_transient_timeout_wc_term_counts','1698235789','no'),(67214,'_transient_wc_term_counts','a:2:{i:65;s:2:\"39\";i:63;s:2:\"29\";}','no'),(67419,'_transient_timeout_wpb_notice_list','1695833881','no'),(67420,'_transient_wpb_notice_list','[]','no'),(67423,'_transient_timeout_action_scheduler_last_pastdue_actions_check','1695812282','no'),(67424,'_transient_action_scheduler_last_pastdue_actions_check','1695790682','no'),(57869,'_transient_wc_attribute_taxonomies','a:4:{i:0;O:8:\"stdClass\":6:{s:12:\"attribute_id\";s:1:\"5\";s:14:\"attribute_name\";s:5:\"brand\";s:15:\"attribute_label\";s:5:\"Brand\";s:14:\"attribute_type\";s:6:\"select\";s:17:\"attribute_orderby\";s:10:\"menu_order\";s:16:\"attribute_public\";s:1:\"0\";}i:1;O:8:\"stdClass\":6:{s:12:\"attribute_id\";s:1:\"1\";s:14:\"attribute_name\";s:11:\"composition\";s:15:\"attribute_label\";s:11:\"Composition\";s:14:\"attribute_type\";s:6:\"select\";s:17:\"attribute_orderby\";s:10:\"menu_order\";s:16:\"attribute_public\";s:1:\"0\";}i:2;O:8:\"stdClass\":6:{s:12:\"attribute_id\";s:1:\"2\";s:14:\"attribute_name\";s:6:\"dosage\";s:15:\"attribute_label\";s:6:\"Dosage\";s:14:\"attribute_type\";s:6:\"select\";s:17:\"attribute_orderby\";s:10:\"menu_order\";s:16:\"attribute_public\";s:1:\"0\";}i:3;O:8:\"stdClass\":6:{s:12:\"attribute_id\";s:1:\"4\";s:14:\"attribute_name\";s:12:\"product-type\";s:15:\"attribute_label\";s:12:\"Product Type\";s:14:\"attribute_type\";s:6:\"select\";s:17:\"attribute_orderby\";s:10:\"menu_order\";s:16:\"attribute_public\";s:1:\"0\";}}','yes'),(65956,'_site_transient_timeout_browser_3357fadb0316939352bbdd4d5360a97f','1696079841','no'),(65957,'_site_transient_browser_3357fadb0316939352bbdd4d5360a97f','a:10:{s:4:\"name\";s:6:\"Chrome\";s:7:\"version\";s:9:\"116.0.0.0\";s:8:\"platform\";s:7:\"Windows\";s:10:\"update_url\";s:29:\"https://www.google.com/chrome\";s:7:\"img_src\";s:43:\"http://s.w.org/images/browsers/chrome.png?1\";s:11:\"img_src_ssl\";s:44:\"https://s.w.org/images/browsers/chrome.png?1\";s:15:\"current_version\";s:2:\"18\";s:7:\"upgrade\";b:0;s:8:\"insecure\";b:0;s:6:\"mobile\";b:0;}','no'),(46044,'wpb_license_errors','a:0:{}','yes'),(46943,'woocommerce_task_list_tracked_completed_tasks','a:2:{i:0;s:8:\"purchase\";i:1;s:8:\"products\";}','yes'),(46944,'_transient_woocommerce_shipping_task_zone_count_transient','0','yes'),(46073,'_transient_timeout_woocommerce_admin_remote_free_extensions_specs','1696334631','no'),(46074,'_transient_woocommerce_admin_remote_free_extensions_specs','a:1:{s:5:\"en_US\";a:5:{s:10:\"obw/basics\";O:8:\"stdClass\":3:{s:3:\"key\";s:10:\"obw/basics\";s:5:\"title\";s:14:\"Get the basics\";s:7:\"plugins\";a:4:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:11:\"WooPayments\";s:11:\"description\";s:154:\"Accept credit cards and other popular payment methods with <a href=\"https://woocommerce.com/products/woocommerce-payments\" target=\"_blank\">WooPayments</a>\";s:10:\"is_visible\";a:2:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:2:\"or\";s:8:\"operands\";a:39:{i:0;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"US\";s:9:\"operation\";s:1:\"=\";}i:1;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"PR\";s:9:\"operation\";s:1:\"=\";}i:2;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"AU\";s:9:\"operation\";s:1:\"=\";}i:3;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"CA\";s:9:\"operation\";s:1:\"=\";}i:4;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"DE\";s:9:\"operation\";s:1:\"=\";}i:5;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"ES\";s:9:\"operation\";s:1:\"=\";}i:6;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"FR\";s:9:\"operation\";s:1:\"=\";}i:7;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"GB\";s:9:\"operation\";s:1:\"=\";}i:8;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"IE\";s:9:\"operation\";s:1:\"=\";}i:9;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"IT\";s:9:\"operation\";s:1:\"=\";}i:10;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"NZ\";s:9:\"operation\";s:1:\"=\";}i:11;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"AT\";s:9:\"operation\";s:1:\"=\";}i:12;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"BE\";s:9:\"operation\";s:1:\"=\";}i:13;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"NL\";s:9:\"operation\";s:1:\"=\";}i:14;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"PL\";s:9:\"operation\";s:1:\"=\";}i:15;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"PT\";s:9:\"operation\";s:1:\"=\";}i:16;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"CH\";s:9:\"operation\";s:1:\"=\";}i:17;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"HK\";s:9:\"operation\";s:1:\"=\";}i:18;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"SG\";s:9:\"operation\";s:1:\"=\";}i:19;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"CY\";s:9:\"operation\";s:1:\"=\";}i:20;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"DK\";s:9:\"operation\";s:1:\"=\";}i:21;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"EE\";s:9:\"operation\";s:1:\"=\";}i:22;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"FI\";s:9:\"operation\";s:1:\"=\";}i:23;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"GR\";s:9:\"operation\";s:1:\"=\";}i:24;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"LU\";s:9:\"operation\";s:1:\"=\";}i:25;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"LT\";s:9:\"operation\";s:1:\"=\";}i:26;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"LV\";s:9:\"operation\";s:1:\"=\";}i:27;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"NO\";s:9:\"operation\";s:1:\"=\";}i:28;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"MT\";s:9:\"operation\";s:1:\"=\";}i:29;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"SI\";s:9:\"operation\";s:1:\"=\";}i:30;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"SK\";s:9:\"operation\";s:1:\"=\";}i:31;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"BG\";s:9:\"operation\";s:1:\"=\";}i:32;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"CZ\";s:9:\"operation\";s:1:\"=\";}i:33;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"HR\";s:9:\"operation\";s:1:\"=\";}i:34;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"HU\";s:9:\"operation\";s:1:\"=\";}i:35;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"RO\";s:9:\"operation\";s:1:\"=\";}i:36;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"SE\";s:9:\"operation\";s:1:\"=\";}i:37;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"JP\";s:9:\"operation\";s:1:\"=\";}i:38;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"AE\";s:9:\"operation\";s:1:\"=\";}}}i:1;O:8:\"stdClass\":6:{s:4:\"type\";s:6:\"option\";s:12:\"transformers\";a:2:{i:0;O:8:\"stdClass\":2:{s:3:\"use\";s:12:\"dot_notation\";s:9:\"arguments\";O:8:\"stdClass\":1:{s:4:\"path\";s:8:\"industry\";}}i:1;O:8:\"stdClass\":2:{s:3:\"use\";s:12:\"array_column\";s:9:\"arguments\";O:8:\"stdClass\":1:{s:3:\"key\";s:4:\"slug\";}}}s:11:\"option_name\";s:30:\"woocommerce_onboarding_profile\";s:9:\"operation\";s:9:\"!contains\";s:5:\"value\";s:31:\"cbd-other-hemp-derived-products\";s:7:\"default\";a:0:{}}}s:14:\"is_built_by_wc\";b:1;s:14:\"min_wp_version\";s:3:\"5.9\";s:3:\"key\";s:20:\"woocommerce-payments\";}i:1;O:8:\"stdClass\":5:{s:4:\"name\";s:20:\"WooCommerce Shipping\";s:11:\"description\";s:119:\"Print shipping labels with <a href=\"https://woocommerce.com/products/shipping\" target=\"_blank\">WooCommerce Shipping</a>\";s:10:\"is_visible\";a:3:{i:0;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"US\";s:9:\"operation\";s:1:\"=\";}i:1;O:8:\"stdClass\":2:{s:4:\"type\";s:3:\"not\";s:7:\"operand\";a:1:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:17:\"plugins_activated\";s:7:\"plugins\";a:1:{i:0;s:20:\"woocommerce-services\";}}}}i:2;O:8:\"stdClass\":2:{s:4:\"type\";s:2:\"or\";s:8:\"operands\";a:2:{i:0;a:1:{i:0;O:8:\"stdClass\":6:{s:4:\"type\";s:6:\"option\";s:12:\"transformers\";a:2:{i:0;O:8:\"stdClass\":2:{s:3:\"use\";s:12:\"dot_notation\";s:9:\"arguments\";O:8:\"stdClass\":1:{s:4:\"path\";s:13:\"product_types\";}}i:1;O:8:\"stdClass\":1:{s:3:\"use\";s:5:\"count\";}}s:11:\"option_name\";s:30:\"woocommerce_onboarding_profile\";s:5:\"value\";i:1;s:7:\"default\";a:0:{}s:9:\"operation\";s:2:\"!=\";}}i:1;a:1:{i:0;O:8:\"stdClass\":6:{s:4:\"type\";s:6:\"option\";s:12:\"transformers\";a:1:{i:0;O:8:\"stdClass\":2:{s:3:\"use\";s:12:\"dot_notation\";s:9:\"arguments\";O:8:\"stdClass\":1:{s:4:\"path\";s:15:\"product_types.0\";}}}s:11:\"option_name\";s:30:\"woocommerce_onboarding_profile\";s:5:\"value\";s:9:\"downloads\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:2:\"!=\";}}}}}s:14:\"is_built_by_wc\";b:1;s:3:\"key\";s:29:\"woocommerce-services:shipping\";}i:2;O:8:\"stdClass\":5:{s:4:\"name\";s:15:\"WooCommerce Tax\";s:11:\"description\";s:111:\"Get automated sales tax with <a href=\"https://woocommerce.com/products/tax\" target=\"_blank\">WooCommerce Tax</a>\";s:10:\"is_visible\";a:2:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:2:\"or\";s:8:\"operands\";a:11:{i:0;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"US\";s:9:\"operation\";s:1:\"=\";}i:1;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"FR\";s:9:\"operation\";s:1:\"=\";}i:2;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"GB\";s:9:\"operation\";s:1:\"=\";}i:3;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"DE\";s:9:\"operation\";s:1:\"=\";}i:4;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"CA\";s:9:\"operation\";s:1:\"=\";}i:5;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"AU\";s:9:\"operation\";s:1:\"=\";}i:6;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"GR\";s:9:\"operation\";s:1:\"=\";}i:7;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"BE\";s:9:\"operation\";s:1:\"=\";}i:8;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"PT\";s:9:\"operation\";s:1:\"=\";}i:9;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"DK\";s:9:\"operation\";s:1:\"=\";}i:10;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"SE\";s:9:\"operation\";s:1:\"=\";}}}i:1;O:8:\"stdClass\":2:{s:4:\"type\";s:3:\"not\";s:7:\"operand\";a:1:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:17:\"plugins_activated\";s:7:\"plugins\";a:1:{i:0;s:20:\"woocommerce-services\";}}}}}s:14:\"is_built_by_wc\";b:1;s:3:\"key\";s:24:\"woocommerce-services:tax\";}i:3;O:8:\"stdClass\":6:{s:4:\"name\";s:7:\"Jetpack\";s:11:\"description\";s:110:\"Enhance speed and security with <a href=\"https://woocommerce.com/products/jetpack\" target=\"_blank\">Jetpack</a>\";s:10:\"is_visible\";a:1:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:3:\"not\";s:7:\"operand\";a:1:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:17:\"plugins_activated\";s:7:\"plugins\";a:1:{i:0;s:7:\"jetpack\";}}}}}s:14:\"is_built_by_wc\";b:0;s:14:\"min_wp_version\";s:3:\"6.0\";s:3:\"key\";s:7:\"jetpack\";}}}s:8:\"obw/grow\";O:8:\"stdClass\":3:{s:3:\"key\";s:8:\"obw/grow\";s:5:\"title\";s:15:\"Grow your store\";s:7:\"plugins\";a:5:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:8:\"MailPoet\";s:11:\"description\";s:115:\"Level up your email marketing with <a href=\"https://woocommerce.com/products/mailpoet\" target=\"_blank\">MailPoet</a>\";s:10:\"manage_url\";s:35:\"admin.php?page=mailpoet-newsletters\";s:10:\"is_visible\";a:1:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:3:\"not\";s:7:\"operand\";a:1:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:17:\"plugins_activated\";s:7:\"plugins\";a:1:{i:0;s:8:\"mailpoet\";}}}}}s:14:\"is_built_by_wc\";b:1;s:3:\"key\";s:8:\"mailpoet\";}i:1;O:8:\"stdClass\":7:{s:4:\"name\";s:23:\"Codisto for WooCommerce\";s:11:\"description\";s:210:\"Sell on Amazon, eBay, Walmart and more directly from WooCommerce with  <a href=\"https://woocommerce.com/pt-br/products/amazon-ebay-integration/?quid=c247a85321c9e93e7c3c6f1eb072e6e5\" target=\"_blank\">Codisto</a>\";s:9:\"image_url\";s:102:\"https://woocommerce.com/wp-content/plugins/wccom-plugins/obw-free-extensions/images/codistoconnect.png\";s:10:\"manage_url\";s:31:\"admin.php?page=codisto-settings\";s:14:\"is_built_by_wc\";b:1;s:10:\"is_visible\";b:0;s:3:\"key\";s:14:\"codistoconnect\";}i:2;O:8:\"stdClass\":8:{s:4:\"name\";s:21:\"Google Listings & Ads\";s:11:\"description\";s:127:\"Drive sales with <a href=\"https://woocommerce.com/products/google-listings-and-ads\" target=\"_blank\">Google Listings and Ads</a>\";s:9:\"image_url\";s:94:\"https://woocommerce.com/wp-content/plugins/wccom-plugins/obw-free-extensions/images/google.svg\";s:10:\"manage_url\";s:46:\"admin.php?page=wc-admin&path=%2Fgoogle%2Fstart\";s:10:\"is_visible\";a:1:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:3:\"not\";s:7:\"operand\";a:1:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:17:\"plugins_activated\";s:7:\"plugins\";a:1:{i:0;s:23:\"google-listings-and-ads\";}}}}}s:14:\"is_built_by_wc\";b:1;s:15:\"min_php_version\";s:3:\"7.4\";s:3:\"key\";s:23:\"google-listings-and-ads\";}i:3;O:8:\"stdClass\":7:{s:4:\"name\";s:25:\"Pinterest for WooCommerce\";s:11:\"description\";s:76:\"Get your products in front of Pinners searching for ideas and things to buy.\";s:9:\"image_url\";s:97:\"https://woocommerce.com/wp-content/plugins/wccom-plugins/obw-free-extensions/images/pinterest.png\";s:10:\"manage_url\";s:51:\"admin.php?page=wc-admin&path=%2Fpinterest%2Flanding\";s:14:\"is_built_by_wc\";b:1;s:15:\"min_php_version\";s:3:\"7.3\";s:3:\"key\";s:25:\"pinterest-for-woocommerce\";}i:4;O:8:\"stdClass\":7:{s:4:\"name\";s:24:\"Facebook for WooCommerce\";s:11:\"description\";s:141:\"List products and create ads on Facebook and Instagram with <a href=\"https://woocommerce.com/products/facebook/\">Facebook for WooCommerce</a>\";s:9:\"image_url\";s:96:\"https://woocommerce.com/wp-content/plugins/wccom-plugins/obw-free-extensions/images/facebook.png\";s:10:\"manage_url\";s:26:\"admin.php?page=wc-facebook\";s:10:\"is_visible\";b:0;s:14:\"is_built_by_wc\";b:0;s:3:\"key\";s:24:\"facebook-for-woocommerce\";}}}s:15:\"task-list/reach\";O:8:\"stdClass\":3:{s:3:\"key\";s:15:\"task-list/reach\";s:5:\"title\";s:22:\"Reach out to customers\";s:7:\"plugins\";a:4:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:8:\"MailPoet\";s:11:\"description\";s:111:\"Create and send purchase follow-up emails, newsletters, and promotional campaigns straight from your dashboard.\";s:9:\"image_url\";s:96:\"https://woocommerce.com/wp-content/plugins/wccom-plugins/obw-free-extensions/images/mailpoet.svg\";s:10:\"manage_url\";s:35:\"admin.php?page=mailpoet-newsletters\";s:14:\"is_built_by_wc\";b:1;s:3:\"key\";s:12:\"mailpoet:alt\";}i:1;O:8:\"stdClass\":6:{s:4:\"name\";s:9:\"Mailchimp\";s:11:\"description\";s:78:\"Send targeted campaigns, recover abandoned carts and much more with Mailchimp.\";s:9:\"image_url\";s:97:\"https://woocommerce.com/wp-content/plugins/wccom-plugins/obw-free-extensions/images/mailchimp.svg\";s:10:\"manage_url\";s:36:\"admin.php?page=mailchimp-woocommerce\";s:14:\"is_built_by_wc\";b:0;s:3:\"key\";s:25:\"mailchimp-for-woocommerce\";}i:2;O:8:\"stdClass\":6:{s:4:\"name\";s:7:\"Klaviyo\";s:11:\"description\";s:138:\"Grow and retain customers with intelligent, impactful email and SMS marketing automation and a consolidated view of customer interactions.\";s:9:\"image_url\";s:95:\"https://woocommerce.com/wp-content/plugins/wccom-plugins/obw-free-extensions/images/klaviyo.png\";s:10:\"manage_url\";s:31:\"admin.php?page=klaviyo_settings\";s:14:\"is_built_by_wc\";b:0;s:3:\"key\";s:7:\"klaviyo\";}i:3;O:8:\"stdClass\":6:{s:4:\"name\";s:29:\"Creative Mail for WooCommerce\";s:11:\"description\";s:99:\"Create on-brand store campaigns, fast email promotions and customer retargeting with Creative Mail.\";s:9:\"image_url\";s:121:\"https://woocommerce.com/wp-content/plugins/wccom-plugins/obw-free-extensions/images/creative-mail-by-constant-contact.png\";s:10:\"manage_url\";s:27:\"admin.php?page=creativemail\";s:14:\"is_built_by_wc\";b:0;s:3:\"key\";s:33:\"creative-mail-by-constant-contact\";}}}s:14:\"task-list/grow\";O:8:\"stdClass\":3:{s:3:\"key\";s:14:\"task-list/grow\";s:5:\"title\";s:15:\"Grow your store\";s:7:\"plugins\";a:5:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:21:\"Google Listings & Ads\";s:11:\"description\";s:134:\"Reach more shoppers and drive sales for your store. Integrate with Google to list your products for free and launch paid ad campaigns.\";s:9:\"image_url\";s:94:\"https://woocommerce.com/wp-content/plugins/wccom-plugins/obw-free-extensions/images/google.svg\";s:10:\"manage_url\";s:46:\"admin.php?page=wc-admin&path=%2Fgoogle%2Fstart\";s:14:\"is_built_by_wc\";b:1;s:3:\"key\";s:27:\"google-listings-and-ads:alt\";}i:1;O:8:\"stdClass\":7:{s:4:\"name\";s:22:\"TikTok for WooCommerce\";s:9:\"image_url\";s:94:\"https://woocommerce.com/wp-content/plugins/wccom-plugins/obw-free-extensions/images/tiktok.svg\";s:11:\"description\";s:118:\"Grow your online sales by promoting your products on TikTok to over one billion monthly active users around the world.\";s:10:\"manage_url\";s:21:\"admin.php?page=tiktok\";s:10:\"is_visible\";a:1:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:2:\"or\";s:8:\"operands\";a:40:{i:0;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"US\";s:9:\"operation\";s:1:\"=\";}i:1;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"CA\";s:9:\"operation\";s:1:\"=\";}i:2;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"MX\";s:9:\"operation\";s:1:\"=\";}i:3;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"AT\";s:9:\"operation\";s:1:\"=\";}i:4;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"BE\";s:9:\"operation\";s:1:\"=\";}i:5;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"CZ\";s:9:\"operation\";s:1:\"=\";}i:6;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"DK\";s:9:\"operation\";s:1:\"=\";}i:7;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"FI\";s:9:\"operation\";s:1:\"=\";}i:8;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"FR\";s:9:\"operation\";s:1:\"=\";}i:9;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"DE\";s:9:\"operation\";s:1:\"=\";}i:10;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"GR\";s:9:\"operation\";s:1:\"=\";}i:11;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"HU\";s:9:\"operation\";s:1:\"=\";}i:12;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"IE\";s:9:\"operation\";s:1:\"=\";}i:13;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"IT\";s:9:\"operation\";s:1:\"=\";}i:14;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"NL\";s:9:\"operation\";s:1:\"=\";}i:15;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"PL\";s:9:\"operation\";s:1:\"=\";}i:16;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"PT\";s:9:\"operation\";s:1:\"=\";}i:17;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"RO\";s:9:\"operation\";s:1:\"=\";}i:18;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"ES\";s:9:\"operation\";s:1:\"=\";}i:19;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"SE\";s:9:\"operation\";s:1:\"=\";}i:20;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"GB\";s:9:\"operation\";s:1:\"=\";}i:21;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"CH\";s:9:\"operation\";s:1:\"=\";}i:22;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"NO\";s:9:\"operation\";s:1:\"=\";}i:23;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"AU\";s:9:\"operation\";s:1:\"=\";}i:24;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"NZ\";s:9:\"operation\";s:1:\"=\";}i:25;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"SG\";s:9:\"operation\";s:1:\"=\";}i:26;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"MY\";s:9:\"operation\";s:1:\"=\";}i:27;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"PH\";s:9:\"operation\";s:1:\"=\";}i:28;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"ID\";s:9:\"operation\";s:1:\"=\";}i:29;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"VN\";s:9:\"operation\";s:1:\"=\";}i:30;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"TH\";s:9:\"operation\";s:1:\"=\";}i:31;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"KR\";s:9:\"operation\";s:1:\"=\";}i:32;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"IL\";s:9:\"operation\";s:1:\"=\";}i:33;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"AE\";s:9:\"operation\";s:1:\"=\";}i:34;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"RU\";s:9:\"operation\";s:1:\"=\";}i:35;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"UA\";s:9:\"operation\";s:1:\"=\";}i:36;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"TR\";s:9:\"operation\";s:1:\"=\";}i:37;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"SA\";s:9:\"operation\";s:1:\"=\";}i:38;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"BR\";s:9:\"operation\";s:1:\"=\";}i:39;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"JP\";s:9:\"operation\";s:1:\"=\";}}}}s:14:\"is_built_by_wc\";b:0;s:3:\"key\";s:19:\"tiktok-for-business\";}i:2;O:8:\"stdClass\":6:{s:4:\"name\";s:25:\"Pinterest for WooCommerce\";s:11:\"description\";s:159:\"Get your products in front of Pinterest users searching for ideas and things to buy. Get started with Pinterest and make your entire product catalog browsable.\";s:9:\"image_url\";s:97:\"https://woocommerce.com/wp-content/plugins/wccom-plugins/obw-free-extensions/images/pinterest.png\";s:10:\"manage_url\";s:51:\"admin.php?page=wc-admin&path=%2Fpinterest%2Flanding\";s:14:\"is_built_by_wc\";b:1;s:3:\"key\";s:29:\"pinterest-for-woocommerce:alt\";}i:3;O:8:\"stdClass\":7:{s:4:\"name\";s:24:\"Facebook for WooCommerce\";s:11:\"description\";s:55:\"List products and create ads on Facebook and Instagram.\";s:9:\"image_url\";s:96:\"https://woocommerce.com/wp-content/plugins/wccom-plugins/obw-free-extensions/images/facebook.png\";s:10:\"manage_url\";s:26:\"admin.php?page=wc-facebook\";s:10:\"is_visible\";b:0;s:14:\"is_built_by_wc\";b:0;s:3:\"key\";s:28:\"facebook-for-woocommerce:alt\";}i:4;O:8:\"stdClass\":7:{s:4:\"name\";s:23:\"Codisto for WooCommerce\";s:11:\"description\";s:65:\"Sell on Amazon, eBay, Walmart and more directly from WooCommerce.\";s:9:\"image_url\";s:102:\"https://woocommerce.com/wp-content/plugins/wccom-plugins/obw-free-extensions/images/codistoconnect.png\";s:10:\"manage_url\";s:31:\"admin.php?page=codisto-settings\";s:14:\"is_built_by_wc\";b:1;s:10:\"is_visible\";b:0;s:3:\"key\";s:18:\"codistoconnect:alt\";}}}s:17:\"obw/core-profiler\";O:8:\"stdClass\":3:{s:3:\"key\";s:17:\"obw/core-profiler\";s:5:\"title\";s:15:\"Grow your store\";s:7:\"plugins\";a:7:{i:0;O:8:\"stdClass\":10:{s:4:\"name\";s:11:\"WooPayments\";s:11:\"description\";s:89:\"Securely accept payments and manage payment activity straight from your store\'s dashboard\";s:10:\"is_visible\";a:2:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:2:\"or\";s:8:\"operands\";a:39:{i:0;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"US\";s:9:\"operation\";s:1:\"=\";}i:1;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"PR\";s:9:\"operation\";s:1:\"=\";}i:2;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"AU\";s:9:\"operation\";s:1:\"=\";}i:3;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"CA\";s:9:\"operation\";s:1:\"=\";}i:4;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"DE\";s:9:\"operation\";s:1:\"=\";}i:5;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"ES\";s:9:\"operation\";s:1:\"=\";}i:6;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"FR\";s:9:\"operation\";s:1:\"=\";}i:7;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"GB\";s:9:\"operation\";s:1:\"=\";}i:8;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"IE\";s:9:\"operation\";s:1:\"=\";}i:9;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"IT\";s:9:\"operation\";s:1:\"=\";}i:10;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"NZ\";s:9:\"operation\";s:1:\"=\";}i:11;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"AT\";s:9:\"operation\";s:1:\"=\";}i:12;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"BE\";s:9:\"operation\";s:1:\"=\";}i:13;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"NL\";s:9:\"operation\";s:1:\"=\";}i:14;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"PL\";s:9:\"operation\";s:1:\"=\";}i:15;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"PT\";s:9:\"operation\";s:1:\"=\";}i:16;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"CH\";s:9:\"operation\";s:1:\"=\";}i:17;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"HK\";s:9:\"operation\";s:1:\"=\";}i:18;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"SG\";s:9:\"operation\";s:1:\"=\";}i:19;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"CY\";s:9:\"operation\";s:1:\"=\";}i:20;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"DK\";s:9:\"operation\";s:1:\"=\";}i:21;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"EE\";s:9:\"operation\";s:1:\"=\";}i:22;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"FI\";s:9:\"operation\";s:1:\"=\";}i:23;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"GR\";s:9:\"operation\";s:1:\"=\";}i:24;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"LU\";s:9:\"operation\";s:1:\"=\";}i:25;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"LT\";s:9:\"operation\";s:1:\"=\";}i:26;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"LV\";s:9:\"operation\";s:1:\"=\";}i:27;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"NO\";s:9:\"operation\";s:1:\"=\";}i:28;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"MT\";s:9:\"operation\";s:1:\"=\";}i:29;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"SI\";s:9:\"operation\";s:1:\"=\";}i:30;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"SK\";s:9:\"operation\";s:1:\"=\";}i:31;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"BG\";s:9:\"operation\";s:1:\"=\";}i:32;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"CZ\";s:9:\"operation\";s:1:\"=\";}i:33;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"HR\";s:9:\"operation\";s:1:\"=\";}i:34;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"HU\";s:9:\"operation\";s:1:\"=\";}i:35;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"RO\";s:9:\"operation\";s:1:\"=\";}i:36;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"SE\";s:9:\"operation\";s:1:\"=\";}i:37;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"JP\";s:9:\"operation\";s:1:\"=\";}i:38;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"AE\";s:9:\"operation\";s:1:\"=\";}}}i:1;O:8:\"stdClass\":6:{s:4:\"type\";s:6:\"option\";s:12:\"transformers\";a:2:{i:0;O:8:\"stdClass\":2:{s:3:\"use\";s:12:\"dot_notation\";s:9:\"arguments\";O:8:\"stdClass\":1:{s:4:\"path\";s:8:\"industry\";}}i:1;O:8:\"stdClass\":2:{s:3:\"use\";s:12:\"array_column\";s:9:\"arguments\";O:8:\"stdClass\":1:{s:3:\"key\";s:4:\"slug\";}}}s:11:\"option_name\";s:30:\"woocommerce_onboarding_profile\";s:9:\"operation\";s:9:\"!contains\";s:5:\"value\";s:31:\"cbd-other-hemp-derived-products\";s:7:\"default\";a:0:{}}}s:14:\"is_built_by_wc\";b:1;s:14:\"min_wp_version\";s:3:\"5.9\";s:3:\"key\";s:20:\"woocommerce-payments\";s:5:\"label\";s:25:\"Get paid with WooPayments\";s:9:\"image_url\";s:110:\"https://woocommerce.com/wp-content/plugins/wccom-plugins/obw-free-extensions/images/core-profiler/logo-woo.svg\";s:15:\"learn_more_link\";s:53:\"https://woocommerce.com/products/woocommerce-payments\";s:16:\"install_priority\";i:5;}i:1;O:8:\"stdClass\":9:{s:4:\"name\";s:20:\"WooCommerce Shipping\";s:11:\"description\";s:76:\"Print USPS and DHL labels directly from your dashboard and save on shipping.\";s:10:\"is_visible\";a:1:{i:0;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"US\";s:9:\"operation\";s:1:\"=\";}}s:14:\"is_built_by_wc\";b:1;s:3:\"key\";s:29:\"woocommerce-services:shipping\";s:5:\"label\";s:47:\"Print shipping labels with WooCommerce Shipping\";s:9:\"image_url\";s:110:\"https://woocommerce.com/wp-content/plugins/wccom-plugins/obw-free-extensions/images/core-profiler/logo-woo.svg\";s:15:\"learn_more_link\";s:44:\"https://woocommerce.com/woocommerce-shipping\";s:16:\"install_priority\";i:3;}i:2;O:8:\"stdClass\":10:{s:4:\"name\";s:7:\"Jetpack\";s:11:\"description\";s:84:\"Save time on content creation — unlock high-quality blog posts and pages using AI.\";s:10:\"is_visible\";b:1;s:14:\"is_built_by_wc\";b:0;s:14:\"min_wp_version\";s:3:\"6.0\";s:3:\"key\";s:7:\"jetpack\";s:5:\"label\";s:48:\"Boost content creation with Jetpack AI Assistant\";s:9:\"image_url\";s:114:\"https://woocommerce.com/wp-content/plugins/wccom-plugins/obw-free-extensions/images/core-profiler/logo-jetpack.svg\";s:15:\"learn_more_link\";s:40:\"https://woocommerce.com/products/jetpack\";s:16:\"install_priority\";i:8;}i:3;O:8:\"stdClass\":10:{s:4:\"name\";s:25:\"Pinterest for WooCommerce\";s:11:\"description\";s:56:\"Get your products in front of a highly engaged audience.\";s:9:\"image_url\";s:116:\"https://woocommerce.com/wp-content/plugins/wccom-plugins/obw-free-extensions/images/core-profiler/logo-pinterest.svg\";s:10:\"manage_url\";s:51:\"admin.php?page=wc-admin&path=%2Fpinterest%2Flanding\";s:14:\"is_built_by_wc\";b:1;s:15:\"min_php_version\";s:3:\"7.3\";s:3:\"key\";s:25:\"pinterest-for-woocommerce\";s:5:\"label\";s:37:\"Showcase your products with Pinterest\";s:15:\"learn_more_link\";s:58:\"https://woocommerce.com/products/pinterest-for-woocommerce\";s:16:\"install_priority\";i:2;}i:4;O:8:\"stdClass\":10:{s:4:\"name\";s:8:\"MailPoet\";s:11:\"description\";s:71:\"Send purchase follow-up emails, newsletters, and promotional campaigns.\";s:10:\"manage_url\";s:35:\"admin.php?page=mailpoet-newsletters\";s:10:\"is_visible\";b:1;s:14:\"is_built_by_wc\";b:1;s:3:\"key\";s:8:\"mailpoet\";s:5:\"label\";s:34:\"Reach your customers with MailPoet\";s:9:\"image_url\";s:115:\"https://woocommerce.com/wp-content/plugins/wccom-plugins/obw-free-extensions/images/core-profiler/logo-mailpoet.svg\";s:15:\"learn_more_link\";s:41:\"https://woocommerce.com/products/mailpoet\";s:16:\"install_priority\";i:7;}i:5;O:8:\"stdClass\":11:{s:4:\"name\";s:21:\"Google Listings & Ads\";s:11:\"description\";s:83:\"Reach millions of active shoppers across Google with free product listings and ads.\";s:9:\"image_url\";s:113:\"https://woocommerce.com/wp-content/plugins/wccom-plugins/obw-free-extensions/images/core-profiler/logo-google.svg\";s:10:\"manage_url\";s:46:\"admin.php?page=wc-admin&path=%2Fgoogle%2Fstart\";s:10:\"is_visible\";b:1;s:14:\"is_built_by_wc\";b:1;s:15:\"min_php_version\";s:3:\"7.4\";s:3:\"key\";s:23:\"google-listings-and-ads\";s:5:\"label\";s:38:\"Drive sales with Google Listings & Ads\";s:15:\"learn_more_link\";s:56:\"https://woocommerce.com/products/google-listings-and-ads\";s:16:\"install_priority\";i:6;}i:6;O:8:\"stdClass\":9:{s:4:\"name\";s:15:\"WooCommerce Tax\";s:11:\"description\";s:94:\"Automatically calculate how much sales tax should be collected – by city, country, or state.\";s:10:\"is_visible\";a:1:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:2:\"or\";s:8:\"operands\";a:11:{i:0;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"US\";s:9:\"operation\";s:1:\"=\";}i:1;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"FR\";s:9:\"operation\";s:1:\"=\";}i:2;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"GB\";s:9:\"operation\";s:1:\"=\";}i:3;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"DE\";s:9:\"operation\";s:1:\"=\";}i:4;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"CA\";s:9:\"operation\";s:1:\"=\";}i:5;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"AU\";s:9:\"operation\";s:1:\"=\";}i:6;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"GR\";s:9:\"operation\";s:1:\"=\";}i:7;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"BE\";s:9:\"operation\";s:1:\"=\";}i:8;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"PT\";s:9:\"operation\";s:1:\"=\";}i:9;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"DK\";s:9:\"operation\";s:1:\"=\";}i:10;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"SE\";s:9:\"operation\";s:1:\"=\";}}}}s:14:\"is_built_by_wc\";b:1;s:3:\"key\";s:24:\"woocommerce-services:tax\";s:5:\"label\";s:44:\"Get automated tax rates with WooCommerce Tax\";s:9:\"image_url\";s:110:\"https://woocommerce.com/wp-content/plugins/wccom-plugins/obw-free-extensions/images/core-profiler/logo-woo.svg\";s:15:\"learn_more_link\";s:36:\"https://woocommerce.com/products/tax\";s:16:\"install_priority\";i:4;}}}}}','no'),(46075,'_transient_timeout_woocommerce_admin_payment_gateway_suggestions_specs','1696334631','no'),(46076,'_transient_woocommerce_admin_payment_gateway_suggestions_specs','a:1:{s:5:\"en_US\";a:22:{s:6:\"affirm\";O:8:\"stdClass\":11:{s:2:\"id\";s:6:\"affirm\";s:5:\"title\";s:6:\"Affirm\";s:7:\"content\";s:169:\"Affirm’s tailored Buy Now Pay Later programs remove price as a barrier, turning browsers into buyers, increasing average order value, and expanding your customer base.\";s:5:\"image\";s:108:\"https://woocommerce.com/wp-content/plugins/wccom-plugins/payment-gateway-suggestions/images/72x72/affirm.png\";s:11:\"image_72x72\";s:108:\"https://woocommerce.com/wp-content/plugins/wccom-plugins/payment-gateway-suggestions/images/72x72/affirm.png\";s:7:\"plugins\";a:0:{}s:13:\"external_link\";s:59:\"https://woocommerce.com/products/woocommerce-gateway-affirm\";s:10:\"is_visible\";a:2:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:2:\"or\";s:8:\"operands\";a:2:{i:0;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"US\";s:9:\"operation\";s:1:\"=\";}i:1;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"CA\";s:9:\"operation\";s:1:\"=\";}}}i:1;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:7:\"version\";s:9:\"6.5.0-dev\";s:8:\"operator\";s:2:\">=\";}}s:14:\"category_other\";a:0:{}s:19:\"category_additional\";a:2:{i:0;s:2:\"US\";i:1;s:2:\"CA\";}s:23:\"recommendation_priority\";i:5;}s:8:\"afterpay\";O:8:\"stdClass\":10:{s:2:\"id\";s:8:\"afterpay\";s:5:\"title\";s:8:\"Afterpay\";s:7:\"content\";s:125:\"Afterpay allows customers to receive products immediately and pay for purchases over four installments, always interest-free.\";s:5:\"image\";s:110:\"https://woocommerce.com/wp-content/plugins/wccom-plugins/payment-gateway-suggestions/images/72x72/afterpay.png\";s:11:\"image_72x72\";s:110:\"https://woocommerce.com/wp-content/plugins/wccom-plugins/payment-gateway-suggestions/images/72x72/afterpay.png\";s:7:\"plugins\";a:1:{i:0;s:32:\"afterpay-gateway-for-woocommerce\";}s:10:\"is_visible\";a:2:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:2:\"or\";s:8:\"operands\";a:3:{i:0;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"US\";s:9:\"operation\";s:1:\"=\";}i:1;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"CA\";s:9:\"operation\";s:1:\"=\";}i:2;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"AU\";s:9:\"operation\";s:1:\"=\";}}}i:1;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:7:\"version\";s:9:\"6.5.0-dev\";s:8:\"operator\";s:2:\">=\";}}s:14:\"category_other\";a:0:{}s:19:\"category_additional\";a:3:{i:0;s:2:\"US\";i:1;s:2:\"CA\";i:2;s:2:\"AU\";}s:23:\"recommendation_priority\";i:6;}s:24:\"amazon_payments_advanced\";O:8:\"stdClass\":10:{s:2:\"id\";s:24:\"amazon_payments_advanced\";s:5:\"title\";s:10:\"Amazon Pay\";s:7:\"content\";s:94:\"Enable a familiar, fast checkout for hundreds of millions of active Amazon customers globally.\";s:5:\"image\";s:111:\"https://woocommerce.com/wp-content/plugins/wccom-plugins/payment-gateway-suggestions/images/72x72/amazonpay.png\";s:11:\"image_72x72\";s:111:\"https://woocommerce.com/wp-content/plugins/wccom-plugins/payment-gateway-suggestions/images/72x72/amazonpay.png\";s:7:\"plugins\";a:1:{i:0;s:44:\"woocommerce-gateway-amazon-payments-advanced\";}s:10:\"is_visible\";a:2:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:2:\"or\";s:8:\"operands\";a:18:{i:0;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"US\";s:9:\"operation\";s:1:\"=\";}i:1;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"AT\";s:9:\"operation\";s:1:\"=\";}i:2;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"BE\";s:9:\"operation\";s:1:\"=\";}i:3;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"CY\";s:9:\"operation\";s:1:\"=\";}i:4;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"DK\";s:9:\"operation\";s:1:\"=\";}i:5;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"ES\";s:9:\"operation\";s:1:\"=\";}i:6;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"FR\";s:9:\"operation\";s:1:\"=\";}i:7;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"DE\";s:9:\"operation\";s:1:\"=\";}i:8;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"GB\";s:9:\"operation\";s:1:\"=\";}i:9;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"HU\";s:9:\"operation\";s:1:\"=\";}i:10;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"IE\";s:9:\"operation\";s:1:\"=\";}i:11;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"IT\";s:9:\"operation\";s:1:\"=\";}i:12;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"LU\";s:9:\"operation\";s:1:\"=\";}i:13;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"NL\";s:9:\"operation\";s:1:\"=\";}i:14;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"PT\";s:9:\"operation\";s:1:\"=\";}i:15;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"SL\";s:9:\"operation\";s:1:\"=\";}i:16;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"SE\";s:9:\"operation\";s:1:\"=\";}i:17;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"JP\";s:9:\"operation\";s:1:\"=\";}}}i:1;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:7:\"version\";s:9:\"6.5.0-dev\";s:8:\"operator\";s:2:\">=\";}}s:14:\"category_other\";a:0:{}s:19:\"category_additional\";a:18:{i:0;s:2:\"US\";i:1;s:2:\"AT\";i:2;s:2:\"BE\";i:3;s:2:\"CY\";i:4;s:2:\"DK\";i:5;s:2:\"ES\";i:6;s:2:\"FR\";i:7;s:2:\"DE\";i:8;s:2:\"GB\";i:9;s:2:\"HU\";i:10;s:2:\"IE\";i:11;s:2:\"IT\";i:12;s:2:\"LU\";i:13;s:2:\"NL\";i:14;s:2:\"PT\";i:15;s:2:\"SL\";i:16;s:2:\"SE\";i:17;s:2:\"JP\";}s:23:\"recommendation_priority\";i:4;}s:4:\"bacs\";O:8:\"stdClass\":8:{s:2:\"id\";s:4:\"bacs\";s:5:\"title\";s:20:\"Direct bank transfer\";s:7:\"content\";s:32:\"Take payments via bank transfer.\";s:5:\"image\";s:100:\"https://woocommerce.com/wp-content/plugins/wccom-plugins/payment-gateway-suggestions/images/bacs.svg\";s:11:\"image_72x72\";s:106:\"https://woocommerce.com/wp-content/plugins/wccom-plugins/payment-gateway-suggestions/images/72x72/bacs.png\";s:10:\"is_visible\";a:1:{i:0;O:8:\"stdClass\":1:{s:4:\"type\";s:4:\"pass\";}}s:10:\"is_offline\";b:1;s:23:\"recommendation_priority\";i:9;}s:3:\"cod\";O:8:\"stdClass\":8:{s:2:\"id\";s:3:\"cod\";s:5:\"title\";s:16:\"Cash on delivery\";s:7:\"content\";s:36:\"Take payments in cash upon delivery.\";s:5:\"image\";s:99:\"https://woocommerce.com/wp-content/plugins/wccom-plugins/payment-gateway-suggestions/images/cod.svg\";s:11:\"image_72x72\";s:105:\"https://woocommerce.com/wp-content/plugins/wccom-plugins/payment-gateway-suggestions/images/72x72/cod.png\";s:10:\"is_visible\";a:1:{i:0;O:8:\"stdClass\":1:{s:4:\"type\";s:4:\"pass\";}}s:10:\"is_offline\";b:1;s:23:\"recommendation_priority\";i:9;}s:4:\"eway\";O:8:\"stdClass\":11:{s:2:\"id\";s:4:\"eway\";s:5:\"title\";s:4:\"Eway\";s:7:\"content\";s:171:\"The Eway extension for WooCommerce allows you to take credit card payments directly on your store without redirecting your customers to a third party site to make payment.\";s:5:\"image\";s:100:\"https://woocommerce.com/wp-content/plugins/wccom-plugins/payment-gateway-suggestions/images/eway.png\";s:11:\"image_72x72\";s:106:\"https://woocommerce.com/wp-content/plugins/wccom-plugins/payment-gateway-suggestions/images/72x72/eway.png\";s:12:\"square_image\";s:107:\"https://woocommerce.com/wp-content/plugins/wccom-plugins/payment-gateway-suggestions/images/eway-square.png\";s:7:\"plugins\";a:1:{i:0;s:24:\"woocommerce-gateway-eway\";}s:10:\"is_visible\";a:2:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:2:\"or\";s:8:\"operands\";a:4:{i:0;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"NZ\";s:9:\"operation\";s:1:\"=\";}i:1;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"HK\";s:9:\"operation\";s:1:\"=\";}i:2;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"SG\";s:9:\"operation\";s:1:\"=\";}i:3;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"AU\";s:9:\"operation\";s:1:\"=\";}}}i:1;O:8:\"stdClass\":6:{s:4:\"type\";s:6:\"option\";s:12:\"transformers\";a:2:{i:0;O:8:\"stdClass\":2:{s:3:\"use\";s:12:\"dot_notation\";s:9:\"arguments\";O:8:\"stdClass\":1:{s:4:\"path\";s:8:\"industry\";}}i:1;O:8:\"stdClass\":2:{s:3:\"use\";s:12:\"array_column\";s:9:\"arguments\";O:8:\"stdClass\":1:{s:3:\"key\";s:4:\"slug\";}}}s:11:\"option_name\";s:30:\"woocommerce_onboarding_profile\";s:9:\"operation\";s:9:\"!contains\";s:5:\"value\";s:31:\"cbd-other-hemp-derived-products\";s:7:\"default\";a:0:{}}}s:14:\"category_other\";a:4:{i:0;s:2:\"NZ\";i:1;s:2:\"HK\";i:2;s:2:\"SG\";i:3;s:2:\"AU\";}s:19:\"category_additional\";a:0:{}s:23:\"recommendation_priority\";i:9;}s:3:\"kco\";O:8:\"stdClass\":10:{s:2:\"id\";s:3:\"kco\";s:5:\"title\";s:15:\"Klarna Checkout\";s:7:\"content\";s:115:\"Choose the payment that you want, pay now, pay later or slice it. No credit card numbers, no passwords, no worries.\";s:5:\"image\";s:85:\"https://woocommerce.com/wp-content/plugins/woocommerce/assets/images/klarna-black.png\";s:11:\"image_72x72\";s:108:\"https://woocommerce.com/wp-content/plugins/wccom-plugins/payment-gateway-suggestions/images/72x72/klarna.png\";s:7:\"plugins\";a:1:{i:0;s:31:\"klarna-checkout-for-woocommerce\";}s:10:\"is_visible\";a:2:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:2:\"or\";s:8:\"operands\";a:3:{i:0;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"NO\";s:9:\"operation\";s:1:\"=\";}i:1;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"SE\";s:9:\"operation\";s:1:\"=\";}i:2;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"FI\";s:9:\"operation\";s:1:\"=\";}}}i:1;O:8:\"stdClass\":6:{s:4:\"type\";s:6:\"option\";s:12:\"transformers\";a:2:{i:0;O:8:\"stdClass\":2:{s:3:\"use\";s:12:\"dot_notation\";s:9:\"arguments\";O:8:\"stdClass\":1:{s:4:\"path\";s:8:\"industry\";}}i:1;O:8:\"stdClass\":2:{s:3:\"use\";s:12:\"array_column\";s:9:\"arguments\";O:8:\"stdClass\":1:{s:3:\"key\";s:4:\"slug\";}}}s:11:\"option_name\";s:30:\"woocommerce_onboarding_profile\";s:9:\"operation\";s:9:\"!contains\";s:5:\"value\";s:31:\"cbd-other-hemp-derived-products\";s:7:\"default\";a:0:{}}}s:14:\"category_other\";a:3:{i:0;s:2:\"NO\";i:1;s:2:\"SE\";i:2;s:2:\"FI\";}s:19:\"category_additional\";a:0:{}s:23:\"recommendation_priority\";i:9;}s:15:\"klarna_payments\";O:8:\"stdClass\":10:{s:2:\"id\";s:15:\"klarna_payments\";s:5:\"title\";s:15:\"Klarna Payments\";s:7:\"content\";s:115:\"Choose the payment that you want, pay now, pay later or slice it. No credit card numbers, no passwords, no worries.\";s:5:\"image\";s:85:\"https://woocommerce.com/wp-content/plugins/woocommerce/assets/images/klarna-black.png\";s:11:\"image_72x72\";s:108:\"https://woocommerce.com/wp-content/plugins/wccom-plugins/payment-gateway-suggestions/images/72x72/klarna.png\";s:7:\"plugins\";a:1:{i:0;s:31:\"klarna-payments-for-woocommerce\";}s:10:\"is_visible\";a:2:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:2:\"or\";s:8:\"operands\";a:19:{i:0;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"MX\";s:9:\"operation\";s:1:\"=\";}i:1;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"US\";s:9:\"operation\";s:1:\"=\";}i:2;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"CA\";s:9:\"operation\";s:1:\"=\";}i:3;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"AT\";s:9:\"operation\";s:1:\"=\";}i:4;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"BE\";s:9:\"operation\";s:1:\"=\";}i:5;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"CH\";s:9:\"operation\";s:1:\"=\";}i:6;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"DK\";s:9:\"operation\";s:1:\"=\";}i:7;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"ES\";s:9:\"operation\";s:1:\"=\";}i:8;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"FI\";s:9:\"operation\";s:1:\"=\";}i:9;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"FR\";s:9:\"operation\";s:1:\"=\";}i:10;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"DE\";s:9:\"operation\";s:1:\"=\";}i:11;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"GB\";s:9:\"operation\";s:1:\"=\";}i:12;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"IT\";s:9:\"operation\";s:1:\"=\";}i:13;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"NL\";s:9:\"operation\";s:1:\"=\";}i:14;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"NO\";s:9:\"operation\";s:1:\"=\";}i:15;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"PL\";s:9:\"operation\";s:1:\"=\";}i:16;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"SE\";s:9:\"operation\";s:1:\"=\";}i:17;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"NZ\";s:9:\"operation\";s:1:\"=\";}i:18;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"AU\";s:9:\"operation\";s:1:\"=\";}}}i:1;O:8:\"stdClass\":6:{s:4:\"type\";s:6:\"option\";s:12:\"transformers\";a:2:{i:0;O:8:\"stdClass\":2:{s:3:\"use\";s:12:\"dot_notation\";s:9:\"arguments\";O:8:\"stdClass\":1:{s:4:\"path\";s:8:\"industry\";}}i:1;O:8:\"stdClass\":2:{s:3:\"use\";s:12:\"array_column\";s:9:\"arguments\";O:8:\"stdClass\":1:{s:3:\"key\";s:4:\"slug\";}}}s:11:\"option_name\";s:30:\"woocommerce_onboarding_profile\";s:9:\"operation\";s:9:\"!contains\";s:5:\"value\";s:31:\"cbd-other-hemp-derived-products\";s:7:\"default\";a:0:{}}}s:14:\"category_other\";a:0:{}s:19:\"category_additional\";a:19:{i:0;s:2:\"MX\";i:1;s:2:\"US\";i:2;s:2:\"CA\";i:3;s:2:\"AT\";i:4;s:2:\"BE\";i:5;s:2:\"CH\";i:6;s:2:\"DK\";i:7;s:2:\"ES\";i:8;s:2:\"FI\";i:9;s:2:\"FR\";i:10;s:2:\"DE\";i:11;s:2:\"GB\";i:12;s:2:\"IT\";i:13;s:2:\"NL\";i:14;s:2:\"NO\";i:15;s:2:\"PL\";i:16;s:2:\"SE\";i:17;s:2:\"NZ\";i:18;s:2:\"AU\";}s:23:\"recommendation_priority\";i:7;}s:30:\"mollie_wc_gateway_banktransfer\";O:8:\"stdClass\":11:{s:2:\"id\";s:30:\"mollie_wc_gateway_banktransfer\";s:5:\"title\";s:6:\"Mollie\";s:7:\"content\";s:128:\"Effortless payments by Mollie: Offer global and local payment methods, get onboarded in minutes, and supported in your language.\";s:5:\"image\";s:102:\"https://woocommerce.com/wp-content/plugins/wccom-plugins/payment-gateway-suggestions/images/mollie.svg\";s:11:\"image_72x72\";s:108:\"https://woocommerce.com/wp-content/plugins/wccom-plugins/payment-gateway-suggestions/images/72x72/mollie.png\";s:12:\"square_image\";s:109:\"https://woocommerce.com/wp-content/plugins/wccom-plugins/payment-gateway-suggestions/images/mollie-square.png\";s:7:\"plugins\";a:1:{i:0;s:31:\"mollie-payments-for-woocommerce\";}s:10:\"is_visible\";a:1:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:2:\"or\";s:8:\"operands\";a:11:{i:0;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"AT\";s:9:\"operation\";s:1:\"=\";}i:1;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"BE\";s:9:\"operation\";s:1:\"=\";}i:2;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"CH\";s:9:\"operation\";s:1:\"=\";}i:3;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"ES\";s:9:\"operation\";s:1:\"=\";}i:4;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"FI\";s:9:\"operation\";s:1:\"=\";}i:5;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"FR\";s:9:\"operation\";s:1:\"=\";}i:6;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"DE\";s:9:\"operation\";s:1:\"=\";}i:7;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"GB\";s:9:\"operation\";s:1:\"=\";}i:8;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"IT\";s:9:\"operation\";s:1:\"=\";}i:9;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"NL\";s:9:\"operation\";s:1:\"=\";}i:10;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"PL\";s:9:\"operation\";s:1:\"=\";}}}}s:14:\"category_other\";a:11:{i:0;s:2:\"AT\";i:1;s:2:\"BE\";i:2;s:2:\"CH\";i:3;s:2:\"ES\";i:4;s:2:\"FI\";i:5;s:2:\"FR\";i:6;s:2:\"DE\";i:7;s:2:\"GB\";i:8;s:2:\"IT\";i:9;s:2:\"NL\";i:10;s:2:\"PL\";}s:19:\"category_additional\";a:0:{}s:23:\"recommendation_priority\";i:9;}s:7:\"payfast\";O:8:\"stdClass\":10:{s:2:\"id\";s:7:\"payfast\";s:5:\"title\";s:7:\"Payfast\";s:7:\"content\";s:299:\"The Payfast extension for WooCommerce enables you to accept payments by Credit Card and EFT via one of South Africa’s most popular payment gateways. No setup fees or monthly subscription costs. Selecting this extension will configure your store to use South African rands as the selected currency.\";s:5:\"image\";s:80:\"https://woocommerce.com/wp-content/plugins/woocommerce/assets/images/payfast.png\";s:11:\"image_72x72\";s:109:\"https://woocommerce.com/wp-content/plugins/wccom-plugins/payment-gateway-suggestions/images/72x72/payfast.png\";s:7:\"plugins\";a:1:{i:0;s:27:\"woocommerce-payfast-gateway\";}s:10:\"is_visible\";a:2:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:2:\"or\";s:8:\"operands\";a:1:{i:0;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"ZA\";s:9:\"operation\";s:1:\"=\";}}}i:1;O:8:\"stdClass\":6:{s:4:\"type\";s:6:\"option\";s:12:\"transformers\";a:2:{i:0;O:8:\"stdClass\":2:{s:3:\"use\";s:12:\"dot_notation\";s:9:\"arguments\";O:8:\"stdClass\":1:{s:4:\"path\";s:8:\"industry\";}}i:1;O:8:\"stdClass\":2:{s:3:\"use\";s:12:\"array_column\";s:9:\"arguments\";O:8:\"stdClass\":1:{s:3:\"key\";s:4:\"slug\";}}}s:11:\"option_name\";s:30:\"woocommerce_onboarding_profile\";s:9:\"operation\";s:9:\"!contains\";s:5:\"value\";s:31:\"cbd-other-hemp-derived-products\";s:7:\"default\";a:0:{}}}s:14:\"category_other\";a:1:{i:0;s:2:\"ZA\";}s:19:\"category_additional\";a:0:{}s:23:\"recommendation_priority\";i:9;}s:17:\"payoneer-checkout\";O:8:\"stdClass\":10:{s:2:\"id\";s:17:\"payoneer-checkout\";s:5:\"title\";s:17:\"Payoneer Checkout\";s:7:\"content\";s:202:\"Payoneer Checkout is the next generation of payment processing platforms, giving merchants around the world the solutions and direction they need to succeed in today’s hyper-competitive global market.\";s:5:\"image\";s:104:\"https://woocommerce.com/wp-content/plugins/wccom-plugins/payment-gateway-suggestions/images/payoneer.png\";s:11:\"image_72x72\";s:110:\"https://woocommerce.com/wp-content/plugins/wccom-plugins/payment-gateway-suggestions/images/72x72/payoneer.png\";s:7:\"plugins\";a:1:{i:0;s:17:\"payoneer-checkout\";}s:10:\"is_visible\";a:1:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:2:\"or\";s:8:\"operands\";a:2:{i:0;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"HK\";s:9:\"operation\";s:1:\"=\";}i:1;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"CN\";s:9:\"operation\";s:1:\"=\";}}}}s:14:\"category_other\";a:0:{}s:19:\"category_additional\";a:2:{i:0;s:2:\"HK\";i:1;s:2:\"CN\";}s:23:\"recommendation_priority\";i:9;}s:8:\"paystack\";O:8:\"stdClass\":11:{s:2:\"id\";s:8:\"paystack\";s:5:\"title\";s:8:\"Paystack\";s:7:\"content\";s:127:\"Paystack helps African merchants accept one-time and recurring payments online with a modern, safe, and secure payment gateway.\";s:5:\"image\";s:104:\"https://woocommerce.com/wp-content/plugins/wccom-plugins/payment-gateway-suggestions/images/paystack.png\";s:12:\"square_image\";s:111:\"https://woocommerce.com/wp-content/plugins/wccom-plugins/payment-gateway-suggestions/images/paystack-square.png\";s:11:\"image_72x72\";s:110:\"https://woocommerce.com/wp-content/plugins/wccom-plugins/payment-gateway-suggestions/images/72x72/paystack.png\";s:7:\"plugins\";a:1:{i:0;s:12:\"woo-paystack\";}s:10:\"is_visible\";a:2:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:2:\"or\";s:8:\"operands\";a:3:{i:0;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"ZA\";s:9:\"operation\";s:1:\"=\";}i:1;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"GH\";s:9:\"operation\";s:1:\"=\";}i:2;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"NG\";s:9:\"operation\";s:1:\"=\";}}}i:1;O:8:\"stdClass\":6:{s:4:\"type\";s:6:\"option\";s:12:\"transformers\";a:2:{i:0;O:8:\"stdClass\":2:{s:3:\"use\";s:12:\"dot_notation\";s:9:\"arguments\";O:8:\"stdClass\":1:{s:4:\"path\";s:8:\"industry\";}}i:1;O:8:\"stdClass\":2:{s:3:\"use\";s:12:\"array_column\";s:9:\"arguments\";O:8:\"stdClass\":1:{s:3:\"key\";s:4:\"slug\";}}}s:11:\"option_name\";s:30:\"woocommerce_onboarding_profile\";s:9:\"operation\";s:9:\"!contains\";s:5:\"value\";s:31:\"cbd-other-hemp-derived-products\";s:7:\"default\";a:0:{}}}s:14:\"category_other\";a:3:{i:0;s:2:\"ZA\";i:1;s:2:\"GH\";i:2;s:2:\"NG\";}s:19:\"category_additional\";a:0:{}s:23:\"recommendation_priority\";i:9;}s:7:\"payubiz\";O:8:\"stdClass\":10:{s:2:\"id\";s:7:\"payubiz\";s:5:\"title\";s:20:\"PayU for WooCommerce\";s:7:\"content\";s:169:\"Enable PayU’s exclusive plugin for WooCommerce to start accepting payments in 100+ payment methods available in India including credit cards, debit cards, UPI, & more!\";s:5:\"image\";s:100:\"https://woocommerce.com/wp-content/plugins/wccom-plugins/payment-gateway-suggestions/images/payu.svg\";s:11:\"image_72x72\";s:106:\"https://woocommerce.com/wp-content/plugins/wccom-plugins/payment-gateway-suggestions/images/72x72/payu.png\";s:7:\"plugins\";a:1:{i:0;s:10:\"payu-india\";}s:10:\"is_visible\";a:2:{i:0;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"IN\";s:9:\"operation\";s:1:\"=\";}i:1;O:8:\"stdClass\":6:{s:4:\"type\";s:6:\"option\";s:12:\"transformers\";a:2:{i:0;O:8:\"stdClass\":2:{s:3:\"use\";s:12:\"dot_notation\";s:9:\"arguments\";O:8:\"stdClass\":1:{s:4:\"path\";s:8:\"industry\";}}i:1;O:8:\"stdClass\":2:{s:3:\"use\";s:12:\"array_column\";s:9:\"arguments\";O:8:\"stdClass\":1:{s:3:\"key\";s:4:\"slug\";}}}s:11:\"option_name\";s:30:\"woocommerce_onboarding_profile\";s:9:\"operation\";s:9:\"!contains\";s:5:\"value\";s:31:\"cbd-other-hemp-derived-products\";s:7:\"default\";a:0:{}}}s:14:\"category_other\";a:1:{i:0;s:2:\"IN\";}s:19:\"category_additional\";a:0:{}s:23:\"recommendation_priority\";i:9;}s:12:\"ppcp-gateway\";O:8:\"stdClass\":11:{s:2:\"id\";s:12:\"ppcp-gateway\";s:5:\"title\";s:15:\"PayPal Payments\";s:7:\"content\";s:78:\"Safe and secure payments using credit cards or your customer\'s PayPal account.\";s:5:\"image\";s:79:\"https://woocommerce.com/wp-content/plugins/woocommerce/assets/images/paypal.png\";s:11:\"image_72x72\";s:108:\"https://woocommerce.com/wp-content/plugins/wccom-plugins/payment-gateway-suggestions/images/72x72/paypal.png\";s:12:\"square_image\";s:102:\"https://woocommerce.com/wp-content/plugins/wccom-plugins/payment-gateway-suggestions/images/paypal.svg\";s:7:\"plugins\";a:1:{i:0;s:27:\"woocommerce-paypal-payments\";}s:10:\"is_visible\";a:2:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:2:\"or\";s:8:\"operands\";a:49:{i:0;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"US\";s:9:\"operation\";s:1:\"=\";}i:1;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"CA\";s:9:\"operation\";s:1:\"=\";}i:2;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"MX\";s:9:\"operation\";s:1:\"=\";}i:3;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"BR\";s:9:\"operation\";s:1:\"=\";}i:4;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"AR\";s:9:\"operation\";s:1:\"=\";}i:5;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"CL\";s:9:\"operation\";s:1:\"=\";}i:6;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"CO\";s:9:\"operation\";s:1:\"=\";}i:7;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"EC\";s:9:\"operation\";s:1:\"=\";}i:8;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"PE\";s:9:\"operation\";s:1:\"=\";}i:9;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"UY\";s:9:\"operation\";s:1:\"=\";}i:10;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"VE\";s:9:\"operation\";s:1:\"=\";}i:11;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"AT\";s:9:\"operation\";s:1:\"=\";}i:12;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"BE\";s:9:\"operation\";s:1:\"=\";}i:13;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"BG\";s:9:\"operation\";s:1:\"=\";}i:14;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"HR\";s:9:\"operation\";s:1:\"=\";}i:15;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"CH\";s:9:\"operation\";s:1:\"=\";}i:16;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"CY\";s:9:\"operation\";s:1:\"=\";}i:17;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"CZ\";s:9:\"operation\";s:1:\"=\";}i:18;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"DK\";s:9:\"operation\";s:1:\"=\";}i:19;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"EE\";s:9:\"operation\";s:1:\"=\";}i:20;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"ES\";s:9:\"operation\";s:1:\"=\";}i:21;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"FI\";s:9:\"operation\";s:1:\"=\";}i:22;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"FR\";s:9:\"operation\";s:1:\"=\";}i:23;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"DE\";s:9:\"operation\";s:1:\"=\";}i:24;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"GB\";s:9:\"operation\";s:1:\"=\";}i:25;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"GR\";s:9:\"operation\";s:1:\"=\";}i:26;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"HU\";s:9:\"operation\";s:1:\"=\";}i:27;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"IE\";s:9:\"operation\";s:1:\"=\";}i:28;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"IT\";s:9:\"operation\";s:1:\"=\";}i:29;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"LV\";s:9:\"operation\";s:1:\"=\";}i:30;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"LT\";s:9:\"operation\";s:1:\"=\";}i:31;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"LU\";s:9:\"operation\";s:1:\"=\";}i:32;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"MT\";s:9:\"operation\";s:1:\"=\";}i:33;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"NL\";s:9:\"operation\";s:1:\"=\";}i:34;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"NO\";s:9:\"operation\";s:1:\"=\";}i:35;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"PL\";s:9:\"operation\";s:1:\"=\";}i:36;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"PT\";s:9:\"operation\";s:1:\"=\";}i:37;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"RO\";s:9:\"operation\";s:1:\"=\";}i:38;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"SK\";s:9:\"operation\";s:1:\"=\";}i:39;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"SL\";s:9:\"operation\";s:1:\"=\";}i:40;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"SE\";s:9:\"operation\";s:1:\"=\";}i:41;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"AU\";s:9:\"operation\";s:1:\"=\";}i:42;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"NZ\";s:9:\"operation\";s:1:\"=\";}i:43;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"HK\";s:9:\"operation\";s:1:\"=\";}i:44;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"JP\";s:9:\"operation\";s:1:\"=\";}i:45;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"SG\";s:9:\"operation\";s:1:\"=\";}i:46;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"CN\";s:9:\"operation\";s:1:\"=\";}i:47;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"ID\";s:9:\"operation\";s:1:\"=\";}i:48;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"IN\";s:9:\"operation\";s:1:\"=\";}}}i:1;O:8:\"stdClass\":6:{s:4:\"type\";s:6:\"option\";s:12:\"transformers\";a:2:{i:0;O:8:\"stdClass\":2:{s:3:\"use\";s:12:\"dot_notation\";s:9:\"arguments\";O:8:\"stdClass\":1:{s:4:\"path\";s:8:\"industry\";}}i:1;O:8:\"stdClass\":2:{s:3:\"use\";s:12:\"array_column\";s:9:\"arguments\";O:8:\"stdClass\":1:{s:3:\"key\";s:4:\"slug\";}}}s:11:\"option_name\";s:30:\"woocommerce_onboarding_profile\";s:9:\"operation\";s:9:\"!contains\";s:5:\"value\";s:31:\"cbd-other-hemp-derived-products\";s:7:\"default\";a:0:{}}}s:14:\"category_other\";a:48:{i:0;s:2:\"US\";i:1;s:2:\"CA\";i:2;s:2:\"MX\";i:3;s:2:\"BR\";i:4;s:2:\"AR\";i:5;s:2:\"CL\";i:6;s:2:\"CO\";i:7;s:2:\"EC\";i:8;s:2:\"PE\";i:9;s:2:\"UY\";i:10;s:2:\"VE\";i:11;s:2:\"AT\";i:12;s:2:\"BE\";i:13;s:2:\"BG\";i:14;s:2:\"HR\";i:15;s:2:\"CH\";i:16;s:2:\"CY\";i:17;s:2:\"CZ\";i:18;s:2:\"DK\";i:19;s:2:\"EE\";i:20;s:2:\"ES\";i:21;s:2:\"FI\";i:22;s:2:\"FR\";i:23;s:2:\"DE\";i:24;s:2:\"GB\";i:25;s:2:\"GR\";i:26;s:2:\"HU\";i:27;s:2:\"IE\";i:28;s:2:\"IT\";i:29;s:2:\"LV\";i:30;s:2:\"LT\";i:31;s:2:\"LU\";i:32;s:2:\"MT\";i:33;s:2:\"NL\";i:34;s:2:\"NO\";i:35;s:2:\"PL\";i:36;s:2:\"PT\";i:37;s:2:\"RO\";i:38;s:2:\"SK\";i:39;s:2:\"SL\";i:40;s:2:\"SE\";i:41;s:2:\"AU\";i:42;s:2:\"NZ\";i:43;s:2:\"HK\";i:44;s:2:\"JP\";i:45;s:2:\"SG\";i:46;s:2:\"CN\";i:47;s:2:\"ID\";}s:19:\"category_additional\";a:49:{i:0;s:2:\"US\";i:1;s:2:\"CA\";i:2;s:2:\"MX\";i:3;s:2:\"BR\";i:4;s:2:\"AR\";i:5;s:2:\"CL\";i:6;s:2:\"CO\";i:7;s:2:\"EC\";i:8;s:2:\"PE\";i:9;s:2:\"UY\";i:10;s:2:\"VE\";i:11;s:2:\"AT\";i:12;s:2:\"BE\";i:13;s:2:\"BG\";i:14;s:2:\"HR\";i:15;s:2:\"CH\";i:16;s:2:\"CY\";i:17;s:2:\"CZ\";i:18;s:2:\"DK\";i:19;s:2:\"EE\";i:20;s:2:\"ES\";i:21;s:2:\"FI\";i:22;s:2:\"FR\";i:23;s:2:\"DE\";i:24;s:2:\"GB\";i:25;s:2:\"GR\";i:26;s:2:\"HU\";i:27;s:2:\"IE\";i:28;s:2:\"IT\";i:29;s:2:\"LV\";i:30;s:2:\"LT\";i:31;s:2:\"LU\";i:32;s:2:\"MT\";i:33;s:2:\"NL\";i:34;s:2:\"NO\";i:35;s:2:\"PL\";i:36;s:2:\"PT\";i:37;s:2:\"RO\";i:38;s:2:\"SK\";i:39;s:2:\"SL\";i:40;s:2:\"SE\";i:41;s:2:\"AU\";i:42;s:2:\"NZ\";i:43;s:2:\"HK\";i:44;s:2:\"JP\";i:45;s:2:\"SG\";i:46;s:2:\"CN\";i:47;s:2:\"ID\";i:48;s:2:\"IN\";}s:23:\"recommendation_priority\";i:2;}s:8:\"razorpay\";O:8:\"stdClass\":10:{s:2:\"id\";s:8:\"razorpay\";s:5:\"title\";s:8:\"Razorpay\";s:7:\"content\";s:133:\"The official Razorpay extension for WooCommerce allows you to accept credit cards, debit cards, netbanking, wallet, and UPI payments.\";s:5:\"image\";s:104:\"https://woocommerce.com/wp-content/plugins/wccom-plugins/payment-gateway-suggestions/images/razorpay.svg\";s:11:\"image_72x72\";s:110:\"https://woocommerce.com/wp-content/plugins/wccom-plugins/payment-gateway-suggestions/images/72x72/razorpay.png\";s:7:\"plugins\";a:1:{i:0;s:12:\"woo-razorpay\";}s:10:\"is_visible\";a:2:{i:0;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"IN\";s:9:\"operation\";s:1:\"=\";}i:1;O:8:\"stdClass\":6:{s:4:\"type\";s:6:\"option\";s:12:\"transformers\";a:2:{i:0;O:8:\"stdClass\":2:{s:3:\"use\";s:12:\"dot_notation\";s:9:\"arguments\";O:8:\"stdClass\":1:{s:4:\"path\";s:8:\"industry\";}}i:1;O:8:\"stdClass\":2:{s:3:\"use\";s:12:\"array_column\";s:9:\"arguments\";O:8:\"stdClass\":1:{s:3:\"key\";s:4:\"slug\";}}}s:11:\"option_name\";s:30:\"woocommerce_onboarding_profile\";s:9:\"operation\";s:9:\"!contains\";s:5:\"value\";s:31:\"cbd-other-hemp-derived-products\";s:7:\"default\";a:0:{}}}s:14:\"category_other\";a:1:{i:0;s:2:\"IN\";}s:19:\"category_additional\";a:0:{}s:23:\"recommendation_priority\";i:9;}s:18:\"square_credit_card\";O:8:\"stdClass\":10:{s:2:\"id\";s:18:\"square_credit_card\";s:5:\"title\";s:6:\"Square\";s:7:\"content\";s:169:\"Securely accept credit and debit cards with one low rate, no surprise fees (custom rates available). Sell online and in store and track sales and inventory in one place.\";s:5:\"image\";s:85:\"https://woocommerce.com/wp-content/plugins/woocommerce/assets/images/square-black.png\";s:11:\"image_72x72\";s:108:\"https://woocommerce.com/wp-content/plugins/wccom-plugins/payment-gateway-suggestions/images/72x72/square.png\";s:7:\"plugins\";a:1:{i:0;s:18:\"woocommerce-square\";}s:10:\"is_visible\";a:1:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:2:\"or\";s:8:\"operands\";O:8:\"stdClass\":2:{s:1:\"0\";a:2:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:2:\"or\";s:8:\"operands\";a:1:{i:0;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"US\";s:9:\"operation\";s:1:\"=\";}}}i:1;O:8:\"stdClass\":6:{s:4:\"type\";s:6:\"option\";s:12:\"transformers\";a:2:{i:0;O:8:\"stdClass\":2:{s:3:\"use\";s:12:\"dot_notation\";s:9:\"arguments\";O:8:\"stdClass\":1:{s:4:\"path\";s:8:\"industry\";}}i:1;O:8:\"stdClass\":2:{s:3:\"use\";s:12:\"array_column\";s:9:\"arguments\";O:8:\"stdClass\":1:{s:3:\"key\";s:4:\"slug\";}}}s:11:\"option_name\";s:30:\"woocommerce_onboarding_profile\";s:9:\"operation\";s:8:\"contains\";s:5:\"value\";s:31:\"cbd-other-hemp-derived-products\";s:7:\"default\";a:0:{}}}s:1:\"1\";a:2:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:2:\"or\";s:8:\"operands\";a:8:{i:0;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"US\";s:9:\"operation\";s:1:\"=\";}i:1;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"CA\";s:9:\"operation\";s:1:\"=\";}i:2;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"IE\";s:9:\"operation\";s:1:\"=\";}i:3;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"ES\";s:9:\"operation\";s:1:\"=\";}i:4;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"FR\";s:9:\"operation\";s:1:\"=\";}i:5;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"GB\";s:9:\"operation\";s:1:\"=\";}i:6;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"AU\";s:9:\"operation\";s:1:\"=\";}i:7;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"JP\";s:9:\"operation\";s:1:\"=\";}}}i:1;O:8:\"stdClass\":2:{s:4:\"type\";s:2:\"or\";s:8:\"operands\";O:8:\"stdClass\":2:{s:1:\"0\";O:8:\"stdClass\":2:{s:4:\"type\";s:2:\"or\";s:8:\"operands\";a:2:{i:0;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:12:\"transformers\";a:1:{i:0;O:8:\"stdClass\":2:{s:3:\"use\";s:12:\"dot_notation\";s:9:\"arguments\";O:8:\"stdClass\":1:{s:4:\"path\";s:14:\"selling_venues\";}}}s:11:\"option_name\";s:30:\"woocommerce_onboarding_profile\";s:9:\"operation\";s:1:\"=\";s:5:\"value\";s:12:\"brick-mortar\";}i:1;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:12:\"transformers\";a:1:{i:0;O:8:\"stdClass\":2:{s:3:\"use\";s:12:\"dot_notation\";s:9:\"arguments\";O:8:\"stdClass\":1:{s:4:\"path\";s:14:\"selling_venues\";}}}s:11:\"option_name\";s:30:\"woocommerce_onboarding_profile\";s:9:\"operation\";s:1:\"=\";s:5:\"value\";s:18:\"brick-mortar-other\";}}}s:1:\"1\";O:8:\"stdClass\":6:{s:4:\"type\";s:6:\"option\";s:12:\"transformers\";a:1:{i:0;O:8:\"stdClass\":2:{s:3:\"use\";s:12:\"dot_notation\";s:9:\"arguments\";O:8:\"stdClass\":1:{s:4:\"path\";s:21:\"selling_online_answer\";}}}s:11:\"option_name\";s:30:\"woocommerce_onboarding_profile\";s:9:\"operation\";s:8:\"contains\";s:5:\"value\";s:21:\"no_im_selling_offline\";s:7:\"default\";a:0:{}}}}}}}}s:14:\"category_other\";a:8:{i:0;s:2:\"US\";i:1;s:2:\"CA\";i:2;s:2:\"IE\";i:3;s:2:\"ES\";i:4;s:2:\"FR\";i:5;s:2:\"GB\";i:6;s:2:\"AU\";i:7;s:2:\"JP\";}s:19:\"category_additional\";a:0:{}s:23:\"recommendation_priority\";i:3;}s:6:\"stripe\";O:8:\"stdClass\":11:{s:2:\"id\";s:6:\"stripe\";s:5:\"title\";s:6:\"Stripe\";s:7:\"content\";s:112:\"Accept debit and credit cards in 135+ currencies, methods such as Alipay, and one-touch checkout with Apple Pay.\";s:5:\"image\";s:79:\"https://woocommerce.com/wp-content/plugins/woocommerce/assets/images/stripe.png\";s:11:\"image_72x72\";s:108:\"https://woocommerce.com/wp-content/plugins/wccom-plugins/payment-gateway-suggestions/images/72x72/stripe.png\";s:12:\"square_image\";s:102:\"https://woocommerce.com/wp-content/plugins/wccom-plugins/payment-gateway-suggestions/images/stripe.svg\";s:7:\"plugins\";a:1:{i:0;s:26:\"woocommerce-gateway-stripe\";}s:10:\"is_visible\";a:2:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:2:\"or\";s:8:\"operands\";a:40:{i:0;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"US\";s:9:\"operation\";s:1:\"=\";}i:1;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"CA\";s:9:\"operation\";s:1:\"=\";}i:2;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"MX\";s:9:\"operation\";s:1:\"=\";}i:3;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"BR\";s:9:\"operation\";s:1:\"=\";}i:4;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"AT\";s:9:\"operation\";s:1:\"=\";}i:5;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"BE\";s:9:\"operation\";s:1:\"=\";}i:6;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"BG\";s:9:\"operation\";s:1:\"=\";}i:7;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"CH\";s:9:\"operation\";s:1:\"=\";}i:8;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"CY\";s:9:\"operation\";s:1:\"=\";}i:9;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"CZ\";s:9:\"operation\";s:1:\"=\";}i:10;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"DK\";s:9:\"operation\";s:1:\"=\";}i:11;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"EE\";s:9:\"operation\";s:1:\"=\";}i:12;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"ES\";s:9:\"operation\";s:1:\"=\";}i:13;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"FI\";s:9:\"operation\";s:1:\"=\";}i:14;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"FR\";s:9:\"operation\";s:1:\"=\";}i:15;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"DE\";s:9:\"operation\";s:1:\"=\";}i:16;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"GB\";s:9:\"operation\";s:1:\"=\";}i:17;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"GR\";s:9:\"operation\";s:1:\"=\";}i:18;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"HU\";s:9:\"operation\";s:1:\"=\";}i:19;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"IE\";s:9:\"operation\";s:1:\"=\";}i:20;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"IT\";s:9:\"operation\";s:1:\"=\";}i:21;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"LV\";s:9:\"operation\";s:1:\"=\";}i:22;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"LT\";s:9:\"operation\";s:1:\"=\";}i:23;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"LU\";s:9:\"operation\";s:1:\"=\";}i:24;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"MT\";s:9:\"operation\";s:1:\"=\";}i:25;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"NL\";s:9:\"operation\";s:1:\"=\";}i:26;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"NO\";s:9:\"operation\";s:1:\"=\";}i:27;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"PL\";s:9:\"operation\";s:1:\"=\";}i:28;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"PT\";s:9:\"operation\";s:1:\"=\";}i:29;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"RO\";s:9:\"operation\";s:1:\"=\";}i:30;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"SK\";s:9:\"operation\";s:1:\"=\";}i:31;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"SL\";s:9:\"operation\";s:1:\"=\";}i:32;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"SE\";s:9:\"operation\";s:1:\"=\";}i:33;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"AU\";s:9:\"operation\";s:1:\"=\";}i:34;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"NZ\";s:9:\"operation\";s:1:\"=\";}i:35;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"HK\";s:9:\"operation\";s:1:\"=\";}i:36;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"JP\";s:9:\"operation\";s:1:\"=\";}i:37;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"SG\";s:9:\"operation\";s:1:\"=\";}i:38;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"ID\";s:9:\"operation\";s:1:\"=\";}i:39;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"IN\";s:9:\"operation\";s:1:\"=\";}}}i:1;O:8:\"stdClass\":6:{s:4:\"type\";s:6:\"option\";s:12:\"transformers\";a:2:{i:0;O:8:\"stdClass\":2:{s:3:\"use\";s:12:\"dot_notation\";s:9:\"arguments\";O:8:\"stdClass\":1:{s:4:\"path\";s:8:\"industry\";}}i:1;O:8:\"stdClass\":2:{s:3:\"use\";s:12:\"array_column\";s:9:\"arguments\";O:8:\"stdClass\":1:{s:3:\"key\";s:4:\"slug\";}}}s:11:\"option_name\";s:30:\"woocommerce_onboarding_profile\";s:9:\"operation\";s:9:\"!contains\";s:5:\"value\";s:31:\"cbd-other-hemp-derived-products\";s:7:\"default\";a:0:{}}}s:14:\"category_other\";a:40:{i:0;s:2:\"US\";i:1;s:2:\"CA\";i:2;s:2:\"MX\";i:3;s:2:\"BR\";i:4;s:2:\"AT\";i:5;s:2:\"BE\";i:6;s:2:\"BG\";i:7;s:2:\"CH\";i:8;s:2:\"CY\";i:9;s:2:\"CZ\";i:10;s:2:\"DK\";i:11;s:2:\"EE\";i:12;s:2:\"ES\";i:13;s:2:\"FI\";i:14;s:2:\"FR\";i:15;s:2:\"DE\";i:16;s:2:\"GB\";i:17;s:2:\"GR\";i:18;s:2:\"HU\";i:19;s:2:\"IE\";i:20;s:2:\"IT\";i:21;s:2:\"LV\";i:22;s:2:\"LT\";i:23;s:2:\"LU\";i:24;s:2:\"MT\";i:25;s:2:\"NL\";i:26;s:2:\"NO\";i:27;s:2:\"PL\";i:28;s:2:\"PT\";i:29;s:2:\"RO\";i:30;s:2:\"SK\";i:31;s:2:\"SL\";i:32;s:2:\"SE\";i:33;s:2:\"AU\";i:34;s:2:\"NZ\";i:35;s:2:\"HK\";i:36;s:2:\"JP\";i:37;s:2:\"SG\";i:38;s:2:\"ID\";i:39;s:2:\"IN\";}s:19:\"category_additional\";a:0:{}s:23:\"recommendation_priority\";i:1;}s:23:\"woo-mercado-pago-custom\";O:8:\"stdClass\":11:{s:2:\"id\";s:23:\"woo-mercado-pago-custom\";s:5:\"title\";s:34:\"Mercado Pago Checkout Pro & Custom\";s:7:\"content\";s:183:\"Accept credit and debit cards, offline (cash or bank transfer) and logged-in payments with money in Mercado Pago. Safe and secure payments with the leading payment processor in LATAM.\";s:5:\"image\";s:107:\"https://woocommerce.com/wp-content/plugins/wccom-plugins/payment-gateway-suggestions/images/mercadopago.png\";s:11:\"image_72x72\";s:113:\"https://woocommerce.com/wp-content/plugins/wccom-plugins/payment-gateway-suggestions/images/72x72/mercadopago.png\";s:7:\"plugins\";a:1:{i:0;s:23:\"woocommerce-mercadopago\";}s:10:\"is_visible\";a:1:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:2:\"or\";s:8:\"operands\";a:8:{i:0;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"AR\";s:9:\"operation\";s:1:\"=\";}i:1;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"CL\";s:9:\"operation\";s:1:\"=\";}i:2;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"CO\";s:9:\"operation\";s:1:\"=\";}i:3;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"EC\";s:9:\"operation\";s:1:\"=\";}i:4;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"PE\";s:9:\"operation\";s:1:\"=\";}i:5;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"UY\";s:9:\"operation\";s:1:\"=\";}i:6;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"MX\";s:9:\"operation\";s:1:\"=\";}i:7;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"BR\";s:9:\"operation\";s:1:\"=\";}}}}s:16:\"is_local_partner\";b:1;s:14:\"category_other\";a:8:{i:0;s:2:\"AR\";i:1;s:2:\"CL\";i:2;s:2:\"CO\";i:3;s:2:\"EC\";i:4;s:2:\"PE\";i:5;s:2:\"UY\";i:6;s:2:\"MX\";i:7;s:2:\"BR\";}s:19:\"category_additional\";a:0:{}s:23:\"recommendation_priority\";i:9;}s:20:\"woocommerce_payments\";O:8:\"stdClass\":10:{s:2:\"id\";s:20:\"woocommerce_payments\";s:5:\"title\";s:11:\"WooPayments\";s:7:\"content\";s:84:\"Manage transactions without leaving your WordPress Dashboard. Only with WooPayments.\";s:5:\"image\";s:101:\"https://woocommerce.com/wp-content/plugins/wccom-plugins/payment-gateway-suggestions/images/wcpay.svg\";s:12:\"square_image\";s:107:\"https://woocommerce.com/wp-content/plugins/wccom-plugins/payment-gateway-suggestions/images/woocommerce.svg\";s:11:\"image_72x72\";s:101:\"https://woocommerce.com/wp-content/plugins/wccom-plugins/payment-gateway-suggestions/images/wcpay.svg\";s:7:\"plugins\";a:1:{i:0;s:20:\"woocommerce-payments\";}s:11:\"description\";s:225:\"With WooPayments, you can securely accept major cards, Apple Pay, and payments in over 100 currencies. Track cash flow and manage recurring revenue directly from your store’s dashboard - with no setup costs or monthly fees.\";s:10:\"is_visible\";a:4:{i:0;O:8:\"stdClass\":6:{s:4:\"type\";s:6:\"option\";s:12:\"transformers\";a:2:{i:0;O:8:\"stdClass\":2:{s:3:\"use\";s:12:\"dot_notation\";s:9:\"arguments\";O:8:\"stdClass\":1:{s:4:\"path\";s:8:\"industry\";}}i:1;O:8:\"stdClass\":2:{s:3:\"use\";s:12:\"array_column\";s:9:\"arguments\";O:8:\"stdClass\":1:{s:3:\"key\";s:4:\"slug\";}}}s:11:\"option_name\";s:30:\"woocommerce_onboarding_profile\";s:9:\"operation\";s:9:\"!contains\";s:5:\"value\";s:31:\"cbd-other-hemp-derived-products\";s:7:\"default\";a:0:{}}i:1;O:8:\"stdClass\":2:{s:4:\"type\";s:2:\"or\";s:8:\"operands\";a:39:{i:0;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"US\";s:9:\"operation\";s:1:\"=\";}i:1;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"PR\";s:9:\"operation\";s:1:\"=\";}i:2;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"AU\";s:9:\"operation\";s:1:\"=\";}i:3;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"CA\";s:9:\"operation\";s:1:\"=\";}i:4;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"DE\";s:9:\"operation\";s:1:\"=\";}i:5;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"ES\";s:9:\"operation\";s:1:\"=\";}i:6;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"FR\";s:9:\"operation\";s:1:\"=\";}i:7;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"GB\";s:9:\"operation\";s:1:\"=\";}i:8;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"IE\";s:9:\"operation\";s:1:\"=\";}i:9;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"IT\";s:9:\"operation\";s:1:\"=\";}i:10;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"NZ\";s:9:\"operation\";s:1:\"=\";}i:11;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"AT\";s:9:\"operation\";s:1:\"=\";}i:12;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"BE\";s:9:\"operation\";s:1:\"=\";}i:13;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"NL\";s:9:\"operation\";s:1:\"=\";}i:14;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"PL\";s:9:\"operation\";s:1:\"=\";}i:15;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"PT\";s:9:\"operation\";s:1:\"=\";}i:16;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"CH\";s:9:\"operation\";s:1:\"=\";}i:17;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"HK\";s:9:\"operation\";s:1:\"=\";}i:18;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"SG\";s:9:\"operation\";s:1:\"=\";}i:19;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"CY\";s:9:\"operation\";s:1:\"=\";}i:20;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"DK\";s:9:\"operation\";s:1:\"=\";}i:21;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"EE\";s:9:\"operation\";s:1:\"=\";}i:22;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"FI\";s:9:\"operation\";s:1:\"=\";}i:23;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"GR\";s:9:\"operation\";s:1:\"=\";}i:24;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"LU\";s:9:\"operation\";s:1:\"=\";}i:25;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"LT\";s:9:\"operation\";s:1:\"=\";}i:26;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"LV\";s:9:\"operation\";s:1:\"=\";}i:27;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"NO\";s:9:\"operation\";s:1:\"=\";}i:28;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"MT\";s:9:\"operation\";s:1:\"=\";}i:29;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"SI\";s:9:\"operation\";s:1:\"=\";}i:30;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"SK\";s:9:\"operation\";s:1:\"=\";}i:31;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"BG\";s:9:\"operation\";s:1:\"=\";}i:32;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"CZ\";s:9:\"operation\";s:1:\"=\";}i:33;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"HR\";s:9:\"operation\";s:1:\"=\";}i:34;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"HU\";s:9:\"operation\";s:1:\"=\";}i:35;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"RO\";s:9:\"operation\";s:1:\"=\";}i:36;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"SE\";s:9:\"operation\";s:1:\"=\";}i:37;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"JP\";s:9:\"operation\";s:1:\"=\";}i:38;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"AE\";s:9:\"operation\";s:1:\"=\";}}}i:2;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:7:\"version\";s:10:\"5.10.0-dev\";s:8:\"operator\";s:1:\"<\";}i:3;O:8:\"stdClass\":2:{s:4:\"type\";s:2:\"or\";s:8:\"operands\";O:8:\"stdClass\":2:{s:1:\"0\";O:8:\"stdClass\":2:{s:4:\"type\";s:3:\"not\";s:7:\"operand\";a:1:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:17:\"plugins_activated\";s:7:\"plugins\";a:1:{i:0;s:17:\"woocommerce-admin\";}}}}s:1:\"1\";O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:17:\"woocommerce-admin\";s:7:\"version\";s:9:\"2.9.0-dev\";s:8:\"operator\";s:1:\"<\";}}}}s:23:\"recommendation_priority\";i:0;}s:47:\"woocommerce_payments:without-in-person-payments\";O:8:\"stdClass\":10:{s:2:\"id\";s:47:\"woocommerce_payments:without-in-person-payments\";s:5:\"title\";s:11:\"WooPayments\";s:7:\"content\";s:84:\"Manage transactions without leaving your WordPress Dashboard. Only with WooPayments.\";s:5:\"image\";s:101:\"https://woocommerce.com/wp-content/plugins/wccom-plugins/payment-gateway-suggestions/images/wcpay.svg\";s:11:\"image_72x72\";s:101:\"https://woocommerce.com/wp-content/plugins/wccom-plugins/payment-gateway-suggestions/images/wcpay.svg\";s:12:\"square_image\";s:107:\"https://woocommerce.com/wp-content/plugins/wccom-plugins/payment-gateway-suggestions/images/woocommerce.svg\";s:7:\"plugins\";a:1:{i:0;s:20:\"woocommerce-payments\";}s:11:\"description\";s:225:\"With WooPayments, you can securely accept major cards, Apple Pay, and payments in over 100 currencies. Track cash flow and manage recurring revenue directly from your store’s dashboard - with no setup costs or monthly fees.\";s:10:\"is_visible\";a:3:{i:0;O:8:\"stdClass\":6:{s:4:\"type\";s:6:\"option\";s:12:\"transformers\";a:2:{i:0;O:8:\"stdClass\":2:{s:3:\"use\";s:12:\"dot_notation\";s:9:\"arguments\";O:8:\"stdClass\":1:{s:4:\"path\";s:8:\"industry\";}}i:1;O:8:\"stdClass\":2:{s:3:\"use\";s:12:\"array_column\";s:9:\"arguments\";O:8:\"stdClass\":1:{s:3:\"key\";s:4:\"slug\";}}}s:11:\"option_name\";s:30:\"woocommerce_onboarding_profile\";s:9:\"operation\";s:9:\"!contains\";s:5:\"value\";s:31:\"cbd-other-hemp-derived-products\";s:7:\"default\";a:0:{}}i:1;O:8:\"stdClass\":2:{s:4:\"type\";s:2:\"or\";s:8:\"operands\";a:37:{i:0;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"PR\";s:9:\"operation\";s:1:\"=\";}i:1;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"AU\";s:9:\"operation\";s:1:\"=\";}i:2;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"DE\";s:9:\"operation\";s:1:\"=\";}i:3;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"ES\";s:9:\"operation\";s:1:\"=\";}i:4;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"FR\";s:9:\"operation\";s:1:\"=\";}i:5;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"GB\";s:9:\"operation\";s:1:\"=\";}i:6;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"IE\";s:9:\"operation\";s:1:\"=\";}i:7;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"IT\";s:9:\"operation\";s:1:\"=\";}i:8;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"NZ\";s:9:\"operation\";s:1:\"=\";}i:9;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"AT\";s:9:\"operation\";s:1:\"=\";}i:10;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"BE\";s:9:\"operation\";s:1:\"=\";}i:11;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"NL\";s:9:\"operation\";s:1:\"=\";}i:12;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"PL\";s:9:\"operation\";s:1:\"=\";}i:13;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"PT\";s:9:\"operation\";s:1:\"=\";}i:14;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"CH\";s:9:\"operation\";s:1:\"=\";}i:15;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"HK\";s:9:\"operation\";s:1:\"=\";}i:16;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"SG\";s:9:\"operation\";s:1:\"=\";}i:17;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"CY\";s:9:\"operation\";s:1:\"=\";}i:18;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"DK\";s:9:\"operation\";s:1:\"=\";}i:19;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"EE\";s:9:\"operation\";s:1:\"=\";}i:20;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"FI\";s:9:\"operation\";s:1:\"=\";}i:21;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"GR\";s:9:\"operation\";s:1:\"=\";}i:22;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"LU\";s:9:\"operation\";s:1:\"=\";}i:23;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"LT\";s:9:\"operation\";s:1:\"=\";}i:24;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"LV\";s:9:\"operation\";s:1:\"=\";}i:25;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"NO\";s:9:\"operation\";s:1:\"=\";}i:26;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"MT\";s:9:\"operation\";s:1:\"=\";}i:27;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"SI\";s:9:\"operation\";s:1:\"=\";}i:28;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"SK\";s:9:\"operation\";s:1:\"=\";}i:29;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"BG\";s:9:\"operation\";s:1:\"=\";}i:30;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"CZ\";s:9:\"operation\";s:1:\"=\";}i:31;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"HR\";s:9:\"operation\";s:1:\"=\";}i:32;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"HU\";s:9:\"operation\";s:1:\"=\";}i:33;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"RO\";s:9:\"operation\";s:1:\"=\";}i:34;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"SE\";s:9:\"operation\";s:1:\"=\";}i:35;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"JP\";s:9:\"operation\";s:1:\"=\";}i:36;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"AE\";s:9:\"operation\";s:1:\"=\";}}}i:2;O:8:\"stdClass\":2:{s:4:\"type\";s:2:\"or\";s:8:\"operands\";O:8:\"stdClass\":2:{s:1:\"0\";O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:17:\"woocommerce-admin\";s:7:\"version\";s:9:\"2.9.0-dev\";s:8:\"operator\";s:2:\">=\";}s:1:\"1\";O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:7:\"version\";s:10:\"5.10.0-dev\";s:8:\"operator\";s:2:\">=\";}}}}s:23:\"recommendation_priority\";i:9;}s:44:\"woocommerce_payments:with-in-person-payments\";O:8:\"stdClass\":10:{s:2:\"id\";s:44:\"woocommerce_payments:with-in-person-payments\";s:5:\"title\";s:11:\"WooPayments\";s:7:\"content\";s:84:\"Manage transactions without leaving your WordPress Dashboard. Only with WooPayments.\";s:5:\"image\";s:101:\"https://woocommerce.com/wp-content/plugins/wccom-plugins/payment-gateway-suggestions/images/wcpay.svg\";s:11:\"image_72x72\";s:101:\"https://woocommerce.com/wp-content/plugins/wccom-plugins/payment-gateway-suggestions/images/wcpay.svg\";s:12:\"square_image\";s:107:\"https://woocommerce.com/wp-content/plugins/wccom-plugins/payment-gateway-suggestions/images/woocommerce.svg\";s:7:\"plugins\";a:1:{i:0;s:20:\"woocommerce-payments\";}s:11:\"description\";s:212:\"With WooPayments, you can securely accept major cards, Apple Pay, and payments in over 100 currencies – with no setup costs or monthly fees – and you can now accept in-person payments with the Woo mobile app.\";s:10:\"is_visible\";a:3:{i:0;O:8:\"stdClass\":6:{s:4:\"type\";s:6:\"option\";s:12:\"transformers\";a:2:{i:0;O:8:\"stdClass\":2:{s:3:\"use\";s:12:\"dot_notation\";s:9:\"arguments\";O:8:\"stdClass\":1:{s:4:\"path\";s:8:\"industry\";}}i:1;O:8:\"stdClass\":2:{s:3:\"use\";s:12:\"array_column\";s:9:\"arguments\";O:8:\"stdClass\":1:{s:3:\"key\";s:4:\"slug\";}}}s:11:\"option_name\";s:30:\"woocommerce_onboarding_profile\";s:9:\"operation\";s:9:\"!contains\";s:5:\"value\";s:31:\"cbd-other-hemp-derived-products\";s:7:\"default\";a:0:{}}i:1;O:8:\"stdClass\":2:{s:4:\"type\";s:2:\"or\";s:8:\"operands\";a:2:{i:0;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"US\";s:9:\"operation\";s:1:\"=\";}i:1;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"CA\";s:9:\"operation\";s:1:\"=\";}}}i:2;O:8:\"stdClass\":2:{s:4:\"type\";s:2:\"or\";s:8:\"operands\";O:8:\"stdClass\":2:{s:1:\"0\";O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:17:\"woocommerce-admin\";s:7:\"version\";s:9:\"2.9.0-dev\";s:8:\"operator\";s:2:\">=\";}s:1:\"1\";O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:7:\"version\";s:10:\"5.10.0-dev\";s:8:\"operator\";s:2:\">=\";}}}}s:23:\"recommendation_priority\";i:9;}s:8:\"zipmoney\";O:8:\"stdClass\":10:{s:2:\"id\";s:8:\"zipmoney\";s:5:\"title\";s:27:\"Zip Co - Buy Now, Pay Later\";s:7:\"content\";s:84:\"Give your customers the power to pay later, interest free and watch your sales grow.\";s:5:\"image\";s:104:\"https://woocommerce.com/wp-content/plugins/wccom-plugins/payment-gateway-suggestions/images/zipmoney.png\";s:11:\"image_72x72\";s:110:\"https://woocommerce.com/wp-content/plugins/wccom-plugins/payment-gateway-suggestions/images/72x72/zipmoney.png\";s:7:\"plugins\";a:1:{i:0;s:29:\"zipmoney-payments-woocommerce\";}s:10:\"is_visible\";a:1:{i:0;O:8:\"stdClass\":1:{s:4:\"type\";s:4:\"fail\";}}s:14:\"category_other\";a:0:{}s:19:\"category_additional\";a:3:{i:0;s:2:\"US\";i:1;s:2:\"NZ\";i:2;s:2:\"AU\";}s:23:\"recommendation_priority\";i:8;}}}','no'),(62988,'_transient_timeout_wc_shipping_method_count_legacy','1697613836','no'),(62989,'_transient_wc_shipping_method_count_legacy','a:2:{s:7:\"version\";s:10:\"1660902996\";s:5:\"value\";i:0;}','no'),(46267,'boldgrid_backup_tasks','a:6:{i:0;a:7:{s:2:\"id\";s:17:\"1692495188-008c63\";s:4:\"type\";s:6:\"backup\";s:10:\"created_at\";i:1692495188;s:10:\"started_at\";i:1692495188;s:12:\"completed_at\";i:1692495349;s:6:\"status\";s:4:\"done\";s:4:\"data\";a:0:{}}i:1;a:7:{s:2:\"id\";s:17:\"1693336754-bd662b\";s:4:\"type\";s:6:\"backup\";s:10:\"created_at\";i:1693336754;s:10:\"started_at\";i:1693336754;s:12:\"completed_at\";i:1693336926;s:6:\"status\";s:4:\"done\";s:4:\"data\";a:0:{}}i:2;a:7:{s:2:\"id\";s:17:\"1694699913-4f6acd\";s:4:\"type\";s:6:\"backup\";s:10:\"created_at\";i:1694699913;s:10:\"started_at\";i:1694699913;s:12:\"completed_at\";i:1694700141;s:6:\"status\";s:4:\"done\";s:4:\"data\";a:0:{}}i:3;a:7:{s:2:\"id\";s:17:\"1695464606-036c60\";s:4:\"type\";s:6:\"backup\";s:10:\"created_at\";i:1695464606;s:10:\"started_at\";i:1695464606;s:12:\"completed_at\";i:1695464849;s:6:\"status\";s:4:\"done\";s:4:\"data\";a:0:{}}i:4;a:7:{s:2:\"id\";s:17:\"1695791396-797517\";s:4:\"type\";s:6:\"backup\";s:10:\"created_at\";i:1695791396;s:10:\"started_at\";i:1695791396;s:12:\"completed_at\";i:1695791569;s:6:\"status\";s:4:\"done\";s:4:\"data\";a:0:{}}i:5;a:7:{s:2:\"id\";s:17:\"1695791616-a01157\";s:4:\"type\";s:6:\"backup\";s:10:\"created_at\";i:1695791616;s:10:\"started_at\";i:1695791616;s:12:\"completed_at\";N;s:6:\"status\";s:11:\"in_progress\";s:4:\"data\";a:0:{}}}','yes'),(67425,'_transient_timeout_elementor_remote_info_api_data_3.15.2','1695833883','no'),(67426,'_transient_elementor_remote_info_api_data_3.15.2','a:4:{s:9:\"timestamp\";s:10:\"1695787133\";s:14:\"upgrade_notice\";a:3:{s:7:\"version\";s:5:\"2.0.0\";s:7:\"message\";s:0:\"\";s:11:\"update_link\";s:0:\"\";}s:11:\"pro_widgets\";a:75:{i:0;a:4:{s:4:\"name\";s:5:\"posts\";s:5:\"title\";s:5:\"Posts\";s:4:\"icon\";s:15:\"eicon-post-list\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:1;a:4:{s:4:\"name\";s:9:\"portfolio\";s:5:\"title\";s:9:\"Portfolio\";s:4:\"icon\";s:18:\"eicon-gallery-grid\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:2;a:4:{s:4:\"name\";s:9:\"mega-menu\";s:5:\"title\";s:4:\"Menu\";s:4:\"icon\";s:15:\"eicon-mega-menu\";s:10:\"categories\";s:33:\"[\"pro-elements\",\"theme-elements\"]\";}i:3;a:4:{s:4:\"name\";s:4:\"form\";s:5:\"title\";s:4:\"Form\";s:4:\"icon\";s:21:\"eicon-form-horizontal\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:4;a:4:{s:4:\"name\";s:9:\"loop-grid\";s:5:\"title\";s:9:\"Loop Grid\";s:4:\"icon\";s:18:\"eicon-loop-builder\";s:10:\"categories\";s:33:\"[\"pro-elements\",\"theme-elements\"]\";}i:5;a:4:{s:4:\"name\";s:13:\"loop-carousel\";s:5:\"title\";s:13:\"Loop Carousel\";s:4:\"icon\";s:19:\"eicon-carousel-loop\";s:10:\"categories\";s:33:\"[\"pro-elements\",\"theme-elements\"]\";}i:6;a:4:{s:4:\"name\";s:7:\"gallery\";s:5:\"title\";s:7:\"Gallery\";s:4:\"icon\";s:23:\"eicon-gallery-justified\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:7;a:4:{s:4:\"name\";s:17:\"animated-headline\";s:5:\"title\";s:17:\"Animated Headline\";s:4:\"icon\";s:23:\"eicon-animated-headline\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:8;a:4:{s:4:\"name\";s:10:\"price-list\";s:5:\"title\";s:10:\"Price List\";s:4:\"icon\";s:16:\"eicon-price-list\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:9;a:4:{s:4:\"name\";s:11:\"price-table\";s:5:\"title\";s:11:\"Price Table\";s:4:\"icon\";s:17:\"eicon-price-table\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:10;a:4:{s:4:\"name\";s:8:\"flip-box\";s:5:\"title\";s:8:\"Flip Box\";s:4:\"icon\";s:14:\"eicon-flip-box\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:11;a:4:{s:4:\"name\";s:14:\"call-to-action\";s:5:\"title\";s:14:\"Call to Action\";s:4:\"icon\";s:20:\"eicon-image-rollover\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:12;a:4:{s:4:\"name\";s:14:\"media-carousel\";s:5:\"title\";s:14:\"Media Carousel\";s:4:\"icon\";s:20:\"eicon-media-carousel\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:13;a:4:{s:4:\"name\";s:15:\"nested-carousel\";s:5:\"title\";s:8:\"Carousel\";s:4:\"icon\";s:21:\"eicon-nested-carousel\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:14;a:4:{s:4:\"name\";s:9:\"countdown\";s:5:\"title\";s:9:\"Countdown\";s:4:\"icon\";s:15:\"eicon-countdown\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:15;a:4:{s:4:\"name\";s:13:\"share-buttons\";s:5:\"title\";s:13:\"Share Buttons\";s:4:\"icon\";s:11:\"eicon-share\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:16;a:4:{s:4:\"name\";s:10:\"blockquote\";s:5:\"title\";s:10:\"Blockquote\";s:4:\"icon\";s:16:\"eicon-blockquote\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:17;a:4:{s:4:\"name\";s:6:\"lottie\";s:5:\"title\";s:6:\"Lottie\";s:4:\"icon\";s:12:\"eicon-lottie\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:18;a:4:{s:4:\"name\";s:7:\"hotspot\";s:5:\"title\";s:7:\"Hotspot\";s:4:\"icon\";s:19:\"eicon-image-hotspot\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:19;a:4:{s:4:\"name\";s:13:\"paypal-button\";s:5:\"title\";s:13:\"PayPal Button\";s:4:\"icon\";s:19:\"eicon-paypal-button\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:20;a:4:{s:4:\"name\";s:14:\"code-highlight\";s:5:\"title\";s:14:\"Code Highlight\";s:4:\"icon\";s:20:\"eicon-code-highlight\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:21;a:4:{s:4:\"name\";s:14:\"video-playlist\";s:5:\"title\";s:14:\"Video Playlist\";s:4:\"icon\";s:20:\"eicon-video-playlist\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:22;a:4:{s:4:\"name\";s:8:\"template\";s:5:\"title\";s:8:\"Template\";s:4:\"icon\";s:19:\"eicon-document-file\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:23;a:4:{s:4:\"name\";s:13:\"stripe-button\";s:5:\"title\";s:13:\"Stripe Button\";s:4:\"icon\";s:19:\"eicon-stripe-button\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:24;a:4:{s:4:\"name\";s:16:\"progress-tracker\";s:5:\"title\";s:16:\"Progress Tracker\";s:4:\"icon\";s:22:\"eicon-progress-tracker\";s:10:\"categories\";s:40:\"[\"pro-elements\",\"theme-elements-single\"]\";}i:25;a:4:{s:4:\"name\";s:8:\"nav-menu\";s:5:\"title\";s:8:\"Nav Menu\";s:4:\"icon\";s:14:\"eicon-nav-menu\";s:10:\"categories\";s:33:\"[\"pro-elements\",\"theme-elements\"]\";}i:26;a:4:{s:4:\"name\";s:17:\"table-of-contents\";s:5:\"title\";s:17:\"Table of Contents\";s:4:\"icon\";s:23:\"eicon-table-of-contents\";s:10:\"categories\";s:33:\"[\"pro-elements\",\"theme-elements\"]\";}i:27;a:4:{s:4:\"name\";s:5:\"login\";s:5:\"title\";s:5:\"Login\";s:4:\"icon\";s:15:\"eicon-lock-user\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:28;a:4:{s:4:\"name\";s:6:\"slides\";s:5:\"title\";s:6:\"Slides\";s:4:\"icon\";s:12:\"eicon-slides\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:29;a:4:{s:4:\"name\";s:20:\"testimonial-carousel\";s:5:\"title\";s:20:\"Testimonial Carousel\";s:4:\"icon\";s:26:\"eicon-testimonial-carousel\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:30;a:4:{s:4:\"name\";s:7:\"reviews\";s:5:\"title\";s:7:\"Reviews\";s:4:\"icon\";s:12:\"eicon-review\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:31;a:4:{s:4:\"name\";s:15:\"facebook-button\";s:5:\"title\";s:15:\"Facebook Button\";s:4:\"icon\";s:23:\"eicon-facebook-like-box\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:32;a:4:{s:4:\"name\";s:17:\"facebook-comments\";s:5:\"title\";s:17:\"Facebook Comments\";s:4:\"icon\";s:23:\"eicon-facebook-comments\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:33;a:4:{s:4:\"name\";s:14:\"facebook-embed\";s:5:\"title\";s:14:\"Facebook Embed\";s:4:\"icon\";s:14:\"eicon-fb-embed\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:34;a:4:{s:4:\"name\";s:13:\"facebook-page\";s:5:\"title\";s:13:\"Facebook Page\";s:4:\"icon\";s:13:\"eicon-fb-feed\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:35;a:4:{s:4:\"name\";s:15:\"theme-site-logo\";s:5:\"title\";s:9:\"Site Logo\";s:4:\"icon\";s:15:\"eicon-site-logo\";s:10:\"categories\";s:18:\"[\"theme-elements\"]\";}i:36;a:4:{s:4:\"name\";s:16:\"theme-site-title\";s:5:\"title\";s:10:\"Site Title\";s:4:\"icon\";s:16:\"eicon-site-title\";s:10:\"categories\";s:18:\"[\"theme-elements\"]\";}i:37;a:4:{s:4:\"name\";s:16:\"theme-page-title\";s:5:\"title\";s:10:\"Page Title\";s:4:\"icon\";s:19:\"eicon-archive-title\";s:10:\"categories\";s:18:\"[\"theme-elements\"]\";}i:38;a:4:{s:4:\"name\";s:16:\"theme-post-title\";s:5:\"title\";s:10:\"Post Title\";s:4:\"icon\";s:16:\"eicon-post-title\";s:10:\"categories\";s:18:\"[\"theme-elements\"]\";}i:39;a:4:{s:4:\"name\";s:18:\"theme-post-excerpt\";s:5:\"title\";s:12:\"Post Excerpt\";s:4:\"icon\";s:18:\"eicon-post-excerpt\";s:10:\"categories\";s:18:\"[\"theme-elements\"]\";}i:40;a:4:{s:4:\"name\";s:25:\"theme-post-featured-image\";s:5:\"title\";s:14:\"Featured Image\";s:4:\"icon\";s:20:\"eicon-featured-image\";s:10:\"categories\";s:18:\"[\"theme-elements\"]\";}i:41;a:4:{s:4:\"name\";s:19:\"theme-archive-title\";s:5:\"title\";s:13:\"Archive Title\";s:4:\"icon\";s:19:\"eicon-archive-title\";s:10:\"categories\";s:18:\"[\"theme-elements\"]\";}i:42;a:4:{s:4:\"name\";s:13:\"archive-posts\";s:5:\"title\";s:13:\"Archive Posts\";s:4:\"icon\";s:19:\"eicon-archive-posts\";s:10:\"categories\";s:18:\"[\"theme-elements\"]\";}i:43;a:4:{s:4:\"name\";s:11:\"search-form\";s:5:\"title\";s:11:\"Search Form\";s:4:\"icon\";s:17:\"eicon-site-search\";s:10:\"categories\";s:18:\"[\"theme-elements\"]\";}i:44;a:4:{s:4:\"name\";s:10:\"author-box\";s:5:\"title\";s:10:\"Author Box\";s:4:\"icon\";s:12:\"eicon-person\";s:10:\"categories\";s:18:\"[\"theme-elements\"]\";}i:45;a:4:{s:4:\"name\";s:13:\"post-comments\";s:5:\"title\";s:13:\"Post Comments\";s:4:\"icon\";s:14:\"eicon-comments\";s:10:\"categories\";s:18:\"[\"theme-elements\"]\";}i:46;a:4:{s:4:\"name\";s:15:\"post-navigation\";s:5:\"title\";s:15:\"Post Navigation\";s:4:\"icon\";s:21:\"eicon-post-navigation\";s:10:\"categories\";s:18:\"[\"theme-elements\"]\";}i:47;a:4:{s:4:\"name\";s:9:\"post-info\";s:5:\"title\";s:9:\"Post Info\";s:4:\"icon\";s:15:\"eicon-post-info\";s:10:\"categories\";s:18:\"[\"theme-elements\"]\";}i:48;a:4:{s:4:\"name\";s:7:\"sitemap\";s:5:\"title\";s:7:\"Sitemap\";s:4:\"icon\";s:13:\"eicon-sitemap\";s:10:\"categories\";s:18:\"[\"theme-elements\"]\";}i:49;a:4:{s:4:\"name\";s:11:\"breadcrumbs\";s:5:\"title\";s:11:\"Breadcrumbs\";s:4:\"icon\";s:11:\"eicon-yoast\";s:10:\"categories\";s:18:\"[\"theme-elements\"]\";}i:50;a:4:{s:4:\"name\";s:21:\"woocommerce-menu-cart\";s:5:\"title\";s:9:\"Menu Cart\";s:4:\"icon\";s:10:\"eicon-cart\";s:10:\"categories\";s:41:\"[\"theme-elements\",\"woocommerce-elements\"]\";}i:51;a:4:{s:4:\"name\";s:19:\"wc-archive-products\";s:5:\"title\";s:16:\"Archive Products\";s:4:\"icon\";s:14:\"eicon-products\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:52;a:4:{s:4:\"name\";s:31:\"woocommerce-archive-description\";s:5:\"title\";s:19:\"Archive Description\";s:4:\"icon\";s:25:\"eicon-product-description\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:53;a:4:{s:4:\"name\";s:20:\"woocommerce-products\";s:5:\"title\";s:8:\"Products\";s:4:\"icon\";s:14:\"eicon-products\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:54;a:4:{s:4:\"name\";s:22:\"woocommerce-breadcrumb\";s:5:\"title\";s:23:\"WooCommerce Breadcrumbs\";s:4:\"icon\";s:25:\"eicon-product-breadcrumbs\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:55;a:4:{s:4:\"name\";s:14:\"wc-add-to-cart\";s:5:\"title\";s:18:\"Custom Add To Cart\";s:4:\"icon\";s:17:\"eicon-woocommerce\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:56;a:4:{s:4:\"name\";s:11:\"wc-elements\";s:5:\"title\";s:17:\"WooCommerce Pages\";s:4:\"icon\";s:19:\"eicon-product-pages\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:57;a:4:{s:4:\"name\";s:13:\"wc-categories\";s:5:\"title\";s:18:\"Product Categories\";s:4:\"icon\";s:24:\"eicon-product-categories\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:58;a:4:{s:4:\"name\";s:25:\"woocommerce-product-title\";s:5:\"title\";s:13:\"Product Title\";s:4:\"icon\";s:19:\"eicon-product-title\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:59;a:4:{s:4:\"name\";s:26:\"woocommerce-product-images\";s:5:\"title\";s:14:\"Product Images\";s:4:\"icon\";s:20:\"eicon-product-images\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:60;a:4:{s:4:\"name\";s:25:\"woocommerce-product-price\";s:5:\"title\";s:13:\"Product Price\";s:4:\"icon\";s:19:\"eicon-product-price\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:61;a:4:{s:4:\"name\";s:31:\"woocommerce-product-add-to-cart\";s:5:\"title\";s:11:\"Add To Cart\";s:4:\"icon\";s:25:\"eicon-product-add-to-cart\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:62;a:4:{s:4:\"name\";s:26:\"woocommerce-product-rating\";s:5:\"title\";s:14:\"Product Rating\";s:4:\"icon\";s:20:\"eicon-product-rating\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:63;a:4:{s:4:\"name\";s:25:\"woocommerce-product-stock\";s:5:\"title\";s:13:\"Product Stock\";s:4:\"icon\";s:19:\"eicon-product-stock\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:64;a:4:{s:4:\"name\";s:24:\"woocommerce-product-meta\";s:5:\"title\";s:12:\"Product Meta\";s:4:\"icon\";s:18:\"eicon-product-meta\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:65;a:4:{s:4:\"name\";s:37:\"woocommerce-product-short-description\";s:5:\"title\";s:17:\"Short Description\";s:4:\"icon\";s:25:\"eicon-product-description\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:66;a:4:{s:4:\"name\";s:29:\"woocommerce-product-data-tabs\";s:5:\"title\";s:17:\"Product Data Tabs\";s:4:\"icon\";s:18:\"eicon-product-tabs\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:67;a:4:{s:4:\"name\";s:42:\"woocommerce-product-additional-information\";s:5:\"title\";s:22:\"Additional Information\";s:4:\"icon\";s:19:\" eicon-product-info\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:68;a:4:{s:4:\"name\";s:27:\"woocommerce-product-related\";s:5:\"title\";s:15:\"Product Related\";s:4:\"icon\";s:21:\"eicon-product-related\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:69;a:4:{s:4:\"name\";s:26:\"woocommerce-product-upsell\";s:5:\"title\";s:7:\"Upsells\";s:4:\"icon\";s:20:\"eicon-product-upsell\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:70;a:4:{s:4:\"name\";s:25:\"woocommerce-checkout-page\";s:5:\"title\";s:8:\"Checkout\";s:4:\"icon\";s:14:\"eicon-checkout\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:71;a:4:{s:4:\"name\";s:16:\"woocommerce-cart\";s:5:\"title\";s:4:\"Cart\";s:4:\"icon\";s:14:\"eicon-woo-cart\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:72;a:4:{s:4:\"name\";s:22:\"woocommerce-my-account\";s:5:\"title\";s:10:\"My Account\";s:4:\"icon\";s:16:\"eicon-my-account\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:73;a:4:{s:4:\"name\";s:28:\"woocommerce-purchase-summary\";s:5:\"title\";s:16:\"Purchase Summary\";s:4:\"icon\";s:22:\"eicon-purchase-summary\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:74;a:4:{s:4:\"name\";s:19:\"woocommerce-notices\";s:5:\"title\";s:19:\"WooCommerce Notices\";s:4:\"icon\";s:25:\"eicon-woocommerce-notices\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}}s:17:\"canary_deployment\";a:2:{s:11:\"plugin_info\";a:11:{s:2:\"id\";s:23:\"w.org/plugins/elementor\";s:4:\"slug\";s:9:\"elementor\";s:6:\"plugin\";s:23:\"elementor/elementor.php\";s:11:\"new_version\";s:5:\"3.6.0\";s:7:\"package\";s:58:\"https://downloads.wordpress.org/plugin/elementor.3.6.0.zip\";s:3:\"url\";s:40:\"https://wordpress.org/plugins/elementor/\";s:5:\"icons\";a:3:{s:2:\"2x\";s:62:\"https://ps.w.org/elementor/assets/icon-256x256.png?rev=1427768\";s:2:\"1x\";s:54:\"https://ps.w.org/elementor/assets/icon.svg?rev=1426809\";s:3:\"svg\";s:54:\"https://ps.w.org/elementor/assets/icon.svg?rev=1426809\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:65:\"https://ps.w.org/elementor/assets/banner-1544x500.png?rev=1475479\";s:2:\"1x\";s:64:\"https://ps.w.org/elementor/assets/banner-772x250.png?rev=1475479\";}s:11:\"banners_rtl\";a:0:{}s:6:\"tested\";s:5:\"6.3.1\";s:12:\"requires_php\";s:3:\"5.6\";}s:10:\"conditions\";a:0:{}}}','no'),(51776,'_site_transient_update_core','O:8:\"stdClass\":4:{s:7:\"updates\";a:1:{i:0;O:8:\"stdClass\":10:{s:8:\"response\";s:6:\"latest\";s:8:\"download\";s:59:\"https://downloads.wordpress.org/release/wordpress-6.3.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.3.1.zip\";s:10:\"no_content\";s:70:\"https://downloads.wordpress.org/release/wordpress-6.3.1-no-content.zip\";s:11:\"new_bundled\";s:71:\"https://downloads.wordpress.org/release/wordpress-6.3.1-new-bundled.zip\";s:7:\"partial\";s:0:\"\";s:8:\"rollback\";s:0:\"\";}s:7:\"current\";s:5:\"6.3.1\";s:7:\"version\";s:5:\"6.3.1\";s:11:\"php_version\";s:5:\"7.0.0\";s:13:\"mysql_version\";s:3:\"5.0\";s:11:\"new_bundled\";s:3:\"6.1\";s:15:\"partial_version\";s:0:\"\";}}s:12:\"last_checked\";i:1695766824;s:15:\"version_checked\";s:5:\"6.3.1\";s:12:\"translations\";a:0:{}}','no');
/*!40000 ALTER TABLE `wplf_options` ENABLE KEYS */;
UNLOCK TABLES;

-- Dumped table `wplf_options` with 654 row(s)
--

--
-- Table structure for table `wplf_wc_customer_lookup`
--

DROP TABLE IF EXISTS `wplf_wc_customer_lookup`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `wplf_wc_customer_lookup` (
  `customer_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `user_id` bigint(20) unsigned DEFAULT NULL,
  `username` varchar(60) NOT NULL DEFAULT '',
  `first_name` varchar(255) NOT NULL,
  `last_name` varchar(255) NOT NULL,
  `email` varchar(100) DEFAULT NULL,
  `date_last_active` timestamp NULL DEFAULT NULL,
  `date_registered` timestamp NULL DEFAULT NULL,
  `country` char(2) NOT NULL DEFAULT '',
  `postcode` varchar(20) NOT NULL DEFAULT '',
  `city` varchar(100) NOT NULL DEFAULT '',
  `state` varchar(100) NOT NULL DEFAULT '',
  PRIMARY KEY (`customer_id`),
  UNIQUE KEY `user_id` (`user_id`),
  KEY `email` (`email`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wplf_wc_customer_lookup`
--

LOCK TABLES `wplf_wc_customer_lookup` WRITE;
/*!40000 ALTER TABLE `wplf_wc_customer_lookup` DISABLE KEYS */;
/*!40000 ALTER TABLE `wplf_wc_customer_lookup` ENABLE KEYS */;
UNLOCK TABLES;

-- Dumped table `wplf_wc_customer_lookup` with 0 row(s)
--

--
-- Table structure for table `wplf_wc_admin_note_actions`
--

DROP TABLE IF EXISTS `wplf_wc_admin_note_actions`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `wplf_wc_admin_note_actions` (
  `action_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `note_id` bigint(20) unsigned NOT NULL,
  `name` varchar(255) NOT NULL,
  `label` varchar(255) NOT NULL,
  `query` longtext NOT NULL,
  `status` varchar(255) NOT NULL,
  `is_primary` tinyint(1) NOT NULL DEFAULT 0,
  `actioned_text` varchar(255) NOT NULL,
  `nonce_action` varchar(255) DEFAULT NULL,
  `nonce_name` varchar(255) DEFAULT NULL,
  PRIMARY KEY (`action_id`),
  KEY `note_id` (`note_id`)
) ENGINE=MyISAM AUTO_INCREMENT=30559 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wplf_wc_admin_note_actions`
--

LOCK TABLES `wplf_wc_admin_note_actions` WRITE;
/*!40000 ALTER TABLE `wplf_wc_admin_note_actions` DISABLE KEYS */;
INSERT INTO `wplf_wc_admin_note_actions` VALUES (17563,1,'browse_extensions','Browse extensions','https://farmchemie.yasithawd.com/wp-admin/admin.php?page=wc-adminadmin.php?page=wc-addons','unactioned',1,'',NULL,NULL),(30451,2,'wayflyer_bnpl_q4_2021','Level up with funding','https://woocommerce.com/products/wayflyer/?utm_source=inbox_note&utm_medium=product&utm_campaign=wayflyer_bnpl_q4_2021','actioned',0,'',NULL,NULL),(30452,3,'wc_shipping_mobile_app_usps_q4_2021','Get WooCommerce Shipping','https://woocommerce.com/woocommerce-shipping/?utm_source=inbox_note&utm_medium=product&utm_campaign=wc_shipping_mobile_app_usps_q4_2021','actioned',0,'',NULL,NULL),(4573,4,'wc_shipping_mobile_app_q4_2021','Get the WooCommerce Mobile App','https://woocommerce.com/mobile/?utm_source=inbox_note&utm_medium=product&utm_campaign=wc_shipping_mobile_app_q4_2021','actioned',1,'',NULL,NULL),(4574,5,'set-up-concierge','Schedule free session','https://wordpress.com/me/concierge','actioned',1,'',NULL,NULL),(30453,6,'learn-more','Learn more','https://docs.woocommerce.com/document/woocommerce-shipping-and-tax/?utm_source=inbox','unactioned',0,'',NULL,NULL),(4576,7,'learn-more-ecomm-unique-shopping-experience','Learn more','https://docs.woocommerce.com/document/product-add-ons/?utm_source=inbox','actioned',1,'',NULL,NULL),(4577,8,'watch-the-webinar','Watch the webinar','https://youtu.be/V_2XtCOyZ7o','actioned',1,'',NULL,NULL),(30454,9,'learn-more','Learn more','https://woocommerce.com/posts/ecommerce-shipping-solutions-guide/?utm_source=inbox_note&utm_medium=product&utm_campaign=learn-more','actioned',0,'',NULL,NULL),(30455,10,'optimizing-the-checkout-flow','Learn more','https://woocommerce.com/posts/optimizing-woocommerce-checkout?utm_source=inbox_note&utm_medium=product&utm_campaign=optimizing-the-checkout-flow','actioned',0,'',NULL,NULL),(4580,11,'learn-more','Learn more','https://woocommerce.com/posts/first-things-customize-woocommerce/?utm_source=inbox_note&utm_medium=product&utm_campaign=learn-more','unactioned',1,'',NULL,NULL),(30456,12,'qualitative-feedback-from-new-users','Share feedback','https://automattic.survey.fm/wc-pay-new','actioned',0,'',NULL,NULL),(30457,13,'share-feedback','Share feedback','http://automattic.survey.fm/paypal-feedback','unactioned',0,'',NULL,NULL),(30458,14,'get-started','Get started','https://woocommerce.com/products/google-listings-and-ads?utm_source=inbox_note&utm_medium=product&utm_campaign=get-started','actioned',0,'',NULL,NULL),(30459,15,'update-wc-subscriptions-3-0-15','View latest version','https://farmchemie.yasithawd.com/wp-admin/&page=wc-addons&section=helper','actioned',0,'',NULL,NULL),(30460,16,'update-wc-core-5-4-0','How to update WooCommerce','https://docs.woocommerce.com/document/how-to-update-woocommerce/','actioned',0,'',NULL,NULL),(30461,19,'ppxo-pps-install-paypal-payments-1','View upgrade guide','https://docs.woocommerce.com/document/woocommerce-paypal-payments/paypal-payments-upgrade-guide/','actioned',0,'',NULL,NULL),(30462,20,'ppxo-pps-install-paypal-payments-2','View upgrade guide','https://docs.woocommerce.com/document/woocommerce-paypal-payments/paypal-payments-upgrade-guide/','actioned',0,'',NULL,NULL),(30464,21,'dismiss','Dismiss','','actioned',0,'',NULL,NULL),(30466,22,'dismiss','Dismiss','','actioned',0,'',NULL,NULL),(30468,23,'dismiss','Dismiss','','actioned',0,'',NULL,NULL),(30470,24,'dismiss','Dismiss','','actioned',0,'',NULL,NULL),(30471,25,'share-feedback','Share feedback','https://automattic.survey.fm/store-management','unactioned',0,'',NULL,NULL),(6917,26,'share-navigation-survey-feedback','Share feedback','https://automattic.survey.fm/feedback-on-woocommerce-navigation','actioned',1,'',NULL,NULL),(30472,27,'learn-more','Learn more','https://developer.woocommerce.com/2022/03/10/woocommerce-3-5-10-6-3-1-security-releases/','unactioned',0,'',NULL,NULL),(30473,27,'woocommerce-core-paypal-march-2022-dismiss','Dismiss','','actioned',0,'',NULL,NULL),(30475,28,'dismiss','Dismiss','','actioned',0,'',NULL,NULL),(30476,29,'pinterest_03_2022_update','Update Instructions','https://woocommerce.com/document/pinterest-for-woocommerce/?utm_source=inbox_note&utm_medium=product&utm_campaign=pinterest_03_2022_update#section-3','actioned',0,'',NULL,NULL),(446,30,'setup_task_initiative_survey_q2_2022_share_your_input','Share your input','https://t.maze.co/87390007','actioned',0,'',NULL,NULL),(30477,31,'store_setup_survey_survey_q2_2022_share_your_thoughts','Tell us how it’s going','https://automattic.survey.fm/store-setup-survey-2022','actioned',0,'',NULL,NULL),(17681,32,'wc-admin-wisepad3','Grow my business offline','https://woocommerce.com/products/wisepad3-card-reader/?utm_source=inbox_note&utm_medium=product&utm_campaign=wc-admin-wisepad3','actioned',0,'',NULL,NULL),(30463,21,'learn-more','Learn more','https://woocommerce.com/posts/critical-vulnerability-detected-july-2021/?utm_source=inbox_note&utm_medium=product&utm_campaign=learn-more','unactioned',0,'',NULL,NULL),(30465,22,'learn-more','Learn more','https://woocommerce.com/posts/critical-vulnerability-detected-july-2021/?utm_source=inbox_note&utm_medium=product&utm_campaign=learn-more','unactioned',0,'',NULL,NULL),(30467,23,'learn-more','Learn more','https://woocommerce.com/posts/critical-vulnerability-detected-july-2021/?utm_source=inbox_note&utm_medium=product&utm_campaign=learn-more','unactioned',0,'',NULL,NULL),(30469,24,'learn-more','Learn more','https://woocommerce.com/posts/critical-vulnerability-detected-july-2021/?utm_source=inbox_note&utm_medium=product&utm_campaign=learn-more','unactioned',0,'',NULL,NULL),(114,37,'learn-more','Learn more','https://woocommerce.com/mobile/?utm_medium=product','actioned',0,'',NULL,NULL),(30474,28,'learn-more','Learn more','https://developer.woocommerce.com/2022/03/10/woocommerce-3-5-10-6-3-1-security-releases/','unactioned',0,'',NULL,NULL),(73,33,'notify-refund-returns-page','Edit page','https://farmchemie.yasithawd.com/wp-admin/post.php?post=9&action=edit','actioned',0,'',NULL,NULL),(74,34,'connect','Connect','?page=wc-addons&section=helper','unactioned',0,'',NULL,NULL),(75,35,'visit-the-theme-marketplace','Visit the theme marketplace','https://woocommerce.com/product-category/themes/?utm_source=inbox&utm_medium=product','actioned',0,'',NULL,NULL),(115,38,'add-first-product','Add a product','https://farmchemie.yasithawd.com/wp-admin/admin.php?page=wc-admin&task=products','actioned',0,'',NULL,NULL),(263,42,'tracking-opt-in','Activate usage tracking','','actioned',1,'',NULL,NULL),(225,40,'view-payment-gateways','Learn more','https://woocommerce.com/product-category/woocommerce-extensions/payment-gateways/?utm_medium=product','actioned',1,'',NULL,NULL),(30449,43,'learn-more','Learn more','https://woocommerce.com/payments/?utm_medium=product','unactioned',0,'',NULL,NULL),(30450,43,'get-started','Get started','http://farmchemie.yasithawd.com/wp-admin/admin.php?page=wc-admin&action=setup-woocommerce-payments','actioned',0,'','setup-woocommerce-payments',''),(266,44,'jetpack-backup-woocommerce','Get backups','https://jetpack.com/upgrade/backup-woocommerce/?utm_source=inbox&#038;utm_medium=automattic_referred&#038;utm_campaign=jp_backup_to_woo','actioned',0,'',NULL,NULL),(2637,46,'mercado_pago_q3_2022','Free download','https://woocommerce.com/products/mercado-pago-checkout/?utm_source=inbox_note&utm_medium=product&utm_campaign=mercado_pago_q3_2022','unactioned',1,'',NULL,NULL),(1103,47,'klarna_q3_2022','Grow with Klarna','https://woocommerce.com/products/klarna-payments?utm_source=inbox_note&utm_medium=product&utm_campaign=klarna_q3_2022','unactioned',1,'',NULL,NULL),(3346,55,'dismiss_customize_your_deposits','Dismiss','','actioned',1,'',NULL,NULL),(30479,48,'dismiss','Dismiss','','actioned',0,'',NULL,NULL),(30480,49,'learn-more','Find out more','https://developer.woocommerce.com/2022/08/09/woocommerce-payments-3-9-4-4-5-1-security-releases/','unactioned',0,'',NULL,NULL),(30481,49,'dismiss','Dismiss','','actioned',0,'',NULL,NULL),(30478,48,'learn-more','Find out more','https://developer.woocommerce.com/2022/08/09/woocommerce-payments-3-9-4-4-5-1-security-releases/','unactioned',0,'',NULL,NULL),(30538,146,'woo-activation-survey-blockers-survey-button-22AUG23','Take our short survey','https://woocommerce.survey.fm/getting-started-with-woo','unactioned',0,'',NULL,NULL),(2643,50,'mobile_app_order_management_q3_2022','Get the WooCommerce Mobile App','https://woocommerce.com/mobile/?utm_source=inbox_note&utm_medium=product&utm_campaign=mobile_app_order_management_q3_2022','actioned',0,'',NULL,NULL),(3226,52,'product_creation_usability_test_3_months_take_a_look','Try it now','https://t.maze.co/103446424','unactioned',1,'',NULL,NULL),(3224,53,'product_creation_usability_test_6_months_take_a_look','Try it now','https://t.maze.co/103446424','unactioned',1,'',NULL,NULL),(3225,54,'product_creation_usability_test_12_months_take_a_look','Try it now','https://t.maze.co/103446424','unactioned',1,'',NULL,NULL),(3345,55,'cta_customize_your_deposits','Customize your deposits','https://woocommerce.com/payments/?utm_source=inbox_note&utm_medium=product&utm_campaign=cta_customize_your_deposits','actioned',1,'',NULL,NULL),(4121,58,'pre-black-friday-sale-2022-announcement','Shop the sale','https://woocommerce.com/marketplace-sale/?utm_source=inbox_note&utm_medium=product&utm_campaign=pre-black-friday-sale-2022-announcement','actioned',0,'',NULL,NULL),(4243,56,'googlelistings_signals2022_hasGLA_click','Connect Google Listings & Ads','https://farmchemie.yasithawd.com/wp-admin/admin.php?page=wc-adminadmin.php?page=wc-admin&path=marketing','unactioned',1,'',NULL,NULL),(4244,57,'googlelistings_signals2022_noGLA','Connect Google Listings & Ads','https://woocommerce.com/products/google-listings-and-ads/?utm_medium=product&utm_source=inbox_note&utm_campaign=googlelistings_signals2022_noGLA','unactioned',1,'',NULL,NULL),(4487,62,'facebook_q4-2022_noFB-click','Get started','https://woocommerce.com/products/facebook/?utm_source=inbox_note&utm_medium=product&utm_campaign=facebook_q4-2022_noFB-click','unactioned',1,'',NULL,NULL),(4325,60,'learn-more','Learn more','https://woocommerce.com/mobile/?utm_source=inbox&utm_medium=product','actioned',0,'',NULL,NULL),(5771,59,'shipping_category_q4_2022_click','Automate my shipping','https://woocommerce.com/product-category/woocommerce-extensions/shipping-delivery-and-fulfillment/?categoryIds=28685&collections=product&page=1&utm_source=inbox_note&utm_medium=product&utm_campaign=shipping_category_q4_2022_click','unactioned',1,'',NULL,NULL),(4446,61,'facebook_q4-2022_hasFB-click','Drive more demand','http://farmchemie.yasithawd.com/wp-admin/admin.php?page=wc-adminadmin.php?page=wc-facebook','unactioned',1,'',NULL,NULL),(7899,65,'paypal_paylater_g2_q4_22','Install PayPal Payments','https://woocommerce.com/products/woocommerce-paypal-payments/?utm_source=inbox_note&utm_medium=product&utm_campaign=paypal_paylater_g2_q4_22','unactioned',1,'',NULL,NULL),(7858,64,'paypal_paylater_g3_q4_22','Install PayPal Payments','https://woocommerce.com/products/woocommerce-paypal-payments/?utm_source=inbox_note&utm_medium=product&utm_campaign=paypal_paylater_g3_q4_22','unactioned',1,'',NULL,NULL),(6695,63,'tiktok-targeted-q4-2022-click','Launch a campaign','https://woocommerce.com/products/tiktok-for-woocommerce/?utm_source=inbox_note&utm_medium=product&utm_campaign=tiktok-targeted-q4-2022-click','unactioned',1,'',NULL,NULL),(7857,66,'woocommerce_admin_deprecation_q4_2022','Deactivate WooCommerce Admin','https://farmchemie.yasithawd.com/wp-admin/admin.php?page=wc-adminplugins.php','actioned',0,'',NULL,NULL),(18131,68,'google_listings_ads_custom_attribute_mapping_q4_2022','Learn more','https://woocommerce.com/document/google-listings-and-ads/?utm_source=inbox_note&utm_medium=product&utm_campaign=google_listings_ads_custom_attribute_mapping_q4_2022#attribute-mapping','actioned',0,'',NULL,NULL),(6493,69,'wc-admin-manualauthcapture','Learn more','https://woocommerce.com/document/woocommerce-payments/settings-guide/authorize-and-capture/?utm_source=inbox_note&utm_medium=product&utm_campaign=wc-admin-manualauthcapture','actioned',0,'',NULL,NULL),(6699,70,'apple_pay_square_q422','Enable Apple Pay','http://farmchemie.yasithawd.com/wp-admin/admin.php?page=wc-admin/wp-admin/admin.php?page=wc-settings&tab=checkout&section=square_credit_card','unactioned',1,'',NULL,NULL),(6700,71,'apple_pay_wcpay_q422','Enable Apple Pay','http://farmchemie.yasithawd.com/wp-admin/admin.php?page=wc-admin/wp-admin/admin.php?page=wc-settings&tab=checkout&section=woocommerce_payments','unactioned',1,'',NULL,NULL),(7654,76,'storeediting_feedback_jan_2023','Share your input','https://t.maze.co/135212793','actioned',1,'',NULL,NULL),(5985,72,'meta-hasFB-dec-q4-2022','Connect your store','http://farmchemie.yasithawd.com/wp-admin/admin.php?page=wc-adminadmin.php?page=wc-facebook','unactioned',1,'',NULL,NULL),(6243,73,'meta-noFB-dec-q4-2022','Get started','https://woocommerce.com/products/facebook/?utm_source=inbox_note&utm_medium=product&utm_campaign=meta-noFB-dec-q4-2022','unactioned',1,'',NULL,NULL),(30483,74,'needs-update-eway-payment-gateway-rin-dismiss-button-2022-12-20','Dismiss','#','actioned',0,'',NULL,NULL),(30482,74,'needs-update-eway-payment-gateway-rin-action-button-2022-12-20','See available updates','https://farmchemie.yasithawd.com/wp-admin/update-core.php','unactioned',0,'',NULL,NULL),(30485,75,'updated-eway-payment-gateway-rin-dismiss-button-2022-12-20','Dismiss','#','actioned',0,'',NULL,NULL),(30484,75,'updated-eway-payment-gateway-rin-action-button-2022-12-20','See all updates','https://farmchemie.yasithawd.com/wp-admin/update-core.php','unactioned',0,'',NULL,NULL),(7225,77,'learn-more','Learn more','https://woocommerce.com/mobile/?utm_source=inbox&utm_medium=product','actioned',0,'',NULL,NULL),(30486,78,'share-navigation-survey-feedback','Share feedback','https://automattic.survey.fm/new-ecommerce-plan-navigation','actioned',0,'',NULL,NULL),(13643,80,'google_listings_ads_pmax_i1_q1_2023_no_gla','Boost my business with Google','https://woocommerce.com/products/google-listings-and-ads/?utm_source=inbox_note&utm_medium=product&utm_campaign=google_listings_ads_pmax_i1_q1_2023_no_gla','actioned',0,'',NULL,NULL),(9754,79,'affirm_q1_2023','Get started with Affirm','https://woocommerce.com/products/woocommerce-gateway-affirm/?utm_source=inbox_note&utm_medium=product&utm_campaign=affirm_q1_2023','actioned',1,'',NULL,NULL),(13644,81,'google_listings_ads_pmax_i1_q1_2023_with_gla','Create a new ad','https://woocommerce.com/products/google-listings-and-ads/?utm_source=inbox_note&utm_medium=product&utm_campaign=google_listings_ads_pmax_i1_q1_2023_with_gla','actioned',0,'',NULL,NULL),(30489,82,'woocommerce-wcpay-march-2023-update-needed-button','See Blog Post','https://developer.woocommerce.com/2023/03/23/critical-vulnerability-detected-in-woocommerce-payments-what-you-need-to-know','unactioned',0,'',NULL,NULL),(30490,82,'woocommerce-wcpay-march-2023-update-needed-dismiss-button','Dismiss','#','actioned',0,'',NULL,NULL),(30491,83,'tap_to_pay_iphone_q2_2023_no_wcpay','Simplify my payments','https://woocommerce.com/products/woocommerce-payments/?utm_source=inbox_note&utm_medium=product&utm_campaign=tap_to_pay_iphone_q2_2023_no_wcpay','actioned',0,'',NULL,NULL),(30505,109,'woopay-beta-merchantrecruitment-short-activate-learnmore-06MAY23-TESTA','Learn More','https://woocommerce.com/woopay-businesses/?utm_source=inbox_note&utm_medium=product&utm_campaign=woopay-beta-merchantrecruitment-short-activate-learnmore-06MAY23-TESTA','unactioned',0,'',NULL,NULL),(22748,84,'tap_to_pay_iphone_q2_2023_with_wcpay','Set up Tap to Pay on iPhone','https://woocommerce.com/document/woopayments/in-person-payments/tap-to-pay-iphone?utm_source=inbox_note&utm_medium=product&utm_campaign=tap_to_pay_iphone_q2_2023_with_wcpay','actioned',0,'',NULL,NULL),(30503,108,'woopay-beta-merchantrecruitment-short-activate-learnmore-06MAY23-TESTA','Learn More','https://woocommerce.com/woopay-businesses/?utm_source=inbox_note&utm_medium=product&utm_campaign=woopay-beta-merchantrecruitment-short-activate-learnmore-06MAY23-TESTA','unactioned',0,'',NULL,NULL),(13059,99,'wc-admin-BNPL-WCPay-coming-soon','Sign up now','https://woocommerce.com/buy-now-pay-later-for-woocommerce-payments/?utm_source=inbox_note&utm_medium=product&utm_campaign=wc-admin-BNPL-WCPay-coming-soon','actioned',1,'',NULL,NULL),(30493,85,'dismiss','Dismiss','#','actioned',0,'',NULL,NULL),(14227,86,'wc-admin-wcpay-denmark-Q2-2023','Simplify my payments','https://woocommerce.com/payments/denmark/?utm_source=inbox_note&utm_medium=product&utm_campaign=wc-admin-wcpay-denmark-Q2-2023','actioned',1,'',NULL,NULL),(14228,87,'wc-admin-wcpay-greece-Q2-2023','Simplify my payments','https://woocommerce.com/payments/greece/?utm_source=inbox_note&utm_medium=product&utm_campaign=wc-admin-wcpay-greece-Q2-2023','actioned',1,'',NULL,NULL),(14229,88,'wc-admin-wcpay-norway-Q2-2023','Simplify my payments','https://woocommerce.com/payments/norway/?utm_source=inbox_note&utm_medium=product&utm_campaign=wc-admin-wcpay-norway-Q2-2023','actioned',1,'',NULL,NULL),(14230,89,'wc-admin-wcpay-slovakia-Q2-2023','Simplify my payments','https://woocommerce.com/payments/slovakia/?utm_source=inbox_note&utm_medium=product&utm_campaign=wc-admin-wcpay-slovakia-Q2-2023','actioned',1,'',NULL,NULL),(14231,90,'wc-admin-wcpay-finland-Q2-2023','Simplify my payments','https://woocommerce.com/payments/finland/?utm_source=inbox_note&utm_medium=product&utm_campaign=wc-admin-wcpay-finland-Q2-2023','actioned',1,'',NULL,NULL),(14232,91,'wc-admin-wcpay-estonia-Q2-2023','Simplify my payments','https://woocommerce.com/payments/estonia/?utm_source=inbox_note&utm_medium=product&utm_campaign=wc-admin-wcpay-estonia-Q2-2023','actioned',1,'',NULL,NULL),(14233,92,'wc-admin-wcpay-lithuania-Q2-2023','Simplify my payments','https://woocommerce.com/payments/lithuania/?utm_source=inbox_note&utm_medium=product&utm_campaign=wc-admin-wcpay-lithuania-Q2-2023','actioned',1,'',NULL,NULL),(14234,93,'wc-admin-wcpay-slovenia-Q2-2023','Simplify my payments','https://woocommerce.com/payments/slovenia/?utm_source=inbox_note&utm_medium=product&utm_campaign=wc-admin-wcpay-slovenia-Q2-2023','actioned',1,'',NULL,NULL),(14235,94,'wc-admin-wcpay-latvia-Q2-2023','Simplify my payments','https://woocommerce.com/payments/latvia/?utm_source=inbox_note&utm_medium=product&utm_campaign=wc-admin-wcpay-latvia-Q2-2023','actioned',1,'',NULL,NULL),(14236,95,'wc-admin-wcpay-cyprus-Q2-2023','Simplify my payments','https://woocommerce.com/payments/cyprus/?utm_source=inbox_note&utm_medium=product&utm_campaign=wc-admin-wcpay-cyprus-Q2-2023','actioned',1,'',NULL,NULL),(14237,96,'wc-admin-wcpay-malta-Q2-2023','Simplify my payments','https://woocommerce.com/payments/malta/?utm_source=inbox_note&utm_medium=product&utm_campaign=wc-admin-wcpay-malta-Q2-2023','actioned',1,'',NULL,NULL),(14238,97,'wc-admin-wcpay-luxembourg-Q2-2023','Simplify my payments','https://woocommerce.com/payments/luxembourg/?utm_source=inbox_note&utm_medium=product&utm_campaign=wc-admin-wcpay-luxembourg-Q2-2023','actioned',1,'',NULL,NULL),(10907,98,'learn-more','Learn more','https://woocommerce.com/mobile/?utm_source=inbox&utm_medium=product','actioned',0,'',NULL,NULL),(30492,85,'extension-settings','See available updates','https://farmchemie.yasithawd.com/wp-admin/update-core.php','unactioned',0,'',NULL,NULL),(30496,100,'woopay-beta-existingmerchants-noaction-documentation-27APR23','Documentation','https://woocommerce.com/document/woopay-merchant-documentation/?utm_source=inbox_note&utm_medium=product&utm_campaign=woopay-beta-existingmerchants-noaction-documentation-27APR23','actioned',0,'',NULL,NULL),(30497,101,'woopay-beta-existingmerchants-update-WCPay-27APR23','Update WooCommerce Payments','https://farmchemie.yasithawd.com/wp-admin/plugins.php?plugin_status=all','actioned',0,'',NULL,NULL),(11679,102,'woopay-beta-existingmerchants-noaction-documentation-27APR23-test2','Documentation','https://woocommerce.com/document/woopay-merchant-documentation/?utm_source=inbox_note&utm_medium=product&utm_campaign=woopay-beta-existingmerchants-noaction-documentation-27APR23-test2','actioned',0,'',NULL,NULL),(11680,102,'woopay-beta-existingmerchants-noaction-documentation-27APR23-dismiss-test2','Dismiss','http://farmchemie.yasithawd.com/wp-admin/admin.php?page=wc-admin#','actioned',1,'',NULL,NULL),(11681,103,'woopay-beta-existingmerchants-update-WCPay-27APR23-test','Update WooCommerce Payments','http://farmchemie.yasithawd.com/wp-admin/admin.php?page=wc-adminplugins.php?plugin_status=all','actioned',1,'',NULL,NULL),(11682,103,'woopay-beta-existingmerchants-update-WCPay-27APR23-dismiss-test','Dismiss','http://farmchemie.yasithawd.com/wp-admin/admin.php?page=wc-admin#','actioned',0,'',NULL,NULL),(30488,104,'woopay-beta-merchantrecruitment-activate-learnmore-04MAY23','Learn More','https://woocommerce.com/woopay-businesses/?utm_source=inbox_note&utm_medium=product&utm_campaign=woopay-beta-merchantrecruitment-activate-learnmore-04MAY23','unactioned',0,'',NULL,NULL),(30487,104,'woopay-beta-merchantrecruitment-activate-04MAY23','Activate WooPay','https://farmchemie.yasithawd.com/wp-admin/admin.php?page=wc-settings&tab=checkout&section=woocommerce_payments&method=platform_checkout','actioned',0,'',NULL,NULL),(30494,105,'woopay-beta-merchantrecruitment-update-WCPay-04MAY23','Update WooCommerce Payments','https://farmchemie.yasithawd.com/wp-admin/plugins.php?plugin_status=all','unactioned',0,'',NULL,NULL),(30495,105,'woopay-beta-merchantrecruitment-update-activate-04MAY23','Activate WooPay','https://farmchemie.yasithawd.com/wp-admin/admin.php?page=wc-settings&tab=checkout&section=woocommerce_payments&method=platform_checkout','actioned',0,'',NULL,NULL),(30498,106,'woopay-beta-merchantrecruitment-short-activate-04MAY23','Activate WooPay','https://farmchemie.yasithawd.com/wp-admin/admin.php?page=wc-settings&tab=checkout&section=woocommerce_payments&method=platform_checkout','actioned',0,'',NULL,NULL),(30500,107,'woopay-beta-merchantrecruitment-short-update-WCPay-04MAY23','Update WooCommerce Payments','https://farmchemie.yasithawd.com/wp-admin/plugins.php?plugin_status=all','unactioned',0,'',NULL,NULL),(30501,107,'woopay-beta-merchantrecruitment-short-update-activate-04MAY23','Activate WooPay','https://farmchemie.yasithawd.com/wp-admin/admin.php?page=wc-settings&tab=checkout&section=woocommerce_payments&method=platform_checkout','actioned',0,'',NULL,NULL),(30511,112,'woopay-beta-merchantrecruitment-short-activate-learnmore-button2-09MAY23','Learn More','https://woocommerce.com/woopay-businesses/?utm_source=inbox_note&utm_medium=product&utm_campaign=woopay-beta-merchantrecruitment-short-activate-learnmore-button2-09MAY23','unactioned',0,'',NULL,NULL),(30502,108,'woopay-beta-merchantrecruitment-short-activate-06MAY23-TESTA','Activate WooPay Test A','https://farmchemie.yasithawd.com/wp-admin/admin.php?page=wc-settings&tab=checkout&section=woocommerce_payments&method=platform_checkout','unactioned',0,'',NULL,NULL),(30504,109,'woopay-beta-merchantrecruitment-short-activate-06MAY23-TESTB','Activate WooPay Test B','https://farmchemie.yasithawd.com/wp-admin/admin.php?page=wc-settings&tab=checkout&section=woocommerce_payments&method=platform_checkout','unactioned',0,'',NULL,NULL),(30506,110,'woopay-beta-merchantrecruitment-short-activate-06MAY23-TESTC','Activate WooPay Test C','https://farmchemie.yasithawd.com/wp-admin/admin.php?page=wc-settings&tab=checkout&section=woocommerce_payments&method=platform_checkout','unactioned',0,'',NULL,NULL),(30507,110,'woopay-beta-merchantrecruitment-short-activate-learnmore-06MAY23-TESTC','Learn More','https://woocommerce.com/woopay-businesses/?utm_source=inbox_note&utm_medium=product&utm_campaign=woopay-beta-merchantrecruitment-short-activate-learnmore-06MAY23-TESTC','unactioned',0,'',NULL,NULL),(30508,111,'woopay-beta-merchantrecruitment-short-activate-06MAY23-TESTD','Activate WooPay Test D','https://farmchemie.yasithawd.com/wp-admin/admin.php?page=wc-settings&tab=checkout&section=woocommerce_payments&method=platform_checkout','unactioned',0,'',NULL,NULL),(30509,111,'woopay-beta-merchantrecruitment-short-activate-learnmore-06MAY23-TESTD','Learn More','https://woocommerce.com/woopay-businesses/?utm_source=inbox_note&utm_medium=product&utm_campaign=woopay-beta-merchantrecruitment-short-activate-learnmore-06MAY23-TESTD','unactioned',0,'',NULL,NULL),(30499,106,'woopay-beta-merchantrecruitment-short-activate-learnmore-04MAY23','Learn More','https://woocommerce.com/woopay-businesses/?utm_source=inbox_note&utm_medium=product&utm_campaign=woopay-beta-merchantrecruitment-short-activate-learnmore-04MAY23','actioned',0,'',NULL,NULL),(30524,131,'woocommerce-WCGC-July-2023-update-needed','See available updates','https://farmchemie.yasithawd.com/wp-admin/plugins.php?plugin_status=all','unactioned',0,'',NULL,NULL),(30510,112,'woopay-beta-merchantrecruitment-short-activate-button-09MAY23','Activate WooPay','https://farmchemie.yasithawd.com/wp-admin/admin.php?page=wc-settings&tab=checkout&section=woocommerce_payments&method=platform_checkout','unactioned',0,'',NULL,NULL),(30512,113,'woopay-beta-merchantrecruitment-short-update-WCPay-09MAY23','Update WooCommerce Payments','https://farmchemie.yasithawd.com/wp-admin/plugins.php?plugin_status=all','unactioned',0,'',NULL,NULL),(24790,147,'tiktok_shopGTM_q3-2023_hasTikTok','Learn more','https://woocommerce.com/document/tiktok-for-woocommerce/?utm_source=inbox_note&utm_medium=product&utm_campaign=tiktok_shopGTM_q3-2023_hasTikTok','unactioned',0,'',NULL,NULL),(30513,113,'woopay-beta-merchantrecruitment-short-update-activate-09MAY23','Activate WooPay','https://farmchemie.yasithawd.com/wp-admin/admin.php?page=wc-settings&tab=checkout&section=woocommerce_payments&method=platform_checkout','unactioned',0,'',NULL,NULL),(13432,114,'payoneer_q2_2023','Get started with Payoneer','https://woocommerce.com/products/payoneer-checkout?utm_source=inbox_note&utm_medium=product&utm_campaign=payoneer_q2_2023','actioned',1,'',NULL,NULL),(23657,115,'ipp_refresh_q2_2023_us_inbox_notification','Grow my business on the go','https://woocommerce.com/in-person-payments/?utm_source=inbox_note&utm_medium=product&utm_campaign=ipp_refresh_q2_2023_us_inbox_notification','actioned',0,'',NULL,NULL),(23658,116,'ipp_refresh_q2_2023_ca_inbox_notification','Grow my business on the go','https://woocommerce.com/in-person-payments/?utm_source=inbox_note&utm_medium=product&utm_campaign=ipp_refresh_q2_2023_ca_inbox_notification','actioned',0,'',NULL,NULL),(14261,117,'product_management_card_sorting','Get started','https://t.maze.co/163892579','unactioned',1,'',NULL,NULL),(30515,118,'woocommerce-WCStripe-May-2023-updated-needed-Plugin-Settings-dismiss','Dismiss','#','actioned',0,'',NULL,NULL),(30514,118,'woocommerce-WCStripe-May-2023-updated-needed-Plugin-Settings','See available updates','https://farmchemie.yasithawd.com/wp-admin/plugins.php?plugin_status=all','unactioned',0,'',NULL,NULL),(30520,119,'woocommerce-WCReturnsWarranty-June-2023-updated-needed','See available updates','https://farmchemie.yasithawd.com/wp-admin/plugins.php?plugin_status=all','unactioned',0,'',NULL,NULL),(30521,119,'woocommerce-WCReturnsWarranty-June-2023-updated-needed','Dismiss','#','actioned',0,'',NULL,NULL),(30519,120,'woocommerce-WCSubscriptions-June-2023-updated-needed-dismiss','Dismiss','#','actioned',0,'',NULL,NULL),(30518,120,'woocommerce-WCSubscriptions-June-2023-updated-needed-Plugin-Settings','See available updates','https://farmchemie.yasithawd.com/wp-admin/plugins.php?plugin_status=all','unactioned',0,'',NULL,NULL),(21299,124,'wc-admin-wcpay-bulgaria-Q2-2023','Simplify my payments','https://woocommerce.com/payments/bulgaria/?utm_source=inbox_note&utm_medium=product&utm_campaign=wc-admin-wcpay-bulgaria-Q2-2023','actioned',1,'',NULL,NULL),(30516,121,'woocommerce-WCPayments-June-2023-updated-needed-Plugin-Settings','See available updates','https://farmchemie.yasithawd.com/wp-admin/plugins.php?plugin_status=all','unactioned',0,'',NULL,NULL),(30517,121,'woocommerce-WCPayments-June-2023-updated-needed-Dismiss','Dismiss','#','actioned',0,'',NULL,NULL),(18976,122,'woocommerce_hpos_1st_notification_q2_2023','Learn more about HPOS','https://woocommerce.com/posts/platform-update-high-performance-order-storage-for-woocommerce/?utm_source=inbox_note&utm_medium=product&utm_campaign=woocommerce_hpos_1st_notification_q2_2023','actioned',0,'',NULL,NULL),(30523,123,'woocommerce-WCOPC-June-2023-updated-needed','Dismiss','https://farmchemie.yasithawd.com/wp-admin/#','actioned',0,'',NULL,NULL),(30522,123,'woocommerce-WCOPC-June-2023-updated-needed','See available updates','https://farmchemie.yasithawd.com/wp-admin/plugins.php?plugin_status=all','actioned',0,'',NULL,NULL),(18189,134,'learn-more','Learn more','https://woocommerce.com/mobile/?utm_source=inbox&utm_medium=product','actioned',0,'',NULL,NULL),(21300,125,'wc-admin-wcpay-czechia-Q2-2023','Simplify my payments','https://woocommerce.com/payments/czechia/?utm_source=inbox_note&utm_medium=product&utm_campaign=wc-admin-wcpay-czechia-Q2-2023','actioned',1,'',NULL,NULL),(21301,126,'wc-admin-wcpay-croatia-Q2-2023','Simplify my payments','https://woocommerce.com/payments/croatia/?utm_source=inbox_note&utm_medium=product&utm_campaign=wc-admin-wcpay-croatia-Q2-2023','actioned',1,'',NULL,NULL),(21302,127,'wc-admin-wcpay-hungary-Q2-2023','Simplify my payments','https://woocommerce.com/payments/hungary/?utm_source=inbox_note&utm_medium=product&utm_campaign=wc-admin-wcpay-hungary-Q2-2023','actioned',1,'',NULL,NULL),(21303,128,'wc-admin-wcpay-romania-Q2-2023','Simplify my payments','https://woocommerce.com/payments/romania/?utm_source=inbox_note&utm_medium=product&utm_campaign=wc-admin-wcpay-romania-Q2-2023','actioned',1,'',NULL,NULL),(21304,129,'wc-admin-wcpay-sweden-Q2-2023','Simplify my payments','https://woocommerce.com/payments/sweden/?utm_source=inbox_note&utm_medium=product&utm_campaign=wc-admin-wcpay-sweden-Q2-2023','actioned',1,'',NULL,NULL),(16766,130,'tiktok-spc_june-2023','Optimize my advertising','https://woocommerce.com/products/tiktok-for-woocommerce/?utm_source=inbox_note&utm_medium=product&utm_campaign=tiktok-spc_june-2023','actioned',1,'',NULL,NULL),(30525,131,'woocommerce-WCGC-July-2023-update-needed','Dismiss','#','actioned',0,'',NULL,NULL),(30528,132,'learn-more','Learn more','https://woocommerce.com/document/fedex/?utm_medium=product&utm_source=inbox_note&utm_campaign=learn-more#july-2023-api-outage','unactioned',0,'',NULL,NULL),(30530,133,'dismiss','Dismiss','https://farmchemie.yasithawd.com/wp-admin/admin.php?page=wc-admin','actioned',0,'',NULL,NULL),(30529,133,'plugin-list','See available updates','https://farmchemie.yasithawd.com/wp-admin/plugins.php?plugin_status=all','unactioned',0,'',NULL,NULL),(19254,135,'square_button_q3_2023','Get started with Square','https://woocommerce.com/products/square/?utm_source=inbox_note&utm_medium=product&utm_campaign=square_button_q3_2023','actioned',1,'',NULL,NULL),(19615,136,'wc-admin-woopayments-rebrand','Learn more about WooPayments','https://woocommerce.com/payments/?utm_source=inbox_note&utm_medium=product&utm_campaign=wc-admin-woopayments-rebrand','actioned',1,'',NULL,NULL),(30537,142,'avalara_q3-2023_noAvaTax','Automate my sales tax','https://woocommerce.com/products/woocommerce-avatax/?utm_source=inbox_note&utm_medium=product&utm_campaign=avalara_q3-2023_noAvaTax','unactioned',0,'',NULL,NULL),(30532,137,'dismiss','Dismiss','#','actioned',0,'',NULL,NULL),(30533,138,'dismiss','Dismiss','#','actioned',0,'',NULL,NULL),(30534,139,'woocommerce-WooPayments-Aug-2023-update-needed','See available updates','https://farmchemie.yasithawd.com/wp-admin/update-core.php?','unactioned',0,'',NULL,NULL),(30535,139,'dismiss','Dismiss','#','actioned',0,'',NULL,NULL),(19715,141,'tiktok-apac-webinar-2023','RSVP today','https://unlockingtiktokwithwoocommerce.splashthat.com/','actioned',1,'',NULL,NULL),(30536,140,'dismiss','Dismiss','#','actioned',0,'',NULL,NULL),(24899,148,'tiktok_shopGTM_q3-2023_noTikTok','Learn more','https://woocommerce.com/products/tiktok-for-woocommerce/?utm_source=inbox_note&utm_medium=product&utm_campaign=tiktok_shopGTM_q3-2023_noTikTok','unactioned',0,'',NULL,NULL),(30531,137,'woocommerce-WCStripe-Aug-2023-update-needed','See available updates','https://farmchemie.yasithawd.com/wp-admin/update-core.php?','unactioned',0,'',NULL,NULL),(20184,143,'avalara_q3-2023_withAvaTax','Learn more about VAT settings','https://woocommerce.com/document/avalara-avatax/?utm_source=inbox_note&utm_medium=product&utm_campaign=avalara_q3-2023_withAvaTax#section-15','unactioned',1,'',NULL,NULL),(20280,144,'google_uxstudy_recruitment_q3-2023','Take the survey','https://eachandother.fra1.qualtrics.com/jfe/form/SV_0W118szcJOtIkzc','unactioned',1,'',NULL,NULL),(30527,151,'wc_admin_afterpay_WCPay_Q3_2023','Enable buy now, pay later','https://woocommerce.com/?post_type=documentation&p=18734002212927&preview=true&utm_source=inbox_note&utm_medium=product&utm_campaign=wc_admin_afterpay_WCPay_Q3_2023','actioned',0,'',NULL,NULL),(30558,145,'update-db_learn-more','Learn more about updates','https://docs.woocommerce.com/document/how-to-update-woocommerce/','unactioned',0,'',NULL,NULL),(30539,152,'woocommerce-usermeta-Sept2023-productvendors','See available updates','https://farmchemie.yasithawd.com/wp-admin/plugins.php','unactioned',0,'',NULL,NULL),(30526,150,'wc_admin_BNPL_WCPay_Q3_2023','Enable buy now, pay later','https://woocommerce.com/?post_type=documentation&p=18734002212927&preview=true&utm_source=inbox_note&utm_medium=product&utm_campaign=wc_admin_BNPL_WCPay_Q3_2023','actioned',0,'',NULL,NULL),(30540,152,'dismiss','Dismiss','https://farmchemie.yasithawd.com/wp-admin/#','actioned',0,'',NULL,NULL),(30557,145,'update-db_run','Update WooCommerce Database','https://farmchemie.yasithawd.com/wp-admin/plugins.php?do_update_woocommerce=true','unactioned',0,'wc_db_update','wc_db_update','wc_db_update_nonce'),(27254,149,'klaviyo_q3_2023','Integrate in minutes','https://woocommerce.com/products/klaviyo-for-woocommerce/?utm_source=inbox_note&utm_medium=product&utm_campaign=klaviyo_q3_2023','unactioned',0,'',NULL,NULL);
/*!40000 ALTER TABLE `wplf_wc_admin_note_actions` ENABLE KEYS */;
UNLOCK TABLES;

-- Dumped table `wplf_wc_admin_note_actions` with 181 row(s)
--

--
-- Table structure for table `wplf_revslider_slides`
--

DROP TABLE IF EXISTS `wplf_revslider_slides`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `wplf_revslider_slides` (
  `id` int(9) NOT NULL AUTO_INCREMENT,
  `slider_id` int(9) NOT NULL,
  `slide_order` int(11) NOT NULL,
  `params` longtext NOT NULL,
  `layers` longtext NOT NULL,
  `settings` text NOT NULL DEFAULT '',
  PRIMARY KEY (`id`),
  KEY `slider_id_index` (`slider_id`)
) ENGINE=MyISAM AUTO_INCREMENT=16 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wplf_revslider_slides`
--

LOCK TABLES `wplf_revslider_slides` WRITE;
/*!40000 ALTER TABLE `wplf_revslider_slides` DISABLE KEYS */;
INSERT INTO `wplf_revslider_slides` VALUES (1,1,1,'{\"runtime\":{\"collapsedGroups\":[]},\"bg\":{\"type\":\"image\",\"image\":\"https:\\/\\/farmchemie.yasithawd.com\\/wp-content\\/uploads\\/2022\\/08\\/farmchemie_main_bg_1.jpg\",\"imageId\":15,\"imageLib\":\"medialibrary\",\"imageWidth\":1920,\"imageHeight\":1080,\"imageRatio\":1.77777777777777767909128669998608529567718505859375},\"info\":{\"params\":[{\"v\":\"\",\"l\":10},{\"v\":\"\",\"l\":10},{\"v\":\"\",\"l\":10},{\"v\":\"\",\"l\":10},{\"v\":\"\",\"l\":10},{\"v\":\"\",\"l\":10},{\"v\":\"\",\"l\":10},{\"v\":\"\",\"l\":10},{\"v\":\"\",\"l\":10},{\"v\":\"\",\"l\":10}]},\"slideChange\":{\"in\":{\"o\":0},\"out\":{\"a\":false},\"title\":\"*opacity* Fade In\",\"main\":\"basic\",\"group\":\"fade\",\"preset\":\"fade\",\"adpr\":false},\"version\":\"6.6.0\"}','{\"top\":{\"uid\":\"top\",\"group\":{\"puid\":-1,\"groupOrder\":10},\"type\":\"zone\",\"alias\":\"TOP ROWS\",\"position\":{\"zIndex\":10,\"position\":\"absolute\"},\"version\":\"6.6.0\"},\"middle\":{\"uid\":\"middle\",\"group\":{\"puid\":-1,\"groupOrder\":9},\"type\":\"zone\",\"alias\":\"MID ROWS\",\"position\":{\"zIndex\":9,\"position\":\"absolute\"},\"version\":\"6.6.0\"},\"bottom\":{\"uid\":\"bottom\",\"group\":{\"puid\":-1,\"groupOrder\":8},\"type\":\"zone\",\"alias\":\"BOTTOM ROWS\",\"position\":{\"zIndex\":8,\"position\":\"absolute\"},\"version\":\"6.6.0\"}}','{\"version\":\"6.6.0\"}'),(2,1,2,'{\"runtime\":{\"collapsedGroups\":[]},\"bg\":{\"type\":\"image\",\"image\":\"https:\\/\\/farmchemie.yasithawd.com\\/wp-content\\/uploads\\/2022\\/08\\/farmchemie_main_bg_2.jpg\",\"imageId\":16,\"imageLib\":\"medialibrary\",\"imageWidth\":1920,\"imageHeight\":1080,\"imageRatio\":1.77777777777777767909128669998608529567718505859375},\"info\":{\"params\":[{\"v\":\"\",\"l\":10},{\"v\":\"\",\"l\":10},{\"v\":\"\",\"l\":10},{\"v\":\"\",\"l\":10},{\"v\":\"\",\"l\":10},{\"v\":\"\",\"l\":10},{\"v\":\"\",\"l\":10},{\"v\":\"\",\"l\":10},{\"v\":\"\",\"l\":10},{\"v\":\"\",\"l\":10}]},\"slideChange\":{\"in\":{\"o\":0},\"out\":{\"a\":false},\"title\":\"*opacity* Fade In\",\"main\":\"basic\",\"group\":\"fade\",\"preset\":\"fade\",\"adpr\":false},\"version\":\"6.6.0\"}','{\"top\":{\"uid\":\"top\",\"group\":{\"puid\":-1,\"groupOrder\":0},\"type\":\"zone\",\"alias\":\"TOP ROWS\",\"position\":{\"zIndex\":0,\"position\":\"absolute\"},\"version\":\"6.6.0\"},\"middle\":{\"uid\":\"middle\",\"group\":{\"puid\":-1,\"groupOrder\":0},\"type\":\"zone\",\"alias\":\"MID ROWS\",\"position\":{\"zIndex\":0,\"position\":\"absolute\"},\"version\":\"6.6.0\"},\"bottom\":{\"uid\":\"bottom\",\"group\":{\"puid\":-1,\"groupOrder\":0},\"type\":\"zone\",\"alias\":\"BOTTOM ROWS\",\"position\":{\"zIndex\":0,\"position\":\"absolute\"},\"version\":\"6.6.0\"}}','{\"version\":\"6.6.0\"}'),(3,1,3,'{\"runtime\":{\"collapsedGroups\":[]},\"bg\":{\"type\":\"image\",\"image\":\"https:\\/\\/farmchemie.yasithawd.com\\/wp-content\\/uploads\\/2022\\/08\\/farmchemie_main_bg_3.jpg\",\"imageId\":17,\"imageLib\":\"medialibrary\",\"imageWidth\":1920,\"imageHeight\":1080,\"imageRatio\":1.77777777777777767909128669998608529567718505859375},\"info\":{\"params\":[{\"v\":\"\",\"l\":10},{\"v\":\"\",\"l\":10},{\"v\":\"\",\"l\":10},{\"v\":\"\",\"l\":10},{\"v\":\"\",\"l\":10},{\"v\":\"\",\"l\":10},{\"v\":\"\",\"l\":10},{\"v\":\"\",\"l\":10},{\"v\":\"\",\"l\":10},{\"v\":\"\",\"l\":10}]},\"slideChange\":{\"in\":{\"o\":0},\"out\":{\"a\":false},\"title\":\"*opacity* Fade In\",\"main\":\"basic\",\"group\":\"fade\",\"preset\":\"fade\",\"adpr\":false},\"uid\":3,\"version\":\"6.6.0\"}','{\"top\":{\"uid\":\"top\",\"group\":{\"puid\":-1,\"groupOrder\":0},\"type\":\"zone\",\"alias\":\"TOP ROWS\",\"position\":{\"zIndex\":0,\"position\":\"absolute\"},\"version\":\"6.6.0\"},\"middle\":{\"uid\":\"middle\",\"group\":{\"puid\":-1,\"groupOrder\":0},\"type\":\"zone\",\"alias\":\"MID ROWS\",\"position\":{\"zIndex\":0,\"position\":\"absolute\"},\"version\":\"6.6.0\"},\"bottom\":{\"uid\":\"bottom\",\"group\":{\"puid\":-1,\"groupOrder\":0},\"type\":\"zone\",\"alias\":\"BOTTOM ROWS\",\"position\":{\"zIndex\":0,\"position\":\"absolute\"},\"version\":\"6.6.0\"}}','{\"version\":\"6.6.0\"}'),(5,2,1,'{\"runtime\":{\"collapsedGroups\":[]},\"title\":\"Main\",\"bg\":{\"type\":\"image\",\"image\":\"https:\\/\\/farmchemie.yasithawd.com\\/wp-content\\/uploads\\/2022\\/08\\/farmchemie_main_bg_mainimg2.jpg\",\"imageId\":2361,\"imageLib\":\"medialibrary\",\"imageWidth\":1920,\"imageHeight\":1080,\"imageRatio\":1.77777777777777767909128669998608529567718505859375},\"info\":{\"params\":[{\"v\":\"\",\"l\":10},{\"v\":\"\",\"l\":10},{\"v\":\"\",\"l\":10},{\"v\":\"\",\"l\":10},{\"v\":\"\",\"l\":10},{\"v\":\"\",\"l\":10},{\"v\":\"\",\"l\":10},{\"v\":\"\",\"l\":10},{\"v\":\"\",\"l\":10},{\"v\":\"\",\"l\":10}]},\"slideChange\":{\"in\":{\"o\":0},\"out\":{\"a\":false},\"title\":\"*opacity* Fade In\",\"main\":\"basic\",\"group\":\"fade\",\"preset\":\"fade\",\"adpr\":false},\"version\":\"6.6.0\"}','{\"top\":{\"uid\":\"top\",\"group\":{\"puid\":-1,\"groupOrder\":0},\"type\":\"zone\",\"alias\":\"TOP ROWS\",\"position\":{\"zIndex\":0,\"position\":\"absolute\"},\"version\":\"6.6.0\"},\"middle\":{\"uid\":\"middle\",\"group\":{\"puid\":-1,\"groupOrder\":0},\"type\":\"zone\",\"alias\":\"MID ROWS\",\"position\":{\"zIndex\":0,\"position\":\"absolute\"},\"version\":\"6.6.0\"},\"bottom\":{\"uid\":\"bottom\",\"group\":{\"puid\":-1,\"groupOrder\":0},\"type\":\"zone\",\"alias\":\"BOTTOM ROWS\",\"position\":{\"zIndex\":0,\"position\":\"absolute\"},\"version\":\"6.6.0\"}}','{\"version\":\"6.6.0\"}'),(6,2,2,'{\"runtime\":{\"collapsedGroups\":[]},\"title\":\"local\",\"bg\":{\"type\":\"image\",\"image\":\"https:\\/\\/farmchemie.yasithawd.com\\/wp-content\\/uploads\\/2022\\/08\\/farmchemie_main_bg_local.jpg\",\"imageId\":2362,\"imageLib\":\"medialibrary\",\"imageWidth\":1920,\"imageHeight\":1080,\"imageRatio\":1.77777777777777767909128669998608529567718505859375},\"info\":{\"params\":[{\"v\":\"\",\"l\":10},{\"v\":\"\",\"l\":10},{\"v\":\"\",\"l\":10},{\"v\":\"\",\"l\":10},{\"v\":\"\",\"l\":10},{\"v\":\"\",\"l\":10},{\"v\":\"\",\"l\":10},{\"v\":\"\",\"l\":10},{\"v\":\"\",\"l\":10},{\"v\":\"\",\"l\":10}]},\"slideChange\":{\"in\":{\"o\":0},\"out\":{\"a\":false},\"title\":\"*opacity* Fade In\",\"main\":\"basic\",\"group\":\"fade\",\"preset\":\"fade\",\"adpr\":false},\"uid\":6,\"version\":\"6.6.0\"}','{\"top\":{\"uid\":\"top\",\"group\":{\"puid\":-1,\"groupOrder\":0},\"type\":\"zone\",\"alias\":\"TOP ROWS\",\"position\":{\"zIndex\":0,\"position\":\"absolute\"},\"version\":\"6.6.0\"},\"middle\":{\"uid\":\"middle\",\"group\":{\"puid\":-1,\"groupOrder\":0},\"type\":\"zone\",\"alias\":\"MID ROWS\",\"position\":{\"zIndex\":0,\"position\":\"absolute\"},\"version\":\"6.6.0\"},\"bottom\":{\"uid\":\"bottom\",\"group\":{\"puid\":-1,\"groupOrder\":0},\"type\":\"zone\",\"alias\":\"BOTTOM ROWS\",\"position\":{\"zIndex\":0,\"position\":\"absolute\"},\"version\":\"6.6.0\"}}','{\"version\":\"6.6.0\"}'),(7,2,3,'{\"runtime\":{\"collapsedGroups\":[]},\"title\":\"Global\",\"bg\":{\"type\":\"image\",\"image\":\"https:\\/\\/farmchemie.yasithawd.com\\/wp-content\\/uploads\\/2022\\/08\\/farmchemie_main_bg_global2.jpg\",\"imageId\":2364,\"imageLib\":\"medialibrary\",\"imageWidth\":1920,\"imageHeight\":1080,\"imageRatio\":1.77777777777777767909128669998608529567718505859375},\"info\":{\"params\":[{\"v\":\"\",\"l\":10},{\"v\":\"\",\"l\":10},{\"v\":\"\",\"l\":10},{\"v\":\"\",\"l\":10},{\"v\":\"\",\"l\":10},{\"v\":\"\",\"l\":10},{\"v\":\"\",\"l\":10},{\"v\":\"\",\"l\":10},{\"v\":\"\",\"l\":10},{\"v\":\"\",\"l\":10}]},\"slideChange\":{\"in\":{\"o\":0},\"out\":{\"a\":false},\"title\":\"*opacity* Fade In\",\"main\":\"basic\",\"group\":\"fade\",\"preset\":\"fade\",\"adpr\":false},\"uid\":7,\"version\":\"6.6.0\"}','{\"top\":{\"uid\":\"top\",\"group\":{\"puid\":-1,\"groupOrder\":0},\"type\":\"zone\",\"alias\":\"TOP ROWS\",\"position\":{\"zIndex\":0,\"position\":\"absolute\"},\"version\":\"6.6.0\"},\"middle\":{\"uid\":\"middle\",\"group\":{\"puid\":-1,\"groupOrder\":0},\"type\":\"zone\",\"alias\":\"MID ROWS\",\"position\":{\"zIndex\":0,\"position\":\"absolute\"},\"version\":\"6.6.0\"},\"bottom\":{\"uid\":\"bottom\",\"group\":{\"puid\":-1,\"groupOrder\":0},\"type\":\"zone\",\"alias\":\"BOTTOM ROWS\",\"position\":{\"zIndex\":0,\"position\":\"absolute\"},\"version\":\"6.6.0\"}}','{\"version\":\"6.6.0\"}'),(8,3,1,'{\"runtime\":{\"collapsedGroups\":[\"tllayerlist_element_8_3\",\"tllayerlist_element_8_7\"]},\"bg\":{\"type\":\"html5\",\"image\":\"https:\\/\\/farmchemie.yasithawd.com\\/wp-content\\/uploads\\/revslider\\/video-media\\/WhatsApp-Video-2022-08-30-at-12_8.jpeg\",\"imageId\":2411,\"imageLib\":\"medialibrary\",\"mpeg\":\"https:\\/\\/farmchemie.yasithawd.com\\/wp-content\\/uploads\\/2022\\/08\\/WhatsApp-Video-2022-08-30-at-1.30.14-PM.mp4\",\"video\":{\"dottedOverlay\":\"1\",\"dottedOverlaySize\":\"1.5\"},\"videoId\":2428,\"imageWidth\":1280,\"imageHeight\":720,\"imageRatio\":1.77777777777777767909128669998608529567718505859375},\"info\":{\"params\":[{\"v\":\"\",\"l\":10},{\"v\":\"\",\"l\":10},{\"v\":\"\",\"l\":10},{\"v\":\"\",\"l\":10},{\"v\":\"\",\"l\":10},{\"v\":\"\",\"l\":10},{\"v\":\"\",\"l\":10},{\"v\":\"\",\"l\":10},{\"v\":\"\",\"l\":10},{\"v\":\"\",\"l\":10}]},\"slideChange\":{\"in\":{\"o\":0},\"out\":{\"a\":false},\"title\":\"*opacity* Fade In\",\"main\":\"basic\",\"group\":\"fade\",\"preset\":\"fade\",\"adpr\":false},\"version\":\"6.6.0\"}','{\"0\":{\"text\":\"<b>FARMCHEMIE<\\/b> is a world renowned Animal health company who is a member of the <b>DYVESTA<\\/b> group. Since our foundation in 2002, we have introduced effective animal health solutions to valuable livestock producers around the world. After a decade of trading high quality products, in 2012 our own production facility was established and <b>FARMCHEMIE<\\/b> became the first animal health organization in Sri Lanka to obtain <b>ISO 9001:2015<\\/b>, <b>WHO GMP<\\/b> and <b>FAMI-QS<\\/b> quality certifications. Through the careful and responsible application of science, <b>FARMCHEMIE<\\/b> delivers a wide range of products for animal well-being and sustainable production.\\n\",\"alias\":\"Text-0\",\"uid\":0,\"toggle\":{\"text\":\"\"},\"size\":{\"width\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"height\":{\"d\":{\"e\":true}},\"minWidth\":{\"d\":{\"e\":true}},\"minHeight\":{\"d\":{\"v\":\"0px\",\"e\":true}},\"aspectRatio\":{\"d\":{\"v\":\"none\"},\"n\":{\"v\":\"none\"},\"t\":{\"v\":\"none\"},\"m\":{\"v\":\"none\"}},\"scaleProportional\":false},\"position\":{\"x\":{\"d\":{\"v\":\"0\",\"e\":true},\"n\":{\"v\":\"0\"},\"t\":{\"v\":\"0\"},\"m\":{\"v\":\"0\"}},\"y\":{\"d\":{\"v\":\"0\",\"e\":true},\"n\":{\"v\":\"0\"},\"t\":{\"v\":\"0\"},\"m\":{\"v\":\"0\"}},\"horizontal\":{\"d\":{\"e\":true}},\"vertical\":{\"d\":{\"e\":true}},\"zIndex\":4,\"position\":\"relative\"},\"group\":{\"puid\":\"6\",\"groupOrder\":0},\"timeline\":{\"frames\":{\"frame_0\":{\"timeline\":{\"endWithSlide\":false}},\"frame_1\":{\"timeline\":{\"endWithSlide\":false,\"frameLength\":300}},\"frame_999\":{\"transform\":{\"opacity\":0},\"timeline\":{\"start\":9000,\"endWithSlide\":true,\"frameLength\":300}}},\"hoverFilterUsed\":false,\"frameOrder\":[{\"id\":\"frame_0\",\"start\":-1},{\"id\":\"frame_1\",\"start\":0},{\"id\":\"frame_999\",\"start\":9000}],\"split\":false,\"sessionFilterUsed\":false},\"idle\":{\"color\":{\"d\":{\"v\":\"#fff\"},\"n\":{\"v\":\"#fff\"},\"t\":{\"v\":\"#fff\"},\"m\":{\"v\":\"#fff\"}},\"margin\":{\"d\":{\"v\":[0,0,0,0],\"e\":false},\"n\":{\"v\":[0,0,0,0],\"e\":false},\"t\":{\"v\":[0,0,0,0],\"e\":false},\"m\":{\"v\":[0,0,0,0],\"e\":false}},\"padding\":{\"d\":{\"v\":[0,0,0,0],\"e\":false},\"n\":{\"v\":[0,0,0,0],\"e\":false},\"t\":{\"v\":[0,0,0,0],\"e\":false},\"m\":{\"v\":[0,0,0,0],\"e\":false}},\"fontFamily\":\"Open Sans\",\"fontSize\":{\"d\":{\"v\":\"26px\",\"e\":true},\"n\":{\"v\":\"21px\"},\"t\":{\"v\":\"15px\"},\"m\":{\"v\":\"9px\"}},\"fontWeight\":{\"d\":{\"v\":\"300\"},\"n\":{\"v\":\"300\"},\"t\":{\"v\":\"300\"},\"m\":{\"v\":\"300\"}},\"letterSpacing\":{\"d\":{\"v\":\"2px\",\"e\":true},\"n\":{\"v\":\"1px\"},\"t\":{\"v\":\"0px\"},\"m\":{\"v\":\"0px\"}},\"lineHeight\":{\"d\":{\"v\":\"30\"},\"n\":{\"v\":\"24\"},\"t\":{\"v\":\"18\"},\"m\":{\"v\":\"11\"}},\"textAlign\":{\"d\":{\"e\":true}},\"borderRadius\":{\"v\":[\"0px\",\"0px\",\"0px\",\"0px\"],\"e\":true},\"borderWidth\":[0,0,0,0],\"whiteSpace\":{\"d\":{\"v\":\"full\",\"e\":true},\"n\":{\"v\":\"full\",\"e\":true},\"t\":{\"v\":\"full\",\"e\":true},\"m\":{\"v\":\"full\",\"e\":true}}},\"hover\":{\"borderRadius\":{\"v\":[0,0,0,0]},\"borderWidth\":[0,0,0,0]},\"actions\":{\"action\":[],\"inactive_actions\":[]},\"type\":\"text\",\"version\":\"6.6.0\"},\"2\":{\"text\":\"\",\"alias\":\"Row-2\",\"uid\":2,\"toggle\":{\"text\":\"\"},\"size\":{\"aspectRatio\":{\"d\":{\"v\":\"none\"},\"n\":{\"v\":\"none\"},\"t\":{\"v\":\"none\"},\"m\":{\"v\":\"none\"}},\"scaleProportional\":false},\"position\":{\"x\":{\"d\":{\"v\":\"50px\"},\"n\":{\"v\":\"50px\"},\"t\":{\"v\":\"50px\"},\"m\":{\"v\":\"50px\"}},\"y\":{\"d\":{\"v\":\"150px\"},\"n\":{\"v\":\"150px\"},\"t\":{\"v\":\"150px\"},\"m\":{\"v\":\"150px\"}},\"zIndex\":1},\"group\":{\"groupOrder\":0},\"timeline\":{\"frames\":{\"frame_0\":{\"transform\":{\"opacity\":1},\"timeline\":{\"endWithSlide\":false}},\"frame_1\":{\"timeline\":{\"endWithSlide\":false,\"frameLength\":300}},\"frame_999\":{\"transform\":{\"opacity\":0},\"timeline\":{\"start\":9000,\"endWithSlide\":true,\"frameLength\":300}}},\"hoverFilterUsed\":false,\"frameOrder\":[{\"id\":\"frame_0\",\"start\":-1},{\"id\":\"frame_1\",\"start\":0},{\"id\":\"frame_999\",\"start\":9000}],\"split\":false,\"sessionFilterUsed\":false},\"idle\":{\"margin\":{\"d\":{\"v\":[80,0,0,0],\"e\":true},\"n\":{\"v\":[80,0,0,0],\"e\":true},\"t\":{\"v\":[80,0,0,0],\"e\":false},\"m\":{\"v\":[80,0,0,0],\"e\":false}},\"padding\":{\"d\":{\"v\":[10,10,10,10],\"e\":false},\"n\":{\"v\":[10,10,10,10],\"e\":false},\"t\":{\"v\":[10,10,10,10],\"e\":false},\"m\":{\"v\":[10,10,10,10],\"e\":false}},\"borderRadius\":{\"v\":[0,0,0,0]},\"borderWidth\":[0,0,0,0]},\"hover\":{\"borderRadius\":{\"v\":[0,0,0,0]},\"borderWidth\":[0,0,0,0]},\"actions\":{\"action\":[],\"inactive_actions\":[]},\"type\":\"row\",\"version\":\"6.6.0\"},\"3\":{\"text\":\"\",\"alias\":\"Column-3\",\"uid\":3,\"toggle\":{\"text\":\"\"},\"size\":{\"aspectRatio\":{\"d\":{\"v\":\"none\"},\"n\":{\"v\":\"none\"},\"t\":{\"v\":\"none\"},\"m\":{\"v\":\"none\"}},\"scaleProportional\":false},\"position\":{\"x\":{\"d\":{\"v\":\"50px\"},\"n\":{\"v\":\"50px\"},\"t\":{\"v\":\"50px\"},\"m\":{\"v\":\"50px\"}},\"y\":{\"d\":{\"v\":\"150px\"},\"n\":{\"v\":\"150px\"},\"t\":{\"v\":\"150px\"},\"m\":{\"v\":\"150px\"}},\"zIndex\":2},\"group\":{\"puid\":\"2\",\"groupOrder\":0,\"columnSize\":\"1\\/12\"},\"timeline\":{\"frames\":{\"frame_0\":{\"transform\":{\"opacity\":1},\"timeline\":{\"endWithSlide\":false}},\"frame_1\":{\"timeline\":{\"endWithSlide\":false,\"frameLength\":300}},\"frame_999\":{\"transform\":{\"opacity\":0},\"timeline\":{\"start\":9000,\"endWithSlide\":true,\"frameLength\":300}}},\"hoverFilterUsed\":false,\"frameOrder\":[{\"id\":\"frame_0\",\"start\":-1},{\"id\":\"frame_1\",\"start\":0},{\"id\":\"frame_999\",\"start\":9000}],\"split\":false,\"sessionFilterUsed\":false},\"idle\":{\"margin\":{\"d\":{\"v\":[0,0,0,0],\"e\":false},\"n\":{\"v\":[0,0,0,0],\"e\":false},\"t\":{\"v\":[0,0,0,0],\"e\":false},\"m\":{\"v\":[0,0,0,0],\"e\":false}},\"padding\":{\"d\":{\"v\":[10,10,10,10],\"e\":false},\"n\":{\"v\":[10,10,10,10],\"e\":false},\"t\":{\"v\":[10,10,10,10],\"e\":false},\"m\":{\"v\":[10,10,10,10],\"e\":false}},\"borderRadius\":{\"v\":[0,0,0,0]},\"borderWidth\":[0,0,0,0]},\"hover\":{\"borderRadius\":{\"v\":[0,0,0,0]},\"borderWidth\":[0,0,0,0]},\"actions\":{\"action\":[],\"inactive_actions\":[]},\"type\":\"column\",\"version\":\"6.6.0\"},\"6\":{\"text\":\"\",\"alias\":\"Column-6\",\"uid\":6,\"toggle\":{\"text\":\"\"},\"size\":{\"aspectRatio\":{\"d\":{\"v\":\"none\"},\"n\":{\"v\":\"none\"},\"t\":{\"v\":\"none\"},\"m\":{\"v\":\"none\"}},\"scaleProportional\":false},\"position\":{\"x\":{\"d\":{\"v\":\"50px\"},\"n\":{\"v\":\"50px\"},\"t\":{\"v\":\"50px\"},\"m\":{\"v\":\"50px\"}},\"y\":{\"d\":{\"v\":\"150px\"},\"n\":{\"v\":\"150px\"},\"t\":{\"v\":\"150px\"},\"m\":{\"v\":\"150px\"}},\"zIndex\":3},\"group\":{\"puid\":\"2\",\"groupOrder\":1,\"columnSize\":\"10\\/12\"},\"timeline\":{\"frames\":{\"frame_0\":{\"transform\":{\"opacity\":1},\"timeline\":{\"endWithSlide\":false}},\"frame_1\":{\"timeline\":{\"endWithSlide\":false,\"frameLength\":300}},\"frame_999\":{\"transform\":{\"opacity\":0},\"timeline\":{\"start\":9000,\"endWithSlide\":true,\"frameLength\":300}}},\"frameOrder\":[{\"id\":\"frame_0\",\"start\":-1},{\"id\":\"frame_1\",\"start\":0},{\"id\":\"frame_999\",\"start\":9000}],\"hoverFilterUsed\":false,\"split\":false,\"sessionFilterUsed\":false},\"idle\":{\"margin\":{\"d\":{\"v\":[0,0,0,0],\"e\":false},\"n\":{\"v\":[0,0,0,0],\"e\":false},\"t\":{\"v\":[0,0,0,0],\"e\":false},\"m\":{\"v\":[0,0,0,0],\"e\":false}},\"padding\":{\"d\":{\"v\":[10,10,10,10],\"e\":false},\"n\":{\"v\":[10,10,10,10],\"e\":false},\"t\":{\"v\":[10,10,10,10],\"e\":false},\"m\":{\"v\":[10,10,10,10],\"e\":false}},\"borderRadius\":{\"v\":[0,0,0,0]},\"borderWidth\":[0,0,0,0]},\"hover\":{\"borderRadius\":{\"v\":[0,0,0,0]},\"borderWidth\":[0,0,0,0]},\"actions\":{\"action\":[],\"inactive_actions\":[]},\"type\":\"column\",\"version\":\"6.6.0\"},\"7\":{\"text\":\"\",\"alias\":\"Column-7\",\"uid\":7,\"toggle\":{\"text\":\"\"},\"size\":{\"aspectRatio\":{\"d\":{\"v\":\"none\"},\"n\":{\"v\":\"none\"},\"t\":{\"v\":\"none\"},\"m\":{\"v\":\"none\"}},\"scaleProportional\":false},\"position\":{\"x\":{\"d\":{\"v\":\"50px\"},\"n\":{\"v\":\"50px\"},\"t\":{\"v\":\"50px\"},\"m\":{\"v\":\"50px\"}},\"y\":{\"d\":{\"v\":\"150px\"},\"n\":{\"v\":\"150px\"},\"t\":{\"v\":\"150px\"},\"m\":{\"v\":\"150px\"}},\"zIndex\":5},\"group\":{\"puid\":\"2\",\"groupOrder\":2,\"columnSize\":\"1\\/12\"},\"timeline\":{\"frames\":{\"frame_0\":{\"transform\":{\"opacity\":1},\"timeline\":{\"endWithSlide\":false}},\"frame_1\":{\"timeline\":{\"endWithSlide\":false,\"frameLength\":300}},\"frame_999\":{\"transform\":{\"opacity\":0},\"timeline\":{\"start\":9000,\"endWithSlide\":true,\"frameLength\":300}}},\"frameOrder\":[{\"id\":\"frame_0\",\"start\":-1},{\"id\":\"frame_1\",\"start\":0},{\"id\":\"frame_999\",\"start\":9000}],\"hoverFilterUsed\":false,\"split\":false,\"sessionFilterUsed\":false},\"idle\":{\"margin\":{\"d\":{\"v\":[0,0,0,0],\"e\":false},\"n\":{\"v\":[0,0,0,0],\"e\":false},\"t\":{\"v\":[0,0,0,0],\"e\":false},\"m\":{\"v\":[0,0,0,0],\"e\":false}},\"padding\":{\"d\":{\"v\":[10,10,10,10],\"e\":false},\"n\":{\"v\":[10,10,10,10],\"e\":false},\"t\":{\"v\":[10,10,10,10],\"e\":false},\"m\":{\"v\":[10,10,10,10],\"e\":false}},\"borderRadius\":{\"v\":[0,0,0,0]},\"borderWidth\":[0,0,0,0]},\"hover\":{\"borderRadius\":{\"v\":[0,0,0,0]},\"borderWidth\":[0,0,0,0]},\"actions\":{\"action\":[],\"inactive_actions\":[]},\"type\":\"column\",\"version\":\"6.6.0\"},\"17\":{\"text\":\"\",\"alias\":\"Image-17\",\"uid\":17,\"media\":{\"imageUrl\":\"https:\\/\\/farmchemie.yasithawd.com\\/wp-content\\/uploads\\/2022\\/08\\/FAMIQS.png\",\"imageId\":2381,\"loaded\":true,\"imageLib\":\"medialibrary\"},\"toggle\":{\"text\":\"\"},\"size\":{\"width\":{\"d\":{\"v\":\"266px\",\"e\":true},\"n\":{\"v\":\"219px\"},\"t\":{\"v\":\"166px\"},\"m\":{\"v\":\"102px\"}},\"height\":{\"d\":{\"v\":\"114px\",\"e\":true},\"n\":{\"v\":\"94px\"},\"t\":{\"v\":\"71px\"},\"m\":{\"v\":\"43px\"}},\"originalWidth\":700,\"originalHeight\":300,\"aspectRatio\":{\"d\":{\"v\":2.333333333333333481363069950020872056484222412109375},\"n\":{\"v\":2.333333333333333481363069950020872056484222412109375},\"t\":{\"v\":2.333333333333333481363069950020872056484222412109375},\"m\":{\"v\":2.333333333333333481363069950020872056484222412109375}},\"scaleProportional\":true,\"originalSize\":false},\"position\":{\"x\":{\"d\":{\"e\":true}},\"y\":{\"d\":{\"e\":true}},\"zIndex\":8,\"position\":\"relative\"},\"group\":{\"puid\":\"20\",\"groupOrder\":0},\"timeline\":{\"frames\":{\"frame_0\":{\"timeline\":{\"endWithSlide\":false}},\"frame_1\":{\"timeline\":{\"endWithSlide\":false,\"frameLength\":300}},\"frame_999\":{\"transform\":{\"opacity\":0},\"timeline\":{\"start\":9000,\"endWithSlide\":true,\"frameLength\":300}}},\"frameOrder\":[{\"id\":\"frame_0\",\"start\":-1},{\"id\":\"frame_1\",\"start\":0},{\"id\":\"frame_999\",\"start\":9000}],\"hoverFilterUsed\":false,\"split\":false,\"sessionFilterUsed\":false},\"idle\":{\"margin\":{\"d\":{\"v\":[0,0,0,0],\"e\":false},\"n\":{\"v\":[0,0,0,0],\"e\":false},\"t\":{\"v\":[0,0,0,0],\"e\":false},\"m\":{\"v\":[0,0,0,0],\"e\":false}},\"padding\":{\"d\":{\"v\":[0,0,0,0],\"e\":false},\"n\":{\"v\":[0,0,0,0],\"e\":false},\"t\":{\"v\":[0,0,0,0],\"e\":false},\"m\":{\"v\":[0,0,0,0],\"e\":false}},\"display\":\"inline-block\",\"fontSize\":{\"n\":{\"v\":\"16\"},\"t\":{\"v\":\"12\"},\"m\":{\"v\":\"7\"}},\"lineHeight\":{\"n\":{\"v\":\"20\"},\"t\":{\"v\":\"15\"},\"m\":{\"v\":\"9\"}},\"borderRadius\":{\"v\":[0,0,0,0]},\"borderWidth\":[0,0,0,0],\"whiteSpace\":{\"d\":{\"v\":\"full\"},\"n\":{\"v\":\"full\"},\"t\":{\"v\":\"full\"},\"m\":{\"v\":\"full\"}}},\"hover\":{\"borderRadius\":{\"v\":[0,0,0,0]},\"borderWidth\":[0,0,0,0]},\"actions\":{\"action\":[],\"inactive_actions\":[]},\"type\":\"image\",\"version\":\"6.6.0\"},\"18\":{\"text\":\"\",\"alias\":\"Copy image-17\",\"uid\":18,\"media\":{\"imageUrl\":\"https:\\/\\/farmchemie.yasithawd.com\\/wp-content\\/uploads\\/2022\\/08\\/SGS_png-1.png\",\"imageId\":2380,\"loaded\":true,\"imageLib\":\"medialibrary\"},\"toggle\":{\"text\":\"\"},\"size\":{\"width\":{\"d\":{\"v\":\"275px\",\"e\":true},\"n\":{\"v\":\"227px\"},\"t\":{\"v\":\"172px\"},\"m\":{\"v\":\"106px\"}},\"height\":{\"d\":{\"v\":\"118px\",\"e\":true},\"n\":{\"v\":\"97px\"},\"t\":{\"v\":\"73px\"},\"m\":{\"v\":\"45px\"}},\"originalWidth\":700,\"originalHeight\":300,\"aspectRatio\":{\"d\":{\"v\":2.333333333333333481363069950020872056484222412109375},\"n\":{\"v\":2.333333333333333481363069950020872056484222412109375},\"t\":{\"v\":2.333333333333333481363069950020872056484222412109375},\"m\":{\"v\":2.333333333333333481363069950020872056484222412109375}},\"scaleProportional\":true,\"originalSize\":true},\"position\":{\"x\":{\"d\":{\"e\":true}},\"y\":{\"d\":{\"e\":true}},\"zIndex\":10,\"position\":\"relative\"},\"group\":{\"puid\":\"21\",\"groupOrder\":0},\"timeline\":{\"frames\":{\"frame_0\":{\"timeline\":{\"endWithSlide\":false}},\"frame_1\":{\"timeline\":{\"endWithSlide\":false,\"frameLength\":300}},\"frame_999\":{\"transform\":{\"opacity\":0},\"timeline\":{\"start\":9000,\"endWithSlide\":true,\"frameLength\":300}}},\"frameOrder\":[{\"id\":\"frame_0\",\"start\":-1},{\"id\":\"frame_1\",\"start\":0},{\"id\":\"frame_999\",\"start\":9000}],\"hoverFilterUsed\":false,\"split\":false,\"sessionFilterUsed\":false},\"idle\":{\"margin\":{\"d\":{\"v\":[0,0,0,0],\"e\":false},\"n\":{\"v\":[0,0,0,0],\"e\":false},\"t\":{\"v\":[0,0,0,0],\"e\":false},\"m\":{\"v\":[0,0,0,0],\"e\":false}},\"padding\":{\"d\":{\"v\":[0,0,0,0],\"e\":false},\"n\":{\"v\":[0,0,0,0],\"e\":false},\"t\":{\"v\":[0,0,0,0],\"e\":false},\"m\":{\"v\":[0,0,0,0],\"e\":false}},\"display\":\"inline-block\",\"fontSize\":{\"n\":{\"v\":\"16\"},\"t\":{\"v\":\"12\"},\"m\":{\"v\":\"7\"}},\"lineHeight\":{\"n\":{\"v\":\"20\"},\"t\":{\"v\":\"15\"},\"m\":{\"v\":\"9\"}},\"borderRadius\":{\"v\":[0,0,0,0]},\"borderWidth\":[0,0,0,0],\"whiteSpace\":{\"d\":{\"v\":\"full\"},\"n\":{\"v\":\"full\"},\"t\":{\"v\":\"full\"},\"m\":{\"v\":\"full\"}}},\"hover\":{\"borderRadius\":{\"v\":[0,0,0,0]},\"borderWidth\":[0,0,0,0]},\"actions\":{\"action\":[],\"inactive_actions\":[]},\"type\":\"image\",\"version\":\"6.6.0\"},\"19\":{\"text\":\"\",\"alias\":\"Row-19\",\"uid\":19,\"toggle\":{\"text\":\"\"},\"size\":{\"aspectRatio\":{\"d\":{\"v\":\"none\"},\"n\":{\"v\":\"none\"},\"t\":{\"v\":\"none\"},\"m\":{\"v\":\"none\"}},\"scaleProportional\":false},\"position\":{\"x\":{\"d\":{\"v\":\"50px\"},\"n\":{\"v\":\"50px\"},\"t\":{\"v\":\"50px\"},\"m\":{\"v\":\"50px\"}},\"y\":{\"d\":{\"v\":\"312px\"},\"n\":{\"v\":\"312px\"},\"t\":{\"v\":\"312px\"},\"m\":{\"v\":\"312px\"}},\"zIndex\":6},\"group\":{\"groupOrder\":1},\"timeline\":{\"frames\":{\"frame_0\":{\"transform\":{\"opacity\":1},\"timeline\":{\"endWithSlide\":false}},\"frame_1\":{\"timeline\":{\"endWithSlide\":false,\"frameLength\":300}},\"frame_999\":{\"transform\":{\"opacity\":0},\"timeline\":{\"start\":9000,\"endWithSlide\":true,\"frameLength\":300}}},\"hoverFilterUsed\":false,\"frameOrder\":[{\"id\":\"frame_0\",\"start\":-1},{\"id\":\"frame_1\",\"start\":0},{\"id\":\"frame_999\",\"start\":9000}],\"split\":false,\"sessionFilterUsed\":false},\"idle\":{\"margin\":{\"d\":{\"v\":[0,0,0,0],\"e\":false},\"n\":{\"v\":[0,0,0,0],\"e\":false},\"t\":{\"v\":[0,0,0,0],\"e\":false},\"m\":{\"v\":[0,0,0,0],\"e\":false}},\"padding\":{\"d\":{\"v\":[10,100,10,100],\"e\":true},\"n\":{\"v\":[10,100,10,100],\"e\":false},\"t\":{\"v\":[10,100,10,100],\"e\":false},\"m\":{\"v\":[10,100,10,100],\"e\":false}},\"borderRadius\":{\"v\":[0,0,0,0]},\"borderWidth\":[0,0,0,0]},\"hover\":{\"borderRadius\":{\"v\":[0,0,0,0]},\"borderWidth\":[0,0,0,0]},\"actions\":{\"action\":[],\"inactive_actions\":[]},\"type\":\"row\",\"version\":\"6.6.0\"},\"20\":{\"text\":\"\",\"alias\":\"Column-20\",\"uid\":20,\"toggle\":{\"text\":\"\"},\"size\":{\"aspectRatio\":{\"d\":{\"v\":\"none\"},\"n\":{\"v\":\"none\"},\"t\":{\"v\":\"none\"},\"m\":{\"v\":\"none\"}},\"scaleProportional\":false},\"position\":{\"x\":{\"d\":{\"v\":\"50px\"},\"n\":{\"v\":\"50px\"},\"t\":{\"v\":\"50px\"},\"m\":{\"v\":\"50px\"}},\"y\":{\"d\":{\"v\":\"312px\"},\"n\":{\"v\":\"312px\"},\"t\":{\"v\":\"312px\"},\"m\":{\"v\":\"312px\"}},\"zIndex\":7},\"group\":{\"puid\":\"19\",\"groupOrder\":0},\"timeline\":{\"frames\":{\"frame_0\":{\"transform\":{\"opacity\":1},\"timeline\":{\"endWithSlide\":false}},\"frame_1\":{\"timeline\":{\"endWithSlide\":false,\"frameLength\":300}},\"frame_999\":{\"transform\":{\"opacity\":0},\"timeline\":{\"start\":9000,\"endWithSlide\":true,\"frameLength\":300}}},\"hoverFilterUsed\":false,\"frameOrder\":[{\"id\":\"frame_0\",\"start\":-1},{\"id\":\"frame_1\",\"start\":0},{\"id\":\"frame_999\",\"start\":9000}],\"split\":false,\"sessionFilterUsed\":false},\"idle\":{\"margin\":{\"d\":{\"v\":[0,0,0,0],\"e\":false},\"n\":{\"v\":[0,0,0,0],\"e\":false},\"t\":{\"v\":[0,0,0,0],\"e\":false},\"m\":{\"v\":[0,0,0,0],\"e\":false}},\"padding\":{\"d\":{\"v\":[10,10,10,10],\"e\":false},\"n\":{\"v\":[10,10,10,10],\"e\":false},\"t\":{\"v\":[10,10,10,10],\"e\":false},\"m\":{\"v\":[10,10,10,10],\"e\":false}},\"textAlign\":{\"d\":{\"v\":\"center\",\"e\":true},\"n\":{\"v\":\"center\"},\"t\":{\"v\":\"center\"},\"m\":{\"v\":\"center\"}},\"borderRadius\":{\"v\":[0,0,0,0]},\"borderWidth\":[0,0,0,0]},\"hover\":{\"borderRadius\":{\"v\":[0,0,0,0]},\"borderWidth\":[0,0,0,0]},\"actions\":{\"action\":[],\"inactive_actions\":[]},\"type\":\"column\",\"version\":\"6.6.0\"},\"21\":{\"text\":\"\",\"alias\":\"Column-21\",\"uid\":21,\"toggle\":{\"text\":\"\"},\"size\":{\"aspectRatio\":{\"d\":{\"v\":\"none\"},\"n\":{\"v\":\"none\"},\"t\":{\"v\":\"none\"},\"m\":{\"v\":\"none\"}},\"scaleProportional\":false},\"position\":{\"x\":{\"d\":{\"v\":\"50px\"},\"n\":{\"v\":\"50px\"},\"t\":{\"v\":\"50px\"},\"m\":{\"v\":\"50px\"}},\"y\":{\"d\":{\"v\":\"312px\"},\"n\":{\"v\":\"312px\"},\"t\":{\"v\":\"312px\"},\"m\":{\"v\":\"312px\"}},\"zIndex\":9},\"group\":{\"puid\":\"19\",\"groupOrder\":1},\"timeline\":{\"frames\":{\"frame_0\":{\"transform\":{\"opacity\":1},\"timeline\":{\"endWithSlide\":false}},\"frame_1\":{\"timeline\":{\"endWithSlide\":false,\"frameLength\":300}},\"frame_999\":{\"transform\":{\"opacity\":0},\"timeline\":{\"start\":9000,\"endWithSlide\":true,\"frameLength\":300}}},\"hoverFilterUsed\":false,\"frameOrder\":[{\"id\":\"frame_0\",\"start\":-1},{\"id\":\"frame_1\",\"start\":0},{\"id\":\"frame_999\",\"start\":9000}],\"split\":false,\"sessionFilterUsed\":false},\"idle\":{\"margin\":{\"d\":{\"v\":[0,0,0,0],\"e\":false},\"n\":{\"v\":[0,0,0,0],\"e\":false},\"t\":{\"v\":[0,0,0,0],\"e\":false},\"m\":{\"v\":[0,0,0,0],\"e\":false}},\"padding\":{\"d\":{\"v\":[10,10,10,10],\"e\":false},\"n\":{\"v\":[10,10,10,10],\"e\":false},\"t\":{\"v\":[10,10,10,10],\"e\":false},\"m\":{\"v\":[10,10,10,10],\"e\":false}},\"textAlign\":{\"d\":{\"v\":\"center\",\"e\":true},\"n\":{\"v\":\"center\"},\"t\":{\"v\":\"center\"},\"m\":{\"v\":\"center\"}},\"borderRadius\":{\"v\":[0,0,0,0]},\"borderWidth\":[0,0,0,0]},\"hover\":{\"borderRadius\":{\"v\":[0,0,0,0]},\"borderWidth\":[0,0,0,0]},\"actions\":{\"action\":[],\"inactive_actions\":[]},\"type\":\"column\",\"version\":\"6.6.0\"},\"22\":{\"text\":\"\",\"alias\":\"Column-22\",\"uid\":22,\"toggle\":{\"text\":\"\"},\"size\":{\"aspectRatio\":{\"d\":{\"v\":\"none\"},\"n\":{\"v\":\"none\"},\"t\":{\"v\":\"none\"},\"m\":{\"v\":\"none\"}},\"scaleProportional\":false},\"position\":{\"x\":{\"d\":{\"v\":\"50px\"},\"n\":{\"v\":\"50px\"},\"t\":{\"v\":\"50px\"},\"m\":{\"v\":\"50px\"}},\"y\":{\"d\":{\"v\":\"312px\"},\"n\":{\"v\":\"312px\"},\"t\":{\"v\":\"312px\"},\"m\":{\"v\":\"312px\"}},\"zIndex\":11},\"group\":{\"puid\":\"19\",\"groupOrder\":2},\"timeline\":{\"frames\":{\"frame_0\":{\"transform\":{\"opacity\":1},\"timeline\":{\"endWithSlide\":false}},\"frame_1\":{\"timeline\":{\"endWithSlide\":false,\"frameLength\":300}},\"frame_999\":{\"transform\":{\"opacity\":0},\"timeline\":{\"start\":9000,\"endWithSlide\":true,\"frameLength\":300}}},\"hoverFilterUsed\":false,\"frameOrder\":[{\"id\":\"frame_0\",\"start\":-1},{\"id\":\"frame_1\",\"start\":0},{\"id\":\"frame_999\",\"start\":9000}],\"split\":false,\"sessionFilterUsed\":false},\"idle\":{\"margin\":{\"d\":{\"v\":[0,0,0,0],\"e\":false},\"n\":{\"v\":[0,0,0,0],\"e\":false},\"t\":{\"v\":[0,0,0,0],\"e\":false},\"m\":{\"v\":[0,0,0,0],\"e\":false}},\"padding\":{\"d\":{\"v\":[10,10,10,10],\"e\":false},\"n\":{\"v\":[10,10,10,10],\"e\":false},\"t\":{\"v\":[10,10,10,10],\"e\":false},\"m\":{\"v\":[10,10,10,10],\"e\":false}},\"textAlign\":{\"d\":{\"v\":\"center\",\"e\":true},\"n\":{\"v\":\"center\"},\"t\":{\"v\":\"center\"},\"m\":{\"v\":\"center\"}},\"borderRadius\":{\"v\":[0,0,0,0]},\"borderWidth\":[0,0,0,0]},\"hover\":{\"borderRadius\":{\"v\":[0,0,0,0]},\"borderWidth\":[0,0,0,0]},\"actions\":{\"action\":[],\"inactive_actions\":[]},\"type\":\"column\",\"version\":\"6.6.0\"},\"23\":{\"text\":\"\",\"alias\":\"Copy  image-17\",\"uid\":23,\"media\":{\"imageUrl\":\"https:\\/\\/farmchemie.yasithawd.com\\/wp-content\\/uploads\\/2022\\/08\\/ISO_white_1.png\",\"imageId\":2382,\"loaded\":true,\"imageLib\":\"medialibrary\"},\"toggle\":{\"text\":\"\"},\"size\":{\"width\":{\"d\":{\"v\":\"292px\",\"e\":true},\"n\":{\"v\":\"241px\"},\"t\":{\"v\":\"183px\"},\"m\":{\"v\":\"112px\"}},\"height\":{\"d\":{\"v\":\"125px\",\"e\":true},\"n\":{\"v\":\"103px\"},\"t\":{\"v\":\"78px\"},\"m\":{\"v\":\"48px\"}},\"originalWidth\":700,\"originalHeight\":300,\"aspectRatio\":{\"d\":{\"v\":2.333333333333333481363069950020872056484222412109375},\"n\":{\"v\":2.333333333333333481363069950020872056484222412109375},\"t\":{\"v\":2.333333333333333481363069950020872056484222412109375},\"m\":{\"v\":2.333333333333333481363069950020872056484222412109375}},\"scaleProportional\":true,\"originalSize\":false},\"position\":{\"x\":{\"d\":{\"v\":\"0\",\"e\":true},\"n\":{\"v\":\"0\"},\"t\":{\"v\":\"0\"},\"m\":{\"v\":\"0\"}},\"y\":{\"d\":{\"v\":\"0\",\"e\":true},\"n\":{\"v\":\"0\"},\"t\":{\"v\":\"0\"},\"m\":{\"v\":\"0\"}},\"horizontal\":{\"d\":{\"e\":true}},\"vertical\":{\"d\":{\"e\":true}},\"zIndex\":12,\"position\":\"relative\"},\"group\":{\"puid\":\"22\",\"groupOrder\":0},\"timeline\":{\"frames\":{\"frame_0\":{\"timeline\":{\"endWithSlide\":false}},\"frame_1\":{\"timeline\":{\"endWithSlide\":false,\"frameLength\":300}},\"frame_999\":{\"transform\":{\"opacity\":0},\"timeline\":{\"start\":9000,\"endWithSlide\":true,\"frameLength\":300}}},\"frameOrder\":[{\"id\":\"frame_0\",\"start\":-1},{\"id\":\"frame_1\",\"start\":0},{\"id\":\"frame_999\",\"start\":9000}],\"hoverFilterUsed\":false,\"split\":false,\"sessionFilterUsed\":false},\"idle\":{\"margin\":{\"d\":{\"v\":[0,0,0,0],\"e\":false},\"n\":{\"v\":[0,0,0,0],\"e\":false},\"t\":{\"v\":[0,0,0,0],\"e\":false},\"m\":{\"v\":[0,0,0,0],\"e\":false}},\"padding\":{\"d\":{\"v\":[0,0,0,0],\"e\":false},\"n\":{\"v\":[0,0,0,0],\"e\":false},\"t\":{\"v\":[0,0,0,0],\"e\":false},\"m\":{\"v\":[0,0,0,0],\"e\":false}},\"display\":\"inline-block\",\"fontSize\":{\"n\":{\"v\":\"16\"},\"t\":{\"v\":\"12\"},\"m\":{\"v\":\"7\"}},\"lineHeight\":{\"n\":{\"v\":\"20\"},\"t\":{\"v\":\"15\"},\"m\":{\"v\":\"9\"}},\"borderRadius\":{\"v\":[0,0,0,0]},\"borderWidth\":[0,0,0,0],\"whiteSpace\":{\"d\":{\"v\":\"full\"},\"n\":{\"v\":\"full\"},\"t\":{\"v\":\"full\"},\"m\":{\"v\":\"full\"}}},\"hover\":{\"borderRadius\":{\"v\":[0,0,0,0]},\"borderWidth\":[0,0,0,0]},\"actions\":{\"action\":[],\"inactive_actions\":[]},\"type\":\"image\",\"version\":\"6.6.0\"},\"top\":{\"uid\":\"top\",\"group\":{\"puid\":-1,\"groupOrder\":19},\"type\":\"zone\",\"alias\":\"TOP ROWS\",\"position\":{\"zIndex\":19,\"position\":\"absolute\"},\"version\":\"6.6.0\"},\"middle\":{\"uid\":\"middle\",\"group\":{\"puid\":-1,\"groupOrder\":18},\"type\":\"zone\",\"alias\":\"MID ROWS\",\"position\":{\"zIndex\":18,\"position\":\"absolute\"},\"version\":\"6.6.0\"},\"bottom\":{\"uid\":\"bottom\",\"group\":{\"puid\":-1,\"groupOrder\":17},\"type\":\"zone\",\"alias\":\"BOTTOM ROWS\",\"position\":{\"zIndex\":17,\"position\":\"absolute\"},\"version\":\"6.6.0\"}}','{\"version\":\"6.6.0\"}'),(4,1,4,'{\"runtime\":{\"collapsedGroups\":[]},\"bg\":{\"type\":\"image\",\"image\":\"https:\\/\\/farmchemie.yasithawd.com\\/wp-content\\/uploads\\/2022\\/08\\/farmchemie_main_bg_2.jpg\",\"imageId\":16,\"imageLib\":\"medialibrary\",\"imageWidth\":1920,\"imageHeight\":1080,\"imageRatio\":1.77777777777777767909128669998608529567718505859375},\"info\":{\"params\":[{\"v\":\"\",\"l\":10},{\"v\":\"\",\"l\":10},{\"v\":\"\",\"l\":10},{\"v\":\"\",\"l\":10},{\"v\":\"\",\"l\":10},{\"v\":\"\",\"l\":10},{\"v\":\"\",\"l\":10},{\"v\":\"\",\"l\":10},{\"v\":\"\",\"l\":10},{\"v\":\"\",\"l\":10}]},\"slideChange\":{\"in\":{\"o\":0},\"out\":{\"a\":false},\"title\":\"*opacity* Fade In\",\"main\":\"basic\",\"group\":\"fade\",\"preset\":\"fade\",\"adpr\":false},\"uid\":4,\"version\":\"6.6.0\"}','{\"top\":{\"uid\":\"top\",\"group\":{\"puid\":-1,\"groupOrder\":0},\"type\":\"zone\",\"alias\":\"TOP ROWS\",\"position\":{\"zIndex\":0,\"position\":\"absolute\"},\"version\":\"6.6.0\"},\"middle\":{\"uid\":\"middle\",\"group\":{\"puid\":-1,\"groupOrder\":0},\"type\":\"zone\",\"alias\":\"MID ROWS\",\"position\":{\"zIndex\":0,\"position\":\"absolute\"},\"version\":\"6.6.0\"},\"bottom\":{\"uid\":\"bottom\",\"group\":{\"puid\":-1,\"groupOrder\":0},\"type\":\"zone\",\"alias\":\"BOTTOM ROWS\",\"position\":{\"zIndex\":0,\"position\":\"absolute\"},\"version\":\"6.6.0\"}}','{\"version\":\"6.6.0\"}'),(9,4,1,'{\"version\":\"6.6.0\",\"slideChange\":{\"adpr\":false}}','','{\"version\":\"6.6.0\"}'),(10,5,1,'{\"runtime\":{\"collapsedGroups\":[]},\"bg\":{\"type\":\"html5\",\"image\":\"https:\\/\\/farmchemie.yasithawd.com\\/wp-content\\/uploads\\/revslider\\/video-media\\/WhatsApp-Video-2022-08-30-at-12_8.jpeg\",\"imageId\":2411,\"imageLib\":\"medialibrary\",\"mpeg\":\"https:\\/\\/farmchemie.yasithawd.com\\/wp-content\\/uploads\\/2022\\/08\\/WhatsApp-Video-2022-08-30-at-1.30.14-PM.mp4\",\"video\":{\"dottedOverlay\":\"1\",\"dottedOverlaySize\":\"1.5\"},\"videoId\":2428,\"imageWidth\":1280,\"imageHeight\":720,\"imageRatio\":1.77777777777777767909128669998608529567718505859375},\"info\":{\"params\":[{\"v\":\"\",\"l\":10},{\"v\":\"\",\"l\":10},{\"v\":\"\",\"l\":10},{\"v\":\"\",\"l\":10},{\"v\":\"\",\"l\":10},{\"v\":\"\",\"l\":10},{\"v\":\"\",\"l\":10},{\"v\":\"\",\"l\":10},{\"v\":\"\",\"l\":10},{\"v\":\"\",\"l\":10}]},\"slideChange\":{\"in\":{\"o\":0},\"out\":{\"a\":false},\"title\":\"*opacity* Fade In\",\"main\":\"basic\",\"group\":\"fade\",\"preset\":\"fade\",\"adpr\":false},\"version\":\"6.6.0\"}','{\"0\":{\"text\":\"<b>FARMCHEMIE<\\/b> is a world renowned Animal health company who is a member of the <b>DYVESTA<\\/b> group. Since our foundation in 2002, we have introduced effective animal health solutions to valuable livestock producers around the world. After a decade of trading high quality products, in 2012 our own production facility was established and <b>FARMCHEMIE<\\/b> became the first animal health organization in Sri Lanka to obtain <b>ISO 9001:2015<\\/b>, <b>WHO GMP<\\/b> and <b>FAMI-QS<\\/b> quality certifications. Through the careful and responsible application of science, <b>FARMCHEMIE<\\/b> delivers a wide range of products for animal well-being and sustainable production.\\n\",\"alias\":\"Text-0\",\"uid\":0,\"toggle\":{\"text\":\"\"},\"size\":{\"width\":{\"d\":{\"v\":\"1620px\",\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"height\":{\"d\":{\"e\":true}},\"minWidth\":{\"d\":{\"e\":true}},\"minHeight\":{\"d\":{\"v\":\"0px\",\"e\":true}},\"aspectRatio\":{\"d\":{\"v\":\"none\"},\"n\":{\"v\":\"none\"},\"t\":{\"v\":\"none\"},\"m\":{\"v\":\"none\"}},\"scaleProportional\":false},\"position\":{\"x\":{\"d\":{\"e\":true}},\"y\":{\"d\":{\"v\":\"532px\",\"e\":true},\"n\":{\"v\":\"283px\"},\"t\":{\"v\":\"215px\"},\"m\":{\"v\":\"132px\"}},\"horizontal\":{\"d\":{\"v\":\"center\",\"e\":true},\"n\":{\"v\":\"center\"},\"t\":{\"v\":\"center\"},\"m\":{\"v\":\"center\"}},\"vertical\":{\"d\":{\"e\":true}},\"zIndex\":18,\"position\":\"absolute\"},\"group\":{\"groupOrder\":18},\"timeline\":{\"frames\":{\"frame_0\":{\"timeline\":{\"endWithSlide\":false}},\"frame_1\":{\"timeline\":{\"endWithSlide\":false,\"frameLength\":300}},\"frame_999\":{\"transform\":{\"opacity\":0},\"timeline\":{\"start\":9000,\"endWithSlide\":true,\"frameLength\":300}}},\"hoverFilterUsed\":false,\"frameOrder\":[{\"id\":\"frame_0\",\"start\":-1},{\"id\":\"frame_1\",\"start\":0},{\"id\":\"frame_999\",\"start\":9000}],\"split\":false,\"sessionFilterUsed\":false},\"idle\":{\"color\":{\"d\":{\"v\":\"#fff\"},\"n\":{\"v\":\"#fff\"},\"t\":{\"v\":\"#fff\"},\"m\":{\"v\":\"#fff\"}},\"margin\":{\"d\":{\"v\":[0,0,0,0],\"e\":false},\"n\":{\"v\":[0,0,0,0],\"e\":false},\"t\":{\"v\":[0,0,0,0],\"e\":false},\"m\":{\"v\":[0,0,0,0],\"e\":false}},\"padding\":{\"d\":{\"v\":[0,0,0,0],\"e\":false},\"n\":{\"v\":[0,0,0,0],\"e\":false},\"t\":{\"v\":[0,0,0,0],\"e\":false},\"m\":{\"v\":[0,0,0,0],\"e\":false}},\"fontFamily\":\"Open Sans\",\"fontSize\":{\"d\":{\"v\":\"26px\",\"e\":true},\"n\":{\"v\":\"13px\"},\"t\":{\"v\":\"9px\"},\"m\":{\"v\":\"5px\"}},\"fontWeight\":{\"d\":{\"v\":\"300\"},\"n\":{\"v\":\"300\"},\"t\":{\"v\":\"300\"},\"m\":{\"v\":\"300\"}},\"letterSpacing\":{\"d\":{\"v\":\"2px\",\"e\":true},\"n\":{\"v\":\"1px\"},\"t\":{\"v\":\"0px\"},\"m\":{\"v\":\"0px\"}},\"lineHeight\":{\"d\":{\"v\":\"30\"},\"n\":{\"v\":\"16\"},\"t\":{\"v\":\"12\"},\"m\":{\"v\":\"7\"}},\"textAlign\":{\"d\":{\"e\":true}},\"borderRadius\":{\"v\":[\"0px\",\"0px\",\"0px\",\"0px\"],\"e\":true},\"borderWidth\":[0,0,0,0],\"whiteSpace\":{\"d\":{\"v\":\"full\",\"e\":true},\"n\":{\"v\":\"full\",\"e\":true},\"t\":{\"v\":\"full\",\"e\":true},\"m\":{\"v\":\"full\",\"e\":true}}},\"hover\":{\"borderRadius\":{\"v\":[0,0,0,0]},\"borderWidth\":[0,0,0,0]},\"actions\":{\"action\":[],\"inactive_actions\":[]},\"type\":\"text\",\"version\":\"6.6.0\"},\"17\":{\"text\":\"\",\"alias\":\"Image-17\",\"uid\":17,\"media\":{\"imageUrl\":\"https:\\/\\/farmchemie.yasithawd.com\\/wp-content\\/uploads\\/2022\\/08\\/FAMIQS.png\",\"imageId\":2381,\"loaded\":true,\"imageLib\":\"medialibrary\"},\"toggle\":{\"text\":\"\"},\"size\":{\"width\":{\"d\":{\"v\":\"266px\",\"e\":true},\"n\":{\"v\":\"141px\"},\"t\":{\"v\":\"107px\"},\"m\":{\"v\":\"66px\"}},\"height\":{\"d\":{\"v\":\"114px\",\"e\":true},\"n\":{\"v\":\"60px\"},\"t\":{\"v\":\"45px\"},\"m\":{\"v\":\"27px\"}},\"originalWidth\":700,\"originalHeight\":300,\"aspectRatio\":{\"d\":{\"v\":2.333333333333333481363069950020872056484222412109375},\"n\":{\"v\":2.333333333333333481363069950020872056484222412109375},\"t\":{\"v\":2.333333333333333481363069950020872056484222412109375},\"m\":{\"v\":2.333333333333333481363069950020872056484222412109375}},\"scaleProportional\":true,\"originalSize\":false},\"position\":{\"x\":{\"d\":{\"v\":\"520px\",\"e\":true},\"n\":{\"v\":\"277px\"},\"t\":{\"v\":\"210px\"},\"m\":{\"v\":\"129px\"}},\"y\":{\"d\":{\"v\":\"740px\",\"e\":true},\"n\":{\"v\":\"394px\"},\"t\":{\"v\":\"299px\"},\"m\":{\"v\":\"184px\"}},\"horizontal\":{\"d\":{\"e\":true}},\"vertical\":{\"d\":{\"e\":true}},\"zIndex\":15,\"position\":\"absolute\"},\"group\":{\"groupOrder\":15},\"timeline\":{\"frames\":{\"frame_0\":{\"timeline\":{\"endWithSlide\":false}},\"frame_1\":{\"timeline\":{\"endWithSlide\":false,\"frameLength\":300}},\"frame_999\":{\"transform\":{\"opacity\":0},\"timeline\":{\"start\":9000,\"endWithSlide\":true,\"frameLength\":300}}},\"frameOrder\":[{\"id\":\"frame_0\",\"start\":-1},{\"id\":\"frame_1\",\"start\":0},{\"id\":\"frame_999\",\"start\":9000}],\"hoverFilterUsed\":false,\"split\":false,\"sessionFilterUsed\":false},\"idle\":{\"margin\":{\"d\":{\"v\":[0,0,0,0],\"e\":false},\"n\":{\"v\":[0,0,0,0],\"e\":false},\"t\":{\"v\":[0,0,0,0],\"e\":false},\"m\":{\"v\":[0,0,0,0],\"e\":false}},\"padding\":{\"d\":{\"v\":[0,0,0,0],\"e\":false},\"n\":{\"v\":[0,0,0,0],\"e\":false},\"t\":{\"v\":[0,0,0,0],\"e\":false},\"m\":{\"v\":[0,0,0,0],\"e\":false}},\"display\":\"inline-block\",\"fontSize\":{\"n\":{\"v\":\"10\"},\"t\":{\"v\":\"7\"},\"m\":{\"v\":\"4\"}},\"lineHeight\":{\"n\":{\"v\":\"13\"},\"t\":{\"v\":\"9\"},\"m\":{\"v\":\"6\"}},\"borderRadius\":{\"v\":[0,0,0,0]},\"borderWidth\":[0,0,0,0],\"whiteSpace\":{\"d\":{\"v\":\"full\"},\"n\":{\"v\":\"full\"},\"t\":{\"v\":\"full\"},\"m\":{\"v\":\"full\"}}},\"hover\":{\"borderRadius\":{\"v\":[0,0,0,0]},\"borderWidth\":[0,0,0,0]},\"actions\":{\"action\":[],\"inactive_actions\":[]},\"type\":\"image\",\"version\":\"6.6.0\"},\"18\":{\"text\":\"\",\"alias\":\"Copy image-17\",\"uid\":18,\"media\":{\"imageUrl\":\"https:\\/\\/farmchemie.yasithawd.com\\/wp-content\\/uploads\\/2022\\/08\\/SGS_png-1.png\",\"imageId\":2380,\"loaded\":true,\"imageLib\":\"medialibrary\"},\"toggle\":{\"text\":\"\"},\"size\":{\"width\":{\"d\":{\"v\":\"275px\",\"e\":true},\"n\":{\"v\":\"146px\"},\"t\":{\"v\":\"110px\"},\"m\":{\"v\":\"67px\"}},\"height\":{\"d\":{\"v\":\"118px\",\"e\":true},\"n\":{\"v\":\"62px\"},\"t\":{\"v\":\"47px\"},\"m\":{\"v\":\"28px\"}},\"originalWidth\":700,\"originalHeight\":300,\"aspectRatio\":{\"d\":{\"v\":2.333333333333333481363069950020872056484222412109375},\"n\":{\"v\":2.333333333333333481363069950020872056484222412109375},\"t\":{\"v\":2.333333333333333481363069950020872056484222412109375},\"m\":{\"v\":2.333333333333333481363069950020872056484222412109375}},\"scaleProportional\":true,\"originalSize\":true},\"position\":{\"x\":{\"d\":{\"e\":true}},\"y\":{\"d\":{\"v\":\"740px\",\"e\":true},\"n\":{\"v\":\"394px\"},\"t\":{\"v\":\"299px\"},\"m\":{\"v\":\"184px\"}},\"horizontal\":{\"d\":{\"v\":\"center\",\"e\":true},\"n\":{\"v\":\"center\"},\"t\":{\"v\":\"center\"},\"m\":{\"v\":\"center\"}},\"vertical\":{\"d\":{\"e\":true}},\"zIndex\":16,\"position\":\"absolute\"},\"group\":{\"groupOrder\":16},\"timeline\":{\"frames\":{\"frame_0\":{\"timeline\":{\"endWithSlide\":false}},\"frame_1\":{\"timeline\":{\"endWithSlide\":false,\"frameLength\":300}},\"frame_999\":{\"transform\":{\"opacity\":0},\"timeline\":{\"start\":9000,\"endWithSlide\":true,\"frameLength\":300}}},\"frameOrder\":[{\"id\":\"frame_0\",\"start\":-1},{\"id\":\"frame_1\",\"start\":0},{\"id\":\"frame_999\",\"start\":9000}],\"hoverFilterUsed\":false,\"split\":false,\"sessionFilterUsed\":false},\"idle\":{\"margin\":{\"d\":{\"v\":[0,0,0,0],\"e\":false},\"n\":{\"v\":[0,0,0,0],\"e\":false},\"t\":{\"v\":[0,0,0,0],\"e\":false},\"m\":{\"v\":[0,0,0,0],\"e\":false}},\"padding\":{\"d\":{\"v\":[0,0,0,0],\"e\":false},\"n\":{\"v\":[0,0,0,0],\"e\":false},\"t\":{\"v\":[0,0,0,0],\"e\":false},\"m\":{\"v\":[0,0,0,0],\"e\":false}},\"display\":\"inline-block\",\"fontSize\":{\"n\":{\"v\":\"10\"},\"t\":{\"v\":\"7\"},\"m\":{\"v\":\"4\"}},\"lineHeight\":{\"n\":{\"v\":\"13\"},\"t\":{\"v\":\"9\"},\"m\":{\"v\":\"6\"}},\"borderRadius\":{\"v\":[0,0,0,0]},\"borderWidth\":[0,0,0,0],\"whiteSpace\":{\"d\":{\"v\":\"full\"},\"n\":{\"v\":\"full\"},\"t\":{\"v\":\"full\"},\"m\":{\"v\":\"full\"}}},\"hover\":{\"borderRadius\":{\"v\":[0,0,0,0]},\"borderWidth\":[0,0,0,0]},\"actions\":{\"action\":[],\"inactive_actions\":[]},\"type\":\"image\",\"version\":\"6.6.0\"},\"23\":{\"text\":\"\",\"alias\":\"Copy  image-17\",\"uid\":23,\"media\":{\"imageUrl\":\"https:\\/\\/farmchemie.yasithawd.com\\/wp-content\\/uploads\\/2022\\/08\\/ISO_white_1.png\",\"imageId\":2382,\"loaded\":true,\"imageLib\":\"medialibrary\"},\"toggle\":{\"text\":\"\"},\"size\":{\"width\":{\"d\":{\"v\":\"292px\",\"e\":true},\"n\":{\"v\":\"155px\"},\"t\":{\"v\":\"117px\"},\"m\":{\"v\":\"72px\"}},\"height\":{\"d\":{\"v\":\"125px\",\"e\":true},\"n\":{\"v\":\"66px\"},\"t\":{\"v\":\"50px\"},\"m\":{\"v\":\"30px\"}},\"originalWidth\":700,\"originalHeight\":300,\"aspectRatio\":{\"d\":{\"v\":2.333333333333333481363069950020872056484222412109375},\"n\":{\"v\":2.333333333333333481363069950020872056484222412109375},\"t\":{\"v\":2.333333333333333481363069950020872056484222412109375},\"m\":{\"v\":2.333333333333333481363069950020872056484222412109375}},\"scaleProportional\":true,\"originalSize\":false},\"position\":{\"x\":{\"d\":{\"v\":\"1140px\",\"e\":true},\"n\":{\"v\":\"608px\"},\"t\":{\"v\":\"461px\"},\"m\":{\"v\":\"284px\"}},\"y\":{\"d\":{\"v\":\"740px\",\"e\":true},\"n\":{\"v\":\"394px\"},\"t\":{\"v\":\"299px\"},\"m\":{\"v\":\"184px\"}},\"horizontal\":{\"d\":{\"e\":true}},\"vertical\":{\"d\":{\"e\":true}},\"zIndex\":17,\"position\":\"absolute\"},\"group\":{\"groupOrder\":17},\"timeline\":{\"frames\":{\"frame_0\":{\"timeline\":{\"endWithSlide\":false}},\"frame_1\":{\"timeline\":{\"endWithSlide\":false,\"frameLength\":300}},\"frame_999\":{\"transform\":{\"opacity\":0},\"timeline\":{\"start\":9000,\"endWithSlide\":true,\"frameLength\":300}}},\"frameOrder\":[{\"id\":\"frame_0\",\"start\":-1},{\"id\":\"frame_1\",\"start\":0},{\"id\":\"frame_999\",\"start\":9000}],\"hoverFilterUsed\":false,\"split\":false,\"sessionFilterUsed\":false},\"idle\":{\"margin\":{\"d\":{\"v\":[0,0,0,0],\"e\":false},\"n\":{\"v\":[0,0,0,0],\"e\":false},\"t\":{\"v\":[0,0,0,0],\"e\":false},\"m\":{\"v\":[0,0,0,0],\"e\":false}},\"padding\":{\"d\":{\"v\":[0,0,0,0],\"e\":false},\"n\":{\"v\":[0,0,0,0],\"e\":false},\"t\":{\"v\":[0,0,0,0],\"e\":false},\"m\":{\"v\":[0,0,0,0],\"e\":false}},\"display\":\"inline-block\",\"fontSize\":{\"n\":{\"v\":\"10\"},\"t\":{\"v\":\"7\"},\"m\":{\"v\":\"4\"}},\"lineHeight\":{\"n\":{\"v\":\"13\"},\"t\":{\"v\":\"9\"},\"m\":{\"v\":\"6\"}},\"borderRadius\":{\"v\":[0,0,0,0]},\"borderWidth\":[0,0,0,0],\"whiteSpace\":{\"d\":{\"v\":\"full\"},\"n\":{\"v\":\"full\"},\"t\":{\"v\":\"full\"},\"m\":{\"v\":\"full\"}}},\"hover\":{\"borderRadius\":{\"v\":[0,0,0,0]},\"borderWidth\":[0,0,0,0]},\"actions\":{\"action\":[],\"inactive_actions\":[]},\"type\":\"image\",\"version\":\"6.6.0\"},\"37\":{\"text\":\"\",\"alias\":\"Shape-37\",\"uid\":37,\"toggle\":{\"text\":\"\"},\"size\":{\"width\":{\"d\":{\"v\":\"1733px\",\"e\":true},\"n\":{\"v\":\"924px\"},\"t\":{\"v\":\"702px\"},\"m\":{\"v\":\"433px\"}},\"height\":{\"d\":{\"v\":\"100px\",\"e\":true},\"n\":{\"v\":\"53px\"},\"t\":{\"v\":\"40px\"},\"m\":{\"v\":\"24px\"}},\"originalWidth\":\"300px\",\"originalHeight\":\"180px\",\"aspectRatio\":{\"d\":{\"v\":1.6666666666666667406815349750104360282421112060546875},\"n\":{\"v\":1.6666666666666667406815349750104360282421112060546875},\"t\":{\"v\":1.6666666666666667406815349750104360282421112060546875},\"m\":{\"v\":1.6666666666666667406815349750104360282421112060546875}},\"scaleProportional\":false},\"position\":{\"x\":{\"d\":{\"v\":\"-1140px\",\"e\":true},\"n\":{\"v\":\"-474px\",\"e\":true},\"t\":{\"v\":\"-360px\"},\"m\":{\"v\":\"-222px\"}},\"y\":{\"d\":{\"v\":\"120px\",\"e\":true},\"n\":{\"v\":\"112px\",\"e\":true},\"t\":{\"v\":\"85px\"},\"m\":{\"v\":\"52px\"}},\"horizontal\":{\"d\":{\"v\":\"right\",\"e\":true},\"n\":{\"v\":\"right\"},\"t\":{\"v\":\"right\"},\"m\":{\"v\":\"right\"}},\"vertical\":{\"d\":{\"e\":true}},\"zIndex\":11,\"position\":\"absolute\"},\"group\":{\"groupOrder\":11},\"timeline\":{\"frames\":{\"frame_0\":{\"timeline\":{\"endWithSlide\":false}},\"frame_1\":{\"timeline\":{\"endWithSlide\":false,\"frameLength\":300}},\"frame_999\":{\"transform\":{\"opacity\":0},\"timeline\":{\"start\":9000,\"endWithSlide\":true,\"frameLength\":300}}},\"hoverFilterUsed\":false,\"frameOrder\":[{\"id\":\"frame_0\",\"start\":-1},{\"id\":\"frame_1\",\"start\":0},{\"id\":\"frame_999\",\"start\":9000}],\"split\":false,\"sessionFilterUsed\":false},\"idle\":{\"margin\":{\"d\":{\"v\":[0,0,0,0],\"e\":false},\"n\":{\"v\":[0,0,0,0],\"e\":false},\"t\":{\"v\":[0,0,0,0],\"e\":false},\"m\":{\"v\":[0,0,0,0],\"e\":false}},\"padding\":{\"d\":{\"v\":[0,0,0,0],\"e\":false},\"n\":{\"v\":[0,0,0,0],\"e\":false},\"t\":{\"v\":[0,0,0,0],\"e\":false},\"m\":{\"v\":[0,0,0,0],\"e\":false}},\"fontSize\":{\"n\":{\"v\":\"10\"},\"t\":{\"v\":\"7\"},\"m\":{\"v\":\"4\"}},\"lineHeight\":{\"n\":{\"v\":\"13\"},\"t\":{\"v\":\"9\"},\"m\":{\"v\":\"6\"}},\"backgroundColor\":\"rgba(255, 255, 255, 0.4)\",\"borderRadius\":{\"v\":[\"100px\",0,0,\"100px\"],\"e\":true},\"borderWidth\":[0,0,0,0],\"whiteSpace\":{\"d\":{\"v\":\"full\"},\"n\":{\"v\":\"full\"},\"t\":{\"v\":\"full\"},\"m\":{\"v\":\"full\"}}},\"hover\":{\"borderRadius\":{\"v\":[0,0,0,0]},\"borderWidth\":[0,0,0,0]},\"actions\":{\"action\":[],\"inactive_actions\":[]},\"type\":\"shape\",\"version\":\"6.6.0\"},\"44\":{\"text\":\"\",\"alias\":\"Image-44\",\"uid\":44,\"media\":{\"imageUrl\":\"https:\\/\\/farmchemie.yasithawd.com\\/wp-content\\/uploads\\/2022\\/09\\/IN.png\",\"imageId\":2517,\"loaded\":true,\"imageLib\":\"medialibrary\"},\"toggle\":{\"text\":\"\"},\"size\":{\"width\":{\"d\":{\"v\":\"80px\",\"e\":true},\"n\":{\"v\":\"42px\"},\"t\":{\"v\":\"31px\"},\"m\":{\"v\":\"19px\"}},\"height\":{\"d\":{\"v\":\"80px\",\"e\":true},\"n\":{\"v\":\"42px\"},\"t\":{\"v\":\"31px\"},\"m\":{\"v\":\"19px\"}},\"originalWidth\":545,\"originalHeight\":546,\"aspectRatio\":{\"d\":{\"v\":0.9981684981684981750049701076932251453399658203125},\"n\":{\"v\":0.9981684981684981750049701076932251453399658203125},\"t\":{\"v\":0.9981684981684981750049701076932251453399658203125},\"m\":{\"v\":0.9981684981684981750049701076932251453399658203125}},\"scaleProportional\":true,\"originalSize\":false},\"position\":{\"x\":{\"d\":{\"v\":\"1473px\",\"e\":true},\"n\":{\"v\":\"785px\"},\"t\":{\"v\":\"596px\"},\"m\":{\"v\":\"367px\"}},\"y\":{\"d\":{\"v\":\"130px\",\"e\":true},\"n\":{\"v\":\"69px\"},\"t\":{\"v\":\"52px\"},\"m\":{\"v\":\"32px\"}},\"horizontal\":{\"d\":{\"e\":true}},\"vertical\":{\"d\":{\"e\":true}},\"zIndex\":20,\"position\":\"absolute\"},\"group\":{\"groupOrder\":20},\"timeline\":{\"frames\":{\"frame_0\":{\"timeline\":{\"endWithSlide\":false}},\"frame_1\":{\"timeline\":{\"endWithSlide\":false,\"frameLength\":300}},\"frame_999\":{\"transform\":{\"opacity\":0},\"timeline\":{\"start\":9000,\"endWithSlide\":true,\"frameLength\":300}}},\"frameOrder\":[{\"id\":\"frame_0\",\"start\":-1},{\"id\":\"frame_1\",\"start\":0},{\"id\":\"frame_999\",\"start\":9000}],\"hoverFilterUsed\":false,\"split\":false,\"sessionFilterUsed\":false},\"idle\":{\"margin\":{\"d\":{\"v\":[0,0,0,0],\"e\":false},\"n\":{\"v\":[0,0,0,0],\"e\":false},\"t\":{\"v\":[0,0,0,0],\"e\":false},\"m\":{\"v\":[0,0,0,0],\"e\":false}},\"padding\":{\"d\":{\"v\":[0,0,0,0],\"e\":false},\"n\":{\"v\":[0,0,0,0],\"e\":false},\"t\":{\"v\":[0,0,0,0],\"e\":false},\"m\":{\"v\":[0,0,0,0],\"e\":false}},\"display\":\"inline-block\",\"fontSize\":{\"n\":{\"v\":\"10\"},\"t\":{\"v\":\"7\"},\"m\":{\"v\":\"4\"}},\"lineHeight\":{\"n\":{\"v\":\"13\"},\"t\":{\"v\":\"9\"},\"m\":{\"v\":\"6\"}},\"borderRadius\":{\"v\":[0,0,0,0]},\"borderWidth\":[0,0,0,0],\"whiteSpace\":{\"d\":{\"v\":\"full\"},\"n\":{\"v\":\"full\"},\"t\":{\"v\":\"full\"},\"m\":{\"v\":\"full\"}}},\"hover\":{\"borderRadius\":{\"v\":[0,0,0,0]},\"borderWidth\":[0,0,0,0]},\"actions\":{\"action\":[{\"action\":\"link\",\"tooltip_event\":\"click\",\"link_help_in\":\"keep\",\"link_open_in\":\"_self\",\"link_follow\":\"follow\",\"link_type\":\"a\",\"image_link\":\"https:\\/\\/www.instagram.com\\/petstar_fcl\\/\"}],\"inactive_actions\":[]},\"type\":\"image\",\"version\":\"6.6.0\"},\"45\":{\"text\":\"\",\"alias\":\"Copy image-44\",\"uid\":45,\"media\":{\"imageUrl\":\"https:\\/\\/farmchemie.yasithawd.com\\/wp-content\\/uploads\\/2022\\/09\\/linkedin.png\",\"imageId\":2518,\"loaded\":true,\"imageLib\":\"medialibrary\"},\"toggle\":{\"text\":\"\"},\"size\":{\"width\":{\"d\":{\"v\":\"80px\",\"e\":true},\"n\":{\"v\":\"42px\"},\"t\":{\"v\":\"31px\"},\"m\":{\"v\":\"19px\"}},\"height\":{\"d\":{\"v\":\"80px\",\"e\":true},\"n\":{\"v\":\"42px\"},\"t\":{\"v\":\"31px\"},\"m\":{\"v\":\"19px\"}},\"originalWidth\":1691,\"originalHeight\":1691,\"aspectRatio\":{\"d\":{\"v\":1},\"n\":{\"v\":1},\"t\":{\"v\":1},\"m\":{\"v\":1}},\"scaleProportional\":true,\"originalSize\":false},\"position\":{\"x\":{\"d\":{\"v\":\"1566px\",\"e\":true},\"n\":{\"v\":\"835px\"},\"t\":{\"v\":\"634px\"},\"m\":{\"v\":\"391px\"}},\"y\":{\"d\":{\"v\":\"130px\",\"e\":true},\"n\":{\"v\":\"69px\"},\"t\":{\"v\":\"52px\"},\"m\":{\"v\":\"32px\"}},\"horizontal\":{\"d\":{\"e\":true}},\"vertical\":{\"d\":{\"e\":true}},\"zIndex\":19,\"position\":\"absolute\"},\"group\":{\"groupOrder\":19},\"timeline\":{\"frames\":{\"frame_0\":{\"timeline\":{\"endWithSlide\":false}},\"frame_1\":{\"timeline\":{\"endWithSlide\":false,\"frameLength\":300}},\"frame_999\":{\"transform\":{\"opacity\":0},\"timeline\":{\"start\":9000,\"endWithSlide\":true,\"frameLength\":300}}},\"frameOrder\":[{\"id\":\"frame_0\",\"start\":-1},{\"id\":\"frame_1\",\"start\":0},{\"id\":\"frame_999\",\"start\":9000}],\"hoverFilterUsed\":false,\"split\":false,\"sessionFilterUsed\":false},\"idle\":{\"margin\":{\"d\":{\"v\":[0,0,0,0],\"e\":false},\"n\":{\"v\":[0,0,0,0],\"e\":false},\"t\":{\"v\":[0,0,0,0],\"e\":false},\"m\":{\"v\":[0,0,0,0],\"e\":false}},\"padding\":{\"d\":{\"v\":[0,0,0,0],\"e\":false},\"n\":{\"v\":[0,0,0,0],\"e\":false},\"t\":{\"v\":[0,0,0,0],\"e\":false},\"m\":{\"v\":[0,0,0,0],\"e\":false}},\"display\":\"inline-block\",\"fontSize\":{\"n\":{\"v\":\"10\"},\"t\":{\"v\":\"7\"},\"m\":{\"v\":\"4\"}},\"lineHeight\":{\"n\":{\"v\":\"13\"},\"t\":{\"v\":\"9\"},\"m\":{\"v\":\"6\"}},\"borderRadius\":{\"v\":[0,0,0,0]},\"borderWidth\":[0,0,0,0],\"whiteSpace\":{\"d\":{\"v\":\"full\"},\"n\":{\"v\":\"full\"},\"t\":{\"v\":\"full\"},\"m\":{\"v\":\"full\"}}},\"hover\":{\"borderRadius\":{\"v\":[0,0,0,0]},\"borderWidth\":[0,0,0,0]},\"actions\":{\"action\":[{\"action\":\"link\",\"tooltip_event\":\"click\",\"link_help_in\":\"keep\",\"link_open_in\":\"_self\",\"link_follow\":\"follow\",\"link_type\":\"a\",\"image_link\":\"https:\\/\\/www.linkedin.com\\/company\\/farmchemie-private-limited\\/\"}],\"inactive_actions\":[]},\"type\":\"image\",\"version\":\"6.6.0\"},\"46\":{\"text\":\"\",\"alias\":\"Copy  image-44\",\"uid\":46,\"media\":{\"imageUrl\":\"https:\\/\\/farmchemie.yasithawd.com\\/wp-content\\/uploads\\/2022\\/09\\/FB-150x150.png\",\"imageId\":2516,\"loaded\":true,\"imageLib\":\"medialibrary\"},\"toggle\":{\"text\":\"\"},\"size\":{\"width\":{\"d\":{\"v\":\"80px\",\"e\":true},\"n\":{\"v\":\"42px\"},\"t\":{\"v\":\"31px\"},\"m\":{\"v\":\"19px\"}},\"height\":{\"d\":{\"v\":\"80px\",\"e\":true},\"n\":{\"v\":\"42px\"},\"t\":{\"v\":\"31px\"},\"m\":{\"v\":\"19px\"}},\"originalWidth\":150,\"originalHeight\":150,\"aspectRatio\":{\"d\":{\"v\":1},\"n\":{\"v\":1},\"t\":{\"v\":1},\"m\":{\"v\":1}},\"scaleProportional\":true,\"originalSize\":true},\"position\":{\"x\":{\"d\":{\"v\":\"1380px\",\"e\":true},\"n\":{\"v\":\"736px\"},\"t\":{\"v\":\"559px\"},\"m\":{\"v\":\"344px\"}},\"y\":{\"d\":{\"v\":\"130px\",\"e\":true},\"n\":{\"v\":\"69px\"},\"t\":{\"v\":\"52px\"},\"m\":{\"v\":\"32px\"}},\"horizontal\":{\"d\":{\"e\":true}},\"vertical\":{\"d\":{\"e\":true}},\"zIndex\":21,\"position\":\"absolute\"},\"behavior\":{\"imageSourceType\":\"thumbnail\"},\"group\":{\"groupOrder\":21},\"timeline\":{\"frames\":{\"frame_0\":{\"timeline\":{\"endWithSlide\":false}},\"frame_1\":{\"timeline\":{\"endWithSlide\":false,\"frameLength\":300}},\"frame_999\":{\"transform\":{\"opacity\":0},\"timeline\":{\"start\":9000,\"endWithSlide\":true,\"frameLength\":300}}},\"frameOrder\":[{\"id\":\"frame_0\",\"start\":-1},{\"id\":\"frame_1\",\"start\":0},{\"id\":\"frame_999\",\"start\":9000}],\"hoverFilterUsed\":false,\"split\":false,\"sessionFilterUsed\":false},\"idle\":{\"margin\":{\"d\":{\"v\":[0,0,0,0],\"e\":false},\"n\":{\"v\":[0,0,0,0],\"e\":false},\"t\":{\"v\":[0,0,0,0],\"e\":false},\"m\":{\"v\":[0,0,0,0],\"e\":false}},\"padding\":{\"d\":{\"v\":[0,0,0,0],\"e\":false},\"n\":{\"v\":[0,0,0,0],\"e\":false},\"t\":{\"v\":[0,0,0,0],\"e\":false},\"m\":{\"v\":[0,0,0,0],\"e\":false}},\"display\":\"inline-block\",\"fontSize\":{\"n\":{\"v\":\"10\"},\"t\":{\"v\":\"7\"},\"m\":{\"v\":\"4\"}},\"lineHeight\":{\"n\":{\"v\":\"13\"},\"t\":{\"v\":\"9\"},\"m\":{\"v\":\"6\"}},\"borderRadius\":{\"v\":[0,0,0,0]},\"borderWidth\":[0,0,0,0],\"whiteSpace\":{\"d\":{\"v\":\"full\"},\"n\":{\"v\":\"full\"},\"t\":{\"v\":\"full\"},\"m\":{\"v\":\"full\"}}},\"hover\":{\"borderRadius\":{\"v\":[0,0,0,0]},\"borderWidth\":[0,0,0,0]},\"actions\":{\"action\":[{\"action\":\"link\",\"tooltip_event\":\"click\",\"link_help_in\":\"keep\",\"link_open_in\":\"_blank\",\"link_follow\":\"follow\",\"link_type\":\"a\",\"image_link\":\"https:\\/\\/www.facebook.com\\/pages\\/Farmchemie-Private-Limited\\/326629104197342?ref=hl\"}],\"inactive_actions\":[]},\"type\":\"image\",\"version\":\"6.6.0\"},\"48\":{\"text\":\"\",\"alias\":\"Image-48\",\"uid\":48,\"media\":{\"imageUrl\":\"https:\\/\\/farmchemie.yasithawd.com\\/wp-content\\/uploads\\/2022\\/09\\/1-Youtube.png\",\"imageId\":2520,\"loaded\":true},\"toggle\":{\"text\":\"\"},\"size\":{\"width\":{\"d\":{\"v\":\"80px\",\"e\":true},\"n\":{\"v\":\"42px\"},\"t\":{\"v\":\"31px\"},\"m\":{\"v\":\"19px\"}},\"height\":{\"d\":{\"v\":\"56px\",\"e\":true},\"n\":{\"v\":\"29px\"},\"t\":{\"v\":\"22px\"},\"m\":{\"v\":\"13px\"}},\"originalWidth\":1225,\"originalHeight\":852,\"aspectRatio\":{\"d\":{\"v\":1.43779342723004699422517660423181951045989990234375},\"n\":{\"v\":1.43779342723004699422517660423181951045989990234375},\"t\":{\"v\":1.43779342723004699422517660423181951045989990234375},\"m\":{\"v\":1.43779342723004699422517660423181951045989990234375}},\"scaleProportional\":true},\"position\":{\"x\":{\"d\":{\"v\":\"1661px\",\"e\":true},\"n\":{\"v\":\"885px\"},\"t\":{\"v\":\"672px\"},\"m\":{\"v\":\"414px\"}},\"y\":{\"d\":{\"v\":\"143px\",\"e\":true},\"n\":{\"v\":\"76px\"},\"t\":{\"v\":\"57px\"},\"m\":{\"v\":\"35px\"}},\"zIndex\":22,\"position\":\"absolute\"},\"group\":{\"groupOrder\":22},\"timeline\":{\"frames\":{\"frame_0\":{\"timeline\":{\"endWithSlide\":false}},\"frame_1\":{\"timeline\":{\"endWithSlide\":false,\"frameLength\":300}},\"frame_999\":{\"transform\":{\"opacity\":0},\"timeline\":{\"start\":9000,\"endWithSlide\":true,\"frameLength\":300}}},\"frameOrder\":[{\"id\":\"frame_0\",\"start\":-1},{\"id\":\"frame_1\",\"start\":0},{\"id\":\"frame_999\",\"start\":9000}],\"hoverFilterUsed\":false,\"split\":false,\"sessionFilterUsed\":false},\"idle\":{\"margin\":{\"d\":{\"v\":[0,0,0,0],\"e\":false},\"n\":{\"v\":[0,0,0,0],\"e\":false},\"t\":{\"v\":[0,0,0,0],\"e\":false},\"m\":{\"v\":[0,0,0,0],\"e\":false}},\"padding\":{\"d\":{\"v\":[0,0,0,0],\"e\":false},\"n\":{\"v\":[0,0,0,0],\"e\":false},\"t\":{\"v\":[0,0,0,0],\"e\":false},\"m\":{\"v\":[0,0,0,0],\"e\":false}},\"fontSize\":{\"n\":{\"v\":\"10\"},\"t\":{\"v\":\"7\"},\"m\":{\"v\":\"4\"}},\"lineHeight\":{\"n\":{\"v\":\"13\"},\"t\":{\"v\":\"9\"},\"m\":{\"v\":\"6\"}},\"borderRadius\":{\"v\":[0,0,0,0]},\"borderWidth\":[0,0,0,0],\"whiteSpace\":{\"d\":{\"v\":\"full\"},\"n\":{\"v\":\"full\"},\"t\":{\"v\":\"full\"},\"m\":{\"v\":\"full\"}}},\"hover\":{\"borderRadius\":{\"v\":[0,0,0,0]},\"borderWidth\":[0,0,0,0]},\"actions\":{\"action\":[{\"action\":\"link\",\"tooltip_event\":\"click\",\"link_help_in\":\"keep\",\"link_open_in\":\"_self\",\"link_follow\":\"follow\",\"link_type\":\"a\",\"image_link\":\"https:\\/\\/www.youtube.com\\/@farmchemieprivatelimited8688\"}],\"inactive_actions\":[]},\"type\":\"image\",\"version\":\"6.6.0\"},\"top\":{\"uid\":\"top\",\"group\":{\"puid\":-1,\"groupOrder\":14},\"type\":\"zone\",\"alias\":\"TOP ROWS\",\"position\":{\"zIndex\":14,\"position\":\"absolute\"},\"version\":\"6.6.0\"},\"middle\":{\"uid\":\"middle\",\"group\":{\"puid\":-1,\"groupOrder\":13},\"type\":\"zone\",\"alias\":\"MID ROWS\",\"position\":{\"zIndex\":13,\"position\":\"absolute\"},\"version\":\"6.6.0\"},\"bottom\":{\"uid\":\"bottom\",\"group\":{\"puid\":-1,\"groupOrder\":12},\"type\":\"zone\",\"alias\":\"BOTTOM ROWS\",\"position\":{\"zIndex\":12,\"position\":\"absolute\"},\"version\":\"6.6.0\"}}','{\"version\":\"6.6.0\"}'),(11,6,1,'{\"runtime\":{\"collapsedGroups\":[]},\"bg\":{\"type\":\"html5\",\"image\":\"https:\\/\\/farmchemie.yasithawd.com\\/wp-content\\/uploads\\/revslider\\/video-media\\/WhatsApp-Video-2022-08-30-at-12_8.jpeg\",\"imageId\":2411,\"imageLib\":\"medialibrary\",\"mpeg\":\"https:\\/\\/farmchemie.yasithawd.com\\/wp-content\\/uploads\\/2022\\/08\\/WhatsApp-Video-2022-08-30-at-1.30.14-PM.mp4\",\"video\":{\"dottedOverlay\":\"1\",\"dottedOverlaySize\":\"1.5\",\"forceRewind\":false,\"loop\":false,\"pausetimer\":true,\"nextSlideAtEnd\":true},\"videoId\":2428,\"imageWidth\":1280,\"imageHeight\":720,\"imageRatio\":1.77777777777777767909128669998608529567718505859375},\"info\":{\"params\":[{\"v\":\"\",\"l\":10},{\"v\":\"\",\"l\":10},{\"v\":\"\",\"l\":10},{\"v\":\"\",\"l\":10},{\"v\":\"\",\"l\":10},{\"v\":\"\",\"l\":10},{\"v\":\"\",\"l\":10},{\"v\":\"\",\"l\":10},{\"v\":\"\",\"l\":10},{\"v\":\"\",\"l\":10}]},\"slideChange\":{\"in\":{\"o\":0},\"out\":{\"a\":false},\"title\":\"*opacity* Fade In\",\"main\":\"basic\",\"group\":\"fade\",\"preset\":\"fade\",\"adpr\":false},\"version\":\"6.6.0\"}','{\"0\":{\"text\":\"<b>FARMCHEMIE<\\/b> is a world renowned Animal health company who is a member of the <b>DYVESTA<\\/b> group. Since our foundation in 2002, we have introduced effective animal health solutions to valuable livestock producers around the world. After a decade of trading high quality products, in 2012 our own production facility was established and <b>FARMCHEMIE<\\/b> became the first animal health organization in Sri Lanka to obtain <b>ISO 9001:2015<\\/b>, <b>WHO GMP<\\/b> and <b>FAMI-QS<\\/b> quality certifications. Through the careful and responsible application of science, <b>FARMCHEMIE<\\/b> delivers a wide range of products for animal well-being and sustainable production.\\n\",\"alias\":\"Text-0\",\"uid\":0,\"toggle\":{\"text\":\"\"},\"size\":{\"width\":{\"d\":{\"v\":\"1620px\",\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"height\":{\"d\":{\"e\":true}},\"minWidth\":{\"d\":{\"e\":true}},\"minHeight\":{\"d\":{\"v\":\"0px\",\"e\":true}},\"aspectRatio\":{\"d\":{\"v\":\"none\"},\"n\":{\"v\":\"none\"},\"t\":{\"v\":\"none\"},\"m\":{\"v\":\"none\"}},\"scaleProportional\":false},\"position\":{\"x\":{\"d\":{\"e\":true}},\"y\":{\"d\":{\"v\":\"532px\",\"e\":true},\"n\":{\"v\":\"283px\"},\"t\":{\"v\":\"215px\"},\"m\":{\"v\":\"132px\"}},\"horizontal\":{\"d\":{\"v\":\"center\",\"e\":true},\"n\":{\"v\":\"center\"},\"t\":{\"v\":\"center\"},\"m\":{\"v\":\"center\"}},\"vertical\":{\"d\":{\"e\":true}},\"zIndex\":18,\"position\":\"absolute\"},\"group\":{\"groupOrder\":18},\"timeline\":{\"frames\":{\"frame_0\":{\"timeline\":{\"endWithSlide\":false}},\"frame_1\":{\"timeline\":{\"endWithSlide\":false,\"frameLength\":300}},\"frame_999\":{\"transform\":{\"opacity\":0},\"timeline\":{\"start\":9000,\"endWithSlide\":true,\"frameLength\":300}}},\"hoverFilterUsed\":false,\"frameOrder\":[{\"id\":\"frame_0\",\"start\":-1},{\"id\":\"frame_1\",\"start\":0},{\"id\":\"frame_999\",\"start\":9000}],\"split\":false,\"sessionFilterUsed\":false},\"idle\":{\"color\":{\"d\":{\"v\":\"#fff\"},\"n\":{\"v\":\"#fff\"},\"t\":{\"v\":\"#fff\"},\"m\":{\"v\":\"#fff\"}},\"margin\":{\"d\":{\"v\":[0,0,0,0],\"e\":false},\"n\":{\"v\":[0,0,0,0],\"e\":false},\"t\":{\"v\":[0,0,0,0],\"e\":false},\"m\":{\"v\":[0,0,0,0],\"e\":false}},\"padding\":{\"d\":{\"v\":[0,0,0,0],\"e\":false},\"n\":{\"v\":[0,0,0,0],\"e\":false},\"t\":{\"v\":[0,0,0,0],\"e\":false},\"m\":{\"v\":[0,0,0,0],\"e\":false}},\"fontFamily\":\"Open Sans\",\"fontSize\":{\"d\":{\"v\":\"26px\",\"e\":true},\"n\":{\"v\":\"13px\"},\"t\":{\"v\":\"9px\"},\"m\":{\"v\":\"5px\"}},\"fontWeight\":{\"d\":{\"v\":\"300\"},\"n\":{\"v\":\"300\"},\"t\":{\"v\":\"300\"},\"m\":{\"v\":\"300\"}},\"letterSpacing\":{\"d\":{\"v\":\"2px\",\"e\":true},\"n\":{\"v\":\"1px\"},\"t\":{\"v\":\"0px\"},\"m\":{\"v\":\"0px\"}},\"lineHeight\":{\"d\":{\"v\":\"30\"},\"n\":{\"v\":\"16\"},\"t\":{\"v\":\"12\"},\"m\":{\"v\":\"7\"}},\"textAlign\":{\"d\":{\"e\":true}},\"borderRadius\":{\"v\":[\"0px\",\"0px\",\"0px\",\"0px\"],\"e\":true},\"borderWidth\":[0,0,0,0],\"whiteSpace\":{\"d\":{\"v\":\"full\",\"e\":true},\"n\":{\"v\":\"full\",\"e\":true},\"t\":{\"v\":\"full\",\"e\":true},\"m\":{\"v\":\"full\",\"e\":true}}},\"hover\":{\"borderRadius\":{\"v\":[0,0,0,0]},\"borderWidth\":[0,0,0,0]},\"actions\":{\"action\":[],\"inactive_actions\":[]},\"type\":\"text\",\"version\":\"6.6.0\"},\"17\":{\"text\":\"\",\"alias\":\"Image-17\",\"uid\":17,\"media\":{\"imageUrl\":\"https:\\/\\/farmchemie.yasithawd.com\\/wp-content\\/uploads\\/2022\\/08\\/FAMIQS.png\",\"imageId\":2381,\"loaded\":true,\"imageLib\":\"medialibrary\"},\"toggle\":{\"text\":\"\"},\"size\":{\"width\":{\"d\":{\"v\":\"266px\",\"e\":true},\"n\":{\"v\":\"141px\"},\"t\":{\"v\":\"107px\"},\"m\":{\"v\":\"66px\"}},\"height\":{\"d\":{\"v\":\"114px\",\"e\":true},\"n\":{\"v\":\"60px\"},\"t\":{\"v\":\"45px\"},\"m\":{\"v\":\"27px\"}},\"originalWidth\":700,\"originalHeight\":300,\"aspectRatio\":{\"d\":{\"v\":2.333333333333333481363069950020872056484222412109375},\"n\":{\"v\":2.333333333333333481363069950020872056484222412109375},\"t\":{\"v\":2.333333333333333481363069950020872056484222412109375},\"m\":{\"v\":2.333333333333333481363069950020872056484222412109375}},\"scaleProportional\":true,\"originalSize\":false},\"position\":{\"x\":{\"d\":{\"v\":\"520px\",\"e\":true},\"n\":{\"v\":\"277px\"},\"t\":{\"v\":\"210px\"},\"m\":{\"v\":\"129px\"}},\"y\":{\"d\":{\"v\":\"740px\",\"e\":true},\"n\":{\"v\":\"394px\"},\"t\":{\"v\":\"299px\"},\"m\":{\"v\":\"184px\"}},\"horizontal\":{\"d\":{\"e\":true}},\"vertical\":{\"d\":{\"e\":true}},\"zIndex\":15,\"position\":\"absolute\"},\"group\":{\"groupOrder\":15},\"timeline\":{\"frames\":{\"frame_0\":{\"timeline\":{\"endWithSlide\":false}},\"frame_1\":{\"timeline\":{\"endWithSlide\":false,\"frameLength\":300}},\"frame_999\":{\"transform\":{\"opacity\":0},\"timeline\":{\"start\":9000,\"endWithSlide\":true,\"frameLength\":300}}},\"frameOrder\":[{\"id\":\"frame_0\",\"start\":-1},{\"id\":\"frame_1\",\"start\":0},{\"id\":\"frame_999\",\"start\":9000}],\"hoverFilterUsed\":false,\"split\":false,\"sessionFilterUsed\":false},\"idle\":{\"margin\":{\"d\":{\"v\":[0,0,0,0],\"e\":false},\"n\":{\"v\":[0,0,0,0],\"e\":false},\"t\":{\"v\":[0,0,0,0],\"e\":false},\"m\":{\"v\":[0,0,0,0],\"e\":false}},\"padding\":{\"d\":{\"v\":[0,0,0,0],\"e\":false},\"n\":{\"v\":[0,0,0,0],\"e\":false},\"t\":{\"v\":[0,0,0,0],\"e\":false},\"m\":{\"v\":[0,0,0,0],\"e\":false}},\"display\":\"inline-block\",\"fontSize\":{\"n\":{\"v\":\"10\"},\"t\":{\"v\":\"7\"},\"m\":{\"v\":\"4\"}},\"lineHeight\":{\"n\":{\"v\":\"13\"},\"t\":{\"v\":\"9\"},\"m\":{\"v\":\"6\"}},\"borderRadius\":{\"v\":[0,0,0,0]},\"borderWidth\":[0,0,0,0],\"whiteSpace\":{\"d\":{\"v\":\"full\"},\"n\":{\"v\":\"full\"},\"t\":{\"v\":\"full\"},\"m\":{\"v\":\"full\"}}},\"hover\":{\"borderRadius\":{\"v\":[0,0,0,0]},\"borderWidth\":[0,0,0,0]},\"actions\":{\"action\":[],\"inactive_actions\":[]},\"type\":\"image\",\"version\":\"6.6.0\"},\"18\":{\"text\":\"\",\"alias\":\"Copy image-17\",\"uid\":18,\"media\":{\"imageUrl\":\"https:\\/\\/farmchemie.yasithawd.com\\/wp-content\\/uploads\\/2022\\/08\\/SGS_png-1.png\",\"imageId\":2380,\"loaded\":true,\"imageLib\":\"medialibrary\"},\"toggle\":{\"text\":\"\"},\"size\":{\"width\":{\"d\":{\"v\":\"275px\",\"e\":true},\"n\":{\"v\":\"146px\"},\"t\":{\"v\":\"110px\"},\"m\":{\"v\":\"67px\"}},\"height\":{\"d\":{\"v\":\"118px\",\"e\":true},\"n\":{\"v\":\"62px\"},\"t\":{\"v\":\"47px\"},\"m\":{\"v\":\"28px\"}},\"originalWidth\":700,\"originalHeight\":300,\"aspectRatio\":{\"d\":{\"v\":2.333333333333333481363069950020872056484222412109375},\"n\":{\"v\":2.333333333333333481363069950020872056484222412109375},\"t\":{\"v\":2.333333333333333481363069950020872056484222412109375},\"m\":{\"v\":2.333333333333333481363069950020872056484222412109375}},\"scaleProportional\":true,\"originalSize\":true},\"position\":{\"x\":{\"d\":{\"e\":true}},\"y\":{\"d\":{\"v\":\"740px\",\"e\":true},\"n\":{\"v\":\"394px\"},\"t\":{\"v\":\"299px\"},\"m\":{\"v\":\"184px\"}},\"horizontal\":{\"d\":{\"v\":\"center\",\"e\":true},\"n\":{\"v\":\"center\"},\"t\":{\"v\":\"center\"},\"m\":{\"v\":\"center\"}},\"vertical\":{\"d\":{\"e\":true}},\"zIndex\":16,\"position\":\"absolute\"},\"group\":{\"groupOrder\":16},\"timeline\":{\"frames\":{\"frame_0\":{\"timeline\":{\"endWithSlide\":false}},\"frame_1\":{\"timeline\":{\"endWithSlide\":false,\"frameLength\":300}},\"frame_999\":{\"transform\":{\"opacity\":0},\"timeline\":{\"start\":9000,\"endWithSlide\":true,\"frameLength\":300}}},\"frameOrder\":[{\"id\":\"frame_0\",\"start\":-1},{\"id\":\"frame_1\",\"start\":0},{\"id\":\"frame_999\",\"start\":9000}],\"hoverFilterUsed\":false,\"split\":false,\"sessionFilterUsed\":false},\"idle\":{\"margin\":{\"d\":{\"v\":[0,0,0,0],\"e\":false},\"n\":{\"v\":[0,0,0,0],\"e\":false},\"t\":{\"v\":[0,0,0,0],\"e\":false},\"m\":{\"v\":[0,0,0,0],\"e\":false}},\"padding\":{\"d\":{\"v\":[0,0,0,0],\"e\":false},\"n\":{\"v\":[0,0,0,0],\"e\":false},\"t\":{\"v\":[0,0,0,0],\"e\":false},\"m\":{\"v\":[0,0,0,0],\"e\":false}},\"display\":\"inline-block\",\"fontSize\":{\"n\":{\"v\":\"10\"},\"t\":{\"v\":\"7\"},\"m\":{\"v\":\"4\"}},\"lineHeight\":{\"n\":{\"v\":\"13\"},\"t\":{\"v\":\"9\"},\"m\":{\"v\":\"6\"}},\"borderRadius\":{\"v\":[0,0,0,0]},\"borderWidth\":[0,0,0,0],\"whiteSpace\":{\"d\":{\"v\":\"full\"},\"n\":{\"v\":\"full\"},\"t\":{\"v\":\"full\"},\"m\":{\"v\":\"full\"}}},\"hover\":{\"borderRadius\":{\"v\":[0,0,0,0]},\"borderWidth\":[0,0,0,0]},\"actions\":{\"action\":[],\"inactive_actions\":[]},\"type\":\"image\",\"version\":\"6.6.0\"},\"23\":{\"text\":\"\",\"alias\":\"Copy  image-17\",\"uid\":23,\"media\":{\"imageUrl\":\"https:\\/\\/farmchemie.yasithawd.com\\/wp-content\\/uploads\\/2022\\/08\\/ISO_white_1.png\",\"imageId\":2382,\"loaded\":true,\"imageLib\":\"medialibrary\"},\"toggle\":{\"text\":\"\"},\"size\":{\"width\":{\"d\":{\"v\":\"292px\",\"e\":true},\"n\":{\"v\":\"155px\"},\"t\":{\"v\":\"117px\"},\"m\":{\"v\":\"72px\"}},\"height\":{\"d\":{\"v\":\"125px\",\"e\":true},\"n\":{\"v\":\"66px\"},\"t\":{\"v\":\"50px\"},\"m\":{\"v\":\"30px\"}},\"originalWidth\":700,\"originalHeight\":300,\"aspectRatio\":{\"d\":{\"v\":2.333333333333333481363069950020872056484222412109375},\"n\":{\"v\":2.333333333333333481363069950020872056484222412109375},\"t\":{\"v\":2.333333333333333481363069950020872056484222412109375},\"m\":{\"v\":2.333333333333333481363069950020872056484222412109375}},\"scaleProportional\":true,\"originalSize\":false},\"position\":{\"x\":{\"d\":{\"v\":\"1140px\",\"e\":true},\"n\":{\"v\":\"608px\"},\"t\":{\"v\":\"461px\"},\"m\":{\"v\":\"284px\"}},\"y\":{\"d\":{\"v\":\"740px\",\"e\":true},\"n\":{\"v\":\"394px\"},\"t\":{\"v\":\"299px\"},\"m\":{\"v\":\"184px\"}},\"horizontal\":{\"d\":{\"e\":true}},\"vertical\":{\"d\":{\"e\":true}},\"zIndex\":17,\"position\":\"absolute\"},\"group\":{\"groupOrder\":17},\"timeline\":{\"frames\":{\"frame_0\":{\"timeline\":{\"endWithSlide\":false}},\"frame_1\":{\"timeline\":{\"endWithSlide\":false,\"frameLength\":300}},\"frame_999\":{\"transform\":{\"opacity\":0},\"timeline\":{\"start\":9000,\"endWithSlide\":true,\"frameLength\":300}}},\"frameOrder\":[{\"id\":\"frame_0\",\"start\":-1},{\"id\":\"frame_1\",\"start\":0},{\"id\":\"frame_999\",\"start\":9000}],\"hoverFilterUsed\":false,\"split\":false,\"sessionFilterUsed\":false},\"idle\":{\"margin\":{\"d\":{\"v\":[0,0,0,0],\"e\":false},\"n\":{\"v\":[0,0,0,0],\"e\":false},\"t\":{\"v\":[0,0,0,0],\"e\":false},\"m\":{\"v\":[0,0,0,0],\"e\":false}},\"padding\":{\"d\":{\"v\":[0,0,0,0],\"e\":false},\"n\":{\"v\":[0,0,0,0],\"e\":false},\"t\":{\"v\":[0,0,0,0],\"e\":false},\"m\":{\"v\":[0,0,0,0],\"e\":false}},\"display\":\"inline-block\",\"fontSize\":{\"n\":{\"v\":\"10\"},\"t\":{\"v\":\"7\"},\"m\":{\"v\":\"4\"}},\"lineHeight\":{\"n\":{\"v\":\"13\"},\"t\":{\"v\":\"9\"},\"m\":{\"v\":\"6\"}},\"borderRadius\":{\"v\":[0,0,0,0]},\"borderWidth\":[0,0,0,0],\"whiteSpace\":{\"d\":{\"v\":\"full\"},\"n\":{\"v\":\"full\"},\"t\":{\"v\":\"full\"},\"m\":{\"v\":\"full\"}}},\"hover\":{\"borderRadius\":{\"v\":[0,0,0,0]},\"borderWidth\":[0,0,0,0]},\"actions\":{\"action\":[],\"inactive_actions\":[]},\"type\":\"image\",\"version\":\"6.6.0\"},\"37\":{\"text\":\"\",\"alias\":\"Shape-37\",\"uid\":37,\"toggle\":{\"text\":\"\"},\"size\":{\"width\":{\"d\":{\"v\":\"1733px\",\"e\":true},\"n\":{\"v\":\"924px\"},\"t\":{\"v\":\"702px\"},\"m\":{\"v\":\"433px\"}},\"height\":{\"d\":{\"v\":\"100px\",\"e\":true},\"n\":{\"v\":\"53px\"},\"t\":{\"v\":\"40px\"},\"m\":{\"v\":\"24px\"}},\"originalWidth\":\"300px\",\"originalHeight\":\"180px\",\"aspectRatio\":{\"d\":{\"v\":1.6666666666666667406815349750104360282421112060546875},\"n\":{\"v\":1.6666666666666667406815349750104360282421112060546875},\"t\":{\"v\":1.6666666666666667406815349750104360282421112060546875},\"m\":{\"v\":1.6666666666666667406815349750104360282421112060546875}},\"scaleProportional\":false},\"position\":{\"x\":{\"d\":{\"v\":\"-1140px\",\"e\":true},\"n\":{\"v\":\"-474px\",\"e\":true},\"t\":{\"v\":\"-360px\"},\"m\":{\"v\":\"-222px\"}},\"y\":{\"d\":{\"v\":\"120px\",\"e\":true},\"n\":{\"v\":\"112px\",\"e\":true},\"t\":{\"v\":\"85px\"},\"m\":{\"v\":\"52px\"}},\"horizontal\":{\"d\":{\"v\":\"right\",\"e\":true},\"n\":{\"v\":\"right\"},\"t\":{\"v\":\"right\"},\"m\":{\"v\":\"right\"}},\"vertical\":{\"d\":{\"e\":true}},\"zIndex\":11,\"position\":\"absolute\"},\"group\":{\"groupOrder\":11},\"timeline\":{\"frames\":{\"frame_0\":{\"timeline\":{\"endWithSlide\":false}},\"frame_1\":{\"timeline\":{\"endWithSlide\":false,\"frameLength\":300}},\"frame_999\":{\"transform\":{\"opacity\":0},\"timeline\":{\"start\":9000,\"endWithSlide\":true,\"frameLength\":300}}},\"hoverFilterUsed\":false,\"frameOrder\":[{\"id\":\"frame_0\",\"start\":-1},{\"id\":\"frame_1\",\"start\":0},{\"id\":\"frame_999\",\"start\":9000}],\"split\":false,\"sessionFilterUsed\":false},\"idle\":{\"margin\":{\"d\":{\"v\":[0,0,0,0],\"e\":false},\"n\":{\"v\":[0,0,0,0],\"e\":false},\"t\":{\"v\":[0,0,0,0],\"e\":false},\"m\":{\"v\":[0,0,0,0],\"e\":false}},\"padding\":{\"d\":{\"v\":[0,0,0,0],\"e\":false},\"n\":{\"v\":[0,0,0,0],\"e\":false},\"t\":{\"v\":[0,0,0,0],\"e\":false},\"m\":{\"v\":[0,0,0,0],\"e\":false}},\"fontSize\":{\"n\":{\"v\":\"10\"},\"t\":{\"v\":\"7\"},\"m\":{\"v\":\"4\"}},\"lineHeight\":{\"n\":{\"v\":\"13\"},\"t\":{\"v\":\"9\"},\"m\":{\"v\":\"6\"}},\"backgroundColor\":\"rgba(255, 255, 255, 0.4)\",\"borderRadius\":{\"v\":[\"100px\",0,0,\"100px\"],\"e\":true},\"borderWidth\":[0,0,0,0],\"whiteSpace\":{\"d\":{\"v\":\"full\"},\"n\":{\"v\":\"full\"},\"t\":{\"v\":\"full\"},\"m\":{\"v\":\"full\"}}},\"hover\":{\"borderRadius\":{\"v\":[0,0,0,0]},\"borderWidth\":[0,0,0,0]},\"actions\":{\"action\":[],\"inactive_actions\":[]},\"type\":\"shape\",\"version\":\"6.6.0\"},\"44\":{\"text\":\"\",\"alias\":\"Image-44\",\"uid\":44,\"media\":{\"imageUrl\":\"https:\\/\\/farmchemie.yasithawd.com\\/wp-content\\/uploads\\/2022\\/09\\/IN.png\",\"imageId\":2517,\"loaded\":true,\"imageLib\":\"medialibrary\"},\"toggle\":{\"text\":\"\"},\"size\":{\"width\":{\"d\":{\"v\":\"80px\",\"e\":true},\"n\":{\"v\":\"42px\"},\"t\":{\"v\":\"31px\"},\"m\":{\"v\":\"19px\"}},\"height\":{\"d\":{\"v\":\"80px\",\"e\":true},\"n\":{\"v\":\"42px\"},\"t\":{\"v\":\"31px\"},\"m\":{\"v\":\"19px\"}},\"originalWidth\":545,\"originalHeight\":546,\"aspectRatio\":{\"d\":{\"v\":0.9981684981684981750049701076932251453399658203125},\"n\":{\"v\":0.9981684981684981750049701076932251453399658203125},\"t\":{\"v\":0.9981684981684981750049701076932251453399658203125},\"m\":{\"v\":0.9981684981684981750049701076932251453399658203125}},\"scaleProportional\":true,\"originalSize\":false},\"position\":{\"x\":{\"d\":{\"v\":\"1473px\",\"e\":true},\"n\":{\"v\":\"785px\"},\"t\":{\"v\":\"596px\"},\"m\":{\"v\":\"367px\"}},\"y\":{\"d\":{\"v\":\"130px\",\"e\":true},\"n\":{\"v\":\"69px\"},\"t\":{\"v\":\"52px\"},\"m\":{\"v\":\"32px\"}},\"horizontal\":{\"d\":{\"e\":true}},\"vertical\":{\"d\":{\"e\":true}},\"zIndex\":20,\"position\":\"absolute\"},\"group\":{\"groupOrder\":20},\"timeline\":{\"frames\":{\"frame_0\":{\"timeline\":{\"endWithSlide\":false}},\"frame_1\":{\"timeline\":{\"endWithSlide\":false,\"frameLength\":300}},\"frame_999\":{\"transform\":{\"opacity\":0},\"timeline\":{\"start\":9000,\"endWithSlide\":true,\"frameLength\":300}}},\"frameOrder\":[{\"id\":\"frame_0\",\"start\":-1},{\"id\":\"frame_1\",\"start\":0},{\"id\":\"frame_999\",\"start\":9000}],\"hoverFilterUsed\":false,\"split\":false,\"sessionFilterUsed\":false},\"idle\":{\"margin\":{\"d\":{\"v\":[0,0,0,0],\"e\":false},\"n\":{\"v\":[0,0,0,0],\"e\":false},\"t\":{\"v\":[0,0,0,0],\"e\":false},\"m\":{\"v\":[0,0,0,0],\"e\":false}},\"padding\":{\"d\":{\"v\":[0,0,0,0],\"e\":false},\"n\":{\"v\":[0,0,0,0],\"e\":false},\"t\":{\"v\":[0,0,0,0],\"e\":false},\"m\":{\"v\":[0,0,0,0],\"e\":false}},\"display\":\"inline-block\",\"fontSize\":{\"n\":{\"v\":\"10\"},\"t\":{\"v\":\"7\"},\"m\":{\"v\":\"4\"}},\"lineHeight\":{\"n\":{\"v\":\"13\"},\"t\":{\"v\":\"9\"},\"m\":{\"v\":\"6\"}},\"borderRadius\":{\"v\":[0,0,0,0]},\"borderWidth\":[0,0,0,0],\"whiteSpace\":{\"d\":{\"v\":\"full\"},\"n\":{\"v\":\"full\"},\"t\":{\"v\":\"full\"},\"m\":{\"v\":\"full\"}}},\"hover\":{\"usehover\":\"true\",\"borderRadius\":{\"v\":[0,0,0,0]},\"borderWidth\":[0,0,0,0],\"scaleX\":\"1.2\",\"scaleY\":\"1.2\",\"copied\":true},\"actions\":{\"action\":[{\"action\":\"link\",\"tooltip_event\":\"click\",\"link_help_in\":\"keep\",\"link_open_in\":\"_self\",\"link_follow\":\"follow\",\"link_type\":\"a\",\"image_link\":\"https:\\/\\/www.instagram.com\\/petstar_fcl\\/\"}],\"inactive_actions\":[]},\"type\":\"image\",\"version\":\"6.6.0\"},\"45\":{\"text\":\"\",\"alias\":\"Copy image-44\",\"uid\":45,\"media\":{\"imageUrl\":\"https:\\/\\/farmchemie.yasithawd.com\\/wp-content\\/uploads\\/2022\\/09\\/linkedin.png\",\"imageId\":2518,\"loaded\":true,\"imageLib\":\"medialibrary\"},\"toggle\":{\"text\":\"\"},\"size\":{\"width\":{\"d\":{\"v\":\"80px\",\"e\":true},\"n\":{\"v\":\"42px\"},\"t\":{\"v\":\"31px\"},\"m\":{\"v\":\"19px\"}},\"height\":{\"d\":{\"v\":\"80px\",\"e\":true},\"n\":{\"v\":\"42px\"},\"t\":{\"v\":\"31px\"},\"m\":{\"v\":\"19px\"}},\"originalWidth\":1691,\"originalHeight\":1691,\"aspectRatio\":{\"d\":{\"v\":1},\"n\":{\"v\":1},\"t\":{\"v\":1},\"m\":{\"v\":1}},\"scaleProportional\":true,\"originalSize\":false},\"position\":{\"x\":{\"d\":{\"v\":\"1566px\",\"e\":true},\"n\":{\"v\":\"835px\"},\"t\":{\"v\":\"634px\"},\"m\":{\"v\":\"391px\"}},\"y\":{\"d\":{\"v\":\"130px\",\"e\":true},\"n\":{\"v\":\"69px\"},\"t\":{\"v\":\"52px\"},\"m\":{\"v\":\"32px\"}},\"horizontal\":{\"d\":{\"e\":true}},\"vertical\":{\"d\":{\"e\":true}},\"zIndex\":19,\"position\":\"absolute\"},\"group\":{\"groupOrder\":19},\"timeline\":{\"frames\":{\"frame_0\":{\"timeline\":{\"endWithSlide\":false}},\"frame_1\":{\"timeline\":{\"endWithSlide\":false,\"frameLength\":300}},\"frame_999\":{\"transform\":{\"opacity\":0},\"timeline\":{\"start\":9000,\"endWithSlide\":true,\"frameLength\":300}}},\"frameOrder\":[{\"id\":\"frame_0\",\"start\":-1},{\"id\":\"frame_1\",\"start\":0},{\"id\":\"frame_999\",\"start\":9000}],\"hoverFilterUsed\":false,\"split\":false,\"sessionFilterUsed\":false},\"idle\":{\"margin\":{\"d\":{\"v\":[0,0,0,0],\"e\":false},\"n\":{\"v\":[0,0,0,0],\"e\":false},\"t\":{\"v\":[0,0,0,0],\"e\":false},\"m\":{\"v\":[0,0,0,0],\"e\":false}},\"padding\":{\"d\":{\"v\":[0,0,0,0],\"e\":false},\"n\":{\"v\":[0,0,0,0],\"e\":false},\"t\":{\"v\":[0,0,0,0],\"e\":false},\"m\":{\"v\":[0,0,0,0],\"e\":false}},\"display\":\"inline-block\",\"fontSize\":{\"n\":{\"v\":\"10\"},\"t\":{\"v\":\"7\"},\"m\":{\"v\":\"4\"}},\"lineHeight\":{\"n\":{\"v\":\"13\"},\"t\":{\"v\":\"9\"},\"m\":{\"v\":\"6\"}},\"borderRadius\":{\"v\":[0,0,0,0]},\"borderWidth\":[0,0,0,0],\"whiteSpace\":{\"d\":{\"v\":\"full\"},\"n\":{\"v\":\"full\"},\"t\":{\"v\":\"full\"},\"m\":{\"v\":\"full\"}}},\"hover\":{\"usehover\":\"true\",\"borderRadius\":{\"v\":[0,0,0,0]},\"borderWidth\":[0,0,0,0],\"scaleX\":\"1.2\",\"scaleY\":\"1.2\",\"copied\":true},\"actions\":{\"action\":[{\"action\":\"link\",\"tooltip_event\":\"click\",\"link_help_in\":\"keep\",\"link_open_in\":\"_self\",\"link_follow\":\"follow\",\"link_type\":\"a\",\"image_link\":\"https:\\/\\/www.linkedin.com\\/company\\/farmchemie-private-limited\\/\"}],\"inactive_actions\":[]},\"type\":\"image\",\"version\":\"6.6.0\"},\"46\":{\"text\":\"\",\"alias\":\"Copy  image-44\",\"uid\":46,\"media\":{\"imageUrl\":\"https:\\/\\/farmchemie.yasithawd.com\\/wp-content\\/uploads\\/2022\\/09\\/FB-150x150.png\",\"imageId\":2516,\"loaded\":true,\"imageLib\":\"medialibrary\"},\"toggle\":{\"text\":\"\"},\"size\":{\"width\":{\"d\":{\"v\":\"80px\",\"e\":true},\"n\":{\"v\":\"42px\"},\"t\":{\"v\":\"31px\"},\"m\":{\"v\":\"19px\"}},\"height\":{\"d\":{\"v\":\"80px\",\"e\":true},\"n\":{\"v\":\"42px\"},\"t\":{\"v\":\"31px\"},\"m\":{\"v\":\"19px\"}},\"originalWidth\":150,\"originalHeight\":150,\"aspectRatio\":{\"d\":{\"v\":1},\"n\":{\"v\":1},\"t\":{\"v\":1},\"m\":{\"v\":1}},\"scaleProportional\":true,\"originalSize\":true},\"position\":{\"x\":{\"d\":{\"v\":\"1380px\",\"e\":true},\"n\":{\"v\":\"736px\"},\"t\":{\"v\":\"559px\"},\"m\":{\"v\":\"344px\"}},\"y\":{\"d\":{\"v\":\"130px\",\"e\":true},\"n\":{\"v\":\"69px\"},\"t\":{\"v\":\"52px\"},\"m\":{\"v\":\"32px\"}},\"horizontal\":{\"d\":{\"e\":true}},\"vertical\":{\"d\":{\"e\":true}},\"zIndex\":21,\"position\":\"absolute\"},\"behavior\":{\"imageSourceType\":\"thumbnail\"},\"group\":{\"groupOrder\":21},\"timeline\":{\"frames\":{\"frame_0\":{\"timeline\":{\"endWithSlide\":false}},\"frame_1\":{\"timeline\":{\"endWithSlide\":false,\"frameLength\":300}},\"frame_999\":{\"transform\":{\"opacity\":0},\"timeline\":{\"start\":9000,\"endWithSlide\":true,\"frameLength\":300}}},\"frameOrder\":[{\"id\":\"frame_0\",\"start\":-1},{\"id\":\"frame_1\",\"start\":0},{\"id\":\"frame_999\",\"start\":9000}],\"hoverFilterUsed\":false,\"split\":false,\"sessionFilterUsed\":false},\"idle\":{\"margin\":{\"d\":{\"v\":[0,0,0,0],\"e\":false},\"n\":{\"v\":[0,0,0,0],\"e\":false},\"t\":{\"v\":[0,0,0,0],\"e\":false},\"m\":{\"v\":[0,0,0,0],\"e\":false}},\"padding\":{\"d\":{\"v\":[0,0,0,0],\"e\":false},\"n\":{\"v\":[0,0,0,0],\"e\":false},\"t\":{\"v\":[0,0,0,0],\"e\":false},\"m\":{\"v\":[0,0,0,0],\"e\":false}},\"display\":\"inline-block\",\"fontSize\":{\"n\":{\"v\":\"10\"},\"t\":{\"v\":\"7\"},\"m\":{\"v\":\"4\"}},\"lineHeight\":{\"n\":{\"v\":\"13\"},\"t\":{\"v\":\"9\"},\"m\":{\"v\":\"6\"}},\"borderRadius\":{\"v\":[0,0,0,0]},\"borderWidth\":[0,0,0,0],\"whiteSpace\":{\"d\":{\"v\":\"full\"},\"n\":{\"v\":\"full\"},\"t\":{\"v\":\"full\"},\"m\":{\"v\":\"full\"}}},\"hover\":{\"usehover\":\"true\",\"borderRadius\":{\"v\":[0,0,0,0]},\"borderWidth\":[0,0,0,0],\"scaleX\":\"1.2\",\"scaleY\":\"1.2\",\"copied\":true},\"actions\":{\"action\":[{\"action\":\"link\",\"tooltip_event\":\"click\",\"link_help_in\":\"keep\",\"link_open_in\":\"_blank\",\"link_follow\":\"follow\",\"link_type\":\"a\",\"image_link\":\"https:\\/\\/www.facebook.com\\/pages\\/Farmchemie-Private-Limited\\/326629104197342?ref=hl\"}],\"inactive_actions\":[]},\"type\":\"image\",\"version\":\"6.6.0\"},\"48\":{\"text\":\"\",\"alias\":\"Image-48\",\"uid\":48,\"media\":{\"imageUrl\":\"https:\\/\\/farmchemie.yasithawd.com\\/wp-content\\/uploads\\/2022\\/09\\/1-Youtube.png\",\"imageId\":2520,\"loaded\":true},\"toggle\":{\"text\":\"\"},\"size\":{\"width\":{\"d\":{\"v\":\"80px\",\"e\":true},\"n\":{\"v\":\"42px\"},\"t\":{\"v\":\"31px\"},\"m\":{\"v\":\"19px\"}},\"height\":{\"d\":{\"v\":\"56px\",\"e\":true},\"n\":{\"v\":\"29px\"},\"t\":{\"v\":\"22px\"},\"m\":{\"v\":\"13px\"}},\"originalWidth\":1225,\"originalHeight\":852,\"aspectRatio\":{\"d\":{\"v\":1.43779342723004699422517660423181951045989990234375},\"n\":{\"v\":1.43779342723004699422517660423181951045989990234375},\"t\":{\"v\":1.43779342723004699422517660423181951045989990234375},\"m\":{\"v\":1.43779342723004699422517660423181951045989990234375}},\"scaleProportional\":true},\"position\":{\"x\":{\"d\":{\"v\":\"1661px\",\"e\":true},\"n\":{\"v\":\"885px\"},\"t\":{\"v\":\"672px\"},\"m\":{\"v\":\"414px\"}},\"y\":{\"d\":{\"v\":\"143px\",\"e\":true},\"n\":{\"v\":\"76px\"},\"t\":{\"v\":\"57px\"},\"m\":{\"v\":\"35px\"}},\"zIndex\":22,\"position\":\"absolute\"},\"group\":{\"groupOrder\":22},\"timeline\":{\"frames\":{\"frame_0\":{\"timeline\":{\"endWithSlide\":false}},\"frame_1\":{\"timeline\":{\"endWithSlide\":false,\"frameLength\":300}},\"frame_999\":{\"transform\":{\"opacity\":0},\"timeline\":{\"start\":9000,\"endWithSlide\":true,\"frameLength\":300}}},\"frameOrder\":[{\"id\":\"frame_0\",\"start\":-1},{\"id\":\"frame_1\",\"start\":0},{\"id\":\"frame_999\",\"start\":9000}],\"hoverFilterUsed\":false,\"split\":false,\"sessionFilterUsed\":false},\"idle\":{\"margin\":{\"d\":{\"v\":[0,0,0,0],\"e\":false},\"n\":{\"v\":[0,0,0,0],\"e\":false},\"t\":{\"v\":[0,0,0,0],\"e\":false},\"m\":{\"v\":[0,0,0,0],\"e\":false}},\"padding\":{\"d\":{\"v\":[0,0,0,0],\"e\":false},\"n\":{\"v\":[0,0,0,0],\"e\":false},\"t\":{\"v\":[0,0,0,0],\"e\":false},\"m\":{\"v\":[0,0,0,0],\"e\":false}},\"fontSize\":{\"n\":{\"v\":\"10\"},\"t\":{\"v\":\"7\"},\"m\":{\"v\":\"4\"}},\"lineHeight\":{\"n\":{\"v\":\"13\"},\"t\":{\"v\":\"9\"},\"m\":{\"v\":\"6\"}},\"borderRadius\":{\"v\":[0,0,0,0]},\"borderWidth\":[0,0,0,0],\"whiteSpace\":{\"d\":{\"v\":\"full\"},\"n\":{\"v\":\"full\"},\"t\":{\"v\":\"full\"},\"m\":{\"v\":\"full\"}}},\"hover\":{\"usehover\":\"true\",\"borderRadius\":{\"v\":[0,0,0,0]},\"borderWidth\":[0,0,0,0],\"scaleX\":\"1.2\",\"scaleY\":\"1.2\",\"copied\":true},\"actions\":{\"action\":[{\"action\":\"link\",\"tooltip_event\":\"click\",\"link_help_in\":\"keep\",\"link_open_in\":\"_self\",\"link_follow\":\"follow\",\"link_type\":\"a\",\"image_link\":\"https:\\/\\/www.youtube.com\\/@farmchemieprivatelimited8688\"}],\"inactive_actions\":[]},\"type\":\"image\",\"version\":\"6.6.0\"},\"top\":{\"uid\":\"top\",\"group\":{\"puid\":-1,\"groupOrder\":14},\"type\":\"zone\",\"alias\":\"TOP ROWS\",\"position\":{\"zIndex\":14,\"position\":\"absolute\"},\"version\":\"6.6.0\"},\"middle\":{\"uid\":\"middle\",\"group\":{\"puid\":-1,\"groupOrder\":13},\"type\":\"zone\",\"alias\":\"MID ROWS\",\"position\":{\"zIndex\":13,\"position\":\"absolute\"},\"version\":\"6.6.0\"},\"bottom\":{\"uid\":\"bottom\",\"group\":{\"puid\":-1,\"groupOrder\":12},\"type\":\"zone\",\"alias\":\"BOTTOM ROWS\",\"position\":{\"zIndex\":12,\"position\":\"absolute\"},\"version\":\"6.6.0\"}}','{\"version\":\"6.6.0\"}'),(15,8,1,'{\"bg\":{\"type\":\"html5\",\"image\":\"https:\\/\\/farmchemie.yasithawd.com\\/wp-content\\/uploads\\/revslider\\/video-media\\/WhatsApp-Video-2022-08-30-at-12_8.jpeg\",\"imageId\":2411,\"imageLib\":\"medialibrary\",\"mpeg\":\"https:\\/\\/farmchemie.yasithawd.com\\/wp-content\\/uploads\\/2022\\/08\\/WhatsApp-Video-2022-08-30-at-1.30.14-PM.mp4\",\"video\":{\"dottedOverlaySize\":\"1.5\",\"dottedColorA\":\"rgba(0, 0, 0, 0.21)\",\"dottedColorB\":\"rgba(0, 0, 0, 0.2)\",\"forceRewind\":false,\"loop\":false,\"pausetimer\":true,\"nextSlideAtEnd\":true},\"videoId\":2428,\"imageWidth\":1280,\"imageHeight\":720,\"imageRatio\":1.77777777777777767909128669998608529567718505859375},\"info\":{\"params\":[{\"v\":\"\",\"l\":10},{\"v\":\"\",\"l\":10},{\"v\":\"\",\"l\":10},{\"v\":\"\",\"l\":10},{\"v\":\"\",\"l\":10},{\"v\":\"\",\"l\":10},{\"v\":\"\",\"l\":10},{\"v\":\"\",\"l\":10},{\"v\":\"\",\"l\":10},{\"v\":\"\",\"l\":10}]},\"slideChange\":{\"adpr\":false,\"in\":{\"o\":0},\"out\":{\"a\":false},\"title\":\"*opacity* Fade In\",\"main\":\"basic\",\"group\":\"fade\",\"preset\":\"fade\"}}','{\"0\":{\"text\":\"<b>FARMCHEMIE<\\/b> is a world renowned Animal health company who is a member of the <b>DYVESTA<\\/b> group. Since our foundation in 2002, we have introduced effective animal health solutions to valuable livestock producers around the world. After a decade of trading high quality products, in 2012 our own production facility was established and <b>FARMCHEMIE<\\/b> became the first animal health organization in Sri Lanka to obtain <b>ISO 9001:2015<\\/b>, <b>WHO GMP<\\/b> and <b>FAMI-QS<\\/b> quality certifications. Through the careful and responsible application of science, <b>FARMCHEMIE<\\/b> delivers a wide range of products for animal well-being and sustainable production.\\n\",\"alias\":\"Text-0\",\"uid\":0,\"toggle\":{\"text\":\"\"},\"size\":{\"width\":{\"d\":{\"v\":\"1669px\",\"e\":true},\"n\":{\"e\":true},\"t\":{\"v\":\"678px\",\"e\":true},\"m\":{\"v\":\"449px\",\"e\":true}},\"height\":{\"d\":{\"e\":true},\"t\":{\"v\":\"344px\",\"e\":true},\"m\":{\"v\":\"309px\",\"e\":true}},\"maxWidth\":{\"m\":{\"e\":true}},\"maxHeight\":{\"m\":{\"e\":true}},\"minWidth\":{\"d\":{\"e\":true},\"m\":{\"e\":true}},\"minHeight\":{\"d\":{\"v\":\"0px\",\"e\":true},\"m\":{\"e\":true}},\"aspectRatio\":{\"d\":{\"v\":\"none\"},\"n\":{\"v\":\"none\"},\"t\":{\"v\":\"none\"},\"m\":{\"v\":\"none\"}},\"scaleProportional\":false},\"position\":{\"x\":{\"d\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"y\":{\"d\":{\"v\":\"245px\",\"e\":true},\"n\":{\"v\":\"130px\"},\"t\":{\"v\":\"436px\",\"e\":true},\"m\":{\"v\":\"280px\",\"e\":true}},\"horizontal\":{\"d\":{\"v\":\"center\",\"e\":true},\"n\":{\"v\":\"center\"},\"t\":{\"v\":\"center\"},\"m\":{\"v\":\"center\"}},\"vertical\":{\"d\":{\"e\":true}},\"position\":\"absolute\",\"zIndex\":10},\"group\":{\"groupOrder\":10},\"timeline\":{\"frames\":{\"frame_0\":{\"timeline\":{\"endWithSlide\":false}},\"frame_1\":{\"timeline\":{\"endWithSlide\":false,\"frameLength\":300}},\"frame_999\":{\"transform\":{\"x\":{\"m\":{\"e\":true}},\"y\":{\"m\":{\"e\":true}},\"opacity\":0},\"mask\":{\"x\":{\"m\":{\"e\":true}},\"y\":{\"m\":{\"e\":true}}},\"timeline\":{\"start\":9000,\"endWithSlide\":true,\"frameLength\":300},\"chars\":{\"x\":{\"m\":{\"e\":true}},\"y\":{\"m\":{\"e\":true}}},\"words\":{\"x\":{\"m\":{\"e\":true}},\"y\":{\"m\":{\"e\":true}}},\"lines\":{\"x\":{\"m\":{\"e\":true}},\"y\":{\"m\":{\"e\":true}}}}},\"hoverFilterUsed\":false,\"frameOrder\":[{\"id\":\"frame_0\",\"start\":-1},{\"id\":\"frame_1\",\"start\":0},{\"id\":\"frame_999\",\"start\":9000}],\"split\":false,\"sessionFilterUsed\":false},\"idle\":{\"color\":{\"d\":{\"v\":\"#fff\"},\"n\":{\"v\":\"#fff\"},\"t\":{\"v\":\"#fff\"},\"m\":{\"v\":\"#fff\"}},\"margin\":{\"d\":{\"v\":[0,0,0,0],\"e\":false},\"n\":{\"v\":[0,0,0,0],\"e\":false},\"t\":{\"v\":[0,0,0,0],\"e\":false},\"m\":{\"v\":[0,0,0,0],\"e\":false}},\"padding\":{\"d\":{\"v\":[0,0,0,0],\"e\":false},\"n\":{\"v\":[0,0,0,0],\"e\":false},\"t\":{\"v\":[0,0,0,0],\"e\":false},\"m\":{\"v\":[0,0,0,0],\"e\":true}},\"fontFamily\":\"Exo\",\"fontSize\":{\"d\":{\"v\":\"26px\",\"e\":true},\"n\":{\"v\":\"13px\"},\"t\":{\"v\":\"22px\",\"e\":true},\"m\":{\"v\":\"18px\",\"e\":true}},\"fontWeight\":{\"d\":{\"v\":\"300\"},\"n\":{\"v\":\"300\"},\"t\":{\"v\":\"300\"},\"m\":{\"v\":\"300\"}},\"letterSpacing\":{\"d\":{\"v\":\"2px\",\"e\":true},\"n\":{\"v\":\"1px\"},\"t\":{\"v\":\"0px\"},\"m\":{\"v\":\"0px\",\"e\":true}},\"lineHeight\":{\"d\":{\"v\":\"38px\",\"e\":true},\"n\":{\"v\":\"20px\"},\"t\":{\"v\":\"30px\",\"e\":true},\"m\":{\"v\":\"21px\",\"e\":true}},\"textAlign\":{\"d\":{\"v\":\"center\",\"e\":true},\"n\":{\"v\":\"center\"},\"t\":{\"v\":\"center\"},\"m\":{\"v\":\"center\"}},\"backgroundColor\":\"rgba(0, 0, 0, 0)\",\"borderRadius\":{\"v\":[\"0px\",\"0px\",\"0px\",\"0px\"],\"e\":true},\"whiteSpace\":{\"d\":{\"v\":\"full\",\"e\":true},\"n\":{\"v\":\"full\",\"e\":true},\"t\":{\"v\":\"full\",\"e\":true},\"m\":{\"v\":\"full\",\"e\":true}}},\"type\":\"text\"},\"1\":{\"text\":\"\",\"alias\":\"Image-1\",\"uid\":1,\"media\":{\"imageUrl\":\"https:\\/\\/farmchemie.yasithawd.com\\/wp-content\\/uploads\\/2023\\/08\\/asset-resized2.png\",\"imageId\":3076,\"loaded\":true,\"imageLib\":\"medialibrary\"},\"toggle\":{\"text\":\"\"},\"size\":{\"width\":{\"d\":{\"v\":\"902px\",\"e\":true},\"n\":{\"v\":\"481px\"},\"t\":{\"v\":\"581px\",\"e\":true},\"m\":{\"v\":\"441px\",\"e\":true}},\"height\":{\"d\":{\"v\":\"129px\",\"e\":true},\"n\":{\"v\":\"68px\"},\"t\":{\"v\":\"83px\",\"e\":true},\"m\":{\"v\":\"63px\",\"e\":true}},\"originalWidth\":700,\"originalHeight\":100,\"aspectRatio\":{\"d\":{\"v\":7},\"n\":{\"v\":7},\"t\":{\"v\":7},\"m\":{\"v\":7}},\"scaleProportional\":true,\"originalSize\":true},\"position\":{\"x\":{\"d\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"v\":\"-2px\",\"e\":true}},\"y\":{\"d\":{\"v\":\"47px\",\"e\":true},\"n\":{\"v\":\"25px\"},\"t\":{\"v\":\"50px\",\"e\":true},\"m\":{\"v\":\"42px\",\"e\":true}},\"horizontal\":{\"d\":{\"v\":\"center\",\"e\":true},\"n\":{\"v\":\"center\"},\"t\":{\"v\":\"center\",\"e\":true},\"m\":{\"v\":\"center\"}},\"vertical\":{\"d\":{\"v\":\"bottom\",\"e\":true},\"n\":{\"v\":\"bottom\"},\"t\":{\"v\":\"bottom\"},\"m\":{\"v\":\"bottom\"}},\"position\":\"absolute\",\"zIndex\":15},\"group\":{\"groupOrder\":15},\"timeline\":{\"frames\":{\"frame_0\":{\"timeline\":{\"endWithSlide\":false}},\"frame_1\":{\"timeline\":{\"endWithSlide\":false,\"frameLength\":300}},\"frame_999\":{\"transform\":{\"opacity\":0},\"timeline\":{\"start\":9000,\"endWithSlide\":true,\"frameLength\":300}}},\"frameOrder\":[{\"id\":\"frame_0\",\"start\":-1},{\"id\":\"frame_1\",\"start\":0},{\"id\":\"frame_999\",\"start\":9000}],\"hoverFilterUsed\":false,\"split\":false,\"sessionFilterUsed\":false},\"idle\":{\"margin\":{\"d\":{\"v\":[0,0,0,0],\"e\":false},\"n\":{\"v\":[0,0,0,0],\"e\":false},\"t\":{\"v\":[0,0,0,0],\"e\":false},\"m\":{\"v\":[0,0,0,0],\"e\":false}},\"padding\":{\"d\":{\"v\":[0,0,0,0],\"e\":false},\"n\":{\"v\":[0,0,0,0],\"e\":false},\"t\":{\"v\":[0,0,0,0],\"e\":false},\"m\":{\"v\":[0,0,0,0],\"e\":false}},\"fontSize\":{\"n\":{\"v\":\"10\"},\"t\":{\"v\":\"7\"},\"m\":{\"v\":\"4\"}},\"lineHeight\":{\"n\":{\"v\":\"13\"},\"t\":{\"v\":\"9\"},\"m\":{\"v\":\"6\"}},\"backgroundColor\":\"rgba(0, 0, 0, 0)\",\"whiteSpace\":{\"d\":{\"v\":\"full\"},\"n\":{\"v\":\"full\"},\"t\":{\"v\":\"full\"},\"m\":{\"v\":\"full\"}}},\"type\":\"image\"},\"2\":{\"text\":\"\",\"alias\":\"Shape-2\",\"uid\":2,\"toggle\":{\"text\":\"\"},\"size\":{\"width\":{\"d\":{\"v\":\"100%\",\"e\":true},\"n\":{\"v\":\"100%\"},\"t\":{\"v\":\"100%\"},\"m\":{\"v\":\"100%\"}},\"height\":{\"d\":{\"v\":\"100%\",\"e\":true},\"n\":{\"v\":\"100%\"},\"t\":{\"v\":\"100%\"},\"m\":{\"v\":\"100%\"}},\"originalWidth\":\"300px\",\"originalHeight\":\"180px\",\"aspectRatio\":{\"d\":{\"v\":1.6666666666666667406815349750104360282421112060546875},\"n\":{\"v\":1.6666666666666667406815349750104360282421112060546875},\"t\":{\"v\":1.6666666666666667406815349750104360282421112060546875},\"m\":{\"v\":1.6666666666666667406815349750104360282421112060546875}},\"scaleProportional\":false},\"position\":{\"x\":{\"d\":{\"e\":true}},\"y\":{\"d\":{\"e\":true}},\"horizontal\":{\"d\":{\"v\":\"center\",\"e\":true},\"n\":{\"v\":\"center\"},\"t\":{\"v\":\"center\"},\"m\":{\"v\":\"center\"}},\"vertical\":{\"d\":{\"v\":\"middle\",\"e\":true},\"n\":{\"v\":\"middle\"},\"t\":{\"v\":\"middle\"},\"m\":{\"v\":\"middle\"}},\"position\":\"absolute\",\"zIndex\":5},\"group\":{\"groupOrder\":5},\"timeline\":{\"frames\":{\"frame_0\":{\"timeline\":{\"endWithSlide\":false}},\"frame_1\":{\"timeline\":{\"endWithSlide\":false,\"frameLength\":300}},\"frame_999\":{\"transform\":{\"opacity\":0},\"timeline\":{\"start\":9000,\"endWithSlide\":true,\"frameLength\":300}}},\"hoverFilterUsed\":false,\"frameOrder\":[{\"id\":\"frame_0\",\"start\":-1},{\"id\":\"frame_1\",\"start\":0},{\"id\":\"frame_999\",\"start\":9000}],\"split\":false,\"sessionFilterUsed\":false},\"idle\":{\"margin\":{\"d\":{\"v\":[0,0,0,0],\"e\":false},\"n\":{\"v\":[0,0,0,0],\"e\":false},\"t\":{\"v\":[0,0,0,0],\"e\":false},\"m\":{\"v\":[0,0,0,0],\"e\":false}},\"padding\":{\"d\":{\"v\":[0,0,0,0],\"e\":false},\"n\":{\"v\":[0,0,0,0],\"e\":false},\"t\":{\"v\":[0,0,0,0],\"e\":false},\"m\":{\"v\":[0,0,0,0],\"e\":false}},\"fontSize\":{\"n\":{\"v\":\"10\"},\"t\":{\"v\":\"7\"},\"m\":{\"v\":\"4\"}},\"lineHeight\":{\"n\":{\"v\":\"13\"},\"t\":{\"v\":\"9\"},\"m\":{\"v\":\"6\"}},\"backgroundColor\":\"rgba(0, 0, 0, 0.25)\",\"whiteSpace\":{\"d\":{\"v\":\"full\"},\"n\":{\"v\":\"full\"},\"t\":{\"v\":\"full\"},\"m\":{\"v\":\"full\"}}},\"type\":\"shape\"},\"37\":{\"text\":\"\",\"alias\":\"Shape-37\",\"uid\":37,\"toggle\":{\"text\":\"\"},\"size\":{\"width\":{\"d\":{\"v\":\"1733px\",\"e\":true},\"n\":{\"v\":\"924px\"},\"t\":{\"v\":\"504px\",\"e\":true},\"m\":{\"v\":\"429px\",\"e\":true}},\"height\":{\"d\":{\"v\":\"100px\",\"e\":true},\"n\":{\"v\":\"53px\"},\"t\":{\"v\":\"123px\",\"e\":true},\"m\":{\"v\":\"95px\",\"e\":true}},\"originalWidth\":\"300px\",\"originalHeight\":\"180px\",\"aspectRatio\":{\"d\":{\"v\":1.6666666666666667406815349750104360282421112060546875},\"n\":{\"v\":1.6666666666666667406815349750104360282421112060546875},\"t\":{\"v\":1.6666666666666667406815349750104360282421112060546875},\"m\":{\"v\":1.6666666666666667406815349750104360282421112060546875}},\"scaleProportional\":false},\"position\":{\"x\":{\"d\":{\"v\":\"-1140px\",\"e\":true},\"n\":{\"v\":\"-474px\",\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"y\":{\"d\":{\"v\":\"120px\",\"e\":true},\"n\":{\"v\":\"112px\",\"e\":true},\"t\":{\"v\":\"140px\",\"e\":true},\"m\":{\"v\":\"90px\",\"e\":true}},\"horizontal\":{\"d\":{\"v\":\"right\",\"e\":true},\"n\":{\"v\":\"right\"},\"t\":{\"v\":\"right\"},\"m\":{\"v\":\"right\"}},\"vertical\":{\"d\":{\"e\":true}},\"position\":\"absolute\",\"zIndex\":6},\"group\":{\"groupOrder\":6},\"timeline\":{\"frames\":{\"frame_0\":{\"timeline\":{\"endWithSlide\":false}},\"frame_1\":{\"timeline\":{\"endWithSlide\":false,\"frameLength\":300}},\"frame_999\":{\"transform\":{\"opacity\":0},\"timeline\":{\"start\":9000,\"endWithSlide\":true,\"frameLength\":300}}},\"hoverFilterUsed\":false,\"frameOrder\":[{\"id\":\"frame_0\",\"start\":-1},{\"id\":\"frame_1\",\"start\":0},{\"id\":\"frame_999\",\"start\":9000}],\"split\":false,\"sessionFilterUsed\":false},\"idle\":{\"margin\":{\"d\":{\"v\":[0,0,0,0],\"e\":false},\"n\":{\"v\":[0,0,0,0],\"e\":false},\"t\":{\"v\":[0,0,0,0],\"e\":false},\"m\":{\"v\":[0,0,0,0],\"e\":false}},\"padding\":{\"d\":{\"v\":[0,0,0,0],\"e\":false},\"n\":{\"v\":[0,0,0,0],\"e\":false},\"t\":{\"v\":[0,0,0,0],\"e\":false},\"m\":{\"v\":[0,0,0,0],\"e\":false}},\"fontSize\":{\"n\":{\"v\":\"10\"},\"t\":{\"v\":\"7\"},\"m\":{\"v\":\"4\"}},\"lineHeight\":{\"n\":{\"v\":\"13\"},\"t\":{\"v\":\"9\"},\"m\":{\"v\":\"6\"}},\"backgroundColor\":\"rgba(255, 255, 255, 0.4)\",\"borderRadius\":{\"v\":[\"100px\",0,0,\"100px\"],\"e\":true},\"whiteSpace\":{\"d\":{\"v\":\"full\"},\"n\":{\"v\":\"full\"},\"t\":{\"v\":\"full\"},\"m\":{\"v\":\"full\"}}},\"type\":\"shape\"},\"44\":{\"text\":\"\",\"alias\":\"Image-44\",\"uid\":44,\"media\":{\"imageUrl\":\"https:\\/\\/farmchemie.yasithawd.com\\/wp-content\\/uploads\\/2022\\/09\\/IN.png\",\"imageId\":2517,\"loaded\":true,\"imageLib\":\"medialibrary\"},\"toggle\":{\"text\":\"\"},\"size\":{\"width\":{\"d\":{\"v\":\"80px\",\"e\":true},\"n\":{\"v\":\"42px\"},\"t\":{\"v\":\"71px\",\"e\":true},\"m\":{\"v\":\"60px\",\"e\":true}},\"height\":{\"d\":{\"v\":\"80px\",\"e\":true},\"n\":{\"v\":\"42px\"},\"t\":{\"v\":\"71px\",\"e\":true},\"m\":{\"v\":\"60px\",\"e\":true}},\"originalWidth\":545,\"originalHeight\":546,\"aspectRatio\":{\"d\":{\"v\":0.9981684981684981750049701076932251453399658203125},\"n\":{\"v\":0.9981684981684981750049701076932251453399658203125},\"t\":{\"v\":0.9981684981684981750049701076932251453399658203125},\"m\":{\"v\":0.9981684981684981750049701076932251453399658203125}},\"scaleProportional\":true,\"originalSize\":false},\"position\":{\"x\":{\"d\":{\"v\":\"1473px\",\"e\":true},\"n\":{\"v\":\"785px\"},\"t\":{\"v\":\"440px\",\"e\":true},\"m\":{\"v\":\"190px\",\"e\":true}},\"y\":{\"d\":{\"v\":\"130px\",\"e\":true},\"n\":{\"v\":\"69px\"},\"t\":{\"v\":\"170px\",\"e\":true},\"m\":{\"v\":\"110px\",\"e\":true}},\"horizontal\":{\"d\":{\"e\":true}},\"vertical\":{\"d\":{\"e\":true}},\"position\":\"absolute\",\"zIndex\":12},\"group\":{\"groupOrder\":12},\"timeline\":{\"frames\":{\"frame_0\":{\"timeline\":{\"endWithSlide\":false}},\"frame_1\":{\"timeline\":{\"endWithSlide\":false,\"frameLength\":300}},\"frame_999\":{\"transform\":{\"opacity\":0},\"timeline\":{\"start\":9000,\"endWithSlide\":true,\"frameLength\":300}}},\"frameOrder\":[{\"id\":\"frame_0\",\"start\":-1},{\"id\":\"frame_1\",\"start\":0},{\"id\":\"frame_999\",\"start\":9000}],\"hoverFilterUsed\":false,\"split\":false,\"sessionFilterUsed\":false},\"idle\":{\"margin\":{\"d\":{\"v\":[0,0,0,0],\"e\":false},\"n\":{\"v\":[0,0,0,0],\"e\":false},\"t\":{\"v\":[0,0,0,0],\"e\":false},\"m\":{\"v\":[0,0,0,0],\"e\":false}},\"padding\":{\"d\":{\"v\":[0,0,0,0],\"e\":false},\"n\":{\"v\":[0,0,0,0],\"e\":false},\"t\":{\"v\":[0,0,0,0],\"e\":false},\"m\":{\"v\":[0,0,0,0],\"e\":false}},\"display\":\"inline-block\",\"fontSize\":{\"n\":{\"v\":\"10\"},\"t\":{\"v\":\"7\"},\"m\":{\"v\":\"4\"}},\"lineHeight\":{\"n\":{\"v\":\"13\"},\"t\":{\"v\":\"9\"},\"m\":{\"v\":\"6\"}},\"whiteSpace\":{\"d\":{\"v\":\"full\"},\"n\":{\"v\":\"full\"},\"t\":{\"v\":\"full\"},\"m\":{\"v\":\"full\"}}},\"hover\":{\"usehover\":\"true\",\"scaleX\":\"1.2\",\"scaleY\":\"1.2\",\"copied\":true},\"actions\":{\"action\":[{\"action\":\"link\",\"tooltip_event\":\"click\",\"link_help_in\":\"keep\",\"link_open_in\":\"_blank\",\"link_follow\":\"follow\",\"link_type\":\"a\",\"image_link\":\"https:\\/\\/www.instagram.com\\/petstar_fcl\\/\"}]},\"type\":\"image\"},\"45\":{\"text\":\"\",\"alias\":\"Copy image-44\",\"uid\":45,\"media\":{\"imageUrl\":\"https:\\/\\/farmchemie.yasithawd.com\\/wp-content\\/uploads\\/2022\\/09\\/linkedin.png\",\"imageId\":2518,\"loaded\":true,\"imageLib\":\"medialibrary\"},\"toggle\":{\"text\":\"\"},\"size\":{\"width\":{\"d\":{\"v\":\"80px\",\"e\":true},\"n\":{\"v\":\"42px\"},\"t\":{\"v\":\"71px\",\"e\":true},\"m\":{\"v\":\"60px\",\"e\":true}},\"height\":{\"d\":{\"v\":\"80px\",\"e\":true},\"n\":{\"v\":\"42px\"},\"t\":{\"v\":\"71px\",\"e\":true},\"m\":{\"v\":\"60px\",\"e\":true}},\"originalWidth\":1691,\"originalHeight\":1691,\"aspectRatio\":{\"d\":{\"v\":1},\"n\":{\"v\":1},\"t\":{\"v\":1},\"m\":{\"v\":1}},\"scaleProportional\":true,\"originalSize\":false},\"position\":{\"x\":{\"d\":{\"v\":\"1566px\",\"e\":true},\"n\":{\"v\":\"835px\"},\"t\":{\"v\":\"562px\",\"e\":true},\"m\":{\"v\":\"290px\",\"e\":true}},\"y\":{\"d\":{\"v\":\"130px\",\"e\":true},\"n\":{\"v\":\"69px\"},\"t\":{\"v\":\"170px\",\"e\":true},\"m\":{\"v\":\"110px\",\"e\":true}},\"horizontal\":{\"d\":{\"e\":true}},\"vertical\":{\"d\":{\"e\":true}},\"position\":\"absolute\",\"zIndex\":11},\"group\":{\"groupOrder\":11},\"timeline\":{\"frames\":{\"frame_0\":{\"timeline\":{\"endWithSlide\":false}},\"frame_1\":{\"timeline\":{\"endWithSlide\":false,\"frameLength\":300}},\"frame_999\":{\"transform\":{\"opacity\":0},\"timeline\":{\"start\":9000,\"endWithSlide\":true,\"frameLength\":300}}},\"frameOrder\":[{\"id\":\"frame_0\",\"start\":-1},{\"id\":\"frame_1\",\"start\":0},{\"id\":\"frame_999\",\"start\":9000}],\"hoverFilterUsed\":false,\"split\":false,\"sessionFilterUsed\":false},\"idle\":{\"margin\":{\"d\":{\"v\":[0,0,0,0],\"e\":false},\"n\":{\"v\":[0,0,0,0],\"e\":false},\"t\":{\"v\":[0,0,0,0],\"e\":false},\"m\":{\"v\":[0,0,0,0],\"e\":false}},\"padding\":{\"d\":{\"v\":[0,0,0,0],\"e\":false},\"n\":{\"v\":[0,0,0,0],\"e\":false},\"t\":{\"v\":[0,0,0,0],\"e\":false},\"m\":{\"v\":[0,0,0,0],\"e\":false}},\"display\":\"inline-block\",\"fontSize\":{\"n\":{\"v\":\"10\"},\"t\":{\"v\":\"7\"},\"m\":{\"v\":\"4\"}},\"lineHeight\":{\"n\":{\"v\":\"13\"},\"t\":{\"v\":\"9\"},\"m\":{\"v\":\"6\"}},\"whiteSpace\":{\"d\":{\"v\":\"full\"},\"n\":{\"v\":\"full\"},\"t\":{\"v\":\"full\"},\"m\":{\"v\":\"full\"}}},\"hover\":{\"usehover\":\"true\",\"scaleX\":\"1.2\",\"scaleY\":\"1.2\",\"copied\":true},\"actions\":{\"action\":[{\"action\":\"link\",\"tooltip_event\":\"click\",\"link_help_in\":\"keep\",\"link_open_in\":\"_blank\",\"link_follow\":\"follow\",\"link_type\":\"a\",\"image_link\":\"https:\\/\\/www.linkedin.com\\/company\\/farmchemie-private-limited\\/\"}]},\"type\":\"image\"},\"46\":{\"text\":\"\",\"alias\":\"Copy  image-44\",\"uid\":46,\"media\":{\"imageUrl\":\"https:\\/\\/farmchemie.yasithawd.com\\/wp-content\\/uploads\\/2022\\/09\\/FB-150x150.png\",\"imageId\":2516,\"loaded\":true,\"imageLib\":\"medialibrary\"},\"toggle\":{\"text\":\"\"},\"size\":{\"width\":{\"d\":{\"v\":\"80px\",\"e\":true},\"n\":{\"v\":\"42px\"},\"t\":{\"v\":\"71px\",\"e\":true},\"m\":{\"v\":\"60px\",\"e\":true}},\"height\":{\"d\":{\"v\":\"80px\",\"e\":true},\"n\":{\"v\":\"42px\"},\"t\":{\"v\":\"71px\",\"e\":true},\"m\":{\"v\":\"60px\",\"e\":true}},\"originalWidth\":150,\"originalHeight\":150,\"aspectRatio\":{\"d\":{\"v\":1},\"n\":{\"v\":1},\"t\":{\"v\":1},\"m\":{\"v\":1}},\"scaleProportional\":true,\"originalSize\":true},\"position\":{\"x\":{\"d\":{\"v\":\"1380px\",\"e\":true},\"n\":{\"v\":\"736px\"},\"t\":{\"v\":\"320px\",\"e\":true},\"m\":{\"v\":\"90px\",\"e\":true}},\"y\":{\"d\":{\"v\":\"130px\",\"e\":true},\"n\":{\"v\":\"69px\"},\"t\":{\"v\":\"170px\",\"e\":true},\"m\":{\"v\":\"110px\",\"e\":true}},\"horizontal\":{\"d\":{\"e\":true}},\"vertical\":{\"d\":{\"e\":true}},\"position\":\"absolute\",\"zIndex\":13},\"behavior\":{\"imageSourceType\":\"thumbnail\"},\"group\":{\"groupOrder\":13},\"timeline\":{\"frames\":{\"frame_0\":{\"timeline\":{\"endWithSlide\":false}},\"frame_1\":{\"timeline\":{\"endWithSlide\":false,\"frameLength\":300}},\"frame_999\":{\"transform\":{\"opacity\":0},\"timeline\":{\"start\":9000,\"endWithSlide\":true,\"frameLength\":300}}},\"frameOrder\":[{\"id\":\"frame_0\",\"start\":-1},{\"id\":\"frame_1\",\"start\":0},{\"id\":\"frame_999\",\"start\":9000}],\"hoverFilterUsed\":false,\"split\":false,\"sessionFilterUsed\":false},\"idle\":{\"margin\":{\"d\":{\"v\":[0,0,0,0],\"e\":false},\"n\":{\"v\":[0,0,0,0],\"e\":false},\"t\":{\"v\":[0,0,0,0],\"e\":false},\"m\":{\"v\":[0,0,0,0],\"e\":false}},\"padding\":{\"d\":{\"v\":[0,0,0,0],\"e\":false},\"n\":{\"v\":[0,0,0,0],\"e\":false},\"t\":{\"v\":[0,0,0,0],\"e\":false},\"m\":{\"v\":[0,0,0,0],\"e\":false}},\"display\":\"inline-block\",\"fontSize\":{\"n\":{\"v\":\"10\"},\"t\":{\"v\":\"7\"},\"m\":{\"v\":\"4\"}},\"lineHeight\":{\"n\":{\"v\":\"13\"},\"t\":{\"v\":\"9\"},\"m\":{\"v\":\"6\"}},\"whiteSpace\":{\"d\":{\"v\":\"full\"},\"n\":{\"v\":\"full\"},\"t\":{\"v\":\"full\"},\"m\":{\"v\":\"full\"}}},\"hover\":{\"usehover\":\"true\",\"scaleX\":\"1.2\",\"scaleY\":\"1.2\",\"copied\":true},\"actions\":{\"action\":[{\"action\":\"link\",\"tooltip_event\":\"click\",\"link_help_in\":\"keep\",\"link_open_in\":\"_blank\",\"link_follow\":\"follow\",\"link_type\":\"a\",\"image_link\":\"https:\\/\\/www.facebook.com\\/pages\\/Farmchemie-Private-Limited\\/326629104197342?ref=hl\"}]},\"type\":\"image\"},\"48\":{\"text\":\"\",\"alias\":\"Image-48\",\"uid\":48,\"media\":{\"imageUrl\":\"https:\\/\\/farmchemie.yasithawd.com\\/wp-content\\/uploads\\/2022\\/09\\/1-Youtube.png\",\"imageId\":2520,\"loaded\":true},\"toggle\":{\"text\":\"\"},\"size\":{\"width\":{\"d\":{\"v\":\"80px\",\"e\":true},\"n\":{\"v\":\"42px\"},\"t\":{\"v\":\"71px\",\"e\":true},\"m\":{\"v\":\"60px\",\"e\":true}},\"height\":{\"d\":{\"v\":\"56px\",\"e\":true},\"n\":{\"v\":\"29px\"},\"t\":{\"v\":\"49px\",\"e\":true},\"m\":{\"v\":\"42px\",\"e\":true}},\"originalWidth\":1225,\"originalHeight\":852,\"aspectRatio\":{\"d\":{\"v\":1.43779342723004699422517660423181951045989990234375},\"n\":{\"v\":1.43779342723004699422517660423181951045989990234375},\"t\":{\"v\":1.43779342723004699422517660423181951045989990234375},\"m\":{\"v\":1.43779342723004699422517660423181951045989990234375}},\"scaleProportional\":true},\"position\":{\"x\":{\"d\":{\"v\":\"1661px\",\"e\":true},\"n\":{\"v\":\"885px\"},\"t\":{\"v\":\"674px\",\"e\":true},\"m\":{\"v\":\"388px\",\"e\":true}},\"y\":{\"d\":{\"v\":\"143px\",\"e\":true},\"n\":{\"v\":\"76px\"},\"t\":{\"v\":\"182px\",\"e\":true},\"m\":{\"v\":\"119px\",\"e\":true}},\"position\":\"absolute\",\"zIndex\":14},\"group\":{\"groupOrder\":14},\"timeline\":{\"frames\":{\"frame_0\":{\"timeline\":{\"endWithSlide\":false}},\"frame_1\":{\"timeline\":{\"endWithSlide\":false,\"frameLength\":300}},\"frame_999\":{\"transform\":{\"opacity\":0},\"timeline\":{\"start\":9000,\"endWithSlide\":true,\"frameLength\":300}}},\"frameOrder\":[{\"id\":\"frame_0\",\"start\":-1},{\"id\":\"frame_1\",\"start\":0},{\"id\":\"frame_999\",\"start\":9000}],\"hoverFilterUsed\":false,\"split\":false,\"sessionFilterUsed\":false},\"idle\":{\"margin\":{\"d\":{\"v\":[0,0,0,0],\"e\":false},\"n\":{\"v\":[0,0,0,0],\"e\":false},\"t\":{\"v\":[0,0,0,0],\"e\":false},\"m\":{\"v\":[0,0,0,0],\"e\":false}},\"padding\":{\"d\":{\"v\":[0,0,0,0],\"e\":false},\"n\":{\"v\":[0,0,0,0],\"e\":false},\"t\":{\"v\":[0,0,0,0],\"e\":false},\"m\":{\"v\":[0,0,0,0],\"e\":false}},\"fontSize\":{\"n\":{\"v\":\"10\"},\"t\":{\"v\":\"7\"},\"m\":{\"v\":\"4\"}},\"lineHeight\":{\"n\":{\"v\":\"13\"},\"t\":{\"v\":\"9\"},\"m\":{\"v\":\"6\"}},\"whiteSpace\":{\"d\":{\"v\":\"full\"},\"n\":{\"v\":\"full\"},\"t\":{\"v\":\"full\"},\"m\":{\"v\":\"full\"}}},\"hover\":{\"usehover\":\"true\",\"scaleX\":\"1.2\",\"scaleY\":\"1.2\",\"copied\":true},\"actions\":{\"action\":[{\"action\":\"link\",\"tooltip_event\":\"click\",\"link_help_in\":\"keep\",\"link_open_in\":\"_blank\",\"link_follow\":\"follow\",\"link_type\":\"a\",\"image_link\":\"https:\\/\\/www.youtube.com\\/@farmchemieprivatelimited8688\"}]},\"type\":\"image\"},\"top\":{\"uid\":\"top\",\"group\":{\"puid\":-1,\"groupOrder\":9},\"type\":\"zone\",\"alias\":\"TOP ROWS\",\"position\":{\"zIndex\":9,\"position\":\"absolute\"},\"version\":\"6.6.0\"},\"middle\":{\"uid\":\"middle\",\"group\":{\"puid\":-1,\"groupOrder\":8},\"type\":\"zone\",\"alias\":\"MID ROWS\",\"position\":{\"zIndex\":8,\"position\":\"absolute\"},\"version\":\"6.6.0\"},\"bottom\":{\"uid\":\"bottom\",\"group\":{\"puid\":-1,\"groupOrder\":7},\"type\":\"zone\",\"alias\":\"BOTTOM ROWS\",\"position\":{\"zIndex\":7,\"position\":\"absolute\"},\"version\":\"6.6.0\"}}','{\"version\":\"6.6.15\"}'),(13,7,1,'{\"bg\":{\"type\":\"html5\",\"color\":\"rgba(255, 255, 255, 0)\",\"image\":\"https:\\/\\/farmchemie.yasithawd.com\\/wp-content\\/uploads\\/revslider\\/video-media\\/VID-20230717-WA0003_13.jpeg\",\"imageId\":2968,\"imageLib\":\"medialibrary\",\"mpeg\":\"https:\\/\\/farmchemie.yasithawd.com\\/wp-content\\/uploads\\/2023\\/07\\/VID-20230717-WA0003.mp4\",\"video\":{\"dottedOverlaySize\":\"1.5\",\"forceRewind\":false,\"loop\":false,\"pausetimer\":true,\"nextSlideAtEnd\":true},\"videoId\":2965,\"imageWidth\":960,\"imageHeight\":544,\"imageRatio\":1.76470588235294112422479884116910398006439208984375},\"info\":{\"params\":[{\"v\":\"\",\"l\":10},{\"v\":\"\",\"l\":10},{\"v\":\"\",\"l\":10},{\"v\":\"\",\"l\":10},{\"v\":\"\",\"l\":10},{\"v\":\"\",\"l\":10},{\"v\":\"\",\"l\":10},{\"v\":\"\",\"l\":10},{\"v\":\"\",\"l\":10},{\"v\":\"\",\"l\":10}]},\"slideChange\":{\"adpr\":false,\"in\":{\"o\":0},\"out\":{\"a\":false},\"title\":\"*opacity* Fade In\",\"main\":\"basic\",\"group\":\"fade\",\"preset\":\"fade\"}}','{\"0\":{\"text\":\"\",\"alias\":\"Shape-0\",\"uid\":0,\"toggle\":{\"text\":\"\"},\"size\":{\"width\":{\"d\":{\"v\":\"100%\",\"e\":true},\"n\":{\"v\":\"100%\"},\"t\":{\"v\":\"100%\"},\"m\":{\"v\":\"100%\"}},\"height\":{\"d\":{\"v\":\"100%\",\"e\":true},\"n\":{\"v\":\"100%\"},\"t\":{\"v\":\"100%\"},\"m\":{\"v\":\"100%\"}},\"originalWidth\":\"300px\",\"originalHeight\":\"180px\",\"aspectRatio\":{\"d\":{\"v\":1.6666666666666667406815349750104360282421112060546875},\"n\":{\"v\":1.6666666666666667406815349750104360282421112060546875},\"t\":{\"v\":1.6666666666666667406815349750104360282421112060546875},\"m\":{\"v\":1.6666666666666667406815349750104360282421112060546875}},\"scaleProportional\":false},\"position\":{\"x\":{\"d\":{\"e\":true}},\"y\":{\"d\":{\"e\":true},\"t\":{\"e\":true}},\"horizontal\":{\"d\":{\"v\":\"center\",\"e\":true},\"n\":{\"v\":\"center\"},\"t\":{\"v\":\"center\"},\"m\":{\"v\":\"center\"}},\"vertical\":{\"d\":{\"v\":\"middle\",\"e\":true},\"n\":{\"v\":\"middle\"},\"t\":{\"v\":\"middle\"},\"m\":{\"v\":\"middle\"}},\"position\":\"absolute\",\"zIndex\":8},\"group\":{\"groupOrder\":8},\"timeline\":{\"frames\":{\"frame_0\":{\"timeline\":{\"endWithSlide\":false}},\"frame_1\":{\"timeline\":{\"endWithSlide\":false,\"frameLength\":300}},\"frame_999\":{\"transform\":{\"opacity\":0},\"timeline\":{\"start\":9000,\"endWithSlide\":true,\"frameLength\":300}}},\"hoverFilterUsed\":false,\"frameOrder\":[{\"id\":\"frame_0\",\"start\":-1},{\"id\":\"frame_1\",\"start\":0},{\"id\":\"frame_999\",\"start\":9000}],\"split\":false,\"sessionFilterUsed\":false},\"idle\":{\"margin\":{\"d\":{\"v\":[0,0,0,0],\"e\":false},\"n\":{\"v\":[0,0,0,0],\"e\":false},\"t\":{\"v\":[0,0,0,0],\"e\":false},\"m\":{\"v\":[0,0,0,0],\"e\":false}},\"padding\":{\"d\":{\"v\":[0,0,0,0],\"e\":false},\"n\":{\"v\":[0,0,0,0],\"e\":false},\"t\":{\"v\":[0,0,0,0],\"e\":false},\"m\":{\"v\":[0,0,0,0],\"e\":false}},\"fontSize\":{\"n\":{\"v\":\"10\"},\"t\":{\"v\":\"7\"},\"m\":{\"v\":\"4\"}},\"lineHeight\":{\"n\":{\"v\":\"13\"},\"t\":{\"v\":\"9\"},\"m\":{\"v\":\"6\"}},\"backgroundColor\":\"rgba(0, 0, 0, 0.25)\",\"whiteSpace\":{\"d\":{\"v\":\"full\"},\"n\":{\"v\":\"full\"},\"t\":{\"v\":\"full\"},\"m\":{\"v\":\"full\"}}},\"type\":\"shape\"},\"2\":{\"text\":\"FARMCHEMIE offers toll-manufacturing services to numerous world-renowned entities\",\"alias\":\"Text-2\",\"uid\":2,\"toggle\":{\"text\":\"\"},\"size\":{\"width\":{\"t\":{\"v\":\"646px\",\"e\":true},\"m\":{\"v\":\"418px\",\"e\":true}},\"height\":{\"t\":{\"e\":true},\"m\":{\"v\":\"94px\",\"e\":true}},\"minWidth\":{\"d\":{\"e\":true}},\"minHeight\":{\"d\":{\"v\":\"0px\",\"e\":true}},\"aspectRatio\":{\"d\":{\"v\":\"none\"},\"n\":{\"v\":\"none\"},\"t\":{\"v\":\"none\"},\"m\":{\"v\":\"none\"}},\"scaleProportional\":false},\"position\":{\"x\":{\"d\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"y\":{\"d\":{\"v\":\"-60px\",\"e\":true},\"n\":{\"v\":\"-32px\"},\"t\":{\"v\":\"-233px\",\"e\":true},\"m\":{\"v\":\"-237px\",\"e\":true}},\"horizontal\":{\"d\":{\"v\":\"center\",\"e\":true},\"n\":{\"v\":\"center\"},\"t\":{\"v\":\"center\"},\"m\":{\"v\":\"center\"}},\"vertical\":{\"d\":{\"v\":\"middle\",\"e\":true},\"n\":{\"v\":\"middle\"},\"t\":{\"v\":\"middle\"},\"m\":{\"v\":\"middle\"}},\"position\":\"absolute\",\"zIndex\":9},\"group\":{\"groupOrder\":9},\"timeline\":{\"frames\":{\"frame_0\":{\"timeline\":{\"endWithSlide\":false}},\"frame_1\":{\"timeline\":{\"endWithSlide\":false,\"frameLength\":300}},\"frame_999\":{\"transform\":{\"opacity\":0},\"timeline\":{\"start\":9000,\"endWithSlide\":true,\"frameLength\":300}}},\"hoverFilterUsed\":false,\"frameOrder\":[{\"id\":\"frame_0\",\"start\":-1},{\"id\":\"frame_1\",\"start\":0},{\"id\":\"frame_999\",\"start\":9000}],\"split\":false,\"sessionFilterUsed\":false},\"idle\":{\"color\":{\"d\":{\"v\":\"#fff\"},\"n\":{\"v\":\"#fff\"},\"t\":{\"v\":\"#fff\"},\"m\":{\"v\":\"#fff\"}},\"margin\":{\"d\":{\"v\":[0,0,0,0],\"e\":false},\"n\":{\"v\":[0,0,0,0],\"e\":false},\"t\":{\"v\":[0,0,0,0],\"e\":false},\"m\":{\"v\":[0,0,0,0],\"e\":false}},\"padding\":{\"d\":{\"v\":[0,0,0,0],\"e\":false},\"n\":{\"v\":[0,0,0,0],\"e\":false},\"t\":{\"v\":[0,0,0,0],\"e\":false},\"m\":{\"v\":[0,0,0,0],\"e\":false}},\"fontSize\":{\"d\":{\"v\":\"32px\",\"e\":true},\"n\":{\"v\":\"17px\"},\"t\":{\"v\":\"29px\",\"e\":true},\"m\":{\"v\":\"32px\",\"e\":true}},\"fontWeight\":{\"d\":{\"v\":\"900\"},\"n\":{\"v\":\"900\"},\"t\":{\"v\":\"900\"},\"m\":{\"v\":\"900\"}},\"lineHeight\":{\"d\":{\"v\":\"50\"},\"n\":{\"v\":\"26\"},\"t\":{\"v\":\"31px\",\"e\":true},\"m\":{\"v\":\"33px\",\"e\":true}},\"textAlign\":{\"t\":{\"v\":\"center\",\"e\":true},\"m\":{\"v\":\"center\",\"e\":true}},\"borderRadius\":{\"v\":[\"0px\",\"0px\",\"0px\",\"0px\"],\"e\":true},\"textTransform\":\"uppercase\",\"whiteSpace\":{\"d\":{\"v\":\"full\"},\"n\":{\"v\":\"full\"},\"t\":{\"v\":\"full\"},\"m\":{\"v\":\"full\"}}},\"type\":\"text\"},\"3\":{\"text\":\"With fully automated manufacturing facilities from Buhler, we can manufacture following products with customized packing and under your own brand names,\",\"alias\":\"Text-3\",\"uid\":3,\"toggle\":{\"text\":\"\"},\"size\":{\"width\":{\"d\":{\"v\":\"1211px\",\"e\":true},\"n\":{\"v\":\"645px\"},\"t\":{\"v\":\"658px\",\"e\":true},\"m\":{\"v\":\"387px\",\"e\":true}},\"height\":{\"d\":{\"e\":true},\"t\":{\"v\":\"43px\",\"e\":true},\"m\":{\"v\":\"148px\",\"e\":true}},\"minWidth\":{\"d\":{\"e\":true}},\"minHeight\":{\"d\":{\"v\":\"0px\",\"e\":true}},\"aspectRatio\":{\"d\":{\"v\":\"none\"},\"n\":{\"v\":\"none\"},\"t\":{\"v\":\"none\"},\"m\":{\"v\":\"none\"}},\"scaleProportional\":false},\"position\":{\"x\":{\"d\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"y\":{\"d\":{\"v\":\"31px\",\"e\":true},\"n\":{\"v\":\"16px\"},\"t\":{\"v\":\"99px\",\"e\":true},\"m\":{\"v\":\"54px\",\"e\":true}},\"horizontal\":{\"d\":{\"v\":\"center\",\"e\":true},\"n\":{\"v\":\"center\"},\"t\":{\"v\":\"center\"},\"m\":{\"v\":\"center\"}},\"vertical\":{\"d\":{\"v\":\"middle\",\"e\":true},\"n\":{\"v\":\"middle\"},\"t\":{\"v\":\"middle\"},\"m\":{\"v\":\"middle\"}},\"position\":\"absolute\",\"zIndex\":10},\"group\":{\"groupOrder\":10},\"timeline\":{\"frames\":{\"frame_0\":{\"timeline\":{\"endWithSlide\":false}},\"frame_1\":{\"timeline\":{\"endWithSlide\":false,\"frameLength\":300}},\"frame_999\":{\"transform\":{\"opacity\":0},\"timeline\":{\"start\":9000,\"endWithSlide\":true,\"frameLength\":300}}},\"hoverFilterUsed\":false,\"frameOrder\":[{\"id\":\"frame_0\",\"start\":-1},{\"id\":\"frame_1\",\"start\":0},{\"id\":\"frame_999\",\"start\":9000}],\"split\":false,\"sessionFilterUsed\":false},\"idle\":{\"color\":{\"d\":{\"v\":\"#fff\"},\"n\":{\"v\":\"#fff\"},\"t\":{\"v\":\"#fff\"},\"m\":{\"v\":\"#fff\"}},\"margin\":{\"d\":{\"v\":[0,0,0,0],\"e\":false},\"n\":{\"v\":[0,0,0,0],\"e\":false},\"t\":{\"v\":[0,0,0,0],\"e\":false},\"m\":{\"v\":[0,0,0,0],\"e\":false}},\"padding\":{\"d\":{\"v\":[0,0,0,0],\"e\":false},\"n\":{\"v\":[0,0,0,0],\"e\":false},\"t\":{\"v\":[0,0,0,0],\"e\":false},\"m\":{\"v\":[0,0,0,0],\"e\":false}},\"fontFamily\":\"Arial\",\"fontSize\":{\"d\":{\"v\":\"30px\",\"e\":true},\"n\":{\"v\":\"16px\"},\"t\":{\"v\":\"26px\",\"e\":true},\"m\":{\"v\":\"26px\",\"e\":true}},\"fontWeight\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"lineHeight\":{\"d\":{\"v\":\"50\"},\"n\":{\"v\":\"26\"},\"t\":{\"v\":\"37px\",\"e\":true},\"m\":{\"v\":\"41px\",\"e\":true}},\"textAlign\":{\"d\":{\"v\":\"center\",\"e\":true},\"n\":{\"v\":\"center\"},\"t\":{\"v\":\"center\"},\"m\":{\"v\":\"center\",\"e\":true}},\"borderRadius\":{\"v\":[\"0px\",\"0px\",\"0px\",\"0px\"],\"e\":true},\"whiteSpace\":{\"d\":{\"v\":\"full\"},\"n\":{\"v\":\"full\"},\"t\":{\"v\":\"full\"},\"m\":{\"v\":\"full\"}}},\"type\":\"text\"},\"5\":{\"text\":\"<i class=\\\"fa-solid fa-angle-down\\\"><\\/i>\",\"alias\":\"Text-5\",\"uid\":5,\"toggle\":{\"text\":\"\"},\"size\":{\"width\":{\"t\":{\"e\":true},\"m\":{\"e\":true}},\"height\":{\"t\":{\"e\":true},\"m\":{\"e\":true}},\"maxWidth\":{\"t\":{\"e\":true},\"m\":{\"e\":true}},\"maxHeight\":{\"t\":{\"e\":true},\"m\":{\"e\":true}},\"minWidth\":{\"d\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"minHeight\":{\"d\":{\"v\":\"0px\",\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"aspectRatio\":{\"d\":{\"v\":\"none\"},\"n\":{\"v\":\"none\"},\"t\":{\"v\":\"none\"},\"m\":{\"v\":\"none\"}},\"scaleProportional\":false},\"position\":{\"x\":{\"d\":{\"e\":true}},\"y\":{\"d\":{\"v\":\"102px\",\"e\":true},\"n\":{\"v\":\"54px\"},\"t\":{\"v\":\"41px\"},\"m\":{\"v\":\"25px\"}},\"horizontal\":{\"d\":{\"v\":\"center\",\"e\":true},\"n\":{\"v\":\"center\"},\"t\":{\"v\":\"center\"},\"m\":{\"v\":\"center\"}},\"vertical\":{\"d\":{\"v\":\"bottom\",\"e\":true},\"n\":{\"v\":\"bottom\"},\"t\":{\"v\":\"bottom\"},\"m\":{\"v\":\"bottom\"}},\"position\":\"absolute\",\"zIndex\":11},\"group\":{\"groupOrder\":11},\"timeline\":{\"frames\":{\"frame_0\":{\"transform\":{\"x\":{\"t\":{\"v\":\"0px\",\"e\":true},\"m\":{\"v\":\"0px\",\"e\":true}},\"y\":{\"t\":{\"v\":\"0px\",\"e\":true},\"m\":{\"v\":\"0px\",\"e\":true}}},\"mask\":{\"x\":{\"t\":{\"v\":\"0px\",\"e\":true},\"m\":{\"v\":\"0px\",\"e\":true}},\"y\":{\"t\":{\"v\":\"0px\",\"e\":true},\"m\":{\"v\":\"0px\",\"e\":true}}},\"timeline\":{\"endWithSlide\":false},\"chars\":{\"x\":{\"t\":{\"v\":\"0px\",\"e\":true},\"m\":{\"v\":\"0px\",\"e\":true}},\"y\":{\"t\":{\"v\":\"0px\",\"e\":true},\"m\":{\"v\":\"0px\",\"e\":true}}},\"words\":{\"x\":{\"t\":{\"v\":\"0px\",\"e\":true},\"m\":{\"v\":\"0px\",\"e\":true}},\"y\":{\"t\":{\"v\":\"0px\",\"e\":true},\"m\":{\"v\":\"0px\",\"e\":true}}},\"lines\":{\"x\":{\"t\":{\"v\":\"0px\",\"e\":true},\"m\":{\"v\":\"0px\",\"e\":true}},\"y\":{\"t\":{\"v\":\"0px\",\"e\":true},\"m\":{\"v\":\"0px\",\"e\":true}}}},\"frame_1\":{\"transform\":{\"x\":{\"t\":{\"v\":\"0px\",\"e\":true},\"m\":{\"v\":\"0px\",\"e\":true}},\"y\":{\"t\":{\"v\":\"0px\",\"e\":true},\"m\":{\"v\":\"0px\",\"e\":true}}},\"mask\":{\"x\":{\"t\":{\"v\":\"0px\",\"e\":true},\"m\":{\"v\":\"0px\",\"e\":true}},\"y\":{\"t\":{\"v\":\"0px\",\"e\":true},\"m\":{\"v\":\"0px\",\"e\":true}}},\"timeline\":{\"endWithSlide\":false,\"frameLength\":300},\"chars\":{\"x\":{\"t\":{\"v\":\"0px\",\"e\":true},\"m\":{\"v\":\"0px\",\"e\":true}},\"y\":{\"t\":{\"v\":\"0px\",\"e\":true},\"m\":{\"v\":\"0px\",\"e\":true}}},\"words\":{\"x\":{\"t\":{\"v\":\"0px\",\"e\":true},\"m\":{\"v\":\"0px\",\"e\":true}},\"y\":{\"t\":{\"v\":\"0px\",\"e\":true},\"m\":{\"v\":\"0px\",\"e\":true}}},\"lines\":{\"x\":{\"t\":{\"v\":\"0px\",\"e\":true},\"m\":{\"v\":\"0px\",\"e\":true}},\"y\":{\"t\":{\"v\":\"0px\",\"e\":true},\"m\":{\"v\":\"0px\",\"e\":true}}}},\"frame_999\":{\"transform\":{\"x\":{\"t\":{\"e\":true},\"m\":{\"e\":true}},\"y\":{\"t\":{\"e\":true},\"m\":{\"e\":true}},\"opacity\":0},\"mask\":{\"x\":{\"t\":{\"e\":true},\"m\":{\"e\":true}},\"y\":{\"t\":{\"e\":true},\"m\":{\"e\":true}}},\"timeline\":{\"start\":9000,\"endWithSlide\":true,\"frameLength\":300},\"chars\":{\"x\":{\"t\":{\"e\":true},\"m\":{\"e\":true}},\"y\":{\"t\":{\"e\":true},\"m\":{\"e\":true}}},\"words\":{\"x\":{\"t\":{\"e\":true},\"m\":{\"e\":true}},\"y\":{\"t\":{\"e\":true},\"m\":{\"e\":true}}},\"lines\":{\"x\":{\"t\":{\"e\":true},\"m\":{\"e\":true}},\"y\":{\"t\":{\"e\":true},\"m\":{\"e\":true}}}}},\"loop\":{\"use\":true,\"yoyo_move\":true,\"frame_999\":{\"y\":\"25px\"}},\"hoverFilterUsed\":false,\"frameOrder\":[{\"id\":\"frame_0\",\"start\":-1},{\"id\":\"frame_1\",\"start\":0},{\"id\":\"frame_999\",\"start\":9000}],\"split\":false,\"sessionFilterUsed\":false},\"idle\":{\"color\":{\"d\":{\"v\":\"#fff\"},\"n\":{\"v\":\"#fff\"},\"t\":{\"v\":\"#fff\"},\"m\":{\"v\":\"#fff\"}},\"margin\":{\"d\":{\"v\":[0,0,0,0],\"e\":false},\"n\":{\"v\":[0,0,0,0],\"e\":false},\"t\":{\"v\":[0,0,0,0],\"e\":false},\"m\":{\"v\":[0,0,0,0],\"e\":false}},\"padding\":{\"d\":{\"v\":[0,0,0,0],\"e\":false},\"n\":{\"v\":[0,0,0,0],\"e\":false},\"t\":{\"v\":[0,0,0,0],\"e\":true},\"m\":{\"v\":[0,0,0,0],\"e\":true}},\"fontSize\":{\"d\":{\"v\":\"120px\",\"e\":true},\"n\":{\"v\":\"64px\"},\"t\":{\"v\":\"74px\",\"e\":true},\"m\":{\"v\":\"66px\",\"e\":true}},\"fontWeight\":{\"d\":{\"v\":\"900\"},\"n\":{\"v\":\"900\"},\"t\":{\"v\":\"900\"},\"m\":{\"v\":\"900\"}},\"letterSpacing\":{\"t\":{\"e\":true},\"m\":{\"e\":true}},\"lineHeight\":{\"d\":{\"v\":\"50\"},\"n\":{\"v\":\"26\"},\"t\":{\"v\":\"29\",\"e\":true},\"m\":{\"e\":true}},\"borderRadius\":{\"v\":[\"0px\",\"0px\",\"0px\",\"0px\"],\"e\":true},\"textTransform\":\"uppercase\",\"whiteSpace\":{\"d\":{\"v\":\"full\"},\"n\":{\"v\":\"full\"},\"t\":{\"v\":\"full\"},\"m\":{\"v\":\"full\"}}},\"type\":\"text\"},\"top\":{\"uid\":\"top\",\"group\":{\"puid\":-1,\"groupOrder\":7},\"type\":\"zone\",\"alias\":\"TOP ROWS\",\"position\":{\"zIndex\":7,\"position\":\"absolute\"},\"version\":\"6.6.0\"},\"middle\":{\"uid\":\"middle\",\"group\":{\"puid\":-1,\"groupOrder\":6},\"type\":\"zone\",\"alias\":\"MID ROWS\",\"position\":{\"zIndex\":6,\"position\":\"absolute\"},\"version\":\"6.6.0\"},\"bottom\":{\"uid\":\"bottom\",\"group\":{\"puid\":-1,\"groupOrder\":5},\"type\":\"zone\",\"alias\":\"BOTTOM ROWS\",\"position\":{\"zIndex\":5,\"position\":\"absolute\"},\"version\":\"6.6.0\"}}','{\"version\":\"6.6.15\"}');
/*!40000 ALTER TABLE `wplf_revslider_slides` ENABLE KEYS */;
UNLOCK TABLES;

-- Dumped table `wplf_revslider_slides` with 13 row(s)
--

--
-- Table structure for table `wplf_wc_order_product_lookup`
--

DROP TABLE IF EXISTS `wplf_wc_order_product_lookup`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `wplf_wc_order_product_lookup` (
  `order_item_id` bigint(20) unsigned NOT NULL,
  `order_id` bigint(20) unsigned NOT NULL,
  `product_id` bigint(20) unsigned NOT NULL,
  `variation_id` bigint(20) unsigned NOT NULL,
  `customer_id` bigint(20) unsigned DEFAULT NULL,
  `date_created` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `product_qty` int(11) NOT NULL,
  `product_net_revenue` double NOT NULL DEFAULT 0,
  `product_gross_revenue` double NOT NULL DEFAULT 0,
  `coupon_amount` double NOT NULL DEFAULT 0,
  `tax_amount` double NOT NULL DEFAULT 0,
  `shipping_amount` double NOT NULL DEFAULT 0,
  `shipping_tax_amount` double NOT NULL DEFAULT 0,
  PRIMARY KEY (`order_item_id`),
  KEY `order_id` (`order_id`),
  KEY `product_id` (`product_id`),
  KEY `customer_id` (`customer_id`),
  KEY `date_created` (`date_created`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wplf_wc_order_product_lookup`
--

LOCK TABLES `wplf_wc_order_product_lookup` WRITE;
/*!40000 ALTER TABLE `wplf_wc_order_product_lookup` DISABLE KEYS */;
/*!40000 ALTER TABLE `wplf_wc_order_product_lookup` ENABLE KEYS */;
UNLOCK TABLES;

-- Dumped table `wplf_wc_order_product_lookup` with 0 row(s)
--

--
-- Table structure for table `wplf_wc_order_addresses`
--

DROP TABLE IF EXISTS `wplf_wc_order_addresses`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `wplf_wc_order_addresses` (
  `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `order_id` bigint(20) unsigned NOT NULL,
  `address_type` varchar(20) DEFAULT NULL,
  `first_name` text DEFAULT NULL,
  `last_name` text DEFAULT NULL,
  `company` text DEFAULT NULL,
  `address_1` text DEFAULT NULL,
  `address_2` text DEFAULT NULL,
  `city` text DEFAULT NULL,
  `state` text DEFAULT NULL,
  `postcode` text DEFAULT NULL,
  `country` text DEFAULT NULL,
  `email` varchar(320) DEFAULT NULL,
  `phone` varchar(100) DEFAULT NULL,
  PRIMARY KEY (`id`),
  UNIQUE KEY `address_type_order_id` (`address_type`,`order_id`),
  KEY `order_id` (`order_id`),
  KEY `email` (`email`(250)),
  KEY `phone` (`phone`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wplf_wc_order_addresses`
--

LOCK TABLES `wplf_wc_order_addresses` WRITE;
/*!40000 ALTER TABLE `wplf_wc_order_addresses` DISABLE KEYS */;
/*!40000 ALTER TABLE `wplf_wc_order_addresses` ENABLE KEYS */;
UNLOCK TABLES;

-- Dumped table `wplf_wc_order_addresses` with 0 row(s)
--

--
-- Table structure for table `wplf_terms`
--

DROP TABLE IF EXISTS `wplf_terms`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `wplf_terms` (
  `term_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `name` varchar(200) NOT NULL DEFAULT '',
  `slug` varchar(200) NOT NULL DEFAULT '',
  `term_group` bigint(10) NOT NULL DEFAULT 0,
  PRIMARY KEY (`term_id`),
  KEY `slug` (`slug`(191)),
  KEY `name` (`name`(191))
) ENGINE=MyISAM AUTO_INCREMENT=188 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wplf_terms`
--

LOCK TABLES `wplf_terms` WRITE;
/*!40000 ALTER TABLE `wplf_terms` DISABLE KEYS */;
INSERT INTO `wplf_terms` VALUES (1,'Uncategorized','uncategorized',0),(2,'simple','simple',0),(3,'grouped','grouped',0),(4,'variable','variable',0),(5,'external','external',0),(6,'exclude-from-search','exclude-from-search',0),(7,'exclude-from-catalog','exclude-from-catalog',0),(8,'featured','featured',0),(9,'outofstock','outofstock',0),(10,'rated-1','rated-1',0),(11,'rated-2','rated-2',0),(12,'rated-3','rated-3',0),(13,'rated-4','rated-4',0),(14,'rated-5','rated-5',0),(15,'Uncategorized','uncategorized',0),(16,'main menu','main-menu',0),(17,'main','main',0),(132,'Vaccine','vaccine',0),(131,'Supplements','supplements',0),(23,'Misc','misc',0),(24,'Long','long',0),(25,'Facebook','facebook',0),(26,'leftfootermenu','leftfootermenu',0),(27,'rightfootermenu','rightfootermenu',0),(63,'Large Animal','large-animal',0),(64,'Pet Care','pet-care',0),(65,'Poultry','poultry',0),(181,'Enzymes','enzymes',0),(182,'Mycotoxin Management','mycotoxin-management',0),(183,'Organic Minerals','organic-minerals',0),(184,'Premix','premix',0),(180,'Concentrates','concentrates',0),(74,'Feed Additives','feed-additives',0),(185,'Presevatives','presevatives',0),(186,'Probiotics','probiotics',0),(187,'News &amp; Events','news-events',0),(102,'Dog','dog',0),(114,'Cat','cat',0),(121,'Exotic Bird','exotic-bird',0),(129,'sidebarcatmenu1','sidebarcatmenu1',0),(133,'Mycoplasma Antimicrobials','mycoplasma-antimicrobials',0),(134,'Dewormer','dewormer',0),(135,'Antibacterials','antibacterials',0),(136,'Disinfectant','disinfectant',0),(137,'Coccidiocidal','coccidiocidal',0),(138,'Acidifiers','acidifiers',0),(139,'Endo - Ecto Parasiticides','endo-ecto-parasiticides',0),(140,'Antidiarreheoal','antidiarreheoal',0),(141,'Antiprotozoals','antiprotozoals',0),(142,'Antimastitis Treatment','antimastitis-treatment',0),(143,'Injectable Antiprotozoals','injectable-antiprotozoals',0),(144,'Antibloat','antibloat',0),(145,'Bypass Fat','bypass-fat',0),(146,'Injectables','injectables',0),(147,'Topical Wound Care','topical-wound-care',0),(148,'Intra-uterine Antimicrobial','intra-uterine-antimicrobial',0),(149,'Pet Food','pet-food',0),(150,'Heart disease treatment','heart-disease-treatment',0),(151,'Powder','powder',0),(152,'Liquid','liquid',0),(153,'Tablets','tablets',0),(154,'Ecto Parasiticides','ecto-parasiticides',0),(155,'CSR','csr',0),(156,'Vaccine','vaccine',0),(157,'Mycoplasma Antimicrobials','mycoplasma-antimicrobials',0),(158,'Supplements Liquid','supplements-liquid',0),(159,'Supplements Powder','supplements-powder',0),(160,'Supplements Tablets','supplements-tablets',0),(161,'Dewormer','dewormer',0),(162,'Antibacterials','antibacterials',0),(163,'Disinfectant','disinfectant',0),(164,'Coccidiocidal','coccidiocidal',0),(165,'Acidifiers','acidifiers',0),(166,'Endo - Ecto Parasiticides','endo-ecto-parasiticides',0),(167,'Antidiarreheoal','antidiarreheoal',0),(168,'Antiprotozoals','antiprotozoals',0),(169,'Antimastitis Treatment','antimastitis-treatment',0),(170,'Injectable Antiprotozoals','injectable-antiprotozoals',0),(171,'Antibloat','antibloat',0),(172,'Bypass Fat','bypass-fat',0),(173,'Injectables','injectables',0),(174,'Ecto Parasiticides','ecto-parasiticides',0),(175,'Topical Wound Care','topical-wound-care',0),(176,'Intra-uterine Antimicrobial','intra-uterine-antimicrobial',0),(177,'Pet Food','pet-food',0),(178,'Heart disease treatment','heart-disease-treatment',0),(179,'Hyperthyroidism Treatment','hyperthyroidism-treatment',0);
/*!40000 ALTER TABLE `wplf_terms` ENABLE KEYS */;
UNLOCK TABLES;

-- Dumped table `wplf_terms` with 87 row(s)
--

--
-- Table structure for table `wplf_actionscheduler_claims`
--

DROP TABLE IF EXISTS `wplf_actionscheduler_claims`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `wplf_actionscheduler_claims` (
  `claim_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `date_created_gmt` datetime DEFAULT '0000-00-00 00:00:00',
  PRIMARY KEY (`claim_id`),
  KEY `date_created_gmt` (`date_created_gmt`)
) ENGINE=MyISAM AUTO_INCREMENT=43916 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wplf_actionscheduler_claims`
--

LOCK TABLES `wplf_actionscheduler_claims` WRITE;
/*!40000 ALTER TABLE `wplf_actionscheduler_claims` DISABLE KEYS */;
/*!40000 ALTER TABLE `wplf_actionscheduler_claims` ENABLE KEYS */;
UNLOCK TABLES;

-- Dumped table `wplf_actionscheduler_claims` with 0 row(s)
--

--
-- Table structure for table `wplf_woocommerce_log`
--

DROP TABLE IF EXISTS `wplf_woocommerce_log`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `wplf_woocommerce_log` (
  `log_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `timestamp` datetime NOT NULL,
  `level` smallint(4) NOT NULL,
  `source` varchar(200) NOT NULL,
  `message` longtext NOT NULL,
  `context` longtext DEFAULT NULL,
  PRIMARY KEY (`log_id`),
  KEY `level` (`level`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wplf_woocommerce_log`
--

LOCK TABLES `wplf_woocommerce_log` WRITE;
/*!40000 ALTER TABLE `wplf_woocommerce_log` DISABLE KEYS */;
/*!40000 ALTER TABLE `wplf_woocommerce_log` ENABLE KEYS */;
UNLOCK TABLES;

-- Dumped table `wplf_woocommerce_log` with 0 row(s)
--

--
-- Table structure for table `wplf_wc_product_attributes_lookup`
--

DROP TABLE IF EXISTS `wplf_wc_product_attributes_lookup`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `wplf_wc_product_attributes_lookup` (
  `product_id` bigint(20) NOT NULL,
  `product_or_parent_id` bigint(20) NOT NULL,
  `taxonomy` varchar(32) NOT NULL,
  `term_id` bigint(20) NOT NULL,
  `is_variation_attribute` tinyint(1) NOT NULL,
  `in_stock` tinyint(1) NOT NULL,
  PRIMARY KEY (`product_or_parent_id`,`term_id`,`product_id`,`taxonomy`),
  KEY `is_variation_attribute_term_id` (`is_variation_attribute`,`term_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wplf_wc_product_attributes_lookup`
--

LOCK TABLES `wplf_wc_product_attributes_lookup` WRITE;
/*!40000 ALTER TABLE `wplf_wc_product_attributes_lookup` DISABLE KEYS */;
INSERT INTO `wplf_wc_product_attributes_lookup` VALUES (3355,3355,'pa_product-type',162,0,1),(3361,3361,'pa_product-type',162,0,1),(3352,3352,'pa_product-type',162,0,1),(3362,3362,'pa_product-type',157,0,1),(3309,3309,'pa_product-type',158,0,1),(2774,2774,'pa_product-type',158,0,1),(3316,3316,'pa_product-type',158,0,1),(3324,3324,'pa_product-type',159,0,1),(3331,3331,'pa_product-type',159,0,1),(3366,3366,'pa_product-type',161,0,1),(3373,3373,'pa_product-type',166,0,1),(3370,3370,'pa_product-type',166,0,1),(3432,3432,'pa_product-type',173,0,1),(3433,3433,'pa_product-type',173,0,1),(3434,3434,'pa_product-type',173,0,1),(3435,3435,'pa_product-type',173,0,1),(3436,3436,'pa_product-type',173,0,1),(3437,3437,'pa_product-type',173,0,1),(3438,3438,'pa_product-type',173,0,1),(3439,3439,'pa_product-type',173,0,1),(3441,3441,'pa_product-type',159,0,1),(3442,3442,'pa_product-type',159,0,1),(3447,3447,'pa_product-type',160,0,1),(3450,3450,'pa_product-type',160,0,1),(3453,3453,'pa_product-type',160,0,1),(3547,3547,'pa_product-type',160,0,1),(3548,3548,'pa_product-type',160,0,1),(3549,3549,'pa_product-type',175,0,1),(3550,3550,'pa_product-type',175,0,1),(3551,3551,'pa_product-type',178,0,1),(3552,3552,'pa_product-type',156,0,1),(3365,3365,'pa_product-type',179,0,1),(3553,3553,'pa_product-type',180,0,1),(3554,3554,'pa_product-type',180,0,1),(3556,3556,'pa_product-type',180,0,1),(3557,3557,'pa_product-type',180,0,1),(3580,3580,'pa_product-type',180,0,1),(3589,3589,'pa_product-type',180,0,1),(3591,3591,'pa_product-type',180,0,1),(3592,3592,'pa_product-type',180,0,1),(3593,3593,'pa_product-type',181,0,1),(3594,3594,'pa_product-type',181,0,1),(3595,3595,'pa_product-type',181,0,1),(3596,3596,'pa_product-type',181,0,1),(3597,3597,'pa_product-type',181,0,1),(3598,3598,'pa_product-type',182,0,1),(3599,3599,'pa_product-type',182,0,1),(3600,3600,'pa_product-type',183,0,1),(3601,3601,'pa_product-type',183,0,1),(3602,3602,'pa_product-type',184,0,1),(3603,3603,'pa_product-type',184,0,1),(3604,3604,'pa_product-type',184,0,1),(3605,3605,'pa_product-type',184,0,1),(3607,3607,'pa_product-type',185,0,1),(3608,3608,'pa_product-type',185,0,1),(3609,3609,'pa_product-type',186,0,1),(3611,3611,'pa_product-type',167,0,1),(3612,3612,'pa_product-type',169,0,1),(3614,3614,'pa_product-type',169,0,1),(3615,3615,'pa_product-type',161,0,1),(3616,3616,'pa_product-type',161,0,1),(3617,3617,'pa_product-type',161,0,1),(3618,3618,'pa_product-type',161,0,1),(3619,3619,'pa_product-type',161,0,1),(3620,3620,'pa_product-type',161,0,1),(3621,3621,'pa_product-type',161,0,1),(3622,3622,'pa_product-type',161,0,1),(3623,3623,'pa_product-type',161,0,1),(3624,3624,'pa_product-type',173,0,1),(3625,3625,'pa_product-type',173,0,1),(3626,3626,'pa_product-type',173,0,1),(3627,3627,'pa_product-type',176,0,1),(3628,3628,'pa_product-type',158,0,1),(3629,3629,'pa_product-type',159,0,1),(3630,3630,'pa_product-type',162,0,1),(3631,3631,'pa_product-type',162,0,1),(3632,3632,'pa_product-type',162,0,1),(3633,3633,'pa_product-type',162,0,1),(3634,3634,'pa_product-type',162,0,1),(3635,3635,'pa_product-type',162,0,1),(3636,3636,'pa_product-type',162,0,1),(3637,3637,'pa_product-type',164,0,1),(3638,3638,'pa_product-type',164,0,1),(3639,3639,'pa_product-type',161,0,1),(3640,3640,'pa_product-type',161,0,1),(3642,3642,'pa_product-type',157,0,1),(3643,3643,'pa_product-type',157,0,1),(3644,3644,'pa_product-type',157,0,1),(3645,3645,'pa_product-type',157,0,1),(3646,3646,'pa_product-type',158,0,1),(3647,3647,'pa_product-type',158,0,1),(3648,3648,'pa_product-type',158,0,1),(3649,3649,'pa_product-type',159,0,1),(3650,3650,'pa_product-type',159,0,1),(3651,3651,'pa_product-type',156,0,1),(3652,3652,'pa_product-type',156,0,1),(3653,3653,'pa_product-type',156,0,1),(3654,3654,'pa_product-type',156,0,1),(3655,3655,'pa_product-type',156,0,1),(3656,3656,'pa_product-type',156,0,1),(3658,3658,'pa_product-type',156,0,1),(3659,3659,'pa_product-type',156,0,1),(3661,3661,'pa_product-type',156,0,1),(3662,3662,'pa_product-type',156,0,1),(3664,3664,'pa_product-type',156,0,1),(3666,3666,'pa_product-type',156,0,1),(3670,3670,'pa_product-type',156,0,1),(3671,3671,'pa_product-type',156,0,1),(3672,3672,'pa_product-type',156,0,1),(3673,3673,'pa_product-type',156,0,1),(3731,3731,'pa_product-type',156,0,1);
/*!40000 ALTER TABLE `wplf_wc_product_attributes_lookup` ENABLE KEYS */;
UNLOCK TABLES;

-- Dumped table `wplf_wc_product_attributes_lookup` with 111 row(s)
--

--
-- Table structure for table `wplf_woocommerce_downloadable_product_permissions`
--

DROP TABLE IF EXISTS `wplf_woocommerce_downloadable_product_permissions`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `wplf_woocommerce_downloadable_product_permissions` (
  `permission_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `download_id` varchar(36) NOT NULL,
  `product_id` bigint(20) unsigned NOT NULL,
  `order_id` bigint(20) unsigned NOT NULL DEFAULT 0,
  `order_key` varchar(200) NOT NULL,
  `user_email` varchar(200) NOT NULL,
  `user_id` bigint(20) unsigned DEFAULT NULL,
  `downloads_remaining` varchar(9) DEFAULT NULL,
  `access_granted` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `access_expires` datetime DEFAULT NULL,
  `download_count` bigint(20) unsigned NOT NULL DEFAULT 0,
  PRIMARY KEY (`permission_id`),
  KEY `download_order_key_product` (`product_id`,`order_id`,`order_key`(16),`download_id`),
  KEY `download_order_product` (`download_id`,`order_id`,`product_id`),
  KEY `order_id` (`order_id`),
  KEY `user_order_remaining_expires` (`user_id`,`order_id`,`downloads_remaining`,`access_expires`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wplf_woocommerce_downloadable_product_permissions`
--

LOCK TABLES `wplf_woocommerce_downloadable_product_permissions` WRITE;
/*!40000 ALTER TABLE `wplf_woocommerce_downloadable_product_permissions` DISABLE KEYS */;
/*!40000 ALTER TABLE `wplf_woocommerce_downloadable_product_permissions` ENABLE KEYS */;
UNLOCK TABLES;

-- Dumped table `wplf_woocommerce_downloadable_product_permissions` with 0 row(s)
--

--
-- Table structure for table `wplf_woocommerce_shipping_zones`
--

DROP TABLE IF EXISTS `wplf_woocommerce_shipping_zones`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `wplf_woocommerce_shipping_zones` (
  `zone_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `zone_name` varchar(200) NOT NULL,
  `zone_order` bigint(20) unsigned NOT NULL,
  PRIMARY KEY (`zone_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wplf_woocommerce_shipping_zones`
--

LOCK TABLES `wplf_woocommerce_shipping_zones` WRITE;
/*!40000 ALTER TABLE `wplf_woocommerce_shipping_zones` DISABLE KEYS */;
/*!40000 ALTER TABLE `wplf_woocommerce_shipping_zones` ENABLE KEYS */;
UNLOCK TABLES;

-- Dumped table `wplf_woocommerce_shipping_zones` with 0 row(s)
--

--
-- Table structure for table `wplf_wc_webhooks`
--

DROP TABLE IF EXISTS `wplf_wc_webhooks`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `wplf_wc_webhooks` (
  `webhook_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `status` varchar(200) NOT NULL,
  `name` text NOT NULL,
  `user_id` bigint(20) unsigned NOT NULL,
  `delivery_url` text NOT NULL,
  `secret` text NOT NULL,
  `topic` varchar(200) NOT NULL,
  `date_created` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `date_created_gmt` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `date_modified` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `date_modified_gmt` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `api_version` smallint(4) NOT NULL,
  `failure_count` smallint(10) NOT NULL DEFAULT 0,
  `pending_delivery` tinyint(1) NOT NULL DEFAULT 0,
  PRIMARY KEY (`webhook_id`),
  KEY `user_id` (`user_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wplf_wc_webhooks`
--

LOCK TABLES `wplf_wc_webhooks` WRITE;
/*!40000 ALTER TABLE `wplf_wc_webhooks` DISABLE KEYS */;
/*!40000 ALTER TABLE `wplf_wc_webhooks` ENABLE KEYS */;
UNLOCK TABLES;

-- Dumped table `wplf_wc_webhooks` with 0 row(s)
--

--
-- Table structure for table `wplf_revslider_css`
--

DROP TABLE IF EXISTS `wplf_revslider_css`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `wplf_revslider_css` (
  `id` int(9) NOT NULL AUTO_INCREMENT,
  `handle` text NOT NULL,
  `settings` longtext DEFAULT NULL,
  `hover` longtext DEFAULT NULL,
  `advanced` longtext DEFAULT NULL,
  `params` longtext NOT NULL,
  PRIMARY KEY (`id`),
  KEY `handle_index` (`handle`(64))
) ENGINE=MyISAM AUTO_INCREMENT=110 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wplf_revslider_css`
--

LOCK TABLES `wplf_revslider_css` WRITE;
/*!40000 ALTER TABLE `wplf_revslider_css` DISABLE KEYS */;
INSERT INTO `wplf_revslider_css` VALUES (1,'.tp-caption.medium_grey','{\"translated\":5,\"type\":\"text\",\"version\":\"4\"}','null','{\"idle\":{\"position\":\"absolute\",\"text-shadow\":\"0px 2px 5px rgba(0, 0, 0, 0.5)\",\"white-space\":\"nowrap\"},\"hover\":\"\"}','{\"color\":\"#fff\",\"font-weight\":\"700\",\"font-size\":\"20px\",\"line-height\":\"20px\",\"font-family\":\"Arial\",\"padding\":\"2px 4px\",\"margin\":\"0px\",\"border-width\":\"0px\",\"border-style\":\"none\",\"background-color\":\"#888\"}'),(2,'.tp-caption.small_text','{\"translated\":5,\"type\":\"text\",\"version\":\"4\"}','null','{\"idle\":{\"position\":\"absolute\",\"text-shadow\":\"0px 2px 5px rgba(0, 0, 0, 0.5)\",\"white-space\":\"nowrap\"},\"hover\":\"\"}','{\"color\":\"#fff\",\"font-weight\":\"700\",\"font-size\":\"14px\",\"line-height\":\"20px\",\"font-family\":\"Arial\",\"margin\":\"0px\",\"border-width\":\"0px\",\"border-style\":\"none\"}'),(3,'.tp-caption.medium_text','{\"translated\":5,\"type\":\"text\",\"version\":\"4\"}','null','{\"idle\":{\"position\":\"absolute\",\"text-shadow\":\"0px 2px 5px rgba(0, 0, 0, 0.5)\",\"white-space\":\"nowrap\"},\"hover\":\"\"}','{\"color\":\"#fff\",\"font-weight\":\"700\",\"font-size\":\"20px\",\"line-height\":\"20px\",\"font-family\":\"Arial\",\"margin\":\"0px\",\"border-width\":\"0px\",\"border-style\":\"none\"}'),(4,'.tp-caption.large_text','{\"translated\":5,\"type\":\"text\",\"version\":\"4\"}','null','{\"idle\":{\"position\":\"absolute\",\"text-shadow\":\"0px 2px 5px rgba(0, 0, 0, 0.5)\",\"white-space\":\"nowrap\"},\"hover\":\"\"}','{\"color\":\"#fff\",\"font-weight\":\"700\",\"font-size\":\"40px\",\"line-height\":\"40px\",\"font-family\":\"Arial\",\"margin\":\"0px\",\"border-width\":\"0px\",\"border-style\":\"none\"}'),(5,'.tp-caption.very_large_text','{\"translated\":5,\"type\":\"text\",\"version\":\"4\"}','null','{\"idle\":{\"position\":\"absolute\",\"text-shadow\":\"0px 2px 5px rgba(0, 0, 0, 0.5)\",\"white-space\":\"nowrap\",\"letter-spacing\":\"-2px\"},\"hover\":\"\"}','{\"color\":\"#fff\",\"font-weight\":\"700\",\"font-size\":\"60px\",\"line-height\":\"60px\",\"font-family\":\"Arial\",\"margin\":\"0px\",\"border-width\":\"0px\",\"border-style\":\"none\"}'),(6,'.tp-caption.very_big_white','{\"translated\":5,\"type\":\"text\",\"version\":\"4\"}','null','{\"idle\":{\"position\":\"absolute\",\"text-shadow\":\"none\",\"white-space\":\"nowrap\",\"padding-top\":\"1px\"},\"hover\":\"\"}','{\"color\":\"#fff\",\"font-weight\":\"800\",\"font-size\":\"60px\",\"line-height\":\"60px\",\"font-family\":\"Arial\",\"margin\":\"0px\",\"border-width\":\"0px\",\"border-style\":\"none\",\"padding\":\"0px 4px\",\"background-color\":\"#000\"}'),(7,'.tp-caption.very_big_black','{\"translated\":5,\"type\":\"text\",\"version\":\"4\"}','null','{\"idle\":{\"position\":\"absolute\",\"text-shadow\":\"none\",\"white-space\":\"nowrap\",\"padding-top\":\"1px\"},\"hover\":\"\"}','{\"color\":\"#000\",\"font-weight\":\"700\",\"font-size\":\"60px\",\"line-height\":\"60px\",\"font-family\":\"Arial\",\"margin\":\"0px\",\"border-width\":\"0px\",\"border-style\":\"none\",\"padding\":\"0px 4px\",\"background-color\":\"#fff\"}'),(8,'.tp-caption.modern_medium_fat','{\"translated\":5,\"type\":\"text\",\"version\":\"4\"}','null','{\"idle\":{\"position\":\"absolute\",\"text-shadow\":\"none\",\"white-space\":\"nowrap\"},\"hover\":\"\"}','{\"color\":\"#000\",\"font-weight\":\"800\",\"font-size\":\"24px\",\"line-height\":\"20px\",\"font-family\":\"\\\"Open Sans\\\", sans-serif\",\"margin\":\"0px\",\"border-width\":\"0px\",\"border-style\":\"none\"}'),(9,'.tp-caption.modern_medium_fat_white','{\"translated\":5,\"type\":\"text\",\"version\":\"4\"}','null','{\"idle\":{\"position\":\"absolute\",\"text-shadow\":\"none\",\"white-space\":\"nowrap\"},\"hover\":\"\"}','{\"color\":\"#fff\",\"font-weight\":\"800\",\"font-size\":\"24px\",\"line-height\":\"20px\",\"font-family\":\"\\\"Open Sans\\\", sans-serif\",\"margin\":\"0px\",\"border-width\":\"0px\",\"border-style\":\"none\"}'),(10,'.tp-caption.modern_medium_light','{\"translated\":5,\"type\":\"text\",\"version\":\"4\"}','null','{\"idle\":{\"position\":\"absolute\",\"text-shadow\":\"none\",\"white-space\":\"nowrap\"},\"hover\":\"\"}','{\"color\":\"#000\",\"font-weight\":\"300\",\"font-size\":\"24px\",\"line-height\":\"20px\",\"font-family\":\"\\\"Open Sans\\\", sans-serif\",\"margin\":\"0px\",\"border-width\":\"0px\",\"border-style\":\"none\"}'),(11,'.tp-caption.modern_big_bluebg','{\"translated\":5,\"type\":\"text\",\"version\":\"4\"}','null','{\"idle\":{\"position\":\"absolute\",\"text-shadow\":\"none\",\"letter-spacing\":\"0\"},\"hover\":\"\"}','{\"color\":\"#fff\",\"font-weight\":\"800\",\"font-size\":\"30px\",\"line-height\":\"36px\",\"font-family\":\"\\\"Open Sans\\\", sans-serif\",\"padding\":\"3px 10px\",\"margin\":\"0px\",\"border-width\":\"0px\",\"border-style\":\"none\",\"background-color\":\"#4e5b6c\"}'),(12,'.tp-caption.modern_big_redbg','{\"translated\":5,\"type\":\"text\",\"version\":\"4\"}','null','{\"idle\":{\"position\":\"absolute\",\"text-shadow\":\"none\",\"padding-top\":\"1px\",\"letter-spacing\":\"0\"},\"hover\":\"\"}','{\"color\":\"#fff\",\"font-weight\":\"300\",\"font-size\":\"30px\",\"line-height\":\"36px\",\"font-family\":\"\\\"Open Sans\\\", sans-serif\",\"padding\":\"3px 10px\",\"margin\":\"0px\",\"border-width\":\"0px\",\"border-style\":\"none\",\"background-color\":\"#de543e\"}'),(13,'.tp-caption.modern_small_text_dark','{\"translated\":5,\"type\":\"text\",\"version\":\"4\"}','null','{\"idle\":{\"position\":\"absolute\",\"text-shadow\":\"none\",\"white-space\":\"nowrap\"},\"hover\":\"\"}','{\"color\":\"#555\",\"font-size\":\"14px\",\"line-height\":\"22px\",\"font-family\":\"Arial\",\"margin\":\"0px\",\"border-width\":\"0px\",\"border-style\":\"none\"}'),(14,'.tp-caption.boxshadow','{\"translated\":5,\"type\":\"text\",\"version\":\"4\"}','null','{\"idle\":{\"-moz-box-shadow\":\"0px 0px 20px rgba(0, 0, 0, 0.5)\",\"-webkit-box-shadow\":\"0px 0px 20px rgba(0, 0, 0, 0.5)\",\"box-shadow\":\"0px 0px 20px rgba(0, 0, 0, 0.5)\"},\"hover\":\"\"}','[]'),(15,'.tp-caption.black','{\"translated\":5,\"type\":\"text\",\"version\":\"4\"}','null','{\"idle\":{\"text-shadow\":\"none\"},\"hover\":\"\"}','{\"color\":\"#000\"}'),(16,'.tp-caption.noshadow','{\"translated\":5,\"type\":\"text\",\"version\":\"4\"}','null','{\"idle\":{\"text-shadow\":\"none\"},\"hover\":\"\"}','[]'),(17,'.tp-caption.thinheadline_dark','{\"translated\":5,\"type\":\"text\",\"version\":\"4\"}','null','{\"idle\":{\"position\":\"absolute\",\"text-shadow\":\"none\"},\"hover\":\"\"}','{\"color\":\"rgba(0,0,0,0.85)\",\"font-weight\":\"300\",\"font-size\":\"30px\",\"line-height\":\"30px\",\"font-family\":\"\\\"Open Sans\\\"\",\"background-color\":\"transparent\"}'),(18,'.tp-caption.thintext_dark','{\"translated\":5,\"type\":\"text\",\"version\":\"4\"}','null','{\"idle\":{\"position\":\"absolute\",\"text-shadow\":\"none\"},\"hover\":\"\"}','{\"color\":\"rgba(0,0,0,0.85)\",\"font-weight\":\"300\",\"font-size\":\"16px\",\"line-height\":\"26px\",\"font-family\":\"\\\"Open Sans\\\"\",\"background-color\":\"transparent\"}'),(19,'.tp-caption.largeblackbg','{\"translated\":5,\"type\":\"text\",\"version\":\"4\"}','null','{\"idle\":{\"position\":\"absolute\",\"text-shadow\":\"none\",\"-webkit-border-radius\":\"0px\",\"-moz-border-radius\":\"0px\"},\"hover\":\"\"}','{\"color\":\"#fff\",\"font-weight\":\"300\",\"font-size\":\"50px\",\"line-height\":\"70px\",\"font-family\":\"\\\"Open Sans\\\"\",\"background-color\":\"#000\",\"padding\":\"0px 20px\",\"border-radius\":\"0px\"}'),(20,'.tp-caption.largepinkbg','{\"translated\":5,\"type\":\"text\",\"version\":\"4\"}','null','{\"idle\":{\"position\":\"absolute\",\"text-shadow\":\"none\",\"-webkit-border-radius\":\"0px\",\"-moz-border-radius\":\"0px\"},\"hover\":\"\"}','{\"color\":\"#fff\",\"font-weight\":\"300\",\"font-size\":\"50px\",\"line-height\":\"70px\",\"font-family\":\"\\\"Open Sans\\\"\",\"background-color\":\"#db4360\",\"padding\":\"0px 20px\",\"border-radius\":\"0px\"}'),(21,'.tp-caption.largewhitebg','{\"translated\":5,\"type\":\"text\",\"version\":\"4\"}','null','{\"idle\":{\"position\":\"absolute\",\"text-shadow\":\"none\",\"-webkit-border-radius\":\"0px\",\"-moz-border-radius\":\"0px\"},\"hover\":\"\"}','{\"color\":\"#000\",\"font-weight\":\"300\",\"font-size\":\"50px\",\"line-height\":\"70px\",\"font-family\":\"\\\"Open Sans\\\"\",\"background-color\":\"#fff\",\"padding\":\"0px 20px\",\"border-radius\":\"0px\"}'),(22,'.tp-caption.largegreenbg','{\"translated\":5,\"type\":\"text\",\"version\":\"4\"}','null','{\"idle\":{\"position\":\"absolute\",\"text-shadow\":\"none\",\"-webkit-border-radius\":\"0px\",\"-moz-border-radius\":\"0px\"},\"hover\":\"\"}','{\"color\":\"#fff\",\"font-weight\":\"300\",\"font-size\":\"50px\",\"line-height\":\"70px\",\"font-family\":\"\\\"Open Sans\\\"\",\"background-color\":\"#67ae73\",\"padding\":\"0px 20px\",\"border-radius\":\"0px\"}'),(23,'.tp-caption.excerpt','{\"translated\":5,\"type\":\"text\",\"version\":\"4\"}','null','{\"idle\":{\"text-shadow\":\"none\",\"letter-spacing\":\"-1.5px\",\"width\":\"150px\",\"white-space\":\"normal !important\",\"height\":\"auto\"},\"hover\":\"\"}','{\"font-size\":\"36px\",\"line-height\":\"36px\",\"font-weight\":\"700\",\"font-family\":\"Arial\",\"color\":\"#ffffff\",\"text-decoration\":\"none\",\"background-color\":\"rgba(0, 0, 0, 1)\",\"margin\":\"0px\",\"padding\":\"1px 4px 0px 4px\",\"border-width\":\"0px\",\"border-color\":\"rgb(255, 255, 255)\",\"border-style\":\"none\"}'),(24,'.tp-caption.large_bold_grey','{\"translated\":5,\"type\":\"text\",\"version\":\"4\"}','null','{\"idle\":{\"text-shadow\":\"none\"},\"hover\":\"\"}','{\"font-size\":\"60px\",\"line-height\":\"60px\",\"font-weight\":\"800\",\"font-family\":\"\\\"Open Sans\\\"\",\"color\":\"rgb(102, 102, 102)\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"margin\":\"0px\",\"padding\":\"1px 4px 0px\",\"border-width\":\"0px\",\"border-color\":\"rgb(255, 214, 88)\",\"border-style\":\"none\"}'),(25,'.tp-caption.medium_thin_grey','{\"translated\":5,\"type\":\"text\",\"version\":\"4\"}','null','{\"idle\":{\"text-shadow\":\"none\"},\"hover\":\"\"}','{\"font-size\":\"34px\",\"line-height\":\"30px\",\"font-weight\":\"300\",\"font-family\":\"\\\"Open Sans\\\"\",\"color\":\"rgb(102, 102, 102)\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"padding\":\"1px 4px 0px\",\"margin\":\"0px\",\"border-width\":\"0px\",\"border-color\":\"rgb(255, 214, 88)\",\"border-style\":\"none\"}'),(26,'.tp-caption.small_thin_grey','{\"translated\":5,\"type\":\"text\",\"version\":\"4\"}','null','{\"idle\":{\"text-shadow\":\"none\"},\"hover\":\"\"}','{\"font-size\":\"18px\",\"line-height\":\"26px\",\"font-weight\":\"300\",\"font-family\":\"\\\"Open Sans\\\"\",\"color\":\"rgb(117, 117, 117)\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"padding\":\"1px 4px 0px\",\"margin\":\"0px\",\"border-width\":\"0px\",\"border-color\":\"rgb(255, 214, 88)\",\"border-style\":\"none\"}'),(27,'.tp-caption.lightgrey_divider','{\"translated\":5,\"type\":\"text\",\"version\":\"4\"}','null','{\"idle\":{\"width\":\"370px\",\"height\":\"3px\",\"background-position\":\"initial initial\",\"background-repeat\":\"initial initial\"},\"hover\":\"\"}','{\"text-decoration\":\"none\",\"background-color\":\"rgba(235, 235, 235, 1)\",\"border-width\":\"0px\",\"border-color\":\"rgb(34, 34, 34)\",\"border-style\":\"none\"}'),(28,'.tp-caption.large_bold_darkblue','{\"translated\":5,\"type\":\"text\",\"version\":\"4\"}','null','{\"idle\":[],\"hover\":\"\"}','{\"font-size\":\"58px\",\"line-height\":\"60px\",\"font-weight\":\"800\",\"font-family\":\"\\\"Open Sans\\\"\",\"color\":\"rgb(52, 73, 94)\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"border-width\":\"0px\",\"border-color\":\"rgb(255, 214, 88)\",\"border-style\":\"none\"}'),(29,'.tp-caption.medium_bg_darkblue','{\"translated\":5,\"type\":\"text\",\"version\":\"4\"}','null','{\"idle\":[],\"hover\":\"\"}','{\"font-size\":\"20px\",\"line-height\":\"20px\",\"font-weight\":\"800\",\"font-family\":\"\\\"Open Sans\\\"\",\"color\":\"rgb(255, 255, 255)\",\"text-decoration\":\"none\",\"background-color\":\"rgb(52, 73, 94)\",\"padding\":\"10px\",\"border-width\":\"0px\",\"border-color\":\"rgb(255, 214, 88)\",\"border-style\":\"none\"}'),(30,'.tp-caption.medium_bold_red','{\"translated\":5,\"type\":\"text\",\"version\":\"4\"}','null','{\"idle\":[],\"hover\":\"\"}','{\"font-size\":\"24px\",\"line-height\":\"30px\",\"font-weight\":\"800\",\"font-family\":\"\\\"Open Sans\\\"\",\"color\":\"rgb(227, 58, 12)\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"padding\":\"0px\",\"border-width\":\"0px\",\"border-color\":\"rgb(255, 214, 88)\",\"border-style\":\"none\"}'),(31,'.tp-caption.medium_light_red','{\"translated\":5,\"type\":\"text\",\"version\":\"4\"}','null','{\"idle\":[],\"hover\":\"\"}','{\"font-size\":\"21px\",\"line-height\":\"26px\",\"font-weight\":\"300\",\"font-family\":\"\\\"Open Sans\\\"\",\"color\":\"rgb(227, 58, 12)\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"padding\":\"0px\",\"border-width\":\"0px\",\"border-color\":\"rgb(255, 214, 88)\",\"border-style\":\"none\"}'),(32,'.tp-caption.medium_bg_red','{\"translated\":5,\"type\":\"text\",\"version\":\"4\"}','null','{\"idle\":[],\"hover\":\"\"}','{\"font-size\":\"20px\",\"line-height\":\"20px\",\"font-weight\":\"800\",\"font-family\":\"\\\"Open Sans\\\"\",\"color\":\"rgb(255, 255, 255)\",\"text-decoration\":\"none\",\"background-color\":\"rgb(227, 58, 12)\",\"padding\":\"10px\",\"border-width\":\"0px\",\"border-color\":\"rgb(255, 214, 88)\",\"border-style\":\"none\"}'),(33,'.tp-caption.medium_bold_orange','{\"translated\":5,\"type\":\"text\",\"version\":\"4\"}','null','{\"idle\":[],\"hover\":\"\"}','{\"font-size\":\"24px\",\"line-height\":\"30px\",\"font-weight\":\"800\",\"font-family\":\"\\\"Open Sans\\\"\",\"color\":\"rgb(243, 156, 18)\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"border-width\":\"0px\",\"border-color\":\"rgb(255, 214, 88)\",\"border-style\":\"none\"}'),(34,'.tp-caption.medium_bg_orange','{\"translated\":5,\"type\":\"text\",\"version\":\"4\"}','null','{\"idle\":[],\"hover\":\"\"}','{\"font-size\":\"20px\",\"line-height\":\"20px\",\"font-weight\":\"800\",\"font-family\":\"\\\"Open Sans\\\"\",\"color\":\"rgb(255, 255, 255)\",\"text-decoration\":\"none\",\"background-color\":\"rgb(243, 156, 18)\",\"padding\":\"10px\",\"border-width\":\"0px\",\"border-color\":\"rgb(255, 214, 88)\",\"border-style\":\"none\"}'),(35,'.tp-caption.grassfloor','{\"translated\":5,\"type\":\"text\",\"version\":\"4\"}','null','{\"idle\":{\"width\":\"4000px\",\"height\":\"150px\"},\"hover\":\"\"}','{\"text-decoration\":\"none\",\"background-color\":\"rgba(160, 179, 151, 1)\",\"border-width\":\"0px\",\"border-color\":\"rgb(34, 34, 34)\",\"border-style\":\"none\"}'),(36,'.tp-caption.large_bold_white','{\"translated\":5,\"type\":\"text\",\"version\":\"4\"}','null','{\"idle\":[],\"hover\":\"\"}','{\"font-size\":\"58px\",\"line-height\":\"60px\",\"font-weight\":\"800\",\"font-family\":\"\\\"Open Sans\\\"\",\"color\":\"rgb(255, 255, 255)\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"border-width\":\"0px\",\"border-color\":\"rgb(255, 214, 88)\",\"border-style\":\"none\"}'),(37,'.tp-caption.medium_light_white','{\"translated\":5,\"type\":\"text\",\"version\":\"4\"}','null','{\"idle\":[],\"hover\":\"\"}','{\"font-size\":\"30px\",\"line-height\":\"36px\",\"font-weight\":\"300\",\"font-family\":\"\\\"Open Sans\\\"\",\"color\":\"rgb(255, 255, 255)\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"padding\":\"0px\",\"border-width\":\"0px\",\"border-color\":\"rgb(255, 214, 88)\",\"border-style\":\"none\"}'),(38,'.tp-caption.mediumlarge_light_white','{\"translated\":5,\"type\":\"text\",\"version\":\"4\"}','null','{\"idle\":[],\"hover\":\"\"}','{\"font-size\":\"34px\",\"line-height\":\"40px\",\"font-weight\":\"300\",\"font-family\":\"\\\"Open Sans\\\"\",\"color\":\"rgb(255, 255, 255)\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"padding\":\"0px\",\"border-width\":\"0px\",\"border-color\":\"rgb(255, 214, 88)\",\"border-style\":\"none\"}'),(39,'.tp-caption.mediumlarge_light_white_center','{\"translated\":5,\"type\":\"text\",\"version\":\"4\"}','null','{\"idle\":[],\"hover\":\"\"}','{\"font-size\":\"34px\",\"line-height\":\"40px\",\"font-weight\":\"300\",\"font-family\":\"\\\"Open Sans\\\"\",\"color\":\"#ffffff\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"padding\":\"0px 0px 0px 0px\",\"text-align\":\"center\",\"border-width\":\"0px\",\"border-color\":\"rgb(255, 214, 88)\",\"border-style\":\"none\"}'),(40,'.tp-caption.medium_bg_asbestos','{\"translated\":5,\"type\":\"text\",\"version\":\"4\"}','null','{\"idle\":[],\"hover\":\"\"}','{\"font-size\":\"20px\",\"line-height\":\"20px\",\"font-weight\":\"800\",\"font-family\":\"\\\"Open Sans\\\"\",\"color\":\"rgb(255, 255, 255)\",\"text-decoration\":\"none\",\"background-color\":\"rgb(127, 140, 141)\",\"padding\":\"10px\",\"border-width\":\"0px\",\"border-color\":\"rgb(255, 214, 88)\",\"border-style\":\"none\"}'),(41,'.tp-caption.medium_light_black','{\"translated\":5,\"type\":\"text\",\"version\":\"4\"}','null','{\"idle\":[],\"hover\":\"\"}','{\"font-size\":\"30px\",\"line-height\":\"36px\",\"font-weight\":\"300\",\"font-family\":\"\\\"Open Sans\\\"\",\"color\":\"rgb(0, 0, 0)\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"padding\":\"0px\",\"border-width\":\"0px\",\"border-color\":\"rgb(255, 214, 88)\",\"border-style\":\"none\"}'),(42,'.tp-caption.large_bold_black','{\"translated\":5,\"type\":\"text\",\"version\":\"4\"}','null','{\"idle\":[],\"hover\":\"\"}','{\"font-size\":\"58px\",\"line-height\":\"60px\",\"font-weight\":\"800\",\"font-family\":\"\\\"Open Sans\\\"\",\"color\":\"rgb(0, 0, 0)\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"border-width\":\"0px\",\"border-color\":\"rgb(255, 214, 88)\",\"border-style\":\"none\"}'),(43,'.tp-caption.mediumlarge_light_darkblue','{\"translated\":5,\"type\":\"text\",\"version\":\"4\"}','null','{\"idle\":[],\"hover\":\"\"}','{\"font-size\":\"34px\",\"line-height\":\"40px\",\"font-weight\":\"300\",\"font-family\":\"\\\"Open Sans\\\"\",\"color\":\"rgb(52, 73, 94)\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"padding\":\"0px\",\"border-width\":\"0px\",\"border-color\":\"rgb(255, 214, 88)\",\"border-style\":\"none\"}'),(44,'.tp-caption.small_light_white','{\"translated\":5,\"type\":\"text\",\"version\":\"4\"}','null','{\"idle\":[],\"hover\":\"\"}','{\"font-size\":\"17px\",\"line-height\":\"28px\",\"font-weight\":\"300\",\"font-family\":\"\\\"Open Sans\\\"\",\"color\":\"rgb(255, 255, 255)\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"padding\":\"0px\",\"border-width\":\"0px\",\"border-color\":\"rgb(255, 214, 88)\",\"border-style\":\"none\"}'),(45,'.tp-caption.roundedimage','{\"translated\":5,\"type\":\"text\",\"version\":\"4\"}','null','{\"idle\":[],\"hover\":\"\"}','{\"border-width\":\"0px\",\"border-color\":\"rgb(34, 34, 34)\",\"border-style\":\"none\"}'),(46,'.tp-caption.large_bg_black','{\"translated\":5,\"type\":\"text\",\"version\":\"4\"}','null','{\"idle\":[],\"hover\":\"\"}','{\"font-size\":\"40px\",\"line-height\":\"40px\",\"font-weight\":\"800\",\"font-family\":\"\\\"Open Sans\\\"\",\"color\":\"rgb(255, 255, 255)\",\"text-decoration\":\"none\",\"background-color\":\"rgb(0, 0, 0)\",\"padding\":\"10px 20px 15px\",\"border-width\":\"0px\",\"border-color\":\"rgb(255, 214, 88)\",\"border-style\":\"none\"}'),(47,'.tp-caption.mediumwhitebg','{\"translated\":5,\"type\":\"text\",\"version\":\"4\"}','null','{\"idle\":{\"text-shadow\":\"none\"},\"hover\":\"\"}','{\"font-size\":\"30px\",\"line-height\":\"30px\",\"font-weight\":\"300\",\"font-family\":\"\\\"Open Sans\\\"\",\"color\":\"rgb(0, 0, 0)\",\"text-decoration\":\"none\",\"background-color\":\"rgb(255, 255, 255)\",\"padding\":\"5px 15px 10px\",\"border-width\":\"0px\",\"border-color\":\"rgb(0, 0, 0)\",\"border-style\":\"none\"}'),(48,'.tp-caption.MarkerDisplay','{\"translated\":5,\"type\":\"text\",\"version\":\"5.0\"}','{\"color\":\"#ff0000\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"1\",\"border-color\":\"transparent\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0px\",\"0px\",\"0px\",\"0px\"],\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\"}','{\"idle\":{\"text-shadow\":\"none\"},\"hover\":\"\"}','{\"font-style\":\"normal\",\"font-family\":\"Permanent Marker\",\"padding\":\"0px 0px 0px 0px\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"1\",\"border-color\":\"#000000\",\"border-style\":\"none\",\"border-width\":\"0px\",\"border-radius\":\"0px 0px 0px 0px\",\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\"}'),(49,'.tp-caption.Restaurant-Display','{\"hover\":\"false\",\"version\":\"5.0\",\"translated\":\"5\"}','{\"color\":\"#ffffff\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"0\",\"border-color\":\"transparent\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\"}','{\"idle\":\"\",\"hover\":\"\"}','{\"color\":\"#ffffff\",\"font-size\":\"120px\",\"line-height\":\"120px\",\"font-weight\":\"700\",\"font-style\":\"normal\",\"font-family\":\"Roboto\",\"padding\":[\"0\",\"0\",\"0\",\"0\"],\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"1\",\"border-color\":\"transparent\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\"}'),(50,'.tp-caption.Restaurant-Cursive','{\"hover\":\"false\",\"version\":\"5.0\",\"translated\":\"5\"}','{\"color\":\"#ffffff\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"0\",\"border-color\":\"transparent\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\"}','{\"idle\":{\"letter-spacing\":\"2px\"},\"hover\":\"\"}','{\"color\":\"#ffffff\",\"font-size\":\"30px\",\"line-height\":\"30px\",\"font-weight\":\"400\",\"font-style\":\"normal\",\"font-family\":\"Nothing you could do\",\"padding\":[\"0\",\"0\",\"0\",\"0\"],\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"1\",\"border-color\":\"transparent\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\"}'),(51,'.tp-caption.Restaurant-ScrollDownText','{\"hover\":\"false\",\"version\":\"5.0\",\"translated\":\"5\"}','{\"color\":\"#ffffff\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"0\",\"border-color\":\"transparent\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\"}','{\"idle\":{\"letter-spacing\":\"2px\"},\"hover\":\"\"}','{\"color\":\"#ffffff\",\"font-size\":\"17px\",\"line-height\":\"17px\",\"font-weight\":\"400\",\"font-style\":\"normal\",\"font-family\":\"Roboto\",\"padding\":[\"0\",\"0\",\"0\",\"0\"],\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"1\",\"border-color\":\"transparent\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\"}'),(52,'.tp-caption.Restaurant-Description','{\"hover\":\"false\",\"version\":\"5.0\",\"translated\":\"5\"}','{\"color\":\"#ffffff\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"0\",\"border-color\":\"transparent\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\"}','{\"idle\":{\"letter-spacing\":\"3px\"},\"hover\":\"\"}','{\"color\":\"#ffffff\",\"font-size\":\"20px\",\"line-height\":\"30px\",\"font-weight\":\"300\",\"font-style\":\"normal\",\"font-family\":\"Roboto\",\"padding\":[\"0\",\"0\",\"0\",\"0\"],\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"1\",\"border-color\":\"transparent\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\"}'),(53,'.tp-caption.Restaurant-Price','{\"hover\":\"false\",\"version\":\"5.0\",\"translated\":\"5\"}','{\"color\":\"#ffffff\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"0\",\"border-color\":\"transparent\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\"}','{\"idle\":{\"letter-spacing\":\"3px\"},\"hover\":\"\"}','{\"color\":\"#ffffff\",\"font-size\":\"30px\",\"line-height\":\"30px\",\"font-weight\":\"300\",\"font-style\":\"normal\",\"font-family\":\"Roboto\",\"padding\":[\"0\",\"0\",\"0\",\"0\"],\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"1\",\"border-color\":\"transparent\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\"}'),(54,'.tp-caption.Restaurant-Menuitem','{\"hover\":\"false\",\"type\":\"text\",\"version\":\"5.0\",\"translated\":\"5\"}','{\"color\":\"#000000\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"#ffffff\",\"background-transparency\":\"1\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"pointer_events\":\"auto\",\"css_cursor\":\"pointer\",\"speed\":\"500\",\"easing\":\"power2.inOut\"}','{\"idle\":{\"letter-spacing\":\"2px\"},\"hover\":\"\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"font-size\":\"17px\",\"line-height\":\"17px\",\"font-weight\":\"400\",\"font-style\":\"normal\",\"font-family\":\"Roboto\",\"padding\":[\"10px\",\"30px\",\"10px\",\"30px\"],\"text-decoration\":\"none\",\"text-align\":\"left\",\"background-color\":\"#000000\",\"background-transparency\":\"1\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\",\"corner_left\":\"nothing\",\"corner_right\":\"nothing\",\"parallax\":\"-\"}'),(55,'.tp-caption.Furniture-LogoText','{\"hover\":\"false\",\"version\":\"5.0\",\"translated\":\"5\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"0\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"speed\":\"0\",\"easing\":\"none\"}','{\"idle\":{\"text-shadow\":\"none\"},\"hover\":\"\"}','{\"color\":\"#e6cfa3\",\"color-transparency\":\"1\",\"font-size\":\"160px\",\"line-height\":\"150px\",\"font-weight\":\"300\",\"font-style\":\"normal\",\"font-family\":\"\\\"Raleway\\\"\",\"padding\":[\"0\",\"0\",\"0\",\"0\"],\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"1\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\"}'),(56,'.tp-caption.Furniture-Plus','{\"hover\":\"false\",\"version\":\"5.0\",\"translated\":\"5\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"#000000\",\"background-transparency\":\"1\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"30px\",\"30px\",\"30px\",\"30px\"],\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"speed\":\"0.5\",\"easing\":\"none\"}','{\"idle\":{\"text-shadow\":\"none\",\"box-shadow\":\"rgba(0,0,0,0.1) 0 1px 3px\"},\"hover\":\"\"}','{\"color\":\"#e6cfa3\",\"color-transparency\":\"1\",\"font-size\":\"20\",\"line-height\":\"20px\",\"font-weight\":\"400\",\"font-style\":\"normal\",\"font-family\":\"\\\"Raleway\\\"\",\"padding\":[\"6px\",\"7px\",\"4px\",\"7px\"],\"text-decoration\":\"none\",\"background-color\":\"#ffffff\",\"background-transparency\":\"1\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"30px\",\"30px\",\"30px\",\"30px\"],\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\"}'),(57,'.tp-caption.Furniture-Title','{\"hover\":\"false\",\"version\":\"5.0\",\"translated\":\"5\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"0\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"speed\":\"0\",\"easing\":\"none\"}','{\"idle\":{\"text-shadow\":\"none\",\"letter-spacing\":\"3px\"},\"hover\":\"\"}','{\"color\":\"#000000\",\"color-transparency\":\"1\",\"font-size\":\"20px\",\"line-height\":\"20px\",\"font-weight\":\"700\",\"font-style\":\"normal\",\"font-family\":\"\\\"Raleway\\\"\",\"padding\":[\"0\",\"0\",\"0\",\"0\"],\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"1\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\"}'),(58,'.tp-caption.Furniture-Subtitle','{\"hover\":\"false\",\"version\":\"5.0\",\"translated\":\"5\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"0\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"speed\":\"0\",\"easing\":\"none\"}','{\"idle\":{\"text-shadow\":\"none\"},\"hover\":\"\"}','{\"color\":\"#000000\",\"color-transparency\":\"1\",\"font-size\":\"17px\",\"line-height\":\"20px\",\"font-weight\":\"300\",\"font-style\":\"normal\",\"font-family\":\"\\\"Raleway\\\"\",\"padding\":[\"0\",\"0\",\"0\",\"0\"],\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"1\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\"}'),(59,'.tp-caption.Gym-Display','{\"hover\":\"false\",\"version\":\"5.0\",\"translated\":\"5\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"0\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"speed\":\"0\",\"easing\":\"none\"}','{\"idle\":\"\",\"hover\":\"\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"font-size\":\"80px\",\"line-height\":\"70px\",\"font-weight\":\"900\",\"font-style\":\"normal\",\"font-family\":\"Raleway\",\"padding\":[\"0\",\"0\",\"0\",\"0\"],\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"1\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\"}'),(60,'.tp-caption.Gym-Subline','{\"hover\":\"false\",\"version\":\"5.0\",\"translated\":\"5\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"0\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"speed\":\"0\",\"easing\":\"none\"}','{\"idle\":{\"letter-spacing\":\"5px\"},\"hover\":\"\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"font-size\":\"30px\",\"line-height\":\"30px\",\"font-weight\":\"100\",\"font-style\":\"normal\",\"font-family\":\"Raleway\",\"padding\":[\"0\",\"0\",\"0\",\"0\"],\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"1\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\"}'),(61,'.tp-caption.Gym-SmallText','{\"hover\":\"false\",\"version\":\"5.0\",\"translated\":\"5\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"0\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"speed\":\"0\",\"easing\":\"none\"}','{\"idle\":{\"text-shadow\":\"none\"},\"hover\":\"\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"font-size\":\"17px\",\"line-height\":\"22\",\"font-weight\":\"300\",\"font-style\":\"normal\",\"font-family\":\"Raleway\",\"padding\":[\"0\",\"0\",\"0\",\"0\"],\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"1\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\"}'),(62,'.tp-caption.Fashion-SmallText','{\"hover\":\"false\",\"version\":\"5.0\",\"translated\":\"5\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"0\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"speed\":\"0\",\"easing\":\"none\"}','{\"idle\":{\"letter-spacing\":\"2px\"},\"hover\":\"\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"font-size\":\"12px\",\"line-height\":\"20px\",\"font-weight\":\"600\",\"font-style\":\"normal\",\"font-family\":\"Raleway\",\"padding\":[\"0\",\"0\",\"0\",\"0\"],\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"1\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\"}'),(63,'.tp-caption.Fashion-BigDisplay','{\"hover\":\"false\",\"version\":\"5.0\",\"translated\":\"5\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"0\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"speed\":\"0\",\"easing\":\"none\"}','{\"idle\":{\"letter-spacing\":\"2px\"},\"hover\":\"\"}','{\"color\":\"#000000\",\"color-transparency\":\"1\",\"font-size\":\"60px\",\"line-height\":\"60px\",\"font-weight\":\"900\",\"font-style\":\"normal\",\"font-family\":\"Raleway\",\"padding\":[\"0\",\"0\",\"0\",\"0\"],\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"1\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\"}'),(64,'.tp-caption.Fashion-TextBlock','{\"hover\":\"false\",\"version\":\"5.0\",\"translated\":\"5\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"0\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"speed\":\"0\",\"easing\":\"none\"}','{\"idle\":{\"letter-spacing\":\"2px\"},\"hover\":\"\"}','{\"color\":\"#000000\",\"color-transparency\":\"1\",\"font-size\":\"20px\",\"line-height\":\"40px\",\"font-weight\":\"400\",\"font-style\":\"normal\",\"font-family\":\"Raleway\",\"padding\":[\"0\",\"0\",\"0\",\"0\"],\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"1\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\"}'),(65,'.tp-caption.Sports-Display','{\"translated\":5,\"type\":\"text\",\"version\":\"5.0\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"0\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"speed\":\"0\",\"easing\":\"none\"}','{\"idle\":{\"letter-spacing\":\"13px\"},\"hover\":\"\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"font-size\":\"130px\",\"line-height\":\"130px\",\"font-weight\":\"100\",\"font-style\":\"normal\",\"font-family\":\"\\\"Raleway\\\"\",\"padding\":\"0 0 0 0\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"1\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":\"0 0 0 0\",\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\"}'),(66,'.tp-caption.Sports-DisplayFat','{\"translated\":5,\"type\":\"text\",\"version\":\"5.0\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"0\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"speed\":\"0\",\"easing\":\"none\"}','{\"idle\":[\"\"],\"hover\":\"\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"font-size\":\"130px\",\"line-height\":\"130px\",\"font-weight\":\"900\",\"font-style\":\"normal\",\"font-family\":\"\\\"Raleway\\\"\",\"padding\":\"0 0 0 0\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"1\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":\"0 0 0 0\",\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\"}'),(67,'.tp-caption.Sports-Subline','{\"translated\":5,\"type\":\"text\",\"version\":\"5.0\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"0\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"speed\":\"0\",\"easing\":\"none\"}','{\"idle\":{\"letter-spacing\":\"4px\"},\"hover\":\"\"}','{\"color\":\"#000000\",\"color-transparency\":\"1\",\"font-size\":\"32px\",\"line-height\":\"32px\",\"font-weight\":\"400\",\"font-style\":\"normal\",\"font-family\":\"\\\"Raleway\\\"\",\"padding\":\"0 0 0 0\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"1\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":\"0 0 0 0\",\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\"}'),(68,'.tp-caption.Instagram-Caption','{\"hover\":\"false\",\"version\":\"5.0\",\"translated\":\"5\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"0\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"speed\":\"0\",\"easing\":\"none\"}','{\"idle\":\"\",\"hover\":\"\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"font-size\":\"20px\",\"line-height\":\"20px\",\"font-weight\":\"900\",\"font-style\":\"normal\",\"font-family\":\"Roboto\",\"padding\":[\"0\",\"0\",\"0\",\"0\"],\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"1\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\"}'),(69,'.tp-caption.News-Title','{\"hover\":\"false\",\"version\":\"5.0\",\"translated\":\"5\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"0\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"speed\":\"0\",\"easing\":\"none\"}','{\"idle\":\"\",\"hover\":\"\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"font-size\":\"70px\",\"line-height\":\"60px\",\"font-weight\":\"400\",\"font-style\":\"normal\",\"font-family\":\"Roboto Slab\",\"padding\":[\"0\",\"0\",\"0\",\"0\"],\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"1\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\"}'),(70,'.tp-caption.News-Subtitle','{\"hover\":\"true\",\"version\":\"5.0\",\"translated\":\"5\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"0.65\",\"text-decoration\":\"none\",\"background-color\":\"#ffffff\",\"background-transparency\":\"0\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"solid\",\"border-width\":\"0px\",\"border-radius\":[\"0\",\"0\",\"0px\",\"0\"],\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"speed\":\"300\",\"easing\":\"power3.inOut\"}','{\"idle\":\"\",\"hover\":\"\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"font-size\":\"15px\",\"line-height\":\"24px\",\"font-weight\":\"300\",\"font-style\":\"normal\",\"font-family\":\"Roboto Slab\",\"padding\":[\"0\",\"0\",\"0\",\"0\"],\"text-decoration\":\"none\",\"background-color\":\"#ffffff\",\"background-transparency\":\"0\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\"}'),(71,'.tp-caption.Photography-Display','{\"hover\":\"false\",\"version\":\"5.0\",\"translated\":\"5\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"0\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"speed\":\"0\",\"easing\":\"none\"}','{\"idle\":{\"letter-spacing\":\"5px\"},\"hover\":\"\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"font-size\":\"80px\",\"line-height\":\"70px\",\"font-weight\":\"100\",\"font-style\":\"normal\",\"font-family\":\"Raleway\",\"padding\":[\"0\",\"0\",\"0\",\"0\"],\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"1\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\"}'),(72,'.tp-caption.Photography-Subline','{\"hover\":\"false\",\"version\":\"5.0\",\"translated\":\"5\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"0\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"speed\":\"0\",\"easing\":\"none\"}','{\"idle\":{\"letter-spacing\":\"3px\"},\"hover\":\"\"}','{\"color\":\"#777777\",\"color-transparency\":\"1\",\"font-size\":\"20px\",\"line-height\":\"30px\",\"font-weight\":\"300\",\"font-style\":\"normal\",\"font-family\":\"Raleway\",\"padding\":[\"0\",\"0\",\"0\",\"0\"],\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"1\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\"}'),(73,'.tp-caption.Photography-ImageHover','{\"hover\":\"true\",\"version\":\"5.0\",\"translated\":\"5\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"0\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"opacity\":\"0.5\",\"scalex\":\"0.8\",\"scaley\":\"0.8\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"speed\":\"1000\",\"easing\":\"power3.inOut\"}','{\"idle\":\"\",\"hover\":\"\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"font-size\":\"20\",\"line-height\":\"22\",\"font-weight\":\"400\",\"font-style\":\"normal\",\"font-family\":\"\",\"padding\":[\"0\",\"0\",\"0\",\"0\"],\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"1\",\"border-color\":\"#ffffff\",\"border-transparency\":\"0\",\"border-style\":\"none\",\"border-width\":\"0px\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\"}'),(74,'.tp-caption.Photography-Menuitem','{\"hover\":\"true\",\"version\":\"5.0\",\"translated\":\"5\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"#00ffde\",\"background-transparency\":\"0.65\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"pointer_events\":\"auto\",\"css_cursor\":\"pointer\",\"speed\":\"200\",\"easing\":\"none\"}','{\"idle\":{\"letter-spacing\":\"2px\"},\"hover\":\"\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"font-size\":\"20px\",\"line-height\":\"20px\",\"font-weight\":\"300\",\"font-style\":\"normal\",\"font-family\":\"Raleway\",\"padding\":[\"3px\",\"5px\",\"3px\",\"8px\"],\"text-decoration\":\"none\",\"background-color\":\"#000000\",\"background-transparency\":\"0.65\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\"}'),(75,'.tp-caption.Photography-Textblock','{\"hover\":\"false\",\"version\":\"5.0\",\"translated\":\"5\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"0\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"speed\":\"0\",\"easing\":\"none\"}','{\"idle\":{\"letter-spacing\":\"2px\"},\"hover\":\"\"}','{\"color\":\"#fff\",\"color-transparency\":\"1\",\"font-size\":\"17px\",\"line-height\":\"30px\",\"font-weight\":\"300\",\"font-style\":\"normal\",\"font-family\":\"Raleway\",\"padding\":[\"0\",\"0\",\"0\",\"0\"],\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"1\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\"}'),(76,'.tp-caption.Photography-Subline-2','{\"hover\":\"false\",\"version\":\"5.0\",\"translated\":\"5\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"0\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"pointer_events\":\"auto\",\"css_cursor\":\"auto\",\"speed\":\"0\",\"easing\":\"none\"}','{\"idle\":{\"letter-spacing\":\"3px\"},\"hover\":\"\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"0.35\",\"font-size\":\"20px\",\"line-height\":\"30px\",\"font-weight\":\"300\",\"font-style\":\"normal\",\"font-family\":\"Raleway\",\"padding\":[\"0\",\"0\",\"0\",\"0\"],\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"1\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\"}'),(77,'.tp-caption.Photography-ImageHover2','{\"hover\":\"true\",\"version\":\"5.0\",\"translated\":\"5\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"0\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"opacity\":\"0.5\",\"scalex\":\"0.8\",\"scaley\":\"0.8\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"pointer_events\":\"auto\",\"css_cursor\":\"pointer\",\"speed\":\"500\",\"easing\":\"back.out\"}','{\"idle\":\"\",\"hover\":\"\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"font-size\":\"20\",\"line-height\":\"22\",\"font-weight\":\"400\",\"font-style\":\"normal\",\"font-family\":\"Arial\",\"padding\":[\"0\",\"0\",\"0\",\"0\"],\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"1\",\"border-color\":\"#ffffff\",\"border-transparency\":\"0\",\"border-style\":\"none\",\"border-width\":\"0px\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\"}'),(78,'.tp-caption.WebProduct-Title','{\"hover\":\"false\",\"version\":\"5.0\",\"translated\":\"5\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"0\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"pointer_events\":\"auto\",\"css_cursor\":\"auto\",\"speed\":\"0\",\"easing\":\"none\"}','{\"idle\":\"\",\"hover\":\"\"}','{\"color\":\"#333333\",\"color-transparency\":\"1\",\"font-size\":\"90px\",\"line-height\":\"90px\",\"font-weight\":\"100\",\"font-style\":\"normal\",\"font-family\":\"Raleway\",\"padding\":[\"0\",\"0\",\"0\",\"0\"],\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"0\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\"}'),(79,'.tp-caption.WebProduct-SubTitle','{\"hover\":\"false\",\"version\":\"5.0\",\"translated\":\"5\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"0\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"pointer_events\":\"auto\",\"css_cursor\":\"auto\",\"speed\":\"0\",\"easing\":\"none\"}','{\"idle\":\"\",\"hover\":\"\"}','{\"color\":\"#999999\",\"color-transparency\":\"1\",\"font-size\":\"15px\",\"line-height\":\"20px\",\"font-weight\":\"400\",\"font-style\":\"normal\",\"font-family\":\"Raleway\",\"padding\":[\"0\",\"0\",\"0\",\"0\"],\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"0\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\"}'),(80,'.tp-caption.WebProduct-Content','{\"hover\":\"false\",\"version\":\"5.0\",\"translated\":\"5\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"0\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"pointer_events\":\"auto\",\"css_cursor\":\"auto\",\"speed\":\"0\",\"easing\":\"none\"}','{\"idle\":\"\",\"hover\":\"\"}','{\"color\":\"#999999\",\"color-transparency\":\"1\",\"font-size\":\"16px\",\"line-height\":\"24px\",\"font-weight\":\"600\",\"font-style\":\"normal\",\"font-family\":\"Raleway\",\"padding\":[\"0\",\"0\",\"0\",\"0\"],\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"0\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\"}'),(81,'.tp-caption.WebProduct-Menuitem','{\"hover\":\"true\",\"version\":\"5.0\",\"translated\":\"5\"}','{\"color\":\"#999999\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"#ffffff\",\"background-transparency\":\"1\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"pointer_events\":\"auto\",\"css_cursor\":\"pointer\",\"speed\":\"200\",\"easing\":\"none\"}','{\"idle\":{\"letter-spacing\":\"2px\"},\"hover\":\"\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"font-size\":\"15px\",\"line-height\":\"20px\",\"font-weight\":\"500\",\"font-style\":\"normal\",\"font-family\":\"Raleway\",\"padding\":[\"3px\",\"5px\",\"3px\",\"8px\"],\"text-decoration\":\"none\",\"text-align\":\"left\",\"background-color\":\"#333333\",\"background-transparency\":\"1\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\",\"corner_left\":\"nothing\",\"corner_right\":\"nothing\",\"parallax\":\"-\"}'),(82,'.tp-caption.WebProduct-Title-Light','{\"hover\":\"false\",\"version\":\"5.0\",\"translated\":\"5\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"0\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"pointer_events\":\"auto\",\"css_cursor\":\"auto\",\"speed\":\"0\",\"easing\":\"none\"}','{\"idle\":\"\",\"hover\":\"\"}','{\"color\":\"#fff\",\"color-transparency\":\"1\",\"font-size\":\"90px\",\"line-height\":\"90px\",\"font-weight\":\"100\",\"font-style\":\"normal\",\"font-family\":\"Raleway\",\"padding\":[\"0\",\"0\",\"0\",\"0\"],\"text-decoration\":\"none\",\"text-align\":\"left\",\"background-color\":\"transparent\",\"background-transparency\":\"1\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\",\"corner_left\":\"nothing\",\"corner_right\":\"nothing\",\"parallax\":\"-\"}'),(83,'.tp-caption.WebProduct-SubTitle-Light','{\"hover\":\"false\",\"version\":\"5.0\",\"translated\":\"5\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"0\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"pointer_events\":\"auto\",\"css_cursor\":\"auto\",\"speed\":\"0\",\"easing\":\"none\"}','{\"idle\":\"\",\"hover\":\"\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"0.35\",\"font-size\":\"15px\",\"line-height\":\"20px\",\"font-weight\":\"400\",\"font-style\":\"normal\",\"font-family\":\"Raleway\",\"padding\":[\"0\",\"0\",\"0\",\"0\"],\"text-decoration\":\"none\",\"text-align\":\"left\",\"background-color\":\"transparent\",\"background-transparency\":\"1\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\",\"corner_left\":\"nothing\",\"parallax\":\"-\"}'),(84,'.tp-caption.WebProduct-Content-Light','{\"hover\":\"false\",\"version\":\"5.0\",\"translated\":\"5\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"0\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"pointer_events\":\"auto\",\"css_cursor\":\"auto\",\"speed\":\"0\",\"easing\":\"none\"}','{\"idle\":\"\",\"hover\":\"\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"0.65\",\"font-size\":\"16px\",\"line-height\":\"24px\",\"font-weight\":\"600\",\"font-style\":\"normal\",\"font-family\":\"Raleway\",\"padding\":[\"0\",\"0\",\"0\",\"0\"],\"text-decoration\":\"none\",\"text-align\":\"left\",\"background-color\":\"transparent\",\"background-transparency\":\"1\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\",\"corner_left\":\"nothing\",\"parallax\":\"-\"}'),(85,'.tp-caption.FatRounded','{\"hover\":\"true\",\"type\":\"text\",\"version\":\"5.0\",\"translated\":\"5\"}','{\"color\":\"#fff\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"#000000\",\"background-transparency\":\"1\",\"border-color\":\"#d3d3d3\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0px\",\"border-radius\":[\"50px\",\"50px\",\"50px\",\"50px\"],\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"pointer_events\":\"auto\",\"css_cursor\":\"pointer\",\"speed\":\"300\",\"easing\":\"none\"}','{\"idle\":{\"text-shadow\":\"none\"},\"hover\":\"\"}','{\"color\":\"#fff\",\"color-transparency\":\"1\",\"font-size\":\"30px\",\"line-height\":\"30px\",\"font-weight\":\"900\",\"font-style\":\"normal\",\"font-family\":\"Raleway\",\"padding\":[\"20px\",\"22px\",\"20px\",\"25px\"],\"text-decoration\":\"none\",\"text-align\":\"left\",\"background-color\":\"#000000\",\"background-transparency\":\"0.5\",\"border-color\":\"#d3d3d3\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0px\",\"border-radius\":[\"50px\",\"50px\",\"50px\",\"50px\"],\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\",\"corner_left\":\"nothing\",\"corner_right\":\"nothing\",\"parallax\":\"-\"}'),(86,'.tp-caption.NotGeneric-Title','{\"translated\":5,\"type\":\"text\",\"version\":\"5.0\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"0\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"pointer_events\":\"auto\",\"css_cursor\":\"auto\",\"speed\":\"0\",\"easing\":\"none\"}','{\"idle\":\"[object Object]\",\"hover\":\"\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"font-size\":\"70px\",\"line-height\":\"70px\",\"font-weight\":\"800\",\"font-style\":\"normal\",\"font-family\":\"Raleway\",\"padding\":\"10px 0px 10px 0\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"1\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":\"0 0 0 0\",\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\",\"corner_left\":\"nothing\",\"corner_right\":\"nothing\",\"parallax\":\"-\"}'),(87,'.tp-caption.NotGeneric-SubTitle','{\"translated\":5,\"type\":\"text\",\"version\":\"5.0\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"0\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"pointer_events\":\"auto\",\"css_cursor\":\"auto\",\"speed\":\"0\",\"easing\":\"none\"}','{\"idle\":{\"letter-spacing\":\"4px\",\"text-align\":\"left\"},\"hover\":\"\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"font-size\":\"13px\",\"line-height\":\"20px\",\"font-weight\":\"500\",\"font-style\":\"normal\",\"font-family\":\"Raleway\",\"padding\":\"0 0 0 0\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"1\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":\"0 0 0 0\",\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\",\"corner_left\":\"nothing\",\"corner_right\":\"nothing\",\"parallax\":\"-\"}'),(88,'.tp-caption.NotGeneric-CallToAction','{\"hover\":\"true\",\"translated\":5,\"type\":\"text\",\"version\":\"5.0\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"0\",\"border-color\":\"#ffffff\",\"border-transparency\":\"1\",\"border-style\":\"solid\",\"border-width\":\"1\",\"border-radius\":\"0px 0px 0px 0px\",\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"pointer_events\":\"auto\",\"css_cursor\":\"pointer\",\"speed\":\"300\",\"easing\":\"power3.out\"}','{\"idle\":{\"letter-spacing\":\"3px\",\"text-align\":\"left\"},\"hover\":\"\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"font-size\":\"14px\",\"line-height\":\"14px\",\"font-weight\":\"500\",\"font-style\":\"normal\",\"font-family\":\"Raleway\",\"padding\":\"10px 30px 10px 30px\",\"text-decoration\":\"none\",\"background-color\":\"#000000\",\"background-transparency\":\"0\",\"border-color\":\"#ffffff\",\"border-transparency\":\"0.5\",\"border-style\":\"solid\",\"border-width\":\"1\",\"border-radius\":\"0px 0px 0px 0px\",\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\",\"corner_left\":\"nothing\",\"corner_right\":\"nothing\",\"parallax\":\"-\"}'),(89,'.tp-caption.NotGeneric-Icon','{\"translated\":5,\"type\":\"text\",\"version\":\"5.0\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"0\",\"border-color\":\"#ffffff\",\"border-transparency\":\"1\",\"border-style\":\"solid\",\"border-width\":\"1\",\"border-radius\":[\"0px\",\"0px\",\"0px\",\"0px\"],\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"pointer_events\":\"auto\",\"css_cursor\":\"default\",\"speed\":\"300\",\"easing\":\"power3.out\"}','{\"idle\":{\"letter-spacing\":\"3px\",\"text-align\":\"left\"},\"hover\":\"\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"font-size\":\"30px\",\"line-height\":\"30px\",\"font-weight\":\"400\",\"font-style\":\"normal\",\"font-family\":\"Raleway\",\"padding\":\"0px 0px 0px 0px\",\"text-decoration\":\"none\",\"background-color\":\"#000000\",\"background-transparency\":\"0\",\"border-color\":\"#ffffff\",\"border-transparency\":\"0\",\"border-style\":\"solid\",\"border-width\":\"0px\",\"border-radius\":\"0px 0px 0px 0px\",\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\",\"corner_left\":\"nothing\",\"corner_right\":\"nothing\",\"parallax\":\"-\"}'),(90,'.tp-caption.NotGeneric-Menuitem','{\"hover\":\"true\",\"translated\":5,\"type\":\"text\",\"version\":\"5.0\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"#000000\",\"background-transparency\":\"0\",\"border-color\":\"#ffffff\",\"border-transparency\":\"1\",\"border-style\":\"solid\",\"border-width\":\"1px\",\"border-radius\":\"0px 0px 0px 0px\",\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"pointer_events\":\"auto\",\"css_cursor\":\"pointer\",\"speed\":\"300\",\"easing\":\"power1.inOut\"}','{\"idle\":{\"letter-spacing\":\"3px\",\"text-align\":\"left\"},\"hover\":\"\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"font-size\":\"14px\",\"line-height\":\"14px\",\"font-weight\":\"500\",\"font-style\":\"normal\",\"font-family\":\"Raleway\",\"padding\":\"27px 30px 27px 30px\",\"text-decoration\":\"none\",\"background-color\":\"#000000\",\"background-transparency\":\"0\",\"border-color\":\"#ffffff\",\"border-transparency\":\"0.15\",\"border-style\":\"solid\",\"border-width\":\"1px\",\"border-radius\":\"0px 0px 0px 0px\",\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\",\"corner_left\":\"nothing\",\"corner_right\":\"nothing\",\"parallax\":\"-\"}'),(91,'.tp-caption.MarkerStyle','{\"translated\":5,\"type\":\"text\",\"version\":\"5.0\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"0\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"pointer_events\":\"auto\",\"css_cursor\":\"auto\",\"speed\":\"0\",\"easing\":\"none\"}','{\"idle\":{\"text-align\":\"left\",\"0\":\"\"},\"hover\":\"\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"font-size\":\"17px\",\"line-height\":\"30px\",\"font-weight\":\"100\",\"font-style\":\"normal\",\"font-family\":\"\\\"Permanent Marker\\\"\",\"padding\":\"0 0 0 0\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"1\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":\"0 0 0 0\",\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\",\"corner_left\":\"nothing\",\"corner_right\":\"nothing\",\"parallax\":\"-\"}'),(92,'.tp-caption.Gym-Menuitem','{\"hover\":\"true\",\"type\":\"text\",\"version\":\"5.0\",\"translated\":\"5\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"#000000\",\"background-transparency\":\"1\",\"border-color\":\"#ffffff\",\"border-transparency\":\"0.25\",\"border-style\":\"solid\",\"border-width\":\"2px\",\"border-radius\":[\"3px\",\"3px\",\"3px\",\"3px\"],\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"pointer_events\":\"auto\",\"css_cursor\":\"pointer\",\"speed\":\"200\",\"easing\":\"none\"}','{\"idle\":{\"letter-spacing\":\"2px\"},\"hover\":\"\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"font-size\":\"20px\",\"line-height\":\"20px\",\"font-weight\":\"300\",\"font-style\":\"normal\",\"font-family\":\"Raleway\",\"padding\":[\"3px\",\"5px\",\"3px\",\"8px\"],\"text-decoration\":\"none\",\"text-align\":\"left\",\"background-color\":\"#000000\",\"background-transparency\":\"1\",\"border-color\":\"#ffffff\",\"border-transparency\":\"0\",\"border-style\":\"solid\",\"border-width\":\"2px\",\"border-radius\":[\"3px\",\"3px\",\"3px\",\"3px\"],\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\",\"corner_left\":\"nothing\",\"corner_right\":\"nothing\",\"parallax\":\"-\"}'),(93,'.tp-caption.Newspaper-Button','{\"hover\":\"true\",\"type\":\"button\",\"version\":\"5.0\",\"translated\":\"5\"}','{\"color\":\"#000000\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"#FFFFFF\",\"background-transparency\":\"1\",\"border-color\":\"#ffffff\",\"border-transparency\":\"1\",\"border-style\":\"solid\",\"border-width\":\"1px\",\"border-radius\":[\"0px\",\"0px\",\"0px\",\"0px\"],\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"pointer_events\":\"auto\",\"css_cursor\":\"pointer\",\"speed\":\"300\",\"easing\":\"power1.inOut\"}','{\"idle\":{\"letter-spacing\":\"2px\"},\"hover\":\"\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"font-size\":\"13px\",\"line-height\":\"17px\",\"font-weight\":\"700\",\"font-style\":\"normal\",\"font-family\":\"Roboto\",\"padding\":[\"12px\",\"35px\",\"12px\",\"35px\"],\"text-decoration\":\"none\",\"text-align\":\"left\",\"background-color\":\"#ffffff\",\"background-transparency\":\"0\",\"border-color\":\"#ffffff\",\"border-transparency\":\"0.25\",\"border-style\":\"solid\",\"border-width\":\"1px\",\"border-radius\":[\"0px\",\"0px\",\"0px\",\"0px\"],\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\",\"corner_left\":\"nothing\",\"corner_right\":\"nothing\",\"parallax\":\"-\"}'),(94,'.tp-caption.Newspaper-Subtitle','{\"hover\":\"false\",\"type\":\"text\",\"version\":\"5.0\",\"translated\":\"5\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"0\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"pointer_events\":\"auto\",\"css_cursor\":\"auto\",\"speed\":\"0\",\"easing\":\"none\"}','{\"idle\":\"\",\"hover\":\"\"}','{\"color\":\"#a8d8ee\",\"color-transparency\":\"1\",\"font-size\":\"15px\",\"line-height\":\"20px\",\"font-weight\":\"900\",\"font-style\":\"normal\",\"font-family\":\"Roboto\",\"padding\":[\"0\",\"0\",\"0\",\"0\"],\"text-decoration\":\"none\",\"text-align\":\"left\",\"background-color\":\"transparent\",\"background-transparency\":\"1\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\",\"corner_left\":\"nothing\",\"corner_right\":\"nothing\",\"parallax\":\"-\"}'),(95,'.tp-caption.Newspaper-Title','{\"hover\":\"false\",\"type\":\"text\",\"version\":\"5.0\",\"translated\":\"5\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"0\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"pointer_events\":\"auto\",\"css_cursor\":\"auto\",\"speed\":\"0\",\"easing\":\"none\"}','{\"idle\":\"\",\"hover\":\"\"}','{\"color\":\"#fff\",\"color-transparency\":\"1\",\"font-size\":\"50px\",\"line-height\":\"55px\",\"font-weight\":\"400\",\"font-style\":\"normal\",\"font-family\":\"\\\"Roboto Slab\\\"\",\"padding\":[\"0\",\"0\",\"10px\",\"0\"],\"text-decoration\":\"none\",\"text-align\":\"left\",\"background-color\":\"transparent\",\"background-transparency\":\"1\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\",\"corner_left\":\"nothing\",\"corner_right\":\"nothing\",\"parallax\":\"-\"}'),(96,'.tp-caption.Newspaper-Title-Centered','{\"hover\":\"false\",\"type\":\"text\",\"version\":\"5.0\",\"translated\":\"5\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"0\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"pointer_events\":\"auto\",\"css_cursor\":\"auto\",\"speed\":\"0\",\"easing\":\"none\"}','{\"idle\":\"\",\"hover\":\"\"}','{\"color\":\"#fff\",\"color-transparency\":\"1\",\"font-size\":\"50px\",\"line-height\":\"55px\",\"font-weight\":\"400\",\"font-style\":\"normal\",\"font-family\":\"\\\"Roboto Slab\\\"\",\"padding\":[\"0\",\"0\",\"10px\",\"0\"],\"text-decoration\":\"none\",\"text-align\":\"center\",\"background-color\":\"transparent\",\"background-transparency\":\"1\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\",\"corner_left\":\"nothing\",\"corner_right\":\"nothing\",\"parallax\":\"-\"}'),(97,'.tp-caption.Hero-Button','{\"hover\":\"true\",\"type\":\"button\",\"version\":\"5.0\",\"translated\":\"5\"}','{\"color\":\"#000000\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"#ffffff\",\"background-transparency\":\"1\",\"border-color\":\"#ffffff\",\"border-transparency\":\"1\",\"border-style\":\"solid\",\"border-width\":\"1\",\"border-radius\":[\"0px\",\"0px\",\"0px\",\"0px\"],\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"pointer_events\":\"auto\",\"css_cursor\":\"pointer\",\"speed\":\"300\",\"easing\":\"power1.inOut\"}','{\"idle\":{\"letter-spacing\":\"3px\"},\"hover\":\"\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"font-size\":\"14px\",\"line-height\":\"14px\",\"font-weight\":\"500\",\"font-style\":\"normal\",\"font-family\":\"Raleway\",\"padding\":[\"10px\",\"30px\",\"10px\",\"30px\"],\"text-decoration\":\"none\",\"text-align\":\"left\",\"background-color\":\"#000000\",\"background-transparency\":\"0\",\"border-color\":\"#ffffff\",\"border-transparency\":\"0.5\",\"border-style\":\"solid\",\"border-width\":\"1\",\"border-radius\":[\"0px\",\"0px\",\"0px\",\"0px\"],\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\",\"corner_left\":\"nothing\",\"corner_right\":\"nothing\",\"parallax\":\"-\"}'),(98,'.tp-caption.Video-Title','{\"hover\":\"false\",\"type\":\"text\",\"version\":\"5.0\",\"translated\":\"5\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"0\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"pointer_events\":\"auto\",\"css_cursor\":\"auto\",\"speed\":\"0\",\"easing\":\"none\"}','{\"idle\":\"\",\"hover\":\"\"}','{\"color\":\"#fff\",\"color-transparency\":\"1\",\"font-size\":\"30px\",\"line-height\":\"30px\",\"font-weight\":\"900\",\"font-style\":\"normal\",\"font-family\":\"Raleway\",\"padding\":[\"5px\",\"5px\",\"5px\",\"5px\"],\"text-decoration\":\"none\",\"text-align\":\"left\",\"background-color\":\"#000000\",\"background-transparency\":\"1\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"-20%\",\"2d_origin_y\":\"50\",\"pers\":\"600\",\"corner_left\":\"nothing\",\"corner_right\":\"nothing\",\"parallax\":\"-\"}'),(99,'.tp-caption.Video-SubTitle','{\"hover\":\"false\",\"type\":\"text\",\"version\":\"5.0\",\"translated\":\"5\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"0\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"pointer_events\":\"auto\",\"css_cursor\":\"auto\",\"speed\":\"0\",\"easing\":\"none\"}','{\"idle\":{\"letter-spacing\":\"2px\"},\"hover\":\"\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"font-size\":\"12px\",\"line-height\":\"12px\",\"font-weight\":\"600\",\"font-style\":\"normal\",\"font-family\":\"Raleway\",\"padding\":[\"5px\",\"5px\",\"5px\",\"5px\"],\"text-decoration\":\"none\",\"text-align\":\"left\",\"background-color\":\"#000000\",\"background-transparency\":\"0.35\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"-20%\",\"2d_origin_y\":\"50\",\"pers\":\"600\",\"corner_left\":\"nothing\",\"corner_right\":\"nothing\",\"parallax\":\"-\"}'),(100,'.tp-caption.NotGeneric-Button','{\"hover\":\"true\",\"type\":\"button\",\"version\":\"5.0\",\"translated\":\"5\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"0\",\"border-color\":\"#ffffff\",\"border-transparency\":\"1\",\"border-style\":\"solid\",\"border-width\":\"1\",\"border-radius\":[\"0px\",\"0px\",\"0px\",\"0px\"],\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"pointer_events\":\"auto\",\"css_cursor\":\"pointer\",\"speed\":\"300\",\"easing\":\"power1.inOut\"}','{\"idle\":{\"letter-spacing\":\"3px\",\"text-align\":\"left\"},\"hover\":\"\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"font-size\":\"14px\",\"line-height\":\"14px\",\"font-weight\":\"500\",\"font-style\":\"normal\",\"font-family\":\"Raleway\",\"padding\":[\"10px\",\"30px\",\"10px\",\"30px\"],\"text-decoration\":\"none\",\"text-align\":\"left\",\"background-color\":\"#000000\",\"background-transparency\":\"0\",\"border-color\":\"#ffffff\",\"border-transparency\":\"0.5\",\"border-style\":\"solid\",\"border-width\":\"1\",\"border-radius\":[\"0px\",\"0px\",\"0px\",\"0px\"],\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\",\"corner_left\":\"nothing\",\"corner_right\":\"nothing\",\"parallax\":\"-\"}'),(101,'.tp-caption.NotGeneric-BigButton','{\"hover\":\"true\",\"type\":\"button\",\"version\":\"5.0\",\"translated\":\"5\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"#000000\",\"background-transparency\":\"0\",\"border-color\":\"#ffffff\",\"border-transparency\":\"1\",\"border-style\":\"solid\",\"border-width\":\"1px\",\"border-radius\":[\"0px\",\"0px\",\"0px\",\"0px\"],\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"pointer_events\":\"auto\",\"css_cursor\":\"pointer\",\"speed\":\"300\",\"easing\":\"power1.inOut\"}','{\"idle\":{\"letter-spacing\":\"3px\"},\"hover\":\"\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"font-size\":\"14px\",\"line-height\":\"14px\",\"font-weight\":\"500\",\"font-style\":\"normal\",\"font-family\":\"Raleway\",\"padding\":[\"27px\",\"30px\",\"27px\",\"30px\"],\"text-decoration\":\"none\",\"text-align\":\"left\",\"background-color\":\"#000000\",\"background-transparency\":\"0\",\"border-color\":\"#ffffff\",\"border-transparency\":\"0.15\",\"border-style\":\"solid\",\"border-width\":\"1px\",\"border-radius\":[\"0px\",\"0px\",\"0px\",\"0px\"],\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\",\"corner_left\":\"nothing\",\"corner_right\":\"nothing\",\"parallax\":\"-\"}'),(102,'.tp-caption.WebProduct-Button','{\"hover\":\"true\",\"type\":\"button\",\"version\":\"5.0\",\"translated\":\"5\"}','{\"color\":\"#333333\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"#ffffff\",\"background-transparency\":\"1\",\"border-color\":\"#000000\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"2\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"pointer_events\":\"auto\",\"css_cursor\":\"auto\",\"speed\":\"300\",\"easing\":\"none\"}','{\"idle\":{\"letter-spacing\":\"1px\"},\"hover\":\"\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"font-size\":\"16px\",\"line-height\":\"48px\",\"font-weight\":\"600\",\"font-style\":\"normal\",\"font-family\":\"Raleway\",\"padding\":[\"0px\",\"40px\",\"0px\",\"40px\"],\"text-decoration\":\"none\",\"text-align\":\"left\",\"background-color\":\"#333333\",\"background-transparency\":\"1\",\"border-color\":\"#000000\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"2\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\",\"corner_left\":\"nothing\",\"corner_right\":\"nothing\",\"parallax\":\"-\"}'),(103,'.tp-caption.Restaurant-Button','{\"hover\":\"true\",\"type\":\"button\",\"version\":\"5.0\",\"translated\":\"5\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"#000000\",\"background-transparency\":\"0\",\"border-color\":\"#ffe081\",\"border-transparency\":\"1\",\"border-style\":\"solid\",\"border-width\":\"2\",\"border-radius\":[\"0px\",\"0px\",\"0px\",\"0px\"],\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"pointer_events\":\"auto\",\"css_cursor\":\"auto\",\"speed\":\"300\",\"easing\":\"none\"}','{\"idle\":{\"letter-spacing\":\"3px\"},\"hover\":\"\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"font-size\":\"17px\",\"line-height\":\"17px\",\"font-weight\":\"500\",\"font-style\":\"normal\",\"font-family\":\"Roboto\",\"padding\":[\"12px\",\"35px\",\"12px\",\"35px\"],\"text-decoration\":\"none\",\"text-align\":\"left\",\"background-color\":\"#0a0a0a\",\"background-transparency\":\"0\",\"border-color\":\"#ffffff\",\"border-transparency\":\"0.5\",\"border-style\":\"solid\",\"border-width\":\"2\",\"border-radius\":[\"0px\",\"0px\",\"0px\",\"0px\"],\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\",\"corner_left\":\"nothing\",\"corner_right\":\"nothing\",\"parallax\":\"-\"}'),(104,'.tp-caption.Gym-Button','{\"hover\":\"true\",\"type\":\"button\",\"version\":\"5.0\",\"translated\":\"5\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"#72a800\",\"background-transparency\":\"1\",\"border-color\":\"#000000\",\"border-transparency\":\"0\",\"border-style\":\"solid\",\"border-width\":\"0\",\"border-radius\":[\"30px\",\"30px\",\"30px\",\"30px\"],\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"pointer_events\":\"auto\",\"css_cursor\":\"pointer\",\"speed\":\"300\",\"easing\":\"power1.inOut\"}','{\"idle\":{\"letter-spacing\":\"1px\"},\"hover\":\"\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"font-size\":\"15px\",\"line-height\":\"15px\",\"font-weight\":\"600\",\"font-style\":\"normal\",\"font-family\":\"Raleway\",\"padding\":[\"13px\",\"35px\",\"13px\",\"35px\"],\"text-decoration\":\"none\",\"text-align\":\"left\",\"background-color\":\"#8bc027\",\"background-transparency\":\"1\",\"border-color\":\"#000000\",\"border-transparency\":\"0\",\"border-style\":\"solid\",\"border-width\":\"0\",\"border-radius\":[\"30px\",\"30px\",\"30px\",\"30px\"],\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\",\"corner_left\":\"nothing\",\"corner_right\":\"nothing\",\"parallax\":\"-\"}'),(105,'.tp-caption.Gym-Button-Light','{\"hover\":\"true\",\"type\":\"button\",\"version\":\"5.0\",\"translated\":\"5\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"#72a800\",\"background-transparency\":\"0\",\"border-color\":\"#8bc027\",\"border-transparency\":\"1\",\"border-style\":\"solid\",\"border-width\":\"2px\",\"border-radius\":[\"30px\",\"30px\",\"30px\",\"30px\"],\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"pointer_events\":\"auto\",\"css_cursor\":\"pointer\",\"speed\":\"300\",\"easing\":\"power2.inOut\"}','{\"idle\":\"\",\"hover\":\"\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"font-size\":\"15px\",\"line-height\":\"15px\",\"font-weight\":\"600\",\"font-style\":\"normal\",\"font-family\":\"Raleway\",\"padding\":[\"12px\",\"35px\",\"12px\",\"35px\"],\"text-decoration\":\"none\",\"text-align\":\"left\",\"background-color\":\"transparent\",\"background-transparency\":\"0\",\"border-color\":\"#ffffff\",\"border-transparency\":\"0.25\",\"border-style\":\"solid\",\"border-width\":\"2px\",\"border-radius\":[\"30px\",\"30px\",\"30px\",\"30px\"],\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\",\"corner_left\":\"nothing\",\"corner_right\":\"nothing\",\"parallax\":\"-\"}'),(106,'.tp-caption.Sports-Button-Light','{\"hover\":\"true\",\"type\":\"button\",\"version\":\"5.0\",\"translated\":\"5\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"#000000\",\"background-transparency\":\"0\",\"border-color\":\"#ffffff\",\"border-transparency\":\"1\",\"border-style\":\"solid\",\"border-width\":\"2\",\"border-radius\":[\"0px\",\"0px\",\"0px\",\"0px\"],\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"pointer_events\":\"auto\",\"css_cursor\":\"auto\",\"speed\":\"500\",\"easing\":\"none\"}','{\"idle\":{\"letter-spacing\":\"2px\"},\"hover\":\"\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"font-size\":\"17px\",\"line-height\":\"17px\",\"font-weight\":\"600\",\"font-style\":\"normal\",\"font-family\":\"Raleway\",\"padding\":[\"12px\",\"35px\",\"12px\",\"35px\"],\"text-decoration\":\"none\",\"text-align\":\"left\",\"background-color\":\"#000000\",\"background-transparency\":\"0\",\"border-color\":\"#ffffff\",\"border-transparency\":\"0.5\",\"border-style\":\"solid\",\"border-width\":\"2\",\"border-radius\":[\"0px\",\"0px\",\"0px\",\"0px\"],\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\",\"corner_left\":\"nothing\",\"corner_right\":\"nothing\",\"parallax\":\"-\"}'),(107,'.tp-caption.Sports-Button-Red','{\"hover\":\"true\",\"type\":\"button\",\"version\":\"5.0\",\"translated\":\"5\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"#000000\",\"background-transparency\":\"1\",\"border-color\":\"#000000\",\"border-transparency\":\"1\",\"border-style\":\"solid\",\"border-width\":\"2\",\"border-radius\":[\"0px\",\"0px\",\"0px\",\"0px\"],\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"pointer_events\":\"auto\",\"css_cursor\":\"auto\",\"speed\":\"500\",\"easing\":\"none\"}','{\"idle\":{\"letter-spacing\":\"2px\"},\"hover\":\"\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"font-size\":\"17px\",\"line-height\":\"17px\",\"font-weight\":\"600\",\"font-style\":\"normal\",\"font-family\":\"Raleway\",\"padding\":[\"12px\",\"35px\",\"12px\",\"35px\"],\"text-decoration\":\"none\",\"text-align\":\"left\",\"background-color\":\"#db1c22\",\"background-transparency\":\"1\",\"border-color\":\"#db1c22\",\"border-transparency\":\"0\",\"border-style\":\"solid\",\"border-width\":\"2px\",\"border-radius\":[\"0px\",\"0px\",\"0px\",\"0px\"],\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\",\"corner_left\":\"nothing\",\"corner_right\":\"nothing\",\"parallax\":\"-\"}'),(108,'.tp-caption.Photography-Button','{\"hover\":\"true\",\"type\":\"button\",\"version\":\"5.0\",\"translated\":\"5\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"#000000\",\"background-transparency\":\"0\",\"border-color\":\"#ffffff\",\"border-transparency\":\"1\",\"border-style\":\"solid\",\"border-width\":\"1px\",\"border-radius\":[\"30px\",\"30px\",\"30px\",\"30px\"],\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"pointer_events\":\"auto\",\"css_cursor\":\"auto\",\"speed\":\"300\",\"easing\":\"power3.out\"}','{\"idle\":{\"letter-spacing\":\"1px\"},\"hover\":\"\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"font-size\":\"15px\",\"line-height\":\"15px\",\"font-weight\":\"600\",\"font-style\":\"normal\",\"font-family\":\"Raleway\",\"padding\":[\"13px\",\"35px\",\"13px\",\"35px\"],\"text-decoration\":\"none\",\"text-align\":\"left\",\"background-color\":\"#000000\",\"background-transparency\":\"0\",\"border-color\":\"#ffffff\",\"border-transparency\":\"0.25\",\"border-style\":\"solid\",\"border-width\":\"1px\",\"border-radius\":[\"30px\",\"30px\",\"30px\",\"30px\"],\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\",\"corner_left\":\"nothing\",\"corner_right\":\"nothing\",\"parallax\":\"-\"}'),(109,'.tp-caption.Newspaper-Button-2','{\"hover\":\"true\",\"type\":\"button\",\"version\":\"5.0\",\"translated\":\"5\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"#000000\",\"background-transparency\":\"0\",\"border-color\":\"#ffffff\",\"border-transparency\":\"1\",\"border-style\":\"solid\",\"border-width\":\"2\",\"border-radius\":[\"3px\",\"3px\",\"3px\",\"3px\"],\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"pointer_events\":\"auto\",\"css_cursor\":\"pointer\",\"speed\":\"300\",\"easing\":\"none\"}','{\"idle\":\"\",\"hover\":\"\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"font-size\":\"15px\",\"line-height\":\"15px\",\"font-weight\":\"900\",\"font-style\":\"normal\",\"font-family\":\"Roboto\",\"padding\":[\"10px\",\"30px\",\"10px\",\"30px\"],\"text-decoration\":\"none\",\"text-align\":\"left\",\"background-color\":\"#000000\",\"background-transparency\":\"0\",\"border-color\":\"#ffffff\",\"border-transparency\":\"0.5\",\"border-style\":\"solid\",\"border-width\":\"2\",\"border-radius\":[\"3px\",\"3px\",\"3px\",\"3px\"],\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\",\"corner_left\":\"nothing\",\"corner_right\":\"nothing\",\"parallax\":\"-\"}');
/*!40000 ALTER TABLE `wplf_revslider_css` ENABLE KEYS */;
UNLOCK TABLES;

-- Dumped table `wplf_revslider_css` with 109 row(s)
--

--
-- Table structure for table `wplf_term_relationships`
--

DROP TABLE IF EXISTS `wplf_term_relationships`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `wplf_term_relationships` (
  `object_id` bigint(20) unsigned NOT NULL DEFAULT 0,
  `term_taxonomy_id` bigint(20) unsigned NOT NULL DEFAULT 0,
  `term_order` int(11) NOT NULL DEFAULT 0,
  PRIMARY KEY (`object_id`,`term_taxonomy_id`),
  KEY `term_taxonomy_id` (`term_taxonomy_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wplf_term_relationships`
--

LOCK TABLES `wplf_term_relationships` WRITE;
/*!40000 ALTER TABLE `wplf_term_relationships` DISABLE KEYS */;
INSERT INTO `wplf_term_relationships` VALUES (3547,160,0),(3601,74,0),(2422,17,0),(3631,162,0),(3631,2,0),(2911,17,0),(39,17,0),(3628,2,0),(3629,63,0),(3362,64,0),(3361,2,0),(3439,173,0),(3362,121,0),(3309,64,0),(1002,24,0),(3316,121,0),(3547,64,0),(3309,2,0),(3632,65,0),(3309,121,0),(3583,129,0),(1010,24,0),(1082,24,0),(1768,24,0),(1781,24,0),(3632,162,0),(3549,64,0),(3324,2,0),(3324,121,0),(3580,180,0),(3331,121,0),(3628,63,0),(3435,173,0),(3547,102,0),(3434,173,0),(3331,2,0),(3600,74,0),(3599,2,0),(3599,182,0),(3598,74,0),(3629,159,0),(3038,17,0),(3042,17,0),(3688,27,0),(3627,176,0),(2417,17,0),(2418,17,0),(2419,17,0),(2420,17,0),(2421,17,0),(2454,1,0),(2610,27,0),(3687,27,0),(2576,26,0),(3731,64,0),(3731,102,0),(3599,74,0),(3690,187,0),(3309,158,0),(3355,121,0),(3352,64,0),(3453,160,0),(3433,173,0),(3331,64,0),(3549,102,0),(3355,64,0),(3352,2,0),(3355,2,0),(3591,2,0),(3361,121,0),(3548,102,0),(3365,114,0),(3361,64,0),(3627,2,0),(3548,2,0),(3366,102,0),(3585,129,0),(3370,64,0),(3628,158,0),(3627,63,0),(3432,63,0),(3626,2,0),(3626,173,0),(3432,102,0),(3352,121,0),(3433,102,0),(3373,2,0),(3370,2,0),(3432,64,0),(3592,180,0),(3626,63,0),(3316,2,0),(3625,2,0),(3432,173,0),(3450,160,0),(3316,64,0),(3438,173,0),(3362,2,0),(3630,2,0),(3630,65,0),(3557,2,0),(3557,180,0),(3625,173,0),(3433,64,0),(3434,2,0),(3625,63,0),(3434,64,0),(3433,2,0),(3624,173,0),(3623,65,0),(3623,2,0),(3435,102,0),(3592,2,0),(3557,74,0),(3623,161,0),(3435,64,0),(3695,27,0),(3435,2,0),(3623,63,0),(3436,102,0),(3624,63,0),(3556,2,0),(3622,2,0),(3436,64,0),(3622,161,0),(3436,2,0),(3621,2,0),(3437,102,0),(3621,161,0),(3556,180,0),(3622,63,0),(3437,64,0),(3621,63,0),(3437,2,0),(3620,65,0),(3438,102,0),(3620,2,0),(3556,74,0),(3620,161,0),(3438,64,0),(3104,17,0),(3631,65,0),(3034,17,0),(3629,2,0),(3619,2,0),(3438,2,0),(3619,161,0),(3439,102,0),(3620,63,0),(3554,2,0),(3619,63,0),(3439,64,0),(3618,65,0),(2774,64,0),(3618,2,0),(2774,2,0),(3439,2,0),(3440,102,0),(3618,161,0),(3441,114,0),(3440,64,0),(3618,63,0),(3440,2,0),(3440,114,0),(3617,2,0),(3591,180,0),(3589,74,0),(3617,161,0),(3553,74,0),(3551,178,0),(3616,2,0),(3441,102,0),(3588,129,0),(3616,161,0),(3551,2,0),(3441,64,0),(3617,63,0),(3554,180,0),(3591,74,0),(3615,161,0),(3441,2,0),(3442,114,0),(3615,65,0),(3442,2,0),(3587,129,0),(3615,2,0),(3450,102,0),(3589,2,0),(3605,74,0),(3605,184,0),(3605,2,0),(3586,129,0),(3554,74,0),(3447,2,0),(3616,63,0),(3615,63,0),(3550,2,0),(3450,64,0),(3614,2,0),(3453,64,0),(3552,156,0),(3614,169,0),(3453,102,0),(3550,175,0),(3612,169,0),(3450,2,0),(3461,102,0),(3612,2,0),(3461,64,0),(3584,129,0),(3614,63,0),(3580,2,0),(3365,2,0),(3611,63,0),(3592,74,0),(3611,2,0),(3370,102,0),(3612,63,0),(3582,129,0),(3624,2,0),(3611,167,0),(3553,2,0),(3550,63,0),(3550,102,0),(3552,102,0),(3434,102,0),(3549,63,0),(3602,2,0),(3437,63,0),(3432,2,0),(3434,63,0),(3447,160,0),(3433,63,0),(3581,129,0),(3436,63,0),(3603,74,0),(3601,2,0),(3602,74,0),(3602,184,0),(3604,184,0),(3604,74,0),(3603,2,0),(3603,184,0),(3604,2,0),(3549,2,0),(3551,64,0),(3435,63,0),(3461,121,0),(3439,63,0),(3548,160,0),(3548,64,0),(3609,186,0),(3547,2,0),(3442,159,0),(3609,2,0),(3438,63,0),(3609,74,0),(3608,2,0),(3608,185,0),(3373,166,0),(3607,185,0),(3370,166,0),(3437,173,0),(3551,102,0),(3447,64,0),(3552,2,0),(3442,64,0),(3589,180,0),(3461,2,0),(3365,179,0),(3442,102,0),(3461,65,0),(3366,161,0),(3331,159,0),(3447,114,0),(3324,159,0),(3316,158,0),(3447,102,0),(2774,158,0),(3545,17,0),(3362,157,0),(3352,162,0),(3553,180,0),(3361,162,0),(3355,162,0),(3461,131,0),(3580,74,0),(3461,143,0),(3324,64,0),(3552,64,0),(3461,134,0),(3461,135,0),(3550,64,0),(3461,140,0),(3461,141,0),(3373,64,0),(3461,142,0),(3461,144,0),(3373,102,0),(3461,145,0),(3461,146,0),(3366,64,0),(3461,154,0),(3600,183,0),(3600,2,0),(3601,183,0),(3461,147,0),(3366,2,0),(3461,148,0),(3461,139,0),(3366,114,0),(3499,17,0),(3484,155,0),(3365,64,0),(3497,155,0),(3503,155,0),(3549,175,0),(3522,155,0),(3536,155,0),(3453,2,0),(3593,74,0),(3594,74,0),(3593,2,0),(3593,181,0),(3594,181,0),(3594,2,0),(3436,173,0),(3595,74,0),(3607,2,0),(3595,181,0),(3595,2,0),(3596,74,0),(3441,159,0),(3596,181,0),(3598,2,0),(2935,17,0),(3598,182,0),(3596,2,0),(2774,121,0),(3597,74,0),(3608,74,0),(3597,181,0),(3597,2,0),(3607,74,0),(3630,162,0),(3632,2,0),(3633,65,0),(3633,162,0),(3633,2,0),(3634,65,0),(3634,162,0),(3634,2,0),(3635,65,0),(3635,162,0),(3635,2,0),(3355,65,0),(3636,65,0),(3636,162,0),(3636,2,0),(3637,65,0),(3638,65,0),(3637,2,0),(3637,164,0),(3638,164,0),(3638,2,0),(3639,65,0),(3643,65,0),(3639,2,0),(3639,63,0),(3642,65,0),(3640,65,0),(3639,161,0),(3640,2,0),(3640,161,0),(3642,2,0),(3642,157,0),(3643,157,0),(3643,2,0),(3644,65,0),(3644,157,0),(3644,2,0),(3645,65,0),(3645,157,0),(3645,2,0),(3646,65,0),(3647,65,0),(3646,2,0),(3646,158,0),(3647,158,0),(3647,2,0),(3648,65,0),(3648,158,0),(3648,2,0),(3649,65,0),(3650,65,0),(3649,2,0),(3649,159,0),(3650,159,0),(3650,2,0),(3651,65,0),(3652,65,0),(3651,2,0),(3651,156,0),(3652,156,0),(3652,2,0),(3653,65,0),(3653,156,0),(3653,2,0),(3654,65,0),(3654,156,0),(3654,2,0),(3655,65,0),(3655,156,0),(3655,2,0),(3656,65,0),(3656,156,0),(3656,2,0),(3658,65,0),(3658,156,0),(3658,2,0),(3659,65,0),(3659,156,0),(3659,2,0),(3661,65,0),(3661,156,0),(3661,2,0),(3662,65,0),(3662,156,0),(3662,2,0),(3664,65,0),(3664,156,0),(3664,2,0),(3666,65,0),(3666,156,0),(3666,2,0),(3670,65,0),(3670,156,0),(3670,2,0),(3671,65,0),(3671,156,0),(3671,2,0),(3672,65,0),(3672,156,0),(3672,2,0),(3673,65,0),(3673,156,0),(3673,2,0),(3685,26,0),(3686,27,0),(3731,156,0),(3731,2,0),(3731,114,0);
/*!40000 ALTER TABLE `wplf_term_relationships` ENABLE KEYS */;
UNLOCK TABLES;

-- Dumped table `wplf_term_relationships` with 452 row(s)
--

--
-- Table structure for table `wplf_revslider_static_slides`
--

DROP TABLE IF EXISTS `wplf_revslider_static_slides`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `wplf_revslider_static_slides` (
  `id` int(9) NOT NULL AUTO_INCREMENT,
  `slider_id` int(9) NOT NULL,
  `params` longtext NOT NULL,
  `layers` longtext NOT NULL,
  `settings` text NOT NULL,
  PRIMARY KEY (`id`),
  KEY `slider_id_index` (`slider_id`)
) ENGINE=MyISAM AUTO_INCREMENT=9 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wplf_revslider_static_slides`
--

LOCK TABLES `wplf_revslider_static_slides` WRITE;
/*!40000 ALTER TABLE `wplf_revslider_static_slides` DISABLE KEYS */;
INSERT INTO `wplf_revslider_static_slides` VALUES (1,1,'{\"static\":{\"isstatic\":true},\"runtime\":{\"collapsedGroups\":[]},\"title\":\"Global Layers\",\"info\":{\"params\":[{\"v\":\"\",\"l\":10},{\"v\":\"\",\"l\":10},{\"v\":\"\",\"l\":10},{\"v\":\"\",\"l\":10},{\"v\":\"\",\"l\":10},{\"v\":\"\",\"l\":10},{\"v\":\"\",\"l\":10},{\"v\":\"\",\"l\":10},{\"v\":\"\",\"l\":10},{\"v\":\"\",\"l\":10}]},\"slideChange\":{\"in\":{\"o\":0},\"out\":{\"a\":false},\"title\":\"*opacity* Fade In\",\"main\":\"basic\",\"group\":\"fade\",\"preset\":\"fade\",\"adpr\":false},\"version\":\"6.6.0\"}','{\"6\":{\"text\":\"\",\"alias\":\"Row-6\",\"uid\":6,\"toggle\":{\"text\":\"\"},\"size\":{\"aspectRatio\":{\"d\":{\"v\":\"none\"},\"n\":{\"v\":\"none\"},\"t\":{\"v\":\"none\"},\"m\":{\"v\":\"none\"}},\"scaleProportional\":false},\"position\":{\"x\":{\"d\":{\"v\":\"50px\"},\"n\":{\"v\":\"50px\"},\"t\":{\"v\":\"50px\"},\"m\":{\"v\":\"50px\"}},\"y\":{\"d\":{\"v\":\"50px\"},\"n\":{\"v\":\"50px\"},\"t\":{\"v\":\"50px\"},\"m\":{\"v\":\"50px\"}},\"zIndex\":1},\"group\":{\"puid\":\"bottom\",\"groupOrder\":0,\"columnbreakat\":\"mobile\"},\"timeline\":{\"frames\":{\"frame_0\":{\"transform\":{\"opacity\":1},\"timeline\":{\"endWithSlide\":false}},\"frame_1\":{\"timeline\":{\"endWithSlide\":false,\"frameLength\":300}},\"frame_999\":{\"transform\":{\"opacity\":0},\"timeline\":{\"start\":9000,\"endWithSlide\":true,\"frameLength\":300}}},\"hoverFilterUsed\":false,\"frameOrder\":[{\"id\":\"frame_0\",\"start\":-1},{\"id\":\"frame_1\",\"start\":0},{\"id\":\"frame_999\",\"start\":9000}],\"split\":false,\"sessionFilterUsed\":false},\"idle\":{\"margin\":{\"d\":{\"v\":[0,0,100,0],\"e\":true},\"n\":{\"v\":[0,0,100,0],\"e\":false},\"t\":{\"v\":[0,0,100,0],\"e\":false},\"m\":{\"v\":[0,0,100,0],\"e\":false}},\"padding\":{\"d\":{\"v\":[10,10,20,10],\"e\":true},\"n\":{\"v\":[10,10,20,10],\"e\":false},\"t\":{\"v\":[10,10,20,10],\"e\":false},\"m\":{\"v\":[10,10,20,10],\"e\":false}},\"cursor\":\"pointer\",\"borderRadius\":{\"v\":[0,0,0,0]},\"borderWidth\":[0,0,0,0]},\"hover\":{\"borderRadius\":{\"v\":[0,0,0,0]},\"borderWidth\":[0,0,0,0],\"pointerEvents\":\"none\"},\"actions\":{\"action\":[],\"inactive_actions\":[]},\"type\":\"row\",\"version\":\"6.6.0\"},\"7\":{\"text\":\"\",\"alias\":\"Column-7\",\"uid\":7,\"toggle\":{\"text\":\"\"},\"size\":{\"aspectRatio\":{\"d\":{\"v\":\"none\"},\"n\":{\"v\":\"none\"},\"t\":{\"v\":\"none\"},\"m\":{\"v\":\"none\"}},\"scaleProportional\":false},\"position\":{\"x\":{\"d\":{\"v\":\"50px\"},\"n\":{\"v\":\"50px\"},\"t\":{\"v\":\"50px\"},\"m\":{\"v\":\"50px\"}},\"y\":{\"d\":{\"v\":\"50px\"},\"n\":{\"v\":\"50px\"},\"t\":{\"v\":\"50px\"},\"m\":{\"v\":\"50px\"}},\"zIndex\":2},\"group\":{\"puid\":\"6\",\"groupOrder\":0,\"columnbreakat\":\"mobile\",\"columnSize\":\"3\\/12\"},\"timeline\":{\"frames\":{\"frame_0\":{\"transform\":{\"opacity\":1},\"timeline\":{\"endWithSlide\":false}},\"frame_1\":{\"timeline\":{\"endWithSlide\":false,\"frameLength\":300}},\"frame_999\":{\"transform\":{\"opacity\":0},\"timeline\":{\"start\":9000,\"endWithSlide\":true,\"frameLength\":300}}},\"hoverFilterUsed\":false,\"frameOrder\":[{\"id\":\"frame_0\",\"start\":-1},{\"id\":\"frame_1\",\"start\":0},{\"id\":\"frame_999\",\"start\":9000}],\"split\":false,\"sessionFilterUsed\":false},\"idle\":{\"margin\":{\"d\":{\"v\":[0,0,0,0],\"e\":false},\"n\":{\"v\":[0,0,0,0],\"e\":false},\"t\":{\"v\":[0,0,0,0],\"e\":false},\"m\":{\"v\":[0,0,0,0],\"e\":false}},\"padding\":{\"d\":{\"v\":[10,10,10,10],\"e\":false},\"n\":{\"v\":[10,10,10,10],\"e\":false},\"t\":{\"v\":[10,10,10,10],\"e\":false},\"m\":{\"v\":[10,10,10,10],\"e\":false}},\"borderRadius\":{\"v\":[0,0,0,0]},\"borderWidth\":[0,0,0,0]},\"hover\":{\"borderRadius\":{\"v\":[0,0,0,0]},\"borderWidth\":[0,0,0,0]},\"actions\":{\"action\":[],\"inactive_actions\":[]},\"type\":\"column\",\"version\":\"6.6.0\"},\"8\":{\"text\":\"\",\"alias\":\"Column-8\",\"uid\":8,\"toggle\":{\"text\":\"\"},\"size\":{\"aspectRatio\":{\"d\":{\"v\":\"none\"},\"n\":{\"v\":\"none\"},\"t\":{\"v\":\"none\"},\"m\":{\"v\":\"none\"}},\"scaleProportional\":false},\"position\":{\"x\":{\"d\":{\"v\":\"50px\"},\"n\":{\"v\":\"50px\"},\"t\":{\"v\":\"50px\"},\"m\":{\"v\":\"50px\"}},\"y\":{\"d\":{\"v\":\"50px\"},\"n\":{\"v\":\"50px\"},\"t\":{\"v\":\"50px\"},\"m\":{\"v\":\"50px\"}},\"zIndex\":4},\"group\":{\"puid\":\"6\",\"groupOrder\":1,\"columnbreakat\":\"mobile\",\"columnSize\":\"6\\/12\"},\"timeline\":{\"frames\":{\"frame_0\":{\"transform\":{\"opacity\":1},\"timeline\":{\"endWithSlide\":false}},\"frame_1\":{\"timeline\":{\"endWithSlide\":false,\"frameLength\":300}},\"frame_999\":{\"transform\":{\"opacity\":0},\"timeline\":{\"start\":9000,\"endWithSlide\":true,\"frameLength\":300}}},\"hoverFilterUsed\":false,\"frameOrder\":[{\"id\":\"frame_0\",\"start\":-1},{\"id\":\"frame_1\",\"start\":0},{\"id\":\"frame_999\",\"start\":9000}],\"split\":false,\"sessionFilterUsed\":false},\"idle\":{\"margin\":{\"d\":{\"v\":[0,0,0,0],\"e\":false},\"n\":{\"v\":[0,0,0,0],\"e\":false},\"t\":{\"v\":[0,0,0,0],\"e\":false},\"m\":{\"v\":[0,0,0,0],\"e\":false}},\"padding\":{\"d\":{\"v\":[10,10,10,10],\"e\":false},\"n\":{\"v\":[10,10,10,10],\"e\":false},\"t\":{\"v\":[10,10,10,10],\"e\":false},\"m\":{\"v\":[10,10,10,10],\"e\":false}},\"borderRadius\":{\"v\":[0,0,0,0]},\"borderWidth\":[0,0,0,0]},\"hover\":{\"borderRadius\":{\"v\":[0,0,0,0]},\"borderWidth\":[0,0,0,0]},\"actions\":{\"action\":[],\"inactive_actions\":[]},\"type\":\"column\",\"version\":\"6.6.0\"},\"9\":{\"text\":\"\",\"alias\":\"Column-9\",\"uid\":9,\"toggle\":{\"text\":\"\"},\"size\":{\"aspectRatio\":{\"d\":{\"v\":\"none\"},\"n\":{\"v\":\"none\"},\"t\":{\"v\":\"none\"},\"m\":{\"v\":\"none\"}},\"scaleProportional\":false},\"position\":{\"x\":{\"d\":{\"v\":\"50px\"},\"n\":{\"v\":\"50px\"},\"t\":{\"v\":\"50px\"},\"m\":{\"v\":\"50px\"}},\"y\":{\"d\":{\"v\":\"50px\"},\"n\":{\"v\":\"50px\"},\"t\":{\"v\":\"50px\"},\"m\":{\"v\":\"50px\"}},\"zIndex\":5},\"group\":{\"puid\":\"6\",\"groupOrder\":2,\"columnbreakat\":\"mobile\",\"columnSize\":\"3\\/12\"},\"timeline\":{\"frames\":{\"frame_0\":{\"transform\":{\"opacity\":1},\"timeline\":{\"endWithSlide\":false}},\"frame_1\":{\"timeline\":{\"endWithSlide\":false,\"frameLength\":300}},\"frame_999\":{\"transform\":{\"opacity\":0},\"timeline\":{\"start\":9000,\"endWithSlide\":true,\"frameLength\":300}}},\"hoverFilterUsed\":false,\"frameOrder\":[{\"id\":\"frame_0\",\"start\":-1},{\"id\":\"frame_1\",\"start\":0},{\"id\":\"frame_999\",\"start\":9000}],\"split\":false,\"sessionFilterUsed\":false},\"idle\":{\"margin\":{\"d\":{\"v\":[0,0,0,0],\"e\":false},\"n\":{\"v\":[0,0,0,0],\"e\":false},\"t\":{\"v\":[0,0,0,0],\"e\":false},\"m\":{\"v\":[0,0,0,0],\"e\":false}},\"padding\":{\"d\":{\"v\":[10,10,10,10],\"e\":false},\"n\":{\"v\":[10,10,10,10],\"e\":false},\"t\":{\"v\":[10,10,10,10],\"e\":false},\"m\":{\"v\":[10,10,10,10],\"e\":false}},\"textAlign\":{\"d\":{\"e\":true}},\"borderRadius\":{\"v\":[0,0,0,0]},\"borderWidth\":[0,0,0,0]},\"hover\":{\"borderRadius\":{\"v\":[0,0,0,0]},\"borderWidth\":[0,0,0,0]},\"actions\":{\"action\":[],\"inactive_actions\":[]},\"type\":\"column\",\"version\":\"6.6.0\"},\"10\":{\"text\":\"Global Market\",\"alias\":\"Button-10\",\"uid\":10,\"toggle\":{\"text\":\"\"},\"size\":{\"minWidth\":{\"d\":{\"e\":true}},\"minHeight\":{\"d\":{\"e\":true}},\"aspectRatio\":{\"d\":{\"v\":\"none\"},\"n\":{\"v\":\"none\"},\"t\":{\"v\":\"none\"},\"m\":{\"v\":\"none\"}},\"scaleProportional\":false},\"position\":{\"x\":{\"d\":{\"v\":\"0\"},\"n\":{\"v\":\"0\"},\"t\":{\"v\":\"0\"},\"m\":{\"v\":\"0\"}},\"y\":{\"d\":{\"v\":\"0\"},\"n\":{\"v\":\"0\"},\"t\":{\"v\":\"0\"},\"m\":{\"v\":\"0\"}},\"zIndex\":6,\"position\":\"relative\"},\"group\":{\"puid\":\"9\",\"groupOrder\":0},\"timeline\":{\"frames\":{\"frame_0\":{\"timeline\":{\"endWithSlide\":false}},\"frame_1\":{\"timeline\":{\"endWithSlide\":false,\"frameLength\":300}},\"frame_999\":{\"transform\":{\"opacity\":0},\"timeline\":{\"start\":9000,\"endWithSlide\":true,\"frameLength\":300}}},\"hoverFilterUsed\":false,\"frameOrder\":[{\"id\":\"frame_0\",\"start\":-1},{\"id\":\"frame_1\",\"start\":0},{\"id\":\"frame_999\",\"start\":9000}],\"split\":false,\"sessionFilterUsed\":false},\"idle\":{\"margin\":{\"d\":{\"v\":[0,0,0,0],\"e\":false},\"n\":{\"v\":[0,0,0,0],\"e\":false},\"t\":{\"v\":[0,0,0,0],\"e\":false},\"m\":{\"v\":[0,0,0,0],\"e\":false}},\"padding\":{\"d\":{\"v\":[0,20,0,20],\"e\":false},\"n\":{\"v\":[0,17,0,17],\"e\":false},\"t\":{\"v\":[0,13,0,13],\"e\":false},\"m\":{\"v\":[0,8,0,8],\"e\":false}},\"float\":{\"d\":{\"e\":true}},\"clear\":{\"d\":{\"e\":true}},\"fontSize\":{\"n\":{\"v\":\"16\"},\"t\":{\"v\":\"12\"},\"m\":{\"v\":\"7\"}},\"fontWeight\":{\"d\":{\"v\":\"500\"},\"n\":{\"v\":\"500\"},\"t\":{\"v\":\"500\"},\"m\":{\"v\":\"500\"}},\"lineHeight\":{\"d\":{\"v\":\"50\"},\"n\":{\"v\":\"41\"},\"t\":{\"v\":\"31\"},\"m\":{\"v\":\"19\"}},\"textAlign\":{\"d\":{\"v\":\"center\"},\"n\":{\"v\":\"center\"},\"t\":{\"v\":\"center\"},\"m\":{\"v\":\"center\"}},\"backgroundColor\":\"#683393\",\"borderColor\":\"rgba(255,255,255,0.35)\",\"borderRadius\":{\"v\":[\"25px\",\"25px\",\"25px\",\"25px\"],\"e\":true},\"borderWidth\":[\"1px\",\"1px\",\"1px\",\"1px\"],\"whiteSpace\":{\"d\":{\"v\":\"full\"},\"n\":{\"v\":\"full\"},\"t\":{\"v\":\"full\"},\"m\":{\"v\":\"full\"}}},\"hover\":{\"usehover\":\"true\",\"color\":\"#000000\",\"backgroundColor\":\"#ffffff\",\"borderColor\":\"rgba(255,255,255,0.35)\",\"borderRadius\":{\"v\":[\"25px\",\"25px\",\"25px\",\"25px\"],\"e\":true},\"borderWidth\":[\"1px\",\"1px\",\"1px\",\"1px\"],\"speed\":200,\"ease\":\"power1.inOut\",\"copied\":true,\"borderRadiusLock\":false},\"actions\":{\"action\":[],\"inactive_actions\":[]},\"runtime\":{\"internalClass\":\"rev-btn\"},\"type\":\"button\",\"version\":\"6.6.0\"},\"11\":{\"text\":\"Local Market\",\"alias\":\"Copy button-10\",\"uid\":11,\"toggle\":{\"text\":\"\"},\"size\":{\"width\":{\"d\":{\"e\":true}},\"height\":{\"d\":{\"e\":true}},\"minWidth\":{\"d\":{\"e\":true}},\"minHeight\":{\"d\":{\"e\":true}},\"aspectRatio\":{\"d\":{\"v\":\"none\"},\"n\":{\"v\":\"none\"},\"t\":{\"v\":\"none\"},\"m\":{\"v\":\"none\"}},\"scaleProportional\":false},\"position\":{\"x\":{\"d\":{\"e\":true}},\"y\":{\"d\":{\"e\":true}},\"zIndex\":3,\"position\":\"relative\"},\"behavior\":{\"intelligentInherit\":false},\"group\":{\"puid\":\"7\",\"groupOrder\":0},\"timeline\":{\"frames\":{\"frame_0\":{\"timeline\":{\"endWithSlide\":false}},\"frame_1\":{\"timeline\":{\"endWithSlide\":false,\"frameLength\":300}},\"frame_999\":{\"transform\":{\"opacity\":0},\"timeline\":{\"start\":9000,\"endWithSlide\":true,\"frameLength\":300}}},\"hoverFilterUsed\":false,\"frameOrder\":[{\"id\":\"frame_0\",\"start\":-1},{\"id\":\"frame_1\",\"start\":0},{\"id\":\"frame_999\",\"start\":9000}],\"split\":false,\"sessionFilterUsed\":false},\"idle\":{\"margin\":{\"d\":{\"v\":[0,0,0,0],\"e\":false},\"n\":{\"v\":[0,0,0,0],\"e\":false},\"t\":{\"v\":[0,0,0,0],\"e\":false},\"m\":{\"v\":[0,0,0,0],\"e\":false}},\"padding\":{\"d\":{\"v\":[0,20,0,20],\"e\":false},\"n\":{\"v\":[0,17,0,17],\"e\":false},\"t\":{\"v\":[0,13,0,13],\"e\":false},\"m\":{\"v\":[0,8,0,8],\"e\":false}},\"fontSize\":{\"n\":{\"v\":\"16\"},\"t\":{\"v\":\"12\"},\"m\":{\"v\":\"7\"}},\"fontWeight\":{\"d\":{\"v\":\"500\"},\"n\":{\"v\":\"500\"},\"t\":{\"v\":\"500\"},\"m\":{\"v\":\"500\"}},\"lineHeight\":{\"d\":{\"v\":\"50\"},\"n\":{\"v\":\"41\"},\"t\":{\"v\":\"31\"},\"m\":{\"v\":\"19\"}},\"textAlign\":{\"d\":{\"v\":\"center\",\"e\":true},\"n\":{\"v\":\"center\"},\"t\":{\"v\":\"center\"},\"m\":{\"v\":\"center\"}},\"backgroundColor\":\"#1e9b11\",\"borderColor\":\"rgba(255,255,255,0.35)\",\"borderRadius\":{\"v\":[\"25px\",\"25px\",\"25px\",\"25px\"],\"e\":true},\"borderWidth\":[\"1px\",\"1px\",\"1px\",\"1px\"],\"whiteSpace\":{\"d\":{\"v\":\"full\"},\"n\":{\"v\":\"full\"},\"t\":{\"v\":\"full\"},\"m\":{\"v\":\"full\"}}},\"hover\":{\"usehover\":true,\"color\":\"#000000\",\"backgroundColor\":\"#ffffff\",\"borderColor\":\"rgba(255,255,255,0.35)\",\"borderRadius\":{\"v\":[\"25px\",\"25px\",\"25px\",\"25px\"],\"e\":true},\"borderWidth\":[\"1px\",\"1px\",\"1px\",\"1px\"],\"speed\":200,\"ease\":\"power1.inOut\",\"copied\":true},\"actions\":{\"action\":[],\"inactive_actions\":[]},\"runtime\":{\"internalClass\":\"rev-btn\"},\"type\":\"button\",\"version\":\"6.6.0\"},\"top\":{\"uid\":\"top\",\"group\":{\"puid\":-1,\"groupOrder\":17},\"type\":\"zone\",\"alias\":\"TOP ROWS\",\"position\":{\"zIndex\":17,\"position\":\"absolute\"},\"version\":\"6.6.0\"},\"middle\":{\"uid\":\"middle\",\"group\":{\"puid\":-1,\"groupOrder\":16},\"type\":\"zone\",\"alias\":\"MID ROWS\",\"position\":{\"zIndex\":16,\"position\":\"absolute\"},\"version\":\"6.6.0\"},\"bottom\":{\"uid\":\"bottom\",\"group\":{\"puid\":-1,\"groupOrder\":15},\"type\":\"zone\",\"alias\":\"BOTTOM ROWS\",\"position\":{\"zIndex\":15,\"position\":\"absolute\"},\"version\":\"6.6.0\"}}','{\"version\":\"6.6.0\"}'),(2,2,'{\"static\":{\"isstatic\":true},\"runtime\":{\"collapsedGroups\":[]},\"title\":\"Global Layers\",\"info\":{\"params\":[{\"v\":\"\",\"l\":10},{\"v\":\"\",\"l\":10},{\"v\":\"\",\"l\":10},{\"v\":\"\",\"l\":10},{\"v\":\"\",\"l\":10},{\"v\":\"\",\"l\":10},{\"v\":\"\",\"l\":10},{\"v\":\"\",\"l\":10},{\"v\":\"\",\"l\":10},{\"v\":\"\",\"l\":10}]},\"slideChange\":{\"in\":{\"o\":0},\"out\":{\"a\":false},\"title\":\"*opacity* Fade In\",\"main\":\"basic\",\"group\":\"fade\",\"preset\":\"fade\",\"adpr\":false},\"version\":\"6.6.0\"}','{\"0\":{\"text\":\"\",\"alias\":\"Row-0\",\"uid\":0,\"toggle\":{\"text\":\"\"},\"size\":{\"aspectRatio\":{\"d\":{\"v\":\"none\"},\"n\":{\"v\":\"none\"},\"t\":{\"v\":\"none\"},\"m\":{\"v\":\"none\"}},\"scaleProportional\":false},\"position\":{\"x\":{\"d\":{\"v\":\"50px\"},\"n\":{\"v\":\"50px\"},\"t\":{\"v\":\"50px\"},\"m\":{\"v\":\"50px\"}},\"y\":{\"d\":{\"v\":\"50px\"},\"n\":{\"v\":\"50px\"},\"t\":{\"v\":\"50px\"},\"m\":{\"v\":\"50px\"}},\"zIndex\":1},\"group\":{\"puid\":\"bottom\",\"groupOrder\":0},\"timeline\":{\"frames\":{\"frame_0\":{\"transform\":{\"opacity\":1},\"timeline\":{\"endWithSlide\":false}},\"frame_1\":{\"timeline\":{\"endWithSlide\":false,\"frameLength\":300}},\"frame_999\":{\"transform\":{\"opacity\":0},\"timeline\":{\"start\":9000,\"endWithSlide\":true,\"frameLength\":300}}},\"hoverFilterUsed\":false,\"frameOrder\":[{\"id\":\"frame_0\",\"start\":-1},{\"id\":\"frame_1\",\"start\":0},{\"id\":\"frame_999\",\"start\":9000}],\"split\":false,\"sessionFilterUsed\":false},\"idle\":{\"margin\":{\"d\":{\"v\":[0,0,0,0],\"e\":false},\"n\":{\"v\":[0,0,0,0],\"e\":false},\"t\":{\"v\":[0,0,0,0],\"e\":false},\"m\":{\"v\":[0,0,0,0],\"e\":false}},\"padding\":{\"d\":{\"v\":[10,10,10,10],\"e\":true},\"n\":{\"v\":[10,10,10,10],\"e\":false},\"t\":{\"v\":[10,10,10,10],\"e\":false},\"m\":{\"v\":[10,10,10,10],\"e\":false}},\"borderRadius\":{\"v\":[0,0,0,0]},\"borderWidth\":[0,0,0,0]},\"hover\":{\"borderRadius\":{\"v\":[0,0,0,0]},\"borderWidth\":[0,0,0,0]},\"actions\":{\"action\":[],\"inactive_actions\":[]},\"type\":\"row\",\"version\":\"6.6.0\"},\"1\":{\"text\":\"\",\"alias\":\"Column-1\",\"uid\":1,\"toggle\":{\"text\":\"\"},\"size\":{\"aspectRatio\":{\"d\":{\"v\":\"none\"},\"n\":{\"v\":\"none\"},\"t\":{\"v\":\"none\"},\"m\":{\"v\":\"none\"}},\"scaleProportional\":false},\"position\":{\"x\":{\"d\":{\"v\":\"50px\"},\"n\":{\"v\":\"50px\"},\"t\":{\"v\":\"50px\"},\"m\":{\"v\":\"50px\"}},\"y\":{\"d\":{\"v\":\"50px\"},\"n\":{\"v\":\"50px\"},\"t\":{\"v\":\"50px\"},\"m\":{\"v\":\"50px\"}},\"zIndex\":2},\"group\":{\"puid\":\"0\",\"groupOrder\":0,\"columnSize\":\"5\\/12\"},\"timeline\":{\"frames\":{\"frame_0\":{\"transform\":{\"opacity\":1},\"timeline\":{\"endWithSlide\":false}},\"frame_1\":{\"timeline\":{\"endWithSlide\":false,\"frameLength\":300}},\"frame_999\":{\"transform\":{\"opacity\":0},\"timeline\":{\"start\":9000,\"endWithSlide\":true,\"frameLength\":300}}},\"hoverFilterUsed\":false,\"frameOrder\":[{\"id\":\"frame_0\",\"start\":-1},{\"id\":\"frame_1\",\"start\":0},{\"id\":\"frame_999\",\"start\":9000}],\"split\":false,\"sessionFilterUsed\":false},\"idle\":{\"margin\":{\"d\":{\"v\":[0,0,0,0],\"e\":false},\"n\":{\"v\":[0,0,0,0],\"e\":false},\"t\":{\"v\":[0,0,0,0],\"e\":false},\"m\":{\"v\":[0,0,0,0],\"e\":false}},\"padding\":{\"d\":{\"v\":[20,10,20,10],\"e\":true},\"n\":{\"v\":[20,10,20,10],\"e\":false},\"t\":{\"v\":[20,10,20,10],\"e\":false},\"m\":{\"v\":[20,10,20,10],\"e\":false}},\"cursor\":\"pointer\",\"backgroundColor\":\"#027a1c\",\"borderRadius\":{\"v\":[\"30px\",\"30px\",\"30px\",\"30px\"],\"e\":true},\"borderWidth\":[0,0,0,0]},\"hover\":{\"usehover\":\"true\",\"backgroundColor\":\"#02f41a\",\"borderRadius\":{\"v\":[\"30px\",\"30px\",\"30px\",\"30px\"],\"e\":true},\"borderWidth\":[0,0,0,0],\"copied\":true},\"actions\":{\"action\":[{\"action\":\"jumpto\",\"tooltip_event\":\"mouseenter\",\"link_help_in\":\"keep\",\"link_open_in\":\"_self\",\"link_follow\":\"follow\",\"jump_to_slide\":\"6\"},{\"action\":\"link\",\"tooltip_event\":\"click\",\"link_help_in\":\"keep\",\"link_open_in\":\"_self\",\"link_follow\":\"follow\",\"link_type\":\"jquery\"},{\"action\":\"jumpto\",\"tooltip_event\":\"mouseleave\",\"link_help_in\":\"keep\",\"link_open_in\":\"_self\",\"link_follow\":\"follow\",\"link_type\":\"jquery\",\"jump_to_slide\":\"5\"}],\"inactive_actions\":[]},\"type\":\"column\",\"version\":\"6.6.0\"},\"2\":{\"text\":\"\",\"alias\":\"Column-2\",\"uid\":2,\"toggle\":{\"text\":\"\"},\"size\":{\"aspectRatio\":{\"d\":{\"v\":\"none\"},\"n\":{\"v\":\"none\"},\"t\":{\"v\":\"none\"},\"m\":{\"v\":\"none\"}},\"scaleProportional\":false},\"position\":{\"x\":{\"d\":{\"v\":\"50px\"},\"n\":{\"v\":\"50px\"},\"t\":{\"v\":\"50px\"},\"m\":{\"v\":\"50px\"}},\"y\":{\"d\":{\"v\":\"50px\"},\"n\":{\"v\":\"50px\"},\"t\":{\"v\":\"50px\"},\"m\":{\"v\":\"50px\"}},\"zIndex\":4},\"group\":{\"puid\":\"0\",\"groupOrder\":1,\"columnSize\":\"2\\/12\"},\"timeline\":{\"frames\":{\"frame_0\":{\"transform\":{\"opacity\":1},\"timeline\":{\"endWithSlide\":false}},\"frame_1\":{\"timeline\":{\"endWithSlide\":false,\"frameLength\":300}},\"frame_999\":{\"transform\":{\"opacity\":0},\"timeline\":{\"start\":9000,\"endWithSlide\":true,\"frameLength\":300}}},\"hoverFilterUsed\":false,\"frameOrder\":[{\"id\":\"frame_0\",\"start\":-1},{\"id\":\"frame_1\",\"start\":0},{\"id\":\"frame_999\",\"start\":9000}],\"split\":false,\"sessionFilterUsed\":false},\"idle\":{\"margin\":{\"d\":{\"v\":[0,0,0,0],\"e\":false},\"n\":{\"v\":[0,0,0,0],\"e\":false},\"t\":{\"v\":[0,0,0,0],\"e\":false},\"m\":{\"v\":[0,0,0,0],\"e\":false}},\"padding\":{\"d\":{\"v\":[20,10,20,10],\"e\":true},\"n\":{\"v\":[20,10,20,10],\"e\":false},\"t\":{\"v\":[20,10,20,10],\"e\":false},\"m\":{\"v\":[20,10,20,10],\"e\":false}},\"borderRadius\":{\"v\":[0,0,0,0]},\"borderWidth\":[0,0,0,0]},\"hover\":{\"borderRadius\":{\"v\":[0,0,0,0]},\"borderWidth\":[0,0,0,0]},\"actions\":{\"action\":[{\"action\":\"jumpto\",\"tooltip_event\":\"mouseenter\",\"link_help_in\":\"keep\",\"link_open_in\":\"_self\",\"link_follow\":\"follow\"}],\"inactive_actions\":[]},\"type\":\"column\",\"version\":\"6.6.0\"},\"20\":{\"text\":\"\",\"alias\":\"column-20\",\"uid\":20,\"toggle\":{\"text\":\"\"},\"size\":{\"aspectRatio\":{\"d\":{\"v\":\"none\"},\"n\":{\"v\":\"none\"},\"t\":{\"v\":\"none\"},\"m\":{\"v\":\"none\"}},\"scaleProportional\":false},\"position\":{\"x\":{\"d\":{\"v\":\"50px\"},\"n\":{\"v\":\"50px\"},\"t\":{\"v\":\"50px\"},\"m\":{\"v\":\"50px\"}},\"y\":{\"d\":{\"v\":\"312px\"},\"n\":{\"v\":\"312px\"},\"t\":{\"v\":\"312px\"},\"m\":{\"v\":\"312px\"}},\"zIndex\":5},\"group\":{\"puid\":\"0\",\"groupOrder\":2,\"columnSize\":\"5\\/12\"},\"timeline\":{\"frames\":{\"frame_0\":{\"transform\":{\"opacity\":1},\"timeline\":{\"endWithSlide\":false}},\"frame_1\":{\"timeline\":{\"endWithSlide\":false,\"frameLength\":300}},\"frame_999\":{\"transform\":{\"opacity\":0},\"timeline\":{\"start\":9000,\"endWithSlide\":true,\"frameLength\":300}}},\"frameOrder\":[{\"id\":\"frame_0\",\"start\":-1},{\"id\":\"frame_1\",\"start\":0},{\"id\":\"frame_999\",\"start\":9000}],\"hoverFilterUsed\":false,\"split\":false,\"sessionFilterUsed\":false},\"idle\":{\"margin\":{\"d\":{\"v\":[0,0,0,0],\"e\":false},\"n\":{\"v\":[0,0,0,0],\"e\":false},\"t\":{\"v\":[0,0,0,0],\"e\":false},\"m\":{\"v\":[0,0,0,0],\"e\":false}},\"padding\":{\"d\":{\"v\":[20,10,20,10],\"e\":true},\"n\":{\"v\":[20,10,20,10],\"e\":false},\"t\":{\"v\":[20,10,20,10],\"e\":false},\"m\":{\"v\":[20,10,20,10],\"e\":false}},\"cursor\":\"pointer\",\"backgroundColor\":\"#49006b\",\"borderRadius\":{\"v\":[\"30px\",\"30px\",\"30px\",\"30px\"],\"e\":true},\"borderWidth\":[0,0,0,0]},\"hover\":{\"usehover\":\"true\",\"backgroundColor\":\"#9900e0\",\"borderRadius\":{\"v\":[\"30px\",\"30px\",\"30px\",\"30px\"],\"e\":true},\"borderWidth\":[0,0,0,0],\"copied\":true},\"actions\":{\"action\":[{\"action\":\"jumpto\",\"tooltip_event\":\"mouseenter\",\"link_help_in\":\"keep\",\"link_open_in\":\"_self\",\"link_follow\":\"follow\",\"jump_to_slide\":\"7\"},{\"action\":\"link\",\"tooltip_event\":\"click\",\"link_help_in\":\"keep\",\"link_open_in\":\"_self\",\"link_follow\":\"follow\",\"link_type\":\"jquery\"},{\"action\":\"jumpto\",\"tooltip_event\":\"mouseleave\",\"link_help_in\":\"keep\",\"link_open_in\":\"_self\",\"link_follow\":\"follow\",\"link_type\":\"jquery\",\"jump_to_slide\":\"5\"}],\"inactive_actions\":[]},\"type\":\"column\",\"version\":\"6.6.0\"},\"21\":{\"text\":\"Foreign Market\",\"alias\":\"text-21\",\"uid\":21,\"toggle\":{\"text\":\"\"},\"size\":{\"width\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"minWidth\":{\"d\":{\"e\":true}},\"minHeight\":{\"d\":{\"v\":\"0px\",\"e\":true}},\"aspectRatio\":{\"d\":{\"v\":\"none\"},\"n\":{\"v\":\"none\"},\"t\":{\"v\":\"none\"},\"m\":{\"v\":\"none\"}},\"scaleProportional\":false},\"position\":{\"x\":{\"d\":{\"v\":\"0\",\"e\":true},\"n\":{\"v\":\"0\"},\"t\":{\"v\":\"0\"},\"m\":{\"v\":\"0\"}},\"y\":{\"d\":{\"v\":\"0\",\"e\":true},\"n\":{\"v\":\"0\"},\"t\":{\"v\":\"0\"},\"m\":{\"v\":\"0\"}},\"horizontal\":{\"d\":{\"e\":true}},\"vertical\":{\"d\":{\"e\":true}},\"zIndex\":6,\"position\":\"relative\"},\"group\":{\"puid\":\"20\",\"groupOrder\":0},\"timeline\":{\"frames\":{\"frame_0\":{\"timeline\":{\"endWithSlide\":false}},\"frame_1\":{\"timeline\":{\"endWithSlide\":false,\"frameLength\":300}},\"frame_999\":{\"transform\":{\"opacity\":0},\"timeline\":{\"start\":9000,\"endWithSlide\":true,\"frameLength\":300}}},\"hoverFilterUsed\":false,\"frameOrder\":[{\"id\":\"frame_0\",\"start\":-1},{\"id\":\"frame_1\",\"start\":0},{\"id\":\"frame_999\",\"start\":9000}],\"split\":false,\"sessionFilterUsed\":false},\"idle\":{\"color\":{\"d\":{\"v\":\"#fff\"},\"n\":{\"v\":\"#fff\"},\"t\":{\"v\":\"#fff\"},\"m\":{\"v\":\"#fff\"}},\"margin\":{\"d\":{\"v\":[0,0,0,0],\"e\":false},\"n\":{\"v\":[0,0,0,0],\"e\":false},\"t\":{\"v\":[0,0,0,0],\"e\":false},\"m\":{\"v\":[0,0,0,0],\"e\":false}},\"padding\":{\"d\":{\"v\":[0,0,0,0],\"e\":false},\"n\":{\"v\":[0,0,0,0],\"e\":false},\"t\":{\"v\":[0,0,0,0],\"e\":false},\"m\":{\"v\":[0,0,0,0],\"e\":false}},\"fontSize\":{\"d\":{\"v\":\"36\"},\"n\":{\"v\":\"29\"},\"t\":{\"v\":\"22\"},\"m\":{\"v\":\"13\"}},\"fontWeight\":{\"d\":{\"v\":\"500\"},\"n\":{\"v\":\"500\"},\"t\":{\"v\":\"500\"},\"m\":{\"v\":\"500\"}},\"letterSpacing\":{\"d\":{\"v\":\"1\"}},\"lineHeight\":{\"d\":{\"v\":\"40\"},\"n\":{\"v\":\"33\"},\"m\":{\"v\":\"15\"}},\"textAlign\":{\"d\":{\"v\":\"center\",\"e\":true},\"n\":{\"v\":\"center\"},\"t\":{\"v\":\"center\"},\"m\":{\"v\":\"center\"}},\"borderRadius\":{\"v\":[\"0px\",\"0px\",\"0px\",\"0px\"],\"e\":true},\"borderWidth\":[0,0,0,0],\"whiteSpace\":{\"d\":{\"v\":\"full\",\"e\":true},\"n\":{\"v\":\"full\",\"e\":true},\"t\":{\"v\":\"full\",\"e\":true},\"m\":{\"v\":\"full\",\"e\":true}}},\"hover\":{\"borderRadius\":{\"v\":[0,0,0,0]},\"borderWidth\":[0,0,0,0]},\"actions\":{\"action\":[],\"inactive_actions\":[]},\"type\":\"text\",\"version\":\"6.6.0\"},\"22\":{\"text\":\"Local Market\",\"alias\":\"Copy Text-21\",\"uid\":22,\"toggle\":{\"text\":\"\"},\"size\":{\"width\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"minWidth\":{\"d\":{\"e\":true}},\"minHeight\":{\"d\":{\"v\":\"0px\",\"e\":true}},\"aspectRatio\":{\"d\":{\"v\":\"none\"},\"n\":{\"v\":\"none\"},\"t\":{\"v\":\"none\"},\"m\":{\"v\":\"none\"}},\"scaleProportional\":false},\"position\":{\"x\":{\"d\":{\"e\":true}},\"y\":{\"d\":{\"e\":true}},\"horizontal\":{\"d\":{\"e\":true}},\"vertical\":{\"d\":{\"e\":true}},\"zIndex\":3,\"position\":\"relative\"},\"group\":{\"puid\":\"1\",\"groupOrder\":0},\"timeline\":{\"frames\":{\"frame_0\":{\"timeline\":{\"endWithSlide\":false}},\"frame_1\":{\"timeline\":{\"endWithSlide\":false,\"frameLength\":300}},\"frame_999\":{\"transform\":{\"opacity\":0},\"timeline\":{\"start\":9000,\"endWithSlide\":true,\"frameLength\":300}}},\"hoverFilterUsed\":false,\"frameOrder\":[{\"id\":\"frame_0\",\"start\":-1},{\"id\":\"frame_1\",\"start\":0},{\"id\":\"frame_999\",\"start\":9000}],\"split\":false,\"sessionFilterUsed\":false},\"idle\":{\"color\":{\"d\":{\"v\":\"#fff\"},\"n\":{\"v\":\"#fff\"},\"t\":{\"v\":\"#fff\"},\"m\":{\"v\":\"#fff\"}},\"margin\":{\"d\":{\"v\":[0,0,0,0],\"e\":false},\"n\":{\"v\":[0,0,0,0],\"e\":false},\"t\":{\"v\":[0,0,0,0],\"e\":false},\"m\":{\"v\":[0,0,0,0],\"e\":false}},\"padding\":{\"d\":{\"v\":[0,0,0,0],\"e\":false},\"n\":{\"v\":[0,0,0,0],\"e\":false},\"t\":{\"v\":[0,0,0,0],\"e\":false},\"m\":{\"v\":[0,0,0,0],\"e\":false}},\"fontSize\":{\"d\":{\"v\":\"36\"},\"n\":{\"v\":\"29\"},\"t\":{\"v\":\"22\"},\"m\":{\"v\":\"13\"}},\"fontWeight\":{\"d\":{\"v\":\"500\"},\"n\":{\"v\":\"500\"},\"t\":{\"v\":\"500\"},\"m\":{\"v\":\"500\"}},\"letterSpacing\":{\"d\":{\"v\":\"1\"}},\"lineHeight\":{\"d\":{\"v\":\"40\"},\"n\":{\"v\":\"33\"},\"m\":{\"v\":\"15\"}},\"textAlign\":{\"d\":{\"v\":\"center\",\"e\":true},\"n\":{\"v\":\"center\"},\"t\":{\"v\":\"center\"},\"m\":{\"v\":\"center\"}},\"borderRadius\":{\"v\":[\"0px\",\"0px\",\"0px\",\"0px\"],\"e\":true},\"borderWidth\":[0,0,0,0],\"whiteSpace\":{\"d\":{\"v\":\"full\",\"e\":true},\"n\":{\"v\":\"full\",\"e\":true},\"t\":{\"v\":\"full\",\"e\":true},\"m\":{\"v\":\"full\",\"e\":true}}},\"hover\":{\"borderRadius\":{\"v\":[0,0,0,0]},\"borderWidth\":[0,0,0,0]},\"actions\":{\"action\":[],\"inactive_actions\":[]},\"type\":\"text\",\"version\":\"6.6.0\"},\"top\":{\"uid\":\"top\",\"group\":{\"puid\":-1,\"groupOrder\":13},\"type\":\"zone\",\"alias\":\"TOP ROWS\",\"position\":{\"zIndex\":13,\"position\":\"absolute\"},\"version\":\"6.6.0\"},\"middle\":{\"uid\":\"middle\",\"group\":{\"puid\":-1,\"groupOrder\":12},\"type\":\"zone\",\"alias\":\"MID ROWS\",\"position\":{\"zIndex\":12,\"position\":\"absolute\"},\"version\":\"6.6.0\"},\"bottom\":{\"uid\":\"bottom\",\"group\":{\"puid\":-1,\"groupOrder\":11},\"type\":\"zone\",\"alias\":\"BOTTOM ROWS\",\"position\":{\"zIndex\":11,\"position\":\"absolute\"},\"version\":\"6.6.0\"}}','{\"version\":\"6.6.0\"}'),(3,3,'{\"version\":\"6.6.0\",\"slideChange\":{\"adpr\":false}}','','{\"version\":\"6.6.0\"}'),(4,4,'{\"version\":\"6.6.0\",\"slideChange\":{\"adpr\":false}}','','{\"version\":\"6.6.0\"}'),(5,5,'{\"version\":\"6.6.0\",\"slideChange\":{\"adpr\":false}}','','{\"version\":\"6.6.0\"}'),(6,6,'{\"version\":\"6.6.0\",\"slideChange\":{\"adpr\":false}}','','{\"version\":\"6.6.0\"}'),(7,7,'{\"static\":{\"isstatic\":true},\"runtime\":{\"collapsedGroups\":[]},\"title\":\"Global Layers\",\"info\":{\"params\":[{\"v\":\"\",\"l\":10},{\"v\":\"\",\"l\":10},{\"v\":\"\",\"l\":10},{\"v\":\"\",\"l\":10},{\"v\":\"\",\"l\":10},{\"v\":\"\",\"l\":10},{\"v\":\"\",\"l\":10},{\"v\":\"\",\"l\":10},{\"v\":\"\",\"l\":10},{\"v\":\"\",\"l\":10}]},\"slideChange\":{\"in\":{\"o\":0},\"out\":{\"a\":false},\"title\":\"*opacity* Fade In\",\"main\":\"basic\",\"group\":\"fade\",\"preset\":\"fade\",\"adpr\":false},\"version\":\"6.6.0\"}','{\"top\":{\"uid\":\"top\",\"group\":{\"puid\":-1,\"groupOrder\":0},\"type\":\"zone\",\"alias\":\"TOP ROWS\",\"position\":{\"zIndex\":0,\"position\":\"absolute\"},\"version\":\"6.6.0\"},\"middle\":{\"uid\":\"middle\",\"group\":{\"puid\":-1,\"groupOrder\":0},\"type\":\"zone\",\"alias\":\"MID ROWS\",\"position\":{\"zIndex\":0,\"position\":\"absolute\"},\"version\":\"6.6.0\"},\"bottom\":{\"uid\":\"bottom\",\"group\":{\"puid\":-1,\"groupOrder\":0},\"type\":\"zone\",\"alias\":\"BOTTOM ROWS\",\"position\":{\"zIndex\":0,\"position\":\"absolute\"},\"version\":\"6.6.0\"}}','{\"version\":\"6.6.0\"}'),(8,8,'{\"version\":\"6.6.0\",\"slideChange\":{\"adpr\":false}}','','{\"version\":\"6.6.0\"}');
/*!40000 ALTER TABLE `wplf_revslider_static_slides` ENABLE KEYS */;
UNLOCK TABLES;

-- Dumped table `wplf_revslider_static_slides` with 8 row(s)
--

--
-- Table structure for table `wplf_revslider_navigations_bkp`
--

DROP TABLE IF EXISTS `wplf_revslider_navigations_bkp`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `wplf_revslider_navigations_bkp` (
  `id` int(9) NOT NULL AUTO_INCREMENT,
  `name` varchar(191) NOT NULL,
  `handle` varchar(191) NOT NULL,
  `type` varchar(191) NOT NULL,
  `css` longtext NOT NULL,
  `markup` longtext NOT NULL,
  `settings` longtext DEFAULT NULL,
  PRIMARY KEY (`id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wplf_revslider_navigations_bkp`
--

LOCK TABLES `wplf_revslider_navigations_bkp` WRITE;
/*!40000 ALTER TABLE `wplf_revslider_navigations_bkp` DISABLE KEYS */;
/*!40000 ALTER TABLE `wplf_revslider_navigations_bkp` ENABLE KEYS */;
UNLOCK TABLES;

-- Dumped table `wplf_revslider_navigations_bkp` with 0 row(s)
--

--
-- Table structure for table `wplf_revslider_sliders`
--

DROP TABLE IF EXISTS `wplf_revslider_sliders`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `wplf_revslider_sliders` (
  `id` int(9) NOT NULL AUTO_INCREMENT,
  `title` tinytext NOT NULL,
  `alias` tinytext DEFAULT NULL,
  `params` longtext NOT NULL,
  `settings` text DEFAULT NULL,
  `type` varchar(191) NOT NULL DEFAULT '',
  PRIMARY KEY (`id`),
  KEY `type_index` (`type`(8))
) ENGINE=MyISAM AUTO_INCREMENT=9 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wplf_revslider_sliders`
--

LOCK TABLES `wplf_revslider_sliders` WRITE;
/*!40000 ALTER TABLE `wplf_revslider_sliders` DISABLE KEYS */;
INSERT INTO `wplf_revslider_sliders` VALUES (1,'Slider 1','slider-1','{\"addOns\":[],\"version\":\"6.6.0\",\"pakps\":false,\"shortcode\":\"[rev_slider alias=\\\"slider-1\\\"][\\/rev_slider]\",\"type\":\"standard\",\"layouttype\":\"fullwidth\",\"sourcetype\":\"gallery\",\"googleFont\":[],\"id\":\"\",\"class\":\"\",\"wrapperclass\":\"\",\"snap\":{\"adjust\":\"none\",\"snap\":false,\"helpLines\":false,\"gap\":20},\"source\":{\"gallery\":[],\"post\":{\"excerptLimit\":55,\"maxPosts\":30,\"fetchType\":\"cat_tag\",\"category\":\"\",\"sortBy\":\"ID\",\"types\":\"post\",\"list\":\"\",\"sortDirection\":\"DESC\",\"subType\":\"post\"},\"woo\":{\"excerptLimit\":55,\"maxProducts\":30,\"featuredOnly\":false,\"inStockOnly\":false,\"category\":\"\",\"sortBy\":\"ID\",\"types\":\"product\",\"sortDirection\":\"DESC\",\"regPriceFrom\":\"\",\"regPriceTo\":\"\",\"salePriceFrom\":\"\",\"salePriceTo\":\"\"},\"instagram\":{\"count\":8,\"hashTag\":\"\",\"transient\":1200,\"type\":\"user\",\"userId\":\"\",\"token_source\":\"account\",\"connect_with\":\"\"},\"facebook\":{\"album\":\"\",\"appId\":\"\",\"appSecret\":\"\",\"count\":8,\"transient\":1200,\"typeSource\":\"timeline\",\"token_source\":\"account\",\"connect_with\":\"\",\"page_id\":\"\"},\"flickr\":{\"apiKey\":\"\",\"count\":8,\"galleryURL\":\"\",\"groupURL\":\"\",\"photoSet\":\"\",\"transient\":1200,\"type\":\"publicphotos\",\"userURL\":\"\"},\"twitter\":{\"accessSecret\":\"\",\"accessToken\":\"\",\"consumerKey\":\"\",\"consumerSecret\":\"\",\"count\":8,\"excludeReplies\":false,\"imageOnly\":false,\"includeRetweets\":false,\"transient\":1200,\"userId\":\"\"},\"vimeo\":{\"albumId\":\"\",\"channelName\":\"\",\"count\":8,\"transient\":1200,\"groupName\":\"\",\"typeSource\":\"user\",\"userName\":\"\"},\"youtube\":{\"api\":\"\",\"channelId\":\"\",\"count\":8,\"playList\":\"\",\"transient\":1200,\"typeSource\":\"channel\"}},\"def\":{\"intelligentInherit\":true,\"autoResponsive\":true,\"responsiveChilds\":true,\"responsiveOffset\":true,\"transition\":\"fade\",\"transitionDuration\":300,\"delay\":9000,\"background\":{\"fit\":\"cover\",\"fitX\":100,\"fitY\":100,\"position\":\"center center\",\"positionX\":0,\"positionY\":0,\"repeat\":\"no-repeat\",\"imageSourceType\":\"full\"},\"panZoom\":{\"set\":false,\"blurStart\":0,\"blurEnd\":0,\"duration\":10000,\"ease\":\"none\",\"fitEnd\":100,\"fitStart\":100,\"xEnd\":0,\"yEnd\":0,\"xStart\":0,\"yStart\":0,\"rotateStart\":0,\"rotateEnd\":0}},\"size\":{\"enableUpscaling\":false,\"respectAspectRatio\":false,\"disableForceFullWidth\":false,\"custom\":{\"d\":true,\"n\":false,\"t\":false,\"m\":false},\"minHeightFullScreen\":\"\",\"minHeight\":\"\",\"maxWidth\":0,\"maxHeight\":0,\"fullScreenOffsetContainer\":\"\",\"fullScreenOffset\":\"\",\"width\":{\"d\":1240,\"n\":1024,\"t\":778,\"m\":480},\"height\":{\"d\":900,\"n\":768,\"t\":960,\"m\":720},\"editorCache\":{\"d\":900,\"n\":768,\"t\":960,\"m\":720},\"overflow\":false,\"useFullScreenHeight\":true,\"overflowHidden\":false,\"gridEQModule\":false,\"forceOverflow\":false,\"keepBPHeight\":false,\"ignoreHeightChanges\":true},\"codes\":{\"css\":\"\",\"javascript\":\"\"},\"carousel\":{\"justify\":false,\"justifyMaxWidth\":false,\"snap\":true,\"borderRadius\":0,\"borderRadiusUnit\":\"px\",\"ease\":\"power3.inOut\",\"fadeOut\":true,\"scale\":false,\"offsetScale\":false,\"horizontal\":\"center\",\"vertical\":\"center\",\"infinity\":false,\"maxItems\":3,\"maxRotation\":0,\"maxOpacity\":100,\"paddingTop\":0,\"paddingBottom\":0,\"rotation\":false,\"scaleDown\":50,\"space\":0,\"speed\":800,\"stretch\":false,\"varyFade\":false,\"varyRotate\":false,\"varyScale\":false,\"showAllLayers\":\"false\"},\"hero\":{\"activeSlide\":-1},\"layout\":{\"bg\":{\"color\":\"transparent\",\"padding\":0,\"dottedOverlay\":\"none\",\"dottedOverlaySize\":1,\"dottedColorA\":\"transparent\",\"dottedColorB\":\"#000000\",\"shadow\":0,\"useImage\":false,\"image\":\"\",\"imageSourceType\":\"full\",\"fit\":\"cover\",\"position\":\"center center\",\"repeat\":\"no-repeat\"},\"spinner\":{\"color\":\"#ffffff\",\"type\":\"off\"},\"position\":{\"marginTop\":0,\"marginBottom\":0,\"marginLeft\":0,\"marginRight\":0,\"align\":\"center\",\"fixedOnTop\":false,\"addClear\":false}},\"visibility\":{\"hideSelectedLayersUnderLimit\":0,\"hideAllLayersUnderLimit\":0,\"hideSliderUnderLimit\":0},\"general\":{\"slideshow\":{\"slideShow\":true,\"stopOnHover\":false,\"stopSlider\":false,\"stopAfterLoops\":0,\"stopAtSlide\":1,\"shuffle\":false,\"loopSingle\":false,\"viewPort\":false,\"viewPortStart\":\"wait\",\"viewPortArea\":{\"d\":{\"v\":\"200px\",\"e\":false,\"u\":\"\"},\"n\":{\"v\":\"200px\",\"e\":false,\"u\":\"\"},\"t\":{\"v\":\"200px\",\"e\":false,\"u\":\"\"},\"m\":{\"v\":\"200px\",\"e\":false,\"u\":\"\"}},\"presetSliderHeight\":false,\"initDelay\":0,\"waitForInit\":false},\"progressbar\":{\"set\":false,\"alignby\":\"slider\",\"style\":\"horizontal\",\"size\":\"5px\",\"radius\":10,\"vertical\":\"bottom\",\"horizontal\":\"left\",\"x\":0,\"y\":0,\"color\":\"rgba(255,255,255,0.5)\",\"bgcolor\":\"transparent\",\"basedon\":\"slide\",\"gapsize\":0,\"gap\":false,\"gapcolor\":\"rgba(255,255,255,0.5)\",\"reset\":\"reset\",\"visibility\":{\"d\":true,\"m\":true,\"n\":true,\"t\":true}},\"firstSlide\":{\"set\":false,\"duration\":300,\"slotAmount\":7,\"type\":\"fade\",\"alternativeFirstSlideSet\":false,\"alternativeFirstSlide\":1},\"icache\":\"default\",\"DPR\":\"dpr\",\"observeWrap\":false,\"layerSelection\":false,\"lazyLoad\":\"none\",\"nextSlideOnFocus\":false,\"disableFocusListener\":false,\"enableurlhash\":false,\"disableOnMobile\":false,\"autoPlayVideoOnMobile\":true,\"disablePanZoomMobile\":false,\"useWPML\":false,\"perspective\":600,\"perspectiveType\":\"global\"},\"nav\":{\"preview\":{\"width\":50,\"height\":100},\"swipe\":{\"set\":false,\"setOnDesktop\":false,\"setMobileCarousel\":true,\"setDesktopCarousel\":true,\"blockDragVertical\":false,\"direction\":\"horizontal\",\"minTouch\":1,\"velocity\":75},\"keyboard\":{\"direction\":\"horizontal\",\"set\":false},\"mouse\":{\"set\":\"off\",\"reverse\":\"default\",\"viewport\":50,\"calldelay\":1000,\"threshold\":50},\"arrows\":{\"set\":false,\"rtl\":false,\"animSpeed\":\"1000ms\",\"animDelay\":\"1000ms\",\"style\":\"1000\",\"preset\":\"default\",\"presets\":[],\"alwaysOn\":true,\"hideDelay\":200,\"hideDelayMobile\":1200,\"hideOver\":false,\"hideOverLimit\":0,\"hideUnder\":false,\"hideUnderLimit\":778,\"left\":{\"anim\":\"fade\",\"horizontal\":\"left\",\"vertical\":\"center\",\"offsetX\":30,\"offsetY\":0,\"align\":\"slider\"},\"right\":{\"anim\":\"fade\",\"horizontal\":\"right\",\"vertical\":\"center\",\"offsetX\":30,\"offsetY\":0,\"align\":\"slider\"}},\"thumbs\":{\"anim\":\"fade\",\"animSpeed\":\"1000ms\",\"animDelay\":\"1000ms\",\"set\":false,\"rtl\":false,\"style\":\"2000\",\"preset\":\"default\",\"presets\":[],\"alwaysOn\":true,\"hideDelay\":200,\"hideDelayMobile\":1200,\"hideOver\":false,\"hideOverLimit\":0,\"hideUnder\":false,\"hideUnderLimit\":778,\"spanWrapper\":false,\"horizontal\":\"center\",\"vertical\":\"bottom\",\"amount\":5,\"direction\":\"horizontal\",\"height\":50,\"width\":100,\"widthMin\":100,\"innerOuter\":\"inner\",\"offsetX\":0,\"offsetY\":20,\"space\":5,\"align\":\"slider\",\"padding\":5,\"wrapperColor\":\"transparent\",\"mhoffset\":0,\"mvoffset\":0},\"tabs\":{\"anim\":\"fade\",\"animSpeed\":\"1000ms\",\"animDelay\":\"1000ms\",\"set\":false,\"rtl\":false,\"style\":\"4000\",\"preset\":\"default\",\"presets\":[],\"alwaysOn\":true,\"hideDelay\":200,\"hideDelayMobile\":1200,\"hideOver\":false,\"hideOverLimit\":0,\"hideUnder\":false,\"hideUnderLimit\":778,\"spanWrapper\":false,\"horizontal\":\"center\",\"vertical\":\"bottom\",\"amount\":5,\"direction\":\"horizontal\",\"height\":50,\"width\":100,\"widthMin\":100,\"innerOuter\":\"inner\",\"offsetX\":0,\"offsetY\":20,\"space\":5,\"align\":\"slider\",\"padding\":5,\"wrapperColor\":\"transparent\",\"mhoffset\":0,\"mvoffset\":0},\"bullets\":{\"anim\":\"fade\",\"animSpeed\":\"1000ms\",\"animDelay\":\"1000ms\",\"set\":false,\"rtl\":false,\"style\":\"3000\",\"preset\":\"default\",\"presets\":[],\"alwaysOn\":true,\"horizontal\":\"center\",\"vertical\":\"bottom\",\"direction\":\"horizontal\",\"offsetX\":0,\"offsetY\":20,\"align\":\"slider\",\"space\":5,\"hideDelay\":200,\"hideDelayMobile\":1200,\"hideOver\":false,\"hideOverLimit\":0,\"hideUnder\":false,\"hideUnderLimit\":778}},\"troubleshooting\":{\"alternateImageType\":\"off\",\"alternateURL\":\"\",\"jsNoConflict\":false,\"jsInBody\":false,\"outPutFilter\":\"none\",\"simplify_ie8_ios4\":false},\"parallax\":{\"set\":false,\"setDDD\":false,\"disableOnMobile\":false,\"levels\":[5,10,15,20,25,30,35,40,45,46,47,48,49,50,51,30],\"ddd\":{\"BGFreeze\":false,\"layerOverflow\":false,\"overflow\":false,\"shadow\":false,\"zCorrection\":65},\"mouse\":{\"speed\":0,\"bgSpeed\":0,\"layersSpeed\":0,\"origo\":\"slidercenter\",\"type\":\"scroll\"}},\"modal\":{\"bodyclass\":\"\",\"horizontal\":\"center\",\"vertical\":\"middle\",\"cover\":true,\"allowPageScroll\":false,\"coverColor\":\"rgba(0,0,0,0.5)\",\"coverSpeed\":1000},\"scrolleffects\":{\"set\":true,\"setBlur\":true,\"setFade\":false,\"setGrayScale\":false,\"bg\":false,\"direction\":\"both\",\"layers\":false,\"maxBlur\":10,\"multiplicator\":\"1.3\",\"multiplicatorLayers\":\"1.3\",\"disableOnMobile\":false,\"parallaxLayers\":false,\"staticLayers\":false,\"staticParallaxLayers\":false,\"tilt\":30},\"scrolltimeline\":{\"set\":false,\"fixed\":false,\"fixedStart\":2000,\"fixedEnd\":4000,\"layers\":false,\"ease\":\"none\",\"speed\":500,\"pullcontent\":false},\"skins\":{\"colorsAtStart\":false,\"cid\":2,\"colors\":[{\"alias\":\"Highlight\",\"v\":\"#ff0000\",\"ref\":[]},{\"alias\":\"Headline Text\",\"v\":\"#ffffff\",\"ref\":[]},{\"alias\":\"Content Text\",\"v\":\"#00ffff\",\"ref\":[]}]},\"modalshortcode\":\"[rev_slider usage=\\\"modal\\\" alias=\\\"slider-1\\\"][\\/rev_slider]\"}','{\"version\":\"6.6.0\"}',''),(2,'Slider 2','slider-2','{\"addOns\":[],\"version\":\"6.6.0\",\"pakps\":false,\"shortcode\":\"[rev_slider alias=\\\"slider-2\\\"][\\/rev_slider]\",\"type\":\"standard\",\"layouttype\":\"fullwidth\",\"sourcetype\":\"gallery\",\"googleFont\":[],\"id\":\"\",\"class\":\"\",\"wrapperclass\":\"\",\"snap\":{\"adjust\":\"none\",\"snap\":false,\"helpLines\":false,\"gap\":20},\"source\":{\"gallery\":[],\"post\":{\"excerptLimit\":55,\"maxPosts\":30,\"fetchType\":\"cat_tag\",\"category\":\"\",\"sortBy\":\"ID\",\"types\":\"post\",\"list\":\"\",\"sortDirection\":\"DESC\",\"subType\":\"post\"},\"woo\":{\"excerptLimit\":55,\"maxProducts\":30,\"featuredOnly\":false,\"inStockOnly\":false,\"category\":\"\",\"sortBy\":\"ID\",\"types\":\"product\",\"sortDirection\":\"DESC\",\"regPriceFrom\":\"\",\"regPriceTo\":\"\",\"salePriceFrom\":\"\",\"salePriceTo\":\"\"},\"instagram\":{\"count\":8,\"hashTag\":\"\",\"transient\":1200,\"type\":\"user\",\"userId\":\"\",\"token_source\":\"account\",\"connect_with\":\"\"},\"facebook\":{\"album\":\"\",\"appId\":\"\",\"appSecret\":\"\",\"count\":8,\"transient\":1200,\"typeSource\":\"timeline\",\"token_source\":\"account\",\"connect_with\":\"\",\"page_id\":\"\"},\"flickr\":{\"apiKey\":\"\",\"count\":8,\"galleryURL\":\"\",\"groupURL\":\"\",\"photoSet\":\"\",\"transient\":1200,\"type\":\"publicphotos\",\"userURL\":\"\"},\"twitter\":{\"accessSecret\":\"\",\"accessToken\":\"\",\"consumerKey\":\"\",\"consumerSecret\":\"\",\"count\":8,\"excludeReplies\":false,\"imageOnly\":false,\"includeRetweets\":false,\"transient\":1200,\"userId\":\"\"},\"vimeo\":{\"albumId\":\"\",\"channelName\":\"\",\"count\":8,\"transient\":1200,\"groupName\":\"\",\"typeSource\":\"user\",\"userName\":\"\"},\"youtube\":{\"api\":\"\",\"channelId\":\"\",\"count\":8,\"playList\":\"\",\"transient\":1200,\"typeSource\":\"channel\"}},\"def\":{\"intelligentInherit\":true,\"autoResponsive\":true,\"responsiveChilds\":true,\"responsiveOffset\":true,\"transition\":\"fade\",\"transitionDuration\":300,\"delay\":9000,\"background\":{\"fit\":\"cover\",\"fitX\":100,\"fitY\":100,\"position\":\"center center\",\"positionX\":0,\"positionY\":0,\"repeat\":\"no-repeat\",\"imageSourceType\":\"full\"},\"panZoom\":{\"set\":false,\"blurStart\":0,\"blurEnd\":0,\"duration\":10000,\"ease\":\"none\",\"fitEnd\":100,\"fitStart\":100,\"xEnd\":0,\"yEnd\":0,\"xStart\":0,\"yStart\":0,\"rotateStart\":0,\"rotateEnd\":0}},\"size\":{\"enableUpscaling\":false,\"respectAspectRatio\":false,\"disableForceFullWidth\":false,\"custom\":{\"d\":true,\"n\":true,\"t\":true,\"m\":true},\"minHeightFullScreen\":\"\",\"minHeight\":\"\",\"maxWidth\":0,\"maxHeight\":0,\"fullScreenOffsetContainer\":\"\",\"fullScreenOffset\":\"\",\"width\":{\"d\":1240,\"n\":1024,\"t\":778,\"m\":480},\"height\":{\"d\":900,\"n\":768,\"t\":960,\"m\":720},\"editorCache\":{\"d\":900,\"n\":768,\"t\":960,\"m\":720},\"overflow\":false,\"useFullScreenHeight\":true,\"overflowHidden\":false,\"gridEQModule\":false,\"forceOverflow\":false,\"keepBPHeight\":false,\"ignoreHeightChanges\":true},\"codes\":{\"css\":\"\",\"javascript\":\"\"},\"carousel\":{\"justify\":false,\"justifyMaxWidth\":false,\"snap\":true,\"borderRadius\":0,\"borderRadiusUnit\":\"px\",\"ease\":\"power3.inOut\",\"fadeOut\":true,\"scale\":false,\"offsetScale\":false,\"horizontal\":\"center\",\"vertical\":\"center\",\"infinity\":false,\"maxItems\":3,\"maxRotation\":0,\"maxOpacity\":100,\"paddingTop\":0,\"paddingBottom\":0,\"rotation\":false,\"scaleDown\":50,\"space\":0,\"speed\":800,\"stretch\":false,\"varyFade\":false,\"varyRotate\":false,\"varyScale\":false,\"showAllLayers\":\"false\"},\"hero\":{\"activeSlide\":-1},\"layout\":{\"bg\":{\"color\":\"transparent\",\"padding\":0,\"dottedOverlay\":\"none\",\"dottedOverlaySize\":1,\"dottedColorA\":\"transparent\",\"dottedColorB\":\"#000000\",\"shadow\":0,\"useImage\":false,\"image\":\"\",\"imageSourceType\":\"full\",\"fit\":\"cover\",\"position\":\"center center\",\"repeat\":\"no-repeat\"},\"spinner\":{\"color\":\"#ffffff\",\"type\":\"off\"},\"position\":{\"marginTop\":0,\"marginBottom\":0,\"marginLeft\":0,\"marginRight\":0,\"align\":\"center\",\"fixedOnTop\":false,\"addClear\":false}},\"visibility\":{\"hideSelectedLayersUnderLimit\":0,\"hideAllLayersUnderLimit\":0,\"hideSliderUnderLimit\":0},\"general\":{\"slideshow\":{\"slideShow\":false,\"stopOnHover\":false,\"stopSlider\":true,\"stopAfterLoops\":0,\"stopAtSlide\":1,\"shuffle\":false,\"loopSingle\":false,\"viewPort\":false,\"viewPortStart\":\"wait\",\"viewPortArea\":{\"d\":{\"v\":\"200px\",\"e\":false,\"u\":\"\"},\"n\":{\"v\":\"200px\",\"e\":false,\"u\":\"\"},\"t\":{\"v\":\"200px\",\"e\":false,\"u\":\"\"},\"m\":{\"v\":\"200px\",\"e\":false,\"u\":\"\"}},\"presetSliderHeight\":false,\"initDelay\":0,\"waitForInit\":false},\"progressbar\":{\"set\":false,\"alignby\":\"slider\",\"style\":\"horizontal\",\"size\":\"5px\",\"radius\":10,\"vertical\":\"bottom\",\"horizontal\":\"left\",\"x\":0,\"y\":0,\"color\":\"rgba(255,255,255,0.5)\",\"bgcolor\":\"transparent\",\"basedon\":\"slide\",\"gapsize\":0,\"gap\":false,\"gapcolor\":\"rgba(255,255,255,0.5)\",\"reset\":\"reset\",\"visibility\":{\"d\":true,\"m\":true,\"n\":true,\"t\":true}},\"firstSlide\":{\"set\":false,\"duration\":300,\"slotAmount\":7,\"type\":\"fade\",\"alternativeFirstSlideSet\":false,\"alternativeFirstSlide\":1},\"icache\":\"default\",\"DPR\":\"dpr\",\"observeWrap\":false,\"layerSelection\":false,\"lazyLoad\":\"none\",\"nextSlideOnFocus\":false,\"disableFocusListener\":false,\"enableurlhash\":false,\"disableOnMobile\":false,\"autoPlayVideoOnMobile\":true,\"disablePanZoomMobile\":false,\"useWPML\":false,\"perspective\":600,\"perspectiveType\":\"global\"},\"nav\":{\"preview\":{\"width\":50,\"height\":100},\"swipe\":{\"set\":false,\"setOnDesktop\":false,\"setMobileCarousel\":true,\"setDesktopCarousel\":true,\"blockDragVertical\":false,\"direction\":\"horizontal\",\"minTouch\":1,\"velocity\":75},\"keyboard\":{\"direction\":\"horizontal\",\"set\":false},\"mouse\":{\"set\":\"off\",\"reverse\":\"default\",\"viewport\":50,\"calldelay\":1000,\"threshold\":50},\"arrows\":{\"set\":false,\"rtl\":false,\"animSpeed\":\"1000ms\",\"animDelay\":\"1000ms\",\"style\":\"1000\",\"preset\":\"default\",\"presets\":[],\"alwaysOn\":true,\"hideDelay\":200,\"hideDelayMobile\":1200,\"hideOver\":false,\"hideOverLimit\":0,\"hideUnder\":false,\"hideUnderLimit\":778,\"left\":{\"anim\":\"fade\",\"horizontal\":\"left\",\"vertical\":\"center\",\"offsetX\":30,\"offsetY\":0,\"align\":\"slider\"},\"right\":{\"anim\":\"fade\",\"horizontal\":\"right\",\"vertical\":\"center\",\"offsetX\":30,\"offsetY\":0,\"align\":\"slider\"}},\"thumbs\":{\"anim\":\"fade\",\"animSpeed\":\"1000ms\",\"animDelay\":\"1000ms\",\"set\":false,\"rtl\":false,\"style\":\"2000\",\"preset\":\"default\",\"presets\":[],\"alwaysOn\":true,\"hideDelay\":200,\"hideDelayMobile\":1200,\"hideOver\":false,\"hideOverLimit\":0,\"hideUnder\":false,\"hideUnderLimit\":778,\"spanWrapper\":false,\"horizontal\":\"center\",\"vertical\":\"bottom\",\"amount\":5,\"direction\":\"horizontal\",\"height\":50,\"width\":100,\"widthMin\":100,\"innerOuter\":\"inner\",\"offsetX\":0,\"offsetY\":20,\"space\":5,\"align\":\"slider\",\"padding\":5,\"wrapperColor\":\"transparent\",\"mhoffset\":0,\"mvoffset\":0},\"tabs\":{\"anim\":\"fade\",\"animSpeed\":\"1000ms\",\"animDelay\":\"1000ms\",\"set\":false,\"rtl\":false,\"style\":\"4000\",\"preset\":\"default\",\"presets\":[],\"alwaysOn\":true,\"hideDelay\":200,\"hideDelayMobile\":1200,\"hideOver\":false,\"hideOverLimit\":0,\"hideUnder\":false,\"hideUnderLimit\":778,\"spanWrapper\":false,\"horizontal\":\"center\",\"vertical\":\"bottom\",\"amount\":5,\"direction\":\"horizontal\",\"height\":50,\"width\":100,\"widthMin\":100,\"innerOuter\":\"inner\",\"offsetX\":0,\"offsetY\":20,\"space\":5,\"align\":\"slider\",\"padding\":5,\"wrapperColor\":\"transparent\",\"mhoffset\":0,\"mvoffset\":0},\"bullets\":{\"anim\":\"fade\",\"animSpeed\":\"1000ms\",\"animDelay\":\"1000ms\",\"set\":false,\"rtl\":false,\"style\":\"3000\",\"preset\":\"default\",\"presets\":[],\"alwaysOn\":true,\"horizontal\":\"center\",\"vertical\":\"bottom\",\"direction\":\"horizontal\",\"offsetX\":0,\"offsetY\":20,\"align\":\"slider\",\"space\":5,\"hideDelay\":200,\"hideDelayMobile\":1200,\"hideOver\":false,\"hideOverLimit\":0,\"hideUnder\":false,\"hideUnderLimit\":778}},\"troubleshooting\":{\"alternateImageType\":\"off\",\"alternateURL\":\"\",\"jsNoConflict\":false,\"jsInBody\":false,\"outPutFilter\":\"none\",\"simplify_ie8_ios4\":false},\"parallax\":{\"set\":false,\"setDDD\":false,\"disableOnMobile\":false,\"levels\":[5,10,15,20,25,30,35,40,45,46,47,48,49,50,51,30],\"ddd\":{\"BGFreeze\":false,\"layerOverflow\":false,\"overflow\":false,\"shadow\":false,\"zCorrection\":65},\"mouse\":{\"speed\":0,\"bgSpeed\":0,\"layersSpeed\":0,\"origo\":\"slidercenter\",\"type\":\"scroll\"}},\"modal\":{\"bodyclass\":\"\",\"horizontal\":\"center\",\"vertical\":\"middle\",\"cover\":true,\"allowPageScroll\":false,\"coverColor\":\"rgba(0,0,0,0.5)\",\"coverSpeed\":1000},\"scrolleffects\":{\"set\":false,\"setBlur\":false,\"setFade\":false,\"setGrayScale\":false,\"bg\":false,\"direction\":\"both\",\"layers\":false,\"maxBlur\":10,\"multiplicator\":\"1.3\",\"multiplicatorLayers\":\"1.3\",\"disableOnMobile\":false,\"parallaxLayers\":false,\"staticLayers\":false,\"staticParallaxLayers\":false,\"tilt\":30},\"scrolltimeline\":{\"set\":false,\"fixed\":false,\"fixedStart\":2000,\"fixedEnd\":4000,\"layers\":false,\"ease\":\"none\",\"speed\":500,\"pullcontent\":false},\"skins\":{\"colorsAtStart\":false,\"cid\":2,\"colors\":[{\"alias\":\"Highlight\",\"v\":\"#ff0000\",\"ref\":[]},{\"alias\":\"Headline Text\",\"v\":\"#ffffff\",\"ref\":[]},{\"alias\":\"Content Text\",\"v\":\"#00ffff\",\"ref\":[]}]},\"modalshortcode\":\"[rev_slider usage=\\\"modal\\\" alias=\\\"slider-2\\\"][\\/rev_slider]\"}','{\"version\":\"6.6.0\"}',''),(3,'Slider 3','slider-3','{\"addOns\":[],\"version\":\"6.6.0\",\"pakps\":false,\"shortcode\":\"[rev_slider alias=\\\"slider-3\\\"][\\/rev_slider]\",\"type\":\"hero\",\"layouttype\":\"fullwidth\",\"sourcetype\":\"gallery\",\"googleFont\":[],\"id\":\"\",\"class\":\"\",\"wrapperclass\":\"\",\"snap\":{\"adjust\":\"none\",\"snap\":false,\"helpLines\":false,\"gap\":20},\"source\":{\"gallery\":[],\"post\":{\"excerptLimit\":55,\"maxPosts\":30,\"fetchType\":\"cat_tag\",\"category\":\"\",\"sortBy\":\"ID\",\"types\":\"post\",\"list\":\"\",\"sortDirection\":\"DESC\",\"subType\":\"post\"},\"woo\":{\"excerptLimit\":55,\"maxProducts\":30,\"featuredOnly\":false,\"inStockOnly\":false,\"category\":\"\",\"sortBy\":\"ID\",\"types\":\"product\",\"sortDirection\":\"DESC\",\"regPriceFrom\":\"\",\"regPriceTo\":\"\",\"salePriceFrom\":\"\",\"salePriceTo\":\"\"},\"instagram\":{\"count\":8,\"hashTag\":\"\",\"transient\":1200,\"type\":\"user\",\"userId\":\"\",\"token_source\":\"account\",\"connect_with\":\"\"},\"facebook\":{\"album\":\"\",\"appId\":\"\",\"appSecret\":\"\",\"count\":8,\"transient\":1200,\"typeSource\":\"timeline\",\"token_source\":\"account\",\"connect_with\":\"\",\"page_id\":\"\"},\"flickr\":{\"apiKey\":\"\",\"count\":8,\"galleryURL\":\"\",\"groupURL\":\"\",\"photoSet\":\"\",\"transient\":1200,\"type\":\"publicphotos\",\"userURL\":\"\"},\"twitter\":{\"accessSecret\":\"\",\"accessToken\":\"\",\"consumerKey\":\"\",\"consumerSecret\":\"\",\"count\":8,\"excludeReplies\":false,\"imageOnly\":false,\"includeRetweets\":false,\"transient\":1200,\"userId\":\"\"},\"vimeo\":{\"albumId\":\"\",\"channelName\":\"\",\"count\":8,\"transient\":1200,\"groupName\":\"\",\"typeSource\":\"user\",\"userName\":\"\"},\"youtube\":{\"api\":\"\",\"channelId\":\"\",\"count\":8,\"playList\":\"\",\"transient\":1200,\"typeSource\":\"channel\"}},\"def\":{\"intelligentInherit\":true,\"autoResponsive\":true,\"responsiveChilds\":true,\"responsiveOffset\":true,\"transition\":\"fade\",\"transitionDuration\":300,\"delay\":9000,\"background\":{\"fit\":\"cover\",\"fitX\":100,\"fitY\":100,\"position\":\"center center\",\"positionX\":0,\"positionY\":0,\"repeat\":\"no-repeat\",\"imageSourceType\":\"full\"},\"panZoom\":{\"set\":false,\"blurStart\":0,\"blurEnd\":0,\"duration\":10000,\"ease\":\"none\",\"fitEnd\":100,\"fitStart\":100,\"xEnd\":0,\"yEnd\":0,\"xStart\":0,\"yStart\":0,\"rotateStart\":0,\"rotateEnd\":0}},\"size\":{\"enableUpscaling\":false,\"respectAspectRatio\":false,\"disableForceFullWidth\":false,\"custom\":{\"d\":true,\"n\":true,\"t\":false,\"m\":false},\"minHeightFullScreen\":\"\",\"minHeight\":\"\",\"maxWidth\":0,\"maxHeight\":0,\"fullScreenOffsetContainer\":\"\",\"fullScreenOffset\":\"\",\"width\":{\"d\":1240,\"n\":1024,\"t\":778,\"m\":480},\"height\":{\"d\":900,\"n\":768,\"t\":960,\"m\":720},\"editorCache\":{\"d\":900,\"n\":768,\"t\":960,\"m\":720},\"overflow\":false,\"useFullScreenHeight\":true,\"overflowHidden\":false,\"gridEQModule\":false,\"forceOverflow\":false,\"keepBPHeight\":false,\"ignoreHeightChanges\":true},\"codes\":{\"css\":\"\",\"javascript\":\"\"},\"carousel\":{\"justify\":false,\"justifyMaxWidth\":false,\"snap\":true,\"borderRadius\":0,\"borderRadiusUnit\":\"px\",\"ease\":\"power3.inOut\",\"fadeOut\":true,\"scale\":false,\"offsetScale\":false,\"horizontal\":\"center\",\"vertical\":\"center\",\"infinity\":false,\"maxItems\":3,\"maxRotation\":0,\"maxOpacity\":100,\"paddingTop\":0,\"paddingBottom\":0,\"rotation\":false,\"scaleDown\":50,\"space\":0,\"speed\":800,\"stretch\":false,\"varyFade\":false,\"varyRotate\":false,\"varyScale\":false,\"showAllLayers\":\"false\"},\"hero\":{\"activeSlide\":-1},\"layout\":{\"bg\":{\"color\":\"transparent\",\"padding\":0,\"dottedOverlay\":\"none\",\"dottedOverlaySize\":1,\"dottedColorA\":\"transparent\",\"dottedColorB\":\"#000000\",\"shadow\":0,\"useImage\":false,\"image\":\"\",\"imageSourceType\":\"full\",\"fit\":\"cover\",\"position\":\"center center\",\"repeat\":\"no-repeat\"},\"spinner\":{\"color\":\"#ffffff\",\"type\":\"off\"},\"position\":{\"marginTop\":0,\"marginBottom\":0,\"marginLeft\":0,\"marginRight\":0,\"align\":\"center\",\"fixedOnTop\":false,\"addClear\":false}},\"visibility\":{\"hideSelectedLayersUnderLimit\":0,\"hideAllLayersUnderLimit\":0,\"hideSliderUnderLimit\":0},\"general\":{\"slideshow\":{\"slideShow\":true,\"stopOnHover\":false,\"stopSlider\":false,\"stopAfterLoops\":0,\"stopAtSlide\":1,\"shuffle\":false,\"loopSingle\":false,\"viewPort\":false,\"viewPortStart\":\"wait\",\"viewPortArea\":{\"d\":{\"v\":\"200px\",\"e\":false,\"u\":\"\"},\"n\":{\"v\":\"200px\",\"e\":false,\"u\":\"\"},\"t\":{\"v\":\"200px\",\"e\":false,\"u\":\"\"},\"m\":{\"v\":\"200px\",\"e\":false,\"u\":\"\"}},\"presetSliderHeight\":false,\"initDelay\":0,\"waitForInit\":false},\"progressbar\":{\"set\":false,\"alignby\":\"slider\",\"style\":\"horizontal\",\"size\":\"5px\",\"radius\":10,\"vertical\":\"bottom\",\"horizontal\":\"left\",\"x\":0,\"y\":0,\"color\":\"rgba(255,255,255,0.5)\",\"bgcolor\":\"transparent\",\"basedon\":\"slide\",\"gapsize\":0,\"gap\":false,\"gapcolor\":\"rgba(255,255,255,0.5)\",\"reset\":\"reset\",\"visibility\":{\"d\":true,\"m\":true,\"n\":true,\"t\":true}},\"firstSlide\":{\"set\":false,\"duration\":300,\"slotAmount\":7,\"type\":\"fade\",\"alternativeFirstSlideSet\":false,\"alternativeFirstSlide\":1},\"icache\":\"default\",\"DPR\":\"dpr\",\"observeWrap\":false,\"layerSelection\":false,\"lazyLoad\":\"none\",\"nextSlideOnFocus\":false,\"disableFocusListener\":false,\"enableurlhash\":false,\"disableOnMobile\":false,\"autoPlayVideoOnMobile\":true,\"disablePanZoomMobile\":false,\"useWPML\":false,\"perspective\":600,\"perspectiveType\":\"global\"},\"nav\":{\"preview\":{\"width\":50,\"height\":100},\"swipe\":{\"set\":false,\"setOnDesktop\":false,\"setMobileCarousel\":true,\"setDesktopCarousel\":true,\"blockDragVertical\":false,\"direction\":\"horizontal\",\"minTouch\":1,\"velocity\":75},\"keyboard\":{\"direction\":\"horizontal\",\"set\":false},\"mouse\":{\"set\":\"off\",\"reverse\":\"default\",\"viewport\":50,\"calldelay\":1000,\"threshold\":50},\"arrows\":{\"set\":false,\"rtl\":false,\"animSpeed\":\"1000ms\",\"animDelay\":\"1000ms\",\"style\":\"1000\",\"preset\":\"default\",\"presets\":[],\"alwaysOn\":true,\"hideDelay\":200,\"hideDelayMobile\":1200,\"hideOver\":false,\"hideOverLimit\":0,\"hideUnder\":false,\"hideUnderLimit\":778,\"left\":{\"anim\":\"fade\",\"horizontal\":\"left\",\"vertical\":\"center\",\"offsetX\":30,\"offsetY\":0,\"align\":\"slider\"},\"right\":{\"anim\":\"fade\",\"horizontal\":\"right\",\"vertical\":\"center\",\"offsetX\":30,\"offsetY\":0,\"align\":\"slider\"}},\"thumbs\":{\"anim\":\"fade\",\"animSpeed\":\"1000ms\",\"animDelay\":\"1000ms\",\"set\":false,\"rtl\":false,\"style\":\"2000\",\"preset\":\"default\",\"presets\":[],\"alwaysOn\":true,\"hideDelay\":200,\"hideDelayMobile\":1200,\"hideOver\":false,\"hideOverLimit\":0,\"hideUnder\":false,\"hideUnderLimit\":778,\"spanWrapper\":false,\"horizontal\":\"center\",\"vertical\":\"bottom\",\"amount\":5,\"direction\":\"horizontal\",\"height\":50,\"width\":100,\"widthMin\":100,\"innerOuter\":\"inner\",\"offsetX\":0,\"offsetY\":20,\"space\":5,\"align\":\"slider\",\"padding\":5,\"wrapperColor\":\"transparent\",\"mhoffset\":0,\"mvoffset\":0},\"tabs\":{\"anim\":\"fade\",\"animSpeed\":\"1000ms\",\"animDelay\":\"1000ms\",\"set\":false,\"rtl\":false,\"style\":\"4000\",\"preset\":\"default\",\"presets\":[],\"alwaysOn\":true,\"hideDelay\":200,\"hideDelayMobile\":1200,\"hideOver\":false,\"hideOverLimit\":0,\"hideUnder\":false,\"hideUnderLimit\":778,\"spanWrapper\":false,\"horizontal\":\"center\",\"vertical\":\"bottom\",\"amount\":5,\"direction\":\"horizontal\",\"height\":50,\"width\":100,\"widthMin\":100,\"innerOuter\":\"inner\",\"offsetX\":0,\"offsetY\":20,\"space\":5,\"align\":\"slider\",\"padding\":5,\"wrapperColor\":\"transparent\",\"mhoffset\":0,\"mvoffset\":0},\"bullets\":{\"anim\":\"fade\",\"animSpeed\":\"1000ms\",\"animDelay\":\"1000ms\",\"set\":false,\"rtl\":false,\"style\":\"3000\",\"preset\":\"default\",\"presets\":[],\"alwaysOn\":true,\"horizontal\":\"center\",\"vertical\":\"bottom\",\"direction\":\"horizontal\",\"offsetX\":0,\"offsetY\":20,\"align\":\"slider\",\"space\":5,\"hideDelay\":200,\"hideDelayMobile\":1200,\"hideOver\":false,\"hideOverLimit\":0,\"hideUnder\":false,\"hideUnderLimit\":778}},\"troubleshooting\":{\"alternateImageType\":\"off\",\"alternateURL\":\"\",\"jsNoConflict\":false,\"jsInBody\":false,\"outPutFilter\":\"none\",\"simplify_ie8_ios4\":false},\"parallax\":{\"set\":false,\"setDDD\":false,\"disableOnMobile\":false,\"levels\":[5,10,15,20,25,30,35,40,45,46,47,48,49,50,51,30],\"ddd\":{\"BGFreeze\":false,\"layerOverflow\":false,\"overflow\":false,\"shadow\":false,\"zCorrection\":65},\"mouse\":{\"speed\":0,\"bgSpeed\":0,\"layersSpeed\":0,\"origo\":\"slidercenter\",\"type\":\"scroll\"}},\"modal\":{\"bodyclass\":\"\",\"horizontal\":\"center\",\"vertical\":\"middle\",\"cover\":true,\"allowPageScroll\":false,\"coverColor\":\"rgba(0,0,0,0.5)\",\"coverSpeed\":1000},\"scrolleffects\":{\"set\":false,\"setBlur\":false,\"setFade\":false,\"setGrayScale\":false,\"bg\":false,\"direction\":\"both\",\"layers\":false,\"maxBlur\":10,\"multiplicator\":\"1.3\",\"multiplicatorLayers\":\"1.3\",\"disableOnMobile\":false,\"parallaxLayers\":false,\"staticLayers\":false,\"staticParallaxLayers\":false,\"tilt\":30},\"scrolltimeline\":{\"set\":false,\"fixed\":false,\"fixedStart\":2000,\"fixedEnd\":4000,\"layers\":false,\"ease\":\"none\",\"speed\":500,\"pullcontent\":false},\"skins\":{\"colorsAtStart\":false,\"cid\":2,\"colors\":[{\"alias\":\"Highlight\",\"v\":\"#ff0000\"},{\"alias\":\"Headline Text\",\"v\":\"#ffffff\"},{\"alias\":\"Content Text\",\"v\":\"#00ffff\"}]},\"modalshortcode\":\"[rev_slider usage=\\\"modal\\\" alias=\\\"slider-3\\\"][\\/rev_slider]\"}','{\"version\":\"6.6.0\"}',''),(4,'Slider 4','slider-4','{\"version\":\"6.6.0\"}','{\"version\":\"6.6.0\"}',''),(5,'Slider 3 1','slider-3-1','{\"addOns\":[],\"version\":\"6.6.0\",\"pakps\":false,\"shortcode\":\"[rev_slider alias=\\\"slider-3-1\\\"][\\/rev_slider]\",\"type\":\"hero\",\"layouttype\":\"fullwidth\",\"sourcetype\":\"gallery\",\"googleFont\":[],\"id\":\"\",\"class\":\"\",\"wrapperclass\":\"\",\"snap\":{\"adjust\":\"grid\",\"snap\":false,\"helpLines\":false,\"gap\":10},\"source\":{\"gallery\":[],\"post\":{\"excerptLimit\":55,\"maxPosts\":30,\"fetchType\":\"cat_tag\",\"category\":\"\",\"sortBy\":\"ID\",\"types\":\"post\",\"list\":\"\",\"sortDirection\":\"DESC\",\"subType\":\"post\"},\"woo\":{\"excerptLimit\":55,\"maxProducts\":30,\"featuredOnly\":false,\"inStockOnly\":false,\"category\":\"\",\"sortBy\":\"ID\",\"types\":\"product\",\"sortDirection\":\"DESC\",\"regPriceFrom\":\"\",\"regPriceTo\":\"\",\"salePriceFrom\":\"\",\"salePriceTo\":\"\"},\"instagram\":{\"count\":8,\"hashTag\":\"\",\"transient\":1200,\"type\":\"user\",\"userId\":\"\",\"token_source\":\"account\",\"connect_with\":\"\"},\"facebook\":{\"album\":\"\",\"appId\":\"\",\"appSecret\":\"\",\"count\":8,\"transient\":1200,\"typeSource\":\"timeline\",\"token_source\":\"account\",\"connect_with\":\"\",\"page_id\":\"\"},\"flickr\":{\"apiKey\":\"\",\"count\":8,\"galleryURL\":\"\",\"groupURL\":\"\",\"photoSet\":\"\",\"transient\":1200,\"type\":\"publicphotos\",\"userURL\":\"\"},\"twitter\":{\"accessSecret\":\"\",\"accessToken\":\"\",\"consumerKey\":\"\",\"consumerSecret\":\"\",\"count\":8,\"excludeReplies\":false,\"imageOnly\":false,\"includeRetweets\":false,\"transient\":1200,\"userId\":\"\"},\"vimeo\":{\"albumId\":\"\",\"channelName\":\"\",\"count\":8,\"transient\":1200,\"groupName\":\"\",\"typeSource\":\"user\",\"userName\":\"\"},\"youtube\":{\"api\":\"\",\"channelId\":\"\",\"count\":8,\"playList\":\"\",\"transient\":1200,\"typeSource\":\"channel\"}},\"def\":{\"intelligentInherit\":true,\"autoResponsive\":true,\"responsiveChilds\":true,\"responsiveOffset\":true,\"transition\":\"fade\",\"transitionDuration\":300,\"delay\":9000,\"background\":{\"fit\":\"cover\",\"fitX\":100,\"fitY\":100,\"position\":\"center center\",\"positionX\":0,\"positionY\":0,\"repeat\":\"no-repeat\",\"imageSourceType\":\"full\"},\"panZoom\":{\"set\":false,\"blurStart\":0,\"blurEnd\":0,\"duration\":10000,\"ease\":\"none\",\"fitEnd\":100,\"fitStart\":100,\"xEnd\":0,\"yEnd\":0,\"xStart\":0,\"yStart\":0,\"rotateStart\":0,\"rotateEnd\":0}},\"size\":{\"enableUpscaling\":false,\"respectAspectRatio\":false,\"disableForceFullWidth\":false,\"custom\":{\"d\":true,\"n\":false,\"t\":false,\"m\":false},\"minHeightFullScreen\":\"\",\"minHeight\":\"\",\"maxWidth\":0,\"maxHeight\":0,\"fullScreenOffsetContainer\":\"\",\"fullScreenOffset\":\"\",\"width\":{\"d\":\"1920px\",\"n\":1024,\"t\":778,\"m\":480},\"height\":{\"d\":\"900px\",\"n\":768,\"t\":960,\"m\":720},\"editorCache\":{\"d\":900,\"n\":480,\"t\":490,\"m\":413},\"overflow\":false,\"useFullScreenHeight\":true,\"overflowHidden\":false,\"gridEQModule\":false,\"forceOverflow\":false,\"keepBPHeight\":false,\"ignoreHeightChanges\":true},\"codes\":{\"css\":\"\",\"javascript\":\"\"},\"carousel\":{\"justify\":false,\"justifyMaxWidth\":false,\"snap\":true,\"borderRadius\":0,\"borderRadiusUnit\":\"px\",\"ease\":\"power3.inOut\",\"fadeOut\":true,\"scale\":false,\"offsetScale\":false,\"horizontal\":\"center\",\"vertical\":\"center\",\"infinity\":false,\"maxItems\":3,\"maxRotation\":0,\"maxOpacity\":100,\"paddingTop\":0,\"paddingBottom\":0,\"rotation\":false,\"scaleDown\":50,\"space\":0,\"speed\":800,\"stretch\":false,\"varyFade\":false,\"varyRotate\":false,\"varyScale\":false,\"showAllLayers\":\"false\"},\"hero\":{\"activeSlide\":-1},\"layout\":{\"bg\":{\"color\":\"transparent\",\"padding\":0,\"dottedOverlay\":\"none\",\"dottedOverlaySize\":1,\"dottedColorA\":\"transparent\",\"dottedColorB\":\"#000000\",\"shadow\":0,\"useImage\":false,\"image\":\"\",\"imageSourceType\":\"full\",\"fit\":\"cover\",\"position\":\"center center\",\"repeat\":\"no-repeat\"},\"spinner\":{\"color\":\"#ffffff\",\"type\":\"off\"},\"position\":{\"marginTop\":0,\"marginBottom\":0,\"marginLeft\":0,\"marginRight\":0,\"align\":\"center\",\"fixedOnTop\":false,\"addClear\":false}},\"visibility\":{\"hideSelectedLayersUnderLimit\":0,\"hideAllLayersUnderLimit\":0,\"hideSliderUnderLimit\":0},\"general\":{\"slideshow\":{\"slideShow\":true,\"stopOnHover\":false,\"stopSlider\":false,\"stopAfterLoops\":0,\"stopAtSlide\":1,\"shuffle\":false,\"loopSingle\":false,\"viewPort\":false,\"viewPortStart\":\"wait\",\"viewPortArea\":{\"d\":{\"v\":\"200px\",\"e\":false,\"u\":\"\"},\"n\":{\"v\":\"200px\",\"e\":false,\"u\":\"\"},\"t\":{\"v\":\"200px\",\"e\":false,\"u\":\"\"},\"m\":{\"v\":\"200px\",\"e\":false,\"u\":\"\"}},\"presetSliderHeight\":false,\"initDelay\":0,\"waitForInit\":false},\"progressbar\":{\"set\":false,\"alignby\":\"slider\",\"style\":\"horizontal\",\"size\":\"5px\",\"radius\":10,\"vertical\":\"bottom\",\"horizontal\":\"left\",\"x\":0,\"y\":0,\"color\":\"rgba(255,255,255,0.5)\",\"bgcolor\":\"transparent\",\"basedon\":\"slide\",\"gapsize\":0,\"gap\":false,\"gapcolor\":\"rgba(255,255,255,0.5)\",\"reset\":\"reset\",\"visibility\":{\"d\":true,\"m\":true,\"n\":true,\"t\":true}},\"firstSlide\":{\"set\":false,\"duration\":300,\"slotAmount\":7,\"type\":\"fade\",\"alternativeFirstSlideSet\":false,\"alternativeFirstSlide\":1},\"icache\":\"default\",\"DPR\":\"dpr\",\"observeWrap\":false,\"layerSelection\":false,\"lazyLoad\":\"none\",\"nextSlideOnFocus\":false,\"disableFocusListener\":false,\"enableurlhash\":false,\"disableOnMobile\":false,\"autoPlayVideoOnMobile\":true,\"disablePanZoomMobile\":false,\"useWPML\":false,\"perspective\":600,\"perspectiveType\":\"global\"},\"nav\":{\"preview\":{\"width\":50,\"height\":100},\"swipe\":{\"set\":false,\"setOnDesktop\":false,\"setMobileCarousel\":true,\"setDesktopCarousel\":true,\"blockDragVertical\":false,\"direction\":\"horizontal\",\"minTouch\":1,\"velocity\":75},\"keyboard\":{\"direction\":\"horizontal\",\"set\":false},\"mouse\":{\"set\":\"off\",\"reverse\":\"default\",\"viewport\":50,\"calldelay\":1000,\"threshold\":50},\"arrows\":{\"set\":false,\"rtl\":false,\"animSpeed\":\"1000ms\",\"animDelay\":\"1000ms\",\"style\":\"1000\",\"preset\":\"default\",\"presets\":[],\"alwaysOn\":true,\"hideDelay\":200,\"hideDelayMobile\":1200,\"hideOver\":false,\"hideOverLimit\":0,\"hideUnder\":false,\"hideUnderLimit\":778,\"left\":{\"anim\":\"fade\",\"horizontal\":\"left\",\"vertical\":\"center\",\"offsetX\":30,\"offsetY\":0,\"align\":\"slider\"},\"right\":{\"anim\":\"fade\",\"horizontal\":\"right\",\"vertical\":\"center\",\"offsetX\":30,\"offsetY\":0,\"align\":\"slider\"}},\"thumbs\":{\"anim\":\"fade\",\"animSpeed\":\"1000ms\",\"animDelay\":\"1000ms\",\"set\":false,\"rtl\":false,\"style\":\"2000\",\"preset\":\"default\",\"presets\":[],\"alwaysOn\":true,\"hideDelay\":200,\"hideDelayMobile\":1200,\"hideOver\":false,\"hideOverLimit\":0,\"hideUnder\":false,\"hideUnderLimit\":778,\"spanWrapper\":false,\"horizontal\":\"center\",\"vertical\":\"bottom\",\"amount\":5,\"direction\":\"horizontal\",\"height\":50,\"width\":100,\"widthMin\":100,\"innerOuter\":\"inner\",\"offsetX\":0,\"offsetY\":20,\"space\":5,\"align\":\"slider\",\"padding\":5,\"wrapperColor\":\"transparent\",\"mhoffset\":0,\"mvoffset\":0},\"tabs\":{\"anim\":\"fade\",\"animSpeed\":\"1000ms\",\"animDelay\":\"1000ms\",\"set\":false,\"rtl\":false,\"style\":\"4000\",\"preset\":\"default\",\"presets\":[],\"alwaysOn\":true,\"hideDelay\":200,\"hideDelayMobile\":1200,\"hideOver\":false,\"hideOverLimit\":0,\"hideUnder\":false,\"hideUnderLimit\":778,\"spanWrapper\":false,\"horizontal\":\"center\",\"vertical\":\"bottom\",\"amount\":5,\"direction\":\"horizontal\",\"height\":50,\"width\":100,\"widthMin\":100,\"innerOuter\":\"inner\",\"offsetX\":0,\"offsetY\":20,\"space\":5,\"align\":\"slider\",\"padding\":5,\"wrapperColor\":\"transparent\",\"mhoffset\":0,\"mvoffset\":0},\"bullets\":{\"anim\":\"fade\",\"animSpeed\":\"1000ms\",\"animDelay\":\"1000ms\",\"set\":false,\"rtl\":false,\"style\":\"3000\",\"preset\":\"default\",\"presets\":[],\"alwaysOn\":true,\"horizontal\":\"center\",\"vertical\":\"bottom\",\"direction\":\"horizontal\",\"offsetX\":0,\"offsetY\":20,\"align\":\"slider\",\"space\":5,\"hideDelay\":200,\"hideDelayMobile\":1200,\"hideOver\":false,\"hideOverLimit\":0,\"hideUnder\":false,\"hideUnderLimit\":778}},\"troubleshooting\":{\"alternateImageType\":\"off\",\"alternateURL\":\"\",\"jsNoConflict\":false,\"jsInBody\":false,\"outPutFilter\":\"none\",\"simplify_ie8_ios4\":false},\"parallax\":{\"set\":false,\"setDDD\":false,\"disableOnMobile\":false,\"levels\":[5,10,15,20,25,30,35,40,45,46,47,48,49,50,51,30],\"ddd\":{\"BGFreeze\":false,\"layerOverflow\":false,\"overflow\":false,\"shadow\":false,\"zCorrection\":65},\"mouse\":{\"speed\":0,\"bgSpeed\":0,\"layersSpeed\":0,\"origo\":\"slidercenter\",\"type\":\"scroll\"}},\"modal\":{\"bodyclass\":\"\",\"horizontal\":\"center\",\"vertical\":\"middle\",\"cover\":true,\"allowPageScroll\":false,\"coverColor\":\"rgba(0,0,0,0.5)\",\"coverSpeed\":1000},\"scrolleffects\":{\"set\":false,\"setBlur\":false,\"setFade\":false,\"setGrayScale\":false,\"bg\":false,\"direction\":\"both\",\"layers\":false,\"maxBlur\":10,\"multiplicator\":\"1.3\",\"multiplicatorLayers\":\"1.3\",\"disableOnMobile\":false,\"parallaxLayers\":false,\"staticLayers\":false,\"staticParallaxLayers\":false,\"tilt\":30},\"scrolltimeline\":{\"set\":false,\"fixed\":false,\"fixedStart\":2000,\"fixedEnd\":4000,\"layers\":false,\"ease\":\"none\",\"speed\":500,\"pullcontent\":false},\"skins\":{\"colorsAtStart\":false,\"cid\":2,\"colors\":[{\"alias\":\"Highlight\",\"v\":\"#ff0000\",\"ref\":[]},{\"alias\":\"Headline Text\",\"v\":\"#ffffff\",\"ref\":[]},{\"alias\":\"Content Text\",\"v\":\"#00ffff\",\"ref\":[]}]},\"modalshortcode\":\"[rev_slider usage=\\\"modal\\\" alias=\\\"slider-3-1\\\"][\\/rev_slider]\"}','{\"version\":\"6.6.0\"}',''),(6,'Slider 3 1 1','slider-3-1-1','{\"addOns\":[],\"version\":\"6.6.0\",\"pakps\":false,\"shortcode\":\"[rev_slider alias=\\\"slider-3-1-1\\\"][\\/rev_slider]\",\"type\":\"standard\",\"layouttype\":\"fullwidth\",\"sourcetype\":\"gallery\",\"googleFont\":[],\"id\":\"\",\"class\":\"\",\"wrapperclass\":\"\",\"snap\":{\"adjust\":\"grid\",\"snap\":false,\"helpLines\":false,\"gap\":10},\"source\":{\"gallery\":[],\"post\":{\"excerptLimit\":55,\"maxPosts\":30,\"fetchType\":\"cat_tag\",\"category\":\"\",\"sortBy\":\"ID\",\"types\":\"post\",\"list\":\"\",\"sortDirection\":\"DESC\",\"subType\":\"post\"},\"woo\":{\"excerptLimit\":55,\"maxProducts\":30,\"featuredOnly\":false,\"inStockOnly\":false,\"category\":\"\",\"sortBy\":\"ID\",\"types\":\"product\",\"sortDirection\":\"DESC\",\"regPriceFrom\":\"\",\"regPriceTo\":\"\",\"salePriceFrom\":\"\",\"salePriceTo\":\"\"},\"instagram\":{\"count\":8,\"hashTag\":\"\",\"transient\":1200,\"type\":\"user\",\"userId\":\"\",\"token_source\":\"account\",\"connect_with\":\"\"},\"facebook\":{\"album\":\"\",\"appId\":\"\",\"appSecret\":\"\",\"count\":8,\"transient\":1200,\"typeSource\":\"timeline\",\"token_source\":\"account\",\"connect_with\":\"\",\"page_id\":\"\"},\"flickr\":{\"apiKey\":\"\",\"count\":8,\"galleryURL\":\"\",\"groupURL\":\"\",\"photoSet\":\"\",\"transient\":1200,\"type\":\"publicphotos\",\"userURL\":\"\"},\"twitter\":{\"accessSecret\":\"\",\"accessToken\":\"\",\"consumerKey\":\"\",\"consumerSecret\":\"\",\"count\":8,\"excludeReplies\":false,\"imageOnly\":false,\"includeRetweets\":false,\"transient\":1200,\"userId\":\"\"},\"vimeo\":{\"albumId\":\"\",\"channelName\":\"\",\"count\":8,\"transient\":1200,\"groupName\":\"\",\"typeSource\":\"user\",\"userName\":\"\"},\"youtube\":{\"api\":\"\",\"channelId\":\"\",\"count\":8,\"playList\":\"\",\"transient\":1200,\"typeSource\":\"channel\"}},\"def\":{\"intelligentInherit\":true,\"autoResponsive\":true,\"responsiveChilds\":true,\"responsiveOffset\":true,\"transition\":\"fade\",\"transitionDuration\":300,\"delay\":9000,\"background\":{\"fit\":\"cover\",\"fitX\":100,\"fitY\":100,\"position\":\"center center\",\"positionX\":0,\"positionY\":0,\"repeat\":\"no-repeat\",\"imageSourceType\":\"full\"},\"panZoom\":{\"set\":false,\"blurStart\":0,\"blurEnd\":0,\"duration\":10000,\"ease\":\"none\",\"fitEnd\":100,\"fitStart\":100,\"xEnd\":0,\"yEnd\":0,\"xStart\":0,\"yStart\":0,\"rotateStart\":0,\"rotateEnd\":0}},\"size\":{\"enableUpscaling\":false,\"respectAspectRatio\":false,\"disableForceFullWidth\":false,\"custom\":{\"d\":true,\"n\":false,\"t\":false,\"m\":false},\"minHeightFullScreen\":\"\",\"minHeight\":\"\",\"maxWidth\":0,\"maxHeight\":0,\"fullScreenOffsetContainer\":\"\",\"fullScreenOffset\":\"\",\"width\":{\"d\":\"1920px\",\"n\":1024,\"t\":778,\"m\":480},\"height\":{\"d\":\"900px\",\"n\":768,\"t\":960,\"m\":720},\"editorCache\":{\"d\":900,\"n\":480,\"t\":490,\"m\":413},\"overflow\":false,\"useFullScreenHeight\":true,\"overflowHidden\":false,\"gridEQModule\":false,\"forceOverflow\":false,\"keepBPHeight\":false,\"ignoreHeightChanges\":true},\"codes\":{\"css\":\"\",\"javascript\":\"\"},\"carousel\":{\"justify\":false,\"justifyMaxWidth\":false,\"snap\":true,\"borderRadius\":0,\"borderRadiusUnit\":\"px\",\"ease\":\"power3.inOut\",\"fadeOut\":true,\"scale\":false,\"offsetScale\":false,\"horizontal\":\"center\",\"vertical\":\"center\",\"infinity\":false,\"maxItems\":3,\"maxRotation\":0,\"maxOpacity\":100,\"paddingTop\":0,\"paddingBottom\":0,\"rotation\":false,\"scaleDown\":50,\"space\":0,\"speed\":800,\"stretch\":false,\"varyFade\":false,\"varyRotate\":false,\"varyScale\":false,\"showAllLayers\":\"false\"},\"hero\":{\"activeSlide\":-1},\"layout\":{\"bg\":{\"color\":\"transparent\",\"padding\":0,\"dottedOverlay\":\"none\",\"dottedOverlaySize\":1,\"dottedColorA\":\"transparent\",\"dottedColorB\":\"#000000\",\"shadow\":0,\"useImage\":false,\"image\":\"\",\"imageSourceType\":\"full\",\"fit\":\"cover\",\"position\":\"center center\",\"repeat\":\"no-repeat\"},\"spinner\":{\"color\":\"#ffffff\",\"type\":\"off\"},\"position\":{\"marginTop\":0,\"marginBottom\":0,\"marginLeft\":0,\"marginRight\":0,\"align\":\"center\",\"fixedOnTop\":false,\"addClear\":false}},\"visibility\":{\"hideSelectedLayersUnderLimit\":0,\"hideAllLayersUnderLimit\":0,\"hideSliderUnderLimit\":0},\"general\":{\"slideshow\":{\"slideShow\":true,\"stopOnHover\":false,\"stopSlider\":false,\"stopAfterLoops\":0,\"stopAtSlide\":1,\"shuffle\":false,\"loopSingle\":false,\"viewPort\":false,\"viewPortStart\":\"wait\",\"viewPortArea\":{\"d\":{\"v\":\"200px\",\"e\":false,\"u\":\"\"},\"n\":{\"v\":\"200px\",\"e\":false,\"u\":\"\"},\"t\":{\"v\":\"200px\",\"e\":false,\"u\":\"\"},\"m\":{\"v\":\"200px\",\"e\":false,\"u\":\"\"}},\"presetSliderHeight\":false,\"initDelay\":0,\"waitForInit\":false},\"progressbar\":{\"set\":false,\"alignby\":\"slider\",\"style\":\"horizontal\",\"size\":\"5px\",\"radius\":10,\"vertical\":\"bottom\",\"horizontal\":\"left\",\"x\":0,\"y\":0,\"color\":\"rgba(255,255,255,0.5)\",\"bgcolor\":\"transparent\",\"basedon\":\"slide\",\"gapsize\":0,\"gap\":false,\"gapcolor\":\"rgba(255,255,255,0.5)\",\"reset\":\"reset\",\"visibility\":{\"d\":true,\"m\":true,\"n\":true,\"t\":true}},\"firstSlide\":{\"set\":false,\"duration\":300,\"slotAmount\":7,\"type\":\"fade\",\"alternativeFirstSlideSet\":false,\"alternativeFirstSlide\":1},\"icache\":\"default\",\"DPR\":\"dpr\",\"observeWrap\":false,\"layerSelection\":false,\"lazyLoad\":\"none\",\"nextSlideOnFocus\":false,\"disableFocusListener\":false,\"enableurlhash\":false,\"disableOnMobile\":false,\"autoPlayVideoOnMobile\":true,\"disablePanZoomMobile\":false,\"useWPML\":false,\"perspective\":600,\"perspectiveType\":\"global\"},\"nav\":{\"preview\":{\"width\":50,\"height\":100},\"swipe\":{\"set\":false,\"setOnDesktop\":false,\"setMobileCarousel\":true,\"setDesktopCarousel\":true,\"blockDragVertical\":false,\"direction\":\"horizontal\",\"minTouch\":1,\"velocity\":75},\"keyboard\":{\"direction\":\"horizontal\",\"set\":false},\"mouse\":{\"set\":\"off\",\"reverse\":\"default\",\"viewport\":50,\"calldelay\":1000,\"threshold\":50},\"arrows\":{\"set\":false,\"rtl\":false,\"animSpeed\":\"1000ms\",\"animDelay\":\"1000ms\",\"style\":\"1000\",\"preset\":\"default\",\"presets\":[],\"alwaysOn\":true,\"hideDelay\":200,\"hideDelayMobile\":1200,\"hideOver\":false,\"hideOverLimit\":0,\"hideUnder\":false,\"hideUnderLimit\":778,\"left\":{\"anim\":\"fade\",\"horizontal\":\"left\",\"vertical\":\"center\",\"offsetX\":30,\"offsetY\":0,\"align\":\"slider\"},\"right\":{\"anim\":\"fade\",\"horizontal\":\"right\",\"vertical\":\"center\",\"offsetX\":30,\"offsetY\":0,\"align\":\"slider\"}},\"thumbs\":{\"anim\":\"fade\",\"animSpeed\":\"1000ms\",\"animDelay\":\"1000ms\",\"set\":false,\"rtl\":false,\"style\":\"2000\",\"preset\":\"default\",\"presets\":[],\"alwaysOn\":true,\"hideDelay\":200,\"hideDelayMobile\":1200,\"hideOver\":false,\"hideOverLimit\":0,\"hideUnder\":false,\"hideUnderLimit\":778,\"spanWrapper\":false,\"horizontal\":\"center\",\"vertical\":\"bottom\",\"amount\":5,\"direction\":\"horizontal\",\"height\":50,\"width\":100,\"widthMin\":100,\"innerOuter\":\"inner\",\"offsetX\":0,\"offsetY\":20,\"space\":5,\"align\":\"slider\",\"padding\":5,\"wrapperColor\":\"transparent\",\"mhoffset\":0,\"mvoffset\":0},\"tabs\":{\"anim\":\"fade\",\"animSpeed\":\"1000ms\",\"animDelay\":\"1000ms\",\"set\":false,\"rtl\":false,\"style\":\"4000\",\"preset\":\"default\",\"presets\":[],\"alwaysOn\":true,\"hideDelay\":200,\"hideDelayMobile\":1200,\"hideOver\":false,\"hideOverLimit\":0,\"hideUnder\":false,\"hideUnderLimit\":778,\"spanWrapper\":false,\"horizontal\":\"center\",\"vertical\":\"bottom\",\"amount\":5,\"direction\":\"horizontal\",\"height\":50,\"width\":100,\"widthMin\":100,\"innerOuter\":\"inner\",\"offsetX\":0,\"offsetY\":20,\"space\":5,\"align\":\"slider\",\"padding\":5,\"wrapperColor\":\"transparent\",\"mhoffset\":0,\"mvoffset\":0},\"bullets\":{\"anim\":\"fade\",\"animSpeed\":\"1000ms\",\"animDelay\":\"1000ms\",\"set\":false,\"rtl\":false,\"style\":\"3000\",\"preset\":\"default\",\"presets\":[],\"alwaysOn\":true,\"horizontal\":\"center\",\"vertical\":\"bottom\",\"direction\":\"horizontal\",\"offsetX\":0,\"offsetY\":20,\"align\":\"slider\",\"space\":5,\"hideDelay\":200,\"hideDelayMobile\":1200,\"hideOver\":false,\"hideOverLimit\":0,\"hideUnder\":false,\"hideUnderLimit\":778}},\"troubleshooting\":{\"alternateImageType\":\"off\",\"alternateURL\":\"\",\"jsNoConflict\":false,\"jsInBody\":false,\"outPutFilter\":\"none\",\"simplify_ie8_ios4\":false},\"parallax\":{\"set\":false,\"setDDD\":false,\"disableOnMobile\":false,\"levels\":[5,10,15,20,25,30,35,40,45,46,47,48,49,50,51,30],\"ddd\":{\"BGFreeze\":false,\"layerOverflow\":false,\"overflow\":false,\"shadow\":false,\"zCorrection\":65},\"mouse\":{\"speed\":0,\"bgSpeed\":0,\"layersSpeed\":0,\"origo\":\"slidercenter\",\"type\":\"scroll\"}},\"modal\":{\"bodyclass\":\"\",\"horizontal\":\"center\",\"vertical\":\"middle\",\"cover\":true,\"allowPageScroll\":false,\"coverColor\":\"rgba(0,0,0,0.5)\",\"coverSpeed\":1000},\"scrolleffects\":{\"set\":false,\"setBlur\":false,\"setFade\":false,\"setGrayScale\":false,\"bg\":false,\"direction\":\"both\",\"layers\":false,\"maxBlur\":10,\"multiplicator\":\"1.3\",\"multiplicatorLayers\":\"1.3\",\"disableOnMobile\":false,\"parallaxLayers\":false,\"staticLayers\":false,\"staticParallaxLayers\":false,\"tilt\":30},\"scrolltimeline\":{\"set\":false,\"fixed\":false,\"fixedStart\":2000,\"fixedEnd\":4000,\"layers\":false,\"ease\":\"none\",\"speed\":500,\"pullcontent\":false},\"skins\":{\"colorsAtStart\":false,\"cid\":2,\"colors\":[{\"alias\":\"Highlight\",\"v\":\"#ff0000\",\"ref\":[]},{\"alias\":\"Headline Text\",\"v\":\"#ffffff\",\"ref\":[]},{\"alias\":\"Content Text\",\"v\":\"#00ffff\",\"ref\":[]}]},\"modalshortcode\":\"[rev_slider usage=\\\"modal\\\" alias=\\\"slider-3-1-1\\\"][\\/rev_slider]\"}','{\"version\":\"6.6.0\"}',''),(7,'Slider 3 1 1 1','slider-3-1-1-1','{\"addOns\":[],\"version\":\"6.6.15\",\"pakps\":false,\"shortcode\":\"[rev_slider alias=\\\"slider-3-1-1-1\\\"][\\/rev_slider]\",\"type\":\"standard\",\"layouttype\":\"fullwidth\",\"sourcetype\":\"gallery\",\"googleFont\":[],\"id\":\"\",\"class\":\"\",\"wrapperclass\":\"\",\"snap\":{\"adjust\":\"grid\",\"snap\":false,\"helpLines\":false,\"gap\":10},\"source\":{\"gallery\":[],\"post\":{\"excerptLimit\":55,\"maxPosts\":30,\"fetchType\":\"cat_tag\",\"category\":\"\",\"sortBy\":\"ID\",\"types\":\"post\",\"list\":\"\",\"sortDirection\":\"DESC\",\"subType\":\"post\"},\"woo\":{\"excerptLimit\":55,\"maxProducts\":30,\"featuredOnly\":false,\"inStockOnly\":false,\"category\":\"\",\"sortBy\":\"ID\",\"types\":\"product\",\"sortDirection\":\"DESC\",\"regPriceFrom\":\"\",\"regPriceTo\":\"\",\"salePriceFrom\":\"\",\"salePriceTo\":\"\"},\"instagram\":{\"count\":8,\"hashTag\":\"\",\"transient\":1200,\"type\":\"user\",\"userId\":\"\",\"token_source\":\"account\",\"connect_with\":\"\"},\"facebook\":{\"album\":\"\",\"appId\":\"\",\"appSecret\":\"\",\"count\":8,\"transient\":1200,\"typeSource\":\"timeline\",\"token_source\":\"account\",\"connect_with\":\"\",\"page_id\":\"\"},\"flickr\":{\"apiKey\":\"\",\"count\":8,\"galleryURL\":\"\",\"groupURL\":\"\",\"photoSet\":\"\",\"transient\":1200,\"type\":\"publicphotos\",\"userURL\":\"\"},\"twitter\":{\"accessSecret\":\"\",\"accessToken\":\"\",\"consumerKey\":\"\",\"consumerSecret\":\"\",\"count\":8,\"excludeReplies\":false,\"imageOnly\":false,\"includeRetweets\":false,\"transient\":1200,\"userId\":\"\"},\"vimeo\":{\"albumId\":\"\",\"channelName\":\"\",\"count\":8,\"transient\":1200,\"groupName\":\"\",\"typeSource\":\"user\",\"userName\":\"\"},\"youtube\":{\"api\":\"\",\"channelId\":\"\",\"count\":8,\"playList\":\"\",\"transient\":1200,\"typeSource\":\"channel\"}},\"def\":{\"intelligentInherit\":true,\"autoResponsive\":true,\"responsiveChilds\":true,\"responsiveOffset\":true,\"transition\":\"fade\",\"transitionDuration\":300,\"delay\":9000,\"background\":{\"fit\":\"cover\",\"fitX\":100,\"fitY\":100,\"position\":\"center center\",\"positionX\":0,\"positionY\":0,\"repeat\":\"no-repeat\",\"imageSourceType\":\"full\"},\"panZoom\":{\"set\":false,\"blurStart\":0,\"blurEnd\":0,\"duration\":10000,\"ease\":\"none\",\"fitEnd\":100,\"fitStart\":100,\"xEnd\":0,\"yEnd\":0,\"xStart\":0,\"yStart\":0,\"rotateStart\":0,\"rotateEnd\":0}},\"size\":{\"enableUpscaling\":false,\"respectAspectRatio\":false,\"disableForceFullWidth\":false,\"custom\":{\"d\":true,\"n\":false,\"t\":false,\"m\":true},\"minHeightFullScreen\":\"\",\"minHeight\":\"\",\"maxWidth\":0,\"maxHeight\":0,\"fullScreenOffsetContainer\":\"\",\"fullScreenOffset\":\"\",\"width\":{\"d\":\"1920px\",\"n\":1024,\"t\":778,\"m\":480},\"height\":{\"d\":\"700px\",\"n\":768,\"t\":960,\"m\":720},\"editorCache\":{\"d\":700,\"n\":480,\"t\":284,\"m\":720},\"overflow\":false,\"useFullScreenHeight\":true,\"overflowHidden\":false,\"gridEQModule\":false,\"forceOverflow\":false,\"keepBPHeight\":false,\"ignoreHeightChanges\":true},\"codes\":{\"css\":\"\",\"javascript\":\"\"},\"carousel\":{\"orientation\":\"h\",\"prevNextVis\":\"50px\",\"justify\":false,\"justifyMaxWidth\":false,\"snap\":true,\"borderRadius\":0,\"borderRadiusUnit\":\"px\",\"ease\":\"power3.inOut\",\"fadeOut\":true,\"scale\":false,\"offsetScale\":false,\"horizontal\":\"center\",\"vertical\":\"center\",\"infinity\":false,\"maxItems\":3,\"maxRotation\":0,\"maxOpacity\":100,\"paddingTop\":0,\"paddingBottom\":0,\"rotation\":false,\"scaleDown\":50,\"space\":0,\"speed\":800,\"stretch\":false,\"varyFade\":false,\"varyRotate\":false,\"varyScale\":false,\"showAllLayers\":\"false\",\"skewX\":0,\"skewY\":0,\"spin\":\"off\",\"spinAngle\":0,\"overshoot\":false},\"hero\":{\"activeSlide\":-1},\"layout\":{\"bg\":{\"color\":\"transparent\",\"padding\":0,\"dottedOverlay\":\"none\",\"dottedOverlaySize\":1,\"dottedColorA\":\"transparent\",\"dottedColorB\":\"#000000\",\"shadow\":0,\"useImage\":false,\"image\":\"\",\"imageSourceType\":\"full\",\"fit\":\"cover\",\"position\":\"center center\",\"repeat\":\"no-repeat\"},\"spinner\":{\"color\":\"#ffffff\",\"type\":\"off\"},\"position\":{\"marginTop\":0,\"marginBottom\":0,\"marginLeft\":0,\"marginRight\":0,\"align\":\"center\",\"fixedOnTop\":false,\"addClear\":false}},\"visibility\":{\"hideSelectedLayersUnderLimit\":0,\"hideAllLayersUnderLimit\":0,\"hideSliderUnderLimit\":0},\"general\":{\"slideshow\":{\"slideShow\":true,\"stopOnHover\":false,\"stopSlider\":false,\"stopAfterLoops\":0,\"stopAtSlide\":1,\"shuffle\":false,\"loopSingle\":false,\"viewPort\":false,\"viewPortStart\":\"wait\",\"viewPortArea\":{\"d\":{\"v\":\"200px\",\"e\":false,\"u\":\"\"},\"n\":{\"v\":\"200px\",\"e\":false,\"u\":\"\"},\"t\":{\"v\":\"200px\",\"e\":false,\"u\":\"\"},\"m\":{\"v\":\"200px\",\"e\":false,\"u\":\"\"}},\"presetSliderHeight\":false,\"initDelay\":0,\"waitForInit\":false,\"globalViewPort\":true,\"globalViewDist\":\"-200px\"},\"progressbar\":{\"set\":false,\"alignby\":\"slider\",\"style\":\"horizontal\",\"size\":\"5px\",\"radius\":10,\"vertical\":\"bottom\",\"horizontal\":\"left\",\"x\":0,\"y\":0,\"color\":\"rgba(255,255,255,0.5)\",\"bgcolor\":\"transparent\",\"basedon\":\"slide\",\"gapsize\":0,\"gap\":false,\"gapcolor\":\"rgba(255,255,255,0.5)\",\"reset\":\"reset\",\"visibility\":{\"d\":true,\"m\":true,\"n\":true,\"t\":true}},\"firstSlide\":{\"set\":false,\"duration\":300,\"slotAmount\":7,\"type\":\"fade\",\"alternativeFirstSlideSet\":false,\"alternativeFirstSlide\":1},\"icache\":\"default\",\"DPR\":\"dpr\",\"observeWrap\":false,\"layerSelection\":false,\"lazyLoad\":\"smart\",\"nextSlideOnFocus\":false,\"disableFocusListener\":false,\"enableurlhash\":false,\"disableOnMobile\":false,\"autoPlayVideoOnMobile\":true,\"disablePanZoomMobile\":false,\"useWPML\":false,\"perspective\":600,\"perspectiveType\":\"global\"},\"nav\":{\"preview\":{\"width\":50,\"height\":100},\"swipe\":{\"set\":false,\"setOnDesktop\":false,\"setMobileCarousel\":true,\"setDesktopCarousel\":true,\"blockDragVertical\":false,\"direction\":\"horizontal\",\"minTouch\":1,\"velocity\":75},\"keyboard\":{\"direction\":\"horizontal\",\"set\":false},\"mouse\":{\"set\":\"off\",\"reverse\":\"default\",\"viewport\":50,\"calldelay\":1000,\"threshold\":50},\"arrows\":{\"set\":false,\"rtl\":false,\"animSpeed\":\"1000ms\",\"animDelay\":\"1000ms\",\"style\":\"1000\",\"preset\":\"default\",\"presets\":[],\"alwaysOn\":true,\"hideDelay\":200,\"hideDelayMobile\":1200,\"hideOver\":false,\"hideOverLimit\":0,\"hideUnder\":false,\"hideUnderLimit\":778,\"left\":{\"anim\":\"fade\",\"horizontal\":\"left\",\"vertical\":\"center\",\"offsetX\":30,\"offsetY\":0,\"align\":\"slider\"},\"right\":{\"anim\":\"fade\",\"horizontal\":\"right\",\"vertical\":\"center\",\"offsetX\":30,\"offsetY\":0,\"align\":\"slider\"}},\"thumbs\":{\"anim\":\"fade\",\"animSpeed\":\"1000ms\",\"animDelay\":\"1000ms\",\"set\":false,\"rtl\":false,\"style\":\"2000\",\"preset\":\"default\",\"presets\":[],\"alwaysOn\":true,\"hideDelay\":200,\"hideDelayMobile\":1200,\"hideOver\":false,\"hideOverLimit\":0,\"hideUnder\":false,\"hideUnderLimit\":778,\"spanWrapper\":false,\"horizontal\":\"center\",\"vertical\":\"bottom\",\"amount\":5,\"direction\":\"horizontal\",\"height\":50,\"width\":100,\"widthMin\":100,\"innerOuter\":\"inner\",\"offsetX\":0,\"offsetY\":20,\"space\":5,\"align\":\"slider\",\"padding\":5,\"wrapperColor\":\"transparent\",\"mhoffset\":0,\"mvoffset\":0},\"tabs\":{\"anim\":\"fade\",\"animSpeed\":\"1000ms\",\"animDelay\":\"1000ms\",\"set\":false,\"rtl\":false,\"style\":\"4000\",\"preset\":\"default\",\"presets\":[],\"alwaysOn\":true,\"hideDelay\":200,\"hideDelayMobile\":1200,\"hideOver\":false,\"hideOverLimit\":0,\"hideUnder\":false,\"hideUnderLimit\":778,\"spanWrapper\":false,\"horizontal\":\"center\",\"vertical\":\"bottom\",\"amount\":5,\"direction\":\"horizontal\",\"height\":50,\"width\":100,\"widthMin\":100,\"innerOuter\":\"inner\",\"offsetX\":0,\"offsetY\":20,\"space\":5,\"align\":\"slider\",\"padding\":5,\"wrapperColor\":\"transparent\",\"mhoffset\":0,\"mvoffset\":0},\"bullets\":{\"anim\":\"fade\",\"animSpeed\":\"1000ms\",\"animDelay\":\"1000ms\",\"set\":false,\"rtl\":false,\"style\":\"3000\",\"preset\":\"default\",\"presets\":[],\"alwaysOn\":true,\"horizontal\":\"center\",\"vertical\":\"bottom\",\"direction\":\"horizontal\",\"offsetX\":0,\"offsetY\":20,\"align\":\"slider\",\"space\":5,\"hideDelay\":200,\"hideDelayMobile\":1200,\"hideOver\":false,\"hideOverLimit\":0,\"hideUnder\":false,\"hideUnderLimit\":778}},\"troubleshooting\":{\"alternateImageType\":\"off\",\"alternateURL\":\"\",\"jsNoConflict\":false,\"jsInBody\":false,\"outPutFilter\":\"none\",\"simplify_ie8_ios4\":false},\"parallax\":{\"set\":false,\"setDDD\":false,\"disableOnMobile\":false,\"levels\":[5,10,15,20,25,30,35,40,45,46,47,48,49,50,51,30],\"ddd\":{\"BGFreeze\":false,\"layerOverflow\":false,\"overflow\":false,\"shadow\":false,\"zCorrection\":65},\"mouse\":{\"speed\":0,\"bgSpeed\":0,\"layersSpeed\":0,\"origo\":\"slidercenter\",\"type\":\"scroll\",\"omulti\":1,\"smulti\":1,\"env\":\"single\",\"dir\":\"same\"}},\"modal\":{\"bodyclass\":\"\",\"horizontal\":\"center\",\"vertical\":\"middle\",\"cover\":true,\"allowPageScroll\":false,\"coverColor\":\"rgba(0,0,0,0.5)\",\"coverSpeed\":1000},\"scrolleffects\":{\"set\":false,\"setBlur\":false,\"setFade\":false,\"setGrayScale\":false,\"bg\":false,\"direction\":\"both\",\"layers\":false,\"maxBlur\":10,\"multiplicator\":\"1.3\",\"multiplicatorLayers\":\"1.3\",\"disableOnMobile\":false,\"parallaxLayers\":false,\"staticLayers\":false,\"staticParallaxLayers\":false,\"tilt\":30},\"scrolltimeline\":{\"set\":false,\"fixed\":false,\"fixedStart\":2000,\"fixedEnd\":4000,\"layers\":false,\"ease\":\"none\",\"speed\":500,\"pullcontent\":false},\"skins\":{\"colorsAtStart\":false,\"cid\":2,\"colors\":[{\"alias\":\"Highlight\",\"v\":\"#ff0000\",\"ref\":[]},{\"alias\":\"Headline Text\",\"v\":\"#ffffff\",\"ref\":[]},{\"alias\":\"Content Text\",\"v\":\"#00ffff\",\"ref\":[]}]},\"modalshortcode\":\"[rev_slider usage=\\\"modal\\\" alias=\\\"slider-3-1-1-1\\\"][\\/rev_slider]\"}','{\"version\":\"6.6.15\"}',''),(8,'home slider_1','slider-3-1-1-11','{\"addOns\":[],\"version\":\"6.6.15\",\"pakps\":false,\"shortcode\":\"[rev_slider alias=\\\"slider-3-1-1-11\\\"][\\/rev_slider]\",\"type\":\"standard\",\"layouttype\":\"fullwidth\",\"sourcetype\":\"gallery\",\"googleFont\":[],\"id\":\"\",\"class\":\"\",\"wrapperclass\":\"\",\"snap\":{\"adjust\":\"grid\",\"snap\":false,\"helpLines\":false,\"gap\":10},\"source\":{\"gallery\":[],\"post\":{\"excerptLimit\":55,\"maxPosts\":30,\"fetchType\":\"cat_tag\",\"category\":\"\",\"sortBy\":\"ID\",\"types\":\"post\",\"list\":\"\",\"sortDirection\":\"DESC\",\"subType\":\"post\"},\"woo\":{\"excerptLimit\":55,\"maxProducts\":30,\"featuredOnly\":false,\"inStockOnly\":false,\"category\":\"\",\"sortBy\":\"ID\",\"types\":\"product\",\"sortDirection\":\"DESC\",\"regPriceFrom\":\"\",\"regPriceTo\":\"\",\"salePriceFrom\":\"\",\"salePriceTo\":\"\"},\"instagram\":{\"count\":8,\"hashTag\":\"\",\"transient\":1200,\"type\":\"user\",\"userId\":\"\",\"token_source\":\"account\",\"connect_with\":\"\"},\"facebook\":{\"album\":\"\",\"appId\":\"\",\"appSecret\":\"\",\"count\":8,\"transient\":1200,\"typeSource\":\"timeline\",\"token_source\":\"account\",\"connect_with\":\"\",\"page_id\":\"\"},\"flickr\":{\"apiKey\":\"\",\"count\":8,\"galleryURL\":\"\",\"groupURL\":\"\",\"photoSet\":\"\",\"transient\":1200,\"type\":\"publicphotos\",\"userURL\":\"\"},\"twitter\":{\"accessSecret\":\"\",\"accessToken\":\"\",\"consumerKey\":\"\",\"consumerSecret\":\"\",\"count\":8,\"excludeReplies\":false,\"imageOnly\":false,\"includeRetweets\":false,\"transient\":1200,\"userId\":\"\"},\"vimeo\":{\"albumId\":\"\",\"channelName\":\"\",\"count\":8,\"transient\":1200,\"groupName\":\"\",\"typeSource\":\"user\",\"userName\":\"\"},\"youtube\":{\"api\":\"\",\"channelId\":\"\",\"count\":8,\"playList\":\"\",\"transient\":1200,\"typeSource\":\"channel\"}},\"def\":{\"intelligentInherit\":true,\"autoResponsive\":true,\"responsiveChilds\":true,\"responsiveOffset\":true,\"transition\":\"fade\",\"transitionDuration\":300,\"delay\":9000,\"background\":{\"fit\":\"cover\",\"fitX\":100,\"fitY\":100,\"position\":\"center center\",\"positionX\":0,\"positionY\":0,\"repeat\":\"no-repeat\",\"imageSourceType\":\"full\"},\"panZoom\":{\"set\":false,\"blurStart\":0,\"blurEnd\":0,\"duration\":10000,\"ease\":\"none\",\"fitEnd\":100,\"fitStart\":100,\"xEnd\":0,\"yEnd\":0,\"xStart\":0,\"yStart\":0,\"rotateStart\":0,\"rotateEnd\":0}},\"size\":{\"enableUpscaling\":false,\"respectAspectRatio\":false,\"disableForceFullWidth\":false,\"custom\":{\"d\":true,\"n\":false,\"t\":true,\"m\":true},\"minHeightFullScreen\":\"\",\"minHeight\":\"\",\"maxWidth\":0,\"maxHeight\":0,\"fullScreenOffsetContainer\":\"\",\"fullScreenOffset\":\"\",\"width\":{\"d\":\"1920px\",\"n\":1024,\"t\":778,\"m\":480},\"height\":{\"d\":\"700px\",\"n\":768,\"t\":960,\"m\":720},\"editorCache\":{\"d\":700,\"n\":373,\"t\":960,\"m\":720},\"overflow\":false,\"useFullScreenHeight\":true,\"overflowHidden\":false,\"gridEQModule\":false,\"forceOverflow\":false,\"keepBPHeight\":false,\"ignoreHeightChanges\":true},\"codes\":{\"css\":\"\",\"javascript\":\"\"},\"carousel\":{\"orientation\":\"h\",\"prevNextVis\":\"50px\",\"justify\":false,\"justifyMaxWidth\":false,\"snap\":true,\"borderRadius\":0,\"borderRadiusUnit\":\"px\",\"ease\":\"power3.inOut\",\"fadeOut\":true,\"scale\":false,\"offsetScale\":false,\"horizontal\":\"center\",\"vertical\":\"center\",\"infinity\":false,\"maxItems\":3,\"maxRotation\":0,\"maxOpacity\":100,\"paddingTop\":0,\"paddingBottom\":0,\"rotation\":false,\"scaleDown\":50,\"space\":0,\"speed\":800,\"stretch\":false,\"varyFade\":false,\"varyRotate\":false,\"varyScale\":false,\"showAllLayers\":\"false\",\"skewX\":0,\"skewY\":0,\"spin\":\"off\",\"spinAngle\":0,\"overshoot\":false},\"hero\":{\"activeSlide\":-1},\"layout\":{\"bg\":{\"color\":\"transparent\",\"padding\":0,\"dottedOverlay\":\"none\",\"dottedOverlaySize\":1,\"dottedColorA\":\"transparent\",\"dottedColorB\":\"#000000\",\"shadow\":0,\"useImage\":false,\"image\":\"\",\"imageSourceType\":\"full\",\"fit\":\"cover\",\"position\":\"center center\",\"repeat\":\"no-repeat\"},\"spinner\":{\"color\":\"#ffffff\",\"type\":\"off\"},\"position\":{\"marginTop\":0,\"marginBottom\":0,\"marginLeft\":0,\"marginRight\":0,\"align\":\"center\",\"fixedOnTop\":false,\"addClear\":false}},\"visibility\":{\"hideSelectedLayersUnderLimit\":0,\"hideAllLayersUnderLimit\":0,\"hideSliderUnderLimit\":0},\"general\":{\"slideshow\":{\"slideShow\":true,\"stopOnHover\":false,\"stopSlider\":false,\"stopAfterLoops\":0,\"stopAtSlide\":1,\"shuffle\":false,\"loopSingle\":false,\"viewPort\":false,\"viewPortStart\":\"wait\",\"viewPortArea\":{\"d\":{\"v\":\"200px\",\"e\":false,\"u\":\"\"},\"n\":{\"v\":\"200px\",\"e\":false,\"u\":\"\"},\"t\":{\"v\":\"200px\",\"e\":false,\"u\":\"\"},\"m\":{\"v\":\"200px\",\"e\":false,\"u\":\"\"}},\"presetSliderHeight\":false,\"initDelay\":0,\"waitForInit\":false,\"globalViewPort\":true,\"globalViewDist\":\"-200px\"},\"progressbar\":{\"set\":false,\"alignby\":\"slider\",\"style\":\"horizontal\",\"size\":\"5px\",\"radius\":10,\"vertical\":\"bottom\",\"horizontal\":\"left\",\"x\":0,\"y\":0,\"color\":\"rgba(255,255,255,0.5)\",\"bgcolor\":\"transparent\",\"basedon\":\"slide\",\"gapsize\":0,\"gap\":false,\"gapcolor\":\"rgba(255,255,255,0.5)\",\"reset\":\"reset\",\"visibility\":{\"d\":true,\"m\":true,\"n\":true,\"t\":true}},\"firstSlide\":{\"set\":false,\"duration\":300,\"slotAmount\":7,\"type\":\"fade\",\"alternativeFirstSlideSet\":false,\"alternativeFirstSlide\":1},\"icache\":\"default\",\"DPR\":\"dpr\",\"observeWrap\":false,\"layerSelection\":false,\"lazyLoad\":\"smart\",\"nextSlideOnFocus\":false,\"disableFocusListener\":false,\"enableurlhash\":false,\"disableOnMobile\":false,\"autoPlayVideoOnMobile\":true,\"disablePanZoomMobile\":false,\"useWPML\":false,\"perspective\":600,\"perspectiveType\":\"global\"},\"nav\":{\"preview\":{\"width\":50,\"height\":100},\"swipe\":{\"set\":false,\"setOnDesktop\":false,\"setMobileCarousel\":true,\"setDesktopCarousel\":true,\"blockDragVertical\":false,\"direction\":\"horizontal\",\"minTouch\":1,\"velocity\":75},\"keyboard\":{\"direction\":\"horizontal\",\"set\":false},\"mouse\":{\"set\":\"off\",\"reverse\":\"default\",\"viewport\":50,\"calldelay\":1000,\"threshold\":50},\"arrows\":{\"set\":false,\"rtl\":false,\"animSpeed\":\"1000ms\",\"animDelay\":\"1000ms\",\"style\":\"1000\",\"preset\":\"default\",\"presets\":[],\"alwaysOn\":true,\"hideDelay\":200,\"hideDelayMobile\":1200,\"hideOver\":false,\"hideOverLimit\":0,\"hideUnder\":false,\"hideUnderLimit\":778,\"left\":{\"anim\":\"fade\",\"horizontal\":\"left\",\"vertical\":\"center\",\"offsetX\":30,\"offsetY\":0,\"align\":\"slider\"},\"right\":{\"anim\":\"fade\",\"horizontal\":\"right\",\"vertical\":\"center\",\"offsetX\":30,\"offsetY\":0,\"align\":\"slider\"}},\"thumbs\":{\"anim\":\"fade\",\"animSpeed\":\"1000ms\",\"animDelay\":\"1000ms\",\"set\":false,\"rtl\":false,\"style\":\"2000\",\"preset\":\"default\",\"presets\":[],\"alwaysOn\":true,\"hideDelay\":200,\"hideDelayMobile\":1200,\"hideOver\":false,\"hideOverLimit\":0,\"hideUnder\":false,\"hideUnderLimit\":778,\"spanWrapper\":false,\"horizontal\":\"center\",\"vertical\":\"bottom\",\"amount\":5,\"direction\":\"horizontal\",\"height\":50,\"width\":100,\"widthMin\":100,\"innerOuter\":\"inner\",\"offsetX\":0,\"offsetY\":20,\"space\":5,\"align\":\"slider\",\"padding\":5,\"wrapperColor\":\"transparent\",\"mhoffset\":0,\"mvoffset\":0},\"tabs\":{\"anim\":\"fade\",\"animSpeed\":\"1000ms\",\"animDelay\":\"1000ms\",\"set\":false,\"rtl\":false,\"style\":\"4000\",\"preset\":\"default\",\"presets\":[],\"alwaysOn\":true,\"hideDelay\":200,\"hideDelayMobile\":1200,\"hideOver\":false,\"hideOverLimit\":0,\"hideUnder\":false,\"hideUnderLimit\":778,\"spanWrapper\":false,\"horizontal\":\"center\",\"vertical\":\"bottom\",\"amount\":5,\"direction\":\"horizontal\",\"height\":50,\"width\":100,\"widthMin\":100,\"innerOuter\":\"inner\",\"offsetX\":0,\"offsetY\":20,\"space\":5,\"align\":\"slider\",\"padding\":5,\"wrapperColor\":\"transparent\",\"mhoffset\":0,\"mvoffset\":0},\"bullets\":{\"anim\":\"fade\",\"animSpeed\":\"1000ms\",\"animDelay\":\"1000ms\",\"set\":false,\"rtl\":false,\"style\":\"3000\",\"preset\":\"default\",\"presets\":[],\"alwaysOn\":true,\"horizontal\":\"center\",\"vertical\":\"bottom\",\"direction\":\"horizontal\",\"offsetX\":0,\"offsetY\":20,\"align\":\"slider\",\"space\":5,\"hideDelay\":200,\"hideDelayMobile\":1200,\"hideOver\":false,\"hideOverLimit\":0,\"hideUnder\":false,\"hideUnderLimit\":778}},\"troubleshooting\":{\"alternateImageType\":\"off\",\"alternateURL\":\"\",\"jsNoConflict\":false,\"jsInBody\":false,\"outPutFilter\":\"none\",\"simplify_ie8_ios4\":false},\"parallax\":{\"set\":false,\"setDDD\":false,\"disableOnMobile\":false,\"levels\":[5,10,15,20,25,30,35,40,45,46,47,48,49,50,51,30],\"ddd\":{\"BGFreeze\":false,\"layerOverflow\":false,\"overflow\":false,\"shadow\":false,\"zCorrection\":65},\"mouse\":{\"speed\":0,\"bgSpeed\":0,\"layersSpeed\":0,\"origo\":\"slidercenter\",\"type\":\"scroll\",\"omulti\":1,\"smulti\":1,\"env\":\"single\",\"dir\":\"same\"}},\"modal\":{\"bodyclass\":\"\",\"horizontal\":\"center\",\"vertical\":\"middle\",\"cover\":true,\"allowPageScroll\":false,\"coverColor\":\"rgba(0,0,0,0.5)\",\"coverSpeed\":1000},\"scrolleffects\":{\"set\":false,\"setBlur\":false,\"setFade\":false,\"setGrayScale\":false,\"bg\":false,\"direction\":\"both\",\"layers\":false,\"maxBlur\":10,\"multiplicator\":\"1.3\",\"multiplicatorLayers\":\"1.3\",\"disableOnMobile\":false,\"parallaxLayers\":false,\"staticLayers\":false,\"staticParallaxLayers\":false,\"tilt\":30},\"scrolltimeline\":{\"set\":false,\"fixed\":false,\"fixedStart\":2000,\"fixedEnd\":4000,\"layers\":false,\"ease\":\"none\",\"speed\":500,\"pullcontent\":false},\"skins\":{\"colorsAtStart\":false,\"cid\":2,\"colors\":[{\"alias\":\"Highlight\",\"v\":\"#ff0000\",\"ref\":[]},{\"alias\":\"Headline Text\",\"v\":\"#ffffff\",\"ref\":[]},{\"alias\":\"Content Text\",\"v\":\"#00ffff\",\"ref\":[]}]},\"modalshortcode\":\"[rev_slider usage=\\\"modal\\\" alias=\\\"slider-3-1-1-11\\\"][\\/rev_slider]\"}','{\"version\":\"6.6.15\"}','');
/*!40000 ALTER TABLE `wplf_revslider_sliders` ENABLE KEYS */;
UNLOCK TABLES;

-- Dumped table `wplf_revslider_sliders` with 8 row(s)
--

--
-- Table structure for table `wplf_wc_order_operational_data`
--

DROP TABLE IF EXISTS `wplf_wc_order_operational_data`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `wplf_wc_order_operational_data` (
  `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `order_id` bigint(20) unsigned DEFAULT NULL,
  `created_via` varchar(100) DEFAULT NULL,
  `woocommerce_version` varchar(20) DEFAULT NULL,
  `prices_include_tax` tinyint(1) DEFAULT NULL,
  `coupon_usages_are_counted` tinyint(1) DEFAULT NULL,
  `download_permission_granted` tinyint(1) DEFAULT NULL,
  `cart_hash` varchar(100) DEFAULT NULL,
  `new_order_email_sent` tinyint(1) DEFAULT NULL,
  `order_key` varchar(100) DEFAULT NULL,
  `order_stock_reduced` tinyint(1) DEFAULT NULL,
  `date_paid_gmt` datetime DEFAULT NULL,
  `date_completed_gmt` datetime DEFAULT NULL,
  `shipping_tax_amount` decimal(26,8) DEFAULT NULL,
  `shipping_total_amount` decimal(26,8) DEFAULT NULL,
  `discount_tax_amount` decimal(26,8) DEFAULT NULL,
  `discount_total_amount` decimal(26,8) DEFAULT NULL,
  `recorded_sales` tinyint(1) DEFAULT NULL,
  PRIMARY KEY (`id`),
  UNIQUE KEY `order_id` (`order_id`),
  KEY `order_key` (`order_key`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wplf_wc_order_operational_data`
--

LOCK TABLES `wplf_wc_order_operational_data` WRITE;
/*!40000 ALTER TABLE `wplf_wc_order_operational_data` DISABLE KEYS */;
/*!40000 ALTER TABLE `wplf_wc_order_operational_data` ENABLE KEYS */;
UNLOCK TABLES;

-- Dumped table `wplf_wc_order_operational_data` with 0 row(s)
--

--
-- Table structure for table `wplf_wd_fb_theme`
--

DROP TABLE IF EXISTS `wplf_wd_fb_theme`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `wplf_wd_fb_theme` (
  `id` bigint(20) NOT NULL AUTO_INCREMENT,
  `name` varchar(255) NOT NULL,
  `params` longtext DEFAULT NULL,
  `default_theme` tinyint(1) NOT NULL,
  PRIMARY KEY (`id`)
) ENGINE=MyISAM AUTO_INCREMENT=5 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wplf_wd_fb_theme`
--

LOCK TABLES `wplf_wd_fb_theme` WRITE;
/*!40000 ALTER TABLE `wplf_wd_fb_theme` DISABLE KEYS */;
INSERT INTO `wplf_wd_fb_theme` VALUES (1,'Theme 1','{\"thumb_margin\":\"10\",\"thumb_padding\":\"2\",\"thumb_border_radius\":\"0\",\"thumb_border_width\":\"1\",\"thumb_border_style\":\"none\",\"thumb_border_color\":\"000000\",\"thumb_bg_color\":\"FFFFFF\",\"thumbs_bg_color\":\"FFFFFF\",\"thumb_bg_transparent\":\"100\",\"thumb_box_shadow\":\"0px 0px 0px #000000\",\"thumb_transparent\":\"100\",\"thumb_align\":\"center\",\"thumb_hover_effect\":\"scale\",\"thumb_hover_effect_value\":\"2deg\",\"thumb_transition\":\"1\",\"thumb_title_font_color\":\"797979\",\"thumb_title_font_style\":\"inherit\",\"thumb_title_pos\":\"bottom\",\"thumb_title_font_size\":\"14\",\"thumb_title_font_weight\":\"normal\",\"thumb_title_margin\":\"5\",\"thumb_title_shadow\":\"\",\"thumb_like_comm_pos\":\"bottom\",\"thumb_like_comm_font_size\":\"14\",\"thumb_like_comm_font_color\":\"FFFFFF\",\"thumb_like_comm_font_style\":\"inherit\",\"thumb_like_comm_font_weight\":\"normal\",\"thumb_like_comm_shadow\":\"0px 0px 1px #000000\",\"masonry_thumb_padding\":\"10\",\"masonry_thumb_border_radius\":\"2px\",\"masonry_thumb_border_width\":\"1\",\"masonry_thumb_border_style\":\"solid\",\"masonry_thumb_border_color\":\"FFFFFF\",\"masonry_thumbs_bg_color\":\"FFFFFF\",\"masonry_thumb_bg_transparent\":\"100\",\"masonry_thumb_transparent\":\"100\",\"masonry_thumb_align\":\"center\",\"masonry_thumb_hover_effect\":\"none\",\"masonry_thumb_hover_effect_value\":\"1.1\",\"masonry_thumb_transition\":\"1\",\"masonry_description_font_size\":\"14\",\"masonry_description_color\":\"A3A3A3\",\"masonry_description_font_style\":\"inherit\",\"masonry_like_comm_pos\":\"bottom\",\"masonry_like_comm_font_size\":\"14\",\"masonry_like_comm_font_color\":\"FFFFFF\",\"masonry_like_comm_font_style\":\"inherit\",\"masonry_like_comm_font_weight\":\"normal\",\"masonry_like_comm_shadow\":\"0px 0px 1px #000000\",\"blog_style_align\":\"center\",\"blog_style_bg_color\":\"FFFFFF\",\"blog_style_fd_name_bg_color\":\"FFFFFF\",\"blog_style_fd_name_align\":\"left\",\"blog_style_fd_name_padding\":\"10\",\"blog_style_fd_name_color\":\"1C1C1C\",\"blog_style_fd_name_size\":\"24\",\"blog_style_fd_name_font_weight\":\"normal\",\"blog_style_fd_icon\":\"\",\"blog_style_fd_icon_color\":\"\",\"blog_style_fd_icon_size\":\"\",\"blog_style_transparent\":\"100\",\"blog_style_obj_img_align\":\"left\",\"blog_style_margin\":\"16\",\"blog_style_box_shadow\":\"\",\"blog_style_border_width\":\"1\",\"blog_style_border_style\":\"solid\",\"blog_style_border_color\":\"EBEBEB\",\"blog_style_border_type\":\"top\",\"blog_style_border_radius\":\"\",\"blog_style_obj_icons_color\":\"gray\",\"blog_style_obj_date_pos\":\"after\",\"blog_style_obj_font_family\":\"inherit\",\"blog_style_obj_info_bg_color\":\"FFFFFF\",\"blog_style_page_name_color\":\"1C1C1C\",\"blog_style_obj_page_name_size\":\"20\",\"blog_style_obj_page_name_font_weight\":\"normal\",\"blog_style_obj_story_color\":\"1C1C1C\",\"blog_style_obj_story_size\":\"16\",\"blog_style_obj_story_font_weight\":\"normal\",\"blog_style_obj_place_color\":\"1C1C1C\",\"blog_style_obj_place_size\":\"14\",\"blog_style_obj_place_font_weight\":\"normal\",\"blog_style_obj_name_color\":\"1C1C1C\",\"blog_style_obj_name_size\":\"18\",\"blog_style_obj_name_font_weight\":\"bold\",\"blog_style_obj_message_color\":\"1C1C1C\",\"blog_style_obj_message_size\":\"16\",\"blog_style_obj_message_font_weight\":\"normal\",\"blog_style_obj_hashtags_color\":\"000000\",\"blog_style_obj_hashtags_size\":\"12\",\"blog_style_obj_hashtags_font_weight\":\"normal\",\"blog_style_obj_likes_social_bg_color\":\"FFFFFF\",\"blog_style_obj_likes_social_color\":\"1C1C1C\",\"blog_style_obj_likes_social_size\":\"14\",\"blog_style_obj_likes_social_font_weight\":\"normal\",\"blog_style_obj_comments_bg_color\":\"FFFFFF\",\"blog_style_obj_comments_color\":\"000000\",\"blog_style_obj_comments_font_family\":\"inherit\",\"blog_style_obj_comments_font_size\":\"14\",\"blog_style_obj_users_font_color\":\"000000\",\"blog_style_obj_comments_social_font_weight\":\"normal\",\"blog_style_obj_comment_border_width\":\"10\",\"blog_style_obj_comment_border_style\":\"solid\",\"blog_style_obj_comment_border_color\":\"FCFCFC\",\"blog_style_obj_comment_border_type\":\"top\",\"blog_style_evt_str_color\":\"1C1C1C\",\"blog_style_evt_str_size\":\"16\",\"blog_style_evt_str_font_weight\":\"normal\",\"blog_style_evt_ctzpcn_color\":\"CFCFCF\",\"blog_style_evt_ctzpcn_size\":\"14\",\"blog_style_evt_ctzpcn_font_weight\":\"normal\",\"blog_style_evt_map_color\":\"1C1C1C\",\"blog_style_evt_map_size\":\"14\",\"blog_style_evt_map_font_weight\":\"normal\",\"blog_style_evt_date_color\":\"CFCFCF\",\"blog_style_evt_date_size\":\"14\",\"blog_style_evt_date_font_weight\":\"normal\",\"blog_style_evt_info_font_family\":\"inherit\",\"album_compact_back_font_color\":\"000000\",\"album_compact_back_font_style\":\"inherit\",\"album_compact_back_font_size\":\"16\",\"album_compact_back_font_weight\":\"bold\",\"album_compact_back_padding\":\"0\",\"album_compact_title_font_color\":\"797979\",\"album_compact_title_font_style\":\"inherit\",\"album_compact_thumb_title_pos\":\"bottom\",\"album_compact_title_font_size\":\"13\",\"album_compact_title_font_weight\":\"normal\",\"album_compact_title_margin\":\"2px\",\"album_compact_title_shadow\":\"0px 0px 0px #888888\",\"album_compact_thumb_margin\":\"4\",\"album_compact_thumb_padding\":\"0\",\"album_compact_thumb_border_radius\":\"0\",\"album_compact_thumb_border_width\":\"0\",\"album_compact_thumb_border_style\":\"none\",\"album_compact_thumb_border_color\":\"CCCCCC\",\"album_compact_thumb_bg_color\":\"FFFFFF\",\"album_compact_thumbs_bg_color\":\"FFFFFF\",\"album_compact_thumb_bg_transparent\":\"0\",\"album_compact_thumb_box_shadow\":\"0px 0px 0px #888888\",\"album_compact_thumb_transparent\":\"100\",\"album_compact_thumb_align\":\"center\",\"album_compact_thumb_hover_effect\":\"none\",\"album_compact_thumb_hover_effect_value\":\"1.1\",\"album_compact_thumb_transition\":\"0\",\"lightbox_overlay_bg_color\":\"000000\",\"lightbox_overlay_bg_transparent\":\"60\",\"lightbox_bg_color\":\"1B1B1B\",\"lightbox_ctrl_btn_pos\":\"bottom\",\"lightbox_ctrl_btn_align\":\"center\",\"lightbox_ctrl_btn_height\":\"16\",\"lightbox_ctrl_btn_margin_top\":\"24\",\"lightbox_ctrl_btn_margin_left\":\"10\",\"lightbox_ctrl_btn_transparent\":\"100\",\"lightbox_ctrl_btn_color\":\"ffffff\",\"lightbox_toggle_btn_height\":\"14\",\"lightbox_toggle_btn_width\":\"100\",\"lightbox_ctrl_cont_bg_color\":\"0A0A0A\",\"lightbox_ctrl_cont_transparent\":\"100\",\"lightbox_ctrl_cont_border_radius\":\"4\",\"lightbox_close_btn_transparent\":\"100\",\"lightbox_close_btn_bg_color\":\"000000\",\"lightbox_close_btn_border_width\":\"14\",\"lightbox_close_btn_border_radius\":\"24px\",\"lightbox_close_btn_border_style\":\"none\",\"lightbox_close_btn_border_color\":\"FFFFFF\",\"lightbox_close_btn_box_shadow\":\"0\",\"lightbox_close_btn_color\":\"\",\"lightbox_close_btn_size\":\"12\",\"lightbox_close_btn_width\":\"24\",\"lightbox_close_btn_height\":\"24\",\"lightbox_close_btn_top\":\"0\",\"lightbox_close_btn_right\":\"-30\",\"lightbox_close_btn_full_color\":\"\",\"lightbox_rl_btn_bg_color\":\"000000\",\"lightbox_rl_btn_transparent\":\"70\",\"lightbox_rl_btn_border_radius\":\"20px\",\"lightbox_rl_btn_border_width\":\"0\",\"lightbox_rl_btn_border_style\":\"none\",\"lightbox_rl_btn_border_color\":\"FFFFFF\",\"lightbox_rl_btn_box_shadow\":\"\",\"lightbox_rl_btn_color\":\"\",\"lightbox_rl_btn_height\":\"36\",\"lightbox_rl_btn_width\":\"36\",\"lightbox_rl_btn_size\":\"16\",\"lightbox_close_rl_btn_hover_color\":\"\",\"lightbox_obj_pos\":\"right\",\"lightbox_obj_width\":\"350\",\"lightbox_obj_icons_color\":\"gray\",\"lightbox_obj_date_pos\":\"after\",\"lightbox_obj_font_family\":\"inherit\",\"lightbox_obj_info_bg_color\":\"FFFFFF\",\"lightbox_page_name_color\":\"4B4B4B\",\"lightbox_obj_page_name_size\":\"18\",\"lightbox_obj_page_name_font_weight\":\"bold\",\"lightbox_obj_story_color\":\"4B4B4B\",\"lightbox_obj_story_size\":\"16\",\"lightbox_obj_story_font_weight\":\"normal\",\"lightbox_obj_place_color\":\"4B4B4B\",\"lightbox_obj_place_size\":\"14\",\"lightbox_obj_place_font_weight\":\"normal\",\"lightbox_obj_name_color\":\"4B4B4B\",\"lightbox_obj_name_size\":\"14\",\"lightbox_obj_name_font_weight\":\"bold\",\"lightbox_obj_message_color\":\"000000\",\"lightbox_obj_message_size\":\"16\",\"lightbox_obj_message_font_weight\":\"normal\",\"lightbox_obj_hashtags_color\":\"000000\",\"lightbox_obj_hashtags_size\":\"12\",\"lightbox_obj_hashtags_font_weight\":\"normal\",\"lightbox_obj_likes_social_bg_color\":\"F4F5F7\",\"lightbox_obj_likes_social_color\":\"000000\",\"lightbox_obj_likes_social_size\":\"12\",\"lightbox_obj_likes_social_font_weight\":\"normal\",\"lightbox_obj_comments_bg_color\":\"FFFFFF\",\"lightbox_obj_comments_color\":\"4A4A4A\",\"lightbox_obj_comments_font_family\":\"inherit\",\"lightbox_obj_comments_font_size\":\"16\",\"lightbox_obj_users_font_color\":\"4B4B4B\",\"lightbox_obj_comments_social_font_weight\":\"normal\",\"lightbox_obj_comment_border_width\":\"1\",\"lightbox_obj_comment_border_style\":\"none\",\"lightbox_obj_comment_border_color\":\"000000\",\"lightbox_obj_comment_border_type\":\"top\",\"lightbox_filmstrip_pos\":\"bottom\",\"lightbox_filmstrip_rl_bg_color\":\"3B3B3B\",\"lightbox_filmstrip_rl_btn_size\":\"20\",\"lightbox_filmstrip_rl_btn_color\":\"ffffff\",\"lightbox_filmstrip_thumb_margin\":\"0 1px\",\"lightbox_filmstrip_thumb_border_width\":\"1\",\"lightbox_filmstrip_thumb_border_style\":\"solid\",\"lightbox_filmstrip_thumb_border_color\":\"000000\",\"lightbox_filmstrip_thumb_border_radius\":\"0\",\"lightbox_filmstrip_thumb_deactive_transparent\":\"80\",\"lightbox_filmstrip_thumb_active_border_width\":\"0\",\"lightbox_filmstrip_thumb_active_border_color\":\"FFFFFF\",\"lightbox_rl_btn_style\":\"\",\"lightbox_evt_str_color\":\"000000\",\"lightbox_evt_str_size\":\"16\",\"lightbox_evt_str_font_weight\":\"normal\",\"lightbox_evt_ctzpcn_color\":\"000000\",\"lightbox_evt_ctzpcn_size\":\"14\",\"lightbox_evt_ctzpcn_font_weight\":\"normal\",\"lightbox_evt_map_color\":\"000000\",\"lightbox_evt_map_size\":\"14\",\"lightbox_evt_map_font_weight\":\"normal\",\"lightbox_evt_date_color\":\"000000\",\"lightbox_evt_date_size\":\"14\",\"lightbox_evt_date_font_weight\":\"normal\",\"lightbox_evt_info_font_family\":\"inherit\",\"page_nav_position\":\"bottom\",\"page_nav_align\":\"center\",\"page_nav_number\":\"0\",\"page_nav_font_size\":\"12\",\"page_nav_font_style\":\"inherit\",\"page_nav_font_color\":\"666666\",\"page_nav_font_weight\":\"bold\",\"page_nav_border_width\":\"1\",\"page_nav_border_style\":\"solid\",\"page_nav_border_color\":\"E3E3E3\",\"page_nav_border_radius\":\"0\",\"page_nav_margin\":\"0\",\"page_nav_padding\":\"3px 6px\",\"page_nav_button_bg_color\":\"FFFFFF\",\"page_nav_button_bg_transparent\":\"100\",\"page_nav_box_shadow\":\"0\",\"page_nav_button_transition\":\"1\",\"page_nav_button_text\":\"0\",\"lightbox_obj_icons_color_likes_comments_count\":\"white\"}',1),(2,'Theme 2','{\"thumb_margin\":\"10\",\"thumb_padding\":\"2\",\"thumb_border_radius\":\"0px\",\"thumb_border_width\":\"0\",\"thumb_border_style\":\"none\",\"thumb_border_color\":\"000000\",\"thumb_bg_color\":\"BBCED4\",\"thumbs_bg_color\":\"FFFFFF\",\"thumb_bg_transparent\":\"100\",\"thumb_box_shadow\":\"0px 0px 0px #000000\",\"thumb_transparent\":\"100\",\"thumb_align\":\"center\",\"thumb_hover_effect\":\"rotate\",\"thumb_hover_effect_value\":\"1deg\",\"thumb_transition\":\"1\",\"thumb_title_font_color\":\"1F1F1F\",\"thumb_title_font_style\":\"inherit\",\"thumb_title_pos\":\"bottom\",\"thumb_title_font_size\":\"14\",\"thumb_title_font_weight\":\"normal\",\"thumb_title_margin\":\"10\",\"thumb_title_shadow\":\"\",\"thumb_like_comm_pos\":\"bottom\",\"thumb_like_comm_font_size\":\"14\",\"thumb_like_comm_font_color\":\"FFFFFF\",\"thumb_like_comm_font_style\":\"inherit\",\"thumb_like_comm_font_weight\":\"normal\",\"thumb_like_comm_shadow\":\"0px 0px 1px #000000\",\"masonry_thumb_padding\":\"4\",\"masonry_thumb_border_radius\":\"2px\",\"masonry_thumb_border_width\":\"1\",\"masonry_thumb_border_style\":\"solid\",\"masonry_thumb_border_color\":\"FFFFFF\",\"masonry_thumbs_bg_color\":\"BBCED2\",\"masonry_thumb_bg_transparent\":\"100\",\"masonry_thumb_transparent\":\"100\",\"masonry_thumb_align\":\"center\",\"masonry_thumb_hover_effect\":\"scale\",\"masonry_thumb_hover_effect_value\":\"1.1\",\"masonry_thumb_transition\":\"1\",\"masonry_description_font_size\":\"14\",\"masonry_description_color\":\"1F1F1F\",\"masonry_description_font_style\":\"inherit\",\"masonry_like_comm_pos\":\"bottom\",\"masonry_like_comm_font_size\":\"14\",\"masonry_like_comm_font_color\":\"FFFFFF\",\"masonry_like_comm_font_style\":\"inherit\",\"masonry_like_comm_font_weight\":\"normal\",\"masonry_like_comm_shadow\":\"0px 0px 1px #000000\",\"blog_style_align\":\"left\",\"blog_style_bg_color\":\"FFFFFF\",\"blog_style_fd_name_bg_color\":\"000000\",\"blog_style_fd_name_align\":\"center\",\"blog_style_fd_name_padding\":\"10\",\"blog_style_fd_name_color\":\"FFFFFF\",\"blog_style_fd_name_size\":\"15\",\"blog_style_fd_name_font_weight\":\"normal\",\"blog_style_fd_icon\":\"\",\"blog_style_fd_icon_color\":\"\",\"blog_style_fd_icon_size\":\"\",\"blog_style_transparent\":\"100\",\"blog_style_obj_img_align\":\"center\",\"blog_style_margin\":\"10\",\"blog_style_box_shadow\":\"\",\"blog_style_border_width\":\"1\",\"blog_style_border_style\":\"solid\",\"blog_style_border_color\":\"C9C9C9\",\"blog_style_border_type\":\"top\",\"blog_style_border_radius\":\"\",\"blog_style_obj_icons_color\":\"gray\",\"blog_style_obj_date_pos\":\"after\",\"blog_style_obj_font_family\":\"inherit\",\"blog_style_obj_info_bg_color\":\"FFFFFF\",\"blog_style_page_name_color\":\"000000\",\"blog_style_obj_page_name_size\":\"13\",\"blog_style_obj_page_name_font_weight\":\"bold\",\"blog_style_obj_story_color\":\"000000\",\"blog_style_obj_story_size\":\"14\",\"blog_style_obj_story_font_weight\":\"normal\",\"blog_style_obj_place_color\":\"000000\",\"blog_style_obj_place_size\":\"13\",\"blog_style_obj_place_font_weight\":\"normal\",\"blog_style_obj_name_color\":\"000000\",\"blog_style_obj_name_size\":\"13\",\"blog_style_obj_name_font_weight\":\"bold\",\"blog_style_obj_message_color\":\"000000\",\"blog_style_obj_message_size\":\"14\",\"blog_style_obj_message_font_weight\":\"normal\",\"blog_style_obj_hashtags_color\":\"000000\",\"blog_style_obj_hashtags_size\":\"12\",\"blog_style_obj_hashtags_font_weight\":\"normal\",\"blog_style_obj_likes_social_bg_color\":\"BBCED4\",\"blog_style_obj_likes_social_color\":\"656565\",\"blog_style_obj_likes_social_size\":\"14\",\"blog_style_obj_likes_social_font_weight\":\"normal\",\"blog_style_obj_comments_bg_color\":\"FFFFFF\",\"blog_style_obj_comments_color\":\"000000\",\"blog_style_obj_comments_font_family\":\"inherit\",\"blog_style_obj_comments_font_size\":\"14\",\"blog_style_obj_users_font_color\":\"000000\",\"blog_style_obj_comments_social_font_weight\":\"normal\",\"blog_style_obj_comment_border_width\":\"1\",\"blog_style_obj_comment_border_style\":\"solid\",\"blog_style_obj_comment_border_color\":\"C9C9C9\",\"blog_style_obj_comment_border_type\":\"top\",\"blog_style_evt_str_color\":\"000000\",\"blog_style_evt_str_size\":\"14\",\"blog_style_evt_str_font_weight\":\"normal\",\"blog_style_evt_ctzpcn_color\":\"000000\",\"blog_style_evt_ctzpcn_size\":\"14\",\"blog_style_evt_ctzpcn_font_weight\":\"normal\",\"blog_style_evt_map_color\":\"000000\",\"blog_style_evt_map_size\":\"14\",\"blog_style_evt_map_font_weight\":\"normal\",\"blog_style_evt_date_color\":\"000000\",\"blog_style_evt_date_size\":\"14\",\"blog_style_evt_date_font_weight\":\"normal\",\"blog_style_evt_info_font_family\":\"inherit\",\"album_compact_back_font_color\":\"000000\",\"album_compact_back_font_style\":\"inherit\",\"album_compact_back_font_size\":\"16\",\"album_compact_back_font_weight\":\"bold\",\"album_compact_back_padding\":\"0\",\"album_compact_title_font_color\":\"797979\",\"album_compact_title_font_style\":\"inherit\",\"album_compact_thumb_title_pos\":\"bottom\",\"album_compact_title_font_size\":\"13\",\"album_compact_title_font_weight\":\"normal\",\"album_compact_title_margin\":\"2px\",\"album_compact_title_shadow\":\"0px 0px 0px #888888\",\"album_compact_thumb_margin\":\"0\",\"album_compact_thumb_padding\":\"0\",\"album_compact_thumb_border_radius\":\"0\",\"album_compact_thumb_border_width\":\"0\",\"album_compact_thumb_border_style\":\"none\",\"album_compact_thumb_border_color\":\"CCCCCC\",\"album_compact_thumb_bg_color\":\"BBCED4\",\"album_compact_thumbs_bg_color\":\"FFFFFF\",\"album_compact_thumb_bg_transparent\":\"0\",\"album_compact_thumb_box_shadow\":\"0px 0px 0px #888888\",\"album_compact_thumb_transparent\":\"100\",\"album_compact_thumb_align\":\"center\",\"album_compact_thumb_hover_effect\":\"scale\",\"album_compact_thumb_hover_effect_value\":\"1.1\",\"album_compact_thumb_transition\":\"0\",\"lightbox_overlay_bg_color\":\"000000\",\"lightbox_overlay_bg_transparent\":\"70\",\"lightbox_bg_color\":\"000000\",\"lightbox_ctrl_btn_pos\":\"bottom\",\"lightbox_ctrl_btn_align\":\"center\",\"lightbox_ctrl_btn_height\":\"20\",\"lightbox_ctrl_btn_margin_top\":\"10\",\"lightbox_ctrl_btn_margin_left\":\"7\",\"lightbox_ctrl_btn_transparent\":\"100\",\"lightbox_ctrl_btn_color\":\"ffffff\",\"lightbox_toggle_btn_height\":\"14\",\"lightbox_toggle_btn_width\":\"100\",\"lightbox_ctrl_cont_bg_color\":\"000000\",\"lightbox_ctrl_cont_transparent\":\"65\",\"lightbox_ctrl_cont_border_radius\":\"4\",\"lightbox_close_btn_transparent\":\"100\",\"lightbox_close_btn_bg_color\":\"000000\",\"lightbox_close_btn_border_width\":\"2\",\"lightbox_close_btn_border_radius\":\"16px\",\"lightbox_close_btn_border_style\":\"none\",\"lightbox_close_btn_border_color\":\"FFFFFF\",\"lightbox_close_btn_box_shadow\":\"0\",\"lightbox_close_btn_color\":\"\",\"lightbox_close_btn_size\":\"10\",\"lightbox_close_btn_width\":\"20\",\"lightbox_close_btn_height\":\"20\",\"lightbox_close_btn_top\":\"-10\",\"lightbox_close_btn_right\":\"-10\",\"lightbox_close_btn_full_color\":\"\",\"lightbox_rl_btn_bg_color\":\"000000\",\"lightbox_rl_btn_transparent\":\"80\",\"lightbox_rl_btn_border_radius\":\"20px\",\"lightbox_rl_btn_border_width\":\"0\",\"lightbox_rl_btn_border_style\":\"none\",\"lightbox_rl_btn_border_color\":\"FFFFFF\",\"lightbox_rl_btn_box_shadow\":\"\",\"lightbox_rl_btn_color\":\"\",\"lightbox_rl_btn_height\":\"40\",\"lightbox_rl_btn_width\":\"40\",\"lightbox_rl_btn_size\":\"20\",\"lightbox_close_rl_btn_hover_color\":\"\",\"lightbox_obj_pos\":\"left\",\"lightbox_obj_width\":\"350\",\"lightbox_obj_icons_color\":\"gray\",\"lightbox_obj_date_pos\":\"after\",\"lightbox_obj_font_family\":\"inherit\",\"lightbox_obj_info_bg_color\":\"E2E2E2\",\"lightbox_page_name_color\":\"000000\",\"lightbox_obj_page_name_size\":\"14\",\"lightbox_obj_page_name_font_weight\":\"bold\",\"lightbox_obj_story_color\":\"4B4B4B\",\"lightbox_obj_story_size\":\"14\",\"lightbox_obj_story_font_weight\":\"normal\",\"lightbox_obj_place_color\":\"000000\",\"lightbox_obj_place_size\":\"13\",\"lightbox_obj_place_font_weight\":\"normal\",\"lightbox_obj_name_color\":\"4B4B4B\",\"lightbox_obj_name_size\":\"14\",\"lightbox_obj_name_font_weight\":\"bold\",\"lightbox_obj_message_color\":\"000000\",\"lightbox_obj_message_size\":\"14\",\"lightbox_obj_message_font_weight\":\"normal\",\"lightbox_obj_hashtags_color\":\"000000\",\"lightbox_obj_hashtags_size\":\"12\",\"lightbox_obj_hashtags_font_weight\":\"normal\",\"lightbox_obj_likes_social_bg_color\":\"BBCED4\",\"lightbox_obj_likes_social_color\":\"FFFFFF\",\"lightbox_obj_likes_social_size\":\"14\",\"lightbox_obj_likes_social_font_weight\":\"normal\",\"lightbox_obj_comments_bg_color\":\"EAEAEA\",\"lightbox_obj_comments_color\":\"4A4A4A\",\"lightbox_obj_comments_font_family\":\"inherit\",\"lightbox_obj_comments_font_size\":\"14\",\"lightbox_obj_users_font_color\":\"4B4B4B\",\"lightbox_obj_comments_social_font_weight\":\"normal\",\"lightbox_obj_comment_border_width\":\"1\",\"lightbox_obj_comment_border_style\":\"solid\",\"lightbox_obj_comment_border_color\":\"C9C9C9\",\"lightbox_obj_comment_border_type\":\"top\",\"lightbox_filmstrip_pos\":\"top\",\"lightbox_filmstrip_rl_bg_color\":\"3B3B3B\",\"lightbox_filmstrip_rl_btn_size\":\"20\",\"lightbox_filmstrip_rl_btn_color\":\"ffffff\",\"lightbox_filmstrip_thumb_margin\":\"0 1px\",\"lightbox_filmstrip_thumb_border_width\":\"1\",\"lightbox_filmstrip_thumb_border_style\":\"solid\",\"lightbox_filmstrip_thumb_border_color\":\"000000\",\"lightbox_filmstrip_thumb_border_radius\":\"0\",\"lightbox_filmstrip_thumb_deactive_transparent\":\"80\",\"lightbox_filmstrip_thumb_active_border_width\":\"0\",\"lightbox_filmstrip_thumb_active_border_color\":\"FFFFFF\",\"lightbox_rl_btn_style\":\"\",\"lightbox_evt_str_color\":\"000000\",\"lightbox_evt_str_size\":\"14\",\"lightbox_evt_str_font_weight\":\"normal\",\"lightbox_evt_ctzpcn_color\":\"000000\",\"lightbox_evt_ctzpcn_size\":\"14\",\"lightbox_evt_ctzpcn_font_weight\":\"normal\",\"lightbox_evt_map_color\":\"000000\",\"lightbox_evt_map_size\":\"14\",\"lightbox_evt_map_font_weight\":\"normal\",\"lightbox_evt_date_color\":\"000000\",\"lightbox_evt_date_size\":\"14\",\"lightbox_evt_date_font_weight\":\"normal\",\"lightbox_evt_info_font_family\":\"inherit\",\"page_nav_position\":\"bottom\",\"page_nav_align\":\"center\",\"page_nav_number\":\"0\",\"page_nav_font_size\":\"12\",\"page_nav_font_style\":\"inherit\",\"page_nav_font_color\":\"666666\",\"page_nav_font_weight\":\"bold\",\"page_nav_border_width\":\"1\",\"page_nav_border_style\":\"solid\",\"page_nav_border_color\":\"E3E3E3\",\"page_nav_border_radius\":\"0\",\"page_nav_margin\":\"0\",\"page_nav_padding\":\"3px 6px\",\"page_nav_button_bg_color\":\"FFFFFF\",\"page_nav_button_bg_transparent\":\"100\",\"page_nav_box_shadow\":\"0\",\"page_nav_button_transition\":\"1\",\"page_nav_button_text\":\"0\",\"lightbox_obj_icons_color_likes_comments_count\":\"white\"}',0),(3,'Theme 3','{\"thumb_margin\":\"10\",\"thumb_padding\":\"2\",\"thumb_border_radius\":\"2px\",\"thumb_border_width\":\"1\",\"thumb_border_style\":\"none\",\"thumb_border_color\":\"000000\",\"thumb_bg_color\":\"C3E0CE\",\"thumbs_bg_color\":\"FFFFFF\",\"thumb_bg_transparent\":\"100\",\"thumb_box_shadow\":\"0px 0px 1px #000000\",\"thumb_transparent\":\"100\",\"thumb_align\":\"center\",\"thumb_hover_effect\":\"rotate\",\"thumb_hover_effect_value\":\"2deg\",\"thumb_transition\":\"1\",\"thumb_title_font_color\":\"191919\",\"thumb_title_font_style\":\"inherit\",\"thumb_title_pos\":\"bottom\",\"thumb_title_font_size\":\"14\",\"thumb_title_font_weight\":\"normal\",\"thumb_title_margin\":\"10\",\"thumb_title_shadow\":\"\",\"thumb_like_comm_pos\":\"bottom\",\"thumb_like_comm_font_size\":\"14\",\"thumb_like_comm_font_color\":\"FFFFFF\",\"thumb_like_comm_font_style\":\"inherit\",\"thumb_like_comm_font_weight\":\"normal\",\"thumb_like_comm_shadow\":\"0px 0px 1px #000000\",\"masonry_thumb_padding\":\"4\",\"masonry_thumb_border_radius\":\"2px\",\"masonry_thumb_border_width\":\"1\",\"masonry_thumb_border_style\":\"solid\",\"masonry_thumb_border_color\":\"FFFFFF\",\"masonry_thumbs_bg_color\":\"C3E0CE\",\"masonry_thumb_bg_transparent\":\"100\",\"masonry_thumb_transparent\":\"100\",\"masonry_thumb_align\":\"center\",\"masonry_thumb_hover_effect\":\"scale\",\"masonry_thumb_hover_effect_value\":\"1.1\",\"masonry_thumb_transition\":\"1\",\"masonry_description_font_size\":\"14\",\"masonry_description_color\":\"191919\",\"masonry_description_font_style\":\"inherit\",\"masonry_like_comm_pos\":\"bottom\",\"masonry_like_comm_font_size\":\"14\",\"masonry_like_comm_font_color\":\"FFFFFF\",\"masonry_like_comm_font_style\":\"inherit\",\"masonry_like_comm_font_weight\":\"normal\",\"masonry_like_comm_shadow\":\"0px 0px 1px #000000\",\"blog_style_align\":\"left\",\"blog_style_bg_color\":\"FFFFFF\",\"blog_style_fd_name_bg_color\":\"000000\",\"blog_style_fd_name_align\":\"center\",\"blog_style_fd_name_padding\":\"10\",\"blog_style_fd_name_color\":\"FFFFFF\",\"blog_style_fd_name_size\":\"15\",\"blog_style_fd_name_font_weight\":\"normal\",\"blog_style_fd_icon\":\"\",\"blog_style_fd_icon_color\":\"\",\"blog_style_fd_icon_size\":\"\",\"blog_style_transparent\":\"100\",\"blog_style_obj_img_align\":\"center\",\"blog_style_margin\":\"10\",\"blog_style_box_shadow\":\"\",\"blog_style_border_width\":\"1\",\"blog_style_border_style\":\"solid\",\"blog_style_border_color\":\"C9C9C9\",\"blog_style_border_type\":\"top\",\"blog_style_border_radius\":\"\",\"blog_style_obj_icons_color\":\"gray\",\"blog_style_obj_date_pos\":\"after\",\"blog_style_obj_font_family\":\"inherit\",\"blog_style_obj_info_bg_color\":\"FFFFFF\",\"blog_style_page_name_color\":\"000000\",\"blog_style_obj_page_name_size\":\"13\",\"blog_style_obj_page_name_font_weight\":\"bold\",\"blog_style_obj_story_color\":\"000000\",\"blog_style_obj_story_size\":\"14\",\"blog_style_obj_story_font_weight\":\"normal\",\"blog_style_obj_place_color\":\"000000\",\"blog_style_obj_place_size\":\"13\",\"blog_style_obj_place_font_weight\":\"normal\",\"blog_style_obj_name_color\":\"000000\",\"blog_style_obj_name_size\":\"13\",\"blog_style_obj_name_font_weight\":\"bold\",\"blog_style_obj_message_color\":\"000000\",\"blog_style_obj_message_size\":\"14\",\"blog_style_obj_message_font_weight\":\"normal\",\"blog_style_obj_hashtags_color\":\"000000\",\"blog_style_obj_hashtags_size\":\"12\",\"blog_style_obj_hashtags_font_weight\":\"normal\",\"blog_style_obj_likes_social_bg_color\":\"C3E0CE\",\"blog_style_obj_likes_social_color\":\"656565\",\"blog_style_obj_likes_social_size\":\"14\",\"blog_style_obj_likes_social_font_weight\":\"normal\",\"blog_style_obj_comments_bg_color\":\"FFFFFF\",\"blog_style_obj_comments_color\":\"000000\",\"blog_style_obj_comments_font_family\":\"inherit\",\"blog_style_obj_comments_font_size\":\"14\",\"blog_style_obj_users_font_color\":\"000000\",\"blog_style_obj_comments_social_font_weight\":\"normal\",\"blog_style_obj_comment_border_width\":\"1\",\"blog_style_obj_comment_border_style\":\"solid\",\"blog_style_obj_comment_border_color\":\"C9C9C9\",\"blog_style_obj_comment_border_type\":\"top\",\"blog_style_evt_str_color\":\"000000\",\"blog_style_evt_str_size\":\"14\",\"blog_style_evt_str_font_weight\":\"normal\",\"blog_style_evt_ctzpcn_color\":\"000000\",\"blog_style_evt_ctzpcn_size\":\"14\",\"blog_style_evt_ctzpcn_font_weight\":\"normal\",\"blog_style_evt_map_color\":\"000000\",\"blog_style_evt_map_size\":\"14\",\"blog_style_evt_map_font_weight\":\"normal\",\"blog_style_evt_date_color\":\"000000\",\"blog_style_evt_date_size\":\"14\",\"blog_style_evt_date_font_weight\":\"normal\",\"blog_style_evt_info_font_family\":\"inherit\",\"album_compact_back_font_color\":\"000000\",\"album_compact_back_font_style\":\"inherit\",\"album_compact_back_font_size\":\"16\",\"album_compact_back_font_weight\":\"bold\",\"album_compact_back_padding\":\"0\",\"album_compact_title_font_color\":\"191919\",\"album_compact_title_font_style\":\"inherit\",\"album_compact_thumb_title_pos\":\"bottom\",\"album_compact_title_font_size\":\"13\",\"album_compact_title_font_weight\":\"normal\",\"album_compact_title_margin\":\"2px\",\"album_compact_title_shadow\":\"0px 0px 0px #888888\",\"album_compact_thumb_margin\":\"4\",\"album_compact_thumb_padding\":\"0\",\"album_compact_thumb_border_radius\":\"0\",\"album_compact_thumb_border_width\":\"0\",\"album_compact_thumb_border_style\":\"none\",\"album_compact_thumb_border_color\":\"CCCCCC\",\"album_compact_thumb_bg_color\":\"C3E0CE\",\"album_compact_thumbs_bg_color\":\"FFFFFF\",\"album_compact_thumb_bg_transparent\":\"0\",\"album_compact_thumb_box_shadow\":\"0px 0px 0px #888888\",\"album_compact_thumb_transparent\":\"100\",\"album_compact_thumb_align\":\"center\",\"album_compact_thumb_hover_effect\":\"scale\",\"album_compact_thumb_hover_effect_value\":\"1.1\",\"album_compact_thumb_transition\":\"0\",\"lightbox_overlay_bg_color\":\"000000\",\"lightbox_overlay_bg_transparent\":\"70\",\"lightbox_bg_color\":\"000000\",\"lightbox_ctrl_btn_pos\":\"bottom\",\"lightbox_ctrl_btn_align\":\"center\",\"lightbox_ctrl_btn_height\":\"20\",\"lightbox_ctrl_btn_margin_top\":\"10\",\"lightbox_ctrl_btn_margin_left\":\"7\",\"lightbox_ctrl_btn_transparent\":\"100\",\"lightbox_ctrl_btn_color\":\"ffffff\",\"lightbox_toggle_btn_height\":\"14\",\"lightbox_toggle_btn_width\":\"100\",\"lightbox_ctrl_cont_bg_color\":\"000000\",\"lightbox_ctrl_cont_transparent\":\"65\",\"lightbox_ctrl_cont_border_radius\":\"4\",\"lightbox_close_btn_transparent\":\"100\",\"lightbox_close_btn_bg_color\":\"000000\",\"lightbox_close_btn_border_width\":\"2\",\"lightbox_close_btn_border_radius\":\"16px\",\"lightbox_close_btn_border_style\":\"none\",\"lightbox_close_btn_border_color\":\"FFFFFF\",\"lightbox_close_btn_box_shadow\":\"0\",\"lightbox_close_btn_color\":\"\",\"lightbox_close_btn_size\":\"10\",\"lightbox_close_btn_width\":\"20\",\"lightbox_close_btn_height\":\"20\",\"lightbox_close_btn_top\":\"-10\",\"lightbox_close_btn_right\":\"-10\",\"lightbox_close_btn_full_color\":\"\",\"lightbox_rl_btn_bg_color\":\"000000\",\"lightbox_rl_btn_transparent\":\"80\",\"lightbox_rl_btn_border_radius\":\"20px\",\"lightbox_rl_btn_border_width\":\"0\",\"lightbox_rl_btn_border_style\":\"none\",\"lightbox_rl_btn_border_color\":\"FFFFFF\",\"lightbox_rl_btn_box_shadow\":\"\",\"lightbox_rl_btn_color\":\"\",\"lightbox_rl_btn_height\":\"40\",\"lightbox_rl_btn_width\":\"40\",\"lightbox_rl_btn_size\":\"20\",\"lightbox_close_rl_btn_hover_color\":\"\",\"lightbox_obj_pos\":\"left\",\"lightbox_obj_width\":\"350\",\"lightbox_obj_icons_color\":\"gray\",\"lightbox_obj_date_pos\":\"after\",\"lightbox_obj_font_family\":\"inherit\",\"lightbox_obj_info_bg_color\":\"E2E2E2\",\"lightbox_page_name_color\":\"4B4B4B\",\"lightbox_obj_page_name_size\":\"14\",\"lightbox_obj_page_name_font_weight\":\"bold\",\"lightbox_obj_story_color\":\"4B4B4B\",\"lightbox_obj_story_size\":\"14\",\"lightbox_obj_story_font_weight\":\"normal\",\"lightbox_obj_place_color\":\"000000\",\"lightbox_obj_place_size\":\"13\",\"lightbox_obj_place_font_weight\":\"normal\",\"lightbox_obj_name_color\":\"4B4B4B\",\"lightbox_obj_name_size\":\"14\",\"lightbox_obj_name_font_weight\":\"bold\",\"lightbox_obj_message_color\":\"000000\",\"lightbox_obj_message_size\":\"14\",\"lightbox_obj_message_font_weight\":\"normal\",\"lightbox_obj_hashtags_color\":\"000000\",\"lightbox_obj_hashtags_size\":\"12\",\"lightbox_obj_hashtags_font_weight\":\"normal\",\"lightbox_obj_likes_social_bg_color\":\"C3E0CE\",\"lightbox_obj_likes_social_color\":\"FFFFFF\",\"lightbox_obj_likes_social_size\":\"14\",\"lightbox_obj_likes_social_font_weight\":\"normal\",\"lightbox_obj_comments_bg_color\":\"EAEAEA\",\"lightbox_obj_comments_color\":\"4A4A4A\",\"lightbox_obj_comments_font_family\":\"inherit\",\"lightbox_obj_comments_font_size\":\"14\",\"lightbox_obj_users_font_color\":\"4B4B4B\",\"lightbox_obj_comments_social_font_weight\":\"normal\",\"lightbox_obj_comment_border_width\":\"1\",\"lightbox_obj_comment_border_style\":\"solid\",\"lightbox_obj_comment_border_color\":\"C9C9C9\",\"lightbox_obj_comment_border_type\":\"top\",\"lightbox_filmstrip_pos\":\"top\",\"lightbox_filmstrip_rl_bg_color\":\"3B3B3B\",\"lightbox_filmstrip_rl_btn_size\":\"20\",\"lightbox_filmstrip_rl_btn_color\":\"ffffff\",\"lightbox_filmstrip_thumb_margin\":\"0 1px\",\"lightbox_filmstrip_thumb_border_width\":\"1\",\"lightbox_filmstrip_thumb_border_style\":\"solid\",\"lightbox_filmstrip_thumb_border_color\":\"000000\",\"lightbox_filmstrip_thumb_border_radius\":\"0\",\"lightbox_filmstrip_thumb_deactive_transparent\":\"80\",\"lightbox_filmstrip_thumb_active_border_width\":\"0\",\"lightbox_filmstrip_thumb_active_border_color\":\"FFFFFF\",\"lightbox_rl_btn_style\":\"\",\"lightbox_evt_str_color\":\"000000\",\"lightbox_evt_str_size\":\"14\",\"lightbox_evt_str_font_weight\":\"normal\",\"lightbox_evt_ctzpcn_color\":\"000000\",\"lightbox_evt_ctzpcn_size\":\"14\",\"lightbox_evt_ctzpcn_font_weight\":\"normal\",\"lightbox_evt_map_color\":\"000000\",\"lightbox_evt_map_size\":\"14\",\"lightbox_evt_map_font_weight\":\"normal\",\"lightbox_evt_date_color\":\"000000\",\"lightbox_evt_date_size\":\"14\",\"lightbox_evt_date_font_weight\":\"normal\",\"lightbox_evt_info_font_family\":\"inherit\",\"page_nav_position\":\"bottom\",\"page_nav_align\":\"center\",\"page_nav_number\":\"0\",\"page_nav_font_size\":\"12\",\"page_nav_font_style\":\"inherit\",\"page_nav_font_color\":\"666666\",\"page_nav_font_weight\":\"bold\",\"page_nav_border_width\":\"1\",\"page_nav_border_style\":\"solid\",\"page_nav_border_color\":\"E3E3E3\",\"page_nav_border_radius\":\"0\",\"page_nav_margin\":\"0\",\"page_nav_padding\":\"3px 6px\",\"page_nav_button_bg_color\":\"FFFFFF\",\"page_nav_button_bg_transparent\":\"100\",\"page_nav_box_shadow\":\"0\",\"page_nav_button_transition\":\"1\",\"page_nav_button_text\":\"0\",\"lightbox_obj_icons_color_likes_comments_count\":\"white\"}',0),(4,'Theme 4','{\"thumb_margin\":\"10\",\"thumb_padding\":\"2\",\"thumb_border_radius\":\"2px\",\"thumb_border_width\":\"1\",\"thumb_border_style\":\"none\",\"thumb_border_color\":\"000000\",\"thumb_bg_color\":\"CFC3DB\",\"thumbs_bg_color\":\"FFFFFF\",\"thumb_bg_transparent\":\"100\",\"thumb_box_shadow\":\"0px 0px 1px #000000\",\"thumb_transparent\":\"100\",\"thumb_align\":\"center\",\"thumb_hover_effect\":\"rotate\",\"thumb_hover_effect_value\":\"2deg\",\"thumb_transition\":\"1\",\"thumb_title_font_color\":\"191919\",\"thumb_title_font_style\":\"inherit\",\"thumb_title_pos\":\"bottom\",\"thumb_title_font_size\":\"14\",\"thumb_title_font_weight\":\"normal\",\"thumb_title_margin\":\"10\",\"thumb_title_shadow\":\"\",\"thumb_like_comm_pos\":\"bottom\",\"thumb_like_comm_font_size\":\"14\",\"thumb_like_comm_font_color\":\"FFFFFF\",\"thumb_like_comm_font_style\":\"inherit\",\"thumb_like_comm_font_weight\":\"normal\",\"thumb_like_comm_shadow\":\"0px 0px 1px #000000\",\"masonry_thumb_padding\":\"4\",\"masonry_thumb_border_radius\":\"2px\",\"masonry_thumb_border_width\":\"1\",\"masonry_thumb_border_style\":\"solid\",\"masonry_thumb_border_color\":\"FFFFFF\",\"masonry_thumbs_bg_color\":\"CFC3DB\",\"masonry_thumb_bg_transparent\":\"100\",\"masonry_thumb_transparent\":\"100\",\"masonry_thumb_align\":\"center\",\"masonry_thumb_hover_effect\":\"scale\",\"masonry_thumb_hover_effect_value\":\"1.1\",\"masonry_thumb_transition\":\"1\",\"masonry_description_font_size\":\"14\",\"masonry_description_color\":\"191919\",\"masonry_description_font_style\":\"inherit\",\"masonry_like_comm_pos\":\"bottom\",\"masonry_like_comm_font_size\":\"14\",\"masonry_like_comm_font_color\":\"FFFFFF\",\"masonry_like_comm_font_style\":\"inherit\",\"masonry_like_comm_font_weight\":\"normal\",\"masonry_like_comm_shadow\":\"0px 0px 1px #000000\",\"blog_style_align\":\"left\",\"blog_style_bg_color\":\"FFFFFF\",\"blog_style_fd_name_bg_color\":\"000000\",\"blog_style_fd_name_align\":\"center\",\"blog_style_fd_name_padding\":\"10\",\"blog_style_fd_name_color\":\"FFFFFF\",\"blog_style_fd_name_size\":\"15\",\"blog_style_fd_name_font_weight\":\"normal\",\"blog_style_fd_icon\":\"\",\"blog_style_fd_icon_color\":\"\",\"blog_style_fd_icon_size\":\"\",\"blog_style_transparent\":\"100\",\"blog_style_obj_img_align\":\"center\",\"blog_style_margin\":\"10\",\"blog_style_box_shadow\":\"\",\"blog_style_border_width\":\"1\",\"blog_style_border_style\":\"solid\",\"blog_style_border_color\":\"C9C9C9\",\"blog_style_border_type\":\"top\",\"blog_style_border_radius\":\"\",\"blog_style_obj_icons_color\":\"gray\",\"blog_style_obj_date_pos\":\"after\",\"blog_style_obj_font_family\":\"inherit\",\"blog_style_obj_info_bg_color\":\"FFFFFF\",\"blog_style_page_name_color\":\"000000\",\"blog_style_obj_page_name_size\":\"13\",\"blog_style_obj_page_name_font_weight\":\"bold\",\"blog_style_obj_story_color\":\"000000\",\"blog_style_obj_story_size\":\"14\",\"blog_style_obj_story_font_weight\":\"normal\",\"blog_style_obj_place_color\":\"000000\",\"blog_style_obj_place_size\":\"13\",\"blog_style_obj_place_font_weight\":\"normal\",\"blog_style_obj_name_color\":\"000000\",\"blog_style_obj_name_size\":\"13\",\"blog_style_obj_name_font_weight\":\"bold\",\"blog_style_obj_message_color\":\"000000\",\"blog_style_obj_message_size\":\"14\",\"blog_style_obj_message_font_weight\":\"normal\",\"blog_style_obj_hashtags_color\":\"000000\",\"blog_style_obj_hashtags_size\":\"12\",\"blog_style_obj_hashtags_font_weight\":\"normal\",\"blog_style_obj_likes_social_bg_color\":\"CFC3DB\",\"blog_style_obj_likes_social_color\":\"656565\",\"blog_style_obj_likes_social_size\":\"14\",\"blog_style_obj_likes_social_font_weight\":\"normal\",\"blog_style_obj_comments_bg_color\":\"FFFFFF\",\"blog_style_obj_comments_color\":\"000000\",\"blog_style_obj_comments_font_family\":\"inherit\",\"blog_style_obj_comments_font_size\":\"14\",\"blog_style_obj_users_font_color\":\"000000\",\"blog_style_obj_comments_social_font_weight\":\"normal\",\"blog_style_obj_comment_border_width\":\"1\",\"blog_style_obj_comment_border_style\":\"solid\",\"blog_style_obj_comment_border_color\":\"C9C9C9\",\"blog_style_obj_comment_border_type\":\"top\",\"blog_style_evt_str_color\":\"000000\",\"blog_style_evt_str_size\":\"14\",\"blog_style_evt_str_font_weight\":\"normal\",\"blog_style_evt_ctzpcn_color\":\"000000\",\"blog_style_evt_ctzpcn_size\":\"14\",\"blog_style_evt_ctzpcn_font_weight\":\"normal\",\"blog_style_evt_map_color\":\"000000\",\"blog_style_evt_map_size\":\"14\",\"blog_style_evt_map_font_weight\":\"normal\",\"blog_style_evt_date_color\":\"000000\",\"blog_style_evt_date_size\":\"14\",\"blog_style_evt_date_font_weight\":\"normal\",\"blog_style_evt_info_font_family\":\"inherit\",\"album_compact_back_font_color\":\"000000\",\"album_compact_back_font_style\":\"inherit\",\"album_compact_back_font_size\":\"16\",\"album_compact_back_font_weight\":\"bold\",\"album_compact_back_padding\":\"0\",\"album_compact_title_font_color\":\"191919\",\"album_compact_title_font_style\":\"inherit\",\"album_compact_thumb_title_pos\":\"bottom\",\"album_compact_title_font_size\":\"13\",\"album_compact_title_font_weight\":\"normal\",\"album_compact_title_margin\":\"2px\",\"album_compact_title_shadow\":\"0px 0px 0px #888888\",\"album_compact_thumb_margin\":\"0\",\"album_compact_thumb_padding\":\"0\",\"album_compact_thumb_border_radius\":\"0\",\"album_compact_thumb_border_width\":\"0\",\"album_compact_thumb_border_style\":\"none\",\"album_compact_thumb_border_color\":\"CCCCCC\",\"album_compact_thumb_bg_color\":\"CFC3DB\",\"album_compact_thumbs_bg_color\":\"FFFFFF\",\"album_compact_thumb_bg_transparent\":\"0\",\"album_compact_thumb_box_shadow\":\"0px 0px 0px #888888\",\"album_compact_thumb_transparent\":\"100\",\"album_compact_thumb_align\":\"center\",\"album_compact_thumb_hover_effect\":\"scale\",\"album_compact_thumb_hover_effect_value\":\"1.1\",\"album_compact_thumb_transition\":\"0\",\"lightbox_overlay_bg_color\":\"000000\",\"lightbox_overlay_bg_transparent\":\"70\",\"lightbox_bg_color\":\"000000\",\"lightbox_ctrl_btn_pos\":\"bottom\",\"lightbox_ctrl_btn_align\":\"center\",\"lightbox_ctrl_btn_height\":\"20\",\"lightbox_ctrl_btn_margin_top\":\"10\",\"lightbox_ctrl_btn_margin_left\":\"7\",\"lightbox_ctrl_btn_transparent\":\"100\",\"lightbox_ctrl_btn_color\":\"ffffff\",\"lightbox_toggle_btn_height\":\"14\",\"lightbox_toggle_btn_width\":\"100\",\"lightbox_ctrl_cont_bg_color\":\"000000\",\"lightbox_ctrl_cont_transparent\":\"65\",\"lightbox_ctrl_cont_border_radius\":\"4\",\"lightbox_close_btn_transparent\":\"100\",\"lightbox_close_btn_bg_color\":\"000000\",\"lightbox_close_btn_border_width\":\"2\",\"lightbox_close_btn_border_radius\":\"16px\",\"lightbox_close_btn_border_style\":\"none\",\"lightbox_close_btn_border_color\":\"FFFFFF\",\"lightbox_close_btn_box_shadow\":\"0\",\"lightbox_close_btn_color\":\"\",\"lightbox_close_btn_size\":\"10\",\"lightbox_close_btn_width\":\"20\",\"lightbox_close_btn_height\":\"20\",\"lightbox_close_btn_top\":\"-10\",\"lightbox_close_btn_right\":\"-10\",\"lightbox_close_btn_full_color\":\"\",\"lightbox_rl_btn_bg_color\":\"000000\",\"lightbox_rl_btn_transparent\":\"80\",\"lightbox_rl_btn_border_radius\":\"20px\",\"lightbox_rl_btn_border_width\":\"0\",\"lightbox_rl_btn_border_style\":\"none\",\"lightbox_rl_btn_border_color\":\"FFFFFF\",\"lightbox_rl_btn_box_shadow\":\"\",\"lightbox_rl_btn_color\":\"\",\"lightbox_rl_btn_height\":\"40\",\"lightbox_rl_btn_width\":\"40\",\"lightbox_rl_btn_size\":\"20\",\"lightbox_close_rl_btn_hover_color\":\"\",\"lightbox_obj_pos\":\"left\",\"lightbox_obj_width\":\"350\",\"lightbox_obj_icons_color\":\"gray\",\"lightbox_obj_date_pos\":\"after\",\"lightbox_obj_font_family\":\"inherit\",\"lightbox_obj_info_bg_color\":\"E2E2E2\",\"lightbox_page_name_color\":\"4B4B4B\",\"lightbox_obj_page_name_size\":\"14\",\"lightbox_obj_page_name_font_weight\":\"bold\",\"lightbox_obj_story_color\":\"4B4B4B\",\"lightbox_obj_story_size\":\"14\",\"lightbox_obj_story_font_weight\":\"normal\",\"lightbox_obj_place_color\":\"000000\",\"lightbox_obj_place_size\":\"13\",\"lightbox_obj_place_font_weight\":\"normal\",\"lightbox_obj_name_color\":\"4B4B4B\",\"lightbox_obj_name_size\":\"14\",\"lightbox_obj_name_font_weight\":\"bold\",\"lightbox_obj_message_color\":\"000000\",\"lightbox_obj_message_size\":\"14\",\"lightbox_obj_message_font_weight\":\"normal\",\"lightbox_obj_hashtags_color\":\"000000\",\"lightbox_obj_hashtags_size\":\"12\",\"lightbox_obj_hashtags_font_weight\":\"normal\",\"lightbox_obj_likes_social_bg_color\":\"CFC3DB\",\"lightbox_obj_likes_social_color\":\"FFFFFF\",\"lightbox_obj_likes_social_size\":\"14\",\"lightbox_obj_likes_social_font_weight\":\"normal\",\"lightbox_obj_comments_bg_color\":\"EAEAEA\",\"lightbox_obj_comments_color\":\"4A4A4A\",\"lightbox_obj_comments_font_family\":\"inherit\",\"lightbox_obj_comments_font_size\":\"14\",\"lightbox_obj_users_font_color\":\"4B4B4B\",\"lightbox_obj_comments_social_font_weight\":\"normal\",\"lightbox_obj_comment_border_width\":\"1\",\"lightbox_obj_comment_border_style\":\"solid\",\"lightbox_obj_comment_border_color\":\"C9C9C9\",\"lightbox_obj_comment_border_type\":\"top\",\"lightbox_filmstrip_pos\":\"top\",\"lightbox_filmstrip_rl_bg_color\":\"3B3B3B\",\"lightbox_filmstrip_rl_btn_size\":\"20\",\"lightbox_filmstrip_rl_btn_color\":\"ffffff\",\"lightbox_filmstrip_thumb_margin\":\"0 1px\",\"lightbox_filmstrip_thumb_border_width\":\"1\",\"lightbox_filmstrip_thumb_border_style\":\"solid\",\"lightbox_filmstrip_thumb_border_color\":\"000000\",\"lightbox_filmstrip_thumb_border_radius\":\"0\",\"lightbox_filmstrip_thumb_deactive_transparent\":\"80\",\"lightbox_filmstrip_thumb_active_border_width\":\"0\",\"lightbox_filmstrip_thumb_active_border_color\":\"FFFFFF\",\"lightbox_rl_btn_style\":\"\",\"lightbox_evt_str_color\":\"000000\",\"lightbox_evt_str_size\":\"14\",\"lightbox_evt_str_font_weight\":\"normal\",\"lightbox_evt_ctzpcn_color\":\"000000\",\"lightbox_evt_ctzpcn_size\":\"14\",\"lightbox_evt_ctzpcn_font_weight\":\"normal\",\"lightbox_evt_map_color\":\"000000\",\"lightbox_evt_map_size\":\"14\",\"lightbox_evt_map_font_weight\":\"normal\",\"lightbox_evt_date_color\":\"000000\",\"lightbox_evt_date_size\":\"14\",\"lightbox_evt_date_font_weight\":\"normal\",\"lightbox_evt_info_font_family\":\"inherit\",\"page_nav_position\":\"bottom\",\"page_nav_align\":\"center\",\"page_nav_number\":\"0\",\"page_nav_font_size\":\"12\",\"page_nav_font_style\":\"inherit\",\"page_nav_font_color\":\"666666\",\"page_nav_font_weight\":\"bold\",\"page_nav_border_width\":\"1\",\"page_nav_border_style\":\"solid\",\"page_nav_border_color\":\"E3E3E3\",\"page_nav_border_radius\":\"0\",\"page_nav_margin\":\"0\",\"page_nav_padding\":\"3px 6px\",\"page_nav_button_bg_color\":\"FFFFFF\",\"page_nav_button_bg_transparent\":\"100\",\"page_nav_box_shadow\":\"0\",\"page_nav_button_transition\":\"1\",\"page_nav_button_text\":\"0\",\"lightbox_obj_icons_color_likes_comments_count\":\"white\"}',0);
/*!40000 ALTER TABLE `wplf_wd_fb_theme` ENABLE KEYS */;
UNLOCK TABLES;

-- Dumped table `wplf_wd_fb_theme` with 4 row(s)
--

--
-- Table structure for table `wplf_wc_category_lookup`
--

DROP TABLE IF EXISTS `wplf_wc_category_lookup`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `wplf_wc_category_lookup` (
  `category_tree_id` bigint(20) unsigned NOT NULL,
  `category_id` bigint(20) unsigned NOT NULL,
  PRIMARY KEY (`category_tree_id`,`category_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wplf_wc_category_lookup`
--

LOCK TABLES `wplf_wc_category_lookup` WRITE;
/*!40000 ALTER TABLE `wplf_wc_category_lookup` DISABLE KEYS */;
INSERT INTO `wplf_wc_category_lookup` VALUES (15,15),(63,63),(63,86),(63,87),(63,88),(63,89),(63,90),(63,91),(63,92),(63,93),(63,94),(63,95),(63,96),(63,97),(63,98),(63,99),(63,100),(63,101),(64,64),(64,102),(64,103),(64,104),(64,105),(64,106),(64,107),(64,108),(64,109),(64,110),(64,111),(64,112),(64,113),(64,114),(64,115),(64,116),(64,117),(64,118),(64,119),(64,120),(64,121),(64,122),(64,123),(64,124),(64,125),(64,126),(64,127),(64,128),(64,130),(65,65),(65,75),(65,76),(65,77),(65,78),(65,79),(65,80),(65,81),(65,82),(65,83),(65,84),(65,85),(74,74),(75,75),(76,76),(77,77),(77,78),(77,79),(78,78),(79,79),(80,80),(81,81),(82,82),(83,83),(84,84),(85,85),(86,86),(86,87),(86,88),(87,87),(88,88),(89,89),(90,90),(91,91),(92,92),(93,93),(94,94),(95,95),(96,96),(97,97),(98,98),(99,99),(100,100),(101,101),(102,102),(102,103),(102,104),(102,105),(102,106),(102,107),(102,108),(102,109),(102,110),(102,111),(102,112),(102,113),(103,103),(104,104),(105,105),(106,106),(107,107),(107,108),(107,109),(107,110),(108,108),(109,109),(110,110),(111,111),(112,112),(113,113),(114,114),(114,115),(114,116),(114,117),(114,118),(114,119),(114,120),(114,130),(115,115),(115,116),(115,117),(115,130),(116,116),(117,117),(118,118),(119,119),(120,120),(121,121),(121,122),(121,123),(121,124),(121,125),(121,126),(121,127),(121,128),(122,122),(122,123),(122,124),(122,125),(123,123),(124,124),(125,125),(126,126),(127,127),(128,128),(130,130);
/*!40000 ALTER TABLE `wplf_wc_category_lookup` ENABLE KEYS */;
UNLOCK TABLES;

-- Dumped table `wplf_wc_category_lookup` with 153 row(s)
--

--
-- Table structure for table `wplf_revslider_slides_bkp`
--

DROP TABLE IF EXISTS `wplf_revslider_slides_bkp`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `wplf_revslider_slides_bkp` (
  `id` int(9) NOT NULL AUTO_INCREMENT,
  `slider_id` int(9) NOT NULL,
  `slide_order` int(11) NOT NULL,
  `params` longtext NOT NULL,
  `layers` longtext NOT NULL,
  `settings` text NOT NULL DEFAULT '',
  PRIMARY KEY (`id`),
  KEY `slider_id_index` (`slider_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wplf_revslider_slides_bkp`
--

LOCK TABLES `wplf_revslider_slides_bkp` WRITE;
/*!40000 ALTER TABLE `wplf_revslider_slides_bkp` DISABLE KEYS */;
/*!40000 ALTER TABLE `wplf_revslider_slides_bkp` ENABLE KEYS */;
UNLOCK TABLES;

-- Dumped table `wplf_revslider_slides_bkp` with 0 row(s)
--

--
-- Table structure for table `wplf_woocommerce_api_keys`
--

DROP TABLE IF EXISTS `wplf_woocommerce_api_keys`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `wplf_woocommerce_api_keys` (
  `key_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `user_id` bigint(20) unsigned NOT NULL,
  `description` varchar(200) DEFAULT NULL,
  `permissions` varchar(10) NOT NULL,
  `consumer_key` char(64) NOT NULL,
  `consumer_secret` char(43) NOT NULL,
  `nonces` longtext DEFAULT NULL,
  `truncated_key` char(7) NOT NULL,
  `last_access` datetime DEFAULT NULL,
  PRIMARY KEY (`key_id`),
  KEY `consumer_key` (`consumer_key`),
  KEY `consumer_secret` (`consumer_secret`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wplf_woocommerce_api_keys`
--

LOCK TABLES `wplf_woocommerce_api_keys` WRITE;
/*!40000 ALTER TABLE `wplf_woocommerce_api_keys` DISABLE KEYS */;
/*!40000 ALTER TABLE `wplf_woocommerce_api_keys` ENABLE KEYS */;
UNLOCK TABLES;

-- Dumped table `wplf_woocommerce_api_keys` with 0 row(s)
--

--
-- Table structure for table `wplf_woocommerce_attribute_taxonomies`
--

DROP TABLE IF EXISTS `wplf_woocommerce_attribute_taxonomies`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `wplf_woocommerce_attribute_taxonomies` (
  `attribute_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `attribute_name` varchar(200) NOT NULL,
  `attribute_label` varchar(200) DEFAULT NULL,
  `attribute_type` varchar(20) NOT NULL,
  `attribute_orderby` varchar(20) NOT NULL,
  `attribute_public` int(1) NOT NULL DEFAULT 1,
  PRIMARY KEY (`attribute_id`),
  KEY `attribute_name` (`attribute_name`(20))
) ENGINE=MyISAM AUTO_INCREMENT=6 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wplf_woocommerce_attribute_taxonomies`
--

LOCK TABLES `wplf_woocommerce_attribute_taxonomies` WRITE;
/*!40000 ALTER TABLE `wplf_woocommerce_attribute_taxonomies` DISABLE KEYS */;
INSERT INTO `wplf_woocommerce_attribute_taxonomies` VALUES (1,'composition','Composition','select','menu_order',0),(2,'dosage','Dosage','select','menu_order',0),(4,'product-type','Product Type','select','menu_order',0),(5,'brand','Brand','select','menu_order',0);
/*!40000 ALTER TABLE `wplf_woocommerce_attribute_taxonomies` ENABLE KEYS */;
UNLOCK TABLES;

-- Dumped table `wplf_woocommerce_attribute_taxonomies` with 4 row(s)
--

--
-- Table structure for table `wplf_wc_admin_notes`
--

DROP TABLE IF EXISTS `wplf_wc_admin_notes`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `wplf_wc_admin_notes` (
  `note_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `name` varchar(255) NOT NULL,
  `type` varchar(20) NOT NULL,
  `locale` varchar(20) NOT NULL,
  `title` longtext NOT NULL,
  `content` longtext NOT NULL,
  `content_data` longtext DEFAULT NULL,
  `status` varchar(200) NOT NULL,
  `source` varchar(200) NOT NULL,
  `date_created` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `date_reminder` datetime DEFAULT NULL,
  `is_snoozable` tinyint(1) NOT NULL DEFAULT 0,
  `layout` varchar(20) NOT NULL DEFAULT '',
  `image` varchar(200) DEFAULT NULL,
  `is_deleted` tinyint(1) NOT NULL DEFAULT 0,
  `icon` varchar(200) NOT NULL DEFAULT 'info',
  `is_read` tinyint(1) NOT NULL DEFAULT 0,
  PRIMARY KEY (`note_id`)
) ENGINE=MyISAM AUTO_INCREMENT=153 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wplf_wc_admin_notes`
--

LOCK TABLES `wplf_wc_admin_notes` WRITE;
/*!40000 ALTER TABLE `wplf_wc_admin_notes` DISABLE KEYS */;
INSERT INTO `wplf_wc_admin_notes` VALUES (1,'new_in_app_marketplace_2021','info','en_US','Customize your store with extensions','Check out our NEW Extensions tab to see our favorite extensions for customizing your store, and discover the most popular extensions in the WooCommerce Marketplace.','{}','unactioned','woocommerce.com','2022-07-20 07:17:56',NULL,0,'plain','',0,'info',0),(2,'wayflyer_bnpl_q4_2021','marketing','en_US','Grow your business with funding through Wayflyer','Fast, flexible financing to boost cash flow and help your business grow – one fee, no interest rates, penalties, equity, or personal guarantees. Based on your store’s performance, Wayflyer provides funding and analytical insights to invest in your business.','{}','pending','woocommerce.com','2022-07-20 07:17:56',NULL,0,'plain','',0,'info',0),(3,'wc_shipping_mobile_app_usps_q4_2021','marketing','en_US','Print and manage your shipping labels with WooCommerce Shipping and the WooCommerce Mobile App','Save time by printing, purchasing, refunding, and tracking shipping labels generated by <a href=\"https://woocommerce.com/woocommerce-shipping/\">WooCommerce Shipping</a> – all directly from your mobile device!','{}','pending','woocommerce.com','2022-07-20 07:17:56',NULL,0,'plain','',0,'info',0),(4,'wc_shipping_mobile_app_q4_2021','marketing','en_US','Print and manage your shipping labels with the WooCommerce Mobile App','Save time by printing, purchasing, refunding, and tracking shipping labels generated by <a href=\"https://woocommerce.com/woocommerce-shipping/\">WooCommerce Shipping</a> – all directly from your mobile device!','{}','pending','woocommerce.com','2022-07-20 07:17:56',NULL,0,'plain','',0,'info',0),(5,'ecomm-need-help-setting-up-your-store','info','en_US','Need help setting up your Store?','Schedule a free 30-min <a href=\"https://wordpress.com/support/concierge-support/\">quick start session</a> and get help from our specialists. We’re happy to walk through setup steps, show you around the WordPress.com dashboard, troubleshoot any issues you may have, and help you the find the features you need to accomplish your goals for your site.','{}','pending','woocommerce.com','2022-07-20 07:17:56',NULL,0,'plain','',0,'info',0),(6,'woocommerce-services','info','en_US','WooCommerce Shipping & Tax','WooCommerce Shipping &amp; Tax helps get your store \"ready to sell\" as quickly as possible. You create your products. We take care of tax calculation, payment processing, and shipping label printing! Learn more about the extension that you just installed.','{}','pending','woocommerce.com','2022-07-20 07:17:56',NULL,0,'plain','',0,'info',0),(7,'ecomm-unique-shopping-experience','info','en_US','For a shopping experience as unique as your customers','Product Add-Ons allow your customers to personalize products while they\'re shopping on your online store. No more follow-up email requests—customers get what they want, before they\'re done checking out. Learn more about this extension that comes included in your plan.','{}','pending','woocommerce.com','2022-07-20 07:17:56',NULL,0,'plain','',0,'info',0),(8,'wc-admin-getting-started-in-ecommerce','info','en_US','Getting Started in eCommerce - webinar','We want to make eCommerce and this process of getting started as easy as possible for you. Watch this webinar to get tips on how to have our store up and running in a breeze.','{}','pending','woocommerce.com','2022-07-20 07:17:56',NULL,0,'plain','',0,'info',0),(9,'your-first-product','info','en_US','Your first product','That’s huge! You’re well on your way to building a successful online store — now it’s time to think about how you’ll fulfill your orders.<br /><br />Read our shipping guide to learn best practices and options for putting together your shipping strategy. And for WooCommerce stores in the United States, you can print discounted shipping labels via USPS with <a href=\"https://href.li/?https://woocommerce.com/shipping\" target=\"_blank\">WooCommerce Shipping</a>.','{}','pending','woocommerce.com','2022-07-20 07:17:56',NULL,0,'plain','',0,'info',0),(10,'wc-admin-optimizing-the-checkout-flow','info','en_US','Optimizing the checkout flow','It’s crucial to get your store’s checkout as smooth as possible to avoid losing sales. Let’s take a look at how you can optimize the checkout experience for your shoppers.','{}','pending','woocommerce.com','2022-07-20 07:17:56',NULL,0,'plain','',0,'info',0),(11,'wc-admin-first-five-things-to-customize','info','en_US','The first 5 things to customize in your store','Deciding what to start with first is tricky. To help you properly prioritize, we’ve put together this short list of the first few things you should customize in WooCommerce.','{}','pending','woocommerce.com','2022-07-20 07:17:56',NULL,0,'plain','',0,'info',0),(12,'wc-payments-qualitative-feedback','info','en_US','WooCommerce Payments setup - let us know what you think','Congrats on enabling WooCommerce Payments for your store. Please share your feedback in this 2 minute survey to help us improve the setup process.','{}','pending','woocommerce.com','2022-07-20 07:17:56',NULL,0,'plain','',0,'info',0),(13,'share-your-feedback-on-paypal','info','en_US','Share your feedback on PayPal','Share your feedback in this 2 minute survey about how we can make the process of accepting payments more useful for your store.','{}','pending','woocommerce.com','2022-07-20 07:17:56',NULL,0,'plain','',0,'info',0),(14,'google_listings_and_ads_install','marketing','en_US','Drive traffic and sales with Google','Reach online shoppers to drive traffic and sales for your store by showcasing products across Google, for free or with ads.','{}','pending','woocommerce.com','2022-07-20 07:17:56',NULL,0,'plain','',0,'info',0),(15,'wc-subscriptions-security-update-3-0-15','info','en_US','WooCommerce Subscriptions security update!','We recently released an important security update to WooCommerce Subscriptions. To ensure your site’s data is protected, please upgrade <strong>WooCommerce Subscriptions to version 3.0.15</strong> or later.<br /><br />Click the button below to view and update to the latest Subscriptions version, or log in to <a href=\"https://woocommerce.com/my-dashboard\">WooCommerce.com Dashboard</a> and navigate to your <strong>Downloads</strong> page.<br /><br />We recommend always using the latest version of WooCommerce Subscriptions, and other software running on your site, to ensure maximum security.<br /><br />If you have any questions we are here to help — just <a href=\"https://woocommerce.com/my-account/create-a-ticket/\">open a ticket</a>.','{}','pending','woocommerce.com','2022-07-20 07:17:56',NULL,0,'plain','',0,'info',0),(16,'woocommerce-core-update-5-4-0','info','en_US','Update to WooCommerce 5.4.1 now','WooCommerce 5.4.1 addresses a checkout issue discovered in WooCommerce 5.4. We recommend upgrading to WooCommerce 5.4.1 as soon as possible.','{}','pending','woocommerce.com','2022-07-20 07:17:56',NULL,0,'plain','',0,'info',0),(17,'wcpay-promo-2020-11','marketing','en_US','wcpay-promo-2020-11','wcpay-promo-2020-11','{}','pending','woocommerce.com','2022-07-20 07:17:56',NULL,0,'plain','',0,'info',0),(18,'wcpay-promo-2020-12','marketing','en_US','wcpay-promo-2020-12','wcpay-promo-2020-12','{}','pending','woocommerce.com','2022-07-20 07:17:56',NULL,0,'plain','',0,'info',0),(19,'ppxo-pps-upgrade-paypal-payments-1','info','en_US','Get the latest PayPal extension for WooCommerce','Heads up! There’s a new PayPal on the block!<br /><br />Now is a great time to upgrade to our latest <a href=\"https://woocommerce.com/products/woocommerce-paypal-payments/\" target=\"_blank\">PayPal extension</a> to continue to receive support and updates with PayPal.<br /><br />Get access to a full suite of PayPal payment methods, extensive currency and country coverage, and pay later options with the all-new PayPal extension for WooCommerce.','{}','pending','woocommerce.com','2022-07-20 07:17:56',NULL,0,'plain','',0,'info',0),(20,'ppxo-pps-upgrade-paypal-payments-2','info','en_US','Upgrade your PayPal experience!','Get access to a full suite of PayPal payment methods, extensive currency and country coverage, offer subscription and recurring payments, and the new PayPal pay later options.<br /><br />Start using our <a href=\"https://woocommerce.com/products/woocommerce-paypal-payments/\" target=\"_blank\">latest PayPal today</a> to continue to receive support and updates.','{}','pending','woocommerce.com','2022-07-20 07:17:56',NULL,0,'plain','',0,'info',0),(21,'woocommerce-core-sqli-july-2021-need-to-update','update','en_US','Action required: Critical vulnerabilities in WooCommerce','In response to a critical vulnerability identified on July 13, 2021, we are working with the WordPress Plugins Team to deploy software updates to stores running WooCommerce (versions 3.3 to 5.5) and the WooCommerce Blocks feature plugin (versions 2.5 to 5.5).<br /><br />Our investigation into this vulnerability is ongoing, but <strong>we wanted to let you know now about the importance of updating immediately</strong>.<br /><br />For more information on which actions you should take, as well as answers to FAQs, please urgently review our blog post detailing this issue.','{}','pending','woocommerce.com','2022-07-20 07:17:56',NULL,0,'plain','',0,'info',0),(22,'woocommerce-blocks-sqli-july-2021-need-to-update','update','en_US','Action required: Critical vulnerabilities in WooCommerce Blocks','In response to a critical vulnerability identified on July 13, 2021, we are working with the WordPress Plugins Team to deploy software updates to stores running WooCommerce (versions 3.3 to 5.5) and the WooCommerce Blocks feature plugin (versions 2.5 to 5.5).<br /><br />Our investigation into this vulnerability is ongoing, but <strong>we wanted to let you know now about the importance of updating immediately</strong>.<br /><br />For more information on which actions you should take, as well as answers to FAQs, please urgently review our blog post detailing this issue.','{}','pending','woocommerce.com','2022-07-20 07:17:56',NULL,0,'plain','',0,'info',0),(23,'woocommerce-core-sqli-july-2021-store-patched','update','en_US','Solved: Critical vulnerabilities patched in WooCommerce','In response to a critical vulnerability identified on July 13, 2021, we worked with the WordPress Plugins Team to deploy software updates to stores running WooCommerce (versions 3.3 to 5.5) and the WooCommerce Blocks feature plugin (versions 2.5 to 5.5).<br /><br /><strong>Your store has been updated to the latest secure version(s)</strong>. For more information and answers to FAQs, please review our blog post detailing this issue.','{}','pending','woocommerce.com','2022-07-20 07:17:56',NULL,0,'plain','',0,'info',0),(24,'woocommerce-blocks-sqli-july-2021-store-patched','update','en_US','Solved: Critical vulnerabilities patched in WooCommerce Blocks','In response to a critical vulnerability identified on July 13, 2021, we worked with the WordPress Plugins Team to deploy software updates to stores running WooCommerce (versions 3.3 to 5.5) and the WooCommerce Blocks feature plugin (versions 2.5 to 5.5).<br /><br /><strong>Your store has been updated to the latest secure version(s)</strong>. For more information and answers to FAQs, please review our blog post detailing this issue.','{}','pending','woocommerce.com','2022-07-20 07:17:56',NULL,0,'plain','',0,'info',0),(25,'habit-moment-survey','marketing','en_US','We’re all ears! Share your experience so far with WooCommerce','We’d love your input to shape the future of WooCommerce together. Feel free to share any feedback, ideas or suggestions that you have.','{}','pending','woocommerce.com','2022-07-20 07:17:56',NULL,0,'plain','',0,'info',0),(26,'ecomm-wc-navigation-survey','info','en_US','We’d like your feedback on the WooCommerce navigation','We’re making improvements to the WooCommerce navigation and would love your feedback. Share your experience in this 2 minute survey.','{}','pending','woocommerce.com','2022-07-20 07:17:56',NULL,0,'plain','',0,'info',0),(27,'woocommerce-core-paypal-march-2022-updated','update','en_US','Security auto-update of WooCommerce','<strong>Your store has been updated to the latest secure version of WooCommerce</strong>. We worked with WordPress to deploy PayPal Standard security updates for stores running WooCommerce (version 3.5 to 6.3). It’s recommended to disable PayPal Standard, and use <a href=\"https://woocommerce.com/products/woocommerce-paypal-payments/\" target=\"_blank\">PayPal Payments</a> to accept PayPal.','{}','pending','woocommerce.com','2022-07-20 07:17:56',NULL,0,'plain','',0,'info',0),(28,'woocommerce-core-paypal-march-2022-updated-nopp','update','en_US','Security auto-update of WooCommerce','<strong>Your store has been updated to the latest secure version of WooCommerce</strong>. We worked with WordPress to deploy security updates related to PayPal Standard payment gateway for stores running WooCommerce (version 3.5 to 6.3).','{}','pending','woocommerce.com','2022-07-20 07:17:56',NULL,0,'plain','',0,'info',0),(29,'pinterest_03_2022_update','marketing','en_US','Your Pinterest for WooCommerce plugin is out of date!','Update to the latest version of Pinterest for WooCommerce to continue using this plugin and keep your store connected with Pinterest. To update, visit <strong>Plugins &gt; Installed Plugins</strong>, and click on “update now” under Pinterest for WooCommerce.','{}','pending','woocommerce.com','2022-07-20 07:17:56',NULL,0,'plain','',0,'info',0),(30,'setup_task_initiative_survey_q2_2022','survey','en_US','We want to know what matters most to you','Take 2 minutes to give us your input on what is important for you while setting up your store and help shape the future of WooCommerce together.','{}','unactioned','woocommerce.com','2022-07-20 07:17:56',NULL,0,'plain','',0,'info',0),(31,'store_setup_survey_survey_q2_2022','survey','en_US','How is your store setup going?','Our goal is to make sure you have all the right tools to start setting up your store in the smoothest way possible.\r\nWe’d love to know if we hit our mark and how we can improve. To collect your thoughts, we made a 2-minute survey.','{}','unactioned','woocommerce.com','2022-07-29 02:16:16',NULL,0,'plain','',0,'info',0),(32,'wc-admin-wisepad3','marketing','en_US','Take your business on the go in Canada with WooCommerce In-Person Payments','Quickly create new orders, accept payment in person for orders placed online, and automatically sync your inventory – no matter where your business takes you. With WooCommerce In-Person Payments and the WisePad 3 card reader, you can bring the power of your store anywhere.','{}','pending','woocommerce.com','2022-07-20 07:17:56',NULL,0,'plain','',0,'info',0),(33,'wc-refund-returns-page','info','en_US','Setup a Refund and Returns Policy page to boost your store\'s credibility.','We have created a sample draft Refund and Returns Policy page for you. Please have a look and update it to fit your store.','{}','unactioned','woocommerce-core','2022-07-20 07:19:49',NULL,0,'plain','',0,'info',0),(34,'wc-admin-wc-helper-connection','info','en_US','Connect to WooCommerce.com','Connect to get important product notifications and updates.','{}','unactioned','woocommerce-admin','2022-07-20 07:19:49',NULL,0,'plain','',0,'info',0),(35,'wc-admin-choosing-a-theme','marketing','en_US','Choosing a theme?','Check out the themes that are compatible with WooCommerce and choose one aligned with your brand and business needs.','{}','unactioned','woocommerce-admin','2022-07-22 01:18:48',NULL,0,'plain','',0,'info',0),(149,'klaviyo_q3_2023','marketing','en_US','Build long lasting relationships with Klaviyo for WooCommerce','Increase customer engagement and boost conversions with powerful email and SMS automation from Klaviyo. Fully integrated with your Woo store, Klaviyo enables you to send personalized communications to your customers — ensuring that the right message is delivered at the right time for maximum impact.','{}','pending','woocommerce.com','2023-09-12 07:18:50',NULL,0,'plain','',0,'info',0),(37,'wc-admin-mobile-app','info','en_US','Install Woo mobile app','Install the WooCommerce mobile app to manage orders, receive sales notifications, and view key metrics — wherever you are.','{}','unactioned','woocommerce-admin','2022-07-22 13:40:57',NULL,0,'plain','',0,'info',0),(38,'wc-admin-add-first-product-note','email','en_US','Add your first product','{greetings}<br /><br />Nice one; you\'ve created a WooCommerce store! Now it\'s time to add your first product and get ready to start selling.<br /><br />There are three ways to add your products: you can <strong>create products manually, import them at once via CSV file</strong>, or <strong>migrate them from another service</strong>.<br /><br /><a href=\"https://docs.woocommerce.com/document/managing-products/?utm_source=help_panel&amp;utm_medium=product\">Explore our docs</a> for more information, or just get started!','{\"role\":\"administrator\"}','unactioned','woocommerce-admin','2022-07-22 13:40:57',NULL,0,'plain','http://farmchemie.yasithawd.com/wp-content/plugins/woocommerce/packages/woocommerce-admin/images/admin_notes/dashboard-widget-setup.png',0,'info',0),(40,'wc-admin-onboarding-payments-reminder','info','en_US','Start accepting payments on your store!','Take payments with the provider that’s right for you - choose from 100+ payment gateways for WooCommerce.','{}','unactioned','woocommerce-admin','2022-07-27 05:18:28',NULL,0,'plain','',0,'info',0),(148,'tiktok_shopGTM_q3-2023_noTikTok','marketing','en_US','You can now sell your products on TikTok Shop','TikTok is changing the way shoppers find and connect with brands. With TikTok Shop, you can sync your entire catalog from within Woo and sell directly to TikTok users through in-feed videos, livestreams, and your product showcase tab.','{}','pending','woocommerce.com','2023-09-08 08:58:14',NULL,0,'plain','',0,'info',0),(42,'wc-admin-usage-tracking-opt-in','info','en_US','Help WooCommerce improve with usage tracking','Gathering usage data allows us to improve WooCommerce. Your store will be considered as we evaluate new features, judge the quality of an update, or determine if an improvement makes sense. You can always visit the <a href=\"https://farmchemie.yasithawd.com/wp-admin/admin.php?page=wc-settings&#038;tab=advanced&#038;section=woocommerce_com\" target=\"_blank\">Settings</a> and choose to stop sharing data. <a href=\"https://woocommerce.com/usage-tracking?utm_medium=product\" target=\"_blank\">Read more</a> about what data we collect.','{}','unactioned','woocommerce-admin','2022-07-29 02:16:16',NULL,0,'plain','',0,'info',0),(43,'wc-admin-woocommerce-payments','marketing','en_US','Try the new way to get paid','Securely accept credit and debit cards on your site. Manage transactions without leaving your WordPress dashboard. Only with <strong>WooPayments</strong>.<br><br>By clicking \"Get started\", you agree to our <a href=\"https://wordpress.com/tos/\" target=\"_blank\">Terms of Service</a>','{}','unactioned','woocommerce-admin','2022-07-29 02:16:16',NULL,0,'plain','',0,'info',0),(44,'wc-admin-marketing-jetpack-backup','marketing','en_US','Protect your WooCommerce Store with Jetpack Backup.','Store downtime means lost sales. One-click restores get you back online quickly if something goes wrong.','{}','unactioned','woocommerce-admin-notes','2022-07-29 02:16:16',NULL,0,'plain','',0,'info',0),(147,'tiktok_shopGTM_q3-2023_hasTikTok','marketing','en_US','You can now sell your products on TikTok Shop','TikTok is changing the way shoppers find and connect with brands. With TikTok Shop, you can sync your entire catalog from within Woo and sell directly to TikTok users through in-feed videos, livestreams, and your product showcase tab.','{}','pending','woocommerce.com','2023-09-07 07:18:18',NULL,0,'plain','',0,'info',0),(46,'mercado_pago_q3_2022','marketing','en_US','Get paid with Mercado Pago Checkout','Give your customers a checkout they can trust with Latin America\'s leading payment processor. Securely accept debit and credit cards, cash, bank transfers, and installment payments – backed by exclusive fraud prevention tools.','{}','pending','woocommerce.com','2022-08-09 05:18:30',NULL,0,'plain','',0,'info',0),(47,'klarna_q3_2022','marketing','en_US','Meet Klarna – your ultimate growth partner','Increase conversions by offering secure, flexible payment solutions – including buy now, pay later – all through a one-click checkout experience. Plus, you’ll tap into a whole new market of the world’s most engaged shoppers.','{}','unactioned','woocommerce.com','2022-08-09 05:18:30',NULL,0,'plain','',0,'info',0),(48,'woocommerce-payments-august-2022-need-to-update','update','en_US','Action required: Please update WooCommerce Payments','An updated secure version of WooCommerce Payments is available – please ensure that you’re using the latest patch version. For more information on what action you need to take, please review the article below.','{}','pending','woocommerce.com','2022-08-10 09:59:28',NULL,0,'plain','',0,'info',0),(49,'woocommerce-payments-august-2022-store-patched','update','en_US','WooCommerce Payments has been automatically updated','You’re now running the latest secure version of WooCommerce Payments. We’ve worked with the WordPress Plugins team to deploy a security update to stores running WooCommerce Payments (version 3.9 to 4.5). For further information, please review the article below.','{}','pending','woocommerce.com','2022-08-10 09:59:28',NULL,0,'plain','',0,'info',0),(50,'mobile_app_order_management_q3_2022','marketing','en_US','Take order management on the go','The WooCommerce Mobile App continues to get better with added order management functionality! Add or remove products, edit fees, or change the shipping options in any existing order – all from within the app.','{}','unactioned','woocommerce.com','2022-08-17 04:02:53',NULL,0,'plain','',0,'info',0),(146,'woo-activation-survey-blockers-22AUG23','info','en_US','How can we help you get that first sale?','Your feedback is vital. Please take a minute to share your experience of setting up your new store and whether anything is preventing you from making those first few sales. Together, we can make Woo even better!','{}','pending','woocommerce.com','2023-08-23 08:10:17',NULL,0,'plain','',0,'info',0),(52,'product_creation_usability_test_3_months','survey','en_US','Have a say in the future of WooCommerce','Take an early look at the future of editing products in WooCommerce. Share your thoughts (~5 minutes) and help shape the experience for yourself and other merchants.','{}','unactioned','woocommerce.com','2022-08-26 07:18:29',NULL,0,'plain','',0,'info',0),(53,'product_creation_usability_test_6_months','survey','en_US','Try the new product edit form prototype','Take an early look at the future of editing products in WooCommerce. Share your thoughts (~5 minutes) and help shape the experience for yourself and other merchants.','{}','pending','woocommerce.com','2022-08-30 07:18:08',NULL,0,'plain','',0,'info',0),(54,'product_creation_usability_test_12_months','survey','en_US','Try the new product edit form prototype','Take an early look at the future of editing products in WooCommerce. Share your thoughts (~5 minutes) and help shape the experience for yourself and other merchants.','{}','pending','woocommerce.com','2022-09-07 07:18:45',NULL,0,'plain','',0,'info',0),(55,'custom_deposit_schedules_inbox','marketing','en_US','Customize your deposit schedule','Receive your funds according to your own business needs with custom deposit schedules from WooCommerce Payments. You’ll have the flexibility to deposit funds into your bank account daily, weekly, monthly, or even on-demand – you’ve done the work, now get paid on your terms.','{}','unactioned','woocommerce.com','2022-09-15 11:32:11',NULL,0,'plain','',0,'info',0),(56,'googlelistings_signals2022_hasGLA','marketing','en_US','Show off your products with Ads on Google','You’re ready to grow with ads. Google optimizes for performance across your products; you only pay for results. If you’re new to Google, you can earn up to $500 in ad credits (T&amp;Cs apply). <a href=\"https://woocommerce.com/my-account/create-a-ticket/\">Contact support</a> if you need guidance with Google Listings &amp; Ads.','{}','pending','woocommerce.com','2022-09-23 05:20:16',NULL,0,'plain','',0,'info',0),(57,'googlelistings_signals2022_noGLA','marketing','en_US','Show off your products with Ads on Google','You’re ready to grow with ads. Google optimizes for performance across your products; you only pay for results. If you’re new to Google, you can earn up to $500 in ad credits (T&amp;Cs apply). <a href=\"https://woocommerce.com/my-account/create-a-ticket/\">Contact support</a> if you need guidance with Google Listings &amp; Ads.','{}','pending','woocommerce.com','2022-09-23 05:20:16',NULL,0,'plain','',0,'info',0),(58,'pre-black-friday-sale-2022-announcement','marketing','en_US','Surprise! We’re offering 40% off everything at WooCommerce.com','Just in time to get your store Black Friday ready. Sale ends 7 October, 2pm UTC.','{}','unactioned','woocommerce.com','2022-10-05 05:20:32',NULL,0,'plain','',0,'info',0),(59,'shipping_category_q4_2022','marketing','en_US','Save time on shipping','Is your store all set to ship? Save valuable time (and money!) by automating your fulfillment process for the busiest shopping season. Explore our range of trusted shipping partners to get started.','{}','unactioned','woocommerce.com','2022-10-15 05:19:01',NULL,0,'plain','',0,'info',0),(60,'wc-admin-real-time-order-alerts','info','en_US','Get real-time order alerts anywhere','Get notifications about store activity, including new orders and product reviews directly on your mobile devices with the Woo app.','{}','unactioned','woocommerce-admin','2022-10-19 05:20:58',NULL,0,'plain','',0,'info',0),(61,'facebook_q4-2022_hasFB','marketing','en_US','Drive more demand this holiday season with Facebook for WooCommerce','Deliver a personalized and seamless shopping experience this holiday season with Facebook for WooCommerce. With more ad formats than ever, you can create engaging ads that meet customers across Facebook, Instagram, Messenger, and WhatsApp throughout the busy shopping season.','{}','pending','woocommerce.com','2022-10-21 05:19:22',NULL,0,'plain','',0,'info',0),(62,'facebook_q4-2022_noFB','marketing','en_US','Meet your customers where they are with Facebook for WooCommerce','Don’t wait for your customers to come to you – meet them where they’re browsing! Use the Facebook for WooCommerce extension to promote your products on Facebook, Instagram, Messenger, and WhatsApp. Create seamless shopping experiences – straight from your WooCommerce dashboard.','{}','unactioned','woocommerce.com','2022-10-23 05:19:52',NULL,0,'plain','',0,'info',0),(63,'tiktok-targeted-q4-2022','marketing','en_US','Get $200 in ad credit from TikTok after you spend $20 on your first campaign','Reach one billion shoppers with TikTok for WooCommerce this holiday season! Sync your product catalog, capture insights, and create ad campaigns right from your dashboard. Connect your store today to unlock this limited time offer! <a href=\"https://ads.tiktok.com/help/article?aid=10011326\">Terms &amp; conditions apply</a>.','{}','pending','woocommerce.com','2022-10-25 05:26:19',NULL,0,'plain','',0,'info',0),(64,'paypal_paylater_g3_q4_22','marketing','en_US','Turn browsers into buyers with Pay Later','Add PayPal at checkout, plus give customers a buy now, pay later option from the name they trust. With Pay in 4 &amp; Pay Monthly, available in PayPal Payments, you get paid up front while letting customers spread their payments over time. Boost your average order value and convert more sales – at no extra cost to you.','{}','unactioned','woocommerce.com','2022-11-02 15:37:11',NULL,0,'plain','',0,'info',0),(65,'paypal_paylater_g2_q4_22','marketing','en_US','Upgrade to PayPal Payments to offer Pay Later at checkout','PayPal Pay Later is included in PayPal Payments at no additional cost to you. Customers can spread their payments over time while you get paid up front. \r\nThere’s never been a better time to upgrade your PayPal plugin. Simply download it and connect with a PayPal Business account.','{}','pending','woocommerce.com','2022-11-03 15:29:24',NULL,0,'plain','',0,'info',0),(66,'woocommerce_admin_deprecation_q4_2022','info','en_US','WooCommerce Admin is part of WooCommerce!','To make sure your store continues to run smoothly, check that WooCommerce is up-to-date – at least version 6.5 – and then disable the WooCommerce Admin plugin.','{}','pending','woocommerce.com','2022-11-04 21:02:23',NULL,0,'plain','',0,'info',0),(145,'wc-update-db-reminder','update','en_US','WooCommerce database update required','WooCommerce has been updated! To keep things running smoothly, we have to update your database to the newest version. The database update process runs in the background and may take a little while, so please be patient. Advanced users can alternatively update via <a href=\"https://github.com/woocommerce/woocommerce/wiki/Upgrading-the-database-using-WP-CLI\">WP CLI</a>.','{}','unactioned','woocommerce-core','2023-08-19 03:21:08',NULL,0,'plain','',0,'info',0),(68,'google_listings_ads_custom_attribute_mapping_q4_2022','marketing','en_US','Our latest improvement to the Google Listings & Ads extension: Attribute Mapping','You spoke, we listened. This new feature enables you to easily upload your products, customize your product attributes in one place, and target shoppers with more relevant ads. Extend how far your ad dollars go with each campaign.','{}','pending','woocommerce.com','2022-12-01 07:25:28',NULL,0,'plain','',0,'info',0),(69,'wc-admin-manualauthcapture','marketing','en_US','Miss fewer manual payments in WooCommerce Payments','Using WooCommerce Payments to manually authorize and capture payments? We’ve introduced a simplified and more efficient process, so you can miss fewer payments and continue to grow your revenue.','{}','pending','woocommerce.com','2022-12-01 07:25:28',NULL,0,'plain','',0,'info',0),(70,'apple_pay_square_q422','marketing','en_US','Grow your business with Apple Pay','Start boosting your online conversions today with Apple Pay – shoppers can safely complete a purchase with a touch or a glance and are more likely to come back. Enable Apple Pay with Square by selecting  Settings &gt; Payments &gt; Square.','{}','pending','woocommerce.com','2022-12-08 09:14:32',NULL,0,'plain','',0,'info',0),(71,'apple_pay_wcpay_q422','marketing','en_US','Grow your business with Apple Pay','Start boosting your online conversions today with Apple Pay – shoppers can safely complete a purchase with a touch or a glance and are more likely to come back. Confirm Apple Pay is enabled by selecting Payments &gt; Settings and making sure Enable express checkouts is checked.','{}','pending','woocommerce.com','2022-12-08 09:14:32',NULL,0,'plain','',0,'info',0),(72,'meta-hasFB-dec-q4-2022','marketing','en_US','Power up your Facebook ad strategy','Did you know that new privacy policies may be decreasing the effectiveness of your Facebook ads? Get back on track with Meta’s Conversion API. It creates a direct connection between the marketing data from your store and Meta, helping you more accurately track, attribute and improve your Facebook marketing performance.','{}','pending','woocommerce.com','2022-12-10 01:51:59',NULL,0,'plain','',0,'info',0),(73,'meta-noFB-dec-q4-2022','marketing','en_US','Create highly targeted Facebook ads with Facebook for WooCommerce','Sync your product catalog to create Facebook ads and track their performance – all from within your WooCommerce dashboard. With improved tracking signals and speed, plus more accurate tracking with the introduction of Meta’s Conversion API, you’ll have all the tools you need to run effective ad campaigns.','{}','unactioned','woocommerce.com','2022-12-12 00:41:01',NULL,0,'plain','',0,'info',0),(74,'needs-update-eway-payment-gateway-rin-2022-12-20','update','en_US','Security vulnerability patched in WooCommerce Eway Gateway','In response to a potential vulnerability identified in WooCommerce Eway Gateway versions 3.1.0 to 3.5.0, we’ve worked to deploy security fixes and have released an updated version.\r\nNo external exploits have been detected, but we recommend you update to your latest supported version 3.1.26, 3.2.3, 3.3.1, 3.4.6, or 3.5.1','{}','pending','woocommerce.com','2023-01-04 23:46:28',NULL,0,'plain','',0,'info',0),(75,'updated-eway-payment-gateway-rin-2022-12-20','update','en_US','WooCommerce Eway Gateway has been automatically updated','Your store is now running the latest secure version of WooCommerce Eway Gateway. We worked with the WordPress Plugins team to deploy a software update to stores running WooCommerce Eway Gateway (versions 3.1.0 to 3.5.0) in response to a security vulnerability that was discovered.','{}','pending','woocommerce.com','2023-01-04 23:46:28',NULL,0,'plain','',0,'info',0),(76,'storeediting_feedback_jan_2023','marketing','en_US','Tell us what you need to customize your store!','We need your feedback. Please spare a few minutes to share your input on what is most important to you when designing and customizing your storefront to help us build the features you need.','{}','unactioned','woocommerce.com','2023-01-15 06:20:13',NULL,0,'plain','',0,'info',0),(77,'wc-admin-manage-orders-on-the-go','info','en_US','Manage your orders on the go','Look for orders, customer info, and process refunds in one click with the Woo app.','{}','unactioned','woocommerce-admin','2023-01-17 06:20:56',NULL,0,'plain','',0,'info',0),(78,'ecomm-wc-navigation-survey-2023','info','en_US','Navigating WooCommerce on WordPress.com','We are improving the WooCommerce navigation on WordPress.com and would love your help to make it better! Please share your experience with us in this 2-minute survey.','{}','pending','woocommerce.com','2023-01-17 06:20:56',NULL,0,'plain','',0,'info',0),(79,'affirm_q1_2023','marketing','en_US','Turn more browsers into buyers with flexible payments','When you offer flexible payment options to shoppers, they\'re more likely to convert. It’s why businesses offering Affirm see an average order value lift of 63%. Affirm tailors your store\'s payment options with terms proven to reach new customers, boost conversions, and grow sales.','{}','unactioned','woocommerce.com','2023-03-13 08:20:27',NULL,0,'plain','',0,'info',0),(80,'google_listings_ads_pmax_i1_q1_2023_no_gla','marketing','en_US','Create more engaging ads – without the hard work','Get in front of millions of shoppers searching for products like yours with Google Listings &amp; Ads. With new customization features, Google automatically tests multiple combinations of text and images to create the most engaging ad to boost your business. Plus, get up to $500 in ad credit – terms and conditions apply.','{}','unactioned','woocommerce.com','2023-03-16 07:22:55',NULL,0,'plain','',0,'info',0),(81,'google_listings_ads_pmax_i1_q1_2023_with_gla','marketing','en_US','New customization features to boost your business','You can now add custom images, messaging, and URLs to campaigns in Google Listings &amp; Ads. Google then automatically tests multiple combinations to create the most engaging version to help boost your business. Get more sales with dynamic content – edit an existing campaign or create a new ad now.','{}','pending','woocommerce.com','2023-03-16 07:22:55',NULL,0,'plain','',0,'info',0),(82,'woocommerce-wcpay-march-2023-update-needed','update','en_US','Action required: Security update for WooCommerce Payments','<strong>Your store requires a security update for WooCommerce Payments</strong>. Please update to the latest version of WooCommerce Payments immediately to address a potential vulnerability discovered on March 22. For more information on how to update, visit this WooCommerce Developer Blog Post.','{}','pending','woocommerce.com','2023-03-24 08:01:36',NULL,0,'plain','',0,'info',0),(83,'tap_to_pay_iphone_q2_2023_no_wcpay','marketing','en_US','Accept in-person contactless payments on your iPhone','Tap to Pay on iPhone and WooCommerce Payments is quick, secure, and simple to set up — no extra terminals or card readers are needed. Accept contactless debit and credit cards, Apple Pay, and other NFC digital wallets in person.','{}','unactioned','woocommerce.com','2023-04-04 08:23:12',NULL,0,'plain','',0,'info',0),(84,'tap_to_pay_iphone_q2_2023_with_wcpay','marketing','en_US','New: accept in-person contactless payments on your iPhone','Tap to Pay on iPhone is quick, secure, and simple to set up in WooCommerce Payments — no extra terminals or card readers are needed. Accept contactless debit and credit cards, Apple Pay, and other NFC digital wallets in person in a few short steps!','{}','pending','woocommerce.com','2023-04-04 08:23:12',NULL,0,'plain','',0,'info',0),(85,'woocommerce-WCPreOrders-april-2023-update-needed','update','en_US','Action required: Security update of WooCommerce Pre-Orders extension','<strong>Your store requires a security update for the WooCommerce Pre-Orders extension</strong>. Please update the WooCommerce Pre-Orders extension immediately to address a potential vulnerability discovered on April 11.','{}','pending','woocommerce.com','2023-04-15 08:47:14',NULL,0,'plain','',0,'info',0),(86,'wc-admin-wcpay-denmark-Q2-2023','marketing','en_US','WooCommerce Payments is now available in Denmark!','We’ve recently released WooCommerce Payments in Denmark. You can view and manage transactions right in your WordPress dashboard while securely accepting major cards, Apple Pay, and payments in over 100 currencies.','{}','pending','woocommerce.com','2023-04-15 08:47:14',NULL,0,'plain','',0,'info',0),(87,'wc-admin-wcpay-greece-Q2-2023','marketing','en_US','WooCommerce Payments is now available in Greece!','We’ve recently released WooCommerce Payments in Greece. You can view and manage transactions right in your WordPress dashboard while securely accepting major cards, Apple Pay, and payments in over 100 currencies.','{}','pending','woocommerce.com','2023-04-15 08:47:14',NULL,0,'plain','',0,'info',0),(88,'wc-admin-wcpay-norway-Q2-2023','marketing','en_US','WooCommerce Payments is now available in Norway!','We’ve recently released WooCommerce Payments in Norway. You can view and manage transactions right in your WordPress dashboard while securely accepting major cards, Apple Pay, and payments in over 100 currencies.','{}','pending','woocommerce.com','2023-04-15 08:47:14',NULL,0,'plain','',0,'info',0),(89,'wc-admin-wcpay-slovakia-Q2-2023','marketing','en_US','WooCommerce Payments is now available in Slovakia!','We’ve recently released WooCommerce Payments in Slovakia. You can view and manage transactions right in your WordPress dashboard while securely accepting major cards, Apple Pay, and payments in over 100 currencies.','{}','pending','woocommerce.com','2023-04-15 08:47:14',NULL,0,'plain','',0,'info',0),(90,'wc-admin-wcpay-finland-Q2-2023','marketing','en_US','WooCommerce Payments is now available in Finland!','We’ve recently released WooCommerce Payments in Finland. You can view and manage transactions right in your WordPress dashboard while securely accepting major cards, Apple Pay, and payments in over 100 currencies.','{}','pending','woocommerce.com','2023-04-15 08:47:14',NULL,0,'plain','',0,'info',0),(91,'wc-admin-wcpay-estonia-Q2-2023','marketing','en_US','WooCommerce Payments is now available in Estonia!','We’ve recently released WooCommerce Payments in Estonia. You can view and manage transactions right in your WordPress dashboard while securely accepting major cards, Apple Pay, and payments in over 100 currencies.','{}','pending','woocommerce.com','2023-04-15 08:47:14',NULL,0,'plain','',0,'info',0),(92,'wc-admin-wcpay-lithuania-Q2-2023','marketing','en_US','WooCommerce Payments is now available in Lithuania!','We’ve recently released WooCommerce Payments in Lithuania. You can view and manage transactions right in your WordPress dashboard while securely accepting major cards, Apple Pay, and payments in over 100 currencies.','{}','pending','woocommerce.com','2023-04-15 08:47:14',NULL,0,'plain','',0,'info',0),(93,'wc-admin-wcpay-slovenia-Q2-2023','marketing','en_US','WooCommerce Payments is now available in Slovenia!','We’ve recently released WooCommerce Payments in Slovenia. You can view and manage transactions right in your WordPress dashboard while securely accepting major cards, Apple Pay, and payments in over 100 currencies.','{}','pending','woocommerce.com','2023-04-15 08:47:14',NULL,0,'plain','',0,'info',0),(94,'wc-admin-wcpay-latvia-Q2-2023','marketing','en_US','WooCommerce Payments is now available in Latvia!','We’ve recently released WooCommerce Payments in Latvia. You can view and manage transactions right in your WordPress dashboard while securely accepting major cards, Apple Pay, and payments in over 100 currencies.','{}','pending','woocommerce.com','2023-04-15 08:47:14',NULL,0,'plain','',0,'info',0),(95,'wc-admin-wcpay-cyprus-Q2-2023','marketing','en_US','WooCommerce Payments is now available in Cyprus!','We’ve recently released WooCommerce Payments in Cyprus. You can view and manage transactions right in your WordPress dashboard while securely accepting major cards, Apple Pay, and payments in over 100 currencies.','{}','pending','woocommerce.com','2023-04-15 08:47:14',NULL,0,'plain','',0,'info',0),(96,'wc-admin-wcpay-malta-Q2-2023','marketing','en_US','WooCommerce Payments is now available in Malta!','We’ve recently released WooCommerce Payments in Malta. You can view and manage transactions right in your WordPress dashboard while securely accepting major cards, Apple Pay, and payments in over 100 currencies.','{}','pending','woocommerce.com','2023-04-15 08:47:14',NULL,0,'plain','',0,'info',0),(97,'wc-admin-wcpay-luxembourg-Q2-2023','marketing','en_US','WooCommerce Payments is now available in Luxembourg!','We’ve recently released WooCommerce Payments in Luxembourg. You can view and manage transactions right in your WordPress dashboard while securely accepting major cards, Apple Pay, and payments in over 100 currencies.','{}','pending','woocommerce.com','2023-04-15 08:47:14',NULL,0,'plain','',0,'info',0),(98,'wc-admin-performance-on-mobile','info','en_US','Track your store performance on mobile','Monitor your sales and high performing products with the Woo app.','{}','unactioned','woocommerce-admin','2023-04-16 11:54:06',NULL,0,'plain','',0,'info',0),(99,'wc_admin_BNPL_WCPay_coming-soon_Q1_2023','marketing','en_US','Buy now, pay later is heading to WooCommerce Payments','Great news: full integration with Afterpay and Affirm is on its way to WooCommerce Payments! You’ll soon be able to increase your order values, sell more, and offer customers a payment option they’ll love — with no extra downloads or extensions required.','{}','pending','woocommerce.com','2023-04-27 07:19:49',NULL,0,'plain','',0,'info',0),(100,'woopay-beta-existingmerchants-noaction-27APR23','info','en_US','WooPay is back!','Thanks for previously trying WooPay, the express checkout feature built into WooCommerce Payments. We’re excited to announce that WooPay availability has resumed. No action is required on your part.\r\n<br /><br />\r\nYou can now continue boosting conversions by offering your customers a simple, secure way to pay with a single click.','{}','pending','woocommerce.com','2023-04-28 13:16:36',NULL,0,'plain','',0,'info',0),(101,'woopay-beta-existingmerchants-update-27APR23','info','en_US','WooPay is back!','Thanks for previously trying WooPay, the express checkout feature built into WooCommerce Payments. We’re excited to announce that WooPay availability has resumed.\r\n<br /><br />\r\n\r\nUpdate to the latest WooCommerce Payments version to continue boosting conversions by offering your customers a simple, secure way to pay with a single click.','{}','pending','woocommerce.com','2023-04-28 13:16:36',NULL,0,'plain','',0,'info',0),(102,'woopay-beta-existingmerchants-noaction-27APR23-test2','info','en_US','WooPay is back!','Thanks for previously trying WooPay, the express checkout feature built into WooCommerce Payments. We’re excited to announce that WooPay availability has resumed. No action is required on your part.\r\n<br /><br />\r\nYou can now continue boosting conversions by offering your customers a simple, secure way to pay with a single click.','{}','pending','woocommerce.com','2023-04-28 13:16:36',NULL,0,'plain','',0,'info',0),(103,'woopay-beta-existingmerchants-update-27APR23-test','info','en_US','WooPay is back!','Thanks for previously trying WooPay, the express checkout feature built into WooCommerce Payments. We’re excited to announce that WooPay availability has resumed.\r\n<br /><br />\r\n\r\nUpdate to the latest WooCommerce Payments version to continue boosting conversions by offering your customers a simple, secure way to pay with a single click.','{}','pending','woocommerce.com','2023-04-28 13:16:36',NULL,0,'plain','',0,'info',0),(104,'woopay-beta-merchantrecruitment-04MAY23','info','en_US','Increase conversions with WooPay — our fastest checkout yet','WooPay, a new express checkout feature built into WooCommerce Payments, is now available —and we’re inviting you to be one of the first to try it. \r\n<br><br>\r\nBoost conversions by offering your customers a simple, secure way to pay with a single click.\r\n<br><br>\r\nGet started in seconds.','{}','pending','woocommerce.com','2023-05-05 07:38:06',NULL,0,'plain','',0,'info',0),(105,'woopay-beta-merchantrecruitment-update-04MAY23','info','en_US','Increase conversions with WooPay — our fastest checkout yet','WooPay, a new express checkout feature built into WooCommerce Payments, is now available — and you’re invited to try it. \r\n<br /><br />\r\nBoost conversions by offering your customers a simple, secure way to pay with a single click.\r\n<br /><br />\r\nUpdate WooCommerce Payments to get started.','{}','pending','woocommerce.com','2023-05-05 07:38:06',NULL,0,'plain','',0,'info',0),(106,'woopay-beta-merchantrecruitment-short-04MAY23','info','en_US','Increase conversions with WooPay — our fastest checkout yet','Be one of the first to try WooPay, a new express checkout feature for WooCommerce Payments. \r\n<br><br>\r\nBoost conversions by letting customers pay with a single click.','{}','pending','woocommerce.com','2023-05-05 07:38:06',NULL,0,'plain','',0,'info',0),(107,'woopay-beta-merchantrecruitment-short-update-04MAY23','info','en_US','Increase conversions with WooPay — our fastest checkout yet','Be one of the first to try WooPay, our new express checkout feature. <br>Boost conversions by letting customers pay with a single click. <br><br>Update to the latest version of WooCommerce Payments to get started.','{}','pending','woocommerce.com','2023-05-05 07:38:06',NULL,0,'plain','',0,'info',0),(108,'woopay-beta-merchantrecruitment-short-06MAY23-TESTA','info','en_US','Increase conversions with WooPay — our fastest checkout yet','Be one of the first to try WooPay, a new express checkout feature for WooCommerce Payments. \r\n<br><br>\r\nBoost conversions by letting customers pay with a single click.','{}','pending','woocommerce.com','2023-05-06 20:00:25',NULL,0,'plain','',0,'info',0),(109,'woopay-beta-merchantrecruitment-short-06MAY23-TESTB','info','en_US','Increase conversions with WooPay — our fastest checkout yet','Be one of the first to try WooPay, a new express checkout feature for WooCommerce Payments. \r\n<br><br>\r\nBoost conversions by letting customers pay with a single click.','{}','pending','woocommerce.com','2023-05-06 20:00:25',NULL,0,'plain','',0,'info',0),(110,'woopay-beta-merchantrecruitment-short-06MAY23-TESTC','info','en_US','Increase conversions with WooPay — our fastest checkout yet','Be one of the first to try WooPay, a new express checkout feature for WooCommerce Payments. \r\n<br><br>\r\nBoost conversions by letting customers pay with a single click.','{}','pending','woocommerce.com','2023-05-06 20:00:25',NULL,0,'plain','',0,'info',0),(111,'woopay-beta-merchantrecruitment-short-06MAY23-TESTD','info','en_US','Increase conversions with WooPay — our fastest checkout yet','Be one of the first to try WooPay, a new express checkout feature for WooCommerce Payments. \r\n<br><br>\r\nBoost conversions by letting customers pay with a single click.','{}','pending','woocommerce.com','2023-05-06 20:00:25',NULL,0,'plain','',0,'info',0),(112,'woopay-beta-merchantrecruitment-short-09MAY23','info','en_US','Increase conversions with WooPay — our fastest checkout yet','Be one of the first to try WooPay, a new express checkout feature for WooCommerce Payments. \r\n<br><br>\r\nBoost conversions by letting customers pay with a single click.','{}','pending','woocommerce.com','2023-05-10 07:18:59',NULL,0,'plain','',0,'info',0),(113,'woopay-beta-merchantrecruitment-short-update-09MAY23','info','en_US','Increase conversions with WooPay — our fastest checkout yet','Be one of the first to try WooPay, our new express checkout feature. <br>Boost conversions by letting customers pay with a single click. <br><br>Update to the latest version of WooCommerce Payments to get started.','{}','pending','woocommerce.com','2023-05-10 07:18:59',NULL,0,'plain','',0,'info',0),(114,'payoneer_q2_2023','marketing','en_US','Grow with the next generation of payment processing','Ready to stand out in the new global economy? Payoneer Checkout gives you the power to securely accept payments worldwide, build a checkout that customers love, and manage your store’s transactions and finances – all from the same place.','{}','pending','woocommerce.com','2023-05-14 08:27:16',NULL,0,'plain','',0,'info',0),(115,'ipp_refresh_q2_2023_us_inbox_notification','marketing','en_US','Grow on the go with in-person payments','Sell your products or services on the go with the M2 card reader – a quick, synchronized, and secure way to take payments, no matter where you are. Create an order using the WooCommerce mobile app and connect your card reader to accept payments.','{}','unactioned','woocommerce.com','2023-05-18 07:38:21',NULL,0,'plain','',0,'info',0),(116,'ipp_refresh_q2_2023_ca_inbox_notification','marketing','en_US','Grow on the go with in-person payments','Sell your products or services on the go with the WisePad 3 card reader – a quick, synchronized, and secure way to take payments, no matter where you are. Create an order using the WooCommerce mobile app and connect your card reader to accept payments.','{}','pending','woocommerce.com','2023-05-18 07:38:21',NULL,0,'plain','',0,'info',0),(117,'product_management_card_sorting','survey','en_US','How do you create and edit products?','Have a say in the future of WooCommerce. Take part in a brief exercise and help us understand what information is important to you while editing products.','{}','unactioned','woocommerce.com','2023-05-19 07:23:24',NULL,0,'plain','',0,'info',0),(118,'woocommerce-WCstripe-May-2023-updated-needed','update','en_US','Action required: Security update of WooCommerce Stripe plugin','<strong>Your store requires a security update for the WooCommerce Stripe plugin</strong>. Please update the WooCommerce Stripe plugin immediately to address a potential vulnerability.','{}','pending','woocommerce.com','2023-06-02 07:31:59',NULL,0,'plain','',0,'info',0),(119,'woocommerce-WCReturnsWarranty-June-2023-updated-needed','update','en_US','Action required: Security update of WooCommerce Returns and Warranty Requests extension','<strong>Your store requires a security update for the Returns and Warranty Requests extension</strong>.  Please update to the latest version of the WooCommerce Returns and Warranty Requests extension immediately to address a potential vulnerability discovered on May 31.','{}','pending','woocommerce.com','2023-06-03 07:57:19',NULL,0,'plain','',0,'info',0),(120,'woocommerce-WCSubscriptions-June-2023-updated-needed','marketing','en_US','Action required: Security update of WooCommerce Subscriptions','<strong>Your store requires a security update for the WooCommerce Subscriptions plugin</strong>. Please update the WooCommerce Subscriptions plugin immediately to address a potential vulnerability.','{}','pending','woocommerce.com','2023-06-06 07:33:09',NULL,0,'plain','',0,'info',0),(121,'woocommerce-WCPayments-June-2023-updated-needed','update','en_US','Action required: Security update of WooCommerce Payments','<strong>Your store requires a security update for the WooCommerce Payments plugin</strong>. Please update the WooCommerce Payments plugin immediately to address a potential vulnerability.','{}','pending','woocommerce.com','2023-06-07 08:09:22',NULL,0,'plain','',0,'info',0),(122,'woocommerce_hpos_1st_notification_q2_2023','marketing','en_US','High-Performance Order Storage (HPOS) is on its way','Our team is targeting August 2023 to roll out a major database upgrade that can unlock faster checkout and order creation for your customers — and lightning-quick order lookup for you. Enablement is optional and you won’t be forced to update, but read on to see why this was our most requested new feature.','{}','unactioned','woocommerce.com','2023-06-07 08:09:22',NULL,0,'plain','',0,'info',0),(123,'woocommerce-WCOPC-June-2023-updated-needed','update','en_US','Action required: Security update of WooCommerce One Page Checkout','<strong>Your shop requires a security update to address a vulnerability in the WooCommerce One Page Checkout extension</strong>. The fix for this vulnerability was released for this extension on June 13th. Please update immediately.','{}','pending','woocommerce.com','2023-06-22 17:43:01',NULL,0,'plain','',0,'info',0),(124,'wc-admin-wcpay-bulgaria-Q2-2023','marketing','en_US','WooCommerce Payments is now available in Bulgaria!','We’ve recently released WooCommerce Payments in Bulgaria. You can view and manage transactions right in your WordPress dashboard while securely accepting major cards, Apple Pay, and payments in over 100 currencies.','{}','pending','woocommerce.com','2023-06-30 22:06:10',NULL,0,'plain','',0,'info',0),(125,'wc-admin-wcpay-czechia-Q2-2023','marketing','en_US','WooCommerce Payments is now available in Czechia!','We’ve recently released WooCommerce Payments in Czechia. You can view and manage transactions right in your WordPress dashboard while securely accepting major cards, Apple Pay, and payments in over 100 currencies.','{}','pending','woocommerce.com','2023-06-30 22:06:10',NULL,0,'plain','',0,'info',0),(126,'wc-admin-wcpay-croatia-Q2-2023','marketing','en_US','WooCommerce Payments is now available in Croatia!','We’ve recently released WooCommerce Payments in Croatia. You can view and manage transactions right in your WordPress dashboard while securely accepting major cards, Apple Pay, and payments in over 100 currencies.','{}','pending','woocommerce.com','2023-06-30 22:06:10',NULL,0,'plain','',0,'info',0),(127,'wc-admin-wcpay-hungary-Q2-2023','marketing','en_US','WooCommerce Payments is now available in Hungary!','We’ve recently released WooCommerce Payments in Hungary. You can view and manage transactions right in your WordPress dashboard while securely accepting major cards, Apple Pay, and payments in over 100 currencies.','{}','pending','woocommerce.com','2023-06-30 22:06:10',NULL,0,'plain','',0,'info',0),(128,'wc-admin-wcpay-romania-Q2-2023','marketing','en_US','WooCommerce Payments is now available in Romania!','We’ve recently released WooCommerce Payments in Romania. You can view and manage transactions right in your WordPress dashboard while securely accepting major cards, Apple Pay, and payments in over 100 currencies.','{}','pending','woocommerce.com','2023-06-30 22:06:10',NULL,0,'plain','',0,'info',0),(129,'wc-admin-wcpay-sweden-Q2-2023','marketing','en_US','WooCommerce Payments is now available in Sweden!','We’ve recently released WooCommerce Payments in Sweden. You can view and manage transactions right in your WordPress dashboard while securely accepting major cards, Apple Pay, and payments in over 100 currencies.','{}','pending','woocommerce.com','2023-06-30 22:06:10',NULL,0,'plain','',0,'info',0),(130,'tiktok-spc_june-2023','marketing','en_US','Take the guesswork out of TikTok advertising','Save time and create smarter ads using new automated campaign management from TikTok for WooCommerce. Simplify your campaign creation and watch TikTok’s machine learning build, target, and optimize ads that support your advertising goals — and grow your audience.','{}','unactioned','woocommerce.com','2023-06-30 22:06:10',NULL,0,'plain','',0,'info',0),(131,'woocommerce-WCGC-July-2023-update-needed','update','en_US','Action required: Security update of WooCommerce GoCardless Extension','<strong>Your shop requires a security update to address a vulnerability in the WooCommerce GoCardless extension</strong>. The fix for this vulnerability was released on July 4th. Please update immediately.','{}','pending','woocommerce.com','2023-07-05 14:47:23',NULL,0,'plain','',0,'info',0),(132,'woocommerce-shipping-fedex-api-outage-2023-07-16','warning','en_US','Scheduled FedEx API outage — July 2023','On July 16 there will be a full outage of the FedEx API from 04:00 to 08:00 AM UTC. Due to planned maintenance by FedEx, you\'ll be unable to provide FedEx shipping rates during this time. Follow the link below for more information and recommendations on how to minimize impact.','{}','pending','woocommerce.com','2023-07-06 11:56:58',NULL,0,'plain','',0,'info',0),(133,'wcship-2023-07-hazmat-update-needed','update','en_US','Action required: USPS HAZMAT compliance update for WooCommerce Shipping & Tax extension','<strong>Your store requires an update for the WooCommerce Shipping extension</strong>. Please update to the latest version of the WooCommerce Shipping &amp; Tax extension immediately to ensure compliance with new USPS HAZMAT rules currently in effect.','{}','pending','woocommerce.com','2023-07-12 07:19:20',NULL,0,'plain','',0,'info',0),(134,'wc-admin-edit-products-on-the-move','info','en_US','Edit products on the move','Edit and create new products from your mobile devices with the Woo app','{}','unactioned','woocommerce-admin','2023-07-20 10:47:53',NULL,0,'plain','',0,'info',0),(135,'square_payments_q3_2023','marketing','en_US','Square for WooCommerce','Connect your Square account with WooCommerce to accept online and in-person payments (including contactless payments and cross-channel gift cards) quickly and securely. Save time by syncing sales, customers, and items and inventory — and manage everything through one centralized platform.','{}','unactioned','woocommerce.com','2023-07-20 10:47:53',NULL,0,'plain','',0,'info',0),(136,'wc-admin-woopayments-rebrand','marketing','en_US','WooCommerce Payments is now WooPayments','We’ve changed the name as part of recent updates to the Woo brand. You’ll still enjoy the same seamless payments experience — just look for WooPayments in your WordPress admin.','{}','pending','woocommerce.com','2023-07-29 09:25:03',NULL,0,'plain','',0,'info',0),(137,'woocommerce-WCStripe-Aug-2023-update-needed','update','en_US','Action required: Security update for WooCommerce Stripe plugin','<strong>Your shop requires an important security update for the  WooCommerce Stripe plugin</strong>. The fix for this vulnerability was released on July 31. Please update immediately.','{}','pending','woocommerce.com','2023-08-03 08:47:58',NULL,0,'plain','',0,'info',0),(138,'woocommerce-WCStripe-Aug-2023-security-updated','update','en_US','Security update of WooCommerce Stripe plugin','<strong>Your store has been updated to the latest secure version of the WooCommerce Stripe plugin</strong>. This update was released on July 31.','{}','pending','woocommerce.com','2023-08-03 08:47:58',NULL,0,'plain','',0,'info',0),(139,'woocommerce-WooPayments-Aug-2023-update-needed','update','en_US','Action required: Security update for WooPayments (WooCommerce Payments) plugin','<strong>Your shop requires an important security update for the WooPayments (WooCommerce Payments) extension</strong>. The fix for this vulnerability was released on July 31. Please update immediately.','{}','pending','woocommerce.com','2023-08-03 08:47:58',NULL,0,'plain','',0,'info',0),(140,'woocommerce-WooPayments-Aug-2023-security-updated','update','en_US','Security update of WooPayments (WooCommerce Payments) plugin','<strong>Your store has been updated to the more secure version of WooPayments (WooCommerce Payments)</strong>. This update was released on July 31.','{}','pending','woocommerce.com','2023-08-03 08:47:58',NULL,0,'plain','',0,'info',0),(141,'tiktok-apac-webinar-2023','marketing','en_US','Unlocking TikTok: Live Webinar August 9','Join us on August 9 for a free online masterclass with our partners at TikTok, tailored to Woo merchants in the APAC region (11 am AEST). You’ll learn how to connect your store to TikTok, unlock expert advertising tools, and reach its one billion active global users — all from the comfort of your own home.','{}','pending','woocommerce.com','2023-08-05 07:18:29',NULL,0,'plain','',0,'info',0),(142,'avalara_q3-2023_noAvaTax','marketing','en_US','Automatically calculate VAT in real time','Take the effort out of determining tax rates and sell confidently across borders with automated tax management from Avalara AvaTax— including built-in VAT calculation when you sell into or across the EU and UK. Save time and stay compliant when you let Avalara do the heavy lifting.','{}','pending','woocommerce.com','2023-08-09 07:18:15',NULL,0,'plain','',0,'info',0),(143,'avalara_q3-2023_withAvaTax','marketing','en_US','New in AvaTax: Calculate VAT in real time','Take the effort out of determining tax rates and sell confidently across borders with automated tax management from Avalara AvaTax— including built-in VAT calculation when you sell into or across the EU and UK. Save time and stay compliant when you let Avalara do the heavy lifting.','{}','pending','woocommerce.com','2023-08-09 07:18:15',NULL,0,'plain','',0,'info',0),(144,'google_uxstudy_recruitment_q3-2023','marketing','en_US','Share your feedback in exchange for $150','Woo has teamed up with Google to collect feedback on advertising products and services available to you. If selected, you’ll receive an incentive equal to $150 USD for a 60-minute interview that can help improve the products you use to advertise. If interested, please take 2 minutes to complete the screening survey.','{}','pending','woocommerce.com','2023-08-10 11:19:16',NULL,0,'plain','',0,'info',0),(150,'wc_admin_BNPL_WCPay_Q3_2023','marketing','en_US','Afterpay and Affirm have arrived in WooCommerce Payments!','Give your customers more power with buy now, pay later from Afterpay and Affirm — now included as part of WooCommerce Payments! With this new integration, you can quickly offer a checkout option that converts sales and boosts average order value, all from within the same payments dashboard you already know.','{}','pending','woocommerce.com','2023-09-19 07:18:35',NULL,0,'plain','',0,'info',0),(151,'wc_admin_afterpay_WCPay_Q3_2023','marketing','en_US','Afterpay has arrived in WooCommerce Payments!','Give your customers more power with buy now, pay later from Afterpay — now included as part of WooCommerce Payments! With this new integration, you can quickly offer a checkout option that converts sales and boosts average order value, all from within the same payments dashboard you already know.','{}','pending','woocommerce.com','2023-09-19 07:18:35',NULL,0,'plain','',0,'info',0),(152,'woocommerce-usermeta-Sept2023-productvendors','update','en_US','Your store requires a security update','<strong>Your shop needs an update to address a vulnerability in WooCommerce.</strong> The fix was released on Sept 15. Please update WooCommerce to the latest version immediately. <a href=\"https://developer.woocommerce.com/2023/09/16/woocommerce-vulnerability-reintroduced-from-7-0-1/\" />Read our developer update</a> for more information.','{}','pending','woocommerce.com','2023-09-20 07:18:00',NULL,0,'plain','',0,'info',0);
/*!40000 ALTER TABLE `wplf_wc_admin_notes` ENABLE KEYS */;
UNLOCK TABLES;

-- Dumped table `wplf_wc_admin_notes` with 146 row(s)
--

--
-- Table structure for table `wplf_e_events`
--

DROP TABLE IF EXISTS `wplf_e_events`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `wplf_e_events` (
  `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `event_data` text DEFAULT NULL,
  `created_at` datetime NOT NULL,
  PRIMARY KEY (`id`),
  KEY `created_at_index` (`created_at`)
) ENGINE=MyISAM AUTO_INCREMENT=3 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wplf_e_events`
--

LOCK TABLES `wplf_e_events` WRITE;
/*!40000 ALTER TABLE `wplf_e_events` DISABLE KEYS */;
INSERT INTO `wplf_e_events` VALUES (1,'{\"event\":\"modal load\",\"version\":\"\",\"details\":\"{\\\"placement\\\":\\\"Onboarding wizard\\\",\\\"step\\\":\\\"account\\\",\\\"user_state\\\":\\\"anon\\\"}\",\"ts\":\"2023-08-15T15:34:12.597-06:30\"}','2023-08-15 15:34:12'),(2,'{\"event\":\"close modal\",\"version\":\"\",\"details\":\"{\\\"placement\\\":\\\"Onboarding wizard\\\",\\\"step\\\":\\\"account\\\"}\",\"ts\":\"2023-08-15T15:34:27.278-06:30\"}','2023-08-15 15:34:27');
/*!40000 ALTER TABLE `wplf_e_events` ENABLE KEYS */;
UNLOCK TABLES;

-- Dumped table `wplf_e_events` with 2 row(s)
--

--
-- Table structure for table `wplf_revslider_layer_animations`
--

DROP TABLE IF EXISTS `wplf_revslider_layer_animations`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `wplf_revslider_layer_animations` (
  `id` int(9) NOT NULL AUTO_INCREMENT,
  `handle` text NOT NULL,
  `params` text NOT NULL,
  `settings` text DEFAULT NULL,
  PRIMARY KEY (`id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wplf_revslider_layer_animations`
--

LOCK TABLES `wplf_revslider_layer_animations` WRITE;
/*!40000 ALTER TABLE `wplf_revslider_layer_animations` DISABLE KEYS */;
/*!40000 ALTER TABLE `wplf_revslider_layer_animations` ENABLE KEYS */;
UNLOCK TABLES;

-- Dumped table `wplf_revslider_layer_animations` with 0 row(s)
--

--
-- Table structure for table `wplf_wc_order_coupon_lookup`
--

DROP TABLE IF EXISTS `wplf_wc_order_coupon_lookup`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `wplf_wc_order_coupon_lookup` (
  `order_id` bigint(20) unsigned NOT NULL,
  `coupon_id` bigint(20) NOT NULL,
  `date_created` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `discount_amount` double NOT NULL DEFAULT 0,
  PRIMARY KEY (`order_id`,`coupon_id`),
  KEY `coupon_id` (`coupon_id`),
  KEY `date_created` (`date_created`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wplf_wc_order_coupon_lookup`
--

LOCK TABLES `wplf_wc_order_coupon_lookup` WRITE;
/*!40000 ALTER TABLE `wplf_wc_order_coupon_lookup` DISABLE KEYS */;
/*!40000 ALTER TABLE `wplf_wc_order_coupon_lookup` ENABLE KEYS */;
UNLOCK TABLES;

-- Dumped table `wplf_wc_order_coupon_lookup` with 0 row(s)
--

--
-- Table structure for table `wplf_actionscheduler_logs`
--

DROP TABLE IF EXISTS `wplf_actionscheduler_logs`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `wplf_actionscheduler_logs` (
  `log_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `action_id` bigint(20) unsigned NOT NULL,
  `message` text NOT NULL,
  `log_date_gmt` datetime DEFAULT '0000-00-00 00:00:00',
  `log_date_local` datetime DEFAULT '0000-00-00 00:00:00',
  PRIMARY KEY (`log_id`),
  KEY `action_id` (`action_id`),
  KEY `log_date_gmt` (`log_date_gmt`)
) ENGINE=MyISAM AUTO_INCREMENT=3512 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wplf_actionscheduler_logs`
--

LOCK TABLES `wplf_actionscheduler_logs` WRITE;
/*!40000 ALTER TABLE `wplf_actionscheduler_logs` DISABLE KEYS */;
INSERT INTO `wplf_actionscheduler_logs` VALUES (3153,1056,'action started via Async Request','2023-09-16 15:31:48','2023-09-16 15:31:48'),(3152,1056,'action created','2023-09-16 15:31:44','2023-09-16 15:31:44'),(3151,1055,'action complete via WP Cron','2023-09-16 15:31:18','2023-09-16 15:31:18'),(3150,1055,'action started via WP Cron','2023-09-16 15:31:18','2023-09-16 15:31:18'),(3149,1055,'action created','2023-09-16 15:30:44','2023-09-16 15:30:44'),(3148,1054,'action complete via Async Request','2023-09-16 15:29:39','2023-09-16 15:29:39'),(3147,1054,'action started via Async Request','2023-09-16 15:29:39','2023-09-16 15:29:39'),(3146,1054,'action created','2023-09-16 15:29:01','2023-09-16 15:29:01'),(3145,1053,'action complete via WP Cron','2023-09-16 15:27:13','2023-09-16 15:27:13'),(3144,1053,'action started via WP Cron','2023-09-16 15:27:13','2023-09-16 15:27:13'),(3143,1053,'action created','2023-09-16 15:26:08','2023-09-16 15:26:08'),(3169,1061,'action created','2023-09-17 03:38:25','2023-09-17 03:38:25'),(3168,1023,'action complete via WP Cron','2023-09-17 03:38:25','2023-09-17 03:38:25'),(3167,1023,'action started via WP Cron','2023-09-17 03:38:25','2023-09-17 03:38:25'),(3435,1150,'action started via WP Cron','2023-09-24 07:18:11','2023-09-24 07:18:11'),(3434,1150,'action created','2023-09-24 07:17:42','2023-09-24 07:17:42'),(3433,1149,'action complete via WP Cron','2023-09-24 07:06:04','2023-09-24 07:06:04'),(3432,1149,'action started via WP Cron','2023-09-24 07:06:04','2023-09-24 07:06:04'),(3431,1149,'action created','2023-09-24 07:05:19','2023-09-24 07:05:19'),(3430,1148,'action complete via WP Cron','2023-09-24 06:36:01','2023-09-24 06:36:01'),(3429,1148,'action started via WP Cron','2023-09-24 06:36:01','2023-09-24 06:36:01'),(3426,1147,'action started via WP Cron','2023-09-24 06:33:58','2023-09-24 06:33:58'),(3427,1147,'action complete via WP Cron','2023-09-24 06:33:58','2023-09-24 06:33:58'),(3428,1148,'action created','2023-09-24 06:35:03','2023-09-24 06:35:03'),(3425,1147,'action created','2023-09-24 06:33:01','2023-09-24 06:33:01'),(3424,1146,'action complete via Async Request','2023-09-24 05:46:55','2023-09-24 05:46:55'),(3423,1146,'action started via Async Request','2023-09-24 05:46:55','2023-09-24 05:46:55'),(3418,1144,'action created','2023-09-24 05:09:49','2023-09-24 05:09:49'),(3417,1095,'action complete via Async Request','2023-09-24 05:09:49','2023-09-24 05:09:49'),(3416,1095,'action started via Async Request','2023-09-24 05:09:49','2023-09-24 05:09:49'),(3415,1143,'action complete via Async Request','2023-09-24 01:52:49','2023-09-24 01:52:49'),(3414,1143,'action started via Async Request','2023-09-24 01:52:49','2023-09-24 01:52:49'),(3413,1143,'action created','2023-09-24 01:52:18','2023-09-24 01:52:18'),(3412,1142,'action complete via WP Cron','2023-09-24 01:44:21','2023-09-24 01:44:21'),(3411,1142,'action started via WP Cron','2023-09-24 01:44:21','2023-09-24 01:44:21'),(3410,1142,'action created','2023-09-24 01:43:47','2023-09-24 01:43:47'),(3409,1141,'action complete via WP Cron','2023-09-24 01:38:13','2023-09-24 01:38:13'),(3408,1141,'action started via WP Cron','2023-09-24 01:38:13','2023-09-24 01:38:13'),(3407,1141,'action created','2023-09-24 01:37:39','2023-09-24 01:37:39'),(3406,1140,'action complete via Async Request','2023-09-24 01:30:34','2023-09-24 01:30:34'),(3405,1140,'action started via Async Request','2023-09-24 01:30:34','2023-09-24 01:30:34'),(3404,1140,'action created','2023-09-24 01:30:24','2023-09-24 01:30:24'),(3403,1139,'action complete via WP Cron','2023-09-24 01:26:20','2023-09-24 01:26:20'),(3402,1139,'action started via WP Cron','2023-09-24 01:26:20','2023-09-24 01:26:20'),(3401,1139,'action created','2023-09-24 01:25:38','2023-09-24 01:25:38'),(3400,1138,'action complete via WP Cron','2023-09-24 01:20:18','2023-09-24 01:20:18'),(3399,1138,'action started via WP Cron','2023-09-24 01:20:18','2023-09-24 01:20:18'),(3398,1138,'action created','2023-09-24 01:19:39','2023-09-24 01:19:39'),(3397,1137,'action complete via WP Cron','2023-09-24 01:15:59','2023-09-24 01:15:59'),(3396,1137,'action started via WP Cron','2023-09-24 01:15:59','2023-09-24 01:15:59'),(3395,1137,'action created','2023-09-24 01:15:54','2023-09-24 01:15:54'),(3394,1136,'action complete via Async Request','2023-09-24 01:09:50','2023-09-24 01:09:50'),(3393,1136,'action started via Async Request','2023-09-24 01:09:50','2023-09-24 01:09:50'),(3392,1136,'action created','2023-09-24 01:08:57','2023-09-24 01:08:57'),(3391,1135,'action complete via Async Request','2023-09-24 01:01:57','2023-09-24 01:01:57'),(3390,1135,'action started via Async Request','2023-09-24 01:01:57','2023-09-24 01:01:57'),(3389,1135,'action created','2023-09-24 01:01:23','2023-09-24 01:01:23'),(3388,1134,'action complete via WP Cron','2023-09-24 00:44:08','2023-09-24 00:44:08'),(3387,1134,'action started via WP Cron','2023-09-24 00:44:08','2023-09-24 00:44:08'),(3386,1134,'action created','2023-09-24 00:43:28','2023-09-24 00:43:28'),(3385,1133,'action complete via Async Request','2023-09-24 00:29:55','2023-09-24 00:29:55'),(3384,1133,'action started via Async Request','2023-09-24 00:29:55','2023-09-24 00:29:55'),(3383,1133,'action created','2023-09-24 00:29:50','2023-09-24 00:29:50'),(3382,1132,'action complete via WP Cron','2023-09-24 00:27:09','2023-09-24 00:27:09'),(3381,1132,'action started via WP Cron','2023-09-24 00:27:09','2023-09-24 00:27:09'),(3380,1132,'action created','2023-09-24 00:26:44','2023-09-24 00:26:44'),(3379,1131,'action complete via WP Cron','2023-09-24 00:23:00','2023-09-24 00:23:00'),(3378,1131,'action started via WP Cron','2023-09-24 00:23:00','2023-09-24 00:23:00'),(3377,1131,'action created','2023-09-24 00:22:40','2023-09-24 00:22:40'),(3376,1130,'action complete via WP Cron','2023-09-23 17:02:58','2023-09-23 17:02:58'),(3375,1130,'action started via WP Cron','2023-09-23 17:02:58','2023-09-23 17:02:58'),(3374,1130,'action created','2023-09-23 17:02:51','2023-09-23 17:02:51'),(3373,1129,'action complete via WP Cron','2023-09-23 16:58:56','2023-09-23 16:58:56'),(3372,1129,'action started via WP Cron','2023-09-23 16:58:56','2023-09-23 16:58:56'),(3371,1129,'action created','2023-09-23 16:58:52','2023-09-23 16:58:52'),(3370,1128,'action complete via WP Cron','2023-09-23 16:55:03','2023-09-23 16:55:03'),(3369,1128,'action started via WP Cron','2023-09-23 16:55:03','2023-09-23 16:55:03'),(3368,1128,'action created','2023-09-23 16:54:30','2023-09-23 16:54:30'),(3367,1127,'action complete via WP Cron','2023-09-23 16:48:23','2023-09-23 16:48:23'),(3366,1127,'action started via WP Cron','2023-09-23 16:48:23','2023-09-23 16:48:23'),(3365,1127,'action created','2023-09-23 16:47:50','2023-09-23 16:47:50'),(3364,1126,'action complete via Async Request','2023-09-23 16:23:38','2023-09-23 16:23:38'),(3363,1126,'action started via Async Request','2023-09-23 16:23:38','2023-09-23 16:23:38'),(3362,1126,'action created','2023-09-23 16:23:28','2023-09-23 16:23:28'),(3361,1125,'action complete via WP Cron','2023-09-23 16:20:12','2023-09-23 16:20:12'),(3360,1125,'action started via WP Cron','2023-09-23 16:20:12','2023-09-23 16:20:12'),(3359,1125,'action created','2023-09-23 16:19:27','2023-09-23 16:19:27'),(3358,1124,'action complete via WP Cron','2023-09-23 14:26:02','2023-09-23 14:26:02'),(3357,1124,'action started via WP Cron','2023-09-23 14:26:02','2023-09-23 14:26:02'),(3356,1124,'action created','2023-09-23 14:25:29','2023-09-23 14:25:29'),(3355,1123,'action complete via WP Cron','2023-09-23 14:14:07','2023-09-23 14:14:07'),(3354,1123,'action started via WP Cron','2023-09-23 14:14:07','2023-09-23 14:14:07'),(3353,1123,'action created','2023-09-23 14:13:34','2023-09-23 14:13:34'),(3352,1122,'action complete via WP Cron','2023-09-23 14:09:03','2023-09-23 14:09:03'),(3351,1122,'action started via WP Cron','2023-09-23 14:09:03','2023-09-23 14:09:03'),(3350,1122,'action created','2023-09-23 14:08:28','2023-09-23 14:08:28'),(3349,1121,'action complete via WP Cron','2023-09-23 13:51:18','2023-09-23 13:51:18'),(3348,1121,'action started via WP Cron','2023-09-23 13:51:18','2023-09-23 13:51:18'),(3347,1121,'action created','2023-09-23 13:50:40','2023-09-23 13:50:40'),(3346,1120,'action complete via WP Cron','2023-09-23 13:48:23','2023-09-23 13:48:23'),(3345,1120,'action started via WP Cron','2023-09-23 13:48:22','2023-09-23 13:48:22'),(3344,1120,'action created','2023-09-23 13:47:45','2023-09-23 13:47:45'),(3343,1119,'action complete via Async Request','2023-09-23 12:07:04','2023-09-23 12:07:04'),(3342,1119,'action started via Async Request','2023-09-23 12:07:04','2023-09-23 12:07:04'),(3341,1118,'action complete via Async Request','2023-09-23 12:06:39','2023-09-23 12:06:39'),(3340,1118,'action started via Async Request','2023-09-23 12:06:38','2023-09-23 12:06:38'),(3339,1119,'action created','2023-09-23 12:06:26','2023-09-23 12:06:26'),(3338,1118,'action created','2023-09-23 12:06:24','2023-09-23 12:06:24'),(3337,1117,'action complete via WP Cron','2023-09-23 12:06:06','2023-09-23 12:06:06'),(3336,1117,'action started via WP Cron','2023-09-23 12:06:06','2023-09-23 12:06:06'),(3335,1117,'action created','2023-09-23 12:05:38','2023-09-23 12:05:38'),(3332,1116,'action created','2023-09-23 12:04:28','2023-09-23 12:04:28'),(3333,1116,'action started via WP Cron','2023-09-23 12:05:01','2023-09-23 12:05:01'),(3334,1116,'action complete via WP Cron','2023-09-23 12:05:01','2023-09-23 12:05:01'),(3331,1115,'action complete via Async Request','2023-09-23 11:58:56','2023-09-23 11:58:56'),(3330,1115,'action started via Async Request','2023-09-23 11:58:56','2023-09-23 11:58:56'),(3329,1115,'action created','2023-09-23 11:58:46','2023-09-23 11:58:46'),(3326,1114,'action created','2023-09-23 11:58:12','2023-09-23 11:58:12'),(3327,1114,'action started via Async Request','2023-09-23 11:58:43','2023-09-23 11:58:43'),(3328,1114,'action complete via Async Request','2023-09-23 11:58:43','2023-09-23 11:58:43'),(3325,1113,'action complete via WP Cron','2023-09-23 11:35:14','2023-09-23 11:35:14'),(3324,1113,'action started via WP Cron','2023-09-23 11:35:14','2023-09-23 11:35:14'),(3323,1113,'action created','2023-09-23 11:34:32','2023-09-23 11:34:32'),(3322,1112,'action complete via WP Cron','2023-09-23 11:31:17','2023-09-23 11:31:17'),(3321,1112,'action started via WP Cron','2023-09-23 11:31:17','2023-09-23 11:31:17'),(3320,1112,'action created','2023-09-23 11:30:46','2023-09-23 11:30:46'),(3317,1111,'action created','2023-09-23 11:17:43','2023-09-23 11:17:43'),(3318,1111,'action started via WP Cron','2023-09-23 11:18:09','2023-09-23 11:18:09'),(3319,1111,'action complete via WP Cron','2023-09-23 11:18:10','2023-09-23 11:18:10'),(3316,1110,'action complete via WP Cron','2023-09-23 11:16:59','2023-09-23 11:16:59'),(3315,1110,'action started via WP Cron','2023-09-23 11:16:59','2023-09-23 11:16:59'),(3314,1110,'action created','2023-09-23 11:16:08','2023-09-23 11:16:08'),(3313,1109,'action complete via WP Cron','2023-09-23 11:11:09','2023-09-23 11:11:09'),(3312,1109,'action started via WP Cron','2023-09-23 11:11:09','2023-09-23 11:11:09'),(3311,1109,'action created','2023-09-23 11:10:33','2023-09-23 11:10:33'),(3310,1108,'action complete via Async Request','2023-09-23 10:47:45','2023-09-23 10:47:45'),(3309,1108,'action started via Async Request','2023-09-23 10:47:45','2023-09-23 10:47:45'),(3308,1108,'action created','2023-09-23 10:47:33','2023-09-23 10:47:33'),(3307,1107,'action complete via Async Request','2023-09-23 10:20:34','2023-09-23 10:20:34'),(3306,1107,'action started via Async Request','2023-09-23 10:20:34','2023-09-23 10:20:34'),(3305,1107,'action created','2023-09-23 10:20:27','2023-09-23 10:20:27'),(3304,1106,'action complete via WP Cron','2023-09-23 09:43:59','2023-09-23 09:43:59'),(3303,1106,'action started via WP Cron','2023-09-23 09:43:59','2023-09-23 09:43:59'),(3302,1106,'action created','2023-09-23 09:43:50','2023-09-23 09:43:50'),(3301,1105,'action complete via Async Request','2023-09-23 09:03:56','2023-09-23 09:03:56'),(3300,1105,'action started via Async Request','2023-09-23 09:03:56','2023-09-23 09:03:56'),(3299,1105,'action created','2023-09-23 09:03:29','2023-09-23 09:03:29'),(3298,1104,'action complete via WP Cron','2023-09-23 08:48:21','2023-09-23 08:48:21'),(3297,1104,'action started via WP Cron','2023-09-23 08:48:21','2023-09-23 08:48:21'),(3296,1104,'action created','2023-09-23 08:48:20','2023-09-23 08:48:20'),(3295,1103,'action complete via WP Cron','2023-09-23 08:41:56','2023-09-23 08:41:56'),(3294,1103,'action started via WP Cron','2023-09-23 08:41:56','2023-09-23 08:41:56'),(3293,1103,'action created','2023-09-23 08:41:25','2023-09-23 08:41:25'),(3292,1102,'action complete via WP Cron','2023-09-23 08:41:04','2023-09-23 08:41:04'),(3291,1102,'action started via WP Cron','2023-09-23 08:41:04','2023-09-23 08:41:04'),(3290,1102,'action created','2023-09-23 08:40:07','2023-09-23 08:40:07'),(3289,1101,'action complete via WP Cron','2023-09-23 08:38:00','2023-09-23 08:38:00'),(3288,1101,'action started via WP Cron','2023-09-23 08:38:00','2023-09-23 08:38:00'),(3287,1101,'action created','2023-09-23 08:37:51','2023-09-23 08:37:51'),(3286,1100,'action complete via Async Request','2023-09-23 08:36:38','2023-09-23 08:36:38'),(3285,1100,'action started via Async Request','2023-09-23 08:36:38','2023-09-23 08:36:38'),(3284,1100,'action created','2023-09-23 08:36:02','2023-09-23 08:36:02'),(3283,1099,'action complete via WP Cron','2023-09-23 08:35:10','2023-09-23 08:35:10'),(3282,1099,'action started via WP Cron','2023-09-23 08:35:10','2023-09-23 08:35:10'),(3281,1099,'action created','2023-09-23 08:35:06','2023-09-23 08:35:06'),(3280,1098,'action complete via WP Cron','2023-09-23 08:29:58','2023-09-23 08:29:58'),(3279,1098,'action started via WP Cron','2023-09-23 08:29:58','2023-09-23 08:29:58'),(3278,1098,'action created','2023-09-23 08:28:55','2023-09-23 08:28:55'),(3275,1097,'action created','2023-09-23 08:28:01','2023-09-23 08:28:01'),(3276,1097,'action started via Async Request','2023-09-23 08:28:47','2023-09-23 08:28:47'),(3277,1097,'action complete via Async Request','2023-09-23 08:28:47','2023-09-23 08:28:47'),(3265,1093,'action complete via Async Request','2023-09-21 12:09:53','2023-09-21 12:09:53'),(3264,1093,'action started via Async Request','2023-09-21 12:09:53','2023-09-21 12:09:53'),(3263,1093,'action created','2023-09-21 12:09:24','2023-09-21 12:09:24'),(3259,1091,'action complete via WP Cron','2023-09-20 05:21:07','2023-09-20 05:21:07'),(3258,1091,'action started via WP Cron','2023-09-20 05:21:07','2023-09-20 05:21:07'),(3257,1091,'action created','2023-09-20 05:20:37','2023-09-20 05:20:37'),(3256,1090,'action complete via WP Cron','2023-09-20 05:11:21','2023-09-20 05:11:21'),(3255,1090,'action started via WP Cron','2023-09-20 05:11:20','2023-09-20 05:11:20'),(3254,1090,'action created','2023-09-20 05:10:34','2023-09-20 05:10:34'),(3253,1089,'action complete via WP Cron','2023-09-20 05:10:05','2023-09-20 05:10:05'),(3252,1089,'action started via WP Cron','2023-09-20 05:10:05','2023-09-20 05:10:05'),(3251,1089,'action created','2023-09-20 05:09:49','2023-09-20 05:09:49'),(3250,1088,'action complete via Async Request','2023-09-20 04:56:26','2023-09-20 04:56:26'),(3249,1088,'action started via Async Request','2023-09-20 04:56:26','2023-09-20 04:56:26'),(3248,1088,'action created','2023-09-20 04:56:23','2023-09-20 04:56:23'),(3244,1086,'action complete via WP Cron','2023-09-19 13:22:40','2023-09-19 13:22:40'),(3243,1086,'action started via WP Cron','2023-09-19 13:22:40','2023-09-19 13:22:40'),(3242,1086,'action created','2023-09-19 13:21:11','2023-09-19 13:21:11'),(3241,1085,'action complete via WP Cron','2023-09-19 13:05:59','2023-09-19 13:05:59'),(3240,1085,'action started via WP Cron','2023-09-19 13:05:59','2023-09-19 13:05:59'),(3239,1085,'action created','2023-09-19 13:05:57','2023-09-19 13:05:57'),(3238,1084,'action complete via Async Request','2023-09-19 13:05:22','2023-09-19 13:05:22'),(3102,1039,'action started via WP Cron','2023-09-16 08:09:59','2023-09-16 08:09:59'),(3101,1039,'action created','2023-09-16 08:09:53','2023-09-16 08:09:53'),(3095,1037,'action created','2023-09-16 08:08:09','2023-09-16 08:08:09'),(3096,1037,'action started via WP Cron','2023-09-16 08:08:14','2023-09-16 08:08:14'),(3097,1037,'action complete via WP Cron','2023-09-16 08:08:14','2023-09-16 08:08:14'),(3098,1038,'action created','2023-09-16 08:09:12','2023-09-16 08:09:12'),(3099,1038,'action started via WP Cron','2023-09-16 08:09:18','2023-09-16 08:09:18'),(3100,1038,'action complete via WP Cron','2023-09-16 08:09:18','2023-09-16 08:09:18'),(3053,1017,'action started via WP Cron','2023-09-16 03:11:26','2023-09-16 03:11:26'),(3054,1017,'action complete via WP Cron','2023-09-16 03:11:26','2023-09-16 03:11:26'),(3055,1023,'action created','2023-09-16 03:11:26','2023-09-16 03:11:26'),(3056,1024,'action created','2023-09-16 03:13:08','2023-09-16 03:13:08'),(3057,1024,'action started via Async Request','2023-09-16 03:13:45','2023-09-16 03:13:45'),(3058,1024,'action complete via Async Request','2023-09-16 03:13:45','2023-09-16 03:13:45'),(3059,1025,'action created','2023-09-16 03:18:07','2023-09-16 03:18:07'),(3060,1025,'action started via Async Request','2023-09-16 03:18:49','2023-09-16 03:18:49'),(3061,1025,'action complete via Async Request','2023-09-16 03:18:49','2023-09-16 03:18:49'),(3062,1026,'action created','2023-09-16 03:24:08','2023-09-16 03:24:08'),(3063,1026,'action started via Async Request','2023-09-16 03:24:35','2023-09-16 03:24:35'),(3064,1026,'action complete via Async Request','2023-09-16 03:24:35','2023-09-16 03:24:35'),(3065,1027,'action created','2023-09-16 03:32:33','2023-09-16 03:32:33'),(3066,1027,'action started via WP Cron','2023-09-16 03:33:12','2023-09-16 03:33:12'),(3067,1027,'action complete via WP Cron','2023-09-16 03:33:13','2023-09-16 03:33:13'),(3068,1028,'action created','2023-09-16 03:36:45','2023-09-16 03:36:45'),(3069,1028,'action started via WP Cron','2023-09-16 03:37:17','2023-09-16 03:37:17'),(3070,1028,'action complete via WP Cron','2023-09-16 03:37:17','2023-09-16 03:37:17'),(3071,1029,'action created','2023-09-16 03:38:01','2023-09-16 03:38:01'),(3072,1029,'action started via Async Request','2023-09-16 03:38:38','2023-09-16 03:38:38'),(3073,1029,'action complete via Async Request','2023-09-16 03:38:38','2023-09-16 03:38:38'),(3074,1030,'action created','2023-09-16 03:39:09','2023-09-16 03:39:09'),(3075,1030,'action started via Async Request','2023-09-16 03:39:42','2023-09-16 03:39:42'),(3076,1030,'action complete via Async Request','2023-09-16 03:39:42','2023-09-16 03:39:42'),(3077,1031,'action created','2023-09-16 03:40:11','2023-09-16 03:40:11'),(3078,1031,'action started via Async Request','2023-09-16 03:40:52','2023-09-16 03:40:52'),(3079,1031,'action complete via Async Request','2023-09-16 03:40:52','2023-09-16 03:40:52'),(3080,1032,'action created','2023-09-16 03:41:23','2023-09-16 03:41:23'),(3081,1032,'action started via WP Cron','2023-09-16 03:41:58','2023-09-16 03:41:58'),(3082,1032,'action complete via WP Cron','2023-09-16 03:41:58','2023-09-16 03:41:58'),(3083,1033,'action created','2023-09-16 03:43:05','2023-09-16 03:43:05'),(3084,1033,'action started via Async Request','2023-09-16 03:43:10','2023-09-16 03:43:10'),(3085,1033,'action complete via Async Request','2023-09-16 03:43:10','2023-09-16 03:43:10'),(3086,1034,'action created','2023-09-16 03:44:33','2023-09-16 03:44:33'),(3087,1034,'action started via WP Cron','2023-09-16 03:45:11','2023-09-16 03:45:11'),(3088,1034,'action complete via WP Cron','2023-09-16 03:45:11','2023-09-16 03:45:11'),(3089,1035,'action created','2023-09-16 03:46:07','2023-09-16 03:46:07'),(3090,1035,'action started via WP Cron','2023-09-16 03:47:14','2023-09-16 03:47:14'),(3091,1035,'action complete via WP Cron','2023-09-16 03:47:14','2023-09-16 03:47:14'),(3092,1036,'action created','2023-09-16 03:57:24','2023-09-16 03:57:24'),(3093,1036,'action started via WP Cron','2023-09-16 03:57:55','2023-09-16 03:57:55'),(3094,1036,'action complete via WP Cron','2023-09-16 03:57:55','2023-09-16 03:57:55'),(3103,1039,'action complete via WP Cron','2023-09-16 08:09:59','2023-09-16 08:09:59'),(3104,1040,'action created','2023-09-16 08:12:29','2023-09-16 08:12:29'),(3105,1040,'action started via Async Request','2023-09-16 08:13:22','2023-09-16 08:13:22'),(3106,1040,'action complete via Async Request','2023-09-16 08:13:22','2023-09-16 08:13:22'),(3107,1041,'action created','2023-09-16 08:13:57','2023-09-16 08:13:57'),(3108,1041,'action started via WP Cron','2023-09-16 08:14:02','2023-09-16 08:14:02'),(3109,1041,'action complete via WP Cron','2023-09-16 08:14:02','2023-09-16 08:14:02'),(3110,1042,'action created','2023-09-16 08:22:02','2023-09-16 08:22:02'),(3111,1042,'action started via WP Cron','2023-09-16 08:22:03','2023-09-16 08:22:03'),(3112,1042,'action complete via WP Cron','2023-09-16 08:22:03','2023-09-16 08:22:03'),(3113,1043,'action created','2023-09-16 08:22:07','2023-09-16 08:22:07'),(3114,1043,'action started via WP Cron','2023-09-16 08:23:03','2023-09-16 08:23:03'),(3115,1043,'action complete via WP Cron','2023-09-16 08:23:03','2023-09-16 08:23:03'),(3116,1044,'action created','2023-09-16 08:32:06','2023-09-16 08:32:06'),(3117,1044,'action started via Async Request','2023-09-16 08:32:35','2023-09-16 08:32:35'),(3118,1044,'action complete via Async Request','2023-09-16 08:32:35','2023-09-16 08:32:35'),(3119,1045,'action created','2023-09-16 08:33:15','2023-09-16 08:33:15'),(3120,1045,'action started via Async Request','2023-09-16 08:33:51','2023-09-16 08:33:51'),(3121,1045,'action complete via Async Request','2023-09-16 08:33:51','2023-09-16 08:33:51'),(3036,924,'action complete via WP Cron','2023-09-15 03:10:08','2023-09-15 03:10:08'),(3035,924,'action started via WP Cron','2023-09-15 03:10:08','2023-09-15 03:10:08'),(2899,971,'action complete via Async Request','2023-09-14 09:10:28','2023-09-14 09:10:28'),(2898,971,'action started via Async Request','2023-09-14 09:10:28','2023-09-14 09:10:28'),(2897,971,'action created','2023-09-14 09:09:56','2023-09-14 09:09:56'),(2887,967,'action complete via WP Cron','2023-09-14 08:00:02','2023-09-14 08:00:02'),(2888,968,'action created','2023-09-14 08:01:30','2023-09-14 08:01:30'),(2886,967,'action started via WP Cron','2023-09-14 08:00:02','2023-09-14 08:00:02'),(2885,967,'action created','2023-09-14 08:00:01','2023-09-14 08:00:01'),(2883,966,'action started via WP Cron','2023-09-14 07:52:08','2023-09-14 07:52:08'),(2884,966,'action complete via WP Cron','2023-09-14 07:52:08','2023-09-14 07:52:08'),(2882,966,'action created','2023-09-14 07:51:41','2023-09-14 07:51:41'),(2878,964,'action started via Async Request','2023-09-14 07:49:36','2023-09-14 07:49:36'),(2876,964,'action created','2023-09-14 07:48:40','2023-09-14 07:48:40'),(2877,965,'action created','2023-09-14 07:48:45','2023-09-14 07:48:45'),(2873,963,'action created','2023-09-14 07:47:42','2023-09-14 07:47:42'),(2874,963,'action started via Async Request','2023-09-14 07:47:48','2023-09-14 07:47:48'),(2875,963,'action complete via Async Request','2023-09-14 07:47:48','2023-09-14 07:47:48'),(2872,962,'action complete via WP Cron','2023-09-14 07:43:56','2023-09-14 07:43:56'),(2871,962,'action started via WP Cron','2023-09-14 07:43:56','2023-09-14 07:43:56'),(2870,962,'action created','2023-09-14 07:43:53','2023-09-14 07:43:53'),(2865,960,'action started via WP Cron','2023-09-14 07:38:15','2023-09-14 07:38:15'),(2864,960,'action created','2023-09-14 07:37:48','2023-09-14 07:37:48'),(2861,959,'action created','2023-09-14 07:35:52','2023-09-14 07:35:52'),(2862,959,'action started via WP Cron','2023-09-14 07:35:56','2023-09-14 07:35:56'),(2863,959,'action complete via WP Cron','2023-09-14 07:35:56','2023-09-14 07:35:56'),(2551,855,'action complete via WP Cron','2023-09-13 04:51:03','2023-09-13 04:51:03'),(2552,856,'action created','2023-09-13 04:51:06','2023-09-13 04:51:06'),(2553,856,'action started via WP Cron','2023-09-13 04:52:16','2023-09-13 04:52:16'),(2530,848,'action complete via WP Cron','2023-09-12 07:04:08','2023-09-12 07:04:08'),(2529,848,'action started via WP Cron','2023-09-12 07:04:08','2023-09-12 07:04:08'),(2528,848,'action created','2023-09-12 07:03:38','2023-09-12 07:03:38'),(2566,860,'action complete via WP Cron','2023-09-13 04:59:57','2023-09-13 04:59:57'),(2565,860,'action started via WP Cron','2023-09-13 04:59:57','2023-09-13 04:59:57'),(2564,860,'action created','2023-09-13 04:59:56','2023-09-13 04:59:56'),(2563,859,'action complete via WP Cron','2023-09-13 04:55:04','2023-09-13 04:55:04'),(2562,859,'action started via WP Cron','2023-09-13 04:55:04','2023-09-13 04:55:04'),(2561,859,'action created','2023-09-13 04:55:03','2023-09-13 04:55:03'),(2560,858,'action complete via WP Cron','2023-09-13 04:54:03','2023-09-13 04:54:03'),(2559,858,'action started via WP Cron','2023-09-13 04:54:03','2023-09-13 04:54:03'),(2558,858,'action created','2023-09-13 04:53:31','2023-09-13 04:53:31'),(2557,857,'action complete via WP Cron','2023-09-13 04:52:57','2023-09-13 04:52:57'),(2556,857,'action started via WP Cron','2023-09-13 04:52:57','2023-09-13 04:52:57'),(2555,857,'action created','2023-09-13 04:52:30','2023-09-13 04:52:30'),(2554,856,'action complete via WP Cron','2023-09-13 04:52:16','2023-09-13 04:52:16'),(2180,732,'action created','2023-09-11 05:10:13','2023-09-11 05:10:13'),(2178,730,'action complete via WP Cron','2023-09-11 01:33:43','2023-09-11 01:33:43'),(2550,855,'action started via WP Cron','2023-09-13 04:51:03','2023-09-13 04:51:03'),(2549,855,'action created','2023-09-13 04:51:02','2023-09-13 04:51:02'),(2545,853,'action complete via Async Request','2023-09-13 03:54:44','2023-09-13 03:54:44'),(2543,853,'action created','2023-09-13 03:54:14','2023-09-13 03:54:14'),(2544,853,'action started via Async Request','2023-09-13 03:54:44','2023-09-13 03:54:44'),(2542,852,'action created','2023-09-13 02:34:56','2023-09-13 02:34:56'),(2179,731,'action created','2023-09-11 01:33:43','2023-09-11 01:33:43'),(2177,730,'action started via WP Cron','2023-09-11 01:33:43','2023-09-11 01:33:43'),(3422,1146,'action created','2023-09-24 05:46:14','2023-09-24 05:46:14'),(3421,1145,'action complete via Async Request','2023-09-24 05:44:51','2023-09-24 05:44:51'),(2183,733,'action created','2023-09-11 05:19:54','2023-09-11 05:19:54'),(2541,817,'action complete via WP Cron','2023-09-13 02:34:56','2023-09-13 02:34:56'),(2540,817,'action started via WP Cron','2023-09-13 02:34:56','2023-09-13 02:34:56'),(2548,854,'action complete via Async Request','2023-09-13 04:06:50','2023-09-13 04:06:50'),(2547,854,'action started via Async Request','2023-09-13 04:06:50','2023-09-13 04:06:50'),(2546,854,'action created','2023-09-13 04:06:45','2023-09-13 04:06:45'),(2761,925,'action complete via Async Request','2023-09-14 03:54:49','2023-09-14 03:54:49'),(2760,925,'action started via Async Request','2023-09-14 03:54:49','2023-09-14 03:54:49'),(2111,709,'action created','2023-09-04 04:46:57','2023-09-04 04:46:57'),(2112,709,'action started via WP Cron','2023-09-04 04:48:07','2023-09-04 04:48:07'),(2158,724,'action created','2023-09-05 09:00:40','2023-09-05 09:00:40'),(2157,723,'action complete via WP Cron','2023-09-05 09:00:40','2023-09-05 09:00:40'),(2156,723,'action started via WP Cron','2023-09-05 09:00:40','2023-09-05 09:00:40'),(2161,725,'action started via WP Cron','2023-09-06 04:46:13','2023-09-06 04:46:13'),(2160,726,'action created','2023-09-06 04:46:13','2023-09-06 04:46:13'),(2159,725,'action created','2023-09-06 04:45:45','2023-09-06 04:45:45'),(2176,730,'action created','2023-09-09 11:57:04','2023-09-09 11:57:04'),(2175,729,'action complete via WP Cron','2023-09-09 11:57:04','2023-09-09 11:57:04'),(2174,729,'action started via WP Cron','2023-09-09 11:57:04','2023-09-09 11:57:04'),(2182,732,'action complete via WP Cron','2023-09-11 05:11:57','2023-09-11 05:11:57'),(2181,732,'action started via WP Cron','2023-09-11 05:11:57','2023-09-11 05:11:57'),(2113,709,'action complete via WP Cron','2023-09-04 04:48:08','2023-09-04 04:48:08'),(2759,925,'action created','2023-09-14 03:54:10','2023-09-14 03:54:10'),(2842,952,'action complete via Async Request','2023-09-14 07:07:48','2023-09-14 07:07:48'),(2841,952,'action started via Async Request','2023-09-14 07:07:48','2023-09-14 07:07:48'),(2840,952,'action created','2023-09-14 07:07:20','2023-09-14 07:07:20'),(2857,957,'action started via Async Request','2023-09-14 07:23:51','2023-09-14 07:23:51'),(2856,958,'action created','2023-09-14 07:23:48','2023-09-14 07:23:48'),(2855,957,'action created','2023-09-14 07:22:42','2023-09-14 07:22:42'),(3237,1084,'action started via Async Request','2023-09-19 13:05:22','2023-09-19 13:05:22'),(3236,1084,'action created','2023-09-19 13:05:08','2023-09-19 13:05:08'),(3235,1083,'action complete via WP Cron','2023-09-19 13:04:13','2023-09-19 13:04:13'),(3234,1083,'action started via WP Cron','2023-09-19 13:04:13','2023-09-19 13:04:13'),(3233,1083,'action created','2023-09-19 13:04:08','2023-09-19 13:04:08'),(3232,1082,'action complete via WP Cron','2023-09-19 12:59:19','2023-09-19 12:59:19'),(3231,1082,'action started via WP Cron','2023-09-19 12:59:19','2023-09-19 12:59:19'),(3230,1082,'action created','2023-09-19 12:58:45','2023-09-19 12:58:45'),(3229,1081,'action complete via WP Cron','2023-09-19 12:57:54','2023-09-19 12:57:54'),(3228,1081,'action started via WP Cron','2023-09-19 12:57:54','2023-09-19 12:57:54'),(3227,1081,'action created','2023-09-19 12:57:12','2023-09-19 12:57:12'),(3190,1068,'action complete via WP Cron','2023-09-18 13:05:10','2023-09-18 13:05:10'),(3188,1068,'action created','2023-09-18 13:04:33','2023-09-18 13:04:33'),(3189,1068,'action started via WP Cron','2023-09-18 13:05:10','2023-09-18 13:05:10'),(3187,1067,'action complete via WP Cron','2023-09-18 10:26:11','2023-09-18 10:26:11'),(3186,1067,'action started via WP Cron','2023-09-18 10:26:10','2023-09-18 10:26:10'),(3172,1062,'action created','2023-09-18 03:47:46','2023-09-18 03:47:46'),(3171,1061,'action complete via WP Cron','2023-09-18 03:47:46','2023-09-18 03:47:46'),(3170,1061,'action started via WP Cron','2023-09-18 03:47:46','2023-09-18 03:47:46'),(3185,1067,'action created','2023-09-18 10:25:31','2023-09-18 10:25:31'),(3184,1066,'action complete via WP Cron','2023-09-18 10:04:23','2023-09-18 10:04:23'),(3183,1066,'action started via WP Cron','2023-09-18 10:04:23','2023-09-18 10:04:23'),(3182,1066,'action created','2023-09-18 10:03:49','2023-09-18 10:03:49'),(3181,1065,'action complete via Async Request','2023-09-18 09:40:03','2023-09-18 09:40:03'),(3180,1065,'action started via Async Request','2023-09-18 09:40:02','2023-09-18 09:40:02'),(3179,1065,'action created','2023-09-18 09:39:16','2023-09-18 09:39:16'),(3178,1064,'action complete via Async Request','2023-09-18 09:29:11','2023-09-18 09:29:11'),(3177,1064,'action started via Async Request','2023-09-18 09:29:11','2023-09-18 09:29:11'),(3176,1064,'action created','2023-09-18 09:28:29','2023-09-18 09:28:29'),(3175,1063,'action complete via WP Cron','2023-09-18 09:25:01','2023-09-18 09:25:01'),(3174,1063,'action started via WP Cron','2023-09-18 09:25:01','2023-09-18 09:25:01'),(3173,1063,'action created','2023-09-18 09:24:12','2023-09-18 09:24:12'),(3226,1080,'action complete via Async Request','2023-09-19 12:50:03','2023-09-19 12:50:03'),(3225,1080,'action started via Async Request','2023-09-19 12:50:03','2023-09-19 12:50:03'),(3224,1080,'action created','2023-09-19 12:49:20','2023-09-19 12:49:20'),(3223,1079,'action complete via WP Cron','2023-09-19 12:17:04','2023-09-19 12:17:04'),(3222,1079,'action started via WP Cron','2023-09-19 12:17:04','2023-09-19 12:17:04'),(3219,1078,'action started via Async Request','2023-09-19 12:15:27','2023-09-19 12:15:27'),(3220,1078,'action complete via Async Request','2023-09-19 12:15:27','2023-09-19 12:15:27'),(3218,1078,'action created','2023-09-19 12:15:25','2023-09-19 12:15:25'),(3247,1087,'action created','2023-09-20 03:48:27','2023-09-20 03:48:27'),(3221,1079,'action created','2023-09-19 12:16:57','2023-09-19 12:16:57'),(3217,1077,'action complete via Async Request','2023-09-19 12:14:31','2023-09-19 12:14:31'),(3216,1077,'action started via Async Request','2023-09-19 12:14:31','2023-09-19 12:14:31'),(3214,1076,'action complete via WP Cron','2023-09-19 12:08:56','2023-09-19 12:08:56'),(3215,1077,'action created','2023-09-19 12:13:43','2023-09-19 12:13:43'),(3212,1076,'action created','2023-09-19 12:07:56','2023-09-19 12:07:56'),(3213,1076,'action started via WP Cron','2023-09-19 12:08:56','2023-09-19 12:08:56'),(3210,1075,'action started via WP Cron','2023-09-19 12:06:05','2023-09-19 12:06:05'),(3211,1075,'action complete via WP Cron','2023-09-19 12:06:05','2023-09-19 12:06:05'),(3208,1074,'action complete via Async Request','2023-09-19 12:00:46','2023-09-19 12:00:46'),(3209,1075,'action created','2023-09-19 12:06:04','2023-09-19 12:06:04'),(3206,1073,'action complete via Async Request','2023-09-19 12:00:31','2023-09-19 12:00:31'),(3207,1074,'action started via Async Request','2023-09-19 12:00:46','2023-09-19 12:00:46'),(3205,1073,'action started via Async Request','2023-09-19 12:00:31','2023-09-19 12:00:31'),(3203,1073,'action created','2023-09-19 12:00:10','2023-09-19 12:00:10'),(3204,1074,'action created','2023-09-19 12:00:13','2023-09-19 12:00:13'),(3201,1072,'action started via Async Request','2023-09-19 11:48:47','2023-09-19 11:48:47'),(3202,1072,'action complete via Async Request','2023-09-19 11:48:47','2023-09-19 11:48:47'),(3200,1072,'action created','2023-09-19 11:48:16','2023-09-19 11:48:16'),(3199,1071,'action complete via WP Cron','2023-09-19 11:44:19','2023-09-19 11:44:19'),(3198,1071,'action started via WP Cron','2023-09-19 11:44:19','2023-09-19 11:44:19'),(3196,1070,'action complete via WP Cron','2023-09-19 11:29:16','2023-09-19 11:29:16'),(3197,1071,'action created','2023-09-19 11:43:47','2023-09-19 11:43:47'),(3195,1070,'action started via WP Cron','2023-09-19 11:29:16','2023-09-19 11:29:16'),(3193,1069,'action created','2023-09-19 03:48:20','2023-09-19 03:48:20'),(3194,1070,'action created','2023-09-19 11:28:41','2023-09-19 11:28:41'),(3192,1062,'action complete via WP Cron','2023-09-19 03:48:20','2023-09-19 03:48:20'),(3191,1062,'action started via WP Cron','2023-09-19 03:48:20','2023-09-19 03:48:20'),(3246,1069,'action complete via WP Cron','2023-09-20 03:48:27','2023-09-20 03:48:27'),(3245,1069,'action started via WP Cron','2023-09-20 03:48:27','2023-09-20 03:48:27'),(3262,1092,'action created','2023-09-21 04:46:39','2023-09-21 04:46:39'),(3261,1087,'action complete via WP Cron','2023-09-21 04:46:39','2023-09-21 04:46:39'),(3260,1087,'action started via WP Cron','2023-09-21 04:46:39','2023-09-21 04:46:39'),(3268,1094,'action created','2023-09-22 05:08:47','2023-09-22 05:08:47'),(3267,1092,'action complete via WP Cron','2023-09-22 05:08:47','2023-09-22 05:08:47'),(3266,1092,'action started via WP Cron','2023-09-22 05:08:47','2023-09-22 05:08:47'),(3274,1096,'action complete via WP Cron','2023-09-23 08:14:00','2023-09-23 08:14:00'),(3271,1095,'action created','2023-09-23 05:09:22','2023-09-23 05:09:22'),(3270,1094,'action complete via WP Cron','2023-09-23 05:09:22','2023-09-23 05:09:22'),(3269,1094,'action started via WP Cron','2023-09-23 05:09:22','2023-09-23 05:09:22'),(3273,1096,'action started via WP Cron','2023-09-23 08:14:00','2023-09-23 08:14:00'),(3272,1096,'action created','2023-09-23 08:13:27','2023-09-23 08:13:27'),(3420,1145,'action started via Async Request','2023-09-24 05:44:51','2023-09-24 05:44:51'),(3419,1145,'action created','2023-09-24 05:44:46','2023-09-24 05:44:46'),(3508,1174,'action created','2023-09-25 05:18:22','2023-09-25 05:18:22'),(3507,1144,'action complete via WP Cron','2023-09-25 05:18:21','2023-09-25 05:18:21'),(3506,1144,'action started via WP Cron','2023-09-25 05:18:21','2023-09-25 05:18:21'),(3511,1175,'action created','2023-09-26 05:19:37','2023-09-26 05:19:37'),(3510,1174,'action complete via WP Cron','2023-09-26 05:19:37','2023-09-26 05:19:37'),(3509,1174,'action started via WP Cron','2023-09-26 05:19:37','2023-09-26 05:19:37'),(2047,687,'action created','2023-08-26 05:46:10','2023-08-26 05:46:10'),(2057,687,'action started via WP Cron','2023-08-27 06:08:28','2023-08-27 06:08:28'),(2058,687,'action complete via WP Cron','2023-08-27 06:08:28','2023-08-27 06:08:28'),(2059,691,'action created','2023-08-27 06:08:28','2023-08-27 06:08:28'),(2060,692,'action created','2023-08-27 08:28:36','2023-08-27 08:28:36'),(2061,692,'action started via Async Request','2023-08-27 08:28:41','2023-08-27 08:28:41'),(2062,692,'action complete via Async Request','2023-08-27 08:28:41','2023-08-27 08:28:41'),(2063,693,'action created','2023-08-27 09:13:02','2023-08-27 09:13:02'),(2064,693,'action started via Async Request','2023-08-27 09:13:57','2023-08-27 09:13:57'),(2065,693,'action complete via Async Request','2023-08-27 09:13:57','2023-08-27 09:13:57'),(2066,694,'action created','2023-08-27 09:56:17','2023-08-27 09:56:17'),(2067,694,'action started via Async Request','2023-08-27 09:56:47','2023-08-27 09:56:47'),(2068,694,'action complete via Async Request','2023-08-27 09:56:47','2023-08-27 09:56:47'),(2069,695,'action created','2023-08-27 11:12:29','2023-08-27 11:12:29'),(2070,695,'action started via WP Cron','2023-08-27 11:13:00','2023-08-27 11:13:00'),(2071,695,'action complete via WP Cron','2023-08-27 11:13:00','2023-08-27 11:13:00'),(2072,696,'action created','2023-08-28 00:59:27','2023-08-28 00:59:27'),(2073,696,'action started via Async Request','2023-08-28 00:59:55','2023-08-28 00:59:55'),(2074,696,'action complete via Async Request','2023-08-28 00:59:55','2023-08-28 00:59:55'),(2075,697,'action created','2023-08-28 01:46:04','2023-08-28 01:46:04'),(2076,697,'action started via WP Cron','2023-08-28 01:46:57','2023-08-28 01:46:57'),(2077,697,'action complete via WP Cron','2023-08-28 01:46:57','2023-08-28 01:46:57'),(2078,698,'action created','2023-08-28 02:29:50','2023-08-28 02:29:50'),(2079,698,'action started via WP Cron','2023-08-28 02:30:19','2023-08-28 02:30:19'),(2080,698,'action complete via WP Cron','2023-08-28 02:30:19','2023-08-28 02:30:19'),(2081,699,'action created','2023-08-28 02:38:56','2023-08-28 02:38:56'),(2082,699,'action started via WP Cron','2023-08-28 02:38:58','2023-08-28 02:38:58'),(2083,699,'action complete via WP Cron','2023-08-28 02:38:58','2023-08-28 02:38:58'),(2084,691,'action started via WP Cron','2023-08-28 06:10:13','2023-08-28 06:10:13'),(2085,691,'action complete via WP Cron','2023-08-28 06:10:13','2023-08-28 06:10:13'),(2086,700,'action created','2023-08-28 06:10:13','2023-08-28 06:10:13'),(2087,700,'action started via WP Cron','2023-08-29 06:32:57','2023-08-29 06:32:57'),(2088,700,'action complete via WP Cron','2023-08-29 06:32:57','2023-08-29 06:32:57'),(2089,701,'action created','2023-08-29 06:32:57','2023-08-29 06:32:57'),(2090,702,'action created','2023-08-30 03:17:02','2023-08-30 03:17:02'),(2091,702,'action started via WP Cron','2023-08-30 03:18:09','2023-08-30 03:18:09'),(2092,702,'action complete via WP Cron','2023-08-30 03:18:09','2023-08-30 03:18:09'),(2093,701,'action started via WP Cron','2023-08-30 06:52:53','2023-08-30 06:52:53'),(2094,701,'action complete via WP Cron','2023-08-30 06:52:53','2023-08-30 06:52:53'),(2095,703,'action created','2023-08-30 06:52:53','2023-08-30 06:52:53'),(2096,704,'action created','2023-08-30 07:28:23','2023-08-30 07:28:23'),(2097,704,'action started via WP Cron','2023-08-30 07:28:58','2023-08-30 07:28:58'),(2098,704,'action complete via WP Cron','2023-08-30 07:28:58','2023-08-30 07:28:58'),(2099,703,'action started via WP Cron','2023-08-31 07:13:53','2023-08-31 07:13:53'),(2100,703,'action complete via WP Cron','2023-08-31 07:13:53','2023-08-31 07:13:53'),(2101,705,'action created','2023-08-31 07:13:53','2023-08-31 07:13:53'),(2102,705,'action started via WP Cron','2023-09-01 07:15:03','2023-09-01 07:15:03'),(2103,705,'action complete via WP Cron','2023-09-01 07:15:03','2023-09-01 07:15:03'),(2104,706,'action created','2023-09-01 07:15:03','2023-09-01 07:15:03'),(2105,706,'action started via WP Cron','2023-09-02 07:16:51','2023-09-02 07:16:51'),(2106,706,'action complete via WP Cron','2023-09-02 07:16:51','2023-09-02 07:16:51'),(2107,707,'action created','2023-09-02 07:16:51','2023-09-02 07:16:51'),(2108,707,'action started via WP Cron','2023-09-03 07:43:56','2023-09-03 07:43:56'),(2109,707,'action complete via WP Cron','2023-09-03 07:43:56','2023-09-03 07:43:56'),(2110,708,'action created','2023-09-03 07:43:56','2023-09-03 07:43:56'),(2114,710,'action created','2023-09-04 04:53:16','2023-09-04 04:53:16'),(2115,710,'action started via WP Cron','2023-09-04 04:53:18','2023-09-04 04:53:18'),(2116,710,'action complete via WP Cron','2023-09-04 04:53:19','2023-09-04 04:53:19'),(2117,711,'action created','2023-09-04 05:20:58','2023-09-04 05:20:58'),(2118,711,'action started via Async Request','2023-09-04 05:21:31','2023-09-04 05:21:31'),(2119,711,'action complete via Async Request','2023-09-04 05:21:31','2023-09-04 05:21:31'),(2120,712,'action created','2023-09-04 05:27:05','2023-09-04 05:27:05'),(2121,712,'action started via WP Cron','2023-09-04 05:28:14','2023-09-04 05:28:14'),(2122,712,'action complete via WP Cron','2023-09-04 05:28:14','2023-09-04 05:28:14'),(2123,713,'action created','2023-09-04 05:31:48','2023-09-04 05:31:48'),(2124,713,'action started via WP Cron','2023-09-04 05:32:13','2023-09-04 05:32:13'),(2125,713,'action complete via WP Cron','2023-09-04 05:32:13','2023-09-04 05:32:13'),(2126,714,'action created','2023-09-04 05:36:11','2023-09-04 05:36:11'),(2127,714,'action started via WP Cron','2023-09-04 05:37:21','2023-09-04 05:37:21'),(2128,714,'action complete via WP Cron','2023-09-04 05:37:21','2023-09-04 05:37:21'),(2129,715,'action created','2023-09-04 05:39:44','2023-09-04 05:39:44'),(2130,715,'action started via WP Cron','2023-09-04 05:40:19','2023-09-04 05:40:19'),(2131,715,'action complete via WP Cron','2023-09-04 05:40:19','2023-09-04 05:40:19'),(2132,716,'action created','2023-09-04 05:46:45','2023-09-04 05:46:45'),(2133,716,'action started via WP Cron','2023-09-04 05:47:14','2023-09-04 05:47:14'),(2134,716,'action complete via WP Cron','2023-09-04 05:47:14','2023-09-04 05:47:14'),(2135,717,'action created','2023-09-04 05:50:13','2023-09-04 05:50:13'),(2136,717,'action started via WP Cron','2023-09-04 05:50:57','2023-09-04 05:50:57'),(2137,717,'action complete via WP Cron','2023-09-04 05:50:57','2023-09-04 05:50:57'),(2138,718,'action created','2023-09-04 05:55:41','2023-09-04 05:55:41'),(2139,718,'action started via WP Cron','2023-09-04 05:56:08','2023-09-04 05:56:08'),(2140,718,'action complete via WP Cron','2023-09-04 05:56:08','2023-09-04 05:56:08'),(2141,719,'action created','2023-09-04 05:59:38','2023-09-04 05:59:38'),(2142,719,'action started via WP Cron','2023-09-04 06:00:08','2023-09-04 06:00:08'),(2143,719,'action complete via WP Cron','2023-09-04 06:00:08','2023-09-04 06:00:08'),(2144,720,'action created','2023-09-04 06:09:40','2023-09-04 06:09:40'),(2145,720,'action started via WP Cron','2023-09-04 06:10:05','2023-09-04 06:10:05'),(2146,720,'action complete via WP Cron','2023-09-04 06:10:05','2023-09-04 06:10:05'),(2147,721,'action created','2023-09-04 06:14:57','2023-09-04 06:14:57'),(2148,721,'action started via Async Request','2023-09-04 06:15:27','2023-09-04 06:15:27'),(2149,721,'action complete via Async Request','2023-09-04 06:15:27','2023-09-04 06:15:27'),(2150,722,'action created','2023-09-04 06:19:18','2023-09-04 06:19:18'),(2151,722,'action started via WP Cron','2023-09-04 06:20:28','2023-09-04 06:20:28'),(2152,722,'action complete via WP Cron','2023-09-04 06:20:28','2023-09-04 06:20:28'),(2153,708,'action started via WP Cron','2023-09-04 07:44:24','2023-09-04 07:44:24'),(2154,708,'action complete via WP Cron','2023-09-04 07:44:24','2023-09-04 07:44:24'),(2155,723,'action created','2023-09-04 07:44:24','2023-09-04 07:44:24'),(2162,725,'action complete via WP Cron','2023-09-06 04:46:13','2023-09-06 04:46:13'),(2163,726,'action started via Async Request','2023-09-06 04:46:43','2023-09-06 04:46:43'),(2164,726,'action complete via Async Request','2023-09-06 04:46:43','2023-09-06 04:46:43'),(2165,724,'action started via WP Cron','2023-09-06 09:00:52','2023-09-06 09:00:52'),(2166,724,'action complete via WP Cron','2023-09-06 09:00:52','2023-09-06 09:00:52'),(2167,727,'action created','2023-09-06 09:00:52','2023-09-06 09:00:52'),(2168,727,'action started via WP Cron','2023-09-07 09:01:15','2023-09-07 09:01:15'),(2169,727,'action complete via WP Cron','2023-09-07 09:01:15','2023-09-07 09:01:15'),(2170,728,'action created','2023-09-07 09:01:15','2023-09-07 09:01:15'),(2171,728,'action started via WP Cron','2023-09-08 11:14:21','2023-09-08 11:14:21'),(2172,728,'action complete via WP Cron','2023-09-08 11:14:21','2023-09-08 11:14:21'),(2173,729,'action created','2023-09-08 11:14:21','2023-09-08 11:14:21'),(2184,733,'action started via WP Cron','2023-09-11 05:21:04','2023-09-11 05:21:04'),(2185,733,'action complete via WP Cron','2023-09-11 05:21:04','2023-09-11 05:21:04'),(2186,734,'action created','2023-09-11 09:45:25','2023-09-11 09:45:25'),(2187,735,'action created','2023-09-11 09:45:25','2023-09-11 09:45:25'),(2188,736,'action created','2023-09-11 09:45:25','2023-09-11 09:45:25'),(2189,737,'action created','2023-09-11 09:45:25','2023-09-11 09:45:25'),(2190,738,'action created','2023-09-11 09:45:25','2023-09-11 09:45:25'),(2191,739,'action created','2023-09-11 09:45:25','2023-09-11 09:45:25'),(2192,740,'action created','2023-09-11 09:45:25','2023-09-11 09:45:25'),(2193,741,'action created','2023-09-11 09:45:25','2023-09-11 09:45:25'),(2194,742,'action created','2023-09-11 09:45:25','2023-09-11 09:45:25'),(2195,743,'action created','2023-09-11 09:45:25','2023-09-11 09:45:25'),(2196,744,'action created','2023-09-11 09:45:25','2023-09-11 09:45:25'),(2197,745,'action created','2023-09-11 09:45:25','2023-09-11 09:45:25'),(2198,746,'action created','2023-09-11 09:45:25','2023-09-11 09:45:25'),(2199,747,'action created','2023-09-11 09:45:25','2023-09-11 09:45:25'),(2200,748,'action created','2023-09-11 09:45:25','2023-09-11 09:45:25'),(2201,749,'action created','2023-09-11 09:45:25','2023-09-11 09:45:25'),(2202,750,'action created','2023-09-11 09:45:25','2023-09-11 09:45:25'),(2203,751,'action created','2023-09-11 09:45:25','2023-09-11 09:45:25'),(2204,752,'action created','2023-09-11 09:45:25','2023-09-11 09:45:25'),(2205,753,'action created','2023-09-11 09:45:25','2023-09-11 09:45:25'),(2206,754,'action created','2023-09-11 09:45:25','2023-09-11 09:45:25'),(2207,755,'action created','2023-09-11 09:45:26','2023-09-11 09:45:26'),(2208,756,'action created','2023-09-11 09:45:26','2023-09-11 09:45:26'),(2209,757,'action created','2023-09-11 09:45:26','2023-09-11 09:45:26'),(2210,758,'action created','2023-09-11 09:45:26','2023-09-11 09:45:26'),(2211,759,'action created','2023-09-11 09:45:26','2023-09-11 09:45:26'),(2212,760,'action created','2023-09-11 09:45:26','2023-09-11 09:45:26'),(2213,761,'action created','2023-09-11 09:45:26','2023-09-11 09:45:26'),(2214,762,'action created','2023-09-11 09:45:26','2023-09-11 09:45:26'),(2215,763,'action created','2023-09-11 09:45:26','2023-09-11 09:45:26'),(2216,764,'action created','2023-09-11 09:45:26','2023-09-11 09:45:26'),(2217,765,'action created','2023-09-11 09:45:26','2023-09-11 09:45:26'),(2218,766,'action created','2023-09-11 09:45:26','2023-09-11 09:45:26'),(2219,767,'action created','2023-09-11 09:45:26','2023-09-11 09:45:26'),(2220,768,'action created','2023-09-11 09:45:26','2023-09-11 09:45:26'),(2221,769,'action created','2023-09-11 09:45:26','2023-09-11 09:45:26'),(2222,770,'action created','2023-09-11 09:45:26','2023-09-11 09:45:26'),(2223,771,'action created','2023-09-11 09:45:26','2023-09-11 09:45:26'),(2224,772,'action created','2023-09-11 09:45:26','2023-09-11 09:45:26'),(2225,773,'action created','2023-09-11 09:45:26','2023-09-11 09:45:26'),(2226,774,'action created','2023-09-11 09:45:26','2023-09-11 09:45:26'),(2227,775,'action created','2023-09-11 09:45:26','2023-09-11 09:45:26'),(2228,776,'action created','2023-09-11 09:45:26','2023-09-11 09:45:26'),(2229,777,'action created','2023-09-11 09:45:26','2023-09-11 09:45:26'),(2230,778,'action created','2023-09-11 09:45:26','2023-09-11 09:45:26'),(2231,779,'action created','2023-09-11 09:45:27','2023-09-11 09:45:27'),(2232,780,'action created','2023-09-11 09:45:27','2023-09-11 09:45:27'),(2233,781,'action created','2023-09-11 09:45:27','2023-09-11 09:45:27'),(2234,782,'action created','2023-09-11 09:45:27','2023-09-11 09:45:27'),(2235,783,'action created','2023-09-11 09:45:27','2023-09-11 09:45:27'),(2236,784,'action created','2023-09-11 09:45:27','2023-09-11 09:45:27'),(2237,785,'action created','2023-09-11 09:45:27','2023-09-11 09:45:27'),(2238,786,'action created','2023-09-11 09:46:16','2023-09-11 09:46:16'),(2239,734,'action started via WP Cron','2023-09-11 09:46:18','2023-09-11 09:46:18'),(2240,734,'action complete via WP Cron','2023-09-11 09:46:18','2023-09-11 09:46:18'),(2241,735,'action started via WP Cron','2023-09-11 09:46:18','2023-09-11 09:46:18'),(2242,735,'action complete via WP Cron','2023-09-11 09:46:18','2023-09-11 09:46:18'),(2243,736,'action started via WP Cron','2023-09-11 09:46:18','2023-09-11 09:46:18'),(2244,736,'action complete via WP Cron','2023-09-11 09:46:18','2023-09-11 09:46:18'),(2245,737,'action started via WP Cron','2023-09-11 09:46:18','2023-09-11 09:46:18'),(2246,737,'action complete via WP Cron','2023-09-11 09:46:18','2023-09-11 09:46:18'),(2247,738,'action started via WP Cron','2023-09-11 09:46:18','2023-09-11 09:46:18'),(2248,738,'action complete via WP Cron','2023-09-11 09:46:18','2023-09-11 09:46:18'),(2249,739,'action started via WP Cron','2023-09-11 09:46:18','2023-09-11 09:46:18'),(2250,739,'action complete via WP Cron','2023-09-11 09:46:18','2023-09-11 09:46:18'),(2251,740,'action started via WP Cron','2023-09-11 09:46:18','2023-09-11 09:46:18'),(2252,740,'action complete via WP Cron','2023-09-11 09:46:18','2023-09-11 09:46:18'),(2253,741,'action started via WP Cron','2023-09-11 09:46:18','2023-09-11 09:46:18'),(2254,741,'action complete via WP Cron','2023-09-11 09:46:18','2023-09-11 09:46:18'),(2255,742,'action started via WP Cron','2023-09-11 09:46:18','2023-09-11 09:46:18'),(2256,742,'action complete via WP Cron','2023-09-11 09:46:18','2023-09-11 09:46:18'),(2257,743,'action started via WP Cron','2023-09-11 09:46:18','2023-09-11 09:46:18'),(2258,743,'action complete via WP Cron','2023-09-11 09:46:18','2023-09-11 09:46:18'),(2259,744,'action started via WP Cron','2023-09-11 09:46:18','2023-09-11 09:46:18'),(2260,744,'action complete via WP Cron','2023-09-11 09:46:18','2023-09-11 09:46:18'),(2261,745,'action started via WP Cron','2023-09-11 09:46:18','2023-09-11 09:46:18'),(2262,745,'action complete via WP Cron','2023-09-11 09:46:18','2023-09-11 09:46:18'),(2263,746,'action started via WP Cron','2023-09-11 09:46:18','2023-09-11 09:46:18'),(2264,746,'action complete via WP Cron','2023-09-11 09:46:18','2023-09-11 09:46:18'),(2265,747,'action started via WP Cron','2023-09-11 09:46:18','2023-09-11 09:46:18'),(2266,747,'action complete via WP Cron','2023-09-11 09:46:18','2023-09-11 09:46:18'),(2267,748,'action started via WP Cron','2023-09-11 09:46:18','2023-09-11 09:46:18'),(2268,748,'action complete via WP Cron','2023-09-11 09:46:18','2023-09-11 09:46:18'),(2269,749,'action started via WP Cron','2023-09-11 09:46:18','2023-09-11 09:46:18'),(2270,749,'action complete via WP Cron','2023-09-11 09:46:18','2023-09-11 09:46:18'),(2271,750,'action started via WP Cron','2023-09-11 09:46:18','2023-09-11 09:46:18'),(2272,750,'action complete via WP Cron','2023-09-11 09:46:19','2023-09-11 09:46:19'),(2273,751,'action started via WP Cron','2023-09-11 09:46:19','2023-09-11 09:46:19'),(2274,751,'action complete via WP Cron','2023-09-11 09:46:19','2023-09-11 09:46:19'),(2275,752,'action started via WP Cron','2023-09-11 09:46:19','2023-09-11 09:46:19'),(2276,752,'action complete via WP Cron','2023-09-11 09:46:19','2023-09-11 09:46:19'),(2277,753,'action started via WP Cron','2023-09-11 09:46:19','2023-09-11 09:46:19'),(2278,753,'action complete via WP Cron','2023-09-11 09:46:19','2023-09-11 09:46:19'),(2279,754,'action started via WP Cron','2023-09-11 09:46:19','2023-09-11 09:46:19'),(2280,754,'action complete via WP Cron','2023-09-11 09:46:19','2023-09-11 09:46:19'),(2281,755,'action started via WP Cron','2023-09-11 09:46:19','2023-09-11 09:46:19'),(2282,755,'action complete via WP Cron','2023-09-11 09:46:19','2023-09-11 09:46:19'),(2283,756,'action started via WP Cron','2023-09-11 09:46:19','2023-09-11 09:46:19'),(2284,756,'action complete via WP Cron','2023-09-11 09:46:19','2023-09-11 09:46:19'),(2285,757,'action started via WP Cron','2023-09-11 09:46:19','2023-09-11 09:46:19'),(2286,757,'action complete via WP Cron','2023-09-11 09:46:19','2023-09-11 09:46:19'),(2287,758,'action started via WP Cron','2023-09-11 09:46:19','2023-09-11 09:46:19'),(2288,758,'action complete via WP Cron','2023-09-11 09:46:19','2023-09-11 09:46:19'),(2289,759,'action started via WP Cron','2023-09-11 09:46:19','2023-09-11 09:46:19'),(2290,759,'action complete via WP Cron','2023-09-11 09:46:19','2023-09-11 09:46:19'),(2291,760,'action started via WP Cron','2023-09-11 09:46:19','2023-09-11 09:46:19'),(2292,760,'action complete via WP Cron','2023-09-11 09:46:19','2023-09-11 09:46:19'),(2293,761,'action started via WP Cron','2023-09-11 09:46:19','2023-09-11 09:46:19'),(2294,761,'action complete via WP Cron','2023-09-11 09:46:19','2023-09-11 09:46:19'),(2295,762,'action started via WP Cron','2023-09-11 09:46:19','2023-09-11 09:46:19'),(2296,762,'action complete via WP Cron','2023-09-11 09:46:19','2023-09-11 09:46:19'),(2297,763,'action started via WP Cron','2023-09-11 09:46:19','2023-09-11 09:46:19'),(2298,763,'action complete via WP Cron','2023-09-11 09:46:19','2023-09-11 09:46:19'),(2299,764,'action started via WP Cron','2023-09-11 09:46:19','2023-09-11 09:46:19'),(2300,764,'action complete via WP Cron','2023-09-11 09:46:19','2023-09-11 09:46:19'),(2301,765,'action started via WP Cron','2023-09-11 09:46:19','2023-09-11 09:46:19'),(2302,765,'action complete via WP Cron','2023-09-11 09:46:19','2023-09-11 09:46:19'),(2303,766,'action started via WP Cron','2023-09-11 09:46:19','2023-09-11 09:46:19'),(2304,766,'action complete via WP Cron','2023-09-11 09:46:19','2023-09-11 09:46:19'),(2305,767,'action started via WP Cron','2023-09-11 09:46:19','2023-09-11 09:46:19'),(2306,767,'action complete via WP Cron','2023-09-11 09:46:19','2023-09-11 09:46:19'),(2307,768,'action started via WP Cron','2023-09-11 09:46:20','2023-09-11 09:46:20'),(2308,768,'action complete via WP Cron','2023-09-11 09:46:20','2023-09-11 09:46:20'),(2309,769,'action started via WP Cron','2023-09-11 09:46:20','2023-09-11 09:46:20'),(2310,769,'action complete via WP Cron','2023-09-11 09:46:20','2023-09-11 09:46:20'),(2311,770,'action started via WP Cron','2023-09-11 09:46:20','2023-09-11 09:46:20'),(2312,770,'action complete via WP Cron','2023-09-11 09:46:20','2023-09-11 09:46:20'),(2313,771,'action started via WP Cron','2023-09-11 09:46:20','2023-09-11 09:46:20'),(2314,771,'action complete via WP Cron','2023-09-11 09:46:20','2023-09-11 09:46:20'),(2315,772,'action started via WP Cron','2023-09-11 09:46:20','2023-09-11 09:46:20'),(2316,772,'action complete via WP Cron','2023-09-11 09:46:20','2023-09-11 09:46:20'),(2317,773,'action started via WP Cron','2023-09-11 09:46:20','2023-09-11 09:46:20'),(2318,773,'action complete via WP Cron','2023-09-11 09:46:20','2023-09-11 09:46:20'),(2319,774,'action started via WP Cron','2023-09-11 09:46:20','2023-09-11 09:46:20'),(2320,774,'action complete via WP Cron','2023-09-11 09:46:20','2023-09-11 09:46:20'),(2321,775,'action started via WP Cron','2023-09-11 09:46:20','2023-09-11 09:46:20'),(2322,775,'action complete via WP Cron','2023-09-11 09:46:20','2023-09-11 09:46:20'),(2323,776,'action started via WP Cron','2023-09-11 09:46:20','2023-09-11 09:46:20'),(2324,776,'action complete via WP Cron','2023-09-11 09:46:20','2023-09-11 09:46:20'),(2325,777,'action started via WP Cron','2023-09-11 09:46:20','2023-09-11 09:46:20'),(2326,777,'action complete via WP Cron','2023-09-11 09:46:20','2023-09-11 09:46:20'),(2327,778,'action started via WP Cron','2023-09-11 09:46:20','2023-09-11 09:46:20'),(2328,778,'action complete via WP Cron','2023-09-11 09:46:20','2023-09-11 09:46:20'),(2329,779,'action started via WP Cron','2023-09-11 09:46:20','2023-09-11 09:46:20'),(2330,779,'action complete via WP Cron','2023-09-11 09:46:20','2023-09-11 09:46:20'),(2331,780,'action started via WP Cron','2023-09-11 09:46:20','2023-09-11 09:46:20'),(2332,780,'action complete via WP Cron','2023-09-11 09:46:20','2023-09-11 09:46:20'),(2333,781,'action started via WP Cron','2023-09-11 09:46:20','2023-09-11 09:46:20'),(2334,781,'action complete via WP Cron','2023-09-11 09:46:20','2023-09-11 09:46:20'),(2335,782,'action started via WP Cron','2023-09-11 09:46:20','2023-09-11 09:46:20'),(2336,782,'action complete via WP Cron','2023-09-11 09:46:20','2023-09-11 09:46:20'),(2337,783,'action started via WP Cron','2023-09-11 09:46:20','2023-09-11 09:46:20'),(2338,783,'action complete via WP Cron','2023-09-11 09:46:20','2023-09-11 09:46:20'),(2339,784,'action started via WP Cron','2023-09-11 09:46:20','2023-09-11 09:46:20'),(2340,784,'action complete via WP Cron','2023-09-11 09:46:20','2023-09-11 09:46:20'),(2341,785,'action started via WP Cron','2023-09-11 09:46:20','2023-09-11 09:46:20'),(2342,785,'action complete via WP Cron','2023-09-11 09:46:20','2023-09-11 09:46:20'),(2343,786,'action started via WP Cron','2023-09-11 09:46:20','2023-09-11 09:46:20'),(2344,786,'action complete via WP Cron','2023-09-11 09:46:20','2023-09-11 09:46:20'),(2345,787,'action created','2023-09-11 09:48:31','2023-09-11 09:48:31'),(2346,787,'action started via Async Request','2023-09-11 09:48:51','2023-09-11 09:48:51'),(2347,787,'action complete via Async Request','2023-09-11 09:48:51','2023-09-11 09:48:51'),(2348,788,'action created','2023-09-11 09:49:36','2023-09-11 09:49:36'),(2349,788,'action started via WP Cron','2023-09-11 09:50:18','2023-09-11 09:50:18'),(2350,788,'action complete via WP Cron','2023-09-11 09:50:19','2023-09-11 09:50:19'),(2351,789,'action created','2023-09-11 10:06:03','2023-09-11 10:06:03'),(2352,789,'action started via Async Request','2023-09-11 10:06:47','2023-09-11 10:06:47'),(2353,789,'action complete via Async Request','2023-09-11 10:06:47','2023-09-11 10:06:47'),(2354,790,'action created','2023-09-11 10:23:44','2023-09-11 10:23:44'),(2355,790,'action started via WP Cron','2023-09-11 10:23:56','2023-09-11 10:23:56'),(2356,790,'action complete via WP Cron','2023-09-11 10:23:56','2023-09-11 10:23:56'),(2357,791,'action created','2023-09-11 10:34:46','2023-09-11 10:34:46'),(2358,791,'action started via Async Request','2023-09-11 10:34:54','2023-09-11 10:34:54'),(2359,791,'action complete via Async Request','2023-09-11 10:34:54','2023-09-11 10:34:54'),(2360,792,'action created','2023-09-11 10:44:39','2023-09-11 10:44:39'),(2361,792,'action started via WP Cron','2023-09-11 10:44:57','2023-09-11 10:44:57'),(2362,792,'action complete via WP Cron','2023-09-11 10:44:57','2023-09-11 10:44:57'),(2363,793,'action created','2023-09-11 14:38:32','2023-09-11 14:38:32'),(2364,793,'action started via WP Cron','2023-09-11 14:39:02','2023-09-11 14:39:02'),(2365,793,'action complete via WP Cron','2023-09-11 14:39:02','2023-09-11 14:39:02'),(2366,794,'action created','2023-09-11 14:40:27','2023-09-11 14:40:27'),(2367,795,'action created','2023-09-11 14:40:40','2023-09-11 14:40:40'),(2368,794,'action started via Async Request','2023-09-11 14:40:47','2023-09-11 14:40:47'),(2369,794,'action complete via Async Request','2023-09-11 14:40:47','2023-09-11 14:40:47'),(2370,795,'action started via Async Request','2023-09-11 14:40:47','2023-09-11 14:40:47'),(2371,795,'action complete via Async Request','2023-09-11 14:40:47','2023-09-11 14:40:47'),(2372,796,'action created','2023-09-11 14:40:49','2023-09-11 14:40:49'),(2373,796,'action started via Async Request','2023-09-11 14:40:56','2023-09-11 14:40:56'),(2374,796,'action complete via Async Request','2023-09-11 14:40:56','2023-09-11 14:40:56'),(2375,797,'action created','2023-09-11 14:41:39','2023-09-11 14:41:39'),(2376,797,'action started via WP Cron','2023-09-11 14:42:20','2023-09-11 14:42:20'),(2377,797,'action complete via WP Cron','2023-09-11 14:42:21','2023-09-11 14:42:21'),(2378,798,'action created','2023-09-11 14:44:59','2023-09-11 14:44:59'),(2379,798,'action started via WP Cron','2023-09-11 14:45:19','2023-09-11 14:45:19'),(2380,798,'action complete via WP Cron','2023-09-11 14:45:19','2023-09-11 14:45:19'),(2381,799,'action created','2023-09-11 14:45:34','2023-09-11 14:45:34'),(2382,800,'action created','2023-09-11 14:45:42','2023-09-11 14:45:42'),(2383,799,'action started via WP Cron','2023-09-11 14:46:19','2023-09-11 14:46:19'),(2384,799,'action complete via WP Cron','2023-09-11 14:46:19','2023-09-11 14:46:19'),(2385,800,'action started via WP Cron','2023-09-11 14:46:19','2023-09-11 14:46:19'),(2386,800,'action complete via WP Cron','2023-09-11 14:46:19','2023-09-11 14:46:19'),(2387,801,'action created','2023-09-11 16:48:25','2023-09-11 16:48:25'),(2388,802,'action created','2023-09-11 16:48:30','2023-09-11 16:48:30'),(2389,801,'action started via WP Cron','2023-09-11 16:49:17','2023-09-11 16:49:17'),(2390,801,'action complete via WP Cron','2023-09-11 16:49:17','2023-09-11 16:49:17'),(2391,802,'action started via Async Request','2023-09-11 16:49:45','2023-09-11 16:49:45'),(2392,802,'action complete via Async Request','2023-09-11 16:49:45','2023-09-11 16:49:45'),(2393,803,'action created','2023-09-11 16:53:16','2023-09-11 16:53:16'),(2394,803,'action started via Async Request','2023-09-11 16:54:17','2023-09-11 16:54:17'),(2395,803,'action complete via Async Request','2023-09-11 16:54:17','2023-09-11 16:54:17'),(2396,804,'action created','2023-09-11 16:55:26','2023-09-11 16:55:26'),(2397,804,'action started via WP Cron','2023-09-11 16:56:30','2023-09-11 16:56:30'),(2398,804,'action complete via WP Cron','2023-09-11 16:56:30','2023-09-11 16:56:30'),(2399,805,'action created','2023-09-11 16:57:29','2023-09-11 16:57:29'),(2400,805,'action started via Async Request','2023-09-11 16:57:43','2023-09-11 16:57:43'),(2401,805,'action complete via Async Request','2023-09-11 16:57:43','2023-09-11 16:57:43'),(2402,806,'action created','2023-09-11 16:58:33','2023-09-11 16:58:33'),(2403,806,'action started via Async Request','2023-09-11 16:58:48','2023-09-11 16:58:48'),(2404,806,'action complete via Async Request','2023-09-11 16:58:48','2023-09-11 16:58:48'),(2405,807,'action created','2023-09-11 16:59:28','2023-09-11 16:59:28'),(2406,808,'action created','2023-09-11 16:59:33','2023-09-11 16:59:33'),(2407,807,'action started via WP Cron','2023-09-11 17:00:14','2023-09-11 17:00:14'),(2408,807,'action complete via WP Cron','2023-09-11 17:00:14','2023-09-11 17:00:14'),(2409,808,'action started via WP Cron','2023-09-11 17:00:14','2023-09-11 17:00:14'),(2410,808,'action complete via WP Cron','2023-09-11 17:00:14','2023-09-11 17:00:14'),(2411,809,'action created','2023-09-11 17:03:32','2023-09-11 17:03:32'),(2412,809,'action started via WP Cron','2023-09-11 17:03:59','2023-09-11 17:03:59'),(2413,809,'action complete via WP Cron','2023-09-11 17:03:59','2023-09-11 17:03:59'),(2414,810,'action created','2023-09-11 17:04:09','2023-09-11 17:04:09'),(2415,811,'action created','2023-09-11 17:04:47','2023-09-11 17:04:47'),(2416,810,'action started via WP Cron','2023-09-11 17:04:56','2023-09-11 17:04:56'),(2417,810,'action complete via WP Cron','2023-09-11 17:04:56','2023-09-11 17:04:56'),(2418,811,'action started via WP Cron','2023-09-11 17:04:56','2023-09-11 17:04:56'),(2419,811,'action complete via WP Cron','2023-09-11 17:04:56','2023-09-11 17:04:56'),(2420,812,'action created','2023-09-11 17:05:17','2023-09-11 17:05:17'),(2421,812,'action started via WP Cron','2023-09-11 17:05:56','2023-09-11 17:05:56'),(2422,812,'action complete via WP Cron','2023-09-11 17:05:56','2023-09-11 17:05:56'),(2423,813,'action created','2023-09-11 17:06:02','2023-09-11 17:06:02'),(2424,813,'action started via Async Request','2023-09-11 17:06:12','2023-09-11 17:06:12'),(2425,813,'action complete via Async Request','2023-09-11 17:06:12','2023-09-11 17:06:12'),(2426,814,'action created','2023-09-11 17:06:51','2023-09-11 17:06:51'),(2427,814,'action started via WP Cron','2023-09-11 17:06:58','2023-09-11 17:06:58'),(2428,814,'action complete via WP Cron','2023-09-11 17:06:58','2023-09-11 17:06:58'),(2429,815,'action created','2023-09-11 17:07:30','2023-09-11 17:07:30'),(2430,815,'action started via WP Cron','2023-09-11 17:07:58','2023-09-11 17:07:58'),(2431,815,'action complete via WP Cron','2023-09-11 17:07:58','2023-09-11 17:07:58'),(2432,816,'action created','2023-09-11 17:08:21','2023-09-11 17:08:21'),(2433,816,'action started via Async Request','2023-09-11 17:08:28','2023-09-11 17:08:28'),(2434,816,'action complete via Async Request','2023-09-11 17:08:28','2023-09-11 17:08:28'),(2435,731,'action started via WP Cron','2023-09-12 01:49:28','2023-09-12 01:49:28'),(2436,731,'action complete via WP Cron','2023-09-12 01:49:28','2023-09-12 01:49:28'),(2437,817,'action created','2023-09-12 01:49:28','2023-09-12 01:49:28'),(2438,818,'action created','2023-09-12 02:18:15','2023-09-12 02:18:15'),(2439,818,'action started via Async Request','2023-09-12 02:18:46','2023-09-12 02:18:46'),(2440,818,'action complete via Async Request','2023-09-12 02:18:46','2023-09-12 02:18:46'),(2441,819,'action created','2023-09-12 02:25:31','2023-09-12 02:25:31'),(2442,819,'action started via WP Cron','2023-09-12 02:26:25','2023-09-12 02:26:25'),(2443,819,'action complete via WP Cron','2023-09-12 02:26:25','2023-09-12 02:26:25'),(2444,820,'action created','2023-09-12 02:27:50','2023-09-12 02:27:50'),(2445,820,'action started via WP Cron','2023-09-12 02:28:37','2023-09-12 02:28:37'),(2446,820,'action complete via WP Cron','2023-09-12 02:28:37','2023-09-12 02:28:37'),(2447,821,'action created','2023-09-12 02:29:05','2023-09-12 02:29:05'),(2448,821,'action started via WP Cron','2023-09-12 02:30:22','2023-09-12 02:30:22'),(2449,821,'action complete via WP Cron','2023-09-12 02:30:22','2023-09-12 02:30:22'),(2450,822,'action created','2023-09-12 02:30:43','2023-09-12 02:30:43'),(2451,822,'action started via WP Cron','2023-09-12 02:31:20','2023-09-12 02:31:20'),(2452,822,'action complete via WP Cron','2023-09-12 02:31:20','2023-09-12 02:31:20'),(2453,823,'action created','2023-09-12 02:33:18','2023-09-12 02:33:18'),(2454,824,'action created','2023-09-12 02:33:22','2023-09-12 02:33:22'),(2455,823,'action started via WP Cron','2023-09-12 02:34:18','2023-09-12 02:34:18'),(2456,823,'action complete via WP Cron','2023-09-12 02:34:18','2023-09-12 02:34:18'),(2457,824,'action started via WP Cron','2023-09-12 02:34:18','2023-09-12 02:34:18'),(2458,824,'action complete via WP Cron','2023-09-12 02:34:18','2023-09-12 02:34:18'),(2459,825,'action created','2023-09-12 02:35:38','2023-09-12 02:35:38'),(2460,826,'action created','2023-09-12 02:36:05','2023-09-12 02:36:05'),(2461,825,'action started via WP Cron','2023-09-12 02:36:06','2023-09-12 02:36:06'),(2462,825,'action complete via WP Cron','2023-09-12 02:36:06','2023-09-12 02:36:06'),(2463,826,'action started via WP Cron','2023-09-12 02:36:06','2023-09-12 02:36:06'),(2464,826,'action complete via WP Cron','2023-09-12 02:36:06','2023-09-12 02:36:06'),(2465,827,'action created','2023-09-12 02:37:42','2023-09-12 02:37:42'),(2466,827,'action started via WP Cron','2023-09-12 02:38:14','2023-09-12 02:38:14'),(2467,827,'action complete via WP Cron','2023-09-12 02:38:14','2023-09-12 02:38:14'),(2468,828,'action created','2023-09-12 02:38:39','2023-09-12 02:38:39'),(2469,828,'action started via WP Cron','2023-09-12 02:39:03','2023-09-12 02:39:03'),(2470,828,'action complete via WP Cron','2023-09-12 02:39:03','2023-09-12 02:39:03'),(2471,829,'action created','2023-09-12 02:41:42','2023-09-12 02:41:42'),(2472,829,'action started via WP Cron','2023-09-12 02:42:05','2023-09-12 02:42:05'),(2473,829,'action complete via WP Cron','2023-09-12 02:42:05','2023-09-12 02:42:05'),(2474,830,'action created','2023-09-12 02:42:15','2023-09-12 02:42:15'),(2475,830,'action started via WP Cron','2023-09-12 02:43:34','2023-09-12 02:43:34'),(2476,830,'action complete via WP Cron','2023-09-12 02:43:34','2023-09-12 02:43:34'),(2477,831,'action created','2023-09-12 02:46:06','2023-09-12 02:46:06'),(2478,831,'action started via Async Request','2023-09-12 02:46:38','2023-09-12 02:46:38'),(2479,831,'action complete via Async Request','2023-09-12 02:46:38','2023-09-12 02:46:38'),(2480,832,'action created','2023-09-12 02:52:11','2023-09-12 02:52:11'),(2481,832,'action started via WP Cron','2023-09-12 02:52:58','2023-09-12 02:52:58'),(2482,832,'action complete via WP Cron','2023-09-12 02:52:58','2023-09-12 02:52:58'),(2483,833,'action created','2023-09-12 03:04:05','2023-09-12 03:04:05'),(2484,833,'action started via Async Request','2023-09-12 03:04:41','2023-09-12 03:04:41'),(2485,833,'action complete via Async Request','2023-09-12 03:04:41','2023-09-12 03:04:41'),(2486,834,'action created','2023-09-12 03:10:26','2023-09-12 03:10:26'),(2487,834,'action started via WP Cron','2023-09-12 03:12:16','2023-09-12 03:12:16'),(2488,834,'action complete via WP Cron','2023-09-12 03:12:16','2023-09-12 03:12:16'),(2489,835,'action created','2023-09-12 03:12:27','2023-09-12 03:12:27'),(2490,835,'action started via WP Cron','2023-09-12 03:13:41','2023-09-12 03:13:41'),(2491,835,'action complete via WP Cron','2023-09-12 03:13:41','2023-09-12 03:13:41'),(2492,836,'action created','2023-09-12 03:15:34','2023-09-12 03:15:34'),(2493,836,'action started via WP Cron','2023-09-12 03:16:01','2023-09-12 03:16:01'),(2494,836,'action complete via WP Cron','2023-09-12 03:16:01','2023-09-12 03:16:01'),(2495,837,'action created','2023-09-12 03:17:42','2023-09-12 03:17:42'),(2496,837,'action started via WP Cron','2023-09-12 03:18:15','2023-09-12 03:18:15'),(2497,837,'action complete via WP Cron','2023-09-12 03:18:15','2023-09-12 03:18:15'),(2498,838,'action created','2023-09-12 03:20:26','2023-09-12 03:20:26'),(2499,838,'action started via Async Request','2023-09-12 03:20:34','2023-09-12 03:20:34'),(2500,838,'action complete via Async Request','2023-09-12 03:20:34','2023-09-12 03:20:34'),(2501,839,'action created','2023-09-12 04:16:56','2023-09-12 04:16:56'),(2502,839,'action started via WP Cron','2023-09-12 04:19:10','2023-09-12 04:19:10'),(2503,839,'action complete via WP Cron','2023-09-12 04:19:10','2023-09-12 04:19:10'),(2504,840,'action created','2023-09-12 04:36:39','2023-09-12 04:36:39'),(2505,840,'action started via WP Cron','2023-09-12 04:37:01','2023-09-12 04:37:01'),(2506,840,'action complete via WP Cron','2023-09-12 04:37:01','2023-09-12 04:37:01'),(2507,841,'action created','2023-09-12 04:38:18','2023-09-12 04:38:18'),(2508,841,'action started via WP Cron','2023-09-12 04:39:26','2023-09-12 04:39:26'),(2509,841,'action complete via WP Cron','2023-09-12 04:39:26','2023-09-12 04:39:26'),(2510,842,'action created','2023-09-12 04:39:49','2023-09-12 04:39:49'),(2511,842,'action started via WP Cron','2023-09-12 04:40:18','2023-09-12 04:40:18'),(2512,842,'action complete via WP Cron','2023-09-12 04:40:18','2023-09-12 04:40:18'),(2513,843,'action created','2023-09-12 04:41:50','2023-09-12 04:41:50'),(2514,843,'action started via WP Cron','2023-09-12 04:42:21','2023-09-12 04:42:21'),(2515,843,'action complete via WP Cron','2023-09-12 04:42:21','2023-09-12 04:42:21'),(2516,844,'action created','2023-09-12 04:44:47','2023-09-12 04:44:47'),(2517,844,'action started via WP Cron','2023-09-12 04:45:16','2023-09-12 04:45:16'),(2518,844,'action complete via WP Cron','2023-09-12 04:45:16','2023-09-12 04:45:16'),(2519,845,'action created','2023-09-12 04:48:45','2023-09-12 04:48:45'),(2520,845,'action started via WP Cron','2023-09-12 04:49:12','2023-09-12 04:49:12'),(2521,845,'action complete via WP Cron','2023-09-12 04:49:12','2023-09-12 04:49:12'),(2522,846,'action created','2023-09-12 04:49:48','2023-09-12 04:49:48'),(2523,846,'action started via WP Cron','2023-09-12 04:50:21','2023-09-12 04:50:21'),(2524,846,'action complete via WP Cron','2023-09-12 04:50:21','2023-09-12 04:50:21'),(2525,847,'action created','2023-09-12 04:51:33','2023-09-12 04:51:33'),(2526,847,'action started via WP Cron','2023-09-12 04:52:06','2023-09-12 04:52:06'),(2527,847,'action complete via WP Cron','2023-09-12 04:52:06','2023-09-12 04:52:06'),(2531,849,'action created','2023-09-12 07:19:08','2023-09-12 07:19:08'),(2532,849,'action started via WP Cron','2023-09-12 07:20:15','2023-09-12 07:20:15'),(2533,849,'action complete via WP Cron','2023-09-12 07:20:15','2023-09-12 07:20:15'),(2534,850,'action created','2023-09-12 07:20:39','2023-09-12 07:20:39'),(2535,850,'action started via WP Cron','2023-09-12 07:21:06','2023-09-12 07:21:06'),(2536,850,'action complete via WP Cron','2023-09-12 07:21:06','2023-09-12 07:21:06'),(2537,851,'action created','2023-09-12 07:23:07','2023-09-12 07:23:07'),(2538,851,'action started via WP Cron','2023-09-12 07:24:25','2023-09-12 07:24:25'),(2539,851,'action complete via WP Cron','2023-09-12 07:24:25','2023-09-12 07:24:25'),(2567,861,'action created','2023-09-13 05:00:41','2023-09-13 05:00:41'),(2568,861,'action started via WP Cron','2023-09-13 05:01:13','2023-09-13 05:01:13'),(2569,861,'action complete via WP Cron','2023-09-13 05:01:13','2023-09-13 05:01:13'),(2570,862,'action created','2023-09-13 05:02:38','2023-09-13 05:02:38'),(2571,862,'action started via Async Request','2023-09-13 05:02:46','2023-09-13 05:02:46'),(2572,862,'action complete via Async Request','2023-09-13 05:02:46','2023-09-13 05:02:46'),(2573,863,'action created','2023-09-13 05:03:27','2023-09-13 05:03:27'),(2574,863,'action started via Async Request','2023-09-13 05:03:58','2023-09-13 05:03:58'),(2575,863,'action complete via Async Request','2023-09-13 05:03:58','2023-09-13 05:03:58'),(2576,864,'action created','2023-09-13 05:03:59','2023-09-13 05:03:59'),(2577,864,'action started via WP Cron','2023-09-13 05:04:00','2023-09-13 05:04:00'),(2578,864,'action complete via WP Cron','2023-09-13 05:04:00','2023-09-13 05:04:00'),(2579,865,'action created','2023-09-13 05:10:19','2023-09-13 05:10:19'),(2580,865,'action started via Async Request','2023-09-13 05:10:47','2023-09-13 05:10:47'),(2581,865,'action complete via Async Request','2023-09-13 05:10:47','2023-09-13 05:10:47'),(2582,866,'action created','2023-09-13 05:11:15','2023-09-13 05:11:15'),(2583,866,'action started via WP Cron','2023-09-13 05:12:26','2023-09-13 05:12:26'),(2584,866,'action complete via WP Cron','2023-09-13 05:12:26','2023-09-13 05:12:26'),(2585,867,'action created','2023-09-13 05:13:09','2023-09-13 05:13:09'),(2586,867,'action started via Async Request','2023-09-13 05:13:36','2023-09-13 05:13:36'),(2587,867,'action complete via Async Request','2023-09-13 05:13:36','2023-09-13 05:13:36'),(2588,868,'action created','2023-09-13 05:24:44','2023-09-13 05:24:44'),(2589,869,'action created','2023-09-13 05:25:19','2023-09-13 05:25:19'),(2590,868,'action started via WP Cron','2023-09-13 05:25:20','2023-09-13 05:25:20'),(2591,868,'action complete via WP Cron','2023-09-13 05:25:20','2023-09-13 05:25:20'),(2592,869,'action started via WP Cron','2023-09-13 05:25:20','2023-09-13 05:25:20'),(2593,869,'action complete via WP Cron','2023-09-13 05:25:21','2023-09-13 05:25:21'),(2594,870,'action created','2023-09-13 05:27:23','2023-09-13 05:27:23'),(2595,870,'action started via Async Request','2023-09-13 05:27:52','2023-09-13 05:27:52'),(2596,870,'action complete via Async Request','2023-09-13 05:27:52','2023-09-13 05:27:52'),(2597,871,'action created','2023-09-13 05:29:37','2023-09-13 05:29:37'),(2598,871,'action started via WP Cron','2023-09-13 05:30:07','2023-09-13 05:30:07'),(2599,871,'action complete via WP Cron','2023-09-13 05:30:07','2023-09-13 05:30:07'),(2600,872,'action created','2023-09-13 05:32:00','2023-09-13 05:32:00'),(2601,872,'action started via WP Cron','2023-09-13 05:32:05','2023-09-13 05:32:05'),(2602,872,'action complete via WP Cron','2023-09-13 05:32:05','2023-09-13 05:32:05'),(2603,873,'action created','2023-09-13 05:32:37','2023-09-13 05:32:37'),(2604,873,'action started via WP Cron','2023-09-13 05:33:09','2023-09-13 05:33:09'),(2605,873,'action complete via WP Cron','2023-09-13 05:33:09','2023-09-13 05:33:09'),(2606,874,'action created','2023-09-13 05:35:12','2023-09-13 05:35:12'),(2607,874,'action started via WP Cron','2023-09-13 05:35:14','2023-09-13 05:35:14'),(2608,874,'action complete via WP Cron','2023-09-13 05:35:14','2023-09-13 05:35:14'),(2609,875,'action created','2023-09-13 05:37:45','2023-09-13 05:37:45'),(2610,875,'action started via Async Request','2023-09-13 05:38:12','2023-09-13 05:38:12'),(2611,875,'action complete via Async Request','2023-09-13 05:38:13','2023-09-13 05:38:13'),(2612,876,'action created','2023-09-13 05:41:50','2023-09-13 05:41:50'),(2613,876,'action started via WP Cron','2023-09-13 05:41:57','2023-09-13 05:41:57'),(2614,876,'action complete via WP Cron','2023-09-13 05:41:57','2023-09-13 05:41:57'),(2615,877,'action created','2023-09-13 05:44:11','2023-09-13 05:44:11'),(2616,877,'action started via WP Cron','2023-09-13 05:45:13','2023-09-13 05:45:13'),(2617,877,'action complete via WP Cron','2023-09-13 05:45:13','2023-09-13 05:45:13'),(2618,878,'action created','2023-09-13 05:47:05','2023-09-13 05:47:05'),(2619,878,'action started via Async Request','2023-09-13 05:47:30','2023-09-13 05:47:30'),(2620,878,'action complete via Async Request','2023-09-13 05:47:30','2023-09-13 05:47:30'),(2621,879,'action created','2023-09-13 05:49:58','2023-09-13 05:49:58'),(2622,880,'action created','2023-09-13 05:50:59','2023-09-13 05:50:59'),(2623,879,'action started via WP Cron','2023-09-13 05:51:01','2023-09-13 05:51:01'),(2624,879,'action complete via WP Cron','2023-09-13 05:51:01','2023-09-13 05:51:01'),(2625,880,'action started via WP Cron','2023-09-13 05:51:01','2023-09-13 05:51:01'),(2626,880,'action complete via WP Cron','2023-09-13 05:51:01','2023-09-13 05:51:01'),(2627,881,'action created','2023-09-13 05:53:20','2023-09-13 05:53:20'),(2628,881,'action started via Async Request','2023-09-13 05:53:25','2023-09-13 05:53:25'),(2629,881,'action complete via Async Request','2023-09-13 05:53:25','2023-09-13 05:53:25'),(2630,882,'action created','2023-09-13 05:54:13','2023-09-13 05:54:13'),(2631,882,'action started via Async Request','2023-09-13 05:54:43','2023-09-13 05:54:43'),(2632,882,'action complete via Async Request','2023-09-13 05:54:43','2023-09-13 05:54:43'),(2633,883,'action created','2023-09-13 05:55:42','2023-09-13 05:55:42'),(2634,883,'action started via Async Request','2023-09-13 05:55:47','2023-09-13 05:55:47'),(2635,883,'action complete via Async Request','2023-09-13 05:55:47','2023-09-13 05:55:47'),(2636,884,'action created','2023-09-13 06:05:45','2023-09-13 06:05:45'),(2637,884,'action started via WP Cron','2023-09-13 06:06:17','2023-09-13 06:06:17'),(2638,884,'action complete via WP Cron','2023-09-13 06:06:17','2023-09-13 06:06:17'),(2639,885,'action created','2023-09-13 06:07:15','2023-09-13 06:07:15'),(2640,885,'action started via WP Cron','2023-09-13 06:09:10','2023-09-13 06:09:10'),(2641,885,'action complete via WP Cron','2023-09-13 06:09:10','2023-09-13 06:09:10'),(2642,886,'action created','2023-09-13 06:11:57','2023-09-13 06:11:57'),(2643,886,'action started via Async Request','2023-09-13 06:12:25','2023-09-13 06:12:25'),(2644,886,'action complete via Async Request','2023-09-13 06:12:25','2023-09-13 06:12:25'),(2645,887,'action created','2023-09-13 06:20:22','2023-09-13 06:20:22'),(2646,887,'action started via WP Cron','2023-09-13 06:21:08','2023-09-13 06:21:08'),(2647,887,'action complete via WP Cron','2023-09-13 06:21:08','2023-09-13 06:21:08'),(2648,888,'action created','2023-09-13 06:22:11','2023-09-13 06:22:11'),(2649,888,'action started via WP Cron','2023-09-13 06:22:12','2023-09-13 06:22:12'),(2650,888,'action complete via WP Cron','2023-09-13 06:22:13','2023-09-13 06:22:13'),(2651,889,'action created','2023-09-13 06:24:23','2023-09-13 06:24:23'),(2652,889,'action started via WP Cron','2023-09-13 06:25:14','2023-09-13 06:25:14'),(2653,889,'action complete via WP Cron','2023-09-13 06:25:14','2023-09-13 06:25:14'),(2654,890,'action created','2023-09-13 06:43:52','2023-09-13 06:43:52'),(2655,890,'action started via WP Cron','2023-09-13 06:43:55','2023-09-13 06:43:55'),(2656,890,'action complete via WP Cron','2023-09-13 06:43:55','2023-09-13 06:43:55'),(2657,891,'action created','2023-09-13 07:24:42','2023-09-13 07:24:42'),(2658,891,'action started via Async Request','2023-09-13 07:24:47','2023-09-13 07:24:47'),(2659,891,'action complete via Async Request','2023-09-13 07:24:47','2023-09-13 07:24:47'),(2660,892,'action created','2023-09-13 07:47:42','2023-09-13 07:47:42'),(2661,892,'action started via WP Cron','2023-09-13 07:48:12','2023-09-13 07:48:12'),(2662,892,'action complete via WP Cron','2023-09-13 07:48:12','2023-09-13 07:48:12'),(2663,893,'action created','2023-09-13 07:49:29','2023-09-13 07:49:29'),(2664,893,'action started via WP Cron','2023-09-13 07:49:55','2023-09-13 07:49:55'),(2665,893,'action complete via WP Cron','2023-09-13 07:49:55','2023-09-13 07:49:55'),(2666,894,'action created','2023-09-13 08:12:33','2023-09-13 08:12:33'),(2667,894,'action started via WP Cron','2023-09-13 08:13:00','2023-09-13 08:13:00'),(2668,894,'action complete via WP Cron','2023-09-13 08:13:00','2023-09-13 08:13:00'),(2669,895,'action created','2023-09-13 08:57:22','2023-09-13 08:57:22'),(2670,895,'action started via Async Request','2023-09-13 08:58:06','2023-09-13 08:58:06'),(2671,895,'action complete via Async Request','2023-09-13 08:58:06','2023-09-13 08:58:06'),(2672,896,'action created','2023-09-13 08:58:16','2023-09-13 08:58:16'),(2673,896,'action started via WP Cron','2023-09-13 09:00:04','2023-09-13 09:00:04'),(2674,896,'action complete via WP Cron','2023-09-13 09:00:04','2023-09-13 09:00:04'),(2675,897,'action created','2023-09-13 09:13:48','2023-09-13 09:13:48'),(2676,897,'action started via WP Cron','2023-09-13 09:14:24','2023-09-13 09:14:24'),(2677,897,'action complete via WP Cron','2023-09-13 09:14:24','2023-09-13 09:14:24'),(2678,898,'action created','2023-09-13 09:36:43','2023-09-13 09:36:43'),(2679,898,'action started via WP Cron','2023-09-13 09:37:18','2023-09-13 09:37:18'),(2680,898,'action complete via WP Cron','2023-09-13 09:37:18','2023-09-13 09:37:18'),(2681,899,'action created','2023-09-13 09:40:39','2023-09-13 09:40:39'),(2682,899,'action started via WP Cron','2023-09-13 09:41:16','2023-09-13 09:41:16'),(2683,899,'action complete via WP Cron','2023-09-13 09:41:16','2023-09-13 09:41:16'),(2684,900,'action created','2023-09-13 10:34:24','2023-09-13 10:34:24'),(2685,900,'action started via Async Request','2023-09-13 10:34:30','2023-09-13 10:34:30'),(2686,900,'action complete via Async Request','2023-09-13 10:34:30','2023-09-13 10:34:30'),(2687,901,'action created','2023-09-13 10:38:02','2023-09-13 10:38:02'),(2688,901,'action started via Async Request','2023-09-13 10:38:36','2023-09-13 10:38:36'),(2689,901,'action complete via Async Request','2023-09-13 10:38:36','2023-09-13 10:38:36'),(2690,902,'action created','2023-09-13 10:40:18','2023-09-13 10:40:18'),(2691,902,'action started via Async Request','2023-09-13 10:40:47','2023-09-13 10:40:47'),(2692,902,'action complete via Async Request','2023-09-13 10:40:47','2023-09-13 10:40:47'),(2693,903,'action created','2023-09-13 10:44:10','2023-09-13 10:44:10'),(2694,903,'action started via Async Request','2023-09-13 10:44:39','2023-09-13 10:44:39'),(2695,903,'action complete via Async Request','2023-09-13 10:44:39','2023-09-13 10:44:39'),(2696,904,'action created','2023-09-13 10:45:52','2023-09-13 10:45:52'),(2697,904,'action started via WP Cron','2023-09-13 10:46:17','2023-09-13 10:46:17'),(2698,904,'action complete via WP Cron','2023-09-13 10:46:17','2023-09-13 10:46:17'),(2699,905,'action created','2023-09-13 10:47:28','2023-09-13 10:47:28'),(2700,905,'action started via WP Cron','2023-09-13 10:48:10','2023-09-13 10:48:10'),(2701,905,'action complete via WP Cron','2023-09-13 10:48:10','2023-09-13 10:48:10'),(2702,906,'action created','2023-09-13 11:22:23','2023-09-13 11:22:23'),(2703,906,'action started via Async Request','2023-09-13 11:22:55','2023-09-13 11:22:55'),(2704,906,'action complete via Async Request','2023-09-13 11:22:55','2023-09-13 11:22:55'),(2705,907,'action created','2023-09-13 11:25:15','2023-09-13 11:25:15'),(2706,907,'action started via WP Cron','2023-09-13 11:25:16','2023-09-13 11:25:16'),(2707,907,'action complete via WP Cron','2023-09-13 11:25:17','2023-09-13 11:25:17'),(2708,908,'action created','2023-09-13 13:33:06','2023-09-13 13:33:06'),(2709,908,'action started via Async Request','2023-09-13 13:33:33','2023-09-13 13:33:33'),(2710,908,'action complete via Async Request','2023-09-13 13:33:33','2023-09-13 13:33:33'),(2711,909,'action created','2023-09-13 13:46:17','2023-09-13 13:46:17'),(2712,909,'action started via Async Request','2023-09-13 13:46:52','2023-09-13 13:46:52'),(2713,909,'action complete via Async Request','2023-09-13 13:46:52','2023-09-13 13:46:52'),(2714,910,'action created','2023-09-13 13:51:03','2023-09-13 13:51:03'),(2715,910,'action started via WP Cron','2023-09-13 13:52:45','2023-09-13 13:52:45'),(2716,910,'action complete via WP Cron','2023-09-13 13:52:45','2023-09-13 13:52:45'),(2717,911,'action created','2023-09-13 14:00:14','2023-09-13 14:00:14'),(2718,911,'action started via Async Request','2023-09-13 14:00:26','2023-09-13 14:00:26'),(2719,911,'action complete via Async Request','2023-09-13 14:00:26','2023-09-13 14:00:26'),(2720,912,'action created','2023-09-13 15:36:38','2023-09-13 15:36:38'),(2721,912,'action started via WP Cron','2023-09-13 15:37:07','2023-09-13 15:37:07'),(2722,912,'action complete via WP Cron','2023-09-13 15:37:07','2023-09-13 15:37:07'),(2723,913,'action created','2023-09-13 15:40:29','2023-09-13 15:40:29'),(2724,913,'action started via WP Cron','2023-09-13 15:40:30','2023-09-13 15:40:30'),(2725,913,'action complete via WP Cron','2023-09-13 15:40:30','2023-09-13 15:40:30'),(2726,914,'action created','2023-09-13 15:42:08','2023-09-13 15:42:08'),(2727,914,'action started via Async Request','2023-09-13 15:42:38','2023-09-13 15:42:38'),(2728,914,'action complete via Async Request','2023-09-13 15:42:38','2023-09-13 15:42:38'),(2729,915,'action created','2023-09-13 15:44:31','2023-09-13 15:44:31'),(2730,915,'action started via WP Cron','2023-09-13 15:45:02','2023-09-13 15:45:02'),(2731,915,'action complete via WP Cron','2023-09-13 15:45:02','2023-09-13 15:45:02'),(2732,916,'action created','2023-09-13 15:47:44','2023-09-13 15:47:44'),(2733,916,'action started via WP Cron','2023-09-13 15:48:12','2023-09-13 15:48:12'),(2734,916,'action complete via WP Cron','2023-09-13 15:48:12','2023-09-13 15:48:12'),(2735,917,'action created','2023-09-13 15:52:14','2023-09-13 15:52:14'),(2736,917,'action started via WP Cron','2023-09-13 15:52:15','2023-09-13 15:52:15'),(2737,917,'action complete via WP Cron','2023-09-13 15:52:15','2023-09-13 15:52:15'),(2738,918,'action created','2023-09-13 15:53:14','2023-09-13 15:53:14'),(2739,918,'action started via WP Cron','2023-09-13 15:53:15','2023-09-13 15:53:15'),(2740,918,'action complete via WP Cron','2023-09-13 15:53:15','2023-09-13 15:53:15'),(2741,919,'action created','2023-09-13 16:17:57','2023-09-13 16:17:57'),(2742,919,'action started via WP Cron','2023-09-13 16:17:59','2023-09-13 16:17:59'),(2743,919,'action complete via WP Cron','2023-09-13 16:17:59','2023-09-13 16:17:59'),(2744,920,'action created','2023-09-13 18:47:27','2023-09-13 18:47:27'),(2745,920,'action started via WP Cron','2023-09-13 18:48:35','2023-09-13 18:48:35'),(2746,920,'action complete via WP Cron','2023-09-13 18:48:36','2023-09-13 18:48:36'),(2747,921,'action created','2023-09-13 18:51:01','2023-09-13 18:51:01'),(2748,921,'action started via Async Request','2023-09-13 18:51:45','2023-09-13 18:51:45'),(2749,921,'action complete via Async Request','2023-09-13 18:51:45','2023-09-13 18:51:45'),(2750,922,'action created','2023-09-13 18:52:00','2023-09-13 18:52:00'),(2751,922,'action started via WP Cron','2023-09-13 18:52:01','2023-09-13 18:52:01'),(2752,922,'action complete via WP Cron','2023-09-13 18:52:01','2023-09-13 18:52:01'),(2753,923,'action created','2023-09-13 19:02:37','2023-09-13 19:02:37'),(2754,923,'action started via WP Cron','2023-09-13 19:03:05','2023-09-13 19:03:05'),(2755,923,'action complete via WP Cron','2023-09-13 19:03:05','2023-09-13 19:03:05'),(2756,852,'action started via WP Cron','2023-09-14 03:08:08','2023-09-14 03:08:08'),(2757,852,'action complete via WP Cron','2023-09-14 03:08:08','2023-09-14 03:08:08'),(2758,924,'action created','2023-09-14 03:08:08','2023-09-14 03:08:08'),(2762,926,'action created','2023-09-14 03:59:51','2023-09-14 03:59:51'),(2763,926,'action started via WP Cron','2023-09-14 04:00:19','2023-09-14 04:00:19'),(2764,926,'action complete via WP Cron','2023-09-14 04:00:19','2023-09-14 04:00:19'),(2765,927,'action created','2023-09-14 04:04:02','2023-09-14 04:04:02'),(2766,927,'action started via WP Cron','2023-09-14 04:05:13','2023-09-14 04:05:13'),(2767,927,'action complete via WP Cron','2023-09-14 04:05:13','2023-09-14 04:05:13'),(2768,928,'action created','2023-09-14 04:06:49','2023-09-14 04:06:49'),(2769,928,'action started via WP Cron','2023-09-14 04:07:21','2023-09-14 04:07:21'),(2770,928,'action complete via WP Cron','2023-09-14 04:07:21','2023-09-14 04:07:21'),(2771,929,'action created','2023-09-14 04:08:03','2023-09-14 04:08:03'),(2772,929,'action started via Async Request','2023-09-14 04:08:34','2023-09-14 04:08:34'),(2773,929,'action complete via Async Request','2023-09-14 04:08:34','2023-09-14 04:08:34'),(2774,930,'action created','2023-09-14 04:14:21','2023-09-14 04:14:21'),(2775,930,'action started via Async Request','2023-09-14 04:14:51','2023-09-14 04:14:51'),(2776,930,'action complete via Async Request','2023-09-14 04:14:51','2023-09-14 04:14:51'),(2777,931,'action created','2023-09-14 04:58:20','2023-09-14 04:58:20'),(2778,931,'action started via WP Cron','2023-09-14 05:00:13','2023-09-14 05:00:13'),(2779,931,'action complete via WP Cron','2023-09-14 05:00:13','2023-09-14 05:00:13'),(2780,932,'action created','2023-09-14 05:55:06','2023-09-14 05:55:06'),(2781,932,'action started via WP Cron','2023-09-14 05:55:07','2023-09-14 05:55:07'),(2782,932,'action complete via WP Cron','2023-09-14 05:55:07','2023-09-14 05:55:07'),(2783,933,'action created','2023-09-14 05:55:50','2023-09-14 05:55:50'),(2784,933,'action started via WP Cron','2023-09-14 05:56:13','2023-09-14 05:56:13'),(2785,933,'action complete via WP Cron','2023-09-14 05:56:13','2023-09-14 05:56:13'),(2786,934,'action created','2023-09-14 05:58:06','2023-09-14 05:58:06'),(2787,934,'action started via WP Cron','2023-09-14 05:59:19','2023-09-14 05:59:19'),(2788,934,'action complete via WP Cron','2023-09-14 05:59:19','2023-09-14 05:59:19'),(2789,935,'action created','2023-09-14 05:59:53','2023-09-14 05:59:53'),(2790,935,'action started via WP Cron','2023-09-14 05:59:56','2023-09-14 05:59:56'),(2791,935,'action complete via WP Cron','2023-09-14 05:59:56','2023-09-14 05:59:56'),(2792,936,'action created','2023-09-14 06:01:32','2023-09-14 06:01:32'),(2793,936,'action started via Async Request','2023-09-14 06:01:57','2023-09-14 06:01:57'),(2794,936,'action complete via Async Request','2023-09-14 06:01:57','2023-09-14 06:01:57'),(2795,937,'action created','2023-09-14 06:03:08','2023-09-14 06:03:08'),(2796,937,'action started via WP Cron','2023-09-14 06:05:10','2023-09-14 06:05:10'),(2797,937,'action complete via WP Cron','2023-09-14 06:05:10','2023-09-14 06:05:10'),(2798,938,'action created','2023-09-14 06:08:15','2023-09-14 06:08:15'),(2799,938,'action started via WP Cron','2023-09-14 06:08:18','2023-09-14 06:08:18'),(2800,938,'action complete via WP Cron','2023-09-14 06:08:18','2023-09-14 06:08:18'),(2801,939,'action created','2023-09-14 06:10:27','2023-09-14 06:10:27'),(2802,939,'action started via Async Request','2023-09-14 06:10:30','2023-09-14 06:10:30'),(2803,939,'action complete via Async Request','2023-09-14 06:10:30','2023-09-14 06:10:30'),(2804,940,'action created','2023-09-14 06:14:11','2023-09-14 06:14:11'),(2805,940,'action started via WP Cron','2023-09-14 06:15:22','2023-09-14 06:15:22'),(2806,940,'action complete via WP Cron','2023-09-14 06:15:22','2023-09-14 06:15:22'),(2807,941,'action created','2023-09-14 06:17:43','2023-09-14 06:17:43'),(2808,941,'action started via Async Request','2023-09-14 06:18:36','2023-09-14 06:18:36'),(2809,941,'action complete via Async Request','2023-09-14 06:18:36','2023-09-14 06:18:36'),(2810,942,'action created','2023-09-14 06:20:35','2023-09-14 06:20:35'),(2811,942,'action started via WP Cron','2023-09-14 06:21:00','2023-09-14 06:21:00'),(2812,942,'action complete via WP Cron','2023-09-14 06:21:00','2023-09-14 06:21:00'),(2813,943,'action created','2023-09-14 06:25:00','2023-09-14 06:25:00'),(2814,943,'action started via WP Cron','2023-09-14 06:25:02','2023-09-14 06:25:02'),(2815,943,'action complete via WP Cron','2023-09-14 06:25:02','2023-09-14 06:25:02'),(2816,944,'action created','2023-09-14 06:26:41','2023-09-14 06:26:41'),(2817,945,'action created','2023-09-14 06:27:11','2023-09-14 06:27:11'),(2818,944,'action started via WP Cron','2023-09-14 06:27:11','2023-09-14 06:27:11'),(2819,944,'action complete via WP Cron','2023-09-14 06:27:11','2023-09-14 06:27:11'),(2820,945,'action started via WP Cron','2023-09-14 06:28:27','2023-09-14 06:28:27'),(2821,945,'action complete via WP Cron','2023-09-14 06:28:27','2023-09-14 06:28:27'),(2822,946,'action created','2023-09-14 06:31:20','2023-09-14 06:31:20'),(2823,947,'action created','2023-09-14 06:31:53','2023-09-14 06:31:53'),(2824,946,'action started via Async Request','2023-09-14 06:32:00','2023-09-14 06:32:00'),(2825,946,'action complete via Async Request','2023-09-14 06:32:00','2023-09-14 06:32:00'),(2826,947,'action started via Async Request','2023-09-14 06:32:00','2023-09-14 06:32:00'),(2827,947,'action complete via Async Request','2023-09-14 06:32:00','2023-09-14 06:32:00'),(2828,948,'action created','2023-09-14 06:33:33','2023-09-14 06:33:33'),(2829,948,'action started via WP Cron','2023-09-14 06:34:10','2023-09-14 06:34:10'),(2830,948,'action complete via WP Cron','2023-09-14 06:34:11','2023-09-14 06:34:11'),(2831,949,'action created','2023-09-14 06:59:42','2023-09-14 06:59:42'),(2832,949,'action started via WP Cron','2023-09-14 07:00:12','2023-09-14 07:00:12'),(2833,949,'action complete via WP Cron','2023-09-14 07:00:12','2023-09-14 07:00:12'),(2834,950,'action created','2023-09-14 07:02:02','2023-09-14 07:02:02'),(2835,951,'action created','2023-09-14 07:02:59','2023-09-14 07:02:59'),(2836,950,'action started via WP Cron','2023-09-14 07:03:00','2023-09-14 07:03:00'),(2837,950,'action complete via WP Cron','2023-09-14 07:03:00','2023-09-14 07:03:00'),(2838,951,'action started via WP Cron','2023-09-14 07:03:00','2023-09-14 07:03:00'),(2839,951,'action complete via WP Cron','2023-09-14 07:03:00','2023-09-14 07:03:00'),(2843,953,'action created','2023-09-14 07:10:26','2023-09-14 07:10:26'),(2844,953,'action started via WP Cron','2023-09-14 07:11:00','2023-09-14 07:11:00'),(2845,953,'action complete via WP Cron','2023-09-14 07:11:00','2023-09-14 07:11:00'),(2846,954,'action created','2023-09-14 07:11:28','2023-09-14 07:11:28'),(2847,954,'action started via WP Cron','2023-09-14 07:12:38','2023-09-14 07:12:38'),(2848,954,'action complete via WP Cron','2023-09-14 07:12:38','2023-09-14 07:12:38'),(2849,955,'action created','2023-09-14 07:17:29','2023-09-14 07:17:29'),(2850,955,'action started via WP Cron','2023-09-14 07:17:30','2023-09-14 07:17:30'),(2851,955,'action complete via WP Cron','2023-09-14 07:17:30','2023-09-14 07:17:30'),(2852,956,'action created','2023-09-14 07:19:39','2023-09-14 07:19:39'),(2853,956,'action started via WP Cron','2023-09-14 07:20:04','2023-09-14 07:20:04'),(2854,956,'action complete via WP Cron','2023-09-14 07:20:04','2023-09-14 07:20:04'),(2858,957,'action complete via Async Request','2023-09-14 07:23:51','2023-09-14 07:23:51'),(2859,958,'action started via Async Request','2023-09-14 07:23:53','2023-09-14 07:23:53'),(2860,958,'action complete via Async Request','2023-09-14 07:23:53','2023-09-14 07:23:53'),(2866,960,'action complete via WP Cron','2023-09-14 07:38:15','2023-09-14 07:38:15'),(2867,961,'action created','2023-09-14 07:40:51','2023-09-14 07:40:51'),(2868,961,'action started via WP Cron','2023-09-14 07:41:00','2023-09-14 07:41:00'),(2869,961,'action complete via WP Cron','2023-09-14 07:41:00','2023-09-14 07:41:00'),(2879,964,'action complete via Async Request','2023-09-14 07:49:36','2023-09-14 07:49:36'),(2880,965,'action started via WP Cron','2023-09-14 07:49:51','2023-09-14 07:49:51'),(2881,965,'action complete via WP Cron','2023-09-14 07:49:52','2023-09-14 07:49:52'),(2889,968,'action started via WP Cron','2023-09-14 08:02:00','2023-09-14 08:02:00'),(2890,968,'action complete via WP Cron','2023-09-14 08:02:00','2023-09-14 08:02:00'),(2891,969,'action created','2023-09-14 08:42:11','2023-09-14 08:42:11'),(2892,969,'action started via Async Request','2023-09-14 08:42:15','2023-09-14 08:42:15'),(2893,969,'action complete via Async Request','2023-09-14 08:42:15','2023-09-14 08:42:15'),(2894,970,'action created','2023-09-14 08:51:11','2023-09-14 08:51:11'),(2895,970,'action started via WP Cron','2023-09-14 08:52:55','2023-09-14 08:52:55'),(2896,970,'action complete via WP Cron','2023-09-14 08:52:55','2023-09-14 08:52:55'),(2900,972,'action created','2023-09-14 09:16:09','2023-09-14 09:16:09'),(2901,972,'action started via Async Request','2023-09-14 09:16:13','2023-09-14 09:16:13'),(2902,972,'action complete via Async Request','2023-09-14 09:16:13','2023-09-14 09:16:13'),(2903,973,'action created','2023-09-14 09:36:16','2023-09-14 09:36:16'),(2904,973,'action started via WP Cron','2023-09-14 09:36:19','2023-09-14 09:36:19'),(2905,973,'action complete via WP Cron','2023-09-14 09:36:19','2023-09-14 09:36:19'),(2906,974,'action created','2023-09-14 09:53:08','2023-09-14 09:53:08'),(2907,974,'action started via WP Cron','2023-09-14 09:54:21','2023-09-14 09:54:21'),(2908,974,'action complete via WP Cron','2023-09-14 09:54:21','2023-09-14 09:54:21'),(2909,975,'action created','2023-09-14 09:57:34','2023-09-14 09:57:34'),(2910,976,'action created','2023-09-14 09:58:17','2023-09-14 09:58:17'),(2911,975,'action started via WP Cron','2023-09-14 09:58:22','2023-09-14 09:58:22'),(2912,975,'action complete via WP Cron','2023-09-14 09:58:22','2023-09-14 09:58:22'),(2913,976,'action started via WP Cron','2023-09-14 09:58:22','2023-09-14 09:58:22'),(2914,976,'action complete via WP Cron','2023-09-14 09:58:22','2023-09-14 09:58:22'),(2915,977,'action created','2023-09-14 10:01:37','2023-09-14 10:01:37'),(2916,977,'action started via Async Request','2023-09-14 10:01:44','2023-09-14 10:01:44'),(2917,977,'action complete via Async Request','2023-09-14 10:01:44','2023-09-14 10:01:44'),(2918,978,'action created','2023-09-14 10:02:17','2023-09-14 10:02:17'),(2919,978,'action started via WP Cron','2023-09-14 10:02:18','2023-09-14 10:02:18'),(2920,978,'action complete via WP Cron','2023-09-14 10:02:18','2023-09-14 10:02:18'),(2921,979,'action created','2023-09-14 10:03:41','2023-09-14 10:03:41'),(2922,979,'action started via WP Cron','2023-09-14 10:04:12','2023-09-14 10:04:12'),(2923,979,'action complete via WP Cron','2023-09-14 10:04:12','2023-09-14 10:04:12'),(2924,980,'action created','2023-09-14 10:04:43','2023-09-14 10:04:43'),(2925,980,'action started via WP Cron','2023-09-14 10:05:11','2023-09-14 10:05:11'),(2926,980,'action complete via WP Cron','2023-09-14 10:05:11','2023-09-14 10:05:11'),(2927,981,'action created','2023-09-14 10:08:18','2023-09-14 10:08:18'),(2928,981,'action started via WP Cron','2023-09-14 10:09:02','2023-09-14 10:09:02'),(2929,981,'action complete via WP Cron','2023-09-14 10:09:02','2023-09-14 10:09:02'),(2930,982,'action created','2023-09-14 10:20:44','2023-09-14 10:20:44'),(2931,982,'action started via WP Cron','2023-09-14 10:21:30','2023-09-14 10:21:30'),(2932,982,'action complete via WP Cron','2023-09-14 10:21:30','2023-09-14 10:21:30'),(2933,983,'action created','2023-09-14 10:23:00','2023-09-14 10:23:00'),(2934,983,'action started via Async Request','2023-09-14 10:23:47','2023-09-14 10:23:47'),(2935,983,'action complete via Async Request','2023-09-14 10:23:47','2023-09-14 10:23:47'),(2936,984,'action created','2023-09-14 10:25:03','2023-09-14 10:25:03'),(2937,984,'action started via WP Cron','2023-09-14 10:26:20','2023-09-14 10:26:20'),(2938,984,'action complete via WP Cron','2023-09-14 10:26:20','2023-09-14 10:26:20'),(2939,985,'action created','2023-09-14 10:28:04','2023-09-14 10:28:04'),(2940,985,'action started via WP Cron','2023-09-14 10:28:07','2023-09-14 10:28:07'),(2941,985,'action complete via WP Cron','2023-09-14 10:28:07','2023-09-14 10:28:07'),(2942,986,'action created','2023-09-14 10:29:47','2023-09-14 10:29:47'),(2943,986,'action started via WP Cron','2023-09-14 10:30:31','2023-09-14 10:30:31'),(2944,986,'action complete via WP Cron','2023-09-14 10:30:31','2023-09-14 10:30:31'),(2945,987,'action created','2023-09-14 10:33:32','2023-09-14 10:33:32'),(2946,987,'action started via WP Cron','2023-09-14 10:34:21','2023-09-14 10:34:21'),(2947,987,'action complete via WP Cron','2023-09-14 10:34:21','2023-09-14 10:34:21'),(2948,988,'action created','2023-09-14 10:34:46','2023-09-14 10:34:46'),(2949,988,'action started via WP Cron','2023-09-14 10:35:13','2023-09-14 10:35:13'),(2950,988,'action complete via WP Cron','2023-09-14 10:35:13','2023-09-14 10:35:13'),(2951,989,'action created','2023-09-14 10:39:51','2023-09-14 10:39:51'),(2952,989,'action started via WP Cron','2023-09-14 10:40:33','2023-09-14 10:40:33'),(2953,989,'action complete via WP Cron','2023-09-14 10:40:33','2023-09-14 10:40:33'),(2954,990,'action created','2023-09-14 10:42:04','2023-09-14 10:42:04'),(2955,990,'action started via WP Cron','2023-09-14 10:43:07','2023-09-14 10:43:07'),(2956,990,'action complete via WP Cron','2023-09-14 10:43:07','2023-09-14 10:43:07'),(2957,991,'action created','2023-09-14 10:43:23','2023-09-14 10:43:23'),(2958,992,'action created','2023-09-14 10:44:09','2023-09-14 10:44:09'),(2959,991,'action started via WP Cron','2023-09-14 10:44:21','2023-09-14 10:44:21'),(2960,991,'action complete via WP Cron','2023-09-14 10:44:21','2023-09-14 10:44:21'),(2961,992,'action started via Async Request','2023-09-14 10:44:27','2023-09-14 10:44:27'),(2962,992,'action complete via Async Request','2023-09-14 10:44:27','2023-09-14 10:44:27'),(2963,993,'action created','2023-09-14 10:49:20','2023-09-14 10:49:20'),(2964,993,'action started via WP Cron','2023-09-14 10:49:24','2023-09-14 10:49:24'),(2965,993,'action complete via WP Cron','2023-09-14 10:49:24','2023-09-14 10:49:24'),(2966,994,'action created','2023-09-14 10:49:53','2023-09-14 10:49:53'),(2967,994,'action started via WP Cron','2023-09-14 10:50:08','2023-09-14 10:50:08'),(2968,994,'action complete via WP Cron','2023-09-14 10:50:08','2023-09-14 10:50:08'),(2969,995,'action created','2023-09-14 10:51:21','2023-09-14 10:51:21'),(2970,995,'action started via Async Request','2023-09-14 10:51:54','2023-09-14 10:51:54'),(2971,995,'action complete via Async Request','2023-09-14 10:51:54','2023-09-14 10:51:54'),(2972,996,'action created','2023-09-14 10:53:53','2023-09-14 10:53:53'),(2973,996,'action started via WP Cron','2023-09-14 10:53:56','2023-09-14 10:53:56'),(2974,996,'action complete via WP Cron','2023-09-14 10:53:56','2023-09-14 10:53:56'),(2975,997,'action created','2023-09-14 10:58:46','2023-09-14 10:58:46'),(2976,997,'action started via Async Request','2023-09-14 10:58:53','2023-09-14 10:58:53'),(2977,997,'action complete via Async Request','2023-09-14 10:58:53','2023-09-14 10:58:53'),(2978,998,'action created','2023-09-14 10:59:33','2023-09-14 10:59:33'),(2979,998,'action started via Async Request','2023-09-14 11:00:02','2023-09-14 11:00:02'),(2980,998,'action complete via Async Request','2023-09-14 11:00:02','2023-09-14 11:00:02'),(2981,999,'action created','2023-09-14 11:06:16','2023-09-14 11:06:16'),(2982,1000,'action created','2023-09-14 11:06:54','2023-09-14 11:06:54'),(2983,999,'action started via WP Cron','2023-09-14 11:06:57','2023-09-14 11:06:57'),(2984,999,'action complete via WP Cron','2023-09-14 11:06:57','2023-09-14 11:06:57'),(2985,1000,'action started via WP Cron','2023-09-14 11:06:57','2023-09-14 11:06:57'),(2986,1000,'action complete via WP Cron','2023-09-14 11:06:57','2023-09-14 11:06:57'),(2987,1001,'action created','2023-09-14 11:41:21','2023-09-14 11:41:21'),(2988,1001,'action started via WP Cron','2023-09-14 11:42:07','2023-09-14 11:42:07'),(2989,1001,'action complete via WP Cron','2023-09-14 11:42:07','2023-09-14 11:42:07'),(2990,1002,'action created','2023-09-14 11:43:45','2023-09-14 11:43:45'),(2991,1002,'action started via WP Cron','2023-09-14 11:44:17','2023-09-14 11:44:17'),(2992,1002,'action complete via WP Cron','2023-09-14 11:44:17','2023-09-14 11:44:17'),(2993,1003,'action created','2023-09-14 12:32:09','2023-09-14 12:32:09'),(2994,1003,'action started via WP Cron','2023-09-14 12:33:02','2023-09-14 12:33:02'),(2995,1003,'action complete via WP Cron','2023-09-14 12:33:02','2023-09-14 12:33:02'),(2996,1004,'action created','2023-09-14 12:41:30','2023-09-14 12:41:30'),(2997,1004,'action started via WP Cron','2023-09-14 12:41:59','2023-09-14 12:41:59'),(2998,1004,'action complete via WP Cron','2023-09-14 12:41:59','2023-09-14 12:41:59'),(2999,1005,'action created','2023-09-14 12:44:52','2023-09-14 12:44:52'),(3000,1005,'action started via WP Cron','2023-09-14 12:44:56','2023-09-14 12:44:56'),(3001,1005,'action complete via WP Cron','2023-09-14 12:44:56','2023-09-14 12:44:56'),(3002,1006,'action created','2023-09-14 12:45:44','2023-09-14 12:45:44'),(3003,1006,'action started via WP Cron','2023-09-14 12:46:29','2023-09-14 12:46:29'),(3004,1006,'action complete via WP Cron','2023-09-14 12:46:29','2023-09-14 12:46:29'),(3005,1007,'action created','2023-09-14 12:47:33','2023-09-14 12:47:33'),(3006,1007,'action started via WP Cron','2023-09-14 12:48:01','2023-09-14 12:48:01'),(3007,1007,'action complete via WP Cron','2023-09-14 12:48:01','2023-09-14 12:48:01'),(3008,1008,'action created','2023-09-14 12:49:37','2023-09-14 12:49:37'),(3009,1008,'action started via Async Request','2023-09-14 12:50:14','2023-09-14 12:50:14'),(3010,1008,'action complete via Async Request','2023-09-14 12:50:14','2023-09-14 12:50:14'),(3011,1009,'action created','2023-09-14 12:53:47','2023-09-14 12:53:47'),(3012,1009,'action started via WP Cron','2023-09-14 12:54:17','2023-09-14 12:54:17'),(3013,1009,'action complete via WP Cron','2023-09-14 12:54:17','2023-09-14 12:54:17'),(3014,1010,'action created','2023-09-14 12:56:34','2023-09-14 12:56:34'),(3015,1010,'action started via WP Cron','2023-09-14 12:57:14','2023-09-14 12:57:14'),(3016,1010,'action complete via WP Cron','2023-09-14 12:57:14','2023-09-14 12:57:14'),(3017,1011,'action created','2023-09-14 12:57:42','2023-09-14 12:57:42'),(3018,1011,'action started via WP Cron','2023-09-14 12:58:08','2023-09-14 12:58:08'),(3019,1011,'action complete via WP Cron','2023-09-14 12:58:08','2023-09-14 12:58:08'),(3020,1012,'action created','2023-09-14 13:01:42','2023-09-14 13:01:42'),(3021,1012,'action started via Async Request','2023-09-14 13:02:36','2023-09-14 13:02:36'),(3022,1012,'action complete via Async Request','2023-09-14 13:02:36','2023-09-14 13:02:36'),(3023,1013,'action created','2023-09-14 13:02:37','2023-09-14 13:02:37'),(3024,1013,'action started via Async Request','2023-09-14 13:02:58','2023-09-14 13:02:58'),(3025,1013,'action complete via Async Request','2023-09-14 13:02:58','2023-09-14 13:02:58'),(3026,1014,'action created','2023-09-14 13:04:17','2023-09-14 13:04:17'),(3027,1015,'action created','2023-09-14 13:05:03','2023-09-14 13:05:03'),(3028,1014,'action started via WP Cron','2023-09-14 13:05:04','2023-09-14 13:05:04'),(3029,1014,'action complete via WP Cron','2023-09-14 13:05:04','2023-09-14 13:05:04'),(3030,1015,'action started via WP Cron','2023-09-14 13:05:04','2023-09-14 13:05:04'),(3031,1015,'action complete via WP Cron','2023-09-14 13:05:04','2023-09-14 13:05:04'),(3032,1016,'action created','2023-09-14 13:06:37','2023-09-14 13:06:37'),(3033,1016,'action started via WP Cron','2023-09-14 13:07:09','2023-09-14 13:07:09'),(3034,1016,'action complete via WP Cron','2023-09-14 13:07:09','2023-09-14 13:07:09'),(3037,1017,'action created','2023-09-15 03:10:08','2023-09-15 03:10:08'),(3038,1018,'action created','2023-09-15 05:58:28','2023-09-15 05:58:28'),(3039,1018,'action started via Async Request','2023-09-15 05:58:38','2023-09-15 05:58:38'),(3040,1018,'action complete via Async Request','2023-09-15 05:58:38','2023-09-15 05:58:38'),(3041,1019,'action created','2023-09-15 06:00:56','2023-09-15 06:00:56'),(3042,1019,'action started via WP Cron','2023-09-15 06:03:07','2023-09-15 06:03:07'),(3043,1019,'action complete via WP Cron','2023-09-15 06:03:07','2023-09-15 06:03:07'),(3044,1020,'action created','2023-09-15 06:08:26','2023-09-15 06:08:26'),(3045,1020,'action started via WP Cron','2023-09-15 06:08:59','2023-09-15 06:08:59'),(3046,1020,'action complete via WP Cron','2023-09-15 06:08:59','2023-09-15 06:08:59'),(3047,1021,'action created','2023-09-15 06:14:26','2023-09-15 06:14:26'),(3048,1021,'action started via WP Cron','2023-09-15 06:15:09','2023-09-15 06:15:09'),(3049,1021,'action complete via WP Cron','2023-09-15 06:15:09','2023-09-15 06:15:09'),(3050,1022,'action created','2023-09-15 06:29:21','2023-09-15 06:29:21'),(3051,1022,'action started via WP Cron','2023-09-15 06:30:35','2023-09-15 06:30:35'),(3052,1022,'action complete via WP Cron','2023-09-15 06:30:35','2023-09-15 06:30:35'),(3122,1046,'action created','2023-09-16 08:37:09','2023-09-16 08:37:09'),(3123,1046,'action started via WP Cron','2023-09-16 08:37:11','2023-09-16 08:37:11'),(3124,1046,'action complete via WP Cron','2023-09-16 08:37:11','2023-09-16 08:37:11'),(3125,1047,'action created','2023-09-16 08:45:02','2023-09-16 08:45:02'),(3126,1047,'action started via WP Cron','2023-09-16 08:45:57','2023-09-16 08:45:57'),(3127,1047,'action complete via WP Cron','2023-09-16 08:45:57','2023-09-16 08:45:57'),(3128,1048,'action created','2023-09-16 08:50:59','2023-09-16 08:50:59'),(3129,1048,'action started via WP Cron','2023-09-16 08:51:02','2023-09-16 08:51:02'),(3130,1048,'action complete via WP Cron','2023-09-16 08:51:02','2023-09-16 08:51:02'),(3131,1049,'action created','2023-09-16 08:52:12','2023-09-16 08:52:12'),(3132,1049,'action started via WP Cron','2023-09-16 08:52:54','2023-09-16 08:52:54'),(3133,1049,'action complete via WP Cron','2023-09-16 08:52:54','2023-09-16 08:52:54'),(3134,1050,'action created','2023-09-16 08:55:21','2023-09-16 08:55:21'),(3135,1050,'action started via Async Request','2023-09-16 08:55:23','2023-09-16 08:55:23'),(3136,1050,'action complete via Async Request','2023-09-16 08:55:23','2023-09-16 08:55:23'),(3137,1051,'action created','2023-09-16 09:10:19','2023-09-16 09:10:19'),(3138,1051,'action started via Async Request','2023-09-16 09:10:24','2023-09-16 09:10:24'),(3139,1051,'action complete via Async Request','2023-09-16 09:10:24','2023-09-16 09:10:24'),(3140,1052,'action created','2023-09-16 10:10:06','2023-09-16 10:10:06'),(3141,1052,'action started via Async Request','2023-09-16 10:10:40','2023-09-16 10:10:40'),(3142,1052,'action complete via Async Request','2023-09-16 10:10:40','2023-09-16 10:10:40'),(3154,1056,'action complete via Async Request','2023-09-16 15:31:48','2023-09-16 15:31:48'),(3155,1057,'action created','2023-09-16 16:08:58','2023-09-16 16:08:58'),(3156,1057,'action started via Async Request','2023-09-16 16:09:27','2023-09-16 16:09:27'),(3157,1057,'action complete via Async Request','2023-09-16 16:09:27','2023-09-16 16:09:27'),(3158,1058,'action created','2023-09-16 18:02:56','2023-09-16 18:02:56'),(3159,1058,'action started via WP Cron','2023-09-16 18:02:57','2023-09-16 18:02:57'),(3160,1058,'action complete via WP Cron','2023-09-16 18:02:57','2023-09-16 18:02:57'),(3161,1059,'action created','2023-09-16 18:20:53','2023-09-16 18:20:53'),(3162,1059,'action started via WP Cron','2023-09-16 18:20:56','2023-09-16 18:20:56'),(3163,1059,'action complete via WP Cron','2023-09-16 18:20:56','2023-09-16 18:20:56'),(3164,1060,'action created','2023-09-16 18:22:05','2023-09-16 18:22:05'),(3165,1060,'action started via WP Cron','2023-09-16 18:22:06','2023-09-16 18:22:06'),(3166,1060,'action complete via WP Cron','2023-09-16 18:22:06','2023-09-16 18:22:06'),(3436,1150,'action complete via WP Cron','2023-09-24 07:18:11','2023-09-24 07:18:11'),(3437,1151,'action created','2023-09-24 07:22:51','2023-09-24 07:22:51'),(3438,1151,'action started via WP Cron','2023-09-24 07:22:56','2023-09-24 07:22:56'),(3439,1151,'action complete via WP Cron','2023-09-24 07:22:56','2023-09-24 07:22:56'),(3440,1152,'action created','2023-09-24 07:29:59','2023-09-24 07:29:59'),(3441,1152,'action started via WP Cron','2023-09-24 07:30:01','2023-09-24 07:30:01'),(3442,1152,'action complete via WP Cron','2023-09-24 07:30:01','2023-09-24 07:30:01'),(3443,1153,'action created','2023-09-24 07:30:58','2023-09-24 07:30:58'),(3444,1153,'action started via WP Cron','2023-09-24 07:31:00','2023-09-24 07:31:00'),(3445,1153,'action complete via WP Cron','2023-09-24 07:31:00','2023-09-24 07:31:00'),(3446,1154,'action created','2023-09-24 07:34:36','2023-09-24 07:34:36'),(3447,1154,'action started via WP Cron','2023-09-24 07:35:08','2023-09-24 07:35:08'),(3448,1154,'action complete via WP Cron','2023-09-24 07:35:08','2023-09-24 07:35:08'),(3449,1155,'action created','2023-09-24 07:36:50','2023-09-24 07:36:50'),(3450,1155,'action started via WP Cron','2023-09-24 07:37:10','2023-09-24 07:37:10'),(3451,1155,'action complete via WP Cron','2023-09-24 07:37:10','2023-09-24 07:37:10'),(3452,1156,'action created','2023-09-24 07:39:03','2023-09-24 07:39:03'),(3453,1156,'action started via WP Cron','2023-09-24 07:40:28','2023-09-24 07:40:28'),(3454,1156,'action complete via WP Cron','2023-09-24 07:40:28','2023-09-24 07:40:28'),(3455,1157,'action created','2023-09-24 07:41:26','2023-09-24 07:41:26'),(3456,1157,'action started via Async Request','2023-09-24 07:41:49','2023-09-24 07:41:49'),(3457,1157,'action complete via Async Request','2023-09-24 07:41:50','2023-09-24 07:41:50'),(3458,1158,'action created','2023-09-24 07:42:29','2023-09-24 07:42:29'),(3459,1158,'action started via Async Request','2023-09-24 07:43:07','2023-09-24 07:43:07'),(3460,1158,'action complete via Async Request','2023-09-24 07:43:07','2023-09-24 07:43:07'),(3461,1159,'action created','2023-09-24 07:44:27','2023-09-24 07:44:27'),(3462,1159,'action started via WP Cron','2023-09-24 07:45:00','2023-09-24 07:45:00'),(3463,1159,'action complete via WP Cron','2023-09-24 07:45:00','2023-09-24 07:45:00'),(3464,1160,'action created','2023-09-24 08:38:12','2023-09-24 08:38:12'),(3465,1160,'action started via WP Cron','2023-09-24 08:39:01','2023-09-24 08:39:01'),(3466,1160,'action complete via WP Cron','2023-09-24 08:39:01','2023-09-24 08:39:01'),(3467,1161,'action created','2023-09-24 11:17:06','2023-09-24 11:17:06'),(3468,1162,'action created','2023-09-24 11:17:48','2023-09-24 11:17:48'),(3469,1161,'action started via WP Cron','2023-09-24 11:18:32','2023-09-24 11:18:32'),(3470,1161,'action complete via WP Cron','2023-09-24 11:18:32','2023-09-24 11:18:32'),(3471,1162,'action started via Async Request','2023-09-24 11:18:35','2023-09-24 11:18:35'),(3472,1162,'action complete via Async Request','2023-09-24 11:18:36','2023-09-24 11:18:36'),(3473,1163,'action created','2023-09-24 11:19:25','2023-09-24 11:19:25'),(3474,1163,'action started via WP Cron','2023-09-24 11:19:26','2023-09-24 11:19:26'),(3475,1163,'action complete via WP Cron','2023-09-24 11:19:26','2023-09-24 11:19:26'),(3476,1164,'action created','2023-09-24 11:20:30','2023-09-24 11:20:30'),(3477,1164,'action started via WP Cron','2023-09-24 11:21:14','2023-09-24 11:21:14'),(3478,1164,'action complete via WP Cron','2023-09-24 11:21:14','2023-09-24 11:21:14'),(3479,1165,'action created','2023-09-24 11:23:42','2023-09-24 11:23:42'),(3480,1166,'action created','2023-09-24 11:23:46','2023-09-24 11:23:46'),(3481,1165,'action started via WP Cron','2023-09-24 11:24:27','2023-09-24 11:24:27'),(3482,1165,'action complete via WP Cron','2023-09-24 11:24:27','2023-09-24 11:24:27'),(3483,1166,'action started via WP Cron','2023-09-24 11:24:27','2023-09-24 11:24:27'),(3484,1166,'action complete via WP Cron','2023-09-24 11:24:27','2023-09-24 11:24:27'),(3485,1167,'action created','2023-09-24 11:25:36','2023-09-24 11:25:36'),(3486,1167,'action started via WP Cron','2023-09-24 11:26:09','2023-09-24 11:26:09'),(3487,1167,'action complete via WP Cron','2023-09-24 11:26:09','2023-09-24 11:26:09'),(3488,1168,'action created','2023-09-24 11:27:05','2023-09-24 11:27:05'),(3489,1168,'action started via Async Request','2023-09-24 11:27:48','2023-09-24 11:27:48'),(3490,1168,'action complete via Async Request','2023-09-24 11:27:48','2023-09-24 11:27:48'),(3491,1169,'action created','2023-09-24 11:27:53','2023-09-24 11:27:53'),(3492,1169,'action started via Async Request','2023-09-24 11:27:54','2023-09-24 11:27:54'),(3493,1169,'action complete via Async Request','2023-09-24 11:27:54','2023-09-24 11:27:54'),(3494,1170,'action created','2023-09-24 11:28:51','2023-09-24 11:28:51'),(3495,1170,'action started via WP Cron','2023-09-24 11:28:57','2023-09-24 11:28:57'),(3496,1170,'action complete via WP Cron','2023-09-24 11:28:57','2023-09-24 11:28:57'),(3497,1171,'action created','2023-09-24 11:31:42','2023-09-24 11:31:42'),(3498,1171,'action started via WP Cron','2023-09-24 11:32:11','2023-09-24 11:32:11'),(3499,1171,'action complete via WP Cron','2023-09-24 11:32:11','2023-09-24 11:32:11'),(3500,1172,'action created','2023-09-24 11:33:55','2023-09-24 11:33:55'),(3501,1172,'action started via WP Cron','2023-09-24 11:33:58','2023-09-24 11:33:58'),(3502,1172,'action complete via WP Cron','2023-09-24 11:33:58','2023-09-24 11:33:58'),(3503,1173,'action created','2023-09-24 11:37:14','2023-09-24 11:37:14'),(3504,1173,'action started via WP Cron','2023-09-24 11:38:03','2023-09-24 11:38:03'),(3505,1173,'action complete via WP Cron','2023-09-24 11:38:03','2023-09-24 11:38:03');
/*!40000 ALTER TABLE `wplf_actionscheduler_logs` ENABLE KEYS */;
UNLOCK TABLES;

-- Dumped table `wplf_actionscheduler_logs` with 1456 row(s)
--

--
-- Table structure for table `wplf_revslider_sliders_bkp`
--

DROP TABLE IF EXISTS `wplf_revslider_sliders_bkp`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `wplf_revslider_sliders_bkp` (
  `id` int(9) NOT NULL AUTO_INCREMENT,
  `title` tinytext NOT NULL,
  `alias` tinytext DEFAULT NULL,
  `params` longtext NOT NULL,
  `settings` text DEFAULT NULL,
  `type` varchar(191) NOT NULL DEFAULT '',
  PRIMARY KEY (`id`),
  KEY `type_index` (`type`(8))
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wplf_revslider_sliders_bkp`
--

LOCK TABLES `wplf_revslider_sliders_bkp` WRITE;
/*!40000 ALTER TABLE `wplf_revslider_sliders_bkp` DISABLE KEYS */;
/*!40000 ALTER TABLE `wplf_revslider_sliders_bkp` ENABLE KEYS */;
UNLOCK TABLES;

-- Dumped table `wplf_revslider_sliders_bkp` with 0 row(s)
--

--
-- Table structure for table `wplf_actionscheduler_groups`
--

DROP TABLE IF EXISTS `wplf_actionscheduler_groups`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `wplf_actionscheduler_groups` (
  `group_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `slug` varchar(255) NOT NULL,
  PRIMARY KEY (`group_id`),
  KEY `slug` (`slug`(191))
) ENGINE=MyISAM AUTO_INCREMENT=7 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wplf_actionscheduler_groups`
--

LOCK TABLES `wplf_actionscheduler_groups` WRITE;
/*!40000 ALTER TABLE `wplf_actionscheduler_groups` DISABLE KEYS */;
INSERT INTO `wplf_actionscheduler_groups` VALUES (1,'action-scheduler-migration'),(2,'wc-admin-data'),(3,'wc_update_product_default_cat'),(4,'woocommerce-remote-inbox-engine'),(5,'woocommerce-db-updates'),(6,'');
/*!40000 ALTER TABLE `wplf_actionscheduler_groups` ENABLE KEYS */;
UNLOCK TABLES;

-- Dumped table `wplf_actionscheduler_groups` with 6 row(s)
--

--
-- Table structure for table `wplf_wc_order_tax_lookup`
--

DROP TABLE IF EXISTS `wplf_wc_order_tax_lookup`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `wplf_wc_order_tax_lookup` (
  `order_id` bigint(20) unsigned NOT NULL,
  `tax_rate_id` bigint(20) unsigned NOT NULL,
  `date_created` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `shipping_tax` double NOT NULL DEFAULT 0,
  `order_tax` double NOT NULL DEFAULT 0,
  `total_tax` double NOT NULL DEFAULT 0,
  PRIMARY KEY (`order_id`,`tax_rate_id`),
  KEY `tax_rate_id` (`tax_rate_id`),
  KEY `date_created` (`date_created`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wplf_wc_order_tax_lookup`
--

LOCK TABLES `wplf_wc_order_tax_lookup` WRITE;
/*!40000 ALTER TABLE `wplf_wc_order_tax_lookup` DISABLE KEYS */;
/*!40000 ALTER TABLE `wplf_wc_order_tax_lookup` ENABLE KEYS */;
UNLOCK TABLES;

-- Dumped table `wplf_wc_order_tax_lookup` with 0 row(s)
--

--
-- Table structure for table `wplf_wpforms_lite`
--

DROP TABLE IF EXISTS `wplf_wpforms_lite`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `wplf_wpforms_lite` (
  `rid` int(10) NOT NULL AUTO_INCREMENT,
  `start` bigint(20) NOT NULL,
  `end` bigint(20) NOT NULL,
  `status` tinyint(2) NOT NULL DEFAULT 1,
  `date` int(10) NOT NULL,
  PRIMARY KEY (`rid`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wplf_wpforms_lite`
--

LOCK TABLES `wplf_wpforms_lite` WRITE;
/*!40000 ALTER TABLE `wplf_wpforms_lite` DISABLE KEYS */;
/*!40000 ALTER TABLE `wplf_wpforms_lite` ENABLE KEYS */;
UNLOCK TABLES;

-- Dumped table `wplf_wpforms_lite` with 0 row(s)
--

--
-- Table structure for table `wplf_postmeta`
--

DROP TABLE IF EXISTS `wplf_postmeta`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `wplf_postmeta` (
  `meta_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `post_id` bigint(20) unsigned NOT NULL DEFAULT 0,
  `meta_key` varchar(255) DEFAULT NULL,
  `meta_value` longtext DEFAULT NULL,
  PRIMARY KEY (`meta_id`),
  KEY `post_id` (`post_id`),
  KEY `meta_key` (`meta_key`(191))
) ENGINE=MyISAM AUTO_INCREMENT=28844 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wplf_postmeta`
--

LOCK TABLES `wplf_postmeta` WRITE;
/*!40000 ALTER TABLE `wplf_postmeta` DISABLE KEYS */;
INSERT INTO `wplf_postmeta` VALUES (22840,3611,'_dt_fancy_header_title_aligment','all_left'),(2,3,'_wp_page_template','default'),(3,4,'_wp_attached_file','woocommerce-placeholder.png'),(4,4,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1200;s:6:\"height\";i:1200;s:4:\"file\";s:27:\"woocommerce-placeholder.png\";s:8:\"filesize\";i:102644;s:5:\"sizes\";a:7:{s:21:\"woocommerce_thumbnail\";a:6:{s:4:\"file\";s:35:\"woocommerce-placeholder-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:10547;s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:5:{s:4:\"file\";s:35:\"woocommerce-placeholder-200x200.png\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:5612;}s:18:\"woocommerce_single\";a:5:{s:4:\"file\";s:35:\"woocommerce-placeholder-600x600.png\";s:5:\"width\";i:600;s:6:\"height\";i:600;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:31929;}s:6:\"medium\";a:5:{s:4:\"file\";s:35:\"woocommerce-placeholder-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:10547;}s:5:\"large\";a:5:{s:4:\"file\";s:37:\"woocommerce-placeholder-1024x1024.png\";s:5:\"width\";i:1024;s:6:\"height\";i:1024;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:84286;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:35:\"woocommerce-placeholder-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:3767;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:35:\"woocommerce-placeholder-768x768.png\";s:5:\"width\";i:768;s:6:\"height\";i:768;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:49609;}}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,12,'_form','<label> Your name\n    [text* your-name] </label>\n\n<label> Your email\n    [email* your-email] </label>\n\n<label> Subject\n    [text* your-subject] </label>\n\n<label> Your message (optional)\n    [textarea your-message] </label>\n\n[submit \"Submit\"]'),(8,12,'_mail','a:8:{s:7:\"subject\";s:30:\"[_site_title] \"[your-subject]\"\";s:6:\"sender\";s:50:\"[_site_title] <wordpress@farmchemie.yasithawd.com>\";s:4:\"body\";s:163:\"From: [your-name] <[your-email]>\nSubject: [your-subject]\n\nMessage Body:\n[your-message]\n\n-- \nThis e-mail was sent from a contact form on [_site_title] ([_site_url])\";s:9:\"recipient\";s:19:\"[_site_admin_email]\";s:18:\"additional_headers\";s:22:\"Reply-To: [your-email]\";s:11:\"attachments\";s:0:\"\";s:8:\"use_html\";i:0;s:13:\"exclude_blank\";i:0;}'),(9,12,'_mail_2','a:9:{s:6:\"active\";b:0;s:7:\"subject\";s:30:\"[_site_title] \"[your-subject]\"\";s:6:\"sender\";s:50:\"[_site_title] <wordpress@farmchemie.yasithawd.com>\";s:4:\"body\";s:105:\"Message Body:\n[your-message]\n\n-- \nThis e-mail was sent from a contact form on [_site_title] ([_site_url])\";s:9:\"recipient\";s:12:\"[your-email]\";s:18:\"additional_headers\";s:29:\"Reply-To: [_site_admin_email]\";s:11:\"attachments\";s:0:\"\";s:8:\"use_html\";i:0;s:13:\"exclude_blank\";i:0;}'),(10,12,'_messages','a:12:{s:12:\"mail_sent_ok\";s:45:\"Thank you for your message. It has been sent.\";s:12:\"mail_sent_ng\";s:71:\"There was an error trying to send your message. Please try again later.\";s:16:\"validation_error\";s:61:\"One or more fields have an error. Please check and try again.\";s:4:\"spam\";s:71:\"There was an error trying to send your message. Please try again later.\";s:12:\"accept_terms\";s:69:\"You must accept the terms and conditions before sending your message.\";s:16:\"invalid_required\";s:27:\"Please fill out this field.\";s:16:\"invalid_too_long\";s:32:\"This field has a too long input.\";s:17:\"invalid_too_short\";s:33:\"This field has a too short input.\";s:13:\"upload_failed\";s:46:\"There was an unknown error uploading the file.\";s:24:\"upload_file_type_invalid\";s:49:\"You are not allowed to upload files of this type.\";s:21:\"upload_file_too_large\";s:31:\"The uploaded file is too large.\";s:23:\"upload_failed_php_error\";s:38:\"There was an error uploading the file.\";}'),(11,12,'_additional_settings',''),(12,12,'_locale','en_US'),(17159,3355,'_edit_lock','1694877834:1'),(17160,3355,'_edit_last','1'),(17161,3356,'_wp_attached_file','2023/08/AVI-Pollodoxin-300px-x-300px.png'),(17162,3356,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:300;s:6:\"height\";i:300;s:4:\"file\";s:40:\"2023/08/AVI-Pollodoxin-300px-x-300px.png\";s:8:\"filesize\";i:20432;s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:40:\"AVI-Pollodoxin-300px-x-300px-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:13755;}s:29:\"woocommerce_gallery_thumbnail\";a:5:{s:4:\"file\";s:40:\"AVI-Pollodoxin-300px-x-300px-200x200.png\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:22727;}}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:{}}}'),(16942,3345,'_wpb_post_custom_layout','default'),(16943,3346,'_wpb_post_custom_layout','default'),(16944,3347,'_wpb_post_custom_layout','default'),(16945,3349,'_wpb_post_custom_layout','default'),(16946,2655,'_wpb_post_custom_layout','default'),(16947,3331,'_product_attributes','a:2:{s:11:\"composition\";a:6:{s:4:\"name\";s:11:\"composition\";s:5:\"value\";s:517:\"Vitamin A – 931.382 IU | Vitamin D3 – 176.327 IU | Vitamin E – 26.436 IU | Vitamin K – 0.655 mg | Pantothenic – 1.091 mg | Riboflavin – 1.745 mg | Folic – 0.131 mg | Niacinamide – 5.273 mg | Thiamine – 0.258 mg | Pyridoxine – 0.436 mg | Vitamin B12 – 0.004 mg | Biotin – 0.011 mg | Ascorbic acid – 12.327 mg | Choline – 0.033 mg | Iodine – 0.020 mg | Iron – 1.745 mg | Manganese – 2.655 mg | Zinc – 2.909 mg | Copper – 0.133 mg | Methionine – 52.891mg | Lysine HCL – 74.491mg\";s:8:\"position\";i:0;s:10:\"is_visible\";i:0;s:12:\"is_variation\";i:0;s:11:\"is_taxonomy\";i:0;}s:15:\"pa_product-type\";a:6:{s:4:\"name\";s:15:\"pa_product-type\";s:5:\"value\";s:0:\"\";s:8:\"position\";i:1;s:10:\"is_visible\";i:0;s:12:\"is_variation\";i:0;s:11:\"is_taxonomy\";i:1;}}'),(16941,3344,'_wpb_post_custom_layout','default'),(17053,3352,'_dt_fancy_header_responsiveness','enabled'),(17054,3352,'_dt_fancy_header_responsiveness_switch','778px'),(17055,3352,'_dt_fancy_header_responsive_height','140'),(17056,3352,'_dt_fancy_header_responsive_font_size','30'),(17057,3352,'_dt_fancy_header_responsive_title_line_height','38'),(17058,3352,'_dt_fancy_header_responsive_subtitle_font_size','20'),(17059,3352,'_dt_fancy_header_responsive_subtitle_line_height','28'),(17060,3352,'_dt_fancy_header_responsive_breadcrumbs','disabled'),(17061,3352,'the7_fancy_title_css','#main {\n  padding-top: 1%;\n}\n.fancy-header {\n  background-image: url(\'https://farmchemie.yasithawd.com/wp-content/uploads/2023/08/AVI-Ganadexil_logo.png\');\n  background-repeat: no-repeat;\n  background-position: center center;\n  background-size: auto auto;\n  background-color: #ffffff;\n}\n.mobile-false .fancy-header {\n  background-attachment: scroll;\n}\n.fancy-header .wf-wrap {\n  min-height: 140px;\n  padding-top: 0px;\n  padding-bottom: 0px;\n}\n.fancy-header .fancy-title {\n  font-size: 32px;\n  line-height: 36px;\n  color: #079547;\n  text-transform: none;\n}\n.fancy-header .fancy-subtitle {\n  font-size: 24px;\n  line-height: 26px;\n  color: #792c8a;\n  text-transform: none;\n}\n.fancy-header .breadcrumbs {\n  color: #ffffff;\n}\n.fancy-header-overlay {\n  background: rgba(0,0,0,0.5);\n}\n@media screen and (max-width: 778px) {\n  .fancy-header .wf-wrap {\n    min-height: 140px;\n  }\n  .fancy-header .fancy-title {\n    font-size: 30px;\n    line-height: 38px;\n  }\n  .fancy-header .fancy-subtitle {\n    font-size: 20px;\n    line-height: 28px;\n  }\n  .fancy-header.breadcrumbs-mobile-off .breadcrumbs {\n    display: none;\n  }\n  #fancy-header > .wf-wrap {\n    flex-flow: column wrap;\n    align-items: center;\n    justify-content: center;\n    padding-bottom: 0px !important;\n  }\n  .fancy-header.title-left .breadcrumbs {\n    text-align: center;\n    float: none;\n  }\n  .breadcrumbs {\n    margin-bottom: 10px;\n  }\n  .breadcrumbs.breadcrumbs-bg {\n    margin-top: 10px;\n  }\n  .fancy-header.title-right .breadcrumbs {\n    margin: 10px 0 10px 0;\n  }\n  #fancy-header .hgroup,\n  #fancy-header .breadcrumbs {\n    text-align: center;\n  }\n  .fancy-header .hgroup {\n    padding-bottom: 5px;\n  }\n  .breadcrumbs-off .hgroup {\n    padding-bottom: 5px;\n  }\n  .title-right .hgroup {\n    padding: 0 0 5px 0;\n  }\n  .title-right.breadcrumbs-off .hgroup {\n    padding-top: 5px;\n  }\n  .title-left.disabled-bg .breadcrumbs {\n    margin-bottom: 0;\n  }\n}\n'),(17062,3352,'_edit_lock','1695517287:2'),(17063,3352,'_edit_last','2'),(17064,3353,'_wp_attached_file','2023/08/AVI-Ganadexil_logo.png'),(17065,3353,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:300;s:6:\"height\";i:108;s:4:\"file\";s:30:\"2023/08/AVI-Ganadexil_logo.png\";s:8:\"filesize\";i:2438;s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:30:\"AVI-Ganadexil_logo-150x108.png\";s:5:\"width\";i:150;s:6:\"height\";i:108;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:5362;}s:29:\"woocommerce_gallery_thumbnail\";a:5:{s:4:\"file\";s:30:\"AVI-Ganadexil_logo-200x108.png\";s:5:\"width\";i:200;s:6:\"height\";i:108;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:5945;}}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:{}}}'),(1808,2560,'_wpb_post_custom_css','.vc_custom_1662364566926 {\r\n    border-radius: 0px 35px 35px 0px !important;\r\n}'),(1809,2560,'_wpb_shortcodes_custom_css','.vc_custom_1662363666143{background-image: url(https://farmchemie.yasithawd.com/wp-content/uploads/2022/09/marketbgimg1-sp.png?id=2527) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}.vc_custom_1662370166856{margin-top: 20px !important;margin-right: 50px !important;margin-left: 50px !important;}.vc_custom_1662367183321{background-color: #6e368d !important;}.vc_custom_1662370098614{background-color: #089548 !important;}'),(1810,2561,'_wpb_post_custom_css','.vc_custom_1662364566926 {\r\n    border-radius: 0px 35px 35px 0px !important;\r\n}'),(22337,3604,'_dt_header_transparent_bg_color_scheme','light'),(22338,3604,'_dt_header_transparent_top_bar_bg_color','#ffffff'),(17153,3355,'_dt_fancy_header_responsive_font_size','30'),(17154,3355,'_dt_fancy_header_responsive_title_line_height','38'),(17155,3355,'_dt_fancy_header_responsive_subtitle_font_size','20'),(17156,3355,'_dt_fancy_header_responsive_subtitle_line_height','28'),(17157,3355,'_dt_fancy_header_responsive_breadcrumbs','disabled'),(17158,3355,'the7_fancy_title_css','#main {\n  padding-top: 1%;\n}\n.fancy-header {\n  background-image: url(\'https://farmchemie.yasithawd.com/wp-content/uploads/2023/08/AVI-Pollodoxin_logo.png\');\n  background-repeat: no-repeat;\n  background-position: center center;\n  background-size: auto auto;\n  background-color: #ffffff;\n}\n.mobile-false .fancy-header {\n  background-attachment: scroll;\n}\n.fancy-header .wf-wrap {\n  min-height: 140px;\n  padding-top: 0px;\n  padding-bottom: 0px;\n}\n.fancy-header .fancy-title {\n  font-size: 32px;\n  line-height: 36px;\n  color: #079547;\n  text-transform: none;\n}\n.fancy-header .fancy-subtitle {\n  font-size: 24px;\n  line-height: 26px;\n  color: #792c8a;\n  text-transform: none;\n}\n.fancy-header .breadcrumbs {\n  color: #ffffff;\n}\n.fancy-header-overlay {\n  background: rgba(0,0,0,0.5);\n}\n@media screen and (max-width: 778px) {\n  .fancy-header .wf-wrap {\n    min-height: 140px;\n  }\n  .fancy-header .fancy-title {\n    font-size: 30px;\n    line-height: 38px;\n  }\n  .fancy-header .fancy-subtitle {\n    font-size: 20px;\n    line-height: 28px;\n  }\n  .fancy-header.breadcrumbs-mobile-off .breadcrumbs {\n    display: none;\n  }\n  #fancy-header > .wf-wrap {\n    flex-flow: column wrap;\n    align-items: center;\n    justify-content: center;\n    padding-bottom: 0px !important;\n  }\n  .fancy-header.title-left .breadcrumbs {\n    text-align: center;\n    float: none;\n  }\n  .breadcrumbs {\n    margin-bottom: 10px;\n  }\n  .breadcrumbs.breadcrumbs-bg {\n    margin-top: 10px;\n  }\n  .fancy-header.title-right .breadcrumbs {\n    margin: 10px 0 10px 0;\n  }\n  #fancy-header .hgroup,\n  #fancy-header .breadcrumbs {\n    text-align: center;\n  }\n  .fancy-header .hgroup {\n    padding-bottom: 5px;\n  }\n  .breadcrumbs-off .hgroup {\n    padding-bottom: 5px;\n  }\n  .title-right .hgroup {\n    padding: 0 0 5px 0;\n  }\n  .title-right.breadcrumbs-off .hgroup {\n    padding-top: 5px;\n  }\n  .title-left.disabled-bg .breadcrumbs {\n    margin-bottom: 0;\n  }\n}\n'),(19759,2774,'_product_attributes','a:1:{s:15:\"pa_product-type\";a:6:{s:4:\"name\";s:15:\"pa_product-type\";s:5:\"value\";s:0:\"\";s:8:\"position\";i:0;s:10:\"is_visible\";i:0;s:12:\"is_variation\";i:0;s:11:\"is_taxonomy\";i:1;}}'),(16960,3034,'_wp_old_date','2023-08-22'),(16957,2911,'_wp_old_date','2023-08-22'),(16958,2422,'_wp_old_date','2023-08-22'),(19526,3500,'_wpb_shortcodes_custom_css_updated','1'),(16961,3038,'_wp_old_date','2023-08-22'),(16962,3042,'_wp_old_date','2023-08-22'),(16963,3104,'_wp_old_date','2023-08-22'),(16964,2935,'_wp_old_date','2023-08-22'),(16965,2417,'_wp_old_date','2023-08-22'),(16966,2418,'_wp_old_date','2023-08-22'),(16967,2419,'_wp_old_date','2023-08-22'),(16968,2420,'_wp_old_date','2023-08-22'),(16969,2421,'_wp_old_date','2023-08-22'),(16970,39,'_wp_old_date','2023-08-22'),(16987,3352,'_dt_sidebar_position','disabled'),(16988,3352,'_dt_sidebar_widgetarea_id','sidebar_1'),(16989,3352,'_dt_sidebar_hide_on_mobile','0'),(16990,3352,'_dt_footer_show','1'),(16991,3352,'_dt_footer_widgetarea_id','sidebar_2'),(16992,3352,'_dt_footer_hide_on_mobile','0'),(16993,3352,'_dt_header_title','fancy'),(16994,3352,'_dt_header_background','normal'),(16995,3352,'_dt_header_background_below_slideshow','disabled'),(16996,3352,'_dt_header_transparent_bg_color_scheme','light'),(16997,3352,'_dt_header_transparent_top_bar_bg_color','#ffffff'),(16998,3352,'_dt_header_transparent_top_bar_bg_opacity','25'),(16999,3352,'_dt_header_transparent_bg_color','#000000'),(17000,3352,'_dt_header_transparent_bg_opacity','50'),(17001,3352,'_dt_header_disabled_background','normal'),(17002,3352,'_dt_header_disabled_transparent_bg_color_scheme','light'),(17003,3352,'_dt_header_disabled_transparent_top_bar_bg_color','#ffffff'),(17004,3352,'_dt_header_disabled_transparent_top_bar_bg_opacity','25'),(17005,3352,'_dt_header_disabled_transparent_bg_color','#000000'),(17006,3352,'_dt_header_disabled_transparent_bg_opacity','50'),(17007,3352,'_dt_page_overrides_top_margin','1%'),(17008,3352,'_dt_page_overrides_right_margin',''),(17009,3352,'_dt_page_overrides_bottom_margin',''),(17010,3352,'_dt_page_overrides_left_margin',''),(17011,3352,'_dt_mobile_page_padding_top',''),(17012,3352,'_dt_mobile_page_padding_right',''),(17013,3352,'_dt_mobile_page_padding_bottom',''),(17014,3352,'_dt_mobile_page_padding_left',''),(17015,3352,'_dt_fancy_header_layout_heading',''),(17016,3352,'_dt_fancy_header_title_aligment','all_left'),(17017,3352,'_dt_fancy_header_height','140'),(17018,3352,'_dt_fancy_header_padding-top','0px'),(17019,3352,'_dt_fancy_header_padding-bottom','0px'),(17020,3352,'_dt_fancy_header_breadcrumbs_heading',''),(17021,3352,'_dt_fancy_header_breadcrumbs','disabled'),(17022,3352,'_dt_fancy_header_breadcrumbs_text_color','#ffffff'),(17023,3352,'_dt_fancy_header_breadcrumbs_bg_color','disabled'),(17024,3352,'_dt_fancy_header_title_heading',''),(17025,3352,'_dt_fancy_header_title_mode','custom'),(17026,3352,'_dt_fancy_header_title',''),(17027,3352,'_dt_fancy_header_title_font_size','32'),(17028,3352,'_dt_fancy_header_title_line_height','36'),(17029,3352,'_dt_fancy_header_text_transform','none'),(17030,3352,'_dt_fancy_header_title_color_mode','color'),(17031,3352,'_dt_fancy_header_title_color','#079547'),(17032,3352,'_dt_fancy_header_subtitle_heading',''),(17033,3352,'_dt_fancy_header_subtitle',''),(17034,3352,'_dt_fancy_header_subtitle_font_size','24'),(159,40,'_edit_last','1'),(22837,3611,'_dt_mobile_page_padding_bottom',''),(22838,3611,'_dt_mobile_page_padding_left',''),(22836,3611,'_dt_mobile_page_padding_right',''),(22835,3611,'_dt_mobile_page_padding_top',''),(22834,3611,'_dt_page_overrides_left_margin',''),(22339,3604,'_dt_header_transparent_top_bar_bg_opacity','25'),(12958,2914,'_wpb_post_custom_css','.customborderradius1 {\r\n    border-radius: 1px 35px 35px 1px !important;\r\n}'),(12957,2913,'_wpb_shortcodes_custom_css','.vc_custom_1662730336770{margin-right: 0px !important;margin-left: 0px !important;padding-right: 0px !important;padding-left: 0px !important;}.vc_custom_1662730433019{padding-right: 0px !important;padding-left: 0px !important;}.vc_custom_1662447237222{margin: 0px !important;padding: 0px !important;background-image: url(https://farmchemie.yasithawd.com/wp-content/uploads/2022/09/marketbgimg1-sp.png?id=2527) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}.vc_custom_1662370166856{margin-top: 20px !important;margin-right: 50px !important;margin-left: 50px !important;}.vc_custom_1662460080909{margin-top: 20px !important;margin-right: 50px !important;margin-bottom: 10px !important;margin-left: 50px !important;}.vc_custom_1662370166856{margin-top: 20px !important;margin-right: 50px !important;margin-left: 50px !important;}.vc_custom_1662460080909{margin-top: 20px !important;margin-right: 50px !important;margin-bottom: 10px !important;margin-left: 50px !important;}.vc_custom_1662539141341{background-color: #6e368d !important;}.vc_custom_1662539133598{background-color: #059444 !important;}.vc_custom_1662456998651{padding-bottom: 500px !important;}.vc_custom_1662458571859{padding-right: 0px !important;padding-bottom: 10px !important;padding-left: 0px !important;}.vc_custom_1662539148421{background-color: rgba(255,255,255,0.5) !important;*background-color: rgb(255,255,255) !important;}.vc_custom_1662371690284{background-color: #6e368d !important;}'),(12948,2911,'_menu_item_url',''),(12947,2911,'_menu_item_xfn',''),(12946,2911,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(12945,2911,'_menu_item_target',''),(149,39,'_menu_item_type','custom'),(150,39,'_menu_item_menu_item_parent','0'),(151,39,'_menu_item_object_id','39'),(152,39,'_menu_item_object','custom'),(153,39,'_menu_item_target',''),(154,39,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(155,39,'_menu_item_xfn',''),(156,39,'_menu_item_url','https://farmchemie.yasithawd.com/2622-2/'),(22833,3611,'_dt_page_overrides_bottom_margin',''),(160,40,'_wp_page_template','default'),(161,40,'_wpb_vc_js_status','false'),(162,40,'_dt_sidebar_position','right'),(163,40,'_dt_sidebar_widgetarea_id','sidebar_1'),(164,40,'_dt_sidebar_hide_on_mobile','0'),(165,40,'_dt_footer_show','1'),(166,40,'_dt_footer_widgetarea_id','sidebar_2'),(167,40,'_dt_footer_hide_on_mobile','0'),(168,40,'_dt_header_title','enabled'),(169,40,'_dt_header_background','normal'),(170,40,'_dt_header_background_below_slideshow','disabled'),(171,40,'_dt_header_transparent_bg_color_scheme','light'),(172,40,'_dt_header_transparent_top_bar_bg_color','#ffffff'),(173,40,'_dt_header_transparent_top_bar_bg_opacity','25'),(174,40,'_dt_header_transparent_bg_color','#000000'),(175,40,'_dt_header_transparent_bg_opacity','50'),(176,40,'_dt_header_disabled_background','normal'),(177,40,'_dt_header_disabled_transparent_bg_color_scheme','light'),(178,40,'_dt_header_disabled_transparent_top_bar_bg_color','#ffffff'),(179,40,'_dt_header_disabled_transparent_top_bar_bg_opacity','25'),(180,40,'_dt_header_disabled_transparent_bg_color','#000000'),(181,40,'_dt_header_disabled_transparent_bg_opacity','50'),(182,40,'_dt_page_overrides_top_margin',''),(183,40,'_dt_page_overrides_right_margin',''),(184,40,'_dt_page_overrides_bottom_margin',''),(185,40,'_dt_page_overrides_left_margin',''),(186,40,'_dt_mobile_page_padding_top',''),(187,40,'_dt_mobile_page_padding_right',''),(188,40,'_dt_mobile_page_padding_bottom',''),(189,40,'_dt_mobile_page_padding_left',''),(190,40,'_dt_microsite_primary_menu',''),(191,40,'_dt_microsite_split_left_menu',''),(192,40,'_dt_microsite_split_right_menu',''),(193,40,'_dt_microsite_mobile_menu',''),(194,40,'_edit_lock','1661316856:1'),(17167,3360,'_wp_attached_file','2023/08/AVI-Trimethosulfa_600px.png'),(17168,3360,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:600;s:6:\"height\";i:600;s:4:\"file\";s:35:\"2023/08/AVI-Trimethosulfa_600px.png\";s:8:\"filesize\";i:58353;s:5:\"sizes\";a:4:{s:6:\"medium\";a:5:{s:4:\"file\";s:35:\"AVI-Trimethosulfa_600px-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:49348;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:35:\"AVI-Trimethosulfa_600px-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:14549;}s:21:\"woocommerce_thumbnail\";a:6:{s:4:\"file\";s:35:\"AVI-Trimethosulfa_600px-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:49348;s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:5:{s:4:\"file\";s:35:\"AVI-Trimethosulfa_600px-200x200.png\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:23684;}}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:{}}}'),(17163,3357,'_wp_attached_file','2023/08/AVI-Pollodoxin_logo.png'),(17164,3357,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:300;s:6:\"height\";i:100;s:4:\"file\";s:31:\"2023/08/AVI-Pollodoxin_logo.png\";s:8:\"filesize\";i:2236;s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:31:\"AVI-Pollodoxin_logo-150x100.png\";s:5:\"width\";i:150;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:5304;}s:29:\"woocommerce_gallery_thumbnail\";a:5:{s:4:\"file\";s:31:\"AVI-Pollodoxin_logo-200x100.png\";s:5:\"width\";i:200;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:5687;}}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:{}}}'),(17165,3359,'_wp_attached_file','2023/08/AVI-Trimethosulfa_logo.png'),(17166,3359,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:300;s:6:\"height\";i:109;s:4:\"file\";s:34:\"2023/08/AVI-Trimethosulfa_logo.png\";s:8:\"filesize\";i:2358;s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:34:\"AVI-Trimethosulfa_logo-150x109.png\";s:5:\"width\";i:150;s:6:\"height\";i:109;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:5451;}s:29:\"woocommerce_gallery_thumbnail\";a:5:{s:4:\"file\";s:34:\"AVI-Trimethosulfa_logo-200x109.png\";s:5:\"width\";i:200;s:6:\"height\";i:109;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:5811;}}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:{}}}'),(22832,3611,'_dt_page_overrides_right_margin',''),(22831,3611,'_dt_page_overrides_top_margin','1%'),(22830,3611,'_dt_header_disabled_transparent_bg_opacity','50'),(22829,3611,'_dt_header_disabled_transparent_bg_color','#000000'),(22828,3611,'_dt_header_disabled_transparent_top_bar_bg_opacity','25'),(17198,3361,'_dt_header_transparent_bg_opacity','50'),(17169,3361,'total_sales','0'),(17170,3361,'_tax_status','taxable'),(17171,3361,'_tax_class',''),(17172,3361,'_manage_stock','no'),(17173,3361,'_backorders','no'),(17174,3361,'_sold_individually','no'),(17175,3361,'_virtual','no'),(17176,3361,'_downloadable','no'),(17177,3361,'_download_limit','-1'),(17178,3361,'_download_expiry','-1'),(17179,3361,'_thumbnail_id','3360'),(17180,3361,'_stock',NULL),(17181,3361,'_stock_status','instock'),(17182,3361,'_wc_average_rating','0'),(17183,3361,'_wc_review_count','0'),(17184,3361,'_product_version','8.0.2'),(17185,3361,'_dt_sidebar_position','disabled'),(17186,3361,'_dt_sidebar_widgetarea_id','sidebar_1'),(17187,3361,'_dt_sidebar_hide_on_mobile','0'),(17188,3361,'_dt_footer_show','1'),(17189,3361,'_dt_footer_widgetarea_id','sidebar_2'),(17190,3361,'_dt_footer_hide_on_mobile','0'),(17191,3361,'_dt_header_title','fancy'),(17192,3361,'_dt_header_background','normal'),(17193,3361,'_dt_header_background_below_slideshow','disabled'),(17194,3361,'_dt_header_transparent_bg_color_scheme','light'),(17195,3361,'_dt_header_transparent_top_bar_bg_color','#ffffff'),(17196,3361,'_dt_header_transparent_top_bar_bg_opacity','25'),(17197,3361,'_dt_header_transparent_bg_color','#000000'),(17035,3352,'_dt_fancy_header_subtitle_line_height','26'),(17049,3352,'_dt_fancy_header_bg_overlay_opacity','50'),(17050,3352,'_dt_fancy_header_scroll_effect','default'),(17051,3352,'_dt_fancy_header_bg_parallax','0.5'),(17052,3352,'_dt_fancy_header_responsiveness_heading',''),(16936,3340,'_wpb_post_custom_layout','blank'),(16937,3335,'_wpb_post_custom_layout','default'),(16938,3341,'_wpb_post_custom_layout','default'),(17048,3352,'_dt_fancy_header_overlay_color','#000'),(16939,3342,'_wpb_post_custom_layout','default'),(16940,3343,'_wpb_post_custom_layout','default'),(16935,3339,'_wpb_post_custom_layout','blank'),(17036,3352,'_dt_fancy_header_subtitle_text_transform','none'),(17037,3352,'_dt_fancy_header_subtitle_color_mode','color'),(17038,3352,'_dt_fancy_header_subtitle_color','#792c8a'),(17039,3352,'_dt_fancy_header_bg_heading',''),(17040,3352,'_dt_fancy_header_bg_color','#ffffff'),(17041,3352,'_dt_fancy_header_bg_image_origin','custom'),(17042,3352,'_dt_fancy_header_bg_image','a:1:{i:0;i:3353;}'),(17043,3352,'_dt_fancy_header_bg_repeat','no-repeat'),(17044,3352,'_dt_fancy_header_bg_position_x','center'),(17045,3352,'_dt_fancy_header_bg_position_y','center'),(17046,3352,'_dt_fancy_header_bg_fullscreen','0'),(17047,3352,'_dt_fancy_header_bg_overlay','0'),(22827,3611,'_dt_header_disabled_transparent_top_bar_bg_color','#ffffff'),(22826,3611,'_dt_header_disabled_transparent_bg_color_scheme','light'),(22824,3611,'_dt_header_transparent_bg_opacity','50'),(22825,3611,'_dt_header_disabled_background','normal'),(22823,3611,'_dt_header_transparent_bg_color','#000000'),(22822,3611,'_dt_header_transparent_top_bar_bg_opacity','25'),(22820,3611,'_dt_header_transparent_bg_color_scheme','light'),(22821,3611,'_dt_header_transparent_top_bar_bg_color','#ffffff'),(16438,3316,'_edit_lock','1694443219:1'),(16439,3316,'_edit_last','1'),(16440,3309,'rs_page_bg_color',''),(16441,3318,'_wp_attached_file','2023/08/AVI-3-folding-brochure-SInhala-Final-outline_compressed-2.pdf'),(16442,3318,'_wp_attachment_metadata','a:2:{s:5:\"sizes\";a:4:{s:4:\"full\";a:5:{s:4:\"file\";s:65:\"AVI-3-folding-brochure-SInhala-Final-outline_compressed-2-pdf.jpg\";s:5:\"width\";i:1527;s:6:\"height\";i:1089;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:633226;}s:6:\"medium\";a:5:{s:4:\"file\";s:73:\"AVI-3-folding-brochure-SInhala-Final-outline_compressed-2-pdf-300x214.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:214;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:36931;}s:5:\"large\";a:5:{s:4:\"file\";s:74:\"AVI-3-folding-brochure-SInhala-Final-outline_compressed-2-pdf-1024x730.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:730;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:301330;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:73:\"AVI-3-folding-brochure-SInhala-Final-outline_compressed-2-pdf-150x107.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:107;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:11046;}}s:8:\"filesize\";i:2367813;}'),(16390,3316,'_dt_mobile_page_padding_left',''),(16391,3316,'_dt_fancy_header_layout_heading',''),(16392,3316,'_dt_fancy_header_title_aligment','all_left'),(16393,3316,'_dt_fancy_header_height','140'),(16394,3316,'_dt_fancy_header_padding-top','0px'),(16395,3316,'_dt_fancy_header_padding-bottom','0px'),(16396,3316,'_dt_fancy_header_breadcrumbs_heading',''),(16397,3316,'_dt_fancy_header_breadcrumbs','disabled'),(16398,3316,'_dt_fancy_header_breadcrumbs_text_color','#ffffff'),(16399,3316,'_dt_fancy_header_breadcrumbs_bg_color','disabled'),(16400,3316,'_dt_fancy_header_title_heading',''),(16401,3316,'_dt_fancy_header_title_mode','custom'),(16402,3316,'_dt_fancy_header_title',''),(16403,3316,'_dt_fancy_header_title_font_size','32'),(16404,3316,'_dt_fancy_header_title_line_height','36'),(16405,3316,'_dt_fancy_header_text_transform','none'),(16406,3316,'_dt_fancy_header_title_color_mode','color'),(16407,3316,'_dt_fancy_header_title_color','#079547'),(16408,3316,'_dt_fancy_header_subtitle_heading',''),(16409,3316,'_dt_fancy_header_subtitle',''),(16410,3316,'_dt_fancy_header_subtitle_font_size','24'),(16411,3316,'_dt_fancy_header_subtitle_line_height','26'),(16412,3316,'_dt_fancy_header_subtitle_text_transform','none'),(16413,3316,'_dt_fancy_header_subtitle_color_mode','color'),(16414,3316,'_dt_fancy_header_subtitle_color','#792c8a'),(16415,3316,'_dt_fancy_header_bg_heading',''),(16416,3316,'_dt_fancy_header_bg_color','#ffffff'),(16417,3316,'_dt_fancy_header_bg_image_origin','custom'),(16418,3316,'_dt_fancy_header_bg_image','a:1:{i:0;i:3322;}'),(16419,3316,'_dt_fancy_header_bg_repeat','no-repeat'),(16420,3316,'_dt_fancy_header_bg_position_x','center'),(16421,3316,'_dt_fancy_header_bg_position_y','center'),(16422,3316,'_dt_fancy_header_bg_fullscreen','0'),(16423,3316,'_dt_fancy_header_bg_overlay','0'),(16424,3316,'_dt_fancy_header_overlay_color','#000'),(16425,3316,'_dt_fancy_header_bg_overlay_opacity','50'),(16426,3316,'_dt_fancy_header_scroll_effect','default'),(16427,3316,'_dt_fancy_header_bg_parallax','0.5'),(16428,3316,'_dt_fancy_header_responsiveness_heading',''),(16429,3316,'_dt_fancy_header_responsiveness','enabled'),(16430,3316,'_dt_fancy_header_responsiveness_switch','778px'),(16431,3316,'_dt_fancy_header_responsive_height','140'),(16432,3316,'_dt_fancy_header_responsive_font_size','30'),(16433,3316,'_dt_fancy_header_responsive_title_line_height','38'),(16434,3316,'_dt_fancy_header_responsive_subtitle_font_size','20'),(16435,3316,'_dt_fancy_header_responsive_subtitle_line_height','28'),(16436,3316,'_dt_fancy_header_responsive_breadcrumbs','disabled'),(16437,3316,'the7_fancy_title_css','#main {\n  padding-top: 1%;\n}\n.fancy-header {\n  background-image: url(\'https://farmchemie.yasithawd.com/wp-content/uploads/2023/08/AVI-Tonic_logo.png\');\n  background-repeat: no-repeat;\n  background-position: center center;\n  background-size: auto auto;\n  background-color: #ffffff;\n}\n.mobile-false .fancy-header {\n  background-attachment: scroll;\n}\n.fancy-header .wf-wrap {\n  min-height: 140px;\n  padding-top: 0px;\n  padding-bottom: 0px;\n}\n.fancy-header .fancy-title {\n  font-size: 32px;\n  line-height: 36px;\n  color: #079547;\n  text-transform: none;\n}\n.fancy-header .fancy-subtitle {\n  font-size: 24px;\n  line-height: 26px;\n  color: #792c8a;\n  text-transform: none;\n}\n.fancy-header .breadcrumbs {\n  color: #ffffff;\n}\n.fancy-header-overlay {\n  background: rgba(0,0,0,0.5);\n}\n@media screen and (max-width: 778px) {\n  .fancy-header .wf-wrap {\n    min-height: 140px;\n  }\n  .fancy-header .fancy-title {\n    font-size: 30px;\n    line-height: 38px;\n  }\n  .fancy-header .fancy-subtitle {\n    font-size: 20px;\n    line-height: 28px;\n  }\n  .fancy-header.breadcrumbs-mobile-off .breadcrumbs {\n    display: none;\n  }\n  #fancy-header > .wf-wrap {\n    flex-flow: column wrap;\n    align-items: center;\n    justify-content: center;\n    padding-bottom: 0px !important;\n  }\n  .fancy-header.title-left .breadcrumbs {\n    text-align: center;\n    float: none;\n  }\n  .breadcrumbs {\n    margin-bottom: 10px;\n  }\n  .breadcrumbs.breadcrumbs-bg {\n    margin-top: 10px;\n  }\n  .fancy-header.title-right .breadcrumbs {\n    margin: 10px 0 10px 0;\n  }\n  #fancy-header .hgroup,\n  #fancy-header .breadcrumbs {\n    text-align: center;\n  }\n  .fancy-header .hgroup {\n    padding-bottom: 5px;\n  }\n  .breadcrumbs-off .hgroup {\n    padding-bottom: 5px;\n  }\n  .title-right .hgroup {\n    padding: 0 0 5px 0;\n  }\n  .title-right.breadcrumbs-off .hgroup {\n    padding-top: 5px;\n  }\n  .title-left.disabled-bg .breadcrumbs {\n    margin-bottom: 0;\n  }\n}\n'),(16389,3316,'_dt_mobile_page_padding_bottom',''),(16371,3316,'_dt_header_background_below_slideshow','disabled'),(16372,3316,'_dt_header_transparent_bg_color_scheme','light'),(16373,3316,'_dt_header_transparent_top_bar_bg_color','#ffffff'),(16374,3316,'_dt_header_transparent_top_bar_bg_opacity','25'),(16375,3316,'_dt_header_transparent_bg_color','#000000'),(16376,3316,'_dt_header_transparent_bg_opacity','50'),(16377,3316,'_dt_header_disabled_background','normal'),(16378,3316,'_dt_header_disabled_transparent_bg_color_scheme','light'),(16379,3316,'_dt_header_disabled_transparent_top_bar_bg_color','#ffffff'),(16380,3316,'_dt_header_disabled_transparent_top_bar_bg_opacity','25'),(16381,3316,'_dt_header_disabled_transparent_bg_color','#000000'),(16382,3316,'_dt_header_disabled_transparent_bg_opacity','50'),(16383,3316,'_dt_page_overrides_top_margin','1%'),(16384,3316,'_dt_page_overrides_right_margin',''),(16385,3316,'_dt_page_overrides_bottom_margin',''),(16386,3316,'_dt_page_overrides_left_margin',''),(16387,3316,'_dt_mobile_page_padding_top',''),(16388,3316,'_dt_mobile_page_padding_right',''),(16362,3316,'_product_version','8.0.2'),(16363,3316,'_dt_sidebar_position','disabled'),(16364,3316,'_dt_sidebar_widgetarea_id','sidebar_1'),(16365,3316,'_dt_sidebar_hide_on_mobile','0'),(16366,3316,'_dt_footer_show','1'),(16367,3316,'_dt_footer_widgetarea_id','sidebar_2'),(16368,3316,'_dt_footer_hide_on_mobile','0'),(16369,3316,'_dt_header_title','fancy'),(16370,3316,'_dt_header_background','normal'),(16361,3316,'_wc_review_count','0'),(23096,3615,'_dt_sidebar_hide_on_mobile','0'),(23095,3615,'_dt_sidebar_widgetarea_id','sidebar_1'),(23094,3615,'_dt_sidebar_position','disabled'),(23093,3615,'_product_version','8.0.2'),(23092,3615,'_product_attributes','a:1:{s:15:\"pa_product-type\";a:6:{s:4:\"name\";s:15:\"pa_product-type\";s:5:\"value\";s:0:\"\";s:8:\"position\";i:0;s:10:\"is_visible\";i:0;s:12:\"is_variation\";i:0;s:11:\"is_taxonomy\";i:1;}}'),(23091,3615,'_wc_review_count','0'),(23090,3615,'_wc_average_rating','0'),(23082,3615,'_backorders','no'),(23083,3615,'_sold_individually','no'),(23084,3615,'_virtual','no'),(23085,3615,'_downloadable','no'),(23086,3615,'_download_limit','-1'),(23087,3615,'_download_expiry','-1'),(23088,3615,'_stock',NULL),(23089,3615,'_stock_status','instock'),(23078,3615,'total_sales','0'),(23079,3615,'_tax_status','taxable'),(1988,2621,'_edit_last','1'),(23081,3615,'_manage_stock','no'),(23080,3615,'_tax_class',''),(23076,3614,'_edit_lock','1694611840:1'),(23077,3614,'_edit_last','1'),(23075,3614,'_wqoecf_disable_form','no'),(16243,3309,'_tax_status','taxable'),(16244,3309,'_tax_class',''),(16245,3309,'_manage_stock','no'),(16246,3309,'_backorders','no'),(16247,3309,'_sold_individually','no'),(16248,3309,'_virtual','no'),(16249,3309,'_downloadable','no'),(16250,3309,'_download_limit','-1'),(16251,3309,'_download_expiry','-1'),(16252,3309,'_thumbnail_id','3310'),(16253,3309,'_stock',NULL),(16254,3309,'_stock_status','instock'),(16255,3309,'_wc_average_rating','0'),(16256,3309,'_wc_review_count','0'),(16257,3309,'_product_version','8.0.2'),(16258,3309,'_dt_sidebar_position','disabled'),(16259,3309,'_dt_sidebar_widgetarea_id','sidebar_1'),(16260,3309,'_dt_sidebar_hide_on_mobile','0'),(16261,3309,'_dt_footer_show','1'),(16262,3309,'_dt_footer_widgetarea_id','sidebar_2'),(16263,3309,'_dt_footer_hide_on_mobile','0'),(16264,3309,'_dt_header_title','fancy'),(16265,3309,'_dt_header_background','normal'),(16266,3309,'_dt_header_background_below_slideshow','disabled'),(16267,3309,'_dt_header_transparent_bg_color_scheme','light'),(16268,3309,'_dt_header_transparent_top_bar_bg_color','#ffffff'),(16269,3309,'_dt_header_transparent_top_bar_bg_opacity','25'),(16270,3309,'_dt_header_transparent_bg_color','#000000'),(16271,3309,'_dt_header_transparent_bg_opacity','50'),(16272,3309,'_dt_header_disabled_background','normal'),(16273,3309,'_dt_header_disabled_transparent_bg_color_scheme','light'),(16274,3309,'_dt_header_disabled_transparent_top_bar_bg_color','#ffffff'),(16275,3309,'_dt_header_disabled_transparent_top_bar_bg_opacity','25'),(16276,3309,'_dt_header_disabled_transparent_bg_color','#000000'),(16277,3309,'_dt_header_disabled_transparent_bg_opacity','50'),(16278,3309,'_dt_page_overrides_top_margin','1%'),(16279,3309,'_dt_page_overrides_right_margin',''),(16280,3309,'_dt_page_overrides_bottom_margin',''),(16242,3309,'total_sales','0'),(17805,3401,'_wp_attached_file','2023/09/Oral-Supplements-2.png'),(17774,3389,'_wpb_shortcodes_custom_css','.vc_custom_1689577528817{padding-bottom: 50px !important;}.vc_custom_1693451731079{padding-top: 50px !important;padding-bottom: 50px !important;}.vc_custom_1689578794814{padding-top: 50px !important;padding-bottom: 50px !important;}.vc_custom_1689578794814{padding-top: 50px !important;padding-bottom: 50px !important;}.vc_custom_1693540932074{margin-top: 10px !important;margin-bottom: 10px !important;}.vc_custom_1689577454678{margin-bottom: 50px !important;}.vc_custom_1692407941633{border-bottom-width: 1px !important;border-bottom-color: #079547 !important;border-bottom-style: solid !important;border-radius: 1px !important;}.vc_custom_1692407949383{border-bottom-width: 1px !important;border-bottom-color: #079547 !important;border-bottom-style: solid !important;border-radius: 1px !important;}.vc_custom_1692407957943{border-bottom-width: 1px !important;border-bottom-color: #079547 !important;border-bottom-style: solid !important;border-radius: 1px !important;}.vc_custom_1692407970279{border-bottom-width: 1px !important;border-bottom-color: #079547 !important;border-bottom-style: solid !important;border-radius: 1px !important;}.vc_custom_1691846530645{border-right-width: 1px !important;border-left-width: 1px !important;border-left-color: #000000 !important;border-left-style: solid !important;border-right-color: #000000 !important;border-right-style: solid !important;border-radius: 1px !important;}.vc_custom_1691846545469{border-right-width: 1px !important;border-left-width: 1px !important;border-left-color: #000000 !important;border-left-style: solid !important;border-right-color: #000000 !important;border-right-style: solid !important;border-radius: 1px !important;}.vc_custom_1691846563021{border-right-width: 1px !important;border-right-color: #000000 !important;border-right-style: solid !important;border-radius: 1px !important;}.vc_custom_1691846569845{border-right-width: 1px !important;border-right-color: #000000 !important;border-right-style: solid !important;border-radius: 1px !important;}.vc_custom_1691846576949{border-right-width: 1px !important;border-right-color: #000000 !important;border-right-style: solid !important;border-radius: 1px !important;}.vc_custom_1689578812611{margin-top: 50px !important;}.vc_custom_1693540291208{background-image: url(https://farmchemie.yasithawd.com/wp-content/uploads/2023/09/02International-Markets-Sri-Lankan-Market.png?id=3379) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}.vc_custom_1693540250450{background-color: #8d499b !important;}.vc_custom_1693540116474{background-color: #039447 !important;}.vc_custom_1693540312642{background-image: url(https://farmchemie.yasithawd.com/wp-content/uploads/2023/09/01International-Markets-Sri-Lankan-Market.png?id=3378) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}'),(17773,3388,'_wpb_shortcodes_custom_css_updated','1'),(22819,3611,'_dt_header_background_below_slideshow','disabled'),(22818,3611,'_dt_header_background','normal'),(22817,3611,'_dt_header_title','fancy'),(22816,3611,'_dt_footer_hide_on_mobile','0'),(22815,3611,'_dt_footer_widgetarea_id','sidebar_2'),(22814,3611,'_dt_footer_show','1'),(426,39,'_wp_old_date','2022-08-18'),(429,1577,'_wpb_shortcodes_custom_css','.vc_custom_1571819170390{padding-top: 50px !important;padding-bottom: 50px !important;background-color: #f2f3f7 !important;}.vc_custom_1571217829354{padding-top: 70px !important;padding-bottom: 40px !important;}.vc_custom_1571308835477{padding-top: 50px !important;padding-bottom: 40px !important;}.vc_custom_1571776445092{padding-top: 70px !important;padding-bottom: 50px !important;background-color: #f4f5f7 !important;}.vc_custom_1571676243312{padding-top: 70px !important;padding-right: 30px !important;padding-bottom: 70px !important;padding-left: 30px !important;}.vc_custom_1571740990811{padding-bottom: 70px !important;}.vc_custom_1571778028784{padding-top: 70px !important;padding-bottom: 50px !important;}.vc_custom_1571307696176{padding-top: 70px !important;padding-bottom: 70px !important;}.vc_custom_1571739000318{padding-top: 80px !important;padding-bottom: 80px !important;}.vc_custom_1571778741464{padding-top: 70px !important;padding-bottom: 50px !important;background-color: #ffffff !important;}.vc_custom_1572882217514{padding-right: 25px !important;padding-bottom: 60px !important;padding-left: 25px !important;}.vc_custom_1571307714139{padding-top: 70px !important;padding-bottom: 90px !important;}.vc_custom_1571307722298{padding-top: 70px !important;padding-bottom: 70px !important;}.vc_custom_1571819161146{margin-right: 0px !important;margin-left: 0px !important;padding-top: 20px !important;padding-right: 12% !important;padding-bottom: 30px !important;padding-left: 12% !important;}.vc_custom_1571780887485{margin-right: 0px !important;margin-left: 0px !important;padding-right: 50px !important;}.vc_custom_1571772935103{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}.vc_custom_1571777157923{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}.vc_custom_1580818256742{padding-right: 100px !important;}.vc_custom_1572960969632{margin-top: -100px !important;}.vc_custom_1572960964429{margin-top: -200px !important;margin-right: -300px !important;}.vc_custom_1570820895927{padding-bottom: 30px !important;}.vc_custom_1570820912604{padding-bottom: 30px !important;}.vc_custom_1570820986883{padding-bottom: 30px !important;}.vc_custom_1571784117345{margin-right: 10px !important;margin-bottom: 10px !important;}.vc_custom_1571784132499{margin-right: 10px !important;margin-bottom: 10px !important;}.vc_custom_1571784139181{margin-right: 10px !important;margin-bottom: 10px !important;}.vc_custom_1570819953995{padding-right: 0px !important;padding-left: 50px !important;}.vc_custom_1570819933702{padding-right: 0px !important;padding-left: 50px !important;}.vc_custom_1570819938399{padding-right: 0px !important;padding-left: 50px !important;}.vc_custom_1570819942715{padding-right: 0px !important;padding-left: 50px !important;}.vc_custom_1571775601629{margin-bottom: 10px !important;}.vc_custom_1571775621055{margin-bottom: 10px !important;}.vc_custom_1571775625451{margin-bottom: 10px !important;}.vc_custom_1571775629446{margin-bottom: 10px !important;}.vc_custom_1570630646410{padding-bottom: 60px !important;}.vc_custom_1571778132554{padding-bottom: 20px !important;}.vc_custom_1572960998823{margin-right: 25px !important;margin-bottom: 40px !important;margin-left: 25px !important;padding-top: 80px !important;padding-right: 30px !important;padding-bottom: 80px !important;padding-left: 30px !important;background-image: url(https://the7.io/nutritionist/wp-content/uploads/sites/57/2019/10/art-dark-006.jpg?id=2363) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}.vc_custom_1571666105681{padding-bottom: 30px !important;}.vc_custom_1571666115885{padding-bottom: 30px !important;}.vc_custom_1571666124175{padding-bottom: 30px !important;}.vc_custom_1571666156554{padding-bottom: 30px !important;}.vc_custom_1571666162750{padding-bottom: 30px !important;}.vc_custom_1571666174619{padding-bottom: 30px !important;}.vc_custom_1570895827963{padding-bottom: 30px !important;}.vc_custom_1572960938883{border-top-width: 4px !important;border-right-width: 4px !important;border-bottom-width: 4px !important;border-left-width: 4px !important;padding-top: 30px !important;padding-right: 10px !important;padding-bottom: 30px !important;padding-left: 10px !important;border-left-color: #a5d269 !important;border-left-style: solid !important;border-right-color: #a5d269 !important;border-right-style: solid !important;border-top-color: #a5d269 !important;border-top-style: solid !important;border-bottom-color: #a5d269 !important;border-bottom-style: solid !important;}.vc_custom_1572960944946{border-top-width: 4px !important;border-right-width: 4px !important;border-bottom-width: 4px !important;border-left-width: 4px !important;padding-top: 30px !important;padding-right: 10px !important;padding-bottom: 30px !important;padding-left: 10px !important;border-left-color: #a5d269 !important;border-left-style: solid !important;border-right-color: #a5d269 !important;border-right-style: solid !important;border-top-color: #a5d269 !important;border-top-style: solid !important;border-bottom-color: #a5d269 !important;border-bottom-style: solid !important;}.vc_custom_1572960953384{border-top-width: 4px !important;border-right-width: 4px !important;border-bottom-width: 4px !important;border-left-width: 4px !important;padding-top: 30px !important;padding-right: 10px !important;padding-bottom: 30px !important;padding-left: 10px !important;border-left-color: #a5d269 !important;border-left-style: solid !important;border-right-color: #a5d269 !important;border-right-style: solid !important;border-top-color: #a5d269 !important;border-top-style: solid !important;border-bottom-color: #a5d269 !important;border-bottom-style: solid !important;}.vc_custom_1571738001497{padding-bottom: 20px !important;}.vc_custom_1571738005198{padding-bottom: 20px !important;}.vc_custom_1571738008833{padding-bottom: 20px !important;}.vc_custom_1572960926723{margin-top: 80px !important;margin-bottom: 80px !important;}.vc_custom_1571687925322{margin-right: 0px !important;margin-left: 0px !important;padding-top: 80px !important;padding-right: 10% !important;padding-bottom: 80px !important;padding-left: 10% !important;background-color: #ffffff !important;}.vc_custom_1571688097497{padding-top: 10px !important;padding-bottom: 30px !important;}.vc_custom_1571784287469{margin-right: 10px !important;margin-bottom: 10px !important;}.vc_custom_1571784290693{margin-right: 10px !important;margin-bottom: 10px !important;}.vc_custom_1571687933338{margin-right: 0px !important;margin-left: 0px !important;padding-top: 80px !important;padding-right: 10% !important;padding-bottom: 80px !important;padding-left: 10% !important;background-color: #ffffff !important;}.vc_custom_1572960919144{margin-top: 80px !important;margin-bottom: 80px !important;}.vc_custom_1571687359578{padding-top: 10px !important;padding-bottom: 30px !important;}.vc_custom_1571784295297{margin-right: 10px !important;margin-bottom: 10px !important;}.vc_custom_1571784299431{margin-right: 10px !important;margin-bottom: 10px !important;}.vc_custom_1572960932782{margin-top: 80px !important;margin-bottom: 80px !important;}.vc_custom_1571687940372{margin-right: 0px !important;margin-left: 0px !important;padding-top: 80px !important;padding-right: 10% !important;padding-bottom: 80px !important;padding-left: 10% !important;background-color: #ffffff !important;}.vc_custom_1571686876825{padding-top: 10px !important;padding-bottom: 30px !important;}.vc_custom_1571784303751{margin-right: 10px !important;margin-bottom: 10px !important;}.vc_custom_1571784306785{margin-right: 10px !important;margin-bottom: 10px !important;}.vc_custom_1571742174632{margin-right: 0px !important;margin-left: 0px !important;padding-top: 70px !important;padding-right: 7% !important;padding-bottom: 40px !important;padding-left: 7% !important;}.vc_custom_1571823390537{padding-right: 20px !important;padding-left: 20px !important;}.vc_custom_1570630646410{padding-bottom: 60px !important;}.vc_custom_1571778140885{padding-bottom: 20px !important;}.vc_custom_1572961015403{margin-right: 25px !important;margin-bottom: 40px !important;margin-left: 25px !important;padding-top: 80px !important;padding-right: 30px !important;padding-bottom: 80px !important;padding-left: 30px !important;background-image: url(https://the7.io/nutritionist/wp-content/uploads/sites/57/2019/10/art-dark-010.jpg?id=2378) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}.vc_custom_1571666210466{padding-bottom: 30px !important;}.vc_custom_1571666361917{padding-bottom: 30px !important;}.vc_custom_1571666217380{padding-bottom: 30px !important;}.vc_custom_1571666457523{padding-bottom: 30px !important;}.vc_custom_1571666213920{padding-bottom: 30px !important;}.vc_custom_1571666391675{padding-bottom: 30px !important;}.vc_custom_1570811252407{padding-bottom: 60px !important;}.vc_custom_1570811379442{padding-bottom: 20px !important;}.vc_custom_1571779050147{margin-right: 0px !important;margin-left: 0px !important;padding-right: 10% !important;padding-left: 10% !important;}.vc_custom_1571779095999{padding-right: 15px !important;padding-bottom: 30px !important;padding-left: 15px !important;}.vc_custom_1571779151656{padding-right: 15px !important;padding-bottom: 30px !important;padding-left: 15px !important;}.vc_custom_1570961719371{padding-right: 15px !important;padding-left: 15px !important;}.vc_custom_1571818976642{padding-bottom: 60px !important;}.vc_custom_1571778746664{margin-bottom: 40px !important;}.vc_custom_1572961026972{margin-right: 25px !important;margin-bottom: 40px !important;margin-left: 25px !important;padding-top: 50px !important;padding-right: 15% !important;padding-bottom: 150px !important;padding-left: 15% !important;background-image: url(https://the7.io/nutritionist/wp-content/uploads/sites/57/2019/10/banner-bg-n.jpg?id=1307) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}.vc_custom_1570960289601{padding-top: 30px !important;}.vc_custom_1572882204703{padding-top: 70px !important;}.vc_custom_1570715969435{padding-bottom: 60px !important;}.vc_custom_1571823370491{padding-right: 20px !important;padding-bottom: 60px !important;padding-left: 20px !important;}.vc_custom_1570811379442{padding-bottom: 20px !important;}.vc_custom_1571321026293{padding-top: 50px !important;}.vc_custom_1571780980344{padding-bottom: 20px !important;}.vc_custom_1571780994409{padding-bottom: 5px !important;}.vc_custom_1571321124547{padding-bottom: 30px !important;}.vc_custom_1571781212809{padding-bottom: 15px !important;}.vc_custom_1571781287492{padding-bottom: 15px !important;}.vc_custom_1571781350799{padding-bottom: 15px !important;}.vc_custom_1571781370752{padding-bottom: 15px !important;}.vc_custom_1572961070105{margin-bottom: 12px !important;}.vc_custom_1572961077242{margin-bottom: 12px !important;}.vc_custom_1572961081033{margin-bottom: 12px !important;}.vc_custom_1572961084926{margin-bottom: 12px !important;}'),(430,1577,'slide_template','default'),(431,1577,'_dt_sidebar_position','disabled'),(432,1577,'_dt_sidebar_widgetarea_id','sidebar_1'),(433,1577,'_dt_sidebar_hide_on_mobile','0'),(434,1577,'_dt_footer_show','0'),(435,1577,'_dt_footer_widgetarea_id','sidebar_2'),(436,1577,'_dt_footer_hide_on_mobile','0'),(437,1577,'_dt_header_title','disabled'),(438,1577,'_dt_header_background','normal'),(439,1577,'_dt_header_background_below_slideshow','disabled'),(440,1577,'_dt_header_transparent_bg_color_scheme','light'),(441,1577,'_dt_header_transparent_top_bar_bg_color','#ffffff'),(442,1577,'_dt_header_transparent_top_bar_bg_opacity','25'),(443,1577,'_dt_header_transparent_bg_color','#000000'),(444,1577,'_dt_header_transparent_bg_opacity','50'),(445,1577,'_dt_header_disabled_background','normal'),(446,1577,'_dt_header_disabled_transparent_bg_color_scheme','light'),(447,1577,'_dt_header_disabled_transparent_top_bar_bg_color','#ffffff'),(448,1577,'_dt_header_disabled_transparent_top_bar_bg_opacity','25'),(449,1577,'_dt_header_disabled_transparent_bg_color','#000000'),(450,1577,'_dt_header_disabled_transparent_bg_opacity','50'),(451,1577,'_dt_page_overrides_top_margin','0px'),(452,1577,'_dt_page_overrides_bottom_margin','0px'),(453,1577,'_wp_page_template','template-microsite.php'),(454,1577,'_wpb_vc_js_status','true'),(455,1577,'_wpb_shortcodes_custom_css','.vc_custom_1571819170390{padding-top: 50px !important;padding-bottom: 50px !important;background-color: #f2f3f7 !important;}.vc_custom_1571217829354{padding-top: 70px !important;padding-bottom: 40px !important;}.vc_custom_1571308835477{padding-top: 50px !important;padding-bottom: 40px !important;}.vc_custom_1571776445092{padding-top: 70px !important;padding-bottom: 50px !important;background-color: #f4f5f7 !important;}.vc_custom_1571676243312{padding-top: 70px !important;padding-right: 30px !important;padding-bottom: 70px !important;padding-left: 30px !important;}.vc_custom_1571740990811{padding-bottom: 70px !important;}.vc_custom_1571778028784{padding-top: 70px !important;padding-bottom: 50px !important;}.vc_custom_1571307696176{padding-top: 70px !important;padding-bottom: 70px !important;}.vc_custom_1571739000318{padding-top: 80px !important;padding-bottom: 80px !important;}.vc_custom_1571778741464{padding-top: 70px !important;padding-bottom: 50px !important;background-color: #ffffff !important;}.vc_custom_1572882217514{padding-right: 25px !important;padding-bottom: 60px !important;padding-left: 25px !important;}.vc_custom_1571307714139{padding-top: 70px !important;padding-bottom: 90px !important;}.vc_custom_1571307722298{padding-top: 70px !important;padding-bottom: 70px !important;}.vc_custom_1571819161146{margin-right: 0px !important;margin-left: 0px !important;padding-top: 20px !important;padding-right: 12% !important;padding-bottom: 30px !important;padding-left: 12% !important;}.vc_custom_1571780887485{margin-right: 0px !important;margin-left: 0px !important;padding-right: 50px !important;}.vc_custom_1571772935103{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}.vc_custom_1571777157923{margin-right: 10px !important;margin-bottom: 10px !important;margin-left: 10px !important;}.vc_custom_1580818256742{padding-right: 100px !important;}.vc_custom_1572960969632{margin-top: -100px !important;}.vc_custom_1572960964429{margin-top: -200px !important;margin-right: -300px !important;}.vc_custom_1570820895927{padding-bottom: 30px !important;}.vc_custom_1570820912604{padding-bottom: 30px !important;}.vc_custom_1570820986883{padding-bottom: 30px !important;}.vc_custom_1571784117345{margin-right: 10px !important;margin-bottom: 10px !important;}.vc_custom_1571784132499{margin-right: 10px !important;margin-bottom: 10px !important;}.vc_custom_1571784139181{margin-right: 10px !important;margin-bottom: 10px !important;}.vc_custom_1570819953995{padding-right: 0px !important;padding-left: 50px !important;}.vc_custom_1570819933702{padding-right: 0px !important;padding-left: 50px !important;}.vc_custom_1570819938399{padding-right: 0px !important;padding-left: 50px !important;}.vc_custom_1570819942715{padding-right: 0px !important;padding-left: 50px !important;}.vc_custom_1571775601629{margin-bottom: 10px !important;}.vc_custom_1571775621055{margin-bottom: 10px !important;}.vc_custom_1571775625451{margin-bottom: 10px !important;}.vc_custom_1571775629446{margin-bottom: 10px !important;}.vc_custom_1570630646410{padding-bottom: 60px !important;}.vc_custom_1571778132554{padding-bottom: 20px !important;}.vc_custom_1572960998823{margin-right: 25px !important;margin-bottom: 40px !important;margin-left: 25px !important;padding-top: 80px !important;padding-right: 30px !important;padding-bottom: 80px !important;padding-left: 30px !important;background-image: url(https://the7.io/nutritionist/wp-content/uploads/sites/57/2019/10/art-dark-006.jpg?id=2363) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}.vc_custom_1571666105681{padding-bottom: 30px !important;}.vc_custom_1571666115885{padding-bottom: 30px !important;}.vc_custom_1571666124175{padding-bottom: 30px !important;}.vc_custom_1571666156554{padding-bottom: 30px !important;}.vc_custom_1571666162750{padding-bottom: 30px !important;}.vc_custom_1571666174619{padding-bottom: 30px !important;}.vc_custom_1570895827963{padding-bottom: 30px !important;}.vc_custom_1572960938883{border-top-width: 4px !important;border-right-width: 4px !important;border-bottom-width: 4px !important;border-left-width: 4px !important;padding-top: 30px !important;padding-right: 10px !important;padding-bottom: 30px !important;padding-left: 10px !important;border-left-color: #a5d269 !important;border-left-style: solid !important;border-right-color: #a5d269 !important;border-right-style: solid !important;border-top-color: #a5d269 !important;border-top-style: solid !important;border-bottom-color: #a5d269 !important;border-bottom-style: solid !important;}.vc_custom_1572960944946{border-top-width: 4px !important;border-right-width: 4px !important;border-bottom-width: 4px !important;border-left-width: 4px !important;padding-top: 30px !important;padding-right: 10px !important;padding-bottom: 30px !important;padding-left: 10px !important;border-left-color: #a5d269 !important;border-left-style: solid !important;border-right-color: #a5d269 !important;border-right-style: solid !important;border-top-color: #a5d269 !important;border-top-style: solid !important;border-bottom-color: #a5d269 !important;border-bottom-style: solid !important;}.vc_custom_1572960953384{border-top-width: 4px !important;border-right-width: 4px !important;border-bottom-width: 4px !important;border-left-width: 4px !important;padding-top: 30px !important;padding-right: 10px !important;padding-bottom: 30px !important;padding-left: 10px !important;border-left-color: #a5d269 !important;border-left-style: solid !important;border-right-color: #a5d269 !important;border-right-style: solid !important;border-top-color: #a5d269 !important;border-top-style: solid !important;border-bottom-color: #a5d269 !important;border-bottom-style: solid !important;}.vc_custom_1571738001497{padding-bottom: 20px !important;}.vc_custom_1571738005198{padding-bottom: 20px !important;}.vc_custom_1571738008833{padding-bottom: 20px !important;}.vc_custom_1572960926723{margin-top: 80px !important;margin-bottom: 80px !important;}.vc_custom_1571687925322{margin-right: 0px !important;margin-left: 0px !important;padding-top: 80px !important;padding-right: 10% !important;padding-bottom: 80px !important;padding-left: 10% !important;background-color: #ffffff !important;}.vc_custom_1571688097497{padding-top: 10px !important;padding-bottom: 30px !important;}.vc_custom_1571784287469{margin-right: 10px !important;margin-bottom: 10px !important;}.vc_custom_1571784290693{margin-right: 10px !important;margin-bottom: 10px !important;}.vc_custom_1571687933338{margin-right: 0px !important;margin-left: 0px !important;padding-top: 80px !important;padding-right: 10% !important;padding-bottom: 80px !important;padding-left: 10% !important;background-color: #ffffff !important;}.vc_custom_1572960919144{margin-top: 80px !important;margin-bottom: 80px !important;}.vc_custom_1571687359578{padding-top: 10px !important;padding-bottom: 30px !important;}.vc_custom_1571784295297{margin-right: 10px !important;margin-bottom: 10px !important;}.vc_custom_1571784299431{margin-right: 10px !important;margin-bottom: 10px !important;}.vc_custom_1572960932782{margin-top: 80px !important;margin-bottom: 80px !important;}.vc_custom_1571687940372{margin-right: 0px !important;margin-left: 0px !important;padding-top: 80px !important;padding-right: 10% !important;padding-bottom: 80px !important;padding-left: 10% !important;background-color: #ffffff !important;}.vc_custom_1571686876825{padding-top: 10px !important;padding-bottom: 30px !important;}.vc_custom_1571784303751{margin-right: 10px !important;margin-bottom: 10px !important;}.vc_custom_1571784306785{margin-right: 10px !important;margin-bottom: 10px !important;}.vc_custom_1571742174632{margin-right: 0px !important;margin-left: 0px !important;padding-top: 70px !important;padding-right: 7% !important;padding-bottom: 40px !important;padding-left: 7% !important;}.vc_custom_1571823390537{padding-right: 20px !important;padding-left: 20px !important;}.vc_custom_1570630646410{padding-bottom: 60px !important;}.vc_custom_1571778140885{padding-bottom: 20px !important;}.vc_custom_1572961015403{margin-right: 25px !important;margin-bottom: 40px !important;margin-left: 25px !important;padding-top: 80px !important;padding-right: 30px !important;padding-bottom: 80px !important;padding-left: 30px !important;background-image: url(https://the7.io/nutritionist/wp-content/uploads/sites/57/2019/10/art-dark-010.jpg?id=2378) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}.vc_custom_1571666210466{padding-bottom: 30px !important;}.vc_custom_1571666361917{padding-bottom: 30px !important;}.vc_custom_1571666217380{padding-bottom: 30px !important;}.vc_custom_1571666457523{padding-bottom: 30px !important;}.vc_custom_1571666213920{padding-bottom: 30px !important;}.vc_custom_1571666391675{padding-bottom: 30px !important;}.vc_custom_1570811252407{padding-bottom: 60px !important;}.vc_custom_1570811379442{padding-bottom: 20px !important;}.vc_custom_1571779050147{margin-right: 0px !important;margin-left: 0px !important;padding-right: 10% !important;padding-left: 10% !important;}.vc_custom_1571779095999{padding-right: 15px !important;padding-bottom: 30px !important;padding-left: 15px !important;}.vc_custom_1571779151656{padding-right: 15px !important;padding-bottom: 30px !important;padding-left: 15px !important;}.vc_custom_1570961719371{padding-right: 15px !important;padding-left: 15px !important;}.vc_custom_1571818976642{padding-bottom: 60px !important;}.vc_custom_1571778746664{margin-bottom: 40px !important;}.vc_custom_1572961026972{margin-right: 25px !important;margin-bottom: 40px !important;margin-left: 25px !important;padding-top: 50px !important;padding-right: 15% !important;padding-bottom: 150px !important;padding-left: 15% !important;background-image: url(https://the7.io/nutritionist/wp-content/uploads/sites/57/2019/10/banner-bg-n.jpg?id=1307) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}.vc_custom_1570960289601{padding-top: 30px !important;}.vc_custom_1572882204703{padding-top: 70px !important;}.vc_custom_1570715969435{padding-bottom: 60px !important;}.vc_custom_1571823370491{padding-right: 20px !important;padding-bottom: 60px !important;padding-left: 20px !important;}.vc_custom_1570811379442{padding-bottom: 20px !important;}.vc_custom_1571321026293{padding-top: 50px !important;}.vc_custom_1571780980344{padding-bottom: 20px !important;}.vc_custom_1571780994409{padding-bottom: 5px !important;}.vc_custom_1571321124547{padding-bottom: 30px !important;}.vc_custom_1571781212809{padding-bottom: 15px !important;}.vc_custom_1571781287492{padding-bottom: 15px !important;}.vc_custom_1571781350799{padding-bottom: 15px !important;}.vc_custom_1571781370752{padding-bottom: 15px !important;}.vc_custom_1572961070105{margin-bottom: 12px !important;}.vc_custom_1572961077242{margin-bottom: 12px !important;}.vc_custom_1572961081033{margin-bottom: 12px !important;}.vc_custom_1572961084926{margin-bottom: 12px !important;}'),(456,1577,'_oembed_b90d526c7a1b534eb29ecbd5cbf1d543','<iframe title=\"Beautiful Relaxing Music for Stress Relief • Meditation Music, Sleep Music, Ambient Study Music\" width=\"200\" height=\"113\" src=\"https://www.youtube.com/embed/2OEL4P1Rz04?feature=oembed\" frameborder=\"0\" allow=\"accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture\" allowfullscreen></iframe>'),(457,1577,'_oembed_time_b90d526c7a1b534eb29ecbd5cbf1d543','1571246583'),(458,1577,'_dt_microsite_page_layout','wide'),(459,1577,'_dt_microsite_page_loading','enabled'),(460,1577,'_dt_microsite_primary_menu','16'),(461,1577,'_dt_microsite_split_left_menu',''),(462,1577,'_dt_microsite_split_right_menu','16'),(463,1577,'_dt_microsite_mobile_menu','16'),(464,1577,'_dt_microsite_logo_link',''),(465,1577,'main_logo_heading',''),(466,1577,'_dt_microsite_main_logo_type','default'),(467,1577,'_dt_microsite_main_logo_regular','a:0:{}'),(468,1577,'_dt_microsite_main_logo_hd','a:0:{}'),(469,1577,'transparent_logo_heading',''),(470,1577,'_dt_microsite_transparent_logo_type','default'),(471,1577,'_dt_microsite_transparent_logo_regular','a:0:{}'),(472,1577,'_dt_microsite_transparent_logo_hd','a:0:{}'),(473,1577,'_dt_microsite_mixed_logo_type','default'),(474,1577,'_dt_microsite_mixed_logo_regular','a:0:{}'),(475,1577,'_dt_microsite_mixed_logo_hd','a:0:{}'),(476,1577,'floating_logo_heading',''),(477,1577,'_dt_microsite_floating_logo_type','default'),(478,1577,'_dt_microsite_floating_logo_regular','a:0:{}'),(479,1577,'_dt_microsite_floating_logo_hd','a:0:{}'),(480,1577,'_dt_microsite_mobile_logo_type','default'),(481,1577,'_dt_microsite_mobile_logo_regular','a:0:{}'),(482,1577,'_dt_microsite_mobile_logo_hd','a:0:{}'),(483,1577,'_dt_microsite_transparent_mobile_logo_type','default'),(484,1577,'_dt_microsite_transparent_mobile_logo_regular','a:0:{}'),(485,1577,'_dt_microsite_transparent_mobile_logo_hd','a:0:{}'),(486,1577,'bottom_logo_heading',''),(487,1577,'_dt_microsite_bottom_logo_type','default'),(488,1577,'_dt_microsite_bottom_logo_regular','a:0:{}'),(489,1577,'_dt_microsite_bottom_logo_hd','a:0:{}'),(490,1577,'favicon_heading',''),(491,1577,'_dt_microsite_favicon_type','default'),(492,1577,'_dt_microsite_favicon','a:0:{}'),(493,1577,'_dt_microsite_favicon_hd','a:0:{}'),(495,1577,'rs_page_bg_color','#ffffff'),(496,1577,'_dt_page_overrides_right_margin',''),(497,1577,'_dt_page_overrides_left_margin',''),(498,1577,'_dt_mobile_page_padding_top','0px'),(499,1577,'_dt_mobile_page_padding_bottom','0px'),(500,1577,'the7_fancy_title_css','#main {\n  padding-top: 0px;\n  padding-bottom: 0px;\n}\n@media screen and (max-width: 778px) {\n  #main {\n    padding-top: 0px;\n    padding-bottom: 0px;\n  }\n}\n'),(502,1002,'slide_template','default'),(503,1002,'_wpb_vc_js_status','false'),(504,1002,'_dt_sidebar_position','right'),(505,1002,'_dt_sidebar_widgetarea_id','sidebar_1'),(506,1002,'_dt_sidebar_hide_on_mobile','0'),(507,1002,'_dt_footer_show','1'),(508,1002,'_dt_footer_widgetarea_id','sidebar_2'),(509,1002,'_dt_footer_hide_on_mobile','0'),(510,1002,'_dt_header_title','enabled'),(511,1002,'_dt_header_background','normal'),(512,1002,'_dt_header_background_below_slideshow','disabled'),(513,1002,'_dt_header_transparent_bg_color_scheme','light'),(514,1002,'_dt_header_transparent_top_bar_bg_color','#ffffff'),(515,1002,'_dt_header_transparent_top_bar_bg_opacity','25'),(516,1002,'_dt_header_transparent_bg_color','#000000'),(517,1002,'_dt_header_transparent_bg_opacity','50'),(518,1002,'_dt_header_disabled_background','normal'),(519,1002,'_dt_header_disabled_transparent_bg_color_scheme','light'),(520,1002,'_dt_header_disabled_transparent_top_bar_bg_color','#ffffff'),(521,1002,'_dt_header_disabled_transparent_top_bar_bg_opacity','25'),(522,1002,'_dt_header_disabled_transparent_bg_color','#000000'),(523,1002,'_dt_header_disabled_transparent_bg_opacity','50'),(524,1002,'_dt_page_overrides_top_margin',''),(525,1002,'_dt_page_overrides_bottom_margin',''),(526,1002,'_dt_testimonial_options_go_to_single','0'),(527,1002,'_dt_testimonial_options_position','lost 15kg in 2 months'),(528,1002,'_wp_old_date','2019-10-10'),(530,1010,'slide_template','default'),(531,1010,'_wpb_vc_js_status','false'),(532,1010,'_dt_sidebar_position','right'),(533,1010,'_dt_sidebar_widgetarea_id','sidebar_1'),(534,1010,'_dt_sidebar_hide_on_mobile','0'),(535,1010,'_dt_footer_show','1'),(536,1010,'_dt_footer_widgetarea_id','sidebar_2'),(537,1010,'_dt_footer_hide_on_mobile','0'),(538,1010,'_dt_header_title','enabled'),(539,1010,'_dt_header_background','normal'),(540,1010,'_dt_header_background_below_slideshow','disabled'),(541,1010,'_dt_header_transparent_bg_color_scheme','light'),(542,1010,'_dt_header_transparent_top_bar_bg_color','#ffffff'),(543,1010,'_dt_header_transparent_top_bar_bg_opacity','25'),(544,1010,'_dt_header_transparent_bg_color','#000000'),(545,1010,'_dt_header_transparent_bg_opacity','50'),(546,1010,'_dt_header_disabled_background','normal'),(547,1010,'_dt_header_disabled_transparent_bg_color_scheme','light'),(548,1010,'_dt_header_disabled_transparent_top_bar_bg_color','#ffffff'),(549,1010,'_dt_header_disabled_transparent_top_bar_bg_opacity','25'),(550,1010,'_dt_header_disabled_transparent_bg_color','#000000'),(551,1010,'_dt_header_disabled_transparent_bg_opacity','50'),(552,1010,'_dt_page_overrides_top_margin',''),(553,1010,'_dt_page_overrides_bottom_margin',''),(554,1010,'_dt_testimonial_options_go_to_single','0'),(555,1010,'_dt_testimonial_options_position','lost 4kg in 1.5 months'),(556,1010,'_wp_old_date','2019-10-10'),(557,1082,'_wp_old_date','2019-10-11'),(558,1082,'slide_template','default'),(559,1082,'_wpb_vc_js_status','false'),(560,1082,'_dt_sidebar_position','right'),(561,1082,'_dt_sidebar_widgetarea_id','sidebar_1'),(562,1082,'_dt_sidebar_hide_on_mobile','0'),(563,1082,'_dt_footer_show','1'),(564,1082,'_dt_footer_widgetarea_id','sidebar_2'),(565,1082,'_dt_footer_hide_on_mobile','0'),(566,1082,'_dt_header_title','enabled'),(567,1082,'_dt_header_background','normal'),(568,1082,'_dt_header_background_below_slideshow','disabled'),(569,1082,'_dt_header_transparent_bg_color_scheme','light'),(570,1082,'_dt_header_transparent_top_bar_bg_color','#ffffff'),(571,1082,'_dt_header_transparent_top_bar_bg_opacity','25'),(572,1082,'_dt_header_transparent_bg_color','#000000'),(573,1082,'_dt_header_transparent_bg_opacity','50'),(574,1082,'_dt_header_disabled_background','normal'),(575,1082,'_dt_header_disabled_transparent_bg_color_scheme','light'),(576,1082,'_dt_header_disabled_transparent_top_bar_bg_color','#ffffff'),(577,1082,'_dt_header_disabled_transparent_top_bar_bg_opacity','25'),(578,1082,'_dt_header_disabled_transparent_bg_color','#000000'),(579,1082,'_dt_header_disabled_transparent_bg_opacity','50'),(580,1082,'_dt_page_overrides_top_margin',''),(581,1082,'_dt_page_overrides_bottom_margin',''),(582,1082,'_dt_testimonial_options_go_to_single','0'),(583,1082,'_dt_testimonial_options_position','lost 5kg in 2 months'),(584,1082,'_wp_old_date','2019-08-11'),(17634,3370,'_dt_fancy_header_responsiveness_heading',''),(586,1768,'slide_template','default'),(587,1768,'_dt_sidebar_position','right'),(588,1768,'_dt_sidebar_widgetarea_id','sidebar_1'),(589,1768,'_dt_sidebar_hide_on_mobile','0'),(590,1768,'_dt_footer_show','1'),(591,1768,'_dt_footer_widgetarea_id','sidebar_2'),(592,1768,'_dt_footer_hide_on_mobile','0'),(593,1768,'_dt_header_title','enabled'),(594,1768,'_dt_header_background','normal'),(595,1768,'_dt_header_background_below_slideshow','disabled'),(596,1768,'_dt_header_transparent_bg_color_scheme','light'),(597,1768,'_dt_header_transparent_top_bar_bg_color','#ffffff'),(598,1768,'_dt_header_transparent_top_bar_bg_opacity','25'),(599,1768,'_dt_header_transparent_bg_color','#000000'),(600,1768,'_dt_header_transparent_bg_opacity','50'),(601,1768,'_dt_header_disabled_background','normal'),(602,1768,'_dt_header_disabled_transparent_bg_color_scheme','light'),(603,1768,'_dt_header_disabled_transparent_top_bar_bg_color','#ffffff'),(604,1768,'_dt_header_disabled_transparent_top_bar_bg_opacity','25'),(605,1768,'_dt_header_disabled_transparent_bg_color','#000000'),(606,1768,'_dt_header_disabled_transparent_bg_opacity','50'),(607,1768,'_dt_page_overrides_top_margin',''),(608,1768,'_dt_page_overrides_bottom_margin',''),(609,1768,'_dt_testimonial_options_go_to_single','0'),(610,1768,'_dt_testimonial_options_position','lost 5kg in 3 months'),(612,1781,'slide_template','default'),(613,1781,'_dt_sidebar_position','right'),(614,1781,'_dt_sidebar_widgetarea_id','sidebar_1'),(615,1781,'_dt_sidebar_hide_on_mobile','0'),(616,1781,'_dt_footer_show','1'),(617,1781,'_dt_footer_widgetarea_id','sidebar_2'),(618,1781,'_dt_footer_hide_on_mobile','0'),(619,1781,'_dt_header_title','enabled'),(620,1781,'_dt_header_background','normal'),(621,1781,'_dt_header_background_below_slideshow','disabled'),(622,1781,'_dt_header_transparent_bg_color_scheme','light'),(623,1781,'_dt_header_transparent_top_bar_bg_color','#ffffff'),(624,1781,'_dt_header_transparent_top_bar_bg_opacity','25'),(625,1781,'_dt_header_transparent_bg_color','#000000'),(626,1781,'_dt_header_transparent_bg_opacity','50'),(627,1781,'_dt_header_disabled_background','normal'),(628,1781,'_dt_header_disabled_transparent_bg_color_scheme','light'),(629,1781,'_dt_header_disabled_transparent_top_bar_bg_color','#ffffff'),(630,1781,'_dt_header_disabled_transparent_top_bar_bg_opacity','25'),(631,1781,'_dt_header_disabled_transparent_bg_color','#000000'),(632,1781,'_dt_header_disabled_transparent_bg_opacity','50'),(633,1781,'_dt_page_overrides_top_margin',''),(634,1781,'_dt_page_overrides_bottom_margin',''),(635,1781,'_dt_testimonial_options_go_to_single','0'),(636,1781,'_dt_testimonial_options_position','lost 7kg in 2months'),(638,1781,'_wp_old_date','2019-10-17'),(2132,39,'_wp_old_date','2022-08-30'),(2131,2421,'_wp_old_date','2022-08-30'),(2130,2420,'_wp_old_date','2022-08-30'),(2129,2419,'_wp_old_date','2022-08-30'),(2128,2418,'_wp_old_date','2022-08-30'),(2127,2417,'_wp_old_date','2022-08-30'),(12942,2911,'_menu_item_menu_item_parent','0'),(12943,2911,'_menu_item_object_id','2525'),(12944,2911,'_menu_item_object','page'),(15600,3219,'_dt_sidebar_position','right'),(2089,2633,'_dt_fancy_header_bg_repeat','no-repeat'),(2088,2633,'_dt_fancy_header_bg_image_origin','custom'),(2087,2633,'_dt_fancy_header_bg_color','#222222'),(2086,2633,'_dt_fancy_header_bg_heading',''),(2085,2633,'_dt_fancy_header_subtitle_color','#ffffff'),(2084,2633,'_dt_fancy_header_subtitle_color_mode','color'),(2083,2633,'_dt_fancy_header_subtitle_text_transform','none'),(2082,2633,'_dt_fancy_header_subtitle_line_height','26'),(2081,2633,'_dt_fancy_header_subtitle_font_size','18'),(2080,2633,'_dt_fancy_header_subtitle',''),(2079,2633,'_dt_fancy_header_subtitle_heading',''),(2078,2633,'_dt_fancy_header_title_color','#ffffff'),(2077,2633,'_dt_fancy_header_title_color_mode','color'),(2076,2633,'_dt_fancy_header_text_transform','none'),(2075,2633,'_dt_fancy_header_title_line_height','36'),(2074,2633,'_dt_fancy_header_title_font_size','30'),(2073,2633,'_dt_fancy_header_title',''),(2072,2633,'_dt_fancy_header_title_mode','custom'),(2071,2633,'_dt_fancy_header_title_heading',''),(2070,2633,'_dt_fancy_header_breadcrumbs_bg_color','disabled'),(2069,2633,'_dt_fancy_header_breadcrumbs_text_color','#ffffff'),(2068,2633,'_dt_fancy_header_breadcrumbs','disabled'),(2067,2633,'_dt_fancy_header_breadcrumbs_heading',''),(2111,2633,'the7_fancy_title_css','.fancy-header {\n  background-image: url(\'https://farmchemie.yasithawd.com/wp-content/uploads/2023/08/ABOUT-US.png\');\n  background-repeat: no-repeat;\n  background-position: center center;\n  background-size: cover;\n  background-color: #222222;\n}\n.mobile-false .fancy-header {\n  background-attachment: scroll;\n}\n.fancy-header .wf-wrap {\n  min-height: 300px;\n  padding-top: 0px;\n  padding-bottom: 0px;\n}\n.fancy-header .fancy-title {\n  font-size: 30px;\n  line-height: 36px;\n  color: #ffffff;\n  text-transform: none;\n}\n.fancy-header .fancy-subtitle {\n  font-size: 18px;\n  line-height: 26px;\n  color: #ffffff;\n  text-transform: none;\n}\n.fancy-header .breadcrumbs {\n  color: #ffffff;\n}\n.fancy-header-overlay {\n  background: rgba(0,0,0,0.5);\n}\n@media screen and (max-width: 778px) {\n  .fancy-header .wf-wrap {\n    min-height: 70px;\n  }\n  .fancy-header .fancy-title {\n    font-size: 30px;\n    line-height: 38px;\n  }\n  .fancy-header .fancy-subtitle {\n    font-size: 20px;\n    line-height: 28px;\n  }\n  .fancy-header.breadcrumbs-mobile-off .breadcrumbs {\n    display: none;\n  }\n  #fancy-header > .wf-wrap {\n    flex-flow: column wrap;\n    align-items: center;\n    justify-content: center;\n    padding-bottom: 0px !important;\n  }\n  .fancy-header.title-left .breadcrumbs {\n    text-align: center;\n    float: none;\n  }\n  .breadcrumbs {\n    margin-bottom: 10px;\n  }\n  .breadcrumbs.breadcrumbs-bg {\n    margin-top: 10px;\n  }\n  .fancy-header.title-right .breadcrumbs {\n    margin: 10px 0 10px 0;\n  }\n  #fancy-header .hgroup,\n  #fancy-header .breadcrumbs {\n    text-align: center;\n  }\n  .fancy-header .hgroup {\n    padding-bottom: 5px;\n  }\n  .breadcrumbs-off .hgroup {\n    padding-bottom: 5px;\n  }\n  .title-right .hgroup {\n    padding: 0 0 5px 0;\n  }\n  .title-right.breadcrumbs-off .hgroup {\n    padding-top: 5px;\n  }\n  .title-left.disabled-bg .breadcrumbs {\n    margin-bottom: 0;\n  }\n}\n'),(2110,2633,'_dt_microsite_mobile_menu',''),(2109,2633,'_dt_microsite_split_right_menu',''),(2108,2633,'_dt_microsite_split_left_menu',''),(2107,2633,'_dt_microsite_primary_menu',''),(2106,2633,'_dt_fancy_header_responsive_breadcrumbs','disabled'),(2105,2633,'_dt_fancy_header_responsive_subtitle_line_height','28'),(2104,2633,'_dt_fancy_header_responsive_subtitle_font_size','20'),(2103,2633,'_dt_fancy_header_responsive_title_line_height','38'),(2102,2633,'_dt_fancy_header_responsive_font_size','30'),(2101,2633,'_dt_fancy_header_responsive_height','70'),(2100,2633,'_dt_fancy_header_responsiveness_switch','778px'),(2099,2633,'_dt_fancy_header_responsiveness','enabled'),(2098,2633,'_dt_fancy_header_responsiveness_heading',''),(2097,2633,'_dt_fancy_header_bg_parallax','0.5'),(2096,2633,'_dt_fancy_header_scroll_effect','default'),(2095,2633,'_dt_fancy_header_bg_overlay_opacity','50'),(2094,2633,'_dt_fancy_header_overlay_color','#000'),(2093,2633,'_dt_fancy_header_bg_overlay','0'),(2063,2633,'_dt_fancy_header_title_aligment','center'),(2062,2633,'_dt_fancy_header_layout_heading',''),(2061,2633,'_dt_mobile_page_padding_left',''),(2060,2633,'_dt_mobile_page_padding_bottom',''),(2059,2633,'_dt_mobile_page_padding_right',''),(2058,2633,'_dt_mobile_page_padding_top',''),(2057,2633,'_dt_page_overrides_left_margin',''),(2056,2633,'_dt_page_overrides_bottom_margin',''),(2055,2633,'_dt_page_overrides_right_margin',''),(2054,2633,'_dt_page_overrides_top_margin',''),(2053,2633,'_dt_header_disabled_transparent_bg_opacity','50'),(2052,2633,'_dt_header_disabled_transparent_bg_color','#000000'),(2051,2633,'_dt_header_disabled_transparent_top_bar_bg_opacity','25'),(2050,2633,'_dt_header_disabled_transparent_top_bar_bg_color','#ffffff'),(2049,2633,'_dt_header_disabled_transparent_bg_color_scheme','light'),(2048,2633,'_dt_header_disabled_background','normal'),(2047,2633,'_dt_header_transparent_bg_opacity','50'),(2046,2633,'_dt_header_transparent_bg_color','#000000'),(2045,2633,'_dt_header_transparent_top_bar_bg_opacity','25'),(2044,2633,'_dt_header_transparent_top_bar_bg_color','#ffffff'),(2011,2622,'_dt_header_disabled_transparent_top_bar_bg_opacity','25'),(2010,2622,'_dt_header_disabled_transparent_top_bar_bg_color','#ffffff'),(2009,2622,'_dt_header_disabled_transparent_bg_color_scheme','light'),(2008,2622,'_dt_header_disabled_background','normal'),(2007,2622,'_dt_header_transparent_bg_opacity','50'),(2006,2622,'_dt_header_transparent_bg_color','#000000'),(2005,2622,'_dt_header_transparent_top_bar_bg_opacity','25'),(2004,2622,'_dt_header_transparent_top_bar_bg_color','#ffffff'),(2003,2622,'_dt_header_transparent_bg_color_scheme','light'),(2002,2622,'_dt_header_background_below_slideshow','disabled'),(2001,2622,'_dt_header_background','normal'),(2000,2622,'_dt_header_title','fancy'),(1999,2622,'_dt_footer_hide_on_mobile','0'),(1998,2622,'_dt_footer_widgetarea_id','sidebar_3'),(1997,2622,'_dt_footer_show','1'),(1996,2622,'_dt_sidebar_hide_on_mobile','0'),(1995,2622,'_dt_sidebar_widgetarea_id','sidebar_1'),(1994,2622,'_dt_sidebar_position','disabled'),(1993,2622,'_wpb_vc_js_status','true'),(1992,2622,'_wp_page_template','default'),(1991,2622,'_edit_lock','1695553991:1'),(1990,2622,'_edit_last','1'),(2041,2633,'_dt_header_background','normal'),(2040,2633,'_dt_header_title','fancy'),(2039,2633,'_dt_footer_hide_on_mobile','0'),(2038,2633,'_dt_footer_widgetarea_id','sidebar_3'),(2037,2633,'_dt_footer_show','1'),(2036,2633,'_dt_sidebar_hide_on_mobile','0'),(2035,2633,'_dt_sidebar_widgetarea_id','sidebar_1'),(2034,2633,'_dt_sidebar_position','disabled'),(2033,2633,'_wpb_vc_js_status','true'),(2032,2633,'_wp_page_template','default'),(2031,2633,'_edit_lock','1692250593:1'),(2030,2633,'_edit_last','1'),(2029,2633,'_dt_fancy_header_bg_image','a:1:{i:0;i:3105;}'),(2026,2622,'the7_fancy_title_css','.fancy-header {\n  background-image: url(\'https://farmchemie.yasithawd.com/wp-content/uploads/2023/09/Contact-Us.gif\');\n  background-repeat: no-repeat;\n  background-position: left center;\n  background-size: cover;\n  background-color: #089548;\n}\n.mobile-false .fancy-header {\n  background-attachment: scroll;\n}\n.fancy-header .wf-wrap {\n  min-height: 300px;\n  padding-top: 0px;\n  padding-bottom: 0px;\n}\n.fancy-header .fancy-title {\n  font-size: 36px;\n  line-height: 36px;\n  color: #ffffff;\n  text-transform: none;\n}\n.fancy-header .fancy-subtitle {\n  font-size: 18px;\n  line-height: 26px;\n  color: #ffffff;\n  text-transform: none;\n}\n.fancy-header .breadcrumbs {\n  color: #ffffff;\n}\n.fancy-header-overlay {\n  background: rgba(0,0,0,0.5);\n}\n@media screen and (max-width: 778px) {\n  .fancy-header .wf-wrap {\n    min-height: 300px;\n  }\n  .fancy-header .fancy-title {\n    font-size: 30px;\n    line-height: 38px;\n  }\n  .fancy-header .fancy-subtitle {\n    font-size: 20px;\n    line-height: 28px;\n  }\n  .fancy-header.breadcrumbs-mobile-off .breadcrumbs {\n    display: none;\n  }\n  #fancy-header > .wf-wrap {\n    flex-flow: column wrap;\n    align-items: center;\n    justify-content: center;\n    padding-bottom: 0px !important;\n  }\n  .fancy-header.title-left .breadcrumbs {\n    text-align: center;\n    float: none;\n  }\n  .breadcrumbs {\n    margin-bottom: 10px;\n  }\n  .breadcrumbs.breadcrumbs-bg {\n    margin-top: 10px;\n  }\n  .fancy-header.title-right .breadcrumbs {\n    margin: 10px 0 10px 0;\n  }\n  #fancy-header .hgroup,\n  #fancy-header .breadcrumbs {\n    text-align: center;\n  }\n  .fancy-header .hgroup {\n    padding-bottom: 5px;\n  }\n  .breadcrumbs-off .hgroup {\n    padding-bottom: 5px;\n  }\n  .title-right .hgroup {\n    padding: 0 0 5px 0;\n  }\n  .title-right.breadcrumbs-off .hgroup {\n    padding-top: 5px;\n  }\n  .title-left.disabled-bg .breadcrumbs {\n    margin-bottom: 0;\n  }\n}\n'),(2025,2622,'_dt_microsite_mobile_menu',''),(2024,2622,'_dt_microsite_split_right_menu',''),(2023,2622,'_dt_microsite_split_left_menu',''),(2022,2622,'_dt_microsite_primary_menu',''),(2021,2622,'_dt_mobile_page_padding_left',''),(2020,2622,'_dt_mobile_page_padding_bottom',''),(2019,2622,'_dt_mobile_page_padding_right',''),(2018,2622,'_dt_mobile_page_padding_top',''),(2017,2622,'_dt_page_overrides_left_margin',''),(2016,2622,'_dt_page_overrides_bottom_margin',''),(2015,2622,'_dt_page_overrides_right_margin',''),(16449,3322,'_wp_attached_file','2023/08/AVI-Tonic_logo.png'),(16450,3322,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:300;s:6:\"height\";i:74;s:4:\"file\";s:26:\"2023/08/AVI-Tonic_logo.png\";s:8:\"filesize\";i:2085;s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:25:\"AVI-Tonic_logo-150x74.png\";s:5:\"width\";i:150;s:6:\"height\";i:74;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:2880;}s:29:\"woocommerce_gallery_thumbnail\";a:5:{s:4:\"file\";s:25:\"AVI-Tonic_logo-200x74.png\";s:5:\"width\";i:200;s:6:\"height\";i:74;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:4029;}}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:{}}}'),(17771,3387,'_wpb_shortcodes_custom_css_updated','1'),(17772,3388,'_wpb_shortcodes_custom_css','.vc_custom_1689577528817{padding-bottom: 50px !important;}.vc_custom_1693451731079{padding-top: 50px !important;padding-bottom: 50px !important;}.vc_custom_1689578794814{padding-top: 50px !important;padding-bottom: 50px !important;}.vc_custom_1689578794814{padding-top: 50px !important;padding-bottom: 50px !important;}.vc_custom_1693540932074{margin-top: 10px !important;margin-bottom: 10px !important;}.vc_custom_1689577454678{margin-bottom: 50px !important;}.vc_custom_1692407941633{border-bottom-width: 1px !important;border-bottom-color: #079547 !important;border-bottom-style: solid !important;border-radius: 1px !important;}.vc_custom_1692407949383{border-bottom-width: 1px !important;border-bottom-color: #079547 !important;border-bottom-style: solid !important;border-radius: 1px !important;}.vc_custom_1692407957943{border-bottom-width: 1px !important;border-bottom-color: #079547 !important;border-bottom-style: solid !important;border-radius: 1px !important;}.vc_custom_1692407970279{border-bottom-width: 1px !important;border-bottom-color: #079547 !important;border-bottom-style: solid !important;border-radius: 1px !important;}.vc_custom_1691846530645{border-right-width: 1px !important;border-left-width: 1px !important;border-left-color: #000000 !important;border-left-style: solid !important;border-right-color: #000000 !important;border-right-style: solid !important;border-radius: 1px !important;}.vc_custom_1691846545469{border-right-width: 1px !important;border-left-width: 1px !important;border-left-color: #000000 !important;border-left-style: solid !important;border-right-color: #000000 !important;border-right-style: solid !important;border-radius: 1px !important;}.vc_custom_1691846563021{border-right-width: 1px !important;border-right-color: #000000 !important;border-right-style: solid !important;border-radius: 1px !important;}.vc_custom_1691846569845{border-right-width: 1px !important;border-right-color: #000000 !important;border-right-style: solid !important;border-radius: 1px !important;}.vc_custom_1691846576949{border-right-width: 1px !important;border-right-color: #000000 !important;border-right-style: solid !important;border-radius: 1px !important;}.vc_custom_1689578812611{margin-top: 50px !important;}.vc_custom_1693540291208{background-image: url(https://farmchemie.yasithawd.com/wp-content/uploads/2023/09/02International-Markets-Sri-Lankan-Market.png?id=3379) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}.vc_custom_1693540250450{background-color: #8d499b !important;}.vc_custom_1693540116474{background-color: #039447 !important;}.vc_custom_1693540312642{background-image: url(https://farmchemie.yasithawd.com/wp-content/uploads/2023/09/01International-Markets-Sri-Lankan-Market.png?id=3378) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}'),(15774,3258,'_wpb_shortcodes_custom_css','.vc_custom_1692366072362{margin-top: 35px !important;padding-top: 65px !important;padding-bottom: 100px !important;}.vc_custom_1684836308288{margin-top: 15px !important;}.vc_custom_1692359205466{margin-top: 35px !important;}.vc_custom_1692359216075{margin-top: 35px !important;}.vc_custom_1692359231594{margin-top: 35px !important;}.vc_custom_1692359239274{margin-top: 35px !important;}.vc_custom_1692359246626{margin-top: 35px !important;}.vc_custom_1692359252258{margin-top: 35px !important;}.vc_custom_1692359258634{margin-top: 35px !important;}.vc_custom_1691995519863{background-color: #f4ab20 !important;border: 1px solid #f4ab20 !important;border-radius: 35px !important;}.vc_custom_1691995661095{background-color: #722f8b !important;border: 1px solid #722f8b !important;border-radius: 35px !important;}.vc_custom_1691995661095{background-color: #722f8b !important;border: 1px solid #722f8b !important;border-radius: 35px !important;}.vc_custom_1691995519863{background-color: #f4ab20 !important;border: 1px solid #f4ab20 !important;border-radius: 35px !important;}.vc_custom_1691996718116{border-radius: 35px !important;}.vc_custom_1691995519863{background-color: #f4ab20 !important;border: 1px solid #f4ab20 !important;border-radius: 35px !important;}.vc_custom_1692278936750{border-top-width: 1px !important;border-right-width: 1px !important;border-bottom-width: 1px !important;border-left-width: 1px !important;border-left-color: #059444 !important;border-left-style: solid !important;border-right-color: #059444 !important;border-right-style: solid !important;border-top-color: #059444 !important;border-top-style: solid !important;border-bottom-color: #059444 !important;border-bottom-style: solid !important;border-radius: 1px !important;}.vc_custom_1692278936750{border-top-width: 1px !important;border-right-width: 1px !important;border-bottom-width: 1px !important;border-left-width: 1px !important;border-left-color: #059444 !important;border-left-style: solid !important;border-right-color: #059444 !important;border-right-style: solid !important;border-top-color: #059444 !important;border-top-style: solid !important;border-bottom-color: #059444 !important;border-bottom-style: solid !important;border-radius: 1px !important;}.vc_custom_1692278929158{border-top-width: 1px !important;border-right-width: 1px !important;border-bottom-width: 1px !important;border-left-width: 1px !important;border-left-color: #059444 !important;border-left-style: solid !important;border-right-color: #059444 !important;border-right-style: solid !important;border-top-color: #059444 !important;border-top-style: solid !important;border-bottom-color: #059444 !important;border-bottom-style: solid !important;border-radius: 1px !important;}.vc_custom_1692278922309{border-top-width: 1px !important;border-right-width: 1px !important;border-bottom-width: 1px !important;border-left-width: 1px !important;border-left-color: #059444 !important;border-left-style: solid !important;border-right-color: #059444 !important;border-right-style: solid !important;border-top-color: #059444 !important;border-top-style: solid !important;border-bottom-color: #059444 !important;border-bottom-style: solid !important;border-radius: 1px !important;}.vc_custom_1692278922309{border-top-width: 1px !important;border-right-width: 1px !important;border-bottom-width: 1px !important;border-left-width: 1px !important;border-left-color: #059444 !important;border-left-style: solid !important;border-right-color: #059444 !important;border-right-style: solid !important;border-top-color: #059444 !important;border-top-style: solid !important;border-bottom-color: #059444 !important;border-bottom-style: solid !important;border-radius: 1px !important;}.vc_custom_1692278929158{border-top-width: 1px !important;border-right-width: 1px !important;border-bottom-width: 1px !important;border-left-width: 1px !important;border-left-color: #059444 !important;border-left-style: solid !important;border-right-color: #059444 !important;border-right-style: solid !important;border-top-color: #059444 !important;border-top-style: solid !important;border-bottom-color: #059444 !important;border-bottom-style: solid !important;border-radius: 1px !important;}.vc_custom_1692278936750{border-top-width: 1px !important;border-right-width: 1px !important;border-bottom-width: 1px !important;border-left-width: 1px !important;border-left-color: #059444 !important;border-left-style: solid !important;border-right-color: #059444 !important;border-right-style: solid !important;border-top-color: #059444 !important;border-top-style: solid !important;border-bottom-color: #059444 !important;border-bottom-style: solid !important;border-radius: 1px !important;}.vc_custom_1692278922309{border-top-width: 1px !important;border-right-width: 1px !important;border-bottom-width: 1px !important;border-left-width: 1px !important;border-left-color: #059444 !important;border-left-style: solid !important;border-right-color: #059444 !important;border-right-style: solid !important;border-top-color: #059444 !important;border-top-style: solid !important;border-bottom-color: #059444 !important;border-bottom-style: solid !important;border-radius: 1px !important;}.vc_custom_1692278929158{border-top-width: 1px !important;border-right-width: 1px !important;border-bottom-width: 1px !important;border-left-width: 1px !important;border-left-color: #059444 !important;border-left-style: solid !important;border-right-color: #059444 !important;border-right-style: solid !important;border-top-color: #059444 !important;border-top-style: solid !important;border-bottom-color: #059444 !important;border-bottom-style: solid !important;border-radius: 1px !important;}.vc_custom_1692278936750{border-top-width: 1px !important;border-right-width: 1px !important;border-bottom-width: 1px !important;border-left-width: 1px !important;border-left-color: #059444 !important;border-left-style: solid !important;border-right-color: #059444 !important;border-right-style: solid !important;border-top-color: #059444 !important;border-top-style: solid !important;border-bottom-color: #059444 !important;border-bottom-style: solid !important;border-radius: 1px !important;}.vc_custom_1692278936750{border-top-width: 1px !important;border-right-width: 1px !important;border-bottom-width: 1px !important;border-left-width: 1px !important;border-left-color: #059444 !important;border-left-style: solid !important;border-right-color: #059444 !important;border-right-style: solid !important;border-top-color: #059444 !important;border-top-style: solid !important;border-bottom-color: #059444 !important;border-bottom-style: solid !important;border-radius: 1px !important;}.vc_custom_1692278929158{border-top-width: 1px !important;border-right-width: 1px !important;border-bottom-width: 1px !important;border-left-width: 1px !important;border-left-color: #059444 !important;border-left-style: solid !important;border-right-color: #059444 !important;border-right-style: solid !important;border-top-color: #059444 !important;border-top-style: solid !important;border-bottom-color: #059444 !important;border-bottom-style: solid !important;border-radius: 1px !important;}.vc_custom_1692278922309{border-top-width: 1px !important;border-right-width: 1px !important;border-bottom-width: 1px !important;border-left-width: 1px !important;border-left-color: #059444 !important;border-left-style: solid !important;border-right-color: #059444 !important;border-right-style: solid !important;border-top-color: #059444 !important;border-top-style: solid !important;border-bottom-color: #059444 !important;border-bottom-style: solid !important;border-radius: 1px !important;}.vc_custom_1692278929158{border-top-width: 1px !important;border-right-width: 1px !important;border-bottom-width: 1px !important;border-left-width: 1px !important;border-left-color: #059444 !important;border-left-style: solid !important;border-right-color: #059444 !important;border-right-style: solid !important;border-top-color: #059444 !important;border-top-style: solid !important;border-bottom-color: #059444 !important;border-bottom-style: solid !important;border-radius: 1px !important;}'),(15776,3259,'_wpb_shortcodes_custom_css','.vc_custom_1692366072362{margin-top: 35px !important;padding-top: 65px !important;padding-bottom: 100px !important;}.vc_custom_1684836308288{margin-top: 15px !important;}.vc_custom_1692359205466{margin-top: 35px !important;}.vc_custom_1692359216075{margin-top: 35px !important;}.vc_custom_1692359231594{margin-top: 35px !important;}.vc_custom_1692359239274{margin-top: 35px !important;}.vc_custom_1692359246626{margin-top: 35px !important;}.vc_custom_1692359252258{margin-top: 35px !important;}.vc_custom_1692359258634{margin-top: 35px !important;}.vc_custom_1691995519863{background-color: #f4ab20 !important;border: 1px solid #f4ab20 !important;border-radius: 35px !important;}.vc_custom_1691995661095{background-color: #722f8b !important;border: 1px solid #722f8b !important;border-radius: 35px !important;}.vc_custom_1691995661095{background-color: #722f8b !important;border: 1px solid #722f8b !important;border-radius: 35px !important;}.vc_custom_1691995519863{background-color: #f4ab20 !important;border: 1px solid #f4ab20 !important;border-radius: 35px !important;}.vc_custom_1691996718116{border-radius: 35px !important;}.vc_custom_1691995519863{background-color: #f4ab20 !important;border: 1px solid #f4ab20 !important;border-radius: 35px !important;}.vc_custom_1692278936750{border-top-width: 1px !important;border-right-width: 1px !important;border-bottom-width: 1px !important;border-left-width: 1px !important;border-left-color: #059444 !important;border-left-style: solid !important;border-right-color: #059444 !important;border-right-style: solid !important;border-top-color: #059444 !important;border-top-style: solid !important;border-bottom-color: #059444 !important;border-bottom-style: solid !important;border-radius: 1px !important;}.vc_custom_1692278936750{border-top-width: 1px !important;border-right-width: 1px !important;border-bottom-width: 1px !important;border-left-width: 1px !important;border-left-color: #059444 !important;border-left-style: solid !important;border-right-color: #059444 !important;border-right-style: solid !important;border-top-color: #059444 !important;border-top-style: solid !important;border-bottom-color: #059444 !important;border-bottom-style: solid !important;border-radius: 1px !important;}.vc_custom_1692278929158{border-top-width: 1px !important;border-right-width: 1px !important;border-bottom-width: 1px !important;border-left-width: 1px !important;border-left-color: #059444 !important;border-left-style: solid !important;border-right-color: #059444 !important;border-right-style: solid !important;border-top-color: #059444 !important;border-top-style: solid !important;border-bottom-color: #059444 !important;border-bottom-style: solid !important;border-radius: 1px !important;}.vc_custom_1692278922309{border-top-width: 1px !important;border-right-width: 1px !important;border-bottom-width: 1px !important;border-left-width: 1px !important;border-left-color: #059444 !important;border-left-style: solid !important;border-right-color: #059444 !important;border-right-style: solid !important;border-top-color: #059444 !important;border-top-style: solid !important;border-bottom-color: #059444 !important;border-bottom-style: solid !important;border-radius: 1px !important;}.vc_custom_1692278922309{border-top-width: 1px !important;border-right-width: 1px !important;border-bottom-width: 1px !important;border-left-width: 1px !important;border-left-color: #059444 !important;border-left-style: solid !important;border-right-color: #059444 !important;border-right-style: solid !important;border-top-color: #059444 !important;border-top-style: solid !important;border-bottom-color: #059444 !important;border-bottom-style: solid !important;border-radius: 1px !important;}.vc_custom_1692278929158{border-top-width: 1px !important;border-right-width: 1px !important;border-bottom-width: 1px !important;border-left-width: 1px !important;border-left-color: #059444 !important;border-left-style: solid !important;border-right-color: #059444 !important;border-right-style: solid !important;border-top-color: #059444 !important;border-top-style: solid !important;border-bottom-color: #059444 !important;border-bottom-style: solid !important;border-radius: 1px !important;}.vc_custom_1692278936750{border-top-width: 1px !important;border-right-width: 1px !important;border-bottom-width: 1px !important;border-left-width: 1px !important;border-left-color: #059444 !important;border-left-style: solid !important;border-right-color: #059444 !important;border-right-style: solid !important;border-top-color: #059444 !important;border-top-style: solid !important;border-bottom-color: #059444 !important;border-bottom-style: solid !important;border-radius: 1px !important;}.vc_custom_1692278922309{border-top-width: 1px !important;border-right-width: 1px !important;border-bottom-width: 1px !important;border-left-width: 1px !important;border-left-color: #059444 !important;border-left-style: solid !important;border-right-color: #059444 !important;border-right-style: solid !important;border-top-color: #059444 !important;border-top-style: solid !important;border-bottom-color: #059444 !important;border-bottom-style: solid !important;border-radius: 1px !important;}.vc_custom_1692278929158{border-top-width: 1px !important;border-right-width: 1px !important;border-bottom-width: 1px !important;border-left-width: 1px !important;border-left-color: #059444 !important;border-left-style: solid !important;border-right-color: #059444 !important;border-right-style: solid !important;border-top-color: #059444 !important;border-top-style: solid !important;border-bottom-color: #059444 !important;border-bottom-style: solid !important;border-radius: 1px !important;}.vc_custom_1692278936750{border-top-width: 1px !important;border-right-width: 1px !important;border-bottom-width: 1px !important;border-left-width: 1px !important;border-left-color: #059444 !important;border-left-style: solid !important;border-right-color: #059444 !important;border-right-style: solid !important;border-top-color: #059444 !important;border-top-style: solid !important;border-bottom-color: #059444 !important;border-bottom-style: solid !important;border-radius: 1px !important;}.vc_custom_1692278936750{border-top-width: 1px !important;border-right-width: 1px !important;border-bottom-width: 1px !important;border-left-width: 1px !important;border-left-color: #059444 !important;border-left-style: solid !important;border-right-color: #059444 !important;border-right-style: solid !important;border-top-color: #059444 !important;border-top-style: solid !important;border-bottom-color: #059444 !important;border-bottom-style: solid !important;border-radius: 1px !important;}.vc_custom_1692278929158{border-top-width: 1px !important;border-right-width: 1px !important;border-bottom-width: 1px !important;border-left-width: 1px !important;border-left-color: #059444 !important;border-left-style: solid !important;border-right-color: #059444 !important;border-right-style: solid !important;border-top-color: #059444 !important;border-top-style: solid !important;border-bottom-color: #059444 !important;border-bottom-style: solid !important;border-radius: 1px !important;}.vc_custom_1692278922309{border-top-width: 1px !important;border-right-width: 1px !important;border-bottom-width: 1px !important;border-left-width: 1px !important;border-left-color: #059444 !important;border-left-style: solid !important;border-right-color: #059444 !important;border-right-style: solid !important;border-top-color: #059444 !important;border-top-style: solid !important;border-bottom-color: #059444 !important;border-bottom-style: solid !important;border-radius: 1px !important;}.vc_custom_1692278929158{border-top-width: 1px !important;border-right-width: 1px !important;border-bottom-width: 1px !important;border-left-width: 1px !important;border-left-color: #059444 !important;border-left-style: solid !important;border-right-color: #059444 !important;border-right-style: solid !important;border-top-color: #059444 !important;border-top-style: solid !important;border-bottom-color: #059444 !important;border-bottom-style: solid !important;border-radius: 1px !important;}'),(17608,3370,'_dt_fancy_header_title',''),(17609,3370,'_dt_fancy_header_title_font_size','32'),(17610,3370,'_dt_fancy_header_title_line_height','36'),(17611,3370,'_dt_fancy_header_text_transform','none'),(17612,3370,'_dt_fancy_header_title_color_mode','color'),(17613,3370,'_dt_fancy_header_title_color','#079547'),(17614,3370,'_dt_fancy_header_subtitle_heading',''),(17615,3370,'_dt_fancy_header_subtitle',''),(17616,3370,'_dt_fancy_header_subtitle_font_size','24'),(17617,3370,'_dt_fancy_header_subtitle_line_height','26'),(17618,3370,'_dt_fancy_header_subtitle_text_transform','none'),(17619,3370,'_dt_fancy_header_subtitle_color_mode','color'),(17620,3370,'_dt_fancy_header_subtitle_color','#792c8a'),(17621,3370,'_dt_fancy_header_bg_heading',''),(17622,3370,'_dt_fancy_header_bg_color','#ffffff'),(17623,3370,'_dt_fancy_header_bg_image_origin','custom'),(17624,3370,'_dt_fancy_header_bg_image','a:1:{i:0;i:3756;}'),(17625,3370,'_dt_fancy_header_bg_repeat','no-repeat'),(17626,3370,'_dt_fancy_header_bg_position_x','center'),(17627,3370,'_dt_fancy_header_bg_position_y','center'),(17628,3370,'_dt_fancy_header_bg_fullscreen','0'),(17629,3370,'_dt_fancy_header_bg_overlay','0'),(17630,3370,'_dt_fancy_header_overlay_color','#000'),(17631,3370,'_dt_fancy_header_bg_overlay_opacity','50'),(17632,3370,'_dt_fancy_header_scroll_effect','default'),(17633,3370,'_dt_fancy_header_bg_parallax','0.5'),(17607,3370,'_dt_fancy_header_title_mode','custom'),(17552,3370,'total_sales','0'),(17550,3366,'_thumbnail_id','3743'),(17551,3366,'_product_image_gallery','3742'),(17554,3370,'_tax_class',''),(17555,3370,'_manage_stock','no'),(17556,3370,'_backorders','no'),(17557,3370,'_sold_individually','no'),(17558,3370,'_virtual','no'),(17559,3370,'_downloadable','no'),(17561,3370,'_download_limit','-1'),(17562,3370,'_download_expiry','-1'),(17563,3370,'_thumbnail_id','3757'),(17564,3370,'_stock',NULL),(17565,3370,'_stock_status','instock'),(17566,3370,'_wc_average_rating','0'),(17567,3370,'_wc_review_count','0'),(17568,3370,'_product_version','8.0.2'),(17569,3370,'_dt_sidebar_position','disabled'),(17570,3370,'_dt_sidebar_widgetarea_id','sidebar_1'),(17571,3370,'_dt_sidebar_hide_on_mobile','0'),(17572,3370,'_dt_footer_show','1'),(17573,3370,'_dt_footer_widgetarea_id','sidebar_2'),(17574,3370,'_dt_footer_hide_on_mobile','0'),(17575,3370,'_dt_header_title','fancy'),(17576,3370,'_dt_header_background','normal'),(17577,3370,'_dt_header_background_below_slideshow','disabled'),(17578,3370,'_dt_header_transparent_bg_color_scheme','light'),(17579,3370,'_dt_header_transparent_top_bar_bg_color','#ffffff'),(17580,3370,'_dt_header_transparent_top_bar_bg_opacity','25'),(17581,3370,'_dt_header_transparent_bg_color','#000000'),(17582,3370,'_dt_header_transparent_bg_opacity','50'),(17583,3370,'_dt_header_disabled_background','normal'),(17584,3370,'_dt_header_disabled_transparent_bg_color_scheme','light'),(17585,3370,'_dt_header_disabled_transparent_top_bar_bg_color','#ffffff'),(17586,3370,'_dt_header_disabled_transparent_top_bar_bg_opacity','25'),(17587,3370,'_dt_header_disabled_transparent_bg_color','#000000'),(17588,3370,'_dt_header_disabled_transparent_bg_opacity','50'),(17589,3370,'_dt_page_overrides_top_margin','1%'),(17590,3370,'_dt_page_overrides_right_margin',''),(17591,3370,'_dt_page_overrides_bottom_margin',''),(17592,3370,'_dt_page_overrides_left_margin',''),(17593,3370,'_dt_mobile_page_padding_top',''),(17594,3370,'_dt_mobile_page_padding_right',''),(17595,3370,'_dt_mobile_page_padding_bottom',''),(17596,3370,'_dt_mobile_page_padding_left',''),(17597,3370,'_dt_fancy_header_layout_heading',''),(17598,3370,'_dt_fancy_header_title_aligment','all_left'),(17599,3370,'_dt_fancy_header_height','140'),(17600,3370,'_dt_fancy_header_padding-top','0px'),(17601,3370,'_dt_fancy_header_padding-bottom','0px'),(17602,3370,'_dt_fancy_header_breadcrumbs_heading',''),(17603,3370,'_dt_fancy_header_breadcrumbs','disabled'),(17604,3370,'_dt_fancy_header_breadcrumbs_text_color','#ffffff'),(17605,3370,'_dt_fancy_header_breadcrumbs_bg_color','disabled'),(17606,3370,'_dt_fancy_header_title_heading',''),(15779,3260,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:300;s:6:\"height\";i:179;s:4:\"file\";s:27:\"2023/08/Founded-in-2002.png\";s:8:\"filesize\";i:47786;s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:27:\"Founded-in-2002-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:21571;}s:29:\"woocommerce_gallery_thumbnail\";a:5:{s:4:\"file\";s:27:\"Founded-in-2002-200x179.png\";s:5:\"width\";i:200;s:6:\"height\";i:179;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:34334;}s:14:\"shop_thumbnail\";a:5:{s:4:\"file\";s:27:\"Founded-in-2002-200x179.png\";s:5:\"width\";i:200;s:6:\"height\";i:179;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:34334;}}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:{}}}'),(15783,3262,'_wp_attached_file','2023/08/Fully-automated-manufacturing.png'),(15780,3261,'_wpb_shortcodes_custom_css','.vc_custom_1692366072362{margin-top: 35px !important;padding-top: 65px !important;padding-bottom: 100px !important;}.vc_custom_1684836308288{margin-top: 15px !important;}.vc_custom_1692359205466{margin-top: 35px !important;}.vc_custom_1692359216075{margin-top: 35px !important;}.vc_custom_1692359231594{margin-top: 35px !important;}.vc_custom_1692359239274{margin-top: 35px !important;}.vc_custom_1692359246626{margin-top: 35px !important;}.vc_custom_1692359252258{margin-top: 35px !important;}.vc_custom_1692359258634{margin-top: 35px !important;}.vc_custom_1691995519863{background-color: #f4ab20 !important;border: 1px solid #f4ab20 !important;border-radius: 35px !important;}.vc_custom_1691995661095{background-color: #722f8b !important;border: 1px solid #722f8b !important;border-radius: 35px !important;}.vc_custom_1691995661095{background-color: #722f8b !important;border: 1px solid #722f8b !important;border-radius: 35px !important;}.vc_custom_1691995519863{background-color: #f4ab20 !important;border: 1px solid #f4ab20 !important;border-radius: 35px !important;}.vc_custom_1691996718116{border-radius: 35px !important;}.vc_custom_1691995519863{background-color: #f4ab20 !important;border: 1px solid #f4ab20 !important;border-radius: 35px !important;}.vc_custom_1692278936750{border-top-width: 1px !important;border-right-width: 1px !important;border-bottom-width: 1px !important;border-left-width: 1px !important;border-left-color: #059444 !important;border-left-style: solid !important;border-right-color: #059444 !important;border-right-style: solid !important;border-top-color: #059444 !important;border-top-style: solid !important;border-bottom-color: #059444 !important;border-bottom-style: solid !important;border-radius: 1px !important;}.vc_custom_1692278936750{border-top-width: 1px !important;border-right-width: 1px !important;border-bottom-width: 1px !important;border-left-width: 1px !important;border-left-color: #059444 !important;border-left-style: solid !important;border-right-color: #059444 !important;border-right-style: solid !important;border-top-color: #059444 !important;border-top-style: solid !important;border-bottom-color: #059444 !important;border-bottom-style: solid !important;border-radius: 1px !important;}.vc_custom_1692278929158{border-top-width: 1px !important;border-right-width: 1px !important;border-bottom-width: 1px !important;border-left-width: 1px !important;border-left-color: #059444 !important;border-left-style: solid !important;border-right-color: #059444 !important;border-right-style: solid !important;border-top-color: #059444 !important;border-top-style: solid !important;border-bottom-color: #059444 !important;border-bottom-style: solid !important;border-radius: 1px !important;}.vc_custom_1692278922309{border-top-width: 1px !important;border-right-width: 1px !important;border-bottom-width: 1px !important;border-left-width: 1px !important;border-left-color: #059444 !important;border-left-style: solid !important;border-right-color: #059444 !important;border-right-style: solid !important;border-top-color: #059444 !important;border-top-style: solid !important;border-bottom-color: #059444 !important;border-bottom-style: solid !important;border-radius: 1px !important;}.vc_custom_1692278922309{border-top-width: 1px !important;border-right-width: 1px !important;border-bottom-width: 1px !important;border-left-width: 1px !important;border-left-color: #059444 !important;border-left-style: solid !important;border-right-color: #059444 !important;border-right-style: solid !important;border-top-color: #059444 !important;border-top-style: solid !important;border-bottom-color: #059444 !important;border-bottom-style: solid !important;border-radius: 1px !important;}.vc_custom_1692278929158{border-top-width: 1px !important;border-right-width: 1px !important;border-bottom-width: 1px !important;border-left-width: 1px !important;border-left-color: #059444 !important;border-left-style: solid !important;border-right-color: #059444 !important;border-right-style: solid !important;border-top-color: #059444 !important;border-top-style: solid !important;border-bottom-color: #059444 !important;border-bottom-style: solid !important;border-radius: 1px !important;}.vc_custom_1692278936750{border-top-width: 1px !important;border-right-width: 1px !important;border-bottom-width: 1px !important;border-left-width: 1px !important;border-left-color: #059444 !important;border-left-style: solid !important;border-right-color: #059444 !important;border-right-style: solid !important;border-top-color: #059444 !important;border-top-style: solid !important;border-bottom-color: #059444 !important;border-bottom-style: solid !important;border-radius: 1px !important;}.vc_custom_1692278922309{border-top-width: 1px !important;border-right-width: 1px !important;border-bottom-width: 1px !important;border-left-width: 1px !important;border-left-color: #059444 !important;border-left-style: solid !important;border-right-color: #059444 !important;border-right-style: solid !important;border-top-color: #059444 !important;border-top-style: solid !important;border-bottom-color: #059444 !important;border-bottom-style: solid !important;border-radius: 1px !important;}.vc_custom_1692278929158{border-top-width: 1px !important;border-right-width: 1px !important;border-bottom-width: 1px !important;border-left-width: 1px !important;border-left-color: #059444 !important;border-left-style: solid !important;border-right-color: #059444 !important;border-right-style: solid !important;border-top-color: #059444 !important;border-top-style: solid !important;border-bottom-color: #059444 !important;border-bottom-style: solid !important;border-radius: 1px !important;}.vc_custom_1692278936750{border-top-width: 1px !important;border-right-width: 1px !important;border-bottom-width: 1px !important;border-left-width: 1px !important;border-left-color: #059444 !important;border-left-style: solid !important;border-right-color: #059444 !important;border-right-style: solid !important;border-top-color: #059444 !important;border-top-style: solid !important;border-bottom-color: #059444 !important;border-bottom-style: solid !important;border-radius: 1px !important;}.vc_custom_1692278936750{border-top-width: 1px !important;border-right-width: 1px !important;border-bottom-width: 1px !important;border-left-width: 1px !important;border-left-color: #059444 !important;border-left-style: solid !important;border-right-color: #059444 !important;border-right-style: solid !important;border-top-color: #059444 !important;border-top-style: solid !important;border-bottom-color: #059444 !important;border-bottom-style: solid !important;border-radius: 1px !important;}.vc_custom_1692278929158{border-top-width: 1px !important;border-right-width: 1px !important;border-bottom-width: 1px !important;border-left-width: 1px !important;border-left-color: #059444 !important;border-left-style: solid !important;border-right-color: #059444 !important;border-right-style: solid !important;border-top-color: #059444 !important;border-top-style: solid !important;border-bottom-color: #059444 !important;border-bottom-style: solid !important;border-radius: 1px !important;}.vc_custom_1692278922309{border-top-width: 1px !important;border-right-width: 1px !important;border-bottom-width: 1px !important;border-left-width: 1px !important;border-left-color: #059444 !important;border-left-style: solid !important;border-right-color: #059444 !important;border-right-style: solid !important;border-top-color: #059444 !important;border-top-style: solid !important;border-bottom-color: #059444 !important;border-bottom-style: solid !important;border-radius: 1px !important;}.vc_custom_1692278929158{border-top-width: 1px !important;border-right-width: 1px !important;border-bottom-width: 1px !important;border-left-width: 1px !important;border-left-color: #059444 !important;border-left-style: solid !important;border-right-color: #059444 !important;border-right-style: solid !important;border-top-color: #059444 !important;border-top-style: solid !important;border-bottom-color: #059444 !important;border-bottom-style: solid !important;border-radius: 1px !important;}'),(17747,3376,'_wpb_shortcodes_custom_css_updated','1'),(17749,3377,'_wpb_shortcodes_custom_css_updated','1'),(17750,3378,'_wp_attached_file','2023/09/01International-Markets-Sri-Lankan-Market.png'),(17751,3378,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:650;s:6:\"height\";i:400;s:4:\"file\";s:53:\"2023/09/01International-Markets-Sri-Lankan-Market.png\";s:8:\"filesize\";i:134993;s:5:\"sizes\";a:5:{s:6:\"medium\";a:5:{s:4:\"file\";s:53:\"01International-Markets-Sri-Lankan-Market-300x185.png\";s:5:\"width\";i:300;s:6:\"height\";i:185;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:83053;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:53:\"01International-Markets-Sri-Lankan-Market-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:35207;}s:21:\"woocommerce_thumbnail\";a:6:{s:4:\"file\";s:53:\"01International-Markets-Sri-Lankan-Market-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:133185;s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:5:{s:4:\"file\";s:53:\"01International-Markets-Sri-Lankan-Market-600x369.png\";s:5:\"width\";i:600;s:6:\"height\";i:369;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:328115;}s:29:\"woocommerce_gallery_thumbnail\";a:5:{s:4:\"file\";s:53:\"01International-Markets-Sri-Lankan-Market-200x200.png\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:58712;}}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:{}}}'),(17752,2977,'_wpb_shortcodes_custom_css_updated','1'),(17753,3379,'_wp_attached_file','2023/09/02International-Markets-Sri-Lankan-Market.png'),(17754,3379,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:650;s:6:\"height\";i:400;s:4:\"file\";s:53:\"2023/09/02International-Markets-Sri-Lankan-Market.png\";s:8:\"filesize\";i:75967;s:5:\"sizes\";a:5:{s:6:\"medium\";a:5:{s:4:\"file\";s:53:\"02International-Markets-Sri-Lankan-Market-300x185.png\";s:5:\"width\";i:300;s:6:\"height\";i:185;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:48555;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:53:\"02International-Markets-Sri-Lankan-Market-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:25426;}s:21:\"woocommerce_thumbnail\";a:6:{s:4:\"file\";s:53:\"02International-Markets-Sri-Lankan-Market-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:96790;s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:5:{s:4:\"file\";s:53:\"02International-Markets-Sri-Lankan-Market-600x369.png\";s:5:\"width\";i:600;s:6:\"height\";i:369;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:188360;}s:29:\"woocommerce_gallery_thumbnail\";a:5:{s:4:\"file\";s:53:\"02International-Markets-Sri-Lankan-Market-200x200.png\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:42729;}}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:{}}}'),(17755,3380,'_wpb_shortcodes_custom_css','.vc_custom_1689577528817{padding-bottom: 50px !important;}.vc_custom_1693451731079{padding-top: 50px !important;padding-bottom: 50px !important;}.vc_custom_1689578794814{padding-top: 50px !important;padding-bottom: 50px !important;}.vc_custom_1689578794814{padding-top: 50px !important;padding-bottom: 50px !important;}.vc_custom_1689577454678{margin-bottom: 50px !important;}.vc_custom_1692407941633{border-bottom-width: 1px !important;border-bottom-color: #079547 !important;border-bottom-style: solid !important;border-radius: 1px !important;}.vc_custom_1692407949383{border-bottom-width: 1px !important;border-bottom-color: #079547 !important;border-bottom-style: solid !important;border-radius: 1px !important;}.vc_custom_1692407957943{border-bottom-width: 1px !important;border-bottom-color: #079547 !important;border-bottom-style: solid !important;border-radius: 1px !important;}.vc_custom_1692407970279{border-bottom-width: 1px !important;border-bottom-color: #079547 !important;border-bottom-style: solid !important;border-radius: 1px !important;}.vc_custom_1691846530645{border-right-width: 1px !important;border-left-width: 1px !important;border-left-color: #000000 !important;border-left-style: solid !important;border-right-color: #000000 !important;border-right-style: solid !important;border-radius: 1px !important;}.vc_custom_1691846545469{border-right-width: 1px !important;border-left-width: 1px !important;border-left-color: #000000 !important;border-left-style: solid !important;border-right-color: #000000 !important;border-right-style: solid !important;border-radius: 1px !important;}.vc_custom_1691846563021{border-right-width: 1px !important;border-right-color: #000000 !important;border-right-style: solid !important;border-radius: 1px !important;}.vc_custom_1691846569845{border-right-width: 1px !important;border-right-color: #000000 !important;border-right-style: solid !important;border-radius: 1px !important;}.vc_custom_1691846576949{border-right-width: 1px !important;border-right-color: #000000 !important;border-right-style: solid !important;border-radius: 1px !important;}.vc_custom_1689578812611{margin-top: 50px !important;}.vc_custom_1693540291208{background-image: url(https://farmchemie.yasithawd.com/wp-content/uploads/2023/09/02International-Markets-Sri-Lankan-Market.png?id=3379) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}.vc_custom_1693540250450{background-color: #8d499b !important;}.vc_custom_1693540116474{background-color: #039447 !important;}.vc_custom_1693540312642{background-image: url(https://farmchemie.yasithawd.com/wp-content/uploads/2023/09/01International-Markets-Sri-Lankan-Market.png?id=3378) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}'),(17756,3380,'_wpb_shortcodes_custom_css_updated','1'),(17757,3381,'_wpb_shortcodes_custom_css','.vc_custom_1689577528817{padding-bottom: 50px !important;}.vc_custom_1693451731079{padding-top: 50px !important;padding-bottom: 50px !important;}.vc_custom_1689578794814{padding-top: 50px !important;padding-bottom: 50px !important;}.vc_custom_1689578794814{padding-top: 50px !important;padding-bottom: 50px !important;}.vc_custom_1689577454678{margin-bottom: 50px !important;}.vc_custom_1692407941633{border-bottom-width: 1px !important;border-bottom-color: #079547 !important;border-bottom-style: solid !important;border-radius: 1px !important;}.vc_custom_1692407949383{border-bottom-width: 1px !important;border-bottom-color: #079547 !important;border-bottom-style: solid !important;border-radius: 1px !important;}.vc_custom_1692407957943{border-bottom-width: 1px !important;border-bottom-color: #079547 !important;border-bottom-style: solid !important;border-radius: 1px !important;}.vc_custom_1692407970279{border-bottom-width: 1px !important;border-bottom-color: #079547 !important;border-bottom-style: solid !important;border-radius: 1px !important;}.vc_custom_1691846530645{border-right-width: 1px !important;border-left-width: 1px !important;border-left-color: #000000 !important;border-left-style: solid !important;border-right-color: #000000 !important;border-right-style: solid !important;border-radius: 1px !important;}.vc_custom_1691846545469{border-right-width: 1px !important;border-left-width: 1px !important;border-left-color: #000000 !important;border-left-style: solid !important;border-right-color: #000000 !important;border-right-style: solid !important;border-radius: 1px !important;}.vc_custom_1691846563021{border-right-width: 1px !important;border-right-color: #000000 !important;border-right-style: solid !important;border-radius: 1px !important;}.vc_custom_1691846569845{border-right-width: 1px !important;border-right-color: #000000 !important;border-right-style: solid !important;border-radius: 1px !important;}.vc_custom_1691846576949{border-right-width: 1px !important;border-right-color: #000000 !important;border-right-style: solid !important;border-radius: 1px !important;}.vc_custom_1689578812611{margin-top: 50px !important;}.vc_custom_1693540291208{background-image: url(https://farmchemie.yasithawd.com/wp-content/uploads/2023/09/02International-Markets-Sri-Lankan-Market.png?id=3379) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}.vc_custom_1693540250450{background-color: #8d499b !important;}.vc_custom_1693540116474{background-color: #039447 !important;}.vc_custom_1693540312642{background-image: url(https://farmchemie.yasithawd.com/wp-content/uploads/2023/09/01International-Markets-Sri-Lankan-Market.png?id=3378) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}'),(17758,3381,'_wpb_shortcodes_custom_css_updated','1'),(17759,3382,'_wpb_shortcodes_custom_css','.vc_custom_1689577528817{padding-bottom: 50px !important;}.vc_custom_1693451731079{padding-top: 50px !important;padding-bottom: 50px !important;}.vc_custom_1689578794814{padding-top: 50px !important;padding-bottom: 50px !important;}.vc_custom_1689578794814{padding-top: 50px !important;padding-bottom: 50px !important;}.vc_custom_1689577454678{margin-bottom: 50px !important;}.vc_custom_1692407941633{border-bottom-width: 1px !important;border-bottom-color: #079547 !important;border-bottom-style: solid !important;border-radius: 1px !important;}.vc_custom_1692407949383{border-bottom-width: 1px !important;border-bottom-color: #079547 !important;border-bottom-style: solid !important;border-radius: 1px !important;}.vc_custom_1692407957943{border-bottom-width: 1px !important;border-bottom-color: #079547 !important;border-bottom-style: solid !important;border-radius: 1px !important;}.vc_custom_1692407970279{border-bottom-width: 1px !important;border-bottom-color: #079547 !important;border-bottom-style: solid !important;border-radius: 1px !important;}.vc_custom_1691846530645{border-right-width: 1px !important;border-left-width: 1px !important;border-left-color: #000000 !important;border-left-style: solid !important;border-right-color: #000000 !important;border-right-style: solid !important;border-radius: 1px !important;}.vc_custom_1691846545469{border-right-width: 1px !important;border-left-width: 1px !important;border-left-color: #000000 !important;border-left-style: solid !important;border-right-color: #000000 !important;border-right-style: solid !important;border-radius: 1px !important;}.vc_custom_1691846563021{border-right-width: 1px !important;border-right-color: #000000 !important;border-right-style: solid !important;border-radius: 1px !important;}.vc_custom_1691846569845{border-right-width: 1px !important;border-right-color: #000000 !important;border-right-style: solid !important;border-radius: 1px !important;}.vc_custom_1691846576949{border-right-width: 1px !important;border-right-color: #000000 !important;border-right-style: solid !important;border-radius: 1px !important;}.vc_custom_1689578812611{margin-top: 50px !important;}.vc_custom_1693540291208{background-image: url(https://farmchemie.yasithawd.com/wp-content/uploads/2023/09/02International-Markets-Sri-Lankan-Market.png?id=3379) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}.vc_custom_1693540250450{background-color: #8d499b !important;}.vc_custom_1693540668043{border: 0px initial rgba(0,0,0,0.01) !important;}.vc_custom_1693540116474{background-color: #039447 !important;}.vc_custom_1693540312642{background-image: url(https://farmchemie.yasithawd.com/wp-content/uploads/2023/09/01International-Markets-Sri-Lankan-Market.png?id=3378) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}.vc_custom_1693540678907{border: 0px initial !important;}'),(17635,3370,'_dt_fancy_header_responsiveness','enabled'),(17636,3370,'_dt_fancy_header_responsiveness_switch','778px'),(17637,3370,'_dt_fancy_header_responsive_height','140'),(17638,3370,'_dt_fancy_header_responsive_font_size','30'),(17639,3370,'_dt_fancy_header_responsive_title_line_height','38'),(17640,3370,'_dt_fancy_header_responsive_subtitle_font_size','20'),(17641,3370,'_dt_fancy_header_responsive_subtitle_line_height','28'),(17642,3370,'_dt_fancy_header_responsive_breadcrumbs','disabled'),(17643,3370,'the7_fancy_title_css','#main {\n  padding-top: 1%;\n}\n.fancy-header {\n  background-image: url(\'https://farmchemie.yasithawd.com/wp-content/uploads/2023/08/AbamecD-Logo-1.png\');\n  background-repeat: no-repeat;\n  background-position: center center;\n  background-size: auto auto;\n  background-color: #ffffff;\n}\n.mobile-false .fancy-header {\n  background-attachment: scroll;\n}\n.fancy-header .wf-wrap {\n  min-height: 140px;\n  padding-top: 0px;\n  padding-bottom: 0px;\n}\n.fancy-header .fancy-title {\n  font-size: 32px;\n  line-height: 36px;\n  color: #079547;\n  text-transform: none;\n}\n.fancy-header .fancy-subtitle {\n  font-size: 24px;\n  line-height: 26px;\n  color: #792c8a;\n  text-transform: none;\n}\n.fancy-header .breadcrumbs {\n  color: #ffffff;\n}\n.fancy-header-overlay {\n  background: rgba(0,0,0,0.5);\n}\n@media screen and (max-width: 778px) {\n  .fancy-header .wf-wrap {\n    min-height: 140px;\n  }\n  .fancy-header .fancy-title {\n    font-size: 30px;\n    line-height: 38px;\n  }\n  .fancy-header .fancy-subtitle {\n    font-size: 20px;\n    line-height: 28px;\n  }\n  .fancy-header.breadcrumbs-mobile-off .breadcrumbs {\n    display: none;\n  }\n  #fancy-header > .wf-wrap {\n    flex-flow: column wrap;\n    align-items: center;\n    justify-content: center;\n    padding-bottom: 0px !important;\n  }\n  .fancy-header.title-left .breadcrumbs {\n    text-align: center;\n    float: none;\n  }\n  .breadcrumbs {\n    margin-bottom: 10px;\n  }\n  .breadcrumbs.breadcrumbs-bg {\n    margin-top: 10px;\n  }\n  .fancy-header.title-right .breadcrumbs {\n    margin: 10px 0 10px 0;\n  }\n  #fancy-header .hgroup,\n  #fancy-header .breadcrumbs {\n    text-align: center;\n  }\n  .fancy-header .hgroup {\n    padding-bottom: 5px;\n  }\n  .breadcrumbs-off .hgroup {\n    padding-bottom: 5px;\n  }\n  .title-right .hgroup {\n    padding: 0 0 5px 0;\n  }\n  .title-right.breadcrumbs-off .hgroup {\n    padding-top: 5px;\n  }\n  .title-left.disabled-bg .breadcrumbs {\n    margin-bottom: 0;\n  }\n}\n'),(17548,3369,'_wp_attached_file','2023/08/Noworm-Plus_logo.png'),(17549,3369,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:300;s:6:\"height\";i:76;s:4:\"file\";s:28:\"2023/08/Noworm-Plus_logo.png\";s:8:\"filesize\";i:5457;s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:27:\"Noworm-Plus_logo-150x76.png\";s:5:\"width\";i:150;s:6:\"height\";i:76;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:6378;}s:29:\"woocommerce_gallery_thumbnail\";a:5:{s:4:\"file\";s:27:\"Noworm-Plus_logo-200x76.png\";s:5:\"width\";i:200;s:6:\"height\";i:76;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:8373;}}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:{}}}'),(15784,3262,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:450;s:6:\"height\";i:269;s:4:\"file\";s:41:\"2023/08/Fully-automated-manufacturing.png\";s:8:\"filesize\";i:60768;s:5:\"sizes\";a:6:{s:6:\"medium\";a:5:{s:4:\"file\";s:41:\"Fully-automated-manufacturing-300x179.png\";s:5:\"width\";i:300;s:6:\"height\";i:179;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:90779;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:41:\"Fully-automated-manufacturing-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:37692;}s:21:\"woocommerce_thumbnail\";a:6:{s:4:\"file\";s:41:\"Fully-automated-manufacturing-300x269.png\";s:5:\"width\";i:300;s:6:\"height\";i:269;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:45686;s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:5:{s:4:\"file\";s:41:\"Fully-automated-manufacturing-200x200.png\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:67672;}s:12:\"shop_catalog\";a:5:{s:4:\"file\";s:41:\"Fully-automated-manufacturing-300x269.png\";s:5:\"width\";i:300;s:6:\"height\";i:269;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:45686;}s:14:\"shop_thumbnail\";a:5:{s:4:\"file\";s:41:\"Fully-automated-manufacturing-200x200.png\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:67672;}}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:{}}}'),(19246,3461,'_dt_fancy_header_title_line_height','36'),(15785,3263,'_wpb_shortcodes_custom_css','.vc_custom_1692366072362{margin-top: 35px !important;padding-top: 65px !important;padding-bottom: 100px !important;}.vc_custom_1684836308288{margin-top: 15px !important;}.vc_custom_1692359205466{margin-top: 35px !important;}.vc_custom_1692359216075{margin-top: 35px !important;}.vc_custom_1692359231594{margin-top: 35px !important;}.vc_custom_1692359239274{margin-top: 35px !important;}.vc_custom_1692359246626{margin-top: 35px !important;}.vc_custom_1692359252258{margin-top: 35px !important;}.vc_custom_1692359258634{margin-top: 35px !important;}.vc_custom_1691995519863{background-color: #f4ab20 !important;border: 1px solid #f4ab20 !important;border-radius: 35px !important;}.vc_custom_1691995661095{background-color: #722f8b !important;border: 1px solid #722f8b !important;border-radius: 35px !important;}.vc_custom_1691995661095{background-color: #722f8b !important;border: 1px solid #722f8b !important;border-radius: 35px !important;}.vc_custom_1691995519863{background-color: #f4ab20 !important;border: 1px solid #f4ab20 !important;border-radius: 35px !important;}.vc_custom_1691996718116{border-radius: 35px !important;}.vc_custom_1691995519863{background-color: #f4ab20 !important;border: 1px solid #f4ab20 !important;border-radius: 35px !important;}.vc_custom_1692278936750{border-top-width: 1px !important;border-right-width: 1px !important;border-bottom-width: 1px !important;border-left-width: 1px !important;border-left-color: #059444 !important;border-left-style: solid !important;border-right-color: #059444 !important;border-right-style: solid !important;border-top-color: #059444 !important;border-top-style: solid !important;border-bottom-color: #059444 !important;border-bottom-style: solid !important;border-radius: 1px !important;}.vc_custom_1692278936750{border-top-width: 1px !important;border-right-width: 1px !important;border-bottom-width: 1px !important;border-left-width: 1px !important;border-left-color: #059444 !important;border-left-style: solid !important;border-right-color: #059444 !important;border-right-style: solid !important;border-top-color: #059444 !important;border-top-style: solid !important;border-bottom-color: #059444 !important;border-bottom-style: solid !important;border-radius: 1px !important;}.vc_custom_1692278929158{border-top-width: 1px !important;border-right-width: 1px !important;border-bottom-width: 1px !important;border-left-width: 1px !important;border-left-color: #059444 !important;border-left-style: solid !important;border-right-color: #059444 !important;border-right-style: solid !important;border-top-color: #059444 !important;border-top-style: solid !important;border-bottom-color: #059444 !important;border-bottom-style: solid !important;border-radius: 1px !important;}.vc_custom_1692278922309{border-top-width: 1px !important;border-right-width: 1px !important;border-bottom-width: 1px !important;border-left-width: 1px !important;border-left-color: #059444 !important;border-left-style: solid !important;border-right-color: #059444 !important;border-right-style: solid !important;border-top-color: #059444 !important;border-top-style: solid !important;border-bottom-color: #059444 !important;border-bottom-style: solid !important;border-radius: 1px !important;}.vc_custom_1692278922309{border-top-width: 1px !important;border-right-width: 1px !important;border-bottom-width: 1px !important;border-left-width: 1px !important;border-left-color: #059444 !important;border-left-style: solid !important;border-right-color: #059444 !important;border-right-style: solid !important;border-top-color: #059444 !important;border-top-style: solid !important;border-bottom-color: #059444 !important;border-bottom-style: solid !important;border-radius: 1px !important;}.vc_custom_1692278929158{border-top-width: 1px !important;border-right-width: 1px !important;border-bottom-width: 1px !important;border-left-width: 1px !important;border-left-color: #059444 !important;border-left-style: solid !important;border-right-color: #059444 !important;border-right-style: solid !important;border-top-color: #059444 !important;border-top-style: solid !important;border-bottom-color: #059444 !important;border-bottom-style: solid !important;border-radius: 1px !important;}.vc_custom_1692278936750{border-top-width: 1px !important;border-right-width: 1px !important;border-bottom-width: 1px !important;border-left-width: 1px !important;border-left-color: #059444 !important;border-left-style: solid !important;border-right-color: #059444 !important;border-right-style: solid !important;border-top-color: #059444 !important;border-top-style: solid !important;border-bottom-color: #059444 !important;border-bottom-style: solid !important;border-radius: 1px !important;}.vc_custom_1692278922309{border-top-width: 1px !important;border-right-width: 1px !important;border-bottom-width: 1px !important;border-left-width: 1px !important;border-left-color: #059444 !important;border-left-style: solid !important;border-right-color: #059444 !important;border-right-style: solid !important;border-top-color: #059444 !important;border-top-style: solid !important;border-bottom-color: #059444 !important;border-bottom-style: solid !important;border-radius: 1px !important;}.vc_custom_1692278929158{border-top-width: 1px !important;border-right-width: 1px !important;border-bottom-width: 1px !important;border-left-width: 1px !important;border-left-color: #059444 !important;border-left-style: solid !important;border-right-color: #059444 !important;border-right-style: solid !important;border-top-color: #059444 !important;border-top-style: solid !important;border-bottom-color: #059444 !important;border-bottom-style: solid !important;border-radius: 1px !important;}.vc_custom_1692278936750{border-top-width: 1px !important;border-right-width: 1px !important;border-bottom-width: 1px !important;border-left-width: 1px !important;border-left-color: #059444 !important;border-left-style: solid !important;border-right-color: #059444 !important;border-right-style: solid !important;border-top-color: #059444 !important;border-top-style: solid !important;border-bottom-color: #059444 !important;border-bottom-style: solid !important;border-radius: 1px !important;}.vc_custom_1692278936750{border-top-width: 1px !important;border-right-width: 1px !important;border-bottom-width: 1px !important;border-left-width: 1px !important;border-left-color: #059444 !important;border-left-style: solid !important;border-right-color: #059444 !important;border-right-style: solid !important;border-top-color: #059444 !important;border-top-style: solid !important;border-bottom-color: #059444 !important;border-bottom-style: solid !important;border-radius: 1px !important;}.vc_custom_1692278929158{border-top-width: 1px !important;border-right-width: 1px !important;border-bottom-width: 1px !important;border-left-width: 1px !important;border-left-color: #059444 !important;border-left-style: solid !important;border-right-color: #059444 !important;border-right-style: solid !important;border-top-color: #059444 !important;border-top-style: solid !important;border-bottom-color: #059444 !important;border-bottom-style: solid !important;border-radius: 1px !important;}.vc_custom_1692278922309{border-top-width: 1px !important;border-right-width: 1px !important;border-bottom-width: 1px !important;border-left-width: 1px !important;border-left-color: #059444 !important;border-left-style: solid !important;border-right-color: #059444 !important;border-right-style: solid !important;border-top-color: #059444 !important;border-top-style: solid !important;border-bottom-color: #059444 !important;border-bottom-style: solid !important;border-radius: 1px !important;}.vc_custom_1692278929158{border-top-width: 1px !important;border-right-width: 1px !important;border-bottom-width: 1px !important;border-left-width: 1px !important;border-left-color: #059444 !important;border-left-style: solid !important;border-right-color: #059444 !important;border-right-style: solid !important;border-top-color: #059444 !important;border-top-style: solid !important;border-bottom-color: #059444 !important;border-bottom-style: solid !important;border-radius: 1px !important;}'),(17760,3382,'_wpb_shortcodes_custom_css_updated','1'),(17780,3392,'_wpb_shortcodes_custom_css','.vc_custom_1689577528817{padding-bottom: 50px !important;}.vc_custom_1693451731079{padding-top: 50px !important;padding-bottom: 50px !important;}.vc_custom_1689578794814{padding-top: 50px !important;padding-bottom: 50px !important;}.vc_custom_1689578794814{padding-top: 50px !important;padding-bottom: 50px !important;}.vc_custom_1689577454678{margin-bottom: 50px !important;}.vc_custom_1692407941633{border-bottom-width: 1px !important;border-bottom-color: #079547 !important;border-bottom-style: solid !important;border-radius: 1px !important;}.vc_custom_1692407949383{border-bottom-width: 1px !important;border-bottom-color: #079547 !important;border-bottom-style: solid !important;border-radius: 1px !important;}.vc_custom_1692407957943{border-bottom-width: 1px !important;border-bottom-color: #079547 !important;border-bottom-style: solid !important;border-radius: 1px !important;}.vc_custom_1692407970279{border-bottom-width: 1px !important;border-bottom-color: #079547 !important;border-bottom-style: solid !important;border-radius: 1px !important;}.vc_custom_1691846530645{border-right-width: 1px !important;border-left-width: 1px !important;border-left-color: #000000 !important;border-left-style: solid !important;border-right-color: #000000 !important;border-right-style: solid !important;border-radius: 1px !important;}.vc_custom_1691846545469{border-right-width: 1px !important;border-left-width: 1px !important;border-left-color: #000000 !important;border-left-style: solid !important;border-right-color: #000000 !important;border-right-style: solid !important;border-radius: 1px !important;}.vc_custom_1691846563021{border-right-width: 1px !important;border-right-color: #000000 !important;border-right-style: solid !important;border-radius: 1px !important;}.vc_custom_1691846569845{border-right-width: 1px !important;border-right-color: #000000 !important;border-right-style: solid !important;border-radius: 1px !important;}.vc_custom_1691846576949{border-right-width: 1px !important;border-right-color: #000000 !important;border-right-style: solid !important;border-radius: 1px !important;}.vc_custom_1689578812611{margin-top: 50px !important;}.vc_custom_1693540291208{background-image: url(https://farmchemie.yasithawd.com/wp-content/uploads/2023/09/02International-Markets-Sri-Lankan-Market.png?id=3379) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}.vc_custom_1693540250450{background-color: #8d499b !important;}.vc_custom_1693540116474{background-color: #039447 !important;}.vc_custom_1693540312642{background-image: url(https://farmchemie.yasithawd.com/wp-content/uploads/2023/09/01International-Markets-Sri-Lankan-Market.png?id=3378) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}'),(17765,3385,'_wpb_shortcodes_custom_css','.vc_custom_1689577528817{padding-bottom: 50px !important;}.vc_custom_1693451731079{padding-top: 50px !important;padding-bottom: 50px !important;}.vc_custom_1689578794814{padding-top: 50px !important;padding-bottom: 50px !important;}.vc_custom_1689578794814{padding-top: 50px !important;padding-bottom: 50px !important;}.vc_custom_1693540932074{margin-top: 10px !important;margin-bottom: 10px !important;}.vc_custom_1689577454678{margin-bottom: 50px !important;}.vc_custom_1692407941633{border-bottom-width: 1px !important;border-bottom-color: #079547 !important;border-bottom-style: solid !important;border-radius: 1px !important;}.vc_custom_1692407949383{border-bottom-width: 1px !important;border-bottom-color: #079547 !important;border-bottom-style: solid !important;border-radius: 1px !important;}.vc_custom_1692407957943{border-bottom-width: 1px !important;border-bottom-color: #079547 !important;border-bottom-style: solid !important;border-radius: 1px !important;}.vc_custom_1692407970279{border-bottom-width: 1px !important;border-bottom-color: #079547 !important;border-bottom-style: solid !important;border-radius: 1px !important;}.vc_custom_1691846530645{border-right-width: 1px !important;border-left-width: 1px !important;border-left-color: #000000 !important;border-left-style: solid !important;border-right-color: #000000 !important;border-right-style: solid !important;border-radius: 1px !important;}.vc_custom_1691846545469{border-right-width: 1px !important;border-left-width: 1px !important;border-left-color: #000000 !important;border-left-style: solid !important;border-right-color: #000000 !important;border-right-style: solid !important;border-radius: 1px !important;}.vc_custom_1691846563021{border-right-width: 1px !important;border-right-color: #000000 !important;border-right-style: solid !important;border-radius: 1px !important;}.vc_custom_1691846569845{border-right-width: 1px !important;border-right-color: #000000 !important;border-right-style: solid !important;border-radius: 1px !important;}.vc_custom_1691846576949{border-right-width: 1px !important;border-right-color: #000000 !important;border-right-style: solid !important;border-radius: 1px !important;}.vc_custom_1689578812611{margin-top: 50px !important;}.vc_custom_1693540291208{background-image: url(https://farmchemie.yasithawd.com/wp-content/uploads/2023/09/02International-Markets-Sri-Lankan-Market.png?id=3379) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}.vc_custom_1693540250450{background-color: #8d499b !important;}.vc_custom_1693540116474{background-color: #039447 !important;}.vc_custom_1693540312642{background-image: url(https://farmchemie.yasithawd.com/wp-content/uploads/2023/09/01International-Markets-Sri-Lankan-Market.png?id=3378) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}'),(17761,3383,'_wpb_shortcodes_custom_css','.vc_custom_1689577528817{padding-bottom: 50px !important;}.vc_custom_1693451731079{padding-top: 50px !important;padding-bottom: 50px !important;}.vc_custom_1689578794814{padding-top: 50px !important;padding-bottom: 50px !important;}.vc_custom_1689578794814{padding-top: 50px !important;padding-bottom: 50px !important;}.vc_custom_1689577454678{margin-bottom: 50px !important;}.vc_custom_1692407941633{border-bottom-width: 1px !important;border-bottom-color: #079547 !important;border-bottom-style: solid !important;border-radius: 1px !important;}.vc_custom_1692407949383{border-bottom-width: 1px !important;border-bottom-color: #079547 !important;border-bottom-style: solid !important;border-radius: 1px !important;}.vc_custom_1692407957943{border-bottom-width: 1px !important;border-bottom-color: #079547 !important;border-bottom-style: solid !important;border-radius: 1px !important;}.vc_custom_1692407970279{border-bottom-width: 1px !important;border-bottom-color: #079547 !important;border-bottom-style: solid !important;border-radius: 1px !important;}.vc_custom_1691846530645{border-right-width: 1px !important;border-left-width: 1px !important;border-left-color: #000000 !important;border-left-style: solid !important;border-right-color: #000000 !important;border-right-style: solid !important;border-radius: 1px !important;}.vc_custom_1691846545469{border-right-width: 1px !important;border-left-width: 1px !important;border-left-color: #000000 !important;border-left-style: solid !important;border-right-color: #000000 !important;border-right-style: solid !important;border-radius: 1px !important;}.vc_custom_1691846563021{border-right-width: 1px !important;border-right-color: #000000 !important;border-right-style: solid !important;border-radius: 1px !important;}.vc_custom_1691846569845{border-right-width: 1px !important;border-right-color: #000000 !important;border-right-style: solid !important;border-radius: 1px !important;}.vc_custom_1691846576949{border-right-width: 1px !important;border-right-color: #000000 !important;border-right-style: solid !important;border-radius: 1px !important;}.vc_custom_1689578812611{margin-top: 50px !important;}.vc_custom_1693540291208{background-image: url(https://farmchemie.yasithawd.com/wp-content/uploads/2023/09/02International-Markets-Sri-Lankan-Market.png?id=3379) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}.vc_custom_1693540250450{background-color: #8d499b !important;}.vc_custom_1693540668043{border: 0px initial rgba(0,0,0,0.01) !important;}.vc_custom_1693540116474{background-color: #039447 !important;}.vc_custom_1693540312642{background-image: url(https://farmchemie.yasithawd.com/wp-content/uploads/2023/09/01International-Markets-Sri-Lankan-Market.png?id=3378) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}.vc_custom_1693540678907{border: 0px initial !important;}'),(17644,3370,'_edit_lock','1694854336:1'),(17645,3370,'_edit_last','1'),(17646,3371,'_wp_attached_file','2023/08/AbamecD_600px-x-600px.png'),(17647,3371,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:600;s:6:\"height\";i:600;s:4:\"file\";s:33:\"2023/08/AbamecD_600px-x-600px.png\";s:8:\"filesize\";i:49950;s:5:\"sizes\";a:4:{s:6:\"medium\";a:5:{s:4:\"file\";s:33:\"AbamecD_600px-x-600px-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:45780;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:33:\"AbamecD_600px-x-600px-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:14270;}s:21:\"woocommerce_thumbnail\";a:6:{s:4:\"file\";s:33:\"AbamecD_600px-x-600px-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:45780;s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:5:{s:4:\"file\";s:33:\"AbamecD_600px-x-600px-200x200.png\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:22926;}}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:{}}}'),(17648,3372,'_wp_attached_file','2023/08/AbamecD-Logo.png'),(17649,3372,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:300;s:6:\"height\";i:58;s:4:\"file\";s:24:\"2023/08/AbamecD-Logo.png\";s:8:\"filesize\";i:3185;s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:23:\"AbamecD-Logo-150x58.png\";s:5:\"width\";i:150;s:6:\"height\";i:58;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:3660;}s:29:\"woocommerce_gallery_thumbnail\";a:5:{s:4:\"file\";s:23:\"AbamecD-Logo-200x58.png\";s:5:\"width\";i:200;s:6:\"height\";i:58;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:4585;}}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:{}}}'),(17650,3373,'total_sales','0'),(17651,3373,'_tax_status','taxable'),(17652,3373,'_tax_class',''),(17653,3373,'_manage_stock','no'),(17654,3373,'_backorders','no'),(17655,3373,'_sold_individually','no'),(17656,3373,'_virtual','no'),(17657,3373,'_downloadable','no'),(17658,3373,'_download_limit','-1'),(17659,3373,'_download_expiry','-1'),(17660,3373,'_thumbnail_id','3754'),(17661,3373,'_stock',NULL),(17662,3373,'_stock_status','instock'),(17663,3373,'_wc_average_rating','0'),(17664,3373,'_wc_review_count','0'),(17665,3373,'_product_version','8.0.2'),(17666,3373,'_dt_sidebar_position','disabled'),(17667,3373,'_dt_sidebar_widgetarea_id','sidebar_1'),(17668,3373,'_dt_sidebar_hide_on_mobile','0'),(17669,3373,'_dt_footer_show','1'),(17670,3373,'_dt_footer_widgetarea_id','sidebar_2'),(17671,3373,'_dt_footer_hide_on_mobile','0'),(17672,3373,'_dt_header_title','fancy'),(17673,3373,'_dt_header_background','normal'),(17674,3373,'_dt_header_background_below_slideshow','disabled'),(17675,3373,'_dt_header_transparent_bg_color_scheme','light'),(17676,3373,'_dt_header_transparent_top_bar_bg_color','#ffffff'),(17677,3373,'_dt_header_transparent_top_bar_bg_opacity','25'),(17678,3373,'_dt_header_transparent_bg_color','#000000'),(17679,3373,'_dt_header_transparent_bg_opacity','50'),(17680,3373,'_dt_header_disabled_background','normal'),(17681,3373,'_dt_header_disabled_transparent_bg_color_scheme','light'),(17682,3373,'_dt_header_disabled_transparent_top_bar_bg_color','#ffffff'),(17683,3373,'_dt_header_disabled_transparent_top_bar_bg_opacity','25'),(17684,3373,'_dt_header_disabled_transparent_bg_color','#000000'),(17685,3373,'_dt_header_disabled_transparent_bg_opacity','50'),(17686,3373,'_dt_page_overrides_top_margin','1%'),(17687,3373,'_dt_page_overrides_right_margin',''),(17688,3373,'_dt_page_overrides_bottom_margin',''),(17689,3373,'_dt_page_overrides_left_margin',''),(17690,3373,'_dt_mobile_page_padding_top',''),(17691,3373,'_dt_mobile_page_padding_right',''),(17692,3373,'_dt_mobile_page_padding_bottom',''),(17693,3373,'_dt_mobile_page_padding_left',''),(17694,3373,'_dt_fancy_header_layout_heading',''),(17695,3373,'_dt_fancy_header_title_aligment','all_left'),(17696,3373,'_dt_fancy_header_height','140'),(17697,3373,'_dt_fancy_header_padding-top','0px'),(17698,3373,'_dt_fancy_header_padding-bottom','0px'),(17699,3373,'_dt_fancy_header_breadcrumbs_heading',''),(17700,3373,'_dt_fancy_header_breadcrumbs','disabled'),(17701,3373,'_dt_fancy_header_breadcrumbs_text_color','#ffffff'),(17702,3373,'_dt_fancy_header_breadcrumbs_bg_color','disabled'),(17703,3373,'_dt_fancy_header_title_heading',''),(17704,3373,'_dt_fancy_header_title_mode','custom'),(17705,3373,'_dt_fancy_header_title',''),(17706,3373,'_dt_fancy_header_title_font_size','32'),(17707,3373,'_dt_fancy_header_title_line_height','36'),(17708,3373,'_dt_fancy_header_text_transform','none'),(17709,3373,'_dt_fancy_header_title_color_mode','color'),(17710,3373,'_dt_fancy_header_title_color','#079547'),(17711,3373,'_dt_fancy_header_subtitle_heading',''),(17712,3373,'_dt_fancy_header_subtitle',''),(17713,3373,'_dt_fancy_header_subtitle_font_size','24'),(17714,3373,'_dt_fancy_header_subtitle_line_height','26'),(17715,3373,'_dt_fancy_header_subtitle_text_transform','none'),(17716,3373,'_dt_fancy_header_subtitle_color_mode','color'),(17717,3373,'_dt_fancy_header_subtitle_color','#792c8a'),(17718,3373,'_dt_fancy_header_bg_heading',''),(17719,3373,'_dt_fancy_header_bg_color','#ffffff'),(17720,3373,'_dt_fancy_header_bg_image_origin','custom'),(17721,3373,'_dt_fancy_header_bg_image','a:1:{i:0;i:3755;}'),(17722,3373,'_dt_fancy_header_bg_repeat','no-repeat'),(17723,3373,'_dt_fancy_header_bg_position_x','center'),(17724,3373,'_dt_fancy_header_bg_position_y','center'),(17725,3373,'_dt_fancy_header_bg_fullscreen','0'),(17726,3373,'_dt_fancy_header_bg_overlay','0'),(17727,3373,'_dt_fancy_header_overlay_color','#000'),(17728,3373,'_dt_fancy_header_bg_overlay_opacity','50'),(17729,3373,'_dt_fancy_header_scroll_effect','default'),(17730,3373,'_dt_fancy_header_bg_parallax','0.5'),(17731,3373,'_dt_fancy_header_responsiveness_heading',''),(17732,3373,'_dt_fancy_header_responsiveness','enabled'),(17733,3373,'_dt_fancy_header_responsiveness_switch','778px'),(17734,3373,'_dt_fancy_header_responsive_height','140'),(17735,3373,'_dt_fancy_header_responsive_font_size','30'),(17736,3373,'_dt_fancy_header_responsive_title_line_height','38'),(17737,3373,'_dt_fancy_header_responsive_subtitle_font_size','20'),(17738,3373,'_dt_fancy_header_responsive_subtitle_line_height','28'),(17739,3373,'_dt_fancy_header_responsive_breadcrumbs','disabled'),(17740,3373,'the7_fancy_title_css','#main {\n  padding-top: 1%;\n}\n.fancy-header {\n  background-image: url(\'https://farmchemie.yasithawd.com/wp-content/uploads/2023/08/Prazimec-D_logo-1.png\');\n  background-repeat: no-repeat;\n  background-position: center center;\n  background-size: auto auto;\n  background-color: #ffffff;\n}\n.mobile-false .fancy-header {\n  background-attachment: scroll;\n}\n.fancy-header .wf-wrap {\n  min-height: 140px;\n  padding-top: 0px;\n  padding-bottom: 0px;\n}\n.fancy-header .fancy-title {\n  font-size: 32px;\n  line-height: 36px;\n  color: #079547;\n  text-transform: none;\n}\n.fancy-header .fancy-subtitle {\n  font-size: 24px;\n  line-height: 26px;\n  color: #792c8a;\n  text-transform: none;\n}\n.fancy-header .breadcrumbs {\n  color: #ffffff;\n}\n.fancy-header-overlay {\n  background: rgba(0,0,0,0.5);\n}\n@media screen and (max-width: 778px) {\n  .fancy-header .wf-wrap {\n    min-height: 140px;\n  }\n  .fancy-header .fancy-title {\n    font-size: 30px;\n    line-height: 38px;\n  }\n  .fancy-header .fancy-subtitle {\n    font-size: 20px;\n    line-height: 28px;\n  }\n  .fancy-header.breadcrumbs-mobile-off .breadcrumbs {\n    display: none;\n  }\n  #fancy-header > .wf-wrap {\n    flex-flow: column wrap;\n    align-items: center;\n    justify-content: center;\n    padding-bottom: 0px !important;\n  }\n  .fancy-header.title-left .breadcrumbs {\n    text-align: center;\n    float: none;\n  }\n  .breadcrumbs {\n    margin-bottom: 10px;\n  }\n  .breadcrumbs.breadcrumbs-bg {\n    margin-top: 10px;\n  }\n  .fancy-header.title-right .breadcrumbs {\n    margin: 10px 0 10px 0;\n  }\n  #fancy-header .hgroup,\n  #fancy-header .breadcrumbs {\n    text-align: center;\n  }\n  .fancy-header .hgroup {\n    padding-bottom: 5px;\n  }\n  .breadcrumbs-off .hgroup {\n    padding-bottom: 5px;\n  }\n  .title-right .hgroup {\n    padding: 0 0 5px 0;\n  }\n  .title-right.breadcrumbs-off .hgroup {\n    padding-top: 5px;\n  }\n  .title-left.disabled-bg .breadcrumbs {\n    margin-bottom: 0;\n  }\n}\n'),(17741,3373,'_edit_lock','1694854280:1'),(17742,3374,'_wpb_shortcodes_custom_css','.vc_custom_1689577528817{padding-bottom: 50px !important;}.vc_custom_1693451731079{padding-top: 50px !important;padding-bottom: 50px !important;}.vc_custom_1689578794814{padding-top: 50px !important;padding-bottom: 50px !important;}.vc_custom_1689578794814{padding-top: 50px !important;padding-bottom: 50px !important;}.vc_custom_1689577454678{margin-bottom: 50px !important;}.vc_custom_1692407941633{border-bottom-width: 1px !important;border-bottom-color: #079547 !important;border-bottom-style: solid !important;border-radius: 1px !important;}.vc_custom_1692407949383{border-bottom-width: 1px !important;border-bottom-color: #079547 !important;border-bottom-style: solid !important;border-radius: 1px !important;}.vc_custom_1692407957943{border-bottom-width: 1px !important;border-bottom-color: #079547 !important;border-bottom-style: solid !important;border-radius: 1px !important;}.vc_custom_1692407970279{border-bottom-width: 1px !important;border-bottom-color: #079547 !important;border-bottom-style: solid !important;border-radius: 1px !important;}.vc_custom_1691846530645{border-right-width: 1px !important;border-left-width: 1px !important;border-left-color: #000000 !important;border-left-style: solid !important;border-right-color: #000000 !important;border-right-style: solid !important;border-radius: 1px !important;}.vc_custom_1691846545469{border-right-width: 1px !important;border-left-width: 1px !important;border-left-color: #000000 !important;border-left-style: solid !important;border-right-color: #000000 !important;border-right-style: solid !important;border-radius: 1px !important;}.vc_custom_1691846563021{border-right-width: 1px !important;border-right-color: #000000 !important;border-right-style: solid !important;border-radius: 1px !important;}.vc_custom_1691846569845{border-right-width: 1px !important;border-right-color: #000000 !important;border-right-style: solid !important;border-radius: 1px !important;}.vc_custom_1691846576949{border-right-width: 1px !important;border-right-color: #000000 !important;border-right-style: solid !important;border-radius: 1px !important;}.vc_custom_1689578812611{margin-top: 50px !important;}'),(17743,3374,'_wpb_shortcodes_custom_css_updated','1'),(17748,3377,'_wpb_shortcodes_custom_css','.vc_custom_1689577528817{padding-bottom: 50px !important;}.vc_custom_1693451731079{padding-top: 50px !important;padding-bottom: 50px !important;}.vc_custom_1689578794814{padding-top: 50px !important;padding-bottom: 50px !important;}.vc_custom_1689578794814{padding-top: 50px !important;padding-bottom: 50px !important;}.vc_custom_1689577454678{margin-bottom: 50px !important;}.vc_custom_1692407941633{border-bottom-width: 1px !important;border-bottom-color: #079547 !important;border-bottom-style: solid !important;border-radius: 1px !important;}.vc_custom_1692407949383{border-bottom-width: 1px !important;border-bottom-color: #079547 !important;border-bottom-style: solid !important;border-radius: 1px !important;}.vc_custom_1692407957943{border-bottom-width: 1px !important;border-bottom-color: #079547 !important;border-bottom-style: solid !important;border-radius: 1px !important;}.vc_custom_1692407970279{border-bottom-width: 1px !important;border-bottom-color: #079547 !important;border-bottom-style: solid !important;border-radius: 1px !important;}.vc_custom_1691846530645{border-right-width: 1px !important;border-left-width: 1px !important;border-left-color: #000000 !important;border-left-style: solid !important;border-right-color: #000000 !important;border-right-style: solid !important;border-radius: 1px !important;}.vc_custom_1691846545469{border-right-width: 1px !important;border-left-width: 1px !important;border-left-color: #000000 !important;border-left-style: solid !important;border-right-color: #000000 !important;border-right-style: solid !important;border-radius: 1px !important;}.vc_custom_1691846563021{border-right-width: 1px !important;border-right-color: #000000 !important;border-right-style: solid !important;border-radius: 1px !important;}.vc_custom_1691846569845{border-right-width: 1px !important;border-right-color: #000000 !important;border-right-style: solid !important;border-radius: 1px !important;}.vc_custom_1691846576949{border-right-width: 1px !important;border-right-color: #000000 !important;border-right-style: solid !important;border-radius: 1px !important;}.vc_custom_1689578812611{margin-top: 50px !important;}'),(17744,3375,'_wpb_shortcodes_custom_css','.vc_custom_1689580294399{padding-top: 50px !important;padding-bottom: 50px !important;}.vc_custom_1691129087062{border-top-width: 1px !important;border-top-color: #079547 !important;border-top-style: solid !important;border-radius: 1px !important;}.vc_custom_1692423054521{border-top-width: 1px !important;border-top-color: #079547 !important;border-top-style: solid !important;border-radius: 1px !important;}.vc_custom_1692423045746{border-top-width: 1px !important;border-top-color: #079547 !important;border-top-style: solid !important;border-radius: 1px !important;}.vc_custom_1692423061906{border-top-width: 1px !important;border-top-color: #079547 !important;border-top-style: solid !important;border-radius: 1px !important;}.vc_custom_1692423068642{border-top-width: 1px !important;border-top-color: #079547 !important;border-top-style: solid !important;border-radius: 1px !important;}.vc_custom_1692423075811{border-top-width: 1px !important;border-top-color: #079547 !important;border-top-style: solid !important;border-radius: 1px !important;}'),(17745,3375,'_wpb_shortcodes_custom_css_updated','1'),(17746,3376,'_wpb_shortcodes_custom_css','.vc_custom_1689580294399{padding-top: 50px !important;padding-bottom: 50px !important;}.vc_custom_1691129087062{border-top-width: 1px !important;border-top-color: #079547 !important;border-top-style: solid !important;border-radius: 1px !important;}.vc_custom_1692423054521{border-top-width: 1px !important;border-top-color: #079547 !important;border-top-style: solid !important;border-radius: 1px !important;}.vc_custom_1692423045746{border-top-width: 1px !important;border-top-color: #079547 !important;border-top-style: solid !important;border-radius: 1px !important;}.vc_custom_1692423061906{border-top-width: 1px !important;border-top-color: #079547 !important;border-top-style: solid !important;border-radius: 1px !important;}.vc_custom_1692423068642{border-top-width: 1px !important;border-top-color: #079547 !important;border-top-style: solid !important;border-radius: 1px !important;}.vc_custom_1692423075811{border-top-width: 1px !important;border-top-color: #079547 !important;border-top-style: solid !important;border-radius: 1px !important;}'),(1105,1577,'the7_shortcodes_dynamic_css','a:57:{i:0;s:0:\"\";s:32:\"5b5b81e308c7067efe191797f73cb619\";s:1190:\"#default-btn-5b5b81e308c7067efe191797f73cb619 {\n  border-radius: 0px;\n  font-size: 17px;\n  line-height: 19px;\n}\n.btn-shadow#default-btn-5b5b81e308c7067efe191797f73cb619 {\n  box-shadow: 0 1px 6px rgba(0,0,0,0.12);\n  transition: box-shadow 0.2s ease-out, opacity 0.45s;\n}\n.btn-shadow#default-btn-5b5b81e308c7067efe191797f73cb619:hover {\n  box-shadow: 0 5px 11px 0 rgba(0,0,0,0.18), 0 4px 15px 0 rgba(0,0,0,0.15);\n}\n.btn-flat#default-btn-5b5b81e308c7067efe191797f73cb619 {\n  box-shadow: none;\n}\n.btn-flat#default-btn-5b5b81e308c7067efe191797f73cb619:hover {\n  box-shadow: none;\n}\n#default-btn-5b5b81e308c7067efe191797f73cb619.ico-right-side > i {\n  margin-right: 0px;\n  margin-left: 8px;\n}\n#default-btn-5b5b81e308c7067efe191797f73cb619 > i {\n  margin-right: 8px;\n  font-size: 18px;\n}\n#default-btn-5b5b81e308c7067efe191797f73cb619:not(:hover) {\n  border-width: 2px;\n  padding: 12px 14px 12px 14px;\n}\n#default-btn-5b5b81e308c7067efe191797f73cb619:hover {\n  border-width: 0px;\n  padding: 14px 16px 14px 16px;\n}\n#default-btn-5b5b81e308c7067efe191797f73cb619.ico-right-side > i {\n  margin-right: 0px;\n  margin-left: 8px;\n}\n#default-btn-5b5b81e308c7067efe191797f73cb619 > i {\n  margin-right: 8px;\n}\n\";s:32:\"6ca4ebdf7fd0acd6f7378b67432d6cdf\";s:1357:\"#default-btn-6ca4ebdf7fd0acd6f7378b67432d6cdf {\n  border-radius: 0px;\n  font-size: 17px;\n  line-height: 19px;\n}\n.btn-shadow#default-btn-6ca4ebdf7fd0acd6f7378b67432d6cdf {\n  box-shadow: 0 1px 6px rgba(0,0,0,0.12);\n  transition: box-shadow 0.2s ease-out, opacity 0.45s;\n}\n.btn-shadow#default-btn-6ca4ebdf7fd0acd6f7378b67432d6cdf:hover {\n  box-shadow: 0 5px 11px 0 rgba(0,0,0,0.18), 0 4px 15px 0 rgba(0,0,0,0.15);\n}\n.btn-flat#default-btn-6ca4ebdf7fd0acd6f7378b67432d6cdf {\n  box-shadow: none;\n}\n.btn-flat#default-btn-6ca4ebdf7fd0acd6f7378b67432d6cdf:hover {\n  box-shadow: none;\n}\n#default-btn-6ca4ebdf7fd0acd6f7378b67432d6cdf.ico-right-side > i {\n  margin-right: 0px;\n  margin-left: 8px;\n}\n#default-btn-6ca4ebdf7fd0acd6f7378b67432d6cdf > i {\n  margin-right: 8px;\n  font-size: 18px;\n}\n#default-btn-6ca4ebdf7fd0acd6f7378b67432d6cdf:not(:hover) {\n  border-width: 2px;\n  border-color: #7bb519 !important;\n  color: #7bb519;\n  background: none !important;\n  padding: 12px 14px 12px 14px;\n}\n#default-btn-6ca4ebdf7fd0acd6f7378b67432d6cdf:not(:hover) * {\n  color: #7bb519;\n}\n#default-btn-6ca4ebdf7fd0acd6f7378b67432d6cdf:hover {\n  border-width: 0px;\n  padding: 14px 16px 14px 16px;\n}\n#default-btn-6ca4ebdf7fd0acd6f7378b67432d6cdf.ico-right-side > i {\n  margin-right: 0px;\n  margin-left: 8px;\n}\n#default-btn-6ca4ebdf7fd0acd6f7378b67432d6cdf > i {\n  margin-right: 8px;\n}\n\";s:32:\"fb31181700ec59482f434cbea6f27364\";s:761:\".shortcode-single-image-wrap.shortcode-single-image-fb31181700ec59482f434cbea6f27364.enable-bg-rollover .rollover i,\n.shortcode-single-image-wrap.shortcode-single-image-fb31181700ec59482f434cbea6f27364.enable-bg-rollover .rollover-video i {\n  background: -webkit-linear-gradient();\n  background: linear-gradient();\n}\n.shortcode-single-image-wrap.shortcode-single-image-fb31181700ec59482f434cbea6f27364 .rollover-icon {\n  font-size: 32px;\n  color: #ffffff;\n  min-width: 44px;\n  min-height: 44px;\n  line-height: 44px;\n  border-radius: 100px;\n  border-style: solid;\n  border-width: 0px;\n}\n.dt-icon-bg-on.shortcode-single-image-wrap.shortcode-single-image-fb31181700ec59482f434cbea6f27364 .rollover-icon {\n  background: rgba(255,255,255,0.3);\n  box-shadow: none;\n}\n\";s:32:\"a56eb57d4533e8676ae7944d11d53023\";s:2914:\".carousel-shortcode.carousel-shortcode-id-a56eb57d4533e8676ae7944d11d53023 .owl-nav a {\n  width: 30px;\n  height: 30px;\n  border-radius: 0px;\n}\n.dt-arrow-border-on.carousel-shortcode.carousel-shortcode-id-a56eb57d4533e8676ae7944d11d53023 .owl-nav a:not(:hover):before {\n  border-width: 0px;\n}\n.dt-arrow-hover-border-on.carousel-shortcode.carousel-shortcode-id-a56eb57d4533e8676ae7944d11d53023 .owl-nav a:hover:after {\n  border-width: 0px;\n}\n.arrows-bg-on.carousel-shortcode.carousel-shortcode-id-a56eb57d4533e8676ae7944d11d53023 .owl-nav a:before {\n  background: rgba(0,0,0,0.15);\n}\n.arrows-hover-bg-on.carousel-shortcode.carousel-shortcode-id-a56eb57d4533e8676ae7944d11d53023 .owl-nav a:after {\n  background: rgba(0,0,0,0.3);\n}\n.carousel-shortcode.carousel-shortcode-id-a56eb57d4533e8676ae7944d11d53023 .owl-nav a.owl-prev {\n  top: calc(100% + -30px);\n  left: 0px;\n}\n.carousel-shortcode.carousel-shortcode-id-a56eb57d4533e8676ae7944d11d53023 .owl-nav a.owl-prev i {\n  padding: 0px 0px 0px 0px;\n}\n.carousel-shortcode.carousel-shortcode-id-a56eb57d4533e8676ae7944d11d53023 .owl-nav a.owl-next {\n  top: calc(100% + -30px);\n  left: 30px;\n}\n.carousel-shortcode.carousel-shortcode-id-a56eb57d4533e8676ae7944d11d53023 .owl-nav a.owl-next i {\n  padding: 0px 0px 0px 0px;\n}\n.carousel-shortcode.carousel-shortcode-id-a56eb57d4533e8676ae7944d11d53023 .owl-nav i {\n  font-size: 16px;\n}\n.carousel-shortcode.carousel-shortcode-id-a56eb57d4533e8676ae7944d11d53023 .owl-nav a:not(:hover) i,\n.carousel-shortcode.carousel-shortcode-id-a56eb57d4533e8676ae7944d11d53023 .owl-nav a:not(:hover) i:before {\n  color: #ffffff;\n  background: none;\n}\n.carousel-shortcode.carousel-shortcode-id-a56eb57d4533e8676ae7944d11d53023 .owl-nav a:hover i,\n.carousel-shortcode.carousel-shortcode-id-a56eb57d4533e8676ae7944d11d53023 .owl-nav a:hover i:before {\n  color: rgba(255,255,255,0.75);\n  background: none;\n}\n.carousel-shortcode.carousel-shortcode-id-a56eb57d4533e8676ae7944d11d53023 .owl-dots {\n  top: calc(100% + 20px);\n  left: 50%;\n  transform: translateX(calc(-50% + 0px));\n}\n@media all and (-ms-high-contrast: none) {\n  .carousel-shortcode.carousel-shortcode-id-a56eb57d4533e8676ae7944d11d53023 .owl-dots {\n    transform: translateX(-50%);\n    margin-left: 0px;\n  }\n}\n.carousel-shortcode.carousel-shortcode-id-a56eb57d4533e8676ae7944d11d53023 .owl-dot {\n  width: 10px;\n  height: 10px;\n  margin: 0 8px;\n}\n@media screen and (max-width: 778px) {\n  .carousel-shortcode.carousel-shortcode-id-a56eb57d4533e8676ae7944d11d53023.hide-arrows .owl-nav a {\n    display: none;\n  }\n}\n@media screen and (max-width: 778px) {\n  .carousel-shortcode.carousel-shortcode-id-a56eb57d4533e8676ae7944d11d53023.reposition-arrows .owl-nav .owl-prev {\n    top: calc(100% + -30px);\n    left: 10px;\n  }\n  .carousel-shortcode.carousel-shortcode-id-a56eb57d4533e8676ae7944d11d53023.reposition-arrows .owl-nav .owl-next {\n    top: calc(100% + -30px);\n    left: 10px;\n  }\n}\n\";s:32:\"eae48b5626915c6c18a3f79b47983ccb\";s:761:\".shortcode-single-image-wrap.shortcode-single-image-eae48b5626915c6c18a3f79b47983ccb.enable-bg-rollover .rollover i,\n.shortcode-single-image-wrap.shortcode-single-image-eae48b5626915c6c18a3f79b47983ccb.enable-bg-rollover .rollover-video i {\n  background: -webkit-linear-gradient();\n  background: linear-gradient();\n}\n.shortcode-single-image-wrap.shortcode-single-image-eae48b5626915c6c18a3f79b47983ccb .rollover-icon {\n  font-size: 32px;\n  color: #ffffff;\n  min-width: 44px;\n  min-height: 44px;\n  line-height: 44px;\n  border-radius: 100px;\n  border-style: solid;\n  border-width: 0px;\n}\n.dt-icon-bg-on.shortcode-single-image-wrap.shortcode-single-image-eae48b5626915c6c18a3f79b47983ccb .rollover-icon {\n  background: rgba(255,255,255,0.3);\n  box-shadow: none;\n}\n\";s:32:\"28543dbed9229af5e61e6e13f04e96d0\";s:761:\".shortcode-single-image-wrap.shortcode-single-image-28543dbed9229af5e61e6e13f04e96d0.enable-bg-rollover .rollover i,\n.shortcode-single-image-wrap.shortcode-single-image-28543dbed9229af5e61e6e13f04e96d0.enable-bg-rollover .rollover-video i {\n  background: -webkit-linear-gradient();\n  background: linear-gradient();\n}\n.shortcode-single-image-wrap.shortcode-single-image-28543dbed9229af5e61e6e13f04e96d0 .rollover-icon {\n  font-size: 32px;\n  color: #ffffff;\n  min-width: 44px;\n  min-height: 44px;\n  line-height: 44px;\n  border-radius: 100px;\n  border-style: solid;\n  border-width: 0px;\n}\n.dt-icon-bg-on.shortcode-single-image-wrap.shortcode-single-image-28543dbed9229af5e61e6e13f04e96d0 .rollover-icon {\n  background: rgba(255,255,255,0.3);\n  box-shadow: none;\n}\n\";s:32:\"35223044ac0ceadfa2f2fbd660b8153c\";s:761:\".shortcode-single-image-wrap.shortcode-single-image-35223044ac0ceadfa2f2fbd660b8153c.enable-bg-rollover .rollover i,\n.shortcode-single-image-wrap.shortcode-single-image-35223044ac0ceadfa2f2fbd660b8153c.enable-bg-rollover .rollover-video i {\n  background: -webkit-linear-gradient();\n  background: linear-gradient();\n}\n.shortcode-single-image-wrap.shortcode-single-image-35223044ac0ceadfa2f2fbd660b8153c .rollover-icon {\n  font-size: 32px;\n  color: #ffffff;\n  min-width: 44px;\n  min-height: 44px;\n  line-height: 44px;\n  border-radius: 100px;\n  border-style: solid;\n  border-width: 0px;\n}\n.dt-icon-bg-on.shortcode-single-image-wrap.shortcode-single-image-35223044ac0ceadfa2f2fbd660b8153c .rollover-icon {\n  background: rgba(255,255,255,0.3);\n  box-shadow: none;\n}\n\";s:32:\"964a3500c6e585d2426d264d4c64ae34\";s:761:\".shortcode-single-image-wrap.shortcode-single-image-964a3500c6e585d2426d264d4c64ae34.enable-bg-rollover .rollover i,\n.shortcode-single-image-wrap.shortcode-single-image-964a3500c6e585d2426d264d4c64ae34.enable-bg-rollover .rollover-video i {\n  background: -webkit-linear-gradient();\n  background: linear-gradient();\n}\n.shortcode-single-image-wrap.shortcode-single-image-964a3500c6e585d2426d264d4c64ae34 .rollover-icon {\n  font-size: 32px;\n  color: #ffffff;\n  min-width: 44px;\n  min-height: 44px;\n  line-height: 44px;\n  border-radius: 100px;\n  border-style: solid;\n  border-width: 0px;\n}\n.dt-icon-bg-on.shortcode-single-image-wrap.shortcode-single-image-964a3500c6e585d2426d264d4c64ae34 .rollover-icon {\n  background: rgba(255,255,255,0.3);\n  box-shadow: none;\n}\n\";s:32:\"305d43c4137f9cb1e5ff76204c466a35\";s:761:\".shortcode-single-image-wrap.shortcode-single-image-305d43c4137f9cb1e5ff76204c466a35.enable-bg-rollover .rollover i,\n.shortcode-single-image-wrap.shortcode-single-image-305d43c4137f9cb1e5ff76204c466a35.enable-bg-rollover .rollover-video i {\n  background: -webkit-linear-gradient();\n  background: linear-gradient();\n}\n.shortcode-single-image-wrap.shortcode-single-image-305d43c4137f9cb1e5ff76204c466a35 .rollover-icon {\n  font-size: 32px;\n  color: #ffffff;\n  min-width: 44px;\n  min-height: 44px;\n  line-height: 44px;\n  border-radius: 100px;\n  border-style: solid;\n  border-width: 0px;\n}\n.dt-icon-bg-on.shortcode-single-image-wrap.shortcode-single-image-305d43c4137f9cb1e5ff76204c466a35 .rollover-icon {\n  background: rgba(255,255,255,0.3);\n  box-shadow: none;\n}\n\";s:32:\"870e922c9f48671b2344621351b67b41\";s:761:\".shortcode-single-image-wrap.shortcode-single-image-870e922c9f48671b2344621351b67b41.enable-bg-rollover .rollover i,\n.shortcode-single-image-wrap.shortcode-single-image-870e922c9f48671b2344621351b67b41.enable-bg-rollover .rollover-video i {\n  background: -webkit-linear-gradient();\n  background: linear-gradient();\n}\n.shortcode-single-image-wrap.shortcode-single-image-870e922c9f48671b2344621351b67b41 .rollover-icon {\n  font-size: 32px;\n  color: #ffffff;\n  min-width: 44px;\n  min-height: 44px;\n  line-height: 44px;\n  border-radius: 100px;\n  border-style: solid;\n  border-width: 0px;\n}\n.dt-icon-bg-on.shortcode-single-image-wrap.shortcode-single-image-870e922c9f48671b2344621351b67b41 .rollover-icon {\n  background: rgba(255,255,255,0.3);\n  box-shadow: none;\n}\n\";s:32:\"879dc513bc15502414c5e617466d5648\";s:761:\".shortcode-single-image-wrap.shortcode-single-image-879dc513bc15502414c5e617466d5648.enable-bg-rollover .rollover i,\n.shortcode-single-image-wrap.shortcode-single-image-879dc513bc15502414c5e617466d5648.enable-bg-rollover .rollover-video i {\n  background: -webkit-linear-gradient();\n  background: linear-gradient();\n}\n.shortcode-single-image-wrap.shortcode-single-image-879dc513bc15502414c5e617466d5648 .rollover-icon {\n  font-size: 32px;\n  color: #ffffff;\n  min-width: 44px;\n  min-height: 44px;\n  line-height: 44px;\n  border-radius: 100px;\n  border-style: solid;\n  border-width: 0px;\n}\n.dt-icon-bg-on.shortcode-single-image-wrap.shortcode-single-image-879dc513bc15502414c5e617466d5648 .rollover-icon {\n  background: rgba(255,255,255,0.3);\n  box-shadow: none;\n}\n\";s:32:\"b6fcbf60a93aac8c969f8b179ab0aad9\";s:761:\".shortcode-single-image-wrap.shortcode-single-image-b6fcbf60a93aac8c969f8b179ab0aad9.enable-bg-rollover .rollover i,\n.shortcode-single-image-wrap.shortcode-single-image-b6fcbf60a93aac8c969f8b179ab0aad9.enable-bg-rollover .rollover-video i {\n  background: -webkit-linear-gradient();\n  background: linear-gradient();\n}\n.shortcode-single-image-wrap.shortcode-single-image-b6fcbf60a93aac8c969f8b179ab0aad9 .rollover-icon {\n  font-size: 32px;\n  color: #ffffff;\n  min-width: 44px;\n  min-height: 44px;\n  line-height: 44px;\n  border-radius: 100px;\n  border-style: solid;\n  border-width: 0px;\n}\n.dt-icon-bg-on.shortcode-single-image-wrap.shortcode-single-image-b6fcbf60a93aac8c969f8b179ab0aad9 .rollover-icon {\n  background: rgba(255,255,255,0.3);\n  box-shadow: none;\n}\n\";s:32:\"dd2c2992ef6db89a43ed7f6fc5d9b93d\";s:761:\".shortcode-single-image-wrap.shortcode-single-image-dd2c2992ef6db89a43ed7f6fc5d9b93d.enable-bg-rollover .rollover i,\n.shortcode-single-image-wrap.shortcode-single-image-dd2c2992ef6db89a43ed7f6fc5d9b93d.enable-bg-rollover .rollover-video i {\n  background: -webkit-linear-gradient();\n  background: linear-gradient();\n}\n.shortcode-single-image-wrap.shortcode-single-image-dd2c2992ef6db89a43ed7f6fc5d9b93d .rollover-icon {\n  font-size: 32px;\n  color: #ffffff;\n  min-width: 44px;\n  min-height: 44px;\n  line-height: 44px;\n  border-radius: 100px;\n  border-style: solid;\n  border-width: 0px;\n}\n.dt-icon-bg-on.shortcode-single-image-wrap.shortcode-single-image-dd2c2992ef6db89a43ed7f6fc5d9b93d .rollover-icon {\n  background: rgba(255,255,255,0.3);\n  box-shadow: none;\n}\n\";s:32:\"331d22f4aa53d758101e105802e29297\";s:1188:\"#default-btn-331d22f4aa53d758101e105802e29297 {\n  border-radius: 0px;\n  font-size: 14px;\n  line-height: 16px;\n}\n.btn-shadow#default-btn-331d22f4aa53d758101e105802e29297 {\n  box-shadow: 0 1px 6px rgba(0,0,0,0.12);\n  transition: box-shadow 0.2s ease-out, opacity 0.45s;\n}\n.btn-shadow#default-btn-331d22f4aa53d758101e105802e29297:hover {\n  box-shadow: 0 5px 11px 0 rgba(0,0,0,0.18), 0 4px 15px 0 rgba(0,0,0,0.15);\n}\n.btn-flat#default-btn-331d22f4aa53d758101e105802e29297 {\n  box-shadow: none;\n}\n.btn-flat#default-btn-331d22f4aa53d758101e105802e29297:hover {\n  box-shadow: none;\n}\n#default-btn-331d22f4aa53d758101e105802e29297.ico-right-side > i {\n  margin-right: 0px;\n  margin-left: 8px;\n}\n#default-btn-331d22f4aa53d758101e105802e29297 > i {\n  margin-right: 8px;\n  font-size: 16px;\n}\n#default-btn-331d22f4aa53d758101e105802e29297:not(:hover) {\n  border-width: 2px;\n  padding: 9px 14px 9px 14px;\n}\n#default-btn-331d22f4aa53d758101e105802e29297:hover {\n  border-width: 0px;\n  padding: 11px 16px 11px 16px;\n}\n#default-btn-331d22f4aa53d758101e105802e29297.ico-right-side > i {\n  margin-right: 0px;\n  margin-left: 8px;\n}\n#default-btn-331d22f4aa53d758101e105802e29297 > i {\n  margin-right: 8px;\n}\n\";s:32:\"966d0be2f1ab73b36fc7a0e8d06a7346\";s:1355:\"#default-btn-966d0be2f1ab73b36fc7a0e8d06a7346 {\n  border-radius: 0px;\n  font-size: 14px;\n  line-height: 16px;\n}\n.btn-shadow#default-btn-966d0be2f1ab73b36fc7a0e8d06a7346 {\n  box-shadow: 0 1px 6px rgba(0,0,0,0.12);\n  transition: box-shadow 0.2s ease-out, opacity 0.45s;\n}\n.btn-shadow#default-btn-966d0be2f1ab73b36fc7a0e8d06a7346:hover {\n  box-shadow: 0 5px 11px 0 rgba(0,0,0,0.18), 0 4px 15px 0 rgba(0,0,0,0.15);\n}\n.btn-flat#default-btn-966d0be2f1ab73b36fc7a0e8d06a7346 {\n  box-shadow: none;\n}\n.btn-flat#default-btn-966d0be2f1ab73b36fc7a0e8d06a7346:hover {\n  box-shadow: none;\n}\n#default-btn-966d0be2f1ab73b36fc7a0e8d06a7346.ico-right-side > i {\n  margin-right: 0px;\n  margin-left: 8px;\n}\n#default-btn-966d0be2f1ab73b36fc7a0e8d06a7346 > i {\n  margin-right: 8px;\n  font-size: 16px;\n}\n#default-btn-966d0be2f1ab73b36fc7a0e8d06a7346:not(:hover) {\n  border-width: 2px;\n  border-color: #7bb519 !important;\n  color: #7bb519;\n  background: none !important;\n  padding: 9px 14px 9px 14px;\n}\n#default-btn-966d0be2f1ab73b36fc7a0e8d06a7346:not(:hover) * {\n  color: #7bb519;\n}\n#default-btn-966d0be2f1ab73b36fc7a0e8d06a7346:hover {\n  border-width: 0px;\n  padding: 11px 16px 11px 16px;\n}\n#default-btn-966d0be2f1ab73b36fc7a0e8d06a7346.ico-right-side > i {\n  margin-right: 0px;\n  margin-left: 8px;\n}\n#default-btn-966d0be2f1ab73b36fc7a0e8d06a7346 > i {\n  margin-right: 8px;\n}\n\";s:32:\"4d621de9acc2fffc71e2484c39aedcd3\";s:1355:\"#default-btn-4d621de9acc2fffc71e2484c39aedcd3 {\n  border-radius: 0px;\n  font-size: 14px;\n  line-height: 16px;\n}\n.btn-shadow#default-btn-4d621de9acc2fffc71e2484c39aedcd3 {\n  box-shadow: 0 1px 6px rgba(0,0,0,0.12);\n  transition: box-shadow 0.2s ease-out, opacity 0.45s;\n}\n.btn-shadow#default-btn-4d621de9acc2fffc71e2484c39aedcd3:hover {\n  box-shadow: 0 5px 11px 0 rgba(0,0,0,0.18), 0 4px 15px 0 rgba(0,0,0,0.15);\n}\n.btn-flat#default-btn-4d621de9acc2fffc71e2484c39aedcd3 {\n  box-shadow: none;\n}\n.btn-flat#default-btn-4d621de9acc2fffc71e2484c39aedcd3:hover {\n  box-shadow: none;\n}\n#default-btn-4d621de9acc2fffc71e2484c39aedcd3.ico-right-side > i {\n  margin-right: 0px;\n  margin-left: 8px;\n}\n#default-btn-4d621de9acc2fffc71e2484c39aedcd3 > i {\n  margin-right: 8px;\n  font-size: 16px;\n}\n#default-btn-4d621de9acc2fffc71e2484c39aedcd3:not(:hover) {\n  border-width: 2px;\n  border-color: #7bb519 !important;\n  color: #7bb519;\n  background: none !important;\n  padding: 9px 14px 9px 14px;\n}\n#default-btn-4d621de9acc2fffc71e2484c39aedcd3:not(:hover) * {\n  color: #7bb519;\n}\n#default-btn-4d621de9acc2fffc71e2484c39aedcd3:hover {\n  border-width: 0px;\n  padding: 11px 16px 11px 16px;\n}\n#default-btn-4d621de9acc2fffc71e2484c39aedcd3.ico-right-side > i {\n  margin-right: 0px;\n  margin-left: 8px;\n}\n#default-btn-4d621de9acc2fffc71e2484c39aedcd3 > i {\n  margin-right: 8px;\n}\n\";s:32:\"b87c5dfc529e688e0c71e5a20fa83c88\";s:5726:\".icon-with-text-shortcode.icon-text-id-b87c5dfc529e688e0c71e5a20fa83c88 .text-icon {\n  width: 70px;\n  height: 70px;\n  line-height: 70px;\n  font-size: 32px;\n  border-radius: 200px;\n  margin: 0px 20px 5px 0px;\n}\n.icon-with-text-shortcode.icon-text-id-b87c5dfc529e688e0c71e5a20fa83c88 .text-icon .icon-inner {\n  min-width: 70px;\n  min-height: 70px;\n  border-radius: 200px;\n}\n@media all and (-ms-high-contrast: none) {\n  .icon-with-text-shortcode.icon-text-id-b87c5dfc529e688e0c71e5a20fa83c88 .text-icon .icon-inner {\n    height: 70px;\n  }\n}\n.icon-with-text-shortcode.icon-text-id-b87c5dfc529e688e0c71e5a20fa83c88 .text-icon .dt-hover-icon {\n  line-height: 70px;\n}\n.icon-with-text-shortcode.icon-text-id-b87c5dfc529e688e0c71e5a20fa83c88 .text-icon:before,\n.icon-with-text-shortcode.icon-text-id-b87c5dfc529e688e0c71e5a20fa83c88 .text-icon:after,\n.icon-with-text-shortcode.icon-text-id-b87c5dfc529e688e0c71e5a20fa83c88 .text-icon .icon-inner:before,\n.icon-with-text-shortcode.icon-text-id-b87c5dfc529e688e0c71e5a20fa83c88 .text-icon .icon-inner:after {\n  min-width: 100%;\n  min-height: 100%;\n  padding: inherit;\n  border-radius: inherit;\n}\n.icon-with-text-shortcode.icon-text-id-b87c5dfc529e688e0c71e5a20fa83c88 .text-icon.dt-icon-border-on:before {\n  border-width: 0px;\n  border-style: solid;\n}\n.dt-icon-border-dashed.icon-with-text-shortcode.icon-text-id-b87c5dfc529e688e0c71e5a20fa83c88 .text-icon.dt-icon-border-on:before {\n  border-style: dashed;\n}\n.dt-icon-border-dotted.icon-with-text-shortcode.icon-text-id-b87c5dfc529e688e0c71e5a20fa83c88 .text-icon.dt-icon-border-on:before {\n  border-style: dotted;\n}\n.dt-icon-border-double.icon-with-text-shortcode.icon-text-id-b87c5dfc529e688e0c71e5a20fa83c88 .text-icon.dt-icon-border-on:before {\n  border-style: double;\n}\n.icon-with-text-shortcode.icon-text-id-b87c5dfc529e688e0c71e5a20fa83c88 .text-icon.dt-icon-border-dashed.dt-icon-border-on:before {\n  border-style: dashed;\n}\n.icon-with-text-shortcode.icon-text-id-b87c5dfc529e688e0c71e5a20fa83c88 .text-icon.dt-icon-border-dotted.dt-icon-border-on:before {\n  border-style: dotted;\n}\n.icon-with-text-shortcode.icon-text-id-b87c5dfc529e688e0c71e5a20fa83c88 .text-icon.dt-icon-border-double.dt-icon-border-on:before {\n  border-style: double;\n}\n.icon-with-text-shortcode.icon-text-id-b87c5dfc529e688e0c71e5a20fa83c88 .text-icon.dt-icon-hover-border-on:after {\n  border-width: 0px;\n  border-style: solid;\n}\n.icon-with-text-shortcode.icon-text-id-b87c5dfc529e688e0c71e5a20fa83c88 .text-icon.dt-icon-border-dashed.dt-icon-hover-border-on:after {\n  border-style: dashed;\n}\n.icon-with-text-shortcode.icon-text-id-b87c5dfc529e688e0c71e5a20fa83c88 .text-icon.dt-icon-border-dotted.dt-icon-hover-border-on:after {\n  border-style: dotted;\n}\n.icon-with-text-shortcode.icon-text-id-b87c5dfc529e688e0c71e5a20fa83c88 .text-icon.dt-icon-border-double.dt-icon-hover-border-on:after {\n  border-style: double;\n}\n.icon-with-text-shortcode.icon-text-id-b87c5dfc529e688e0c71e5a20fa83c88 .text-icon.dt-icon-hover-on:hover {\n  font-size: 32px;\n}\n#page .icon-with-text-shortcode.icon-text-id-b87c5dfc529e688e0c71e5a20fa83c88 .text-icon.dt-icon-hover-on:hover .soc-font-icon,\n#phantom .icon-with-text-shortcode.icon-text-id-b87c5dfc529e688e0c71e5a20fa83c88 .text-icon.dt-icon-hover-on:hover .soc-font-icon,\n#page .icon-with-text-shortcode.icon-text-id-b87c5dfc529e688e0c71e5a20fa83c88 .text-icon.dt-icon-hover-on:hover .soc-icon,\n#phantom .icon-with-text-shortcode.icon-text-id-b87c5dfc529e688e0c71e5a20fa83c88 .text-icon.dt-icon-hover-on:hover .soc-icon {\n  color: #fff;\n  background: none;\n}\n#page .icon-with-text-shortcode.icon-text-id-b87c5dfc529e688e0c71e5a20fa83c88 .text-icon.dt-icon-hover-on:not(:hover) .soc-font-icon,\n#phantom .icon-with-text-shortcode.icon-text-id-b87c5dfc529e688e0c71e5a20fa83c88 .text-icon.dt-icon-hover-on:not(:hover) .soc-font-icon,\n#page .icon-with-text-shortcode.icon-text-id-b87c5dfc529e688e0c71e5a20fa83c88 .text-icon.dt-icon-hover-on:not(:hover) .soc-icon,\n#phantom .icon-with-text-shortcode.icon-text-id-b87c5dfc529e688e0c71e5a20fa83c88 .text-icon.dt-icon-hover-on:not(:hover) .soc-icon,\n#page .icon-with-text-shortcode.icon-text-id-b87c5dfc529e688e0c71e5a20fa83c88 .text-icon.dt-icon-hover-off .soc-font-icon,\n#phantom .icon-with-text-shortcode.icon-text-id-b87c5dfc529e688e0c71e5a20fa83c88 .text-icon.dt-icon-hover-off .soc-font-icon,\n#page .icon-with-text-shortcode.icon-text-id-b87c5dfc529e688e0c71e5a20fa83c88 .text-icon.dt-icon-hover-off .soc-icon,\n#phantom .icon-with-text-shortcode.icon-text-id-b87c5dfc529e688e0c71e5a20fa83c88 .text-icon.dt-icon-hover-off .soc-icon {\n  color: #ffffff;\n  background: none;\n}\n.icon-with-text-shortcode.icon-text-id-b87c5dfc529e688e0c71e5a20fa83c88.layout-1 {\n  grid-template-columns: 70px minmax(0,1fr);\n  grid-column-gap: 20px;\n}\n.icon-with-text-shortcode.icon-text-id-b87c5dfc529e688e0c71e5a20fa83c88.layout-2 {\n  grid-template-columns: minmax(0,1fr) 70px;\n  grid-column-gap: 0px;\n}\n.icon-with-text-shortcode.icon-text-id-b87c5dfc529e688e0c71e5a20fa83c88.layout-2 .text-icon {\n  margin-left: 0;\n}\n.icon-with-text-shortcode.icon-text-id-b87c5dfc529e688e0c71e5a20fa83c88.layout-3 {\n  grid-template-columns: 70px minmax(0,1fr);\n}\n.icon-with-text-shortcode.icon-text-id-b87c5dfc529e688e0c71e5a20fa83c88.layout-3 .dt-text-title {\n  margin-left: 20px;\n}\n.icon-with-text-shortcode.icon-text-id-b87c5dfc529e688e0c71e5a20fa83c88 .dt-text-title,\n.icon-with-text-shortcode.icon-text-id-b87c5dfc529e688e0c71e5a20fa83c88 .dt-text-title a {\n  font-weight: bold;\n}\n.icon-with-text-shortcode.icon-text-id-b87c5dfc529e688e0c71e5a20fa83c88 .dt-text-title {\n  margin-bottom: 0px;\n}\n.icon-with-text-shortcode.icon-text-id-b87c5dfc529e688e0c71e5a20fa83c88 .dt-text-desc {\n  margin-bottom: 0px;\n}\n\";s:32:\"86e8ef2c3825f3dd33571ed2cb48b5d4\";s:5726:\".icon-with-text-shortcode.icon-text-id-86e8ef2c3825f3dd33571ed2cb48b5d4 .text-icon {\n  width: 70px;\n  height: 70px;\n  line-height: 70px;\n  font-size: 32px;\n  border-radius: 200px;\n  margin: 0px 20px 5px 0px;\n}\n.icon-with-text-shortcode.icon-text-id-86e8ef2c3825f3dd33571ed2cb48b5d4 .text-icon .icon-inner {\n  min-width: 70px;\n  min-height: 70px;\n  border-radius: 200px;\n}\n@media all and (-ms-high-contrast: none) {\n  .icon-with-text-shortcode.icon-text-id-86e8ef2c3825f3dd33571ed2cb48b5d4 .text-icon .icon-inner {\n    height: 70px;\n  }\n}\n.icon-with-text-shortcode.icon-text-id-86e8ef2c3825f3dd33571ed2cb48b5d4 .text-icon .dt-hover-icon {\n  line-height: 70px;\n}\n.icon-with-text-shortcode.icon-text-id-86e8ef2c3825f3dd33571ed2cb48b5d4 .text-icon:before,\n.icon-with-text-shortcode.icon-text-id-86e8ef2c3825f3dd33571ed2cb48b5d4 .text-icon:after,\n.icon-with-text-shortcode.icon-text-id-86e8ef2c3825f3dd33571ed2cb48b5d4 .text-icon .icon-inner:before,\n.icon-with-text-shortcode.icon-text-id-86e8ef2c3825f3dd33571ed2cb48b5d4 .text-icon .icon-inner:after {\n  min-width: 100%;\n  min-height: 100%;\n  padding: inherit;\n  border-radius: inherit;\n}\n.icon-with-text-shortcode.icon-text-id-86e8ef2c3825f3dd33571ed2cb48b5d4 .text-icon.dt-icon-border-on:before {\n  border-width: 0px;\n  border-style: solid;\n}\n.dt-icon-border-dashed.icon-with-text-shortcode.icon-text-id-86e8ef2c3825f3dd33571ed2cb48b5d4 .text-icon.dt-icon-border-on:before {\n  border-style: dashed;\n}\n.dt-icon-border-dotted.icon-with-text-shortcode.icon-text-id-86e8ef2c3825f3dd33571ed2cb48b5d4 .text-icon.dt-icon-border-on:before {\n  border-style: dotted;\n}\n.dt-icon-border-double.icon-with-text-shortcode.icon-text-id-86e8ef2c3825f3dd33571ed2cb48b5d4 .text-icon.dt-icon-border-on:before {\n  border-style: double;\n}\n.icon-with-text-shortcode.icon-text-id-86e8ef2c3825f3dd33571ed2cb48b5d4 .text-icon.dt-icon-border-dashed.dt-icon-border-on:before {\n  border-style: dashed;\n}\n.icon-with-text-shortcode.icon-text-id-86e8ef2c3825f3dd33571ed2cb48b5d4 .text-icon.dt-icon-border-dotted.dt-icon-border-on:before {\n  border-style: dotted;\n}\n.icon-with-text-shortcode.icon-text-id-86e8ef2c3825f3dd33571ed2cb48b5d4 .text-icon.dt-icon-border-double.dt-icon-border-on:before {\n  border-style: double;\n}\n.icon-with-text-shortcode.icon-text-id-86e8ef2c3825f3dd33571ed2cb48b5d4 .text-icon.dt-icon-hover-border-on:after {\n  border-width: 0px;\n  border-style: solid;\n}\n.icon-with-text-shortcode.icon-text-id-86e8ef2c3825f3dd33571ed2cb48b5d4 .text-icon.dt-icon-border-dashed.dt-icon-hover-border-on:after {\n  border-style: dashed;\n}\n.icon-with-text-shortcode.icon-text-id-86e8ef2c3825f3dd33571ed2cb48b5d4 .text-icon.dt-icon-border-dotted.dt-icon-hover-border-on:after {\n  border-style: dotted;\n}\n.icon-with-text-shortcode.icon-text-id-86e8ef2c3825f3dd33571ed2cb48b5d4 .text-icon.dt-icon-border-double.dt-icon-hover-border-on:after {\n  border-style: double;\n}\n.icon-with-text-shortcode.icon-text-id-86e8ef2c3825f3dd33571ed2cb48b5d4 .text-icon.dt-icon-hover-on:hover {\n  font-size: 32px;\n}\n#page .icon-with-text-shortcode.icon-text-id-86e8ef2c3825f3dd33571ed2cb48b5d4 .text-icon.dt-icon-hover-on:hover .soc-font-icon,\n#phantom .icon-with-text-shortcode.icon-text-id-86e8ef2c3825f3dd33571ed2cb48b5d4 .text-icon.dt-icon-hover-on:hover .soc-font-icon,\n#page .icon-with-text-shortcode.icon-text-id-86e8ef2c3825f3dd33571ed2cb48b5d4 .text-icon.dt-icon-hover-on:hover .soc-icon,\n#phantom .icon-with-text-shortcode.icon-text-id-86e8ef2c3825f3dd33571ed2cb48b5d4 .text-icon.dt-icon-hover-on:hover .soc-icon {\n  color: #fff;\n  background: none;\n}\n#page .icon-with-text-shortcode.icon-text-id-86e8ef2c3825f3dd33571ed2cb48b5d4 .text-icon.dt-icon-hover-on:not(:hover) .soc-font-icon,\n#phantom .icon-with-text-shortcode.icon-text-id-86e8ef2c3825f3dd33571ed2cb48b5d4 .text-icon.dt-icon-hover-on:not(:hover) .soc-font-icon,\n#page .icon-with-text-shortcode.icon-text-id-86e8ef2c3825f3dd33571ed2cb48b5d4 .text-icon.dt-icon-hover-on:not(:hover) .soc-icon,\n#phantom .icon-with-text-shortcode.icon-text-id-86e8ef2c3825f3dd33571ed2cb48b5d4 .text-icon.dt-icon-hover-on:not(:hover) .soc-icon,\n#page .icon-with-text-shortcode.icon-text-id-86e8ef2c3825f3dd33571ed2cb48b5d4 .text-icon.dt-icon-hover-off .soc-font-icon,\n#phantom .icon-with-text-shortcode.icon-text-id-86e8ef2c3825f3dd33571ed2cb48b5d4 .text-icon.dt-icon-hover-off .soc-font-icon,\n#page .icon-with-text-shortcode.icon-text-id-86e8ef2c3825f3dd33571ed2cb48b5d4 .text-icon.dt-icon-hover-off .soc-icon,\n#phantom .icon-with-text-shortcode.icon-text-id-86e8ef2c3825f3dd33571ed2cb48b5d4 .text-icon.dt-icon-hover-off .soc-icon {\n  color: #ffffff;\n  background: none;\n}\n.icon-with-text-shortcode.icon-text-id-86e8ef2c3825f3dd33571ed2cb48b5d4.layout-1 {\n  grid-template-columns: 70px minmax(0,1fr);\n  grid-column-gap: 20px;\n}\n.icon-with-text-shortcode.icon-text-id-86e8ef2c3825f3dd33571ed2cb48b5d4.layout-2 {\n  grid-template-columns: minmax(0,1fr) 70px;\n  grid-column-gap: 0px;\n}\n.icon-with-text-shortcode.icon-text-id-86e8ef2c3825f3dd33571ed2cb48b5d4.layout-2 .text-icon {\n  margin-left: 0;\n}\n.icon-with-text-shortcode.icon-text-id-86e8ef2c3825f3dd33571ed2cb48b5d4.layout-3 {\n  grid-template-columns: 70px minmax(0,1fr);\n}\n.icon-with-text-shortcode.icon-text-id-86e8ef2c3825f3dd33571ed2cb48b5d4.layout-3 .dt-text-title {\n  margin-left: 20px;\n}\n.icon-with-text-shortcode.icon-text-id-86e8ef2c3825f3dd33571ed2cb48b5d4 .dt-text-title,\n.icon-with-text-shortcode.icon-text-id-86e8ef2c3825f3dd33571ed2cb48b5d4 .dt-text-title a {\n  font-weight: bold;\n}\n.icon-with-text-shortcode.icon-text-id-86e8ef2c3825f3dd33571ed2cb48b5d4 .dt-text-title {\n  margin-bottom: 0px;\n}\n.icon-with-text-shortcode.icon-text-id-86e8ef2c3825f3dd33571ed2cb48b5d4 .dt-text-desc {\n  margin-bottom: 0px;\n}\n\";s:32:\"ea65fe8075b61c351d9ef501b3fcc7d9\";s:5726:\".icon-with-text-shortcode.icon-text-id-ea65fe8075b61c351d9ef501b3fcc7d9 .text-icon {\n  width: 70px;\n  height: 70px;\n  line-height: 70px;\n  font-size: 32px;\n  border-radius: 200px;\n  margin: 0px 20px 5px 0px;\n}\n.icon-with-text-shortcode.icon-text-id-ea65fe8075b61c351d9ef501b3fcc7d9 .text-icon .icon-inner {\n  min-width: 70px;\n  min-height: 70px;\n  border-radius: 200px;\n}\n@media all and (-ms-high-contrast: none) {\n  .icon-with-text-shortcode.icon-text-id-ea65fe8075b61c351d9ef501b3fcc7d9 .text-icon .icon-inner {\n    height: 70px;\n  }\n}\n.icon-with-text-shortcode.icon-text-id-ea65fe8075b61c351d9ef501b3fcc7d9 .text-icon .dt-hover-icon {\n  line-height: 70px;\n}\n.icon-with-text-shortcode.icon-text-id-ea65fe8075b61c351d9ef501b3fcc7d9 .text-icon:before,\n.icon-with-text-shortcode.icon-text-id-ea65fe8075b61c351d9ef501b3fcc7d9 .text-icon:after,\n.icon-with-text-shortcode.icon-text-id-ea65fe8075b61c351d9ef501b3fcc7d9 .text-icon .icon-inner:before,\n.icon-with-text-shortcode.icon-text-id-ea65fe8075b61c351d9ef501b3fcc7d9 .text-icon .icon-inner:after {\n  min-width: 100%;\n  min-height: 100%;\n  padding: inherit;\n  border-radius: inherit;\n}\n.icon-with-text-shortcode.icon-text-id-ea65fe8075b61c351d9ef501b3fcc7d9 .text-icon.dt-icon-border-on:before {\n  border-width: 0px;\n  border-style: solid;\n}\n.dt-icon-border-dashed.icon-with-text-shortcode.icon-text-id-ea65fe8075b61c351d9ef501b3fcc7d9 .text-icon.dt-icon-border-on:before {\n  border-style: dashed;\n}\n.dt-icon-border-dotted.icon-with-text-shortcode.icon-text-id-ea65fe8075b61c351d9ef501b3fcc7d9 .text-icon.dt-icon-border-on:before {\n  border-style: dotted;\n}\n.dt-icon-border-double.icon-with-text-shortcode.icon-text-id-ea65fe8075b61c351d9ef501b3fcc7d9 .text-icon.dt-icon-border-on:before {\n  border-style: double;\n}\n.icon-with-text-shortcode.icon-text-id-ea65fe8075b61c351d9ef501b3fcc7d9 .text-icon.dt-icon-border-dashed.dt-icon-border-on:before {\n  border-style: dashed;\n}\n.icon-with-text-shortcode.icon-text-id-ea65fe8075b61c351d9ef501b3fcc7d9 .text-icon.dt-icon-border-dotted.dt-icon-border-on:before {\n  border-style: dotted;\n}\n.icon-with-text-shortcode.icon-text-id-ea65fe8075b61c351d9ef501b3fcc7d9 .text-icon.dt-icon-border-double.dt-icon-border-on:before {\n  border-style: double;\n}\n.icon-with-text-shortcode.icon-text-id-ea65fe8075b61c351d9ef501b3fcc7d9 .text-icon.dt-icon-hover-border-on:after {\n  border-width: 0px;\n  border-style: solid;\n}\n.icon-with-text-shortcode.icon-text-id-ea65fe8075b61c351d9ef501b3fcc7d9 .text-icon.dt-icon-border-dashed.dt-icon-hover-border-on:after {\n  border-style: dashed;\n}\n.icon-with-text-shortcode.icon-text-id-ea65fe8075b61c351d9ef501b3fcc7d9 .text-icon.dt-icon-border-dotted.dt-icon-hover-border-on:after {\n  border-style: dotted;\n}\n.icon-with-text-shortcode.icon-text-id-ea65fe8075b61c351d9ef501b3fcc7d9 .text-icon.dt-icon-border-double.dt-icon-hover-border-on:after {\n  border-style: double;\n}\n.icon-with-text-shortcode.icon-text-id-ea65fe8075b61c351d9ef501b3fcc7d9 .text-icon.dt-icon-hover-on:hover {\n  font-size: 32px;\n}\n#page .icon-with-text-shortcode.icon-text-id-ea65fe8075b61c351d9ef501b3fcc7d9 .text-icon.dt-icon-hover-on:hover .soc-font-icon,\n#phantom .icon-with-text-shortcode.icon-text-id-ea65fe8075b61c351d9ef501b3fcc7d9 .text-icon.dt-icon-hover-on:hover .soc-font-icon,\n#page .icon-with-text-shortcode.icon-text-id-ea65fe8075b61c351d9ef501b3fcc7d9 .text-icon.dt-icon-hover-on:hover .soc-icon,\n#phantom .icon-with-text-shortcode.icon-text-id-ea65fe8075b61c351d9ef501b3fcc7d9 .text-icon.dt-icon-hover-on:hover .soc-icon {\n  color: #fff;\n  background: none;\n}\n#page .icon-with-text-shortcode.icon-text-id-ea65fe8075b61c351d9ef501b3fcc7d9 .text-icon.dt-icon-hover-on:not(:hover) .soc-font-icon,\n#phantom .icon-with-text-shortcode.icon-text-id-ea65fe8075b61c351d9ef501b3fcc7d9 .text-icon.dt-icon-hover-on:not(:hover) .soc-font-icon,\n#page .icon-with-text-shortcode.icon-text-id-ea65fe8075b61c351d9ef501b3fcc7d9 .text-icon.dt-icon-hover-on:not(:hover) .soc-icon,\n#phantom .icon-with-text-shortcode.icon-text-id-ea65fe8075b61c351d9ef501b3fcc7d9 .text-icon.dt-icon-hover-on:not(:hover) .soc-icon,\n#page .icon-with-text-shortcode.icon-text-id-ea65fe8075b61c351d9ef501b3fcc7d9 .text-icon.dt-icon-hover-off .soc-font-icon,\n#phantom .icon-with-text-shortcode.icon-text-id-ea65fe8075b61c351d9ef501b3fcc7d9 .text-icon.dt-icon-hover-off .soc-font-icon,\n#page .icon-with-text-shortcode.icon-text-id-ea65fe8075b61c351d9ef501b3fcc7d9 .text-icon.dt-icon-hover-off .soc-icon,\n#phantom .icon-with-text-shortcode.icon-text-id-ea65fe8075b61c351d9ef501b3fcc7d9 .text-icon.dt-icon-hover-off .soc-icon {\n  color: #ffffff;\n  background: none;\n}\n.icon-with-text-shortcode.icon-text-id-ea65fe8075b61c351d9ef501b3fcc7d9.layout-1 {\n  grid-template-columns: 70px minmax(0,1fr);\n  grid-column-gap: 20px;\n}\n.icon-with-text-shortcode.icon-text-id-ea65fe8075b61c351d9ef501b3fcc7d9.layout-2 {\n  grid-template-columns: minmax(0,1fr) 70px;\n  grid-column-gap: 0px;\n}\n.icon-with-text-shortcode.icon-text-id-ea65fe8075b61c351d9ef501b3fcc7d9.layout-2 .text-icon {\n  margin-left: 0;\n}\n.icon-with-text-shortcode.icon-text-id-ea65fe8075b61c351d9ef501b3fcc7d9.layout-3 {\n  grid-template-columns: 70px minmax(0,1fr);\n}\n.icon-with-text-shortcode.icon-text-id-ea65fe8075b61c351d9ef501b3fcc7d9.layout-3 .dt-text-title {\n  margin-left: 20px;\n}\n.icon-with-text-shortcode.icon-text-id-ea65fe8075b61c351d9ef501b3fcc7d9 .dt-text-title,\n.icon-with-text-shortcode.icon-text-id-ea65fe8075b61c351d9ef501b3fcc7d9 .dt-text-title a {\n  font-weight: bold;\n}\n.icon-with-text-shortcode.icon-text-id-ea65fe8075b61c351d9ef501b3fcc7d9 .dt-text-title {\n  margin-bottom: 0px;\n}\n.icon-with-text-shortcode.icon-text-id-ea65fe8075b61c351d9ef501b3fcc7d9 .dt-text-desc {\n  margin-bottom: 0px;\n}\n\";s:32:\"31b66698a71b1cdbb5d329e98d1e7320\";s:5726:\".icon-with-text-shortcode.icon-text-id-31b66698a71b1cdbb5d329e98d1e7320 .text-icon {\n  width: 70px;\n  height: 70px;\n  line-height: 70px;\n  font-size: 32px;\n  border-radius: 200px;\n  margin: 0px 20px 5px 0px;\n}\n.icon-with-text-shortcode.icon-text-id-31b66698a71b1cdbb5d329e98d1e7320 .text-icon .icon-inner {\n  min-width: 70px;\n  min-height: 70px;\n  border-radius: 200px;\n}\n@media all and (-ms-high-contrast: none) {\n  .icon-with-text-shortcode.icon-text-id-31b66698a71b1cdbb5d329e98d1e7320 .text-icon .icon-inner {\n    height: 70px;\n  }\n}\n.icon-with-text-shortcode.icon-text-id-31b66698a71b1cdbb5d329e98d1e7320 .text-icon .dt-hover-icon {\n  line-height: 70px;\n}\n.icon-with-text-shortcode.icon-text-id-31b66698a71b1cdbb5d329e98d1e7320 .text-icon:before,\n.icon-with-text-shortcode.icon-text-id-31b66698a71b1cdbb5d329e98d1e7320 .text-icon:after,\n.icon-with-text-shortcode.icon-text-id-31b66698a71b1cdbb5d329e98d1e7320 .text-icon .icon-inner:before,\n.icon-with-text-shortcode.icon-text-id-31b66698a71b1cdbb5d329e98d1e7320 .text-icon .icon-inner:after {\n  min-width: 100%;\n  min-height: 100%;\n  padding: inherit;\n  border-radius: inherit;\n}\n.icon-with-text-shortcode.icon-text-id-31b66698a71b1cdbb5d329e98d1e7320 .text-icon.dt-icon-border-on:before {\n  border-width: 0px;\n  border-style: solid;\n}\n.dt-icon-border-dashed.icon-with-text-shortcode.icon-text-id-31b66698a71b1cdbb5d329e98d1e7320 .text-icon.dt-icon-border-on:before {\n  border-style: dashed;\n}\n.dt-icon-border-dotted.icon-with-text-shortcode.icon-text-id-31b66698a71b1cdbb5d329e98d1e7320 .text-icon.dt-icon-border-on:before {\n  border-style: dotted;\n}\n.dt-icon-border-double.icon-with-text-shortcode.icon-text-id-31b66698a71b1cdbb5d329e98d1e7320 .text-icon.dt-icon-border-on:before {\n  border-style: double;\n}\n.icon-with-text-shortcode.icon-text-id-31b66698a71b1cdbb5d329e98d1e7320 .text-icon.dt-icon-border-dashed.dt-icon-border-on:before {\n  border-style: dashed;\n}\n.icon-with-text-shortcode.icon-text-id-31b66698a71b1cdbb5d329e98d1e7320 .text-icon.dt-icon-border-dotted.dt-icon-border-on:before {\n  border-style: dotted;\n}\n.icon-with-text-shortcode.icon-text-id-31b66698a71b1cdbb5d329e98d1e7320 .text-icon.dt-icon-border-double.dt-icon-border-on:before {\n  border-style: double;\n}\n.icon-with-text-shortcode.icon-text-id-31b66698a71b1cdbb5d329e98d1e7320 .text-icon.dt-icon-hover-border-on:after {\n  border-width: 0px;\n  border-style: solid;\n}\n.icon-with-text-shortcode.icon-text-id-31b66698a71b1cdbb5d329e98d1e7320 .text-icon.dt-icon-border-dashed.dt-icon-hover-border-on:after {\n  border-style: dashed;\n}\n.icon-with-text-shortcode.icon-text-id-31b66698a71b1cdbb5d329e98d1e7320 .text-icon.dt-icon-border-dotted.dt-icon-hover-border-on:after {\n  border-style: dotted;\n}\n.icon-with-text-shortcode.icon-text-id-31b66698a71b1cdbb5d329e98d1e7320 .text-icon.dt-icon-border-double.dt-icon-hover-border-on:after {\n  border-style: double;\n}\n.icon-with-text-shortcode.icon-text-id-31b66698a71b1cdbb5d329e98d1e7320 .text-icon.dt-icon-hover-on:hover {\n  font-size: 32px;\n}\n#page .icon-with-text-shortcode.icon-text-id-31b66698a71b1cdbb5d329e98d1e7320 .text-icon.dt-icon-hover-on:hover .soc-font-icon,\n#phantom .icon-with-text-shortcode.icon-text-id-31b66698a71b1cdbb5d329e98d1e7320 .text-icon.dt-icon-hover-on:hover .soc-font-icon,\n#page .icon-with-text-shortcode.icon-text-id-31b66698a71b1cdbb5d329e98d1e7320 .text-icon.dt-icon-hover-on:hover .soc-icon,\n#phantom .icon-with-text-shortcode.icon-text-id-31b66698a71b1cdbb5d329e98d1e7320 .text-icon.dt-icon-hover-on:hover .soc-icon {\n  color: #fff;\n  background: none;\n}\n#page .icon-with-text-shortcode.icon-text-id-31b66698a71b1cdbb5d329e98d1e7320 .text-icon.dt-icon-hover-on:not(:hover) .soc-font-icon,\n#phantom .icon-with-text-shortcode.icon-text-id-31b66698a71b1cdbb5d329e98d1e7320 .text-icon.dt-icon-hover-on:not(:hover) .soc-font-icon,\n#page .icon-with-text-shortcode.icon-text-id-31b66698a71b1cdbb5d329e98d1e7320 .text-icon.dt-icon-hover-on:not(:hover) .soc-icon,\n#phantom .icon-with-text-shortcode.icon-text-id-31b66698a71b1cdbb5d329e98d1e7320 .text-icon.dt-icon-hover-on:not(:hover) .soc-icon,\n#page .icon-with-text-shortcode.icon-text-id-31b66698a71b1cdbb5d329e98d1e7320 .text-icon.dt-icon-hover-off .soc-font-icon,\n#phantom .icon-with-text-shortcode.icon-text-id-31b66698a71b1cdbb5d329e98d1e7320 .text-icon.dt-icon-hover-off .soc-font-icon,\n#page .icon-with-text-shortcode.icon-text-id-31b66698a71b1cdbb5d329e98d1e7320 .text-icon.dt-icon-hover-off .soc-icon,\n#phantom .icon-with-text-shortcode.icon-text-id-31b66698a71b1cdbb5d329e98d1e7320 .text-icon.dt-icon-hover-off .soc-icon {\n  color: #ffffff;\n  background: none;\n}\n.icon-with-text-shortcode.icon-text-id-31b66698a71b1cdbb5d329e98d1e7320.layout-1 {\n  grid-template-columns: 70px minmax(0,1fr);\n  grid-column-gap: 20px;\n}\n.icon-with-text-shortcode.icon-text-id-31b66698a71b1cdbb5d329e98d1e7320.layout-2 {\n  grid-template-columns: minmax(0,1fr) 70px;\n  grid-column-gap: 0px;\n}\n.icon-with-text-shortcode.icon-text-id-31b66698a71b1cdbb5d329e98d1e7320.layout-2 .text-icon {\n  margin-left: 0;\n}\n.icon-with-text-shortcode.icon-text-id-31b66698a71b1cdbb5d329e98d1e7320.layout-3 {\n  grid-template-columns: 70px minmax(0,1fr);\n}\n.icon-with-text-shortcode.icon-text-id-31b66698a71b1cdbb5d329e98d1e7320.layout-3 .dt-text-title {\n  margin-left: 20px;\n}\n.icon-with-text-shortcode.icon-text-id-31b66698a71b1cdbb5d329e98d1e7320 .dt-text-title,\n.icon-with-text-shortcode.icon-text-id-31b66698a71b1cdbb5d329e98d1e7320 .dt-text-title a {\n  font-weight: bold;\n}\n.icon-with-text-shortcode.icon-text-id-31b66698a71b1cdbb5d329e98d1e7320 .dt-text-title {\n  margin-bottom: 0px;\n}\n.icon-with-text-shortcode.icon-text-id-31b66698a71b1cdbb5d329e98d1e7320 .dt-text-desc {\n  margin-bottom: 0px;\n}\n\";s:32:\"9830bbce4b3a47a318c7e5421389b720\";s:5726:\".icon-with-text-shortcode.icon-text-id-9830bbce4b3a47a318c7e5421389b720 .text-icon {\n  width: 70px;\n  height: 70px;\n  line-height: 70px;\n  font-size: 32px;\n  border-radius: 200px;\n  margin: 0px 20px 5px 0px;\n}\n.icon-with-text-shortcode.icon-text-id-9830bbce4b3a47a318c7e5421389b720 .text-icon .icon-inner {\n  min-width: 70px;\n  min-height: 70px;\n  border-radius: 200px;\n}\n@media all and (-ms-high-contrast: none) {\n  .icon-with-text-shortcode.icon-text-id-9830bbce4b3a47a318c7e5421389b720 .text-icon .icon-inner {\n    height: 70px;\n  }\n}\n.icon-with-text-shortcode.icon-text-id-9830bbce4b3a47a318c7e5421389b720 .text-icon .dt-hover-icon {\n  line-height: 70px;\n}\n.icon-with-text-shortcode.icon-text-id-9830bbce4b3a47a318c7e5421389b720 .text-icon:before,\n.icon-with-text-shortcode.icon-text-id-9830bbce4b3a47a318c7e5421389b720 .text-icon:after,\n.icon-with-text-shortcode.icon-text-id-9830bbce4b3a47a318c7e5421389b720 .text-icon .icon-inner:before,\n.icon-with-text-shortcode.icon-text-id-9830bbce4b3a47a318c7e5421389b720 .text-icon .icon-inner:after {\n  min-width: 100%;\n  min-height: 100%;\n  padding: inherit;\n  border-radius: inherit;\n}\n.icon-with-text-shortcode.icon-text-id-9830bbce4b3a47a318c7e5421389b720 .text-icon.dt-icon-border-on:before {\n  border-width: 0px;\n  border-style: solid;\n}\n.dt-icon-border-dashed.icon-with-text-shortcode.icon-text-id-9830bbce4b3a47a318c7e5421389b720 .text-icon.dt-icon-border-on:before {\n  border-style: dashed;\n}\n.dt-icon-border-dotted.icon-with-text-shortcode.icon-text-id-9830bbce4b3a47a318c7e5421389b720 .text-icon.dt-icon-border-on:before {\n  border-style: dotted;\n}\n.dt-icon-border-double.icon-with-text-shortcode.icon-text-id-9830bbce4b3a47a318c7e5421389b720 .text-icon.dt-icon-border-on:before {\n  border-style: double;\n}\n.icon-with-text-shortcode.icon-text-id-9830bbce4b3a47a318c7e5421389b720 .text-icon.dt-icon-border-dashed.dt-icon-border-on:before {\n  border-style: dashed;\n}\n.icon-with-text-shortcode.icon-text-id-9830bbce4b3a47a318c7e5421389b720 .text-icon.dt-icon-border-dotted.dt-icon-border-on:before {\n  border-style: dotted;\n}\n.icon-with-text-shortcode.icon-text-id-9830bbce4b3a47a318c7e5421389b720 .text-icon.dt-icon-border-double.dt-icon-border-on:before {\n  border-style: double;\n}\n.icon-with-text-shortcode.icon-text-id-9830bbce4b3a47a318c7e5421389b720 .text-icon.dt-icon-hover-border-on:after {\n  border-width: 0px;\n  border-style: solid;\n}\n.icon-with-text-shortcode.icon-text-id-9830bbce4b3a47a318c7e5421389b720 .text-icon.dt-icon-border-dashed.dt-icon-hover-border-on:after {\n  border-style: dashed;\n}\n.icon-with-text-shortcode.icon-text-id-9830bbce4b3a47a318c7e5421389b720 .text-icon.dt-icon-border-dotted.dt-icon-hover-border-on:after {\n  border-style: dotted;\n}\n.icon-with-text-shortcode.icon-text-id-9830bbce4b3a47a318c7e5421389b720 .text-icon.dt-icon-border-double.dt-icon-hover-border-on:after {\n  border-style: double;\n}\n.icon-with-text-shortcode.icon-text-id-9830bbce4b3a47a318c7e5421389b720 .text-icon.dt-icon-hover-on:hover {\n  font-size: 32px;\n}\n#page .icon-with-text-shortcode.icon-text-id-9830bbce4b3a47a318c7e5421389b720 .text-icon.dt-icon-hover-on:hover .soc-font-icon,\n#phantom .icon-with-text-shortcode.icon-text-id-9830bbce4b3a47a318c7e5421389b720 .text-icon.dt-icon-hover-on:hover .soc-font-icon,\n#page .icon-with-text-shortcode.icon-text-id-9830bbce4b3a47a318c7e5421389b720 .text-icon.dt-icon-hover-on:hover .soc-icon,\n#phantom .icon-with-text-shortcode.icon-text-id-9830bbce4b3a47a318c7e5421389b720 .text-icon.dt-icon-hover-on:hover .soc-icon {\n  color: #fff;\n  background: none;\n}\n#page .icon-with-text-shortcode.icon-text-id-9830bbce4b3a47a318c7e5421389b720 .text-icon.dt-icon-hover-on:not(:hover) .soc-font-icon,\n#phantom .icon-with-text-shortcode.icon-text-id-9830bbce4b3a47a318c7e5421389b720 .text-icon.dt-icon-hover-on:not(:hover) .soc-font-icon,\n#page .icon-with-text-shortcode.icon-text-id-9830bbce4b3a47a318c7e5421389b720 .text-icon.dt-icon-hover-on:not(:hover) .soc-icon,\n#phantom .icon-with-text-shortcode.icon-text-id-9830bbce4b3a47a318c7e5421389b720 .text-icon.dt-icon-hover-on:not(:hover) .soc-icon,\n#page .icon-with-text-shortcode.icon-text-id-9830bbce4b3a47a318c7e5421389b720 .text-icon.dt-icon-hover-off .soc-font-icon,\n#phantom .icon-with-text-shortcode.icon-text-id-9830bbce4b3a47a318c7e5421389b720 .text-icon.dt-icon-hover-off .soc-font-icon,\n#page .icon-with-text-shortcode.icon-text-id-9830bbce4b3a47a318c7e5421389b720 .text-icon.dt-icon-hover-off .soc-icon,\n#phantom .icon-with-text-shortcode.icon-text-id-9830bbce4b3a47a318c7e5421389b720 .text-icon.dt-icon-hover-off .soc-icon {\n  color: #ffffff;\n  background: none;\n}\n.icon-with-text-shortcode.icon-text-id-9830bbce4b3a47a318c7e5421389b720.layout-1 {\n  grid-template-columns: 70px minmax(0,1fr);\n  grid-column-gap: 20px;\n}\n.icon-with-text-shortcode.icon-text-id-9830bbce4b3a47a318c7e5421389b720.layout-2 {\n  grid-template-columns: minmax(0,1fr) 70px;\n  grid-column-gap: 0px;\n}\n.icon-with-text-shortcode.icon-text-id-9830bbce4b3a47a318c7e5421389b720.layout-2 .text-icon {\n  margin-left: 0;\n}\n.icon-with-text-shortcode.icon-text-id-9830bbce4b3a47a318c7e5421389b720.layout-3 {\n  grid-template-columns: 70px minmax(0,1fr);\n}\n.icon-with-text-shortcode.icon-text-id-9830bbce4b3a47a318c7e5421389b720.layout-3 .dt-text-title {\n  margin-left: 20px;\n}\n.icon-with-text-shortcode.icon-text-id-9830bbce4b3a47a318c7e5421389b720 .dt-text-title,\n.icon-with-text-shortcode.icon-text-id-9830bbce4b3a47a318c7e5421389b720 .dt-text-title a {\n  font-weight: bold;\n}\n.icon-with-text-shortcode.icon-text-id-9830bbce4b3a47a318c7e5421389b720 .dt-text-title {\n  margin-bottom: 0px;\n}\n.icon-with-text-shortcode.icon-text-id-9830bbce4b3a47a318c7e5421389b720 .dt-text-desc {\n  margin-bottom: 0px;\n}\n\";s:32:\"f88c3bafe49b20bddce6f465130a9cef\";s:5726:\".icon-with-text-shortcode.icon-text-id-f88c3bafe49b20bddce6f465130a9cef .text-icon {\n  width: 70px;\n  height: 70px;\n  line-height: 70px;\n  font-size: 32px;\n  border-radius: 200px;\n  margin: 0px 20px 5px 0px;\n}\n.icon-with-text-shortcode.icon-text-id-f88c3bafe49b20bddce6f465130a9cef .text-icon .icon-inner {\n  min-width: 70px;\n  min-height: 70px;\n  border-radius: 200px;\n}\n@media all and (-ms-high-contrast: none) {\n  .icon-with-text-shortcode.icon-text-id-f88c3bafe49b20bddce6f465130a9cef .text-icon .icon-inner {\n    height: 70px;\n  }\n}\n.icon-with-text-shortcode.icon-text-id-f88c3bafe49b20bddce6f465130a9cef .text-icon .dt-hover-icon {\n  line-height: 70px;\n}\n.icon-with-text-shortcode.icon-text-id-f88c3bafe49b20bddce6f465130a9cef .text-icon:before,\n.icon-with-text-shortcode.icon-text-id-f88c3bafe49b20bddce6f465130a9cef .text-icon:after,\n.icon-with-text-shortcode.icon-text-id-f88c3bafe49b20bddce6f465130a9cef .text-icon .icon-inner:before,\n.icon-with-text-shortcode.icon-text-id-f88c3bafe49b20bddce6f465130a9cef .text-icon .icon-inner:after {\n  min-width: 100%;\n  min-height: 100%;\n  padding: inherit;\n  border-radius: inherit;\n}\n.icon-with-text-shortcode.icon-text-id-f88c3bafe49b20bddce6f465130a9cef .text-icon.dt-icon-border-on:before {\n  border-width: 0px;\n  border-style: solid;\n}\n.dt-icon-border-dashed.icon-with-text-shortcode.icon-text-id-f88c3bafe49b20bddce6f465130a9cef .text-icon.dt-icon-border-on:before {\n  border-style: dashed;\n}\n.dt-icon-border-dotted.icon-with-text-shortcode.icon-text-id-f88c3bafe49b20bddce6f465130a9cef .text-icon.dt-icon-border-on:before {\n  border-style: dotted;\n}\n.dt-icon-border-double.icon-with-text-shortcode.icon-text-id-f88c3bafe49b20bddce6f465130a9cef .text-icon.dt-icon-border-on:before {\n  border-style: double;\n}\n.icon-with-text-shortcode.icon-text-id-f88c3bafe49b20bddce6f465130a9cef .text-icon.dt-icon-border-dashed.dt-icon-border-on:before {\n  border-style: dashed;\n}\n.icon-with-text-shortcode.icon-text-id-f88c3bafe49b20bddce6f465130a9cef .text-icon.dt-icon-border-dotted.dt-icon-border-on:before {\n  border-style: dotted;\n}\n.icon-with-text-shortcode.icon-text-id-f88c3bafe49b20bddce6f465130a9cef .text-icon.dt-icon-border-double.dt-icon-border-on:before {\n  border-style: double;\n}\n.icon-with-text-shortcode.icon-text-id-f88c3bafe49b20bddce6f465130a9cef .text-icon.dt-icon-hover-border-on:after {\n  border-width: 0px;\n  border-style: solid;\n}\n.icon-with-text-shortcode.icon-text-id-f88c3bafe49b20bddce6f465130a9cef .text-icon.dt-icon-border-dashed.dt-icon-hover-border-on:after {\n  border-style: dashed;\n}\n.icon-with-text-shortcode.icon-text-id-f88c3bafe49b20bddce6f465130a9cef .text-icon.dt-icon-border-dotted.dt-icon-hover-border-on:after {\n  border-style: dotted;\n}\n.icon-with-text-shortcode.icon-text-id-f88c3bafe49b20bddce6f465130a9cef .text-icon.dt-icon-border-double.dt-icon-hover-border-on:after {\n  border-style: double;\n}\n.icon-with-text-shortcode.icon-text-id-f88c3bafe49b20bddce6f465130a9cef .text-icon.dt-icon-hover-on:hover {\n  font-size: 32px;\n}\n#page .icon-with-text-shortcode.icon-text-id-f88c3bafe49b20bddce6f465130a9cef .text-icon.dt-icon-hover-on:hover .soc-font-icon,\n#phantom .icon-with-text-shortcode.icon-text-id-f88c3bafe49b20bddce6f465130a9cef .text-icon.dt-icon-hover-on:hover .soc-font-icon,\n#page .icon-with-text-shortcode.icon-text-id-f88c3bafe49b20bddce6f465130a9cef .text-icon.dt-icon-hover-on:hover .soc-icon,\n#phantom .icon-with-text-shortcode.icon-text-id-f88c3bafe49b20bddce6f465130a9cef .text-icon.dt-icon-hover-on:hover .soc-icon {\n  color: #fff;\n  background: none;\n}\n#page .icon-with-text-shortcode.icon-text-id-f88c3bafe49b20bddce6f465130a9cef .text-icon.dt-icon-hover-on:not(:hover) .soc-font-icon,\n#phantom .icon-with-text-shortcode.icon-text-id-f88c3bafe49b20bddce6f465130a9cef .text-icon.dt-icon-hover-on:not(:hover) .soc-font-icon,\n#page .icon-with-text-shortcode.icon-text-id-f88c3bafe49b20bddce6f465130a9cef .text-icon.dt-icon-hover-on:not(:hover) .soc-icon,\n#phantom .icon-with-text-shortcode.icon-text-id-f88c3bafe49b20bddce6f465130a9cef .text-icon.dt-icon-hover-on:not(:hover) .soc-icon,\n#page .icon-with-text-shortcode.icon-text-id-f88c3bafe49b20bddce6f465130a9cef .text-icon.dt-icon-hover-off .soc-font-icon,\n#phantom .icon-with-text-shortcode.icon-text-id-f88c3bafe49b20bddce6f465130a9cef .text-icon.dt-icon-hover-off .soc-font-icon,\n#page .icon-with-text-shortcode.icon-text-id-f88c3bafe49b20bddce6f465130a9cef .text-icon.dt-icon-hover-off .soc-icon,\n#phantom .icon-with-text-shortcode.icon-text-id-f88c3bafe49b20bddce6f465130a9cef .text-icon.dt-icon-hover-off .soc-icon {\n  color: #ffffff;\n  background: none;\n}\n.icon-with-text-shortcode.icon-text-id-f88c3bafe49b20bddce6f465130a9cef.layout-1 {\n  grid-template-columns: 70px minmax(0,1fr);\n  grid-column-gap: 20px;\n}\n.icon-with-text-shortcode.icon-text-id-f88c3bafe49b20bddce6f465130a9cef.layout-2 {\n  grid-template-columns: minmax(0,1fr) 70px;\n  grid-column-gap: 0px;\n}\n.icon-with-text-shortcode.icon-text-id-f88c3bafe49b20bddce6f465130a9cef.layout-2 .text-icon {\n  margin-left: 0;\n}\n.icon-with-text-shortcode.icon-text-id-f88c3bafe49b20bddce6f465130a9cef.layout-3 {\n  grid-template-columns: 70px minmax(0,1fr);\n}\n.icon-with-text-shortcode.icon-text-id-f88c3bafe49b20bddce6f465130a9cef.layout-3 .dt-text-title {\n  margin-left: 20px;\n}\n.icon-with-text-shortcode.icon-text-id-f88c3bafe49b20bddce6f465130a9cef .dt-text-title,\n.icon-with-text-shortcode.icon-text-id-f88c3bafe49b20bddce6f465130a9cef .dt-text-title a {\n  font-weight: bold;\n}\n.icon-with-text-shortcode.icon-text-id-f88c3bafe49b20bddce6f465130a9cef .dt-text-title {\n  margin-bottom: 0px;\n}\n.icon-with-text-shortcode.icon-text-id-f88c3bafe49b20bddce6f465130a9cef .dt-text-desc {\n  margin-bottom: 0px;\n}\n\";s:32:\"07b15455243dc615521eae6b3dfed45c\";s:1188:\"#default-btn-07b15455243dc615521eae6b3dfed45c {\n  border-radius: 0px;\n  font-size: 14px;\n  line-height: 16px;\n}\n.btn-shadow#default-btn-07b15455243dc615521eae6b3dfed45c {\n  box-shadow: 0 1px 6px rgba(0,0,0,0.12);\n  transition: box-shadow 0.2s ease-out, opacity 0.45s;\n}\n.btn-shadow#default-btn-07b15455243dc615521eae6b3dfed45c:hover {\n  box-shadow: 0 5px 11px 0 rgba(0,0,0,0.18), 0 4px 15px 0 rgba(0,0,0,0.15);\n}\n.btn-flat#default-btn-07b15455243dc615521eae6b3dfed45c {\n  box-shadow: none;\n}\n.btn-flat#default-btn-07b15455243dc615521eae6b3dfed45c:hover {\n  box-shadow: none;\n}\n#default-btn-07b15455243dc615521eae6b3dfed45c.ico-right-side > i {\n  margin-right: 0px;\n  margin-left: 8px;\n}\n#default-btn-07b15455243dc615521eae6b3dfed45c > i {\n  margin-right: 8px;\n  font-size: 16px;\n}\n#default-btn-07b15455243dc615521eae6b3dfed45c:not(:hover) {\n  border-width: 2px;\n  padding: 9px 14px 9px 14px;\n}\n#default-btn-07b15455243dc615521eae6b3dfed45c:hover {\n  border-width: 0px;\n  padding: 11px 16px 11px 16px;\n}\n#default-btn-07b15455243dc615521eae6b3dfed45c.ico-right-side > i {\n  margin-right: 0px;\n  margin-left: 8px;\n}\n#default-btn-07b15455243dc615521eae6b3dfed45c > i {\n  margin-right: 8px;\n}\n\";s:32:\"19dacba82c2822181adc46d1f29264b9\";s:761:\".shortcode-single-image-wrap.shortcode-single-image-19dacba82c2822181adc46d1f29264b9.enable-bg-rollover .rollover i,\n.shortcode-single-image-wrap.shortcode-single-image-19dacba82c2822181adc46d1f29264b9.enable-bg-rollover .rollover-video i {\n  background: -webkit-linear-gradient();\n  background: linear-gradient();\n}\n.shortcode-single-image-wrap.shortcode-single-image-19dacba82c2822181adc46d1f29264b9 .rollover-icon {\n  font-size: 32px;\n  color: #ffffff;\n  min-width: 44px;\n  min-height: 44px;\n  line-height: 44px;\n  border-radius: 100px;\n  border-style: solid;\n  border-width: 0px;\n}\n.dt-icon-bg-on.shortcode-single-image-wrap.shortcode-single-image-19dacba82c2822181adc46d1f29264b9 .rollover-icon {\n  background: rgba(255,255,255,0.3);\n  box-shadow: none;\n}\n\";s:32:\"36e38bd90a3eba793dced82d09f96b9c\";s:1188:\"#default-btn-36e38bd90a3eba793dced82d09f96b9c {\n  border-radius: 0px;\n  font-size: 14px;\n  line-height: 16px;\n}\n.btn-shadow#default-btn-36e38bd90a3eba793dced82d09f96b9c {\n  box-shadow: 0 1px 6px rgba(0,0,0,0.12);\n  transition: box-shadow 0.2s ease-out, opacity 0.45s;\n}\n.btn-shadow#default-btn-36e38bd90a3eba793dced82d09f96b9c:hover {\n  box-shadow: 0 5px 11px 0 rgba(0,0,0,0.18), 0 4px 15px 0 rgba(0,0,0,0.15);\n}\n.btn-flat#default-btn-36e38bd90a3eba793dced82d09f96b9c {\n  box-shadow: none;\n}\n.btn-flat#default-btn-36e38bd90a3eba793dced82d09f96b9c:hover {\n  box-shadow: none;\n}\n#default-btn-36e38bd90a3eba793dced82d09f96b9c.ico-right-side > i {\n  margin-right: 0px;\n  margin-left: 8px;\n}\n#default-btn-36e38bd90a3eba793dced82d09f96b9c > i {\n  margin-right: 8px;\n  font-size: 16px;\n}\n#default-btn-36e38bd90a3eba793dced82d09f96b9c:not(:hover) {\n  border-width: 2px;\n  padding: 9px 14px 9px 14px;\n}\n#default-btn-36e38bd90a3eba793dced82d09f96b9c:hover {\n  border-width: 0px;\n  padding: 11px 16px 11px 16px;\n}\n#default-btn-36e38bd90a3eba793dced82d09f96b9c.ico-right-side > i {\n  margin-right: 0px;\n  margin-left: 8px;\n}\n#default-btn-36e38bd90a3eba793dced82d09f96b9c > i {\n  margin-right: 8px;\n}\n\";s:32:\"dbadc755ff7a105647c1a82a9ab2864b\";s:761:\".shortcode-single-image-wrap.shortcode-single-image-dbadc755ff7a105647c1a82a9ab2864b.enable-bg-rollover .rollover i,\n.shortcode-single-image-wrap.shortcode-single-image-dbadc755ff7a105647c1a82a9ab2864b.enable-bg-rollover .rollover-video i {\n  background: -webkit-linear-gradient();\n  background: linear-gradient();\n}\n.shortcode-single-image-wrap.shortcode-single-image-dbadc755ff7a105647c1a82a9ab2864b .rollover-icon {\n  font-size: 32px;\n  color: #ffffff;\n  min-width: 44px;\n  min-height: 44px;\n  line-height: 44px;\n  border-radius: 100px;\n  border-style: solid;\n  border-width: 0px;\n}\n.dt-icon-bg-on.shortcode-single-image-wrap.shortcode-single-image-dbadc755ff7a105647c1a82a9ab2864b .rollover-icon {\n  background: rgba(255,255,255,0.3);\n  box-shadow: none;\n}\n\";s:32:\"8726b661e251137afd0bfe48a550df9f\";s:1188:\"#default-btn-8726b661e251137afd0bfe48a550df9f {\n  border-radius: 0px;\n  font-size: 14px;\n  line-height: 16px;\n}\n.btn-shadow#default-btn-8726b661e251137afd0bfe48a550df9f {\n  box-shadow: 0 1px 6px rgba(0,0,0,0.12);\n  transition: box-shadow 0.2s ease-out, opacity 0.45s;\n}\n.btn-shadow#default-btn-8726b661e251137afd0bfe48a550df9f:hover {\n  box-shadow: 0 5px 11px 0 rgba(0,0,0,0.18), 0 4px 15px 0 rgba(0,0,0,0.15);\n}\n.btn-flat#default-btn-8726b661e251137afd0bfe48a550df9f {\n  box-shadow: none;\n}\n.btn-flat#default-btn-8726b661e251137afd0bfe48a550df9f:hover {\n  box-shadow: none;\n}\n#default-btn-8726b661e251137afd0bfe48a550df9f.ico-right-side > i {\n  margin-right: 0px;\n  margin-left: 8px;\n}\n#default-btn-8726b661e251137afd0bfe48a550df9f > i {\n  margin-right: 8px;\n  font-size: 16px;\n}\n#default-btn-8726b661e251137afd0bfe48a550df9f:not(:hover) {\n  border-width: 2px;\n  padding: 9px 14px 9px 14px;\n}\n#default-btn-8726b661e251137afd0bfe48a550df9f:hover {\n  border-width: 0px;\n  padding: 11px 16px 11px 16px;\n}\n#default-btn-8726b661e251137afd0bfe48a550df9f.ico-right-side > i {\n  margin-right: 0px;\n  margin-left: 8px;\n}\n#default-btn-8726b661e251137afd0bfe48a550df9f > i {\n  margin-right: 8px;\n}\n\";s:32:\"bcdaf6e724e7817f5140544edb849096\";s:761:\".shortcode-single-image-wrap.shortcode-single-image-bcdaf6e724e7817f5140544edb849096.enable-bg-rollover .rollover i,\n.shortcode-single-image-wrap.shortcode-single-image-bcdaf6e724e7817f5140544edb849096.enable-bg-rollover .rollover-video i {\n  background: -webkit-linear-gradient();\n  background: linear-gradient();\n}\n.shortcode-single-image-wrap.shortcode-single-image-bcdaf6e724e7817f5140544edb849096 .rollover-icon {\n  font-size: 32px;\n  color: #ffffff;\n  min-width: 44px;\n  min-height: 44px;\n  line-height: 44px;\n  border-radius: 100px;\n  border-style: solid;\n  border-width: 0px;\n}\n.dt-icon-bg-on.shortcode-single-image-wrap.shortcode-single-image-bcdaf6e724e7817f5140544edb849096 .rollover-icon {\n  background: rgba(255,255,255,0.3);\n  box-shadow: none;\n}\n\";s:32:\"88c210658d3e103acdc14b3ed80c940e\";s:1188:\"#default-btn-88c210658d3e103acdc14b3ed80c940e {\n  border-radius: 0px;\n  font-size: 14px;\n  line-height: 16px;\n}\n.btn-shadow#default-btn-88c210658d3e103acdc14b3ed80c940e {\n  box-shadow: 0 1px 6px rgba(0,0,0,0.12);\n  transition: box-shadow 0.2s ease-out, opacity 0.45s;\n}\n.btn-shadow#default-btn-88c210658d3e103acdc14b3ed80c940e:hover {\n  box-shadow: 0 5px 11px 0 rgba(0,0,0,0.18), 0 4px 15px 0 rgba(0,0,0,0.15);\n}\n.btn-flat#default-btn-88c210658d3e103acdc14b3ed80c940e {\n  box-shadow: none;\n}\n.btn-flat#default-btn-88c210658d3e103acdc14b3ed80c940e:hover {\n  box-shadow: none;\n}\n#default-btn-88c210658d3e103acdc14b3ed80c940e.ico-right-side > i {\n  margin-right: 0px;\n  margin-left: 8px;\n}\n#default-btn-88c210658d3e103acdc14b3ed80c940e > i {\n  margin-right: 8px;\n  font-size: 16px;\n}\n#default-btn-88c210658d3e103acdc14b3ed80c940e:not(:hover) {\n  border-width: 2px;\n  padding: 9px 14px 9px 14px;\n}\n#default-btn-88c210658d3e103acdc14b3ed80c940e:hover {\n  border-width: 0px;\n  padding: 11px 16px 11px 16px;\n}\n#default-btn-88c210658d3e103acdc14b3ed80c940e.ico-right-side > i {\n  margin-right: 0px;\n  margin-left: 8px;\n}\n#default-btn-88c210658d3e103acdc14b3ed80c940e > i {\n  margin-right: 8px;\n}\n\";s:32:\"4736c4ec1b05204a050b4535b2138062\";s:761:\".shortcode-single-image-wrap.shortcode-single-image-4736c4ec1b05204a050b4535b2138062.enable-bg-rollover .rollover i,\n.shortcode-single-image-wrap.shortcode-single-image-4736c4ec1b05204a050b4535b2138062.enable-bg-rollover .rollover-video i {\n  background: -webkit-linear-gradient();\n  background: linear-gradient();\n}\n.shortcode-single-image-wrap.shortcode-single-image-4736c4ec1b05204a050b4535b2138062 .rollover-icon {\n  font-size: 32px;\n  color: #ffffff;\n  min-width: 44px;\n  min-height: 44px;\n  line-height: 44px;\n  border-radius: 100px;\n  border-style: solid;\n  border-width: 0px;\n}\n.dt-icon-bg-on.shortcode-single-image-wrap.shortcode-single-image-4736c4ec1b05204a050b4535b2138062 .rollover-icon {\n  background: rgba(255,255,255,0.3);\n  box-shadow: none;\n}\n\";s:32:\"9619d5dd946f7273429af0bf2e20eac3\";s:1188:\"#default-btn-9619d5dd946f7273429af0bf2e20eac3 {\n  border-radius: 0px;\n  font-size: 14px;\n  line-height: 16px;\n}\n.btn-shadow#default-btn-9619d5dd946f7273429af0bf2e20eac3 {\n  box-shadow: 0 1px 6px rgba(0,0,0,0.12);\n  transition: box-shadow 0.2s ease-out, opacity 0.45s;\n}\n.btn-shadow#default-btn-9619d5dd946f7273429af0bf2e20eac3:hover {\n  box-shadow: 0 5px 11px 0 rgba(0,0,0,0.18), 0 4px 15px 0 rgba(0,0,0,0.15);\n}\n.btn-flat#default-btn-9619d5dd946f7273429af0bf2e20eac3 {\n  box-shadow: none;\n}\n.btn-flat#default-btn-9619d5dd946f7273429af0bf2e20eac3:hover {\n  box-shadow: none;\n}\n#default-btn-9619d5dd946f7273429af0bf2e20eac3.ico-right-side > i {\n  margin-right: 0px;\n  margin-left: 8px;\n}\n#default-btn-9619d5dd946f7273429af0bf2e20eac3 > i {\n  margin-right: 8px;\n  font-size: 16px;\n}\n#default-btn-9619d5dd946f7273429af0bf2e20eac3:not(:hover) {\n  border-width: 2px;\n  padding: 9px 14px 9px 14px;\n}\n#default-btn-9619d5dd946f7273429af0bf2e20eac3:hover {\n  border-width: 0px;\n  padding: 11px 16px 11px 16px;\n}\n#default-btn-9619d5dd946f7273429af0bf2e20eac3.ico-right-side > i {\n  margin-right: 0px;\n  margin-left: 8px;\n}\n#default-btn-9619d5dd946f7273429af0bf2e20eac3 > i {\n  margin-right: 8px;\n}\n\";s:32:\"2b401646ca29991d5c6cfc1f66f6e890\";s:1355:\"#default-btn-2b401646ca29991d5c6cfc1f66f6e890 {\n  border-radius: 0px;\n  font-size: 14px;\n  line-height: 16px;\n}\n.btn-shadow#default-btn-2b401646ca29991d5c6cfc1f66f6e890 {\n  box-shadow: 0 1px 6px rgba(0,0,0,0.12);\n  transition: box-shadow 0.2s ease-out, opacity 0.45s;\n}\n.btn-shadow#default-btn-2b401646ca29991d5c6cfc1f66f6e890:hover {\n  box-shadow: 0 5px 11px 0 rgba(0,0,0,0.18), 0 4px 15px 0 rgba(0,0,0,0.15);\n}\n.btn-flat#default-btn-2b401646ca29991d5c6cfc1f66f6e890 {\n  box-shadow: none;\n}\n.btn-flat#default-btn-2b401646ca29991d5c6cfc1f66f6e890:hover {\n  box-shadow: none;\n}\n#default-btn-2b401646ca29991d5c6cfc1f66f6e890.ico-right-side > i {\n  margin-right: 0px;\n  margin-left: 8px;\n}\n#default-btn-2b401646ca29991d5c6cfc1f66f6e890 > i {\n  margin-right: 8px;\n  font-size: 16px;\n}\n#default-btn-2b401646ca29991d5c6cfc1f66f6e890:not(:hover) {\n  border-width: 2px;\n  border-color: #7bb519 !important;\n  color: #7bb519;\n  background: none !important;\n  padding: 9px 14px 9px 14px;\n}\n#default-btn-2b401646ca29991d5c6cfc1f66f6e890:not(:hover) * {\n  color: #7bb519;\n}\n#default-btn-2b401646ca29991d5c6cfc1f66f6e890:hover {\n  border-width: 0px;\n  padding: 11px 16px 11px 16px;\n}\n#default-btn-2b401646ca29991d5c6cfc1f66f6e890.ico-right-side > i {\n  margin-right: 0px;\n  margin-left: 8px;\n}\n#default-btn-2b401646ca29991d5c6cfc1f66f6e890 > i {\n  margin-right: 8px;\n}\n\";s:32:\"48899d9028ea178e375b0e9aeae77dd1\";s:1188:\"#default-btn-48899d9028ea178e375b0e9aeae77dd1 {\n  border-radius: 0px;\n  font-size: 14px;\n  line-height: 16px;\n}\n.btn-shadow#default-btn-48899d9028ea178e375b0e9aeae77dd1 {\n  box-shadow: 0 1px 6px rgba(0,0,0,0.12);\n  transition: box-shadow 0.2s ease-out, opacity 0.45s;\n}\n.btn-shadow#default-btn-48899d9028ea178e375b0e9aeae77dd1:hover {\n  box-shadow: 0 5px 11px 0 rgba(0,0,0,0.18), 0 4px 15px 0 rgba(0,0,0,0.15);\n}\n.btn-flat#default-btn-48899d9028ea178e375b0e9aeae77dd1 {\n  box-shadow: none;\n}\n.btn-flat#default-btn-48899d9028ea178e375b0e9aeae77dd1:hover {\n  box-shadow: none;\n}\n#default-btn-48899d9028ea178e375b0e9aeae77dd1.ico-right-side > i {\n  margin-right: 0px;\n  margin-left: 8px;\n}\n#default-btn-48899d9028ea178e375b0e9aeae77dd1 > i {\n  margin-right: 8px;\n  font-size: 16px;\n}\n#default-btn-48899d9028ea178e375b0e9aeae77dd1:not(:hover) {\n  border-width: 2px;\n  padding: 9px 14px 9px 14px;\n}\n#default-btn-48899d9028ea178e375b0e9aeae77dd1:hover {\n  border-width: 0px;\n  padding: 11px 16px 11px 16px;\n}\n#default-btn-48899d9028ea178e375b0e9aeae77dd1.ico-right-side > i {\n  margin-right: 0px;\n  margin-left: 8px;\n}\n#default-btn-48899d9028ea178e375b0e9aeae77dd1 > i {\n  margin-right: 8px;\n}\n\";s:32:\"7f5a10e4f7a32ed11bf4e319765f0aa1\";s:1355:\"#default-btn-7f5a10e4f7a32ed11bf4e319765f0aa1 {\n  border-radius: 0px;\n  font-size: 14px;\n  line-height: 16px;\n}\n.btn-shadow#default-btn-7f5a10e4f7a32ed11bf4e319765f0aa1 {\n  box-shadow: 0 1px 6px rgba(0,0,0,0.12);\n  transition: box-shadow 0.2s ease-out, opacity 0.45s;\n}\n.btn-shadow#default-btn-7f5a10e4f7a32ed11bf4e319765f0aa1:hover {\n  box-shadow: 0 5px 11px 0 rgba(0,0,0,0.18), 0 4px 15px 0 rgba(0,0,0,0.15);\n}\n.btn-flat#default-btn-7f5a10e4f7a32ed11bf4e319765f0aa1 {\n  box-shadow: none;\n}\n.btn-flat#default-btn-7f5a10e4f7a32ed11bf4e319765f0aa1:hover {\n  box-shadow: none;\n}\n#default-btn-7f5a10e4f7a32ed11bf4e319765f0aa1.ico-right-side > i {\n  margin-right: 0px;\n  margin-left: 8px;\n}\n#default-btn-7f5a10e4f7a32ed11bf4e319765f0aa1 > i {\n  margin-right: 8px;\n  font-size: 16px;\n}\n#default-btn-7f5a10e4f7a32ed11bf4e319765f0aa1:not(:hover) {\n  border-width: 2px;\n  border-color: #7bb519 !important;\n  color: #7bb519;\n  background: none !important;\n  padding: 9px 14px 9px 14px;\n}\n#default-btn-7f5a10e4f7a32ed11bf4e319765f0aa1:not(:hover) * {\n  color: #7bb519;\n}\n#default-btn-7f5a10e4f7a32ed11bf4e319765f0aa1:hover {\n  border-width: 0px;\n  padding: 11px 16px 11px 16px;\n}\n#default-btn-7f5a10e4f7a32ed11bf4e319765f0aa1.ico-right-side > i {\n  margin-right: 0px;\n  margin-left: 8px;\n}\n#default-btn-7f5a10e4f7a32ed11bf4e319765f0aa1 > i {\n  margin-right: 8px;\n}\n\";s:32:\"db1a8825d96a6b887b5e2bac2360cc1f\";s:761:\".shortcode-single-image-wrap.shortcode-single-image-db1a8825d96a6b887b5e2bac2360cc1f.enable-bg-rollover .rollover i,\n.shortcode-single-image-wrap.shortcode-single-image-db1a8825d96a6b887b5e2bac2360cc1f.enable-bg-rollover .rollover-video i {\n  background: -webkit-linear-gradient();\n  background: linear-gradient();\n}\n.shortcode-single-image-wrap.shortcode-single-image-db1a8825d96a6b887b5e2bac2360cc1f .rollover-icon {\n  font-size: 32px;\n  color: #ffffff;\n  min-width: 44px;\n  min-height: 44px;\n  line-height: 44px;\n  border-radius: 100px;\n  border-style: solid;\n  border-width: 0px;\n}\n.dt-icon-bg-on.shortcode-single-image-wrap.shortcode-single-image-db1a8825d96a6b887b5e2bac2360cc1f .rollover-icon {\n  background: rgba(255,255,255,0.3);\n  box-shadow: none;\n}\n\";s:32:\"8a3883acdff335efec60d96cca689ce6\";s:761:\".shortcode-single-image-wrap.shortcode-single-image-8a3883acdff335efec60d96cca689ce6.enable-bg-rollover .rollover i,\n.shortcode-single-image-wrap.shortcode-single-image-8a3883acdff335efec60d96cca689ce6.enable-bg-rollover .rollover-video i {\n  background: -webkit-linear-gradient();\n  background: linear-gradient();\n}\n.shortcode-single-image-wrap.shortcode-single-image-8a3883acdff335efec60d96cca689ce6 .rollover-icon {\n  font-size: 32px;\n  color: #ffffff;\n  min-width: 44px;\n  min-height: 44px;\n  line-height: 44px;\n  border-radius: 100px;\n  border-style: solid;\n  border-width: 0px;\n}\n.dt-icon-bg-on.shortcode-single-image-wrap.shortcode-single-image-8a3883acdff335efec60d96cca689ce6 .rollover-icon {\n  background: rgba(255,255,255,0.3);\n  box-shadow: none;\n}\n\";s:32:\"5ca39b75cfb180c1d716e0b6671899fe\";s:1188:\"#default-btn-5ca39b75cfb180c1d716e0b6671899fe {\n  border-radius: 0px;\n  font-size: 14px;\n  line-height: 16px;\n}\n.btn-shadow#default-btn-5ca39b75cfb180c1d716e0b6671899fe {\n  box-shadow: 0 1px 6px rgba(0,0,0,0.12);\n  transition: box-shadow 0.2s ease-out, opacity 0.45s;\n}\n.btn-shadow#default-btn-5ca39b75cfb180c1d716e0b6671899fe:hover {\n  box-shadow: 0 5px 11px 0 rgba(0,0,0,0.18), 0 4px 15px 0 rgba(0,0,0,0.15);\n}\n.btn-flat#default-btn-5ca39b75cfb180c1d716e0b6671899fe {\n  box-shadow: none;\n}\n.btn-flat#default-btn-5ca39b75cfb180c1d716e0b6671899fe:hover {\n  box-shadow: none;\n}\n#default-btn-5ca39b75cfb180c1d716e0b6671899fe.ico-right-side > i {\n  margin-right: 0px;\n  margin-left: 8px;\n}\n#default-btn-5ca39b75cfb180c1d716e0b6671899fe > i {\n  margin-right: 8px;\n  font-size: 16px;\n}\n#default-btn-5ca39b75cfb180c1d716e0b6671899fe:not(:hover) {\n  border-width: 2px;\n  padding: 9px 14px 9px 14px;\n}\n#default-btn-5ca39b75cfb180c1d716e0b6671899fe:hover {\n  border-width: 0px;\n  padding: 11px 16px 11px 16px;\n}\n#default-btn-5ca39b75cfb180c1d716e0b6671899fe.ico-right-side > i {\n  margin-right: 0px;\n  margin-left: 8px;\n}\n#default-btn-5ca39b75cfb180c1d716e0b6671899fe > i {\n  margin-right: 8px;\n}\n\";s:32:\"b05b8161245eb36ac7e4f87d9464adf3\";s:1355:\"#default-btn-b05b8161245eb36ac7e4f87d9464adf3 {\n  border-radius: 0px;\n  font-size: 14px;\n  line-height: 16px;\n}\n.btn-shadow#default-btn-b05b8161245eb36ac7e4f87d9464adf3 {\n  box-shadow: 0 1px 6px rgba(0,0,0,0.12);\n  transition: box-shadow 0.2s ease-out, opacity 0.45s;\n}\n.btn-shadow#default-btn-b05b8161245eb36ac7e4f87d9464adf3:hover {\n  box-shadow: 0 5px 11px 0 rgba(0,0,0,0.18), 0 4px 15px 0 rgba(0,0,0,0.15);\n}\n.btn-flat#default-btn-b05b8161245eb36ac7e4f87d9464adf3 {\n  box-shadow: none;\n}\n.btn-flat#default-btn-b05b8161245eb36ac7e4f87d9464adf3:hover {\n  box-shadow: none;\n}\n#default-btn-b05b8161245eb36ac7e4f87d9464adf3.ico-right-side > i {\n  margin-right: 0px;\n  margin-left: 8px;\n}\n#default-btn-b05b8161245eb36ac7e4f87d9464adf3 > i {\n  margin-right: 8px;\n  font-size: 16px;\n}\n#default-btn-b05b8161245eb36ac7e4f87d9464adf3:not(:hover) {\n  border-width: 2px;\n  border-color: #7bb519 !important;\n  color: #7bb519;\n  background: none !important;\n  padding: 9px 14px 9px 14px;\n}\n#default-btn-b05b8161245eb36ac7e4f87d9464adf3:not(:hover) * {\n  color: #7bb519;\n}\n#default-btn-b05b8161245eb36ac7e4f87d9464adf3:hover {\n  border-width: 0px;\n  padding: 11px 16px 11px 16px;\n}\n#default-btn-b05b8161245eb36ac7e4f87d9464adf3.ico-right-side > i {\n  margin-right: 0px;\n  margin-left: 8px;\n}\n#default-btn-b05b8161245eb36ac7e4f87d9464adf3 > i {\n  margin-right: 8px;\n}\n\";s:32:\"2a8acb52d979749505d62911beef4949\";s:12426:\".testimonials-carousel-shortcode.testimonials-carousel-shortcode-id-2a8acb52d979749505d62911beef4949.owl-carousel .owl-nav a {\n  width: 40px;\n  height: 40px;\n  border-radius: 500px;\n}\n.testimonials-carousel-shortcode.testimonials-carousel-shortcode-id-2a8acb52d979749505d62911beef4949.owl-carousel .owl-nav a:before,\n.testimonials-carousel-shortcode.testimonials-carousel-shortcode-id-2a8acb52d979749505d62911beef4949.owl-carousel .owl-nav a:after {\n  border-width: 0px;\n}\n.testimonials-carousel-shortcode.testimonials-carousel-shortcode-id-2a8acb52d979749505d62911beef4949.owl-carousel .owl-nav a.owl-prev {\n  top: 50%;\n  transform: translateY(calc(-50% + 0px));\n  left: -30px;\n}\n@media all and (-ms-high-contrast: none) {\n  .testimonials-carousel-shortcode.testimonials-carousel-shortcode-id-2a8acb52d979749505d62911beef4949.owl-carousel .owl-nav a.owl-prev {\n    transform: translateY(-50%);\n    margin-top: 0px;\n  }\n}\n.testimonials-carousel-shortcode.testimonials-carousel-shortcode-id-2a8acb52d979749505d62911beef4949.owl-carousel .owl-nav a.owl-prev i {\n  padding: 0px 0px 0px 0px;\n}\n.testimonials-carousel-shortcode.testimonials-carousel-shortcode-id-2a8acb52d979749505d62911beef4949.owl-carousel .owl-nav a.owl-next {\n  top: 50%;\n  transform: translateY(calc(-50% + 0px));\n  right: -30px;\n}\n@media all and (-ms-high-contrast: none) {\n  .testimonials-carousel-shortcode.testimonials-carousel-shortcode-id-2a8acb52d979749505d62911beef4949.owl-carousel .owl-nav a.owl-next {\n    transform: translateY(-50%);\n    margin-top: 0px;\n  }\n}\n.testimonials-carousel-shortcode.testimonials-carousel-shortcode-id-2a8acb52d979749505d62911beef4949.owl-carousel .owl-nav a.owl-next i {\n  padding: 0px 0px 0px 0px;\n}\n.testimonials-carousel-shortcode.testimonials-carousel-shortcode-id-2a8acb52d979749505d62911beef4949.owl-carousel .owl-nav i {\n  font-size: 18px;\n}\n.testimonials-carousel-shortcode.testimonials-carousel-shortcode-id-2a8acb52d979749505d62911beef4949.owl-carousel .owl-nav a:not(:hover) i,\n.testimonials-carousel-shortcode.testimonials-carousel-shortcode-id-2a8acb52d979749505d62911beef4949.owl-carousel .owl-nav a:not(:hover) i:before {\n  color: #ffffff;\n  background: none;\n}\n.testimonials-carousel-shortcode.testimonials-carousel-shortcode-id-2a8acb52d979749505d62911beef4949.owl-carousel .owl-nav a:hover i,\n.testimonials-carousel-shortcode.testimonials-carousel-shortcode-id-2a8acb52d979749505d62911beef4949.owl-carousel .owl-nav a:hover i:before {\n  color: rgba(255,255,255,0.75);\n  background: none;\n}\n.testimonials-carousel-shortcode.testimonials-carousel-shortcode-id-2a8acb52d979749505d62911beef4949 .owl-dots {\n  top: calc(100% + 0px);\n  left: 50%;\n  transform: translateX(calc(-50% + 0px));\n}\n@media all and (-ms-high-contrast: none) {\n  .testimonials-carousel-shortcode.testimonials-carousel-shortcode-id-2a8acb52d979749505d62911beef4949 .owl-dots {\n    transform: translateX(-50%);\n    margin-left: 0px;\n  }\n}\n.testimonials-carousel-shortcode.testimonials-carousel-shortcode-id-2a8acb52d979749505d62911beef4949 .owl-dot {\n  width: 10px;\n  height: 10px;\n  margin: 0 8px;\n}\n.bullets-scale-up.testimonials-carousel-shortcode.testimonials-carousel-shortcode-id-2a8acb52d979749505d62911beef4949 .owl-dot:not(.active):not(:hover) span {\n  background: #7bb519;\n}\n.bullets-scale-up.testimonials-carousel-shortcode.testimonials-carousel-shortcode-id-2a8acb52d979749505d62911beef4949 .owl-dot:not(.active):hover span,\n.bullets-scale-up.testimonials-carousel-shortcode.testimonials-carousel-shortcode-id-2a8acb52d979749505d62911beef4949 .owl-dot.active span {\n  background: #7bb519;\n}\n.bullets-stroke.testimonials-carousel-shortcode.testimonials-carousel-shortcode-id-2a8acb52d979749505d62911beef4949 .owl-dot:not(.active):not(:hover) span {\n  background: #7bb519;\n}\n.bullets-stroke.testimonials-carousel-shortcode.testimonials-carousel-shortcode-id-2a8acb52d979749505d62911beef4949 .owl-dot:not(.active):hover span {\n  background: #7bb519;\n}\n.bullets-stroke.testimonials-carousel-shortcode.testimonials-carousel-shortcode-id-2a8acb52d979749505d62911beef4949 .owl-dot.active span {\n  -webkit-box-shadow: 0 0 0 2px #7bb519;\n  box-shadow: 0 0 0 2px #7bb519;\n}\n.bullets-fill-in.testimonials-carousel-shortcode.testimonials-carousel-shortcode-id-2a8acb52d979749505d62911beef4949 .owl-dot:not(.active):not(:hover) span {\n  -webkit-box-shadow: inset 0 0 0 2px #7bb519;\n  box-shadow: inset 0 0 0 2px #7bb519;\n}\n.bullets-fill-in.testimonials-carousel-shortcode.testimonials-carousel-shortcode-id-2a8acb52d979749505d62911beef4949 .owl-dot:not(.active):hover span {\n  -webkit-box-shadow: inset 0 0 0 2px #7bb519;\n  box-shadow: inset 0 0 0 2px #7bb519;\n}\n.bullets-fill-in.testimonials-carousel-shortcode.testimonials-carousel-shortcode-id-2a8acb52d979749505d62911beef4949 .owl-dot.active span {\n  -webkit-box-shadow: inset 0 0 0 20px #7bb519;\n  box-shadow: inset 0 0 0 20px #7bb519;\n}\n.bullets-small-dot-stroke.testimonials-carousel-shortcode.testimonials-carousel-shortcode-id-2a8acb52d979749505d62911beef4949 .owl-dot:not(.active):not(:hover) span {\n  background: #7bb519;\n}\n.bullets-small-dot-stroke.testimonials-carousel-shortcode.testimonials-carousel-shortcode-id-2a8acb52d979749505d62911beef4949 .owl-dot:not(.active):hover span,\n.bullets-small-dot-stroke.testimonials-carousel-shortcode.testimonials-carousel-shortcode-id-2a8acb52d979749505d62911beef4949 .owl-dot.active span {\n  background: #7bb519;\n}\n.bullets-small-dot-stroke.testimonials-carousel-shortcode.testimonials-carousel-shortcode-id-2a8acb52d979749505d62911beef4949 .owl-dot.active {\n  -webkit-box-shadow: 0 0 0 2px #7bb519;\n  box-shadow: 0 0 0 2px #7bb519;\n}\n.bullets-ubax.testimonials-carousel-shortcode.testimonials-carousel-shortcode-id-2a8acb52d979749505d62911beef4949 .owl-dot span {\n  background: #7bb519;\n}\n.bullets-ubax.testimonials-carousel-shortcode.testimonials-carousel-shortcode-id-2a8acb52d979749505d62911beef4949 .owl-dot.active span {\n  border-color: #7bb519;\n}\n.bullets-ubax.testimonials-carousel-shortcode.testimonials-carousel-shortcode-id-2a8acb52d979749505d62911beef4949 .owl-dot:not(.active):hover span {\n  background: #7bb519;\n}\n.bullets-etefu.testimonials-carousel-shortcode.testimonials-carousel-shortcode-id-2a8acb52d979749505d62911beef4949 .owl-dot span {\n  background: #7bb519;\n}\n.bullets-etefu.testimonials-carousel-shortcode.testimonials-carousel-shortcode-id-2a8acb52d979749505d62911beef4949 .owl-dot:not(.active):hover span {\n  background: #7bb519;\n}\n.bullets-etefu.testimonials-carousel-shortcode.testimonials-carousel-shortcode-id-2a8acb52d979749505d62911beef4949 .owl-dot span:before {\n  background: #7bb519;\n}\n.accent-gradient .bullets-etefu.testimonials-carousel-shortcode.testimonials-carousel-shortcode-id-2a8acb52d979749505d62911beef4949 .owl-dot span:before {\n  background: #7bb519;\n}\n@media screen and (max-width: 778px) {\n  .testimonials-carousel-shortcode.testimonials-carousel-shortcode-id-2a8acb52d979749505d62911beef4949.hide-arrows.owl-carousel .owl-nav a {\n    display: none;\n  }\n}\n@media screen and (max-width: 778px) {\n  .testimonials-carousel-shortcode.testimonials-carousel-shortcode-id-2a8acb52d979749505d62911beef4949.reposition-arrows.owl-carousel .owl-nav .owl-prev {\n    top: 50%;\n    transform: translateY(calc(-50% + 0px));\n    left: -18px;\n  }\n  .testimonials-carousel-shortcode.testimonials-carousel-shortcode-id-2a8acb52d979749505d62911beef4949.reposition-arrows.owl-carousel .owl-nav .owl-next {\n    top: 50%;\n    transform: translateY(calc(-50% + 0px));\n    right: -18px;\n  }\n}\n@media screen and (max-width: 778px) and all and (-ms-high-contrast: none) {\n  .testimonials-carousel-shortcode.testimonials-carousel-shortcode-id-2a8acb52d979749505d62911beef4949.reposition-arrows.owl-carousel .owl-nav .owl-prev {\n    transform: translateY(-50%);\n    margin-top: 0px;\n  }\n}\n@media screen and (max-width: 778px) and all and (-ms-high-contrast: none) {\n  .testimonials-carousel-shortcode.testimonials-carousel-shortcode-id-2a8acb52d979749505d62911beef4949.reposition-arrows.owl-carousel .owl-nav .owl-next {\n    transform: translateY(-50%);\n    margin-top: 0px;\n  }\n}\n.testimonials-carousel-shortcode.testimonials-carousel-shortcode-id-2a8acb52d979749505d62911beef4949 .testimonial-item {\n  padding: 0px 0px 0px 0px;\n}\n.testimonials-carousel-shortcode.testimonials-carousel-shortcode-id-2a8acb52d979749505d62911beef4949 .testimonial-name,\n.testimonials-carousel-shortcode.testimonials-carousel-shortcode-id-2a8acb52d979749505d62911beef4949 .testimonial-name a,\n.testimonials-carousel-shortcode.testimonials-carousel-shortcode-id-2a8acb52d979749505d62911beef4949 .testimonial-name span {\n  margin-bottom: 0px;\n  font-weight: bold;\n}\n.testimonials-carousel-shortcode.testimonials-carousel-shortcode-id-2a8acb52d979749505d62911beef4949 .testimonial-position {\n  margin-bottom: 20px;\n}\n.testimonials-carousel-shortcode.testimonials-carousel-shortcode-id-2a8acb52d979749505d62911beef4949 .testimonial-position,\n.testimonials-carousel-shortcode.testimonials-carousel-shortcode-id-2a8acb52d979749505d62911beef4949 .testimonial-position span {\n  font-size: 18px;\n  line-height: 28px;\n  font-weight: bold;\n}\n.testimonials-carousel-shortcode.testimonials-carousel-shortcode-id-2a8acb52d979749505d62911beef4949  .testimonial-avatar {\n  padding: 0px 0px 20px 0px;\n}\n.testimonials-carousel-shortcode.testimonials-carousel-shortcode-id-2a8acb52d979749505d62911beef4949  .testimonial-avatar a,\n.testimonials-carousel-shortcode.testimonials-carousel-shortcode-id-2a8acb52d979749505d62911beef4949  .testimonial-avatar span,\n.testimonials-carousel-shortcode.testimonials-carousel-shortcode-id-2a8acb52d979749505d62911beef4949  .testimonial-avatar img {\n  max-width: 120px;\n}\n.testimonials-carousel-shortcode.testimonials-carousel-shortcode-id-2a8acb52d979749505d62911beef4949 .dt-css-grid .testimonial-avatar img,\n.testimonials-carousel-shortcode.testimonials-carousel-shortcode-id-2a8acb52d979749505d62911beef4949 .dt-css-grid .testimonial-avatar svg {\n  max-width: 100%;\n}\n.testimonials-carousel-shortcode.testimonials-carousel-shortcode-id-2a8acb52d979749505d62911beef4949.layout-5:not(.hide-testimonial-avatar) .content-wrap,\n.testimonials-carousel-shortcode.testimonials-carousel-shortcode-id-2a8acb52d979749505d62911beef4949.layout-6:not(.hide-testimonial-avatar) .content-wrap {\n  width: calc(100% - 120px - 0px - 0px);\n}\n.testimonials-carousel-shortcode.testimonials-carousel-shortcode-id-2a8acb52d979749505d62911beef4949 .testimonial-content {\n  margin-bottom: 0px;\n  font-size: 20px;\n  line-height: 34px;\n}\n.testimonials-carousel-shortcode.testimonials-carousel-shortcode-id-2a8acb52d979749505d62911beef4949  .testimonial-avatar,\n.testimonials-carousel-shortcode.testimonials-carousel-shortcode-id-2a8acb52d979749505d62911beef4949  .testimonial-avatar a.rollover,\n.testimonials-carousel-shortcode.testimonials-carousel-shortcode-id-2a8acb52d979749505d62911beef4949  .testimonial-avatar a.rollover *,\n.testimonials-carousel-shortcode.testimonials-carousel-shortcode-id-2a8acb52d979749505d62911beef4949  .testimonial-avatar img,\n.testimonials-carousel-shortcode.testimonials-carousel-shortcode-id-2a8acb52d979749505d62911beef4949  .testimonial-avatar .no-avatar,\n.testimonials-carousel-shortcode.testimonials-carousel-shortcode-id-2a8acb52d979749505d62911beef4949  .testim-no-avatar {\n  border-radius: 100px;\n}\n.testimonials-carousel-shortcode.testimonials-carousel-shortcode-id-2a8acb52d979749505d62911beef4949  .testimonial-avatar .no-avatar {\n  height: 120px;\n}\n.testimonials-carousel-shortcode.testimonials-carousel-shortcode-id-2a8acb52d979749505d62911beef4949  .testimonial-avatar .no-avatar {\n  font-size: 120px;\n  width: 120px;\n}\n@media screen and (max-width: 768px) {\n  .testimonials-carousel-shortcode.testimonials-carousel-shortcode-id-2a8acb52d979749505d62911beef4949 .testimonial-name,\n  .testimonials-carousel-shortcode.testimonials-carousel-shortcode-id-2a8acb52d979749505d62911beef4949 .testimonial-name a,\n  .testimonials-carousel-shortcode.testimonials-carousel-shortcode-id-2a8acb52d979749505d62911beef4949 .testimonial-name span {\n    font-size: 20px;\n    line-height: 30px;\n  }\n  .testimonials-carousel-shortcode.testimonials-carousel-shortcode-id-2a8acb52d979749505d62911beef4949 .testimonial-position,\n  .testimonials-carousel-shortcode.testimonials-carousel-shortcode-id-2a8acb52d979749505d62911beef4949 .testimonial-position span {\n    font-size: 15px;\n    line-height: 25px;\n  }\n}\n\";s:32:\"2ee7f4eaab16eb6da314578ea9238b0c\";s:4706:\".icon-with-text-shortcode.icon-text-id-2ee7f4eaab16eb6da314578ea9238b0c .text-icon {\n  width: 32px;\n  height: 32px;\n  line-height: 32px;\n  font-size: 32px;\n  border-radius: 200px;\n  margin: 0px 10px 15px 0px;\n}\n.icon-with-text-shortcode.icon-text-id-2ee7f4eaab16eb6da314578ea9238b0c .text-icon .icon-inner {\n  min-width: 32px;\n  min-height: 32px;\n  border-radius: 200px;\n}\n@media all and (-ms-high-contrast: none) {\n  .icon-with-text-shortcode.icon-text-id-2ee7f4eaab16eb6da314578ea9238b0c .text-icon .icon-inner {\n    height: 32px;\n  }\n}\n.icon-with-text-shortcode.icon-text-id-2ee7f4eaab16eb6da314578ea9238b0c .text-icon .dt-hover-icon {\n  line-height: 32px;\n}\n.icon-with-text-shortcode.icon-text-id-2ee7f4eaab16eb6da314578ea9238b0c .text-icon:before,\n.icon-with-text-shortcode.icon-text-id-2ee7f4eaab16eb6da314578ea9238b0c .text-icon:after,\n.icon-with-text-shortcode.icon-text-id-2ee7f4eaab16eb6da314578ea9238b0c .text-icon .icon-inner:before,\n.icon-with-text-shortcode.icon-text-id-2ee7f4eaab16eb6da314578ea9238b0c .text-icon .icon-inner:after {\n  min-width: 100%;\n  min-height: 100%;\n  padding: inherit;\n  border-radius: inherit;\n}\n.icon-with-text-shortcode.icon-text-id-2ee7f4eaab16eb6da314578ea9238b0c .text-icon.dt-icon-border-on:before {\n  border-width: 0px;\n  border-style: solid;\n}\n.dt-icon-border-dashed.icon-with-text-shortcode.icon-text-id-2ee7f4eaab16eb6da314578ea9238b0c .text-icon.dt-icon-border-on:before {\n  border-style: dashed;\n}\n.dt-icon-border-dotted.icon-with-text-shortcode.icon-text-id-2ee7f4eaab16eb6da314578ea9238b0c .text-icon.dt-icon-border-on:before {\n  border-style: dotted;\n}\n.dt-icon-border-double.icon-with-text-shortcode.icon-text-id-2ee7f4eaab16eb6da314578ea9238b0c .text-icon.dt-icon-border-on:before {\n  border-style: double;\n}\n.icon-with-text-shortcode.icon-text-id-2ee7f4eaab16eb6da314578ea9238b0c .text-icon.dt-icon-border-dashed.dt-icon-border-on:before {\n  border-style: dashed;\n}\n.icon-with-text-shortcode.icon-text-id-2ee7f4eaab16eb6da314578ea9238b0c .text-icon.dt-icon-border-dotted.dt-icon-border-on:before {\n  border-style: dotted;\n}\n.icon-with-text-shortcode.icon-text-id-2ee7f4eaab16eb6da314578ea9238b0c .text-icon.dt-icon-border-double.dt-icon-border-on:before {\n  border-style: double;\n}\n.icon-with-text-shortcode.icon-text-id-2ee7f4eaab16eb6da314578ea9238b0c .text-icon.dt-icon-hover-border-on:after {\n  border-width: 0px;\n  border-style: solid;\n}\n.icon-with-text-shortcode.icon-text-id-2ee7f4eaab16eb6da314578ea9238b0c .text-icon.dt-icon-border-dashed.dt-icon-hover-border-on:after {\n  border-style: dashed;\n}\n.icon-with-text-shortcode.icon-text-id-2ee7f4eaab16eb6da314578ea9238b0c .text-icon.dt-icon-border-dotted.dt-icon-hover-border-on:after {\n  border-style: dotted;\n}\n.icon-with-text-shortcode.icon-text-id-2ee7f4eaab16eb6da314578ea9238b0c .text-icon.dt-icon-border-double.dt-icon-hover-border-on:after {\n  border-style: double;\n}\n.icon-with-text-shortcode.icon-text-id-2ee7f4eaab16eb6da314578ea9238b0c .text-icon.dt-icon-hover-on:hover {\n  font-size: 32px;\n}\n#page .icon-with-text-shortcode.icon-text-id-2ee7f4eaab16eb6da314578ea9238b0c .text-icon.dt-icon-hover-on:hover .soc-font-icon,\n#phantom .icon-with-text-shortcode.icon-text-id-2ee7f4eaab16eb6da314578ea9238b0c .text-icon.dt-icon-hover-on:hover .soc-font-icon,\n#page .icon-with-text-shortcode.icon-text-id-2ee7f4eaab16eb6da314578ea9238b0c .text-icon.dt-icon-hover-on:hover .soc-icon,\n#phantom .icon-with-text-shortcode.icon-text-id-2ee7f4eaab16eb6da314578ea9238b0c .text-icon.dt-icon-hover-on:hover .soc-icon {\n  color: #fff;\n  background: none;\n}\n.icon-with-text-shortcode.icon-text-id-2ee7f4eaab16eb6da314578ea9238b0c.layout-1 {\n  grid-template-columns: 32px minmax(0,1fr);\n  grid-column-gap: 10px;\n}\n.icon-with-text-shortcode.icon-text-id-2ee7f4eaab16eb6da314578ea9238b0c.layout-2 {\n  grid-template-columns: minmax(0,1fr) 32px;\n  grid-column-gap: 0px;\n}\n.icon-with-text-shortcode.icon-text-id-2ee7f4eaab16eb6da314578ea9238b0c.layout-2 .text-icon {\n  margin-left: 0;\n}\n.icon-with-text-shortcode.icon-text-id-2ee7f4eaab16eb6da314578ea9238b0c.layout-3 {\n  grid-template-columns: 32px minmax(0,1fr);\n}\n.icon-with-text-shortcode.icon-text-id-2ee7f4eaab16eb6da314578ea9238b0c.layout-3 .dt-text-title {\n  margin-left: 10px;\n}\n.icon-with-text-shortcode.icon-text-id-2ee7f4eaab16eb6da314578ea9238b0c .dt-text-title,\n.icon-with-text-shortcode.icon-text-id-2ee7f4eaab16eb6da314578ea9238b0c .dt-text-title a {\n  font-weight: bold;\n}\n.icon-with-text-shortcode.icon-text-id-2ee7f4eaab16eb6da314578ea9238b0c .dt-text-title {\n  margin-bottom: 0px;\n}\n.icon-with-text-shortcode.icon-text-id-2ee7f4eaab16eb6da314578ea9238b0c .dt-text-desc {\n  margin-bottom: 0px;\n  font-size: 17px;\n  line-height: 30px;\n}\n\";s:32:\"eb5c2a4a7de0d283cd23725b38d0fc49\";s:4706:\".icon-with-text-shortcode.icon-text-id-eb5c2a4a7de0d283cd23725b38d0fc49 .text-icon {\n  width: 32px;\n  height: 32px;\n  line-height: 32px;\n  font-size: 32px;\n  border-radius: 200px;\n  margin: 0px 10px 15px 0px;\n}\n.icon-with-text-shortcode.icon-text-id-eb5c2a4a7de0d283cd23725b38d0fc49 .text-icon .icon-inner {\n  min-width: 32px;\n  min-height: 32px;\n  border-radius: 200px;\n}\n@media all and (-ms-high-contrast: none) {\n  .icon-with-text-shortcode.icon-text-id-eb5c2a4a7de0d283cd23725b38d0fc49 .text-icon .icon-inner {\n    height: 32px;\n  }\n}\n.icon-with-text-shortcode.icon-text-id-eb5c2a4a7de0d283cd23725b38d0fc49 .text-icon .dt-hover-icon {\n  line-height: 32px;\n}\n.icon-with-text-shortcode.icon-text-id-eb5c2a4a7de0d283cd23725b38d0fc49 .text-icon:before,\n.icon-with-text-shortcode.icon-text-id-eb5c2a4a7de0d283cd23725b38d0fc49 .text-icon:after,\n.icon-with-text-shortcode.icon-text-id-eb5c2a4a7de0d283cd23725b38d0fc49 .text-icon .icon-inner:before,\n.icon-with-text-shortcode.icon-text-id-eb5c2a4a7de0d283cd23725b38d0fc49 .text-icon .icon-inner:after {\n  min-width: 100%;\n  min-height: 100%;\n  padding: inherit;\n  border-radius: inherit;\n}\n.icon-with-text-shortcode.icon-text-id-eb5c2a4a7de0d283cd23725b38d0fc49 .text-icon.dt-icon-border-on:before {\n  border-width: 0px;\n  border-style: solid;\n}\n.dt-icon-border-dashed.icon-with-text-shortcode.icon-text-id-eb5c2a4a7de0d283cd23725b38d0fc49 .text-icon.dt-icon-border-on:before {\n  border-style: dashed;\n}\n.dt-icon-border-dotted.icon-with-text-shortcode.icon-text-id-eb5c2a4a7de0d283cd23725b38d0fc49 .text-icon.dt-icon-border-on:before {\n  border-style: dotted;\n}\n.dt-icon-border-double.icon-with-text-shortcode.icon-text-id-eb5c2a4a7de0d283cd23725b38d0fc49 .text-icon.dt-icon-border-on:before {\n  border-style: double;\n}\n.icon-with-text-shortcode.icon-text-id-eb5c2a4a7de0d283cd23725b38d0fc49 .text-icon.dt-icon-border-dashed.dt-icon-border-on:before {\n  border-style: dashed;\n}\n.icon-with-text-shortcode.icon-text-id-eb5c2a4a7de0d283cd23725b38d0fc49 .text-icon.dt-icon-border-dotted.dt-icon-border-on:before {\n  border-style: dotted;\n}\n.icon-with-text-shortcode.icon-text-id-eb5c2a4a7de0d283cd23725b38d0fc49 .text-icon.dt-icon-border-double.dt-icon-border-on:before {\n  border-style: double;\n}\n.icon-with-text-shortcode.icon-text-id-eb5c2a4a7de0d283cd23725b38d0fc49 .text-icon.dt-icon-hover-border-on:after {\n  border-width: 0px;\n  border-style: solid;\n}\n.icon-with-text-shortcode.icon-text-id-eb5c2a4a7de0d283cd23725b38d0fc49 .text-icon.dt-icon-border-dashed.dt-icon-hover-border-on:after {\n  border-style: dashed;\n}\n.icon-with-text-shortcode.icon-text-id-eb5c2a4a7de0d283cd23725b38d0fc49 .text-icon.dt-icon-border-dotted.dt-icon-hover-border-on:after {\n  border-style: dotted;\n}\n.icon-with-text-shortcode.icon-text-id-eb5c2a4a7de0d283cd23725b38d0fc49 .text-icon.dt-icon-border-double.dt-icon-hover-border-on:after {\n  border-style: double;\n}\n.icon-with-text-shortcode.icon-text-id-eb5c2a4a7de0d283cd23725b38d0fc49 .text-icon.dt-icon-hover-on:hover {\n  font-size: 32px;\n}\n#page .icon-with-text-shortcode.icon-text-id-eb5c2a4a7de0d283cd23725b38d0fc49 .text-icon.dt-icon-hover-on:hover .soc-font-icon,\n#phantom .icon-with-text-shortcode.icon-text-id-eb5c2a4a7de0d283cd23725b38d0fc49 .text-icon.dt-icon-hover-on:hover .soc-font-icon,\n#page .icon-with-text-shortcode.icon-text-id-eb5c2a4a7de0d283cd23725b38d0fc49 .text-icon.dt-icon-hover-on:hover .soc-icon,\n#phantom .icon-with-text-shortcode.icon-text-id-eb5c2a4a7de0d283cd23725b38d0fc49 .text-icon.dt-icon-hover-on:hover .soc-icon {\n  color: #fff;\n  background: none;\n}\n.icon-with-text-shortcode.icon-text-id-eb5c2a4a7de0d283cd23725b38d0fc49.layout-1 {\n  grid-template-columns: 32px minmax(0,1fr);\n  grid-column-gap: 10px;\n}\n.icon-with-text-shortcode.icon-text-id-eb5c2a4a7de0d283cd23725b38d0fc49.layout-2 {\n  grid-template-columns: minmax(0,1fr) 32px;\n  grid-column-gap: 0px;\n}\n.icon-with-text-shortcode.icon-text-id-eb5c2a4a7de0d283cd23725b38d0fc49.layout-2 .text-icon {\n  margin-left: 0;\n}\n.icon-with-text-shortcode.icon-text-id-eb5c2a4a7de0d283cd23725b38d0fc49.layout-3 {\n  grid-template-columns: 32px minmax(0,1fr);\n}\n.icon-with-text-shortcode.icon-text-id-eb5c2a4a7de0d283cd23725b38d0fc49.layout-3 .dt-text-title {\n  margin-left: 10px;\n}\n.icon-with-text-shortcode.icon-text-id-eb5c2a4a7de0d283cd23725b38d0fc49 .dt-text-title,\n.icon-with-text-shortcode.icon-text-id-eb5c2a4a7de0d283cd23725b38d0fc49 .dt-text-title a {\n  font-weight: bold;\n}\n.icon-with-text-shortcode.icon-text-id-eb5c2a4a7de0d283cd23725b38d0fc49 .dt-text-title {\n  margin-bottom: 0px;\n}\n.icon-with-text-shortcode.icon-text-id-eb5c2a4a7de0d283cd23725b38d0fc49 .dt-text-desc {\n  margin-bottom: 0px;\n  font-size: 17px;\n  line-height: 30px;\n}\n\";s:32:\"c742cfaf563a3e3e21c55e3a79dea7f5\";s:4706:\".icon-with-text-shortcode.icon-text-id-c742cfaf563a3e3e21c55e3a79dea7f5 .text-icon {\n  width: 32px;\n  height: 32px;\n  line-height: 32px;\n  font-size: 32px;\n  border-radius: 200px;\n  margin: 0px 10px 15px 0px;\n}\n.icon-with-text-shortcode.icon-text-id-c742cfaf563a3e3e21c55e3a79dea7f5 .text-icon .icon-inner {\n  min-width: 32px;\n  min-height: 32px;\n  border-radius: 200px;\n}\n@media all and (-ms-high-contrast: none) {\n  .icon-with-text-shortcode.icon-text-id-c742cfaf563a3e3e21c55e3a79dea7f5 .text-icon .icon-inner {\n    height: 32px;\n  }\n}\n.icon-with-text-shortcode.icon-text-id-c742cfaf563a3e3e21c55e3a79dea7f5 .text-icon .dt-hover-icon {\n  line-height: 32px;\n}\n.icon-with-text-shortcode.icon-text-id-c742cfaf563a3e3e21c55e3a79dea7f5 .text-icon:before,\n.icon-with-text-shortcode.icon-text-id-c742cfaf563a3e3e21c55e3a79dea7f5 .text-icon:after,\n.icon-with-text-shortcode.icon-text-id-c742cfaf563a3e3e21c55e3a79dea7f5 .text-icon .icon-inner:before,\n.icon-with-text-shortcode.icon-text-id-c742cfaf563a3e3e21c55e3a79dea7f5 .text-icon .icon-inner:after {\n  min-width: 100%;\n  min-height: 100%;\n  padding: inherit;\n  border-radius: inherit;\n}\n.icon-with-text-shortcode.icon-text-id-c742cfaf563a3e3e21c55e3a79dea7f5 .text-icon.dt-icon-border-on:before {\n  border-width: 0px;\n  border-style: solid;\n}\n.dt-icon-border-dashed.icon-with-text-shortcode.icon-text-id-c742cfaf563a3e3e21c55e3a79dea7f5 .text-icon.dt-icon-border-on:before {\n  border-style: dashed;\n}\n.dt-icon-border-dotted.icon-with-text-shortcode.icon-text-id-c742cfaf563a3e3e21c55e3a79dea7f5 .text-icon.dt-icon-border-on:before {\n  border-style: dotted;\n}\n.dt-icon-border-double.icon-with-text-shortcode.icon-text-id-c742cfaf563a3e3e21c55e3a79dea7f5 .text-icon.dt-icon-border-on:before {\n  border-style: double;\n}\n.icon-with-text-shortcode.icon-text-id-c742cfaf563a3e3e21c55e3a79dea7f5 .text-icon.dt-icon-border-dashed.dt-icon-border-on:before {\n  border-style: dashed;\n}\n.icon-with-text-shortcode.icon-text-id-c742cfaf563a3e3e21c55e3a79dea7f5 .text-icon.dt-icon-border-dotted.dt-icon-border-on:before {\n  border-style: dotted;\n}\n.icon-with-text-shortcode.icon-text-id-c742cfaf563a3e3e21c55e3a79dea7f5 .text-icon.dt-icon-border-double.dt-icon-border-on:before {\n  border-style: double;\n}\n.icon-with-text-shortcode.icon-text-id-c742cfaf563a3e3e21c55e3a79dea7f5 .text-icon.dt-icon-hover-border-on:after {\n  border-width: 0px;\n  border-style: solid;\n}\n.icon-with-text-shortcode.icon-text-id-c742cfaf563a3e3e21c55e3a79dea7f5 .text-icon.dt-icon-border-dashed.dt-icon-hover-border-on:after {\n  border-style: dashed;\n}\n.icon-with-text-shortcode.icon-text-id-c742cfaf563a3e3e21c55e3a79dea7f5 .text-icon.dt-icon-border-dotted.dt-icon-hover-border-on:after {\n  border-style: dotted;\n}\n.icon-with-text-shortcode.icon-text-id-c742cfaf563a3e3e21c55e3a79dea7f5 .text-icon.dt-icon-border-double.dt-icon-hover-border-on:after {\n  border-style: double;\n}\n.icon-with-text-shortcode.icon-text-id-c742cfaf563a3e3e21c55e3a79dea7f5 .text-icon.dt-icon-hover-on:hover {\n  font-size: 32px;\n}\n#page .icon-with-text-shortcode.icon-text-id-c742cfaf563a3e3e21c55e3a79dea7f5 .text-icon.dt-icon-hover-on:hover .soc-font-icon,\n#phantom .icon-with-text-shortcode.icon-text-id-c742cfaf563a3e3e21c55e3a79dea7f5 .text-icon.dt-icon-hover-on:hover .soc-font-icon,\n#page .icon-with-text-shortcode.icon-text-id-c742cfaf563a3e3e21c55e3a79dea7f5 .text-icon.dt-icon-hover-on:hover .soc-icon,\n#phantom .icon-with-text-shortcode.icon-text-id-c742cfaf563a3e3e21c55e3a79dea7f5 .text-icon.dt-icon-hover-on:hover .soc-icon {\n  color: #fff;\n  background: none;\n}\n.icon-with-text-shortcode.icon-text-id-c742cfaf563a3e3e21c55e3a79dea7f5.layout-1 {\n  grid-template-columns: 32px minmax(0,1fr);\n  grid-column-gap: 10px;\n}\n.icon-with-text-shortcode.icon-text-id-c742cfaf563a3e3e21c55e3a79dea7f5.layout-2 {\n  grid-template-columns: minmax(0,1fr) 32px;\n  grid-column-gap: 0px;\n}\n.icon-with-text-shortcode.icon-text-id-c742cfaf563a3e3e21c55e3a79dea7f5.layout-2 .text-icon {\n  margin-left: 0;\n}\n.icon-with-text-shortcode.icon-text-id-c742cfaf563a3e3e21c55e3a79dea7f5.layout-3 {\n  grid-template-columns: 32px minmax(0,1fr);\n}\n.icon-with-text-shortcode.icon-text-id-c742cfaf563a3e3e21c55e3a79dea7f5.layout-3 .dt-text-title {\n  margin-left: 10px;\n}\n.icon-with-text-shortcode.icon-text-id-c742cfaf563a3e3e21c55e3a79dea7f5 .dt-text-title,\n.icon-with-text-shortcode.icon-text-id-c742cfaf563a3e3e21c55e3a79dea7f5 .dt-text-title a {\n  font-weight: bold;\n}\n.icon-with-text-shortcode.icon-text-id-c742cfaf563a3e3e21c55e3a79dea7f5 .dt-text-title {\n  margin-bottom: 0px;\n}\n.icon-with-text-shortcode.icon-text-id-c742cfaf563a3e3e21c55e3a79dea7f5 .dt-text-desc {\n  margin-bottom: 0px;\n  font-size: 17px;\n  line-height: 30px;\n}\n\";s:32:\"e0810af96481ed4fcdbd714342e29d90\";s:4706:\".icon-with-text-shortcode.icon-text-id-e0810af96481ed4fcdbd714342e29d90 .text-icon {\n  width: 32px;\n  height: 32px;\n  line-height: 32px;\n  font-size: 32px;\n  border-radius: 200px;\n  margin: 0px 10px 15px 0px;\n}\n.icon-with-text-shortcode.icon-text-id-e0810af96481ed4fcdbd714342e29d90 .text-icon .icon-inner {\n  min-width: 32px;\n  min-height: 32px;\n  border-radius: 200px;\n}\n@media all and (-ms-high-contrast: none) {\n  .icon-with-text-shortcode.icon-text-id-e0810af96481ed4fcdbd714342e29d90 .text-icon .icon-inner {\n    height: 32px;\n  }\n}\n.icon-with-text-shortcode.icon-text-id-e0810af96481ed4fcdbd714342e29d90 .text-icon .dt-hover-icon {\n  line-height: 32px;\n}\n.icon-with-text-shortcode.icon-text-id-e0810af96481ed4fcdbd714342e29d90 .text-icon:before,\n.icon-with-text-shortcode.icon-text-id-e0810af96481ed4fcdbd714342e29d90 .text-icon:after,\n.icon-with-text-shortcode.icon-text-id-e0810af96481ed4fcdbd714342e29d90 .text-icon .icon-inner:before,\n.icon-with-text-shortcode.icon-text-id-e0810af96481ed4fcdbd714342e29d90 .text-icon .icon-inner:after {\n  min-width: 100%;\n  min-height: 100%;\n  padding: inherit;\n  border-radius: inherit;\n}\n.icon-with-text-shortcode.icon-text-id-e0810af96481ed4fcdbd714342e29d90 .text-icon.dt-icon-border-on:before {\n  border-width: 0px;\n  border-style: solid;\n}\n.dt-icon-border-dashed.icon-with-text-shortcode.icon-text-id-e0810af96481ed4fcdbd714342e29d90 .text-icon.dt-icon-border-on:before {\n  border-style: dashed;\n}\n.dt-icon-border-dotted.icon-with-text-shortcode.icon-text-id-e0810af96481ed4fcdbd714342e29d90 .text-icon.dt-icon-border-on:before {\n  border-style: dotted;\n}\n.dt-icon-border-double.icon-with-text-shortcode.icon-text-id-e0810af96481ed4fcdbd714342e29d90 .text-icon.dt-icon-border-on:before {\n  border-style: double;\n}\n.icon-with-text-shortcode.icon-text-id-e0810af96481ed4fcdbd714342e29d90 .text-icon.dt-icon-border-dashed.dt-icon-border-on:before {\n  border-style: dashed;\n}\n.icon-with-text-shortcode.icon-text-id-e0810af96481ed4fcdbd714342e29d90 .text-icon.dt-icon-border-dotted.dt-icon-border-on:before {\n  border-style: dotted;\n}\n.icon-with-text-shortcode.icon-text-id-e0810af96481ed4fcdbd714342e29d90 .text-icon.dt-icon-border-double.dt-icon-border-on:before {\n  border-style: double;\n}\n.icon-with-text-shortcode.icon-text-id-e0810af96481ed4fcdbd714342e29d90 .text-icon.dt-icon-hover-border-on:after {\n  border-width: 0px;\n  border-style: solid;\n}\n.icon-with-text-shortcode.icon-text-id-e0810af96481ed4fcdbd714342e29d90 .text-icon.dt-icon-border-dashed.dt-icon-hover-border-on:after {\n  border-style: dashed;\n}\n.icon-with-text-shortcode.icon-text-id-e0810af96481ed4fcdbd714342e29d90 .text-icon.dt-icon-border-dotted.dt-icon-hover-border-on:after {\n  border-style: dotted;\n}\n.icon-with-text-shortcode.icon-text-id-e0810af96481ed4fcdbd714342e29d90 .text-icon.dt-icon-border-double.dt-icon-hover-border-on:after {\n  border-style: double;\n}\n.icon-with-text-shortcode.icon-text-id-e0810af96481ed4fcdbd714342e29d90 .text-icon.dt-icon-hover-on:hover {\n  font-size: 32px;\n}\n#page .icon-with-text-shortcode.icon-text-id-e0810af96481ed4fcdbd714342e29d90 .text-icon.dt-icon-hover-on:hover .soc-font-icon,\n#phantom .icon-with-text-shortcode.icon-text-id-e0810af96481ed4fcdbd714342e29d90 .text-icon.dt-icon-hover-on:hover .soc-font-icon,\n#page .icon-with-text-shortcode.icon-text-id-e0810af96481ed4fcdbd714342e29d90 .text-icon.dt-icon-hover-on:hover .soc-icon,\n#phantom .icon-with-text-shortcode.icon-text-id-e0810af96481ed4fcdbd714342e29d90 .text-icon.dt-icon-hover-on:hover .soc-icon {\n  color: #fff;\n  background: none;\n}\n.icon-with-text-shortcode.icon-text-id-e0810af96481ed4fcdbd714342e29d90.layout-1 {\n  grid-template-columns: 32px minmax(0,1fr);\n  grid-column-gap: 10px;\n}\n.icon-with-text-shortcode.icon-text-id-e0810af96481ed4fcdbd714342e29d90.layout-2 {\n  grid-template-columns: minmax(0,1fr) 32px;\n  grid-column-gap: 0px;\n}\n.icon-with-text-shortcode.icon-text-id-e0810af96481ed4fcdbd714342e29d90.layout-2 .text-icon {\n  margin-left: 0;\n}\n.icon-with-text-shortcode.icon-text-id-e0810af96481ed4fcdbd714342e29d90.layout-3 {\n  grid-template-columns: 32px minmax(0,1fr);\n}\n.icon-with-text-shortcode.icon-text-id-e0810af96481ed4fcdbd714342e29d90.layout-3 .dt-text-title {\n  margin-left: 10px;\n}\n.icon-with-text-shortcode.icon-text-id-e0810af96481ed4fcdbd714342e29d90 .dt-text-title,\n.icon-with-text-shortcode.icon-text-id-e0810af96481ed4fcdbd714342e29d90 .dt-text-title a {\n  font-weight: bold;\n}\n.icon-with-text-shortcode.icon-text-id-e0810af96481ed4fcdbd714342e29d90 .dt-text-title {\n  margin-bottom: 0px;\n}\n.icon-with-text-shortcode.icon-text-id-e0810af96481ed4fcdbd714342e29d90 .dt-text-desc {\n  margin-bottom: 0px;\n  font-size: 17px;\n  line-height: 30px;\n}\n\";s:32:\"0ebb9c67cd1ec9ffe453d424222b3117\";s:4706:\".icon-with-text-shortcode.icon-text-id-0ebb9c67cd1ec9ffe453d424222b3117 .text-icon {\n  width: 32px;\n  height: 32px;\n  line-height: 32px;\n  font-size: 32px;\n  border-radius: 200px;\n  margin: 0px 10px 15px 0px;\n}\n.icon-with-text-shortcode.icon-text-id-0ebb9c67cd1ec9ffe453d424222b3117 .text-icon .icon-inner {\n  min-width: 32px;\n  min-height: 32px;\n  border-radius: 200px;\n}\n@media all and (-ms-high-contrast: none) {\n  .icon-with-text-shortcode.icon-text-id-0ebb9c67cd1ec9ffe453d424222b3117 .text-icon .icon-inner {\n    height: 32px;\n  }\n}\n.icon-with-text-shortcode.icon-text-id-0ebb9c67cd1ec9ffe453d424222b3117 .text-icon .dt-hover-icon {\n  line-height: 32px;\n}\n.icon-with-text-shortcode.icon-text-id-0ebb9c67cd1ec9ffe453d424222b3117 .text-icon:before,\n.icon-with-text-shortcode.icon-text-id-0ebb9c67cd1ec9ffe453d424222b3117 .text-icon:after,\n.icon-with-text-shortcode.icon-text-id-0ebb9c67cd1ec9ffe453d424222b3117 .text-icon .icon-inner:before,\n.icon-with-text-shortcode.icon-text-id-0ebb9c67cd1ec9ffe453d424222b3117 .text-icon .icon-inner:after {\n  min-width: 100%;\n  min-height: 100%;\n  padding: inherit;\n  border-radius: inherit;\n}\n.icon-with-text-shortcode.icon-text-id-0ebb9c67cd1ec9ffe453d424222b3117 .text-icon.dt-icon-border-on:before {\n  border-width: 0px;\n  border-style: solid;\n}\n.dt-icon-border-dashed.icon-with-text-shortcode.icon-text-id-0ebb9c67cd1ec9ffe453d424222b3117 .text-icon.dt-icon-border-on:before {\n  border-style: dashed;\n}\n.dt-icon-border-dotted.icon-with-text-shortcode.icon-text-id-0ebb9c67cd1ec9ffe453d424222b3117 .text-icon.dt-icon-border-on:before {\n  border-style: dotted;\n}\n.dt-icon-border-double.icon-with-text-shortcode.icon-text-id-0ebb9c67cd1ec9ffe453d424222b3117 .text-icon.dt-icon-border-on:before {\n  border-style: double;\n}\n.icon-with-text-shortcode.icon-text-id-0ebb9c67cd1ec9ffe453d424222b3117 .text-icon.dt-icon-border-dashed.dt-icon-border-on:before {\n  border-style: dashed;\n}\n.icon-with-text-shortcode.icon-text-id-0ebb9c67cd1ec9ffe453d424222b3117 .text-icon.dt-icon-border-dotted.dt-icon-border-on:before {\n  border-style: dotted;\n}\n.icon-with-text-shortcode.icon-text-id-0ebb9c67cd1ec9ffe453d424222b3117 .text-icon.dt-icon-border-double.dt-icon-border-on:before {\n  border-style: double;\n}\n.icon-with-text-shortcode.icon-text-id-0ebb9c67cd1ec9ffe453d424222b3117 .text-icon.dt-icon-hover-border-on:after {\n  border-width: 0px;\n  border-style: solid;\n}\n.icon-with-text-shortcode.icon-text-id-0ebb9c67cd1ec9ffe453d424222b3117 .text-icon.dt-icon-border-dashed.dt-icon-hover-border-on:after {\n  border-style: dashed;\n}\n.icon-with-text-shortcode.icon-text-id-0ebb9c67cd1ec9ffe453d424222b3117 .text-icon.dt-icon-border-dotted.dt-icon-hover-border-on:after {\n  border-style: dotted;\n}\n.icon-with-text-shortcode.icon-text-id-0ebb9c67cd1ec9ffe453d424222b3117 .text-icon.dt-icon-border-double.dt-icon-hover-border-on:after {\n  border-style: double;\n}\n.icon-with-text-shortcode.icon-text-id-0ebb9c67cd1ec9ffe453d424222b3117 .text-icon.dt-icon-hover-on:hover {\n  font-size: 32px;\n}\n#page .icon-with-text-shortcode.icon-text-id-0ebb9c67cd1ec9ffe453d424222b3117 .text-icon.dt-icon-hover-on:hover .soc-font-icon,\n#phantom .icon-with-text-shortcode.icon-text-id-0ebb9c67cd1ec9ffe453d424222b3117 .text-icon.dt-icon-hover-on:hover .soc-font-icon,\n#page .icon-with-text-shortcode.icon-text-id-0ebb9c67cd1ec9ffe453d424222b3117 .text-icon.dt-icon-hover-on:hover .soc-icon,\n#phantom .icon-with-text-shortcode.icon-text-id-0ebb9c67cd1ec9ffe453d424222b3117 .text-icon.dt-icon-hover-on:hover .soc-icon {\n  color: #fff;\n  background: none;\n}\n.icon-with-text-shortcode.icon-text-id-0ebb9c67cd1ec9ffe453d424222b3117.layout-1 {\n  grid-template-columns: 32px minmax(0,1fr);\n  grid-column-gap: 10px;\n}\n.icon-with-text-shortcode.icon-text-id-0ebb9c67cd1ec9ffe453d424222b3117.layout-2 {\n  grid-template-columns: minmax(0,1fr) 32px;\n  grid-column-gap: 0px;\n}\n.icon-with-text-shortcode.icon-text-id-0ebb9c67cd1ec9ffe453d424222b3117.layout-2 .text-icon {\n  margin-left: 0;\n}\n.icon-with-text-shortcode.icon-text-id-0ebb9c67cd1ec9ffe453d424222b3117.layout-3 {\n  grid-template-columns: 32px minmax(0,1fr);\n}\n.icon-with-text-shortcode.icon-text-id-0ebb9c67cd1ec9ffe453d424222b3117.layout-3 .dt-text-title {\n  margin-left: 10px;\n}\n.icon-with-text-shortcode.icon-text-id-0ebb9c67cd1ec9ffe453d424222b3117 .dt-text-title,\n.icon-with-text-shortcode.icon-text-id-0ebb9c67cd1ec9ffe453d424222b3117 .dt-text-title a {\n  font-weight: bold;\n}\n.icon-with-text-shortcode.icon-text-id-0ebb9c67cd1ec9ffe453d424222b3117 .dt-text-title {\n  margin-bottom: 0px;\n}\n.icon-with-text-shortcode.icon-text-id-0ebb9c67cd1ec9ffe453d424222b3117 .dt-text-desc {\n  margin-bottom: 0px;\n  font-size: 17px;\n  line-height: 30px;\n}\n\";s:32:\"3a6345178d787fe9b4bc1fc65e65f2b2\";s:4706:\".icon-with-text-shortcode.icon-text-id-3a6345178d787fe9b4bc1fc65e65f2b2 .text-icon {\n  width: 32px;\n  height: 32px;\n  line-height: 32px;\n  font-size: 32px;\n  border-radius: 200px;\n  margin: 0px 10px 15px 0px;\n}\n.icon-with-text-shortcode.icon-text-id-3a6345178d787fe9b4bc1fc65e65f2b2 .text-icon .icon-inner {\n  min-width: 32px;\n  min-height: 32px;\n  border-radius: 200px;\n}\n@media all and (-ms-high-contrast: none) {\n  .icon-with-text-shortcode.icon-text-id-3a6345178d787fe9b4bc1fc65e65f2b2 .text-icon .icon-inner {\n    height: 32px;\n  }\n}\n.icon-with-text-shortcode.icon-text-id-3a6345178d787fe9b4bc1fc65e65f2b2 .text-icon .dt-hover-icon {\n  line-height: 32px;\n}\n.icon-with-text-shortcode.icon-text-id-3a6345178d787fe9b4bc1fc65e65f2b2 .text-icon:before,\n.icon-with-text-shortcode.icon-text-id-3a6345178d787fe9b4bc1fc65e65f2b2 .text-icon:after,\n.icon-with-text-shortcode.icon-text-id-3a6345178d787fe9b4bc1fc65e65f2b2 .text-icon .icon-inner:before,\n.icon-with-text-shortcode.icon-text-id-3a6345178d787fe9b4bc1fc65e65f2b2 .text-icon .icon-inner:after {\n  min-width: 100%;\n  min-height: 100%;\n  padding: inherit;\n  border-radius: inherit;\n}\n.icon-with-text-shortcode.icon-text-id-3a6345178d787fe9b4bc1fc65e65f2b2 .text-icon.dt-icon-border-on:before {\n  border-width: 0px;\n  border-style: solid;\n}\n.dt-icon-border-dashed.icon-with-text-shortcode.icon-text-id-3a6345178d787fe9b4bc1fc65e65f2b2 .text-icon.dt-icon-border-on:before {\n  border-style: dashed;\n}\n.dt-icon-border-dotted.icon-with-text-shortcode.icon-text-id-3a6345178d787fe9b4bc1fc65e65f2b2 .text-icon.dt-icon-border-on:before {\n  border-style: dotted;\n}\n.dt-icon-border-double.icon-with-text-shortcode.icon-text-id-3a6345178d787fe9b4bc1fc65e65f2b2 .text-icon.dt-icon-border-on:before {\n  border-style: double;\n}\n.icon-with-text-shortcode.icon-text-id-3a6345178d787fe9b4bc1fc65e65f2b2 .text-icon.dt-icon-border-dashed.dt-icon-border-on:before {\n  border-style: dashed;\n}\n.icon-with-text-shortcode.icon-text-id-3a6345178d787fe9b4bc1fc65e65f2b2 .text-icon.dt-icon-border-dotted.dt-icon-border-on:before {\n  border-style: dotted;\n}\n.icon-with-text-shortcode.icon-text-id-3a6345178d787fe9b4bc1fc65e65f2b2 .text-icon.dt-icon-border-double.dt-icon-border-on:before {\n  border-style: double;\n}\n.icon-with-text-shortcode.icon-text-id-3a6345178d787fe9b4bc1fc65e65f2b2 .text-icon.dt-icon-hover-border-on:after {\n  border-width: 0px;\n  border-style: solid;\n}\n.icon-with-text-shortcode.icon-text-id-3a6345178d787fe9b4bc1fc65e65f2b2 .text-icon.dt-icon-border-dashed.dt-icon-hover-border-on:after {\n  border-style: dashed;\n}\n.icon-with-text-shortcode.icon-text-id-3a6345178d787fe9b4bc1fc65e65f2b2 .text-icon.dt-icon-border-dotted.dt-icon-hover-border-on:after {\n  border-style: dotted;\n}\n.icon-with-text-shortcode.icon-text-id-3a6345178d787fe9b4bc1fc65e65f2b2 .text-icon.dt-icon-border-double.dt-icon-hover-border-on:after {\n  border-style: double;\n}\n.icon-with-text-shortcode.icon-text-id-3a6345178d787fe9b4bc1fc65e65f2b2 .text-icon.dt-icon-hover-on:hover {\n  font-size: 32px;\n}\n#page .icon-with-text-shortcode.icon-text-id-3a6345178d787fe9b4bc1fc65e65f2b2 .text-icon.dt-icon-hover-on:hover .soc-font-icon,\n#phantom .icon-with-text-shortcode.icon-text-id-3a6345178d787fe9b4bc1fc65e65f2b2 .text-icon.dt-icon-hover-on:hover .soc-font-icon,\n#page .icon-with-text-shortcode.icon-text-id-3a6345178d787fe9b4bc1fc65e65f2b2 .text-icon.dt-icon-hover-on:hover .soc-icon,\n#phantom .icon-with-text-shortcode.icon-text-id-3a6345178d787fe9b4bc1fc65e65f2b2 .text-icon.dt-icon-hover-on:hover .soc-icon {\n  color: #fff;\n  background: none;\n}\n.icon-with-text-shortcode.icon-text-id-3a6345178d787fe9b4bc1fc65e65f2b2.layout-1 {\n  grid-template-columns: 32px minmax(0,1fr);\n  grid-column-gap: 10px;\n}\n.icon-with-text-shortcode.icon-text-id-3a6345178d787fe9b4bc1fc65e65f2b2.layout-2 {\n  grid-template-columns: minmax(0,1fr) 32px;\n  grid-column-gap: 0px;\n}\n.icon-with-text-shortcode.icon-text-id-3a6345178d787fe9b4bc1fc65e65f2b2.layout-2 .text-icon {\n  margin-left: 0;\n}\n.icon-with-text-shortcode.icon-text-id-3a6345178d787fe9b4bc1fc65e65f2b2.layout-3 {\n  grid-template-columns: 32px minmax(0,1fr);\n}\n.icon-with-text-shortcode.icon-text-id-3a6345178d787fe9b4bc1fc65e65f2b2.layout-3 .dt-text-title {\n  margin-left: 10px;\n}\n.icon-with-text-shortcode.icon-text-id-3a6345178d787fe9b4bc1fc65e65f2b2 .dt-text-title,\n.icon-with-text-shortcode.icon-text-id-3a6345178d787fe9b4bc1fc65e65f2b2 .dt-text-title a {\n  font-weight: bold;\n}\n.icon-with-text-shortcode.icon-text-id-3a6345178d787fe9b4bc1fc65e65f2b2 .dt-text-title {\n  margin-bottom: 0px;\n}\n.icon-with-text-shortcode.icon-text-id-3a6345178d787fe9b4bc1fc65e65f2b2 .dt-text-desc {\n  margin-bottom: 0px;\n  font-size: 17px;\n  line-height: 30px;\n}\n\";s:32:\"2f71dd7179664b76e531104ab0a6c5e4\";s:1186:\"#default-btn-2f71dd7179664b76e531104ab0a6c5e4 {\n  border-radius: 0px;\n  font-size: 14px;\n  line-height: 16px;\n}\n.btn-shadow#default-btn-2f71dd7179664b76e531104ab0a6c5e4 {\n  box-shadow: 0 1px 6px rgba(0,0,0,0.12);\n  transition: box-shadow 0.2s ease-out, opacity 0.45s;\n}\n.btn-shadow#default-btn-2f71dd7179664b76e531104ab0a6c5e4:hover {\n  box-shadow: 0 5px 11px 0 rgba(0,0,0,0.18), 0 4px 15px 0 rgba(0,0,0,0.15);\n}\n.btn-flat#default-btn-2f71dd7179664b76e531104ab0a6c5e4 {\n  box-shadow: none;\n}\n.btn-flat#default-btn-2f71dd7179664b76e531104ab0a6c5e4:hover {\n  box-shadow: none;\n}\n#default-btn-2f71dd7179664b76e531104ab0a6c5e4.ico-right-side > i {\n  margin-right: 0px;\n  margin-left: 8px;\n}\n#default-btn-2f71dd7179664b76e531104ab0a6c5e4 > i {\n  margin-right: 8px;\n  font-size: 16px;\n}\n#default-btn-2f71dd7179664b76e531104ab0a6c5e4:not(:hover) {\n  border-width: 0px;\n  padding: 9px 14px 9px 14px;\n}\n#default-btn-2f71dd7179664b76e531104ab0a6c5e4:hover {\n  border-width: 0px;\n  padding: 9px 14px 9px 14px;\n}\n#default-btn-2f71dd7179664b76e531104ab0a6c5e4.ico-right-side > i {\n  margin-right: 0px;\n  margin-left: 8px;\n}\n#default-btn-2f71dd7179664b76e531104ab0a6c5e4 > i {\n  margin-right: 8px;\n}\n\";s:32:\"f2feeb6b9532b9dd707769ebd79455cc\";s:7881:\".dt-testimonials-shortcode.testimonials-masonry-shortcode-id-f2feeb6b9532b9dd707769ebd79455cc .testimonial-item {\n  padding: 0px 0px 0px 0px;\n}\n.dt-testimonials-shortcode.testimonials-masonry-shortcode-id-f2feeb6b9532b9dd707769ebd79455cc .testimonial-name,\n.dt-testimonials-shortcode.testimonials-masonry-shortcode-id-f2feeb6b9532b9dd707769ebd79455cc .testimonial-name a,\n.dt-testimonials-shortcode.testimonials-masonry-shortcode-id-f2feeb6b9532b9dd707769ebd79455cc .testimonial-name span {\n  color: #ffffff;\n  background: none;\n  margin-bottom: 0px;\n  font-size: 22px;\n  line-height: 30px;\n  font-weight: bold;\n}\n.dt-testimonials-shortcode.testimonials-masonry-shortcode-id-f2feeb6b9532b9dd707769ebd79455cc .testimonial-position {\n  margin-bottom: 20px;\n}\n.dt-testimonials-shortcode.testimonials-masonry-shortcode-id-f2feeb6b9532b9dd707769ebd79455cc .testimonial-position,\n.dt-testimonials-shortcode.testimonials-masonry-shortcode-id-f2feeb6b9532b9dd707769ebd79455cc .testimonial-position span {\n  font-size: 17px;\n  line-height: 28px;\n  font-weight: bold;\n}\n.dt-testimonials-shortcode.testimonials-masonry-shortcode-id-f2feeb6b9532b9dd707769ebd79455cc  .testimonial-avatar {\n  padding: 0px 0px 20px 0px;\n}\n.dt-testimonials-shortcode.testimonials-masonry-shortcode-id-f2feeb6b9532b9dd707769ebd79455cc  .testimonial-avatar a,\n.dt-testimonials-shortcode.testimonials-masonry-shortcode-id-f2feeb6b9532b9dd707769ebd79455cc  .testimonial-avatar span,\n.dt-testimonials-shortcode.testimonials-masonry-shortcode-id-f2feeb6b9532b9dd707769ebd79455cc  .testimonial-avatar img {\n  max-width: 90px;\n}\n.dt-testimonials-shortcode.testimonials-masonry-shortcode-id-f2feeb6b9532b9dd707769ebd79455cc .dt-css-grid .testimonial-avatar img,\n.dt-testimonials-shortcode.testimonials-masonry-shortcode-id-f2feeb6b9532b9dd707769ebd79455cc .dt-css-grid .testimonial-avatar svg {\n  max-width: 100%;\n}\n.dt-testimonials-shortcode.testimonials-masonry-shortcode-id-f2feeb6b9532b9dd707769ebd79455cc.layout-5:not(.hide-testimonial-avatar) .content-wrap,\n.dt-testimonials-shortcode.testimonials-masonry-shortcode-id-f2feeb6b9532b9dd707769ebd79455cc.layout-6:not(.hide-testimonial-avatar) .content-wrap {\n  width: calc(100% - 90px - 0px - 0px);\n}\n.dt-testimonials-shortcode.testimonials-masonry-shortcode-id-f2feeb6b9532b9dd707769ebd79455cc .testimonial-content {\n  margin-bottom: 0px;\n}\n.dt-testimonials-shortcode.testimonials-masonry-shortcode-id-f2feeb6b9532b9dd707769ebd79455cc  .testimonial-avatar,\n.dt-testimonials-shortcode.testimonials-masonry-shortcode-id-f2feeb6b9532b9dd707769ebd79455cc  .testimonial-avatar a.rollover,\n.dt-testimonials-shortcode.testimonials-masonry-shortcode-id-f2feeb6b9532b9dd707769ebd79455cc  .testimonial-avatar a.rollover *,\n.dt-testimonials-shortcode.testimonials-masonry-shortcode-id-f2feeb6b9532b9dd707769ebd79455cc  .testimonial-avatar img,\n.dt-testimonials-shortcode.testimonials-masonry-shortcode-id-f2feeb6b9532b9dd707769ebd79455cc  .testimonial-avatar .no-avatar,\n.dt-testimonials-shortcode.testimonials-masonry-shortcode-id-f2feeb6b9532b9dd707769ebd79455cc  .testim-no-avatar {\n  border-radius: 60px;\n}\n.dt-testimonials-shortcode.testimonials-masonry-shortcode-id-f2feeb6b9532b9dd707769ebd79455cc  .testimonial-avatar .no-avatar {\n  height: 90px;\n  border-color: rgba(255,255,255,0.15);\n}\n.dt-testimonials-shortcode.testimonials-masonry-shortcode-id-f2feeb6b9532b9dd707769ebd79455cc  .testimonial-avatar .no-avatar:after {\n  color: rgba(255,255,255,0.15);\n}\n.dt-testimonials-shortcode.testimonials-masonry-shortcode-id-f2feeb6b9532b9dd707769ebd79455cc  .testim-no-avatar {\n  border-color: rgba(255,255,255,0.15);\n}\n.dt-testimonials-shortcode.testimonials-masonry-shortcode-id-f2feeb6b9532b9dd707769ebd79455cc  .testim-no-avatar svg {\n  fill: rgba(255,255,255,0.15);\n}\n.dt-testimonials-shortcode.testimonials-masonry-shortcode-id-f2feeb6b9532b9dd707769ebd79455cc  .testimonial-avatar .no-avatar {\n  font-size: 90px;\n  width: 90px;\n}\n.dt-testimonials-shortcode.testimonials-masonry-shortcode-id-f2feeb6b9532b9dd707769ebd79455cc .filter-bg-decoration .filter-categories a.act {\n  color: #fff;\n}\n.dt-testimonials-shortcode.testimonials-masonry-shortcode-id-f2feeb6b9532b9dd707769ebd79455cc:not(.resize-by-browser-width) .dt-css-grid {\n  grid-row-gap: 50px;\n  grid-column-gap: 50px;\n  grid-template-columns: repeat(auto-fill,minmax(,1fr));\n}\n.cssgridlegacy.no-cssgrid .dt-testimonials-shortcode.testimonials-masonry-shortcode-id-f2feeb6b9532b9dd707769ebd79455cc:not(.resize-by-browser-width) .dt-css-grid,\n.no-cssgridlegacy.no-cssgrid .dt-testimonials-shortcode.testimonials-masonry-shortcode-id-f2feeb6b9532b9dd707769ebd79455cc:not(.resize-by-browser-width) .dt-css-grid {\n  display: flex;\n  flex-flow: row wrap;\n  margin: -25px;\n}\n.cssgridlegacy.no-cssgrid .dt-testimonials-shortcode.testimonials-masonry-shortcode-id-f2feeb6b9532b9dd707769ebd79455cc:not(.resize-by-browser-width) .dt-css-grid .wf-cell,\n.no-cssgridlegacy.no-cssgrid .dt-testimonials-shortcode.testimonials-masonry-shortcode-id-f2feeb6b9532b9dd707769ebd79455cc:not(.resize-by-browser-width) .dt-css-grid .wf-cell {\n  flex: 1 0 ;\n  max-width: 100%;\n  padding: 25px;\n  box-sizing: border-box;\n}\n.dt-testimonials-shortcode.testimonials-masonry-shortcode-id-f2feeb6b9532b9dd707769ebd79455cc.resize-by-browser-width .dt-css-grid {\n  grid-template-columns: repeat(4,1fr);\n  grid-template-rows: auto;\n  grid-column-gap: 50px;\n  grid-row-gap: 50px;\n}\n.cssgridlegacy.no-cssgrid .dt-testimonials-shortcode.testimonials-masonry-shortcode-id-f2feeb6b9532b9dd707769ebd79455cc.resize-by-browser-width .dt-css-grid,\n.no-cssgridlegacy.no-cssgrid .dt-testimonials-shortcode.testimonials-masonry-shortcode-id-f2feeb6b9532b9dd707769ebd79455cc.resize-by-browser-width .dt-css-grid {\n  margin: -25px;\n}\n.cssgridlegacy.no-cssgrid .dt-testimonials-shortcode.testimonials-masonry-shortcode-id-f2feeb6b9532b9dd707769ebd79455cc.resize-by-browser-width .dt-css-grid .wf-cell,\n.no-cssgridlegacy.no-cssgrid .dt-testimonials-shortcode.testimonials-masonry-shortcode-id-f2feeb6b9532b9dd707769ebd79455cc.resize-by-browser-width .dt-css-grid .wf-cell {\n  width: 25%;\n  padding: 25px;\n}\n@media screen and (max-width: 1199px) {\n  .dt-testimonials-shortcode.testimonials-masonry-shortcode-id-f2feeb6b9532b9dd707769ebd79455cc.resize-by-browser-width .dt-css-grid {\n    grid-template-columns: repeat(4,1fr);\n  }\n  .cssgridlegacy.no-cssgrid .dt-testimonials-shortcode.testimonials-masonry-shortcode-id-f2feeb6b9532b9dd707769ebd79455cc.resize-by-browser-width .dt-css-grid .wf-cell,\n  .no-cssgridlegacy.no-cssgrid .dt-testimonials-shortcode.testimonials-masonry-shortcode-id-f2feeb6b9532b9dd707769ebd79455cc.resize-by-browser-width .dt-css-grid .wf-cell {\n    width: 25%;\n  }\n}\n@media screen and (max-width: 991px) {\n  .dt-testimonials-shortcode.testimonials-masonry-shortcode-id-f2feeb6b9532b9dd707769ebd79455cc.resize-by-browser-width .dt-css-grid {\n    grid-template-columns: repeat(2,1fr);\n  }\n  .cssgridlegacy.no-cssgrid .dt-testimonials-shortcode.testimonials-masonry-shortcode-id-f2feeb6b9532b9dd707769ebd79455cc.resize-by-browser-width .dt-css-grid .wf-cell,\n  .no-cssgridlegacy.no-cssgrid .dt-testimonials-shortcode.testimonials-masonry-shortcode-id-f2feeb6b9532b9dd707769ebd79455cc.resize-by-browser-width .dt-css-grid .wf-cell {\n    width: 50%;\n  }\n}\n@media screen and (max-width: 767px) {\n  .dt-testimonials-shortcode.testimonials-masonry-shortcode-id-f2feeb6b9532b9dd707769ebd79455cc.resize-by-browser-width .dt-css-grid {\n    grid-template-columns: repeat(1,1fr);\n  }\n  .cssgridlegacy.no-cssgrid .dt-testimonials-shortcode.testimonials-masonry-shortcode-id-f2feeb6b9532b9dd707769ebd79455cc.resize-by-browser-width .dt-css-grid .wf-cell,\n  .no-cssgridlegacy.no-cssgrid .dt-testimonials-shortcode.testimonials-masonry-shortcode-id-f2feeb6b9532b9dd707769ebd79455cc.resize-by-browser-width .dt-css-grid .wf-cell {\n    width: 100%;\n  }\n}\n\";s:32:\"046c98438900e102a1ae50967d64d20e\";s:16059:\".content-rollover-layout-list .post-entry-content {\n  top: 0;\n  height: 100%;\n  overflow-y: hidden;\n  display: -ms-flexbox;\n  display: -ms-flex;\n  display: flex;\n  -ms-flex-pack: flex-end;\n  -ms-justify-content: flex-end;\n  justify-content: flex-end;\n  -ms-flex-flow: column nowrap;\n  flex-flow: column nowrap;\n}\n.content-rollover-layout-list .post-entry-content:before {\n  position: absolute;\n  top: 0;\n  left: 0;\n  width: 100%;\n  height: 100%;\n  opacity: 1;\n  content: \'\';\n  transform: translate3d(0,35%,0);\n}\n.content-rollover-layout-list .entry-excerpt,\n.content-rollover-layout-list .post-details {\n  opacity: 0;\n  transition: opacity 0.45s;\n}\n.content-rollover-layout-list:not(.disable-layout-hover) article:hover .entry-excerpt,\n.content-rollover-layout-list:not(.disable-layout-hover) article:hover .post-details {\n  opacity: 1;\n}\n.content-rollover-layout-list .post-entry-content:before,\n.content-rollover-layout-list .post-entry-content .post-entry-wrapper {\n  transition: opacity 0.35s, bottom 0.35s, transform 0.4s;\n}\n.content-rollover-layout-list .post-entry-content .post-entry-wrapper {\n  position: absolute;\n  bottom: 0;\n  left: 0;\n  width: 100%;\n  box-sizing: border-box;\n}\n.content-rollover-layout-list:not(.disable-layout-hover) article:hover .post-entry-content:before {\n  opacity: 1;\n  transform: translate3d(0,0,0);\n}\n.mobile-false .content-rollover-layout-list:not(.disable-layout-hover) article:hover .post-entry-wrapper {\n  opacity: 1;\n  bottom: 0;\n}\n.mobile-true .content-rollover-layout-list:not(.disable-layout-hover) .post-entry-wrapper {\n  opacity: 1;\n  bottom: 0 !important;\n  transform: translateY(0) !important;\n}\n#page .blog-carousel-shortcode.blog-carousel-shortcode-id-046c98438900e102a1ae50967d64d20e.content-rollover-layout-list .post-entry-content {\n  background: none;\n  padding: 0;\n}\n.blog-carousel-shortcode.blog-carousel-shortcode-id-046c98438900e102a1ae50967d64d20e.content-rollover-layout-list .post-entry-content:before {\n  background: rgba(0,0,0,0.5);\n  background: -moz-linear-gradient(top,rgba(0,0,0,0) 0%,rgba(0,0,0,0.5) 65%,rgba(0,0,0,0.5) 100%);\n  background: -webkit-linear-gradient(top,rgba(0,0,0,0) 0%,rgba(0,0,0,0.5) 65%,rgba(0,0,0,0.5) 100%);\n  background: linear-gradient(to bottom,rgba(0,0,0,0) 0%,rgba(0,0,0,0.5) 65%,rgba(0,0,0,0.5) 100%);\n}\n.blog-carousel-shortcode.blog-carousel-shortcode-id-046c98438900e102a1ae50967d64d20e.content-rollover-layout-list .post-entry-wrapper {\n  padding: 0px 30px 30px 30px;\n}\n.blog-carousel-shortcode.blog-carousel-shortcode-id-046c98438900e102a1ae50967d64d20e.content-rollover-layout-list .post-entry-wrapper {\n  bottom: -15px;\n}\n.blog-carousel-shortcode.blog-carousel-shortcode-id-046c98438900e102a1ae50967d64d20e.content-rollover-layout-list.meta-info-off .post-entry-wrapper {\n  bottom: -10px;\n}\n.blog-carousel-shortcode.blog-carousel-shortcode-id-046c98438900e102a1ae50967d64d20e.content-rollover-layout-list article:not(.description-off) .post-entry-wrapper {\n  bottom: -20px;\n}\n.blog-carousel-shortcode.blog-carousel-shortcode-id-046c98438900e102a1ae50967d64d20e.content-rollover-layout-list:not(.disable-layout-hover) article:hover .post-entry-wrapper {\n  bottom: 0;\n}\n.blog-carousel-shortcode.blog-carousel-shortcode-id-046c98438900e102a1ae50967d64d20e .filter-bg-decoration .filter-categories a.act {\n  color: #fff;\n}\n.blog-carousel-shortcode.blog-carousel-shortcode-id-046c98438900e102a1ae50967d64d20e:not(.mode-masonry) article:first-of-type,\n.blog-carousel-shortcode.blog-carousel-shortcode-id-046c98438900e102a1ae50967d64d20e:not(.mode-masonry) article.visible.first:not(.product) {\n  margin-top: 0;\n}\n.blog-carousel-shortcode.blog-carousel-shortcode-id-046c98438900e102a1ae50967d64d20e.dividers-on:not(.mode-masonry) article {\n  margin-top: 0;\n}\n.blog-carousel-shortcode.blog-carousel-shortcode-id-046c98438900e102a1ae50967d64d20e.dividers-on:not(.mode-masonry) article:first-of-type,\n.blog-carousel-shortcode.blog-carousel-shortcode-id-046c98438900e102a1ae50967d64d20e.dividers-on:not(.mode-masonry) article.visible.first:not(.product) {\n  margin-top: 0;\n  padding-top: 0;\n}\n.blog-carousel-shortcode.blog-carousel-shortcode-id-046c98438900e102a1ae50967d64d20e .post-thumbnail-wrap {\n  padding: 0px 0px 0px 0px;\n}\n.blog-carousel-shortcode.blog-carousel-shortcode-id-046c98438900e102a1ae50967d64d20e.enable-bg-rollover .post-thumbnail-rollover:after {\n  background: -webkit-linear-gradient();\n  background: linear-gradient();\n}\n.blog-carousel-shortcode.blog-carousel-shortcode-id-046c98438900e102a1ae50967d64d20e .gallery-zoom-ico {\n  width: 44px;\n  height: 44px;\n  line-height: 44px;\n  border-radius: 100px;\n  margin: -22px 0 0 -22px;\n  border-width: 0px;\n  color: #ffffff;\n  background: none;\n}\n.bottom-overlap-layout-list.blog-carousel-shortcode.blog-carousel-shortcode-id-046c98438900e102a1ae50967d64d20e .gallery-zoom-ico {\n  margin-top: -72px;\n}\n.gradient-overlay-layout-list.blog-carousel-shortcode.blog-carousel-shortcode-id-046c98438900e102a1ae50967d64d20e .gallery-zoom-ico,\n.content-rollover-layout-list.blog-carousel-shortcode.blog-carousel-shortcode-id-046c98438900e102a1ae50967d64d20e .gallery-zoom-ico {\n  margin: 0 0 10px;\n}\n.content-align-center.gradient-overlay-layout-list.blog-carousel-shortcode.blog-carousel-shortcode-id-046c98438900e102a1ae50967d64d20e .gallery-zoom-ico,\n.content-align-center.content-rollover-layout-list.blog-carousel-shortcode.blog-carousel-shortcode-id-046c98438900e102a1ae50967d64d20e .gallery-zoom-ico {\n  margin: 0 auto 10px;\n}\n.dt-icon-bg-on.blog-carousel-shortcode.blog-carousel-shortcode-id-046c98438900e102a1ae50967d64d20e .gallery-zoom-ico {\n  background: rgba(255,255,255,0.3);\n  box-shadow: none;\n}\n.blog-carousel-shortcode.blog-carousel-shortcode-id-046c98438900e102a1ae50967d64d20e .gallery-zoom-ico > span,\n.blog-carousel-shortcode.blog-carousel-shortcode-id-046c98438900e102a1ae50967d64d20e .gallery-zoom-ico:before {\n  font-size: 32px;\n  line-height: 44px;\n}\n.blog-carousel-shortcode.blog-carousel-shortcode-id-046c98438900e102a1ae50967d64d20e .gallery-zoom-ico > span,\n.blog-carousel-shortcode.blog-carousel-shortcode-id-046c98438900e102a1ae50967d64d20e .gallery-zoom-ico:before {\n  color: #ffffff;\n  background: none;\n}\n.blog-carousel-shortcode.blog-carousel-shortcode-id-046c98438900e102a1ae50967d64d20e .entry-title,\n.blog-carousel-shortcode.blog-carousel-shortcode-id-046c98438900e102a1ae50967d64d20e.owl-carousel .entry-title {\n  margin-bottom: 10px;\n  font-weight: bold;\n}\n.blog-carousel-shortcode.blog-carousel-shortcode-id-046c98438900e102a1ae50967d64d20e .entry-title a,\n.blog-carousel-shortcode.blog-carousel-shortcode-id-046c98438900e102a1ae50967d64d20e.owl-carousel .entry-title a {\n  color: #ffffff;\n  background: none;\n}\n.blog-carousel-shortcode.blog-carousel-shortcode-id-046c98438900e102a1ae50967d64d20e .entry-meta {\n  margin-bottom: 15px;\n}\n.blog-carousel-shortcode.blog-carousel-shortcode-id-046c98438900e102a1ae50967d64d20e .entry-meta * {\n  color: #ffffff;\n  background: none;\n  text-transform: uppercase;\n}\n.blog-carousel-shortcode.blog-carousel-shortcode-id-046c98438900e102a1ae50967d64d20e .portfolio-categories {\n  margin-bottom: 15px;\n}\n.blog-carousel-shortcode.blog-carousel-shortcode-id-046c98438900e102a1ae50967d64d20e .entry-meta > a:after,\n.blog-carousel-shortcode.blog-carousel-shortcode-id-046c98438900e102a1ae50967d64d20e .entry-meta > span:after {\n  background: #ffffff;\n  box-shadow: none;\n}\n.blog-carousel-shortcode.blog-carousel-shortcode-id-046c98438900e102a1ae50967d64d20e .entry-excerpt {\n  margin-bottom: 5px;\n}\n.blog-carousel-shortcode.blog-carousel-shortcode-id-046c98438900e102a1ae50967d64d20e:not(.centered-layout-list) .post-entry-content {\n  padding: 0px 30px 30px 30px;\n}\n.blog-carousel-shortcode.blog-carousel-shortcode-id-046c98438900e102a1ae50967d64d20e:not(.centered-layout-list):not(.content-bg-on):not(.mode-list) .no-img .post-entry-content {\n  padding: 0;\n}\n.blog-carousel-shortcode.blog-carousel-shortcode-id-046c98438900e102a1ae50967d64d20e.content-bg-on:not(.classic-layout-list):not(.centered-layout-list) .post-entry-content {\n  background: rgba(0,0,0,0.5);\n  box-shadow: none;\n}\n.blog-carousel-shortcode.blog-carousel-shortcode-id-046c98438900e102a1ae50967d64d20e .post-details.details-type-link,\n.blog-carousel-shortcode.blog-carousel-shortcode-id-046c98438900e102a1ae50967d64d20e .post-details.details-type-link * {\n  color: #ffffff;\n  background: none;\n}\n@media screen and (max-width: ) {\n  .blog-carousel-shortcode.blog-carousel-shortcode-id-046c98438900e102a1ae50967d64d20e article {\n    -ms-flex-flow: column nowrap;\n    flex-flow: column nowrap;\n    margin-top: 20px;\n  }\n  .blog-carousel-shortcode.blog-carousel-shortcode-id-046c98438900e102a1ae50967d64d20e.dividers-on article {\n    border: none;\n  }\n  .blog-carousel-shortcode.blog-carousel-shortcode-id-046c98438900e102a1ae50967d64d20e.content-bg-on.centered-layout-list article {\n    padding: 0;\n  }\n  .blog-carousel-shortcode.blog-carousel-shortcode-id-046c98438900e102a1ae50967d64d20e.blog-shortcode.dividers-on article,\n  .blog-carousel-shortcode.blog-carousel-shortcode-id-046c98438900e102a1ae50967d64d20e.dividers-on.classic-layout-list article {\n    margin-top: 20px;\n    padding: 0;\n  }\n  .blog-carousel-shortcode.blog-carousel-shortcode-id-046c98438900e102a1ae50967d64d20e.blog-shortcode.dividers-on article:first-of-type,\n  .blog-carousel-shortcode.blog-carousel-shortcode-id-046c98438900e102a1ae50967d64d20e.dividers-on.classic-layout-list article:first-of-type {\n    padding: 0;\n  }\n  #page .blog-carousel-shortcode.blog-carousel-shortcode-id-046c98438900e102a1ae50967d64d20e .post-thumbnail-wrap,\n  #page .blog-carousel-shortcode.blog-carousel-shortcode-id-046c98438900e102a1ae50967d64d20e .post-entry-content {\n    width: 100%;\n    margin: 0;\n    top: 0;\n  }\n  #page .blog-carousel-shortcode.blog-carousel-shortcode-id-046c98438900e102a1ae50967d64d20e .post-thumbnail-wrap {\n    padding: 0;\n  }\n  #page .blog-carousel-shortcode.blog-carousel-shortcode-id-046c98438900e102a1ae50967d64d20e .post-entry-content:after {\n    display: none;\n  }\n  #page .blog-carousel-shortcode.blog-carousel-shortcode-id-046c98438900e102a1ae50967d64d20e .project-even .post-thumbnail-wrap,\n  #page .blog-carousel-shortcode.blog-carousel-shortcode-id-046c98438900e102a1ae50967d64d20e.centered-layout-list .post-thumbnail-wrap {\n    -ms-flex-order: 0;\n    order: 0;\n  }\n  #page .blog-carousel-shortcode.blog-carousel-shortcode-id-046c98438900e102a1ae50967d64d20e.centered-layout-list .post-entry-title-content {\n    -ms-flex-order: 1;\n    order: 1;\n    width: 100%;\n    padding: 20px 20px 0;\n  }\n  #page .blog-carousel-shortcode.blog-carousel-shortcode-id-046c98438900e102a1ae50967d64d20e.centered-layout-list .post-entry-content {\n    -ms-flex-order: 2;\n    order: 2;\n    padding-top: 0;\n  }\n  #page .blog-carousel-shortcode.blog-carousel-shortcode-id-046c98438900e102a1ae50967d64d20e .fancy-categories {\n    top: 10px;\n    left: 10px;\n    bottom: auto;\n    right: auto;\n  }\n  #page .blog-carousel-shortcode.blog-carousel-shortcode-id-046c98438900e102a1ae50967d64d20e .fancy-date a {\n    top: 10px;\n    right: 10px;\n    left: auto;\n    bottom: auto;\n  }\n  #page .blog-carousel-shortcode.blog-carousel-shortcode-id-046c98438900e102a1ae50967d64d20e .post-entry-content {\n    padding: 20px;\n  }\n  #page .blog-carousel-shortcode.blog-carousel-shortcode-id-046c98438900e102a1ae50967d64d20e .entry-title {\n    margin: 3px 0 5px;\n    font-size: 20px;\n    line-height: 26px;\n  }\n  #page .blog-carousel-shortcode.blog-carousel-shortcode-id-046c98438900e102a1ae50967d64d20e .entry-meta {\n    margin: 5px 0 5px;\n  }\n  #page .blog-carousel-shortcode.blog-carousel-shortcode-id-046c98438900e102a1ae50967d64d20e .entry-excerpt {\n    margin: 15px 0 0;\n  }\n  #page .blog-carousel-shortcode.blog-carousel-shortcode-id-046c98438900e102a1ae50967d64d20e .post-details {\n    margin: 5px 0 10px;\n  }\n  #page .blog-carousel-shortcode.blog-carousel-shortcode-id-046c98438900e102a1ae50967d64d20e .post-details.details-type-link {\n    margin-bottom: 2px;\n  }\n}\n.blog-carousel-shortcode.blog-carousel-shortcode-id-046c98438900e102a1ae50967d64d20e .owl-nav a {\n  width: 40px;\n  height: 40px;\n  border-radius: 500px;\n}\n.dt-arrow-border-on.blog-carousel-shortcode.blog-carousel-shortcode-id-046c98438900e102a1ae50967d64d20e .owl-nav a:not(:hover):before {\n  border-width: 0px;\n}\n.dt-arrow-hover-border-on.blog-carousel-shortcode.blog-carousel-shortcode-id-046c98438900e102a1ae50967d64d20e .owl-nav a:hover:after {\n  border-width: 0px;\n}\n.arrows-bg-on.blog-carousel-shortcode.blog-carousel-shortcode-id-046c98438900e102a1ae50967d64d20e .owl-nav a:before {\n  background: #7bb519;\n  box-shadow: none;\n}\n.blog-carousel-shortcode.blog-carousel-shortcode-id-046c98438900e102a1ae50967d64d20e .owl-nav a.owl-prev {\n  top: 50%;\n  transform: translateY(calc(-50% + 0px));\n  left: 20px;\n}\n@media all and (-ms-high-contrast: none) {\n  .blog-carousel-shortcode.blog-carousel-shortcode-id-046c98438900e102a1ae50967d64d20e .owl-nav a.owl-prev {\n    transform: translateY(-50%);\n    margin-top: 0px;\n  }\n}\n.blog-carousel-shortcode.blog-carousel-shortcode-id-046c98438900e102a1ae50967d64d20e .owl-nav a.owl-prev i {\n  padding: 0px 0px 0px 0px;\n}\n.blog-carousel-shortcode.blog-carousel-shortcode-id-046c98438900e102a1ae50967d64d20e .owl-nav a.owl-next {\n  top: 50%;\n  transform: translateY(calc(-50% + 0px));\n  right: 20px;\n}\n@media all and (-ms-high-contrast: none) {\n  .blog-carousel-shortcode.blog-carousel-shortcode-id-046c98438900e102a1ae50967d64d20e .owl-nav a.owl-next {\n    transform: translateY(-50%);\n    margin-top: 0px;\n  }\n}\n.blog-carousel-shortcode.blog-carousel-shortcode-id-046c98438900e102a1ae50967d64d20e .owl-nav a.owl-next i {\n  padding: 0px 0px 0px 0px;\n}\n.blog-carousel-shortcode.blog-carousel-shortcode-id-046c98438900e102a1ae50967d64d20e .owl-nav i {\n  font-size: 18px;\n}\n.blog-carousel-shortcode.blog-carousel-shortcode-id-046c98438900e102a1ae50967d64d20e .owl-nav a:not(:hover) i,\n.blog-carousel-shortcode.blog-carousel-shortcode-id-046c98438900e102a1ae50967d64d20e .owl-nav a:not(:hover) i:before {\n  color: #ffffff;\n  background: none;\n}\n.blog-carousel-shortcode.blog-carousel-shortcode-id-046c98438900e102a1ae50967d64d20e .owl-nav a:hover i,\n.blog-carousel-shortcode.blog-carousel-shortcode-id-046c98438900e102a1ae50967d64d20e .owl-nav a:hover i:before {\n  color: rgba(255,255,255,0.75);\n  background: none;\n}\n.blog-carousel-shortcode.blog-carousel-shortcode-id-046c98438900e102a1ae50967d64d20e .owl-dots {\n  top: calc(100% + 20px);\n  left: 50%;\n  transform: translateX(calc(-50% + 0px));\n}\n@media all and (-ms-high-contrast: none) {\n  .blog-carousel-shortcode.blog-carousel-shortcode-id-046c98438900e102a1ae50967d64d20e .owl-dots {\n    transform: translateX(-50%);\n    margin-left: 0px;\n  }\n}\n.blog-carousel-shortcode.blog-carousel-shortcode-id-046c98438900e102a1ae50967d64d20e .owl-dot {\n  width: 10px;\n  height: 10px;\n  margin: 0 8px;\n}\n@media screen and (max-width: 778px) {\n  .blog-carousel-shortcode.blog-carousel-shortcode-id-046c98438900e102a1ae50967d64d20e.hide-arrows .owl-nav a {\n    display: none;\n  }\n}\n@media screen and (max-width: 778px) {\n  .blog-carousel-shortcode.blog-carousel-shortcode-id-046c98438900e102a1ae50967d64d20e.reposition-arrows .owl-nav .owl-prev {\n    top: 50%;\n    transform: translateY(calc(-50% + 0px));\n    left: 10px;\n  }\n  .blog-carousel-shortcode.blog-carousel-shortcode-id-046c98438900e102a1ae50967d64d20e.reposition-arrows .owl-nav .owl-next {\n    top: 50%;\n    transform: translateY(calc(-50% + 0px));\n    right: 10px;\n  }\n}\n@media screen and (max-width: 778px) and all and (-ms-high-contrast: none) {\n  .blog-carousel-shortcode.blog-carousel-shortcode-id-046c98438900e102a1ae50967d64d20e.reposition-arrows .owl-nav .owl-prev {\n    transform: translateY(-50%);\n    margin-top: 0px;\n  }\n}\n@media screen and (max-width: 778px) and all and (-ms-high-contrast: none) {\n  .blog-carousel-shortcode.blog-carousel-shortcode-id-046c98438900e102a1ae50967d64d20e.reposition-arrows .owl-nav .owl-next {\n    transform: translateY(-50%);\n    margin-top: 0px;\n  }\n}\n\";s:32:\"b6a9327fe336097e6aa61cd5c4eba497\";s:4665:\".icon-with-text-shortcode.icon-text-id-b6a9327fe336097e6aa61cd5c4eba497 .text-icon {\n  width: 32px;\n  height: 32px;\n  line-height: 32px;\n  font-size: 32px;\n  border-radius: 200px;\n  margin: 0px 10px 5px 0px;\n}\n.icon-with-text-shortcode.icon-text-id-b6a9327fe336097e6aa61cd5c4eba497 .text-icon .icon-inner {\n  min-width: 32px;\n  min-height: 32px;\n  border-radius: 200px;\n}\n@media all and (-ms-high-contrast: none) {\n  .icon-with-text-shortcode.icon-text-id-b6a9327fe336097e6aa61cd5c4eba497 .text-icon .icon-inner {\n    height: 32px;\n  }\n}\n.icon-with-text-shortcode.icon-text-id-b6a9327fe336097e6aa61cd5c4eba497 .text-icon .dt-hover-icon {\n  line-height: 32px;\n}\n.icon-with-text-shortcode.icon-text-id-b6a9327fe336097e6aa61cd5c4eba497 .text-icon:before,\n.icon-with-text-shortcode.icon-text-id-b6a9327fe336097e6aa61cd5c4eba497 .text-icon:after,\n.icon-with-text-shortcode.icon-text-id-b6a9327fe336097e6aa61cd5c4eba497 .text-icon .icon-inner:before,\n.icon-with-text-shortcode.icon-text-id-b6a9327fe336097e6aa61cd5c4eba497 .text-icon .icon-inner:after {\n  min-width: 100%;\n  min-height: 100%;\n  padding: inherit;\n  border-radius: inherit;\n}\n.icon-with-text-shortcode.icon-text-id-b6a9327fe336097e6aa61cd5c4eba497 .text-icon.dt-icon-border-on:before {\n  border-width: 0px;\n  border-style: solid;\n}\n.dt-icon-border-dashed.icon-with-text-shortcode.icon-text-id-b6a9327fe336097e6aa61cd5c4eba497 .text-icon.dt-icon-border-on:before {\n  border-style: dashed;\n}\n.dt-icon-border-dotted.icon-with-text-shortcode.icon-text-id-b6a9327fe336097e6aa61cd5c4eba497 .text-icon.dt-icon-border-on:before {\n  border-style: dotted;\n}\n.dt-icon-border-double.icon-with-text-shortcode.icon-text-id-b6a9327fe336097e6aa61cd5c4eba497 .text-icon.dt-icon-border-on:before {\n  border-style: double;\n}\n.icon-with-text-shortcode.icon-text-id-b6a9327fe336097e6aa61cd5c4eba497 .text-icon.dt-icon-border-dashed.dt-icon-border-on:before {\n  border-style: dashed;\n}\n.icon-with-text-shortcode.icon-text-id-b6a9327fe336097e6aa61cd5c4eba497 .text-icon.dt-icon-border-dotted.dt-icon-border-on:before {\n  border-style: dotted;\n}\n.icon-with-text-shortcode.icon-text-id-b6a9327fe336097e6aa61cd5c4eba497 .text-icon.dt-icon-border-double.dt-icon-border-on:before {\n  border-style: double;\n}\n.icon-with-text-shortcode.icon-text-id-b6a9327fe336097e6aa61cd5c4eba497 .text-icon.dt-icon-hover-border-on:after {\n  border-width: 0px;\n  border-style: solid;\n}\n.icon-with-text-shortcode.icon-text-id-b6a9327fe336097e6aa61cd5c4eba497 .text-icon.dt-icon-border-dashed.dt-icon-hover-border-on:after {\n  border-style: dashed;\n}\n.icon-with-text-shortcode.icon-text-id-b6a9327fe336097e6aa61cd5c4eba497 .text-icon.dt-icon-border-dotted.dt-icon-hover-border-on:after {\n  border-style: dotted;\n}\n.icon-with-text-shortcode.icon-text-id-b6a9327fe336097e6aa61cd5c4eba497 .text-icon.dt-icon-border-double.dt-icon-hover-border-on:after {\n  border-style: double;\n}\n.icon-with-text-shortcode.icon-text-id-b6a9327fe336097e6aa61cd5c4eba497 .text-icon.dt-icon-hover-on:hover {\n  font-size: 32px;\n}\n#page .icon-with-text-shortcode.icon-text-id-b6a9327fe336097e6aa61cd5c4eba497 .text-icon.dt-icon-hover-on:hover .soc-font-icon,\n#phantom .icon-with-text-shortcode.icon-text-id-b6a9327fe336097e6aa61cd5c4eba497 .text-icon.dt-icon-hover-on:hover .soc-font-icon,\n#page .icon-with-text-shortcode.icon-text-id-b6a9327fe336097e6aa61cd5c4eba497 .text-icon.dt-icon-hover-on:hover .soc-icon,\n#phantom .icon-with-text-shortcode.icon-text-id-b6a9327fe336097e6aa61cd5c4eba497 .text-icon.dt-icon-hover-on:hover .soc-icon {\n  color: #fff;\n  background: none;\n}\n.icon-with-text-shortcode.icon-text-id-b6a9327fe336097e6aa61cd5c4eba497.layout-1 {\n  grid-template-columns: 32px minmax(0,1fr);\n  grid-column-gap: 10px;\n}\n.icon-with-text-shortcode.icon-text-id-b6a9327fe336097e6aa61cd5c4eba497.layout-2 {\n  grid-template-columns: minmax(0,1fr) 32px;\n  grid-column-gap: 0px;\n}\n.icon-with-text-shortcode.icon-text-id-b6a9327fe336097e6aa61cd5c4eba497.layout-2 .text-icon {\n  margin-left: 0;\n}\n.icon-with-text-shortcode.icon-text-id-b6a9327fe336097e6aa61cd5c4eba497.layout-3 {\n  grid-template-columns: 32px minmax(0,1fr);\n}\n.icon-with-text-shortcode.icon-text-id-b6a9327fe336097e6aa61cd5c4eba497.layout-3 .dt-text-title {\n  margin-left: 10px;\n}\n.icon-with-text-shortcode.icon-text-id-b6a9327fe336097e6aa61cd5c4eba497 .dt-text-title,\n.icon-with-text-shortcode.icon-text-id-b6a9327fe336097e6aa61cd5c4eba497 .dt-text-title a {\n  font-weight: bold;\n}\n.icon-with-text-shortcode.icon-text-id-b6a9327fe336097e6aa61cd5c4eba497 .dt-text-title {\n  margin-bottom: 0px;\n}\n.icon-with-text-shortcode.icon-text-id-b6a9327fe336097e6aa61cd5c4eba497 .dt-text-desc {\n  margin-bottom: 0px;\n}\n\";s:32:\"de9184c5671ffe18b0faec4aa97048ea\";s:4665:\".icon-with-text-shortcode.icon-text-id-de9184c5671ffe18b0faec4aa97048ea .text-icon {\n  width: 32px;\n  height: 32px;\n  line-height: 32px;\n  font-size: 32px;\n  border-radius: 200px;\n  margin: 0px 10px 5px 0px;\n}\n.icon-with-text-shortcode.icon-text-id-de9184c5671ffe18b0faec4aa97048ea .text-icon .icon-inner {\n  min-width: 32px;\n  min-height: 32px;\n  border-radius: 200px;\n}\n@media all and (-ms-high-contrast: none) {\n  .icon-with-text-shortcode.icon-text-id-de9184c5671ffe18b0faec4aa97048ea .text-icon .icon-inner {\n    height: 32px;\n  }\n}\n.icon-with-text-shortcode.icon-text-id-de9184c5671ffe18b0faec4aa97048ea .text-icon .dt-hover-icon {\n  line-height: 32px;\n}\n.icon-with-text-shortcode.icon-text-id-de9184c5671ffe18b0faec4aa97048ea .text-icon:before,\n.icon-with-text-shortcode.icon-text-id-de9184c5671ffe18b0faec4aa97048ea .text-icon:after,\n.icon-with-text-shortcode.icon-text-id-de9184c5671ffe18b0faec4aa97048ea .text-icon .icon-inner:before,\n.icon-with-text-shortcode.icon-text-id-de9184c5671ffe18b0faec4aa97048ea .text-icon .icon-inner:after {\n  min-width: 100%;\n  min-height: 100%;\n  padding: inherit;\n  border-radius: inherit;\n}\n.icon-with-text-shortcode.icon-text-id-de9184c5671ffe18b0faec4aa97048ea .text-icon.dt-icon-border-on:before {\n  border-width: 0px;\n  border-style: solid;\n}\n.dt-icon-border-dashed.icon-with-text-shortcode.icon-text-id-de9184c5671ffe18b0faec4aa97048ea .text-icon.dt-icon-border-on:before {\n  border-style: dashed;\n}\n.dt-icon-border-dotted.icon-with-text-shortcode.icon-text-id-de9184c5671ffe18b0faec4aa97048ea .text-icon.dt-icon-border-on:before {\n  border-style: dotted;\n}\n.dt-icon-border-double.icon-with-text-shortcode.icon-text-id-de9184c5671ffe18b0faec4aa97048ea .text-icon.dt-icon-border-on:before {\n  border-style: double;\n}\n.icon-with-text-shortcode.icon-text-id-de9184c5671ffe18b0faec4aa97048ea .text-icon.dt-icon-border-dashed.dt-icon-border-on:before {\n  border-style: dashed;\n}\n.icon-with-text-shortcode.icon-text-id-de9184c5671ffe18b0faec4aa97048ea .text-icon.dt-icon-border-dotted.dt-icon-border-on:before {\n  border-style: dotted;\n}\n.icon-with-text-shortcode.icon-text-id-de9184c5671ffe18b0faec4aa97048ea .text-icon.dt-icon-border-double.dt-icon-border-on:before {\n  border-style: double;\n}\n.icon-with-text-shortcode.icon-text-id-de9184c5671ffe18b0faec4aa97048ea .text-icon.dt-icon-hover-border-on:after {\n  border-width: 0px;\n  border-style: solid;\n}\n.icon-with-text-shortcode.icon-text-id-de9184c5671ffe18b0faec4aa97048ea .text-icon.dt-icon-border-dashed.dt-icon-hover-border-on:after {\n  border-style: dashed;\n}\n.icon-with-text-shortcode.icon-text-id-de9184c5671ffe18b0faec4aa97048ea .text-icon.dt-icon-border-dotted.dt-icon-hover-border-on:after {\n  border-style: dotted;\n}\n.icon-with-text-shortcode.icon-text-id-de9184c5671ffe18b0faec4aa97048ea .text-icon.dt-icon-border-double.dt-icon-hover-border-on:after {\n  border-style: double;\n}\n.icon-with-text-shortcode.icon-text-id-de9184c5671ffe18b0faec4aa97048ea .text-icon.dt-icon-hover-on:hover {\n  font-size: 32px;\n}\n#page .icon-with-text-shortcode.icon-text-id-de9184c5671ffe18b0faec4aa97048ea .text-icon.dt-icon-hover-on:hover .soc-font-icon,\n#phantom .icon-with-text-shortcode.icon-text-id-de9184c5671ffe18b0faec4aa97048ea .text-icon.dt-icon-hover-on:hover .soc-font-icon,\n#page .icon-with-text-shortcode.icon-text-id-de9184c5671ffe18b0faec4aa97048ea .text-icon.dt-icon-hover-on:hover .soc-icon,\n#phantom .icon-with-text-shortcode.icon-text-id-de9184c5671ffe18b0faec4aa97048ea .text-icon.dt-icon-hover-on:hover .soc-icon {\n  color: #fff;\n  background: none;\n}\n.icon-with-text-shortcode.icon-text-id-de9184c5671ffe18b0faec4aa97048ea.layout-1 {\n  grid-template-columns: 32px minmax(0,1fr);\n  grid-column-gap: 10px;\n}\n.icon-with-text-shortcode.icon-text-id-de9184c5671ffe18b0faec4aa97048ea.layout-2 {\n  grid-template-columns: minmax(0,1fr) 32px;\n  grid-column-gap: 0px;\n}\n.icon-with-text-shortcode.icon-text-id-de9184c5671ffe18b0faec4aa97048ea.layout-2 .text-icon {\n  margin-left: 0;\n}\n.icon-with-text-shortcode.icon-text-id-de9184c5671ffe18b0faec4aa97048ea.layout-3 {\n  grid-template-columns: 32px minmax(0,1fr);\n}\n.icon-with-text-shortcode.icon-text-id-de9184c5671ffe18b0faec4aa97048ea.layout-3 .dt-text-title {\n  margin-left: 10px;\n}\n.icon-with-text-shortcode.icon-text-id-de9184c5671ffe18b0faec4aa97048ea .dt-text-title,\n.icon-with-text-shortcode.icon-text-id-de9184c5671ffe18b0faec4aa97048ea .dt-text-title a {\n  font-weight: bold;\n}\n.icon-with-text-shortcode.icon-text-id-de9184c5671ffe18b0faec4aa97048ea .dt-text-title {\n  margin-bottom: 0px;\n}\n.icon-with-text-shortcode.icon-text-id-de9184c5671ffe18b0faec4aa97048ea .dt-text-desc {\n  margin-bottom: 0px;\n}\n\";s:32:\"1ef9bd3c956783f00809d1b1a5b67410\";s:4665:\".icon-with-text-shortcode.icon-text-id-1ef9bd3c956783f00809d1b1a5b67410 .text-icon {\n  width: 32px;\n  height: 32px;\n  line-height: 32px;\n  font-size: 32px;\n  border-radius: 200px;\n  margin: 0px 10px 5px 0px;\n}\n.icon-with-text-shortcode.icon-text-id-1ef9bd3c956783f00809d1b1a5b67410 .text-icon .icon-inner {\n  min-width: 32px;\n  min-height: 32px;\n  border-radius: 200px;\n}\n@media all and (-ms-high-contrast: none) {\n  .icon-with-text-shortcode.icon-text-id-1ef9bd3c956783f00809d1b1a5b67410 .text-icon .icon-inner {\n    height: 32px;\n  }\n}\n.icon-with-text-shortcode.icon-text-id-1ef9bd3c956783f00809d1b1a5b67410 .text-icon .dt-hover-icon {\n  line-height: 32px;\n}\n.icon-with-text-shortcode.icon-text-id-1ef9bd3c956783f00809d1b1a5b67410 .text-icon:before,\n.icon-with-text-shortcode.icon-text-id-1ef9bd3c956783f00809d1b1a5b67410 .text-icon:after,\n.icon-with-text-shortcode.icon-text-id-1ef9bd3c956783f00809d1b1a5b67410 .text-icon .icon-inner:before,\n.icon-with-text-shortcode.icon-text-id-1ef9bd3c956783f00809d1b1a5b67410 .text-icon .icon-inner:after {\n  min-width: 100%;\n  min-height: 100%;\n  padding: inherit;\n  border-radius: inherit;\n}\n.icon-with-text-shortcode.icon-text-id-1ef9bd3c956783f00809d1b1a5b67410 .text-icon.dt-icon-border-on:before {\n  border-width: 0px;\n  border-style: solid;\n}\n.dt-icon-border-dashed.icon-with-text-shortcode.icon-text-id-1ef9bd3c956783f00809d1b1a5b67410 .text-icon.dt-icon-border-on:before {\n  border-style: dashed;\n}\n.dt-icon-border-dotted.icon-with-text-shortcode.icon-text-id-1ef9bd3c956783f00809d1b1a5b67410 .text-icon.dt-icon-border-on:before {\n  border-style: dotted;\n}\n.dt-icon-border-double.icon-with-text-shortcode.icon-text-id-1ef9bd3c956783f00809d1b1a5b67410 .text-icon.dt-icon-border-on:before {\n  border-style: double;\n}\n.icon-with-text-shortcode.icon-text-id-1ef9bd3c956783f00809d1b1a5b67410 .text-icon.dt-icon-border-dashed.dt-icon-border-on:before {\n  border-style: dashed;\n}\n.icon-with-text-shortcode.icon-text-id-1ef9bd3c956783f00809d1b1a5b67410 .text-icon.dt-icon-border-dotted.dt-icon-border-on:before {\n  border-style: dotted;\n}\n.icon-with-text-shortcode.icon-text-id-1ef9bd3c956783f00809d1b1a5b67410 .text-icon.dt-icon-border-double.dt-icon-border-on:before {\n  border-style: double;\n}\n.icon-with-text-shortcode.icon-text-id-1ef9bd3c956783f00809d1b1a5b67410 .text-icon.dt-icon-hover-border-on:after {\n  border-width: 0px;\n  border-style: solid;\n}\n.icon-with-text-shortcode.icon-text-id-1ef9bd3c956783f00809d1b1a5b67410 .text-icon.dt-icon-border-dashed.dt-icon-hover-border-on:after {\n  border-style: dashed;\n}\n.icon-with-text-shortcode.icon-text-id-1ef9bd3c956783f00809d1b1a5b67410 .text-icon.dt-icon-border-dotted.dt-icon-hover-border-on:after {\n  border-style: dotted;\n}\n.icon-with-text-shortcode.icon-text-id-1ef9bd3c956783f00809d1b1a5b67410 .text-icon.dt-icon-border-double.dt-icon-hover-border-on:after {\n  border-style: double;\n}\n.icon-with-text-shortcode.icon-text-id-1ef9bd3c956783f00809d1b1a5b67410 .text-icon.dt-icon-hover-on:hover {\n  font-size: 32px;\n}\n#page .icon-with-text-shortcode.icon-text-id-1ef9bd3c956783f00809d1b1a5b67410 .text-icon.dt-icon-hover-on:hover .soc-font-icon,\n#phantom .icon-with-text-shortcode.icon-text-id-1ef9bd3c956783f00809d1b1a5b67410 .text-icon.dt-icon-hover-on:hover .soc-font-icon,\n#page .icon-with-text-shortcode.icon-text-id-1ef9bd3c956783f00809d1b1a5b67410 .text-icon.dt-icon-hover-on:hover .soc-icon,\n#phantom .icon-with-text-shortcode.icon-text-id-1ef9bd3c956783f00809d1b1a5b67410 .text-icon.dt-icon-hover-on:hover .soc-icon {\n  color: #fff;\n  background: none;\n}\n.icon-with-text-shortcode.icon-text-id-1ef9bd3c956783f00809d1b1a5b67410.layout-1 {\n  grid-template-columns: 32px minmax(0,1fr);\n  grid-column-gap: 10px;\n}\n.icon-with-text-shortcode.icon-text-id-1ef9bd3c956783f00809d1b1a5b67410.layout-2 {\n  grid-template-columns: minmax(0,1fr) 32px;\n  grid-column-gap: 0px;\n}\n.icon-with-text-shortcode.icon-text-id-1ef9bd3c956783f00809d1b1a5b67410.layout-2 .text-icon {\n  margin-left: 0;\n}\n.icon-with-text-shortcode.icon-text-id-1ef9bd3c956783f00809d1b1a5b67410.layout-3 {\n  grid-template-columns: 32px minmax(0,1fr);\n}\n.icon-with-text-shortcode.icon-text-id-1ef9bd3c956783f00809d1b1a5b67410.layout-3 .dt-text-title {\n  margin-left: 10px;\n}\n.icon-with-text-shortcode.icon-text-id-1ef9bd3c956783f00809d1b1a5b67410 .dt-text-title,\n.icon-with-text-shortcode.icon-text-id-1ef9bd3c956783f00809d1b1a5b67410 .dt-text-title a {\n  font-weight: bold;\n}\n.icon-with-text-shortcode.icon-text-id-1ef9bd3c956783f00809d1b1a5b67410 .dt-text-title {\n  margin-bottom: 0px;\n}\n.icon-with-text-shortcode.icon-text-id-1ef9bd3c956783f00809d1b1a5b67410 .dt-text-desc {\n  margin-bottom: 0px;\n}\n\";s:32:\"31526192f758f0149def1654cdc31a5d\";s:4665:\".icon-with-text-shortcode.icon-text-id-31526192f758f0149def1654cdc31a5d .text-icon {\n  width: 32px;\n  height: 32px;\n  line-height: 32px;\n  font-size: 32px;\n  border-radius: 200px;\n  margin: 0px 10px 5px 0px;\n}\n.icon-with-text-shortcode.icon-text-id-31526192f758f0149def1654cdc31a5d .text-icon .icon-inner {\n  min-width: 32px;\n  min-height: 32px;\n  border-radius: 200px;\n}\n@media all and (-ms-high-contrast: none) {\n  .icon-with-text-shortcode.icon-text-id-31526192f758f0149def1654cdc31a5d .text-icon .icon-inner {\n    height: 32px;\n  }\n}\n.icon-with-text-shortcode.icon-text-id-31526192f758f0149def1654cdc31a5d .text-icon .dt-hover-icon {\n  line-height: 32px;\n}\n.icon-with-text-shortcode.icon-text-id-31526192f758f0149def1654cdc31a5d .text-icon:before,\n.icon-with-text-shortcode.icon-text-id-31526192f758f0149def1654cdc31a5d .text-icon:after,\n.icon-with-text-shortcode.icon-text-id-31526192f758f0149def1654cdc31a5d .text-icon .icon-inner:before,\n.icon-with-text-shortcode.icon-text-id-31526192f758f0149def1654cdc31a5d .text-icon .icon-inner:after {\n  min-width: 100%;\n  min-height: 100%;\n  padding: inherit;\n  border-radius: inherit;\n}\n.icon-with-text-shortcode.icon-text-id-31526192f758f0149def1654cdc31a5d .text-icon.dt-icon-border-on:before {\n  border-width: 0px;\n  border-style: solid;\n}\n.dt-icon-border-dashed.icon-with-text-shortcode.icon-text-id-31526192f758f0149def1654cdc31a5d .text-icon.dt-icon-border-on:before {\n  border-style: dashed;\n}\n.dt-icon-border-dotted.icon-with-text-shortcode.icon-text-id-31526192f758f0149def1654cdc31a5d .text-icon.dt-icon-border-on:before {\n  border-style: dotted;\n}\n.dt-icon-border-double.icon-with-text-shortcode.icon-text-id-31526192f758f0149def1654cdc31a5d .text-icon.dt-icon-border-on:before {\n  border-style: double;\n}\n.icon-with-text-shortcode.icon-text-id-31526192f758f0149def1654cdc31a5d .text-icon.dt-icon-border-dashed.dt-icon-border-on:before {\n  border-style: dashed;\n}\n.icon-with-text-shortcode.icon-text-id-31526192f758f0149def1654cdc31a5d .text-icon.dt-icon-border-dotted.dt-icon-border-on:before {\n  border-style: dotted;\n}\n.icon-with-text-shortcode.icon-text-id-31526192f758f0149def1654cdc31a5d .text-icon.dt-icon-border-double.dt-icon-border-on:before {\n  border-style: double;\n}\n.icon-with-text-shortcode.icon-text-id-31526192f758f0149def1654cdc31a5d .text-icon.dt-icon-hover-border-on:after {\n  border-width: 0px;\n  border-style: solid;\n}\n.icon-with-text-shortcode.icon-text-id-31526192f758f0149def1654cdc31a5d .text-icon.dt-icon-border-dashed.dt-icon-hover-border-on:after {\n  border-style: dashed;\n}\n.icon-with-text-shortcode.icon-text-id-31526192f758f0149def1654cdc31a5d .text-icon.dt-icon-border-dotted.dt-icon-hover-border-on:after {\n  border-style: dotted;\n}\n.icon-with-text-shortcode.icon-text-id-31526192f758f0149def1654cdc31a5d .text-icon.dt-icon-border-double.dt-icon-hover-border-on:after {\n  border-style: double;\n}\n.icon-with-text-shortcode.icon-text-id-31526192f758f0149def1654cdc31a5d .text-icon.dt-icon-hover-on:hover {\n  font-size: 32px;\n}\n#page .icon-with-text-shortcode.icon-text-id-31526192f758f0149def1654cdc31a5d .text-icon.dt-icon-hover-on:hover .soc-font-icon,\n#phantom .icon-with-text-shortcode.icon-text-id-31526192f758f0149def1654cdc31a5d .text-icon.dt-icon-hover-on:hover .soc-font-icon,\n#page .icon-with-text-shortcode.icon-text-id-31526192f758f0149def1654cdc31a5d .text-icon.dt-icon-hover-on:hover .soc-icon,\n#phantom .icon-with-text-shortcode.icon-text-id-31526192f758f0149def1654cdc31a5d .text-icon.dt-icon-hover-on:hover .soc-icon {\n  color: #fff;\n  background: none;\n}\n.icon-with-text-shortcode.icon-text-id-31526192f758f0149def1654cdc31a5d.layout-1 {\n  grid-template-columns: 32px minmax(0,1fr);\n  grid-column-gap: 10px;\n}\n.icon-with-text-shortcode.icon-text-id-31526192f758f0149def1654cdc31a5d.layout-2 {\n  grid-template-columns: minmax(0,1fr) 32px;\n  grid-column-gap: 0px;\n}\n.icon-with-text-shortcode.icon-text-id-31526192f758f0149def1654cdc31a5d.layout-2 .text-icon {\n  margin-left: 0;\n}\n.icon-with-text-shortcode.icon-text-id-31526192f758f0149def1654cdc31a5d.layout-3 {\n  grid-template-columns: 32px minmax(0,1fr);\n}\n.icon-with-text-shortcode.icon-text-id-31526192f758f0149def1654cdc31a5d.layout-3 .dt-text-title {\n  margin-left: 10px;\n}\n.icon-with-text-shortcode.icon-text-id-31526192f758f0149def1654cdc31a5d .dt-text-title,\n.icon-with-text-shortcode.icon-text-id-31526192f758f0149def1654cdc31a5d .dt-text-title a {\n  font-weight: bold;\n}\n.icon-with-text-shortcode.icon-text-id-31526192f758f0149def1654cdc31a5d .dt-text-title {\n  margin-bottom: 0px;\n}\n.icon-with-text-shortcode.icon-text-id-31526192f758f0149def1654cdc31a5d .dt-text-desc {\n  margin-bottom: 0px;\n}\n\";s:32:\"23901352a3efb74177a0e5c2cc4e4367\";s:1682:\"#default-btn-23901352a3efb74177a0e5c2cc4e4367 {\n  border-radius: 0px;\n  font-size: 20px;\n  line-height: 22px;\n}\n.btn-shadow#default-btn-23901352a3efb74177a0e5c2cc4e4367 {\n  box-shadow: 0 1px 6px rgba(0,0,0,0.12);\n  transition: box-shadow 0.2s ease-out, opacity 0.45s;\n}\n.btn-shadow#default-btn-23901352a3efb74177a0e5c2cc4e4367:hover {\n  box-shadow: 0 5px 11px 0 rgba(0,0,0,0.18), 0 4px 15px 0 rgba(0,0,0,0.15);\n}\n.btn-3d#default-btn-23901352a3efb74177a0e5c2cc4e4367 {\n  box-shadow: 0px 2px 0px 0px rgba(0,0,0,0.06);\n}\n.btn-3d#default-btn-23901352a3efb74177a0e5c2cc4e4367:hover {\n  box-shadow: 0px 2px 0px 0px rgba(0,0,0,0.08);\n}\n.btn-flat#default-btn-23901352a3efb74177a0e5c2cc4e4367 {\n  box-shadow: none;\n}\n.btn-flat#default-btn-23901352a3efb74177a0e5c2cc4e4367:hover {\n  box-shadow: none;\n}\n#default-btn-23901352a3efb74177a0e5c2cc4e4367.ico-right-side > i {\n  margin-right: 0px;\n  margin-left: 8px;\n}\n#default-btn-23901352a3efb74177a0e5c2cc4e4367 > i {\n  margin-right: 8px;\n  font-size: 28px;\n}\n#default-btn-23901352a3efb74177a0e5c2cc4e4367:not(:hover) {\n  border-width: 0px;\n  color: #7bb519;\n  background: rgba(0,0,0,0.06) !important;\n  padding: 22px 5px 22px 5px;\n}\n#default-btn-23901352a3efb74177a0e5c2cc4e4367:not(:hover) * {\n  color: #7bb519;\n}\n#default-btn-23901352a3efb74177a0e5c2cc4e4367:hover {\n  border-width: 0px;\n  color: #7bb519;\n  background: rgba(0,0,0,0.08) !important;\n  padding: 22px 5px 22px 5px;\n}\n#default-btn-23901352a3efb74177a0e5c2cc4e4367:hover * {\n  color: #7bb519;\n}\n#default-btn-23901352a3efb74177a0e5c2cc4e4367.ico-right-side > i {\n  margin-right: 0px;\n  margin-left: 8px;\n}\n#default-btn-23901352a3efb74177a0e5c2cc4e4367 > i {\n  margin-right: 8px;\n}\n\";s:32:\"bdc73ea6e49c8661cbcbb3d974e47b39\";s:1682:\"#default-btn-bdc73ea6e49c8661cbcbb3d974e47b39 {\n  border-radius: 0px;\n  font-size: 20px;\n  line-height: 22px;\n}\n.btn-shadow#default-btn-bdc73ea6e49c8661cbcbb3d974e47b39 {\n  box-shadow: 0 1px 6px rgba(0,0,0,0.12);\n  transition: box-shadow 0.2s ease-out, opacity 0.45s;\n}\n.btn-shadow#default-btn-bdc73ea6e49c8661cbcbb3d974e47b39:hover {\n  box-shadow: 0 5px 11px 0 rgba(0,0,0,0.18), 0 4px 15px 0 rgba(0,0,0,0.15);\n}\n.btn-3d#default-btn-bdc73ea6e49c8661cbcbb3d974e47b39 {\n  box-shadow: 0px 2px 0px 0px rgba(0,0,0,0.06);\n}\n.btn-3d#default-btn-bdc73ea6e49c8661cbcbb3d974e47b39:hover {\n  box-shadow: 0px 2px 0px 0px rgba(0,0,0,0.08);\n}\n.btn-flat#default-btn-bdc73ea6e49c8661cbcbb3d974e47b39 {\n  box-shadow: none;\n}\n.btn-flat#default-btn-bdc73ea6e49c8661cbcbb3d974e47b39:hover {\n  box-shadow: none;\n}\n#default-btn-bdc73ea6e49c8661cbcbb3d974e47b39.ico-right-side > i {\n  margin-right: 0px;\n  margin-left: 8px;\n}\n#default-btn-bdc73ea6e49c8661cbcbb3d974e47b39 > i {\n  margin-right: 8px;\n  font-size: 28px;\n}\n#default-btn-bdc73ea6e49c8661cbcbb3d974e47b39:not(:hover) {\n  border-width: 0px;\n  color: #7bb519;\n  background: rgba(0,0,0,0.06) !important;\n  padding: 22px 5px 22px 5px;\n}\n#default-btn-bdc73ea6e49c8661cbcbb3d974e47b39:not(:hover) * {\n  color: #7bb519;\n}\n#default-btn-bdc73ea6e49c8661cbcbb3d974e47b39:hover {\n  border-width: 0px;\n  color: #7bb519;\n  background: rgba(0,0,0,0.08) !important;\n  padding: 22px 5px 22px 5px;\n}\n#default-btn-bdc73ea6e49c8661cbcbb3d974e47b39:hover * {\n  color: #7bb519;\n}\n#default-btn-bdc73ea6e49c8661cbcbb3d974e47b39.ico-right-side > i {\n  margin-right: 0px;\n  margin-left: 8px;\n}\n#default-btn-bdc73ea6e49c8661cbcbb3d974e47b39 > i {\n  margin-right: 8px;\n}\n\";s:32:\"448c311a1b32626eceb77e628d400b7b\";s:1682:\"#default-btn-448c311a1b32626eceb77e628d400b7b {\n  border-radius: 0px;\n  font-size: 20px;\n  line-height: 22px;\n}\n.btn-shadow#default-btn-448c311a1b32626eceb77e628d400b7b {\n  box-shadow: 0 1px 6px rgba(0,0,0,0.12);\n  transition: box-shadow 0.2s ease-out, opacity 0.45s;\n}\n.btn-shadow#default-btn-448c311a1b32626eceb77e628d400b7b:hover {\n  box-shadow: 0 5px 11px 0 rgba(0,0,0,0.18), 0 4px 15px 0 rgba(0,0,0,0.15);\n}\n.btn-3d#default-btn-448c311a1b32626eceb77e628d400b7b {\n  box-shadow: 0px 2px 0px 0px rgba(0,0,0,0.06);\n}\n.btn-3d#default-btn-448c311a1b32626eceb77e628d400b7b:hover {\n  box-shadow: 0px 2px 0px 0px rgba(0,0,0,0.08);\n}\n.btn-flat#default-btn-448c311a1b32626eceb77e628d400b7b {\n  box-shadow: none;\n}\n.btn-flat#default-btn-448c311a1b32626eceb77e628d400b7b:hover {\n  box-shadow: none;\n}\n#default-btn-448c311a1b32626eceb77e628d400b7b.ico-right-side > i {\n  margin-right: 0px;\n  margin-left: 8px;\n}\n#default-btn-448c311a1b32626eceb77e628d400b7b > i {\n  margin-right: 8px;\n  font-size: 28px;\n}\n#default-btn-448c311a1b32626eceb77e628d400b7b:not(:hover) {\n  border-width: 0px;\n  color: #7bb519;\n  background: rgba(0,0,0,0.06) !important;\n  padding: 22px 5px 22px 5px;\n}\n#default-btn-448c311a1b32626eceb77e628d400b7b:not(:hover) * {\n  color: #7bb519;\n}\n#default-btn-448c311a1b32626eceb77e628d400b7b:hover {\n  border-width: 0px;\n  color: #7bb519;\n  background: rgba(0,0,0,0.08) !important;\n  padding: 22px 5px 22px 5px;\n}\n#default-btn-448c311a1b32626eceb77e628d400b7b:hover * {\n  color: #7bb519;\n}\n#default-btn-448c311a1b32626eceb77e628d400b7b.ico-right-side > i {\n  margin-right: 0px;\n  margin-left: 8px;\n}\n#default-btn-448c311a1b32626eceb77e628d400b7b > i {\n  margin-right: 8px;\n}\n\";s:32:\"f2db6aefa5c8ee51902a9a0553aacb1d\";s:1682:\"#default-btn-f2db6aefa5c8ee51902a9a0553aacb1d {\n  border-radius: 0px;\n  font-size: 20px;\n  line-height: 22px;\n}\n.btn-shadow#default-btn-f2db6aefa5c8ee51902a9a0553aacb1d {\n  box-shadow: 0 1px 6px rgba(0,0,0,0.12);\n  transition: box-shadow 0.2s ease-out, opacity 0.45s;\n}\n.btn-shadow#default-btn-f2db6aefa5c8ee51902a9a0553aacb1d:hover {\n  box-shadow: 0 5px 11px 0 rgba(0,0,0,0.18), 0 4px 15px 0 rgba(0,0,0,0.15);\n}\n.btn-3d#default-btn-f2db6aefa5c8ee51902a9a0553aacb1d {\n  box-shadow: 0px 2px 0px 0px rgba(0,0,0,0.06);\n}\n.btn-3d#default-btn-f2db6aefa5c8ee51902a9a0553aacb1d:hover {\n  box-shadow: 0px 2px 0px 0px rgba(0,0,0,0.08);\n}\n.btn-flat#default-btn-f2db6aefa5c8ee51902a9a0553aacb1d {\n  box-shadow: none;\n}\n.btn-flat#default-btn-f2db6aefa5c8ee51902a9a0553aacb1d:hover {\n  box-shadow: none;\n}\n#default-btn-f2db6aefa5c8ee51902a9a0553aacb1d.ico-right-side > i {\n  margin-right: 0px;\n  margin-left: 8px;\n}\n#default-btn-f2db6aefa5c8ee51902a9a0553aacb1d > i {\n  margin-right: 8px;\n  font-size: 28px;\n}\n#default-btn-f2db6aefa5c8ee51902a9a0553aacb1d:not(:hover) {\n  border-width: 0px;\n  color: #7bb519;\n  background: rgba(0,0,0,0.06) !important;\n  padding: 22px 5px 22px 5px;\n}\n#default-btn-f2db6aefa5c8ee51902a9a0553aacb1d:not(:hover) * {\n  color: #7bb519;\n}\n#default-btn-f2db6aefa5c8ee51902a9a0553aacb1d:hover {\n  border-width: 0px;\n  color: #7bb519;\n  background: rgba(0,0,0,0.08) !important;\n  padding: 22px 5px 22px 5px;\n}\n#default-btn-f2db6aefa5c8ee51902a9a0553aacb1d:hover * {\n  color: #7bb519;\n}\n#default-btn-f2db6aefa5c8ee51902a9a0553aacb1d.ico-right-side > i {\n  margin-right: 0px;\n  margin-left: 8px;\n}\n#default-btn-f2db6aefa5c8ee51902a9a0553aacb1d > i {\n  margin-right: 8px;\n}\n\";}'),(1106,1577,'_edit_lock','1662362945:1'),(22765,3609,'_dt_fancy_header_bg_position_y','center'),(22766,3609,'_dt_fancy_header_bg_fullscreen','0'),(22767,3609,'_dt_fancy_header_bg_overlay','0'),(22768,3609,'_dt_fancy_header_overlay_color','#000'),(22769,3609,'_dt_fancy_header_bg_overlay_opacity','50'),(22770,3609,'_dt_fancy_header_scroll_effect','default'),(22771,3609,'_dt_fancy_header_bg_parallax','0.5'),(22764,3609,'_dt_fancy_header_bg_position_x','center'),(1121,39,'_wp_old_date','2022-08-23'),(22763,3609,'_dt_fancy_header_bg_repeat','no-repeat'),(17546,3368,'_wp_attached_file','2023/08/2-tab-Noworm-Plus_600px.png'),(17547,3368,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:600;s:6:\"height\";i:600;s:4:\"file\";s:35:\"2023/08/2-tab-Noworm-Plus_600px.png\";s:8:\"filesize\";i:73080;s:5:\"sizes\";a:4:{s:6:\"medium\";a:5:{s:4:\"file\";s:35:\"2-tab-Noworm-Plus_600px-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:55485;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:35:\"2-tab-Noworm-Plus_600px-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:17553;}s:21:\"woocommerce_thumbnail\";a:6:{s:4:\"file\";s:35:\"2-tab-Noworm-Plus_600px-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:55485;s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:5:{s:4:\"file\";s:35:\"2-tab-Noworm-Plus_600px-200x200.png\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:27821;}}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:{}}}'),(28425,3744,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:600;s:6:\"height\";i:600;s:4:\"file\";s:37:\"2023/09/Canny-Flexi-Joint_600px-1.png\";s:8:\"filesize\";i:53636;s:5:\"sizes\";a:4:{s:6:\"medium\";a:5:{s:4:\"file\";s:37:\"Canny-Flexi-Joint_600px-1-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:41371;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:37:\"Canny-Flexi-Joint_600px-1-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:13503;}s:21:\"woocommerce_thumbnail\";a:6:{s:4:\"file\";s:37:\"Canny-Flexi-Joint_600px-1-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:41371;s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:5:{s:4:\"file\";s:37:\"Canny-Flexi-Joint_600px-1-200x200.png\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:21051;}}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:{}}}'),(17553,3370,'_tax_status','taxable'),(17542,3366,'_edit_lock','1695514976:2'),(17543,3366,'_edit_last','2'),(17544,3367,'_wp_attached_file','2023/08/Noworm-Plus_600px.png'),(17545,3367,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:600;s:6:\"height\";i:600;s:4:\"file\";s:29:\"2023/08/Noworm-Plus_600px.png\";s:8:\"filesize\";i:43733;s:5:\"sizes\";a:4:{s:6:\"medium\";a:5:{s:4:\"file\";s:29:\"Noworm-Plus_600px-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:41410;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:29:\"Noworm-Plus_600px-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:15324;}s:21:\"woocommerce_thumbnail\";a:6:{s:4:\"file\";s:29:\"Noworm-Plus_600px-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:41410;s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:5:{s:4:\"file\";s:29:\"Noworm-Plus_600px-200x200.png\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:22727;}}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:{}}}'),(17328,3362,'_dt_fancy_header_subtitle_color_mode','color'),(17308,3362,'_dt_fancy_header_height','140'),(17309,3362,'_dt_fancy_header_padding-top','0px'),(17310,3362,'_dt_fancy_header_padding-bottom','0px'),(17311,3362,'_dt_fancy_header_breadcrumbs_heading',''),(17312,3362,'_dt_fancy_header_breadcrumbs','disabled'),(17313,3362,'_dt_fancy_header_breadcrumbs_text_color','#ffffff'),(17314,3362,'_dt_fancy_header_breadcrumbs_bg_color','disabled'),(17315,3362,'_dt_fancy_header_title_heading',''),(17316,3362,'_dt_fancy_header_title_mode','custom'),(17317,3362,'_dt_fancy_header_title',''),(17318,3362,'_dt_fancy_header_title_font_size','32'),(17319,3362,'_dt_fancy_header_title_line_height','36'),(17320,3362,'_dt_fancy_header_text_transform','none'),(17321,3362,'_dt_fancy_header_title_color_mode','color'),(17322,3362,'_dt_fancy_header_title_color','#079547'),(17323,3362,'_dt_fancy_header_subtitle_heading',''),(17324,3362,'_dt_fancy_header_subtitle',''),(17325,3362,'_dt_fancy_header_subtitle_font_size','24'),(17326,3362,'_dt_fancy_header_subtitle_line_height','26'),(17327,3362,'_dt_fancy_header_subtitle_text_transform','none'),(17279,3362,'_dt_sidebar_widgetarea_id','sidebar_1'),(17280,3362,'_dt_sidebar_hide_on_mobile','0'),(17281,3362,'_dt_footer_show','1'),(17282,3362,'_dt_footer_widgetarea_id','sidebar_2'),(17283,3362,'_dt_footer_hide_on_mobile','0'),(17284,3362,'_dt_header_title','fancy'),(17285,3362,'_dt_header_background','normal'),(17286,3362,'_dt_header_background_below_slideshow','disabled'),(17287,3362,'_dt_header_transparent_bg_color_scheme','light'),(17288,3362,'_dt_header_transparent_top_bar_bg_color','#ffffff'),(17289,3362,'_dt_header_transparent_top_bar_bg_opacity','25'),(17290,3362,'_dt_header_transparent_bg_color','#000000'),(17291,3362,'_dt_header_transparent_bg_opacity','50'),(17292,3362,'_dt_header_disabled_background','normal'),(17293,3362,'_dt_header_disabled_transparent_bg_color_scheme','light'),(17294,3362,'_dt_header_disabled_transparent_top_bar_bg_color','#ffffff'),(17295,3362,'_dt_header_disabled_transparent_top_bar_bg_opacity','25'),(17296,3362,'_dt_header_disabled_transparent_bg_color','#000000'),(17297,3362,'_dt_header_disabled_transparent_bg_opacity','50'),(17298,3362,'_dt_page_overrides_top_margin','1%'),(17299,3362,'_dt_page_overrides_right_margin',''),(17300,3362,'_dt_page_overrides_bottom_margin',''),(17301,3362,'_dt_page_overrides_left_margin',''),(17302,3362,'_dt_mobile_page_padding_top',''),(17303,3362,'_dt_mobile_page_padding_right',''),(17304,3362,'_dt_mobile_page_padding_bottom',''),(17305,3362,'_dt_mobile_page_padding_left',''),(17306,3362,'_dt_fancy_header_layout_heading',''),(17307,3362,'_dt_fancy_header_title_aligment','all_left'),(17278,3362,'_dt_sidebar_position','disabled'),(17116,3355,'_dt_fancy_header_padding-bottom','0px'),(1241,2379,'_wp_attached_file','2022/08/QC-Logos-single-1-scaled.gif'),(1242,2379,'_wp_attachment_metadata','a:7:{s:5:\"width\";i:2560;s:6:\"height\";i:294;s:4:\"file\";s:36:\"2022/08/QC-Logos-single-1-scaled.gif\";s:8:\"filesize\";i:74447;s:5:\"sizes\";a:12:{s:6:\"medium\";a:5:{s:4:\"file\";s:28:\"QC-Logos-single-1-300x34.gif\";s:5:\"width\";i:300;s:6:\"height\";i:34;s:9:\"mime-type\";s:9:\"image/gif\";s:8:\"filesize\";i:3066;}s:5:\"large\";a:5:{s:4:\"file\";s:30:\"QC-Logos-single-1-1024x118.gif\";s:5:\"width\";i:1024;s:6:\"height\";i:118;s:9:\"mime-type\";s:9:\"image/gif\";s:8:\"filesize\";i:19571;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:29:\"QC-Logos-single-1-150x150.gif\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/gif\";s:8:\"filesize\";i:3799;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:28:\"QC-Logos-single-1-768x88.gif\";s:5:\"width\";i:768;s:6:\"height\";i:88;s:9:\"mime-type\";s:9:\"image/gif\";s:8:\"filesize\";i:12637;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:30:\"QC-Logos-single-1-1536x176.gif\";s:5:\"width\";i:1536;s:6:\"height\";i:176;s:9:\"mime-type\";s:9:\"image/gif\";s:8:\"filesize\";i:35152;}s:9:\"2048x2048\";a:5:{s:4:\"file\";s:30:\"QC-Logos-single-1-2048x235.gif\";s:5:\"width\";i:2048;s:6:\"height\";i:235;s:9:\"mime-type\";s:9:\"image/gif\";s:8:\"filesize\";i:52307;}s:21:\"woocommerce_thumbnail\";a:6:{s:4:\"file\";s:29:\"QC-Logos-single-1-300x300.gif\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/gif\";s:8:\"filesize\";i:10374;s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:5:{s:4:\"file\";s:28:\"QC-Logos-single-1-600x69.gif\";s:5:\"width\";i:600;s:6:\"height\";i:69;s:9:\"mime-type\";s:9:\"image/gif\";s:8:\"filesize\";i:8645;}s:29:\"woocommerce_gallery_thumbnail\";a:5:{s:4:\"file\";s:29:\"QC-Logos-single-1-200x200.gif\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/gif\";s:8:\"filesize\";i:5555;}s:12:\"shop_catalog\";a:5:{s:4:\"file\";s:29:\"QC-Logos-single-1-300x300.gif\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/gif\";s:8:\"filesize\";i:10374;}s:11:\"shop_single\";a:5:{s:4:\"file\";s:28:\"QC-Logos-single-1-600x69.gif\";s:5:\"width\";i:600;s:6:\"height\";i:69;s:9:\"mime-type\";s:9:\"image/gif\";s:8:\"filesize\";i:8645;}s:14:\"shop_thumbnail\";a:5:{s:4:\"file\";s:29:\"QC-Logos-single-1-200x200.gif\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/gif\";s:8:\"filesize\";i:5555;}}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:{}}s:14:\"original_image\";s:21:\"QC-Logos-single-1.gif\";}'),(22772,3609,'_dt_fancy_header_responsiveness_heading',''),(22773,3609,'_dt_fancy_header_responsiveness','enabled'),(22774,3609,'_dt_fancy_header_responsiveness_switch','778px'),(22775,3609,'_dt_fancy_header_responsive_height','140'),(22776,3609,'_dt_fancy_header_responsive_font_size','30'),(22777,3609,'_dt_fancy_header_responsive_title_line_height','38'),(22399,3604,'_dt_fancy_header_responsive_subtitle_font_size','20'),(22402,3604,'the7_fancy_title_css','#main {\n  padding-top: 1%;\n}\n.fancy-header {\n  background-image: url(\'https://farmchemie.yasithawd.com/wp-content/uploads/2023/09/LAYER-Vitamin-Premix_300px.png\');\n  background-repeat: no-repeat;\n  background-position: center center;\n  background-size: auto auto;\n  background-color: #ffffff;\n}\n.mobile-false .fancy-header {\n  background-attachment: scroll;\n}\n.fancy-header .wf-wrap {\n  min-height: 140px;\n  padding-top: 0px;\n  padding-bottom: 0px;\n}\n.fancy-header .fancy-title {\n  font-size: 32px;\n  line-height: 36px;\n  color: #079547;\n  text-transform: none;\n}\n.fancy-header .fancy-subtitle {\n  font-size: 24px;\n  line-height: 26px;\n  color: #792c8a;\n  text-transform: none;\n}\n.fancy-header .breadcrumbs {\n  color: #ffffff;\n}\n.fancy-header-overlay {\n  background: rgba(0,0,0,0.5);\n}\n@media screen and (max-width: 778px) {\n  .fancy-header .wf-wrap {\n    min-height: 140px;\n  }\n  .fancy-header .fancy-title {\n    font-size: 30px;\n    line-height: 38px;\n  }\n  .fancy-header .fancy-subtitle {\n    font-size: 20px;\n    line-height: 28px;\n  }\n  .fancy-header.breadcrumbs-mobile-off .breadcrumbs {\n    display: none;\n  }\n  #fancy-header > .wf-wrap {\n    flex-flow: column wrap;\n    align-items: center;\n    justify-content: center;\n    padding-bottom: 0px !important;\n  }\n  .fancy-header.title-left .breadcrumbs {\n    text-align: center;\n    float: none;\n  }\n  .breadcrumbs {\n    margin-bottom: 10px;\n  }\n  .breadcrumbs.breadcrumbs-bg {\n    margin-top: 10px;\n  }\n  .fancy-header.title-right .breadcrumbs {\n    margin: 10px 0 10px 0;\n  }\n  #fancy-header .hgroup,\n  #fancy-header .breadcrumbs {\n    text-align: center;\n  }\n  .fancy-header .hgroup {\n    padding-bottom: 5px;\n  }\n  .breadcrumbs-off .hgroup {\n    padding-bottom: 5px;\n  }\n  .title-right .hgroup {\n    padding: 0 0 5px 0;\n  }\n  .title-right.breadcrumbs-off .hgroup {\n    padding-top: 5px;\n  }\n  .title-left.disabled-bg .breadcrumbs {\n    margin-bottom: 0;\n  }\n}\n'),(22401,3604,'_dt_fancy_header_responsive_breadcrumbs','disabled'),(12921,2909,'_wpb_shortcodes_custom_css','.vc_custom_1684836308288{margin-top: 15px !important;}.vc_custom_1684836047081{margin-top: 15px !important;}.vc_custom_1684836055469{margin-top: 15px !important;}'),(22400,3604,'_dt_fancy_header_responsive_subtitle_line_height','28'),(17106,3355,'_dt_page_overrides_bottom_margin',''),(17107,3355,'_dt_page_overrides_left_margin',''),(17108,3355,'_dt_mobile_page_padding_top',''),(17109,3355,'_dt_mobile_page_padding_right',''),(17110,3355,'_dt_mobile_page_padding_bottom',''),(17111,3355,'_dt_mobile_page_padding_left',''),(17112,3355,'_dt_fancy_header_layout_heading',''),(17113,3355,'_dt_fancy_header_title_aligment','all_left'),(17114,3355,'_dt_fancy_header_height','140'),(17115,3355,'_dt_fancy_header_padding-top','0px'),(22749,3609,'_dt_fancy_header_text_transform','none'),(22750,3609,'_dt_fancy_header_title_color_mode','color'),(22751,3609,'_dt_fancy_header_title_color','#079547'),(22752,3609,'_dt_fancy_header_subtitle_heading',''),(22753,3609,'_dt_fancy_header_subtitle',''),(22754,3609,'_dt_fancy_header_subtitle_font_size','24'),(22755,3609,'_dt_fancy_header_subtitle_line_height','26'),(22756,3609,'_dt_fancy_header_subtitle_text_transform','none'),(22757,3609,'_dt_fancy_header_subtitle_color_mode','color'),(22758,3609,'_dt_fancy_header_subtitle_color','#792c8a'),(22759,3609,'_dt_fancy_header_bg_heading',''),(22760,3609,'_dt_fancy_header_bg_color','#ffffff'),(22761,3609,'_dt_fancy_header_bg_image_origin','custom'),(22762,3609,'_dt_fancy_header_bg_image','a:1:{i:0;i:3901;}'),(22398,3604,'_dt_fancy_header_responsive_title_line_height','38'),(22397,3604,'_dt_fancy_header_responsive_font_size','30'),(22396,3604,'_dt_fancy_header_responsive_height','140'),(22395,3604,'_dt_fancy_header_responsiveness_switch','778px'),(22394,3604,'_dt_fancy_header_responsiveness','enabled'),(22393,3604,'_dt_fancy_header_responsiveness_heading',''),(22392,3604,'_dt_fancy_header_bg_parallax','0.5'),(22391,3604,'_dt_fancy_header_scroll_effect','default'),(22390,3604,'_dt_fancy_header_bg_overlay_opacity','50'),(22389,3604,'_dt_fancy_header_overlay_color','#000'),(22388,3604,'_dt_fancy_header_bg_overlay','0'),(22387,3604,'_dt_fancy_header_bg_fullscreen','0'),(22386,3604,'_dt_fancy_header_bg_position_y','center'),(22385,3604,'_dt_fancy_header_bg_position_x','center'),(22384,3604,'_dt_fancy_header_bg_repeat','no-repeat'),(22383,3604,'_dt_fancy_header_bg_image','a:1:{i:0;i:3910;}'),(17516,3366,'_dt_fancy_header_subtitle_text_transform','none'),(17353,3362,'_edit_lock','1694428489:1'),(17354,3362,'_edit_last','1'),(17355,3363,'_wp_attached_file','2023/08/AVI-Pharmasin_600px-x-600px.png'),(17356,3363,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:600;s:6:\"height\";i:600;s:4:\"file\";s:39:\"2023/08/AVI-Pharmasin_600px-x-600px.png\";s:8:\"filesize\";i:67503;s:5:\"sizes\";a:4:{s:6:\"medium\";a:5:{s:4:\"file\";s:39:\"AVI-Pharmasin_600px-x-600px-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:50184;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:39:\"AVI-Pharmasin_600px-x-600px-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:14542;}s:21:\"woocommerce_thumbnail\";a:6:{s:4:\"file\";s:39:\"AVI-Pharmasin_600px-x-600px-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:50184;s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:5:{s:4:\"file\";s:39:\"AVI-Pharmasin_600px-x-600px-200x200.png\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:23935;}}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:{}}}'),(17357,3364,'_wp_attached_file','2023/08/AVI-Pharmasin_logo.png'),(17358,3364,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:300;s:6:\"height\";i:109;s:4:\"file\";s:30:\"2023/08/AVI-Pharmasin_logo.png\";s:8:\"filesize\";i:2147;s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:30:\"AVI-Pharmasin_logo-150x109.png\";s:5:\"width\";i:150;s:6:\"height\";i:109;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:5485;}s:29:\"woocommerce_gallery_thumbnail\";a:5:{s:4:\"file\";s:30:\"AVI-Pharmasin_logo-200x109.png\";s:5:\"width\";i:200;s:6:\"height\";i:109;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:5678;}}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:{}}}'),(17359,3365,'total_sales','0'),(17360,3365,'_tax_status','taxable'),(17361,3365,'_tax_class',''),(17362,3365,'_manage_stock','no'),(17363,3365,'_backorders','no'),(17364,3365,'_sold_individually','no'),(17365,3365,'_virtual','no'),(17366,3365,'_downloadable','no'),(17367,3365,'_download_limit','-1'),(17368,3365,'_download_expiry','-1'),(17515,3366,'_dt_fancy_header_subtitle_line_height','26'),(17370,3365,'_stock',NULL),(17371,3365,'_stock_status','instock'),(17372,3365,'_wc_average_rating','0'),(17373,3365,'_wc_review_count','0'),(17374,3365,'_product_version','8.0.2'),(17375,3365,'_dt_sidebar_position','disabled'),(17376,3365,'_dt_sidebar_widgetarea_id','sidebar_1'),(17377,3365,'_dt_sidebar_hide_on_mobile','0'),(17378,3365,'_dt_footer_show','1'),(17379,3365,'_dt_footer_widgetarea_id','sidebar_2'),(17380,3365,'_dt_footer_hide_on_mobile','0'),(17381,3365,'_dt_header_title','fancy'),(17382,3365,'_dt_header_background','normal'),(17383,3365,'_dt_header_background_below_slideshow','disabled'),(17384,3365,'_dt_header_transparent_bg_color_scheme','light'),(17385,3365,'_dt_header_transparent_top_bar_bg_color','#ffffff'),(17386,3365,'_dt_header_transparent_top_bar_bg_opacity','25'),(17387,3365,'_dt_header_transparent_bg_color','#000000'),(17388,3365,'_dt_header_transparent_bg_opacity','50'),(17389,3365,'_dt_header_disabled_background','normal'),(17390,3365,'_dt_header_disabled_transparent_bg_color_scheme','light'),(17391,3365,'_dt_header_disabled_transparent_top_bar_bg_color','#ffffff'),(17392,3365,'_dt_header_disabled_transparent_top_bar_bg_opacity','25'),(17393,3365,'_dt_header_disabled_transparent_bg_color','#000000'),(17394,3365,'_dt_header_disabled_transparent_bg_opacity','50'),(17395,3365,'_dt_page_overrides_top_margin','1%'),(17396,3365,'_dt_page_overrides_right_margin',''),(17397,3365,'_dt_page_overrides_bottom_margin',''),(17398,3365,'_dt_page_overrides_left_margin',''),(17399,3365,'_dt_mobile_page_padding_top',''),(17400,3365,'_dt_mobile_page_padding_right',''),(17401,3365,'_dt_mobile_page_padding_bottom',''),(17402,3365,'_dt_mobile_page_padding_left',''),(17403,3365,'_dt_fancy_header_layout_heading',''),(17404,3365,'_dt_fancy_header_title_aligment','all_left'),(17405,3365,'_dt_fancy_header_height','140'),(17406,3365,'_dt_fancy_header_padding-top','0px'),(17407,3365,'_dt_fancy_header_padding-bottom','0px'),(17408,3365,'_dt_fancy_header_breadcrumbs_heading',''),(17409,3365,'_dt_fancy_header_breadcrumbs','disabled'),(17410,3365,'_dt_fancy_header_breadcrumbs_text_color','#ffffff'),(17411,3365,'_dt_fancy_header_breadcrumbs_bg_color','disabled'),(17412,3365,'_dt_fancy_header_title_heading',''),(17413,3365,'_dt_fancy_header_title_mode','custom'),(17414,3365,'_dt_fancy_header_title',''),(17415,3365,'_dt_fancy_header_title_font_size','32'),(17416,3365,'_dt_fancy_header_title_line_height','36'),(17417,3365,'_dt_fancy_header_text_transform','none'),(17418,3365,'_dt_fancy_header_title_color_mode','color'),(17419,3365,'_dt_fancy_header_title_color','#079547'),(17420,3365,'_dt_fancy_header_subtitle_heading',''),(17421,3365,'_dt_fancy_header_subtitle',''),(17422,3365,'_dt_fancy_header_subtitle_font_size','24'),(17423,3365,'_dt_fancy_header_subtitle_line_height','26'),(17424,3365,'_dt_fancy_header_subtitle_text_transform','none'),(17425,3365,'_dt_fancy_header_subtitle_color_mode','color'),(17426,3365,'_dt_fancy_header_subtitle_color','#792c8a'),(17427,3365,'_dt_fancy_header_bg_heading',''),(17428,3365,'_dt_fancy_header_bg_color','#ffffff'),(17429,3365,'_dt_fancy_header_bg_image_origin','custom'),(17430,3365,'_dt_fancy_header_bg_image','a:1:{i:0;i:3759;}'),(17431,3365,'_dt_fancy_header_bg_repeat','no-repeat'),(17432,3365,'_dt_fancy_header_bg_position_x','center'),(17433,3365,'_dt_fancy_header_bg_position_y','center'),(17434,3365,'_dt_fancy_header_bg_fullscreen','0'),(17435,3365,'_dt_fancy_header_bg_overlay','0'),(17436,3365,'_dt_fancy_header_overlay_color','#000'),(17437,3365,'_dt_fancy_header_bg_overlay_opacity','50'),(17438,3365,'_dt_fancy_header_scroll_effect','default'),(17439,3365,'_dt_fancy_header_bg_parallax','0.5'),(17440,3365,'_dt_fancy_header_responsiveness_heading',''),(17441,3365,'_dt_fancy_header_responsiveness','enabled'),(17442,3365,'_dt_fancy_header_responsiveness_switch','778px'),(17443,3365,'_dt_fancy_header_responsive_height','140'),(17444,3365,'_dt_fancy_header_responsive_font_size','30'),(17445,3365,'_dt_fancy_header_responsive_title_line_height','38'),(17446,3365,'_dt_fancy_header_responsive_subtitle_font_size','20'),(17447,3365,'_dt_fancy_header_responsive_subtitle_line_height','28'),(17448,3365,'_dt_fancy_header_responsive_breadcrumbs','disabled'),(17449,3365,'the7_fancy_title_css','#main {\n  padding-top: 1%;\n}\n.fancy-header {\n  background-image: url(\'https://farmchemie.yasithawd.com/wp-content/uploads/2023/08/Felimazole_300px-1.png\');\n  background-repeat: no-repeat;\n  background-position: center center;\n  background-size: auto auto;\n  background-color: #ffffff;\n}\n.mobile-false .fancy-header {\n  background-attachment: scroll;\n}\n.fancy-header .wf-wrap {\n  min-height: 140px;\n  padding-top: 0px;\n  padding-bottom: 0px;\n}\n.fancy-header .fancy-title {\n  font-size: 32px;\n  line-height: 36px;\n  color: #079547;\n  text-transform: none;\n}\n.fancy-header .fancy-subtitle {\n  font-size: 24px;\n  line-height: 26px;\n  color: #792c8a;\n  text-transform: none;\n}\n.fancy-header .breadcrumbs {\n  color: #ffffff;\n}\n.fancy-header-overlay {\n  background: rgba(0,0,0,0.5);\n}\n@media screen and (max-width: 778px) {\n  .fancy-header .wf-wrap {\n    min-height: 140px;\n  }\n  .fancy-header .fancy-title {\n    font-size: 30px;\n    line-height: 38px;\n  }\n  .fancy-header .fancy-subtitle {\n    font-size: 20px;\n    line-height: 28px;\n  }\n  .fancy-header.breadcrumbs-mobile-off .breadcrumbs {\n    display: none;\n  }\n  #fancy-header > .wf-wrap {\n    flex-flow: column wrap;\n    align-items: center;\n    justify-content: center;\n    padding-bottom: 0px !important;\n  }\n  .fancy-header.title-left .breadcrumbs {\n    text-align: center;\n    float: none;\n  }\n  .breadcrumbs {\n    margin-bottom: 10px;\n  }\n  .breadcrumbs.breadcrumbs-bg {\n    margin-top: 10px;\n  }\n  .fancy-header.title-right .breadcrumbs {\n    margin: 10px 0 10px 0;\n  }\n  #fancy-header .hgroup,\n  #fancy-header .breadcrumbs {\n    text-align: center;\n  }\n  .fancy-header .hgroup {\n    padding-bottom: 5px;\n  }\n  .breadcrumbs-off .hgroup {\n    padding-bottom: 5px;\n  }\n  .title-right .hgroup {\n    padding: 0 0 5px 0;\n  }\n  .title-right.breadcrumbs-off .hgroup {\n    padding-top: 5px;\n  }\n  .title-left.disabled-bg .breadcrumbs {\n    margin-bottom: 0;\n  }\n}\n'),(17514,3366,'_dt_fancy_header_subtitle_font_size','24'),(17450,3365,'_edit_lock','1694855128:1'),(17451,3365,'_edit_last','1'),(17452,3366,'total_sales','0'),(17453,3366,'_tax_status','taxable'),(17454,3366,'_tax_class',''),(17455,3366,'_manage_stock','no'),(17456,3366,'_backorders','no'),(17457,3366,'_sold_individually','no'),(17458,3366,'_virtual','no'),(17459,3366,'_downloadable','no'),(17460,3366,'_download_limit','-1'),(17461,3366,'_download_expiry','-1'),(17462,3366,'_stock',NULL),(17463,3366,'_stock_status','instock'),(17464,3366,'_wc_average_rating','0'),(17465,3366,'_wc_review_count','0'),(17466,3366,'_product_version','8.0.2'),(17467,3366,'_dt_sidebar_position','disabled'),(17468,3366,'_dt_sidebar_widgetarea_id','sidebar_1'),(17469,3366,'_dt_sidebar_hide_on_mobile','0'),(17470,3366,'_dt_footer_show','1'),(17471,3366,'_dt_footer_widgetarea_id','sidebar_2'),(17472,3366,'_dt_footer_hide_on_mobile','0'),(17473,3366,'_dt_header_title','fancy'),(17474,3366,'_dt_header_background','normal'),(17475,3366,'_dt_header_background_below_slideshow','disabled'),(17476,3366,'_dt_header_transparent_bg_color_scheme','light'),(17477,3366,'_dt_header_transparent_top_bar_bg_color','#ffffff'),(17478,3366,'_dt_header_transparent_top_bar_bg_opacity','25'),(17479,3366,'_dt_header_transparent_bg_color','#000000'),(17480,3366,'_dt_header_transparent_bg_opacity','50'),(17481,3366,'_dt_header_disabled_background','normal'),(17482,3366,'_dt_header_disabled_transparent_bg_color_scheme','light'),(17483,3366,'_dt_header_disabled_transparent_top_bar_bg_color','#ffffff'),(17484,3366,'_dt_header_disabled_transparent_top_bar_bg_opacity','25'),(17485,3366,'_dt_header_disabled_transparent_bg_color','#000000'),(17486,3366,'_dt_header_disabled_transparent_bg_opacity','50'),(17487,3366,'_dt_page_overrides_top_margin','1%'),(17488,3366,'_dt_page_overrides_right_margin',''),(17489,3366,'_dt_page_overrides_bottom_margin',''),(17490,3366,'_dt_page_overrides_left_margin',''),(17491,3366,'_dt_mobile_page_padding_top',''),(17492,3366,'_dt_mobile_page_padding_right',''),(17493,3366,'_dt_mobile_page_padding_bottom',''),(17494,3366,'_dt_mobile_page_padding_left',''),(17495,3366,'_dt_fancy_header_layout_heading',''),(17496,3366,'_dt_fancy_header_title_aligment','all_left'),(17497,3366,'_dt_fancy_header_height','140'),(17498,3366,'_dt_fancy_header_padding-top','0px'),(17499,3366,'_dt_fancy_header_padding-bottom','0px'),(17500,3366,'_dt_fancy_header_breadcrumbs_heading',''),(17501,3366,'_dt_fancy_header_breadcrumbs','disabled'),(17502,3366,'_dt_fancy_header_breadcrumbs_text_color','#ffffff'),(17503,3366,'_dt_fancy_header_breadcrumbs_bg_color','disabled'),(17504,3366,'_dt_fancy_header_title_heading',''),(17505,3366,'_dt_fancy_header_title_mode','custom'),(17506,3366,'_dt_fancy_header_title',''),(17507,3366,'_dt_fancy_header_title_font_size','32'),(17508,3366,'_dt_fancy_header_title_line_height','36'),(17509,3366,'_dt_fancy_header_text_transform','none'),(17510,3366,'_dt_fancy_header_title_color_mode','color'),(17511,3366,'_dt_fancy_header_title_color','#079547'),(17512,3366,'_dt_fancy_header_subtitle_heading',''),(17513,3366,'_dt_fancy_header_subtitle',''),(1218,2365,'_wp_attached_file','2022/08/BrowserPreview8_tmp.gif'),(1219,2365,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1080;s:6:\"height\";i:295;s:4:\"file\";s:31:\"2022/08/BrowserPreview8_tmp.gif\";s:8:\"filesize\";i:225515;s:5:\"sizes\";a:10:{s:6:\"medium\";a:5:{s:4:\"file\";s:30:\"BrowserPreview8_tmp-300x82.gif\";s:5:\"width\";i:300;s:6:\"height\";i:82;s:9:\"mime-type\";s:9:\"image/gif\";s:8:\"filesize\";i:5157;}s:5:\"large\";a:5:{s:4:\"file\";s:32:\"BrowserPreview8_tmp-1024x280.gif\";s:5:\"width\";i:1024;s:6:\"height\";i:280;s:9:\"mime-type\";s:9:\"image/gif\";s:8:\"filesize\";i:28433;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:31:\"BrowserPreview8_tmp-150x150.gif\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/gif\";s:8:\"filesize\";i:3868;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:31:\"BrowserPreview8_tmp-768x210.gif\";s:5:\"width\";i:768;s:6:\"height\";i:210;s:9:\"mime-type\";s:9:\"image/gif\";s:8:\"filesize\";i:16182;}s:21:\"woocommerce_thumbnail\";a:6:{s:4:\"file\";s:31:\"BrowserPreview8_tmp-300x295.gif\";s:5:\"width\";i:300;s:6:\"height\";i:295;s:9:\"mime-type\";s:9:\"image/gif\";s:8:\"filesize\";i:13153;s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:5:{s:4:\"file\";s:31:\"BrowserPreview8_tmp-600x164.gif\";s:5:\"width\";i:600;s:6:\"height\";i:164;s:9:\"mime-type\";s:9:\"image/gif\";s:8:\"filesize\";i:9780;}s:29:\"woocommerce_gallery_thumbnail\";a:5:{s:4:\"file\";s:31:\"BrowserPreview8_tmp-200x200.gif\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/gif\";s:8:\"filesize\";i:6250;}s:12:\"shop_catalog\";a:5:{s:4:\"file\";s:31:\"BrowserPreview8_tmp-300x295.gif\";s:5:\"width\";i:300;s:6:\"height\";i:295;s:9:\"mime-type\";s:9:\"image/gif\";s:8:\"filesize\";i:13153;}s:11:\"shop_single\";a:5:{s:4:\"file\";s:31:\"BrowserPreview8_tmp-600x164.gif\";s:5:\"width\";i:600;s:6:\"height\";i:164;s:9:\"mime-type\";s:9:\"image/gif\";s:8:\"filesize\";i:9780;}s:14:\"shop_thumbnail\";a:5:{s:4:\"file\";s:31:\"BrowserPreview8_tmp-200x200.gif\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/gif\";s:8:\"filesize\";i:6250;}}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:{}}}'),(17117,3355,'_dt_fancy_header_breadcrumbs_heading',''),(17118,3355,'_dt_fancy_header_breadcrumbs','disabled'),(17119,3355,'_dt_fancy_header_breadcrumbs_text_color','#ffffff'),(17120,3355,'_dt_fancy_header_breadcrumbs_bg_color','disabled'),(17121,3355,'_dt_fancy_header_title_heading',''),(17122,3355,'_dt_fancy_header_title_mode','custom'),(17123,3355,'_dt_fancy_header_title',''),(17124,3355,'_dt_fancy_header_title_font_size','32'),(17125,3355,'_dt_fancy_header_title_line_height','36'),(17126,3355,'_dt_fancy_header_text_transform','none'),(17127,3355,'_dt_fancy_header_title_color_mode','color'),(17128,3355,'_dt_fancy_header_title_color','#079547'),(17129,3355,'_dt_fancy_header_subtitle_heading',''),(17130,3355,'_dt_fancy_header_subtitle',''),(17131,3355,'_dt_fancy_header_subtitle_font_size','24'),(17132,3355,'_dt_fancy_header_subtitle_line_height','26'),(17133,3355,'_dt_fancy_header_subtitle_text_transform','none'),(17134,3355,'_dt_fancy_header_subtitle_color_mode','color'),(17135,3355,'_dt_fancy_header_subtitle_color','#792c8a'),(17136,3355,'_dt_fancy_header_bg_heading',''),(17137,3355,'_dt_fancy_header_bg_color','#ffffff'),(17138,3355,'_dt_fancy_header_bg_image_origin','custom'),(17139,3355,'_dt_fancy_header_bg_image','a:1:{i:0;i:3357;}'),(17140,3355,'_dt_fancy_header_bg_repeat','no-repeat'),(17141,3355,'_dt_fancy_header_bg_position_x','center'),(17142,3355,'_dt_fancy_header_bg_position_y','center'),(17143,3355,'_dt_fancy_header_bg_fullscreen','0'),(17144,3355,'_dt_fancy_header_bg_overlay','0'),(17145,3355,'_dt_fancy_header_overlay_color','#000'),(17146,3355,'_dt_fancy_header_bg_overlay_opacity','50'),(17147,3355,'_dt_fancy_header_scroll_effect','default'),(17148,3355,'_dt_fancy_header_bg_parallax','0.5'),(17149,3355,'_dt_fancy_header_responsiveness_heading',''),(17150,3355,'_dt_fancy_header_responsiveness','enabled'),(1658,2518,'_wp_attached_file','2022/09/linkedin.png'),(1659,2518,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1691;s:6:\"height\";i:1691;s:4:\"file\";s:20:\"2022/09/linkedin.png\";s:8:\"filesize\";i:41663;s:5:\"sizes\";a:11:{s:6:\"medium\";a:5:{s:4:\"file\";s:20:\"linkedin-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:9905;}s:5:\"large\";a:5:{s:4:\"file\";s:22:\"linkedin-1024x1024.png\";s:5:\"width\";i:1024;s:6:\"height\";i:1024;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:39180;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:20:\"linkedin-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:4832;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:20:\"linkedin-768x768.png\";s:5:\"width\";i:768;s:6:\"height\";i:768;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:27920;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:22:\"linkedin-1536x1536.png\";s:5:\"width\";i:1536;s:6:\"height\";i:1536;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:64508;}s:21:\"woocommerce_thumbnail\";a:6:{s:4:\"file\";s:20:\"linkedin-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:9905;s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:5:{s:4:\"file\";s:20:\"linkedin-600x600.png\";s:5:\"width\";i:600;s:6:\"height\";i:600;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:21157;}s:29:\"woocommerce_gallery_thumbnail\";a:5:{s:4:\"file\";s:20:\"linkedin-200x200.png\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:6350;}s:12:\"shop_catalog\";a:5:{s:4:\"file\";s:20:\"linkedin-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:9905;}s:11:\"shop_single\";a:5:{s:4:\"file\";s:20:\"linkedin-600x600.png\";s:5:\"width\";i:600;s:6:\"height\";i:600;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:21157;}s:14:\"shop_thumbnail\";a:5:{s:4:\"file\";s:20:\"linkedin-200x200.png\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:6350;}}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:{}}}'),(1660,2519,'_wp_attached_file','2022/09/Youtube.png'),(1661,2519,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1225;s:6:\"height\";i:852;s:4:\"file\";s:19:\"2022/09/Youtube.png\";s:8:\"filesize\";i:18598;s:5:\"sizes\";a:10:{s:6:\"medium\";a:5:{s:4:\"file\";s:19:\"Youtube-300x209.png\";s:5:\"width\";i:300;s:6:\"height\";i:209;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:6372;}s:5:\"large\";a:5:{s:4:\"file\";s:20:\"Youtube-1024x712.png\";s:5:\"width\";i:1024;s:6:\"height\";i:712;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:25980;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:19:\"Youtube-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:2545;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:19:\"Youtube-768x534.png\";s:5:\"width\";i:768;s:6:\"height\";i:534;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:18624;}s:21:\"woocommerce_thumbnail\";a:6:{s:4:\"file\";s:19:\"Youtube-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:5400;s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:5:{s:4:\"file\";s:19:\"Youtube-600x417.png\";s:5:\"width\";i:600;s:6:\"height\";i:417;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:13905;}s:29:\"woocommerce_gallery_thumbnail\";a:5:{s:4:\"file\";s:19:\"Youtube-200x200.png\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:3421;}s:12:\"shop_catalog\";a:5:{s:4:\"file\";s:19:\"Youtube-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:5400;}s:11:\"shop_single\";a:5:{s:4:\"file\";s:19:\"Youtube-600x417.png\";s:5:\"width\";i:600;s:6:\"height\";i:417;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:13905;}s:14:\"shop_thumbnail\";a:5:{s:4:\"file\";s:19:\"Youtube-200x200.png\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:3421;}}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:{}}}'),(1662,2520,'_wp_attached_file','2022/09/1-Youtube.png'),(1663,2520,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1225;s:6:\"height\";i:852;s:4:\"file\";s:21:\"2022/09/1-Youtube.png\";s:8:\"filesize\";i:18598;s:5:\"sizes\";a:10:{s:6:\"medium\";a:5:{s:4:\"file\";s:21:\"1-Youtube-300x209.png\";s:5:\"width\";i:300;s:6:\"height\";i:209;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:6372;}s:5:\"large\";a:5:{s:4:\"file\";s:22:\"1-Youtube-1024x712.png\";s:5:\"width\";i:1024;s:6:\"height\";i:712;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:25980;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:21:\"1-Youtube-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:2545;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:21:\"1-Youtube-768x534.png\";s:5:\"width\";i:768;s:6:\"height\";i:534;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:18624;}s:21:\"woocommerce_thumbnail\";a:6:{s:4:\"file\";s:21:\"1-Youtube-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:5400;s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:5:{s:4:\"file\";s:21:\"1-Youtube-600x417.png\";s:5:\"width\";i:600;s:6:\"height\";i:417;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:13905;}s:29:\"woocommerce_gallery_thumbnail\";a:5:{s:4:\"file\";s:21:\"1-Youtube-200x200.png\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:3421;}s:12:\"shop_catalog\";a:5:{s:4:\"file\";s:21:\"1-Youtube-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:5400;}s:11:\"shop_single\";a:5:{s:4:\"file\";s:21:\"1-Youtube-600x417.png\";s:5:\"width\";i:600;s:6:\"height\";i:417;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:13905;}s:14:\"shop_thumbnail\";a:5:{s:4:\"file\";s:21:\"1-Youtube-200x200.png\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:3421;}}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:{}}}'),(22748,3609,'_dt_fancy_header_title_line_height','36'),(22747,3609,'_dt_fancy_header_title_font_size','32'),(22746,3609,'_dt_fancy_header_title',''),(22745,3609,'_dt_fancy_header_title_mode','custom'),(22744,3609,'_dt_fancy_header_title_heading',''),(22743,3609,'_dt_fancy_header_breadcrumbs_bg_color','disabled'),(22742,3609,'_dt_fancy_header_breadcrumbs_text_color','#ffffff'),(22741,3609,'_dt_fancy_header_breadcrumbs','disabled'),(22740,3609,'_dt_fancy_header_breadcrumbs_heading',''),(22739,3609,'_dt_fancy_header_padding-bottom','0px'),(22738,3609,'_dt_fancy_header_padding-top','0px'),(22737,3609,'_dt_fancy_header_height','140'),(22736,3609,'_dt_fancy_header_title_aligment','all_left'),(22660,3608,'_dt_fancy_header_subtitle_line_height','26'),(22659,3608,'_dt_fancy_header_subtitle_font_size','24'),(22658,3608,'_dt_fancy_header_subtitle',''),(22657,3608,'_dt_fancy_header_subtitle_heading',''),(22656,3608,'_dt_fancy_header_title_color','#079547'),(22655,3608,'_dt_fancy_header_title_color_mode','color'),(22654,3608,'_dt_fancy_header_text_transform','none'),(22653,3608,'_dt_fancy_header_title_line_height','36'),(22652,3608,'_dt_fancy_header_title_font_size','32'),(22651,3608,'_dt_fancy_header_title',''),(22650,3608,'_dt_fancy_header_title_mode','custom'),(22649,3608,'_dt_fancy_header_title_heading',''),(22648,3608,'_dt_fancy_header_breadcrumbs_bg_color','disabled'),(22647,3608,'_dt_fancy_header_breadcrumbs_text_color','#ffffff'),(22496,3605,'the7_fancy_title_css','#main {\n  padding-top: 1%;\n}\n.fancy-header {\n  background-image: url(\'https://farmchemie.yasithawd.com/wp-content/uploads/2023/09/Vitamin-Premix-Bag_300px.png\');\n  background-repeat: no-repeat;\n  background-position: center center;\n  background-size: auto auto;\n  background-color: #ffffff;\n}\n.mobile-false .fancy-header {\n  background-attachment: scroll;\n}\n.fancy-header .wf-wrap {\n  min-height: 140px;\n  padding-top: 0px;\n  padding-bottom: 0px;\n}\n.fancy-header .fancy-title {\n  font-size: 32px;\n  line-height: 36px;\n  color: #079547;\n  text-transform: none;\n}\n.fancy-header .fancy-subtitle {\n  font-size: 24px;\n  line-height: 26px;\n  color: #792c8a;\n  text-transform: none;\n}\n.fancy-header .breadcrumbs {\n  color: #ffffff;\n}\n.fancy-header-overlay {\n  background: rgba(0,0,0,0.5);\n}\n@media screen and (max-width: 778px) {\n  .fancy-header .wf-wrap {\n    min-height: 140px;\n  }\n  .fancy-header .fancy-title {\n    font-size: 30px;\n    line-height: 38px;\n  }\n  .fancy-header .fancy-subtitle {\n    font-size: 20px;\n    line-height: 28px;\n  }\n  .fancy-header.breadcrumbs-mobile-off .breadcrumbs {\n    display: none;\n  }\n  #fancy-header > .wf-wrap {\n    flex-flow: column wrap;\n    align-items: center;\n    justify-content: center;\n    padding-bottom: 0px !important;\n  }\n  .fancy-header.title-left .breadcrumbs {\n    text-align: center;\n    float: none;\n  }\n  .breadcrumbs {\n    margin-bottom: 10px;\n  }\n  .breadcrumbs.breadcrumbs-bg {\n    margin-top: 10px;\n  }\n  .fancy-header.title-right .breadcrumbs {\n    margin: 10px 0 10px 0;\n  }\n  #fancy-header .hgroup,\n  #fancy-header .breadcrumbs {\n    text-align: center;\n  }\n  .fancy-header .hgroup {\n    padding-bottom: 5px;\n  }\n  .breadcrumbs-off .hgroup {\n    padding-bottom: 5px;\n  }\n  .title-right .hgroup {\n    padding: 0 0 5px 0;\n  }\n  .title-right.breadcrumbs-off .hgroup {\n    padding-top: 5px;\n  }\n  .title-left.disabled-bg .breadcrumbs {\n    margin-bottom: 0;\n  }\n}\n'),(22495,3605,'_dt_fancy_header_responsive_breadcrumbs','disabled'),(22494,3605,'_dt_fancy_header_responsive_subtitle_line_height','28'),(22493,3605,'_dt_fancy_header_responsive_subtitle_font_size','20'),(22492,3605,'_dt_fancy_header_responsive_title_line_height','38'),(22491,3605,'_dt_fancy_header_responsive_font_size','30'),(22490,3605,'_dt_fancy_header_responsive_height','140'),(22488,3605,'_dt_fancy_header_responsiveness','enabled'),(22489,3605,'_dt_fancy_header_responsiveness_switch','778px'),(22487,3605,'_dt_fancy_header_responsiveness_heading',''),(22486,3605,'_dt_fancy_header_bg_parallax','0.5'),(22485,3605,'_dt_fancy_header_scroll_effect','default'),(22484,3605,'_dt_fancy_header_bg_overlay_opacity','50'),(22483,3605,'_dt_fancy_header_overlay_color','#000'),(22382,3604,'_dt_fancy_header_bg_image_origin','custom'),(22482,3605,'_dt_fancy_header_bg_overlay','0'),(22481,3605,'_dt_fancy_header_bg_fullscreen','0'),(22480,3605,'_dt_fancy_header_bg_position_y','center'),(22479,3605,'_dt_fancy_header_bg_position_x','center'),(22478,3605,'_dt_fancy_header_bg_repeat','no-repeat'),(22477,3605,'_dt_fancy_header_bg_image','a:1:{i:0;i:3915;}'),(22476,3605,'_dt_fancy_header_bg_image_origin','custom'),(22475,3605,'_dt_fancy_header_bg_color','#ffffff'),(22474,3605,'_dt_fancy_header_bg_heading',''),(22473,3605,'_dt_fancy_header_subtitle_color','#792c8a'),(22472,3605,'_dt_fancy_header_subtitle_color_mode','color'),(22471,3605,'_dt_fancy_header_subtitle_text_transform','none'),(22470,3605,'_dt_fancy_header_subtitle_line_height','26'),(22469,3605,'_dt_fancy_header_subtitle_font_size','24'),(22468,3605,'_dt_fancy_header_subtitle',''),(22467,3605,'_dt_fancy_header_subtitle_heading',''),(22466,3605,'_dt_fancy_header_title_color','#079547'),(22465,3605,'_dt_fancy_header_title_color_mode','color'),(22464,3605,'_dt_fancy_header_text_transform','none'),(22463,3605,'_dt_fancy_header_title_line_height','36'),(22462,3605,'_dt_fancy_header_title_font_size','32'),(22461,3605,'_dt_fancy_header_title',''),(22460,3605,'_dt_fancy_header_title_mode','custom'),(22459,3605,'_dt_fancy_header_title_heading',''),(22458,3605,'_dt_fancy_header_breadcrumbs_bg_color','disabled'),(22457,3605,'_dt_fancy_header_breadcrumbs_text_color','#ffffff'),(22456,3605,'_dt_fancy_header_breadcrumbs','disabled'),(22455,3605,'_dt_fancy_header_breadcrumbs_heading',''),(22454,3605,'_dt_fancy_header_padding-bottom','0px'),(22453,3605,'_dt_fancy_header_padding-top','0px'),(22452,3605,'_dt_fancy_header_height','140'),(22451,3605,'_dt_fancy_header_title_aligment','all_left'),(22450,3605,'_dt_fancy_header_layout_heading',''),(22449,3605,'_dt_mobile_page_padding_left',''),(22448,3605,'_dt_mobile_page_padding_bottom',''),(22447,3605,'_dt_mobile_page_padding_right',''),(22446,3605,'_dt_mobile_page_padding_top',''),(22445,3605,'_dt_page_overrides_left_margin',''),(22444,3605,'_dt_page_overrides_bottom_margin',''),(22443,3605,'_dt_page_overrides_right_margin',''),(22442,3605,'_dt_page_overrides_top_margin','1%'),(22441,3605,'_dt_header_disabled_transparent_bg_opacity','50'),(22440,3605,'_dt_header_disabled_transparent_bg_color','#000000'),(22439,3605,'_dt_header_disabled_transparent_top_bar_bg_opacity','25'),(16744,3331,'total_sales','0'),(16745,3331,'_tax_status','taxable'),(16746,3331,'_tax_class',''),(16747,3331,'_manage_stock','no'),(16748,3331,'_backorders','no'),(16749,3331,'_sold_individually','no'),(16750,3331,'_virtual','no'),(16751,3331,'_downloadable','no'),(16752,3331,'_download_limit','-1'),(16753,3331,'_download_expiry','-1'),(16754,3331,'_thumbnail_id','3332'),(16755,3331,'_stock',NULL),(16756,3331,'_stock_status','instock'),(16757,3331,'_wc_average_rating','0'),(16758,3331,'_wc_review_count','0'),(16759,3331,'_product_version','8.0.2'),(16760,3331,'_dt_sidebar_position','disabled'),(16761,3331,'_dt_sidebar_widgetarea_id','sidebar_1'),(16762,3331,'_dt_sidebar_hide_on_mobile','0'),(16763,3331,'_dt_footer_show','1'),(16764,3331,'_dt_footer_widgetarea_id','sidebar_2'),(16765,3331,'_dt_footer_hide_on_mobile','0'),(16766,3331,'_dt_header_title','fancy'),(16767,3331,'_dt_header_background','normal'),(16768,3331,'_dt_header_background_below_slideshow','disabled'),(16769,3331,'_dt_header_transparent_bg_color_scheme','light'),(16770,3331,'_dt_header_transparent_top_bar_bg_color','#ffffff'),(16771,3331,'_dt_header_transparent_top_bar_bg_opacity','25'),(16772,3331,'_dt_header_transparent_bg_color','#000000'),(16773,3331,'_dt_header_transparent_bg_opacity','50'),(16774,3331,'_dt_header_disabled_background','normal'),(16775,3331,'_dt_header_disabled_transparent_bg_color_scheme','light'),(16776,3331,'_dt_header_disabled_transparent_top_bar_bg_color','#ffffff'),(16777,3331,'_dt_header_disabled_transparent_top_bar_bg_opacity','25'),(1654,2516,'_wp_attached_file','2022/09/FB.png'),(1655,2516,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:544;s:6:\"height\";i:546;s:4:\"file\";s:14:\"2022/09/FB.png\";s:8:\"filesize\";i:15045;s:5:\"sizes\";a:6:{s:6:\"medium\";a:5:{s:4:\"file\";s:14:\"FB-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:14274;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:14:\"FB-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:6662;}s:21:\"woocommerce_thumbnail\";a:6:{s:4:\"file\";s:14:\"FB-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:14126;s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:5:{s:4:\"file\";s:14:\"FB-200x200.png\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:9188;}s:12:\"shop_catalog\";a:5:{s:4:\"file\";s:14:\"FB-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:14126;}s:14:\"shop_thumbnail\";a:5:{s:4:\"file\";s:14:\"FB-200x200.png\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:9188;}}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:{}}}'),(1656,2517,'_wp_attached_file','2022/09/IN.png'),(1657,2517,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:545;s:6:\"height\";i:546;s:4:\"file\";s:14:\"2022/09/IN.png\";s:8:\"filesize\";i:23316;s:5:\"sizes\";a:6:{s:6:\"medium\";a:5:{s:4:\"file\";s:14:\"IN-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:23690;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:14:\"IN-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:11208;}s:21:\"woocommerce_thumbnail\";a:6:{s:4:\"file\";s:14:\"IN-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:23535;s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:5:{s:4:\"file\";s:14:\"IN-200x200.png\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:15413;}s:12:\"shop_catalog\";a:5:{s:4:\"file\";s:14:\"IN-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:23535;}s:14:\"shop_thumbnail\";a:5:{s:4:\"file\";s:14:\"IN-200x200.png\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:15413;}}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:{}}}'),(1235,2376,'_wp_attached_file','2022/08/gif-logo3.gif'),(1236,2376,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:549;s:6:\"height\";i:150;s:4:\"file\";s:21:\"2022/08/gif-logo3.gif\";s:8:\"filesize\";i:91540;s:5:\"sizes\";a:6:{s:6:\"medium\";a:5:{s:4:\"file\";s:20:\"gif-logo3-300x82.gif\";s:5:\"width\";i:300;s:6:\"height\";i:82;s:9:\"mime-type\";s:9:\"image/gif\";s:8:\"filesize\";i:6026;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:21:\"gif-logo3-150x150.gif\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/gif\";s:8:\"filesize\";i:6616;}s:21:\"woocommerce_thumbnail\";a:6:{s:4:\"file\";s:21:\"gif-logo3-300x150.gif\";s:5:\"width\";i:300;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/gif\";s:8:\"filesize\";i:11335;s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:5:{s:4:\"file\";s:21:\"gif-logo3-200x150.gif\";s:5:\"width\";i:200;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/gif\";s:8:\"filesize\";i:8336;}s:12:\"shop_catalog\";a:5:{s:4:\"file\";s:21:\"gif-logo3-300x150.gif\";s:5:\"width\";i:300;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/gif\";s:8:\"filesize\";i:11335;}s:14:\"shop_thumbnail\";a:5:{s:4:\"file\";s:21:\"gif-logo3-200x150.gif\";s:5:\"width\";i:200;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/gif\";s:8:\"filesize\";i:8336;}}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:{}}}'),(22380,3604,'_dt_fancy_header_bg_heading',''),(22379,3604,'_dt_fancy_header_subtitle_color','#792c8a'),(22378,3604,'_dt_fancy_header_subtitle_color_mode','color'),(22377,3604,'_dt_fancy_header_subtitle_text_transform','none'),(22376,3604,'_dt_fancy_header_subtitle_line_height','26'),(22374,3604,'_dt_fancy_header_subtitle',''),(22375,3604,'_dt_fancy_header_subtitle_font_size','24'),(22373,3604,'_dt_fancy_header_subtitle_heading',''),(22372,3604,'_dt_fancy_header_title_color','#079547'),(22371,3604,'_dt_fancy_header_title_color_mode','color'),(22370,3604,'_dt_fancy_header_text_transform','none'),(22369,3604,'_dt_fancy_header_title_line_height','36'),(22368,3604,'_dt_fancy_header_title_font_size','32'),(22366,3604,'_dt_fancy_header_title_mode','custom'),(22367,3604,'_dt_fancy_header_title',''),(22365,3604,'_dt_fancy_header_title_heading',''),(22364,3604,'_dt_fancy_header_breadcrumbs_bg_color','disabled'),(22362,3604,'_dt_fancy_header_breadcrumbs','disabled'),(22363,3604,'_dt_fancy_header_breadcrumbs_text_color','#ffffff'),(22361,3604,'_dt_fancy_header_breadcrumbs_heading',''),(1237,2377,'_wp_attached_file','2022/08/gif-logo4.gif'),(1238,2377,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:549;s:6:\"height\";i:150;s:4:\"file\";s:21:\"2022/08/gif-logo4.gif\";s:8:\"filesize\";i:91559;s:5:\"sizes\";a:6:{s:6:\"medium\";a:5:{s:4:\"file\";s:20:\"gif-logo4-300x82.gif\";s:5:\"width\";i:300;s:6:\"height\";i:82;s:9:\"mime-type\";s:9:\"image/gif\";s:8:\"filesize\";i:6026;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:21:\"gif-logo4-150x150.gif\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/gif\";s:8:\"filesize\";i:6616;}s:21:\"woocommerce_thumbnail\";a:6:{s:4:\"file\";s:21:\"gif-logo4-300x150.gif\";s:5:\"width\";i:300;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/gif\";s:8:\"filesize\";i:11335;s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:5:{s:4:\"file\";s:21:\"gif-logo4-200x150.gif\";s:5:\"width\";i:200;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/gif\";s:8:\"filesize\";i:8336;}s:12:\"shop_catalog\";a:5:{s:4:\"file\";s:21:\"gif-logo4-300x150.gif\";s:5:\"width\";i:300;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/gif\";s:8:\"filesize\";i:11335;}s:14:\"shop_thumbnail\";a:5:{s:4:\"file\";s:21:\"gif-logo4-200x150.gif\";s:5:\"width\";i:200;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/gif\";s:8:\"filesize\";i:8336;}}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:{}}}'),(17152,3355,'_dt_fancy_header_responsive_height','140'),(17151,3355,'_dt_fancy_header_responsiveness_switch','778px'),(22735,3609,'_dt_fancy_header_layout_heading',''),(22720,3609,'_dt_header_transparent_bg_opacity','50'),(22734,3609,'_dt_mobile_page_padding_left',''),(22733,3609,'_dt_mobile_page_padding_bottom',''),(22732,3609,'_dt_mobile_page_padding_right',''),(22731,3609,'_dt_mobile_page_padding_top',''),(22730,3609,'_dt_page_overrides_left_margin',''),(22729,3609,'_dt_page_overrides_bottom_margin',''),(22728,3609,'_dt_page_overrides_right_margin',''),(22727,3609,'_dt_page_overrides_top_margin','1%'),(22726,3609,'_dt_header_disabled_transparent_bg_opacity','50'),(22725,3609,'_dt_header_disabled_transparent_bg_color','#000000'),(22724,3609,'_dt_header_disabled_transparent_top_bar_bg_opacity','25'),(22723,3609,'_dt_header_disabled_transparent_top_bar_bg_color','#ffffff'),(22722,3609,'_dt_header_disabled_transparent_bg_color_scheme','light'),(16778,3331,'_dt_header_disabled_transparent_bg_color','#000000'),(1814,2563,'_wp_attached_file','2022/09/QC.png'),(1226,2371,'_wp_attached_file','2022/08/BrowserPreview8_tmp-1.gif'),(1227,2371,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1080;s:6:\"height\";i:295;s:4:\"file\";s:33:\"2022/08/BrowserPreview8_tmp-1.gif\";s:8:\"filesize\";i:225515;s:5:\"sizes\";a:10:{s:6:\"medium\";a:5:{s:4:\"file\";s:32:\"BrowserPreview8_tmp-1-300x82.gif\";s:5:\"width\";i:300;s:6:\"height\";i:82;s:9:\"mime-type\";s:9:\"image/gif\";s:8:\"filesize\";i:5157;}s:5:\"large\";a:5:{s:4:\"file\";s:34:\"BrowserPreview8_tmp-1-1024x280.gif\";s:5:\"width\";i:1024;s:6:\"height\";i:280;s:9:\"mime-type\";s:9:\"image/gif\";s:8:\"filesize\";i:28433;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:33:\"BrowserPreview8_tmp-1-150x150.gif\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/gif\";s:8:\"filesize\";i:3868;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:33:\"BrowserPreview8_tmp-1-768x210.gif\";s:5:\"width\";i:768;s:6:\"height\";i:210;s:9:\"mime-type\";s:9:\"image/gif\";s:8:\"filesize\";i:16182;}s:21:\"woocommerce_thumbnail\";a:6:{s:4:\"file\";s:33:\"BrowserPreview8_tmp-1-300x295.gif\";s:5:\"width\";i:300;s:6:\"height\";i:295;s:9:\"mime-type\";s:9:\"image/gif\";s:8:\"filesize\";i:13153;s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:5:{s:4:\"file\";s:33:\"BrowserPreview8_tmp-1-600x164.gif\";s:5:\"width\";i:600;s:6:\"height\";i:164;s:9:\"mime-type\";s:9:\"image/gif\";s:8:\"filesize\";i:9780;}s:29:\"woocommerce_gallery_thumbnail\";a:5:{s:4:\"file\";s:33:\"BrowserPreview8_tmp-1-200x200.gif\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/gif\";s:8:\"filesize\";i:6250;}s:12:\"shop_catalog\";a:5:{s:4:\"file\";s:33:\"BrowserPreview8_tmp-1-300x295.gif\";s:5:\"width\";i:300;s:6:\"height\";i:295;s:9:\"mime-type\";s:9:\"image/gif\";s:8:\"filesize\";i:13153;}s:11:\"shop_single\";a:5:{s:4:\"file\";s:33:\"BrowserPreview8_tmp-1-600x164.gif\";s:5:\"width\";i:600;s:6:\"height\";i:164;s:9:\"mime-type\";s:9:\"image/gif\";s:8:\"filesize\";i:9780;}s:14:\"shop_thumbnail\";a:5:{s:4:\"file\";s:33:\"BrowserPreview8_tmp-1-200x200.gif\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/gif\";s:8:\"filesize\";i:6250;}}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:{}}}'),(1228,2372,'_wp_attached_file','2022/08/BrowserPreview_tmp.gif'),(1229,2372,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:717;s:6:\"height\";i:218;s:4:\"file\";s:30:\"2022/08/BrowserPreview_tmp.gif\";s:8:\"filesize\";i:59190;s:5:\"sizes\";a:8:{s:6:\"medium\";a:5:{s:4:\"file\";s:29:\"BrowserPreview_tmp-300x91.gif\";s:5:\"width\";i:300;s:6:\"height\";i:91;s:9:\"mime-type\";s:9:\"image/gif\";s:8:\"filesize\";i:3617;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:30:\"BrowserPreview_tmp-150x150.gif\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/gif\";s:8:\"filesize\";i:3576;}s:21:\"woocommerce_thumbnail\";a:6:{s:4:\"file\";s:30:\"BrowserPreview_tmp-300x218.gif\";s:5:\"width\";i:300;s:6:\"height\";i:218;s:9:\"mime-type\";s:9:\"image/gif\";s:8:\"filesize\";i:6745;s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:5:{s:4:\"file\";s:30:\"BrowserPreview_tmp-600x182.gif\";s:5:\"width\";i:600;s:6:\"height\";i:182;s:9:\"mime-type\";s:9:\"image/gif\";s:8:\"filesize\";i:9647;}s:29:\"woocommerce_gallery_thumbnail\";a:5:{s:4:\"file\";s:30:\"BrowserPreview_tmp-200x200.gif\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/gif\";s:8:\"filesize\";i:5302;}s:12:\"shop_catalog\";a:5:{s:4:\"file\";s:30:\"BrowserPreview_tmp-300x218.gif\";s:5:\"width\";i:300;s:6:\"height\";i:218;s:9:\"mime-type\";s:9:\"image/gif\";s:8:\"filesize\";i:6745;}s:11:\"shop_single\";a:5:{s:4:\"file\";s:30:\"BrowserPreview_tmp-600x182.gif\";s:5:\"width\";i:600;s:6:\"height\";i:182;s:9:\"mime-type\";s:9:\"image/gif\";s:8:\"filesize\";i:9647;}s:14:\"shop_thumbnail\";a:5:{s:4:\"file\";s:30:\"BrowserPreview_tmp-200x200.gif\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/gif\";s:8:\"filesize\";i:5302;}}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:{}}}'),(1230,2373,'_wp_attached_file','2022/08/gif-logo.gif'),(1231,2373,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:400;s:6:\"height\";i:122;s:4:\"file\";s:20:\"2022/08/gif-logo.gif\";s:8:\"filesize\";i:27944;s:5:\"sizes\";a:6:{s:6:\"medium\";a:5:{s:4:\"file\";s:19:\"gif-logo-300x92.gif\";s:5:\"width\";i:300;s:6:\"height\";i:92;s:9:\"mime-type\";s:9:\"image/gif\";s:8:\"filesize\";i:7838;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:20:\"gif-logo-150x122.gif\";s:5:\"width\";i:150;s:6:\"height\";i:122;s:9:\"mime-type\";s:9:\"image/gif\";s:8:\"filesize\";i:6150;}s:21:\"woocommerce_thumbnail\";a:6:{s:4:\"file\";s:20:\"gif-logo-300x122.gif\";s:5:\"width\";i:300;s:6:\"height\";i:122;s:9:\"mime-type\";s:9:\"image/gif\";s:8:\"filesize\";i:10909;s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:5:{s:4:\"file\";s:20:\"gif-logo-200x122.gif\";s:5:\"width\";i:200;s:6:\"height\";i:122;s:9:\"mime-type\";s:9:\"image/gif\";s:8:\"filesize\";i:7819;}s:12:\"shop_catalog\";a:5:{s:4:\"file\";s:20:\"gif-logo-300x122.gif\";s:5:\"width\";i:300;s:6:\"height\";i:122;s:9:\"mime-type\";s:9:\"image/gif\";s:8:\"filesize\";i:10909;}s:14:\"shop_thumbnail\";a:5:{s:4:\"file\";s:20:\"gif-logo-200x122.gif\";s:5:\"width\";i:200;s:6:\"height\";i:122;s:9:\"mime-type\";s:9:\"image/gif\";s:8:\"filesize\";i:7819;}}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:{}}}'),(1232,2374,'_wp_attached_file','2022/08/gif-logo2.gif'),(1233,2374,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:300;s:6:\"height\";i:82;s:4:\"file\";s:21:\"2022/08/gif-logo2.gif\";s:8:\"filesize\";i:45572;s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:20:\"gif-logo2-150x82.gif\";s:5:\"width\";i:150;s:6:\"height\";i:82;s:9:\"mime-type\";s:9:\"image/gif\";s:8:\"filesize\";i:5409;}s:29:\"woocommerce_gallery_thumbnail\";a:5:{s:4:\"file\";s:20:\"gif-logo2-200x82.gif\";s:5:\"width\";i:200;s:6:\"height\";i:82;s:9:\"mime-type\";s:9:\"image/gif\";s:8:\"filesize\";i:6358;}s:14:\"shop_thumbnail\";a:5:{s:4:\"file\";s:20:\"gif-logo2-200x82.gif\";s:5:\"width\";i:200;s:6:\"height\";i:82;s:9:\"mime-type\";s:9:\"image/gif\";s:8:\"filesize\";i:6358;}}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:{}}}'),(22687,3608,'_wqoecf_disable_form','no'),(22688,3608,'_edit_lock','1695542024:1'),(22689,3608,'_edit_last','1'),(22690,3609,'total_sales','0'),(22691,3609,'_tax_status','taxable'),(22692,3609,'_tax_class',''),(22693,3609,'_manage_stock','no'),(22694,3609,'_backorders','no'),(22695,3609,'_sold_individually','no'),(22696,3609,'_virtual','no'),(22697,3609,'_downloadable','no'),(22360,3604,'_dt_fancy_header_padding-bottom','0px'),(22359,3604,'_dt_fancy_header_padding-top','0px'),(22358,3604,'_dt_fancy_header_height','140'),(22357,3604,'_dt_fancy_header_title_aligment','all_left'),(22356,3604,'_dt_fancy_header_layout_heading',''),(22355,3604,'_dt_mobile_page_padding_left',''),(22354,3604,'_dt_mobile_page_padding_bottom',''),(22353,3604,'_dt_mobile_page_padding_right',''),(22352,3604,'_dt_mobile_page_padding_top',''),(22351,3604,'_dt_page_overrides_left_margin',''),(1805,2558,'_wpb_shortcodes_custom_css','.vc_custom_1662363666143{background-image: url(https://farmchemie.yasithawd.com/wp-content/uploads/2022/09/marketbgimg1-sp.png?id=2527) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}.vc_custom_1662370166856{margin-top: 20px !important;margin-right: 50px !important;margin-left: 50px !important;}.vc_custom_1662367183321{background-color: #6e368d !important;}.vc_custom_1662370098614{background-color: #089548 !important;}'),(1806,2559,'_wp_attached_file','2022/09/rowimg_mod_3.jpg'),(1807,2559,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1920;s:6:\"height\";i:1080;s:4:\"file\";s:24:\"2022/09/rowimg_mod_3.jpg\";s:8:\"filesize\";i:194787;s:5:\"sizes\";a:11:{s:6:\"medium\";a:5:{s:4:\"file\";s:24:\"rowimg_mod_3-300x169.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:169;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:11116;}s:5:\"large\";a:5:{s:4:\"file\";s:25:\"rowimg_mod_3-1024x576.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:576;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:77028;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:24:\"rowimg_mod_3-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:5627;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:24:\"rowimg_mod_3-768x432.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:432;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:48158;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:25:\"rowimg_mod_3-1536x864.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:864;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:146456;}s:21:\"woocommerce_thumbnail\";a:6:{s:4:\"file\";s:24:\"rowimg_mod_3-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:15444;s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:5:{s:4:\"file\";s:24:\"rowimg_mod_3-600x338.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:338;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:32754;}s:29:\"woocommerce_gallery_thumbnail\";a:5:{s:4:\"file\";s:24:\"rowimg_mod_3-200x200.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:8396;}s:12:\"shop_catalog\";a:5:{s:4:\"file\";s:24:\"rowimg_mod_3-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:15444;}s:11:\"shop_single\";a:5:{s:4:\"file\";s:24:\"rowimg_mod_3-600x338.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:338;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:32754;}s:14:\"shop_thumbnail\";a:5:{s:4:\"file\";s:24:\"rowimg_mod_3-200x200.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:8396;}}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:{}}}'),(1243,2380,'_wp_attached_file','2022/08/SGS_png-1.png'),(1244,2380,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:700;s:6:\"height\";i:300;s:4:\"file\";s:21:\"2022/08/SGS_png-1.png\";s:8:\"filesize\";i:19178;s:5:\"sizes\";a:8:{s:6:\"medium\";a:5:{s:4:\"file\";s:21:\"SGS_png-1-300x129.png\";s:5:\"width\";i:300;s:6:\"height\";i:129;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:28825;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:21:\"SGS_png-1-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:16126;}s:21:\"woocommerce_thumbnail\";a:6:{s:4:\"file\";s:21:\"SGS_png-1-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:24119;s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:5:{s:4:\"file\";s:21:\"SGS_png-1-600x257.png\";s:5:\"width\";i:600;s:6:\"height\";i:257;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:64906;}s:29:\"woocommerce_gallery_thumbnail\";a:5:{s:4:\"file\";s:21:\"SGS_png-1-200x200.png\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:22673;}s:12:\"shop_catalog\";a:5:{s:4:\"file\";s:21:\"SGS_png-1-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:24119;}s:11:\"shop_single\";a:5:{s:4:\"file\";s:21:\"SGS_png-1-600x257.png\";s:5:\"width\";i:600;s:6:\"height\";i:257;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:64906;}s:14:\"shop_thumbnail\";a:5:{s:4:\"file\";s:21:\"SGS_png-1-200x200.png\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:22673;}}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:{}}}'),(1245,2381,'_wp_attached_file','2022/08/FAMIQS.png'),(1246,2381,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:700;s:6:\"height\";i:300;s:4:\"file\";s:18:\"2022/08/FAMIQS.png\";s:8:\"filesize\";i:12301;s:5:\"sizes\";a:8:{s:6:\"medium\";a:5:{s:4:\"file\";s:18:\"FAMIQS-300x129.png\";s:5:\"width\";i:300;s:6:\"height\";i:129;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:17722;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:18:\"FAMIQS-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:9055;}s:21:\"woocommerce_thumbnail\";a:6:{s:4:\"file\";s:18:\"FAMIQS-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:10217;s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:5:{s:4:\"file\";s:18:\"FAMIQS-600x257.png\";s:5:\"width\";i:600;s:6:\"height\";i:257;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:37647;}s:29:\"woocommerce_gallery_thumbnail\";a:5:{s:4:\"file\";s:18:\"FAMIQS-200x200.png\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:12810;}s:12:\"shop_catalog\";a:5:{s:4:\"file\";s:18:\"FAMIQS-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:10217;}s:11:\"shop_single\";a:5:{s:4:\"file\";s:18:\"FAMIQS-600x257.png\";s:5:\"width\";i:600;s:6:\"height\";i:257;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:37647;}s:14:\"shop_thumbnail\";a:5:{s:4:\"file\";s:18:\"FAMIQS-200x200.png\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:12810;}}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:{}}}'),(1247,2382,'_wp_attached_file','2022/08/ISO_white_1.png'),(1248,2382,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:700;s:6:\"height\";i:300;s:4:\"file\";s:23:\"2022/08/ISO_white_1.png\";s:8:\"filesize\";i:10953;s:5:\"sizes\";a:8:{s:6:\"medium\";a:5:{s:4:\"file\";s:23:\"ISO_white_1-300x129.png\";s:5:\"width\";i:300;s:6:\"height\";i:129;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:16803;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:23:\"ISO_white_1-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:8235;}s:21:\"woocommerce_thumbnail\";a:6:{s:4:\"file\";s:23:\"ISO_white_1-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:9979;s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:5:{s:4:\"file\";s:23:\"ISO_white_1-600x257.png\";s:5:\"width\";i:600;s:6:\"height\";i:257;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:33415;}s:29:\"woocommerce_gallery_thumbnail\";a:5:{s:4:\"file\";s:23:\"ISO_white_1-200x200.png\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:10698;}s:12:\"shop_catalog\";a:5:{s:4:\"file\";s:23:\"ISO_white_1-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:9979;}s:11:\"shop_single\";a:5:{s:4:\"file\";s:23:\"ISO_white_1-600x257.png\";s:5:\"width\";i:600;s:6:\"height\";i:257;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:33415;}s:14:\"shop_thumbnail\";a:5:{s:4:\"file\";s:23:\"ISO_white_1-200x200.png\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:10698;}}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:{}}}'),(17329,3362,'_dt_fancy_header_subtitle_color','#792c8a'),(17330,3362,'_dt_fancy_header_bg_heading',''),(17331,3362,'_dt_fancy_header_bg_color','#ffffff'),(17332,3362,'_dt_fancy_header_bg_image_origin','custom'),(17333,3362,'_dt_fancy_header_bg_image','a:1:{i:0;i:3364;}'),(17334,3362,'_dt_fancy_header_bg_repeat','no-repeat'),(17335,3362,'_dt_fancy_header_bg_position_x','center'),(17336,3362,'_dt_fancy_header_bg_position_y','center'),(17337,3362,'_dt_fancy_header_bg_fullscreen','0'),(17338,3362,'_dt_fancy_header_bg_overlay','0'),(17339,3362,'_dt_fancy_header_overlay_color','#000'),(17340,3362,'_dt_fancy_header_bg_overlay_opacity','50'),(17341,3362,'_dt_fancy_header_scroll_effect','default'),(17342,3362,'_dt_fancy_header_bg_parallax','0.5'),(17343,3362,'_dt_fancy_header_responsiveness_heading',''),(17344,3362,'_dt_fancy_header_responsiveness','enabled'),(17345,3362,'_dt_fancy_header_responsiveness_switch','778px'),(17346,3362,'_dt_fancy_header_responsive_height','140'),(17347,3362,'_dt_fancy_header_responsive_font_size','30'),(17348,3362,'_dt_fancy_header_responsive_title_line_height','38'),(17349,3362,'_dt_fancy_header_responsive_subtitle_font_size','20'),(17350,3362,'_dt_fancy_header_responsive_subtitle_line_height','28'),(17351,3362,'_dt_fancy_header_responsive_breadcrumbs','disabled'),(17352,3362,'the7_fancy_title_css','#main {\n  padding-top: 1%;\n}\n.fancy-header {\n  background-image: url(\'https://farmchemie.yasithawd.com/wp-content/uploads/2023/08/AVI-Pharmasin_logo.png\');\n  background-repeat: no-repeat;\n  background-position: center center;\n  background-size: auto auto;\n  background-color: #ffffff;\n}\n.mobile-false .fancy-header {\n  background-attachment: scroll;\n}\n.fancy-header .wf-wrap {\n  min-height: 140px;\n  padding-top: 0px;\n  padding-bottom: 0px;\n}\n.fancy-header .fancy-title {\n  font-size: 32px;\n  line-height: 36px;\n  color: #079547;\n  text-transform: none;\n}\n.fancy-header .fancy-subtitle {\n  font-size: 24px;\n  line-height: 26px;\n  color: #792c8a;\n  text-transform: none;\n}\n.fancy-header .breadcrumbs {\n  color: #ffffff;\n}\n.fancy-header-overlay {\n  background: rgba(0,0,0,0.5);\n}\n@media screen and (max-width: 778px) {\n  .fancy-header .wf-wrap {\n    min-height: 140px;\n  }\n  .fancy-header .fancy-title {\n    font-size: 30px;\n    line-height: 38px;\n  }\n  .fancy-header .fancy-subtitle {\n    font-size: 20px;\n    line-height: 28px;\n  }\n  .fancy-header.breadcrumbs-mobile-off .breadcrumbs {\n    display: none;\n  }\n  #fancy-header > .wf-wrap {\n    flex-flow: column wrap;\n    align-items: center;\n    justify-content: center;\n    padding-bottom: 0px !important;\n  }\n  .fancy-header.title-left .breadcrumbs {\n    text-align: center;\n    float: none;\n  }\n  .breadcrumbs {\n    margin-bottom: 10px;\n  }\n  .breadcrumbs.breadcrumbs-bg {\n    margin-top: 10px;\n  }\n  .fancy-header.title-right .breadcrumbs {\n    margin: 10px 0 10px 0;\n  }\n  #fancy-header .hgroup,\n  #fancy-header .breadcrumbs {\n    text-align: center;\n  }\n  .fancy-header .hgroup {\n    padding-bottom: 5px;\n  }\n  .breadcrumbs-off .hgroup {\n    padding-bottom: 5px;\n  }\n  .title-right .hgroup {\n    padding: 0 0 5px 0;\n  }\n  .title-right.breadcrumbs-off .hgroup {\n    padding-top: 5px;\n  }\n  .title-left.disabled-bg .breadcrumbs {\n    margin-bottom: 0;\n  }\n}\n'),(17238,3361,'_dt_fancy_header_bg_color','#ffffff'),(17239,3361,'_dt_fancy_header_bg_image_origin','custom'),(17240,3361,'_dt_fancy_header_bg_image','a:1:{i:0;i:3359;}'),(17241,3361,'_dt_fancy_header_bg_repeat','no-repeat'),(17242,3361,'_dt_fancy_header_bg_position_x','center'),(17243,3361,'_dt_fancy_header_bg_position_y','center'),(17244,3361,'_dt_fancy_header_bg_fullscreen','0'),(17245,3361,'_dt_fancy_header_bg_overlay','0'),(17246,3361,'_dt_fancy_header_overlay_color','#000'),(17247,3361,'_dt_fancy_header_bg_overlay_opacity','50'),(17248,3361,'_dt_fancy_header_scroll_effect','default'),(17249,3361,'_dt_fancy_header_bg_parallax','0.5'),(17250,3361,'_dt_fancy_header_responsiveness_heading',''),(17251,3361,'_dt_fancy_header_responsiveness','enabled'),(17252,3361,'_dt_fancy_header_responsiveness_switch','778px'),(17253,3361,'_dt_fancy_header_responsive_height','140'),(17254,3361,'_dt_fancy_header_responsive_font_size','30'),(17255,3361,'_dt_fancy_header_responsive_title_line_height','38'),(17256,3361,'_dt_fancy_header_responsive_subtitle_font_size','20'),(17257,3361,'_dt_fancy_header_responsive_subtitle_line_height','28'),(17258,3361,'_dt_fancy_header_responsive_breadcrumbs','disabled'),(17259,3361,'the7_fancy_title_css','#main {\n  padding-top: 1%;\n}\n.fancy-header {\n  background-image: url(\'https://farmchemie.yasithawd.com/wp-content/uploads/2023/08/AVI-Trimethosulfa_logo.png\');\n  background-repeat: no-repeat;\n  background-position: center center;\n  background-size: auto auto;\n  background-color: #ffffff;\n}\n.mobile-false .fancy-header {\n  background-attachment: scroll;\n}\n.fancy-header .wf-wrap {\n  min-height: 140px;\n  padding-top: 0px;\n  padding-bottom: 0px;\n}\n.fancy-header .fancy-title {\n  font-size: 32px;\n  line-height: 36px;\n  color: #079547;\n  text-transform: none;\n}\n.fancy-header .fancy-subtitle {\n  font-size: 24px;\n  line-height: 26px;\n  color: #792c8a;\n  text-transform: none;\n}\n.fancy-header .breadcrumbs {\n  color: #ffffff;\n}\n.fancy-header-overlay {\n  background: rgba(0,0,0,0.5);\n}\n@media screen and (max-width: 778px) {\n  .fancy-header .wf-wrap {\n    min-height: 140px;\n  }\n  .fancy-header .fancy-title {\n    font-size: 30px;\n    line-height: 38px;\n  }\n  .fancy-header .fancy-subtitle {\n    font-size: 20px;\n    line-height: 28px;\n  }\n  .fancy-header.breadcrumbs-mobile-off .breadcrumbs {\n    display: none;\n  }\n  #fancy-header > .wf-wrap {\n    flex-flow: column wrap;\n    align-items: center;\n    justify-content: center;\n    padding-bottom: 0px !important;\n  }\n  .fancy-header.title-left .breadcrumbs {\n    text-align: center;\n    float: none;\n  }\n  .breadcrumbs {\n    margin-bottom: 10px;\n  }\n  .breadcrumbs.breadcrumbs-bg {\n    margin-top: 10px;\n  }\n  .fancy-header.title-right .breadcrumbs {\n    margin: 10px 0 10px 0;\n  }\n  #fancy-header .hgroup,\n  #fancy-header .breadcrumbs {\n    text-align: center;\n  }\n  .fancy-header .hgroup {\n    padding-bottom: 5px;\n  }\n  .breadcrumbs-off .hgroup {\n    padding-bottom: 5px;\n  }\n  .title-right .hgroup {\n    padding: 0 0 5px 0;\n  }\n  .title-right.breadcrumbs-off .hgroup {\n    padding-top: 5px;\n  }\n  .title-left.disabled-bg .breadcrumbs {\n    margin-bottom: 0;\n  }\n}\n'),(1811,2561,'_wpb_shortcodes_custom_css','.vc_custom_1662363666143{background-image: url(https://farmchemie.yasithawd.com/wp-content/uploads/2022/09/marketbgimg1-sp.png?id=2527) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}.vc_custom_1662370166856{margin-top: 20px !important;margin-right: 50px !important;margin-left: 50px !important;}.vc_custom_1662367183321{background-color: #6e368d !important;}.vc_custom_1662370098614{background-color: #089548 !important;}'),(16832,3331,'_dt_fancy_header_responsive_subtitle_line_height','28'),(16779,3331,'_dt_header_disabled_transparent_bg_opacity','50'),(16780,3331,'_dt_page_overrides_top_margin','1%'),(16781,3331,'_dt_page_overrides_right_margin',''),(16782,3331,'_dt_page_overrides_bottom_margin',''),(16783,3331,'_dt_page_overrides_left_margin',''),(16784,3331,'_dt_mobile_page_padding_top',''),(16785,3331,'_dt_mobile_page_padding_right',''),(16786,3331,'_dt_mobile_page_padding_bottom',''),(16787,3331,'_dt_mobile_page_padding_left',''),(16788,3331,'_dt_fancy_header_layout_heading',''),(16789,3331,'_dt_fancy_header_title_aligment','all_left'),(16790,3331,'_dt_fancy_header_height','140'),(16791,3331,'_dt_fancy_header_padding-top','0px'),(16792,3331,'_dt_fancy_header_padding-bottom','0px'),(16793,3331,'_dt_fancy_header_breadcrumbs_heading',''),(16794,3331,'_dt_fancy_header_breadcrumbs','disabled'),(16795,3331,'_dt_fancy_header_breadcrumbs_text_color','#ffffff'),(16796,3331,'_dt_fancy_header_breadcrumbs_bg_color','disabled'),(16797,3331,'_dt_fancy_header_title_heading',''),(16798,3331,'_dt_fancy_header_title_mode','custom'),(16799,3331,'_dt_fancy_header_title',''),(16800,3331,'_dt_fancy_header_title_font_size','32'),(16801,3331,'_dt_fancy_header_title_line_height','36'),(16802,3331,'_dt_fancy_header_text_transform','none'),(16803,3331,'_dt_fancy_header_title_color_mode','color'),(16804,3331,'_dt_fancy_header_title_color','#079547'),(16805,3331,'_dt_fancy_header_subtitle_heading',''),(16806,3331,'_dt_fancy_header_subtitle',''),(16807,3331,'_dt_fancy_header_subtitle_font_size','24'),(16808,3331,'_dt_fancy_header_subtitle_line_height','26'),(16809,3331,'_dt_fancy_header_subtitle_text_transform','none'),(16810,3331,'_dt_fancy_header_subtitle_color_mode','color'),(16811,3331,'_dt_fancy_header_subtitle_color','#792c8a'),(16812,3331,'_dt_fancy_header_bg_heading',''),(16813,3331,'_dt_fancy_header_bg_color','#ffffff'),(16814,3331,'_dt_fancy_header_bg_image_origin','custom'),(16815,3331,'_dt_fancy_header_bg_image','a:1:{i:0;i:3334;}'),(16816,3331,'_dt_fancy_header_bg_repeat','no-repeat'),(16817,3331,'_dt_fancy_header_bg_position_x','center'),(16818,3331,'_dt_fancy_header_bg_position_y','center'),(16819,3331,'_dt_fancy_header_bg_fullscreen','0'),(16820,3331,'_dt_fancy_header_bg_overlay','0'),(16821,3331,'_dt_fancy_header_overlay_color','#000'),(16822,3331,'_dt_fancy_header_bg_overlay_opacity','50'),(16823,3331,'_dt_fancy_header_scroll_effect','default'),(16824,3331,'_dt_fancy_header_bg_parallax','0.5'),(16825,3331,'_dt_fancy_header_responsiveness_heading',''),(16826,3331,'_dt_fancy_header_responsiveness','enabled'),(16827,3331,'_dt_fancy_header_responsiveness_switch','778px'),(16828,3331,'_dt_fancy_header_responsive_height','140'),(16829,3331,'_dt_fancy_header_responsive_font_size','30'),(16830,3331,'_dt_fancy_header_responsive_title_line_height','38'),(16831,3331,'_dt_fancy_header_responsive_subtitle_font_size','20'),(1796,2554,'_wpb_post_custom_css','.vc_custom_1662364566926 {\r\n    border-radius: 0px 35px 35px 0px !important;\r\n}'),(1797,2554,'_wpb_shortcodes_custom_css','.vc_custom_1662363666143{background-image: url(https://farmchemie.yasithawd.com/wp-content/uploads/2022/09/marketbgimg1-sp.png?id=2527) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}.vc_custom_1662368347025{margin-top: 20px !important;margin-right: 50px !important;margin-left: 50px !important;}.vc_custom_1662367183321{background-color: #6e368d !important;}.vc_custom_1662367741225{background-color: #089548 !important;}'),(1798,2555,'_wpb_post_custom_css','.vc_custom_1662364566926 {\r\n    border-radius: 0px 35px 35px 0px !important;\r\n}'),(1799,2555,'_wpb_shortcodes_custom_css','.vc_custom_1662363666143{background-image: url(https://farmchemie.yasithawd.com/wp-content/uploads/2022/09/marketbgimg1-sp.png?id=2527) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}.vc_custom_1662368347025{margin-top: 20px !important;margin-right: 50px !important;margin-left: 50px !important;}.vc_custom_1662367183321{background-color: #6e368d !important;}.vc_custom_1662367741225{background-color: #089548 !important;}'),(1800,2556,'_wpb_post_custom_css','.vc_custom_1662364566926 {\r\n    border-radius: 0px 35px 35px 0px !important;\r\n}'),(1801,2556,'_wpb_shortcodes_custom_css','.vc_custom_1662363666143{background-image: url(https://farmchemie.yasithawd.com/wp-content/uploads/2022/09/marketbgimg1-sp.png?id=2527) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}.vc_custom_1662368347025{margin-top: 20px !important;margin-right: 50px !important;margin-left: 50px !important;}.vc_custom_1662367183321{background-color: #6e368d !important;}.vc_custom_1662370098614{background-color: #089548 !important;}'),(1802,2557,'_wpb_post_custom_css','.vc_custom_1662364566926 {\r\n    border-radius: 0px 35px 35px 0px !important;\r\n}'),(1803,2557,'_wpb_shortcodes_custom_css','.vc_custom_1662363666143{background-image: url(https://farmchemie.yasithawd.com/wp-content/uploads/2022/09/marketbgimg1-sp.png?id=2527) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}.vc_custom_1662370166856{margin-top: 20px !important;margin-right: 50px !important;margin-left: 50px !important;}.vc_custom_1662367183321{background-color: #6e368d !important;}.vc_custom_1662370098614{background-color: #089548 !important;}'),(1804,2558,'_wpb_post_custom_css','.vc_custom_1662364566926 {\r\n    border-radius: 0px 35px 35px 0px !important;\r\n}'),(22698,3609,'_download_limit','-1'),(22699,3609,'_download_expiry','-1'),(22700,3609,'_thumbnail_id','3902'),(22701,3609,'_stock',NULL),(22702,3609,'_stock_status','instock'),(22703,3609,'_wc_average_rating','0'),(22704,3609,'_wc_review_count','0'),(22705,3609,'_product_attributes','a:1:{s:15:\"pa_product-type\";a:6:{s:4:\"name\";s:15:\"pa_product-type\";s:5:\"value\";s:0:\"\";s:8:\"position\";i:0;s:10:\"is_visible\";i:0;s:12:\"is_variation\";i:0;s:11:\"is_taxonomy\";i:1;}}'),(22706,3609,'_product_version','8.0.2'),(22707,3609,'_dt_sidebar_position','disabled'),(22708,3609,'_dt_sidebar_widgetarea_id','sidebar_1'),(22709,3609,'_dt_sidebar_hide_on_mobile','0'),(22710,3609,'_dt_footer_show','1'),(22711,3609,'_dt_footer_widgetarea_id','sidebar_2'),(22712,3609,'_dt_footer_hide_on_mobile','0'),(22713,3609,'_dt_header_title','fancy'),(22714,3609,'_dt_header_background','normal'),(22715,3609,'_dt_header_background_below_slideshow','disabled'),(22716,3609,'_dt_header_transparent_bg_color_scheme','light'),(22717,3609,'_dt_header_transparent_top_bar_bg_color','#ffffff'),(22718,3609,'_dt_header_transparent_top_bar_bg_opacity','25'),(22719,3609,'_dt_header_transparent_bg_color','#000000'),(17517,3366,'_dt_fancy_header_subtitle_color_mode','color'),(17518,3366,'_dt_fancy_header_subtitle_color','#792c8a'),(17519,3366,'_dt_fancy_header_bg_heading',''),(17520,3366,'_dt_fancy_header_bg_color','#ffffff'),(17521,3366,'_dt_fancy_header_bg_image_origin','custom'),(17522,3366,'_dt_fancy_header_bg_image','a:0:{}'),(17523,3366,'_dt_fancy_header_bg_repeat','no-repeat'),(17524,3366,'_dt_fancy_header_bg_position_x','center'),(17525,3366,'_dt_fancy_header_bg_position_y','center'),(17526,3366,'_dt_fancy_header_bg_fullscreen','0'),(17527,3366,'_dt_fancy_header_bg_overlay','0'),(17528,3366,'_dt_fancy_header_overlay_color','#000'),(17529,3366,'_dt_fancy_header_bg_overlay_opacity','50'),(17530,3366,'_dt_fancy_header_scroll_effect','default'),(17531,3366,'_dt_fancy_header_bg_parallax','0.5'),(17532,3366,'_dt_fancy_header_responsiveness_heading',''),(17533,3366,'_dt_fancy_header_responsiveness','enabled'),(17534,3366,'_dt_fancy_header_responsiveness_switch','778px'),(17535,3366,'_dt_fancy_header_responsive_height','140'),(17536,3366,'_dt_fancy_header_responsive_font_size','30'),(17537,3366,'_dt_fancy_header_responsive_title_line_height','38'),(17538,3366,'_dt_fancy_header_responsive_subtitle_font_size','20'),(17539,3366,'_dt_fancy_header_responsive_subtitle_line_height','28'),(17540,3366,'_dt_fancy_header_responsive_breadcrumbs','disabled'),(17541,3366,'the7_fancy_title_css','#main {\n  padding-top: 1%;\n}\n.fancy-header {\n  background-image: none;\n  background-repeat: no-repeat;\n  background-position: center center;\n  background-size: auto auto;\n  background-color: #ffffff;\n}\n.mobile-false .fancy-header {\n  background-attachment: scroll;\n}\n.fancy-header .wf-wrap {\n  min-height: 140px;\n  padding-top: 0px;\n  padding-bottom: 0px;\n}\n.fancy-header .fancy-title {\n  font-size: 32px;\n  line-height: 36px;\n  color: #079547;\n  text-transform: none;\n}\n.fancy-header .fancy-subtitle {\n  font-size: 24px;\n  line-height: 26px;\n  color: #792c8a;\n  text-transform: none;\n}\n.fancy-header .breadcrumbs {\n  color: #ffffff;\n}\n.fancy-header-overlay {\n  background: rgba(0,0,0,0.5);\n}\n@media screen and (max-width: 778px) {\n  .fancy-header .wf-wrap {\n    min-height: 140px;\n  }\n  .fancy-header .fancy-title {\n    font-size: 30px;\n    line-height: 38px;\n  }\n  .fancy-header .fancy-subtitle {\n    font-size: 20px;\n    line-height: 28px;\n  }\n  .fancy-header.breadcrumbs-mobile-off .breadcrumbs {\n    display: none;\n  }\n  #fancy-header > .wf-wrap {\n    flex-flow: column wrap;\n    align-items: center;\n    justify-content: center;\n    padding-bottom: 0px !important;\n  }\n  .fancy-header.title-left .breadcrumbs {\n    text-align: center;\n    float: none;\n  }\n  .breadcrumbs {\n    margin-bottom: 10px;\n  }\n  .breadcrumbs.breadcrumbs-bg {\n    margin-top: 10px;\n  }\n  .fancy-header.title-right .breadcrumbs {\n    margin: 10px 0 10px 0;\n  }\n  #fancy-header .hgroup,\n  #fancy-header .breadcrumbs {\n    text-align: center;\n  }\n  .fancy-header .hgroup {\n    padding-bottom: 5px;\n  }\n  .breadcrumbs-off .hgroup {\n    padding-bottom: 5px;\n  }\n  .title-right .hgroup {\n    padding: 0 0 5px 0;\n  }\n  .title-right.breadcrumbs-off .hgroup {\n    padding-top: 5px;\n  }\n  .title-left.disabled-bg .breadcrumbs {\n    margin-bottom: 0;\n  }\n}\n'),(17237,3361,'_dt_fancy_header_bg_heading',''),(17199,3361,'_dt_header_disabled_background','normal'),(17200,3361,'_dt_header_disabled_transparent_bg_color_scheme','light'),(17201,3361,'_dt_header_disabled_transparent_top_bar_bg_color','#ffffff'),(17202,3361,'_dt_header_disabled_transparent_top_bar_bg_opacity','25'),(17203,3361,'_dt_header_disabled_transparent_bg_color','#000000'),(17204,3361,'_dt_header_disabled_transparent_bg_opacity','50'),(17205,3361,'_dt_page_overrides_top_margin','1%'),(17206,3361,'_dt_page_overrides_right_margin',''),(17207,3361,'_dt_page_overrides_bottom_margin',''),(17208,3361,'_dt_page_overrides_left_margin',''),(17209,3361,'_dt_mobile_page_padding_top',''),(17210,3361,'_dt_mobile_page_padding_right',''),(17211,3361,'_dt_mobile_page_padding_bottom',''),(17212,3361,'_dt_mobile_page_padding_left',''),(17213,3361,'_dt_fancy_header_layout_heading',''),(17214,3361,'_dt_fancy_header_title_aligment','all_left'),(17215,3361,'_dt_fancy_header_height','140'),(17216,3361,'_dt_fancy_header_padding-top','0px'),(17217,3361,'_dt_fancy_header_padding-bottom','0px'),(17218,3361,'_dt_fancy_header_breadcrumbs_heading',''),(17219,3361,'_dt_fancy_header_breadcrumbs','disabled'),(17220,3361,'_dt_fancy_header_breadcrumbs_text_color','#ffffff'),(17221,3361,'_dt_fancy_header_breadcrumbs_bg_color','disabled'),(17222,3361,'_dt_fancy_header_title_heading',''),(17223,3361,'_dt_fancy_header_title_mode','custom'),(17224,3361,'_dt_fancy_header_title',''),(17225,3361,'_dt_fancy_header_title_font_size','32'),(17226,3361,'_dt_fancy_header_title_line_height','36'),(17227,3361,'_dt_fancy_header_text_transform','none'),(17228,3361,'_dt_fancy_header_title_color_mode','color'),(17229,3361,'_dt_fancy_header_title_color','#079547'),(17230,3361,'_dt_fancy_header_subtitle_heading',''),(17231,3361,'_dt_fancy_header_subtitle',''),(17232,3361,'_dt_fancy_header_subtitle_font_size','24'),(17233,3361,'_dt_fancy_header_subtitle_line_height','26'),(17234,3361,'_dt_fancy_header_subtitle_text_transform','none'),(17235,3361,'_dt_fancy_header_subtitle_color_mode','color'),(17236,3361,'_dt_fancy_header_subtitle_color','#792c8a'),(17066,3354,'_wp_attached_file','2023/08/AVI-Ganadexil_600px-x-600px.png'),(17067,3354,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:600;s:6:\"height\";i:600;s:4:\"file\";s:39:\"2023/08/AVI-Ganadexil_600px-x-600px.png\";s:8:\"filesize\";i:43899;s:5:\"sizes\";a:4:{s:6:\"medium\";a:5:{s:4:\"file\";s:39:\"AVI-Ganadexil_600px-x-600px-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:41105;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:39:\"AVI-Ganadexil_600px-x-600px-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:13244;}s:21:\"woocommerce_thumbnail\";a:6:{s:4:\"file\";s:39:\"AVI-Ganadexil_600px-x-600px-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:41105;s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:5:{s:4:\"file\";s:39:\"AVI-Ganadexil_600px-x-600px-200x200.png\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:20775;}}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:{}}}'),(17068,3355,'total_sales','0'),(17069,3355,'_tax_status','taxable'),(17070,3355,'_tax_class',''),(17071,3355,'_manage_stock','no'),(17072,3355,'_backorders','no'),(17073,3355,'_sold_individually','no'),(17074,3355,'_virtual','no'),(17075,3355,'_downloadable','no'),(17076,3355,'_download_limit','-1'),(17077,3355,'_download_expiry','-1'),(17078,3355,'_thumbnail_id','3763'),(17079,3355,'_stock',NULL),(17080,3355,'_stock_status','instock'),(17081,3355,'_wc_average_rating','0'),(17082,3355,'_wc_review_count','0'),(17083,3355,'_product_version','8.0.2'),(17084,3355,'_dt_sidebar_position','disabled'),(17085,3355,'_dt_sidebar_widgetarea_id','sidebar_1'),(17086,3355,'_dt_sidebar_hide_on_mobile','0'),(17087,3355,'_dt_footer_show','1'),(17088,3355,'_dt_footer_widgetarea_id','sidebar_2'),(17089,3355,'_dt_footer_hide_on_mobile','0'),(17090,3355,'_dt_header_title','fancy'),(17091,3355,'_dt_header_background','normal'),(17092,3355,'_dt_header_background_below_slideshow','disabled'),(17093,3355,'_dt_header_transparent_bg_color_scheme','light'),(17094,3355,'_dt_header_transparent_top_bar_bg_color','#ffffff'),(17095,3355,'_dt_header_transparent_top_bar_bg_opacity','25'),(17096,3355,'_dt_header_transparent_bg_color','#000000'),(17097,3355,'_dt_header_transparent_bg_opacity','50'),(17098,3355,'_dt_header_disabled_background','normal'),(17099,3355,'_dt_header_disabled_transparent_bg_color_scheme','light'),(17100,3355,'_dt_header_disabled_transparent_top_bar_bg_color','#ffffff'),(17101,3355,'_dt_header_disabled_transparent_top_bar_bg_opacity','25'),(17102,3355,'_dt_header_disabled_transparent_bg_color','#000000'),(17103,3355,'_dt_header_disabled_transparent_bg_opacity','50'),(17104,3355,'_dt_page_overrides_top_margin','1%'),(17105,3355,'_dt_page_overrides_right_margin',''),(1304,2400,'_wp_attached_file','2022/08/gif-logo5.gif'),(1305,2400,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:366;s:6:\"height\";i:100;s:4:\"file\";s:21:\"2022/08/gif-logo5.gif\";s:8:\"filesize\";i:62358;s:5:\"sizes\";a:6:{s:6:\"medium\";a:5:{s:4:\"file\";s:20:\"gif-logo5-300x82.gif\";s:5:\"width\";i:300;s:6:\"height\";i:82;s:9:\"mime-type\";s:9:\"image/gif\";s:8:\"filesize\";i:8144;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:21:\"gif-logo5-150x100.gif\";s:5:\"width\";i:150;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/gif\";s:8:\"filesize\";i:6488;}s:21:\"woocommerce_thumbnail\";a:6:{s:4:\"file\";s:21:\"gif-logo5-300x100.gif\";s:5:\"width\";i:300;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/gif\";s:8:\"filesize\";i:9418;s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:5:{s:4:\"file\";s:21:\"gif-logo5-200x100.gif\";s:5:\"width\";i:200;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/gif\";s:8:\"filesize\";i:8111;}s:12:\"shop_catalog\";a:5:{s:4:\"file\";s:21:\"gif-logo5-300x100.gif\";s:5:\"width\";i:300;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/gif\";s:8:\"filesize\";i:9418;}s:14:\"shop_thumbnail\";a:5:{s:4:\"file\";s:21:\"gif-logo5-200x100.gif\";s:5:\"width\";i:200;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/gif\";s:8:\"filesize\";i:8111;}}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:{}}}'),(17277,3362,'_product_version','8.0.2'),(17260,3361,'_edit_lock','1694675590:1'),(17261,3361,'_edit_last','1'),(17262,3362,'total_sales','0'),(17263,3362,'_tax_status','taxable'),(17264,3362,'_tax_class',''),(17265,3362,'_manage_stock','no'),(17266,3362,'_backorders','no'),(17267,3362,'_sold_individually','no'),(17268,3362,'_virtual','no'),(17269,3362,'_downloadable','no'),(17270,3362,'_download_limit','-1'),(17271,3362,'_download_expiry','-1'),(17272,3362,'_thumbnail_id','3363'),(17273,3362,'_stock',NULL),(17274,3362,'_stock_status','instock'),(17275,3362,'_wc_average_rating','0'),(17276,3362,'_wc_review_count','0'),(12941,2911,'_menu_item_type','post_type'),(1312,39,'_wp_old_date','2022-08-24'),(1795,2553,'_wpb_shortcodes_custom_css','.vc_custom_1662363666143{background-image: url(https://farmchemie.yasithawd.com/wp-content/uploads/2022/09/marketbgimg1-sp.png?id=2527) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}.vc_custom_1662368347025{margin-top: 20px !important;margin-right: 50px !important;margin-left: 50px !important;}.vc_custom_1662367183321{background-color: #6e368d !important;}.vc_custom_1662367741225{background-color: #089548 !important;}'),(1315,2403,'_wp_attached_file','2022/08/HeaderImage3.png'),(1316,2403,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1920;s:6:\"height\";i:150;s:4:\"file\";s:24:\"2022/08/HeaderImage3.png\";s:8:\"filesize\";i:20660;s:5:\"sizes\";a:11:{s:6:\"medium\";a:5:{s:4:\"file\";s:23:\"HeaderImage3-300x23.png\";s:5:\"width\";i:300;s:6:\"height\";i:23;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:6649;}s:5:\"large\";a:5:{s:4:\"file\";s:24:\"HeaderImage3-1024x80.png\";s:5:\"width\";i:1024;s:6:\"height\";i:80;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:32371;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:24:\"HeaderImage3-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:240;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:23:\"HeaderImage3-768x60.png\";s:5:\"width\";i:768;s:6:\"height\";i:60;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:22632;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:25:\"HeaderImage3-1536x120.png\";s:5:\"width\";i:1536;s:6:\"height\";i:120;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:53533;}s:21:\"woocommerce_thumbnail\";a:6:{s:4:\"file\";s:24:\"HeaderImage3-300x150.png\";s:5:\"width\";i:300;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:300;s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:5:{s:4:\"file\";s:23:\"HeaderImage3-600x47.png\";s:5:\"width\";i:600;s:6:\"height\";i:47;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:16498;}s:29:\"woocommerce_gallery_thumbnail\";a:5:{s:4:\"file\";s:24:\"HeaderImage3-200x150.png\";s:5:\"width\";i:200;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:270;}s:12:\"shop_catalog\";a:5:{s:4:\"file\";s:24:\"HeaderImage3-300x150.png\";s:5:\"width\";i:300;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:300;}s:11:\"shop_single\";a:5:{s:4:\"file\";s:23:\"HeaderImage3-600x47.png\";s:5:\"width\";i:600;s:6:\"height\";i:47;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:16498;}s:14:\"shop_thumbnail\";a:5:{s:4:\"file\";s:24:\"HeaderImage3-200x150.png\";s:5:\"width\";i:200;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:270;}}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:{}}}'),(1317,2404,'_wp_attached_file','2022/08/WhatsApp-Image-2022-08-30-at-10.20.51-AM.jpeg'),(1318,2404,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1280;s:6:\"height\";i:1190;s:4:\"file\";s:53:\"2022/08/WhatsApp-Image-2022-08-30-at-10.20.51-AM.jpeg\";s:8:\"filesize\";i:262778;s:5:\"sizes\";a:10:{s:6:\"medium\";a:5:{s:4:\"file\";s:53:\"WhatsApp-Image-2022-08-30-at-10.20.51-AM-300x279.jpeg\";s:5:\"width\";i:300;s:6:\"height\";i:279;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:13728;}s:5:\"large\";a:5:{s:4:\"file\";s:54:\"WhatsApp-Image-2022-08-30-at-10.20.51-AM-1024x952.jpeg\";s:5:\"width\";i:1024;s:6:\"height\";i:952;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:104255;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:53:\"WhatsApp-Image-2022-08-30-at-10.20.51-AM-150x150.jpeg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:5035;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:53:\"WhatsApp-Image-2022-08-30-at-10.20.51-AM-768x714.jpeg\";s:5:\"width\";i:768;s:6:\"height\";i:714;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:65145;}s:21:\"woocommerce_thumbnail\";a:6:{s:4:\"file\";s:53:\"WhatsApp-Image-2022-08-30-at-10.20.51-AM-300x300.jpeg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:14335;s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:5:{s:4:\"file\";s:53:\"WhatsApp-Image-2022-08-30-at-10.20.51-AM-600x558.jpeg\";s:5:\"width\";i:600;s:6:\"height\";i:558;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:42663;}s:29:\"woocommerce_gallery_thumbnail\";a:5:{s:4:\"file\";s:53:\"WhatsApp-Image-2022-08-30-at-10.20.51-AM-200x200.jpeg\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:7531;}s:12:\"shop_catalog\";a:5:{s:4:\"file\";s:53:\"WhatsApp-Image-2022-08-30-at-10.20.51-AM-300x300.jpeg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:14335;}s:11:\"shop_single\";a:5:{s:4:\"file\";s:53:\"WhatsApp-Image-2022-08-30-at-10.20.51-AM-600x558.jpeg\";s:5:\"width\";i:600;s:6:\"height\";i:558;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:42663;}s:14:\"shop_thumbnail\";a:5:{s:4:\"file\";s:53:\"WhatsApp-Image-2022-08-30-at-10.20.51-AM-200x200.jpeg\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:7531;}}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:{}}}'),(22686,3608,'the7_fancy_title_css','#main {\n  padding-top: 1%;\n}\n.fancy-header {\n  background-image: url(\'https://farmchemie.yasithawd.com/wp-content/uploads/2023/09/SALMOBLAST®-Dry_300px.png\');\n  background-repeat: no-repeat;\n  background-position: center center;\n  background-size: auto auto;\n  background-color: #ffffff;\n}\n.mobile-false .fancy-header {\n  background-attachment: scroll;\n}\n.fancy-header .wf-wrap {\n  min-height: 140px;\n  padding-top: 0px;\n  padding-bottom: 0px;\n}\n.fancy-header .fancy-title {\n  font-size: 32px;\n  line-height: 36px;\n  color: #079547;\n  text-transform: none;\n}\n.fancy-header .fancy-subtitle {\n  font-size: 24px;\n  line-height: 26px;\n  color: #792c8a;\n  text-transform: none;\n}\n.fancy-header .breadcrumbs {\n  color: #ffffff;\n}\n.fancy-header-overlay {\n  background: rgba(0,0,0,0.5);\n}\n@media screen and (max-width: 778px) {\n  .fancy-header .wf-wrap {\n    min-height: 140px;\n  }\n  .fancy-header .fancy-title {\n    font-size: 30px;\n    line-height: 38px;\n  }\n  .fancy-header .fancy-subtitle {\n    font-size: 20px;\n    line-height: 28px;\n  }\n  .fancy-header.breadcrumbs-mobile-off .breadcrumbs {\n    display: none;\n  }\n  #fancy-header > .wf-wrap {\n    flex-flow: column wrap;\n    align-items: center;\n    justify-content: center;\n    padding-bottom: 0px !important;\n  }\n  .fancy-header.title-left .breadcrumbs {\n    text-align: center;\n    float: none;\n  }\n  .breadcrumbs {\n    margin-bottom: 10px;\n  }\n  .breadcrumbs.breadcrumbs-bg {\n    margin-top: 10px;\n  }\n  .fancy-header.title-right .breadcrumbs {\n    margin: 10px 0 10px 0;\n  }\n  #fancy-header .hgroup,\n  #fancy-header .breadcrumbs {\n    text-align: center;\n  }\n  .fancy-header .hgroup {\n    padding-bottom: 5px;\n  }\n  .breadcrumbs-off .hgroup {\n    padding-bottom: 5px;\n  }\n  .title-right .hgroup {\n    padding: 0 0 5px 0;\n  }\n  .title-right.breadcrumbs-off .hgroup {\n    padding-top: 5px;\n  }\n  .title-left.disabled-bg .breadcrumbs {\n    margin-bottom: 0;\n  }\n}\n'),(1324,2410,'_wp_attached_file','2022/08/WhatsApp-Video-2022-08-30-at-12.37.02-PM.mp4'),(1325,2410,'_wp_attachment_metadata','a:10:{s:8:\"filesize\";i:3500248;s:9:\"mime_type\";s:9:\"video/mp4\";s:6:\"length\";i:32;s:16:\"length_formatted\";s:4:\"0:32\";s:5:\"width\";i:1280;s:6:\"height\";i:720;s:10:\"fileformat\";s:3:\"mp4\";s:10:\"dataformat\";s:9:\"quicktime\";s:5:\"audio\";a:7:{s:10:\"dataformat\";s:3:\"mp4\";s:5:\"codec\";s:19:\"ISO/IEC 14496-3 AAC\";s:11:\"sample_rate\";d:48000;s:8:\"channels\";i:2;s:15:\"bits_per_sample\";i:16;s:8:\"lossless\";b:0;s:11:\"channelmode\";s:6:\"stereo\";}s:17:\"created_timestamp\";i:-2082844800;}'),(1326,2411,'_wp_attached_file','revslider/video-media/WhatsApp-Video-2022-08-30-at-12_8.jpeg'),(1327,2411,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1280;s:6:\"height\";i:720;s:4:\"file\";s:60:\"revslider/video-media/WhatsApp-Video-2022-08-30-at-12_8.jpeg\";s:8:\"filesize\";i:88571;s:5:\"sizes\";a:10:{s:6:\"medium\";a:5:{s:4:\"file\";s:46:\"WhatsApp-Video-2022-08-30-at-12_8-300x169.jpeg\";s:5:\"width\";i:300;s:6:\"height\";i:169;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:14005;}s:5:\"large\";a:5:{s:4:\"file\";s:47:\"WhatsApp-Video-2022-08-30-at-12_8-1024x576.jpeg\";s:5:\"width\";i:1024;s:6:\"height\";i:576;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:79592;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:46:\"WhatsApp-Video-2022-08-30-at-12_8-150x150.jpeg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:7009;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:46:\"WhatsApp-Video-2022-08-30-at-12_8-768x432.jpeg\";s:5:\"width\";i:768;s:6:\"height\";i:432;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:53430;}s:21:\"woocommerce_thumbnail\";a:6:{s:4:\"file\";s:46:\"WhatsApp-Video-2022-08-30-at-12_8-300x300.jpeg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:18695;s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:5:{s:4:\"file\";s:46:\"WhatsApp-Video-2022-08-30-at-12_8-600x338.jpeg\";s:5:\"width\";i:600;s:6:\"height\";i:338;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:38420;}s:29:\"woocommerce_gallery_thumbnail\";a:5:{s:4:\"file\";s:46:\"WhatsApp-Video-2022-08-30-at-12_8-200x200.jpeg\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:10455;}s:12:\"shop_catalog\";a:5:{s:4:\"file\";s:46:\"WhatsApp-Video-2022-08-30-at-12_8-300x300.jpeg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:18695;}s:11:\"shop_single\";a:5:{s:4:\"file\";s:46:\"WhatsApp-Video-2022-08-30-at-12_8-600x338.jpeg\";s:5:\"width\";i:600;s:6:\"height\";i:338;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:38420;}s:14:\"shop_thumbnail\";a:5:{s:4:\"file\";s:46:\"WhatsApp-Video-2022-08-30-at-12_8-200x200.jpeg\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:10455;}}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:{}}}'),(23019,3614,'_dt_header_disabled_transparent_bg_opacity','50'),(23018,3614,'_dt_header_disabled_transparent_bg_color','#000000'),(23017,3614,'_dt_header_disabled_transparent_top_bar_bg_opacity','25'),(23016,3614,'_dt_header_disabled_transparent_top_bar_bg_color','#ffffff'),(22812,3611,'_dt_sidebar_widgetarea_id','sidebar_1'),(1373,2417,'_menu_item_type','custom'),(1374,2417,'_menu_item_menu_item_parent','0'),(1375,2417,'_menu_item_object_id','2417'),(1376,2417,'_menu_item_object','custom'),(1377,2417,'_menu_item_target',''),(1378,2417,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(1379,2417,'_menu_item_xfn',''),(1380,2417,'_menu_item_url','#'),(1382,2418,'_menu_item_type','custom'),(1383,2418,'_menu_item_menu_item_parent','2417'),(1384,2418,'_menu_item_object_id','2418'),(1385,2418,'_menu_item_object','custom'),(1386,2418,'_menu_item_target',''),(1387,2418,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(1388,2418,'_menu_item_xfn',''),(1389,2418,'_menu_item_url','/medivesta-laboratories-pvt-ltd'),(1391,2419,'_menu_item_type','custom'),(1392,2419,'_menu_item_menu_item_parent','2417'),(1393,2419,'_menu_item_object_id','2419'),(1394,2419,'_menu_item_object','custom'),(1395,2419,'_menu_item_target',''),(1396,2419,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(1397,2419,'_menu_item_xfn',''),(1398,2419,'_menu_item_url','/technical-service'),(1400,2420,'_menu_item_type','custom'),(1401,2420,'_menu_item_menu_item_parent','2417'),(1402,2420,'_menu_item_object_id','2420'),(1403,2420,'_menu_item_object','custom'),(1404,2420,'_menu_item_target',''),(1405,2420,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(1406,2420,'_menu_item_xfn',''),(1407,2420,'_menu_item_url','/farmer-training'),(1409,2421,'_menu_item_type','custom'),(1410,2421,'_menu_item_menu_item_parent','2417'),(1411,2421,'_menu_item_object_id','2421'),(1412,2421,'_menu_item_object','custom'),(1413,2421,'_menu_item_target',''),(1414,2421,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(1415,2421,'_menu_item_xfn',''),(1416,2421,'_menu_item_url','/vaccination-service'),(1476,39,'_wp_old_date','2022-08-29'),(1418,2422,'_menu_item_type','custom'),(1419,2422,'_menu_item_menu_item_parent','0'),(1420,2422,'_menu_item_object_id','2422'),(1421,2422,'_menu_item_object','custom'),(1422,2422,'_menu_item_target',''),(1423,2422,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(1424,2422,'_menu_item_xfn',''),(1425,2422,'_menu_item_url','/about-us-2/'),(13073,2610,'_wp_old_date','2022-09-07'),(1477,2428,'_wp_attached_file','2022/08/WhatsApp-Video-2022-08-30-at-1.30.14-PM.mp4'),(1478,2428,'_wp_attachment_metadata','a:10:{s:8:\"filesize\";i:9519265;s:9:\"mime_type\";s:9:\"video/mp4\";s:6:\"length\";i:32;s:16:\"length_formatted\";s:4:\"0:32\";s:5:\"width\";i:1280;s:6:\"height\";i:720;s:10:\"fileformat\";s:3:\"mp4\";s:10:\"dataformat\";s:9:\"quicktime\";s:5:\"audio\";a:7:{s:10:\"dataformat\";s:3:\"mp4\";s:5:\"codec\";s:19:\"ISO/IEC 14496-3 AAC\";s:11:\"sample_rate\";d:48000;s:8:\"channels\";i:2;s:15:\"bits_per_sample\";i:16;s:8:\"lossless\";b:0;s:11:\"channelmode\";s:6:\"stereo\";}s:17:\"created_timestamp\";i:-2082844800;}'),(1479,2429,'_wp_attached_file','revslider/video-media/WhatsApp-Video-2022-08-30-at-1_8.jpeg'),(1480,2429,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1280;s:6:\"height\";i:720;s:4:\"file\";s:59:\"revslider/video-media/WhatsApp-Video-2022-08-30-at-1_8.jpeg\";s:8:\"filesize\";i:87878;s:5:\"sizes\";a:10:{s:6:\"medium\";a:5:{s:4:\"file\";s:45:\"WhatsApp-Video-2022-08-30-at-1_8-300x169.jpeg\";s:5:\"width\";i:300;s:6:\"height\";i:169;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:13925;}s:5:\"large\";a:5:{s:4:\"file\";s:46:\"WhatsApp-Video-2022-08-30-at-1_8-1024x576.jpeg\";s:5:\"width\";i:1024;s:6:\"height\";i:576;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:79228;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:45:\"WhatsApp-Video-2022-08-30-at-1_8-150x150.jpeg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:6980;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:45:\"WhatsApp-Video-2022-08-30-at-1_8-768x432.jpeg\";s:5:\"width\";i:768;s:6:\"height\";i:432;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:53107;}s:21:\"woocommerce_thumbnail\";a:6:{s:4:\"file\";s:45:\"WhatsApp-Video-2022-08-30-at-1_8-300x300.jpeg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:18571;s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:5:{s:4:\"file\";s:45:\"WhatsApp-Video-2022-08-30-at-1_8-600x338.jpeg\";s:5:\"width\";i:600;s:6:\"height\";i:338;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:38196;}s:29:\"woocommerce_gallery_thumbnail\";a:5:{s:4:\"file\";s:45:\"WhatsApp-Video-2022-08-30-at-1_8-200x200.jpeg\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:10385;}s:12:\"shop_catalog\";a:5:{s:4:\"file\";s:45:\"WhatsApp-Video-2022-08-30-at-1_8-300x300.jpeg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:18571;}s:11:\"shop_single\";a:5:{s:4:\"file\";s:45:\"WhatsApp-Video-2022-08-30-at-1_8-600x338.jpeg\";s:5:\"width\";i:600;s:6:\"height\";i:338;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:38196;}s:14:\"shop_thumbnail\";a:5:{s:4:\"file\";s:45:\"WhatsApp-Video-2022-08-30-at-1_8-200x200.jpeg\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:10385;}}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:{}}}'),(1481,2430,'_wp_attached_file','2022/08/WhatsApp-Image-2022-08-30-at-12.36.46-PM.jpeg'),(1482,2430,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1280;s:6:\"height\";i:1207;s:4:\"file\";s:53:\"2022/08/WhatsApp-Image-2022-08-30-at-12.36.46-PM.jpeg\";s:8:\"filesize\";i:343507;s:5:\"sizes\";a:10:{s:6:\"medium\";a:5:{s:4:\"file\";s:53:\"WhatsApp-Image-2022-08-30-at-12.36.46-PM-300x283.jpeg\";s:5:\"width\";i:300;s:6:\"height\";i:283;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:14159;}s:5:\"large\";a:5:{s:4:\"file\";s:54:\"WhatsApp-Image-2022-08-30-at-12.36.46-PM-1024x966.jpeg\";s:5:\"width\";i:1024;s:6:\"height\";i:966;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:116413;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:53:\"WhatsApp-Image-2022-08-30-at-12.36.46-PM-150x150.jpeg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:5116;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:53:\"WhatsApp-Image-2022-08-30-at-12.36.46-PM-768x724.jpeg\";s:5:\"width\";i:768;s:6:\"height\";i:724;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:69337;}s:21:\"woocommerce_thumbnail\";a:6:{s:4:\"file\";s:53:\"WhatsApp-Image-2022-08-30-at-12.36.46-PM-300x300.jpeg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:14770;s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:5:{s:4:\"file\";s:53:\"WhatsApp-Image-2022-08-30-at-12.36.46-PM-600x566.jpeg\";s:5:\"width\";i:600;s:6:\"height\";i:566;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:45314;}s:29:\"woocommerce_gallery_thumbnail\";a:5:{s:4:\"file\";s:53:\"WhatsApp-Image-2022-08-30-at-12.36.46-PM-200x200.jpeg\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:7831;}s:12:\"shop_catalog\";a:5:{s:4:\"file\";s:53:\"WhatsApp-Image-2022-08-30-at-12.36.46-PM-300x300.jpeg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:14770;}s:11:\"shop_single\";a:5:{s:4:\"file\";s:53:\"WhatsApp-Image-2022-08-30-at-12.36.46-PM-600x566.jpeg\";s:5:\"width\";i:600;s:6:\"height\";i:566;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:45314;}s:14:\"shop_thumbnail\";a:5:{s:4:\"file\";s:53:\"WhatsApp-Image-2022-08-30-at-12.36.46-PM-200x200.jpeg\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:7831;}}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:{}}}'),(1775,2543,'_wpb_shortcodes_custom_css','.vc_custom_1662363666143{background-image: url(https://farmchemie.yasithawd.com/wp-content/uploads/2022/09/marketbgimg1-sp.png?id=2527) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}.vc_custom_1662368347025{margin-top: 20px !important;margin-right: 50px !important;margin-left: 50px !important;}.vc_custom_1662367183321{background-color: #6e368d !important;}.vc_custom_1662367741225{background-color: #089548 !important;}'),(1776,2544,'_wpb_post_custom_css','.vc_custom_1662364566926 {\r\n    border-radius: 0px 35px 35px 0px !important;\r\n}'),(1777,2544,'_wpb_shortcodes_custom_css','.vc_custom_1662363666143{background-image: url(https://farmchemie.yasithawd.com/wp-content/uploads/2022/09/marketbgimg1-sp.png?id=2527) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}.vc_custom_1662368347025{margin-top: 20px !important;margin-right: 50px !important;margin-left: 50px !important;}.vc_custom_1662367183321{background-color: #6e368d !important;}.vc_custom_1662367741225{background-color: #089548 !important;}'),(1778,2545,'_wpb_post_custom_css','.vc_custom_1662364566926 {\r\n    border-radius: 0px 35px 35px 0px !important;\r\n}'),(1779,2545,'_wpb_shortcodes_custom_css','.vc_custom_1662363666143{background-image: url(https://farmchemie.yasithawd.com/wp-content/uploads/2022/09/marketbgimg1-sp.png?id=2527) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}.vc_custom_1662368347025{margin-top: 20px !important;margin-right: 50px !important;margin-left: 50px !important;}.vc_custom_1662367183321{background-color: #6e368d !important;}.vc_custom_1662367741225{background-color: #089548 !important;}'),(1780,2546,'_wpb_post_custom_css','.vc_custom_1662364566926 {\r\n    border-radius: 0px 35px 35px 0px !important;\r\n}'),(1781,2546,'_wpb_shortcodes_custom_css','.vc_custom_1662363666143{background-image: url(https://farmchemie.yasithawd.com/wp-content/uploads/2022/09/marketbgimg1-sp.png?id=2527) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}.vc_custom_1662368347025{margin-top: 20px !important;margin-right: 50px !important;margin-left: 50px !important;}.vc_custom_1662367183321{background-color: #6e368d !important;}.vc_custom_1662367741225{background-color: #089548 !important;}'),(1782,2547,'_wpb_post_custom_css','.vc_custom_1662364566926 {\r\n    border-radius: 0px 35px 35px 0px !important;\r\n}'),(1783,2547,'_wpb_shortcodes_custom_css','.vc_custom_1662363666143{background-image: url(https://farmchemie.yasithawd.com/wp-content/uploads/2022/09/marketbgimg1-sp.png?id=2527) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}.vc_custom_1662368347025{margin-top: 20px !important;margin-right: 50px !important;margin-left: 50px !important;}.vc_custom_1662367183321{background-color: #6e368d !important;}.vc_custom_1662367741225{background-color: #089548 !important;}'),(1784,2548,'_wpb_post_custom_css','.vc_custom_1662364566926 {\r\n    border-radius: 0px 35px 35px 0px !important;\r\n}'),(1785,2548,'_wpb_shortcodes_custom_css','.vc_custom_1662363666143{background-image: url(https://farmchemie.yasithawd.com/wp-content/uploads/2022/09/marketbgimg1-sp.png?id=2527) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}.vc_custom_1662368347025{margin-top: 20px !important;margin-right: 50px !important;margin-left: 50px !important;}.vc_custom_1662367183321{background-color: #6e368d !important;}.vc_custom_1662367741225{background-color: #089548 !important;}'),(1786,2549,'_wpb_post_custom_css','.vc_custom_1662364566926 {\r\n    border-radius: 0px 35px 35px 0px !important;\r\n}'),(1787,2549,'_wpb_shortcodes_custom_css','.vc_custom_1662363666143{background-image: url(https://farmchemie.yasithawd.com/wp-content/uploads/2022/09/marketbgimg1-sp.png?id=2527) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}.vc_custom_1662368347025{margin-top: 20px !important;margin-right: 50px !important;margin-left: 50px !important;}.vc_custom_1662367183321{background-color: #6e368d !important;}.vc_custom_1662367741225{background-color: #089548 !important;}'),(1788,2550,'_wpb_post_custom_css','.vc_custom_1662364566926 {\r\n    border-radius: 0px 35px 35px 0px !important;\r\n}'),(1789,2550,'_wpb_shortcodes_custom_css','.vc_custom_1662363666143{background-image: url(https://farmchemie.yasithawd.com/wp-content/uploads/2022/09/marketbgimg1-sp.png?id=2527) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}.vc_custom_1662368347025{margin-top: 20px !important;margin-right: 50px !important;margin-left: 50px !important;}.vc_custom_1662367183321{background-color: #6e368d !important;}.vc_custom_1662367741225{background-color: #089548 !important;}'),(1790,2551,'_wpb_post_custom_css','.vc_custom_1662364566926 {\r\n    border-radius: 0px 35px 35px 0px !important;\r\n}'),(1791,2551,'_wpb_shortcodes_custom_css','.vc_custom_1662363666143{background-image: url(https://farmchemie.yasithawd.com/wp-content/uploads/2022/09/marketbgimg1-sp.png?id=2527) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}.vc_custom_1662368347025{margin-top: 20px !important;margin-right: 50px !important;margin-left: 50px !important;}.vc_custom_1662367183321{background-color: #6e368d !important;}.vc_custom_1662367741225{background-color: #089548 !important;}'),(1792,2552,'_wpb_post_custom_css','.vc_custom_1662364566926 {\r\n    border-radius: 0px 35px 35px 0px !important;\r\n}'),(1793,2552,'_wpb_shortcodes_custom_css','.vc_custom_1662363666143{background-image: url(https://farmchemie.yasithawd.com/wp-content/uploads/2022/09/marketbgimg1-sp.png?id=2527) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}.vc_custom_1662368347025{margin-top: 20px !important;margin-right: 50px !important;margin-left: 50px !important;}.vc_custom_1662367183321{background-color: #6e368d !important;}.vc_custom_1662367741225{background-color: #089548 !important;}'),(1794,2553,'_wpb_post_custom_css','.vc_custom_1662364566926 {\r\n    border-radius: 0px 35px 35px 0px !important;\r\n}'),(22340,3604,'_dt_header_transparent_bg_color','#000000'),(22341,3604,'_dt_header_transparent_bg_opacity','50'),(22342,3604,'_dt_header_disabled_background','normal'),(22343,3604,'_dt_header_disabled_transparent_bg_color_scheme','light'),(22344,3604,'_dt_header_disabled_transparent_top_bar_bg_color','#ffffff'),(1764,2538,'_wpb_post_custom_css','.vc_custom_1662364566926 {\r\n    border-radius: 0px 35px 35px 0px !important;\r\n}'),(1765,2538,'_wpb_shortcodes_custom_css','.vc_custom_1662363666143{background-image: url(https://farmchemie.yasithawd.com/wp-content/uploads/2022/09/marketbgimg1-sp.png?id=2527) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}.vc_custom_1662367183321{background-color: #6e368d !important;}.vc_custom_1662367741225{background-color: #089548 !important;}'),(1766,2539,'_wpb_post_custom_css','.vc_custom_1662364566926 {\r\n    border-radius: 0px 35px 35px 0px !important;\r\n}'),(1767,2539,'_wpb_shortcodes_custom_css','.vc_custom_1662363666143{background-image: url(https://farmchemie.yasithawd.com/wp-content/uploads/2022/09/marketbgimg1-sp.png?id=2527) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}.vc_custom_1662367183321{background-color: #6e368d !important;}.vc_custom_1662367741225{background-color: #089548 !important;}'),(1768,2540,'_wpb_post_custom_css','.vc_custom_1662364566926 {\r\n    border-radius: 0px 35px 35px 0px !important;\r\n}'),(22646,3608,'_dt_fancy_header_breadcrumbs','disabled'),(22645,3608,'_dt_fancy_header_breadcrumbs_heading',''),(22644,3608,'_dt_fancy_header_padding-bottom','0px'),(22643,3608,'_dt_fancy_header_padding-top','0px'),(22642,3608,'_dt_fancy_header_height','140'),(22641,3608,'_dt_fancy_header_title_aligment','all_left'),(22640,3608,'_dt_fancy_header_layout_heading',''),(22639,3608,'_dt_mobile_page_padding_left',''),(22638,3608,'_dt_mobile_page_padding_bottom',''),(22637,3608,'_dt_mobile_page_padding_right',''),(22636,3608,'_dt_mobile_page_padding_top',''),(22635,3608,'_dt_page_overrides_left_margin',''),(22634,3608,'_dt_page_overrides_bottom_margin',''),(22633,3608,'_dt_page_overrides_right_margin',''),(22632,3608,'_dt_page_overrides_top_margin','1%'),(22631,3608,'_dt_header_disabled_transparent_bg_opacity','50'),(22630,3608,'_dt_header_disabled_transparent_bg_color','#000000'),(22629,3608,'_dt_header_disabled_transparent_top_bar_bg_opacity','25'),(22628,3608,'_dt_header_disabled_transparent_top_bar_bg_color','#ffffff'),(22627,3608,'_dt_header_disabled_transparent_bg_color_scheme','light'),(22626,3608,'_dt_header_disabled_background','normal'),(22625,3608,'_dt_header_transparent_bg_opacity','50'),(22624,3608,'_dt_header_transparent_bg_color','#000000'),(22623,3608,'_dt_header_transparent_top_bar_bg_opacity','25'),(22622,3608,'_dt_header_transparent_top_bar_bg_color','#ffffff'),(22621,3608,'_dt_header_transparent_bg_color_scheme','light'),(22620,3608,'_dt_header_background_below_slideshow','disabled'),(22619,3608,'_dt_header_background','normal'),(22618,3608,'_dt_header_title','fancy'),(1769,2540,'_wpb_shortcodes_custom_css','.vc_custom_1662363666143{background-image: url(https://farmchemie.yasithawd.com/wp-content/uploads/2022/09/marketbgimg1-sp.png?id=2527) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}.vc_custom_1662368347025{margin-top: 20px !important;margin-right: 50px !important;margin-left: 50px !important;}.vc_custom_1662367183321{background-color: #6e368d !important;}.vc_custom_1662367741225{background-color: #089548 !important;}'),(22615,3608,'_dt_footer_show','1'),(22616,3608,'_dt_footer_widgetarea_id','sidebar_2'),(22617,3608,'_dt_footer_hide_on_mobile','0'),(22685,3608,'_dt_fancy_header_responsive_breadcrumbs','disabled'),(1486,2434,'layout','grid'),(1487,2436,'layout','half'),(1488,2438,'layout','thumbnail'),(1489,2437,'layout','full'),(22661,3608,'_dt_fancy_header_subtitle_text_transform','none'),(22662,3608,'_dt_fancy_header_subtitle_color_mode','color'),(22663,3608,'_dt_fancy_header_subtitle_color','#792c8a'),(22664,3608,'_dt_fancy_header_bg_heading',''),(22665,3608,'_dt_fancy_header_bg_color','#ffffff'),(22666,3608,'_dt_fancy_header_bg_image_origin','custom'),(22684,3608,'_dt_fancy_header_responsive_subtitle_line_height','28'),(16447,3321,'_wp_attached_file','2023/08/AVI-Tonic-1.pdf'),(16448,3321,'_wp_attachment_metadata','a:2:{s:5:\"sizes\";a:3:{s:4:\"full\";a:5:{s:4:\"file\";s:19:\"AVI-Tonic-1-pdf.jpg\";s:5:\"width\";i:384;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:130309;}s:6:\"medium\";a:5:{s:4:\"file\";s:27:\"AVI-Tonic-1-pdf-225x300.jpg\";s:5:\"width\";i:225;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:76861;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:27:\"AVI-Tonic-1-pdf-113x150.jpg\";s:5:\"width\";i:113;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:57154;}}s:8:\"filesize\";i:1491912;}'),(2113,2422,'_wp_old_date','2022-08-30'),(22813,3611,'_dt_sidebar_hide_on_mobile','0'),(12920,2908,'_wpb_shortcodes_custom_css','.vc_custom_1684836308288{margin-top: 15px !important;}.vc_custom_1684836047081{margin-top: 15px !important;}.vc_custom_1684836055469{margin-top: 15px !important;}'),(2092,2633,'_dt_fancy_header_bg_fullscreen','1'),(2091,2633,'_dt_fancy_header_bg_position_y','center'),(2090,2633,'_dt_fancy_header_bg_position_x','center'),(2066,2633,'_dt_fancy_header_padding-bottom','0px'),(2065,2633,'_dt_fancy_header_padding-top','0px'),(2064,2633,'_dt_fancy_header_height','300'),(2043,2633,'_dt_header_transparent_bg_color_scheme','light'),(2042,2633,'_dt_header_background_below_slideshow','disabled'),(2014,2622,'_dt_page_overrides_top_margin',''),(2013,2622,'_dt_header_disabled_transparent_bg_opacity','50'),(2012,2622,'_dt_header_disabled_transparent_bg_color','#000000'),(1989,2621,'_edit_lock','1692188203:1'),(1531,2454,'_edit_last','1'),(1532,2454,'_edit_lock','1661921217:1'),(15761,3251,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:300;s:6:\"height\";i:74;s:4:\"file\";s:25:\"2023/05/AVI-B_-Logo-2.png\";s:8:\"filesize\";i:1776;s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:24:\"AVI-B_-Logo-2-150x74.png\";s:5:\"width\";i:150;s:6:\"height\";i:74;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:3237;}s:29:\"woocommerce_gallery_thumbnail\";a:5:{s:4:\"file\";s:24:\"AVI-B_-Logo-2-200x74.png\";s:5:\"width\";i:200;s:6:\"height\";i:74;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:4353;}s:14:\"shop_thumbnail\";a:5:{s:4:\"file\";s:24:\"AVI-B_-Logo-2-200x74.png\";s:5:\"width\";i:200;s:6:\"height\";i:74;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:4353;}}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:{}}}'),(15762,3252,'_wp_attached_file','2023/05/AVI-B.pdf'),(15763,3252,'_wp_attachment_metadata','a:2:{s:5:\"sizes\";a:3:{s:4:\"full\";a:5:{s:4:\"file\";s:13:\"AVI-B-pdf.jpg\";s:5:\"width\";i:384;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:156604;}s:6:\"medium\";a:5:{s:4:\"file\";s:21:\"AVI-B-pdf-225x300.jpg\";s:5:\"width\";i:225;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:80406;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:21:\"AVI-B-pdf-113x150.jpg\";s:5:\"width\";i:113;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:53862;}}s:8:\"filesize\";i:553971;}'),(27434,3664,'_dt_fancy_header_scroll_effect','default'),(27435,3664,'_dt_fancy_header_bg_parallax','0.5'),(27436,3664,'_dt_fancy_header_responsiveness_heading',''),(27437,3664,'_dt_fancy_header_responsiveness','enabled'),(27438,3664,'_dt_fancy_header_responsiveness_switch','778px'),(27439,3664,'_dt_fancy_header_responsive_height','140'),(27440,3664,'_dt_fancy_header_responsive_font_size','30'),(27441,3664,'_dt_fancy_header_responsive_title_line_height','38'),(27442,3664,'_dt_fancy_header_responsive_subtitle_font_size','20'),(27443,3664,'_dt_fancy_header_responsive_subtitle_line_height','28'),(27444,3664,'_dt_fancy_header_responsive_breadcrumbs','disabled'),(27445,3664,'the7_fancy_title_css','#main {\n  padding-top: 1%;\n}\n.fancy-header {\n  background-image: url(\'https://farmchemie.yasithawd.com/wp-content/uploads/2023/09/CEVAC-FP-L_300px-1.png\');\n  background-repeat: no-repeat;\n  background-position: center center;\n  background-size: auto auto;\n  background-color: #ffffff;\n}\n.mobile-false .fancy-header {\n  background-attachment: scroll;\n}\n.fancy-header .wf-wrap {\n  min-height: 140px;\n  padding-top: 0px;\n  padding-bottom: 0px;\n}\n.fancy-header .fancy-title {\n  font-size: 32px;\n  line-height: 36px;\n  color: #079547;\n  text-transform: none;\n}\n.fancy-header .fancy-subtitle {\n  font-size: 24px;\n  line-height: 26px;\n  color: #792c8a;\n  text-transform: none;\n}\n.fancy-header .breadcrumbs {\n  color: #ffffff;\n}\n.fancy-header-overlay {\n  background: rgba(0,0,0,0.5);\n}\n@media screen and (max-width: 778px) {\n  .fancy-header .wf-wrap {\n    min-height: 140px;\n  }\n  .fancy-header .fancy-title {\n    font-size: 30px;\n    line-height: 38px;\n  }\n  .fancy-header .fancy-subtitle {\n    font-size: 20px;\n    line-height: 28px;\n  }\n  .fancy-header.breadcrumbs-mobile-off .breadcrumbs {\n    display: none;\n  }\n  #fancy-header > .wf-wrap {\n    flex-flow: column wrap;\n    align-items: center;\n    justify-content: center;\n    padding-bottom: 0px !important;\n  }\n  .fancy-header.title-left .breadcrumbs {\n    text-align: center;\n    float: none;\n  }\n  .breadcrumbs {\n    margin-bottom: 10px;\n  }\n  .breadcrumbs.breadcrumbs-bg {\n    margin-top: 10px;\n  }\n  .fancy-header.title-right .breadcrumbs {\n    margin: 10px 0 10px 0;\n  }\n  #fancy-header .hgroup,\n  #fancy-header .breadcrumbs {\n    text-align: center;\n  }\n  .fancy-header .hgroup {\n    padding-bottom: 5px;\n  }\n  .breadcrumbs-off .hgroup {\n    padding-bottom: 5px;\n  }\n  .title-right .hgroup {\n    padding: 0 0 5px 0;\n  }\n  .title-right.breadcrumbs-off .hgroup {\n    padding-top: 5px;\n  }\n  .title-left.disabled-bg .breadcrumbs {\n    margin-bottom: 0;\n  }\n}\n'),(20737,3413,'dt-img-hide-title','0'),(17829,2926,'_wpb_shortcodes_custom_css_updated','1'),(15778,3260,'_wp_attached_file','2023/08/Founded-in-2002.png'),(15764,3253,'_wpb_shortcodes_custom_css','.vc_custom_1692198837685{margin-top: 35px !important;padding-top: 65px !important;padding-bottom: 100px !important;}.vc_custom_1684836308288{margin-top: 15px !important;}.vc_custom_1692359205466{margin-top: 35px !important;}.vc_custom_1692359216075{margin-top: 35px !important;}.vc_custom_1692359231594{margin-top: 35px !important;}.vc_custom_1692359239274{margin-top: 35px !important;}.vc_custom_1692359246626{margin-top: 35px !important;}.vc_custom_1692359252258{margin-top: 35px !important;}.vc_custom_1692359258634{margin-top: 35px !important;}.vc_custom_1691995519863{background-color: #f4ab20 !important;border: 1px solid #f4ab20 !important;border-radius: 35px !important;}.vc_custom_1691995661095{background-color: #722f8b !important;border: 1px solid #722f8b !important;border-radius: 35px !important;}.vc_custom_1691995661095{background-color: #722f8b !important;border: 1px solid #722f8b !important;border-radius: 35px !important;}.vc_custom_1691995519863{background-color: #f4ab20 !important;border: 1px solid #f4ab20 !important;border-radius: 35px !important;}.vc_custom_1691996718116{border-radius: 35px !important;}.vc_custom_1691995519863{background-color: #f4ab20 !important;border: 1px solid #f4ab20 !important;border-radius: 35px !important;}.vc_custom_1692278936750{border-top-width: 1px !important;border-right-width: 1px !important;border-bottom-width: 1px !important;border-left-width: 1px !important;border-left-color: #059444 !important;border-left-style: solid !important;border-right-color: #059444 !important;border-right-style: solid !important;border-top-color: #059444 !important;border-top-style: solid !important;border-bottom-color: #059444 !important;border-bottom-style: solid !important;border-radius: 1px !important;}.vc_custom_1692278936750{border-top-width: 1px !important;border-right-width: 1px !important;border-bottom-width: 1px !important;border-left-width: 1px !important;border-left-color: #059444 !important;border-left-style: solid !important;border-right-color: #059444 !important;border-right-style: solid !important;border-top-color: #059444 !important;border-top-style: solid !important;border-bottom-color: #059444 !important;border-bottom-style: solid !important;border-radius: 1px !important;}.vc_custom_1692278929158{border-top-width: 1px !important;border-right-width: 1px !important;border-bottom-width: 1px !important;border-left-width: 1px !important;border-left-color: #059444 !important;border-left-style: solid !important;border-right-color: #059444 !important;border-right-style: solid !important;border-top-color: #059444 !important;border-top-style: solid !important;border-bottom-color: #059444 !important;border-bottom-style: solid !important;border-radius: 1px !important;}.vc_custom_1692278922309{border-top-width: 1px !important;border-right-width: 1px !important;border-bottom-width: 1px !important;border-left-width: 1px !important;border-left-color: #059444 !important;border-left-style: solid !important;border-right-color: #059444 !important;border-right-style: solid !important;border-top-color: #059444 !important;border-top-style: solid !important;border-bottom-color: #059444 !important;border-bottom-style: solid !important;border-radius: 1px !important;}.vc_custom_1692278922309{border-top-width: 1px !important;border-right-width: 1px !important;border-bottom-width: 1px !important;border-left-width: 1px !important;border-left-color: #059444 !important;border-left-style: solid !important;border-right-color: #059444 !important;border-right-style: solid !important;border-top-color: #059444 !important;border-top-style: solid !important;border-bottom-color: #059444 !important;border-bottom-style: solid !important;border-radius: 1px !important;}.vc_custom_1692278929158{border-top-width: 1px !important;border-right-width: 1px !important;border-bottom-width: 1px !important;border-left-width: 1px !important;border-left-color: #059444 !important;border-left-style: solid !important;border-right-color: #059444 !important;border-right-style: solid !important;border-top-color: #059444 !important;border-top-style: solid !important;border-bottom-color: #059444 !important;border-bottom-style: solid !important;border-radius: 1px !important;}.vc_custom_1692278936750{border-top-width: 1px !important;border-right-width: 1px !important;border-bottom-width: 1px !important;border-left-width: 1px !important;border-left-color: #059444 !important;border-left-style: solid !important;border-right-color: #059444 !important;border-right-style: solid !important;border-top-color: #059444 !important;border-top-style: solid !important;border-bottom-color: #059444 !important;border-bottom-style: solid !important;border-radius: 1px !important;}.vc_custom_1692278922309{border-top-width: 1px !important;border-right-width: 1px !important;border-bottom-width: 1px !important;border-left-width: 1px !important;border-left-color: #059444 !important;border-left-style: solid !important;border-right-color: #059444 !important;border-right-style: solid !important;border-top-color: #059444 !important;border-top-style: solid !important;border-bottom-color: #059444 !important;border-bottom-style: solid !important;border-radius: 1px !important;}.vc_custom_1692278929158{border-top-width: 1px !important;border-right-width: 1px !important;border-bottom-width: 1px !important;border-left-width: 1px !important;border-left-color: #059444 !important;border-left-style: solid !important;border-right-color: #059444 !important;border-right-style: solid !important;border-top-color: #059444 !important;border-top-style: solid !important;border-bottom-color: #059444 !important;border-bottom-style: solid !important;border-radius: 1px !important;}.vc_custom_1692278936750{border-top-width: 1px !important;border-right-width: 1px !important;border-bottom-width: 1px !important;border-left-width: 1px !important;border-left-color: #059444 !important;border-left-style: solid !important;border-right-color: #059444 !important;border-right-style: solid !important;border-top-color: #059444 !important;border-top-style: solid !important;border-bottom-color: #059444 !important;border-bottom-style: solid !important;border-radius: 1px !important;}.vc_custom_1692278936750{border-top-width: 1px !important;border-right-width: 1px !important;border-bottom-width: 1px !important;border-left-width: 1px !important;border-left-color: #059444 !important;border-left-style: solid !important;border-right-color: #059444 !important;border-right-style: solid !important;border-top-color: #059444 !important;border-top-style: solid !important;border-bottom-color: #059444 !important;border-bottom-style: solid !important;border-radius: 1px !important;}.vc_custom_1692278929158{border-top-width: 1px !important;border-right-width: 1px !important;border-bottom-width: 1px !important;border-left-width: 1px !important;border-left-color: #059444 !important;border-left-style: solid !important;border-right-color: #059444 !important;border-right-style: solid !important;border-top-color: #059444 !important;border-top-style: solid !important;border-bottom-color: #059444 !important;border-bottom-style: solid !important;border-radius: 1px !important;}.vc_custom_1692278922309{border-top-width: 1px !important;border-right-width: 1px !important;border-bottom-width: 1px !important;border-left-width: 1px !important;border-left-color: #059444 !important;border-left-style: solid !important;border-right-color: #059444 !important;border-right-style: solid !important;border-top-color: #059444 !important;border-top-style: solid !important;border-bottom-color: #059444 !important;border-bottom-style: solid !important;border-radius: 1px !important;}.vc_custom_1692278929158{border-top-width: 1px !important;border-right-width: 1px !important;border-bottom-width: 1px !important;border-left-width: 1px !important;border-left-color: #059444 !important;border-left-style: solid !important;border-right-color: #059444 !important;border-right-style: solid !important;border-top-color: #059444 !important;border-top-style: solid !important;border-bottom-color: #059444 !important;border-bottom-style: solid !important;border-radius: 1px !important;}'),(1546,2460,'_fbfba_show_photos_only',''),(1547,2460,'_fbfba_date_posted',''),(1548,2460,'_fbfba_read_more',''),(1549,2460,'_fbfba_profile_picture',''),(1550,2460,'_fbfba_caption_text',''),(1551,2460,'_fbfba_link_photos_to_instagram',''),(1552,2460,'_fbfba_hide_media',''),(1553,2460,'_edit_last','1'),(1554,2460,'_edit_lock','1661922584:1'),(1555,2460,'_fbfba_shortcode_value','[arrow_fb_feed id=\'2460\']'),(1556,2460,'_fbfba_theme_selection','default'),(1557,2460,'_fbfba_limit_post_characters','300'),(1558,2460,'_fbfba_column_count','2'),(1559,2460,'_fbfba_thumbnail_size','250'),(1560,2460,'_fbfba_feed_style','blog_style'),(1561,2460,'_fbfba_show_photos_from','userid'),(1562,2460,'_fbfba_user_id','FarmchemieLtd'),(1563,2460,'_fbfba_facebook_access_token',''),(1564,2460,'_fbfba_number_of_photos','20'),(1565,2460,'_fbfba_social_card_width','400'),(1566,2460,'_fbfba_heading_font_size',''),(1567,2460,'_fbfba_caption_font_size',''),(1568,2460,'_fbfba_social_card_heading_color',''),(1569,2460,'_fbfba_social_card_content_color',''),(1570,2460,'_fbfba_social_card_date_color',''),(1571,2460,'_fbfba_feed_profile_style','rounded'),(15771,3256,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1300;s:6:\"height\";i:600;s:4:\"file\";s:26:\"2023/08/Vision-Mission.png\";s:8:\"filesize\";i:298248;s:5:\"sizes\";a:10:{s:6:\"medium\";a:5:{s:4:\"file\";s:26:\"Vision-Mission-300x138.png\";s:5:\"width\";i:300;s:6:\"height\";i:138;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:61814;}s:5:\"large\";a:5:{s:4:\"file\";s:27:\"Vision-Mission-1024x473.png\";s:5:\"width\";i:1024;s:6:\"height\";i:473;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:724071;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:26:\"Vision-Mission-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:30663;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:26:\"Vision-Mission-768x354.png\";s:5:\"width\";i:768;s:6:\"height\";i:354;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:387109;}s:21:\"woocommerce_thumbnail\";a:6:{s:4:\"file\";s:26:\"Vision-Mission-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:108779;s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:5:{s:4:\"file\";s:26:\"Vision-Mission-600x277.png\";s:5:\"width\";i:600;s:6:\"height\";i:277;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:229606;}s:29:\"woocommerce_gallery_thumbnail\";a:5:{s:4:\"file\";s:26:\"Vision-Mission-200x200.png\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:50004;}s:12:\"shop_catalog\";a:5:{s:4:\"file\";s:26:\"Vision-Mission-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:108779;}s:11:\"shop_single\";a:5:{s:4:\"file\";s:26:\"Vision-Mission-600x277.png\";s:5:\"width\";i:600;s:6:\"height\";i:277;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:229606;}s:14:\"shop_thumbnail\";a:5:{s:4:\"file\";s:26:\"Vision-Mission-200x200.png\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:50004;}}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:{}}}'),(15766,3254,'_wpb_shortcodes_custom_css','.vc_custom_1692198837685{margin-top: 35px !important;padding-top: 65px !important;padding-bottom: 100px !important;}.vc_custom_1684836308288{margin-top: 15px !important;}.vc_custom_1692359205466{margin-top: 35px !important;}.vc_custom_1692359216075{margin-top: 35px !important;}.vc_custom_1692359231594{margin-top: 35px !important;}.vc_custom_1692359239274{margin-top: 35px !important;}.vc_custom_1692359246626{margin-top: 35px !important;}.vc_custom_1692359252258{margin-top: 35px !important;}.vc_custom_1692359258634{margin-top: 35px !important;}.vc_custom_1691995519863{background-color: #f4ab20 !important;border: 1px solid #f4ab20 !important;border-radius: 35px !important;}.vc_custom_1691995661095{background-color: #722f8b !important;border: 1px solid #722f8b !important;border-radius: 35px !important;}.vc_custom_1691995661095{background-color: #722f8b !important;border: 1px solid #722f8b !important;border-radius: 35px !important;}.vc_custom_1691995519863{background-color: #f4ab20 !important;border: 1px solid #f4ab20 !important;border-radius: 35px !important;}.vc_custom_1691996718116{border-radius: 35px !important;}.vc_custom_1691995519863{background-color: #f4ab20 !important;border: 1px solid #f4ab20 !important;border-radius: 35px !important;}.vc_custom_1692278936750{border-top-width: 1px !important;border-right-width: 1px !important;border-bottom-width: 1px !important;border-left-width: 1px !important;border-left-color: #059444 !important;border-left-style: solid !important;border-right-color: #059444 !important;border-right-style: solid !important;border-top-color: #059444 !important;border-top-style: solid !important;border-bottom-color: #059444 !important;border-bottom-style: solid !important;border-radius: 1px !important;}.vc_custom_1692278936750{border-top-width: 1px !important;border-right-width: 1px !important;border-bottom-width: 1px !important;border-left-width: 1px !important;border-left-color: #059444 !important;border-left-style: solid !important;border-right-color: #059444 !important;border-right-style: solid !important;border-top-color: #059444 !important;border-top-style: solid !important;border-bottom-color: #059444 !important;border-bottom-style: solid !important;border-radius: 1px !important;}.vc_custom_1692278929158{border-top-width: 1px !important;border-right-width: 1px !important;border-bottom-width: 1px !important;border-left-width: 1px !important;border-left-color: #059444 !important;border-left-style: solid !important;border-right-color: #059444 !important;border-right-style: solid !important;border-top-color: #059444 !important;border-top-style: solid !important;border-bottom-color: #059444 !important;border-bottom-style: solid !important;border-radius: 1px !important;}.vc_custom_1692278922309{border-top-width: 1px !important;border-right-width: 1px !important;border-bottom-width: 1px !important;border-left-width: 1px !important;border-left-color: #059444 !important;border-left-style: solid !important;border-right-color: #059444 !important;border-right-style: solid !important;border-top-color: #059444 !important;border-top-style: solid !important;border-bottom-color: #059444 !important;border-bottom-style: solid !important;border-radius: 1px !important;}.vc_custom_1692278922309{border-top-width: 1px !important;border-right-width: 1px !important;border-bottom-width: 1px !important;border-left-width: 1px !important;border-left-color: #059444 !important;border-left-style: solid !important;border-right-color: #059444 !important;border-right-style: solid !important;border-top-color: #059444 !important;border-top-style: solid !important;border-bottom-color: #059444 !important;border-bottom-style: solid !important;border-radius: 1px !important;}.vc_custom_1692278929158{border-top-width: 1px !important;border-right-width: 1px !important;border-bottom-width: 1px !important;border-left-width: 1px !important;border-left-color: #059444 !important;border-left-style: solid !important;border-right-color: #059444 !important;border-right-style: solid !important;border-top-color: #059444 !important;border-top-style: solid !important;border-bottom-color: #059444 !important;border-bottom-style: solid !important;border-radius: 1px !important;}.vc_custom_1692278936750{border-top-width: 1px !important;border-right-width: 1px !important;border-bottom-width: 1px !important;border-left-width: 1px !important;border-left-color: #059444 !important;border-left-style: solid !important;border-right-color: #059444 !important;border-right-style: solid !important;border-top-color: #059444 !important;border-top-style: solid !important;border-bottom-color: #059444 !important;border-bottom-style: solid !important;border-radius: 1px !important;}.vc_custom_1692278922309{border-top-width: 1px !important;border-right-width: 1px !important;border-bottom-width: 1px !important;border-left-width: 1px !important;border-left-color: #059444 !important;border-left-style: solid !important;border-right-color: #059444 !important;border-right-style: solid !important;border-top-color: #059444 !important;border-top-style: solid !important;border-bottom-color: #059444 !important;border-bottom-style: solid !important;border-radius: 1px !important;}.vc_custom_1692278929158{border-top-width: 1px !important;border-right-width: 1px !important;border-bottom-width: 1px !important;border-left-width: 1px !important;border-left-color: #059444 !important;border-left-style: solid !important;border-right-color: #059444 !important;border-right-style: solid !important;border-top-color: #059444 !important;border-top-style: solid !important;border-bottom-color: #059444 !important;border-bottom-style: solid !important;border-radius: 1px !important;}.vc_custom_1692278936750{border-top-width: 1px !important;border-right-width: 1px !important;border-bottom-width: 1px !important;border-left-width: 1px !important;border-left-color: #059444 !important;border-left-style: solid !important;border-right-color: #059444 !important;border-right-style: solid !important;border-top-color: #059444 !important;border-top-style: solid !important;border-bottom-color: #059444 !important;border-bottom-style: solid !important;border-radius: 1px !important;}.vc_custom_1692278936750{border-top-width: 1px !important;border-right-width: 1px !important;border-bottom-width: 1px !important;border-left-width: 1px !important;border-left-color: #059444 !important;border-left-style: solid !important;border-right-color: #059444 !important;border-right-style: solid !important;border-top-color: #059444 !important;border-top-style: solid !important;border-bottom-color: #059444 !important;border-bottom-style: solid !important;border-radius: 1px !important;}.vc_custom_1692278929158{border-top-width: 1px !important;border-right-width: 1px !important;border-bottom-width: 1px !important;border-left-width: 1px !important;border-left-color: #059444 !important;border-left-style: solid !important;border-right-color: #059444 !important;border-right-style: solid !important;border-top-color: #059444 !important;border-top-style: solid !important;border-bottom-color: #059444 !important;border-bottom-style: solid !important;border-radius: 1px !important;}.vc_custom_1692278922309{border-top-width: 1px !important;border-right-width: 1px !important;border-bottom-width: 1px !important;border-left-width: 1px !important;border-left-color: #059444 !important;border-left-style: solid !important;border-right-color: #059444 !important;border-right-style: solid !important;border-top-color: #059444 !important;border-top-style: solid !important;border-bottom-color: #059444 !important;border-bottom-style: solid !important;border-radius: 1px !important;}.vc_custom_1692278929158{border-top-width: 1px !important;border-right-width: 1px !important;border-bottom-width: 1px !important;border-left-width: 1px !important;border-left-color: #059444 !important;border-left-style: solid !important;border-right-color: #059444 !important;border-right-style: solid !important;border-top-color: #059444 !important;border-top-style: solid !important;border-bottom-color: #059444 !important;border-bottom-style: solid !important;border-radius: 1px !important;}'),(22683,3608,'_dt_fancy_header_responsive_subtitle_font_size','20'),(22682,3608,'_dt_fancy_header_responsive_title_line_height','38'),(22681,3608,'_dt_fancy_header_responsive_font_size','30'),(22680,3608,'_dt_fancy_header_responsive_height','140'),(22811,3611,'_dt_sidebar_position','disabled'),(22810,3611,'_product_version','8.0.2'),(22350,3604,'_dt_page_overrides_bottom_margin',''),(22349,3604,'_dt_page_overrides_right_margin',''),(22348,3604,'_dt_page_overrides_top_margin','1%'),(22347,3604,'_dt_header_disabled_transparent_bg_opacity','50'),(22345,3604,'_dt_header_disabled_transparent_top_bar_bg_opacity','25'),(22346,3604,'_dt_header_disabled_transparent_bg_color','#000000'),(22573,3607,'_dt_fancy_header_bg_position_x','center'),(22572,3607,'_dt_fancy_header_bg_repeat','no-repeat'),(22571,3607,'_dt_fancy_header_bg_image','a:1:{i:0;i:3911;}'),(22570,3607,'_dt_fancy_header_bg_image_origin','custom'),(22569,3607,'_dt_fancy_header_bg_color','#ffffff'),(22568,3607,'_dt_fancy_header_bg_heading',''),(22567,3607,'_dt_fancy_header_subtitle_color','#792c8a'),(22566,3607,'_dt_fancy_header_subtitle_color_mode','color'),(22565,3607,'_dt_fancy_header_subtitle_text_transform','none'),(1770,2541,'_wpb_post_custom_css','.vc_custom_1662364566926 {\r\n    border-radius: 0px 35px 35px 0px !important;\r\n}'),(1771,2541,'_wpb_shortcodes_custom_css','.vc_custom_1662363666143{background-image: url(https://farmchemie.yasithawd.com/wp-content/uploads/2022/09/marketbgimg1-sp.png?id=2527) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}.vc_custom_1662368347025{margin-top: 20px !important;margin-right: 50px !important;margin-left: 50px !important;}.vc_custom_1662367183321{background-color: #6e368d !important;}.vc_custom_1662367741225{background-color: #089548 !important;}'),(1772,2542,'_wpb_post_custom_css','.vc_custom_1662364566926 {\r\n    border-radius: 0px 35px 35px 0px !important;\r\n}'),(1773,2542,'_wpb_shortcodes_custom_css','.vc_custom_1662363666143{background-image: url(https://farmchemie.yasithawd.com/wp-content/uploads/2022/09/marketbgimg1-sp.png?id=2527) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}.vc_custom_1662368347025{margin-top: 20px !important;margin-right: 50px !important;margin-left: 50px !important;}.vc_custom_1662367183321{background-color: #6e368d !important;}.vc_custom_1662367741225{background-color: #089548 !important;}'),(1774,2543,'_wpb_post_custom_css','.vc_custom_1662364566926 {\r\n    border-radius: 0px 35px 35px 0px !important;\r\n}'),(22614,3608,'_dt_sidebar_hide_on_mobile','0'),(22613,3608,'_dt_sidebar_widgetarea_id','sidebar_1'),(22612,3608,'_dt_sidebar_position','disabled'),(22611,3608,'_product_version','8.0.2'),(22610,3608,'_product_attributes','a:1:{s:15:\"pa_product-type\";a:6:{s:4:\"name\";s:15:\"pa_product-type\";s:5:\"value\";s:0:\"\";s:8:\"position\";i:0;s:10:\"is_visible\";i:0;s:12:\"is_variation\";i:0;s:11:\"is_taxonomy\";i:1;}}'),(22609,3608,'_wc_review_count','0'),(15768,3255,'_wpb_shortcodes_custom_css','.vc_custom_1692198837685{margin-top: 35px !important;padding-top: 65px !important;padding-bottom: 100px !important;}.vc_custom_1684836308288{margin-top: 15px !important;}.vc_custom_1692359205466{margin-top: 35px !important;}.vc_custom_1692359216075{margin-top: 35px !important;}.vc_custom_1692359231594{margin-top: 35px !important;}.vc_custom_1692359239274{margin-top: 35px !important;}.vc_custom_1692359246626{margin-top: 35px !important;}.vc_custom_1692359252258{margin-top: 35px !important;}.vc_custom_1692359258634{margin-top: 35px !important;}.vc_custom_1691995519863{background-color: #f4ab20 !important;border: 1px solid #f4ab20 !important;border-radius: 35px !important;}.vc_custom_1691995661095{background-color: #722f8b !important;border: 1px solid #722f8b !important;border-radius: 35px !important;}.vc_custom_1691995661095{background-color: #722f8b !important;border: 1px solid #722f8b !important;border-radius: 35px !important;}.vc_custom_1691995519863{background-color: #f4ab20 !important;border: 1px solid #f4ab20 !important;border-radius: 35px !important;}.vc_custom_1691996718116{border-radius: 35px !important;}.vc_custom_1691995519863{background-color: #f4ab20 !important;border: 1px solid #f4ab20 !important;border-radius: 35px !important;}.vc_custom_1692278936750{border-top-width: 1px !important;border-right-width: 1px !important;border-bottom-width: 1px !important;border-left-width: 1px !important;border-left-color: #059444 !important;border-left-style: solid !important;border-right-color: #059444 !important;border-right-style: solid !important;border-top-color: #059444 !important;border-top-style: solid !important;border-bottom-color: #059444 !important;border-bottom-style: solid !important;border-radius: 1px !important;}.vc_custom_1692278936750{border-top-width: 1px !important;border-right-width: 1px !important;border-bottom-width: 1px !important;border-left-width: 1px !important;border-left-color: #059444 !important;border-left-style: solid !important;border-right-color: #059444 !important;border-right-style: solid !important;border-top-color: #059444 !important;border-top-style: solid !important;border-bottom-color: #059444 !important;border-bottom-style: solid !important;border-radius: 1px !important;}.vc_custom_1692278929158{border-top-width: 1px !important;border-right-width: 1px !important;border-bottom-width: 1px !important;border-left-width: 1px !important;border-left-color: #059444 !important;border-left-style: solid !important;border-right-color: #059444 !important;border-right-style: solid !important;border-top-color: #059444 !important;border-top-style: solid !important;border-bottom-color: #059444 !important;border-bottom-style: solid !important;border-radius: 1px !important;}.vc_custom_1692278922309{border-top-width: 1px !important;border-right-width: 1px !important;border-bottom-width: 1px !important;border-left-width: 1px !important;border-left-color: #059444 !important;border-left-style: solid !important;border-right-color: #059444 !important;border-right-style: solid !important;border-top-color: #059444 !important;border-top-style: solid !important;border-bottom-color: #059444 !important;border-bottom-style: solid !important;border-radius: 1px !important;}.vc_custom_1692278922309{border-top-width: 1px !important;border-right-width: 1px !important;border-bottom-width: 1px !important;border-left-width: 1px !important;border-left-color: #059444 !important;border-left-style: solid !important;border-right-color: #059444 !important;border-right-style: solid !important;border-top-color: #059444 !important;border-top-style: solid !important;border-bottom-color: #059444 !important;border-bottom-style: solid !important;border-radius: 1px !important;}.vc_custom_1692278929158{border-top-width: 1px !important;border-right-width: 1px !important;border-bottom-width: 1px !important;border-left-width: 1px !important;border-left-color: #059444 !important;border-left-style: solid !important;border-right-color: #059444 !important;border-right-style: solid !important;border-top-color: #059444 !important;border-top-style: solid !important;border-bottom-color: #059444 !important;border-bottom-style: solid !important;border-radius: 1px !important;}.vc_custom_1692278936750{border-top-width: 1px !important;border-right-width: 1px !important;border-bottom-width: 1px !important;border-left-width: 1px !important;border-left-color: #059444 !important;border-left-style: solid !important;border-right-color: #059444 !important;border-right-style: solid !important;border-top-color: #059444 !important;border-top-style: solid !important;border-bottom-color: #059444 !important;border-bottom-style: solid !important;border-radius: 1px !important;}.vc_custom_1692278922309{border-top-width: 1px !important;border-right-width: 1px !important;border-bottom-width: 1px !important;border-left-width: 1px !important;border-left-color: #059444 !important;border-left-style: solid !important;border-right-color: #059444 !important;border-right-style: solid !important;border-top-color: #059444 !important;border-top-style: solid !important;border-bottom-color: #059444 !important;border-bottom-style: solid !important;border-radius: 1px !important;}.vc_custom_1692278929158{border-top-width: 1px !important;border-right-width: 1px !important;border-bottom-width: 1px !important;border-left-width: 1px !important;border-left-color: #059444 !important;border-left-style: solid !important;border-right-color: #059444 !important;border-right-style: solid !important;border-top-color: #059444 !important;border-top-style: solid !important;border-bottom-color: #059444 !important;border-bottom-style: solid !important;border-radius: 1px !important;}.vc_custom_1692278936750{border-top-width: 1px !important;border-right-width: 1px !important;border-bottom-width: 1px !important;border-left-width: 1px !important;border-left-color: #059444 !important;border-left-style: solid !important;border-right-color: #059444 !important;border-right-style: solid !important;border-top-color: #059444 !important;border-top-style: solid !important;border-bottom-color: #059444 !important;border-bottom-style: solid !important;border-radius: 1px !important;}.vc_custom_1692278936750{border-top-width: 1px !important;border-right-width: 1px !important;border-bottom-width: 1px !important;border-left-width: 1px !important;border-left-color: #059444 !important;border-left-style: solid !important;border-right-color: #059444 !important;border-right-style: solid !important;border-top-color: #059444 !important;border-top-style: solid !important;border-bottom-color: #059444 !important;border-bottom-style: solid !important;border-radius: 1px !important;}.vc_custom_1692278929158{border-top-width: 1px !important;border-right-width: 1px !important;border-bottom-width: 1px !important;border-left-width: 1px !important;border-left-color: #059444 !important;border-left-style: solid !important;border-right-color: #059444 !important;border-right-style: solid !important;border-top-color: #059444 !important;border-top-style: solid !important;border-bottom-color: #059444 !important;border-bottom-style: solid !important;border-radius: 1px !important;}.vc_custom_1692278922309{border-top-width: 1px !important;border-right-width: 1px !important;border-bottom-width: 1px !important;border-left-width: 1px !important;border-left-color: #059444 !important;border-left-style: solid !important;border-right-color: #059444 !important;border-right-style: solid !important;border-top-color: #059444 !important;border-top-style: solid !important;border-bottom-color: #059444 !important;border-bottom-style: solid !important;border-radius: 1px !important;}.vc_custom_1692278929158{border-top-width: 1px !important;border-right-width: 1px !important;border-bottom-width: 1px !important;border-left-width: 1px !important;border-left-color: #059444 !important;border-left-style: solid !important;border-right-color: #059444 !important;border-right-style: solid !important;border-top-color: #059444 !important;border-top-style: solid !important;border-bottom-color: #059444 !important;border-bottom-style: solid !important;border-radius: 1px !important;}'),(22809,3611,'_product_attributes','a:1:{s:15:\"pa_product-type\";a:6:{s:4:\"name\";s:15:\"pa_product-type\";s:5:\"value\";s:0:\"\";s:8:\"position\";i:0;s:10:\"is_visible\";i:0;s:12:\"is_variation\";i:0;s:11:\"is_taxonomy\";i:1;}}'),(22808,3611,'_wc_review_count','0'),(22679,3608,'_dt_fancy_header_responsiveness_switch','778px'),(22678,3608,'_dt_fancy_header_responsiveness','enabled'),(22677,3608,'_dt_fancy_header_responsiveness_heading',''),(22676,3608,'_dt_fancy_header_bg_parallax','0.5'),(22675,3608,'_dt_fancy_header_scroll_effect','default'),(22674,3608,'_dt_fancy_header_bg_overlay_opacity','50'),(22673,3608,'_dt_fancy_header_overlay_color','#000'),(22672,3608,'_dt_fancy_header_bg_overlay','0'),(22671,3608,'_dt_fancy_header_bg_fullscreen','0'),(22670,3608,'_dt_fancy_header_bg_position_y','center'),(22669,3608,'_dt_fancy_header_bg_position_x','center'),(22668,3608,'_dt_fancy_header_bg_repeat','no-repeat'),(22667,3608,'_dt_fancy_header_bg_image','a:1:{i:0;i:3913;}'),(22590,3607,'the7_fancy_title_css','#main {\n  padding-top: 1%;\n}\n.fancy-header {\n  background-image: url(\'https://farmchemie.yasithawd.com/wp-content/uploads/2023/09/OXYQUIN®-Dry_300px.png\');\n  background-repeat: no-repeat;\n  background-position: center center;\n  background-size: auto auto;\n  background-color: #ffffff;\n}\n.mobile-false .fancy-header {\n  background-attachment: scroll;\n}\n.fancy-header .wf-wrap {\n  min-height: 140px;\n  padding-top: 0px;\n  padding-bottom: 0px;\n}\n.fancy-header .fancy-title {\n  font-size: 32px;\n  line-height: 36px;\n  color: #079547;\n  text-transform: none;\n}\n.fancy-header .fancy-subtitle {\n  font-size: 24px;\n  line-height: 26px;\n  color: #792c8a;\n  text-transform: none;\n}\n.fancy-header .breadcrumbs {\n  color: #ffffff;\n}\n.fancy-header-overlay {\n  background: rgba(0,0,0,0.5);\n}\n@media screen and (max-width: 778px) {\n  .fancy-header .wf-wrap {\n    min-height: 140px;\n  }\n  .fancy-header .fancy-title {\n    font-size: 30px;\n    line-height: 38px;\n  }\n  .fancy-header .fancy-subtitle {\n    font-size: 20px;\n    line-height: 28px;\n  }\n  .fancy-header.breadcrumbs-mobile-off .breadcrumbs {\n    display: none;\n  }\n  #fancy-header > .wf-wrap {\n    flex-flow: column wrap;\n    align-items: center;\n    justify-content: center;\n    padding-bottom: 0px !important;\n  }\n  .fancy-header.title-left .breadcrumbs {\n    text-align: center;\n    float: none;\n  }\n  .breadcrumbs {\n    margin-bottom: 10px;\n  }\n  .breadcrumbs.breadcrumbs-bg {\n    margin-top: 10px;\n  }\n  .fancy-header.title-right .breadcrumbs {\n    margin: 10px 0 10px 0;\n  }\n  #fancy-header .hgroup,\n  #fancy-header .breadcrumbs {\n    text-align: center;\n  }\n  .fancy-header .hgroup {\n    padding-bottom: 5px;\n  }\n  .breadcrumbs-off .hgroup {\n    padding-bottom: 5px;\n  }\n  .title-right .hgroup {\n    padding: 0 0 5px 0;\n  }\n  .title-right.breadcrumbs-off .hgroup {\n    padding-top: 5px;\n  }\n  .title-left.disabled-bg .breadcrumbs {\n    margin-bottom: 0;\n  }\n}\n'),(22589,3607,'_dt_fancy_header_responsive_breadcrumbs','disabled'),(22588,3607,'_dt_fancy_header_responsive_subtitle_line_height','28'),(22587,3607,'_dt_fancy_header_responsive_subtitle_font_size','20'),(22586,3607,'_dt_fancy_header_responsive_title_line_height','38'),(22591,3607,'_wqoecf_disable_form','no'),(22592,3607,'_edit_lock','1695541239:1'),(22593,3607,'_edit_last','1'),(22595,3608,'total_sales','0'),(22596,3608,'_tax_status','taxable'),(22594,3607,'_thumbnail_id','3912'),(22597,3608,'_tax_class',''),(22598,3608,'_manage_stock','no'),(22599,3608,'_backorders','no'),(22600,3608,'_sold_individually','no'),(22601,3608,'_virtual','no'),(22602,3608,'_downloadable','no'),(22603,3608,'_download_limit','-1'),(22604,3608,'_download_expiry','-1'),(22605,3608,'_thumbnail_id','3916'),(22606,3608,'_stock',NULL),(22607,3608,'_stock_status','instock'),(22608,3608,'_wc_average_rating','0'),(22585,3607,'_dt_fancy_header_responsive_font_size','30'),(22584,3607,'_dt_fancy_header_responsive_height','140'),(22583,3607,'_dt_fancy_header_responsiveness_switch','778px'),(22582,3607,'_dt_fancy_header_responsiveness','enabled'),(22581,3607,'_dt_fancy_header_responsiveness_heading',''),(22580,3607,'_dt_fancy_header_bg_parallax','0.5'),(22579,3607,'_dt_fancy_header_scroll_effect','default'),(22578,3607,'_dt_fancy_header_bg_overlay_opacity','50'),(22577,3607,'_dt_fancy_header_overlay_color','#000'),(22576,3607,'_dt_fancy_header_bg_overlay','0'),(22381,3604,'_dt_fancy_header_bg_color','#ffffff'),(22336,3604,'_dt_header_background_below_slideshow','disabled'),(22335,3604,'_dt_header_background','normal'),(15787,3027,'the7_shortcodes_dynamic_css','a:1:{s:32:\"468de6fed1b61b4df75539ef07872814\";s:3744:\".products-shortcode.products-masonry-shortcode-id-468de6fed1b61b4df75539ef07872814 .filter-bg-decoration .filter-categories a.act {\n  color: #fff;\n}\n.products-shortcode.products-masonry-shortcode-id-468de6fed1b61b4df75539ef07872814:not(.resize-by-browser-width) .dt-css-grid {\n  grid-row-gap: 30px;\n  grid-column-gap: 30px;\n  grid-template-columns: repeat(auto-fill,minmax(,1fr));\n}\n.cssgridlegacy.no-cssgrid .products-shortcode.products-masonry-shortcode-id-468de6fed1b61b4df75539ef07872814:not(.resize-by-browser-width) .dt-css-grid,\n.no-cssgridlegacy.no-cssgrid .products-shortcode.products-masonry-shortcode-id-468de6fed1b61b4df75539ef07872814:not(.resize-by-browser-width) .dt-css-grid {\n  display: flex;\n  flex-flow: row wrap;\n  margin: -15px;\n}\n.cssgridlegacy.no-cssgrid .products-shortcode.products-masonry-shortcode-id-468de6fed1b61b4df75539ef07872814:not(.resize-by-browser-width) .dt-css-grid .wf-cell,\n.no-cssgridlegacy.no-cssgrid .products-shortcode.products-masonry-shortcode-id-468de6fed1b61b4df75539ef07872814:not(.resize-by-browser-width) .dt-css-grid .wf-cell {\n  flex: 1 0 ;\n  max-width: 100%;\n  padding: 15px;\n  box-sizing: border-box;\n}\n.products-shortcode.products-masonry-shortcode-id-468de6fed1b61b4df75539ef07872814.resize-by-browser-width .dt-css-grid {\n  grid-template-columns: repeat(3,1fr);\n  grid-template-rows: auto;\n  grid-column-gap: 30px;\n  grid-row-gap: 30px;\n}\n.cssgridlegacy.no-cssgrid .products-shortcode.products-masonry-shortcode-id-468de6fed1b61b4df75539ef07872814.resize-by-browser-width .dt-css-grid,\n.no-cssgridlegacy.no-cssgrid .products-shortcode.products-masonry-shortcode-id-468de6fed1b61b4df75539ef07872814.resize-by-browser-width .dt-css-grid {\n  margin: -15px;\n}\n.cssgridlegacy.no-cssgrid .products-shortcode.products-masonry-shortcode-id-468de6fed1b61b4df75539ef07872814.resize-by-browser-width .dt-css-grid .wf-cell,\n.no-cssgridlegacy.no-cssgrid .products-shortcode.products-masonry-shortcode-id-468de6fed1b61b4df75539ef07872814.resize-by-browser-width .dt-css-grid .wf-cell {\n  width: 33.333333333333%;\n  padding: 15px;\n}\n@media screen and (max-width: 1199px) {\n  .products-shortcode.products-masonry-shortcode-id-468de6fed1b61b4df75539ef07872814.resize-by-browser-width .dt-css-grid {\n    grid-template-columns: repeat(3,1fr);\n  }\n  .cssgridlegacy.no-cssgrid .products-shortcode.products-masonry-shortcode-id-468de6fed1b61b4df75539ef07872814.resize-by-browser-width .dt-css-grid .wf-cell,\n  .no-cssgridlegacy.no-cssgrid .products-shortcode.products-masonry-shortcode-id-468de6fed1b61b4df75539ef07872814.resize-by-browser-width .dt-css-grid .wf-cell {\n    width: 33.333333333333%;\n  }\n}\n@media screen and (max-width: 991px) {\n  .products-shortcode.products-masonry-shortcode-id-468de6fed1b61b4df75539ef07872814.resize-by-browser-width .dt-css-grid {\n    grid-template-columns: repeat(2,1fr);\n  }\n  .cssgridlegacy.no-cssgrid .products-shortcode.products-masonry-shortcode-id-468de6fed1b61b4df75539ef07872814.resize-by-browser-width .dt-css-grid .wf-cell,\n  .no-cssgridlegacy.no-cssgrid .products-shortcode.products-masonry-shortcode-id-468de6fed1b61b4df75539ef07872814.resize-by-browser-width .dt-css-grid .wf-cell {\n    width: 50%;\n  }\n}\n@media screen and (max-width: 767px) {\n  .products-shortcode.products-masonry-shortcode-id-468de6fed1b61b4df75539ef07872814.resize-by-browser-width .dt-css-grid {\n    grid-template-columns: repeat(1,1fr);\n  }\n  .cssgridlegacy.no-cssgrid .products-shortcode.products-masonry-shortcode-id-468de6fed1b61b4df75539ef07872814.resize-by-browser-width .dt-css-grid .wf-cell,\n  .no-cssgridlegacy.no-cssgrid .products-shortcode.products-masonry-shortcode-id-468de6fed1b61b4df75539ef07872814.resize-by-browser-width .dt-css-grid .wf-cell {\n    width: 100%;\n  }\n}\n\";}'),(15772,3257,'_wpb_shortcodes_custom_css','.vc_custom_1692366072362{margin-top: 35px !important;padding-top: 65px !important;padding-bottom: 100px !important;}.vc_custom_1684836308288{margin-top: 15px !important;}.vc_custom_1692359205466{margin-top: 35px !important;}.vc_custom_1692359216075{margin-top: 35px !important;}.vc_custom_1692359231594{margin-top: 35px !important;}.vc_custom_1692359239274{margin-top: 35px !important;}.vc_custom_1692359246626{margin-top: 35px !important;}.vc_custom_1692359252258{margin-top: 35px !important;}.vc_custom_1692359258634{margin-top: 35px !important;}.vc_custom_1691995519863{background-color: #f4ab20 !important;border: 1px solid #f4ab20 !important;border-radius: 35px !important;}.vc_custom_1691995661095{background-color: #722f8b !important;border: 1px solid #722f8b !important;border-radius: 35px !important;}.vc_custom_1691995661095{background-color: #722f8b !important;border: 1px solid #722f8b !important;border-radius: 35px !important;}.vc_custom_1691995519863{background-color: #f4ab20 !important;border: 1px solid #f4ab20 !important;border-radius: 35px !important;}.vc_custom_1691996718116{border-radius: 35px !important;}.vc_custom_1691995519863{background-color: #f4ab20 !important;border: 1px solid #f4ab20 !important;border-radius: 35px !important;}.vc_custom_1692278936750{border-top-width: 1px !important;border-right-width: 1px !important;border-bottom-width: 1px !important;border-left-width: 1px !important;border-left-color: #059444 !important;border-left-style: solid !important;border-right-color: #059444 !important;border-right-style: solid !important;border-top-color: #059444 !important;border-top-style: solid !important;border-bottom-color: #059444 !important;border-bottom-style: solid !important;border-radius: 1px !important;}.vc_custom_1692278936750{border-top-width: 1px !important;border-right-width: 1px !important;border-bottom-width: 1px !important;border-left-width: 1px !important;border-left-color: #059444 !important;border-left-style: solid !important;border-right-color: #059444 !important;border-right-style: solid !important;border-top-color: #059444 !important;border-top-style: solid !important;border-bottom-color: #059444 !important;border-bottom-style: solid !important;border-radius: 1px !important;}.vc_custom_1692278929158{border-top-width: 1px !important;border-right-width: 1px !important;border-bottom-width: 1px !important;border-left-width: 1px !important;border-left-color: #059444 !important;border-left-style: solid !important;border-right-color: #059444 !important;border-right-style: solid !important;border-top-color: #059444 !important;border-top-style: solid !important;border-bottom-color: #059444 !important;border-bottom-style: solid !important;border-radius: 1px !important;}.vc_custom_1692278922309{border-top-width: 1px !important;border-right-width: 1px !important;border-bottom-width: 1px !important;border-left-width: 1px !important;border-left-color: #059444 !important;border-left-style: solid !important;border-right-color: #059444 !important;border-right-style: solid !important;border-top-color: #059444 !important;border-top-style: solid !important;border-bottom-color: #059444 !important;border-bottom-style: solid !important;border-radius: 1px !important;}.vc_custom_1692278922309{border-top-width: 1px !important;border-right-width: 1px !important;border-bottom-width: 1px !important;border-left-width: 1px !important;border-left-color: #059444 !important;border-left-style: solid !important;border-right-color: #059444 !important;border-right-style: solid !important;border-top-color: #059444 !important;border-top-style: solid !important;border-bottom-color: #059444 !important;border-bottom-style: solid !important;border-radius: 1px !important;}.vc_custom_1692278929158{border-top-width: 1px !important;border-right-width: 1px !important;border-bottom-width: 1px !important;border-left-width: 1px !important;border-left-color: #059444 !important;border-left-style: solid !important;border-right-color: #059444 !important;border-right-style: solid !important;border-top-color: #059444 !important;border-top-style: solid !important;border-bottom-color: #059444 !important;border-bottom-style: solid !important;border-radius: 1px !important;}.vc_custom_1692278936750{border-top-width: 1px !important;border-right-width: 1px !important;border-bottom-width: 1px !important;border-left-width: 1px !important;border-left-color: #059444 !important;border-left-style: solid !important;border-right-color: #059444 !important;border-right-style: solid !important;border-top-color: #059444 !important;border-top-style: solid !important;border-bottom-color: #059444 !important;border-bottom-style: solid !important;border-radius: 1px !important;}.vc_custom_1692278922309{border-top-width: 1px !important;border-right-width: 1px !important;border-bottom-width: 1px !important;border-left-width: 1px !important;border-left-color: #059444 !important;border-left-style: solid !important;border-right-color: #059444 !important;border-right-style: solid !important;border-top-color: #059444 !important;border-top-style: solid !important;border-bottom-color: #059444 !important;border-bottom-style: solid !important;border-radius: 1px !important;}.vc_custom_1692278929158{border-top-width: 1px !important;border-right-width: 1px !important;border-bottom-width: 1px !important;border-left-width: 1px !important;border-left-color: #059444 !important;border-left-style: solid !important;border-right-color: #059444 !important;border-right-style: solid !important;border-top-color: #059444 !important;border-top-style: solid !important;border-bottom-color: #059444 !important;border-bottom-style: solid !important;border-radius: 1px !important;}.vc_custom_1692278936750{border-top-width: 1px !important;border-right-width: 1px !important;border-bottom-width: 1px !important;border-left-width: 1px !important;border-left-color: #059444 !important;border-left-style: solid !important;border-right-color: #059444 !important;border-right-style: solid !important;border-top-color: #059444 !important;border-top-style: solid !important;border-bottom-color: #059444 !important;border-bottom-style: solid !important;border-radius: 1px !important;}.vc_custom_1692278936750{border-top-width: 1px !important;border-right-width: 1px !important;border-bottom-width: 1px !important;border-left-width: 1px !important;border-left-color: #059444 !important;border-left-style: solid !important;border-right-color: #059444 !important;border-right-style: solid !important;border-top-color: #059444 !important;border-top-style: solid !important;border-bottom-color: #059444 !important;border-bottom-style: solid !important;border-radius: 1px !important;}.vc_custom_1692278929158{border-top-width: 1px !important;border-right-width: 1px !important;border-bottom-width: 1px !important;border-left-width: 1px !important;border-left-color: #059444 !important;border-left-style: solid !important;border-right-color: #059444 !important;border-right-style: solid !important;border-top-color: #059444 !important;border-top-style: solid !important;border-bottom-color: #059444 !important;border-bottom-style: solid !important;border-radius: 1px !important;}.vc_custom_1692278922309{border-top-width: 1px !important;border-right-width: 1px !important;border-bottom-width: 1px !important;border-left-width: 1px !important;border-left-color: #059444 !important;border-left-style: solid !important;border-right-color: #059444 !important;border-right-style: solid !important;border-top-color: #059444 !important;border-top-style: solid !important;border-bottom-color: #059444 !important;border-bottom-style: solid !important;border-radius: 1px !important;}.vc_custom_1692278929158{border-top-width: 1px !important;border-right-width: 1px !important;border-bottom-width: 1px !important;border-left-width: 1px !important;border-left-color: #059444 !important;border-left-style: solid !important;border-right-color: #059444 !important;border-right-style: solid !important;border-top-color: #059444 !important;border-top-style: solid !important;border-bottom-color: #059444 !important;border-bottom-style: solid !important;border-radius: 1px !important;}'),(22534,3607,'_dt_header_disabled_transparent_bg_color','#000000'),(22535,3607,'_dt_header_disabled_transparent_bg_opacity','50'),(22536,3607,'_dt_page_overrides_top_margin','1%'),(22537,3607,'_dt_page_overrides_right_margin',''),(22538,3607,'_dt_page_overrides_bottom_margin',''),(22539,3607,'_dt_page_overrides_left_margin',''),(22540,3607,'_dt_mobile_page_padding_top',''),(22541,3607,'_dt_mobile_page_padding_right',''),(22542,3607,'_dt_mobile_page_padding_bottom',''),(22543,3607,'_dt_mobile_page_padding_left',''),(22544,3607,'_dt_fancy_header_layout_heading',''),(22545,3607,'_dt_fancy_header_title_aligment','all_left'),(22546,3607,'_dt_fancy_header_height','140'),(22547,3607,'_dt_fancy_header_padding-top','0px'),(22548,3607,'_dt_fancy_header_padding-bottom','0px'),(22549,3607,'_dt_fancy_header_breadcrumbs_heading',''),(22550,3607,'_dt_fancy_header_breadcrumbs','disabled'),(22551,3607,'_dt_fancy_header_breadcrumbs_text_color','#ffffff'),(22552,3607,'_dt_fancy_header_breadcrumbs_bg_color','disabled'),(22553,3607,'_dt_fancy_header_title_heading',''),(22554,3607,'_dt_fancy_header_title_mode','custom'),(22555,3607,'_dt_fancy_header_title',''),(22556,3607,'_dt_fancy_header_title_font_size','32'),(22557,3607,'_dt_fancy_header_title_line_height','36'),(22558,3607,'_dt_fancy_header_text_transform','none'),(22559,3607,'_dt_fancy_header_title_color_mode','color'),(22560,3607,'_dt_fancy_header_title_color','#079547'),(22561,3607,'_dt_fancy_header_subtitle_heading',''),(22562,3607,'_dt_fancy_header_subtitle',''),(22563,3607,'_dt_fancy_header_subtitle_font_size','24'),(22564,3607,'_dt_fancy_header_subtitle_line_height','26'),(22533,3607,'_dt_header_disabled_transparent_top_bar_bg_opacity','25'),(22532,3607,'_dt_header_disabled_transparent_top_bar_bg_color','#ffffff'),(22531,3607,'_dt_header_disabled_transparent_bg_color_scheme','light'),(22530,3607,'_dt_header_disabled_background','normal'),(22529,3607,'_dt_header_transparent_bg_opacity','50'),(22528,3607,'_dt_header_transparent_bg_color','#000000'),(22527,3607,'_dt_header_transparent_top_bar_bg_opacity','25'),(22526,3607,'_dt_header_transparent_top_bar_bg_color','#ffffff'),(22525,3607,'_dt_header_transparent_bg_color_scheme','light'),(22524,3607,'_dt_header_background_below_slideshow','disabled'),(22523,3607,'_dt_header_background','normal'),(22522,3607,'_dt_header_title','fancy'),(22521,3607,'_dt_footer_hide_on_mobile','0'),(22520,3607,'_dt_footer_widgetarea_id','sidebar_2'),(22519,3607,'_dt_footer_show','1'),(22518,3607,'_dt_sidebar_hide_on_mobile','0'),(22517,3607,'_dt_sidebar_widgetarea_id','sidebar_1'),(22516,3607,'_dt_sidebar_position','disabled'),(22515,3607,'_product_version','8.0.2'),(22514,3607,'_product_attributes','a:1:{s:15:\"pa_product-type\";a:6:{s:4:\"name\";s:15:\"pa_product-type\";s:5:\"value\";s:0:\"\";s:8:\"position\";i:0;s:10:\"is_visible\";i:0;s:12:\"is_variation\";i:0;s:11:\"is_taxonomy\";i:1;}}'),(22513,3607,'_wc_review_count','0'),(22512,3607,'_wc_average_rating','0'),(22511,3607,'_stock_status','instock'),(22510,3607,'_stock',NULL),(22507,3607,'_downloadable','no'),(22508,3607,'_download_limit','-1'),(22509,3607,'_download_expiry','-1'),(22506,3607,'_virtual','no'),(22505,3607,'_sold_individually','no'),(22504,3607,'_backorders','no'),(22503,3607,'_manage_stock','no'),(22499,3605,'_edit_last','1'),(22498,3605,'_edit_lock','1695541368:1'),(22497,3605,'_wqoecf_disable_form','no'),(22500,3607,'total_sales','0'),(22501,3607,'_tax_status','taxable'),(22502,3607,'_tax_class',''),(16833,3331,'_dt_fancy_header_responsive_breadcrumbs','disabled'),(16834,3331,'the7_fancy_title_css','#main {\n  padding-top: 1%;\n}\n.fancy-header {\n  background-image: url(\'https://farmchemie.yasithawd.com/wp-content/uploads/2023/08/AVI-Prime_logo.png\');\n  background-repeat: no-repeat;\n  background-position: center center;\n  background-size: auto auto;\n  background-color: #ffffff;\n}\n.mobile-false .fancy-header {\n  background-attachment: scroll;\n}\n.fancy-header .wf-wrap {\n  min-height: 140px;\n  padding-top: 0px;\n  padding-bottom: 0px;\n}\n.fancy-header .fancy-title {\n  font-size: 32px;\n  line-height: 36px;\n  color: #079547;\n  text-transform: none;\n}\n.fancy-header .fancy-subtitle {\n  font-size: 24px;\n  line-height: 26px;\n  color: #792c8a;\n  text-transform: none;\n}\n.fancy-header .breadcrumbs {\n  color: #ffffff;\n}\n.fancy-header-overlay {\n  background: rgba(0,0,0,0.5);\n}\n@media screen and (max-width: 778px) {\n  .fancy-header .wf-wrap {\n    min-height: 140px;\n  }\n  .fancy-header .fancy-title {\n    font-size: 30px;\n    line-height: 38px;\n  }\n  .fancy-header .fancy-subtitle {\n    font-size: 20px;\n    line-height: 28px;\n  }\n  .fancy-header.breadcrumbs-mobile-off .breadcrumbs {\n    display: none;\n  }\n  #fancy-header > .wf-wrap {\n    flex-flow: column wrap;\n    align-items: center;\n    justify-content: center;\n    padding-bottom: 0px !important;\n  }\n  .fancy-header.title-left .breadcrumbs {\n    text-align: center;\n    float: none;\n  }\n  .breadcrumbs {\n    margin-bottom: 10px;\n  }\n  .breadcrumbs.breadcrumbs-bg {\n    margin-top: 10px;\n  }\n  .fancy-header.title-right .breadcrumbs {\n    margin: 10px 0 10px 0;\n  }\n  #fancy-header .hgroup,\n  #fancy-header .breadcrumbs {\n    text-align: center;\n  }\n  .fancy-header .hgroup {\n    padding-bottom: 5px;\n  }\n  .breadcrumbs-off .hgroup {\n    padding-bottom: 5px;\n  }\n  .title-right .hgroup {\n    padding: 0 0 5px 0;\n  }\n  .title-right.breadcrumbs-off .hgroup {\n    padding-top: 5px;\n  }\n  .title-left.disabled-bg .breadcrumbs {\n    margin-bottom: 0;\n  }\n}\n'),(16835,3331,'_edit_lock','1694450907:1'),(16836,3331,'_edit_last','1'),(16837,3332,'_wp_attached_file','2023/08/AVI-Prime_600px.png'),(16838,3332,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:600;s:6:\"height\";i:600;s:4:\"file\";s:27:\"2023/08/AVI-Prime_600px.png\";s:8:\"filesize\";i:78265;s:5:\"sizes\";a:4:{s:6:\"medium\";a:5:{s:4:\"file\";s:27:\"AVI-Prime_600px-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:68202;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:27:\"AVI-Prime_600px-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:21602;}s:21:\"woocommerce_thumbnail\";a:6:{s:4:\"file\";s:27:\"AVI-Prime_600px-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:68202;s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:5:{s:4:\"file\";s:27:\"AVI-Prime_600px-200x200.png\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:33987;}}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:{}}}'),(22406,3605,'total_sales','0'),(22407,3605,'_tax_status','taxable'),(22408,3605,'_tax_class',''),(22409,3605,'_manage_stock','no'),(22438,3605,'_dt_header_disabled_transparent_top_bar_bg_color','#ffffff'),(22437,3605,'_dt_header_disabled_transparent_bg_color_scheme','light'),(22436,3605,'_dt_header_disabled_background','normal'),(22435,3605,'_dt_header_transparent_bg_opacity','50'),(22434,3605,'_dt_header_transparent_bg_color','#000000'),(22410,3605,'_backorders','no'),(22411,3605,'_sold_individually','no'),(22412,3605,'_virtual','no'),(22413,3605,'_downloadable','no'),(22414,3605,'_download_limit','-1'),(22415,3605,'_download_expiry','-1'),(22416,3605,'_stock',NULL),(22417,3605,'_stock_status','instock'),(22418,3605,'_wc_average_rating','0'),(22419,3605,'_wc_review_count','0'),(22420,3605,'_product_attributes','a:1:{s:15:\"pa_product-type\";a:6:{s:4:\"name\";s:15:\"pa_product-type\";s:5:\"value\";s:0:\"\";s:8:\"position\";i:0;s:10:\"is_visible\";i:0;s:12:\"is_variation\";i:0;s:11:\"is_taxonomy\";i:1;}}'),(22421,3605,'_product_version','8.0.2'),(22422,3605,'_dt_sidebar_position','disabled'),(22423,3605,'_dt_sidebar_widgetarea_id','sidebar_1'),(22424,3605,'_dt_sidebar_hide_on_mobile','0'),(22425,3605,'_dt_footer_show','1'),(22426,3605,'_dt_footer_widgetarea_id','sidebar_2'),(22427,3605,'_dt_footer_hide_on_mobile','0'),(22428,3605,'_dt_header_title','fancy'),(22429,3605,'_dt_header_background','normal'),(22430,3605,'_dt_header_background_below_slideshow','disabled'),(22431,3605,'_dt_header_transparent_bg_color_scheme','light'),(22432,3605,'_dt_header_transparent_top_bar_bg_color','#ffffff'),(22433,3605,'_dt_header_transparent_top_bar_bg_opacity','25'),(1664,2521,'_wp_attached_file','2022/09/2-Youtube.png'),(1665,2521,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1225;s:6:\"height\";i:852;s:4:\"file\";s:21:\"2022/09/2-Youtube.png\";s:8:\"filesize\";i:18598;s:5:\"sizes\";a:10:{s:6:\"medium\";a:5:{s:4:\"file\";s:21:\"2-Youtube-300x209.png\";s:5:\"width\";i:300;s:6:\"height\";i:209;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:6372;}s:5:\"large\";a:5:{s:4:\"file\";s:22:\"2-Youtube-1024x712.png\";s:5:\"width\";i:1024;s:6:\"height\";i:712;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:25980;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:21:\"2-Youtube-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:2545;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:21:\"2-Youtube-768x534.png\";s:5:\"width\";i:768;s:6:\"height\";i:534;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:18624;}s:21:\"woocommerce_thumbnail\";a:6:{s:4:\"file\";s:21:\"2-Youtube-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:5400;s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:5:{s:4:\"file\";s:21:\"2-Youtube-600x417.png\";s:5:\"width\";i:600;s:6:\"height\";i:417;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:13905;}s:29:\"woocommerce_gallery_thumbnail\";a:5:{s:4:\"file\";s:21:\"2-Youtube-200x200.png\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:3421;}s:12:\"shop_catalog\";a:5:{s:4:\"file\";s:21:\"2-Youtube-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:5400;}s:11:\"shop_single\";a:5:{s:4:\"file\";s:21:\"2-Youtube-600x417.png\";s:5:\"width\";i:600;s:6:\"height\";i:417;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:13905;}s:14:\"shop_thumbnail\";a:5:{s:4:\"file\";s:21:\"2-Youtube-200x200.png\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:3421;}}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:{}}}'),(16839,3333,'_wp_attached_file','2023/08/AVI-Prime-Brochure-Final_compressed.pdf'),(16840,3333,'_wp_attachment_metadata','a:2:{s:5:\"sizes\";a:4:{s:4:\"full\";a:5:{s:4:\"file\";s:43:\"AVI-Prime-Brochure-Final_compressed-pdf.jpg\";s:5:\"width\";i:1058;s:6:\"height\";i:1497;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:541145;}s:6:\"medium\";a:5:{s:4:\"file\";s:51:\"AVI-Prime-Brochure-Final_compressed-pdf-212x300.jpg\";s:5:\"width\";i:212;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:34165;}s:5:\"large\";a:5:{s:4:\"file\";s:52:\"AVI-Prime-Brochure-Final_compressed-pdf-724x1024.jpg\";s:5:\"width\";i:724;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:273799;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:51:\"AVI-Prime-Brochure-Final_compressed-pdf-106x150.jpg\";s:5:\"width\";i:106;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:10355;}}s:8:\"filesize\";i:2122847;}'),(16841,3334,'_wp_attached_file','2023/08/AVI-Prime_logo.png'),(16842,3334,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:300;s:6:\"height\";i:57;s:4:\"file\";s:26:\"2023/08/AVI-Prime_logo.png\";s:8:\"filesize\";i:2983;s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:25:\"AVI-Prime_logo-150x57.png\";s:5:\"width\";i:150;s:6:\"height\";i:57;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:3448;}s:29:\"woocommerce_gallery_thumbnail\";a:5:{s:4:\"file\";s:25:\"AVI-Prime_logo-200x57.png\";s:5:\"width\";i:200;s:6:\"height\";i:57;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:4666;}}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:{}}}'),(27446,3664,'_wqoecf_disable_form','no'),(27447,3664,'_edit_lock','1695468553:1'),(27448,3664,'_edit_last','1'),(27451,3666,'total_sales','0'),(27452,3666,'_tax_status','taxable'),(27449,3665,'_wpb_shortcodes_custom_css','.vc_custom_1694535688302{margin-top: 35px !important;margin-bottom: 35px !important;padding-right: 10% !important;padding-left: 10% !important;}.vc_custom_1694534830702{margin-top: 35px !important;margin-bottom: 35px !important;}'),(27450,3665,'_wpb_shortcodes_custom_css_updated','1'),(27453,3666,'_tax_class',''),(27454,3666,'_manage_stock','no'),(27455,3666,'_backorders','no'),(27456,3666,'_sold_individually','no'),(27457,3666,'_virtual','no'),(27458,3666,'_downloadable','no'),(27459,3666,'_download_limit','-1'),(27460,3666,'_download_expiry','-1'),(27461,3666,'_thumbnail_id','3771'),(27462,3666,'_stock',NULL),(27463,3666,'_stock_status','instock'),(27464,3666,'_wc_average_rating','0'),(27465,3666,'_wc_review_count','0'),(27466,3666,'_product_attributes','a:1:{s:15:\"pa_product-type\";a:6:{s:4:\"name\";s:15:\"pa_product-type\";s:5:\"value\";s:0:\"\";s:8:\"position\";i:0;s:10:\"is_visible\";i:0;s:12:\"is_variation\";i:0;s:11:\"is_taxonomy\";i:1;}}'),(27467,3666,'_product_version','8.0.2'),(27468,3666,'_dt_sidebar_position','disabled'),(27469,3666,'_dt_sidebar_widgetarea_id','sidebar_1'),(27470,3666,'_dt_sidebar_hide_on_mobile','0'),(27471,3666,'_dt_footer_show','1'),(27472,3666,'_dt_footer_widgetarea_id','sidebar_2'),(27473,3666,'_dt_footer_hide_on_mobile','0'),(16847,3335,'_edit_last','1'),(16848,3335,'_edit_lock','1694407870:1'),(16849,3336,'_wp_attached_file','2023/08/PRODUCTS_1.png'),(16850,3336,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1300;s:6:\"height\";i:300;s:4:\"file\";s:22:\"2023/08/PRODUCTS_1.png\";s:8:\"filesize\";i:174239;s:5:\"sizes\";a:7:{s:6:\"medium\";a:5:{s:4:\"file\";s:21:\"PRODUCTS_1-300x69.png\";s:5:\"width\";i:300;s:6:\"height\";i:69;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:34982;}s:5:\"large\";a:5:{s:4:\"file\";s:23:\"PRODUCTS_1-1024x236.png\";s:5:\"width\";i:1024;s:6:\"height\";i:236;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:381947;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:22:\"PRODUCTS_1-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:40831;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:22:\"PRODUCTS_1-768x177.png\";s:5:\"width\";i:768;s:6:\"height\";i:177;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:213828;}s:21:\"woocommerce_thumbnail\";a:6:{s:4:\"file\";s:22:\"PRODUCTS_1-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:53700;s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:5:{s:4:\"file\";s:22:\"PRODUCTS_1-600x138.png\";s:5:\"width\";i:600;s:6:\"height\";i:138;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:130852;}s:29:\"woocommerce_gallery_thumbnail\";a:5:{s:4:\"file\";s:22:\"PRODUCTS_1-200x200.png\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:69784;}}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:{}}}'),(1672,2525,'_edit_last','1'),(1673,2525,'_edit_lock','1692022626:1'),(1674,2525,'_wp_page_template','default'),(1675,2525,'_wpb_vc_js_status','true'),(1676,2525,'_dt_sidebar_position','disabled'),(1677,2525,'_dt_sidebar_widgetarea_id','sidebar_1'),(1678,2525,'_dt_sidebar_hide_on_mobile','0'),(1679,2525,'_dt_footer_show','1'),(1680,2525,'_dt_footer_widgetarea_id','sidebar_3'),(1681,2525,'_dt_footer_hide_on_mobile','0'),(1682,2525,'_dt_header_title','slideshow'),(1683,2525,'_dt_header_background','normal'),(1684,2525,'_dt_header_background_below_slideshow','disabled'),(1685,2525,'_dt_header_transparent_bg_color_scheme','light'),(1686,2525,'_dt_header_transparent_top_bar_bg_color','#ffffff'),(1687,2525,'_dt_header_transparent_top_bar_bg_opacity','25'),(1688,2525,'_dt_header_transparent_bg_color','#000000'),(1689,2525,'_dt_header_transparent_bg_opacity','50'),(1690,2525,'_dt_header_disabled_background','normal'),(1691,2525,'_dt_header_disabled_transparent_bg_color_scheme','light'),(1692,2525,'_dt_header_disabled_transparent_top_bar_bg_color','#ffffff'),(1693,2525,'_dt_header_disabled_transparent_top_bar_bg_opacity','25'),(1694,2525,'_dt_header_disabled_transparent_bg_color','#000000'),(1695,2525,'_dt_header_disabled_transparent_bg_opacity','50'),(1696,2525,'_dt_page_overrides_top_margin','0%'),(1697,2525,'_dt_page_overrides_right_margin','0%'),(1698,2525,'_dt_page_overrides_bottom_margin','0%'),(1699,2525,'_dt_page_overrides_left_margin','0%'),(1700,2525,'_dt_mobile_page_padding_top',''),(1701,2525,'_dt_mobile_page_padding_right',''),(1702,2525,'_dt_mobile_page_padding_bottom',''),(1703,2525,'_dt_mobile_page_padding_left',''),(1704,2525,'_dt_slideshow_mode','revolution'),(1705,2525,'_dt_slideshow_layout','fullwidth'),(1706,2525,'_dt_slideshow_slider_proportions','a:2:{s:5:\"width\";s:4:\"1200\";s:6:\"height\";s:3:\"500\";}'),(1707,2525,'_dt_slideshow_scaling','fill'),(1708,2525,'_dt_slideshow_autoplay','paused'),(1709,2525,'_dt_slideshow_autoslide_interval','5000'),(1710,2525,'_dt_slideshow_hide_captions','0'),(1711,2525,'_dt_slideshow_photo_scroller_layout','fullscreen'),(1712,2525,'_dt_slideshow_photo_scroller_bg_color','#000000'),(1713,2525,'_dt_slideshow_photo_scroller_overlay','1'),(1714,2525,'_dt_slideshow_photo_scroller_top_padding','0'),(1715,2525,'_dt_slideshow_photo_scroller_bottom_padding','0'),(1716,2525,'_dt_slideshow_photo_scroller_side_paddings','0'),(1717,2525,'_dt_slideshow_photo_scroller_inactive_opacity','15'),(1718,2525,'_dt_slideshow_photo_scroller_thumbnails_visibility','show'),(1719,2525,'_dt_slideshow_photo_scroller_thumbnails_width',''),(1720,2525,'_dt_slideshow_photo_scroller_thumbnails_height','85'),(1721,2525,'_dt_slideshow_photo_scroller_autoplay','play'),(1722,2525,'_dt_slideshow_photo_scroller_autoplay_speed','4000'),(1723,2525,'fake_id',''),(1724,2525,'_dt_slideshow_photo_scroller_ls_max_width','100'),(1725,2525,'_dt_slideshow_photo_scroller_ls_min_width','0'),(1726,2525,'_dt_slideshow_photo_scroller_ls_fill_dt','fit'),(1727,2525,'_dt_slideshow_photo_scroller_ls_fill_mob','fit'),(1728,2525,'_dt_slideshow_photo_scroller_pt_max_width','100'),(1729,2525,'_dt_slideshow_photo_scroller_pt_min_width','0'),(1730,2525,'_dt_slideshow_photo_scroller_pt_fill_dt','fit'),(1731,2525,'_dt_slideshow_photo_scroller_pt_fill_mob','fit'),(1732,2525,'_dt_slideshow_revolution_slider','slider-3-1-1-11'),(1733,2525,'_dt_slideshow_layer_slider','none'),(1734,2525,'_dt_slideshow_layer_show_bg_and_paddings','0'),(1735,2525,'_dt_microsite_primary_menu',''),(1736,2525,'_dt_microsite_split_left_menu',''),(1737,2525,'_dt_microsite_split_right_menu',''),(1738,2525,'_dt_microsite_mobile_menu',''),(1739,2525,'the7_fancy_title_css','#main {\n  padding-top: 0%;\n  padding-bottom: 0%;\n}\n#main > .wf-wrap {\n  padding-right: 0%;\n  padding-left: 0%;\n}\n'),(16885,3335,'_dt_fancy_header_height','300'),(16854,3337,'_wpb_post_custom_layout','blank'),(16855,3335,'_dt_sidebar_position','disabled'),(16856,3335,'_dt_sidebar_widgetarea_id','sidebar_1'),(16857,3335,'_dt_sidebar_hide_on_mobile','0'),(16858,3335,'_dt_footer_show','1'),(16859,3335,'_dt_footer_widgetarea_id','sidebar_2'),(16860,3335,'_dt_footer_hide_on_mobile','0'),(16861,3335,'_dt_header_title','fancy'),(16862,3335,'_dt_header_background','normal'),(16863,3335,'_dt_header_background_below_slideshow','disabled'),(16864,3335,'_dt_header_transparent_bg_color_scheme','light'),(16865,3335,'_dt_header_transparent_top_bar_bg_color','#ffffff'),(16866,3335,'_dt_header_transparent_top_bar_bg_opacity','25'),(16867,3335,'_dt_header_transparent_bg_color','#000000'),(16868,3335,'_dt_header_transparent_bg_opacity','50'),(16869,3335,'_dt_header_disabled_background','normal'),(16870,3335,'_dt_header_disabled_transparent_bg_color_scheme','light'),(16871,3335,'_dt_header_disabled_transparent_top_bar_bg_color','#ffffff'),(16872,3335,'_dt_header_disabled_transparent_top_bar_bg_opacity','25'),(16873,3335,'_dt_header_disabled_transparent_bg_color','#000000'),(16874,3335,'_dt_header_disabled_transparent_bg_opacity','50'),(16875,3335,'_dt_page_overrides_top_margin',''),(16876,3335,'_dt_page_overrides_right_margin',''),(16877,3335,'_dt_page_overrides_bottom_margin',''),(16878,3335,'_dt_page_overrides_left_margin',''),(16879,3335,'_dt_mobile_page_padding_top',''),(16880,3335,'_dt_mobile_page_padding_right',''),(16881,3335,'_dt_mobile_page_padding_bottom',''),(16882,3335,'_dt_mobile_page_padding_left',''),(16883,3335,'_dt_fancy_header_layout_heading',''),(16884,3335,'_dt_fancy_header_title_aligment','all_left'),(1744,2529,'_wpb_post_custom_css','.cborder1{\r\nborder-radius: 0px 35px 35px 0px !important;\r\n}'),(1745,2529,'_wpb_shortcodes_custom_css','.vc_custom_1662363666143{background-image: url(https://farmchemie.yasithawd.com/wp-content/uploads/2022/09/marketbgimg1-sp.png?id=2527) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}.vc_custom_1662364474278{background-color: #8224e3 !important;}'),(1746,2525,'_wpb_post_custom_css','.customborderradius1 {\r\n    border-radius: 1px 35px 35px 1px !important;\r\n}'),(1747,2525,'_wpb_shortcodes_custom_css','.vc_custom_1684922556235{margin-right: 0px !important;margin-left: 0px !important;padding-right: 0px !important;padding-left: 0px !important;}.vc_custom_1662730433019{padding-right: 0px !important;padding-left: 0px !important;}.vc_custom_1662447237222{margin: 0px !important;padding: 0px !important;background-image: url(https://farmchemie.yasithawd.com/wp-content/uploads/2022/09/marketbgimg1-sp.png?id=2527) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}.vc_custom_1662370166856{margin-top: 20px !important;margin-right: 50px !important;margin-left: 50px !important;}.vc_custom_1662460080909{margin-top: 20px !important;margin-right: 50px !important;margin-bottom: 10px !important;margin-left: 50px !important;}.vc_custom_1662370166856{margin-top: 20px !important;margin-right: 50px !important;margin-left: 50px !important;}.vc_custom_1662460080909{margin-top: 20px !important;margin-right: 50px !important;margin-bottom: 10px !important;margin-left: 50px !important;}.vc_custom_1662539141341{background-color: #6e368d !important;}.vc_custom_1662539133598{background-color: #059444 !important;}.vc_custom_1662456998651{padding-bottom: 500px !important;}.vc_custom_1662458571859{padding-right: 0px !important;padding-bottom: 10px !important;padding-left: 0px !important;}.vc_custom_1662539148421{background-color: rgba(255,255,255,0.5) !important;*background-color: rgb(255,255,255) !important;}.vc_custom_1662371690284{background-color: #6e368d !important;}'),(1748,2530,'_wpb_post_custom_css','.vc_custom_1662364566926 {\r\n    border-radius: 0px 35px 35px 0px !important;\r\n}'),(1901,2585,'_wpb_post_custom_css','.vc_custom_1662364566926 {\r\n    border-radius: 0px 35px 35px 0px !important;\r\n}'),(1749,2530,'_wpb_shortcodes_custom_css','.vc_custom_1662363666143{background-image: url(https://farmchemie.yasithawd.com/wp-content/uploads/2022/09/marketbgimg1-sp.png?id=2527) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}.vc_custom_1662364706142{background-color: #8224e3 !important;}'),(16886,3335,'_dt_fancy_header_padding-top','0px'),(16887,3335,'_dt_fancy_header_padding-bottom','0px'),(16888,3335,'_dt_fancy_header_breadcrumbs_heading',''),(16889,3335,'_dt_fancy_header_breadcrumbs','disabled'),(16890,3335,'_dt_fancy_header_breadcrumbs_text_color','#ffffff'),(16891,3335,'_dt_fancy_header_breadcrumbs_bg_color','disabled'),(16892,3335,'_dt_fancy_header_title_heading',''),(16893,3335,'_dt_fancy_header_title_mode','custom'),(16894,3335,'_dt_fancy_header_title','Products'),(16895,3335,'_dt_fancy_header_title_font_size','36'),(16896,3335,'_dt_fancy_header_title_line_height','36'),(16897,3335,'_dt_fancy_header_text_transform','none'),(16898,3335,'_dt_fancy_header_title_color_mode','color'),(16899,3335,'_dt_fancy_header_title_color','#ffffff'),(16900,3335,'_dt_fancy_header_subtitle_heading',''),(16901,3335,'_dt_fancy_header_subtitle',''),(16902,3335,'_dt_fancy_header_subtitle_font_size','18'),(16903,3335,'_dt_fancy_header_subtitle_line_height','26'),(16904,3335,'_dt_fancy_header_subtitle_text_transform','none'),(16905,3335,'_dt_fancy_header_subtitle_color_mode','color'),(16906,3335,'_dt_fancy_header_subtitle_color','#ffffff'),(16907,3335,'_dt_fancy_header_bg_heading',''),(16908,3335,'_dt_fancy_header_bg_color','#222222'),(16909,3335,'_dt_fancy_header_bg_image_origin','custom'),(16910,3335,'_dt_fancy_header_bg_repeat','no-repeat'),(16911,3335,'_dt_fancy_header_bg_position_x','center'),(16912,3335,'_dt_fancy_header_bg_position_y','center'),(16913,3335,'_dt_fancy_header_bg_fullscreen','1'),(16914,3335,'_dt_fancy_header_bg_overlay','0'),(16915,3335,'_dt_fancy_header_overlay_color','#000'),(16916,3335,'_dt_fancy_header_bg_overlay_opacity','50'),(16917,3335,'_dt_fancy_header_scroll_effect','default'),(16918,3335,'_dt_fancy_header_bg_parallax','0.5'),(16919,3335,'_dt_fancy_header_responsiveness_heading',''),(16920,3335,'_dt_fancy_header_responsiveness','enabled'),(16921,3335,'_dt_fancy_header_responsiveness_switch','778px'),(16922,3335,'_dt_fancy_header_responsive_height','70'),(16923,3335,'_dt_fancy_header_responsive_font_size','30'),(16924,3335,'_dt_fancy_header_responsive_title_line_height','38'),(1754,2533,'_wpb_post_custom_css','.vc_custom_1662364566926 {\r\n    border-radius: 0px 35px 35px 0px !important;\r\n}'),(1755,2533,'_wpb_shortcodes_custom_css','.vc_custom_1662363666143{background-image: url(https://farmchemie.yasithawd.com/wp-content/uploads/2022/09/marketbgimg1-sp.png?id=2527) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}.vc_custom_1662367002626{background-color: #8224e3 !important;}'),(1756,2534,'_wpb_post_custom_css','.vc_custom_1662364566926 {\r\n    border-radius: 0px 35px 35px 0px !important;\r\n}'),(1757,2534,'_wpb_shortcodes_custom_css','.vc_custom_1662363666143{background-image: url(https://farmchemie.yasithawd.com/wp-content/uploads/2022/09/marketbgimg1-sp.png?id=2527) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}.vc_custom_1662367183321{background-color: #6e368d !important;}.vc_custom_1662367741225{background-color: #089548 !important;}'),(1758,2535,'_wpb_post_custom_css','.vc_custom_1662364566926 {\r\n    border-radius: 0px 35px 35px 0px !important;\r\n}'),(1759,2535,'_wpb_shortcodes_custom_css','.vc_custom_1662363666143{background-image: url(https://farmchemie.yasithawd.com/wp-content/uploads/2022/09/marketbgimg1-sp.png?id=2527) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}.vc_custom_1662367183321{background-color: #6e368d !important;}.vc_custom_1662367741225{background-color: #089548 !important;}'),(16925,3335,'_dt_fancy_header_responsive_subtitle_font_size','20'),(16926,3335,'_dt_fancy_header_responsive_subtitle_line_height','28'),(16927,3335,'_dt_fancy_header_responsive_breadcrumbs','disabled'),(16928,3335,'_dt_microsite_primary_menu',''),(16929,3335,'_dt_microsite_split_left_menu',''),(16930,3335,'_dt_microsite_split_right_menu',''),(16931,3335,'_dt_microsite_mobile_menu',''),(16932,3335,'the7_fancy_title_css','.fancy-header {\n  background-image: url(\'https://farmchemie.yasithawd.com/wp-content/uploads/2023/08/PRODUCTS_1.png\');\n  background-repeat: no-repeat;\n  background-position: center center;\n  background-size: cover;\n  background-color: #222222;\n}\n.mobile-false .fancy-header {\n  background-attachment: scroll;\n}\n.fancy-header .wf-wrap {\n  min-height: 300px;\n  padding-top: 0px;\n  padding-bottom: 0px;\n}\n.fancy-header .fancy-title {\n  font-size: 36px;\n  line-height: 36px;\n  color: #ffffff;\n  text-transform: none;\n}\n.fancy-header .fancy-subtitle {\n  font-size: 18px;\n  line-height: 26px;\n  color: #ffffff;\n  text-transform: none;\n}\n.fancy-header .breadcrumbs {\n  color: #ffffff;\n}\n.fancy-header-overlay {\n  background: rgba(0,0,0,0.5);\n}\n@media screen and (max-width: 778px) {\n  .fancy-header .wf-wrap {\n    min-height: 70px;\n  }\n  .fancy-header .fancy-title {\n    font-size: 30px;\n    line-height: 38px;\n  }\n  .fancy-header .fancy-subtitle {\n    font-size: 20px;\n    line-height: 28px;\n  }\n  .fancy-header.breadcrumbs-mobile-off .breadcrumbs {\n    display: none;\n  }\n  #fancy-header > .wf-wrap {\n    flex-flow: column wrap;\n    align-items: center;\n    justify-content: center;\n    padding-bottom: 0px !important;\n  }\n  .fancy-header.title-left .breadcrumbs {\n    text-align: center;\n    float: none;\n  }\n  .breadcrumbs {\n    margin-bottom: 10px;\n  }\n  .breadcrumbs.breadcrumbs-bg {\n    margin-top: 10px;\n  }\n  .fancy-header.title-right .breadcrumbs {\n    margin: 10px 0 10px 0;\n  }\n  #fancy-header .hgroup,\n  #fancy-header .breadcrumbs {\n    text-align: center;\n  }\n  .fancy-header .hgroup {\n    padding-bottom: 5px;\n  }\n  .breadcrumbs-off .hgroup {\n    padding-bottom: 5px;\n  }\n  .title-right .hgroup {\n    padding: 0 0 5px 0;\n  }\n  .title-right.breadcrumbs-off .hgroup {\n    padding-top: 5px;\n  }\n  .title-left.disabled-bg .breadcrumbs {\n    margin-bottom: 0;\n  }\n}\n'),(1815,2563,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2898;s:6:\"height\";i:335;s:4:\"file\";s:14:\"2022/09/QC.png\";s:8:\"filesize\";i:84987;s:5:\"sizes\";a:12:{s:6:\"medium\";a:5:{s:4:\"file\";s:13:\"QC-300x35.png\";s:5:\"width\";i:300;s:6:\"height\";i:35;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:8753;}s:5:\"large\";a:5:{s:4:\"file\";s:15:\"QC-1024x118.png\";s:5:\"width\";i:1024;s:6:\"height\";i:118;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:45229;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:14:\"QC-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:9998;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:13:\"QC-768x89.png\";s:5:\"width\";i:768;s:6:\"height\";i:89;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:31170;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:15:\"QC-1536x178.png\";s:5:\"width\";i:1536;s:6:\"height\";i:178;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:75725;}s:9:\"2048x2048\";a:5:{s:4:\"file\";s:15:\"QC-2048x237.png\";s:5:\"width\";i:2048;s:6:\"height\";i:237;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:105685;}s:21:\"woocommerce_thumbnail\";a:6:{s:4:\"file\";s:14:\"QC-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:25003;s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:5:{s:4:\"file\";s:13:\"QC-600x69.png\";s:5:\"width\";i:600;s:6:\"height\";i:69;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:21893;}s:29:\"woocommerce_gallery_thumbnail\";a:5:{s:4:\"file\";s:14:\"QC-200x200.png\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:14704;}s:12:\"shop_catalog\";a:5:{s:4:\"file\";s:14:\"QC-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:25003;}s:11:\"shop_single\";a:5:{s:4:\"file\";s:13:\"QC-600x69.png\";s:5:\"width\";i:600;s:6:\"height\";i:69;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:21893;}s:14:\"shop_thumbnail\";a:5:{s:4:\"file\";s:14:\"QC-200x200.png\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:14704;}}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:{}}}'),(1816,2564,'_wpb_post_custom_css','.vc_custom_1662364566926 {\r\n    border-radius: 0px 35px 35px 0px !important;\r\n}'),(1817,2564,'_wpb_shortcodes_custom_css','.vc_custom_1662363666143{background-image: url(https://farmchemie.yasithawd.com/wp-content/uploads/2022/09/marketbgimg1-sp.png?id=2527) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}.vc_custom_1662370166856{margin-top: 20px !important;margin-right: 50px !important;margin-left: 50px !important;}.vc_custom_1662367183321{background-color: #6e368d !important;}.vc_custom_1662370098614{background-color: #089548 !important;}.vc_custom_1662370858588{background-color: rgba(255,255,255,0.2) !important;*background-color: rgb(255,255,255) !important;}.vc_custom_1662370845636{background-color: #6e368d !important;}'),(1818,2565,'_wpb_post_custom_css','.vc_custom_1662364566926 {\r\n    border-radius: 0px 35px 35px 0px !important;\r\n}'),(1819,2565,'_wpb_shortcodes_custom_css','.vc_custom_1662363666143{background-image: url(https://farmchemie.yasithawd.com/wp-content/uploads/2022/09/marketbgimg1-sp.png?id=2527) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}.vc_custom_1662370166856{margin-top: 20px !important;margin-right: 50px !important;margin-left: 50px !important;}.vc_custom_1662367183321{background-color: #6e368d !important;}.vc_custom_1662370098614{background-color: #089548 !important;}.vc_custom_1662370858588{background-color: rgba(255,255,255,0.2) !important;*background-color: rgb(255,255,255) !important;}.vc_custom_1662370845636{background-color: #6e368d !important;}'),(1902,2585,'_wpb_shortcodes_custom_css','.vc_custom_1662447237222{margin: 0px !important;padding: 0px !important;background-image: url(https://farmchemie.yasithawd.com/wp-content/uploads/2022/09/marketbgimg1-sp.png?id=2527) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}.vc_custom_1662370166856{margin-top: 20px !important;margin-right: 50px !important;margin-left: 50px !important;}.vc_custom_1662367183321{background-color: #6e368d !important;}.vc_custom_1662370098614{background-color: #089548 !important;}.vc_custom_1662372188860{padding-right: 10px !important;padding-left: 10px !important;}.vc_custom_1662439605469{background-color: rgba(255,255,255,0.5) !important;*background-color: rgb(255,255,255) !important;}.vc_custom_1662371690284{background-color: #6e368d !important;}'),(1820,2566,'_wp_attached_file','2022/09/20yearslogo.png'),(1821,2566,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:400;s:6:\"height\";i:500;s:4:\"file\";s:23:\"2022/09/20yearslogo.png\";s:8:\"filesize\";i:97377;s:5:\"sizes\";a:6:{s:6:\"medium\";a:5:{s:4:\"file\";s:23:\"20yearslogo-240x300.png\";s:5:\"width\";i:240;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:44354;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:23:\"20yearslogo-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:20817;}s:21:\"woocommerce_thumbnail\";a:6:{s:4:\"file\";s:23:\"20yearslogo-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:53593;s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:5:{s:4:\"file\";s:23:\"20yearslogo-200x200.png\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:30475;}s:12:\"shop_catalog\";a:5:{s:4:\"file\";s:23:\"20yearslogo-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:53593;}s:14:\"shop_thumbnail\";a:5:{s:4:\"file\";s:23:\"20yearslogo-200x200.png\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:30475;}}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:{}}}'),(1822,2567,'_wp_attached_file','2022/09/QALogos.png'),(1823,2567,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1000;s:6:\"height\";i:150;s:4:\"file\";s:19:\"2022/09/QALogos.png\";s:8:\"filesize\";i:53205;s:5:\"sizes\";a:9:{s:6:\"medium\";a:5:{s:4:\"file\";s:18:\"QALogos-300x45.png\";s:5:\"width\";i:300;s:6:\"height\";i:45;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:9244;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:19:\"QALogos-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:11732;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:19:\"QALogos-768x115.png\";s:5:\"width\";i:768;s:6:\"height\";i:115;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:34606;}s:21:\"woocommerce_thumbnail\";a:6:{s:4:\"file\";s:19:\"QALogos-300x150.png\";s:5:\"width\";i:300;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:21293;s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:5:{s:4:\"file\";s:18:\"QALogos-600x90.png\";s:5:\"width\";i:600;s:6:\"height\";i:90;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:24349;}s:29:\"woocommerce_gallery_thumbnail\";a:5:{s:4:\"file\";s:19:\"QALogos-200x150.png\";s:5:\"width\";i:200;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:16555;}s:12:\"shop_catalog\";a:5:{s:4:\"file\";s:19:\"QALogos-300x150.png\";s:5:\"width\";i:300;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:21293;}s:11:\"shop_single\";a:5:{s:4:\"file\";s:18:\"QALogos-600x90.png\";s:5:\"width\";i:600;s:6:\"height\";i:90;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:24349;}s:14:\"shop_thumbnail\";a:5:{s:4:\"file\";s:19:\"QALogos-200x150.png\";s:5:\"width\";i:200;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:16555;}}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:{}}}'),(1824,2568,'_wpb_post_custom_css','.vc_custom_1662364566926 {\r\n    border-radius: 0px 35px 35px 0px !important;\r\n}'),(1825,2568,'_wpb_shortcodes_custom_css','.vc_custom_1662363666143{background-image: url(https://farmchemie.yasithawd.com/wp-content/uploads/2022/09/marketbgimg1-sp.png?id=2527) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}.vc_custom_1662370166856{margin-top: 20px !important;margin-right: 50px !important;margin-left: 50px !important;}.vc_custom_1662367183321{background-color: #6e368d !important;}.vc_custom_1662370098614{background-color: #089548 !important;}.vc_custom_1662370858588{background-color: rgba(255,255,255,0.2) !important;*background-color: rgb(255,255,255) !important;}.vc_custom_1662370845636{background-color: #6e368d !important;}'),(1826,2569,'_wpb_post_custom_css','.vc_custom_1662364566926 {\r\n    border-radius: 0px 35px 35px 0px !important;\r\n}'),(1827,2569,'_wpb_shortcodes_custom_css','.vc_custom_1662363666143{background-image: url(https://farmchemie.yasithawd.com/wp-content/uploads/2022/09/marketbgimg1-sp.png?id=2527) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}.vc_custom_1662370166856{margin-top: 20px !important;margin-right: 50px !important;margin-left: 50px !important;}.vc_custom_1662367183321{background-color: #6e368d !important;}.vc_custom_1662370098614{background-color: #089548 !important;}.vc_custom_1662370858588{background-color: rgba(255,255,255,0.2) !important;*background-color: rgb(255,255,255) !important;}.vc_custom_1662370845636{background-color: #6e368d !important;}'),(1828,2570,'_wpb_post_custom_css','.vc_custom_1662364566926 {\r\n    border-radius: 0px 35px 35px 0px !important;\r\n}'),(1829,2570,'_wpb_shortcodes_custom_css','.vc_custom_1662363666143{background-image: url(https://farmchemie.yasithawd.com/wp-content/uploads/2022/09/marketbgimg1-sp.png?id=2527) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}.vc_custom_1662370166856{margin-top: 20px !important;margin-right: 50px !important;margin-left: 50px !important;}.vc_custom_1662367183321{background-color: #6e368d !important;}.vc_custom_1662370098614{background-color: #089548 !important;}.vc_custom_1662370858588{background-color: rgba(255,255,255,0.2) !important;*background-color: rgb(255,255,255) !important;}.vc_custom_1662371690284{background-color: #6e368d !important;}'),(1830,2571,'_wpb_post_custom_css','.vc_custom_1662364566926 {\r\n    border-radius: 0px 35px 35px 0px !important;\r\n}'),(1831,2571,'_wpb_shortcodes_custom_css','.vc_custom_1662363666143{background-image: url(https://farmchemie.yasithawd.com/wp-content/uploads/2022/09/marketbgimg1-sp.png?id=2527) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}.vc_custom_1662370166856{margin-top: 20px !important;margin-right: 50px !important;margin-left: 50px !important;}.vc_custom_1662367183321{background-color: #6e368d !important;}.vc_custom_1662370098614{background-color: #089548 !important;}.vc_custom_1662370858588{background-color: rgba(255,255,255,0.2) !important;*background-color: rgb(255,255,255) !important;}.vc_custom_1662371690284{background-color: #6e368d !important;}'),(1832,2572,'_wp_attached_file','2022/09/FCL-EGG-LOGO.png'),(1833,2572,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:109;s:6:\"height\";i:163;s:4:\"file\";s:24:\"2022/09/FCL-EGG-LOGO.png\";s:8:\"filesize\";i:4738;s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:24:\"FCL-EGG-LOGO-109x150.png\";s:5:\"width\";i:109;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:5049;}}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:{}}}'),(1834,2573,'_wpb_post_custom_css','.vc_custom_1662364566926 {\r\n    border-radius: 0px 35px 35px 0px !important;\r\n}'),(1835,2573,'_wpb_shortcodes_custom_css','.vc_custom_1662363666143{background-image: url(https://farmchemie.yasithawd.com/wp-content/uploads/2022/09/marketbgimg1-sp.png?id=2527) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}.vc_custom_1662370166856{margin-top: 20px !important;margin-right: 50px !important;margin-left: 50px !important;}.vc_custom_1662367183321{background-color: #6e368d !important;}.vc_custom_1662370098614{background-color: #089548 !important;}.vc_custom_1662372188860{padding-right: 10px !important;padding-left: 10px !important;}.vc_custom_1662370858588{background-color: rgba(255,255,255,0.2) !important;*background-color: rgb(255,255,255) !important;}.vc_custom_1662371690284{background-color: #6e368d !important;}'),(1891,2580,'_wpb_post_custom_css','.vc_custom_1662364566926 {\r\n    border-radius: 0px 35px 35px 0px !important;\r\n}'),(1958,2610,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(1957,2610,'_menu_item_target',''),(1956,2610,'_menu_item_object','custom'),(1955,2610,'_menu_item_object_id','2610'),(1954,2610,'_menu_item_menu_item_parent','0'),(1953,2610,'_menu_item_type','custom'),(28055,3687,'_menu_item_object_id','2655'),(28054,3687,'_menu_item_menu_item_parent','0'),(28053,3687,'_menu_item_type','post_type'),(28051,3686,'_menu_item_url',''),(1855,2576,'_menu_item_type','custom'),(1856,2576,'_menu_item_menu_item_parent','0'),(1857,2576,'_menu_item_object_id','2576'),(1858,2576,'_menu_item_object','custom'),(1859,2576,'_menu_item_target',''),(1860,2576,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(1861,2576,'_menu_item_xfn',''),(1862,2576,'_menu_item_url','#'),(1892,2580,'_wpb_shortcodes_custom_css','.vc_custom_1662363666143{background-image: url(https://farmchemie.yasithawd.com/wp-content/uploads/2022/09/marketbgimg1-sp.png?id=2527) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}.vc_custom_1662370166856{margin-top: 20px !important;margin-right: 50px !important;margin-left: 50px !important;}.vc_custom_1662367183321{background-color: #6e368d !important;}.vc_custom_1662370098614{background-color: #089548 !important;}.vc_custom_1662372188860{padding-right: 10px !important;padding-left: 10px !important;}.vc_custom_1662373769628{background-color: rgba(255,255,255,0.3) !important;*background-color: rgb(255,255,255) !important;}.vc_custom_1662371690284{background-color: #6e368d !important;}'),(13075,2930,'_wpb_shortcodes_custom_css','.vc_custom_1686719341668{margin-top: 35px !important;padding-top: 65px !important;padding-bottom: 100px !important;}.vc_custom_1684836308288{margin-top: 15px !important;}.vc_custom_1686713784619{margin-top: 35px !important;}.vc_custom_1686714025469{margin-top: 35px !important;}.vc_custom_1686713784619{margin-top: 35px !important;}.vc_custom_1686714115148{margin-top: 35px !important;}.vc_custom_1686713784619{margin-top: 35px !important;}.vc_custom_1686713784619{margin-top: 35px !important;}.vc_custom_1686713784619{margin-top: 35px !important;}'),(1893,2581,'_wpb_post_custom_css','.vc_custom_1662364566926 {\r\n    border-radius: 0px 35px 35px 0px !important;\r\n}'),(1894,2581,'_wpb_shortcodes_custom_css','.vc_custom_1662363666143{background-image: url(https://farmchemie.yasithawd.com/wp-content/uploads/2022/09/marketbgimg1-sp.png?id=2527) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}.vc_custom_1662370166856{margin-top: 20px !important;margin-right: 50px !important;margin-left: 50px !important;}.vc_custom_1662367183321{background-color: #6e368d !important;}.vc_custom_1662370098614{background-color: #089548 !important;}.vc_custom_1662372188860{padding-right: 10px !important;padding-left: 10px !important;}.vc_custom_1662373769628{background-color: rgba(255,255,255,0.3) !important;*background-color: rgb(255,255,255) !important;}.vc_custom_1662371690284{background-color: #6e368d !important;}'),(1895,2582,'_wpb_post_custom_css','.vc_custom_1662364566926 {\r\n    border-radius: 0px 35px 35px 0px !important;\r\n}'),(1896,2582,'_wpb_shortcodes_custom_css','.vc_custom_1662363666143{background-image: url(https://farmchemie.yasithawd.com/wp-content/uploads/2022/09/marketbgimg1-sp.png?id=2527) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}.vc_custom_1662370166856{margin-top: 20px !important;margin-right: 50px !important;margin-left: 50px !important;}.vc_custom_1662367183321{background-color: #6e368d !important;}.vc_custom_1662370098614{background-color: #089548 !important;}.vc_custom_1662372188860{padding-right: 10px !important;padding-left: 10px !important;}.vc_custom_1662439605469{background-color: rgba(255,255,255,0.5) !important;*background-color: rgb(255,255,255) !important;}.vc_custom_1662371690284{background-color: #6e368d !important;}'),(1897,2583,'_wpb_post_custom_css','.vc_custom_1662364566926 {\r\n    border-radius: 0px 35px 35px 0px !important;\r\n}'),(1898,2583,'_wpb_shortcodes_custom_css','.vc_custom_1662363666143{background-image: url(https://farmchemie.yasithawd.com/wp-content/uploads/2022/09/marketbgimg1-sp.png?id=2527) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}.vc_custom_1662370166856{margin-top: 20px !important;margin-right: 50px !important;margin-left: 50px !important;}.vc_custom_1662367183321{background-color: #6e368d !important;}.vc_custom_1662370098614{background-color: #089548 !important;}.vc_custom_1662372188860{padding-right: 10px !important;padding-left: 10px !important;}.vc_custom_1662439605469{background-color: rgba(255,255,255,0.5) !important;*background-color: rgb(255,255,255) !important;}.vc_custom_1662371690284{background-color: #6e368d !important;}'),(1899,2584,'_wpb_post_custom_css','.vc_custom_1662364566926 {\r\n    border-radius: 0px 35px 35px 0px !important;\r\n}'),(1900,2584,'_wpb_shortcodes_custom_css','.vc_custom_1662447237222{margin: 0px !important;padding: 0px !important;background-image: url(https://farmchemie.yasithawd.com/wp-content/uploads/2022/09/marketbgimg1-sp.png?id=2527) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}.vc_custom_1662370166856{margin-top: 20px !important;margin-right: 50px !important;margin-left: 50px !important;}.vc_custom_1662367183321{background-color: #6e368d !important;}.vc_custom_1662370098614{background-color: #089548 !important;}.vc_custom_1662372188860{padding-right: 10px !important;padding-left: 10px !important;}.vc_custom_1662439605469{background-color: rgba(255,255,255,0.5) !important;*background-color: rgb(255,255,255) !important;}.vc_custom_1662371690284{background-color: #6e368d !important;}'),(1903,2586,'_wpb_post_custom_css','.vc_custom_1662364566926 {\r\n    border-radius: 0px 35px 35px 0px !important;\r\n}'),(1904,2586,'_wpb_shortcodes_custom_css','.vc_custom_1662447237222{margin: 0px !important;padding: 0px !important;background-image: url(https://farmchemie.yasithawd.com/wp-content/uploads/2022/09/marketbgimg1-sp.png?id=2527) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}.vc_custom_1662370166856{margin-top: 20px !important;margin-right: 50px !important;margin-left: 50px !important;}.vc_custom_1662367183321{background-color: #6e368d !important;}.vc_custom_1662370098614{background-color: #089548 !important;}.vc_custom_1662372188860{padding-right: 10px !important;padding-left: 10px !important;}.vc_custom_1662439605469{background-color: rgba(255,255,255,0.5) !important;*background-color: rgb(255,255,255) !important;}.vc_custom_1662371690284{background-color: #6e368d !important;}'),(1905,2587,'_wpb_post_custom_css','.vc_custom_1662364566926 {\r\n    border-radius: 0px 35px 35px 0px !important;\r\n}'),(1906,2587,'_wpb_shortcodes_custom_css','.vc_custom_1662447237222{margin: 0px !important;padding: 0px !important;background-image: url(https://farmchemie.yasithawd.com/wp-content/uploads/2022/09/marketbgimg1-sp.png?id=2527) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}.vc_custom_1662370166856{margin-top: 20px !important;margin-right: 50px !important;margin-left: 50px !important;}.vc_custom_1662367183321{background-color: #6e368d !important;}.vc_custom_1662370098614{background-color: #089548 !important;}.vc_custom_1662372188860{padding-right: 10px !important;padding-left: 10px !important;}.vc_custom_1662439605469{background-color: rgba(255,255,255,0.5) !important;*background-color: rgb(255,255,255) !important;}.vc_custom_1662371690284{background-color: #6e368d !important;}'),(1907,2589,'_wpb_post_custom_css','.vc_custom_1662364566926 {\r\n    border-radius: 0px 35px 35px 0px !important;\r\n}'),(1908,2589,'_wpb_shortcodes_custom_css','.vc_custom_1662447237222{margin: 0px !important;padding: 0px !important;background-image: url(https://farmchemie.yasithawd.com/wp-content/uploads/2022/09/marketbgimg1-sp.png?id=2527) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}.vc_custom_1662370166856{margin-top: 20px !important;margin-right: 50px !important;margin-left: 50px !important;}.vc_custom_1662367183321{background-color: #6e368d !important;}.vc_custom_1662370098614{background-color: #089548 !important;}.vc_custom_1662456998651{padding-bottom: 500px !important;}.vc_custom_1662372188860{padding-right: 10px !important;padding-left: 10px !important;}.vc_custom_1662439605469{background-color: rgba(255,255,255,0.5) !important;*background-color: rgb(255,255,255) !important;}.vc_custom_1662371690284{background-color: #6e368d !important;}'),(1909,2590,'_wpb_post_custom_css','.vc_custom_1662364566926 {\r\n    border-radius: 0px 35px 35px 0px !important;\r\n}'),(1910,2590,'_wpb_shortcodes_custom_css','.vc_custom_1662447237222{margin: 0px !important;padding: 0px !important;background-image: url(https://farmchemie.yasithawd.com/wp-content/uploads/2022/09/marketbgimg1-sp.png?id=2527) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}.vc_custom_1662370166856{margin-top: 20px !important;margin-right: 50px !important;margin-left: 50px !important;}.vc_custom_1662367183321{background-color: #6e368d !important;}.vc_custom_1662370098614{background-color: #089548 !important;}.vc_custom_1662456998651{padding-bottom: 500px !important;}.vc_custom_1662372188860{padding-right: 10px !important;padding-left: 10px !important;}.vc_custom_1662439605469{background-color: rgba(255,255,255,0.5) !important;*background-color: rgb(255,255,255) !important;}.vc_custom_1662371690284{background-color: #6e368d !important;}'),(1911,2591,'_wpb_post_custom_css','.vc_custom_1662364566926 {\r\n    border-radius: 0px 35px 35px 0px !important;\r\n}'),(1912,2591,'_wpb_shortcodes_custom_css','.vc_custom_1662447237222{margin: 0px !important;padding: 0px !important;background-image: url(https://farmchemie.yasithawd.com/wp-content/uploads/2022/09/marketbgimg1-sp.png?id=2527) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}.vc_custom_1662370166856{margin-top: 20px !important;margin-right: 50px !important;margin-left: 50px !important;}.vc_custom_1662367183321{background-color: #6e368d !important;}.vc_custom_1662370098614{background-color: #089548 !important;}.vc_custom_1662456998651{padding-bottom: 500px !important;}.vc_custom_1662457240603{padding-right: 0px !important;padding-left: 0px !important;}.vc_custom_1662439605469{background-color: rgba(255,255,255,0.5) !important;*background-color: rgb(255,255,255) !important;}.vc_custom_1662371690284{background-color: #6e368d !important;}'),(1913,2592,'_wpb_post_custom_css','.vc_custom_1662364566926 {\r\n    border-radius: 0px 35px 35px 0px !important;\r\n}'),(1914,2592,'_wpb_shortcodes_custom_css','.vc_custom_1662447237222{margin: 0px !important;padding: 0px !important;background-image: url(https://farmchemie.yasithawd.com/wp-content/uploads/2022/09/marketbgimg1-sp.png?id=2527) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}.vc_custom_1662370166856{margin-top: 20px !important;margin-right: 50px !important;margin-left: 50px !important;}.vc_custom_1662367183321{background-color: #6e368d !important;}.vc_custom_1662370098614{background-color: #089548 !important;}.vc_custom_1662456998651{padding-bottom: 500px !important;}.vc_custom_1662458571859{padding-right: 0px !important;padding-bottom: 10px !important;padding-left: 0px !important;}.vc_custom_1662439605469{background-color: rgba(255,255,255,0.5) !important;*background-color: rgb(255,255,255) !important;}.vc_custom_1662371690284{background-color: #6e368d !important;}'),(16933,3338,'_wpb_post_custom_layout','blank'),(16934,3335,'the7_shortcodes_dynamic_css','a:5:{s:32:\"ad1ed54e00cbce9e71231381043823af\";s:3744:\".products-shortcode.products-masonry-shortcode-id-ad1ed54e00cbce9e71231381043823af .filter-bg-decoration .filter-categories a.act {\n  color: #fff;\n}\n.products-shortcode.products-masonry-shortcode-id-ad1ed54e00cbce9e71231381043823af:not(.resize-by-browser-width) .dt-css-grid {\n  grid-row-gap: 30px;\n  grid-column-gap: 30px;\n  grid-template-columns: repeat(auto-fill,minmax(,1fr));\n}\n.cssgridlegacy.no-cssgrid .products-shortcode.products-masonry-shortcode-id-ad1ed54e00cbce9e71231381043823af:not(.resize-by-browser-width) .dt-css-grid,\n.no-cssgridlegacy.no-cssgrid .products-shortcode.products-masonry-shortcode-id-ad1ed54e00cbce9e71231381043823af:not(.resize-by-browser-width) .dt-css-grid {\n  display: flex;\n  flex-flow: row wrap;\n  margin: -15px;\n}\n.cssgridlegacy.no-cssgrid .products-shortcode.products-masonry-shortcode-id-ad1ed54e00cbce9e71231381043823af:not(.resize-by-browser-width) .dt-css-grid .wf-cell,\n.no-cssgridlegacy.no-cssgrid .products-shortcode.products-masonry-shortcode-id-ad1ed54e00cbce9e71231381043823af:not(.resize-by-browser-width) .dt-css-grid .wf-cell {\n  flex: 1 0 ;\n  max-width: 100%;\n  padding: 15px;\n  box-sizing: border-box;\n}\n.products-shortcode.products-masonry-shortcode-id-ad1ed54e00cbce9e71231381043823af.resize-by-browser-width .dt-css-grid {\n  grid-template-columns: repeat(3,1fr);\n  grid-template-rows: auto;\n  grid-column-gap: 30px;\n  grid-row-gap: 30px;\n}\n.cssgridlegacy.no-cssgrid .products-shortcode.products-masonry-shortcode-id-ad1ed54e00cbce9e71231381043823af.resize-by-browser-width .dt-css-grid,\n.no-cssgridlegacy.no-cssgrid .products-shortcode.products-masonry-shortcode-id-ad1ed54e00cbce9e71231381043823af.resize-by-browser-width .dt-css-grid {\n  margin: -15px;\n}\n.cssgridlegacy.no-cssgrid .products-shortcode.products-masonry-shortcode-id-ad1ed54e00cbce9e71231381043823af.resize-by-browser-width .dt-css-grid .wf-cell,\n.no-cssgridlegacy.no-cssgrid .products-shortcode.products-masonry-shortcode-id-ad1ed54e00cbce9e71231381043823af.resize-by-browser-width .dt-css-grid .wf-cell {\n  width: 33.333333333333%;\n  padding: 15px;\n}\n@media screen and (max-width: 1199px) {\n  .products-shortcode.products-masonry-shortcode-id-ad1ed54e00cbce9e71231381043823af.resize-by-browser-width .dt-css-grid {\n    grid-template-columns: repeat(3,1fr);\n  }\n  .cssgridlegacy.no-cssgrid .products-shortcode.products-masonry-shortcode-id-ad1ed54e00cbce9e71231381043823af.resize-by-browser-width .dt-css-grid .wf-cell,\n  .no-cssgridlegacy.no-cssgrid .products-shortcode.products-masonry-shortcode-id-ad1ed54e00cbce9e71231381043823af.resize-by-browser-width .dt-css-grid .wf-cell {\n    width: 33.333333333333%;\n  }\n}\n@media screen and (max-width: 991px) {\n  .products-shortcode.products-masonry-shortcode-id-ad1ed54e00cbce9e71231381043823af.resize-by-browser-width .dt-css-grid {\n    grid-template-columns: repeat(2,1fr);\n  }\n  .cssgridlegacy.no-cssgrid .products-shortcode.products-masonry-shortcode-id-ad1ed54e00cbce9e71231381043823af.resize-by-browser-width .dt-css-grid .wf-cell,\n  .no-cssgridlegacy.no-cssgrid .products-shortcode.products-masonry-shortcode-id-ad1ed54e00cbce9e71231381043823af.resize-by-browser-width .dt-css-grid .wf-cell {\n    width: 50%;\n  }\n}\n@media screen and (max-width: 767px) {\n  .products-shortcode.products-masonry-shortcode-id-ad1ed54e00cbce9e71231381043823af.resize-by-browser-width .dt-css-grid {\n    grid-template-columns: repeat(1,1fr);\n  }\n  .cssgridlegacy.no-cssgrid .products-shortcode.products-masonry-shortcode-id-ad1ed54e00cbce9e71231381043823af.resize-by-browser-width .dt-css-grid .wf-cell,\n  .no-cssgridlegacy.no-cssgrid .products-shortcode.products-masonry-shortcode-id-ad1ed54e00cbce9e71231381043823af.resize-by-browser-width .dt-css-grid .wf-cell {\n    width: 100%;\n  }\n}\n\";s:32:\"455367fe1c5b63fca102981aec65bb96\";s:3744:\".products-shortcode.products-masonry-shortcode-id-455367fe1c5b63fca102981aec65bb96 .filter-bg-decoration .filter-categories a.act {\n  color: #fff;\n}\n.products-shortcode.products-masonry-shortcode-id-455367fe1c5b63fca102981aec65bb96:not(.resize-by-browser-width) .dt-css-grid {\n  grid-row-gap: 30px;\n  grid-column-gap: 30px;\n  grid-template-columns: repeat(auto-fill,minmax(,1fr));\n}\n.cssgridlegacy.no-cssgrid .products-shortcode.products-masonry-shortcode-id-455367fe1c5b63fca102981aec65bb96:not(.resize-by-browser-width) .dt-css-grid,\n.no-cssgridlegacy.no-cssgrid .products-shortcode.products-masonry-shortcode-id-455367fe1c5b63fca102981aec65bb96:not(.resize-by-browser-width) .dt-css-grid {\n  display: flex;\n  flex-flow: row wrap;\n  margin: -15px;\n}\n.cssgridlegacy.no-cssgrid .products-shortcode.products-masonry-shortcode-id-455367fe1c5b63fca102981aec65bb96:not(.resize-by-browser-width) .dt-css-grid .wf-cell,\n.no-cssgridlegacy.no-cssgrid .products-shortcode.products-masonry-shortcode-id-455367fe1c5b63fca102981aec65bb96:not(.resize-by-browser-width) .dt-css-grid .wf-cell {\n  flex: 1 0 ;\n  max-width: 100%;\n  padding: 15px;\n  box-sizing: border-box;\n}\n.products-shortcode.products-masonry-shortcode-id-455367fe1c5b63fca102981aec65bb96.resize-by-browser-width .dt-css-grid {\n  grid-template-columns: repeat(3,1fr);\n  grid-template-rows: auto;\n  grid-column-gap: 30px;\n  grid-row-gap: 30px;\n}\n.cssgridlegacy.no-cssgrid .products-shortcode.products-masonry-shortcode-id-455367fe1c5b63fca102981aec65bb96.resize-by-browser-width .dt-css-grid,\n.no-cssgridlegacy.no-cssgrid .products-shortcode.products-masonry-shortcode-id-455367fe1c5b63fca102981aec65bb96.resize-by-browser-width .dt-css-grid {\n  margin: -15px;\n}\n.cssgridlegacy.no-cssgrid .products-shortcode.products-masonry-shortcode-id-455367fe1c5b63fca102981aec65bb96.resize-by-browser-width .dt-css-grid .wf-cell,\n.no-cssgridlegacy.no-cssgrid .products-shortcode.products-masonry-shortcode-id-455367fe1c5b63fca102981aec65bb96.resize-by-browser-width .dt-css-grid .wf-cell {\n  width: 33.333333333333%;\n  padding: 15px;\n}\n@media screen and (max-width: 1199px) {\n  .products-shortcode.products-masonry-shortcode-id-455367fe1c5b63fca102981aec65bb96.resize-by-browser-width .dt-css-grid {\n    grid-template-columns: repeat(3,1fr);\n  }\n  .cssgridlegacy.no-cssgrid .products-shortcode.products-masonry-shortcode-id-455367fe1c5b63fca102981aec65bb96.resize-by-browser-width .dt-css-grid .wf-cell,\n  .no-cssgridlegacy.no-cssgrid .products-shortcode.products-masonry-shortcode-id-455367fe1c5b63fca102981aec65bb96.resize-by-browser-width .dt-css-grid .wf-cell {\n    width: 33.333333333333%;\n  }\n}\n@media screen and (max-width: 991px) {\n  .products-shortcode.products-masonry-shortcode-id-455367fe1c5b63fca102981aec65bb96.resize-by-browser-width .dt-css-grid {\n    grid-template-columns: repeat(2,1fr);\n  }\n  .cssgridlegacy.no-cssgrid .products-shortcode.products-masonry-shortcode-id-455367fe1c5b63fca102981aec65bb96.resize-by-browser-width .dt-css-grid .wf-cell,\n  .no-cssgridlegacy.no-cssgrid .products-shortcode.products-masonry-shortcode-id-455367fe1c5b63fca102981aec65bb96.resize-by-browser-width .dt-css-grid .wf-cell {\n    width: 50%;\n  }\n}\n@media screen and (max-width: 767px) {\n  .products-shortcode.products-masonry-shortcode-id-455367fe1c5b63fca102981aec65bb96.resize-by-browser-width .dt-css-grid {\n    grid-template-columns: repeat(1,1fr);\n  }\n  .cssgridlegacy.no-cssgrid .products-shortcode.products-masonry-shortcode-id-455367fe1c5b63fca102981aec65bb96.resize-by-browser-width .dt-css-grid .wf-cell,\n  .no-cssgridlegacy.no-cssgrid .products-shortcode.products-masonry-shortcode-id-455367fe1c5b63fca102981aec65bb96.resize-by-browser-width .dt-css-grid .wf-cell {\n    width: 100%;\n  }\n}\n\";s:32:\"b072f8c0531aba785816ed8d12a24692\";s:3744:\".products-shortcode.products-masonry-shortcode-id-b072f8c0531aba785816ed8d12a24692 .filter-bg-decoration .filter-categories a.act {\n  color: #fff;\n}\n.products-shortcode.products-masonry-shortcode-id-b072f8c0531aba785816ed8d12a24692:not(.resize-by-browser-width) .dt-css-grid {\n  grid-row-gap: 30px;\n  grid-column-gap: 30px;\n  grid-template-columns: repeat(auto-fill,minmax(,1fr));\n}\n.cssgridlegacy.no-cssgrid .products-shortcode.products-masonry-shortcode-id-b072f8c0531aba785816ed8d12a24692:not(.resize-by-browser-width) .dt-css-grid,\n.no-cssgridlegacy.no-cssgrid .products-shortcode.products-masonry-shortcode-id-b072f8c0531aba785816ed8d12a24692:not(.resize-by-browser-width) .dt-css-grid {\n  display: flex;\n  flex-flow: row wrap;\n  margin: -15px;\n}\n.cssgridlegacy.no-cssgrid .products-shortcode.products-masonry-shortcode-id-b072f8c0531aba785816ed8d12a24692:not(.resize-by-browser-width) .dt-css-grid .wf-cell,\n.no-cssgridlegacy.no-cssgrid .products-shortcode.products-masonry-shortcode-id-b072f8c0531aba785816ed8d12a24692:not(.resize-by-browser-width) .dt-css-grid .wf-cell {\n  flex: 1 0 ;\n  max-width: 100%;\n  padding: 15px;\n  box-sizing: border-box;\n}\n.products-shortcode.products-masonry-shortcode-id-b072f8c0531aba785816ed8d12a24692.resize-by-browser-width .dt-css-grid {\n  grid-template-columns: repeat(3,1fr);\n  grid-template-rows: auto;\n  grid-column-gap: 30px;\n  grid-row-gap: 30px;\n}\n.cssgridlegacy.no-cssgrid .products-shortcode.products-masonry-shortcode-id-b072f8c0531aba785816ed8d12a24692.resize-by-browser-width .dt-css-grid,\n.no-cssgridlegacy.no-cssgrid .products-shortcode.products-masonry-shortcode-id-b072f8c0531aba785816ed8d12a24692.resize-by-browser-width .dt-css-grid {\n  margin: -15px;\n}\n.cssgridlegacy.no-cssgrid .products-shortcode.products-masonry-shortcode-id-b072f8c0531aba785816ed8d12a24692.resize-by-browser-width .dt-css-grid .wf-cell,\n.no-cssgridlegacy.no-cssgrid .products-shortcode.products-masonry-shortcode-id-b072f8c0531aba785816ed8d12a24692.resize-by-browser-width .dt-css-grid .wf-cell {\n  width: 33.333333333333%;\n  padding: 15px;\n}\n@media screen and (max-width: 1199px) {\n  .products-shortcode.products-masonry-shortcode-id-b072f8c0531aba785816ed8d12a24692.resize-by-browser-width .dt-css-grid {\n    grid-template-columns: repeat(3,1fr);\n  }\n  .cssgridlegacy.no-cssgrid .products-shortcode.products-masonry-shortcode-id-b072f8c0531aba785816ed8d12a24692.resize-by-browser-width .dt-css-grid .wf-cell,\n  .no-cssgridlegacy.no-cssgrid .products-shortcode.products-masonry-shortcode-id-b072f8c0531aba785816ed8d12a24692.resize-by-browser-width .dt-css-grid .wf-cell {\n    width: 33.333333333333%;\n  }\n}\n@media screen and (max-width: 991px) {\n  .products-shortcode.products-masonry-shortcode-id-b072f8c0531aba785816ed8d12a24692.resize-by-browser-width .dt-css-grid {\n    grid-template-columns: repeat(2,1fr);\n  }\n  .cssgridlegacy.no-cssgrid .products-shortcode.products-masonry-shortcode-id-b072f8c0531aba785816ed8d12a24692.resize-by-browser-width .dt-css-grid .wf-cell,\n  .no-cssgridlegacy.no-cssgrid .products-shortcode.products-masonry-shortcode-id-b072f8c0531aba785816ed8d12a24692.resize-by-browser-width .dt-css-grid .wf-cell {\n    width: 50%;\n  }\n}\n@media screen and (max-width: 767px) {\n  .products-shortcode.products-masonry-shortcode-id-b072f8c0531aba785816ed8d12a24692.resize-by-browser-width .dt-css-grid {\n    grid-template-columns: repeat(1,1fr);\n  }\n  .cssgridlegacy.no-cssgrid .products-shortcode.products-masonry-shortcode-id-b072f8c0531aba785816ed8d12a24692.resize-by-browser-width .dt-css-grid .wf-cell,\n  .no-cssgridlegacy.no-cssgrid .products-shortcode.products-masonry-shortcode-id-b072f8c0531aba785816ed8d12a24692.resize-by-browser-width .dt-css-grid .wf-cell {\n    width: 100%;\n  }\n}\n\";s:32:\"67a3e6e52d8db3404ce6876c46da5021\";s:3744:\".products-shortcode.products-masonry-shortcode-id-67a3e6e52d8db3404ce6876c46da5021 .filter-bg-decoration .filter-categories a.act {\n  color: #fff;\n}\n.products-shortcode.products-masonry-shortcode-id-67a3e6e52d8db3404ce6876c46da5021:not(.resize-by-browser-width) .dt-css-grid {\n  grid-row-gap: 30px;\n  grid-column-gap: 30px;\n  grid-template-columns: repeat(auto-fill,minmax(,1fr));\n}\n.cssgridlegacy.no-cssgrid .products-shortcode.products-masonry-shortcode-id-67a3e6e52d8db3404ce6876c46da5021:not(.resize-by-browser-width) .dt-css-grid,\n.no-cssgridlegacy.no-cssgrid .products-shortcode.products-masonry-shortcode-id-67a3e6e52d8db3404ce6876c46da5021:not(.resize-by-browser-width) .dt-css-grid {\n  display: flex;\n  flex-flow: row wrap;\n  margin: -15px;\n}\n.cssgridlegacy.no-cssgrid .products-shortcode.products-masonry-shortcode-id-67a3e6e52d8db3404ce6876c46da5021:not(.resize-by-browser-width) .dt-css-grid .wf-cell,\n.no-cssgridlegacy.no-cssgrid .products-shortcode.products-masonry-shortcode-id-67a3e6e52d8db3404ce6876c46da5021:not(.resize-by-browser-width) .dt-css-grid .wf-cell {\n  flex: 1 0 ;\n  max-width: 100%;\n  padding: 15px;\n  box-sizing: border-box;\n}\n.products-shortcode.products-masonry-shortcode-id-67a3e6e52d8db3404ce6876c46da5021.resize-by-browser-width .dt-css-grid {\n  grid-template-columns: repeat(3,1fr);\n  grid-template-rows: auto;\n  grid-column-gap: 30px;\n  grid-row-gap: 30px;\n}\n.cssgridlegacy.no-cssgrid .products-shortcode.products-masonry-shortcode-id-67a3e6e52d8db3404ce6876c46da5021.resize-by-browser-width .dt-css-grid,\n.no-cssgridlegacy.no-cssgrid .products-shortcode.products-masonry-shortcode-id-67a3e6e52d8db3404ce6876c46da5021.resize-by-browser-width .dt-css-grid {\n  margin: -15px;\n}\n.cssgridlegacy.no-cssgrid .products-shortcode.products-masonry-shortcode-id-67a3e6e52d8db3404ce6876c46da5021.resize-by-browser-width .dt-css-grid .wf-cell,\n.no-cssgridlegacy.no-cssgrid .products-shortcode.products-masonry-shortcode-id-67a3e6e52d8db3404ce6876c46da5021.resize-by-browser-width .dt-css-grid .wf-cell {\n  width: 33.333333333333%;\n  padding: 15px;\n}\n@media screen and (max-width: 1199px) {\n  .products-shortcode.products-masonry-shortcode-id-67a3e6e52d8db3404ce6876c46da5021.resize-by-browser-width .dt-css-grid {\n    grid-template-columns: repeat(3,1fr);\n  }\n  .cssgridlegacy.no-cssgrid .products-shortcode.products-masonry-shortcode-id-67a3e6e52d8db3404ce6876c46da5021.resize-by-browser-width .dt-css-grid .wf-cell,\n  .no-cssgridlegacy.no-cssgrid .products-shortcode.products-masonry-shortcode-id-67a3e6e52d8db3404ce6876c46da5021.resize-by-browser-width .dt-css-grid .wf-cell {\n    width: 33.333333333333%;\n  }\n}\n@media screen and (max-width: 991px) {\n  .products-shortcode.products-masonry-shortcode-id-67a3e6e52d8db3404ce6876c46da5021.resize-by-browser-width .dt-css-grid {\n    grid-template-columns: repeat(2,1fr);\n  }\n  .cssgridlegacy.no-cssgrid .products-shortcode.products-masonry-shortcode-id-67a3e6e52d8db3404ce6876c46da5021.resize-by-browser-width .dt-css-grid .wf-cell,\n  .no-cssgridlegacy.no-cssgrid .products-shortcode.products-masonry-shortcode-id-67a3e6e52d8db3404ce6876c46da5021.resize-by-browser-width .dt-css-grid .wf-cell {\n    width: 50%;\n  }\n}\n@media screen and (max-width: 767px) {\n  .products-shortcode.products-masonry-shortcode-id-67a3e6e52d8db3404ce6876c46da5021.resize-by-browser-width .dt-css-grid {\n    grid-template-columns: repeat(1,1fr);\n  }\n  .cssgridlegacy.no-cssgrid .products-shortcode.products-masonry-shortcode-id-67a3e6e52d8db3404ce6876c46da5021.resize-by-browser-width .dt-css-grid .wf-cell,\n  .no-cssgridlegacy.no-cssgrid .products-shortcode.products-masonry-shortcode-id-67a3e6e52d8db3404ce6876c46da5021.resize-by-browser-width .dt-css-grid .wf-cell {\n    width: 100%;\n  }\n}\n\";s:32:\"56424a8dfbedca38ca00cab808e267d7\";s:3744:\".products-shortcode.products-masonry-shortcode-id-56424a8dfbedca38ca00cab808e267d7 .filter-bg-decoration .filter-categories a.act {\n  color: #fff;\n}\n.products-shortcode.products-masonry-shortcode-id-56424a8dfbedca38ca00cab808e267d7:not(.resize-by-browser-width) .dt-css-grid {\n  grid-row-gap: 30px;\n  grid-column-gap: 30px;\n  grid-template-columns: repeat(auto-fill,minmax(,1fr));\n}\n.cssgridlegacy.no-cssgrid .products-shortcode.products-masonry-shortcode-id-56424a8dfbedca38ca00cab808e267d7:not(.resize-by-browser-width) .dt-css-grid,\n.no-cssgridlegacy.no-cssgrid .products-shortcode.products-masonry-shortcode-id-56424a8dfbedca38ca00cab808e267d7:not(.resize-by-browser-width) .dt-css-grid {\n  display: flex;\n  flex-flow: row wrap;\n  margin: -15px;\n}\n.cssgridlegacy.no-cssgrid .products-shortcode.products-masonry-shortcode-id-56424a8dfbedca38ca00cab808e267d7:not(.resize-by-browser-width) .dt-css-grid .wf-cell,\n.no-cssgridlegacy.no-cssgrid .products-shortcode.products-masonry-shortcode-id-56424a8dfbedca38ca00cab808e267d7:not(.resize-by-browser-width) .dt-css-grid .wf-cell {\n  flex: 1 0 ;\n  max-width: 100%;\n  padding: 15px;\n  box-sizing: border-box;\n}\n.products-shortcode.products-masonry-shortcode-id-56424a8dfbedca38ca00cab808e267d7.resize-by-browser-width .dt-css-grid {\n  grid-template-columns: repeat(3,1fr);\n  grid-template-rows: auto;\n  grid-column-gap: 30px;\n  grid-row-gap: 30px;\n}\n.cssgridlegacy.no-cssgrid .products-shortcode.products-masonry-shortcode-id-56424a8dfbedca38ca00cab808e267d7.resize-by-browser-width .dt-css-grid,\n.no-cssgridlegacy.no-cssgrid .products-shortcode.products-masonry-shortcode-id-56424a8dfbedca38ca00cab808e267d7.resize-by-browser-width .dt-css-grid {\n  margin: -15px;\n}\n.cssgridlegacy.no-cssgrid .products-shortcode.products-masonry-shortcode-id-56424a8dfbedca38ca00cab808e267d7.resize-by-browser-width .dt-css-grid .wf-cell,\n.no-cssgridlegacy.no-cssgrid .products-shortcode.products-masonry-shortcode-id-56424a8dfbedca38ca00cab808e267d7.resize-by-browser-width .dt-css-grid .wf-cell {\n  width: 33.333333333333%;\n  padding: 15px;\n}\n@media screen and (max-width: 1199px) {\n  .products-shortcode.products-masonry-shortcode-id-56424a8dfbedca38ca00cab808e267d7.resize-by-browser-width .dt-css-grid {\n    grid-template-columns: repeat(3,1fr);\n  }\n  .cssgridlegacy.no-cssgrid .products-shortcode.products-masonry-shortcode-id-56424a8dfbedca38ca00cab808e267d7.resize-by-browser-width .dt-css-grid .wf-cell,\n  .no-cssgridlegacy.no-cssgrid .products-shortcode.products-masonry-shortcode-id-56424a8dfbedca38ca00cab808e267d7.resize-by-browser-width .dt-css-grid .wf-cell {\n    width: 33.333333333333%;\n  }\n}\n@media screen and (max-width: 991px) {\n  .products-shortcode.products-masonry-shortcode-id-56424a8dfbedca38ca00cab808e267d7.resize-by-browser-width .dt-css-grid {\n    grid-template-columns: repeat(2,1fr);\n  }\n  .cssgridlegacy.no-cssgrid .products-shortcode.products-masonry-shortcode-id-56424a8dfbedca38ca00cab808e267d7.resize-by-browser-width .dt-css-grid .wf-cell,\n  .no-cssgridlegacy.no-cssgrid .products-shortcode.products-masonry-shortcode-id-56424a8dfbedca38ca00cab808e267d7.resize-by-browser-width .dt-css-grid .wf-cell {\n    width: 50%;\n  }\n}\n@media screen and (max-width: 767px) {\n  .products-shortcode.products-masonry-shortcode-id-56424a8dfbedca38ca00cab808e267d7.resize-by-browser-width .dt-css-grid {\n    grid-template-columns: repeat(1,1fr);\n  }\n  .cssgridlegacy.no-cssgrid .products-shortcode.products-masonry-shortcode-id-56424a8dfbedca38ca00cab808e267d7.resize-by-browser-width .dt-css-grid .wf-cell,\n  .no-cssgridlegacy.no-cssgrid .products-shortcode.products-masonry-shortcode-id-56424a8dfbedca38ca00cab808e267d7.resize-by-browser-width .dt-css-grid .wf-cell {\n    width: 100%;\n  }\n}\n\";}'),(16853,3335,'_wpb_vc_js_status','true'),(16851,3335,'_dt_fancy_header_bg_image','a:1:{i:0;i:3336;}'),(16852,3335,'_wp_page_template','default'),(1925,2588,'_wpb_post_custom_css','.customborderradius1 {\r\n    border-radius: 1px 35px 35px 1px !important;\r\n}'),(1926,2588,'_wpb_shortcodes_custom_css','.vc_custom_1662730336770{margin-right: 0px !important;margin-left: 0px !important;padding-right: 0px !important;padding-left: 0px !important;}.vc_custom_1662447237222{margin: 0px !important;padding: 0px !important;background-image: url(https://farmchemie.yasithawd.com/wp-content/uploads/2022/09/marketbgimg1-sp.png?id=2527) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}.vc_custom_1662370166856{margin-top: 20px !important;margin-right: 50px !important;margin-left: 50px !important;}.vc_custom_1662460080909{margin-top: 20px !important;margin-right: 50px !important;margin-bottom: 10px !important;margin-left: 50px !important;}.vc_custom_1662370166856{margin-top: 20px !important;margin-right: 50px !important;margin-left: 50px !important;}.vc_custom_1662460080909{margin-top: 20px !important;margin-right: 50px !important;margin-bottom: 10px !important;margin-left: 50px !important;}.vc_custom_1662539141341{background-color: #6e368d !important;}.vc_custom_1662539133598{background-color: #059444 !important;}.vc_custom_1662456998651{padding-bottom: 500px !important;}.vc_custom_1662458571859{padding-right: 0px !important;padding-bottom: 10px !important;padding-left: 0px !important;}.vc_custom_1662539148421{background-color: rgba(255,255,255,0.5) !important;*background-color: rgb(255,255,255) !important;}.vc_custom_1662371690284{background-color: #6e368d !important;}'),(1933,2601,'_wpb_post_custom_css','.vc_custom_1662364566926 {\r\n    border-radius: 0px 35px 35px 0px !important;\r\n}'),(1934,2601,'_wpb_shortcodes_custom_css','.vc_custom_1662447237222{margin: 0px !important;padding: 0px !important;background-image: url(https://farmchemie.yasithawd.com/wp-content/uploads/2022/09/marketbgimg1-sp.png?id=2527) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}.vc_custom_1662370166856{margin-top: 20px !important;margin-right: 50px !important;margin-left: 50px !important;}.vc_custom_1662460080909{margin-top: 20px !important;margin-right: 50px !important;margin-bottom: 10px !important;margin-left: 50px !important;}.vc_custom_1662367183321{background-color: #6e368d !important;}.vc_custom_1662370098614{background-color: #089548 !important;}.vc_custom_1662456998651{padding-bottom: 500px !important;}.vc_custom_1662458571859{padding-right: 0px !important;padding-bottom: 10px !important;padding-left: 0px !important;}.vc_custom_1662439605469{background-color: rgba(255,255,255,0.5) !important;*background-color: rgb(255,255,255) !important;}.vc_custom_1662371690284{background-color: #6e368d !important;}'),(1935,2602,'_wp_attached_file','2022/09/rowimg_mod_4.jpg'),(1936,2602,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1920;s:6:\"height\";i:1080;s:4:\"file\";s:24:\"2022/09/rowimg_mod_4.jpg\";s:8:\"filesize\";i:146951;s:5:\"sizes\";a:11:{s:6:\"medium\";a:5:{s:4:\"file\";s:24:\"rowimg_mod_4-300x169.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:169;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:11613;}s:5:\"large\";a:5:{s:4:\"file\";s:25:\"rowimg_mod_4-1024x576.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:576;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:90036;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:24:\"rowimg_mod_4-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:6016;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:24:\"rowimg_mod_4-768x432.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:432;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:54690;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:25:\"rowimg_mod_4-1536x864.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:864;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:173933;}s:21:\"woocommerce_thumbnail\";a:6:{s:4:\"file\";s:24:\"rowimg_mod_4-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:17304;s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:5:{s:4:\"file\";s:24:\"rowimg_mod_4-600x338.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:338;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:36476;}s:29:\"woocommerce_gallery_thumbnail\";a:5:{s:4:\"file\";s:24:\"rowimg_mod_4-200x200.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:9189;}s:12:\"shop_catalog\";a:5:{s:4:\"file\";s:24:\"rowimg_mod_4-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:17304;}s:11:\"shop_single\";a:5:{s:4:\"file\";s:24:\"rowimg_mod_4-600x338.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:338;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:36476;}s:14:\"shop_thumbnail\";a:5:{s:4:\"file\";s:24:\"rowimg_mod_4-200x200.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:9189;}}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:{}}}'),(1937,2603,'_wpb_post_custom_css','.vc_custom_1662364566926 {\r\n    border-radius: 0px 35px 35px 0px !important;\r\n}'),(1938,2603,'_wpb_shortcodes_custom_css','.vc_custom_1662447237222{margin: 0px !important;padding: 0px !important;background-image: url(https://farmchemie.yasithawd.com/wp-content/uploads/2022/09/marketbgimg1-sp.png?id=2527) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}.vc_custom_1662370166856{margin-top: 20px !important;margin-right: 50px !important;margin-left: 50px !important;}.vc_custom_1662460080909{margin-top: 20px !important;margin-right: 50px !important;margin-bottom: 10px !important;margin-left: 50px !important;}.vc_custom_1662367183321{background-color: #6e368d !important;}.vc_custom_1662370098614{background-color: #089548 !important;}.vc_custom_1662456998651{padding-bottom: 500px !important;}.vc_custom_1662458571859{padding-right: 0px !important;padding-bottom: 10px !important;padding-left: 0px !important;}.vc_custom_1662439605469{background-color: rgba(255,255,255,0.5) !important;*background-color: rgb(255,255,255) !important;}.vc_custom_1662371690284{background-color: #6e368d !important;}'),(1939,2604,'_wp_attached_file','2022/09/rowimg_mod_4HigherRes1.jpg'),(1940,2604,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1920;s:6:\"height\";i:1080;s:4:\"file\";s:34:\"2022/09/rowimg_mod_4HigherRes1.jpg\";s:8:\"filesize\";i:248119;s:5:\"sizes\";a:11:{s:6:\"medium\";a:5:{s:4:\"file\";s:34:\"rowimg_mod_4HigherRes1-300x169.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:169;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:11577;}s:5:\"large\";a:5:{s:4:\"file\";s:35:\"rowimg_mod_4HigherRes1-1024x576.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:576;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:89590;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:34:\"rowimg_mod_4HigherRes1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:5997;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:34:\"rowimg_mod_4HigherRes1-768x432.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:432;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:54339;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:35:\"rowimg_mod_4HigherRes1-1536x864.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:864;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:177288;}s:21:\"woocommerce_thumbnail\";a:6:{s:4:\"file\";s:34:\"rowimg_mod_4HigherRes1-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:17166;s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:5:{s:4:\"file\";s:34:\"rowimg_mod_4HigherRes1-600x338.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:338;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:36215;}s:29:\"woocommerce_gallery_thumbnail\";a:5:{s:4:\"file\";s:34:\"rowimg_mod_4HigherRes1-200x200.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:9163;}s:12:\"shop_catalog\";a:5:{s:4:\"file\";s:34:\"rowimg_mod_4HigherRes1-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:17166;}s:11:\"shop_single\";a:5:{s:4:\"file\";s:34:\"rowimg_mod_4HigherRes1-600x338.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:338;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:36215;}s:14:\"shop_thumbnail\";a:5:{s:4:\"file\";s:34:\"rowimg_mod_4HigherRes1-200x200.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:9163;}}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:{}}}'),(1941,2605,'_wpb_post_custom_css','.vc_custom_1662364566926 {\r\n    border-radius: 0px 35px 35px 0px !important;\r\n}'),(1942,2605,'_wpb_shortcodes_custom_css','.vc_custom_1662447237222{margin: 0px !important;padding: 0px !important;background-image: url(https://farmchemie.yasithawd.com/wp-content/uploads/2022/09/marketbgimg1-sp.png?id=2527) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}.vc_custom_1662370166856{margin-top: 20px !important;margin-right: 50px !important;margin-left: 50px !important;}.vc_custom_1662460080909{margin-top: 20px !important;margin-right: 50px !important;margin-bottom: 10px !important;margin-left: 50px !important;}.vc_custom_1662367183321{background-color: #6e368d !important;}.vc_custom_1662370098614{background-color: #089548 !important;}.vc_custom_1662456998651{padding-bottom: 500px !important;}.vc_custom_1662458571859{padding-right: 0px !important;padding-bottom: 10px !important;padding-left: 0px !important;}.vc_custom_1662439605469{background-color: rgba(255,255,255,0.5) !important;*background-color: rgb(255,255,255) !important;}.vc_custom_1662371690284{background-color: #6e368d !important;}'),(1943,2606,'_wpb_post_custom_css','.vc_custom_1662364566926 {\r\n    border-radius: 0px 35px 35px 0px !important;\r\n}'),(1944,2606,'_wpb_shortcodes_custom_css','.vc_custom_1662447237222{margin: 0px !important;padding: 0px !important;background-image: url(https://farmchemie.yasithawd.com/wp-content/uploads/2022/09/marketbgimg1-sp.png?id=2527) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}.vc_custom_1662370166856{margin-top: 20px !important;margin-right: 50px !important;margin-left: 50px !important;}.vc_custom_1662460080909{margin-top: 20px !important;margin-right: 50px !important;margin-bottom: 10px !important;margin-left: 50px !important;}.vc_custom_1662367183321{background-color: #6e368d !important;}.vc_custom_1662370098614{background-color: #089548 !important;}.vc_custom_1662456998651{padding-bottom: 500px !important;}.vc_custom_1662458571859{padding-right: 0px !important;padding-bottom: 10px !important;padding-left: 0px !important;}.vc_custom_1662439605469{background-color: rgba(255,255,255,0.5) !important;*background-color: rgb(255,255,255) !important;}.vc_custom_1662371690284{background-color: #6e368d !important;}'),(1945,2607,'_wpb_post_custom_css','.vc_custom_1662364566926 {\r\n    border-radius: 0px 35px 35px 0px !important;\r\n}'),(1946,2607,'_wpb_shortcodes_custom_css','.vc_custom_1662447237222{margin: 0px !important;padding: 0px !important;background-image: url(https://farmchemie.yasithawd.com/wp-content/uploads/2022/09/marketbgimg1-sp.png?id=2527) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}.vc_custom_1662370166856{margin-top: 20px !important;margin-right: 50px !important;margin-left: 50px !important;}.vc_custom_1662460080909{margin-top: 20px !important;margin-right: 50px !important;margin-bottom: 10px !important;margin-left: 50px !important;}.vc_custom_1662367183321{background-color: #6e368d !important;}.vc_custom_1662370098614{background-color: #089548 !important;}.vc_custom_1662456998651{padding-bottom: 500px !important;}.vc_custom_1662458571859{padding-right: 0px !important;padding-bottom: 10px !important;padding-left: 0px !important;}.vc_custom_1662439605469{background-color: rgba(255,255,255,0.5) !important;*background-color: rgb(255,255,255) !important;}.vc_custom_1662371690284{background-color: #6e368d !important;}'),(1947,2608,'_wpb_post_custom_css','.vc_custom_1662364566926 {\r\n    border-radius: 0px 35px 35px 0px !important;\r\n}'),(1948,2608,'_wpb_shortcodes_custom_css','.vc_custom_1662447237222{margin: 0px !important;padding: 0px !important;background-image: url(https://farmchemie.yasithawd.com/wp-content/uploads/2022/09/marketbgimg1-sp.png?id=2527) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}.vc_custom_1662370166856{margin-top: 20px !important;margin-right: 50px !important;margin-left: 50px !important;}.vc_custom_1662460080909{margin-top: 20px !important;margin-right: 50px !important;margin-bottom: 10px !important;margin-left: 50px !important;}.vc_custom_1662367183321{background-color: #6e368d !important;}.vc_custom_1662370098614{background-color: #089548 !important;}.vc_custom_1662456998651{padding-bottom: 500px !important;}.vc_custom_1662458571859{padding-right: 0px !important;padding-bottom: 10px !important;padding-left: 0px !important;}.vc_custom_1662439605469{background-color: rgba(255,255,255,0.5) !important;*background-color: rgb(255,255,255) !important;}.vc_custom_1662371690284{background-color: #6e368d !important;}'),(1949,2609,'_wpb_post_custom_css','.vc_custom_1662364566926 {\r\n    border-radius: 0px 35px 35px 0px !important;\r\n}'),(1950,2609,'_wpb_shortcodes_custom_css','.vc_custom_1662447237222{margin: 0px !important;padding: 0px !important;background-image: url(https://farmchemie.yasithawd.com/wp-content/uploads/2022/09/marketbgimg1-sp.png?id=2527) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}.vc_custom_1662370166856{margin-top: 20px !important;margin-right: 50px !important;margin-left: 50px !important;}.vc_custom_1662460080909{margin-top: 20px !important;margin-right: 50px !important;margin-bottom: 10px !important;margin-left: 50px !important;}.vc_custom_1662367183321{background-color: #6e368d !important;}.vc_custom_1662370098614{background-color: #089548 !important;}.vc_custom_1662456998651{padding-bottom: 500px !important;}.vc_custom_1662458571859{padding-right: 0px !important;padding-bottom: 10px !important;padding-left: 0px !important;}.vc_custom_1662439605469{background-color: rgba(255,255,255,0.5) !important;*background-color: rgb(255,255,255) !important;}.vc_custom_1662371690284{background-color: #6e368d !important;}'),(28050,3686,'_menu_item_xfn',''),(1952,2576,'_wp_old_date','2022-09-05'),(1959,2610,'_menu_item_xfn',''),(1960,2610,'_menu_item_url','#'),(28079,3691,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:800;s:6:\"height\";i:450;s:4:\"file\";s:25:\"2023/09/19-Farmchemie.jpg\";s:8:\"filesize\";i:260987;s:5:\"sizes\";a:6:{s:6:\"medium\";a:5:{s:4:\"file\";s:25:\"19-Farmchemie-300x169.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:169;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:16159;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:25:\"19-Farmchemie-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:10751;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:25:\"19-Farmchemie-768x432.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:432;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:66144;}s:21:\"woocommerce_thumbnail\";a:6:{s:4:\"file\";s:25:\"19-Farmchemie-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:30113;s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:5:{s:4:\"file\";s:25:\"19-Farmchemie-600x338.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:338;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:45271;}s:29:\"woocommerce_gallery_thumbnail\";a:5:{s:4:\"file\";s:25:\"19-Farmchemie-200x200.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:16087;}}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:{}}}'),(1974,2612,'_wpb_post_custom_css','.vc_custom_1662364566926 {\r\n    border-radius: 0px 35px 35px 0px !important;\r\n}'),(28221,3696,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:600;s:6:\"height\";i:600;s:4:\"file\";s:25:\"2023/09/Calfo20_600px.png\";s:8:\"filesize\";i:123745;s:5:\"sizes\";a:4:{s:6:\"medium\";a:5:{s:4:\"file\";s:25:\"Calfo20_600px-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:102842;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:25:\"Calfo20_600px-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:29352;}s:21:\"woocommerce_thumbnail\";a:6:{s:4:\"file\";s:25:\"Calfo20_600px-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:102842;s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:5:{s:4:\"file\";s:25:\"Calfo20_600px-200x200.png\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:49276;}}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:{}}}'),(13076,2931,'_wpb_shortcodes_custom_css','.vc_custom_1686719341668{margin-top: 35px !important;padding-top: 65px !important;padding-bottom: 100px !important;}.vc_custom_1684836308288{margin-top: 15px !important;}.vc_custom_1686713784619{margin-top: 35px !important;}.vc_custom_1686714025469{margin-top: 35px !important;}.vc_custom_1686713784619{margin-top: 35px !important;}.vc_custom_1686714115148{margin-top: 35px !important;}.vc_custom_1686713784619{margin-top: 35px !important;}.vc_custom_1686713784619{margin-top: 35px !important;}.vc_custom_1686713784619{margin-top: 35px !important;}'),(1975,2612,'_wpb_shortcodes_custom_css','.vc_custom_1662447237222{margin: 0px !important;padding: 0px !important;background-image: url(https://farmchemie.yasithawd.com/wp-content/uploads/2022/09/marketbgimg1-sp.png?id=2527) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}.vc_custom_1662370166856{margin-top: 20px !important;margin-right: 50px !important;margin-left: 50px !important;}.vc_custom_1662460080909{margin-top: 20px !important;margin-right: 50px !important;margin-bottom: 10px !important;margin-left: 50px !important;}.vc_custom_1662367183321{background-color: #6e368d !important;}.vc_custom_1662538982269{background-color: #059444 !important;}.vc_custom_1662456998651{padding-bottom: 500px !important;}.vc_custom_1662458571859{padding-right: 0px !important;padding-bottom: 10px !important;padding-left: 0px !important;}.vc_custom_1662439605469{background-color: rgba(255,255,255,0.5) !important;*background-color: rgb(255,255,255) !important;}.vc_custom_1662371690284{background-color: #6e368d !important;}'),(1976,2613,'_wpb_post_custom_css','.customborderradius1 {\r\n    border-radius: 0px 35px 35px 0px !important;\r\n}'),(1977,2613,'_wpb_shortcodes_custom_css','.vc_custom_1662447237222{margin: 0px !important;padding: 0px !important;background-image: url(https://farmchemie.yasithawd.com/wp-content/uploads/2022/09/marketbgimg1-sp.png?id=2527) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}.vc_custom_1662370166856{margin-top: 20px !important;margin-right: 50px !important;margin-left: 50px !important;}.vc_custom_1662460080909{margin-top: 20px !important;margin-right: 50px !important;margin-bottom: 10px !important;margin-left: 50px !important;}.vc_custom_1662539141341{background-color: #6e368d !important;}.vc_custom_1662539133598{background-color: #059444 !important;}.vc_custom_1662456998651{padding-bottom: 500px !important;}.vc_custom_1662458571859{padding-right: 0px !important;padding-bottom: 10px !important;padding-left: 0px !important;}.vc_custom_1662539148421{background-color: rgba(255,255,255,0.5) !important;*background-color: rgb(255,255,255) !important;}.vc_custom_1662371690284{background-color: #6e368d !important;}'),(1982,2616,'_wpb_post_custom_css','.customborderradius1 {\r\n    border-radius: 1px 35px 35px 1px !important;\r\n}'),(1983,2616,'_wpb_shortcodes_custom_css','.vc_custom_1662447237222{margin: 0px !important;padding: 0px !important;background-image: url(https://farmchemie.yasithawd.com/wp-content/uploads/2022/09/marketbgimg1-sp.png?id=2527) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}.vc_custom_1662370166856{margin-top: 20px !important;margin-right: 50px !important;margin-left: 50px !important;}.vc_custom_1662460080909{margin-top: 20px !important;margin-right: 50px !important;margin-bottom: 10px !important;margin-left: 50px !important;}.vc_custom_1662370166856{margin-top: 20px !important;margin-right: 50px !important;margin-left: 50px !important;}.vc_custom_1662460080909{margin-top: 20px !important;margin-right: 50px !important;margin-bottom: 10px !important;margin-left: 50px !important;}.vc_custom_1662539141341{background-color: #6e368d !important;}.vc_custom_1662539133598{background-color: #059444 !important;}.vc_custom_1662456998651{padding-bottom: 500px !important;}.vc_custom_1662458571859{padding-right: 0px !important;padding-bottom: 10px !important;padding-left: 0px !important;}.vc_custom_1662539148421{background-color: rgba(255,255,255,0.5) !important;*background-color: rgb(255,255,255) !important;}.vc_custom_1662371690284{background-color: #6e368d !important;}'),(1984,2617,'_wpb_post_custom_css','.customborderradius1 {\r\n    border-radius: 1px 35px 35px 1px !important;\r\n}'),(1985,2617,'_wpb_shortcodes_custom_css','.vc_custom_1662730336770{margin-right: 0px !important;margin-left: 0px !important;padding-right: 0px !important;padding-left: 0px !important;}.vc_custom_1662447237222{margin: 0px !important;padding: 0px !important;background-image: url(https://farmchemie.yasithawd.com/wp-content/uploads/2022/09/marketbgimg1-sp.png?id=2527) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}.vc_custom_1662370166856{margin-top: 20px !important;margin-right: 50px !important;margin-left: 50px !important;}.vc_custom_1662460080909{margin-top: 20px !important;margin-right: 50px !important;margin-bottom: 10px !important;margin-left: 50px !important;}.vc_custom_1662370166856{margin-top: 20px !important;margin-right: 50px !important;margin-left: 50px !important;}.vc_custom_1662460080909{margin-top: 20px !important;margin-right: 50px !important;margin-bottom: 10px !important;margin-left: 50px !important;}.vc_custom_1662539141341{background-color: #6e368d !important;}.vc_custom_1662539133598{background-color: #059444 !important;}.vc_custom_1662456998651{padding-bottom: 500px !important;}.vc_custom_1662458571859{padding-right: 0px !important;padding-bottom: 10px !important;padding-left: 0px !important;}.vc_custom_1662539148421{background-color: rgba(255,255,255,0.5) !important;*background-color: rgb(255,255,255) !important;}.vc_custom_1662371690284{background-color: #6e368d !important;}'),(1986,2618,'_wpb_post_custom_css','.customborderradius1 {\r\n    border-radius: 1px 35px 35px 1px !important;\r\n}'),(1987,2618,'_wpb_shortcodes_custom_css','.vc_custom_1662730336770{margin-right: 0px !important;margin-left: 0px !important;padding-right: 0px !important;padding-left: 0px !important;}.vc_custom_1662730433019{padding-right: 0px !important;padding-left: 0px !important;}.vc_custom_1662447237222{margin: 0px !important;padding: 0px !important;background-image: url(https://farmchemie.yasithawd.com/wp-content/uploads/2022/09/marketbgimg1-sp.png?id=2527) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}.vc_custom_1662370166856{margin-top: 20px !important;margin-right: 50px !important;margin-left: 50px !important;}.vc_custom_1662460080909{margin-top: 20px !important;margin-right: 50px !important;margin-bottom: 10px !important;margin-left: 50px !important;}.vc_custom_1662370166856{margin-top: 20px !important;margin-right: 50px !important;margin-left: 50px !important;}.vc_custom_1662460080909{margin-top: 20px !important;margin-right: 50px !important;margin-bottom: 10px !important;margin-left: 50px !important;}.vc_custom_1662539141341{background-color: #6e368d !important;}.vc_custom_1662539133598{background-color: #059444 !important;}.vc_custom_1662456998651{padding-bottom: 500px !important;}.vc_custom_1662458571859{padding-right: 0px !important;padding-bottom: 10px !important;padding-left: 0px !important;}.vc_custom_1662539148421{background-color: rgba(255,255,255,0.5) !important;*background-color: rgb(255,255,255) !important;}.vc_custom_1662371690284{background-color: #6e368d !important;}'),(16443,3319,'_wp_attached_file','2023/08/AVI-Tonic.pdf'),(16444,3319,'_wp_attachment_metadata','a:2:{s:5:\"sizes\";a:3:{s:4:\"full\";a:5:{s:4:\"file\";s:17:\"AVI-Tonic-pdf.jpg\";s:5:\"width\";i:384;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:130309;}s:6:\"medium\";a:5:{s:4:\"file\";s:25:\"AVI-Tonic-pdf-225x300.jpg\";s:5:\"width\";i:225;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:76861;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:25:\"AVI-Tonic-pdf-113x150.jpg\";s:5:\"width\";i:113;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:57154;}}s:8:\"filesize\";i:1491912;}'),(16445,3320,'_wp_attached_file','2023/08/AVI-Tonic_600px.png'),(16446,3320,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:600;s:6:\"height\";i:600;s:4:\"file\";s:27:\"2023/08/AVI-Tonic_600px.png\";s:8:\"filesize\";i:72020;s:5:\"sizes\";a:4:{s:6:\"medium\";a:5:{s:4:\"file\";s:27:\"AVI-Tonic_600px-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:49753;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:27:\"AVI-Tonic_600px-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:14567;}s:21:\"woocommerce_thumbnail\";a:6:{s:4:\"file\";s:27:\"AVI-Tonic_600px-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:49753;s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:5:{s:4:\"file\";s:27:\"AVI-Tonic_600px-200x200.png\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:23957;}}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:{}}}'),(17766,3385,'_wpb_shortcodes_custom_css_updated','1'),(17782,2977,'_wpb_post_custom_css','.whitetxt{\r\n    color:white!important;\r\n}'),(17784,3393,'_wpb_shortcodes_custom_css','.vc_custom_1689577528817{padding-bottom: 50px !important;}.vc_custom_1693451731079{padding-top: 50px !important;padding-bottom: 50px !important;}.vc_custom_1689578794814{padding-top: 50px !important;padding-bottom: 50px !important;}.vc_custom_1689578794814{padding-top: 50px !important;padding-bottom: 50px !important;}.vc_custom_1689577454678{margin-bottom: 50px !important;}.vc_custom_1692407941633{border-bottom-width: 1px !important;border-bottom-color: #079547 !important;border-bottom-style: solid !important;border-radius: 1px !important;}.vc_custom_1692407949383{border-bottom-width: 1px !important;border-bottom-color: #079547 !important;border-bottom-style: solid !important;border-radius: 1px !important;}.vc_custom_1692407957943{border-bottom-width: 1px !important;border-bottom-color: #079547 !important;border-bottom-style: solid !important;border-radius: 1px !important;}.vc_custom_1692407970279{border-bottom-width: 1px !important;border-bottom-color: #079547 !important;border-bottom-style: solid !important;border-radius: 1px !important;}.vc_custom_1691846530645{border-right-width: 1px !important;border-left-width: 1px !important;border-left-color: #000000 !important;border-left-style: solid !important;border-right-color: #000000 !important;border-right-style: solid !important;border-radius: 1px !important;}.vc_custom_1691846545469{border-right-width: 1px !important;border-left-width: 1px !important;border-left-color: #000000 !important;border-left-style: solid !important;border-right-color: #000000 !important;border-right-style: solid !important;border-radius: 1px !important;}.vc_custom_1691846563021{border-right-width: 1px !important;border-right-color: #000000 !important;border-right-style: solid !important;border-radius: 1px !important;}.vc_custom_1691846569845{border-right-width: 1px !important;border-right-color: #000000 !important;border-right-style: solid !important;border-radius: 1px !important;}.vc_custom_1691846576949{border-right-width: 1px !important;border-right-color: #000000 !important;border-right-style: solid !important;border-radius: 1px !important;}.vc_custom_1689578812611{margin-top: 50px !important;}.vc_custom_1693540291208{background-image: url(https://farmchemie.yasithawd.com/wp-content/uploads/2023/09/02International-Markets-Sri-Lankan-Market.png?id=3379) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}.vc_custom_1693540250450{background-color: #8d499b !important;}.vc_custom_1693540116474{background-color: #039447 !important;}.vc_custom_1693540312642{background-image: url(https://farmchemie.yasithawd.com/wp-content/uploads/2023/09/01International-Markets-Sri-Lankan-Market.png?id=3378) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}'),(17768,3386,'_wpb_shortcodes_custom_css','.vc_custom_1689577528817{padding-bottom: 50px !important;}.vc_custom_1693451731079{padding-top: 50px !important;padding-bottom: 50px !important;}.vc_custom_1689578794814{padding-top: 50px !important;padding-bottom: 50px !important;}.vc_custom_1689578794814{padding-top: 50px !important;padding-bottom: 50px !important;}.vc_custom_1693540932074{margin-top: 10px !important;margin-bottom: 10px !important;}.vc_custom_1689577454678{margin-bottom: 50px !important;}.vc_custom_1692407941633{border-bottom-width: 1px !important;border-bottom-color: #079547 !important;border-bottom-style: solid !important;border-radius: 1px !important;}.vc_custom_1692407949383{border-bottom-width: 1px !important;border-bottom-color: #079547 !important;border-bottom-style: solid !important;border-radius: 1px !important;}.vc_custom_1692407957943{border-bottom-width: 1px !important;border-bottom-color: #079547 !important;border-bottom-style: solid !important;border-radius: 1px !important;}.vc_custom_1692407970279{border-bottom-width: 1px !important;border-bottom-color: #079547 !important;border-bottom-style: solid !important;border-radius: 1px !important;}.vc_custom_1691846530645{border-right-width: 1px !important;border-left-width: 1px !important;border-left-color: #000000 !important;border-left-style: solid !important;border-right-color: #000000 !important;border-right-style: solid !important;border-radius: 1px !important;}.vc_custom_1691846545469{border-right-width: 1px !important;border-left-width: 1px !important;border-left-color: #000000 !important;border-left-style: solid !important;border-right-color: #000000 !important;border-right-style: solid !important;border-radius: 1px !important;}.vc_custom_1691846563021{border-right-width: 1px !important;border-right-color: #000000 !important;border-right-style: solid !important;border-radius: 1px !important;}.vc_custom_1691846569845{border-right-width: 1px !important;border-right-color: #000000 !important;border-right-style: solid !important;border-radius: 1px !important;}.vc_custom_1691846576949{border-right-width: 1px !important;border-right-color: #000000 !important;border-right-style: solid !important;border-radius: 1px !important;}.vc_custom_1689578812611{margin-top: 50px !important;}.vc_custom_1693540291208{background-image: url(https://farmchemie.yasithawd.com/wp-content/uploads/2023/09/02International-Markets-Sri-Lankan-Market.png?id=3379) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}.vc_custom_1693540250450{background-color: #8d499b !important;}.vc_custom_1693540116474{background-color: #039447 !important;}.vc_custom_1693540312642{background-image: url(https://farmchemie.yasithawd.com/wp-content/uploads/2023/09/01International-Markets-Sri-Lankan-Market.png?id=3378) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}'),(17770,3387,'_wpb_shortcodes_custom_css','.vc_custom_1689577528817{padding-bottom: 50px !important;}.vc_custom_1693451731079{padding-top: 50px !important;padding-bottom: 50px !important;}.vc_custom_1689578794814{padding-top: 50px !important;padding-bottom: 50px !important;}.vc_custom_1689578794814{padding-top: 50px !important;padding-bottom: 50px !important;}.vc_custom_1693540932074{margin-top: 10px !important;margin-bottom: 10px !important;}.vc_custom_1689577454678{margin-bottom: 50px !important;}.vc_custom_1692407941633{border-bottom-width: 1px !important;border-bottom-color: #079547 !important;border-bottom-style: solid !important;border-radius: 1px !important;}.vc_custom_1692407949383{border-bottom-width: 1px !important;border-bottom-color: #079547 !important;border-bottom-style: solid !important;border-radius: 1px !important;}.vc_custom_1692407957943{border-bottom-width: 1px !important;border-bottom-color: #079547 !important;border-bottom-style: solid !important;border-radius: 1px !important;}.vc_custom_1692407970279{border-bottom-width: 1px !important;border-bottom-color: #079547 !important;border-bottom-style: solid !important;border-radius: 1px !important;}.vc_custom_1691846530645{border-right-width: 1px !important;border-left-width: 1px !important;border-left-color: #000000 !important;border-left-style: solid !important;border-right-color: #000000 !important;border-right-style: solid !important;border-radius: 1px !important;}.vc_custom_1691846545469{border-right-width: 1px !important;border-left-width: 1px !important;border-left-color: #000000 !important;border-left-style: solid !important;border-right-color: #000000 !important;border-right-style: solid !important;border-radius: 1px !important;}.vc_custom_1691846563021{border-right-width: 1px !important;border-right-color: #000000 !important;border-right-style: solid !important;border-radius: 1px !important;}.vc_custom_1691846569845{border-right-width: 1px !important;border-right-color: #000000 !important;border-right-style: solid !important;border-radius: 1px !important;}.vc_custom_1691846576949{border-right-width: 1px !important;border-right-color: #000000 !important;border-right-style: solid !important;border-radius: 1px !important;}.vc_custom_1689578812611{margin-top: 50px !important;}.vc_custom_1693540291208{background-image: url(https://farmchemie.yasithawd.com/wp-content/uploads/2023/09/02International-Markets-Sri-Lankan-Market.png?id=3379) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}.vc_custom_1693540250450{background-color: #8d499b !important;}.vc_custom_1693540116474{background-color: #039447 !important;}.vc_custom_1693540312642{background-image: url(https://farmchemie.yasithawd.com/wp-content/uploads/2023/09/01International-Markets-Sri-Lankan-Market.png?id=3378) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}'),(17769,3386,'_wpb_shortcodes_custom_css_updated','1'),(16451,3323,'_wp_attached_file','2023/08/AVI-3-folding-brochure-SInhala-Final-outline_compressed-3.pdf'),(16452,3323,'_wp_attachment_metadata','a:2:{s:5:\"sizes\";a:4:{s:4:\"full\";a:5:{s:4:\"file\";s:65:\"AVI-3-folding-brochure-SInhala-Final-outline_compressed-3-pdf.jpg\";s:5:\"width\";i:1527;s:6:\"height\";i:1089;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:633226;}s:6:\"medium\";a:5:{s:4:\"file\";s:73:\"AVI-3-folding-brochure-SInhala-Final-outline_compressed-3-pdf-300x214.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:214;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:36931;}s:5:\"large\";a:5:{s:4:\"file\";s:74:\"AVI-3-folding-brochure-SInhala-Final-outline_compressed-3-pdf-1024x730.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:730;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:301330;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:73:\"AVI-3-folding-brochure-SInhala-Final-outline_compressed-3-pdf-150x107.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:107;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:11046;}}s:8:\"filesize\";i:2367813;}'),(16453,3324,'total_sales','0'),(16454,3324,'_tax_status','taxable'),(16455,3324,'_tax_class',''),(16456,3324,'_manage_stock','no'),(16457,3324,'_backorders','no'),(16458,3324,'_sold_individually','no'),(16459,3324,'_virtual','no'),(16460,3324,'_downloadable','no'),(16461,3324,'_download_limit','-1'),(16462,3324,'_download_expiry','-1'),(16463,3324,'_thumbnail_id','3326'),(16464,3324,'_stock',NULL),(16465,3324,'_stock_status','instock'),(16466,3324,'_wc_average_rating','0'),(16467,3324,'_wc_review_count','0'),(16468,3324,'_product_version','8.0.2'),(16469,3324,'_dt_sidebar_position','disabled'),(16470,3324,'_dt_sidebar_widgetarea_id','sidebar_1'),(16471,3324,'_dt_sidebar_hide_on_mobile','0'),(16472,3324,'_dt_footer_show','1'),(16473,3324,'_dt_footer_widgetarea_id','sidebar_2'),(16474,3324,'_dt_footer_hide_on_mobile','0'),(16475,3324,'_dt_header_title','fancy'),(16476,3324,'_dt_header_background','normal'),(16477,3324,'_dt_header_background_below_slideshow','disabled'),(16478,3324,'_dt_header_transparent_bg_color_scheme','light'),(16479,3324,'_dt_header_transparent_top_bar_bg_color','#ffffff'),(16480,3324,'_dt_header_transparent_top_bar_bg_opacity','25'),(16481,3324,'_dt_header_transparent_bg_color','#000000'),(16482,3324,'_dt_header_transparent_bg_opacity','50'),(16483,3324,'_dt_header_disabled_background','normal'),(16484,3324,'_dt_header_disabled_transparent_bg_color_scheme','light'),(16485,3324,'_dt_header_disabled_transparent_top_bar_bg_color','#ffffff'),(16486,3324,'_dt_header_disabled_transparent_top_bar_bg_opacity','25'),(16487,3324,'_dt_header_disabled_transparent_bg_color','#000000'),(16488,3324,'_dt_header_disabled_transparent_bg_opacity','50'),(16489,3324,'_dt_page_overrides_top_margin','1%'),(16490,3324,'_dt_page_overrides_right_margin',''),(16491,3324,'_dt_page_overrides_bottom_margin',''),(16492,3324,'_dt_page_overrides_left_margin',''),(16493,3324,'_dt_mobile_page_padding_top',''),(16494,3324,'_dt_mobile_page_padding_right',''),(16495,3324,'_dt_mobile_page_padding_bottom',''),(16496,3324,'_dt_mobile_page_padding_left',''),(16497,3324,'_dt_fancy_header_layout_heading',''),(16498,3324,'_dt_fancy_header_title_aligment','all_left'),(16499,3324,'_dt_fancy_header_height','140'),(16500,3324,'_dt_fancy_header_padding-top','0px'),(16501,3324,'_dt_fancy_header_padding-bottom','0px'),(16502,3324,'_dt_fancy_header_breadcrumbs_heading',''),(16503,3324,'_dt_fancy_header_breadcrumbs','disabled'),(16504,3324,'_dt_fancy_header_breadcrumbs_text_color','#ffffff'),(16505,3324,'_dt_fancy_header_breadcrumbs_bg_color','disabled'),(16506,3324,'_dt_fancy_header_title_heading',''),(16507,3324,'_dt_fancy_header_title_mode','custom'),(16508,3324,'_dt_fancy_header_title',''),(16509,3324,'_dt_fancy_header_title_font_size','32'),(16510,3324,'_dt_fancy_header_title_line_height','36'),(16511,3324,'_dt_fancy_header_text_transform','none'),(16512,3324,'_dt_fancy_header_title_color_mode','color'),(16513,3324,'_dt_fancy_header_title_color','#079547'),(16514,3324,'_dt_fancy_header_subtitle_heading',''),(16515,3324,'_dt_fancy_header_subtitle',''),(16516,3324,'_dt_fancy_header_subtitle_font_size','24'),(16517,3324,'_dt_fancy_header_subtitle_line_height','26'),(16518,3324,'_dt_fancy_header_subtitle_text_transform','none'),(16519,3324,'_dt_fancy_header_subtitle_color_mode','color'),(16520,3324,'_dt_fancy_header_subtitle_color','#792c8a'),(16521,3324,'_dt_fancy_header_bg_heading',''),(16522,3324,'_dt_fancy_header_bg_color','#ffffff'),(16523,3324,'_dt_fancy_header_bg_image_origin','custom'),(16524,3324,'_dt_fancy_header_bg_image','a:1:{i:0;i:3327;}'),(16525,3324,'_dt_fancy_header_bg_repeat','no-repeat'),(16526,3324,'_dt_fancy_header_bg_position_x','center'),(16527,3324,'_dt_fancy_header_bg_position_y','center'),(16528,3324,'_dt_fancy_header_bg_fullscreen','0'),(16529,3324,'_dt_fancy_header_bg_overlay','0'),(16530,3324,'_dt_fancy_header_overlay_color','#000'),(16531,3324,'_dt_fancy_header_bg_overlay_opacity','50'),(16532,3324,'_dt_fancy_header_scroll_effect','default'),(16533,3324,'_dt_fancy_header_bg_parallax','0.5'),(16534,3324,'_dt_fancy_header_responsiveness_heading',''),(16535,3324,'_dt_fancy_header_responsiveness','enabled'),(16536,3324,'_dt_fancy_header_responsiveness_switch','778px'),(16537,3324,'_dt_fancy_header_responsive_height','140'),(16538,3324,'_dt_fancy_header_responsive_font_size','30'),(16539,3324,'_dt_fancy_header_responsive_title_line_height','38'),(16540,3324,'_dt_fancy_header_responsive_subtitle_font_size','20'),(16541,3324,'_dt_fancy_header_responsive_subtitle_line_height','28'),(16542,3324,'_dt_fancy_header_responsive_breadcrumbs','disabled'),(16543,3324,'the7_fancy_title_css','#main {\n  padding-top: 1%;\n}\n.fancy-header {\n  background-image: url(\'https://farmchemie.yasithawd.com/wp-content/uploads/2023/08/AVI-VE_logo.png\');\n  background-repeat: no-repeat;\n  background-position: center center;\n  background-size: auto auto;\n  background-color: #ffffff;\n}\n.mobile-false .fancy-header {\n  background-attachment: scroll;\n}\n.fancy-header .wf-wrap {\n  min-height: 140px;\n  padding-top: 0px;\n  padding-bottom: 0px;\n}\n.fancy-header .fancy-title {\n  font-size: 32px;\n  line-height: 36px;\n  color: #079547;\n  text-transform: none;\n}\n.fancy-header .fancy-subtitle {\n  font-size: 24px;\n  line-height: 26px;\n  color: #792c8a;\n  text-transform: none;\n}\n.fancy-header .breadcrumbs {\n  color: #ffffff;\n}\n.fancy-header-overlay {\n  background: rgba(0,0,0,0.5);\n}\n@media screen and (max-width: 778px) {\n  .fancy-header .wf-wrap {\n    min-height: 140px;\n  }\n  .fancy-header .fancy-title {\n    font-size: 30px;\n    line-height: 38px;\n  }\n  .fancy-header .fancy-subtitle {\n    font-size: 20px;\n    line-height: 28px;\n  }\n  .fancy-header.breadcrumbs-mobile-off .breadcrumbs {\n    display: none;\n  }\n  #fancy-header > .wf-wrap {\n    flex-flow: column wrap;\n    align-items: center;\n    justify-content: center;\n    padding-bottom: 0px !important;\n  }\n  .fancy-header.title-left .breadcrumbs {\n    text-align: center;\n    float: none;\n  }\n  .breadcrumbs {\n    margin-bottom: 10px;\n  }\n  .breadcrumbs.breadcrumbs-bg {\n    margin-top: 10px;\n  }\n  .fancy-header.title-right .breadcrumbs {\n    margin: 10px 0 10px 0;\n  }\n  #fancy-header .hgroup,\n  #fancy-header .breadcrumbs {\n    text-align: center;\n  }\n  .fancy-header .hgroup {\n    padding-bottom: 5px;\n  }\n  .breadcrumbs-off .hgroup {\n    padding-bottom: 5px;\n  }\n  .title-right .hgroup {\n    padding: 0 0 5px 0;\n  }\n  .title-right.breadcrumbs-off .hgroup {\n    padding-top: 5px;\n  }\n  .title-left.disabled-bg .breadcrumbs {\n    margin-bottom: 0;\n  }\n}\n'),(16544,3324,'_edit_lock','1694450934:1'),(17788,3394,'_wpb_shortcodes_custom_css','.vc_custom_1689577528817{padding-bottom: 50px !important;}.vc_custom_1693451731079{padding-top: 50px !important;padding-bottom: 50px !important;}.vc_custom_1689578794814{padding-top: 50px !important;padding-bottom: 50px !important;}.vc_custom_1689578794814{padding-top: 50px !important;padding-bottom: 50px !important;}.vc_custom_1689577454678{margin-bottom: 50px !important;}.vc_custom_1692407941633{border-bottom-width: 1px !important;border-bottom-color: #079547 !important;border-bottom-style: solid !important;border-radius: 1px !important;}.vc_custom_1692407949383{border-bottom-width: 1px !important;border-bottom-color: #079547 !important;border-bottom-style: solid !important;border-radius: 1px !important;}.vc_custom_1692407957943{border-bottom-width: 1px !important;border-bottom-color: #079547 !important;border-bottom-style: solid !important;border-radius: 1px !important;}.vc_custom_1692407970279{border-bottom-width: 1px !important;border-bottom-color: #079547 !important;border-bottom-style: solid !important;border-radius: 1px !important;}.vc_custom_1691846530645{border-right-width: 1px !important;border-left-width: 1px !important;border-left-color: #000000 !important;border-left-style: solid !important;border-right-color: #000000 !important;border-right-style: solid !important;border-radius: 1px !important;}.vc_custom_1691846545469{border-right-width: 1px !important;border-left-width: 1px !important;border-left-color: #000000 !important;border-left-style: solid !important;border-right-color: #000000 !important;border-right-style: solid !important;border-radius: 1px !important;}.vc_custom_1691846563021{border-right-width: 1px !important;border-right-color: #000000 !important;border-right-style: solid !important;border-radius: 1px !important;}.vc_custom_1691846569845{border-right-width: 1px !important;border-right-color: #000000 !important;border-right-style: solid !important;border-radius: 1px !important;}.vc_custom_1691846576949{border-right-width: 1px !important;border-right-color: #000000 !important;border-right-style: solid !important;border-radius: 1px !important;}.vc_custom_1689578812611{margin-top: 50px !important;}.vc_custom_1693540291208{background-image: url(https://farmchemie.yasithawd.com/wp-content/uploads/2023/09/02International-Markets-Sri-Lankan-Market.png?id=3379) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}.vc_custom_1693540250450{background-color: #8d499b !important;}.vc_custom_1693540116474{background-color: #039447 !important;}.vc_custom_1693540312642{background-image: url(https://farmchemie.yasithawd.com/wp-content/uploads/2023/09/01International-Markets-Sri-Lankan-Market.png?id=3378) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}'),(17787,3394,'_wpb_post_custom_css','.whitetxt{\r\n    color:white!important;\r\n}\r\na {\r\n    color: white;\r\n}'),(17777,3390,'_wpb_shortcodes_custom_css_updated','1'),(17778,3391,'_wpb_shortcodes_custom_css','.vc_custom_1689577528817{padding-bottom: 50px !important;}.vc_custom_1693451731079{padding-top: 50px !important;padding-bottom: 50px !important;}.vc_custom_1689578794814{padding-top: 50px !important;padding-bottom: 50px !important;}.vc_custom_1689578794814{padding-top: 50px !important;padding-bottom: 50px !important;}.vc_custom_1689577454678{margin-bottom: 50px !important;}.vc_custom_1692407941633{border-bottom-width: 1px !important;border-bottom-color: #079547 !important;border-bottom-style: solid !important;border-radius: 1px !important;}.vc_custom_1692407949383{border-bottom-width: 1px !important;border-bottom-color: #079547 !important;border-bottom-style: solid !important;border-radius: 1px !important;}.vc_custom_1692407957943{border-bottom-width: 1px !important;border-bottom-color: #079547 !important;border-bottom-style: solid !important;border-radius: 1px !important;}.vc_custom_1692407970279{border-bottom-width: 1px !important;border-bottom-color: #079547 !important;border-bottom-style: solid !important;border-radius: 1px !important;}.vc_custom_1691846530645{border-right-width: 1px !important;border-left-width: 1px !important;border-left-color: #000000 !important;border-left-style: solid !important;border-right-color: #000000 !important;border-right-style: solid !important;border-radius: 1px !important;}.vc_custom_1691846545469{border-right-width: 1px !important;border-left-width: 1px !important;border-left-color: #000000 !important;border-left-style: solid !important;border-right-color: #000000 !important;border-right-style: solid !important;border-radius: 1px !important;}.vc_custom_1691846563021{border-right-width: 1px !important;border-right-color: #000000 !important;border-right-style: solid !important;border-radius: 1px !important;}.vc_custom_1691846569845{border-right-width: 1px !important;border-right-color: #000000 !important;border-right-style: solid !important;border-radius: 1px !important;}.vc_custom_1691846576949{border-right-width: 1px !important;border-right-color: #000000 !important;border-right-style: solid !important;border-radius: 1px !important;}.vc_custom_1689578812611{margin-top: 50px !important;}.vc_custom_1693540291208{background-image: url(https://farmchemie.yasithawd.com/wp-content/uploads/2023/09/02International-Markets-Sri-Lankan-Market.png?id=3379) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}.vc_custom_1693540250450{background-color: #8d499b !important;}.vc_custom_1693540116474{background-color: #039447 !important;}.vc_custom_1693540312642{background-image: url(https://farmchemie.yasithawd.com/wp-content/uploads/2023/09/01International-Markets-Sri-Lankan-Market.png?id=3378) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}'),(17775,3389,'_wpb_shortcodes_custom_css_updated','1'),(17776,3390,'_wpb_shortcodes_custom_css','.vc_custom_1689577528817{padding-bottom: 50px !important;}.vc_custom_1693451731079{padding-top: 50px !important;padding-bottom: 50px !important;}.vc_custom_1689578794814{padding-top: 50px !important;padding-bottom: 50px !important;}.vc_custom_1689578794814{padding-top: 50px !important;padding-bottom: 50px !important;}.vc_custom_1693540932074{margin-top: 10px !important;margin-bottom: 10px !important;}.vc_custom_1689577454678{margin-bottom: 50px !important;}.vc_custom_1692407941633{border-bottom-width: 1px !important;border-bottom-color: #079547 !important;border-bottom-style: solid !important;border-radius: 1px !important;}.vc_custom_1692407949383{border-bottom-width: 1px !important;border-bottom-color: #079547 !important;border-bottom-style: solid !important;border-radius: 1px !important;}.vc_custom_1692407957943{border-bottom-width: 1px !important;border-bottom-color: #079547 !important;border-bottom-style: solid !important;border-radius: 1px !important;}.vc_custom_1692407970279{border-bottom-width: 1px !important;border-bottom-color: #079547 !important;border-bottom-style: solid !important;border-radius: 1px !important;}.vc_custom_1691846530645{border-right-width: 1px !important;border-left-width: 1px !important;border-left-color: #000000 !important;border-left-style: solid !important;border-right-color: #000000 !important;border-right-style: solid !important;border-radius: 1px !important;}.vc_custom_1691846545469{border-right-width: 1px !important;border-left-width: 1px !important;border-left-color: #000000 !important;border-left-style: solid !important;border-right-color: #000000 !important;border-right-style: solid !important;border-radius: 1px !important;}.vc_custom_1691846563021{border-right-width: 1px !important;border-right-color: #000000 !important;border-right-style: solid !important;border-radius: 1px !important;}.vc_custom_1691846569845{border-right-width: 1px !important;border-right-color: #000000 !important;border-right-style: solid !important;border-radius: 1px !important;}.vc_custom_1691846576949{border-right-width: 1px !important;border-right-color: #000000 !important;border-right-style: solid !important;border-radius: 1px !important;}.vc_custom_1689578812611{margin-top: 50px !important;}.vc_custom_1693540291208{background-image: url(https://farmchemie.yasithawd.com/wp-content/uploads/2023/09/02International-Markets-Sri-Lankan-Market.png?id=3379) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}.vc_custom_1693540250450{background-color: #8d499b !important;}.vc_custom_1693540116474{background-color: #039447 !important;}.vc_custom_1693540312642{background-image: url(https://farmchemie.yasithawd.com/wp-content/uploads/2023/09/01International-Markets-Sri-Lankan-Market.png?id=3378) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}'),(17781,3392,'_wpb_shortcodes_custom_css_updated','1'),(17779,3391,'_wpb_shortcodes_custom_css_updated','1'),(17797,3397,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1000;s:6:\"height\";i:400;s:4:\"file\";s:54:\"2023/09/WhatsApp-Image-2023-09-01-at-2.36.27-PM-1.jpeg\";s:8:\"filesize\";i:120317;s:5:\"sizes\";a:6:{s:6:\"medium\";a:5:{s:4:\"file\";s:54:\"WhatsApp-Image-2023-09-01-at-2.36.27-PM-1-300x120.jpeg\";s:5:\"width\";i:300;s:6:\"height\";i:120;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:9412;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:54:\"WhatsApp-Image-2023-09-01-at-2.36.27-PM-1-150x150.jpeg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:5689;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:54:\"WhatsApp-Image-2023-09-01-at-2.36.27-PM-1-768x307.jpeg\";s:5:\"width\";i:768;s:6:\"height\";i:307;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:42510;}s:21:\"woocommerce_thumbnail\";a:6:{s:4:\"file\";s:54:\"WhatsApp-Image-2023-09-01-at-2.36.27-PM-1-300x300.jpeg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:17141;s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:5:{s:4:\"file\";s:54:\"WhatsApp-Image-2023-09-01-at-2.36.27-PM-1-600x240.jpeg\";s:5:\"width\";i:600;s:6:\"height\";i:240;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:28360;}s:29:\"woocommerce_gallery_thumbnail\";a:5:{s:4:\"file\";s:54:\"WhatsApp-Image-2023-09-01-at-2.36.27-PM-1-200x200.jpeg\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:8721;}}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:{}}}'),(17796,3397,'_wp_attached_file','2023/09/WhatsApp-Image-2023-09-01-at-2.36.27-PM-1.jpeg'),(17795,3396,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1000;s:6:\"height\";i:400;s:4:\"file\";s:52:\"2023/09/WhatsApp-Image-2023-09-01-at-2.36.27-PM.jpeg\";s:8:\"filesize\";i:91168;s:5:\"sizes\";a:6:{s:6:\"medium\";a:5:{s:4:\"file\";s:52:\"WhatsApp-Image-2023-09-01-at-2.36.27-PM-300x120.jpeg\";s:5:\"width\";i:300;s:6:\"height\";i:120;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:6701;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:52:\"WhatsApp-Image-2023-09-01-at-2.36.27-PM-150x150.jpeg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:6180;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:52:\"WhatsApp-Image-2023-09-01-at-2.36.27-PM-768x307.jpeg\";s:5:\"width\";i:768;s:6:\"height\";i:307;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:30847;}s:21:\"woocommerce_thumbnail\";a:6:{s:4:\"file\";s:52:\"WhatsApp-Image-2023-09-01-at-2.36.27-PM-300x300.jpeg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:18431;s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:5:{s:4:\"file\";s:52:\"WhatsApp-Image-2023-09-01-at-2.36.27-PM-600x240.jpeg\";s:5:\"width\";i:600;s:6:\"height\";i:240;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:20643;}s:29:\"woocommerce_gallery_thumbnail\";a:5:{s:4:\"file\";s:52:\"WhatsApp-Image-2023-09-01-at-2.36.27-PM-200x200.jpeg\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:9459;}}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:{}}}'),(17794,3396,'_wp_attached_file','2023/09/WhatsApp-Image-2023-09-01-at-2.36.27-PM.jpeg'),(17793,3373,'_edit_last','1'),(17792,3395,'_wpb_shortcodes_custom_css_updated','1'),(17785,3393,'_wpb_shortcodes_custom_css_updated','1'),(17786,2964,'_wpb_post_custom_css','.whitetxt{\r\n    color:white!important;\r\n}\r\na {\r\n    color: white;\r\n}'),(17791,3395,'_wpb_shortcodes_custom_css','.vc_custom_1689577528817{padding-bottom: 50px !important;}.vc_custom_1693451731079{padding-top: 50px !important;padding-bottom: 50px !important;}.vc_custom_1689578794814{padding-top: 50px !important;padding-bottom: 50px !important;}.vc_custom_1689578794814{padding-top: 50px !important;padding-bottom: 50px !important;}.vc_custom_1689577454678{margin-bottom: 50px !important;}.vc_custom_1692407941633{border-bottom-width: 1px !important;border-bottom-color: #079547 !important;border-bottom-style: solid !important;border-radius: 1px !important;}.vc_custom_1692407949383{border-bottom-width: 1px !important;border-bottom-color: #079547 !important;border-bottom-style: solid !important;border-radius: 1px !important;}.vc_custom_1692407957943{border-bottom-width: 1px !important;border-bottom-color: #079547 !important;border-bottom-style: solid !important;border-radius: 1px !important;}.vc_custom_1692407970279{border-bottom-width: 1px !important;border-bottom-color: #079547 !important;border-bottom-style: solid !important;border-radius: 1px !important;}.vc_custom_1691846530645{border-right-width: 1px !important;border-left-width: 1px !important;border-left-color: #000000 !important;border-left-style: solid !important;border-right-color: #000000 !important;border-right-style: solid !important;border-radius: 1px !important;}.vc_custom_1691846545469{border-right-width: 1px !important;border-left-width: 1px !important;border-left-color: #000000 !important;border-left-style: solid !important;border-right-color: #000000 !important;border-right-style: solid !important;border-radius: 1px !important;}.vc_custom_1691846563021{border-right-width: 1px !important;border-right-color: #000000 !important;border-right-style: solid !important;border-radius: 1px !important;}.vc_custom_1691846569845{border-right-width: 1px !important;border-right-color: #000000 !important;border-right-style: solid !important;border-radius: 1px !important;}.vc_custom_1691846576949{border-right-width: 1px !important;border-right-color: #000000 !important;border-right-style: solid !important;border-radius: 1px !important;}.vc_custom_1689578812611{margin-top: 50px !important;}.vc_custom_1693540291208{background-image: url(https://farmchemie.yasithawd.com/wp-content/uploads/2023/09/02International-Markets-Sri-Lankan-Market.png?id=3379) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}.vc_custom_1693540250450{background-color: #8d499b !important;}.vc_custom_1693540116474{background-color: #039447 !important;}.vc_custom_1693540312642{background-image: url(https://farmchemie.yasithawd.com/wp-content/uploads/2023/09/01International-Markets-Sri-Lankan-Market.png?id=3378) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}'),(17790,3395,'_wpb_post_custom_css','.whitetxt{\r\n    color:white!important;\r\n}\r\na {\r\n    color: white;\r\n}'),(17789,3394,'_wpb_shortcodes_custom_css_updated','1'),(17804,3400,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1000;s:6:\"height\";i:400;s:4:\"file\";s:21:\"2023/09/Tablets-2.png\";s:8:\"filesize\";i:74037;s:5:\"sizes\";a:6:{s:6:\"medium\";a:5:{s:4:\"file\";s:21:\"Tablets-2-300x120.png\";s:5:\"width\";i:300;s:6:\"height\";i:120;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:37653;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:21:\"Tablets-2-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:22906;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:21:\"Tablets-2-768x307.png\";s:5:\"width\";i:768;s:6:\"height\";i:307;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:190443;}s:21:\"woocommerce_thumbnail\";a:6:{s:4:\"file\";s:21:\"Tablets-2-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:76183;s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:5:{s:4:\"file\";s:21:\"Tablets-2-600x240.png\";s:5:\"width\";i:600;s:6:\"height\";i:240;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:122995;}s:29:\"woocommerce_gallery_thumbnail\";a:5:{s:4:\"file\";s:21:\"Tablets-2-200x200.png\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:37625;}}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:{}}}'),(17803,3400,'_wp_attached_file','2023/09/Tablets-2.png'),(17802,3399,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1000;s:6:\"height\";i:400;s:4:\"file\";s:40:\"2023/09/Veterinary-Pharmaceuticals-1.png\";s:8:\"filesize\";i:60070;s:5:\"sizes\";a:6:{s:6:\"medium\";a:5:{s:4:\"file\";s:40:\"Veterinary-Pharmaceuticals-1-300x120.png\";s:5:\"width\";i:300;s:6:\"height\";i:120;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:27212;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:40:\"Veterinary-Pharmaceuticals-1-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:24148;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:40:\"Veterinary-Pharmaceuticals-1-768x307.png\";s:5:\"width\";i:768;s:6:\"height\";i:307;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:141204;}s:21:\"woocommerce_thumbnail\";a:6:{s:4:\"file\";s:40:\"Veterinary-Pharmaceuticals-1-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:84384;s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:5:{s:4:\"file\";s:40:\"Veterinary-Pharmaceuticals-1-600x240.png\";s:5:\"width\";i:600;s:6:\"height\";i:240;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:88750;}s:29:\"woocommerce_gallery_thumbnail\";a:5:{s:4:\"file\";s:40:\"Veterinary-Pharmaceuticals-1-200x200.png\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:39941;}}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:{}}}'),(17800,3398,'_wpb_shortcodes_custom_css_updated','1'),(17801,3399,'_wp_attached_file','2023/09/Veterinary-Pharmaceuticals-1.png'),(17799,3398,'_wpb_shortcodes_custom_css','.vc_custom_1689577528817{padding-bottom: 50px !important;}.vc_custom_1693451731079{padding-top: 50px !important;padding-bottom: 50px !important;}.vc_custom_1689578794814{padding-top: 50px !important;padding-bottom: 50px !important;}.vc_custom_1689578794814{padding-top: 50px !important;padding-bottom: 50px !important;}.vc_custom_1689577454678{margin-bottom: 50px !important;}.vc_custom_1692407941633{border-bottom-width: 1px !important;border-bottom-color: #079547 !important;border-bottom-style: solid !important;border-radius: 1px !important;}.vc_custom_1692407949383{border-bottom-width: 1px !important;border-bottom-color: #079547 !important;border-bottom-style: solid !important;border-radius: 1px !important;}.vc_custom_1692407957943{border-bottom-width: 1px !important;border-bottom-color: #079547 !important;border-bottom-style: solid !important;border-radius: 1px !important;}.vc_custom_1692407970279{border-bottom-width: 1px !important;border-bottom-color: #079547 !important;border-bottom-style: solid !important;border-radius: 1px !important;}.vc_custom_1691846530645{border-right-width: 1px !important;border-left-width: 1px !important;border-left-color: #000000 !important;border-left-style: solid !important;border-right-color: #000000 !important;border-right-style: solid !important;border-radius: 1px !important;}.vc_custom_1691846545469{border-right-width: 1px !important;border-left-width: 1px !important;border-left-color: #000000 !important;border-left-style: solid !important;border-right-color: #000000 !important;border-right-style: solid !important;border-radius: 1px !important;}.vc_custom_1691846563021{border-right-width: 1px !important;border-right-color: #000000 !important;border-right-style: solid !important;border-radius: 1px !important;}.vc_custom_1691846569845{border-right-width: 1px !important;border-right-color: #000000 !important;border-right-style: solid !important;border-radius: 1px !important;}.vc_custom_1691846576949{border-right-width: 1px !important;border-right-color: #000000 !important;border-right-style: solid !important;border-radius: 1px !important;}.vc_custom_1689578812611{margin-top: 50px !important;}.vc_custom_1693540291208{background-image: url(https://farmchemie.yasithawd.com/wp-content/uploads/2023/09/02International-Markets-Sri-Lankan-Market.png?id=3379) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}.vc_custom_1693540250450{background-color: #8d499b !important;}.vc_custom_1693540116474{background-color: #039447 !important;}.vc_custom_1693540312642{background-image: url(https://farmchemie.yasithawd.com/wp-content/uploads/2023/09/01International-Markets-Sri-Lankan-Market.png?id=3378) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}'),(17798,3398,'_wpb_post_custom_css','.whitetxt{\r\n    color:white!important;\r\n}\r\na {\r\n    color: white;\r\n}'),(17764,3384,'_wpb_shortcodes_custom_css_updated','1'),(23014,3614,'_dt_header_disabled_background','normal'),(22990,3614,'_virtual','no'),(22991,3614,'_downloadable','no'),(17763,3384,'_wpb_shortcodes_custom_css','.vc_custom_1689577528817{padding-bottom: 50px !important;}.vc_custom_1693451731079{padding-top: 50px !important;padding-bottom: 50px !important;}.vc_custom_1689578794814{padding-top: 50px !important;padding-bottom: 50px !important;}.vc_custom_1689578794814{padding-top: 50px !important;padding-bottom: 50px !important;}.vc_custom_1693540932074{margin-top: 10px !important;margin-bottom: 10px !important;}.vc_custom_1689577454678{margin-bottom: 50px !important;}.vc_custom_1692407941633{border-bottom-width: 1px !important;border-bottom-color: #079547 !important;border-bottom-style: solid !important;border-radius: 1px !important;}.vc_custom_1692407949383{border-bottom-width: 1px !important;border-bottom-color: #079547 !important;border-bottom-style: solid !important;border-radius: 1px !important;}.vc_custom_1692407957943{border-bottom-width: 1px !important;border-bottom-color: #079547 !important;border-bottom-style: solid !important;border-radius: 1px !important;}.vc_custom_1692407970279{border-bottom-width: 1px !important;border-bottom-color: #079547 !important;border-bottom-style: solid !important;border-radius: 1px !important;}.vc_custom_1691846530645{border-right-width: 1px !important;border-left-width: 1px !important;border-left-color: #000000 !important;border-left-style: solid !important;border-right-color: #000000 !important;border-right-style: solid !important;border-radius: 1px !important;}.vc_custom_1691846545469{border-right-width: 1px !important;border-left-width: 1px !important;border-left-color: #000000 !important;border-left-style: solid !important;border-right-color: #000000 !important;border-right-style: solid !important;border-radius: 1px !important;}.vc_custom_1691846563021{border-right-width: 1px !important;border-right-color: #000000 !important;border-right-style: solid !important;border-radius: 1px !important;}.vc_custom_1691846569845{border-right-width: 1px !important;border-right-color: #000000 !important;border-right-style: solid !important;border-radius: 1px !important;}.vc_custom_1691846576949{border-right-width: 1px !important;border-right-color: #000000 !important;border-right-style: solid !important;border-radius: 1px !important;}.vc_custom_1689578812611{margin-top: 50px !important;}.vc_custom_1693540291208{background-image: url(https://farmchemie.yasithawd.com/wp-content/uploads/2023/09/02International-Markets-Sri-Lankan-Market.png?id=3379) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}.vc_custom_1693540250450{background-color: #8d499b !important;}.vc_custom_1693540116474{background-color: #039447 !important;}.vc_custom_1693540312642{background-image: url(https://farmchemie.yasithawd.com/wp-content/uploads/2023/09/01International-Markets-Sri-Lankan-Market.png?id=3378) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}'),(17783,3393,'_wpb_post_custom_css','.whitetxt{\r\n    color:white!important;\r\n}'),(3126,2655,'_edit_last','1'),(3127,2655,'_wp_page_template','default'),(17762,3383,'_wpb_shortcodes_custom_css_updated','1'),(3128,2655,'_wpb_vc_js_status','true'),(3129,2655,'_dt_sidebar_position','right'),(3130,2655,'_dt_sidebar_widgetarea_id','sidebar_1'),(3131,2655,'_dt_sidebar_hide_on_mobile','0'),(3132,2655,'_dt_footer_show','1'),(3133,2655,'_dt_footer_widgetarea_id','sidebar_2'),(3134,2655,'_dt_footer_hide_on_mobile','0'),(3135,2655,'_dt_header_title','fancy'),(3136,2655,'_dt_header_background','normal'),(3137,2655,'_dt_header_background_below_slideshow','disabled'),(3138,2655,'_dt_header_transparent_bg_color_scheme','light'),(3139,2655,'_dt_header_transparent_top_bar_bg_color','#ffffff'),(3140,2655,'_dt_header_transparent_top_bar_bg_opacity','25'),(3141,2655,'_dt_header_transparent_bg_color','#000000'),(3142,2655,'_dt_header_transparent_bg_opacity','50'),(3143,2655,'_dt_header_disabled_background','normal'),(3144,2655,'_dt_header_disabled_transparent_bg_color_scheme','light'),(3145,2655,'_dt_header_disabled_transparent_top_bar_bg_color','#ffffff'),(3146,2655,'_dt_header_disabled_transparent_top_bar_bg_opacity','25'),(3147,2655,'_dt_header_disabled_transparent_bg_color','#000000'),(3148,2655,'_dt_header_disabled_transparent_bg_opacity','50'),(3149,2655,'_dt_page_overrides_top_margin',''),(3150,2655,'_dt_page_overrides_right_margin',''),(3151,2655,'_dt_page_overrides_bottom_margin',''),(3152,2655,'_dt_page_overrides_left_margin',''),(3153,2655,'_dt_mobile_page_padding_top',''),(3154,2655,'_dt_mobile_page_padding_right',''),(3155,2655,'_dt_mobile_page_padding_bottom',''),(3156,2655,'_dt_mobile_page_padding_left',''),(3157,2655,'_dt_fancy_header_layout_heading',''),(3158,2655,'_dt_fancy_header_title_aligment','all_left'),(3159,2655,'_dt_fancy_header_height','300'),(3160,2655,'_dt_fancy_header_padding-top','0px'),(3161,2655,'_dt_fancy_header_padding-bottom','0px'),(3162,2655,'_dt_fancy_header_breadcrumbs_heading',''),(3163,2655,'_dt_fancy_header_breadcrumbs','disabled'),(3164,2655,'_dt_fancy_header_breadcrumbs_text_color','#ffffff'),(3165,2655,'_dt_fancy_header_breadcrumbs_bg_color','disabled'),(3166,2655,'_dt_fancy_header_title_heading',''),(3167,2655,'_dt_fancy_header_title_mode','generic'),(3168,2655,'_dt_fancy_header_title',''),(3169,2655,'_dt_fancy_header_title_font_size','30'),(3170,2655,'_dt_fancy_header_title_line_height','36'),(3171,2655,'_dt_fancy_header_text_transform','none'),(3172,2655,'_dt_fancy_header_title_color_mode','color'),(3173,2655,'_dt_fancy_header_title_color','#ffffff'),(3174,2655,'_dt_fancy_header_subtitle_heading',''),(3175,2655,'_dt_fancy_header_subtitle',''),(3176,2655,'_dt_fancy_header_subtitle_font_size','36'),(3177,2655,'_dt_fancy_header_subtitle_line_height','26'),(3178,2655,'_dt_fancy_header_subtitle_text_transform','none'),(3179,2655,'_dt_fancy_header_subtitle_color_mode','color'),(3180,2655,'_dt_fancy_header_subtitle_color','#ffffff'),(3181,2655,'_dt_fancy_header_bg_heading',''),(3182,2655,'_dt_fancy_header_bg_color','#079547'),(3183,2655,'_dt_fancy_header_bg_image_origin','custom'),(3184,2655,'_dt_fancy_header_bg_image','a:1:{i:0;i:3819;}'),(3185,2655,'_dt_fancy_header_bg_repeat','no-repeat'),(3186,2655,'_dt_fancy_header_bg_position_x','left'),(3187,2655,'_dt_fancy_header_bg_position_y','center'),(3188,2655,'_dt_fancy_header_bg_fullscreen','1'),(3189,2655,'_dt_fancy_header_bg_overlay','0'),(3190,2655,'_dt_fancy_header_overlay_color','#000'),(3191,2655,'_dt_fancy_header_bg_overlay_opacity','50'),(3192,2655,'_dt_fancy_header_scroll_effect','default'),(3193,2655,'_dt_fancy_header_bg_parallax','0.5'),(3194,2655,'_dt_fancy_header_responsiveness_heading',''),(3195,2655,'_dt_fancy_header_responsiveness','enabled'),(3196,2655,'_dt_fancy_header_responsiveness_switch','778px'),(3197,2655,'_dt_fancy_header_responsive_height','300'),(3198,2655,'_dt_fancy_header_responsive_font_size','30'),(3199,2655,'_dt_fancy_header_responsive_title_line_height','38'),(3200,2655,'_dt_fancy_header_responsive_subtitle_font_size','20'),(3201,2655,'_dt_fancy_header_responsive_subtitle_line_height','28'),(3202,2655,'_dt_fancy_header_responsive_breadcrumbs','disabled'),(3203,2655,'_dt_microsite_primary_menu',''),(3204,2655,'_dt_microsite_split_left_menu',''),(3205,2655,'_dt_microsite_split_right_menu',''),(3206,2655,'_dt_microsite_mobile_menu',''),(3207,2655,'the7_fancy_title_css','.fancy-header {\n  background-image: url(\'https://farmchemie.yasithawd.com/wp-content/uploads/2023/09/PRODUCTSF.gif\');\n  background-repeat: no-repeat;\n  background-position: left center;\n  background-size: cover;\n  background-color: #079547;\n}\n.mobile-false .fancy-header {\n  background-attachment: scroll;\n}\n.fancy-header .wf-wrap {\n  min-height: 300px;\n  padding-top: 0px;\n  padding-bottom: 0px;\n}\n.fancy-header .fancy-title {\n  font-size: 30px;\n  line-height: 36px;\n  color: #ffffff;\n  text-transform: none;\n}\n.fancy-header .fancy-subtitle {\n  font-size: 36px;\n  line-height: 26px;\n  color: #ffffff;\n  text-transform: none;\n}\n.fancy-header .breadcrumbs {\n  color: #ffffff;\n}\n.fancy-header-overlay {\n  background: rgba(0,0,0,0.5);\n}\n@media screen and (max-width: 778px) {\n  .fancy-header .wf-wrap {\n    min-height: 300px;\n  }\n  .fancy-header .fancy-title {\n    font-size: 30px;\n    line-height: 38px;\n  }\n  .fancy-header .fancy-subtitle {\n    font-size: 20px;\n    line-height: 28px;\n  }\n  .fancy-header.breadcrumbs-mobile-off .breadcrumbs {\n    display: none;\n  }\n  #fancy-header > .wf-wrap {\n    flex-flow: column wrap;\n    align-items: center;\n    justify-content: center;\n    padding-bottom: 0px !important;\n  }\n  .fancy-header.title-left .breadcrumbs {\n    text-align: center;\n    float: none;\n  }\n  .breadcrumbs {\n    margin-bottom: 10px;\n  }\n  .breadcrumbs.breadcrumbs-bg {\n    margin-top: 10px;\n  }\n  .fancy-header.title-right .breadcrumbs {\n    margin: 10px 0 10px 0;\n  }\n  #fancy-header .hgroup,\n  #fancy-header .breadcrumbs {\n    text-align: center;\n  }\n  .fancy-header .hgroup {\n    padding-bottom: 5px;\n  }\n  .breadcrumbs-off .hgroup {\n    padding-bottom: 5px;\n  }\n  .title-right .hgroup {\n    padding: 0 0 5px 0;\n  }\n  .title-right.breadcrumbs-off .hgroup {\n    padding-top: 5px;\n  }\n  .title-left.disabled-bg .breadcrumbs {\n    margin-bottom: 0;\n  }\n}\n'),(3208,2655,'_edit_lock','1695529215:1'),(16986,3352,'_product_version','8.0.2'),(16985,3352,'_wc_review_count','0'),(16984,3352,'_wc_average_rating','0'),(16983,3352,'_stock_status','instock'),(16982,3352,'_stock',NULL),(16981,3352,'_thumbnail_id','3354'),(16980,3352,'_download_expiry','-1'),(3219,2422,'_wp_old_date','2022-11-18'),(3232,2417,'_wp_old_date','2022-11-18'),(3233,2418,'_wp_old_date','2022-11-18'),(3234,2419,'_wp_old_date','2022-11-18'),(3235,2420,'_wp_old_date','2022-11-18'),(3236,2421,'_wp_old_date','2022-11-18'),(3237,39,'_wp_old_date','2022-11-18'),(23015,3614,'_dt_header_disabled_transparent_bg_color_scheme','light'),(23013,3614,'_dt_header_transparent_bg_opacity','50'),(23011,3614,'_dt_header_transparent_top_bar_bg_opacity','25'),(23012,3614,'_dt_header_transparent_bg_color','#000000'),(23008,3614,'_dt_header_background_below_slideshow','disabled'),(23010,3614,'_dt_header_transparent_top_bar_bg_color','#ffffff'),(23009,3614,'_dt_header_transparent_bg_color_scheme','light'),(23005,3614,'_dt_footer_hide_on_mobile','0'),(23006,3614,'_dt_header_title','fancy'),(23007,3614,'_dt_header_background','normal'),(23003,3614,'_dt_footer_show','1'),(23004,3614,'_dt_footer_widgetarea_id','sidebar_2'),(23002,3614,'_dt_sidebar_hide_on_mobile','0'),(23001,3614,'_dt_sidebar_widgetarea_id','sidebar_1'),(23000,3614,'_dt_sidebar_position','disabled'),(22999,3614,'_product_version','8.0.2'),(22998,3614,'_product_attributes','a:1:{s:15:\"pa_product-type\";a:6:{s:4:\"name\";s:15:\"pa_product-type\";s:5:\"value\";s:0:\"\";s:8:\"position\";i:0;s:10:\"is_visible\";i:0;s:12:\"is_variation\";i:0;s:11:\"is_taxonomy\";i:1;}}'),(22995,3614,'_stock_status','instock'),(22996,3614,'_wc_average_rating','0'),(22997,3614,'_wc_review_count','0'),(22994,3614,'_stock',NULL),(22992,3614,'_download_limit','-1'),(22993,3614,'_download_expiry','-1'),(16360,3316,'_wc_average_rating','0'),(16343,3314,'_wp_attached_file','2023/08/AVI-3-folding-brochure-SInhala-Final-outline_compressed-1.pdf'),(16344,3314,'_wp_attachment_metadata','a:2:{s:5:\"sizes\";a:4:{s:4:\"full\";a:5:{s:4:\"file\";s:65:\"AVI-3-folding-brochure-SInhala-Final-outline_compressed-1-pdf.jpg\";s:5:\"width\";i:1527;s:6:\"height\";i:1089;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:633226;}s:6:\"medium\";a:5:{s:4:\"file\";s:73:\"AVI-3-folding-brochure-SInhala-Final-outline_compressed-1-pdf-300x214.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:214;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:36931;}s:5:\"large\";a:5:{s:4:\"file\";s:74:\"AVI-3-folding-brochure-SInhala-Final-outline_compressed-1-pdf-1024x730.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:730;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:301330;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:73:\"AVI-3-folding-brochure-SInhala-Final-outline_compressed-1-pdf-150x107.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:107;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:11046;}}s:8:\"filesize\";i:2367813;}'),(16345,3315,'_wp_attached_file','2023/08/AVI-E-1.pdf'),(16346,3315,'_wp_attachment_metadata','a:2:{s:5:\"sizes\";a:3:{s:4:\"full\";a:5:{s:4:\"file\";s:15:\"AVI-E-1-pdf.jpg\";s:5:\"width\";i:384;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:163615;}s:6:\"medium\";a:5:{s:4:\"file\";s:23:\"AVI-E-1-pdf-225x300.jpg\";s:5:\"width\";i:225;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:86586;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:23:\"AVI-E-1-pdf-113x150.jpg\";s:5:\"width\";i:113;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:58758;}}s:8:\"filesize\";i:1494038;}'),(16347,3316,'total_sales','0'),(16348,3316,'_tax_status','taxable'),(16349,3316,'_tax_class',''),(16350,3316,'_manage_stock','no'),(16351,3316,'_backorders','no'),(16352,3316,'_sold_individually','no'),(16353,3316,'_virtual','no'),(16354,3316,'_downloadable','no'),(16355,3316,'_download_limit','-1'),(16356,3316,'_download_expiry','-1'),(16357,3316,'_thumbnail_id','3320'),(16358,3316,'_stock',NULL),(16359,3316,'_stock_status','instock'),(16337,3311,'_wp_attached_file','2023/08/AVI-E_Logo.png'),(16338,3311,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:300;s:6:\"height\";i:74;s:4:\"file\";s:22:\"2023/08/AVI-E_Logo.png\";s:8:\"filesize\";i:1454;s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:21:\"AVI-E_Logo-150x74.png\";s:5:\"width\";i:150;s:6:\"height\";i:74;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:2828;}s:29:\"woocommerce_gallery_thumbnail\";a:5:{s:4:\"file\";s:21:\"AVI-E_Logo-200x74.png\";s:5:\"width\";i:200;s:6:\"height\";i:74;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:3552;}}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:{}}}'),(16339,3312,'_wp_attached_file','2023/08/AVI-E.pdf'),(16340,3312,'_wp_attachment_metadata','a:2:{s:5:\"sizes\";a:3:{s:4:\"full\";a:5:{s:4:\"file\";s:13:\"AVI-E-pdf.jpg\";s:5:\"width\";i:384;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:163615;}s:6:\"medium\";a:5:{s:4:\"file\";s:21:\"AVI-E-pdf-225x300.jpg\";s:5:\"width\";i:225;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:86586;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:21:\"AVI-E-pdf-113x150.jpg\";s:5:\"width\";i:113;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:58758;}}s:8:\"filesize\";i:1494038;}'),(16341,3313,'_wp_attached_file','2023/08/AVI-3-folding-brochure-SInhala-Final-outline_compressed.pdf'),(16342,3313,'_wp_attachment_metadata','a:2:{s:5:\"sizes\";a:4:{s:4:\"full\";a:5:{s:4:\"file\";s:63:\"AVI-3-folding-brochure-SInhala-Final-outline_compressed-pdf.jpg\";s:5:\"width\";i:1527;s:6:\"height\";i:1089;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:633226;}s:6:\"medium\";a:5:{s:4:\"file\";s:71:\"AVI-3-folding-brochure-SInhala-Final-outline_compressed-pdf-300x214.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:214;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:36931;}s:5:\"large\";a:5:{s:4:\"file\";s:72:\"AVI-3-folding-brochure-SInhala-Final-outline_compressed-pdf-1024x730.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:730;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:301330;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:71:\"AVI-3-folding-brochure-SInhala-Final-outline_compressed-pdf-150x107.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:107;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:11046;}}s:8:\"filesize\";i:2367813;}'),(22984,3614,'total_sales','0'),(22985,3614,'_tax_status','taxable'),(22981,3612,'_wqoecf_disable_form','no'),(22982,3612,'_edit_lock','1694603996:1'),(22983,3612,'_edit_last','1'),(16281,3309,'_dt_page_overrides_left_margin',''),(16282,3309,'_dt_mobile_page_padding_top',''),(16283,3309,'_dt_mobile_page_padding_right',''),(16284,3309,'_dt_mobile_page_padding_bottom',''),(16285,3309,'_dt_mobile_page_padding_left',''),(16286,3309,'_dt_fancy_header_layout_heading',''),(16287,3309,'_dt_fancy_header_title_aligment','all_left'),(16288,3309,'_dt_fancy_header_height','140'),(16289,3309,'_dt_fancy_header_padding-top','0px'),(16290,3309,'_dt_fancy_header_padding-bottom','0px'),(16291,3309,'_dt_fancy_header_breadcrumbs_heading',''),(16292,3309,'_dt_fancy_header_breadcrumbs','disabled'),(16293,3309,'_dt_fancy_header_breadcrumbs_text_color','#ffffff'),(16294,3309,'_dt_fancy_header_breadcrumbs_bg_color','disabled'),(16295,3309,'_dt_fancy_header_title_heading',''),(16296,3309,'_dt_fancy_header_title_mode','custom'),(16297,3309,'_dt_fancy_header_title',''),(16298,3309,'_dt_fancy_header_title_font_size','32'),(16299,3309,'_dt_fancy_header_title_line_height','36'),(16300,3309,'_dt_fancy_header_text_transform','none'),(16301,3309,'_dt_fancy_header_title_color_mode','color'),(16302,3309,'_dt_fancy_header_title_color','#079547'),(16303,3309,'_dt_fancy_header_subtitle_heading',''),(16304,3309,'_dt_fancy_header_subtitle',''),(16305,3309,'_dt_fancy_header_subtitle_font_size','24'),(16306,3309,'_dt_fancy_header_subtitle_line_height','26'),(16307,3309,'_dt_fancy_header_subtitle_text_transform','none'),(16308,3309,'_dt_fancy_header_subtitle_color_mode','color'),(16309,3309,'_dt_fancy_header_subtitle_color','#792c8a'),(16310,3309,'_dt_fancy_header_bg_heading',''),(16311,3309,'_dt_fancy_header_bg_color','#ffffff'),(16312,3309,'_dt_fancy_header_bg_image_origin','custom'),(16313,3309,'_dt_fancy_header_bg_image','a:1:{i:0;i:3311;}'),(16314,3309,'_dt_fancy_header_bg_repeat','no-repeat'),(16315,3309,'_dt_fancy_header_bg_position_x','center'),(16316,3309,'_dt_fancy_header_bg_position_y','center'),(16317,3309,'_dt_fancy_header_bg_fullscreen','0'),(16318,3309,'_dt_fancy_header_bg_overlay','0'),(16319,3309,'_dt_fancy_header_overlay_color','#000'),(16320,3309,'_dt_fancy_header_bg_overlay_opacity','50'),(16321,3309,'_dt_fancy_header_scroll_effect','default'),(16322,3309,'_dt_fancy_header_bg_parallax','0.5'),(16323,3309,'_dt_fancy_header_responsiveness_heading',''),(16324,3309,'_dt_fancy_header_responsiveness','enabled'),(16325,3309,'_dt_fancy_header_responsiveness_switch','778px'),(16326,3309,'_dt_fancy_header_responsive_height','140'),(16327,3309,'_dt_fancy_header_responsive_font_size','30'),(16328,3309,'_dt_fancy_header_responsive_title_line_height','38'),(16329,3309,'_dt_fancy_header_responsive_subtitle_font_size','20'),(16330,3309,'_dt_fancy_header_responsive_subtitle_line_height','28'),(16331,3309,'_dt_fancy_header_responsive_breadcrumbs','disabled'),(16332,3309,'the7_fancy_title_css','#main {\n  padding-top: 1%;\n}\n.fancy-header {\n  background-image: url(\'https://farmchemie.yasithawd.com/wp-content/uploads/2023/08/AVI-E_Logo.png\');\n  background-repeat: no-repeat;\n  background-position: center center;\n  background-size: auto auto;\n  background-color: #ffffff;\n}\n.mobile-false .fancy-header {\n  background-attachment: scroll;\n}\n.fancy-header .wf-wrap {\n  min-height: 140px;\n  padding-top: 0px;\n  padding-bottom: 0px;\n}\n.fancy-header .fancy-title {\n  font-size: 32px;\n  line-height: 36px;\n  color: #079547;\n  text-transform: none;\n}\n.fancy-header .fancy-subtitle {\n  font-size: 24px;\n  line-height: 26px;\n  color: #792c8a;\n  text-transform: none;\n}\n.fancy-header .breadcrumbs {\n  color: #ffffff;\n}\n.fancy-header-overlay {\n  background: rgba(0,0,0,0.5);\n}\n@media screen and (max-width: 778px) {\n  .fancy-header .wf-wrap {\n    min-height: 140px;\n  }\n  .fancy-header .fancy-title {\n    font-size: 30px;\n    line-height: 38px;\n  }\n  .fancy-header .fancy-subtitle {\n    font-size: 20px;\n    line-height: 28px;\n  }\n  .fancy-header.breadcrumbs-mobile-off .breadcrumbs {\n    display: none;\n  }\n  #fancy-header > .wf-wrap {\n    flex-flow: column wrap;\n    align-items: center;\n    justify-content: center;\n    padding-bottom: 0px !important;\n  }\n  .fancy-header.title-left .breadcrumbs {\n    text-align: center;\n    float: none;\n  }\n  .breadcrumbs {\n    margin-bottom: 10px;\n  }\n  .breadcrumbs.breadcrumbs-bg {\n    margin-top: 10px;\n  }\n  .fancy-header.title-right .breadcrumbs {\n    margin: 10px 0 10px 0;\n  }\n  #fancy-header .hgroup,\n  #fancy-header .breadcrumbs {\n    text-align: center;\n  }\n  .fancy-header .hgroup {\n    padding-bottom: 5px;\n  }\n  .breadcrumbs-off .hgroup {\n    padding-bottom: 5px;\n  }\n  .title-right .hgroup {\n    padding: 0 0 5px 0;\n  }\n  .title-right.breadcrumbs-off .hgroup {\n    padding-top: 5px;\n  }\n  .title-left.disabled-bg .breadcrumbs {\n    margin-bottom: 0;\n  }\n}\n'),(16333,3309,'_edit_lock','1694429081:1'),(16334,3309,'_edit_last','1'),(16335,3310,'_wp_attached_file','2023/08/AVI-E_600px-x-600px.png'),(16336,3310,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:600;s:6:\"height\";i:600;s:4:\"file\";s:31:\"2023/08/AVI-E_600px-x-600px.png\";s:8:\"filesize\";i:60992;s:5:\"sizes\";a:4:{s:6:\"medium\";a:5:{s:4:\"file\";s:31:\"AVI-E_600px-x-600px-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:46978;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:31:\"AVI-E_600px-x-600px-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:13678;}s:21:\"woocommerce_thumbnail\";a:6:{s:4:\"file\";s:31:\"AVI-E_600px-x-600px-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:46978;s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:5:{s:4:\"file\";s:31:\"AVI-E_600px-x-600px-200x200.png\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:22558;}}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:{}}}'),(17807,3402,'_wpb_post_custom_css','.whitetxt{\r\n    color:white!important;\r\n}\r\na {\r\n    color: white;\r\n}'),(17808,3402,'_wpb_shortcodes_custom_css','.vc_custom_1689577528817{padding-bottom: 50px !important;}.vc_custom_1693451731079{padding-top: 50px !important;padding-bottom: 50px !important;}.vc_custom_1689578794814{padding-top: 50px !important;padding-bottom: 50px !important;}.vc_custom_1689578794814{padding-top: 50px !important;padding-bottom: 50px !important;}.vc_custom_1689577454678{margin-bottom: 50px !important;}.vc_custom_1692407941633{border-bottom-width: 1px !important;border-bottom-color: #079547 !important;border-bottom-style: solid !important;border-radius: 1px !important;}.vc_custom_1692407949383{border-bottom-width: 1px !important;border-bottom-color: #079547 !important;border-bottom-style: solid !important;border-radius: 1px !important;}.vc_custom_1692407957943{border-bottom-width: 1px !important;border-bottom-color: #079547 !important;border-bottom-style: solid !important;border-radius: 1px !important;}.vc_custom_1692407970279{border-bottom-width: 1px !important;border-bottom-color: #079547 !important;border-bottom-style: solid !important;border-radius: 1px !important;}.vc_custom_1691846530645{border-right-width: 1px !important;border-left-width: 1px !important;border-left-color: #000000 !important;border-left-style: solid !important;border-right-color: #000000 !important;border-right-style: solid !important;border-radius: 1px !important;}.vc_custom_1691846545469{border-right-width: 1px !important;border-left-width: 1px !important;border-left-color: #000000 !important;border-left-style: solid !important;border-right-color: #000000 !important;border-right-style: solid !important;border-radius: 1px !important;}.vc_custom_1691846563021{border-right-width: 1px !important;border-right-color: #000000 !important;border-right-style: solid !important;border-radius: 1px !important;}.vc_custom_1691846569845{border-right-width: 1px !important;border-right-color: #000000 !important;border-right-style: solid !important;border-radius: 1px !important;}.vc_custom_1691846576949{border-right-width: 1px !important;border-right-color: #000000 !important;border-right-style: solid !important;border-radius: 1px !important;}.vc_custom_1689578812611{margin-top: 50px !important;}.vc_custom_1693540291208{background-image: url(https://farmchemie.yasithawd.com/wp-content/uploads/2023/09/02International-Markets-Sri-Lankan-Market.png?id=3379) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}.vc_custom_1693540250450{background-color: #8d499b !important;}.vc_custom_1693540116474{background-color: #039447 !important;}.vc_custom_1693540312642{background-image: url(https://farmchemie.yasithawd.com/wp-content/uploads/2023/09/01International-Markets-Sri-Lankan-Market.png?id=3378) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}'),(17815,3405,'_wpb_shortcodes_custom_css','.vc_custom_1689577528817{padding-bottom: 50px !important;}.vc_custom_1693451731079{padding-top: 50px !important;padding-bottom: 50px !important;}.vc_custom_1689578794814{padding-top: 50px !important;padding-bottom: 50px !important;}.vc_custom_1689578794814{padding-top: 50px !important;padding-bottom: 50px !important;}.vc_custom_1689577454678{margin-bottom: 50px !important;}.vc_custom_1692407941633{border-bottom-width: 1px !important;border-bottom-color: #079547 !important;border-bottom-style: solid !important;border-radius: 1px !important;}.vc_custom_1692407949383{border-bottom-width: 1px !important;border-bottom-color: #079547 !important;border-bottom-style: solid !important;border-radius: 1px !important;}.vc_custom_1692407957943{border-bottom-width: 1px !important;border-bottom-color: #079547 !important;border-bottom-style: solid !important;border-radius: 1px !important;}.vc_custom_1692407970279{border-bottom-width: 1px !important;border-bottom-color: #079547 !important;border-bottom-style: solid !important;border-radius: 1px !important;}.vc_custom_1691846530645{border-right-width: 1px !important;border-left-width: 1px !important;border-left-color: #000000 !important;border-left-style: solid !important;border-right-color: #000000 !important;border-right-style: solid !important;border-radius: 1px !important;}.vc_custom_1691846545469{border-right-width: 1px !important;border-left-width: 1px !important;border-left-color: #000000 !important;border-left-style: solid !important;border-right-color: #000000 !important;border-right-style: solid !important;border-radius: 1px !important;}.vc_custom_1691846563021{border-right-width: 1px !important;border-right-color: #000000 !important;border-right-style: solid !important;border-radius: 1px !important;}.vc_custom_1691846569845{border-right-width: 1px !important;border-right-color: #000000 !important;border-right-style: solid !important;border-radius: 1px !important;}.vc_custom_1691846576949{border-right-width: 1px !important;border-right-color: #000000 !important;border-right-style: solid !important;border-radius: 1px !important;}.vc_custom_1689578812611{margin-top: 50px !important;}.vc_custom_1693569503225{background-image: url(https://farmchemie.yasithawd.com/wp-content/uploads/2023/09/022International-Markets-Sri-Lankan-Market.png?id=3403) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}.vc_custom_1693540250450{background-color: #8d499b !important;}.vc_custom_1693540116474{background-color: #039447 !important;}.vc_custom_1693569558281{background-image: url(https://farmchemie.yasithawd.com/wp-content/uploads/2023/09/011International-Markets-Sri-Lankan-Market.png?id=3404) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}'),(17814,3405,'_wpb_post_custom_css','.whitetxt{\r\n    color:white!important;\r\n}\r\na {\r\n    color: white;\r\n}'),(17813,3404,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:650;s:6:\"height\";i:400;s:4:\"file\";s:54:\"2023/09/011International-Markets-Sri-Lankan-Market.png\";s:8:\"filesize\";i:137640;s:5:\"sizes\";a:5:{s:6:\"medium\";a:5:{s:4:\"file\";s:54:\"011International-Markets-Sri-Lankan-Market-300x185.png\";s:5:\"width\";i:300;s:6:\"height\";i:185;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:82795;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:54:\"011International-Markets-Sri-Lankan-Market-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:35226;}s:21:\"woocommerce_thumbnail\";a:6:{s:4:\"file\";s:54:\"011International-Markets-Sri-Lankan-Market-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:133465;s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:5:{s:4:\"file\";s:54:\"011International-Markets-Sri-Lankan-Market-600x369.png\";s:5:\"width\";i:600;s:6:\"height\";i:369;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:331610;}s:29:\"woocommerce_gallery_thumbnail\";a:5:{s:4:\"file\";s:54:\"011International-Markets-Sri-Lankan-Market-200x200.png\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:58795;}}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:{}}}'),(17812,3404,'_wp_attached_file','2023/09/011International-Markets-Sri-Lankan-Market.png'),(17809,3402,'_wpb_shortcodes_custom_css_updated','1'),(17810,3403,'_wp_attached_file','2023/09/022International-Markets-Sri-Lankan-Market.png'),(17811,3403,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:647;s:6:\"height\";i:400;s:4:\"file\";s:54:\"2023/09/022International-Markets-Sri-Lankan-Market.png\";s:8:\"filesize\";i:78284;s:5:\"sizes\";a:5:{s:6:\"medium\";a:5:{s:4:\"file\";s:54:\"022International-Markets-Sri-Lankan-Market-300x185.png\";s:5:\"width\";i:300;s:6:\"height\";i:185;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:45523;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:54:\"022International-Markets-Sri-Lankan-Market-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:25132;}s:21:\"woocommerce_thumbnail\";a:6:{s:4:\"file\";s:54:\"022International-Markets-Sri-Lankan-Market-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:95101;s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:5:{s:4:\"file\";s:54:\"022International-Markets-Sri-Lankan-Market-600x371.png\";s:5:\"width\";i:600;s:6:\"height\";i:371;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:183975;}s:29:\"woocommerce_gallery_thumbnail\";a:5:{s:4:\"file\";s:54:\"022International-Markets-Sri-Lankan-Market-200x200.png\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:42250;}}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:{}}}'),(17826,3410,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:300;s:6:\"height\";i:429;s:4:\"file\";s:24:\"2023/09/Asset-4@300x.png\";s:8:\"filesize\";i:10721;s:5:\"sizes\";a:4:{s:6:\"medium\";a:5:{s:4:\"file\";s:24:\"Asset-4@300x-210x300.png\";s:5:\"width\";i:210;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:15511;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:24:\"Asset-4@300x-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:8515;}s:21:\"woocommerce_thumbnail\";a:6:{s:4:\"file\";s:24:\"Asset-4@300x-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:11803;s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:5:{s:4:\"file\";s:24:\"Asset-4@300x-200x200.png\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:11886;}}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:{}}}'),(17825,3410,'_wp_attached_file','2023/09/Asset-4@300x.png'),(17824,3409,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:300;s:6:\"height\";i:348;s:4:\"file\";s:24:\"2023/09/Asset-3@300x.png\";s:8:\"filesize\";i:8671;s:5:\"sizes\";a:4:{s:6:\"medium\";a:5:{s:4:\"file\";s:24:\"Asset-3@300x-259x300.png\";s:5:\"width\";i:259;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:21095;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:24:\"Asset-3@300x-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:10316;}s:21:\"woocommerce_thumbnail\";a:6:{s:4:\"file\";s:24:\"Asset-3@300x-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:5086;s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:5:{s:4:\"file\";s:24:\"Asset-3@300x-200x200.png\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:12988;}}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:{}}}'),(17823,3409,'_wp_attached_file','2023/09/Asset-3@300x.png'),(15224,3085,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1300;s:6:\"height\";i:300;s:4:\"file\";s:26:\"2023/08/manu_logos-1-t.png\";s:8:\"filesize\";i:292503;s:5:\"sizes\";a:10:{s:6:\"medium\";a:5:{s:4:\"file\";s:25:\"manu_logos-1-t-300x69.png\";s:5:\"width\";i:300;s:6:\"height\";i:69;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:24455;}s:5:\"large\";a:5:{s:4:\"file\";s:27:\"manu_logos-1-t-1024x236.png\";s:5:\"width\";i:1024;s:6:\"height\";i:236;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:160061;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:26:\"manu_logos-1-t-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:20984;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:26:\"manu_logos-1-t-768x177.png\";s:5:\"width\";i:768;s:6:\"height\";i:177;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:104979;}s:21:\"woocommerce_thumbnail\";a:6:{s:4:\"file\";s:26:\"manu_logos-1-t-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:55961;s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:5:{s:4:\"file\";s:26:\"manu_logos-1-t-600x138.png\";s:5:\"width\";i:600;s:6:\"height\";i:138;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:73138;}s:29:\"woocommerce_gallery_thumbnail\";a:5:{s:4:\"file\";s:26:\"manu_logos-1-t-200x200.png\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:31981;}s:12:\"shop_catalog\";a:5:{s:4:\"file\";s:26:\"manu_logos-1-t-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:55961;}s:11:\"shop_single\";a:5:{s:4:\"file\";s:26:\"manu_logos-1-t-600x138.png\";s:5:\"width\";i:600;s:6:\"height\";i:138;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:73138;}s:14:\"shop_thumbnail\";a:5:{s:4:\"file\";s:26:\"manu_logos-1-t-200x200.png\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:31981;}}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:{}}}'),(17822,3408,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:300;s:6:\"height\";i:113;s:4:\"file\";s:24:\"2023/09/Asset-1@300x.png\";s:8:\"filesize\";i:11349;s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:24:\"Asset-1@300x-150x113.png\";s:5:\"width\";i:150;s:6:\"height\";i:113;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:6738;}s:29:\"woocommerce_gallery_thumbnail\";a:5:{s:4:\"file\";s:24:\"Asset-1@300x-200x113.png\";s:5:\"width\";i:200;s:6:\"height\";i:113;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:8952;}}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:{}}}'),(17821,3408,'_wp_attached_file','2023/09/Asset-1@300x.png'),(17816,3405,'_wpb_shortcodes_custom_css_updated','1'),(17817,3406,'_wp_attached_file','2023/09/Asset-6@300x.png'),(17818,3406,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:300;s:6:\"height\";i:340;s:4:\"file\";s:24:\"2023/09/Asset-6@300x.png\";s:8:\"filesize\";i:39916;s:5:\"sizes\";a:4:{s:6:\"medium\";a:5:{s:4:\"file\";s:24:\"Asset-6@300x-265x300.png\";s:5:\"width\";i:265;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:101508;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:24:\"Asset-6@300x-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:37864;}s:21:\"woocommerce_thumbnail\";a:6:{s:4:\"file\";s:24:\"Asset-6@300x-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:110357;s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:5:{s:4:\"file\";s:24:\"Asset-6@300x-200x200.png\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:62212;}}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:{}}}'),(17819,3407,'_wp_attached_file','2023/09/Asset-2@300x.png'),(17820,3407,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:300;s:6:\"height\";i:340;s:4:\"file\";s:24:\"2023/09/Asset-2@300x.png\";s:8:\"filesize\";i:36492;s:5:\"sizes\";a:4:{s:6:\"medium\";a:5:{s:4:\"file\";s:24:\"Asset-2@300x-265x300.png\";s:5:\"width\";i:265;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:26284;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:24:\"Asset-2@300x-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:12403;}s:21:\"woocommerce_thumbnail\";a:6:{s:4:\"file\";s:24:\"Asset-2@300x-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:28137;s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:5:{s:4:\"file\";s:24:\"Asset-2@300x-200x200.png\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:18028;}}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:{}}}'),(17833,3413,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:300;s:6:\"height\";i:300;s:4:\"file\";s:37:\"2023/09/2021_CNCI-Achiever-Awards.png\";s:8:\"filesize\";i:24238;s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:37:\"2021_CNCI-Achiever-Awards-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:15474;}s:29:\"woocommerce_gallery_thumbnail\";a:5:{s:4:\"file\";s:37:\"2021_CNCI-Achiever-Awards-200x200.png\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:25940;}}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:{}}}'),(17832,3413,'_wp_attached_file','2023/09/2021_CNCI-Achiever-Awards.png'),(17831,3412,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:300;s:6:\"height\";i:300;s:4:\"file\";s:24:\"2023/09/2008_SVA_FCL.png\";s:8:\"filesize\";i:18304;s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:24:\"2008_SVA_FCL-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:10732;}s:29:\"woocommerce_gallery_thumbnail\";a:5:{s:4:\"file\";s:24:\"2008_SVA_FCL-200x200.png\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:17668;}}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:{}}}'),(17830,3412,'_wp_attached_file','2023/09/2008_SVA_FCL.png'),(27431,3664,'_dt_fancy_header_bg_overlay','0'),(27432,3664,'_dt_fancy_header_overlay_color','#000'),(27433,3664,'_dt_fancy_header_bg_overlay_opacity','50'),(17868,3430,'_wp_attached_file','2023/08/Prazimec-D_600px.png'),(17866,3429,'_wpb_shortcodes_custom_css','.vc_custom_1692366072362{margin-top: 35px !important;padding-top: 65px !important;padding-bottom: 100px !important;}.vc_custom_1684836308288{margin-top: 15px !important;}.vc_custom_1693627699480{margin-top: 15px !important;}.vc_custom_1693625624233{margin-top: 15px !important;}.vc_custom_1693625068958{margin-top: 15px !important;}.vc_custom_1692359205466{margin-top: 35px !important;}.vc_custom_1692359216075{margin-top: 35px !important;}.vc_custom_1692359231594{margin-top: 35px !important;}.vc_custom_1692359239274{margin-top: 35px !important;}.vc_custom_1692359246626{margin-top: 35px !important;}.vc_custom_1692422601938{margin-top: 35px !important;}.vc_custom_1692359258634{margin-top: 35px !important;}.vc_custom_1691995519863{background-color: #f4ab20 !important;border: 1px solid #f4ab20 !important;border-radius: 35px !important;}.vc_custom_1691995661095{background-color: #722f8b !important;border: 1px solid #722f8b !important;border-radius: 35px !important;}.vc_custom_1691995661095{background-color: #722f8b !important;border: 1px solid #722f8b !important;border-radius: 35px !important;}.vc_custom_1691995519863{background-color: #f4ab20 !important;border: 1px solid #f4ab20 !important;border-radius: 35px !important;}.vc_custom_1691996718116{border-radius: 35px !important;}.vc_custom_1691995519863{background-color: #f4ab20 !important;border: 1px solid #f4ab20 !important;border-radius: 35px !important;}.vc_custom_1692278922309{border-top-width: 1px !important;border-right-width: 1px !important;border-bottom-width: 1px !important;border-left-width: 1px !important;border-left-color: #059444 !important;border-left-style: solid !important;border-right-color: #059444 !important;border-right-style: solid !important;border-top-color: #059444 !important;border-top-style: solid !important;border-bottom-color: #059444 !important;border-bottom-style: solid !important;border-radius: 1px !important;}.vc_custom_1692278929158{border-top-width: 1px !important;border-right-width: 1px !important;border-bottom-width: 1px !important;border-left-width: 1px !important;border-left-color: #059444 !important;border-left-style: solid !important;border-right-color: #059444 !important;border-right-style: solid !important;border-top-color: #059444 !important;border-top-style: solid !important;border-bottom-color: #059444 !important;border-bottom-style: solid !important;border-radius: 1px !important;}.vc_custom_1692278936750{border-top-width: 1px !important;border-right-width: 1px !important;border-bottom-width: 1px !important;border-left-width: 1px !important;border-left-color: #059444 !important;border-left-style: solid !important;border-right-color: #059444 !important;border-right-style: solid !important;border-top-color: #059444 !important;border-top-style: solid !important;border-bottom-color: #059444 !important;border-bottom-style: solid !important;border-radius: 1px !important;}.vc_custom_1692278922309{border-top-width: 1px !important;border-right-width: 1px !important;border-bottom-width: 1px !important;border-left-width: 1px !important;border-left-color: #059444 !important;border-left-style: solid !important;border-right-color: #059444 !important;border-right-style: solid !important;border-top-color: #059444 !important;border-top-style: solid !important;border-bottom-color: #059444 !important;border-bottom-style: solid !important;border-radius: 1px !important;}.vc_custom_1692278929158{border-top-width: 1px !important;border-right-width: 1px !important;border-bottom-width: 1px !important;border-left-width: 1px !important;border-left-color: #059444 !important;border-left-style: solid !important;border-right-color: #059444 !important;border-right-style: solid !important;border-top-color: #059444 !important;border-top-style: solid !important;border-bottom-color: #059444 !important;border-bottom-style: solid !important;border-radius: 1px !important;}'),(17847,3420,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:300;s:6:\"height\";i:300;s:4:\"file\";s:38:\"2023/09/2014_Ceva_Best-Distributor.png\";s:8:\"filesize\";i:14769;s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:38:\"2014_Ceva_Best-Distributor-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:7124;}s:29:\"woocommerce_gallery_thumbnail\";a:5:{s:4:\"file\";s:38:\"2014_Ceva_Best-Distributor-200x200.png\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:11506;}}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:{}}}'),(17846,3420,'_wp_attached_file','2023/09/2014_Ceva_Best-Distributor.png'),(17845,3419,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:300;s:6:\"height\";i:300;s:4:\"file\";s:21:\"2023/09/2014_APEA.png\";s:8:\"filesize\";i:17195;s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:21:\"2014_APEA-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:11511;}s:29:\"woocommerce_gallery_thumbnail\";a:5:{s:4:\"file\";s:21:\"2014_APEA-200x200.png\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:18694;}}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:{}}}'),(17844,3419,'_wp_attached_file','2023/09/2014_APEA.png'),(17843,3418,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:300;s:6:\"height\";i:300;s:4:\"file\";s:20:\"2023/09/2022_FDL.png\";s:8:\"filesize\";i:24231;s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:20:\"2022_FDL-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:15914;}s:29:\"woocommerce_gallery_thumbnail\";a:5:{s:4:\"file\";s:20:\"2022_FDL-200x200.png\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:27632;}}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:{}}}'),(17842,3418,'_wp_attached_file','2023/09/2022_FDL.png'),(17841,3417,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:300;s:6:\"height\";i:300;s:4:\"file\";s:27:\"2023/09/2022_FCL_-TOP10.png\";s:8:\"filesize\";i:16670;s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:27:\"2022_FCL_-TOP10-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:10905;}s:29:\"woocommerce_gallery_thumbnail\";a:5:{s:4:\"file\";s:27:\"2022_FCL_-TOP10-200x200.png\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:18059;}}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:{}}}'),(17839,3416,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:300;s:6:\"height\";i:300;s:4:\"file\";s:20:\"2023/09/2022_FCL.png\";s:8:\"filesize\";i:23828;s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:20:\"2022_FCL-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:15982;}s:29:\"woocommerce_gallery_thumbnail\";a:5:{s:4:\"file\";s:20:\"2022_FCL-200x200.png\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:27522;}}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:{}}}'),(17838,3416,'_wp_attached_file','2023/09/2022_FCL.png'),(17834,3414,'_wp_attached_file','2023/09/2021_handing-over-fuction.png'),(17835,3414,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:300;s:6:\"height\";i:300;s:4:\"file\";s:37:\"2023/09/2021_handing-over-fuction.png\";s:8:\"filesize\";i:33091;s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:37:\"2021_handing-over-fuction-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:22112;}s:29:\"woocommerce_gallery_thumbnail\";a:5:{s:4:\"file\";s:37:\"2021_handing-over-fuction-200x200.png\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:38860;}}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:{}}}'),(17836,3415,'_wp_attached_file','2023/09/2022_Extra-Large-Category_Silver.png'),(17837,3415,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:300;s:6:\"height\";i:300;s:4:\"file\";s:44:\"2023/09/2022_Extra-Large-Category_Silver.png\";s:8:\"filesize\";i:12465;s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:44:\"2022_Extra-Large-Category_Silver-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:8541;}s:29:\"woocommerce_gallery_thumbnail\";a:5:{s:4:\"file\";s:44:\"2022_Extra-Large-Category_Silver-200x200.png\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:13757;}}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:{}}}'),(17840,3417,'_wp_attached_file','2023/09/2022_FCL_-TOP10.png'),(17858,3426,'_wpb_shortcodes_custom_css','.vc_custom_1692366072362{margin-top: 35px !important;padding-top: 65px !important;padding-bottom: 100px !important;}.vc_custom_1684836308288{margin-top: 15px !important;}.vc_custom_1693625624233{margin-top: 15px !important;}.vc_custom_1693627699480{margin-top: 15px !important;}.vc_custom_1693625624233{margin-top: 15px !important;}.vc_custom_1693625068958{margin-top: 15px !important;}.vc_custom_1692359205466{margin-top: 35px !important;}.vc_custom_1692359216075{margin-top: 35px !important;}.vc_custom_1692359231594{margin-top: 35px !important;}.vc_custom_1692359239274{margin-top: 35px !important;}.vc_custom_1692359246626{margin-top: 35px !important;}.vc_custom_1692422601938{margin-top: 35px !important;}.vc_custom_1692359258634{margin-top: 35px !important;}.vc_custom_1691995519863{background-color: #f4ab20 !important;border: 1px solid #f4ab20 !important;border-radius: 35px !important;}.vc_custom_1691995661095{background-color: #722f8b !important;border: 1px solid #722f8b !important;border-radius: 35px !important;}.vc_custom_1691995661095{background-color: #722f8b !important;border: 1px solid #722f8b !important;border-radius: 35px !important;}.vc_custom_1691995519863{background-color: #f4ab20 !important;border: 1px solid #f4ab20 !important;border-radius: 35px !important;}.vc_custom_1691996718116{border-radius: 35px !important;}.vc_custom_1691995519863{background-color: #f4ab20 !important;border: 1px solid #f4ab20 !important;border-radius: 35px !important;}.vc_custom_1692278922309{border-top-width: 1px !important;border-right-width: 1px !important;border-bottom-width: 1px !important;border-left-width: 1px !important;border-left-color: #059444 !important;border-left-style: solid !important;border-right-color: #059444 !important;border-right-style: solid !important;border-top-color: #059444 !important;border-top-style: solid !important;border-bottom-color: #059444 !important;border-bottom-style: solid !important;border-radius: 1px !important;}.vc_custom_1692278929158{border-top-width: 1px !important;border-right-width: 1px !important;border-bottom-width: 1px !important;border-left-width: 1px !important;border-left-color: #059444 !important;border-left-style: solid !important;border-right-color: #059444 !important;border-right-style: solid !important;border-top-color: #059444 !important;border-top-style: solid !important;border-bottom-color: #059444 !important;border-bottom-style: solid !important;border-radius: 1px !important;}.vc_custom_1692278936750{border-top-width: 1px !important;border-right-width: 1px !important;border-bottom-width: 1px !important;border-left-width: 1px !important;border-left-color: #059444 !important;border-left-style: solid !important;border-right-color: #059444 !important;border-right-style: solid !important;border-top-color: #059444 !important;border-top-style: solid !important;border-bottom-color: #059444 !important;border-bottom-style: solid !important;border-radius: 1px !important;}.vc_custom_1692278922309{border-top-width: 1px !important;border-right-width: 1px !important;border-bottom-width: 1px !important;border-left-width: 1px !important;border-left-color: #059444 !important;border-left-style: solid !important;border-right-color: #059444 !important;border-right-style: solid !important;border-top-color: #059444 !important;border-top-style: solid !important;border-bottom-color: #059444 !important;border-bottom-style: solid !important;border-radius: 1px !important;}.vc_custom_1692278929158{border-top-width: 1px !important;border-right-width: 1px !important;border-bottom-width: 1px !important;border-left-width: 1px !important;border-left-color: #059444 !important;border-left-style: solid !important;border-right-color: #059444 !important;border-right-style: solid !important;border-top-color: #059444 !important;border-top-style: solid !important;border-bottom-color: #059444 !important;border-bottom-style: solid !important;border-radius: 1px !important;}'),(17857,3425,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:300;s:6:\"height\";i:300;s:4:\"file\";s:38:\"2023/09/2020_CNCI-Achiever-Awards-.png\";s:8:\"filesize\";i:23137;s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:38:\"2020_CNCI-Achiever-Awards--150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:17102;}s:29:\"woocommerce_gallery_thumbnail\";a:5:{s:4:\"file\";s:38:\"2020_CNCI-Achiever-Awards--200x200.png\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:28730;}}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:{}}}'),(17856,3425,'_wp_attached_file','2023/09/2020_CNCI-Achiever-Awards-.png'),(17855,3424,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:300;s:6:\"height\";i:300;s:4:\"file\";s:81:\"2023/09/2019_Poultry-Science-for-enhancement-of-Poultry-Industry-in-Sri-lanka.png\";s:8:\"filesize\";i:15627;s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:81:\"2019_Poultry-Science-for-enhancement-of-Poultry-Industry-in-Sri-lanka-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:6936;}s:29:\"woocommerce_gallery_thumbnail\";a:5:{s:4:\"file\";s:81:\"2019_Poultry-Science-for-enhancement-of-Poultry-Industry-in-Sri-lanka-200x200.png\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:11067;}}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:{}}}'),(17854,3424,'_wp_attached_file','2023/09/2019_Poultry-Science-for-enhancement-of-Poultry-Industry-in-Sri-lanka.png'),(17853,3423,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:300;s:6:\"height\";i:300;s:4:\"file\";s:38:\"2023/09/2019_CNCI-Achiever-Awards-.png\";s:8:\"filesize\";i:22089;s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:38:\"2019_CNCI-Achiever-Awards--150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:15938;}s:29:\"woocommerce_gallery_thumbnail\";a:5:{s:4:\"file\";s:38:\"2019_CNCI-Achiever-Awards--200x200.png\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:26471;}}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:{}}}'),(17852,3423,'_wp_attached_file','2023/09/2019_CNCI-Achiever-Awards-.png'),(17848,3421,'_wp_attached_file','2023/09/2014_National-Agribusiness-Awards.png'),(17849,3421,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:300;s:6:\"height\";i:300;s:4:\"file\";s:45:\"2023/09/2014_National-Agribusiness-Awards.png\";s:8:\"filesize\";i:17410;s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:45:\"2014_National-Agribusiness-Awards-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:9820;}s:29:\"woocommerce_gallery_thumbnail\";a:5:{s:4:\"file\";s:45:\"2014_National-Agribusiness-Awards-200x200.png\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:16292;}}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:{}}}'),(17850,3422,'_wp_attached_file','2023/09/2018_SVA_Bronze-Sponsor.png'),(17851,3422,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:300;s:6:\"height\";i:300;s:4:\"file\";s:35:\"2023/09/2018_SVA_Bronze-Sponsor.png\";s:8:\"filesize\";i:19737;s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:35:\"2018_SVA_Bronze-Sponsor-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:13967;}s:29:\"woocommerce_gallery_thumbnail\";a:5:{s:4:\"file\";s:35:\"2018_SVA_Bronze-Sponsor-200x200.png\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:23408;}}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:{}}}'),(27474,3666,'_dt_header_title','fancy'),(27475,3666,'_dt_header_background','normal'),(27476,3666,'_dt_header_background_below_slideshow','disabled'),(27477,3666,'_dt_header_transparent_bg_color_scheme','light'),(27478,3666,'_dt_header_transparent_top_bar_bg_color','#ffffff'),(27479,3666,'_dt_header_transparent_top_bar_bg_opacity','25'),(27480,3666,'_dt_header_transparent_bg_color','#000000'),(27481,3666,'_dt_header_transparent_bg_opacity','50'),(27482,3666,'_dt_header_disabled_background','normal'),(27483,3666,'_dt_header_disabled_transparent_bg_color_scheme','light'),(27484,3666,'_dt_header_disabled_transparent_top_bar_bg_color','#ffffff'),(27485,3666,'_dt_header_disabled_transparent_top_bar_bg_opacity','25'),(27486,3666,'_dt_header_disabled_transparent_bg_color','#000000'),(27487,3666,'_dt_header_disabled_transparent_bg_opacity','50'),(27488,3666,'_dt_page_overrides_top_margin','1%'),(27489,3666,'_dt_page_overrides_right_margin',''),(27490,3666,'_dt_page_overrides_bottom_margin',''),(27491,3666,'_dt_page_overrides_left_margin',''),(27492,3666,'_dt_mobile_page_padding_top',''),(27493,3666,'_dt_mobile_page_padding_right',''),(27494,3666,'_dt_mobile_page_padding_bottom',''),(27495,3666,'_dt_mobile_page_padding_left',''),(27496,3666,'_dt_fancy_header_layout_heading',''),(27497,3666,'_dt_fancy_header_title_aligment','all_left'),(27498,3666,'_dt_fancy_header_height','140'),(27499,3666,'_dt_fancy_header_padding-top','0px'),(27500,3666,'_dt_fancy_header_padding-bottom','0px'),(27501,3666,'_dt_fancy_header_breadcrumbs_heading',''),(27502,3666,'_dt_fancy_header_breadcrumbs','disabled'),(27503,3666,'_dt_fancy_header_breadcrumbs_text_color','#ffffff'),(27504,3666,'_dt_fancy_header_breadcrumbs_bg_color','disabled'),(27505,3666,'_dt_fancy_header_title_heading',''),(27506,3666,'_dt_fancy_header_title_mode','custom'),(27507,3666,'_dt_fancy_header_title',''),(27508,3666,'_dt_fancy_header_title_font_size','32'),(27509,3666,'_dt_fancy_header_title_line_height','36'),(27510,3666,'_dt_fancy_header_text_transform','none'),(27511,3666,'_dt_fancy_header_title_color_mode','color'),(27512,3666,'_dt_fancy_header_title_color','#079547'),(27513,3666,'_dt_fancy_header_subtitle_heading',''),(27514,3666,'_dt_fancy_header_subtitle',''),(27515,3666,'_dt_fancy_header_subtitle_font_size','24'),(27516,3666,'_dt_fancy_header_subtitle_line_height','26'),(27517,3666,'_dt_fancy_header_subtitle_text_transform','none'),(27518,3666,'_dt_fancy_header_subtitle_color_mode','color'),(27519,3666,'_dt_fancy_header_subtitle_color','#792c8a'),(27520,3666,'_dt_fancy_header_bg_heading',''),(27521,3666,'_dt_fancy_header_bg_color','#ffffff'),(17859,3426,'_wpb_shortcodes_custom_css_updated','1'),(17863,3428,'_wpb_shortcodes_custom_css','.vc_custom_1692366072362{margin-top: 35px !important;padding-top: 65px !important;padding-bottom: 100px !important;}.vc_custom_1684836308288{margin-top: 15px !important;}.vc_custom_1693627699480{margin-top: 15px !important;}.vc_custom_1693625624233{margin-top: 15px !important;}.vc_custom_1693625068958{margin-top: 15px !important;}.vc_custom_1692359205466{margin-top: 35px !important;}.vc_custom_1692359216075{margin-top: 35px !important;}.vc_custom_1692359231594{margin-top: 35px !important;}.vc_custom_1692359239274{margin-top: 35px !important;}.vc_custom_1692359246626{margin-top: 35px !important;}.vc_custom_1692422601938{margin-top: 35px !important;}.vc_custom_1692359258634{margin-top: 35px !important;}.vc_custom_1691995519863{background-color: #f4ab20 !important;border: 1px solid #f4ab20 !important;border-radius: 35px !important;}.vc_custom_1691995661095{background-color: #722f8b !important;border: 1px solid #722f8b !important;border-radius: 35px !important;}.vc_custom_1691995661095{background-color: #722f8b !important;border: 1px solid #722f8b !important;border-radius: 35px !important;}.vc_custom_1691995519863{background-color: #f4ab20 !important;border: 1px solid #f4ab20 !important;border-radius: 35px !important;}.vc_custom_1691996718116{border-radius: 35px !important;}.vc_custom_1691995519863{background-color: #f4ab20 !important;border: 1px solid #f4ab20 !important;border-radius: 35px !important;}.vc_custom_1692278922309{border-top-width: 1px !important;border-right-width: 1px !important;border-bottom-width: 1px !important;border-left-width: 1px !important;border-left-color: #059444 !important;border-left-style: solid !important;border-right-color: #059444 !important;border-right-style: solid !important;border-top-color: #059444 !important;border-top-style: solid !important;border-bottom-color: #059444 !important;border-bottom-style: solid !important;border-radius: 1px !important;}.vc_custom_1692278929158{border-top-width: 1px !important;border-right-width: 1px !important;border-bottom-width: 1px !important;border-left-width: 1px !important;border-left-color: #059444 !important;border-left-style: solid !important;border-right-color: #059444 !important;border-right-style: solid !important;border-top-color: #059444 !important;border-top-style: solid !important;border-bottom-color: #059444 !important;border-bottom-style: solid !important;border-radius: 1px !important;}.vc_custom_1692278936750{border-top-width: 1px !important;border-right-width: 1px !important;border-bottom-width: 1px !important;border-left-width: 1px !important;border-left-color: #059444 !important;border-left-style: solid !important;border-right-color: #059444 !important;border-right-style: solid !important;border-top-color: #059444 !important;border-top-style: solid !important;border-bottom-color: #059444 !important;border-bottom-style: solid !important;border-radius: 1px !important;}.vc_custom_1692278922309{border-top-width: 1px !important;border-right-width: 1px !important;border-bottom-width: 1px !important;border-left-width: 1px !important;border-left-color: #059444 !important;border-left-style: solid !important;border-right-color: #059444 !important;border-right-style: solid !important;border-top-color: #059444 !important;border-top-style: solid !important;border-bottom-color: #059444 !important;border-bottom-style: solid !important;border-radius: 1px !important;}.vc_custom_1692278929158{border-top-width: 1px !important;border-right-width: 1px !important;border-bottom-width: 1px !important;border-left-width: 1px !important;border-left-color: #059444 !important;border-left-style: solid !important;border-right-color: #059444 !important;border-right-style: solid !important;border-top-color: #059444 !important;border-top-style: solid !important;border-bottom-color: #059444 !important;border-bottom-style: solid !important;border-radius: 1px !important;}'),(27163,3661,'_tax_class',''),(27164,3661,'_manage_stock','no'),(27165,3661,'_backorders','no'),(27166,3661,'_sold_individually','no'),(27167,3661,'_virtual','no'),(27168,3661,'_downloadable','no'),(27169,3661,'_download_limit','-1'),(27170,3661,'_download_expiry','-1'),(27171,3661,'_thumbnail_id','2872'),(27172,3661,'_stock',NULL),(27173,3661,'_stock_status','instock'),(27174,3661,'_wc_average_rating','0'),(27175,3661,'_wc_review_count','0'),(27176,3661,'_product_attributes','a:1:{s:15:\"pa_product-type\";a:6:{s:4:\"name\";s:15:\"pa_product-type\";s:5:\"value\";s:0:\"\";s:8:\"position\";i:0;s:10:\"is_visible\";i:0;s:12:\"is_variation\";i:0;s:11:\"is_taxonomy\";i:1;}}'),(27177,3661,'_product_version','8.0.2'),(27178,3661,'_dt_sidebar_position','disabled'),(27179,3661,'_dt_sidebar_widgetarea_id','sidebar_1'),(27180,3661,'_dt_sidebar_hide_on_mobile','0'),(27181,3661,'_dt_footer_show','1'),(27182,3661,'_dt_footer_widgetarea_id','sidebar_2'),(27183,3661,'_dt_footer_hide_on_mobile','0'),(27184,3661,'_dt_header_title','fancy'),(27185,3661,'_dt_header_background','normal'),(27186,3661,'_dt_header_background_below_slideshow','disabled'),(27187,3661,'_dt_header_transparent_bg_color_scheme','light'),(27188,3661,'_dt_header_transparent_top_bar_bg_color','#ffffff'),(27189,3661,'_dt_header_transparent_top_bar_bg_opacity','25'),(27190,3661,'_dt_header_transparent_bg_color','#000000'),(27191,3661,'_dt_header_transparent_bg_opacity','50'),(27192,3661,'_dt_header_disabled_background','normal'),(27193,3661,'_dt_header_disabled_transparent_bg_color_scheme','light'),(27194,3661,'_dt_header_disabled_transparent_top_bar_bg_color','#ffffff'),(27195,3661,'_dt_header_disabled_transparent_top_bar_bg_opacity','25'),(27196,3661,'_dt_header_disabled_transparent_bg_color','#000000'),(27197,3661,'_dt_header_disabled_transparent_bg_opacity','50'),(27198,3661,'_dt_page_overrides_top_margin','1%'),(27199,3661,'_dt_page_overrides_right_margin',''),(27200,3661,'_dt_page_overrides_bottom_margin',''),(27201,3661,'_dt_page_overrides_left_margin',''),(27202,3661,'_dt_mobile_page_padding_top',''),(27203,3661,'_dt_mobile_page_padding_right',''),(27204,3661,'_dt_mobile_page_padding_bottom',''),(27205,3661,'_dt_mobile_page_padding_left',''),(27206,3661,'_dt_fancy_header_layout_heading',''),(27207,3661,'_dt_fancy_header_title_aligment','all_left'),(27208,3661,'_dt_fancy_header_height','140'),(27209,3661,'_dt_fancy_header_padding-top','0px'),(27210,3661,'_dt_fancy_header_padding-bottom','0px'),(27211,3661,'_dt_fancy_header_breadcrumbs_heading',''),(27212,3661,'_dt_fancy_header_breadcrumbs','disabled'),(27213,3661,'_dt_fancy_header_breadcrumbs_text_color','#ffffff'),(27214,3661,'_dt_fancy_header_breadcrumbs_bg_color','disabled'),(27215,3661,'_dt_fancy_header_title_heading',''),(27216,3661,'_dt_fancy_header_title_mode','custom'),(27217,3661,'_dt_fancy_header_title',''),(27218,3661,'_dt_fancy_header_title_font_size','32'),(27219,3661,'_dt_fancy_header_title_line_height','36'),(27220,3661,'_dt_fancy_header_text_transform','none'),(27221,3661,'_dt_fancy_header_title_color_mode','color'),(27222,3661,'_dt_fancy_header_title_color','#079547'),(27223,3661,'_dt_fancy_header_subtitle_heading',''),(27224,3661,'_dt_fancy_header_subtitle',''),(27225,3661,'_dt_fancy_header_subtitle_font_size','24'),(27226,3661,'_dt_fancy_header_subtitle_line_height','26'),(27227,3661,'_dt_fancy_header_subtitle_text_transform','none'),(27228,3661,'_dt_fancy_header_subtitle_color_mode','color'),(27229,3661,'_dt_fancy_header_subtitle_color','#792c8a'),(27230,3661,'_dt_fancy_header_bg_heading',''),(27231,3661,'_dt_fancy_header_bg_color','#ffffff'),(27232,3661,'_dt_fancy_header_bg_image_origin','custom'),(27233,3661,'_dt_fancy_header_bg_image','a:1:{i:0;i:3896;}'),(27234,3661,'_dt_fancy_header_bg_repeat','no-repeat'),(20752,2622,'_dt_fancy_header_breadcrumbs_heading',''),(20741,3562,'_wpb_shortcodes_custom_css','.vc_custom_1692366072362{margin-top: 35px !important;padding-top: 65px !important;padding-bottom: 100px !important;}.vc_custom_1684836308288{margin-top: 15px !important;}.vc_custom_1693627699480{margin-top: 15px !important;}.vc_custom_1693625624233{margin-top: 15px !important;}.vc_custom_1693625068958{margin-top: 15px !important;}.vc_custom_1692359205466{margin-top: 35px !important;}.vc_custom_1692359216075{margin-top: 35px !important;}.vc_custom_1692359231594{margin-top: 35px !important;}.vc_custom_1692359239274{margin-top: 35px !important;}.vc_custom_1692359246626{margin-top: 35px !important;}.vc_custom_1692422601938{margin-top: 35px !important;}.vc_custom_1692359258634{margin-top: 35px !important;}.vc_custom_1691995519863{background-color: #f4ab20 !important;border: 1px solid #f4ab20 !important;border-radius: 35px !important;}.vc_custom_1691995661095{background-color: #722f8b !important;border: 1px solid #722f8b !important;border-radius: 35px !important;}.vc_custom_1691995661095{background-color: #722f8b !important;border: 1px solid #722f8b !important;border-radius: 35px !important;}.vc_custom_1691995519863{background-color: #f4ab20 !important;border: 1px solid #f4ab20 !important;border-radius: 35px !important;}.vc_custom_1691996718116{border-radius: 35px !important;}.vc_custom_1691995519863{background-color: #f4ab20 !important;border: 1px solid #f4ab20 !important;border-radius: 35px !important;}.vc_custom_1692278922309{border-top-width: 1px !important;border-right-width: 1px !important;border-bottom-width: 1px !important;border-left-width: 1px !important;border-left-color: #059444 !important;border-left-style: solid !important;border-right-color: #059444 !important;border-right-style: solid !important;border-top-color: #059444 !important;border-top-style: solid !important;border-bottom-color: #059444 !important;border-bottom-style: solid !important;border-radius: 1px !important;}.vc_custom_1692278929158{border-top-width: 1px !important;border-right-width: 1px !important;border-bottom-width: 1px !important;border-left-width: 1px !important;border-left-color: #059444 !important;border-left-style: solid !important;border-right-color: #059444 !important;border-right-style: solid !important;border-top-color: #059444 !important;border-top-style: solid !important;border-bottom-color: #059444 !important;border-bottom-style: solid !important;border-radius: 1px !important;}.vc_custom_1692278936750{border-top-width: 1px !important;border-right-width: 1px !important;border-bottom-width: 1px !important;border-left-width: 1px !important;border-left-color: #059444 !important;border-left-style: solid !important;border-right-color: #059444 !important;border-right-style: solid !important;border-top-color: #059444 !important;border-top-style: solid !important;border-bottom-color: #059444 !important;border-bottom-style: solid !important;border-radius: 1px !important;}.vc_custom_1692278922309{border-top-width: 1px !important;border-right-width: 1px !important;border-bottom-width: 1px !important;border-left-width: 1px !important;border-left-color: #059444 !important;border-left-style: solid !important;border-right-color: #059444 !important;border-right-style: solid !important;border-top-color: #059444 !important;border-top-style: solid !important;border-bottom-color: #059444 !important;border-bottom-style: solid !important;border-radius: 1px !important;}.vc_custom_1692278929158{border-top-width: 1px !important;border-right-width: 1px !important;border-bottom-width: 1px !important;border-left-width: 1px !important;border-left-color: #059444 !important;border-left-style: solid !important;border-right-color: #059444 !important;border-right-style: solid !important;border-top-color: #059444 !important;border-top-style: solid !important;border-bottom-color: #059444 !important;border-bottom-style: solid !important;border-radius: 1px !important;}'),(17896,3432,'_dt_header_background','normal'),(27235,3661,'_dt_fancy_header_bg_position_x','center'),(27236,3661,'_dt_fancy_header_bg_position_y','center'),(27237,3661,'_dt_fancy_header_bg_fullscreen','0'),(27238,3661,'_dt_fancy_header_bg_overlay','0'),(27239,3661,'_dt_fancy_header_overlay_color','#000'),(27240,3661,'_dt_fancy_header_bg_overlay_opacity','50'),(27241,3661,'_dt_fancy_header_scroll_effect','default'),(27242,3661,'_dt_fancy_header_bg_parallax','0.5'),(27243,3661,'_dt_fancy_header_responsiveness_heading',''),(27244,3661,'_dt_fancy_header_responsiveness','enabled'),(27245,3661,'_dt_fancy_header_responsiveness_switch','778px'),(27246,3661,'_dt_fancy_header_responsive_height','140'),(27247,3661,'_dt_fancy_header_responsive_font_size','30'),(27248,3661,'_dt_fancy_header_responsive_title_line_height','38'),(27249,3661,'_dt_fancy_header_responsive_subtitle_font_size','20'),(27250,3661,'_dt_fancy_header_responsive_subtitle_line_height','28'),(27251,3661,'_dt_fancy_header_responsive_breadcrumbs','disabled'),(27252,3661,'the7_fancy_title_css','#main {\n  padding-top: 1%;\n}\n.fancy-header {\n  background-image: url(\'https://farmchemie.yasithawd.com/wp-content/uploads/2023/09/CEVAC-TRANSMUNE_300px-1.png\');\n  background-repeat: no-repeat;\n  background-position: center center;\n  background-size: auto auto;\n  background-color: #ffffff;\n}\n.mobile-false .fancy-header {\n  background-attachment: scroll;\n}\n.fancy-header .wf-wrap {\n  min-height: 140px;\n  padding-top: 0px;\n  padding-bottom: 0px;\n}\n.fancy-header .fancy-title {\n  font-size: 32px;\n  line-height: 36px;\n  color: #079547;\n  text-transform: none;\n}\n.fancy-header .fancy-subtitle {\n  font-size: 24px;\n  line-height: 26px;\n  color: #792c8a;\n  text-transform: none;\n}\n.fancy-header .breadcrumbs {\n  color: #ffffff;\n}\n.fancy-header-overlay {\n  background: rgba(0,0,0,0.5);\n}\n@media screen and (max-width: 778px) {\n  .fancy-header .wf-wrap {\n    min-height: 140px;\n  }\n  .fancy-header .fancy-title {\n    font-size: 30px;\n    line-height: 38px;\n  }\n  .fancy-header .fancy-subtitle {\n    font-size: 20px;\n    line-height: 28px;\n  }\n  .fancy-header.breadcrumbs-mobile-off .breadcrumbs {\n    display: none;\n  }\n  #fancy-header > .wf-wrap {\n    flex-flow: column wrap;\n    align-items: center;\n    justify-content: center;\n    padding-bottom: 0px !important;\n  }\n  .fancy-header.title-left .breadcrumbs {\n    text-align: center;\n    float: none;\n  }\n  .breadcrumbs {\n    margin-bottom: 10px;\n  }\n  .breadcrumbs.breadcrumbs-bg {\n    margin-top: 10px;\n  }\n  .fancy-header.title-right .breadcrumbs {\n    margin: 10px 0 10px 0;\n  }\n  #fancy-header .hgroup,\n  #fancy-header .breadcrumbs {\n    text-align: center;\n  }\n  .fancy-header .hgroup {\n    padding-bottom: 5px;\n  }\n  .breadcrumbs-off .hgroup {\n    padding-bottom: 5px;\n  }\n  .title-right .hgroup {\n    padding: 0 0 5px 0;\n  }\n  .title-right.breadcrumbs-off .hgroup {\n    padding-top: 5px;\n  }\n  .title-left.disabled-bg .breadcrumbs {\n    margin-bottom: 0;\n  }\n}\n'),(17895,3432,'_dt_header_title','fancy'),(17894,3432,'_dt_footer_hide_on_mobile','0'),(17893,3432,'_dt_footer_widgetarea_id','sidebar_2'),(17892,3432,'_dt_footer_show','1'),(17891,3432,'_dt_sidebar_hide_on_mobile','0'),(17890,3432,'_dt_sidebar_widgetarea_id','sidebar_1'),(17889,3432,'_dt_sidebar_position','disabled'),(17888,3432,'_product_version','8.0.2'),(17887,3432,'_wc_review_count','0'),(17886,3432,'_wc_average_rating','0'),(17885,3432,'_stock_status','instock'),(17884,3432,'_stock',NULL),(17992,3433,'_dt_header_transparent_top_bar_bg_opacity','25'),(17882,3432,'_download_expiry','-1'),(17881,3432,'_download_limit','-1'),(17880,3432,'_downloadable','no'),(17879,3432,'_virtual','no'),(17878,3432,'_sold_individually','no'),(17877,3432,'_backorders','no'),(17876,3432,'_manage_stock','no'),(17875,3432,'_tax_class',''),(17874,3432,'_tax_status','taxable'),(17873,3432,'total_sales','0'),(17867,3429,'_wpb_shortcodes_custom_css_updated','1'),(17864,3428,'_wpb_shortcodes_custom_css_updated','1'),(17963,3432,'the7_fancy_title_css','#main {\n  padding-top: 1%;\n}\n.fancy-header {\n  background-image: url(\'https://farmchemie.yasithawd.com/wp-content/uploads/2023/09/Ganadexil-Enrofloxacina_-300px.png\');\n  background-repeat: no-repeat;\n  background-position: center center;\n  background-size: auto auto;\n  background-color: #ffffff;\n}\n.mobile-false .fancy-header {\n  background-attachment: scroll;\n}\n.fancy-header .wf-wrap {\n  min-height: 140px;\n  padding-top: 0px;\n  padding-bottom: 0px;\n}\n.fancy-header .fancy-title {\n  font-size: 32px;\n  line-height: 36px;\n  color: #079547;\n  text-transform: none;\n}\n.fancy-header .fancy-subtitle {\n  font-size: 24px;\n  line-height: 26px;\n  color: #792c8a;\n  text-transform: none;\n}\n.fancy-header .breadcrumbs {\n  color: #ffffff;\n}\n.fancy-header-overlay {\n  background: rgba(0,0,0,0.5);\n}\n@media screen and (max-width: 778px) {\n  .fancy-header .wf-wrap {\n    min-height: 140px;\n  }\n  .fancy-header .fancy-title {\n    font-size: 30px;\n    line-height: 38px;\n  }\n  .fancy-header .fancy-subtitle {\n    font-size: 20px;\n    line-height: 28px;\n  }\n  .fancy-header.breadcrumbs-mobile-off .breadcrumbs {\n    display: none;\n  }\n  #fancy-header > .wf-wrap {\n    flex-flow: column wrap;\n    align-items: center;\n    justify-content: center;\n    padding-bottom: 0px !important;\n  }\n  .fancy-header.title-left .breadcrumbs {\n    text-align: center;\n    float: none;\n  }\n  .breadcrumbs {\n    margin-bottom: 10px;\n  }\n  .breadcrumbs.breadcrumbs-bg {\n    margin-top: 10px;\n  }\n  .fancy-header.title-right .breadcrumbs {\n    margin: 10px 0 10px 0;\n  }\n  #fancy-header .hgroup,\n  #fancy-header .breadcrumbs {\n    text-align: center;\n  }\n  .fancy-header .hgroup {\n    padding-bottom: 5px;\n  }\n  .breadcrumbs-off .hgroup {\n    padding-bottom: 5px;\n  }\n  .title-right .hgroup {\n    padding: 0 0 5px 0;\n  }\n  .title-right.breadcrumbs-off .hgroup {\n    padding-top: 5px;\n  }\n  .title-left.disabled-bg .breadcrumbs {\n    margin-bottom: 0;\n  }\n}\n'),(17962,3432,'_dt_fancy_header_responsive_breadcrumbs','disabled'),(17961,3432,'_dt_fancy_header_responsive_subtitle_line_height','28'),(17960,3432,'_dt_fancy_header_responsive_subtitle_font_size','20'),(17959,3432,'_dt_fancy_header_responsive_title_line_height','38'),(17958,3432,'_dt_fancy_header_responsive_font_size','30'),(17957,3432,'_dt_fancy_header_responsive_height','140'),(17956,3432,'_dt_fancy_header_responsiveness_switch','778px'),(17955,3432,'_dt_fancy_header_responsiveness','enabled'),(17954,3432,'_dt_fancy_header_responsiveness_heading',''),(17953,3432,'_dt_fancy_header_bg_parallax','0.5'),(17952,3432,'_dt_fancy_header_scroll_effect','default'),(17951,3432,'_dt_fancy_header_bg_overlay_opacity','50'),(17950,3432,'_dt_fancy_header_overlay_color','#000'),(17949,3432,'_dt_fancy_header_bg_overlay','0'),(17948,3432,'_dt_fancy_header_bg_fullscreen','0'),(17946,3432,'_dt_fancy_header_bg_position_x','center'),(17947,3432,'_dt_fancy_header_bg_position_y','center'),(17945,3432,'_dt_fancy_header_bg_repeat','no-repeat'),(17944,3432,'_dt_fancy_header_bg_image','a:1:{i:0;i:3739;}'),(17943,3432,'_dt_fancy_header_bg_image_origin','custom'),(17942,3432,'_dt_fancy_header_bg_color','#ffffff'),(17941,3432,'_dt_fancy_header_bg_heading',''),(17940,3432,'_dt_fancy_header_subtitle_color','#792c8a'),(17939,3432,'_dt_fancy_header_subtitle_color_mode','color'),(17938,3432,'_dt_fancy_header_subtitle_text_transform','none'),(17937,3432,'_dt_fancy_header_subtitle_line_height','26'),(17936,3432,'_dt_fancy_header_subtitle_font_size','24'),(17935,3432,'_dt_fancy_header_subtitle',''),(17934,3432,'_dt_fancy_header_subtitle_heading',''),(17933,3432,'_dt_fancy_header_title_color','#079547'),(17932,3432,'_dt_fancy_header_title_color_mode','color'),(17931,3432,'_dt_fancy_header_text_transform','none'),(17930,3432,'_dt_fancy_header_title_line_height','36'),(17929,3432,'_dt_fancy_header_title_font_size','32'),(17928,3432,'_dt_fancy_header_title',''),(17927,3432,'_dt_fancy_header_title_mode','custom'),(17926,3432,'_dt_fancy_header_title_heading',''),(17925,3432,'_dt_fancy_header_breadcrumbs_bg_color','disabled'),(17924,3432,'_dt_fancy_header_breadcrumbs_text_color','#ffffff'),(17900,3432,'_dt_header_transparent_top_bar_bg_opacity','25'),(17901,3432,'_dt_header_transparent_bg_color','#000000'),(17902,3432,'_dt_header_transparent_bg_opacity','50'),(17903,3432,'_dt_header_disabled_background','normal'),(17904,3432,'_dt_header_disabled_transparent_bg_color_scheme','light'),(17905,3432,'_dt_header_disabled_transparent_top_bar_bg_color','#ffffff'),(17906,3432,'_dt_header_disabled_transparent_top_bar_bg_opacity','25'),(17907,3432,'_dt_header_disabled_transparent_bg_color','#000000'),(17908,3432,'_dt_header_disabled_transparent_bg_opacity','50'),(17909,3432,'_dt_page_overrides_top_margin','1%'),(17910,3432,'_dt_page_overrides_right_margin',''),(17911,3432,'_dt_page_overrides_bottom_margin',''),(17912,3432,'_dt_page_overrides_left_margin',''),(17913,3432,'_dt_mobile_page_padding_top',''),(17914,3432,'_dt_mobile_page_padding_right',''),(17915,3432,'_dt_mobile_page_padding_bottom',''),(17916,3432,'_dt_mobile_page_padding_left',''),(17917,3432,'_dt_fancy_header_layout_heading',''),(17918,3432,'_dt_fancy_header_title_aligment','all_left'),(17919,3432,'_dt_fancy_header_height','140'),(17920,3432,'_dt_fancy_header_padding-top','0px'),(17921,3432,'_dt_fancy_header_padding-bottom','0px'),(17922,3432,'_dt_fancy_header_breadcrumbs_heading',''),(17923,3432,'_dt_fancy_header_breadcrumbs','disabled'),(17899,3432,'_dt_header_transparent_top_bar_bg_color','#ffffff'),(18053,3433,'_dt_fancy_header_responsive_subtitle_line_height','28'),(18052,3433,'_dt_fancy_header_responsive_subtitle_font_size','20'),(18051,3433,'_dt_fancy_header_responsive_title_line_height','38'),(18050,3433,'_dt_fancy_header_responsive_font_size','30'),(18049,3433,'_dt_fancy_header_responsive_height','140'),(18048,3433,'_dt_fancy_header_responsiveness_switch','778px'),(18047,3433,'_dt_fancy_header_responsiveness','enabled'),(18046,3433,'_dt_fancy_header_responsiveness_heading',''),(18045,3433,'_dt_fancy_header_bg_parallax','0.5'),(18044,3433,'_dt_fancy_header_scroll_effect','default'),(18043,3433,'_dt_fancy_header_bg_overlay_opacity','50'),(18042,3433,'_dt_fancy_header_overlay_color','#000'),(18041,3433,'_dt_fancy_header_bg_overlay','0'),(18040,3433,'_dt_fancy_header_bg_fullscreen','0'),(18039,3433,'_dt_fancy_header_bg_position_y','center'),(18038,3433,'_dt_fancy_header_bg_position_x','center'),(18037,3433,'_dt_fancy_header_bg_repeat','no-repeat'),(18036,3433,'_dt_fancy_header_bg_image','a:1:{i:0;i:3730;}'),(18035,3433,'_dt_fancy_header_bg_image_origin','custom'),(18034,3433,'_dt_fancy_header_bg_color','#ffffff'),(18033,3433,'_dt_fancy_header_bg_heading',''),(18032,3433,'_dt_fancy_header_subtitle_color','#792c8a'),(18031,3433,'_dt_fancy_header_subtitle_color_mode','color'),(18030,3433,'_dt_fancy_header_subtitle_text_transform','none'),(18029,3433,'_dt_fancy_header_subtitle_line_height','26'),(18028,3433,'_dt_fancy_header_subtitle_font_size','24'),(18027,3433,'_dt_fancy_header_subtitle',''),(18026,3433,'_dt_fancy_header_subtitle_heading',''),(18025,3433,'_dt_fancy_header_title_color','#079547'),(18024,3433,'_dt_fancy_header_title_color_mode','color'),(18023,3433,'_dt_fancy_header_text_transform','none'),(18022,3433,'_dt_fancy_header_title_line_height','36'),(18021,3433,'_dt_fancy_header_title_font_size','32'),(18020,3433,'_dt_fancy_header_title',''),(18019,3433,'_dt_fancy_header_title_mode','custom'),(18018,3433,'_dt_fancy_header_title_heading',''),(18017,3433,'_dt_fancy_header_breadcrumbs_bg_color','disabled'),(18016,3433,'_dt_fancy_header_breadcrumbs_text_color','#ffffff'),(18015,3433,'_dt_fancy_header_breadcrumbs','disabled'),(18014,3433,'_dt_fancy_header_breadcrumbs_heading',''),(18013,3433,'_dt_fancy_header_padding-bottom','0px'),(18012,3433,'_dt_fancy_header_padding-top','0px'),(18011,3433,'_dt_fancy_header_height','140'),(18010,3433,'_dt_fancy_header_title_aligment','all_left'),(18009,3433,'_dt_fancy_header_layout_heading',''),(18008,3433,'_dt_mobile_page_padding_left',''),(18007,3433,'_dt_mobile_page_padding_bottom',''),(18006,3433,'_dt_mobile_page_padding_right',''),(18005,3433,'_dt_mobile_page_padding_top',''),(18004,3433,'_dt_page_overrides_left_margin',''),(18003,3433,'_dt_page_overrides_bottom_margin',''),(18002,3433,'_dt_page_overrides_right_margin',''),(18001,3433,'_dt_page_overrides_top_margin','1%'),(18000,3433,'_dt_header_disabled_transparent_bg_opacity','50'),(17999,3433,'_dt_header_disabled_transparent_bg_color','#000000'),(17998,3433,'_dt_header_disabled_transparent_top_bar_bg_opacity','25'),(17997,3433,'_dt_header_disabled_transparent_top_bar_bg_color','#ffffff'),(17996,3433,'_dt_header_disabled_transparent_bg_color_scheme','light'),(17995,3433,'_dt_header_disabled_background','normal'),(17994,3433,'_dt_header_transparent_bg_opacity','50'),(17993,3433,'_dt_header_transparent_bg_color','#000000'),(17991,3433,'_dt_header_transparent_top_bar_bg_color','#ffffff'),(17964,3432,'_edit_lock','1695515208:2'),(17965,3432,'_edit_last','2'),(17966,3433,'total_sales','0'),(17967,3433,'_tax_status','taxable'),(17968,3433,'_tax_class',''),(17969,3433,'_manage_stock','no'),(17970,3433,'_backorders','no'),(17971,3433,'_sold_individually','no'),(17972,3433,'_virtual','no'),(17973,3433,'_downloadable','no'),(17974,3433,'_download_limit','-1'),(17975,3433,'_download_expiry','-1'),(17976,3433,'_stock',NULL),(17977,3433,'_stock_status','instock'),(17978,3433,'_wc_average_rating','0'),(17979,3433,'_wc_review_count','0'),(17980,3433,'_product_version','8.0.2'),(17981,3433,'_dt_sidebar_position','disabled'),(17982,3433,'_dt_sidebar_widgetarea_id','sidebar_1'),(17983,3433,'_dt_sidebar_hide_on_mobile','0'),(17984,3433,'_dt_footer_show','1'),(17985,3433,'_dt_footer_widgetarea_id','sidebar_2'),(17986,3433,'_dt_footer_hide_on_mobile','0'),(17987,3433,'_dt_header_title','fancy'),(17988,3433,'_dt_header_background','normal'),(17989,3433,'_dt_header_background_below_slideshow','disabled'),(17990,3433,'_dt_header_transparent_bg_color_scheme','light'),(18127,3434,'_dt_fancy_header_bg_image_origin','custom'),(18126,3434,'_dt_fancy_header_bg_color','#ffffff'),(18125,3434,'_dt_fancy_header_bg_heading',''),(18124,3434,'_dt_fancy_header_subtitle_color','#792c8a'),(18123,3434,'_dt_fancy_header_subtitle_color_mode','color'),(18122,3434,'_dt_fancy_header_subtitle_text_transform','none'),(18121,3434,'_dt_fancy_header_subtitle_line_height','26'),(18120,3434,'_dt_fancy_header_subtitle_font_size','24'),(18119,3434,'_dt_fancy_header_subtitle',''),(18118,3434,'_dt_fancy_header_subtitle_heading',''),(18117,3434,'_dt_fancy_header_title_color','#079547'),(18116,3434,'_dt_fancy_header_title_color_mode','color'),(18115,3434,'_dt_fancy_header_text_transform','none'),(18114,3434,'_dt_fancy_header_title_line_height','36'),(18113,3434,'_dt_fancy_header_title_font_size','32'),(18112,3434,'_dt_fancy_header_title',''),(18111,3434,'_dt_fancy_header_title_mode','custom'),(18110,3434,'_dt_fancy_header_title_heading',''),(18109,3434,'_dt_fancy_header_breadcrumbs_bg_color','disabled'),(18108,3434,'_dt_fancy_header_breadcrumbs_text_color','#ffffff'),(18107,3434,'_dt_fancy_header_breadcrumbs','disabled'),(18106,3434,'_dt_fancy_header_breadcrumbs_heading',''),(18105,3434,'_dt_fancy_header_padding-bottom','0px'),(18104,3434,'_dt_fancy_header_padding-top','0px'),(18103,3434,'_dt_fancy_header_height','140'),(18102,3434,'_dt_fancy_header_title_aligment','all_left'),(18101,3434,'_dt_fancy_header_layout_heading',''),(18100,3434,'_dt_mobile_page_padding_left',''),(18099,3434,'_dt_mobile_page_padding_bottom',''),(18098,3434,'_dt_mobile_page_padding_right',''),(18097,3434,'_dt_mobile_page_padding_top',''),(18096,3434,'_dt_page_overrides_left_margin',''),(18095,3434,'_dt_page_overrides_bottom_margin',''),(18094,3434,'_dt_page_overrides_right_margin',''),(18093,3434,'_dt_page_overrides_top_margin','1%'),(18092,3434,'_dt_header_disabled_transparent_bg_opacity','50'),(18091,3434,'_dt_header_disabled_transparent_bg_color','#000000'),(18090,3434,'_dt_header_disabled_transparent_top_bar_bg_opacity','25'),(18089,3434,'_dt_header_disabled_transparent_top_bar_bg_color','#ffffff'),(18088,3434,'_dt_header_disabled_transparent_bg_color_scheme','light'),(18087,3434,'_dt_header_disabled_background','normal'),(18086,3434,'_dt_header_transparent_bg_opacity','50'),(18085,3434,'_dt_header_transparent_bg_color','#000000'),(18084,3434,'_dt_header_transparent_top_bar_bg_opacity','25'),(18083,3434,'_dt_header_transparent_top_bar_bg_color','#ffffff'),(18082,3434,'_dt_header_transparent_bg_color_scheme','light'),(18081,3434,'_dt_header_background_below_slideshow','disabled'),(18080,3434,'_dt_header_background','normal'),(18079,3434,'_dt_header_title','fancy'),(18078,3434,'_dt_footer_hide_on_mobile','0'),(18077,3434,'_dt_footer_widgetarea_id','sidebar_2'),(18076,3434,'_dt_footer_show','1'),(18075,3434,'_dt_sidebar_hide_on_mobile','0'),(18074,3434,'_dt_sidebar_widgetarea_id','sidebar_1'),(18073,3434,'_dt_sidebar_position','disabled'),(18072,3434,'_product_version','8.0.2'),(18071,3434,'_wc_review_count','0'),(18070,3434,'_wc_average_rating','0'),(18069,3434,'_stock_status','instock'),(18068,3434,'_stock',NULL),(18067,3434,'_download_expiry','-1'),(18066,3434,'_download_limit','-1'),(18065,3434,'_downloadable','no'),(18064,3434,'_virtual','no'),(18063,3434,'_sold_individually','no'),(18062,3434,'_backorders','no'),(18061,3434,'_manage_stock','no'),(18060,3434,'_tax_class',''),(18056,3433,'_edit_lock','1695519493:2'),(18057,3433,'_edit_last','2'),(18058,3434,'total_sales','0'),(18059,3434,'_tax_status','taxable'),(5578,2723,'_wp_attached_file','2023/05/CALFO-20.png'),(5579,2723,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:600;s:6:\"height\";i:600;s:4:\"file\";s:20:\"2023/05/CALFO-20.png\";s:8:\"filesize\";i:225356;s:5:\"sizes\";a:6:{s:6:\"medium\";a:5:{s:4:\"file\";s:20:\"CALFO-20-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:61467;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:20:\"CALFO-20-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:20055;}s:21:\"woocommerce_thumbnail\";a:6:{s:4:\"file\";s:20:\"CALFO-20-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:61467;s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:5:{s:4:\"file\";s:20:\"CALFO-20-200x200.png\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:31405;}s:12:\"shop_catalog\";a:5:{s:4:\"file\";s:20:\"CALFO-20-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:61467;}s:14:\"shop_thumbnail\";a:5:{s:4:\"file\";s:20:\"CALFO-20-200x200.png\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:31405;}}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:{}}}'),(5580,2724,'_wp_attached_file','2023/05/CALFO-20-P.png'),(5581,2724,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:600;s:6:\"height\";i:600;s:4:\"file\";s:22:\"2023/05/CALFO-20-P.png\";s:8:\"filesize\";i:350763;s:5:\"sizes\";a:6:{s:6:\"medium\";a:5:{s:4:\"file\";s:22:\"CALFO-20-P-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:83162;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:22:\"CALFO-20-P-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:23484;}s:21:\"woocommerce_thumbnail\";a:6:{s:4:\"file\";s:22:\"CALFO-20-P-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:83162;s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:5:{s:4:\"file\";s:22:\"CALFO-20-P-200x200.png\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:39757;}s:12:\"shop_catalog\";a:5:{s:4:\"file\";s:22:\"CALFO-20-P-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:83162;}s:14:\"shop_thumbnail\";a:5:{s:4:\"file\";s:22:\"CALFO-20-P-200x200.png\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:39757;}}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:{}}}'),(18195,3435,'_dt_fancy_header_height','140'),(18055,3433,'the7_fancy_title_css','#main {\n  padding-top: 1%;\n}\n.fancy-header {\n  background-image: url(\'https://farmchemie.yasithawd.com/wp-content/uploads/2023/09/Imidocarb-LH_300px.png\');\n  background-repeat: no-repeat;\n  background-position: center center;\n  background-size: auto auto;\n  background-color: #ffffff;\n}\n.mobile-false .fancy-header {\n  background-attachment: scroll;\n}\n.fancy-header .wf-wrap {\n  min-height: 140px;\n  padding-top: 0px;\n  padding-bottom: 0px;\n}\n.fancy-header .fancy-title {\n  font-size: 32px;\n  line-height: 36px;\n  color: #079547;\n  text-transform: none;\n}\n.fancy-header .fancy-subtitle {\n  font-size: 24px;\n  line-height: 26px;\n  color: #792c8a;\n  text-transform: none;\n}\n.fancy-header .breadcrumbs {\n  color: #ffffff;\n}\n.fancy-header-overlay {\n  background: rgba(0,0,0,0.5);\n}\n@media screen and (max-width: 778px) {\n  .fancy-header .wf-wrap {\n    min-height: 140px;\n  }\n  .fancy-header .fancy-title {\n    font-size: 30px;\n    line-height: 38px;\n  }\n  .fancy-header .fancy-subtitle {\n    font-size: 20px;\n    line-height: 28px;\n  }\n  .fancy-header.breadcrumbs-mobile-off .breadcrumbs {\n    display: none;\n  }\n  #fancy-header > .wf-wrap {\n    flex-flow: column wrap;\n    align-items: center;\n    justify-content: center;\n    padding-bottom: 0px !important;\n  }\n  .fancy-header.title-left .breadcrumbs {\n    text-align: center;\n    float: none;\n  }\n  .breadcrumbs {\n    margin-bottom: 10px;\n  }\n  .breadcrumbs.breadcrumbs-bg {\n    margin-top: 10px;\n  }\n  .fancy-header.title-right .breadcrumbs {\n    margin: 10px 0 10px 0;\n  }\n  #fancy-header .hgroup,\n  #fancy-header .breadcrumbs {\n    text-align: center;\n  }\n  .fancy-header .hgroup {\n    padding-bottom: 5px;\n  }\n  .breadcrumbs-off .hgroup {\n    padding-bottom: 5px;\n  }\n  .title-right .hgroup {\n    padding: 0 0 5px 0;\n  }\n  .title-right.breadcrumbs-off .hgroup {\n    padding-top: 5px;\n  }\n  .title-left.disabled-bg .breadcrumbs {\n    margin-bottom: 0;\n  }\n}\n'),(18194,3435,'_dt_fancy_header_title_aligment','all_left'),(18193,3435,'_dt_fancy_header_layout_heading',''),(18192,3435,'_dt_mobile_page_padding_left',''),(18191,3435,'_dt_mobile_page_padding_bottom',''),(18190,3435,'_dt_mobile_page_padding_right',''),(18189,3435,'_dt_mobile_page_padding_top',''),(18188,3435,'_dt_page_overrides_left_margin',''),(18187,3435,'_dt_page_overrides_bottom_margin',''),(18186,3435,'_dt_page_overrides_right_margin',''),(18185,3435,'_dt_page_overrides_top_margin','1%'),(18184,3435,'_dt_header_disabled_transparent_bg_opacity','50'),(18183,3435,'_dt_header_disabled_transparent_bg_color','#000000'),(18182,3435,'_dt_header_disabled_transparent_top_bar_bg_opacity','25'),(18181,3435,'_dt_header_disabled_transparent_top_bar_bg_color','#ffffff'),(18180,3435,'_dt_header_disabled_transparent_bg_color_scheme','light'),(18179,3435,'_dt_header_disabled_background','normal'),(18178,3435,'_dt_header_transparent_bg_opacity','50'),(18177,3435,'_dt_header_transparent_bg_color','#000000'),(18176,3435,'_dt_header_transparent_top_bar_bg_opacity','25'),(18175,3435,'_dt_header_transparent_top_bar_bg_color','#ffffff'),(18174,3435,'_dt_header_transparent_bg_color_scheme','light'),(18173,3435,'_dt_header_background_below_slideshow','disabled'),(18172,3435,'_dt_header_background','normal'),(18171,3435,'_dt_header_title','fancy'),(18170,3435,'_dt_footer_hide_on_mobile','0'),(18169,3435,'_dt_footer_widgetarea_id','sidebar_2'),(18168,3435,'_dt_footer_show','1'),(18167,3435,'_dt_sidebar_hide_on_mobile','0'),(18166,3435,'_dt_sidebar_widgetarea_id','sidebar_1'),(18165,3435,'_dt_sidebar_position','disabled'),(18164,3435,'_product_version','8.0.2'),(18163,3435,'_wc_review_count','0'),(18162,3435,'_wc_average_rating','0'),(18161,3435,'_stock_status','instock'),(18160,3435,'_stock',NULL),(18159,3435,'_download_expiry','-1'),(18158,3435,'_download_limit','-1'),(18157,3435,'_downloadable','no'),(18156,3435,'_virtual','no'),(18155,3435,'_sold_individually','no'),(18154,3435,'_backorders','no'),(18153,3435,'_manage_stock','no'),(18149,3434,'_edit_last','1'),(18150,3435,'total_sales','0'),(18151,3435,'_tax_status','taxable'),(18152,3435,'_tax_class',''),(18148,3434,'_edit_lock','1694835685:1'),(18130,3434,'_dt_fancy_header_bg_position_x','center'),(18131,3434,'_dt_fancy_header_bg_position_y','center'),(18132,3434,'_dt_fancy_header_bg_fullscreen','0'),(18133,3434,'_dt_fancy_header_bg_overlay','0'),(18134,3434,'_dt_fancy_header_overlay_color','#000'),(18135,3434,'_dt_fancy_header_bg_overlay_opacity','50'),(18136,3434,'_dt_fancy_header_scroll_effect','default'),(18137,3434,'_dt_fancy_header_bg_parallax','0.5'),(18138,3434,'_dt_fancy_header_responsiveness_heading',''),(18139,3434,'_dt_fancy_header_responsiveness','enabled'),(18140,3434,'_dt_fancy_header_responsiveness_switch','778px'),(18141,3434,'_dt_fancy_header_responsive_height','140'),(18142,3434,'_dt_fancy_header_responsive_font_size','30'),(18143,3434,'_dt_fancy_header_responsive_title_line_height','38'),(18144,3434,'_dt_fancy_header_responsive_subtitle_font_size','20'),(18145,3434,'_dt_fancy_header_responsive_subtitle_line_height','28'),(18146,3434,'_dt_fancy_header_responsive_breadcrumbs','disabled'),(18147,3434,'the7_fancy_title_css','#main {\n  padding-top: 1%;\n}\n.fancy-header {\n  background-image: url(\'https://farmchemie.yasithawd.com/wp-content/uploads/2023/09/Invemox-15-LA_300px.png\');\n  background-repeat: no-repeat;\n  background-position: center center;\n  background-size: auto auto;\n  background-color: #ffffff;\n}\n.mobile-false .fancy-header {\n  background-attachment: scroll;\n}\n.fancy-header .wf-wrap {\n  min-height: 140px;\n  padding-top: 0px;\n  padding-bottom: 0px;\n}\n.fancy-header .fancy-title {\n  font-size: 32px;\n  line-height: 36px;\n  color: #079547;\n  text-transform: none;\n}\n.fancy-header .fancy-subtitle {\n  font-size: 24px;\n  line-height: 26px;\n  color: #792c8a;\n  text-transform: none;\n}\n.fancy-header .breadcrumbs {\n  color: #ffffff;\n}\n.fancy-header-overlay {\n  background: rgba(0,0,0,0.5);\n}\n@media screen and (max-width: 778px) {\n  .fancy-header .wf-wrap {\n    min-height: 140px;\n  }\n  .fancy-header .fancy-title {\n    font-size: 30px;\n    line-height: 38px;\n  }\n  .fancy-header .fancy-subtitle {\n    font-size: 20px;\n    line-height: 28px;\n  }\n  .fancy-header.breadcrumbs-mobile-off .breadcrumbs {\n    display: none;\n  }\n  #fancy-header > .wf-wrap {\n    flex-flow: column wrap;\n    align-items: center;\n    justify-content: center;\n    padding-bottom: 0px !important;\n  }\n  .fancy-header.title-left .breadcrumbs {\n    text-align: center;\n    float: none;\n  }\n  .breadcrumbs {\n    margin-bottom: 10px;\n  }\n  .breadcrumbs.breadcrumbs-bg {\n    margin-top: 10px;\n  }\n  .fancy-header.title-right .breadcrumbs {\n    margin: 10px 0 10px 0;\n  }\n  #fancy-header .hgroup,\n  #fancy-header .breadcrumbs {\n    text-align: center;\n  }\n  .fancy-header .hgroup {\n    padding-bottom: 5px;\n  }\n  .breadcrumbs-off .hgroup {\n    padding-bottom: 5px;\n  }\n  .title-right .hgroup {\n    padding: 0 0 5px 0;\n  }\n  .title-right.breadcrumbs-off .hgroup {\n    padding-top: 5px;\n  }\n  .title-left.disabled-bg .breadcrumbs {\n    margin-bottom: 0;\n  }\n}\n'),(18129,3434,'_dt_fancy_header_bg_repeat','no-repeat'),(5677,2726,'_wp_attached_file','2023/05/ESTROGEST.png'),(5678,2726,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:600;s:6:\"height\";i:600;s:4:\"file\";s:21:\"2023/05/ESTROGEST.png\";s:8:\"filesize\";i:183436;s:5:\"sizes\";a:6:{s:6:\"medium\";a:5:{s:4:\"file\";s:21:\"ESTROGEST-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:54278;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:21:\"ESTROGEST-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:16590;}s:21:\"woocommerce_thumbnail\";a:6:{s:4:\"file\";s:21:\"ESTROGEST-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:54278;s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:5:{s:4:\"file\";s:21:\"ESTROGEST-200x200.png\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:27508;}s:12:\"shop_catalog\";a:5:{s:4:\"file\";s:21:\"ESTROGEST-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:54278;}s:14:\"shop_thumbnail\";a:5:{s:4:\"file\";s:21:\"ESTROGEST-200x200.png\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:27508;}}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:{}}}'),(18263,3436,'_dt_header_title','fancy'),(18262,3436,'_dt_footer_hide_on_mobile','0'),(18261,3436,'_dt_footer_widgetarea_id','sidebar_2'),(18260,3436,'_dt_footer_show','1'),(18259,3436,'_dt_sidebar_hide_on_mobile','0'),(18258,3436,'_dt_sidebar_widgetarea_id','sidebar_1'),(18257,3436,'_dt_sidebar_position','disabled'),(18256,3436,'_product_version','8.0.2'),(18255,3436,'_wc_review_count','0'),(18254,3436,'_wc_average_rating','0'),(18253,3436,'_stock_status','instock'),(18252,3436,'_stock',NULL),(18251,3436,'_download_expiry','-1'),(18250,3436,'_download_limit','-1'),(18249,3436,'_downloadable','no'),(18248,3436,'_virtual','no'),(18247,3436,'_sold_individually','no'),(18246,3436,'_backorders','no'),(18245,3436,'_manage_stock','no'),(18244,3436,'_tax_class',''),(18242,3436,'total_sales','0'),(18243,3436,'_tax_status','taxable'),(18241,3435,'_edit_last','1'),(18240,3435,'_edit_lock','1694835766:1'),(18239,3435,'the7_fancy_title_css','#main {\n  padding-top: 1%;\n}\n.fancy-header {\n  background-image: url(\'https://farmchemie.yasithawd.com/wp-content/uploads/2023/09/KETINK-100ml_300px.png\');\n  background-repeat: no-repeat;\n  background-position: center center;\n  background-size: auto auto;\n  background-color: #ffffff;\n}\n.mobile-false .fancy-header {\n  background-attachment: scroll;\n}\n.fancy-header .wf-wrap {\n  min-height: 140px;\n  padding-top: 0px;\n  padding-bottom: 0px;\n}\n.fancy-header .fancy-title {\n  font-size: 32px;\n  line-height: 36px;\n  color: #079547;\n  text-transform: none;\n}\n.fancy-header .fancy-subtitle {\n  font-size: 24px;\n  line-height: 26px;\n  color: #792c8a;\n  text-transform: none;\n}\n.fancy-header .breadcrumbs {\n  color: #ffffff;\n}\n.fancy-header-overlay {\n  background: rgba(0,0,0,0.5);\n}\n@media screen and (max-width: 778px) {\n  .fancy-header .wf-wrap {\n    min-height: 140px;\n  }\n  .fancy-header .fancy-title {\n    font-size: 30px;\n    line-height: 38px;\n  }\n  .fancy-header .fancy-subtitle {\n    font-size: 20px;\n    line-height: 28px;\n  }\n  .fancy-header.breadcrumbs-mobile-off .breadcrumbs {\n    display: none;\n  }\n  #fancy-header > .wf-wrap {\n    flex-flow: column wrap;\n    align-items: center;\n    justify-content: center;\n    padding-bottom: 0px !important;\n  }\n  .fancy-header.title-left .breadcrumbs {\n    text-align: center;\n    float: none;\n  }\n  .breadcrumbs {\n    margin-bottom: 10px;\n  }\n  .breadcrumbs.breadcrumbs-bg {\n    margin-top: 10px;\n  }\n  .fancy-header.title-right .breadcrumbs {\n    margin: 10px 0 10px 0;\n  }\n  #fancy-header .hgroup,\n  #fancy-header .breadcrumbs {\n    text-align: center;\n  }\n  .fancy-header .hgroup {\n    padding-bottom: 5px;\n  }\n  .breadcrumbs-off .hgroup {\n    padding-bottom: 5px;\n  }\n  .title-right .hgroup {\n    padding: 0 0 5px 0;\n  }\n  .title-right.breadcrumbs-off .hgroup {\n    padding-top: 5px;\n  }\n  .title-left.disabled-bg .breadcrumbs {\n    margin-bottom: 0;\n  }\n}\n'),(18238,3435,'_dt_fancy_header_responsive_breadcrumbs','disabled'),(18237,3435,'_dt_fancy_header_responsive_subtitle_line_height','28'),(18236,3435,'_dt_fancy_header_responsive_subtitle_font_size','20'),(18235,3435,'_dt_fancy_header_responsive_title_line_height','38'),(18234,3435,'_dt_fancy_header_responsive_font_size','30'),(18233,3435,'_dt_fancy_header_responsive_height','140'),(18232,3435,'_dt_fancy_header_responsiveness_switch','778px'),(18231,3435,'_dt_fancy_header_responsiveness','enabled'),(18230,3435,'_dt_fancy_header_responsiveness_heading',''),(18229,3435,'_dt_fancy_header_bg_parallax','0.5'),(18228,3435,'_dt_fancy_header_scroll_effect','default'),(18227,3435,'_dt_fancy_header_bg_overlay_opacity','50'),(18226,3435,'_dt_fancy_header_overlay_color','#000'),(18225,3435,'_dt_fancy_header_bg_overlay','0'),(18224,3435,'_dt_fancy_header_bg_fullscreen','0'),(18200,3435,'_dt_fancy_header_breadcrumbs_text_color','#ffffff'),(18201,3435,'_dt_fancy_header_breadcrumbs_bg_color','disabled'),(18202,3435,'_dt_fancy_header_title_heading',''),(18203,3435,'_dt_fancy_header_title_mode','custom'),(18204,3435,'_dt_fancy_header_title',''),(18205,3435,'_dt_fancy_header_title_font_size','32'),(18206,3435,'_dt_fancy_header_title_line_height','36'),(18207,3435,'_dt_fancy_header_text_transform','none'),(18208,3435,'_dt_fancy_header_title_color_mode','color'),(18209,3435,'_dt_fancy_header_title_color','#079547'),(18210,3435,'_dt_fancy_header_subtitle_heading',''),(18211,3435,'_dt_fancy_header_subtitle',''),(18212,3435,'_dt_fancy_header_subtitle_font_size','24'),(18213,3435,'_dt_fancy_header_subtitle_line_height','26'),(18214,3435,'_dt_fancy_header_subtitle_text_transform','none'),(18215,3435,'_dt_fancy_header_subtitle_color_mode','color'),(18216,3435,'_dt_fancy_header_subtitle_color','#792c8a'),(18217,3435,'_dt_fancy_header_bg_heading',''),(18218,3435,'_dt_fancy_header_bg_color','#ffffff'),(18219,3435,'_dt_fancy_header_bg_image_origin','custom'),(18220,3435,'_dt_fancy_header_bg_image','a:1:{i:0;i:3726;}'),(18221,3435,'_dt_fancy_header_bg_repeat','no-repeat'),(18222,3435,'_dt_fancy_header_bg_position_x','center'),(18223,3435,'_dt_fancy_header_bg_position_y','center'),(18199,3435,'_dt_fancy_header_breadcrumbs','disabled'),(5772,2728,'_wp_attached_file','2023/05/GARD.png'),(5773,2728,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:600;s:6:\"height\";i:600;s:4:\"file\";s:16:\"2023/05/GARD.png\";s:8:\"filesize\";i:242060;s:5:\"sizes\";a:6:{s:6:\"medium\";a:5:{s:4:\"file\";s:16:\"GARD-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:59170;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:16:\"GARD-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:17318;}s:21:\"woocommerce_thumbnail\";a:6:{s:4:\"file\";s:16:\"GARD-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:59170;s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:5:{s:4:\"file\";s:16:\"GARD-200x200.png\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:28270;}s:12:\"shop_catalog\";a:5:{s:4:\"file\";s:16:\"GARD-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:59170;}s:14:\"shop_thumbnail\";a:5:{s:4:\"file\";s:16:\"GARD-200x200.png\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:28270;}}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:{}}}'),(5774,2729,'_wp_attached_file','2023/05/GARD-L.png'),(5775,2729,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:600;s:6:\"height\";i:600;s:4:\"file\";s:18:\"2023/05/GARD-L.png\";s:8:\"filesize\";i:94526;s:5:\"sizes\";a:6:{s:6:\"medium\";a:5:{s:4:\"file\";s:18:\"GARD-L-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:24937;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:18:\"GARD-L-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:8019;}s:21:\"woocommerce_thumbnail\";a:6:{s:4:\"file\";s:18:\"GARD-L-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:24937;s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:5:{s:4:\"file\";s:18:\"GARD-L-200x200.png\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:12781;}s:12:\"shop_catalog\";a:5:{s:4:\"file\";s:18:\"GARD-L-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:24937;}s:14:\"shop_thumbnail\";a:5:{s:4:\"file\";s:18:\"GARD-L-200x200.png\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:12781;}}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:{}}}'),(18198,3435,'_dt_fancy_header_breadcrumbs_heading',''),(18313,3436,'_dt_fancy_header_bg_repeat','no-repeat'),(18331,3436,'the7_fancy_title_css','#main {\n  padding-top: 1%;\n}\n.fancy-header {\n  background-image: url(\'https://farmchemie.yasithawd.com/wp-content/uploads/2023/09/MAXUVOL_L_300px.png\');\n  background-repeat: no-repeat;\n  background-position: center center;\n  background-size: auto auto;\n  background-color: #ffffff;\n}\n.mobile-false .fancy-header {\n  background-attachment: scroll;\n}\n.fancy-header .wf-wrap {\n  min-height: 140px;\n  padding-top: 0px;\n  padding-bottom: 0px;\n}\n.fancy-header .fancy-title {\n  font-size: 32px;\n  line-height: 36px;\n  color: #079547;\n  text-transform: none;\n}\n.fancy-header .fancy-subtitle {\n  font-size: 24px;\n  line-height: 26px;\n  color: #792c8a;\n  text-transform: none;\n}\n.fancy-header .breadcrumbs {\n  color: #ffffff;\n}\n.fancy-header-overlay {\n  background: rgba(0,0,0,0.5);\n}\n@media screen and (max-width: 778px) {\n  .fancy-header .wf-wrap {\n    min-height: 140px;\n  }\n  .fancy-header .fancy-title {\n    font-size: 30px;\n    line-height: 38px;\n  }\n  .fancy-header .fancy-subtitle {\n    font-size: 20px;\n    line-height: 28px;\n  }\n  .fancy-header.breadcrumbs-mobile-off .breadcrumbs {\n    display: none;\n  }\n  #fancy-header > .wf-wrap {\n    flex-flow: column wrap;\n    align-items: center;\n    justify-content: center;\n    padding-bottom: 0px !important;\n  }\n  .fancy-header.title-left .breadcrumbs {\n    text-align: center;\n    float: none;\n  }\n  .breadcrumbs {\n    margin-bottom: 10px;\n  }\n  .breadcrumbs.breadcrumbs-bg {\n    margin-top: 10px;\n  }\n  .fancy-header.title-right .breadcrumbs {\n    margin: 10px 0 10px 0;\n  }\n  #fancy-header .hgroup,\n  #fancy-header .breadcrumbs {\n    text-align: center;\n  }\n  .fancy-header .hgroup {\n    padding-bottom: 5px;\n  }\n  .breadcrumbs-off .hgroup {\n    padding-bottom: 5px;\n  }\n  .title-right .hgroup {\n    padding: 0 0 5px 0;\n  }\n  .title-right.breadcrumbs-off .hgroup {\n    padding-top: 5px;\n  }\n  .title-left.disabled-bg .breadcrumbs {\n    margin-bottom: 0;\n  }\n}\n'),(18330,3436,'_dt_fancy_header_responsive_breadcrumbs','disabled'),(18329,3436,'_dt_fancy_header_responsive_subtitle_line_height','28'),(18328,3436,'_dt_fancy_header_responsive_subtitle_font_size','20'),(18327,3436,'_dt_fancy_header_responsive_title_line_height','38'),(18326,3436,'_dt_fancy_header_responsive_font_size','30'),(18325,3436,'_dt_fancy_header_responsive_height','140'),(18324,3436,'_dt_fancy_header_responsiveness_switch','778px'),(18323,3436,'_dt_fancy_header_responsiveness','enabled'),(18322,3436,'_dt_fancy_header_responsiveness_heading',''),(18321,3436,'_dt_fancy_header_bg_parallax','0.5'),(18320,3436,'_dt_fancy_header_scroll_effect','default'),(18319,3436,'_dt_fancy_header_bg_overlay_opacity','50'),(18318,3436,'_dt_fancy_header_overlay_color','#000'),(18317,3436,'_dt_fancy_header_bg_overlay','0'),(18316,3436,'_dt_fancy_header_bg_fullscreen','0'),(18315,3436,'_dt_fancy_header_bg_position_y','center'),(18314,3436,'_dt_fancy_header_bg_position_x','center'),(18312,3436,'_dt_fancy_header_bg_image','a:1:{i:0;i:3724;}'),(18311,3436,'_dt_fancy_header_bg_image_origin','custom'),(18310,3436,'_dt_fancy_header_bg_color','#ffffff'),(18309,3436,'_dt_fancy_header_bg_heading',''),(18308,3436,'_dt_fancy_header_subtitle_color','#792c8a'),(18307,3436,'_dt_fancy_header_subtitle_color_mode','color'),(18306,3436,'_dt_fancy_header_subtitle_text_transform','none'),(18305,3436,'_dt_fancy_header_subtitle_line_height','26'),(18304,3436,'_dt_fancy_header_subtitle_font_size','24'),(18303,3436,'_dt_fancy_header_subtitle',''),(18302,3436,'_dt_fancy_header_subtitle_heading',''),(18301,3436,'_dt_fancy_header_title_color','#079547'),(18300,3436,'_dt_fancy_header_title_color_mode','color'),(18299,3436,'_dt_fancy_header_text_transform','none'),(18298,3436,'_dt_fancy_header_title_line_height','36'),(18297,3436,'_dt_fancy_header_title_font_size','32'),(18296,3436,'_dt_fancy_header_title',''),(18295,3436,'_dt_fancy_header_title_mode','custom'),(18294,3436,'_dt_fancy_header_title_heading',''),(18293,3436,'_dt_fancy_header_breadcrumbs_bg_color','disabled'),(18292,3436,'_dt_fancy_header_breadcrumbs_text_color','#ffffff'),(18291,3436,'_dt_fancy_header_breadcrumbs','disabled'),(18267,3436,'_dt_header_transparent_top_bar_bg_color','#ffffff'),(18268,3436,'_dt_header_transparent_top_bar_bg_opacity','25'),(18269,3436,'_dt_header_transparent_bg_color','#000000'),(18270,3436,'_dt_header_transparent_bg_opacity','50'),(18271,3436,'_dt_header_disabled_background','normal'),(18272,3436,'_dt_header_disabled_transparent_bg_color_scheme','light'),(18273,3436,'_dt_header_disabled_transparent_top_bar_bg_color','#ffffff'),(18274,3436,'_dt_header_disabled_transparent_top_bar_bg_opacity','25'),(18275,3436,'_dt_header_disabled_transparent_bg_color','#000000'),(18276,3436,'_dt_header_disabled_transparent_bg_opacity','50'),(18277,3436,'_dt_page_overrides_top_margin','1%'),(18278,3436,'_dt_page_overrides_right_margin',''),(18279,3436,'_dt_page_overrides_bottom_margin',''),(18280,3436,'_dt_page_overrides_left_margin',''),(18281,3436,'_dt_mobile_page_padding_top',''),(18282,3436,'_dt_mobile_page_padding_right',''),(18283,3436,'_dt_mobile_page_padding_bottom',''),(18284,3436,'_dt_mobile_page_padding_left',''),(18285,3436,'_dt_fancy_header_layout_heading',''),(18286,3436,'_dt_fancy_header_title_aligment','all_left'),(18287,3436,'_dt_fancy_header_height','140'),(18288,3436,'_dt_fancy_header_padding-top','0px'),(18289,3436,'_dt_fancy_header_padding-bottom','0px'),(18290,3436,'_dt_fancy_header_breadcrumbs_heading',''),(18266,3436,'_dt_header_transparent_bg_color_scheme','light'),(5871,2731,'_wp_attached_file','2023/05/IMIDOCARB-LH.png'),(5872,2731,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:600;s:6:\"height\";i:600;s:4:\"file\";s:24:\"2023/05/IMIDOCARB-LH.png\";s:8:\"filesize\";i:203327;s:5:\"sizes\";a:6:{s:6:\"medium\";a:5:{s:4:\"file\";s:24:\"IMIDOCARB-LH-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:53068;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:24:\"IMIDOCARB-LH-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:16213;}s:21:\"woocommerce_thumbnail\";a:6:{s:4:\"file\";s:24:\"IMIDOCARB-LH-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:53068;s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:5:{s:4:\"file\";s:24:\"IMIDOCARB-LH-200x200.png\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:26614;}s:12:\"shop_catalog\";a:5:{s:4:\"file\";s:24:\"IMIDOCARB-LH-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:53068;}s:14:\"shop_thumbnail\";a:5:{s:4:\"file\";s:24:\"IMIDOCARB-LH-200x200.png\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:26614;}}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:{}}}'),(18421,3437,'_dt_fancy_header_responsive_subtitle_line_height','28'),(18420,3437,'_dt_fancy_header_responsive_subtitle_font_size','20'),(18419,3437,'_dt_fancy_header_responsive_title_line_height','38'),(18418,3437,'_dt_fancy_header_responsive_font_size','30'),(18417,3437,'_dt_fancy_header_responsive_height','140'),(18416,3437,'_dt_fancy_header_responsiveness_switch','778px'),(18415,3437,'_dt_fancy_header_responsiveness','enabled'),(18414,3437,'_dt_fancy_header_responsiveness_heading',''),(18413,3437,'_dt_fancy_header_bg_parallax','0.5'),(18412,3437,'_dt_fancy_header_scroll_effect','default'),(18411,3437,'_dt_fancy_header_bg_overlay_opacity','50'),(18410,3437,'_dt_fancy_header_overlay_color','#000'),(18409,3437,'_dt_fancy_header_bg_overlay','0'),(18408,3437,'_dt_fancy_header_bg_fullscreen','0'),(18407,3437,'_dt_fancy_header_bg_position_y','center'),(18406,3437,'_dt_fancy_header_bg_position_x','center'),(18405,3437,'_dt_fancy_header_bg_repeat','no-repeat'),(18404,3437,'_dt_fancy_header_bg_image','a:1:{i:0;i:3721;}'),(18403,3437,'_dt_fancy_header_bg_image_origin','custom'),(18402,3437,'_dt_fancy_header_bg_color','#ffffff'),(18401,3437,'_dt_fancy_header_bg_heading',''),(18400,3437,'_dt_fancy_header_subtitle_color','#792c8a'),(18399,3437,'_dt_fancy_header_subtitle_color_mode','color'),(18398,3437,'_dt_fancy_header_subtitle_text_transform','none'),(18397,3437,'_dt_fancy_header_subtitle_line_height','26'),(18396,3437,'_dt_fancy_header_subtitle_font_size','24'),(18395,3437,'_dt_fancy_header_subtitle',''),(18394,3437,'_dt_fancy_header_subtitle_heading',''),(18393,3437,'_dt_fancy_header_title_color','#079547'),(18392,3437,'_dt_fancy_header_title_color_mode','color'),(18391,3437,'_dt_fancy_header_text_transform','none'),(18390,3437,'_dt_fancy_header_title_line_height','36'),(18389,3437,'_dt_fancy_header_title_font_size','32'),(18388,3437,'_dt_fancy_header_title',''),(18387,3437,'_dt_fancy_header_title_mode','custom'),(18386,3437,'_dt_fancy_header_title_heading',''),(18385,3437,'_dt_fancy_header_breadcrumbs_bg_color','disabled'),(18384,3437,'_dt_fancy_header_breadcrumbs_text_color','#ffffff'),(18383,3437,'_dt_fancy_header_breadcrumbs','disabled'),(18382,3437,'_dt_fancy_header_breadcrumbs_heading',''),(18380,3437,'_dt_fancy_header_padding-top','0px'),(18379,3437,'_dt_fancy_header_height','140'),(18378,3437,'_dt_fancy_header_title_aligment','all_left'),(18377,3437,'_dt_fancy_header_layout_heading',''),(18376,3437,'_dt_mobile_page_padding_left',''),(18375,3437,'_dt_mobile_page_padding_bottom',''),(18374,3437,'_dt_mobile_page_padding_right',''),(18373,3437,'_dt_mobile_page_padding_top',''),(18372,3437,'_dt_page_overrides_left_margin',''),(18371,3437,'_dt_page_overrides_bottom_margin',''),(18370,3437,'_dt_page_overrides_right_margin',''),(18369,3437,'_dt_page_overrides_top_margin','1%'),(18368,3437,'_dt_header_disabled_transparent_bg_opacity','50'),(18367,3437,'_dt_header_disabled_transparent_bg_color','#000000'),(18366,3437,'_dt_header_disabled_transparent_top_bar_bg_opacity','25'),(18365,3437,'_dt_header_disabled_transparent_top_bar_bg_color','#ffffff'),(18364,3437,'_dt_header_disabled_transparent_bg_color_scheme','light'),(18363,3437,'_dt_header_disabled_background','normal'),(18362,3437,'_dt_header_transparent_bg_opacity','50'),(18361,3437,'_dt_header_transparent_bg_color','#000000'),(18360,3437,'_dt_header_transparent_top_bar_bg_opacity','25'),(18359,3437,'_dt_header_transparent_top_bar_bg_color','#ffffff'),(18332,3436,'_edit_lock','1694835472:1'),(18333,3436,'_edit_last','1'),(18334,3437,'total_sales','0'),(18335,3437,'_tax_status','taxable'),(18336,3437,'_tax_class',''),(18337,3437,'_manage_stock','no'),(18338,3437,'_backorders','no'),(18339,3437,'_sold_individually','no'),(18340,3437,'_virtual','no'),(18341,3437,'_downloadable','no'),(18342,3437,'_download_limit','-1'),(18343,3437,'_download_expiry','-1'),(18344,3437,'_stock',NULL),(18345,3437,'_stock_status','instock'),(18346,3437,'_wc_average_rating','0'),(18347,3437,'_wc_review_count','0'),(18348,3437,'_product_version','8.0.2'),(18349,3437,'_dt_sidebar_position','disabled'),(18350,3437,'_dt_sidebar_widgetarea_id','sidebar_1'),(18351,3437,'_dt_sidebar_hide_on_mobile','0'),(18352,3437,'_dt_footer_show','1'),(18353,3437,'_dt_footer_widgetarea_id','sidebar_2'),(18354,3437,'_dt_footer_hide_on_mobile','0'),(18355,3437,'_dt_header_title','fancy'),(18356,3437,'_dt_header_background','normal'),(18357,3437,'_dt_header_background_below_slideshow','disabled'),(18358,3437,'_dt_header_transparent_bg_color_scheme','light'),(5966,2733,'_wp_attached_file','2023/05/INVEMOX-15LA.png'),(5967,2733,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:600;s:6:\"height\";i:600;s:4:\"file\";s:24:\"2023/05/INVEMOX-15LA.png\";s:8:\"filesize\";i:345260;s:5:\"sizes\";a:6:{s:6:\"medium\";a:5:{s:4:\"file\";s:24:\"INVEMOX-15LA-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:77334;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:24:\"INVEMOX-15LA-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:22475;}s:21:\"woocommerce_thumbnail\";a:6:{s:4:\"file\";s:24:\"INVEMOX-15LA-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:77334;s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:5:{s:4:\"file\";s:24:\"INVEMOX-15LA-200x200.png\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:37502;}s:12:\"shop_catalog\";a:5:{s:4:\"file\";s:24:\"INVEMOX-15LA-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:77334;}s:14:\"shop_thumbnail\";a:5:{s:4:\"file\";s:24:\"INVEMOX-15LA-200x200.png\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:37502;}}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:{}}}'),(18489,3438,'_dt_fancy_header_subtitle_line_height','26'),(18381,3437,'_dt_fancy_header_padding-bottom','0px'),(18488,3438,'_dt_fancy_header_subtitle_font_size','24'),(18487,3438,'_dt_fancy_header_subtitle',''),(18486,3438,'_dt_fancy_header_subtitle_heading',''),(18485,3438,'_dt_fancy_header_title_color','#079547'),(18484,3438,'_dt_fancy_header_title_color_mode','color'),(18483,3438,'_dt_fancy_header_text_transform','none'),(18482,3438,'_dt_fancy_header_title_line_height','36'),(18481,3438,'_dt_fancy_header_title_font_size','32'),(18480,3438,'_dt_fancy_header_title',''),(18479,3438,'_dt_fancy_header_title_mode','custom'),(18478,3438,'_dt_fancy_header_title_heading',''),(18477,3438,'_dt_fancy_header_breadcrumbs_bg_color','disabled'),(18476,3438,'_dt_fancy_header_breadcrumbs_text_color','#ffffff'),(18475,3438,'_dt_fancy_header_breadcrumbs','disabled'),(18474,3438,'_dt_fancy_header_breadcrumbs_heading',''),(18473,3438,'_dt_fancy_header_padding-bottom','0px'),(18472,3438,'_dt_fancy_header_padding-top','0px'),(18471,3438,'_dt_fancy_header_height','140'),(18470,3438,'_dt_fancy_header_title_aligment','all_left'),(18469,3438,'_dt_fancy_header_layout_heading',''),(18468,3438,'_dt_mobile_page_padding_left',''),(18467,3438,'_dt_mobile_page_padding_bottom',''),(18466,3438,'_dt_mobile_page_padding_right',''),(18465,3438,'_dt_mobile_page_padding_top',''),(18464,3438,'_dt_page_overrides_left_margin',''),(18463,3438,'_dt_page_overrides_bottom_margin',''),(18462,3438,'_dt_page_overrides_right_margin',''),(18461,3438,'_dt_page_overrides_top_margin','1%'),(18460,3438,'_dt_header_disabled_transparent_bg_opacity','50'),(18459,3438,'_dt_header_disabled_transparent_bg_color','#000000'),(18458,3438,'_dt_header_disabled_transparent_top_bar_bg_opacity','25'),(18457,3438,'_dt_header_disabled_transparent_top_bar_bg_color','#ffffff'),(18456,3438,'_dt_header_disabled_transparent_bg_color_scheme','light'),(18455,3438,'_dt_header_disabled_background','normal'),(18454,3438,'_dt_header_transparent_bg_opacity','50'),(18453,3438,'_dt_header_transparent_bg_color','#000000'),(18452,3438,'_dt_header_transparent_top_bar_bg_opacity','25'),(18451,3438,'_dt_header_transparent_top_bar_bg_color','#ffffff'),(18450,3438,'_dt_header_transparent_bg_color_scheme','light'),(18449,3438,'_dt_header_background_below_slideshow','disabled'),(18448,3438,'_dt_header_background','normal'),(18447,3438,'_dt_header_title','fancy'),(18446,3438,'_dt_footer_hide_on_mobile','0'),(18445,3438,'_dt_footer_widgetarea_id','sidebar_2'),(18444,3438,'_dt_footer_show','1'),(18443,3438,'_dt_sidebar_hide_on_mobile','0'),(18442,3438,'_dt_sidebar_widgetarea_id','sidebar_1'),(18441,3438,'_dt_sidebar_position','disabled'),(18440,3438,'_product_version','8.0.2'),(18439,3438,'_wc_review_count','0'),(18438,3438,'_wc_average_rating','0'),(18437,3438,'_stock_status','instock'),(18436,3438,'_stock',NULL),(18435,3438,'_download_expiry','-1'),(18434,3438,'_download_limit','-1'),(18433,3438,'_downloadable','no'),(18432,3438,'_virtual','no'),(18431,3438,'_sold_individually','no'),(18430,3438,'_backorders','no'),(18429,3438,'_manage_stock','no'),(18428,3438,'_tax_class',''),(18427,3438,'_tax_status','taxable'),(18426,3438,'total_sales','0'),(18425,3437,'_edit_last','1'),(18424,3437,'_edit_lock','1694835483:1'),(18423,3437,'the7_fancy_title_css','#main {\n  padding-top: 1%;\n}\n.fancy-header {\n  background-image: url(\'https://farmchemie.yasithawd.com/wp-content/uploads/2023/09/Oxytetraciclina_300.png\');\n  background-repeat: no-repeat;\n  background-position: center center;\n  background-size: auto auto;\n  background-color: #ffffff;\n}\n.mobile-false .fancy-header {\n  background-attachment: scroll;\n}\n.fancy-header .wf-wrap {\n  min-height: 140px;\n  padding-top: 0px;\n  padding-bottom: 0px;\n}\n.fancy-header .fancy-title {\n  font-size: 32px;\n  line-height: 36px;\n  color: #079547;\n  text-transform: none;\n}\n.fancy-header .fancy-subtitle {\n  font-size: 24px;\n  line-height: 26px;\n  color: #792c8a;\n  text-transform: none;\n}\n.fancy-header .breadcrumbs {\n  color: #ffffff;\n}\n.fancy-header-overlay {\n  background: rgba(0,0,0,0.5);\n}\n@media screen and (max-width: 778px) {\n  .fancy-header .wf-wrap {\n    min-height: 140px;\n  }\n  .fancy-header .fancy-title {\n    font-size: 30px;\n    line-height: 38px;\n  }\n  .fancy-header .fancy-subtitle {\n    font-size: 20px;\n    line-height: 28px;\n  }\n  .fancy-header.breadcrumbs-mobile-off .breadcrumbs {\n    display: none;\n  }\n  #fancy-header > .wf-wrap {\n    flex-flow: column wrap;\n    align-items: center;\n    justify-content: center;\n    padding-bottom: 0px !important;\n  }\n  .fancy-header.title-left .breadcrumbs {\n    text-align: center;\n    float: none;\n  }\n  .breadcrumbs {\n    margin-bottom: 10px;\n  }\n  .breadcrumbs.breadcrumbs-bg {\n    margin-top: 10px;\n  }\n  .fancy-header.title-right .breadcrumbs {\n    margin: 10px 0 10px 0;\n  }\n  #fancy-header .hgroup,\n  #fancy-header .breadcrumbs {\n    text-align: center;\n  }\n  .fancy-header .hgroup {\n    padding-bottom: 5px;\n  }\n  .breadcrumbs-off .hgroup {\n    padding-bottom: 5px;\n  }\n  .title-right .hgroup {\n    padding: 0 0 5px 0;\n  }\n  .title-right.breadcrumbs-off .hgroup {\n    padding-top: 5px;\n  }\n  .title-left.disabled-bg .breadcrumbs {\n    margin-bottom: 0;\n  }\n}\n'),(6061,2735,'_wp_attached_file','2023/05/KETINK.png'),(6062,2735,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:600;s:6:\"height\";i:600;s:4:\"file\";s:18:\"2023/05/KETINK.png\";s:8:\"filesize\";i:201865;s:5:\"sizes\";a:6:{s:6:\"medium\";a:5:{s:4:\"file\";s:18:\"KETINK-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:50757;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:18:\"KETINK-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:15511;}s:21:\"woocommerce_thumbnail\";a:6:{s:4:\"file\";s:18:\"KETINK-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:50757;s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:5:{s:4:\"file\";s:18:\"KETINK-200x200.png\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:25481;}s:12:\"shop_catalog\";a:5:{s:4:\"file\";s:18:\"KETINK-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:50757;}s:14:\"shop_thumbnail\";a:5:{s:4:\"file\";s:18:\"KETINK-200x200.png\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:25481;}}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:{}}}'),(18559,3439,'_dt_mobile_page_padding_bottom',''),(18558,3439,'_dt_mobile_page_padding_right',''),(18557,3439,'_dt_mobile_page_padding_top',''),(18556,3439,'_dt_page_overrides_left_margin',''),(18555,3439,'_dt_page_overrides_bottom_margin',''),(18554,3439,'_dt_page_overrides_right_margin',''),(18553,3439,'_dt_page_overrides_top_margin','1%'),(18552,3439,'_dt_header_disabled_transparent_bg_opacity','50'),(18551,3439,'_dt_header_disabled_transparent_bg_color','#000000'),(18550,3439,'_dt_header_disabled_transparent_top_bar_bg_opacity','25'),(18549,3439,'_dt_header_disabled_transparent_top_bar_bg_color','#ffffff'),(18548,3439,'_dt_header_disabled_transparent_bg_color_scheme','light'),(18547,3439,'_dt_header_disabled_background','normal'),(18546,3439,'_dt_header_transparent_bg_opacity','50'),(18545,3439,'_dt_header_transparent_bg_color','#000000'),(18544,3439,'_dt_header_transparent_top_bar_bg_opacity','25'),(18543,3439,'_dt_header_transparent_top_bar_bg_color','#ffffff'),(18542,3439,'_dt_header_transparent_bg_color_scheme','light'),(18541,3439,'_dt_header_background_below_slideshow','disabled'),(18540,3439,'_dt_header_background','normal'),(18539,3439,'_dt_header_title','fancy'),(18538,3439,'_dt_footer_hide_on_mobile','0'),(18537,3439,'_dt_footer_widgetarea_id','sidebar_2'),(18536,3439,'_dt_footer_show','1'),(18535,3439,'_dt_sidebar_hide_on_mobile','0'),(18534,3439,'_dt_sidebar_widgetarea_id','sidebar_1'),(18533,3439,'_dt_sidebar_position','disabled'),(18532,3439,'_product_version','8.0.2'),(18531,3439,'_wc_review_count','0'),(18530,3439,'_wc_average_rating','0'),(18529,3439,'_stock_status','instock'),(18528,3439,'_stock',NULL),(18527,3439,'_download_expiry','-1'),(18526,3439,'_download_limit','-1'),(18525,3439,'_downloadable','no'),(18524,3439,'_virtual','no'),(18523,3439,'_sold_individually','no'),(18522,3439,'_backorders','no'),(18521,3439,'_manage_stock','no'),(18520,3439,'_tax_class',''),(18518,3439,'total_sales','0'),(18517,3438,'_edit_last','1'),(18516,3438,'_edit_lock','1694835406:1'),(18519,3439,'_tax_status','taxable'),(18494,3438,'_dt_fancy_header_bg_color','#ffffff'),(18495,3438,'_dt_fancy_header_bg_image_origin','custom'),(18496,3438,'_dt_fancy_header_bg_image','a:1:{i:0;i:3719;}'),(18497,3438,'_dt_fancy_header_bg_repeat','no-repeat'),(18498,3438,'_dt_fancy_header_bg_position_x','center'),(18499,3438,'_dt_fancy_header_bg_position_y','center'),(18500,3438,'_dt_fancy_header_bg_fullscreen','0'),(18501,3438,'_dt_fancy_header_bg_overlay','0'),(18502,3438,'_dt_fancy_header_overlay_color','#000'),(18503,3438,'_dt_fancy_header_bg_overlay_opacity','50'),(18504,3438,'_dt_fancy_header_scroll_effect','default'),(18505,3438,'_dt_fancy_header_bg_parallax','0.5'),(18506,3438,'_dt_fancy_header_responsiveness_heading',''),(18507,3438,'_dt_fancy_header_responsiveness','enabled'),(18508,3438,'_dt_fancy_header_responsiveness_switch','778px'),(18509,3438,'_dt_fancy_header_responsive_height','140'),(18510,3438,'_dt_fancy_header_responsive_font_size','30'),(18511,3438,'_dt_fancy_header_responsive_title_line_height','38'),(18512,3438,'_dt_fancy_header_responsive_subtitle_font_size','20'),(18513,3438,'_dt_fancy_header_responsive_subtitle_line_height','28'),(18514,3438,'_dt_fancy_header_responsive_breadcrumbs','disabled'),(18515,3438,'the7_fancy_title_css','#main {\n  padding-top: 1%;\n}\n.fancy-header {\n  background-image: url(\'https://farmchemie.yasithawd.com/wp-content/uploads/2023/09/Pandex_L_300px.png\');\n  background-repeat: no-repeat;\n  background-position: center center;\n  background-size: auto auto;\n  background-color: #ffffff;\n}\n.mobile-false .fancy-header {\n  background-attachment: scroll;\n}\n.fancy-header .wf-wrap {\n  min-height: 140px;\n  padding-top: 0px;\n  padding-bottom: 0px;\n}\n.fancy-header .fancy-title {\n  font-size: 32px;\n  line-height: 36px;\n  color: #079547;\n  text-transform: none;\n}\n.fancy-header .fancy-subtitle {\n  font-size: 24px;\n  line-height: 26px;\n  color: #792c8a;\n  text-transform: none;\n}\n.fancy-header .breadcrumbs {\n  color: #ffffff;\n}\n.fancy-header-overlay {\n  background: rgba(0,0,0,0.5);\n}\n@media screen and (max-width: 778px) {\n  .fancy-header .wf-wrap {\n    min-height: 140px;\n  }\n  .fancy-header .fancy-title {\n    font-size: 30px;\n    line-height: 38px;\n  }\n  .fancy-header .fancy-subtitle {\n    font-size: 20px;\n    line-height: 28px;\n  }\n  .fancy-header.breadcrumbs-mobile-off .breadcrumbs {\n    display: none;\n  }\n  #fancy-header > .wf-wrap {\n    flex-flow: column wrap;\n    align-items: center;\n    justify-content: center;\n    padding-bottom: 0px !important;\n  }\n  .fancy-header.title-left .breadcrumbs {\n    text-align: center;\n    float: none;\n  }\n  .breadcrumbs {\n    margin-bottom: 10px;\n  }\n  .breadcrumbs.breadcrumbs-bg {\n    margin-top: 10px;\n  }\n  .fancy-header.title-right .breadcrumbs {\n    margin: 10px 0 10px 0;\n  }\n  #fancy-header .hgroup,\n  #fancy-header .breadcrumbs {\n    text-align: center;\n  }\n  .fancy-header .hgroup {\n    padding-bottom: 5px;\n  }\n  .breadcrumbs-off .hgroup {\n    padding-bottom: 5px;\n  }\n  .title-right .hgroup {\n    padding: 0 0 5px 0;\n  }\n  .title-right.breadcrumbs-off .hgroup {\n    padding-top: 5px;\n  }\n  .title-left.disabled-bg .breadcrumbs {\n    margin-bottom: 0;\n  }\n}\n'),(18493,3438,'_dt_fancy_header_bg_heading',''),(6156,2737,'_wp_attached_file','2023/05/MAXUVOL.png'),(6157,2737,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:600;s:6:\"height\";i:600;s:4:\"file\";s:19:\"2023/05/MAXUVOL.png\";s:8:\"filesize\";i:183463;s:5:\"sizes\";a:6:{s:6:\"medium\";a:5:{s:4:\"file\";s:19:\"MAXUVOL-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:48379;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:19:\"MAXUVOL-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:14361;}s:21:\"woocommerce_thumbnail\";a:6:{s:4:\"file\";s:19:\"MAXUVOL-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:48379;s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:5:{s:4:\"file\";s:19:\"MAXUVOL-200x200.png\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:24045;}s:12:\"shop_catalog\";a:5:{s:4:\"file\";s:19:\"MAXUVOL-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:48379;}s:14:\"shop_thumbnail\";a:5:{s:4:\"file\";s:19:\"MAXUVOL-200x200.png\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:24045;}}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:{}}}'),(6158,2739,'_wp_attached_file','2023/05/ORONDO-SPRAY.png'),(6159,2739,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:600;s:6:\"height\";i:600;s:4:\"file\";s:24:\"2023/05/ORONDO-SPRAY.png\";s:8:\"filesize\";i:48065;s:5:\"sizes\";a:6:{s:6:\"medium\";a:5:{s:4:\"file\";s:24:\"ORONDO-SPRAY-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:15463;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:24:\"ORONDO-SPRAY-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:5466;}s:21:\"woocommerce_thumbnail\";a:6:{s:4:\"file\";s:24:\"ORONDO-SPRAY-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:15463;s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:5:{s:4:\"file\";s:24:\"ORONDO-SPRAY-200x200.png\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:8391;}s:12:\"shop_catalog\";a:5:{s:4:\"file\";s:24:\"ORONDO-SPRAY-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:15463;}s:14:\"shop_thumbnail\";a:5:{s:4:\"file\";s:24:\"ORONDO-SPRAY-200x200.png\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:8391;}}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:{}}}'),(18628,3440,'_dt_footer_show','1'),(18627,3440,'_dt_sidebar_hide_on_mobile','0'),(18626,3440,'_dt_sidebar_widgetarea_id','sidebar_1'),(18625,3440,'_dt_sidebar_position','disabled'),(18624,3440,'_product_version','8.0.2'),(18623,3440,'_wc_review_count','0'),(18622,3440,'_wc_average_rating','0'),(18621,3440,'_stock_status','instock'),(18620,3440,'_stock',NULL),(18619,3440,'_download_expiry','-1'),(18618,3440,'_download_limit','-1'),(18617,3440,'_downloadable','no'),(18616,3440,'_virtual','no'),(18615,3440,'_sold_individually','no'),(18614,3440,'_backorders','no'),(18613,3440,'_manage_stock','no'),(18612,3440,'_tax_class',''),(18611,3440,'_tax_status','taxable'),(18610,3440,'total_sales','0'),(18609,3439,'_edit_last','1'),(18608,3439,'_edit_lock','1694834219:1'),(18607,3439,'the7_fancy_title_css','#main {\n  padding-top: 1%;\n}\n.fancy-header {\n  background-image: url(\'https://farmchemie.yasithawd.com/wp-content/uploads/2023/09/Tylovet-B-200_-300px.png\');\n  background-repeat: no-repeat;\n  background-position: center center;\n  background-size: auto auto;\n  background-color: #ffffff;\n}\n.mobile-false .fancy-header {\n  background-attachment: scroll;\n}\n.fancy-header .wf-wrap {\n  min-height: 140px;\n  padding-top: 0px;\n  padding-bottom: 0px;\n}\n.fancy-header .fancy-title {\n  font-size: 32px;\n  line-height: 36px;\n  color: #079547;\n  text-transform: none;\n}\n.fancy-header .fancy-subtitle {\n  font-size: 24px;\n  line-height: 26px;\n  color: #792c8a;\n  text-transform: none;\n}\n.fancy-header .breadcrumbs {\n  color: #ffffff;\n}\n.fancy-header-overlay {\n  background: rgba(0,0,0,0.5);\n}\n@media screen and (max-width: 778px) {\n  .fancy-header .wf-wrap {\n    min-height: 140px;\n  }\n  .fancy-header .fancy-title {\n    font-size: 30px;\n    line-height: 38px;\n  }\n  .fancy-header .fancy-subtitle {\n    font-size: 20px;\n    line-height: 28px;\n  }\n  .fancy-header.breadcrumbs-mobile-off .breadcrumbs {\n    display: none;\n  }\n  #fancy-header > .wf-wrap {\n    flex-flow: column wrap;\n    align-items: center;\n    justify-content: center;\n    padding-bottom: 0px !important;\n  }\n  .fancy-header.title-left .breadcrumbs {\n    text-align: center;\n    float: none;\n  }\n  .breadcrumbs {\n    margin-bottom: 10px;\n  }\n  .breadcrumbs.breadcrumbs-bg {\n    margin-top: 10px;\n  }\n  .fancy-header.title-right .breadcrumbs {\n    margin: 10px 0 10px 0;\n  }\n  #fancy-header .hgroup,\n  #fancy-header .breadcrumbs {\n    text-align: center;\n  }\n  .fancy-header .hgroup {\n    padding-bottom: 5px;\n  }\n  .breadcrumbs-off .hgroup {\n    padding-bottom: 5px;\n  }\n  .title-right .hgroup {\n    padding: 0 0 5px 0;\n  }\n  .title-right.breadcrumbs-off .hgroup {\n    padding-top: 5px;\n  }\n  .title-left.disabled-bg .breadcrumbs {\n    margin-bottom: 0;\n  }\n}\n'),(18606,3439,'_dt_fancy_header_responsive_breadcrumbs','disabled'),(18605,3439,'_dt_fancy_header_responsive_subtitle_line_height','28'),(18604,3439,'_dt_fancy_header_responsive_subtitle_font_size','20'),(18603,3439,'_dt_fancy_header_responsive_title_line_height','38'),(18602,3439,'_dt_fancy_header_responsive_font_size','30'),(18601,3439,'_dt_fancy_header_responsive_height','140'),(18600,3439,'_dt_fancy_header_responsiveness_switch','778px'),(18599,3439,'_dt_fancy_header_responsiveness','enabled'),(18598,3439,'_dt_fancy_header_responsiveness_heading',''),(18597,3439,'_dt_fancy_header_bg_parallax','0.5'),(18596,3439,'_dt_fancy_header_scroll_effect','default'),(18595,3439,'_dt_fancy_header_bg_overlay_opacity','50'),(18594,3439,'_dt_fancy_header_overlay_color','#000'),(18593,3439,'_dt_fancy_header_bg_overlay','0'),(18592,3439,'_dt_fancy_header_bg_fullscreen','0'),(18591,3439,'_dt_fancy_header_bg_position_y','center'),(18590,3439,'_dt_fancy_header_bg_position_x','center'),(18589,3439,'_dt_fancy_header_bg_repeat','no-repeat'),(18565,3439,'_dt_fancy_header_padding-bottom','0px'),(18566,3439,'_dt_fancy_header_breadcrumbs_heading',''),(18567,3439,'_dt_fancy_header_breadcrumbs','disabled'),(18568,3439,'_dt_fancy_header_breadcrumbs_text_color','#ffffff'),(18569,3439,'_dt_fancy_header_breadcrumbs_bg_color','disabled'),(18570,3439,'_dt_fancy_header_title_heading',''),(18571,3439,'_dt_fancy_header_title_mode','custom'),(18572,3439,'_dt_fancy_header_title',''),(18573,3439,'_dt_fancy_header_title_font_size','32'),(18574,3439,'_dt_fancy_header_title_line_height','36'),(18575,3439,'_dt_fancy_header_text_transform','none'),(18576,3439,'_dt_fancy_header_title_color_mode','color'),(18577,3439,'_dt_fancy_header_title_color','#079547'),(18578,3439,'_dt_fancy_header_subtitle_heading',''),(18579,3439,'_dt_fancy_header_subtitle',''),(18580,3439,'_dt_fancy_header_subtitle_font_size','24'),(18581,3439,'_dt_fancy_header_subtitle_line_height','26'),(18582,3439,'_dt_fancy_header_subtitle_text_transform','none'),(18583,3439,'_dt_fancy_header_subtitle_color_mode','color'),(18584,3439,'_dt_fancy_header_subtitle_color','#792c8a'),(18585,3439,'_dt_fancy_header_bg_heading',''),(18586,3439,'_dt_fancy_header_bg_color','#ffffff'),(18587,3439,'_dt_fancy_header_bg_image_origin','custom'),(18588,3439,'_dt_fancy_header_bg_image','a:1:{i:0;i:3712;}'),(18564,3439,'_dt_fancy_header_padding-top','0px'),(6253,2741,'_wp_attached_file','2023/05/OXITETRACICLINA-200-LA.png'),(6254,2741,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:600;s:6:\"height\";i:600;s:4:\"file\";s:34:\"2023/05/OXITETRACICLINA-200-LA.png\";s:8:\"filesize\";i:217347;s:5:\"sizes\";a:6:{s:6:\"medium\";a:5:{s:4:\"file\";s:34:\"OXITETRACICLINA-200-LA-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:64686;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:34:\"OXITETRACICLINA-200-LA-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:19213;}s:21:\"woocommerce_thumbnail\";a:6:{s:4:\"file\";s:34:\"OXITETRACICLINA-200-LA-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:64686;s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:5:{s:4:\"file\";s:34:\"OXITETRACICLINA-200-LA-200x200.png\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:31990;}s:12:\"shop_catalog\";a:5:{s:4:\"file\";s:34:\"OXITETRACICLINA-200-LA-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:64686;}s:14:\"shop_thumbnail\";a:5:{s:4:\"file\";s:34:\"OXITETRACICLINA-200-LA-200x200.png\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:31990;}}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:{}}}'),(18699,3440,'the7_fancy_title_css','#main {\n  padding-top: 1%;\n}\n.fancy-header {\n  background-image: url(\'https://farmchemie.yasithawd.com/wp-content/uploads/2023/09/Hemo-Boost_logo.png\');\n  background-repeat: no-repeat;\n  background-position: center center;\n  background-size: auto auto;\n  background-color: #ffffff;\n}\n.mobile-false .fancy-header {\n  background-attachment: scroll;\n}\n.fancy-header .wf-wrap {\n  min-height: 140px;\n  padding-top: 0px;\n  padding-bottom: 0px;\n}\n.fancy-header .fancy-title {\n  font-size: 32px;\n  line-height: 36px;\n  color: #079547;\n  text-transform: none;\n}\n.fancy-header .fancy-subtitle {\n  font-size: 24px;\n  line-height: 26px;\n  color: #792c8a;\n  text-transform: none;\n}\n.fancy-header .breadcrumbs {\n  color: #ffffff;\n}\n.fancy-header-overlay {\n  background: rgba(0,0,0,0.5);\n}\n@media screen and (max-width: 778px) {\n  .fancy-header .wf-wrap {\n    min-height: 140px;\n  }\n  .fancy-header .fancy-title {\n    font-size: 30px;\n    line-height: 38px;\n  }\n  .fancy-header .fancy-subtitle {\n    font-size: 20px;\n    line-height: 28px;\n  }\n  .fancy-header.breadcrumbs-mobile-off .breadcrumbs {\n    display: none;\n  }\n  #fancy-header > .wf-wrap {\n    flex-flow: column wrap;\n    align-items: center;\n    justify-content: center;\n    padding-bottom: 0px !important;\n  }\n  .fancy-header.title-left .breadcrumbs {\n    text-align: center;\n    float: none;\n  }\n  .breadcrumbs {\n    margin-bottom: 10px;\n  }\n  .breadcrumbs.breadcrumbs-bg {\n    margin-top: 10px;\n  }\n  .fancy-header.title-right .breadcrumbs {\n    margin: 10px 0 10px 0;\n  }\n  #fancy-header .hgroup,\n  #fancy-header .breadcrumbs {\n    text-align: center;\n  }\n  .fancy-header .hgroup {\n    padding-bottom: 5px;\n  }\n  .breadcrumbs-off .hgroup {\n    padding-bottom: 5px;\n  }\n  .title-right .hgroup {\n    padding: 0 0 5px 0;\n  }\n  .title-right.breadcrumbs-off .hgroup {\n    padding-top: 5px;\n  }\n  .title-left.disabled-bg .breadcrumbs {\n    margin-bottom: 0;\n  }\n}\n'),(18698,3440,'_dt_fancy_header_responsive_breadcrumbs','disabled'),(18697,3440,'_dt_fancy_header_responsive_subtitle_line_height','28'),(18696,3440,'_dt_fancy_header_responsive_subtitle_font_size','20'),(18695,3440,'_dt_fancy_header_responsive_title_line_height','38'),(18694,3440,'_dt_fancy_header_responsive_font_size','30'),(18693,3440,'_dt_fancy_header_responsive_height','140'),(18692,3440,'_dt_fancy_header_responsiveness_switch','778px'),(18691,3440,'_dt_fancy_header_responsiveness','enabled'),(18690,3440,'_dt_fancy_header_responsiveness_heading',''),(18689,3440,'_dt_fancy_header_bg_parallax','0.5'),(18688,3440,'_dt_fancy_header_scroll_effect','default'),(18687,3440,'_dt_fancy_header_bg_overlay_opacity','50'),(18686,3440,'_dt_fancy_header_overlay_color','#000'),(18685,3440,'_dt_fancy_header_bg_overlay','0'),(18684,3440,'_dt_fancy_header_bg_fullscreen','0'),(18683,3440,'_dt_fancy_header_bg_position_y','center'),(18682,3440,'_dt_fancy_header_bg_position_x','center'),(18681,3440,'_dt_fancy_header_bg_repeat','no-repeat'),(18680,3440,'_dt_fancy_header_bg_image','a:1:{i:0;i:3706;}'),(18679,3440,'_dt_fancy_header_bg_image_origin','custom'),(18678,3440,'_dt_fancy_header_bg_color','#ffffff'),(18677,3440,'_dt_fancy_header_bg_heading',''),(18676,3440,'_dt_fancy_header_subtitle_color','#792c8a'),(18675,3440,'_dt_fancy_header_subtitle_color_mode','color'),(18674,3440,'_dt_fancy_header_subtitle_text_transform','none'),(18673,3440,'_dt_fancy_header_subtitle_line_height','26'),(18672,3440,'_dt_fancy_header_subtitle_font_size','24'),(18671,3440,'_dt_fancy_header_subtitle',''),(18670,3440,'_dt_fancy_header_subtitle_heading',''),(18669,3440,'_dt_fancy_header_title_color','#079547'),(18668,3440,'_dt_fancy_header_title_color_mode','color'),(18667,3440,'_dt_fancy_header_text_transform','none'),(18666,3440,'_dt_fancy_header_title_line_height','36'),(18665,3440,'_dt_fancy_header_title_font_size','32'),(18664,3440,'_dt_fancy_header_title',''),(18663,3440,'_dt_fancy_header_title_mode','custom'),(18662,3440,'_dt_fancy_header_title_heading',''),(18661,3440,'_dt_fancy_header_breadcrumbs_bg_color','disabled'),(18660,3440,'_dt_fancy_header_breadcrumbs_text_color','#ffffff'),(18659,3440,'_dt_fancy_header_breadcrumbs','disabled'),(18658,3440,'_dt_fancy_header_breadcrumbs_heading',''),(18657,3440,'_dt_fancy_header_padding-bottom','0px'),(18656,3440,'_dt_fancy_header_padding-top','0px'),(18633,3440,'_dt_header_background_below_slideshow','disabled'),(18634,3440,'_dt_header_transparent_bg_color_scheme','light'),(18635,3440,'_dt_header_transparent_top_bar_bg_color','#ffffff'),(18636,3440,'_dt_header_transparent_top_bar_bg_opacity','25'),(18637,3440,'_dt_header_transparent_bg_color','#000000'),(18638,3440,'_dt_header_transparent_bg_opacity','50'),(18639,3440,'_dt_header_disabled_background','normal'),(18640,3440,'_dt_header_disabled_transparent_bg_color_scheme','light'),(18641,3440,'_dt_header_disabled_transparent_top_bar_bg_color','#ffffff'),(18642,3440,'_dt_header_disabled_transparent_top_bar_bg_opacity','25'),(18643,3440,'_dt_header_disabled_transparent_bg_color','#000000'),(18644,3440,'_dt_header_disabled_transparent_bg_opacity','50'),(18645,3440,'_dt_page_overrides_top_margin','1%'),(18646,3440,'_dt_page_overrides_right_margin',''),(18647,3440,'_dt_page_overrides_bottom_margin',''),(18648,3440,'_dt_page_overrides_left_margin',''),(18649,3440,'_dt_mobile_page_padding_top',''),(18650,3440,'_dt_mobile_page_padding_right',''),(18651,3440,'_dt_mobile_page_padding_bottom',''),(18652,3440,'_dt_mobile_page_padding_left',''),(18653,3440,'_dt_fancy_header_layout_heading',''),(18654,3440,'_dt_fancy_header_title_aligment','all_left'),(18655,3440,'_dt_fancy_header_height','140'),(18632,3440,'_dt_header_background','normal'),(6348,2743,'_wp_attached_file','2023/05/PANDEX.png'),(6349,2743,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:600;s:6:\"height\";i:600;s:4:\"file\";s:18:\"2023/05/PANDEX.png\";s:8:\"filesize\";i:263561;s:5:\"sizes\";a:6:{s:6:\"medium\";a:5:{s:4:\"file\";s:18:\"PANDEX-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:85075;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:18:\"PANDEX-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:25738;}s:21:\"woocommerce_thumbnail\";a:6:{s:4:\"file\";s:18:\"PANDEX-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:85075;s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:5:{s:4:\"file\";s:18:\"PANDEX-200x200.png\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:43027;}s:12:\"shop_catalog\";a:5:{s:4:\"file\";s:18:\"PANDEX-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:85075;}s:14:\"shop_thumbnail\";a:5:{s:4:\"file\";s:18:\"PANDEX-200x200.png\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:43027;}}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:{}}}'),(18788,3441,'_dt_fancy_header_responsive_subtitle_font_size','20'),(18787,3441,'_dt_fancy_header_responsive_title_line_height','38'),(18786,3441,'_dt_fancy_header_responsive_font_size','30'),(18785,3441,'_dt_fancy_header_responsive_height','140'),(18784,3441,'_dt_fancy_header_responsiveness_switch','778px'),(18783,3441,'_dt_fancy_header_responsiveness','enabled'),(18782,3441,'_dt_fancy_header_responsiveness_heading',''),(18781,3441,'_dt_fancy_header_bg_parallax','0.5'),(18780,3441,'_dt_fancy_header_scroll_effect','default'),(18779,3441,'_dt_fancy_header_bg_overlay_opacity','50'),(18778,3441,'_dt_fancy_header_overlay_color','#000'),(18777,3441,'_dt_fancy_header_bg_overlay','0'),(18776,3441,'_dt_fancy_header_bg_fullscreen','0'),(18775,3441,'_dt_fancy_header_bg_position_y','center'),(18774,3441,'_dt_fancy_header_bg_position_x','center'),(18773,3441,'_dt_fancy_header_bg_repeat','no-repeat'),(18772,3441,'_dt_fancy_header_bg_image','a:1:{i:0;i:3740;}'),(18771,3441,'_dt_fancy_header_bg_image_origin','custom'),(18770,3441,'_dt_fancy_header_bg_color','#ffffff'),(18769,3441,'_dt_fancy_header_bg_heading',''),(18768,3441,'_dt_fancy_header_subtitle_color','#792c8a'),(18767,3441,'_dt_fancy_header_subtitle_color_mode','color'),(18766,3441,'_dt_fancy_header_subtitle_text_transform','none'),(18765,3441,'_dt_fancy_header_subtitle_line_height','26'),(18764,3441,'_dt_fancy_header_subtitle_font_size','24'),(18763,3441,'_dt_fancy_header_subtitle',''),(18762,3441,'_dt_fancy_header_subtitle_heading',''),(18761,3441,'_dt_fancy_header_title_color','#079547'),(18760,3441,'_dt_fancy_header_title_color_mode','color'),(18759,3441,'_dt_fancy_header_text_transform','none'),(18758,3441,'_dt_fancy_header_title_line_height','36'),(18757,3441,'_dt_fancy_header_title_font_size','32'),(18756,3441,'_dt_fancy_header_title',''),(18755,3441,'_dt_fancy_header_title_mode','custom'),(18754,3441,'_dt_fancy_header_title_heading',''),(18753,3441,'_dt_fancy_header_breadcrumbs_bg_color','disabled'),(18752,3441,'_dt_fancy_header_breadcrumbs_text_color','#ffffff'),(18751,3441,'_dt_fancy_header_breadcrumbs','disabled'),(18750,3441,'_dt_fancy_header_breadcrumbs_heading',''),(18749,3441,'_dt_fancy_header_padding-bottom','0px'),(18748,3441,'_dt_fancy_header_padding-top','0px'),(18747,3441,'_dt_fancy_header_height','140'),(18746,3441,'_dt_fancy_header_title_aligment','all_left'),(18745,3441,'_dt_fancy_header_layout_heading',''),(18744,3441,'_dt_mobile_page_padding_left',''),(18743,3441,'_dt_mobile_page_padding_bottom',''),(18742,3441,'_dt_mobile_page_padding_right',''),(18741,3441,'_dt_mobile_page_padding_top',''),(18740,3441,'_dt_page_overrides_left_margin',''),(18739,3441,'_dt_page_overrides_bottom_margin',''),(18738,3441,'_dt_page_overrides_right_margin',''),(18737,3441,'_dt_page_overrides_top_margin','1%'),(18736,3441,'_dt_header_disabled_transparent_bg_opacity','50'),(18735,3441,'_dt_header_disabled_transparent_bg_color','#000000'),(18734,3441,'_dt_header_disabled_transparent_top_bar_bg_opacity','25'),(18733,3441,'_dt_header_disabled_transparent_top_bar_bg_color','#ffffff'),(18732,3441,'_dt_header_disabled_transparent_bg_color_scheme','light'),(18731,3441,'_dt_header_disabled_background','normal'),(18730,3441,'_dt_header_transparent_bg_opacity','50'),(18729,3441,'_dt_header_transparent_bg_color','#000000'),(18728,3441,'_dt_header_transparent_top_bar_bg_opacity','25'),(18727,3441,'_dt_header_transparent_top_bar_bg_color','#ffffff'),(18726,3441,'_dt_header_transparent_bg_color_scheme','light'),(18725,3441,'_dt_header_background_below_slideshow','disabled'),(18700,3440,'_edit_lock','1694853291:1'),(18701,3440,'_edit_last','1'),(18702,3441,'total_sales','0'),(18703,3441,'_tax_status','taxable'),(18704,3441,'_tax_class',''),(18705,3441,'_manage_stock','no'),(18706,3441,'_backorders','no'),(18707,3441,'_sold_individually','no'),(18708,3441,'_virtual','no'),(18709,3441,'_downloadable','no'),(18710,3441,'_download_limit','-1'),(18711,3441,'_download_expiry','-1'),(18712,3441,'_stock',NULL),(18713,3441,'_stock_status','instock'),(18714,3441,'_wc_average_rating','0'),(18715,3441,'_wc_review_count','0'),(18716,3441,'_product_version','8.0.2'),(18717,3441,'_dt_sidebar_position','disabled'),(18718,3441,'_dt_sidebar_widgetarea_id','sidebar_1'),(18719,3441,'_dt_sidebar_hide_on_mobile','0'),(18720,3441,'_dt_footer_show','1'),(18721,3441,'_dt_footer_widgetarea_id','sidebar_2'),(18722,3441,'_dt_footer_hide_on_mobile','0'),(18723,3441,'_dt_header_title','fancy'),(18724,3441,'_dt_header_background','normal'),(6443,2745,'_wp_attached_file','2023/05/RELENOL.png'),(6444,2745,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:600;s:6:\"height\";i:600;s:4:\"file\";s:19:\"2023/05/RELENOL.png\";s:8:\"filesize\";i:187415;s:5:\"sizes\";a:6:{s:6:\"medium\";a:5:{s:4:\"file\";s:19:\"RELENOL-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:52199;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:19:\"RELENOL-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:15935;}s:21:\"woocommerce_thumbnail\";a:6:{s:4:\"file\";s:19:\"RELENOL-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:52199;s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:5:{s:4:\"file\";s:19:\"RELENOL-200x200.png\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:26147;}s:12:\"shop_catalog\";a:5:{s:4:\"file\";s:19:\"RELENOL-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:52199;}s:14:\"shop_thumbnail\";a:5:{s:4:\"file\";s:19:\"RELENOL-200x200.png\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:26147;}}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:{}}}'),(18858,3442,'_dt_fancy_header_subtitle_text_transform','none'),(18857,3442,'_dt_fancy_header_subtitle_line_height','26'),(18856,3442,'_dt_fancy_header_subtitle_font_size','24'),(18855,3442,'_dt_fancy_header_subtitle',''),(18854,3442,'_dt_fancy_header_subtitle_heading',''),(18853,3442,'_dt_fancy_header_title_color','#079547'),(18852,3442,'_dt_fancy_header_title_color_mode','color'),(18851,3442,'_dt_fancy_header_text_transform','none'),(18850,3442,'_dt_fancy_header_title_line_height','36'),(18849,3442,'_dt_fancy_header_title_font_size','32'),(18848,3442,'_dt_fancy_header_title',''),(18847,3442,'_dt_fancy_header_title_mode','custom'),(18846,3442,'_dt_fancy_header_title_heading',''),(18845,3442,'_dt_fancy_header_breadcrumbs_bg_color','disabled'),(18844,3442,'_dt_fancy_header_breadcrumbs_text_color','#ffffff'),(18843,3442,'_dt_fancy_header_breadcrumbs','disabled'),(18842,3442,'_dt_fancy_header_breadcrumbs_heading',''),(18841,3442,'_dt_fancy_header_padding-bottom','0px'),(18840,3442,'_dt_fancy_header_padding-top','0px'),(18839,3442,'_dt_fancy_header_height','140'),(18838,3442,'_dt_fancy_header_title_aligment','all_left'),(18837,3442,'_dt_fancy_header_layout_heading',''),(18836,3442,'_dt_mobile_page_padding_left',''),(18835,3442,'_dt_mobile_page_padding_bottom',''),(18834,3442,'_dt_mobile_page_padding_right',''),(18833,3442,'_dt_mobile_page_padding_top',''),(18832,3442,'_dt_page_overrides_left_margin',''),(18831,3442,'_dt_page_overrides_bottom_margin',''),(18830,3442,'_dt_page_overrides_right_margin',''),(18829,3442,'_dt_page_overrides_top_margin','1%'),(18828,3442,'_dt_header_disabled_transparent_bg_opacity','50'),(18827,3442,'_dt_header_disabled_transparent_bg_color','#000000'),(18826,3442,'_dt_header_disabled_transparent_top_bar_bg_opacity','25'),(18825,3442,'_dt_header_disabled_transparent_top_bar_bg_color','#ffffff'),(18824,3442,'_dt_header_disabled_transparent_bg_color_scheme','light'),(18823,3442,'_dt_header_disabled_background','normal'),(18822,3442,'_dt_header_transparent_bg_opacity','50'),(18821,3442,'_dt_header_transparent_bg_color','#000000'),(18820,3442,'_dt_header_transparent_top_bar_bg_opacity','25'),(18819,3442,'_dt_header_transparent_top_bar_bg_color','#ffffff'),(18818,3442,'_dt_header_transparent_bg_color_scheme','light'),(18817,3442,'_dt_header_background_below_slideshow','disabled'),(18816,3442,'_dt_header_background','normal'),(18815,3442,'_dt_header_title','fancy'),(18814,3442,'_dt_footer_hide_on_mobile','0'),(18813,3442,'_dt_footer_widgetarea_id','sidebar_2'),(18812,3442,'_dt_footer_show','1'),(18811,3442,'_dt_sidebar_hide_on_mobile','0'),(18810,3442,'_dt_sidebar_widgetarea_id','sidebar_1'),(18809,3442,'_dt_sidebar_position','disabled'),(18808,3442,'_product_version','8.0.2'),(18807,3442,'_wc_review_count','0'),(18806,3442,'_wc_average_rating','0'),(18805,3442,'_stock_status','instock'),(18804,3442,'_stock',NULL),(18803,3442,'_download_expiry','-1'),(18802,3442,'_download_limit','-1'),(18801,3442,'_downloadable','no'),(18800,3442,'_virtual','no'),(18799,3442,'_sold_individually','no'),(18798,3442,'_backorders','no'),(18797,3442,'_manage_stock','no'),(18796,3442,'_tax_class',''),(18795,3442,'_tax_status','taxable'),(18794,3442,'total_sales','0'),(18793,3441,'_edit_last','1'),(18792,3441,'_edit_lock','1694853639:1'),(18791,3441,'the7_fancy_title_css','#main {\n  padding-top: 1%;\n}\n.fancy-header {\n  background-image: url(\'https://farmchemie.yasithawd.com/wp-content/uploads/2023/09/Super-PUP_logo-1.png\');\n  background-repeat: no-repeat;\n  background-position: center center;\n  background-size: auto auto;\n  background-color: #ffffff;\n}\n.mobile-false .fancy-header {\n  background-attachment: scroll;\n}\n.fancy-header .wf-wrap {\n  min-height: 140px;\n  padding-top: 0px;\n  padding-bottom: 0px;\n}\n.fancy-header .fancy-title {\n  font-size: 32px;\n  line-height: 36px;\n  color: #079547;\n  text-transform: none;\n}\n.fancy-header .fancy-subtitle {\n  font-size: 24px;\n  line-height: 26px;\n  color: #792c8a;\n  text-transform: none;\n}\n.fancy-header .breadcrumbs {\n  color: #ffffff;\n}\n.fancy-header-overlay {\n  background: rgba(0,0,0,0.5);\n}\n@media screen and (max-width: 778px) {\n  .fancy-header .wf-wrap {\n    min-height: 140px;\n  }\n  .fancy-header .fancy-title {\n    font-size: 30px;\n    line-height: 38px;\n  }\n  .fancy-header .fancy-subtitle {\n    font-size: 20px;\n    line-height: 28px;\n  }\n  .fancy-header.breadcrumbs-mobile-off .breadcrumbs {\n    display: none;\n  }\n  #fancy-header > .wf-wrap {\n    flex-flow: column wrap;\n    align-items: center;\n    justify-content: center;\n    padding-bottom: 0px !important;\n  }\n  .fancy-header.title-left .breadcrumbs {\n    text-align: center;\n    float: none;\n  }\n  .breadcrumbs {\n    margin-bottom: 10px;\n  }\n  .breadcrumbs.breadcrumbs-bg {\n    margin-top: 10px;\n  }\n  .fancy-header.title-right .breadcrumbs {\n    margin: 10px 0 10px 0;\n  }\n  #fancy-header .hgroup,\n  #fancy-header .breadcrumbs {\n    text-align: center;\n  }\n  .fancy-header .hgroup {\n    padding-bottom: 5px;\n  }\n  .breadcrumbs-off .hgroup {\n    padding-bottom: 5px;\n  }\n  .title-right .hgroup {\n    padding: 0 0 5px 0;\n  }\n  .title-right.breadcrumbs-off .hgroup {\n    padding-top: 5px;\n  }\n  .title-left.disabled-bg .breadcrumbs {\n    margin-bottom: 0;\n  }\n}\n'),(18892,3445,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:600;s:6:\"height\";i:600;s:4:\"file\";s:29:\"2023/09/Canny-Boost_600px.png\";s:8:\"filesize\";i:79146;s:5:\"sizes\";a:4:{s:6:\"medium\";a:5:{s:4:\"file\";s:29:\"Canny-Boost_600px-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:69115;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:29:\"Canny-Boost_600px-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:21968;}s:21:\"woocommerce_thumbnail\";a:6:{s:4:\"file\";s:29:\"Canny-Boost_600px-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:69115;s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:5:{s:4:\"file\";s:29:\"Canny-Boost_600px-200x200.png\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:34592;}}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:{}}}'),(18891,3445,'_wp_attached_file','2023/09/Canny-Boost_600px.png'),(18890,3441,'_thumbnail_id','3741'),(28415,3740,'_wp_attached_file','2023/09/Super-PUP_logo-1.png'),(18889,3444,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:300;s:6:\"height\";i:79;s:4:\"file\";s:26:\"2023/09/Super-PUP_logo.png\";s:8:\"filesize\";i:2168;s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:25:\"Super-PUP_logo-150x79.png\";s:5:\"width\";i:150;s:6:\"height\";i:79;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:2963;}s:29:\"woocommerce_gallery_thumbnail\";a:5:{s:4:\"file\";s:25:\"Super-PUP_logo-200x79.png\";s:5:\"width\";i:200;s:6:\"height\";i:79;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:3683;}}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:{}}}'),(18888,3444,'_wp_attached_file','2023/09/Super-PUP_logo.png'),(18886,3443,'_wp_attached_file','2023/09/Super-PUP_Box_600px.png'),(18885,3442,'_edit_last','1'),(18884,3442,'_edit_lock','1694485533:1'),(18868,3442,'_dt_fancy_header_bg_fullscreen','0'),(18869,3442,'_dt_fancy_header_bg_overlay','0'),(18870,3442,'_dt_fancy_header_overlay_color','#000'),(18871,3442,'_dt_fancy_header_bg_overlay_opacity','50'),(18872,3442,'_dt_fancy_header_scroll_effect','default'),(18873,3442,'_dt_fancy_header_bg_parallax','0.5'),(18874,3442,'_dt_fancy_header_responsiveness_heading',''),(18875,3442,'_dt_fancy_header_responsiveness','enabled'),(18876,3442,'_dt_fancy_header_responsiveness_switch','778px'),(18877,3442,'_dt_fancy_header_responsive_height','140'),(18878,3442,'_dt_fancy_header_responsive_font_size','30'),(18879,3442,'_dt_fancy_header_responsive_title_line_height','38'),(18880,3442,'_dt_fancy_header_responsive_subtitle_font_size','20'),(18881,3442,'_dt_fancy_header_responsive_subtitle_line_height','28'),(18882,3442,'_dt_fancy_header_responsive_breadcrumbs','disabled'),(18883,3442,'the7_fancy_title_css','#main {\n  padding-top: 1%;\n}\n.fancy-header {\n  background-image: url(\'https://farmchemie.yasithawd.com/wp-content/uploads/2023/09/Canny-Boost_logo.png\');\n  background-repeat: no-repeat;\n  background-position: center center;\n  background-size: auto auto;\n  background-color: #ffffff;\n}\n.mobile-false .fancy-header {\n  background-attachment: scroll;\n}\n.fancy-header .wf-wrap {\n  min-height: 140px;\n  padding-top: 0px;\n  padding-bottom: 0px;\n}\n.fancy-header .fancy-title {\n  font-size: 32px;\n  line-height: 36px;\n  color: #079547;\n  text-transform: none;\n}\n.fancy-header .fancy-subtitle {\n  font-size: 24px;\n  line-height: 26px;\n  color: #792c8a;\n  text-transform: none;\n}\n.fancy-header .breadcrumbs {\n  color: #ffffff;\n}\n.fancy-header-overlay {\n  background: rgba(0,0,0,0.5);\n}\n@media screen and (max-width: 778px) {\n  .fancy-header .wf-wrap {\n    min-height: 140px;\n  }\n  .fancy-header .fancy-title {\n    font-size: 30px;\n    line-height: 38px;\n  }\n  .fancy-header .fancy-subtitle {\n    font-size: 20px;\n    line-height: 28px;\n  }\n  .fancy-header.breadcrumbs-mobile-off .breadcrumbs {\n    display: none;\n  }\n  #fancy-header > .wf-wrap {\n    flex-flow: column wrap;\n    align-items: center;\n    justify-content: center;\n    padding-bottom: 0px !important;\n  }\n  .fancy-header.title-left .breadcrumbs {\n    text-align: center;\n    float: none;\n  }\n  .breadcrumbs {\n    margin-bottom: 10px;\n  }\n  .breadcrumbs.breadcrumbs-bg {\n    margin-top: 10px;\n  }\n  .fancy-header.title-right .breadcrumbs {\n    margin: 10px 0 10px 0;\n  }\n  #fancy-header .hgroup,\n  #fancy-header .breadcrumbs {\n    text-align: center;\n  }\n  .fancy-header .hgroup {\n    padding-bottom: 5px;\n  }\n  .breadcrumbs-off .hgroup {\n    padding-bottom: 5px;\n  }\n  .title-right .hgroup {\n    padding: 0 0 5px 0;\n  }\n  .title-right.breadcrumbs-off .hgroup {\n    padding-top: 5px;\n  }\n  .title-left.disabled-bg .breadcrumbs {\n    margin-bottom: 0;\n  }\n}\n'),(18867,3442,'_dt_fancy_header_bg_position_y','center'),(18973,3447,'_dt_fancy_header_overlay_color','#000'),(18887,3443,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:600;s:6:\"height\";i:600;s:4:\"file\";s:31:\"2023/09/Super-PUP_Box_600px.png\";s:8:\"filesize\";i:57385;s:5:\"sizes\";a:4:{s:6:\"medium\";a:5:{s:4:\"file\";s:31:\"Super-PUP_Box_600px-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:49431;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:31:\"Super-PUP_Box_600px-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:16291;}s:21:\"woocommerce_thumbnail\";a:6:{s:4:\"file\";s:31:\"Super-PUP_Box_600px-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:49431;s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:5:{s:4:\"file\";s:31:\"Super-PUP_Box_600px-200x200.png\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:25626;}}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:{}}}'),(18972,3447,'_dt_fancy_header_bg_overlay','0'),(18971,3447,'_dt_fancy_header_bg_fullscreen','0'),(18970,3447,'_dt_fancy_header_bg_position_y','center'),(18969,3447,'_dt_fancy_header_bg_position_x','center'),(18968,3447,'_dt_fancy_header_bg_repeat','no-repeat'),(18991,3449,'_wp_attached_file','2023/09/Canny-BE_90.png'),(18967,3447,'_dt_fancy_header_bg_image','a:1:{i:0;i:3449;}'),(18966,3447,'_dt_fancy_header_bg_image_origin','custom'),(18965,3447,'_dt_fancy_header_bg_color','#ffffff'),(18964,3447,'_dt_fancy_header_bg_heading',''),(18963,3447,'_dt_fancy_header_subtitle_color','#792c8a'),(18962,3447,'_dt_fancy_header_subtitle_color_mode','color'),(18961,3447,'_dt_fancy_header_subtitle_text_transform','none'),(18960,3447,'_dt_fancy_header_subtitle_line_height','26'),(18959,3447,'_dt_fancy_header_subtitle_font_size','24'),(18958,3447,'_dt_fancy_header_subtitle',''),(18957,3447,'_dt_fancy_header_subtitle_heading',''),(18956,3447,'_dt_fancy_header_title_color','#079547'),(18955,3447,'_dt_fancy_header_title_color_mode','color'),(18954,3447,'_dt_fancy_header_text_transform','none'),(18953,3447,'_dt_fancy_header_title_line_height','36'),(18952,3447,'_dt_fancy_header_title_font_size','32'),(18951,3447,'_dt_fancy_header_title',''),(18950,3447,'_dt_fancy_header_title_mode','custom'),(18949,3447,'_dt_fancy_header_title_heading',''),(18948,3447,'_dt_fancy_header_breadcrumbs_bg_color','disabled'),(18947,3447,'_dt_fancy_header_breadcrumbs_text_color','#ffffff'),(18946,3447,'_dt_fancy_header_breadcrumbs','disabled'),(18945,3447,'_dt_fancy_header_breadcrumbs_heading',''),(18944,3447,'_dt_fancy_header_padding-bottom','0px'),(18943,3447,'_dt_fancy_header_padding-top','0px'),(18942,3447,'_dt_fancy_header_height','140'),(18941,3447,'_dt_fancy_header_title_aligment','all_left'),(18940,3447,'_dt_fancy_header_layout_heading',''),(18939,3447,'_dt_mobile_page_padding_left',''),(18938,3447,'_dt_mobile_page_padding_bottom',''),(18937,3447,'_dt_mobile_page_padding_right',''),(18936,3447,'_dt_mobile_page_padding_top',''),(18935,3447,'_dt_page_overrides_left_margin',''),(18934,3447,'_dt_page_overrides_bottom_margin',''),(18933,3447,'_dt_page_overrides_right_margin',''),(18931,3447,'_dt_header_disabled_transparent_bg_opacity','50'),(18932,3447,'_dt_page_overrides_top_margin','1%'),(18928,3447,'_dt_header_disabled_transparent_top_bar_bg_color','#ffffff'),(18927,3447,'_dt_header_disabled_transparent_bg_color_scheme','light'),(18926,3447,'_dt_header_disabled_background','normal'),(18925,3447,'_dt_header_transparent_bg_opacity','50'),(18924,3447,'_dt_header_transparent_bg_color','#000000'),(18923,3447,'_dt_header_transparent_top_bar_bg_opacity','25'),(18922,3447,'_dt_header_transparent_top_bar_bg_color','#ffffff'),(18921,3447,'_dt_header_transparent_bg_color_scheme','light'),(18920,3447,'_dt_header_background_below_slideshow','disabled'),(18919,3447,'_dt_header_background','normal'),(18918,3447,'_dt_header_title','fancy'),(18917,3447,'_dt_footer_hide_on_mobile','0'),(18916,3447,'_dt_footer_widgetarea_id','sidebar_2'),(18915,3447,'_dt_footer_show','1'),(18914,3447,'_dt_sidebar_hide_on_mobile','0'),(18913,3447,'_dt_sidebar_widgetarea_id','sidebar_1'),(18912,3447,'_dt_sidebar_position','disabled'),(18911,3447,'_product_version','8.0.2'),(18910,3447,'_wc_review_count','0'),(18909,3447,'_wc_average_rating','0'),(18907,3447,'_stock',NULL),(18908,3447,'_stock_status','instock'),(18893,3446,'_wp_attached_file','2023/09/Canny-Boost_logo.png'),(18894,3446,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:300;s:6:\"height\";i:76;s:4:\"file\";s:28:\"2023/09/Canny-Boost_logo.png\";s:8:\"filesize\";i:1803;s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:27:\"Canny-Boost_logo-150x76.png\";s:5:\"width\";i:150;s:6:\"height\";i:76;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:2499;}s:29:\"woocommerce_gallery_thumbnail\";a:5:{s:4:\"file\";s:27:\"Canny-Boost_logo-200x76.png\";s:5:\"width\";i:200;s:6:\"height\";i:76;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:3072;}}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:{}}}'),(18895,3442,'_thumbnail_id','3445'),(18896,3447,'total_sales','0'),(18897,3447,'_tax_status','taxable'),(18898,3447,'_tax_class',''),(18899,3447,'_manage_stock','no'),(18900,3447,'_backorders','no'),(18901,3447,'_sold_individually','no'),(18902,3447,'_virtual','no'),(18903,3447,'_downloadable','no'),(18904,3447,'_download_limit','-1'),(18905,3447,'_download_expiry','-1'),(18906,3447,'_thumbnail_id','3448'),(18865,3442,'_dt_fancy_header_bg_repeat','no-repeat'),(18866,3442,'_dt_fancy_header_bg_position_x','center'),(19019,3450,'_dt_header_transparent_top_bar_bg_color','#ffffff'),(18929,3447,'_dt_header_disabled_transparent_top_bar_bg_opacity','25'),(18930,3447,'_dt_header_disabled_transparent_bg_color','#000000'),(19018,3450,'_dt_header_transparent_bg_color_scheme','light'),(19017,3450,'_dt_header_background_below_slideshow','disabled'),(19016,3450,'_dt_header_background','normal'),(19015,3450,'_dt_header_title','fancy'),(19014,3450,'_dt_footer_hide_on_mobile','0'),(19013,3450,'_dt_footer_widgetarea_id','sidebar_2'),(19012,3450,'_dt_footer_show','1'),(19011,3450,'_dt_sidebar_hide_on_mobile','0'),(19010,3450,'_dt_sidebar_widgetarea_id','sidebar_1'),(19009,3450,'_dt_sidebar_position','disabled'),(19008,3450,'_product_version','8.0.2'),(19007,3450,'_wc_review_count','0'),(19006,3450,'_wc_average_rating','0'),(19005,3450,'_stock_status','instock'),(19004,3450,'_stock',NULL),(19003,3450,'_thumbnail_id','3451'),(19002,3450,'_download_expiry','-1'),(19001,3450,'_download_limit','-1'),(19000,3450,'_downloadable','no'),(18999,3450,'_virtual','no'),(18998,3450,'_sold_individually','no'),(18997,3450,'_backorders','no'),(18996,3450,'_manage_stock','no'),(18993,3450,'total_sales','0'),(18994,3450,'_tax_status','taxable'),(18992,3449,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:300;s:6:\"height\";i:76;s:4:\"file\";s:23:\"2023/09/Canny-BE_90.png\";s:8:\"filesize\";i:1597;s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:22:\"Canny-BE_90-150x76.png\";s:5:\"width\";i:150;s:6:\"height\";i:76;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:1697;}s:29:\"woocommerce_gallery_thumbnail\";a:5:{s:4:\"file\";s:22:\"Canny-BE_90-200x76.png\";s:5:\"width\";i:200;s:6:\"height\";i:76;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:2543;}}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:{}}}'),(18990,3448,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:600;s:6:\"height\";i:600;s:4:\"file\";s:29:\"2023/09/Canny-BE_90_600px.png\";s:8:\"filesize\";i:40574;s:5:\"sizes\";a:4:{s:6:\"medium\";a:5:{s:4:\"file\";s:29:\"Canny-BE_90_600px-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:37202;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:29:\"Canny-BE_90_600px-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:12883;}s:21:\"woocommerce_thumbnail\";a:6:{s:4:\"file\";s:29:\"Canny-BE_90_600px-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:37202;s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:5:{s:4:\"file\";s:29:\"Canny-BE_90_600px-200x200.png\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:19750;}}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:{}}}'),(18989,3448,'_wp_attached_file','2023/09/Canny-BE_90_600px.png'),(18988,3447,'_edit_last','1'),(18995,3450,'_tax_class',''),(18987,3447,'_edit_lock','1694485672:1'),(18978,3447,'_dt_fancy_header_responsiveness','enabled'),(18979,3447,'_dt_fancy_header_responsiveness_switch','778px'),(18980,3447,'_dt_fancy_header_responsive_height','140'),(18981,3447,'_dt_fancy_header_responsive_font_size','30'),(18982,3447,'_dt_fancy_header_responsive_title_line_height','38'),(18983,3447,'_dt_fancy_header_responsive_subtitle_font_size','20'),(18984,3447,'_dt_fancy_header_responsive_subtitle_line_height','28'),(18985,3447,'_dt_fancy_header_responsive_breadcrumbs','disabled'),(18986,3447,'the7_fancy_title_css','#main {\n  padding-top: 1%;\n}\n.fancy-header {\n  background-image: url(\'https://farmchemie.yasithawd.com/wp-content/uploads/2023/09/Canny-BE_90.png\');\n  background-repeat: no-repeat;\n  background-position: center center;\n  background-size: auto auto;\n  background-color: #ffffff;\n}\n.mobile-false .fancy-header {\n  background-attachment: scroll;\n}\n.fancy-header .wf-wrap {\n  min-height: 140px;\n  padding-top: 0px;\n  padding-bottom: 0px;\n}\n.fancy-header .fancy-title {\n  font-size: 32px;\n  line-height: 36px;\n  color: #079547;\n  text-transform: none;\n}\n.fancy-header .fancy-subtitle {\n  font-size: 24px;\n  line-height: 26px;\n  color: #792c8a;\n  text-transform: none;\n}\n.fancy-header .breadcrumbs {\n  color: #ffffff;\n}\n.fancy-header-overlay {\n  background: rgba(0,0,0,0.5);\n}\n@media screen and (max-width: 778px) {\n  .fancy-header .wf-wrap {\n    min-height: 140px;\n  }\n  .fancy-header .fancy-title {\n    font-size: 30px;\n    line-height: 38px;\n  }\n  .fancy-header .fancy-subtitle {\n    font-size: 20px;\n    line-height: 28px;\n  }\n  .fancy-header.breadcrumbs-mobile-off .breadcrumbs {\n    display: none;\n  }\n  #fancy-header > .wf-wrap {\n    flex-flow: column wrap;\n    align-items: center;\n    justify-content: center;\n    padding-bottom: 0px !important;\n  }\n  .fancy-header.title-left .breadcrumbs {\n    text-align: center;\n    float: none;\n  }\n  .breadcrumbs {\n    margin-bottom: 10px;\n  }\n  .breadcrumbs.breadcrumbs-bg {\n    margin-top: 10px;\n  }\n  .fancy-header.title-right .breadcrumbs {\n    margin: 10px 0 10px 0;\n  }\n  #fancy-header .hgroup,\n  #fancy-header .breadcrumbs {\n    text-align: center;\n  }\n  .fancy-header .hgroup {\n    padding-bottom: 5px;\n  }\n  .breadcrumbs-off .hgroup {\n    padding-bottom: 5px;\n  }\n  .title-right .hgroup {\n    padding: 0 0 5px 0;\n  }\n  .title-right.breadcrumbs-off .hgroup {\n    padding-top: 5px;\n  }\n  .title-left.disabled-bg .breadcrumbs {\n    margin-bottom: 0;\n  }\n}\n'),(18977,3447,'_dt_fancy_header_responsiveness_heading',''),(19083,3450,'the7_fancy_title_css','#main {\n  padding-top: 1%;\n}\n.fancy-header {\n  background-image: url(\'https://farmchemie.yasithawd.com/wp-content/uploads/2023/09/Canny-BREW_Logo.png\');\n  background-repeat: no-repeat;\n  background-position: center center;\n  background-size: auto auto;\n  background-color: #ffffff;\n}\n.mobile-false .fancy-header {\n  background-attachment: scroll;\n}\n.fancy-header .wf-wrap {\n  min-height: 140px;\n  padding-top: 0px;\n  padding-bottom: 0px;\n}\n.fancy-header .fancy-title {\n  font-size: 32px;\n  line-height: 36px;\n  color: #079547;\n  text-transform: none;\n}\n.fancy-header .fancy-subtitle {\n  font-size: 24px;\n  line-height: 26px;\n  color: #792c8a;\n  text-transform: none;\n}\n.fancy-header .breadcrumbs {\n  color: #ffffff;\n}\n.fancy-header-overlay {\n  background: rgba(0,0,0,0.5);\n}\n@media screen and (max-width: 778px) {\n  .fancy-header .wf-wrap {\n    min-height: 140px;\n  }\n  .fancy-header .fancy-title {\n    font-size: 30px;\n    line-height: 38px;\n  }\n  .fancy-header .fancy-subtitle {\n    font-size: 20px;\n    line-height: 28px;\n  }\n  .fancy-header.breadcrumbs-mobile-off .breadcrumbs {\n    display: none;\n  }\n  #fancy-header > .wf-wrap {\n    flex-flow: column wrap;\n    align-items: center;\n    justify-content: center;\n    padding-bottom: 0px !important;\n  }\n  .fancy-header.title-left .breadcrumbs {\n    text-align: center;\n    float: none;\n  }\n  .breadcrumbs {\n    margin-bottom: 10px;\n  }\n  .breadcrumbs.breadcrumbs-bg {\n    margin-top: 10px;\n  }\n  .fancy-header.title-right .breadcrumbs {\n    margin: 10px 0 10px 0;\n  }\n  #fancy-header .hgroup,\n  #fancy-header .breadcrumbs {\n    text-align: center;\n  }\n  .fancy-header .hgroup {\n    padding-bottom: 5px;\n  }\n  .breadcrumbs-off .hgroup {\n    padding-bottom: 5px;\n  }\n  .title-right .hgroup {\n    padding: 0 0 5px 0;\n  }\n  .title-right.breadcrumbs-off .hgroup {\n    padding-top: 5px;\n  }\n  .title-left.disabled-bg .breadcrumbs {\n    margin-bottom: 0;\n  }\n}\n'),(19082,3450,'_dt_fancy_header_responsive_breadcrumbs','disabled'),(19081,3450,'_dt_fancy_header_responsive_subtitle_line_height','28'),(19080,3450,'_dt_fancy_header_responsive_subtitle_font_size','20'),(19079,3450,'_dt_fancy_header_responsive_title_line_height','38'),(19078,3450,'_dt_fancy_header_responsive_font_size','30'),(19077,3450,'_dt_fancy_header_responsive_height','140'),(19076,3450,'_dt_fancy_header_responsiveness_switch','778px'),(19075,3450,'_dt_fancy_header_responsiveness','enabled'),(19074,3450,'_dt_fancy_header_responsiveness_heading',''),(19073,3450,'_dt_fancy_header_bg_parallax','0.5'),(19070,3450,'_dt_fancy_header_overlay_color','#000'),(19071,3450,'_dt_fancy_header_bg_overlay_opacity','50'),(19072,3450,'_dt_fancy_header_scroll_effect','default'),(19069,3450,'_dt_fancy_header_bg_overlay','0'),(19068,3450,'_dt_fancy_header_bg_fullscreen','0'),(19067,3450,'_dt_fancy_header_bg_position_y','center'),(19066,3450,'_dt_fancy_header_bg_position_x','center'),(19065,3450,'_dt_fancy_header_bg_repeat','no-repeat'),(19086,3451,'_wp_attached_file','2023/09/Canny-BREW_90_600px.png'),(19064,3450,'_dt_fancy_header_bg_image','a:1:{i:0;i:3452;}'),(19063,3450,'_dt_fancy_header_bg_image_origin','custom'),(19062,3450,'_dt_fancy_header_bg_color','#ffffff'),(19061,3450,'_dt_fancy_header_bg_heading',''),(19060,3450,'_dt_fancy_header_subtitle_color','#792c8a'),(19059,3450,'_dt_fancy_header_subtitle_color_mode','color'),(19058,3450,'_dt_fancy_header_subtitle_text_transform','none'),(19057,3450,'_dt_fancy_header_subtitle_line_height','26'),(19056,3450,'_dt_fancy_header_subtitle_font_size','24'),(19055,3450,'_dt_fancy_header_subtitle',''),(19054,3450,'_dt_fancy_header_subtitle_heading',''),(19053,3450,'_dt_fancy_header_title_color','#079547'),(19052,3450,'_dt_fancy_header_title_color_mode','color'),(19051,3450,'_dt_fancy_header_text_transform','none'),(19050,3450,'_dt_fancy_header_title_line_height','36'),(19049,3450,'_dt_fancy_header_title_font_size','32'),(19048,3450,'_dt_fancy_header_title',''),(19024,3450,'_dt_header_disabled_transparent_bg_color_scheme','light'),(19025,3450,'_dt_header_disabled_transparent_top_bar_bg_color','#ffffff'),(19026,3450,'_dt_header_disabled_transparent_top_bar_bg_opacity','25'),(19027,3450,'_dt_header_disabled_transparent_bg_color','#000000'),(19028,3450,'_dt_header_disabled_transparent_bg_opacity','50'),(19029,3450,'_dt_page_overrides_top_margin','1%'),(19030,3450,'_dt_page_overrides_right_margin',''),(19031,3450,'_dt_page_overrides_bottom_margin',''),(19032,3450,'_dt_page_overrides_left_margin',''),(19033,3450,'_dt_mobile_page_padding_top',''),(19034,3450,'_dt_mobile_page_padding_right',''),(19035,3450,'_dt_mobile_page_padding_bottom',''),(19036,3450,'_dt_mobile_page_padding_left',''),(19037,3450,'_dt_fancy_header_layout_heading',''),(19038,3450,'_dt_fancy_header_title_aligment','all_left'),(19039,3450,'_dt_fancy_header_height','140'),(19040,3450,'_dt_fancy_header_padding-top','0px'),(19041,3450,'_dt_fancy_header_padding-bottom','0px'),(19042,3450,'_dt_fancy_header_breadcrumbs_heading',''),(19043,3450,'_dt_fancy_header_breadcrumbs','disabled'),(19044,3450,'_dt_fancy_header_breadcrumbs_text_color','#ffffff'),(19045,3450,'_dt_fancy_header_breadcrumbs_bg_color','disabled'),(19046,3450,'_dt_fancy_header_title_heading',''),(19047,3450,'_dt_fancy_header_title_mode','custom'),(19023,3450,'_dt_header_disabled_background','normal'),(19153,3453,'_dt_fancy_header_subtitle_font_size','24'),(19152,3453,'_dt_fancy_header_subtitle',''),(19151,3453,'_dt_fancy_header_subtitle_heading',''),(19150,3453,'_dt_fancy_header_title_color','#079547'),(19149,3453,'_dt_fancy_header_title_color_mode','color'),(19148,3453,'_dt_fancy_header_text_transform','none'),(19147,3453,'_dt_fancy_header_title_line_height','36'),(19146,3453,'_dt_fancy_header_title_font_size','32'),(19145,3453,'_dt_fancy_header_title',''),(19144,3453,'_dt_fancy_header_title_mode','custom'),(19143,3453,'_dt_fancy_header_title_heading',''),(19142,3453,'_dt_fancy_header_breadcrumbs_bg_color','disabled'),(19141,3453,'_dt_fancy_header_breadcrumbs_text_color','#ffffff'),(19140,3453,'_dt_fancy_header_breadcrumbs','disabled'),(19139,3453,'_dt_fancy_header_breadcrumbs_heading',''),(19138,3453,'_dt_fancy_header_padding-bottom','0px'),(19137,3453,'_dt_fancy_header_padding-top','0px'),(19136,3453,'_dt_fancy_header_height','140'),(19135,3453,'_dt_fancy_header_title_aligment','all_left'),(19134,3453,'_dt_fancy_header_layout_heading',''),(19133,3453,'_dt_mobile_page_padding_left',''),(19132,3453,'_dt_mobile_page_padding_bottom',''),(19131,3453,'_dt_mobile_page_padding_right',''),(19130,3453,'_dt_mobile_page_padding_top',''),(19129,3453,'_dt_page_overrides_left_margin',''),(19128,3453,'_dt_page_overrides_bottom_margin',''),(19127,3453,'_dt_page_overrides_right_margin',''),(19126,3453,'_dt_page_overrides_top_margin','1%'),(19125,3453,'_dt_header_disabled_transparent_bg_opacity','50'),(19124,3453,'_dt_header_disabled_transparent_bg_color','#000000'),(19123,3453,'_dt_header_disabled_transparent_top_bar_bg_opacity','25'),(19122,3453,'_dt_header_disabled_transparent_top_bar_bg_color','#ffffff'),(19121,3453,'_dt_header_disabled_transparent_bg_color_scheme','light'),(19120,3453,'_dt_header_disabled_background','normal'),(19119,3453,'_dt_header_transparent_bg_opacity','50'),(19118,3453,'_dt_header_transparent_bg_color','#000000'),(19117,3453,'_dt_header_transparent_top_bar_bg_opacity','25'),(19116,3453,'_dt_header_transparent_top_bar_bg_color','#ffffff'),(19115,3453,'_dt_header_transparent_bg_color_scheme','light'),(19112,3453,'_dt_header_title','fancy'),(19113,3453,'_dt_header_background','normal'),(19114,3453,'_dt_header_background_below_slideshow','disabled'),(19110,3453,'_dt_footer_widgetarea_id','sidebar_2'),(19109,3453,'_dt_footer_show','1'),(19108,3453,'_dt_sidebar_hide_on_mobile','0'),(19107,3453,'_dt_sidebar_widgetarea_id','sidebar_1'),(19106,3453,'_dt_sidebar_position','disabled'),(19105,3453,'_product_version','8.0.2'),(19104,3453,'_wc_review_count','0'),(19103,3453,'_wc_average_rating','0'),(19102,3453,'_stock_status','instock'),(19101,3453,'_stock',NULL),(19100,3453,'_thumbnail_id','3454'),(19099,3453,'_download_expiry','-1'),(19098,3453,'_download_limit','-1'),(19097,3453,'_downloadable','no'),(19096,3453,'_virtual','no'),(19095,3453,'_sold_individually','no'),(19094,3453,'_backorders','no'),(19093,3453,'_manage_stock','no'),(19092,3453,'_tax_class',''),(19090,3453,'total_sales','0'),(19091,3453,'_tax_status','taxable'),(19087,3451,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:600;s:6:\"height\";i:600;s:4:\"file\";s:31:\"2023/09/Canny-BREW_90_600px.png\";s:8:\"filesize\";i:46239;s:5:\"sizes\";a:4:{s:6:\"medium\";a:5:{s:4:\"file\";s:31:\"Canny-BREW_90_600px-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:43317;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:31:\"Canny-BREW_90_600px-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:14549;}s:21:\"woocommerce_thumbnail\";a:6:{s:4:\"file\";s:31:\"Canny-BREW_90_600px-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:43317;s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:5:{s:4:\"file\";s:31:\"Canny-BREW_90_600px-200x200.png\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:22650;}}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:{}}}'),(19088,3452,'_wp_attached_file','2023/09/Canny-BREW_Logo.png'),(19089,3452,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:300;s:6:\"height\";i:76;s:4:\"file\";s:27:\"2023/09/Canny-BREW_Logo.png\";s:8:\"filesize\";i:1976;s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:26:\"Canny-BREW_Logo-150x76.png\";s:5:\"width\";i:150;s:6:\"height\";i:76;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:2202;}s:29:\"woocommerce_gallery_thumbnail\";a:5:{s:4:\"file\";s:26:\"Canny-BREW_Logo-200x76.png\";s:5:\"width\";i:200;s:6:\"height\";i:76;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:2724;}}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:{}}}'),(19085,3450,'_edit_last','1'),(19190,3461,'_tax_status','taxable'),(19111,3453,'_dt_footer_hide_on_mobile','0'),(20733,3412,'dt-img-hide-title','0'),(19186,3455,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:300;s:6:\"height\";i:76;s:4:\"file\";s:29:\"2023/09/Canny-CaP_60_logo.png\";s:8:\"filesize\";i:1591;s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:28:\"Canny-CaP_60_logo-150x76.png\";s:5:\"width\";i:150;s:6:\"height\";i:76;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:2145;}s:29:\"woocommerce_gallery_thumbnail\";a:5:{s:4:\"file\";s:28:\"Canny-CaP_60_logo-200x76.png\";s:5:\"width\";i:200;s:6:\"height\";i:76;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:2889;}}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:{}}}'),(19185,3455,'_wp_attached_file','2023/09/Canny-CaP_60_logo.png'),(19184,3454,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:600;s:6:\"height\";i:600;s:4:\"file\";s:30:\"2023/09/Canny-CaP_90_600px.png\";s:8:\"filesize\";i:46410;s:5:\"sizes\";a:4:{s:6:\"medium\";a:5:{s:4:\"file\";s:30:\"Canny-CaP_90_600px-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:41752;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:30:\"Canny-CaP_90_600px-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:13877;}s:21:\"woocommerce_thumbnail\";a:6:{s:4:\"file\";s:30:\"Canny-CaP_90_600px-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:41752;s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:5:{s:4:\"file\";s:30:\"Canny-CaP_90_600px-200x200.png\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:21666;}}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:{}}}'),(19183,3454,'_wp_attached_file','2023/09/Canny-CaP_90_600px.png'),(19182,3453,'_edit_last','1'),(19181,3453,'_edit_lock','1694486001:1'),(19180,3453,'the7_fancy_title_css','#main {\n  padding-top: 1%;\n}\n.fancy-header {\n  background-image: url(\'https://farmchemie.yasithawd.com/wp-content/uploads/2023/09/Canny-CaP_60_logo.png\');\n  background-repeat: no-repeat;\n  background-position: center center;\n  background-size: auto auto;\n  background-color: #ffffff;\n}\n.mobile-false .fancy-header {\n  background-attachment: scroll;\n}\n.fancy-header .wf-wrap {\n  min-height: 140px;\n  padding-top: 0px;\n  padding-bottom: 0px;\n}\n.fancy-header .fancy-title {\n  font-size: 32px;\n  line-height: 36px;\n  color: #079547;\n  text-transform: none;\n}\n.fancy-header .fancy-subtitle {\n  font-size: 24px;\n  line-height: 26px;\n  color: #792c8a;\n  text-transform: none;\n}\n.fancy-header .breadcrumbs {\n  color: #ffffff;\n}\n.fancy-header-overlay {\n  background: rgba(0,0,0,0.5);\n}\n@media screen and (max-width: 778px) {\n  .fancy-header .wf-wrap {\n    min-height: 140px;\n  }\n  .fancy-header .fancy-title {\n    font-size: 30px;\n    line-height: 38px;\n  }\n  .fancy-header .fancy-subtitle {\n    font-size: 20px;\n    line-height: 28px;\n  }\n  .fancy-header.breadcrumbs-mobile-off .breadcrumbs {\n    display: none;\n  }\n  #fancy-header > .wf-wrap {\n    flex-flow: column wrap;\n    align-items: center;\n    justify-content: center;\n    padding-bottom: 0px !important;\n  }\n  .fancy-header.title-left .breadcrumbs {\n    text-align: center;\n    float: none;\n  }\n  .breadcrumbs {\n    margin-bottom: 10px;\n  }\n  .breadcrumbs.breadcrumbs-bg {\n    margin-top: 10px;\n  }\n  .fancy-header.title-right .breadcrumbs {\n    margin: 10px 0 10px 0;\n  }\n  #fancy-header .hgroup,\n  #fancy-header .breadcrumbs {\n    text-align: center;\n  }\n  .fancy-header .hgroup {\n    padding-bottom: 5px;\n  }\n  .breadcrumbs-off .hgroup {\n    padding-bottom: 5px;\n  }\n  .title-right .hgroup {\n    padding: 0 0 5px 0;\n  }\n  .title-right.breadcrumbs-off .hgroup {\n    padding-top: 5px;\n  }\n  .title-left.disabled-bg .breadcrumbs {\n    margin-bottom: 0;\n  }\n}\n'),(19157,3453,'_dt_fancy_header_subtitle_color','#792c8a'),(19158,3453,'_dt_fancy_header_bg_heading',''),(19159,3453,'_dt_fancy_header_bg_color','#ffffff'),(19160,3453,'_dt_fancy_header_bg_image_origin','custom'),(19161,3453,'_dt_fancy_header_bg_image','a:1:{i:0;i:3455;}'),(19162,3453,'_dt_fancy_header_bg_repeat','no-repeat'),(19163,3453,'_dt_fancy_header_bg_position_x','center'),(19164,3453,'_dt_fancy_header_bg_position_y','center'),(19165,3453,'_dt_fancy_header_bg_fullscreen','0'),(19166,3453,'_dt_fancy_header_bg_overlay','0'),(19167,3453,'_dt_fancy_header_overlay_color','#000'),(19168,3453,'_dt_fancy_header_bg_overlay_opacity','50'),(19169,3453,'_dt_fancy_header_scroll_effect','default'),(19170,3453,'_dt_fancy_header_bg_parallax','0.5'),(19171,3453,'_dt_fancy_header_responsiveness_heading',''),(19172,3453,'_dt_fancy_header_responsiveness','enabled'),(19173,3453,'_dt_fancy_header_responsiveness_switch','778px'),(19174,3453,'_dt_fancy_header_responsive_height','140'),(19175,3453,'_dt_fancy_header_responsive_font_size','30'),(19176,3453,'_dt_fancy_header_responsive_title_line_height','38'),(19177,3453,'_dt_fancy_header_responsive_subtitle_font_size','20'),(19178,3453,'_dt_fancy_header_responsive_subtitle_line_height','28'),(19179,3453,'_dt_fancy_header_responsive_breadcrumbs','disabled'),(19156,3453,'_dt_fancy_header_subtitle_color_mode','color'),(19346,3468,'_dt_fancy_header_bg_image','a:1:{i:0;i:3831;}'),(19345,3468,'_dt_fancy_header_bg_image_origin','custom'),(19344,3468,'_dt_fancy_header_bg_color','#089548'),(19343,3468,'_dt_fancy_header_bg_heading',''),(19342,3468,'_dt_fancy_header_subtitle_color','#ffffff'),(19341,3468,'_dt_fancy_header_subtitle_color_mode','color'),(19340,3468,'_dt_fancy_header_subtitle_text_transform','none'),(19339,3468,'_dt_fancy_header_subtitle_line_height','26'),(19338,3468,'_dt_fancy_header_subtitle_font_size','18'),(19337,3468,'_dt_fancy_header_subtitle',''),(19336,3468,'_dt_fancy_header_subtitle_heading',''),(19335,3468,'_dt_fancy_header_title_color','#ffffff'),(19334,3468,'_dt_fancy_header_title_color_mode','color'),(19333,3468,'_dt_fancy_header_text_transform','none'),(19332,3468,'_dt_fancy_header_title_line_height','36'),(19331,3468,'_dt_fancy_header_title_font_size','30'),(19330,3468,'_dt_fancy_header_title',''),(19329,3468,'_dt_fancy_header_title_mode','generic'),(19328,3468,'_dt_fancy_header_title_heading',''),(19327,3468,'_dt_fancy_header_breadcrumbs_bg_color','disabled'),(19326,3468,'_dt_fancy_header_breadcrumbs_text_color','#ffffff'),(19325,3468,'_dt_fancy_header_breadcrumbs','disabled'),(19324,3468,'_dt_fancy_header_breadcrumbs_heading',''),(19323,3468,'_dt_fancy_header_padding-bottom','0px'),(19322,3468,'_dt_fancy_header_padding-top','0px'),(19321,3468,'_dt_fancy_header_height','300'),(19320,3468,'_dt_fancy_header_title_aligment','all_left'),(19319,3468,'_dt_fancy_header_layout_heading',''),(19318,3468,'_dt_mobile_page_padding_left',''),(19317,3468,'_dt_mobile_page_padding_bottom',''),(19316,3468,'_dt_mobile_page_padding_right',''),(19315,3468,'_dt_mobile_page_padding_top',''),(19314,3468,'_dt_page_overrides_left_margin',''),(19313,3468,'_dt_page_overrides_bottom_margin',''),(19312,3468,'_dt_page_overrides_right_margin',''),(19311,3468,'_dt_page_overrides_top_margin',''),(19310,3468,'_dt_header_disabled_transparent_bg_opacity','50'),(19309,3468,'_dt_header_disabled_transparent_bg_color','#000000'),(19308,3468,'_dt_header_disabled_transparent_top_bar_bg_opacity','25'),(19307,3468,'_dt_header_disabled_transparent_top_bar_bg_color','#ffffff'),(19306,3468,'_dt_header_disabled_transparent_bg_color_scheme','light'),(19305,3468,'_dt_header_disabled_background','normal'),(19302,3468,'_dt_header_transparent_top_bar_bg_opacity','25'),(19303,3468,'_dt_header_transparent_bg_color','#000000'),(19304,3468,'_dt_header_transparent_bg_opacity','50'),(19299,3468,'_dt_header_background_below_slideshow','disabled'),(19298,3468,'_dt_header_background','normal'),(19297,3468,'_dt_header_title','fancy'),(19296,3468,'_dt_footer_hide_on_mobile','0'),(19295,3468,'_dt_footer_widgetarea_id','sidebar_2'),(19294,3468,'_dt_footer_show','1'),(19293,3468,'_dt_sidebar_hide_on_mobile','0'),(19292,3468,'_dt_sidebar_widgetarea_id','sidebar_1'),(19291,3468,'_dt_sidebar_position','disabled'),(19290,3468,'_wpb_post_custom_layout','default'),(19289,3469,'_wpb_post_custom_layout','default'),(19288,3468,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:1:{s:10:\"shortcodes\";a:1:{s:29:\"1695628071841-097dfc92-54f6-2\";a:3:{s:3:\"tag\";s:13:\"vc_basic_grid\";s:4:\"atts\";a:6:{s:9:\"post_type\";s:4:\"post\";s:9:\"max_items\";s:0:\"\";s:4:\"item\";s:4:\"3501\";s:25:\"initial_loading_animation\";s:8:\"fadeInUp\";s:7:\"grid_id\";s:36:\"vc_gid:1695628071841-097dfc92-54f6-2\";s:10:\"taxonomies\";s:3:\"155\";}s:7:\"content\";s:0:\"\";}}}}'),(19287,3468,'_wpb_vc_js_status','true'),(19284,3468,'_edit_last','1'),(19282,3461,'_wp_page_template','default'),(19281,3461,'_edit_last','1'),(19283,3032,'the7_shortcodes_dynamic_css','a:1:{s:32:\"010f6625dab2644d544b8869b5121f24\";s:3744:\".products-shortcode.products-masonry-shortcode-id-010f6625dab2644d544b8869b5121f24 .filter-bg-decoration .filter-categories a.act {\n  color: #fff;\n}\n.products-shortcode.products-masonry-shortcode-id-010f6625dab2644d544b8869b5121f24:not(.resize-by-browser-width) .dt-css-grid {\n  grid-row-gap: 30px;\n  grid-column-gap: 30px;\n  grid-template-columns: repeat(auto-fill,minmax(,1fr));\n}\n.cssgridlegacy.no-cssgrid .products-shortcode.products-masonry-shortcode-id-010f6625dab2644d544b8869b5121f24:not(.resize-by-browser-width) .dt-css-grid,\n.no-cssgridlegacy.no-cssgrid .products-shortcode.products-masonry-shortcode-id-010f6625dab2644d544b8869b5121f24:not(.resize-by-browser-width) .dt-css-grid {\n  display: flex;\n  flex-flow: row wrap;\n  margin: -15px;\n}\n.cssgridlegacy.no-cssgrid .products-shortcode.products-masonry-shortcode-id-010f6625dab2644d544b8869b5121f24:not(.resize-by-browser-width) .dt-css-grid .wf-cell,\n.no-cssgridlegacy.no-cssgrid .products-shortcode.products-masonry-shortcode-id-010f6625dab2644d544b8869b5121f24:not(.resize-by-browser-width) .dt-css-grid .wf-cell {\n  flex: 1 0 ;\n  max-width: 100%;\n  padding: 15px;\n  box-sizing: border-box;\n}\n.products-shortcode.products-masonry-shortcode-id-010f6625dab2644d544b8869b5121f24.resize-by-browser-width .dt-css-grid {\n  grid-template-columns: repeat(3,1fr);\n  grid-template-rows: auto;\n  grid-column-gap: 30px;\n  grid-row-gap: 30px;\n}\n.cssgridlegacy.no-cssgrid .products-shortcode.products-masonry-shortcode-id-010f6625dab2644d544b8869b5121f24.resize-by-browser-width .dt-css-grid,\n.no-cssgridlegacy.no-cssgrid .products-shortcode.products-masonry-shortcode-id-010f6625dab2644d544b8869b5121f24.resize-by-browser-width .dt-css-grid {\n  margin: -15px;\n}\n.cssgridlegacy.no-cssgrid .products-shortcode.products-masonry-shortcode-id-010f6625dab2644d544b8869b5121f24.resize-by-browser-width .dt-css-grid .wf-cell,\n.no-cssgridlegacy.no-cssgrid .products-shortcode.products-masonry-shortcode-id-010f6625dab2644d544b8869b5121f24.resize-by-browser-width .dt-css-grid .wf-cell {\n  width: 33.333333333333%;\n  padding: 15px;\n}\n@media screen and (max-width: 1199px) {\n  .products-shortcode.products-masonry-shortcode-id-010f6625dab2644d544b8869b5121f24.resize-by-browser-width .dt-css-grid {\n    grid-template-columns: repeat(3,1fr);\n  }\n  .cssgridlegacy.no-cssgrid .products-shortcode.products-masonry-shortcode-id-010f6625dab2644d544b8869b5121f24.resize-by-browser-width .dt-css-grid .wf-cell,\n  .no-cssgridlegacy.no-cssgrid .products-shortcode.products-masonry-shortcode-id-010f6625dab2644d544b8869b5121f24.resize-by-browser-width .dt-css-grid .wf-cell {\n    width: 33.333333333333%;\n  }\n}\n@media screen and (max-width: 991px) {\n  .products-shortcode.products-masonry-shortcode-id-010f6625dab2644d544b8869b5121f24.resize-by-browser-width .dt-css-grid {\n    grid-template-columns: repeat(2,1fr);\n  }\n  .cssgridlegacy.no-cssgrid .products-shortcode.products-masonry-shortcode-id-010f6625dab2644d544b8869b5121f24.resize-by-browser-width .dt-css-grid .wf-cell,\n  .no-cssgridlegacy.no-cssgrid .products-shortcode.products-masonry-shortcode-id-010f6625dab2644d544b8869b5121f24.resize-by-browser-width .dt-css-grid .wf-cell {\n    width: 50%;\n  }\n}\n@media screen and (max-width: 767px) {\n  .products-shortcode.products-masonry-shortcode-id-010f6625dab2644d544b8869b5121f24.resize-by-browser-width .dt-css-grid {\n    grid-template-columns: repeat(1,1fr);\n  }\n  .cssgridlegacy.no-cssgrid .products-shortcode.products-masonry-shortcode-id-010f6625dab2644d544b8869b5121f24.resize-by-browser-width .dt-css-grid .wf-cell,\n  .no-cssgridlegacy.no-cssgrid .products-shortcode.products-masonry-shortcode-id-010f6625dab2644d544b8869b5121f24.resize-by-browser-width .dt-css-grid .wf-cell {\n    width: 100%;\n  }\n}\n\";}'),(19285,3468,'_edit_lock','1695629975:1'),(19280,3461,'_edit_lock','1694405777:1'),(19279,3461,'the7_fancy_title_css','#main {\n  padding-top: 1%;\n}\n.fancy-header {\n  background-image: url(\'https://farmchemie.yasithawd.com/wp-content/uploads/2023/09/Canny-CaP_60_logo.png\');\n  background-repeat: no-repeat;\n  background-position: center center;\n  background-size: auto auto;\n  background-color: #ffffff;\n}\n.mobile-false .fancy-header {\n  background-attachment: scroll;\n}\n.fancy-header .wf-wrap {\n  min-height: 140px;\n  padding-top: 0px;\n  padding-bottom: 0px;\n}\n.fancy-header .fancy-title {\n  font-size: 32px;\n  line-height: 36px;\n  color: #079547;\n  text-transform: none;\n}\n.fancy-header .fancy-subtitle {\n  font-size: 24px;\n  line-height: 26px;\n  color: #792c8a;\n  text-transform: none;\n}\n.fancy-header .breadcrumbs {\n  color: #ffffff;\n}\n.fancy-header-overlay {\n  background: rgba(0,0,0,0.5);\n}\n@media screen and (max-width: 778px) {\n  .fancy-header .wf-wrap {\n    min-height: 140px;\n  }\n  .fancy-header .fancy-title {\n    font-size: 30px;\n    line-height: 38px;\n  }\n  .fancy-header .fancy-subtitle {\n    font-size: 20px;\n    line-height: 28px;\n  }\n  .fancy-header.breadcrumbs-mobile-off .breadcrumbs {\n    display: none;\n  }\n  #fancy-header > .wf-wrap {\n    flex-flow: column wrap;\n    align-items: center;\n    justify-content: center;\n    padding-bottom: 0px !important;\n  }\n  .fancy-header.title-left .breadcrumbs {\n    text-align: center;\n    float: none;\n  }\n  .breadcrumbs {\n    margin-bottom: 10px;\n  }\n  .breadcrumbs.breadcrumbs-bg {\n    margin-top: 10px;\n  }\n  .fancy-header.title-right .breadcrumbs {\n    margin: 10px 0 10px 0;\n  }\n  #fancy-header .hgroup,\n  #fancy-header .breadcrumbs {\n    text-align: center;\n  }\n  .fancy-header .hgroup {\n    padding-bottom: 5px;\n  }\n  .breadcrumbs-off .hgroup {\n    padding-bottom: 5px;\n  }\n  .title-right .hgroup {\n    padding: 0 0 5px 0;\n  }\n  .title-right.breadcrumbs-off .hgroup {\n    padding-top: 5px;\n  }\n  .title-left.disabled-bg .breadcrumbs {\n    margin-bottom: 0;\n  }\n}\n'),(19278,3461,'_dt_fancy_header_responsive_breadcrumbs','disabled'),(19300,3468,'_dt_header_transparent_bg_color_scheme','light'),(19301,3468,'_dt_header_transparent_top_bar_bg_color','#ffffff'),(19374,3474,'_messages','a:22:{s:12:\"mail_sent_ok\";s:45:\"Thank you for your message. It has been sent.\";s:12:\"mail_sent_ng\";s:71:\"There was an error trying to send your message. Please try again later.\";s:16:\"validation_error\";s:61:\"One or more fields have an error. Please check and try again.\";s:4:\"spam\";s:71:\"There was an error trying to send your message. Please try again later.\";s:12:\"accept_terms\";s:69:\"You must accept the terms and conditions before sending your message.\";s:16:\"invalid_required\";s:27:\"Please fill out this field.\";s:16:\"invalid_too_long\";s:32:\"This field has a too long input.\";s:17:\"invalid_too_short\";s:33:\"This field has a too short input.\";s:13:\"upload_failed\";s:46:\"There was an unknown error uploading the file.\";s:24:\"upload_file_type_invalid\";s:49:\"You are not allowed to upload files of this type.\";s:21:\"upload_file_too_large\";s:31:\"The uploaded file is too large.\";s:23:\"upload_failed_php_error\";s:38:\"There was an error uploading the file.\";s:12:\"invalid_date\";s:41:\"Please enter a date in YYYY-MM-DD format.\";s:14:\"date_too_early\";s:32:\"This field has a too early date.\";s:13:\"date_too_late\";s:31:\"This field has a too late date.\";s:14:\"invalid_number\";s:22:\"Please enter a number.\";s:16:\"number_too_small\";s:34:\"This field has a too small number.\";s:16:\"number_too_large\";s:34:\"This field has a too large number.\";s:23:\"quiz_answer_not_correct\";s:36:\"The answer to the quiz is incorrect.\";s:13:\"invalid_email\";s:30:\"Please enter an email address.\";s:11:\"invalid_url\";s:19:\"Please enter a URL.\";s:11:\"invalid_tel\";s:32:\"Please enter a telephone number.\";}'),(19373,3474,'_mail_2','a:9:{s:6:\"active\";b:0;s:7:\"subject\";s:30:\"[_site_title] \"[your-subject]\"\";s:6:\"sender\";s:50:\"[_site_title] <wordpress@farmchemie.yasithawd.com>\";s:9:\"recipient\";s:12:\"[your-email]\";s:4:\"body\";s:105:\"Message Body:\n[your-message]\n\n-- \nThis e-mail was sent from a contact form on [_site_title] ([_site_url])\";s:18:\"additional_headers\";s:29:\"Reply-To: [_site_admin_email]\";s:11:\"attachments\";s:0:\"\";s:8:\"use_html\";b:0;s:13:\"exclude_blank\";b:0;}'),(19372,3474,'_mail','a:9:{s:6:\"active\";b:1;s:7:\"subject\";s:35:\"[_site_title] \"[text product-name]\"\";s:6:\"sender\";s:50:\"[_site_title] <wordpress@farmchemie.yasithawd.com>\";s:9:\"recipient\";s:19:\"[_site_admin_email]\";s:4:\"body\";s:173:\"From: [your-name] [your-email]\nProduct Name :- [text product-name]\n\nMessage Body:\n[your-message]\n\n-- \nThis e-mail was sent from a contact form on [_site_title] ([_site_url])\";s:18:\"additional_headers\";s:22:\"Reply-To: [your-email]\";s:11:\"attachments\";s:0:\"\";s:8:\"use_html\";b:0;s:13:\"exclude_blank\";b:0;}'),(19371,3474,'_form','<label> Your name\n    [text* your-name autocomplete:name] </label>\n\n<label> Phone Number\n    [number* number-818 autocomplete:number-818]</label>\n\n<label> Your email\n    [email* your-email autocomplete:email] </label>\n\n<label> Product Name :- [text product-name] </label>\n\n<label> Your message\n    [textarea* your-message] </label>\n\n[submit \"Submit\"]'),(19370,3471,'_wpb_post_custom_layout','default'),(19350,3468,'_dt_fancy_header_bg_fullscreen','1'),(19351,3468,'_dt_fancy_header_bg_overlay','0'),(19352,3468,'_dt_fancy_header_overlay_color','#000'),(19353,3468,'_dt_fancy_header_bg_overlay_opacity','50'),(19354,3468,'_dt_fancy_header_scroll_effect','default'),(19355,3468,'_dt_fancy_header_bg_parallax','0.5'),(19356,3468,'_dt_fancy_header_responsiveness_heading',''),(19357,3468,'_dt_fancy_header_responsiveness','enabled'),(19358,3468,'_dt_fancy_header_responsiveness_switch','778px'),(19359,3468,'_dt_fancy_header_responsive_height','300'),(19360,3468,'_dt_fancy_header_responsive_font_size','30'),(19361,3468,'_dt_fancy_header_responsive_title_line_height','38'),(19362,3468,'_dt_fancy_header_responsive_subtitle_font_size','20'),(19363,3468,'_dt_fancy_header_responsive_subtitle_line_height','28'),(19364,3468,'_dt_fancy_header_responsive_breadcrumbs','disabled'),(19365,3468,'_dt_microsite_primary_menu',''),(19366,3468,'_dt_microsite_split_left_menu',''),(19367,3468,'_dt_microsite_split_right_menu',''),(19368,3468,'_dt_microsite_mobile_menu',''),(19369,3468,'the7_fancy_title_css','.fancy-header {\n  background-image: url(\'https://farmchemie.yasithawd.com/wp-content/uploads/2023/09/CSR.gif\');\n  background-repeat: no-repeat;\n  background-position: left center;\n  background-size: cover;\n  background-color: #089548;\n}\n.mobile-false .fancy-header {\n  background-attachment: scroll;\n}\n.fancy-header .wf-wrap {\n  min-height: 300px;\n  padding-top: 0px;\n  padding-bottom: 0px;\n}\n.fancy-header .fancy-title {\n  font-size: 30px;\n  line-height: 36px;\n  color: #ffffff;\n  text-transform: none;\n}\n.fancy-header .fancy-subtitle {\n  font-size: 18px;\n  line-height: 26px;\n  color: #ffffff;\n  text-transform: none;\n}\n.fancy-header .breadcrumbs {\n  color: #ffffff;\n}\n.fancy-header-overlay {\n  background: rgba(0,0,0,0.5);\n}\n@media screen and (max-width: 778px) {\n  .fancy-header .wf-wrap {\n    min-height: 300px;\n  }\n  .fancy-header .fancy-title {\n    font-size: 30px;\n    line-height: 38px;\n  }\n  .fancy-header .fancy-subtitle {\n    font-size: 20px;\n    line-height: 28px;\n  }\n  .fancy-header.breadcrumbs-mobile-off .breadcrumbs {\n    display: none;\n  }\n  #fancy-header > .wf-wrap {\n    flex-flow: column wrap;\n    align-items: center;\n    justify-content: center;\n    padding-bottom: 0px !important;\n  }\n  .fancy-header.title-left .breadcrumbs {\n    text-align: center;\n    float: none;\n  }\n  .breadcrumbs {\n    margin-bottom: 10px;\n  }\n  .breadcrumbs.breadcrumbs-bg {\n    margin-top: 10px;\n  }\n  .fancy-header.title-right .breadcrumbs {\n    margin: 10px 0 10px 0;\n  }\n  #fancy-header .hgroup,\n  #fancy-header .breadcrumbs {\n    text-align: center;\n  }\n  .fancy-header .hgroup {\n    padding-bottom: 5px;\n  }\n  .breadcrumbs-off .hgroup {\n    padding-bottom: 5px;\n  }\n  .title-right .hgroup {\n    padding: 0 0 5px 0;\n  }\n  .title-right.breadcrumbs-off .hgroup {\n    padding-top: 5px;\n  }\n  .title-left.disabled-bg .breadcrumbs {\n    margin-bottom: 0;\n  }\n}\n'),(19349,3468,'_dt_fancy_header_bg_position_y','center'),(19384,3486,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:500;s:6:\"height\";i:500;s:4:\"file\";s:22:\"2023/09/Untitled-7.jpg\";s:8:\"filesize\";i:171598;s:5:\"sizes\";a:4:{s:6:\"medium\";a:5:{s:4:\"file\";s:22:\"Untitled-7-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:21121;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:22:\"Untitled-7-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:7456;}s:21:\"woocommerce_thumbnail\";a:6:{s:4:\"file\";s:22:\"Untitled-7-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:21121;s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:5:{s:4:\"file\";s:22:\"Untitled-7-200x200.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:11198;}}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:{}}}'),(19383,3486,'_wp_attached_file','2023/09/Untitled-7.jpg'),(19382,3485,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:500;s:6:\"height\";i:500;s:4:\"file\";s:22:\"2023/09/Untitled-6.jpg\";s:8:\"filesize\";i:182575;s:5:\"sizes\";a:4:{s:6:\"medium\";a:5:{s:4:\"file\";s:22:\"Untitled-6-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:21968;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:22:\"Untitled-6-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:7388;}s:21:\"woocommerce_thumbnail\";a:6:{s:4:\"file\";s:22:\"Untitled-6-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:21968;s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:5:{s:4:\"file\";s:22:\"Untitled-6-200x200.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:11292;}}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:{}}}'),(19381,3485,'_wp_attached_file','2023/09/Untitled-6.jpg'),(19380,3484,'_edit_lock','1694421314:1'),(19379,3484,'_edit_last','1'),(19378,3432,'_oembed_f23469e1517ec7e5308c183e156af656','{{unknown}}'),(22980,3612,'the7_fancy_title_css','#main {\n  padding-top: 1%;\n}\n.fancy-header {\n  background-image: none;\n  background-repeat: no-repeat;\n  background-position: center center;\n  background-size: auto auto;\n  background-color: #ffffff;\n}\n.mobile-false .fancy-header {\n  background-attachment: scroll;\n}\n.fancy-header .wf-wrap {\n  min-height: 140px;\n  padding-top: 0px;\n  padding-bottom: 0px;\n}\n.fancy-header .fancy-title {\n  font-size: 32px;\n  line-height: 36px;\n  color: #079547;\n  text-transform: none;\n}\n.fancy-header .fancy-subtitle {\n  font-size: 24px;\n  line-height: 26px;\n  color: #792c8a;\n  text-transform: none;\n}\n.fancy-header .breadcrumbs {\n  color: #ffffff;\n}\n.fancy-header-overlay {\n  background: rgba(0,0,0,0.5);\n}\n@media screen and (max-width: 778px) {\n  .fancy-header .wf-wrap {\n    min-height: 140px;\n  }\n  .fancy-header .fancy-title {\n    font-size: 30px;\n    line-height: 38px;\n  }\n  .fancy-header .fancy-subtitle {\n    font-size: 20px;\n    line-height: 28px;\n  }\n  .fancy-header.breadcrumbs-mobile-off .breadcrumbs {\n    display: none;\n  }\n  #fancy-header > .wf-wrap {\n    flex-flow: column wrap;\n    align-items: center;\n    justify-content: center;\n    padding-bottom: 0px !important;\n  }\n  .fancy-header.title-left .breadcrumbs {\n    text-align: center;\n    float: none;\n  }\n  .breadcrumbs {\n    margin-bottom: 10px;\n  }\n  .breadcrumbs.breadcrumbs-bg {\n    margin-top: 10px;\n  }\n  .fancy-header.title-right .breadcrumbs {\n    margin: 10px 0 10px 0;\n  }\n  #fancy-header .hgroup,\n  #fancy-header .breadcrumbs {\n    text-align: center;\n  }\n  .fancy-header .hgroup {\n    padding-bottom: 5px;\n  }\n  .breadcrumbs-off .hgroup {\n    padding-bottom: 5px;\n  }\n  .title-right .hgroup {\n    padding: 0 0 5px 0;\n  }\n  .title-right.breadcrumbs-off .hgroup {\n    padding-top: 5px;\n  }\n  .title-left.disabled-bg .breadcrumbs {\n    margin-bottom: 0;\n  }\n}\n'),(22979,3612,'_dt_fancy_header_responsive_breadcrumbs','disabled'),(22978,3612,'_dt_fancy_header_responsive_subtitle_line_height','28'),(22977,3612,'_dt_fancy_header_responsive_subtitle_font_size','20'),(22976,3612,'_dt_fancy_header_responsive_title_line_height','38'),(22974,3612,'_dt_fancy_header_responsive_height','140'),(22975,3612,'_dt_fancy_header_responsive_font_size','30'),(22973,3612,'_dt_fancy_header_responsiveness_switch','778px'),(22972,3612,'_dt_fancy_header_responsiveness','enabled'),(22971,3612,'_dt_fancy_header_responsiveness_heading',''),(22970,3612,'_dt_fancy_header_bg_parallax','0.5'),(22968,3612,'_dt_fancy_header_bg_overlay_opacity','50'),(22969,3612,'_dt_fancy_header_scroll_effect','default'),(22967,3612,'_dt_fancy_header_overlay_color','#000'),(22966,3612,'_dt_fancy_header_bg_overlay','0'),(22965,3612,'_dt_fancy_header_bg_fullscreen','0'),(22963,3612,'_dt_fancy_header_bg_position_x','center'),(22964,3612,'_dt_fancy_header_bg_position_y','center'),(22961,3612,'_dt_fancy_header_bg_image','a:0:{}'),(22962,3612,'_dt_fancy_header_bg_repeat','no-repeat'),(22960,3612,'_dt_fancy_header_bg_image_origin','custom'),(22958,3612,'_dt_fancy_header_bg_heading',''),(22959,3612,'_dt_fancy_header_bg_color','#ffffff'),(22957,3612,'_dt_fancy_header_subtitle_color','#792c8a'),(22956,3612,'_dt_fancy_header_subtitle_color_mode','color'),(22955,3612,'_dt_fancy_header_subtitle_text_transform','none'),(22954,3612,'_dt_fancy_header_subtitle_line_height','26'),(22953,3612,'_dt_fancy_header_subtitle_font_size','24'),(22952,3612,'_dt_fancy_header_subtitle',''),(22950,3612,'_dt_fancy_header_title_color','#079547'),(22951,3612,'_dt_fancy_header_subtitle_heading',''),(22949,3612,'_dt_fancy_header_title_color_mode','color'),(22948,3612,'_dt_fancy_header_text_transform','none'),(22947,3612,'_dt_fancy_header_title_line_height','36'),(22946,3612,'_dt_fancy_header_title_font_size','32'),(22945,3612,'_dt_fancy_header_title',''),(22944,3612,'_dt_fancy_header_title_mode','custom'),(22943,3612,'_dt_fancy_header_title_heading',''),(22942,3612,'_dt_fancy_header_breadcrumbs_bg_color','disabled'),(22941,3612,'_dt_fancy_header_breadcrumbs_text_color','#ffffff'),(22940,3612,'_dt_fancy_header_breadcrumbs','disabled'),(22939,3612,'_dt_fancy_header_breadcrumbs_heading',''),(22937,3612,'_dt_fancy_header_padding-top','0px'),(22938,3612,'_dt_fancy_header_padding-bottom','0px'),(22936,3612,'_dt_fancy_header_height','140'),(22934,3612,'_dt_fancy_header_layout_heading',''),(22935,3612,'_dt_fancy_header_title_aligment','all_left'),(22933,3612,'_dt_mobile_page_padding_left',''),(22931,3612,'_dt_mobile_page_padding_right',''),(22932,3612,'_dt_mobile_page_padding_bottom',''),(22930,3612,'_dt_mobile_page_padding_top',''),(22929,3612,'_dt_page_overrides_left_margin',''),(22928,3612,'_dt_page_overrides_bottom_margin',''),(22926,3612,'_dt_page_overrides_top_margin','1%'),(22927,3612,'_dt_page_overrides_right_margin',''),(22924,3612,'_dt_header_disabled_transparent_bg_color','#000000'),(22925,3612,'_dt_header_disabled_transparent_bg_opacity','50'),(22923,3612,'_dt_header_disabled_transparent_top_bar_bg_opacity','25'),(22922,3612,'_dt_header_disabled_transparent_top_bar_bg_color','#ffffff'),(22921,3612,'_dt_header_disabled_transparent_bg_color_scheme','light'),(22920,3612,'_dt_header_disabled_background','normal'),(22919,3612,'_dt_header_transparent_bg_opacity','50'),(22918,3612,'_dt_header_transparent_bg_color','#000000'),(22917,3612,'_dt_header_transparent_top_bar_bg_opacity','25'),(22916,3612,'_dt_header_transparent_top_bar_bg_color','#ffffff'),(22915,3612,'_dt_header_transparent_bg_color_scheme','light'),(22914,3612,'_dt_header_background_below_slideshow','disabled'),(22913,3612,'_dt_header_background','normal'),(22912,3612,'_dt_header_title','fancy'),(22911,3612,'_dt_footer_hide_on_mobile','0'),(22910,3612,'_dt_footer_widgetarea_id','sidebar_2'),(22909,3612,'_dt_footer_show','1'),(19394,3491,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:500;s:6:\"height\";i:500;s:4:\"file\";s:22:\"2023/09/Untitled-1.jpg\";s:8:\"filesize\";i:206506;s:5:\"sizes\";a:4:{s:6:\"medium\";a:5:{s:4:\"file\";s:22:\"Untitled-1-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:27036;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:22:\"Untitled-1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:9370;}s:21:\"woocommerce_thumbnail\";a:6:{s:4:\"file\";s:22:\"Untitled-1-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:27036;s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:5:{s:4:\"file\";s:22:\"Untitled-1-200x200.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:14176;}}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:{}}}'),(19393,3491,'_wp_attached_file','2023/09/Untitled-1.jpg'),(19392,3490,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:500;s:6:\"height\";i:500;s:4:\"file\";s:23:\"2023/09/Untitled-11.jpg\";s:8:\"filesize\";i:239572;s:5:\"sizes\";a:4:{s:6:\"medium\";a:5:{s:4:\"file\";s:23:\"Untitled-11-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:25359;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:23:\"Untitled-11-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:7819;}s:21:\"woocommerce_thumbnail\";a:6:{s:4:\"file\";s:23:\"Untitled-11-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:25359;s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:5:{s:4:\"file\";s:23:\"Untitled-11-200x200.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:12380;}}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:{}}}'),(19391,3490,'_wp_attached_file','2023/09/Untitled-11.jpg'),(19390,3489,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1000;s:6:\"height\";i:1000;s:4:\"file\";s:23:\"2023/09/Untitled-10.jpg\";s:8:\"filesize\";i:588528;s:5:\"sizes\";a:6:{s:6:\"medium\";a:5:{s:4:\"file\";s:23:\"Untitled-10-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:17287;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:23:\"Untitled-10-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:6222;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:23:\"Untitled-10-768x768.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:81103;}s:21:\"woocommerce_thumbnail\";a:6:{s:4:\"file\";s:23:\"Untitled-10-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:17287;s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:5:{s:4:\"file\";s:23:\"Untitled-10-600x600.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:53751;}s:29:\"woocommerce_gallery_thumbnail\";a:5:{s:4:\"file\";s:23:\"Untitled-10-200x200.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:9233;}}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:{}}}'),(19389,3489,'_wp_attached_file','2023/09/Untitled-10.jpg'),(19385,3487,'_wp_attached_file','2023/09/Untitled-8.jpg'),(19386,3487,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:500;s:6:\"height\";i:500;s:4:\"file\";s:22:\"2023/09/Untitled-8.jpg\";s:8:\"filesize\";i:201733;s:5:\"sizes\";a:4:{s:6:\"medium\";a:5:{s:4:\"file\";s:22:\"Untitled-8-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:26306;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:22:\"Untitled-8-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:8991;}s:21:\"woocommerce_thumbnail\";a:6:{s:4:\"file\";s:22:\"Untitled-8-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:26306;s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:5:{s:4:\"file\";s:22:\"Untitled-8-200x200.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:13601;}}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:{}}}'),(19387,3488,'_wp_attached_file','2023/09/Untitled-9.jpg'),(19388,3488,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:500;s:6:\"height\";i:500;s:4:\"file\";s:22:\"2023/09/Untitled-9.jpg\";s:8:\"filesize\";i:183645;s:5:\"sizes\";a:4:{s:6:\"medium\";a:5:{s:4:\"file\";s:22:\"Untitled-9-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:25681;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:22:\"Untitled-9-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:9168;}s:21:\"woocommerce_thumbnail\";a:6:{s:4:\"file\";s:22:\"Untitled-9-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:25681;s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:5:{s:4:\"file\";s:22:\"Untitled-9-200x200.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:13582;}}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:{}}}'),(7585,2770,'_wp_attached_file','2023/05/Hypro-Premium-Ocen-Fish.png'),(7586,2770,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:600;s:6:\"height\";i:600;s:4:\"file\";s:35:\"2023/05/Hypro-Premium-Ocen-Fish.png\";s:8:\"filesize\";i:295601;s:5:\"sizes\";a:6:{s:6:\"medium\";a:5:{s:4:\"file\";s:35:\"Hypro-Premium-Ocen-Fish-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:77644;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:35:\"Hypro-Premium-Ocen-Fish-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:23903;}s:21:\"woocommerce_thumbnail\";a:6:{s:4:\"file\";s:35:\"Hypro-Premium-Ocen-Fish-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:77644;s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:5:{s:4:\"file\";s:35:\"Hypro-Premium-Ocen-Fish-200x200.png\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:38261;}s:12:\"shop_catalog\";a:5:{s:4:\"file\";s:35:\"Hypro-Premium-Ocen-Fish-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:77644;}s:14:\"shop_thumbnail\";a:5:{s:4:\"file\";s:35:\"Hypro-Premium-Ocen-Fish-200x200.png\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:38261;}}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:{}}}'),(19416,3484,'_dt_footer_hide_on_mobile','0'),(19415,3484,'_dt_footer_widgetarea_id','sidebar_2'),(19414,3484,'_dt_footer_show','1'),(19413,3484,'_dt_sidebar_hide_on_mobile','0'),(19412,3484,'_dt_sidebar_widgetarea_id','sidebar_1'),(19411,3484,'_dt_sidebar_position','disabled'),(19410,3484,'_wpb_post_custom_layout','default'),(19409,3496,'_wpb_post_custom_layout','default'),(19408,3484,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:1:{s:10:\"shortcodes\";a:1:{s:29:\"1694419814425-e2033f42-e96e-3\";a:3:{s:3:\"tag\";s:13:\"vc_media_grid\";s:4:\"atts\";a:3:{s:13:\"element_width\";s:1:\"3\";s:7:\"grid_id\";s:36:\"vc_gid:1694419814425-e2033f42-e96e-3\";s:7:\"include\";s:54:\"3485,3486,3487,3488,3489,3490,3491,3492,3493,3494,3495\";}s:7:\"content\";s:0:\"\";}}}}'),(19407,3484,'_wpb_vc_js_status','true'),(19451,3484,'_wp_trash_meta_time','1694421456'),(19450,3484,'_wp_trash_meta_status','publish'),(19404,3484,'_wp_page_template','default'),(19403,3484,'_thumbnail_id','3494'),(19402,3495,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:500;s:6:\"height\";i:500;s:4:\"file\";s:22:\"2023/09/Untitled-5.jpg\";s:8:\"filesize\";i:183905;s:5:\"sizes\";a:4:{s:6:\"medium\";a:5:{s:4:\"file\";s:22:\"Untitled-5-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:22849;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:22:\"Untitled-5-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:7924;}s:21:\"woocommerce_thumbnail\";a:6:{s:4:\"file\";s:22:\"Untitled-5-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:22849;s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:5:{s:4:\"file\";s:22:\"Untitled-5-200x200.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:12000;}}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:{}}}'),(19401,3495,'_wp_attached_file','2023/09/Untitled-5.jpg'),(19400,3494,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:500;s:6:\"height\";i:500;s:4:\"file\";s:22:\"2023/09/Untitled-4.jpg\";s:8:\"filesize\";i:187513;s:5:\"sizes\";a:4:{s:6:\"medium\";a:5:{s:4:\"file\";s:22:\"Untitled-4-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:17565;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:22:\"Untitled-4-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:5801;}s:21:\"woocommerce_thumbnail\";a:6:{s:4:\"file\";s:22:\"Untitled-4-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:17565;s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:5:{s:4:\"file\";s:22:\"Untitled-4-200x200.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:8857;}}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:{}}}'),(19399,3494,'_wp_attached_file','2023/09/Untitled-4.jpg'),(19395,3492,'_wp_attached_file','2023/09/Untitled-2.jpg'),(19396,3492,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:500;s:6:\"height\";i:500;s:4:\"file\";s:22:\"2023/09/Untitled-2.jpg\";s:8:\"filesize\";i:199002;s:5:\"sizes\";a:4:{s:6:\"medium\";a:5:{s:4:\"file\";s:22:\"Untitled-2-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:21966;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:22:\"Untitled-2-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:7404;}s:21:\"woocommerce_thumbnail\";a:6:{s:4:\"file\";s:22:\"Untitled-2-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:21966;s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:5:{s:4:\"file\";s:22:\"Untitled-2-200x200.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:11156;}}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:{}}}'),(19397,3493,'_wp_attached_file','2023/09/Untitled-3.jpg'),(19398,3493,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:500;s:6:\"height\";i:500;s:4:\"file\";s:22:\"2023/09/Untitled-3.jpg\";s:8:\"filesize\";i:194305;s:5:\"sizes\";a:4:{s:6:\"medium\";a:5:{s:4:\"file\";s:22:\"Untitled-3-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:19189;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:22:\"Untitled-3-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:6224;}s:21:\"woocommerce_thumbnail\";a:6:{s:4:\"file\";s:22:\"Untitled-3-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:19189;s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:5:{s:4:\"file\";s:22:\"Untitled-3-200x200.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:9505;}}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:{}}}'),(7682,2774,'total_sales','0'),(7683,2774,'_tax_status','taxable'),(7684,2774,'_tax_class',''),(7685,2774,'_manage_stock','no'),(7686,2774,'_backorders','no'),(7687,2774,'_sold_individually','no'),(7688,2774,'_virtual','no'),(7689,2774,'_downloadable','no'),(7690,2774,'_download_limit','-1'),(7691,2774,'_download_expiry','-1'),(7692,2774,'_thumbnail_id','3141'),(7693,2774,'_stock',NULL),(7694,2774,'_stock_status','instock'),(7695,2774,'_wc_average_rating','0'),(7696,2774,'_wc_review_count','0'),(7697,2774,'_product_version','8.0.2'),(7698,2774,'_dt_sidebar_position','disabled'),(7699,2774,'_dt_sidebar_widgetarea_id','sidebar_1'),(7700,2774,'_dt_sidebar_hide_on_mobile','0'),(7701,2774,'_dt_footer_show','1'),(7702,2774,'_dt_footer_widgetarea_id','sidebar_2'),(7703,2774,'_dt_footer_hide_on_mobile','0'),(7704,2774,'_dt_header_title','fancy'),(7705,2774,'_dt_header_background','normal'),(7706,2774,'_dt_header_background_below_slideshow','disabled'),(7707,2774,'_dt_header_transparent_bg_color_scheme','light'),(7708,2774,'_dt_header_transparent_top_bar_bg_color','#ffffff'),(7709,2774,'_dt_header_transparent_top_bar_bg_opacity','25'),(7710,2774,'_dt_header_transparent_bg_color','#000000'),(7711,2774,'_dt_header_transparent_bg_opacity','50'),(7712,2774,'_dt_header_disabled_background','normal'),(7713,2774,'_dt_header_disabled_transparent_bg_color_scheme','light'),(7714,2774,'_dt_header_disabled_transparent_top_bar_bg_color','#ffffff'),(7715,2774,'_dt_header_disabled_transparent_top_bar_bg_opacity','25'),(7716,2774,'_dt_header_disabled_transparent_bg_color','#000000'),(7717,2774,'_dt_header_disabled_transparent_bg_opacity','50'),(7718,2774,'_dt_page_overrides_top_margin','1%'),(7719,2774,'_dt_page_overrides_right_margin',''),(7720,2774,'_dt_page_overrides_bottom_margin',''),(7721,2774,'_dt_page_overrides_left_margin',''),(7722,2774,'_dt_mobile_page_padding_top',''),(7723,2774,'_dt_mobile_page_padding_right',''),(7724,2774,'_dt_mobile_page_padding_bottom',''),(7725,2774,'_dt_mobile_page_padding_left',''),(7726,2774,'_dt_fancy_header_layout_heading',''),(7727,2774,'_dt_fancy_header_title_aligment','all_left'),(7728,2774,'_dt_fancy_header_height','140'),(7729,2774,'_dt_fancy_header_padding-top','0px'),(7730,2774,'_dt_fancy_header_padding-bottom','0px'),(7731,2774,'_dt_fancy_header_breadcrumbs_heading',''),(7732,2774,'_dt_fancy_header_breadcrumbs','disabled'),(7733,2774,'_dt_fancy_header_breadcrumbs_text_color','#ffffff'),(7734,2774,'_dt_fancy_header_breadcrumbs_bg_color','disabled'),(7735,2774,'_dt_fancy_header_title_heading',''),(7736,2774,'_dt_fancy_header_title_mode','custom'),(7737,2774,'_dt_fancy_header_title',''),(7738,2774,'_dt_fancy_header_title_font_size','32'),(7739,2774,'_dt_fancy_header_title_line_height','36'),(7740,2774,'_dt_fancy_header_text_transform','none'),(7741,2774,'_dt_fancy_header_title_color_mode','color'),(7742,2774,'_dt_fancy_header_title_color','#079547'),(7743,2774,'_dt_fancy_header_subtitle_heading',''),(7744,2774,'_dt_fancy_header_subtitle',''),(15426,3142,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:300;s:6:\"height\";i:200;s:4:\"file\";s:22:\"2023/05/AVI-E_Logo.png\";s:8:\"filesize\";i:1761;s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:22:\"AVI-E_Logo-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:6691;}s:29:\"woocommerce_gallery_thumbnail\";a:5:{s:4:\"file\";s:22:\"AVI-E_Logo-200x200.png\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:3984;}s:14:\"shop_thumbnail\";a:5:{s:4:\"file\";s:22:\"AVI-E_Logo-200x200.png\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:3984;}}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:{}}}'),(19513,3042,'_wp_old_date','2023-08-27'),(7745,2774,'_dt_fancy_header_subtitle_font_size','24'),(7746,2774,'_dt_fancy_header_subtitle_line_height','26'),(7747,2774,'_dt_fancy_header_subtitle_text_transform','none'),(7748,2774,'_dt_fancy_header_subtitle_color_mode','color'),(7749,2774,'_dt_fancy_header_subtitle_color','#792c8a'),(7750,2774,'_dt_fancy_header_bg_heading',''),(7751,2774,'_dt_fancy_header_bg_color','#ffffff'),(7752,2774,'_dt_fancy_header_bg_image_origin','custom'),(7753,2774,'_dt_fancy_header_bg_image','a:1:{i:0;i:3251;}'),(7754,2774,'_dt_fancy_header_bg_repeat','no-repeat'),(7755,2774,'_dt_fancy_header_bg_position_x','center'),(7756,2774,'_dt_fancy_header_bg_position_y','center'),(7757,2774,'_dt_fancy_header_bg_fullscreen','0'),(7758,2774,'_dt_fancy_header_bg_overlay','0'),(7759,2774,'_dt_fancy_header_overlay_color','#000'),(7760,2774,'_dt_fancy_header_bg_overlay_opacity','50'),(7761,2774,'_dt_fancy_header_scroll_effect','default'),(7762,2774,'_dt_fancy_header_bg_parallax','0.5'),(7763,2774,'_dt_fancy_header_responsiveness_heading',''),(7764,2774,'_dt_fancy_header_responsiveness','enabled'),(7765,2774,'_dt_fancy_header_responsiveness_switch','778px'),(7766,2774,'_dt_fancy_header_responsive_height','140'),(7767,2774,'_dt_fancy_header_responsive_font_size','30'),(7768,2774,'_dt_fancy_header_responsive_title_line_height','38'),(7769,2774,'_dt_fancy_header_responsive_subtitle_font_size','20'),(7770,2774,'_dt_fancy_header_responsive_subtitle_line_height','28'),(7771,2774,'_dt_fancy_header_responsive_breadcrumbs','disabled'),(7772,2774,'the7_fancy_title_css','#main {\n  padding-top: 1%;\n}\n.fancy-header {\n  background-image: url(\'https://farmchemie.yasithawd.com/wp-content/uploads/2023/05/AVI-B_-Logo-2.png\');\n  background-repeat: no-repeat;\n  background-position: center center;\n  background-size: auto auto;\n  background-color: #ffffff;\n}\n.mobile-false .fancy-header {\n  background-attachment: scroll;\n}\n.fancy-header .wf-wrap {\n  min-height: 140px;\n  padding-top: 0px;\n  padding-bottom: 0px;\n}\n.fancy-header .fancy-title {\n  font-size: 32px;\n  line-height: 36px;\n  color: #079547;\n  text-transform: none;\n}\n.fancy-header .fancy-subtitle {\n  font-size: 24px;\n  line-height: 26px;\n  color: #792c8a;\n  text-transform: none;\n}\n.fancy-header .breadcrumbs {\n  color: #ffffff;\n}\n.fancy-header-overlay {\n  background: rgba(0,0,0,0.5);\n}\n@media screen and (max-width: 778px) {\n  .fancy-header .wf-wrap {\n    min-height: 140px;\n  }\n  .fancy-header .fancy-title {\n    font-size: 30px;\n    line-height: 38px;\n  }\n  .fancy-header .fancy-subtitle {\n    font-size: 20px;\n    line-height: 28px;\n  }\n  .fancy-header.breadcrumbs-mobile-off .breadcrumbs {\n    display: none;\n  }\n  #fancy-header > .wf-wrap {\n    flex-flow: column wrap;\n    align-items: center;\n    justify-content: center;\n    padding-bottom: 0px !important;\n  }\n  .fancy-header.title-left .breadcrumbs {\n    text-align: center;\n    float: none;\n  }\n  .breadcrumbs {\n    margin-bottom: 10px;\n  }\n  .breadcrumbs.breadcrumbs-bg {\n    margin-top: 10px;\n  }\n  .fancy-header.title-right .breadcrumbs {\n    margin: 10px 0 10px 0;\n  }\n  #fancy-header .hgroup,\n  #fancy-header .breadcrumbs {\n    text-align: center;\n  }\n  .fancy-header .hgroup {\n    padding-bottom: 5px;\n  }\n  .breadcrumbs-off .hgroup {\n    padding-bottom: 5px;\n  }\n  .title-right .hgroup {\n    padding: 0 0 5px 0;\n  }\n  .title-right.breadcrumbs-off .hgroup {\n    padding-top: 5px;\n  }\n  .title-left.disabled-bg .breadcrumbs {\n    margin-bottom: 0;\n  }\n}\n'),(7773,2774,'_edit_lock','1694443242:1'),(7774,2774,'_edit_last','1'),(19512,3038,'_wp_old_date','2023-08-27'),(19511,3034,'_wp_old_date','2023-08-27'),(19509,2422,'_wp_old_date','2023-08-27'),(19508,2911,'_wp_old_date','2023-08-27'),(19758,3309,'_product_attributes','a:1:{s:15:\"pa_product-type\";a:6:{s:4:\"name\";s:15:\"pa_product-type\";s:5:\"value\";s:0:\"\";s:8:\"position\";i:0;s:10:\"is_visible\";i:1;s:12:\"is_variation\";i:0;s:11:\"is_taxonomy\";i:1;}}'),(19506,3499,'_menu_item_url',''),(19505,3499,'_menu_item_xfn',''),(19504,3499,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(19503,3499,'_menu_item_target',''),(19502,3499,'_menu_item_object','page'),(19501,3499,'_menu_item_object_id','3468'),(19500,3499,'_menu_item_menu_item_parent','2422'),(19498,3497,'_dt_microsite_mobile_menu',''),(19497,3497,'_dt_microsite_split_right_menu',''),(19496,3497,'_dt_microsite_split_left_menu',''),(19495,3497,'_dt_microsite_primary_menu',''),(19494,3497,'_dt_post_options_preview','normal'),(19493,3497,'_dt_post_options_related_categories','a:1:{i:0;s:3:\"155\";}'),(19492,3497,'_dt_post_options_related_mode','custom'),(19491,3497,'_dt_post_options_hide_thumbnail','0'),(19490,3497,'_dt_post_options_back_button',''),(19489,3497,'_dt_mobile_page_padding_left',''),(19488,3497,'_dt_mobile_page_padding_bottom',''),(19487,3497,'_dt_mobile_page_padding_right',''),(19486,3497,'_dt_mobile_page_padding_top',''),(19485,3497,'_dt_page_overrides_left_margin',''),(19484,3497,'_dt_page_overrides_bottom_margin',''),(19483,3497,'_dt_page_overrides_right_margin',''),(19482,3497,'_dt_page_overrides_top_margin',''),(19481,3497,'_dt_header_disabled_transparent_bg_opacity','50'),(19480,3497,'_dt_header_disabled_transparent_bg_color','#000000'),(19479,3497,'_dt_header_disabled_transparent_top_bar_bg_opacity','25'),(19478,3497,'_dt_header_disabled_transparent_top_bar_bg_color','#ffffff'),(19477,3497,'_dt_header_disabled_transparent_bg_color_scheme','light'),(19476,3497,'_dt_header_disabled_background','normal'),(19475,3497,'_dt_header_transparent_bg_opacity','50'),(19474,3497,'_dt_header_transparent_bg_color','#000000'),(19473,3497,'_dt_header_transparent_top_bar_bg_opacity','25'),(19472,3497,'_dt_header_transparent_top_bar_bg_color','#ffffff'),(19471,3497,'_dt_header_transparent_bg_color_scheme','light'),(19470,3497,'_dt_header_background_below_slideshow','disabled'),(19469,3497,'_dt_header_background','normal'),(19468,3497,'_dt_header_title','enabled'),(19467,3497,'_dt_footer_hide_on_mobile','0'),(19466,3497,'_dt_footer_widgetarea_id','sidebar_2'),(19465,3497,'_dt_footer_show','1'),(19464,3497,'_dt_sidebar_hide_on_mobile','0'),(19463,3497,'_dt_sidebar_widgetarea_id','sidebar_1'),(19462,3497,'_dt_sidebar_position','disabled'),(19461,3497,'_wpb_post_custom_layout','default'),(19460,3498,'_wpb_post_custom_layout','default'),(19459,3497,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:1:{s:10:\"shortcodes\";a:1:{s:29:\"1694421541717-76252a0b-7ecc-7\";a:3:{s:3:\"tag\";s:13:\"vc_media_grid\";s:4:\"atts\";a:2:{s:7:\"grid_id\";s:36:\"vc_gid:1694421541717-76252a0b-7ecc-7\";s:7:\"include\";s:54:\"3495,3485,3494,3493,3492,3491,3489,3490,3488,3487,3486\";}s:7:\"content\";s:0:\"\";}}}}'),(19458,3497,'_wpb_vc_js_status','true'),(19499,3499,'_menu_item_type','post_type'),(19456,3497,'_wp_page_template','default'),(19455,3497,'_thumbnail_id','3493'),(19454,3497,'_edit_lock','1694421511:1'),(19453,3497,'_edit_last','1'),(19452,3484,'_wp_desired_post_slug','renovation-and-furnishing-science-laboratory-and-building-new-toilets-at-mawathgama-kanishta-vidyalaya-homagama'),(19447,3484,'_dt_microsite_mobile_menu',''),(19446,3484,'_dt_microsite_split_right_menu',''),(19422,3484,'_dt_header_transparent_top_bar_bg_opacity','25'),(19423,3484,'_dt_header_transparent_bg_color','#000000'),(19424,3484,'_dt_header_transparent_bg_opacity','50'),(19425,3484,'_dt_header_disabled_background','normal'),(19426,3484,'_dt_header_disabled_transparent_bg_color_scheme','light'),(19427,3484,'_dt_header_disabled_transparent_top_bar_bg_color','#ffffff'),(19428,3484,'_dt_header_disabled_transparent_top_bar_bg_opacity','25'),(19429,3484,'_dt_header_disabled_transparent_bg_color','#000000'),(19430,3484,'_dt_header_disabled_transparent_bg_opacity','50'),(19431,3484,'_dt_page_overrides_top_margin',''),(19432,3484,'_dt_page_overrides_right_margin',''),(19433,3484,'_dt_page_overrides_bottom_margin',''),(19434,3484,'_dt_page_overrides_left_margin',''),(19435,3484,'_dt_mobile_page_padding_top',''),(19436,3484,'_dt_mobile_page_padding_right',''),(19437,3484,'_dt_mobile_page_padding_bottom',''),(19438,3484,'_dt_mobile_page_padding_left',''),(19439,3484,'_dt_post_options_back_button',''),(19440,3484,'_dt_post_options_hide_thumbnail','0'),(19441,3484,'_dt_post_options_related_mode','custom'),(19442,3484,'_dt_post_options_related_categories','a:1:{i:0;s:3:\"155\";}'),(19443,3484,'_dt_post_options_preview','normal'),(19444,3484,'_dt_microsite_primary_menu',''),(19445,3484,'_dt_microsite_split_left_menu',''),(19420,3484,'_dt_header_transparent_bg_color_scheme','light'),(15449,3155,'_wp_attached_file','2023/08/Oral-Supplements.png'),(19544,3509,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:500;s:6:\"height\";i:500;s:4:\"file\";s:13:\"2023/09/4.jpg\";s:8:\"filesize\";i:229105;s:5:\"sizes\";a:4:{s:6:\"medium\";a:5:{s:4:\"file\";s:13:\"4-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:24955;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:13:\"4-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:8629;}s:21:\"woocommerce_thumbnail\";a:6:{s:4:\"file\";s:13:\"4-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:24955;s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:5:{s:4:\"file\";s:13:\"4-200x200.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:12971;}}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:{}}}'),(19543,3509,'_wp_attached_file','2023/09/4.jpg'),(19542,3508,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:500;s:6:\"height\";i:500;s:4:\"file\";s:13:\"2023/09/3.jpg\";s:8:\"filesize\";i:277736;s:5:\"sizes\";a:4:{s:6:\"medium\";a:5:{s:4:\"file\";s:13:\"3-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:33152;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:13:\"3-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:11157;}s:21:\"woocommerce_thumbnail\";a:6:{s:4:\"file\";s:13:\"3-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:33152;s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:5:{s:4:\"file\";s:13:\"3-200x200.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:16988;}}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:{}}}'),(19541,3508,'_wp_attached_file','2023/09/3.jpg'),(15430,3144,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:600;s:6:\"height\";i:600;s:4:\"file\";s:39:\"2023/05/AVI-Ganadexil_600px-x-600px.png\";s:8:\"filesize\";i:43899;s:5:\"sizes\";a:6:{s:6:\"medium\";a:5:{s:4:\"file\";s:39:\"AVI-Ganadexil_600px-x-600px-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:41105;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:39:\"AVI-Ganadexil_600px-x-600px-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:13244;}s:21:\"woocommerce_thumbnail\";a:6:{s:4:\"file\";s:39:\"AVI-Ganadexil_600px-x-600px-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:41105;s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:5:{s:4:\"file\";s:39:\"AVI-Ganadexil_600px-x-600px-200x200.png\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:20775;}s:12:\"shop_catalog\";a:5:{s:4:\"file\";s:39:\"AVI-Ganadexil_600px-x-600px-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:41105;}s:14:\"shop_thumbnail\";a:5:{s:4:\"file\";s:39:\"AVI-Ganadexil_600px-x-600px-200x200.png\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:20775;}}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:{}}}'),(19540,3507,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:500;s:6:\"height\";i:500;s:4:\"file\";s:13:\"2023/09/2.jpg\";s:8:\"filesize\";i:351687;s:5:\"sizes\";a:4:{s:6:\"medium\";a:5:{s:4:\"file\";s:13:\"2-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:43200;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:13:\"2-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:13136;}s:21:\"woocommerce_thumbnail\";a:6:{s:4:\"file\";s:13:\"2-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:43200;s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:5:{s:4:\"file\";s:13:\"2-200x200.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:20985;}}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:{}}}'),(19539,3507,'_wp_attached_file','2023/09/2.jpg'),(19538,3506,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:500;s:6:\"height\";i:500;s:4:\"file\";s:13:\"2023/09/1.jpg\";s:8:\"filesize\";i:206787;s:5:\"sizes\";a:4:{s:6:\"medium\";a:5:{s:4:\"file\";s:13:\"1-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:21995;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:13:\"1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:7854;}s:21:\"woocommerce_thumbnail\";a:6:{s:4:\"file\";s:13:\"1-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:21995;s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:5:{s:4:\"file\";s:13:\"1-200x200.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:11486;}}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:{}}}'),(19537,3506,'_wp_attached_file','2023/09/1.jpg'),(19521,39,'_wp_old_date','2023-08-27'),(19527,3501,'_edit_last','1'),(19528,3501,'_edit_lock','1695632951:1'),(19529,3501,'_wpb_vc_js_status','true'),(19530,3501,'_wpb_shortcodes_custom_css','.vc_custom_1419240516480{background-color: #f9f9f9 !important;}'),(19531,3501,'_wpb_shortcodes_custom_css_updated','1'),(19533,3503,'_edit_last','1'),(19534,3503,'_edit_lock','1694423156:1'),(19532,3502,'_wpb_post_custom_layout','default'),(19535,3505,'_wp_attached_file','2023/09/16.jpg'),(19536,3505,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:500;s:6:\"height\";i:500;s:4:\"file\";s:14:\"2023/09/16.jpg\";s:8:\"filesize\";i:208964;s:5:\"sizes\";a:4:{s:6:\"medium\";a:5:{s:4:\"file\";s:14:\"16-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:22618;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:14:\"16-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:7890;}s:21:\"woocommerce_thumbnail\";a:6:{s:4:\"file\";s:14:\"16-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:22618;s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:5:{s:4:\"file\";s:14:\"16-200x200.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:11830;}}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:{}}}'),(19518,2419,'_wp_old_date','2023-08-27'),(19517,2418,'_wp_old_date','2023-08-27'),(19554,3514,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:500;s:6:\"height\";i:500;s:4:\"file\";s:13:\"2023/09/9.jpg\";s:8:\"filesize\";i:349637;s:5:\"sizes\";a:4:{s:6:\"medium\";a:5:{s:4:\"file\";s:13:\"9-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:38418;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:13:\"9-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:11201;}s:21:\"woocommerce_thumbnail\";a:6:{s:4:\"file\";s:13:\"9-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:38418;s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:5:{s:4:\"file\";s:13:\"9-200x200.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:17970;}}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:{}}}'),(19553,3514,'_wp_attached_file','2023/09/9.jpg'),(19552,3513,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:500;s:6:\"height\";i:500;s:4:\"file\";s:13:\"2023/09/8.jpg\";s:8:\"filesize\";i:247262;s:5:\"sizes\";a:4:{s:6:\"medium\";a:5:{s:4:\"file\";s:13:\"8-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:27139;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:13:\"8-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:9122;}s:21:\"woocommerce_thumbnail\";a:6:{s:4:\"file\";s:13:\"8-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:27139;s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:5:{s:4:\"file\";s:13:\"8-200x200.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:13964;}}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:{}}}'),(19551,3513,'_wp_attached_file','2023/09/8.jpg'),(19550,3512,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:500;s:6:\"height\";i:500;s:4:\"file\";s:13:\"2023/09/7.jpg\";s:8:\"filesize\";i:242668;s:5:\"sizes\";a:4:{s:6:\"medium\";a:5:{s:4:\"file\";s:13:\"7-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:28370;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:13:\"7-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:9853;}s:21:\"woocommerce_thumbnail\";a:6:{s:4:\"file\";s:13:\"7-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:28370;s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:5:{s:4:\"file\";s:13:\"7-200x200.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:14859;}}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:{}}}'),(19549,3512,'_wp_attached_file','2023/09/7.jpg'),(19545,3510,'_wp_attached_file','2023/09/5.jpg'),(19546,3510,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:500;s:6:\"height\";i:500;s:4:\"file\";s:13:\"2023/09/5.jpg\";s:8:\"filesize\";i:180867;s:5:\"sizes\";a:4:{s:6:\"medium\";a:5:{s:4:\"file\";s:13:\"5-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:20720;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:13:\"5-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:7729;}s:21:\"woocommerce_thumbnail\";a:6:{s:4:\"file\";s:13:\"5-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:20720;s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:5:{s:4:\"file\";s:13:\"5-200x200.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:11274;}}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:{}}}'),(19547,3511,'_wp_attached_file','2023/09/6.jpg'),(19548,3511,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:500;s:6:\"height\";i:500;s:4:\"file\";s:13:\"2023/09/6.jpg\";s:8:\"filesize\";i:304918;s:5:\"sizes\";a:4:{s:6:\"medium\";a:5:{s:4:\"file\";s:13:\"6-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:39474;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:13:\"6-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:12834;}s:21:\"woocommerce_thumbnail\";a:6:{s:4:\"file\";s:13:\"6-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:39474;s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:5:{s:4:\"file\";s:13:\"6-200x200.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:19942;}}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:{}}}'),(15445,3153,'_wp_attached_file','2023/05/AVI-Tonic_logo.png'),(19566,3520,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:500;s:6:\"height\";i:500;s:4:\"file\";s:14:\"2023/09/15.jpg\";s:8:\"filesize\";i:306815;s:5:\"sizes\";a:4:{s:6:\"medium\";a:5:{s:4:\"file\";s:14:\"15-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:33165;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:14:\"15-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:10235;}s:21:\"woocommerce_thumbnail\";a:6:{s:4:\"file\";s:14:\"15-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:33165;s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:5:{s:4:\"file\";s:14:\"15-200x200.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:16070;}}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:{}}}'),(19565,3520,'_wp_attached_file','2023/09/15.jpg'),(19564,3519,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:500;s:6:\"height\";i:500;s:4:\"file\";s:14:\"2023/09/14.jpg\";s:8:\"filesize\";i:335289;s:5:\"sizes\";a:4:{s:6:\"medium\";a:5:{s:4:\"file\";s:14:\"14-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:38487;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:14:\"14-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:11110;}s:21:\"woocommerce_thumbnail\";a:6:{s:4:\"file\";s:14:\"14-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:38487;s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:5:{s:4:\"file\";s:14:\"14-200x200.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:17997;}}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:{}}}'),(19563,3519,'_wp_attached_file','2023/09/14.jpg'),(19562,3518,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:500;s:6:\"height\";i:500;s:4:\"file\";s:14:\"2023/09/13.jpg\";s:8:\"filesize\";i:253764;s:5:\"sizes\";a:4:{s:6:\"medium\";a:5:{s:4:\"file\";s:14:\"13-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:26398;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:14:\"13-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:8227;}s:21:\"woocommerce_thumbnail\";a:6:{s:4:\"file\";s:14:\"13-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:26398;s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:5:{s:4:\"file\";s:14:\"13-200x200.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:12764;}}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:{}}}'),(19561,3518,'_wp_attached_file','2023/09/13.jpg'),(19560,3517,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:500;s:6:\"height\";i:500;s:4:\"file\";s:14:\"2023/09/12.jpg\";s:8:\"filesize\";i:284457;s:5:\"sizes\";a:4:{s:6:\"medium\";a:5:{s:4:\"file\";s:14:\"12-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:28926;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:14:\"12-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:8025;}s:21:\"woocommerce_thumbnail\";a:6:{s:4:\"file\";s:14:\"12-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:28926;s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:5:{s:4:\"file\";s:14:\"12-200x200.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:12865;}}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:{}}}'),(19559,3517,'_wp_attached_file','2023/09/12.jpg'),(19557,3516,'_wp_attached_file','2023/09/11.jpg'),(19558,3516,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:500;s:6:\"height\";i:500;s:4:\"file\";s:14:\"2023/09/11.jpg\";s:8:\"filesize\";i:289801;s:5:\"sizes\";a:4:{s:6:\"medium\";a:5:{s:4:\"file\";s:14:\"11-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:34510;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:14:\"11-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:10935;}s:21:\"woocommerce_thumbnail\";a:6:{s:4:\"file\";s:14:\"11-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:34510;s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:5:{s:4:\"file\";s:14:\"11-200x200.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:17294;}}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:{}}}'),(19617,3524,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:500;s:6:\"height\";i:500;s:4:\"file\";s:14:\"2023/09/a9.jpg\";s:8:\"filesize\";i:259838;s:5:\"sizes\";a:4:{s:6:\"medium\";a:5:{s:4:\"file\";s:14:\"a9-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:27132;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:14:\"a9-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:9458;}s:21:\"woocommerce_thumbnail\";a:6:{s:4:\"file\";s:14:\"a9-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:27132;s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:5:{s:4:\"file\";s:14:\"a9-200x200.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:14065;}}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:{}}}'),(19616,3524,'_wp_attached_file','2023/09/a9.jpg'),(19615,3523,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:500;s:6:\"height\";i:500;s:4:\"file\";s:14:\"2023/09/a8.jpg\";s:8:\"filesize\";i:260446;s:5:\"sizes\";a:4:{s:6:\"medium\";a:5:{s:4:\"file\";s:14:\"a8-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:27260;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:14:\"a8-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:8885;}s:21:\"woocommerce_thumbnail\";a:6:{s:4:\"file\";s:14:\"a8-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:27260;s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:5:{s:4:\"file\";s:14:\"a8-200x200.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:13921;}}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:{}}}'),(19614,3523,'_wp_attached_file','2023/09/a8.jpg'),(19613,3522,'_edit_lock','1694424184:1'),(19612,3522,'_edit_last','1'),(19610,3503,'_dt_microsite_mobile_menu',''),(19609,3503,'_dt_microsite_split_right_menu',''),(19608,3503,'_dt_microsite_split_left_menu',''),(19607,3503,'_dt_microsite_primary_menu',''),(19606,3503,'_dt_post_options_preview','normal'),(19605,3503,'_dt_post_options_related_categories','a:1:{i:0;s:3:\"155\";}'),(19603,3503,'_dt_post_options_hide_thumbnail','0'),(19602,3503,'_dt_post_options_back_button',''),(19601,3503,'_dt_mobile_page_padding_left',''),(19600,3503,'_dt_mobile_page_padding_bottom',''),(19599,3503,'_dt_mobile_page_padding_right',''),(19598,3503,'_dt_mobile_page_padding_top',''),(19597,3503,'_dt_page_overrides_left_margin',''),(19596,3503,'_dt_page_overrides_bottom_margin',''),(19595,3503,'_dt_page_overrides_right_margin',''),(19594,3503,'_dt_page_overrides_top_margin',''),(19593,3503,'_dt_header_disabled_transparent_bg_opacity','50'),(19592,3503,'_dt_header_disabled_transparent_bg_color','#000000'),(19591,3503,'_dt_header_disabled_transparent_top_bar_bg_opacity','25'),(19590,3503,'_dt_header_disabled_transparent_top_bar_bg_color','#ffffff'),(19589,3503,'_dt_header_disabled_transparent_bg_color_scheme','light'),(19588,3503,'_dt_header_disabled_background','normal'),(19587,3503,'_dt_header_transparent_bg_opacity','50'),(19586,3503,'_dt_header_transparent_bg_color','#000000'),(19585,3503,'_dt_header_transparent_top_bar_bg_opacity','25'),(19584,3503,'_dt_header_transparent_top_bar_bg_color','#ffffff'),(19583,3503,'_dt_header_transparent_bg_color_scheme','light'),(19582,3503,'_dt_header_background_below_slideshow','disabled'),(19567,3503,'_thumbnail_id','3520'),(19568,3503,'_wp_page_template','default'),(19682,3536,'_edit_last','1'),(19570,3503,'_wpb_vc_js_status','true'),(19571,3503,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:1:{s:10:\"shortcodes\";a:1:{s:29:\"1694423023036-f0c8f13d-3ea7-0\";a:3:{s:3:\"tag\";s:13:\"vc_media_grid\";s:4:\"atts\";a:2:{s:7:\"grid_id\";s:36:\"vc_gid:1694423023036-f0c8f13d-3ea7-0\";s:7:\"include\";s:79:\"3505,3506,3507,3508,3509,3510,3511,3512,3513,3514,3515,3516,3517,3518,3519,3520\";}s:7:\"content\";s:0:\"\";}}}}'),(19572,3521,'_wpb_post_custom_layout','default'),(19573,3503,'_wpb_post_custom_layout','default'),(19574,3503,'_dt_sidebar_position','disabled'),(19575,3503,'_dt_sidebar_widgetarea_id','sidebar_1'),(19576,3503,'_dt_sidebar_hide_on_mobile','0'),(19577,3503,'_dt_footer_show','1'),(19578,3503,'_dt_footer_widgetarea_id','sidebar_2'),(19579,3503,'_dt_footer_hide_on_mobile','0'),(19580,3503,'_dt_header_title','enabled'),(19581,3503,'_dt_header_background','normal'),(19604,3503,'_dt_post_options_related_mode','custom'),(19629,3530,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:500;s:6:\"height\";i:500;s:4:\"file\";s:14:\"2023/09/a3.jpg\";s:8:\"filesize\";i:334395;s:5:\"sizes\";a:4:{s:6:\"medium\";a:5:{s:4:\"file\";s:14:\"a3-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:31564;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:14:\"a3-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:9014;}s:21:\"woocommerce_thumbnail\";a:6:{s:4:\"file\";s:14:\"a3-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:31564;s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:5:{s:4:\"file\";s:14:\"a3-200x200.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:14371;}}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:{}}}'),(19628,3530,'_wp_attached_file','2023/09/a3.jpg'),(19627,3529,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:500;s:6:\"height\";i:500;s:4:\"file\";s:14:\"2023/09/a2.jpg\";s:8:\"filesize\";i:209999;s:5:\"sizes\";a:4:{s:6:\"medium\";a:5:{s:4:\"file\";s:14:\"a2-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:17474;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:14:\"a2-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:6167;}s:21:\"woocommerce_thumbnail\";a:6:{s:4:\"file\";s:14:\"a2-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:17474;s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:5:{s:4:\"file\";s:14:\"a2-200x200.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:9309;}}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:{}}}'),(19626,3529,'_wp_attached_file','2023/09/a2.jpg'),(19625,3528,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:500;s:6:\"height\";i:500;s:4:\"file\";s:14:\"2023/09/A1.jpg\";s:8:\"filesize\";i:224088;s:5:\"sizes\";a:4:{s:6:\"medium\";a:5:{s:4:\"file\";s:14:\"A1-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:21055;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:14:\"A1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:7188;}s:21:\"woocommerce_thumbnail\";a:6:{s:4:\"file\";s:14:\"A1-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:21055;s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:5:{s:4:\"file\";s:14:\"A1-200x200.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:10866;}}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:{}}}'),(19624,3528,'_wp_attached_file','2023/09/A1.jpg'),(19623,3527,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:500;s:6:\"height\";i:500;s:4:\"file\";s:15:\"2023/09/a12.jpg\";s:8:\"filesize\";i:229040;s:5:\"sizes\";a:4:{s:6:\"medium\";a:5:{s:4:\"file\";s:15:\"a12-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:21119;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:15:\"a12-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:7435;}s:21:\"woocommerce_thumbnail\";a:6:{s:4:\"file\";s:15:\"a12-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:21119;s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:5:{s:4:\"file\";s:15:\"a12-200x200.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:11087;}}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:{}}}'),(19622,3527,'_wp_attached_file','2023/09/a12.jpg'),(19620,3526,'_wp_attached_file','2023/09/a11.jpg'),(19621,3526,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:500;s:6:\"height\";i:500;s:4:\"file\";s:15:\"2023/09/a11.jpg\";s:8:\"filesize\";i:270797;s:5:\"sizes\";a:4:{s:6:\"medium\";a:5:{s:4:\"file\";s:15:\"a11-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:20593;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:15:\"a11-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:6225;}s:21:\"woocommerce_thumbnail\";a:6:{s:4:\"file\";s:15:\"a11-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:20593;s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:5:{s:4:\"file\";s:15:\"a11-200x200.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:9686;}}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:{}}}'),(8346,2787,'_wp_attached_file','2023/05/CANNY-BOOST.png'),(8347,2787,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:600;s:6:\"height\";i:600;s:4:\"file\";s:23:\"2023/05/CANNY-BOOST.png\";s:8:\"filesize\";i:263872;s:5:\"sizes\";a:6:{s:6:\"medium\";a:5:{s:4:\"file\";s:23:\"CANNY-BOOST-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:72211;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:23:\"CANNY-BOOST-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:23204;}s:21:\"woocommerce_thumbnail\";a:6:{s:4:\"file\";s:23:\"CANNY-BOOST-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:72211;s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:5:{s:4:\"file\";s:23:\"CANNY-BOOST-200x200.png\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:36431;}s:12:\"shop_catalog\";a:5:{s:4:\"file\";s:23:\"CANNY-BOOST-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:72211;}s:14:\"shop_thumbnail\";a:5:{s:4:\"file\";s:23:\"CANNY-BOOST-200x200.png\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:36431;}}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:{}}}'),(19649,3522,'_dt_footer_widgetarea_id','sidebar_2'),(19648,3522,'_dt_footer_show','1'),(19647,3522,'_dt_sidebar_hide_on_mobile','0'),(19646,3522,'_dt_sidebar_widgetarea_id','sidebar_1'),(19645,3522,'_dt_sidebar_position','disabled'),(19644,3522,'_wpb_post_custom_layout','default'),(19643,3535,'_wpb_post_custom_layout','default'),(19642,3522,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:1:{s:10:\"shortcodes\";a:1:{s:29:\"1694423374318-afd73027-bd9b-5\";a:3:{s:3:\"tag\";s:13:\"vc_media_grid\";s:4:\"atts\";a:2:{s:7:\"grid_id\";s:36:\"vc_gid:1694423374318-afd73027-bd9b-5\";s:7:\"include\";s:59:\"3523,3524,3525,3526,3527,3528,3529,3530,3531,3532,3533,3534\";}s:7:\"content\";s:0:\"\";}}}}'),(19641,3522,'_wpb_vc_js_status','true'),(19683,3536,'_edit_lock','1695632951:1'),(19639,3522,'_wp_page_template','default'),(19638,3522,'_thumbnail_id','3523'),(19637,3534,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:500;s:6:\"height\";i:500;s:4:\"file\";s:14:\"2023/09/a7.jpg\";s:8:\"filesize\";i:270882;s:5:\"sizes\";a:4:{s:6:\"medium\";a:5:{s:4:\"file\";s:14:\"a7-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:27333;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:14:\"a7-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:9129;}s:21:\"woocommerce_thumbnail\";a:6:{s:4:\"file\";s:14:\"a7-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:27333;s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:5:{s:4:\"file\";s:14:\"a7-200x200.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:13757;}}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:{}}}'),(19636,3534,'_wp_attached_file','2023/09/a7.jpg'),(19635,3533,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:500;s:6:\"height\";i:500;s:4:\"file\";s:14:\"2023/09/a6.jpg\";s:8:\"filesize\";i:218542;s:5:\"sizes\";a:4:{s:6:\"medium\";a:5:{s:4:\"file\";s:14:\"a6-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:23241;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:14:\"a6-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:8066;}s:21:\"woocommerce_thumbnail\";a:6:{s:4:\"file\";s:14:\"a6-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:23241;s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:5:{s:4:\"file\";s:14:\"a6-200x200.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:11983;}}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:{}}}'),(19634,3533,'_wp_attached_file','2023/09/a6.jpg'),(19630,3531,'_wp_attached_file','2023/09/a4.jpg'),(19631,3531,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:500;s:6:\"height\";i:500;s:4:\"file\";s:14:\"2023/09/a4.jpg\";s:8:\"filesize\";i:336637;s:5:\"sizes\";a:4:{s:6:\"medium\";a:5:{s:4:\"file\";s:14:\"a4-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:34522;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:14:\"a4-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:10531;}s:21:\"woocommerce_thumbnail\";a:6:{s:4:\"file\";s:14:\"a4-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:34522;s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:5:{s:4:\"file\";s:14:\"a4-200x200.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:16667;}}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:{}}}'),(19632,3532,'_wp_attached_file','2023/09/a5.jpg'),(19633,3532,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:500;s:6:\"height\";i:500;s:4:\"file\";s:14:\"2023/09/a5.jpg\";s:8:\"filesize\";i:294210;s:5:\"sizes\";a:4:{s:6:\"medium\";a:5:{s:4:\"file\";s:14:\"a5-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:31347;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:14:\"a5-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:10117;}s:21:\"woocommerce_thumbnail\";a:6:{s:4:\"file\";s:14:\"a5-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:31347;s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:5:{s:4:\"file\";s:14:\"a5-200x200.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:15614;}}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:{}}}'),(8441,2789,'_wp_attached_file','2023/05/CANNY-BREW.png'),(8442,2789,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:600;s:6:\"height\";i:600;s:4:\"file\";s:22:\"2023/05/CANNY-BREW.png\";s:8:\"filesize\";i:189241;s:5:\"sizes\";a:6:{s:6:\"medium\";a:5:{s:4:\"file\";s:22:\"CANNY-BREW-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:56522;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:22:\"CANNY-BREW-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:19113;}s:21:\"woocommerce_thumbnail\";a:6:{s:4:\"file\";s:22:\"CANNY-BREW-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:56522;s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:5:{s:4:\"file\";s:22:\"CANNY-BREW-200x200.png\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:29612;}s:12:\"shop_catalog\";a:5:{s:4:\"file\";s:22:\"CANNY-BREW-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:56522;}s:14:\"shop_thumbnail\";a:5:{s:4:\"file\";s:22:\"CANNY-BREW-200x200.png\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:29612;}}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:{}}}'),(19689,3539,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1280;s:6:\"height\";i:720;s:4:\"file\";s:15:\"2023/09/3-1.jpg\";s:8:\"filesize\";i:140202;s:5:\"sizes\";a:7:{s:6:\"medium\";a:5:{s:4:\"file\";s:15:\"3-1-300x169.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:169;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:16495;}s:5:\"large\";a:5:{s:4:\"file\";s:16:\"3-1-1024x576.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:576;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:112289;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:15:\"3-1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:7923;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:15:\"3-1-768x432.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:432;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:73256;}s:21:\"woocommerce_thumbnail\";a:6:{s:4:\"file\";s:15:\"3-1-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:24068;s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:5:{s:4:\"file\";s:15:\"3-1-600x338.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:338;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:50381;}s:29:\"woocommerce_gallery_thumbnail\";a:5:{s:4:\"file\";s:15:\"3-1-200x200.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:12376;}}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:{}}}'),(19688,3539,'_wp_attached_file','2023/09/3-1.jpg'),(19687,3538,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1280;s:6:\"height\";i:960;s:4:\"file\";s:15:\"2023/09/2-1.jpg\";s:8:\"filesize\";i:236863;s:5:\"sizes\";a:7:{s:6:\"medium\";a:5:{s:4:\"file\";s:15:\"2-1-300x225.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:19364;}s:5:\"large\";a:5:{s:4:\"file\";s:16:\"2-1-1024x768.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:177666;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:15:\"2-1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:7200;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:15:\"2-1-768x576.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:576;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:106673;}s:21:\"woocommerce_thumbnail\";a:6:{s:4:\"file\";s:15:\"2-1-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:24639;s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:5:{s:4:\"file\";s:15:\"2-1-600x450.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:68146;}s:29:\"woocommerce_gallery_thumbnail\";a:5:{s:4:\"file\";s:15:\"2-1-200x200.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:11766;}}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:{}}}'),(19686,3538,'_wp_attached_file','2023/09/2-1.jpg'),(19685,3537,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1280;s:6:\"height\";i:720;s:4:\"file\";s:14:\"2023/09/b1.jpg\";s:8:\"filesize\";i:156560;s:5:\"sizes\";a:7:{s:6:\"medium\";a:5:{s:4:\"file\";s:14:\"b1-300x169.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:169;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:13203;}s:5:\"large\";a:5:{s:4:\"file\";s:15:\"b1-1024x576.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:576;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:116639;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:14:\"b1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:6494;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:14:\"b1-768x432.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:432;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:70669;}s:21:\"woocommerce_thumbnail\";a:6:{s:4:\"file\";s:14:\"b1-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:22219;s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:5:{s:4:\"file\";s:14:\"b1-600x338.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:338;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:45551;}s:29:\"woocommerce_gallery_thumbnail\";a:5:{s:4:\"file\";s:14:\"b1-200x200.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:10552;}}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:{}}}'),(19684,3537,'_wp_attached_file','2023/09/b1.jpg'),(19681,3522,'_dt_microsite_mobile_menu',''),(19680,3522,'_dt_microsite_split_right_menu',''),(19679,3522,'_dt_microsite_split_left_menu',''),(19678,3522,'_dt_microsite_primary_menu',''),(19677,3522,'_dt_post_options_preview','normal'),(19653,3522,'_dt_header_background_below_slideshow','disabled'),(19654,3522,'_dt_header_transparent_bg_color_scheme','light'),(19655,3522,'_dt_header_transparent_top_bar_bg_color','#ffffff'),(19656,3522,'_dt_header_transparent_top_bar_bg_opacity','25'),(19657,3522,'_dt_header_transparent_bg_color','#000000'),(19658,3522,'_dt_header_transparent_bg_opacity','50'),(19659,3522,'_dt_header_disabled_background','normal'),(19660,3522,'_dt_header_disabled_transparent_bg_color_scheme','light'),(19661,3522,'_dt_header_disabled_transparent_top_bar_bg_color','#ffffff'),(19662,3522,'_dt_header_disabled_transparent_top_bar_bg_opacity','25'),(19663,3522,'_dt_header_disabled_transparent_bg_color','#000000'),(19664,3522,'_dt_header_disabled_transparent_bg_opacity','50'),(19665,3522,'_dt_page_overrides_top_margin',''),(19666,3522,'_dt_page_overrides_right_margin',''),(19667,3522,'_dt_page_overrides_bottom_margin',''),(19668,3522,'_dt_page_overrides_left_margin',''),(19669,3522,'_dt_mobile_page_padding_top',''),(19670,3522,'_dt_mobile_page_padding_right',''),(19671,3522,'_dt_mobile_page_padding_bottom',''),(19672,3522,'_dt_mobile_page_padding_left',''),(19673,3522,'_dt_post_options_back_button',''),(19674,3522,'_dt_post_options_hide_thumbnail','0'),(19675,3522,'_dt_post_options_related_mode','custom'),(19676,3522,'_dt_post_options_related_categories','a:1:{i:0;s:3:\"155\";}'),(19652,3522,'_dt_header_background','normal'),(19741,3355,'_wqoecf_disable_form','no'),(19740,3355,'_wp_page_template','default'),(19742,3361,'_product_attributes','a:1:{s:15:\"pa_product-type\";a:6:{s:4:\"name\";s:15:\"pa_product-type\";s:5:\"value\";s:0:\"\";s:8:\"position\";i:0;s:10:\"is_visible\";i:0;s:12:\"is_variation\";i:0;s:11:\"is_taxonomy\";i:1;}}'),(19739,3355,'_product_attributes','a:1:{s:15:\"pa_product-type\";a:6:{s:4:\"name\";s:15:\"pa_product-type\";s:5:\"value\";s:0:\"\";s:8:\"position\";i:0;s:10:\"is_visible\";i:0;s:12:\"is_variation\";i:0;s:11:\"is_taxonomy\";i:1;}}'),(19738,3461,'_wp_desired_post_slug','tag-test'),(19737,3461,'_wp_trash_meta_time','1694425576'),(19735,3536,'_dt_microsite_mobile_menu',''),(19734,3536,'_dt_microsite_split_right_menu',''),(19733,3536,'_dt_microsite_split_left_menu',''),(19732,3536,'_dt_microsite_primary_menu',''),(19731,3536,'_dt_post_options_preview','normal'),(19730,3536,'_dt_post_options_related_categories','a:1:{i:0;s:3:\"155\";}'),(19729,3536,'_dt_post_options_related_mode','custom'),(19728,3536,'_dt_post_options_hide_thumbnail','0'),(19727,3536,'_dt_post_options_back_button',''),(19726,3536,'_dt_mobile_page_padding_left',''),(19725,3536,'_dt_mobile_page_padding_bottom',''),(19724,3536,'_dt_mobile_page_padding_right',''),(19723,3536,'_dt_mobile_page_padding_top',''),(19722,3536,'_dt_page_overrides_left_margin',''),(19721,3536,'_dt_page_overrides_bottom_margin',''),(19720,3536,'_dt_page_overrides_right_margin',''),(19719,3536,'_dt_page_overrides_top_margin',''),(19718,3536,'_dt_header_disabled_transparent_bg_opacity','50'),(19717,3536,'_dt_header_disabled_transparent_bg_color','#000000'),(19716,3536,'_dt_header_disabled_transparent_top_bar_bg_opacity','25'),(19715,3536,'_dt_header_disabled_transparent_top_bar_bg_color','#ffffff'),(19714,3536,'_dt_header_disabled_transparent_bg_color_scheme','light'),(19713,3536,'_dt_header_disabled_background','normal'),(19712,3536,'_dt_header_transparent_bg_opacity','50'),(19711,3536,'_dt_header_transparent_bg_color','#000000'),(19710,3536,'_dt_header_transparent_top_bar_bg_opacity','25'),(19709,3536,'_dt_header_transparent_top_bar_bg_color','#ffffff'),(19708,3536,'_dt_header_transparent_bg_color_scheme','light'),(19706,3536,'_dt_header_background','normal'),(19707,3536,'_dt_header_background_below_slideshow','disabled'),(19705,3536,'_dt_header_title','enabled'),(19704,3536,'_dt_footer_hide_on_mobile','0'),(19703,3536,'_dt_footer_widgetarea_id','sidebar_2'),(19702,3536,'_dt_footer_show','1'),(19701,3536,'_dt_sidebar_hide_on_mobile','0'),(19700,3536,'_dt_sidebar_widgetarea_id','sidebar_1'),(19699,3536,'_dt_sidebar_position','disabled'),(19698,3536,'_wpb_post_custom_layout','default'),(19697,3541,'_wpb_post_custom_layout','default'),(19696,3536,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:1:{s:10:\"shortcodes\";a:1:{s:29:\"1694424438131-e6c38eb6-84ee-9\";a:3:{s:3:\"tag\";s:13:\"vc_media_grid\";s:4:\"atts\";a:2:{s:7:\"grid_id\";s:36:\"vc_gid:1694424438131-e6c38eb6-84ee-9\";s:7:\"include\";s:14:\"3537,3538,3539\";}s:7:\"content\";s:0:\"\";}}}}'),(19695,3536,'_wpb_vc_js_status','true'),(19736,3461,'_wp_trash_meta_status','publish'),(19693,3536,'_wp_page_template','default'),(19692,3536,'_thumbnail_id','3540'),(19690,3540,'_wp_attached_file','2023/09/3-2.jpg'),(19691,3540,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1280;s:6:\"height\";i:720;s:4:\"file\";s:15:\"2023/09/3-2.jpg\";s:8:\"filesize\";i:140202;s:5:\"sizes\";a:7:{s:6:\"medium\";a:5:{s:4:\"file\";s:15:\"3-2-300x169.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:169;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:16495;}s:5:\"large\";a:5:{s:4:\"file\";s:16:\"3-2-1024x576.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:576;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:112289;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:15:\"3-2-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:7923;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:15:\"3-2-768x432.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:432;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:73256;}s:21:\"woocommerce_thumbnail\";a:6:{s:4:\"file\";s:15:\"3-2-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:24068;s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:5:{s:4:\"file\";s:15:\"3-2-600x338.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:338;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:50381;}s:29:\"woocommerce_gallery_thumbnail\";a:5:{s:4:\"file\";s:15:\"3-2-200x200.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:12376;}}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:{}}}'),(19798,3547,'_stock',NULL),(19797,3547,'_thumbnail_id','3744'),(19796,3547,'_download_expiry','-1'),(19795,3547,'_download_limit','-1'),(19794,3547,'_downloadable','no'),(19793,3547,'_virtual','no'),(19792,3547,'_sold_individually','no'),(19791,3547,'_backorders','no'),(19790,3547,'_manage_stock','no'),(19789,3547,'_tax_class',''),(19788,3547,'_tax_status','taxable'),(19787,3547,'total_sales','0'),(19786,3453,'_product_attributes','a:1:{s:15:\"pa_product-type\";a:6:{s:4:\"name\";s:15:\"pa_product-type\";s:5:\"value\";s:0:\"\";s:8:\"position\";i:0;s:10:\"is_visible\";i:0;s:12:\"is_variation\";i:0;s:11:\"is_taxonomy\";i:1;}}'),(19785,3450,'_product_attributes','a:1:{s:15:\"pa_product-type\";a:6:{s:4:\"name\";s:15:\"pa_product-type\";s:5:\"value\";s:0:\"\";s:8:\"position\";i:0;s:10:\"is_visible\";i:0;s:12:\"is_variation\";i:0;s:11:\"is_taxonomy\";i:1;}}'),(19784,3447,'_product_attributes','a:1:{s:15:\"pa_product-type\";a:6:{s:4:\"name\";s:15:\"pa_product-type\";s:5:\"value\";s:0:\"\";s:8:\"position\";i:0;s:10:\"is_visible\";i:0;s:12:\"is_variation\";i:0;s:11:\"is_taxonomy\";i:1;}}'),(19783,3442,'_product_attributes','a:1:{s:15:\"pa_product-type\";a:6:{s:4:\"name\";s:15:\"pa_product-type\";s:5:\"value\";s:0:\"\";s:8:\"position\";i:0;s:10:\"is_visible\";i:1;s:12:\"is_variation\";i:0;s:11:\"is_taxonomy\";i:1;}}'),(19782,3441,'_product_attributes','a:1:{s:15:\"pa_product-type\";a:6:{s:4:\"name\";s:15:\"pa_product-type\";s:5:\"value\";s:0:\"\";s:8:\"position\";i:0;s:10:\"is_visible\";i:1;s:12:\"is_variation\";i:0;s:11:\"is_taxonomy\";i:1;}}'),(19781,3439,'_product_attributes','a:1:{s:15:\"pa_product-type\";a:6:{s:4:\"name\";s:15:\"pa_product-type\";s:5:\"value\";s:0:\"\";s:8:\"position\";i:0;s:10:\"is_visible\";i:0;s:12:\"is_variation\";i:0;s:11:\"is_taxonomy\";i:1;}}'),(19780,3438,'_product_attributes','a:1:{s:15:\"pa_product-type\";a:6:{s:4:\"name\";s:15:\"pa_product-type\";s:5:\"value\";s:0:\"\";s:8:\"position\";i:0;s:10:\"is_visible\";i:0;s:12:\"is_variation\";i:0;s:11:\"is_taxonomy\";i:1;}}'),(19779,3437,'_product_attributes','a:1:{s:15:\"pa_product-type\";a:6:{s:4:\"name\";s:15:\"pa_product-type\";s:5:\"value\";s:0:\"\";s:8:\"position\";i:0;s:10:\"is_visible\";i:0;s:12:\"is_variation\";i:0;s:11:\"is_taxonomy\";i:1;}}'),(19778,3436,'_product_attributes','a:1:{s:15:\"pa_product-type\";a:6:{s:4:\"name\";s:15:\"pa_product-type\";s:5:\"value\";s:0:\"\";s:8:\"position\";i:0;s:10:\"is_visible\";i:1;s:12:\"is_variation\";i:0;s:11:\"is_taxonomy\";i:1;}}'),(19777,3435,'_product_attributes','a:1:{s:15:\"pa_product-type\";a:6:{s:4:\"name\";s:15:\"pa_product-type\";s:5:\"value\";s:0:\"\";s:8:\"position\";i:0;s:10:\"is_visible\";i:0;s:12:\"is_variation\";i:0;s:11:\"is_taxonomy\";i:1;}}'),(19776,3434,'_product_attributes','a:1:{s:15:\"pa_product-type\";a:6:{s:4:\"name\";s:15:\"pa_product-type\";s:5:\"value\";s:0:\"\";s:8:\"position\";i:0;s:10:\"is_visible\";i:0;s:12:\"is_variation\";i:0;s:11:\"is_taxonomy\";i:1;}}'),(19775,3433,'_product_attributes','a:1:{s:15:\"pa_product-type\";a:6:{s:4:\"name\";s:15:\"pa_product-type\";s:5:\"value\";s:0:\"\";s:8:\"position\";i:0;s:10:\"is_visible\";i:0;s:12:\"is_variation\";i:0;s:11:\"is_taxonomy\";i:1;}}'),(19773,3370,'_wqoecf_disable_form','no'),(19774,3432,'_product_attributes','a:1:{s:15:\"pa_product-type\";a:6:{s:4:\"name\";s:15:\"pa_product-type\";s:5:\"value\";s:0:\"\";s:8:\"position\";i:0;s:10:\"is_visible\";i:0;s:12:\"is_variation\";i:0;s:11:\"is_taxonomy\";i:1;}}'),(19771,3373,'_wqoecf_disable_form','no'),(19772,3370,'_product_attributes','a:1:{s:15:\"pa_product-type\";a:6:{s:4:\"name\";s:15:\"pa_product-type\";s:5:\"value\";s:0:\"\";s:8:\"position\";i:0;s:10:\"is_visible\";i:0;s:12:\"is_variation\";i:0;s:11:\"is_taxonomy\";i:1;}}'),(19769,3366,'_wqoecf_disable_form','no'),(19770,3373,'_product_attributes','a:1:{s:15:\"pa_product-type\";a:6:{s:4:\"name\";s:15:\"pa_product-type\";s:5:\"value\";s:0:\"\";s:8:\"position\";i:0;s:10:\"is_visible\";i:0;s:12:\"is_variation\";i:0;s:11:\"is_taxonomy\";i:1;}}'),(19767,3331,'_wqoecf_disable_form','no'),(19766,3324,'_wqoecf_disable_form','no'),(19768,3366,'_product_attributes','a:1:{s:15:\"pa_product-type\";a:6:{s:4:\"name\";s:15:\"pa_product-type\";s:5:\"value\";s:0:\"\";s:8:\"position\";i:0;s:10:\"is_visible\";i:0;s:12:\"is_variation\";i:0;s:11:\"is_taxonomy\";i:1;}}'),(19748,3362,'_product_attributes','a:1:{s:15:\"pa_product-type\";a:6:{s:4:\"name\";s:15:\"pa_product-type\";s:5:\"value\";s:0:\"\";s:8:\"position\";i:0;s:10:\"is_visible\";i:1;s:12:\"is_variation\";i:0;s:11:\"is_taxonomy\";i:1;}}'),(19746,3352,'_wp_page_template','default'),(19747,3352,'_wqoecf_disable_form','no'),(19749,3545,'_menu_item_type','custom'),(19750,3545,'_menu_item_menu_item_parent','0'),(19751,3545,'_menu_item_object_id','3545'),(19752,3545,'_menu_item_object','custom'),(19753,3545,'_menu_item_target',''),(19754,3545,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(19755,3545,'_menu_item_xfn',''),(19756,3545,'_menu_item_url','/products'),(19762,3316,'_product_attributes','a:1:{s:15:\"pa_product-type\";a:6:{s:4:\"name\";s:15:\"pa_product-type\";s:5:\"value\";s:0:\"\";s:8:\"position\";i:0;s:10:\"is_visible\";i:0;s:12:\"is_variation\";i:0;s:11:\"is_taxonomy\";i:1;}}'),(19760,2774,'_wp_page_template','default'),(19761,2774,'_wqoecf_disable_form','no'),(19765,3324,'_product_attributes','a:1:{s:15:\"pa_product-type\";a:6:{s:4:\"name\";s:15:\"pa_product-type\";s:5:\"value\";s:0:\"\";s:8:\"position\";i:0;s:10:\"is_visible\";i:0;s:12:\"is_variation\";i:0;s:11:\"is_taxonomy\";i:1;}}'),(19763,3316,'_wp_page_template','default'),(19764,3316,'_wqoecf_disable_form','no'),(19878,3547,'the7_fancy_title_css','#main {\n  padding-top: 1%;\n}\n.fancy-header {\n  background-image: url(\'https://farmchemie.yasithawd.com/wp-content/uploads/2023/09/Canny-Flexi-Joint2_logo-1.png\');\n  background-repeat: no-repeat;\n  background-position: center center;\n  background-size: auto auto;\n  background-color: #ffffff;\n}\n.mobile-false .fancy-header {\n  background-attachment: scroll;\n}\n.fancy-header .wf-wrap {\n  min-height: 140px;\n  padding-top: 0px;\n  padding-bottom: 0px;\n}\n.fancy-header .fancy-title {\n  font-size: 32px;\n  line-height: 36px;\n  color: #079547;\n  text-transform: none;\n}\n.fancy-header .fancy-subtitle {\n  font-size: 24px;\n  line-height: 26px;\n  color: #792c8a;\n  text-transform: none;\n}\n.fancy-header .breadcrumbs {\n  color: #ffffff;\n}\n.fancy-header-overlay {\n  background: rgba(0,0,0,0.5);\n}\n@media screen and (max-width: 778px) {\n  .fancy-header .wf-wrap {\n    min-height: 140px;\n  }\n  .fancy-header .fancy-title {\n    font-size: 30px;\n    line-height: 38px;\n  }\n  .fancy-header .fancy-subtitle {\n    font-size: 20px;\n    line-height: 28px;\n  }\n  .fancy-header.breadcrumbs-mobile-off .breadcrumbs {\n    display: none;\n  }\n  #fancy-header > .wf-wrap {\n    flex-flow: column wrap;\n    align-items: center;\n    justify-content: center;\n    padding-bottom: 0px !important;\n  }\n  .fancy-header.title-left .breadcrumbs {\n    text-align: center;\n    float: none;\n  }\n  .breadcrumbs {\n    margin-bottom: 10px;\n  }\n  .breadcrumbs.breadcrumbs-bg {\n    margin-top: 10px;\n  }\n  .fancy-header.title-right .breadcrumbs {\n    margin: 10px 0 10px 0;\n  }\n  #fancy-header .hgroup,\n  #fancy-header .breadcrumbs {\n    text-align: center;\n  }\n  .fancy-header .hgroup {\n    padding-bottom: 5px;\n  }\n  .breadcrumbs-off .hgroup {\n    padding-bottom: 5px;\n  }\n  .title-right .hgroup {\n    padding: 0 0 5px 0;\n  }\n  .title-right.breadcrumbs-off .hgroup {\n    padding-top: 5px;\n  }\n  .title-left.disabled-bg .breadcrumbs {\n    margin-bottom: 0;\n  }\n}\n'),(19877,3547,'_dt_fancy_header_responsive_breadcrumbs','disabled'),(19876,3547,'_dt_fancy_header_responsive_subtitle_line_height','28'),(19875,3547,'_dt_fancy_header_responsive_subtitle_font_size','20'),(19874,3547,'_dt_fancy_header_responsive_title_line_height','38'),(19873,3547,'_dt_fancy_header_responsive_font_size','30'),(19872,3547,'_dt_fancy_header_responsive_height','140'),(19871,3547,'_dt_fancy_header_responsiveness_switch','778px'),(19870,3547,'_dt_fancy_header_responsiveness','enabled'),(19869,3547,'_dt_fancy_header_responsiveness_heading',''),(19868,3547,'_dt_fancy_header_bg_parallax','0.5'),(19867,3547,'_dt_fancy_header_scroll_effect','default'),(19866,3547,'_dt_fancy_header_bg_overlay_opacity','50'),(19865,3547,'_dt_fancy_header_overlay_color','#000'),(19864,3547,'_dt_fancy_header_bg_overlay','0'),(19863,3547,'_dt_fancy_header_bg_fullscreen','0'),(19862,3547,'_dt_fancy_header_bg_position_y','center'),(19861,3547,'_dt_fancy_header_bg_position_x','center'),(19860,3547,'_dt_fancy_header_bg_repeat','no-repeat'),(28264,3717,'_wp_attached_file','2023/09/Canny-Flexi-Joint2_logo.png'),(19859,3547,'_dt_fancy_header_bg_image','a:1:{i:0;i:3745;}'),(19858,3547,'_dt_fancy_header_bg_image_origin','custom'),(19857,3547,'_dt_fancy_header_bg_color','#ffffff'),(19856,3547,'_dt_fancy_header_bg_heading',''),(19855,3547,'_dt_fancy_header_subtitle_color','#792c8a'),(19854,3547,'_dt_fancy_header_subtitle_color_mode','color'),(19853,3547,'_dt_fancy_header_subtitle_text_transform','none'),(19852,3547,'_dt_fancy_header_subtitle_line_height','26'),(19851,3547,'_dt_fancy_header_subtitle_font_size','24'),(19850,3547,'_dt_fancy_header_subtitle',''),(19849,3547,'_dt_fancy_header_subtitle_heading',''),(19847,3547,'_dt_fancy_header_title_color_mode','color'),(19848,3547,'_dt_fancy_header_title_color','#079547'),(19846,3547,'_dt_fancy_header_text_transform','none'),(19845,3547,'_dt_fancy_header_title_line_height','36'),(19844,3547,'_dt_fancy_header_title_font_size','32'),(19843,3547,'_dt_fancy_header_title',''),(19842,3547,'_dt_fancy_header_title_mode','custom'),(19841,3547,'_dt_fancy_header_title_heading',''),(19840,3547,'_dt_fancy_header_breadcrumbs_bg_color','disabled'),(19839,3547,'_dt_fancy_header_breadcrumbs_text_color','#ffffff'),(19838,3547,'_dt_fancy_header_breadcrumbs','disabled'),(19837,3547,'_dt_fancy_header_breadcrumbs_heading',''),(19836,3547,'_dt_fancy_header_padding-bottom','0px'),(19835,3547,'_dt_fancy_header_padding-top','0px'),(19834,3547,'_dt_fancy_header_height','140'),(19833,3547,'_dt_fancy_header_title_aligment','all_left'),(19832,3547,'_dt_fancy_header_layout_heading',''),(19831,3547,'_dt_mobile_page_padding_left',''),(19830,3547,'_dt_mobile_page_padding_bottom',''),(19829,3547,'_dt_mobile_page_padding_right',''),(19828,3547,'_dt_mobile_page_padding_top',''),(19827,3547,'_dt_page_overrides_left_margin',''),(19826,3547,'_dt_page_overrides_bottom_margin',''),(19825,3547,'_dt_page_overrides_right_margin',''),(19803,3547,'_product_version','8.0.2'),(19804,3547,'_dt_sidebar_position','disabled'),(19805,3547,'_dt_sidebar_widgetarea_id','sidebar_1'),(19806,3547,'_dt_sidebar_hide_on_mobile','0'),(19807,3547,'_dt_footer_show','1'),(19808,3547,'_dt_footer_widgetarea_id','sidebar_2'),(19809,3547,'_dt_footer_hide_on_mobile','0'),(19810,3547,'_dt_header_title','fancy'),(19811,3547,'_dt_header_background','normal'),(19812,3547,'_dt_header_background_below_slideshow','disabled'),(19813,3547,'_dt_header_transparent_bg_color_scheme','light'),(19814,3547,'_dt_header_transparent_top_bar_bg_color','#ffffff'),(19815,3547,'_dt_header_transparent_top_bar_bg_opacity','25'),(19816,3547,'_dt_header_transparent_bg_color','#000000'),(19817,3547,'_dt_header_transparent_bg_opacity','50'),(19818,3547,'_dt_header_disabled_background','normal'),(19819,3547,'_dt_header_disabled_transparent_bg_color_scheme','light'),(19820,3547,'_dt_header_disabled_transparent_top_bar_bg_color','#ffffff'),(19821,3547,'_dt_header_disabled_transparent_top_bar_bg_opacity','25'),(19822,3547,'_dt_header_disabled_transparent_bg_color','#000000'),(19823,3547,'_dt_header_disabled_transparent_bg_opacity','50'),(19824,3547,'_dt_page_overrides_top_margin','1%'),(19802,3547,'_product_attributes','a:1:{s:15:\"pa_product-type\";a:6:{s:4:\"name\";s:15:\"pa_product-type\";s:5:\"value\";s:0:\"\";s:8:\"position\";i:0;s:10:\"is_visible\";i:0;s:12:\"is_variation\";i:0;s:11:\"is_taxonomy\";i:1;}}'),(22905,3612,'_product_version','8.0.2'),(22886,3611,'_wqoecf_disable_form','no'),(22887,3611,'_edit_lock','1695517790:2'),(22889,3612,'total_sales','0'),(22890,3612,'_tax_status','taxable'),(22888,3611,'_edit_last','2'),(22891,3612,'_tax_class',''),(22892,3612,'_manage_stock','no'),(22893,3612,'_backorders','no'),(22894,3612,'_sold_individually','no'),(22895,3612,'_virtual','no'),(22896,3612,'_downloadable','no'),(22897,3612,'_download_limit','-1'),(22898,3612,'_download_expiry','-1'),(22986,3614,'_tax_class',''),(22900,3612,'_stock',NULL),(22901,3612,'_stock_status','instock'),(22902,3612,'_wc_average_rating','0'),(22903,3612,'_wc_review_count','0'),(22904,3612,'_product_attributes','a:1:{s:15:\"pa_product-type\";a:6:{s:4:\"name\";s:15:\"pa_product-type\";s:5:\"value\";s:0:\"\";s:8:\"position\";i:0;s:10:\"is_visible\";i:0;s:12:\"is_variation\";i:0;s:11:\"is_taxonomy\";i:1;}}'),(22885,3611,'the7_fancy_title_css','#main {\n  padding-top: 1%;\n}\n.fancy-header {\n  background-image: none;\n  background-repeat: no-repeat;\n  background-position: center center;\n  background-size: auto auto;\n  background-color: #ffffff;\n}\n.mobile-false .fancy-header {\n  background-attachment: scroll;\n}\n.fancy-header .wf-wrap {\n  min-height: 140px;\n  padding-top: 0px;\n  padding-bottom: 0px;\n}\n.fancy-header .fancy-title {\n  font-size: 32px;\n  line-height: 36px;\n  color: #079547;\n  text-transform: none;\n}\n.fancy-header .fancy-subtitle {\n  font-size: 24px;\n  line-height: 26px;\n  color: #792c8a;\n  text-transform: none;\n}\n.fancy-header .breadcrumbs {\n  color: #ffffff;\n}\n.fancy-header-overlay {\n  background: rgba(0,0,0,0.5);\n}\n@media screen and (max-width: 778px) {\n  .fancy-header .wf-wrap {\n    min-height: 140px;\n  }\n  .fancy-header .fancy-title {\n    font-size: 30px;\n    line-height: 38px;\n  }\n  .fancy-header .fancy-subtitle {\n    font-size: 20px;\n    line-height: 28px;\n  }\n  .fancy-header.breadcrumbs-mobile-off .breadcrumbs {\n    display: none;\n  }\n  #fancy-header > .wf-wrap {\n    flex-flow: column wrap;\n    align-items: center;\n    justify-content: center;\n    padding-bottom: 0px !important;\n  }\n  .fancy-header.title-left .breadcrumbs {\n    text-align: center;\n    float: none;\n  }\n  .breadcrumbs {\n    margin-bottom: 10px;\n  }\n  .breadcrumbs.breadcrumbs-bg {\n    margin-top: 10px;\n  }\n  .fancy-header.title-right .breadcrumbs {\n    margin: 10px 0 10px 0;\n  }\n  #fancy-header .hgroup,\n  #fancy-header .breadcrumbs {\n    text-align: center;\n  }\n  .fancy-header .hgroup {\n    padding-bottom: 5px;\n  }\n  .breadcrumbs-off .hgroup {\n    padding-bottom: 5px;\n  }\n  .title-right .hgroup {\n    padding: 0 0 5px 0;\n  }\n  .title-right.breadcrumbs-off .hgroup {\n    padding-top: 5px;\n  }\n  .title-left.disabled-bg .breadcrumbs {\n    margin-bottom: 0;\n  }\n}\n'),(22884,3611,'_dt_fancy_header_responsive_breadcrumbs','disabled'),(22883,3611,'_dt_fancy_header_responsive_subtitle_line_height','28'),(22882,3611,'_dt_fancy_header_responsive_subtitle_font_size','20'),(22881,3611,'_dt_fancy_header_responsive_title_line_height','38'),(22880,3611,'_dt_fancy_header_responsive_font_size','30'),(22879,3611,'_dt_fancy_header_responsive_height','140'),(22878,3611,'_dt_fancy_header_responsiveness_switch','778px'),(22877,3611,'_dt_fancy_header_responsiveness','enabled'),(22876,3611,'_dt_fancy_header_responsiveness_heading',''),(22875,3611,'_dt_fancy_header_bg_parallax','0.5'),(22874,3611,'_dt_fancy_header_scroll_effect','default'),(22873,3611,'_dt_fancy_header_bg_overlay_opacity','50'),(22848,3611,'_dt_fancy_header_title_heading',''),(22849,3611,'_dt_fancy_header_title_mode','custom'),(22850,3611,'_dt_fancy_header_title',''),(22851,3611,'_dt_fancy_header_title_font_size','32'),(22852,3611,'_dt_fancy_header_title_line_height','36'),(22853,3611,'_dt_fancy_header_text_transform','none'),(22854,3611,'_dt_fancy_header_title_color_mode','color'),(22855,3611,'_dt_fancy_header_title_color','#079547'),(22856,3611,'_dt_fancy_header_subtitle_heading',''),(22857,3611,'_dt_fancy_header_subtitle',''),(22858,3611,'_dt_fancy_header_subtitle_font_size','24'),(22859,3611,'_dt_fancy_header_subtitle_line_height','26'),(22860,3611,'_dt_fancy_header_subtitle_text_transform','none'),(22861,3611,'_dt_fancy_header_subtitle_color_mode','color'),(22862,3611,'_dt_fancy_header_subtitle_color','#792c8a'),(22863,3611,'_dt_fancy_header_bg_heading',''),(22864,3611,'_dt_fancy_header_bg_color','#ffffff'),(22865,3611,'_dt_fancy_header_bg_image_origin','custom'),(22866,3611,'_dt_fancy_header_bg_image','a:0:{}'),(22867,3611,'_dt_fancy_header_bg_repeat','no-repeat'),(22868,3611,'_dt_fancy_header_bg_position_x','center'),(22869,3611,'_dt_fancy_header_bg_position_y','center'),(22870,3611,'_dt_fancy_header_bg_fullscreen','0'),(22871,3611,'_dt_fancy_header_bg_overlay','0'),(22872,3611,'_dt_fancy_header_overlay_color','#000'),(22845,3611,'_dt_fancy_header_breadcrumbs','disabled'),(22847,3611,'_dt_fancy_header_breadcrumbs_bg_color','disabled'),(22846,3611,'_dt_fancy_header_breadcrumbs_text_color','#ffffff'),(19954,3548,'_dt_fancy_header_bg_image','a:1:{i:0;i:3715;}'),(19953,3548,'_dt_fancy_header_bg_image_origin','custom'),(19952,3548,'_dt_fancy_header_bg_color','#ffffff'),(19951,3548,'_dt_fancy_header_bg_heading',''),(19950,3548,'_dt_fancy_header_subtitle_color','#792c8a'),(19949,3548,'_dt_fancy_header_subtitle_color_mode','color'),(19948,3548,'_dt_fancy_header_subtitle_text_transform','none'),(19947,3548,'_dt_fancy_header_subtitle_line_height','26'),(19946,3548,'_dt_fancy_header_subtitle_font_size','24'),(19945,3548,'_dt_fancy_header_subtitle',''),(19944,3548,'_dt_fancy_header_subtitle_heading',''),(19943,3548,'_dt_fancy_header_title_color','#079547'),(19942,3548,'_dt_fancy_header_title_color_mode','color'),(19941,3548,'_dt_fancy_header_text_transform','none'),(19940,3548,'_dt_fancy_header_title_line_height','36'),(19939,3548,'_dt_fancy_header_title_font_size','32'),(19938,3548,'_dt_fancy_header_title',''),(19937,3548,'_dt_fancy_header_title_mode','custom'),(19936,3548,'_dt_fancy_header_title_heading',''),(19935,3548,'_dt_fancy_header_breadcrumbs_bg_color','disabled'),(19934,3548,'_dt_fancy_header_breadcrumbs_text_color','#ffffff'),(19933,3548,'_dt_fancy_header_breadcrumbs','disabled'),(19932,3548,'_dt_fancy_header_breadcrumbs_heading',''),(19931,3548,'_dt_fancy_header_padding-bottom','0px'),(19930,3548,'_dt_fancy_header_padding-top','0px'),(19929,3548,'_dt_fancy_header_height','140'),(19928,3548,'_dt_fancy_header_title_aligment','all_left'),(19927,3548,'_dt_fancy_header_layout_heading',''),(19926,3548,'_dt_mobile_page_padding_left',''),(19925,3548,'_dt_mobile_page_padding_bottom',''),(19924,3548,'_dt_mobile_page_padding_right',''),(19923,3548,'_dt_mobile_page_padding_top',''),(19922,3548,'_dt_page_overrides_left_margin',''),(19921,3548,'_dt_page_overrides_bottom_margin',''),(19920,3548,'_dt_page_overrides_right_margin',''),(19919,3548,'_dt_page_overrides_top_margin','1%'),(19918,3548,'_dt_header_disabled_transparent_bg_opacity','50'),(19917,3548,'_dt_header_disabled_transparent_bg_color','#000000'),(19916,3548,'_dt_header_disabled_transparent_top_bar_bg_opacity','25'),(19915,3548,'_dt_header_disabled_transparent_top_bar_bg_color','#ffffff'),(19914,3548,'_dt_header_disabled_transparent_bg_color_scheme','light'),(19913,3548,'_dt_header_disabled_background','normal'),(15433,3147,'_wp_attached_file','2023/05/AVI-Pharmasin_logo.png'),(19912,3548,'_dt_header_transparent_bg_opacity','50'),(19911,3548,'_dt_header_transparent_bg_color','#000000'),(19910,3548,'_dt_header_transparent_top_bar_bg_opacity','25'),(19909,3548,'_dt_header_transparent_top_bar_bg_color','#ffffff'),(19908,3548,'_dt_header_transparent_bg_color_scheme','light'),(19906,3548,'_dt_header_background','normal'),(19905,3548,'_dt_header_title','fancy'),(19904,3548,'_dt_footer_hide_on_mobile','0'),(19903,3548,'_dt_footer_widgetarea_id','sidebar_2'),(19902,3548,'_dt_footer_show','1'),(19901,3548,'_dt_sidebar_hide_on_mobile','0'),(19900,3548,'_dt_sidebar_widgetarea_id','sidebar_1'),(19899,3548,'_dt_sidebar_position','disabled'),(19898,3548,'_product_version','8.0.2'),(19897,3548,'_product_attributes','a:1:{s:15:\"pa_product-type\";a:6:{s:4:\"name\";s:15:\"pa_product-type\";s:5:\"value\";s:0:\"\";s:8:\"position\";i:0;s:10:\"is_visible\";i:0;s:12:\"is_variation\";i:0;s:11:\"is_taxonomy\";i:1;}}');
INSERT INTO `wplf_postmeta` VALUES (19896,3548,'_wc_review_count','0'),(19895,3548,'_wc_average_rating','0'),(19893,3548,'_stock',NULL),(19894,3548,'_stock_status','instock'),(19892,3548,'_thumbnail_id','3714'),(19879,3547,'_edit_lock','1694852886:1'),(19880,3547,'_edit_last','1'),(19882,3548,'total_sales','0'),(19883,3548,'_tax_status','taxable'),(19881,3547,'_wqoecf_disable_form','no'),(19884,3548,'_tax_class',''),(19885,3548,'_manage_stock','no'),(19886,3548,'_backorders','no'),(19887,3548,'_sold_individually','no'),(19888,3548,'_virtual','no'),(19889,3548,'_downloadable','no'),(19890,3548,'_download_limit','-1'),(19891,3548,'_download_expiry','-1'),(20017,3549,'_dt_page_overrides_left_margin',''),(20016,3549,'_dt_page_overrides_bottom_margin',''),(20015,3549,'_dt_page_overrides_right_margin',''),(20014,3549,'_dt_page_overrides_top_margin','1%'),(20013,3549,'_dt_header_disabled_transparent_bg_opacity','50'),(20012,3549,'_dt_header_disabled_transparent_bg_color','#000000'),(20011,3549,'_dt_header_disabled_transparent_top_bar_bg_opacity','25'),(20010,3549,'_dt_header_disabled_transparent_top_bar_bg_color','#ffffff'),(20009,3549,'_dt_header_disabled_transparent_bg_color_scheme','light'),(20008,3549,'_dt_header_disabled_background','normal'),(20007,3549,'_dt_header_transparent_bg_opacity','50'),(20006,3549,'_dt_header_transparent_bg_color','#000000'),(20005,3549,'_dt_header_transparent_top_bar_bg_opacity','25'),(20004,3549,'_dt_header_transparent_top_bar_bg_color','#ffffff'),(20003,3549,'_dt_header_transparent_bg_color_scheme','light'),(20002,3549,'_dt_header_background_below_slideshow','disabled'),(20001,3549,'_dt_header_background','normal'),(20000,3549,'_dt_header_title','fancy'),(19999,3549,'_dt_footer_hide_on_mobile','0'),(19998,3549,'_dt_footer_widgetarea_id','sidebar_2'),(19997,3549,'_dt_footer_show','1'),(19996,3549,'_dt_sidebar_hide_on_mobile','0'),(19995,3549,'_dt_sidebar_widgetarea_id','sidebar_1'),(19994,3549,'_dt_sidebar_position','disabled'),(19993,3549,'_product_version','8.0.2'),(19992,3549,'_product_attributes','a:1:{s:15:\"pa_product-type\";a:6:{s:4:\"name\";s:15:\"pa_product-type\";s:5:\"value\";s:0:\"\";s:8:\"position\";i:0;s:10:\"is_visible\";i:0;s:12:\"is_variation\";i:0;s:11:\"is_taxonomy\";i:1;}}'),(19991,3549,'_wc_review_count','0'),(19990,3549,'_wc_average_rating','0'),(19989,3549,'_stock_status','instock'),(19988,3549,'_stock',NULL),(20075,3550,'_manage_stock','no'),(19986,3549,'_download_expiry','-1'),(19985,3549,'_download_limit','-1'),(19984,3549,'_downloadable','no'),(19983,3549,'_virtual','no'),(19982,3549,'_sold_individually','no'),(19981,3549,'_backorders','no'),(19980,3549,'_manage_stock','no'),(19979,3549,'_tax_class',''),(19976,3548,'_wqoecf_disable_form','no'),(19975,3548,'_edit_last','1'),(19977,3549,'total_sales','0'),(19978,3549,'_tax_status','taxable'),(19974,3548,'_edit_lock','1694835067:1'),(19958,3548,'_dt_fancy_header_bg_fullscreen','0'),(19959,3548,'_dt_fancy_header_bg_overlay','0'),(19960,3548,'_dt_fancy_header_overlay_color','#000'),(19961,3548,'_dt_fancy_header_bg_overlay_opacity','50'),(19962,3548,'_dt_fancy_header_scroll_effect','default'),(19963,3548,'_dt_fancy_header_bg_parallax','0.5'),(19964,3548,'_dt_fancy_header_responsiveness_heading',''),(19965,3548,'_dt_fancy_header_responsiveness','enabled'),(19966,3548,'_dt_fancy_header_responsiveness_switch','778px'),(19967,3548,'_dt_fancy_header_responsive_height','140'),(19968,3548,'_dt_fancy_header_responsive_font_size','30'),(19969,3548,'_dt_fancy_header_responsive_title_line_height','38'),(19970,3548,'_dt_fancy_header_responsive_subtitle_font_size','20'),(19971,3548,'_dt_fancy_header_responsive_subtitle_line_height','28'),(19972,3548,'_dt_fancy_header_responsive_breadcrumbs','disabled'),(19973,3548,'the7_fancy_title_css','#main {\n  padding-top: 1%;\n}\n.fancy-header {\n  background-image: url(\'https://farmchemie.yasithawd.com/wp-content/uploads/2023/09/Canny-VIT_LOGO.png\');\n  background-repeat: no-repeat;\n  background-position: center center;\n  background-size: auto auto;\n  background-color: #ffffff;\n}\n.mobile-false .fancy-header {\n  background-attachment: scroll;\n}\n.fancy-header .wf-wrap {\n  min-height: 140px;\n  padding-top: 0px;\n  padding-bottom: 0px;\n}\n.fancy-header .fancy-title {\n  font-size: 32px;\n  line-height: 36px;\n  color: #079547;\n  text-transform: none;\n}\n.fancy-header .fancy-subtitle {\n  font-size: 24px;\n  line-height: 26px;\n  color: #792c8a;\n  text-transform: none;\n}\n.fancy-header .breadcrumbs {\n  color: #ffffff;\n}\n.fancy-header-overlay {\n  background: rgba(0,0,0,0.5);\n}\n@media screen and (max-width: 778px) {\n  .fancy-header .wf-wrap {\n    min-height: 140px;\n  }\n  .fancy-header .fancy-title {\n    font-size: 30px;\n    line-height: 38px;\n  }\n  .fancy-header .fancy-subtitle {\n    font-size: 20px;\n    line-height: 28px;\n  }\n  .fancy-header.breadcrumbs-mobile-off .breadcrumbs {\n    display: none;\n  }\n  #fancy-header > .wf-wrap {\n    flex-flow: column wrap;\n    align-items: center;\n    justify-content: center;\n    padding-bottom: 0px !important;\n  }\n  .fancy-header.title-left .breadcrumbs {\n    text-align: center;\n    float: none;\n  }\n  .breadcrumbs {\n    margin-bottom: 10px;\n  }\n  .breadcrumbs.breadcrumbs-bg {\n    margin-top: 10px;\n  }\n  .fancy-header.title-right .breadcrumbs {\n    margin: 10px 0 10px 0;\n  }\n  #fancy-header .hgroup,\n  #fancy-header .breadcrumbs {\n    text-align: center;\n  }\n  .fancy-header .hgroup {\n    padding-bottom: 5px;\n  }\n  .breadcrumbs-off .hgroup {\n    padding-bottom: 5px;\n  }\n  .title-right .hgroup {\n    padding: 0 0 5px 0;\n  }\n  .title-right.breadcrumbs-off .hgroup {\n    padding-top: 5px;\n  }\n  .title-left.disabled-bg .breadcrumbs {\n    margin-bottom: 0;\n  }\n}\n'),(19956,3548,'_dt_fancy_header_bg_position_x','center'),(20087,3550,'_product_version','8.0.2'),(15437,3149,'_wp_attached_file','2023/05/AVI-Pollodoxin_logo.png'),(20086,3550,'_product_attributes','a:1:{s:15:\"pa_product-type\";a:6:{s:4:\"name\";s:15:\"pa_product-type\";s:5:\"value\";s:0:\"\";s:8:\"position\";i:0;s:10:\"is_visible\";i:0;s:12:\"is_variation\";i:0;s:11:\"is_taxonomy\";i:1;}}'),(20085,3550,'_wc_review_count','0'),(20084,3550,'_wc_average_rating','0'),(20083,3550,'_stock_status','instock'),(20082,3550,'_stock',NULL),(20081,3550,'_download_expiry','-1'),(20080,3550,'_download_limit','-1'),(20079,3550,'_downloadable','no'),(20078,3550,'_virtual','no'),(20077,3550,'_sold_individually','no'),(20076,3550,'_backorders','no'),(20072,3550,'total_sales','0'),(20073,3550,'_tax_status','taxable'),(20071,3549,'_edit_last','1'),(20070,3549,'_edit_lock','1695009284:1'),(20069,3549,'_wqoecf_disable_form','no'),(20074,3550,'_tax_class',''),(20068,3549,'the7_fancy_title_css','#main {\n  padding-top: 1%;\n}\n.fancy-header {\n  background-image: url(\'https://farmchemie.yasithawd.com/wp-content/uploads/2023/09/Orondo-Spray_300px-1.png\');\n  background-repeat: no-repeat;\n  background-position: center center;\n  background-size: auto auto;\n  background-color: #ffffff;\n}\n.mobile-false .fancy-header {\n  background-attachment: scroll;\n}\n.fancy-header .wf-wrap {\n  min-height: 140px;\n  padding-top: 0px;\n  padding-bottom: 0px;\n}\n.fancy-header .fancy-title {\n  font-size: 32px;\n  line-height: 36px;\n  color: #079547;\n  text-transform: none;\n}\n.fancy-header .fancy-subtitle {\n  font-size: 24px;\n  line-height: 26px;\n  color: #792c8a;\n  text-transform: none;\n}\n.fancy-header .breadcrumbs {\n  color: #ffffff;\n}\n.fancy-header-overlay {\n  background: rgba(0,0,0,0.5);\n}\n@media screen and (max-width: 778px) {\n  .fancy-header .wf-wrap {\n    min-height: 140px;\n  }\n  .fancy-header .fancy-title {\n    font-size: 30px;\n    line-height: 38px;\n  }\n  .fancy-header .fancy-subtitle {\n    font-size: 20px;\n    line-height: 28px;\n  }\n  .fancy-header.breadcrumbs-mobile-off .breadcrumbs {\n    display: none;\n  }\n  #fancy-header > .wf-wrap {\n    flex-flow: column wrap;\n    align-items: center;\n    justify-content: center;\n    padding-bottom: 0px !important;\n  }\n  .fancy-header.title-left .breadcrumbs {\n    text-align: center;\n    float: none;\n  }\n  .breadcrumbs {\n    margin-bottom: 10px;\n  }\n  .breadcrumbs.breadcrumbs-bg {\n    margin-top: 10px;\n  }\n  .fancy-header.title-right .breadcrumbs {\n    margin: 10px 0 10px 0;\n  }\n  #fancy-header .hgroup,\n  #fancy-header .breadcrumbs {\n    text-align: center;\n  }\n  .fancy-header .hgroup {\n    padding-bottom: 5px;\n  }\n  .breadcrumbs-off .hgroup {\n    padding-bottom: 5px;\n  }\n  .title-right .hgroup {\n    padding: 0 0 5px 0;\n  }\n  .title-right.breadcrumbs-off .hgroup {\n    padding-top: 5px;\n  }\n  .title-left.disabled-bg .breadcrumbs {\n    margin-bottom: 0;\n  }\n}\n'),(20020,3549,'_dt_mobile_page_padding_bottom',''),(20067,3549,'_dt_fancy_header_responsive_breadcrumbs','disabled'),(20066,3549,'_dt_fancy_header_responsive_subtitle_line_height','28'),(20065,3549,'_dt_fancy_header_responsive_subtitle_font_size','20'),(20064,3549,'_dt_fancy_header_responsive_title_line_height','38'),(20063,3549,'_dt_fancy_header_responsive_font_size','30'),(20062,3549,'_dt_fancy_header_responsive_height','140'),(20061,3549,'_dt_fancy_header_responsiveness_switch','778px'),(20060,3549,'_dt_fancy_header_responsiveness','enabled'),(20059,3549,'_dt_fancy_header_responsiveness_heading',''),(20058,3549,'_dt_fancy_header_bg_parallax','0.5'),(20057,3549,'_dt_fancy_header_scroll_effect','default'),(20056,3549,'_dt_fancy_header_bg_overlay_opacity','50'),(20055,3549,'_dt_fancy_header_overlay_color','#000'),(20054,3549,'_dt_fancy_header_bg_overlay','0'),(20053,3549,'_dt_fancy_header_bg_fullscreen','0'),(20052,3549,'_dt_fancy_header_bg_position_y','center'),(20051,3549,'_dt_fancy_header_bg_position_x','center'),(20050,3549,'_dt_fancy_header_bg_repeat','no-repeat'),(20049,3549,'_dt_fancy_header_bg_image','a:1:{i:0;i:3761;}'),(20048,3549,'_dt_fancy_header_bg_image_origin','custom'),(20047,3549,'_dt_fancy_header_bg_color','#ffffff'),(20023,3549,'_dt_fancy_header_title_aligment','all_left'),(20024,3549,'_dt_fancy_header_height','140'),(20025,3549,'_dt_fancy_header_padding-top','0px'),(20026,3549,'_dt_fancy_header_padding-bottom','0px'),(20027,3549,'_dt_fancy_header_breadcrumbs_heading',''),(20028,3549,'_dt_fancy_header_breadcrumbs','disabled'),(20029,3549,'_dt_fancy_header_breadcrumbs_text_color','#ffffff'),(20030,3549,'_dt_fancy_header_breadcrumbs_bg_color','disabled'),(20031,3549,'_dt_fancy_header_title_heading',''),(20032,3549,'_dt_fancy_header_title_mode','custom'),(20033,3549,'_dt_fancy_header_title',''),(20034,3549,'_dt_fancy_header_title_font_size','32'),(20035,3549,'_dt_fancy_header_title_line_height','36'),(20036,3549,'_dt_fancy_header_text_transform','none'),(20037,3549,'_dt_fancy_header_title_color_mode','color'),(20038,3549,'_dt_fancy_header_title_color','#079547'),(20039,3549,'_dt_fancy_header_subtitle_heading',''),(20040,3549,'_dt_fancy_header_subtitle',''),(20041,3549,'_dt_fancy_header_subtitle_font_size','24'),(20042,3549,'_dt_fancy_header_subtitle_line_height','26'),(20043,3549,'_dt_fancy_header_subtitle_text_transform','none'),(20044,3549,'_dt_fancy_header_subtitle_color_mode','color'),(20045,3549,'_dt_fancy_header_subtitle_color','#792c8a'),(20046,3549,'_dt_fancy_header_bg_heading',''),(20019,3549,'_dt_mobile_page_padding_right',''),(20162,3550,'the7_fancy_title_css','#main {\n  padding-top: 1%;\n}\n.fancy-header {\n  background-image: url(\'https://farmchemie.yasithawd.com/wp-content/uploads/2023/09/REGEN_logo-1.png\');\n  background-repeat: no-repeat;\n  background-position: center center;\n  background-size: auto auto;\n  background-color: #ffffff;\n}\n.mobile-false .fancy-header {\n  background-attachment: scroll;\n}\n.fancy-header .wf-wrap {\n  min-height: 140px;\n  padding-top: 0px;\n  padding-bottom: 0px;\n}\n.fancy-header .fancy-title {\n  font-size: 32px;\n  line-height: 36px;\n  color: #079547;\n  text-transform: none;\n}\n.fancy-header .fancy-subtitle {\n  font-size: 24px;\n  line-height: 26px;\n  color: #792c8a;\n  text-transform: none;\n}\n.fancy-header .breadcrumbs {\n  color: #ffffff;\n}\n.fancy-header-overlay {\n  background: rgba(0,0,0,0.5);\n}\n@media screen and (max-width: 778px) {\n  .fancy-header .wf-wrap {\n    min-height: 140px;\n  }\n  .fancy-header .fancy-title {\n    font-size: 30px;\n    line-height: 38px;\n  }\n  .fancy-header .fancy-subtitle {\n    font-size: 20px;\n    line-height: 28px;\n  }\n  .fancy-header.breadcrumbs-mobile-off .breadcrumbs {\n    display: none;\n  }\n  #fancy-header > .wf-wrap {\n    flex-flow: column wrap;\n    align-items: center;\n    justify-content: center;\n    padding-bottom: 0px !important;\n  }\n  .fancy-header.title-left .breadcrumbs {\n    text-align: center;\n    float: none;\n  }\n  .breadcrumbs {\n    margin-bottom: 10px;\n  }\n  .breadcrumbs.breadcrumbs-bg {\n    margin-top: 10px;\n  }\n  .fancy-header.title-right .breadcrumbs {\n    margin: 10px 0 10px 0;\n  }\n  #fancy-header .hgroup,\n  #fancy-header .breadcrumbs {\n    text-align: center;\n  }\n  .fancy-header .hgroup {\n    padding-bottom: 5px;\n  }\n  .breadcrumbs-off .hgroup {\n    padding-bottom: 5px;\n  }\n  .title-right .hgroup {\n    padding: 0 0 5px 0;\n  }\n  .title-right.breadcrumbs-off .hgroup {\n    padding-top: 5px;\n  }\n  .title-left.disabled-bg .breadcrumbs {\n    margin-bottom: 0;\n  }\n}\n'),(20161,3550,'_dt_fancy_header_responsive_breadcrumbs','disabled'),(20160,3550,'_dt_fancy_header_responsive_subtitle_line_height','28'),(20159,3550,'_dt_fancy_header_responsive_subtitle_font_size','20'),(20158,3550,'_dt_fancy_header_responsive_title_line_height','38'),(20157,3550,'_dt_fancy_header_responsive_font_size','30'),(20156,3550,'_dt_fancy_header_responsive_height','140'),(20155,3550,'_dt_fancy_header_responsiveness_switch','778px'),(20154,3550,'_dt_fancy_header_responsiveness','enabled'),(20153,3550,'_dt_fancy_header_responsiveness_heading',''),(20152,3550,'_dt_fancy_header_bg_parallax','0.5'),(20151,3550,'_dt_fancy_header_scroll_effect','default'),(20150,3550,'_dt_fancy_header_bg_overlay_opacity','50'),(20149,3550,'_dt_fancy_header_overlay_color','#000'),(20148,3550,'_dt_fancy_header_bg_overlay','0'),(20147,3550,'_dt_fancy_header_bg_fullscreen','0'),(20146,3550,'_dt_fancy_header_bg_position_y','center'),(20145,3550,'_dt_fancy_header_bg_position_x','center'),(20144,3550,'_dt_fancy_header_bg_repeat','no-repeat'),(20143,3550,'_dt_fancy_header_bg_image','a:1:{i:0;i:3737;}'),(20142,3550,'_dt_fancy_header_bg_image_origin','custom'),(20141,3550,'_dt_fancy_header_bg_color','#ffffff'),(20140,3550,'_dt_fancy_header_bg_heading',''),(20139,3550,'_dt_fancy_header_subtitle_color','#792c8a'),(20138,3550,'_dt_fancy_header_subtitle_color_mode','color'),(20137,3550,'_dt_fancy_header_subtitle_text_transform','none'),(20135,3550,'_dt_fancy_header_subtitle_font_size','24'),(20134,3550,'_dt_fancy_header_subtitle',''),(20133,3550,'_dt_fancy_header_subtitle_heading',''),(20132,3550,'_dt_fancy_header_title_color','#079547'),(20131,3550,'_dt_fancy_header_title_color_mode','color'),(20130,3550,'_dt_fancy_header_text_transform','none'),(20129,3550,'_dt_fancy_header_title_line_height','36'),(20128,3550,'_dt_fancy_header_title_font_size','32'),(20127,3550,'_dt_fancy_header_title',''),(20126,3550,'_dt_fancy_header_title_mode','custom'),(20125,3550,'_dt_fancy_header_title_heading',''),(20124,3550,'_dt_fancy_header_breadcrumbs_bg_color','disabled'),(20123,3550,'_dt_fancy_header_breadcrumbs_text_color','#ffffff'),(20122,3550,'_dt_fancy_header_breadcrumbs','disabled'),(20121,3550,'_dt_fancy_header_breadcrumbs_heading',''),(20120,3550,'_dt_fancy_header_padding-bottom','0px'),(20119,3550,'_dt_fancy_header_padding-top','0px'),(20118,3550,'_dt_fancy_header_height','140'),(20117,3550,'_dt_fancy_header_title_aligment','all_left'),(20116,3550,'_dt_fancy_header_layout_heading',''),(20115,3550,'_dt_mobile_page_padding_left',''),(20114,3550,'_dt_mobile_page_padding_bottom',''),(20113,3550,'_dt_mobile_page_padding_right',''),(20089,3550,'_dt_sidebar_widgetarea_id','sidebar_1'),(20090,3550,'_dt_sidebar_hide_on_mobile','0'),(20091,3550,'_dt_footer_show','1'),(20092,3550,'_dt_footer_widgetarea_id','sidebar_2'),(20093,3550,'_dt_footer_hide_on_mobile','0'),(20094,3550,'_dt_header_title','fancy'),(20095,3550,'_dt_header_background','normal'),(20096,3550,'_dt_header_background_below_slideshow','disabled'),(20097,3550,'_dt_header_transparent_bg_color_scheme','light'),(20098,3550,'_dt_header_transparent_top_bar_bg_color','#ffffff'),(20099,3550,'_dt_header_transparent_top_bar_bg_opacity','25'),(20100,3550,'_dt_header_transparent_bg_color','#000000'),(20101,3550,'_dt_header_transparent_bg_opacity','50'),(20102,3550,'_dt_header_disabled_background','normal'),(20103,3550,'_dt_header_disabled_transparent_bg_color_scheme','light'),(20104,3550,'_dt_header_disabled_transparent_top_bar_bg_color','#ffffff'),(20105,3550,'_dt_header_disabled_transparent_top_bar_bg_opacity','25'),(20106,3550,'_dt_header_disabled_transparent_bg_color','#000000'),(20107,3550,'_dt_header_disabled_transparent_bg_opacity','50'),(20108,3550,'_dt_page_overrides_top_margin','1%'),(20109,3550,'_dt_page_overrides_right_margin',''),(20110,3550,'_dt_page_overrides_bottom_margin',''),(20111,3550,'_dt_page_overrides_left_margin',''),(20112,3550,'_dt_mobile_page_padding_top',''),(20088,3550,'_dt_sidebar_position','disabled'),(9320,2818,'_wp_attached_file','2023/05/Canvac-R.png'),(9321,2818,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:600;s:6:\"height\";i:600;s:4:\"file\";s:20:\"2023/05/Canvac-R.png\";s:8:\"filesize\";i:177615;s:5:\"sizes\";a:6:{s:6:\"medium\";a:5:{s:4:\"file\";s:20:\"Canvac-R-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:45434;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:20:\"Canvac-R-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:13383;}s:21:\"woocommerce_thumbnail\";a:6:{s:4:\"file\";s:20:\"Canvac-R-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:45434;s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:5:{s:4:\"file\";s:20:\"Canvac-R-200x200.png\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:22116;}s:12:\"shop_catalog\";a:5:{s:4:\"file\";s:20:\"Canvac-R-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:45434;}s:14:\"shop_thumbnail\";a:5:{s:4:\"file\";s:20:\"Canvac-R-200x200.png\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:22116;}}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:{}}}'),(20246,3551,'_dt_fancy_header_bg_parallax','0.5'),(20136,3550,'_dt_fancy_header_subtitle_line_height','26'),(20245,3551,'_dt_fancy_header_scroll_effect','default'),(20244,3551,'_dt_fancy_header_bg_overlay_opacity','50'),(20243,3551,'_dt_fancy_header_overlay_color','#000'),(20242,3551,'_dt_fancy_header_bg_overlay','0'),(20241,3551,'_dt_fancy_header_bg_fullscreen','0'),(20240,3551,'_dt_fancy_header_bg_position_y','center'),(20239,3551,'_dt_fancy_header_bg_position_x','center'),(20238,3551,'_dt_fancy_header_bg_repeat','no-repeat'),(20237,3551,'_dt_fancy_header_bg_image','a:1:{i:0;i:3736;}'),(20236,3551,'_dt_fancy_header_bg_image_origin','custom'),(20235,3551,'_dt_fancy_header_bg_color','#ffffff'),(20234,3551,'_dt_fancy_header_bg_heading',''),(20233,3551,'_dt_fancy_header_subtitle_color','#792c8a'),(20232,3551,'_dt_fancy_header_subtitle_color_mode','color'),(20231,3551,'_dt_fancy_header_subtitle_text_transform','none'),(20230,3551,'_dt_fancy_header_subtitle_line_height','26'),(20229,3551,'_dt_fancy_header_subtitle_font_size','24'),(20228,3551,'_dt_fancy_header_subtitle',''),(20227,3551,'_dt_fancy_header_subtitle_heading',''),(20226,3551,'_dt_fancy_header_title_color','#079547'),(20225,3551,'_dt_fancy_header_title_color_mode','color'),(20224,3551,'_dt_fancy_header_text_transform','none'),(20223,3551,'_dt_fancy_header_title_line_height','36'),(20222,3551,'_dt_fancy_header_title_font_size','32'),(20221,3551,'_dt_fancy_header_title',''),(20220,3551,'_dt_fancy_header_title_mode','custom'),(20219,3551,'_dt_fancy_header_title_heading',''),(20218,3551,'_dt_fancy_header_breadcrumbs_bg_color','disabled'),(20217,3551,'_dt_fancy_header_breadcrumbs_text_color','#ffffff'),(20216,3551,'_dt_fancy_header_breadcrumbs','disabled'),(20215,3551,'_dt_fancy_header_breadcrumbs_heading',''),(20214,3551,'_dt_fancy_header_padding-bottom','0px'),(20213,3551,'_dt_fancy_header_padding-top','0px'),(20212,3551,'_dt_fancy_header_height','140'),(20211,3551,'_dt_fancy_header_title_aligment','all_left'),(20210,3551,'_dt_fancy_header_layout_heading',''),(20209,3551,'_dt_mobile_page_padding_left',''),(20208,3551,'_dt_mobile_page_padding_bottom',''),(20207,3551,'_dt_mobile_page_padding_right',''),(20206,3551,'_dt_mobile_page_padding_top',''),(20205,3551,'_dt_page_overrides_left_margin',''),(20204,3551,'_dt_page_overrides_bottom_margin',''),(20203,3551,'_dt_page_overrides_right_margin',''),(20202,3551,'_dt_page_overrides_top_margin','1%'),(20201,3551,'_dt_header_disabled_transparent_bg_opacity','50'),(20200,3551,'_dt_header_disabled_transparent_bg_color','#000000'),(20199,3551,'_dt_header_disabled_transparent_top_bar_bg_opacity','25'),(20198,3551,'_dt_header_disabled_transparent_top_bar_bg_color','#ffffff'),(20197,3551,'_dt_header_disabled_transparent_bg_color_scheme','light'),(20196,3551,'_dt_header_disabled_background','normal'),(20195,3551,'_dt_header_transparent_bg_opacity','50'),(20194,3551,'_dt_header_transparent_bg_color','#000000'),(20193,3551,'_dt_header_transparent_top_bar_bg_opacity','25'),(20192,3551,'_dt_header_transparent_top_bar_bg_color','#ffffff'),(20191,3551,'_dt_header_transparent_bg_color_scheme','light'),(20190,3551,'_dt_header_background_below_slideshow','disabled'),(20189,3551,'_dt_header_background','normal'),(20188,3551,'_dt_header_title','fancy'),(20187,3551,'_dt_footer_hide_on_mobile','0'),(20186,3551,'_dt_footer_widgetarea_id','sidebar_2'),(20185,3551,'_dt_footer_show','1'),(20184,3551,'_dt_sidebar_hide_on_mobile','0'),(20181,3551,'_product_version','8.0.2'),(20182,3551,'_dt_sidebar_position','disabled'),(20183,3551,'_dt_sidebar_widgetarea_id','sidebar_1'),(20163,3550,'_wqoecf_disable_form','no'),(20164,3550,'_edit_lock','1694851756:1'),(20165,3550,'_edit_last','1'),(20166,3551,'total_sales','0'),(20167,3551,'_tax_status','taxable'),(20168,3551,'_tax_class',''),(20169,3551,'_manage_stock','no'),(20170,3551,'_backorders','no'),(20171,3551,'_sold_individually','no'),(20172,3551,'_virtual','no'),(20173,3551,'_downloadable','no'),(20174,3551,'_download_limit','-1'),(20175,3551,'_download_expiry','-1'),(20176,3551,'_stock',NULL),(20177,3551,'_stock_status','instock'),(20178,3551,'_wc_average_rating','0'),(20179,3551,'_wc_review_count','0'),(20180,3551,'_product_attributes','a:1:{s:15:\"pa_product-type\";a:6:{s:4:\"name\";s:15:\"pa_product-type\";s:5:\"value\";s:0:\"\";s:8:\"position\";i:0;s:10:\"is_visible\";i:0;s:12:\"is_variation\";i:0;s:11:\"is_taxonomy\";i:1;}}'),(20312,3552,'_dt_fancy_header_breadcrumbs_bg_color','disabled'),(20311,3552,'_dt_fancy_header_breadcrumbs_text_color','#ffffff'),(20310,3552,'_dt_fancy_header_breadcrumbs','disabled'),(20309,3552,'_dt_fancy_header_breadcrumbs_heading',''),(20308,3552,'_dt_fancy_header_padding-bottom','0px'),(20307,3552,'_dt_fancy_header_padding-top','0px'),(20306,3552,'_dt_fancy_header_height','140'),(20305,3552,'_dt_fancy_header_title_aligment','all_left'),(20304,3552,'_dt_fancy_header_layout_heading',''),(20303,3552,'_dt_mobile_page_padding_left',''),(20302,3552,'_dt_mobile_page_padding_bottom',''),(20301,3552,'_dt_mobile_page_padding_right',''),(20300,3552,'_dt_mobile_page_padding_top',''),(20299,3552,'_dt_page_overrides_left_margin',''),(20298,3552,'_dt_page_overrides_bottom_margin',''),(20297,3552,'_dt_page_overrides_right_margin',''),(20296,3552,'_dt_page_overrides_top_margin','1%'),(20295,3552,'_dt_header_disabled_transparent_bg_opacity','50'),(20294,3552,'_dt_header_disabled_transparent_bg_color','#000000'),(20293,3552,'_dt_header_disabled_transparent_top_bar_bg_opacity','25'),(20292,3552,'_dt_header_disabled_transparent_top_bar_bg_color','#ffffff'),(20291,3552,'_dt_header_disabled_transparent_bg_color_scheme','light'),(20290,3552,'_dt_header_disabled_background','normal'),(20289,3552,'_dt_header_transparent_bg_opacity','50'),(20288,3552,'_dt_header_transparent_bg_color','#000000'),(20287,3552,'_dt_header_transparent_top_bar_bg_opacity','25'),(20286,3552,'_dt_header_transparent_top_bar_bg_color','#ffffff'),(20285,3552,'_dt_header_transparent_bg_color_scheme','light'),(20284,3552,'_dt_header_background_below_slideshow','disabled'),(20283,3552,'_dt_header_background','normal'),(20282,3552,'_dt_header_title','fancy'),(20281,3552,'_dt_footer_hide_on_mobile','0'),(20280,3552,'_dt_footer_widgetarea_id','sidebar_2'),(20279,3552,'_dt_footer_show','1'),(20278,3552,'_dt_sidebar_hide_on_mobile','0'),(20277,3552,'_dt_sidebar_widgetarea_id','sidebar_1'),(20276,3552,'_dt_sidebar_position','disabled'),(20275,3552,'_product_version','8.0.2'),(20274,3552,'_product_attributes','a:1:{s:15:\"pa_product-type\";a:6:{s:4:\"name\";s:15:\"pa_product-type\";s:5:\"value\";s:0:\"\";s:8:\"position\";i:0;s:10:\"is_visible\";i:0;s:12:\"is_variation\";i:0;s:11:\"is_taxonomy\";i:1;}}'),(20273,3552,'_wc_review_count','0'),(20272,3552,'_wc_average_rating','0'),(20270,3552,'_stock',NULL),(20271,3552,'_stock_status','instock'),(20268,3552,'_download_limit','-1'),(20267,3552,'_downloadable','no'),(20266,3552,'_virtual','no'),(20265,3552,'_sold_individually','no'),(20264,3552,'_backorders','no'),(20263,3552,'_manage_stock','no'),(20262,3552,'_tax_class',''),(20261,3552,'_tax_status','taxable'),(20260,3552,'total_sales','0'),(20259,3551,'_wqoecf_disable_form','no'),(20258,3551,'_edit_last','1'),(20257,3551,'_edit_lock','1694851695:1'),(20248,3551,'_dt_fancy_header_responsiveness','enabled'),(20249,3551,'_dt_fancy_header_responsiveness_switch','778px'),(20250,3551,'_dt_fancy_header_responsive_height','140'),(20251,3551,'_dt_fancy_header_responsive_font_size','30'),(20252,3551,'_dt_fancy_header_responsive_title_line_height','38'),(20253,3551,'_dt_fancy_header_responsive_subtitle_font_size','20'),(20254,3551,'_dt_fancy_header_responsive_subtitle_line_height','28'),(20255,3551,'_dt_fancy_header_responsive_breadcrumbs','disabled'),(20256,3551,'the7_fancy_title_css','#main {\n  padding-top: 1%;\n}\n.fancy-header {\n  background-image: url(\'https://farmchemie.yasithawd.com/wp-content/uploads/2023/09/Cardisure_-300px-1.png\');\n  background-repeat: no-repeat;\n  background-position: center center;\n  background-size: auto auto;\n  background-color: #ffffff;\n}\n.mobile-false .fancy-header {\n  background-attachment: scroll;\n}\n.fancy-header .wf-wrap {\n  min-height: 140px;\n  padding-top: 0px;\n  padding-bottom: 0px;\n}\n.fancy-header .fancy-title {\n  font-size: 32px;\n  line-height: 36px;\n  color: #079547;\n  text-transform: none;\n}\n.fancy-header .fancy-subtitle {\n  font-size: 24px;\n  line-height: 26px;\n  color: #792c8a;\n  text-transform: none;\n}\n.fancy-header .breadcrumbs {\n  color: #ffffff;\n}\n.fancy-header-overlay {\n  background: rgba(0,0,0,0.5);\n}\n@media screen and (max-width: 778px) {\n  .fancy-header .wf-wrap {\n    min-height: 140px;\n  }\n  .fancy-header .fancy-title {\n    font-size: 30px;\n    line-height: 38px;\n  }\n  .fancy-header .fancy-subtitle {\n    font-size: 20px;\n    line-height: 28px;\n  }\n  .fancy-header.breadcrumbs-mobile-off .breadcrumbs {\n    display: none;\n  }\n  #fancy-header > .wf-wrap {\n    flex-flow: column wrap;\n    align-items: center;\n    justify-content: center;\n    padding-bottom: 0px !important;\n  }\n  .fancy-header.title-left .breadcrumbs {\n    text-align: center;\n    float: none;\n  }\n  .breadcrumbs {\n    margin-bottom: 10px;\n  }\n  .breadcrumbs.breadcrumbs-bg {\n    margin-top: 10px;\n  }\n  .fancy-header.title-right .breadcrumbs {\n    margin: 10px 0 10px 0;\n  }\n  #fancy-header .hgroup,\n  #fancy-header .breadcrumbs {\n    text-align: center;\n  }\n  .fancy-header .hgroup {\n    padding-bottom: 5px;\n  }\n  .breadcrumbs-off .hgroup {\n    padding-bottom: 5px;\n  }\n  .title-right .hgroup {\n    padding: 0 0 5px 0;\n  }\n  .title-right.breadcrumbs-off .hgroup {\n    padding-top: 5px;\n  }\n  .title-left.disabled-bg .breadcrumbs {\n    margin-bottom: 0;\n  }\n}\n'),(20247,3551,'_dt_fancy_header_responsiveness_heading',''),(9511,2822,'_wp_attached_file','2023/05/GANADEXIL-ENROFLOXACINA-5-INJECTABLE.png'),(9512,2822,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:600;s:6:\"height\";i:600;s:4:\"file\";s:48:\"2023/05/GANADEXIL-ENROFLOXACINA-5-INJECTABLE.png\";s:8:\"filesize\";i:290850;s:5:\"sizes\";a:6:{s:6:\"medium\";a:5:{s:4:\"file\";s:48:\"GANADEXIL-ENROFLOXACINA-5-INJECTABLE-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:69933;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:48:\"GANADEXIL-ENROFLOXACINA-5-INJECTABLE-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:19953;}s:21:\"woocommerce_thumbnail\";a:6:{s:4:\"file\";s:48:\"GANADEXIL-ENROFLOXACINA-5-INJECTABLE-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:69933;s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:5:{s:4:\"file\";s:48:\"GANADEXIL-ENROFLOXACINA-5-INJECTABLE-200x200.png\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:33689;}s:12:\"shop_catalog\";a:5:{s:4:\"file\";s:48:\"GANADEXIL-ENROFLOXACINA-5-INJECTABLE-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:69933;}s:14:\"shop_thumbnail\";a:5:{s:4:\"file\";s:48:\"GANADEXIL-ENROFLOXACINA-5-INJECTABLE-200x200.png\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:33689;}}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:{}}}'),(20372,3553,'_dt_sidebar_widgetarea_id','sidebar_1'),(20269,3552,'_download_expiry','-1'),(20371,3553,'_dt_sidebar_position','disabled'),(20370,3553,'_product_version','8.0.2'),(20369,3553,'_product_attributes','a:1:{s:15:\"pa_product-type\";a:6:{s:4:\"name\";s:15:\"pa_product-type\";s:5:\"value\";s:0:\"\";s:8:\"position\";i:0;s:10:\"is_visible\";i:0;s:12:\"is_variation\";i:0;s:11:\"is_taxonomy\";i:1;}}'),(20368,3553,'_wc_review_count','0'),(20367,3553,'_wc_average_rating','0'),(20366,3553,'_stock_status','instock'),(20365,3553,'_stock',NULL),(20364,3553,'_download_expiry','-1'),(20363,3553,'_download_limit','-1'),(20362,3553,'_downloadable','no'),(20361,3553,'_virtual','no'),(20360,3553,'_sold_individually','no'),(20359,3553,'_backorders','no'),(20358,3553,'_manage_stock','no'),(20357,3553,'_tax_class',''),(20356,3553,'_tax_status','taxable'),(20355,3553,'total_sales','0'),(20354,3365,'_product_attributes','a:1:{s:15:\"pa_product-type\";a:6:{s:4:\"name\";s:15:\"pa_product-type\";s:5:\"value\";s:0:\"\";s:8:\"position\";i:0;s:10:\"is_visible\";i:0;s:12:\"is_variation\";i:0;s:11:\"is_taxonomy\";i:1;}}'),(20353,3552,'_edit_last','2'),(20352,3552,'_edit_lock','1695516212:2'),(20351,3552,'_wqoecf_disable_form','no'),(20350,3552,'the7_fancy_title_css','#main {\n  padding-top: 1%;\n}\n.fancy-header {\n  background-image: none;\n  background-repeat: no-repeat;\n  background-position: center center;\n  background-size: auto auto;\n  background-color: #ffffff;\n}\n.mobile-false .fancy-header {\n  background-attachment: scroll;\n}\n.fancy-header .wf-wrap {\n  min-height: 140px;\n  padding-top: 0px;\n  padding-bottom: 0px;\n}\n.fancy-header .fancy-title {\n  font-size: 32px;\n  line-height: 36px;\n  color: #079547;\n  text-transform: none;\n}\n.fancy-header .fancy-subtitle {\n  font-size: 24px;\n  line-height: 26px;\n  color: #792c8a;\n  text-transform: none;\n}\n.fancy-header .breadcrumbs {\n  color: #ffffff;\n}\n.fancy-header-overlay {\n  background: rgba(0,0,0,0.5);\n}\n@media screen and (max-width: 778px) {\n  .fancy-header .wf-wrap {\n    min-height: 140px;\n  }\n  .fancy-header .fancy-title {\n    font-size: 30px;\n    line-height: 38px;\n  }\n  .fancy-header .fancy-subtitle {\n    font-size: 20px;\n    line-height: 28px;\n  }\n  .fancy-header.breadcrumbs-mobile-off .breadcrumbs {\n    display: none;\n  }\n  #fancy-header > .wf-wrap {\n    flex-flow: column wrap;\n    align-items: center;\n    justify-content: center;\n    padding-bottom: 0px !important;\n  }\n  .fancy-header.title-left .breadcrumbs {\n    text-align: center;\n    float: none;\n  }\n  .breadcrumbs {\n    margin-bottom: 10px;\n  }\n  .breadcrumbs.breadcrumbs-bg {\n    margin-top: 10px;\n  }\n  .fancy-header.title-right .breadcrumbs {\n    margin: 10px 0 10px 0;\n  }\n  #fancy-header .hgroup,\n  #fancy-header .breadcrumbs {\n    text-align: center;\n  }\n  .fancy-header .hgroup {\n    padding-bottom: 5px;\n  }\n  .breadcrumbs-off .hgroup {\n    padding-bottom: 5px;\n  }\n  .title-right .hgroup {\n    padding: 0 0 5px 0;\n  }\n  .title-right.breadcrumbs-off .hgroup {\n    padding-top: 5px;\n  }\n  .title-left.disabled-bg .breadcrumbs {\n    margin-bottom: 0;\n  }\n}\n'),(20349,3552,'_dt_fancy_header_responsive_breadcrumbs','disabled'),(20348,3552,'_dt_fancy_header_responsive_subtitle_line_height','28'),(20347,3552,'_dt_fancy_header_responsive_subtitle_font_size','20'),(20346,3552,'_dt_fancy_header_responsive_title_line_height','38'),(20345,3552,'_dt_fancy_header_responsive_font_size','30'),(20344,3552,'_dt_fancy_header_responsive_height','140'),(20343,3552,'_dt_fancy_header_responsiveness_switch','778px'),(20342,3552,'_dt_fancy_header_responsiveness','enabled'),(20341,3552,'_dt_fancy_header_responsiveness_heading',''),(20340,3552,'_dt_fancy_header_bg_parallax','0.5'),(20339,3552,'_dt_fancy_header_scroll_effect','default'),(20314,3552,'_dt_fancy_header_title_mode','custom'),(20315,3552,'_dt_fancy_header_title',''),(20316,3552,'_dt_fancy_header_title_font_size','32'),(20317,3552,'_dt_fancy_header_title_line_height','36'),(20318,3552,'_dt_fancy_header_text_transform','none'),(20319,3552,'_dt_fancy_header_title_color_mode','color'),(20320,3552,'_dt_fancy_header_title_color','#079547'),(20321,3552,'_dt_fancy_header_subtitle_heading',''),(20322,3552,'_dt_fancy_header_subtitle',''),(20323,3552,'_dt_fancy_header_subtitle_font_size','24'),(20324,3552,'_dt_fancy_header_subtitle_line_height','26'),(20325,3552,'_dt_fancy_header_subtitle_text_transform','none'),(20326,3552,'_dt_fancy_header_subtitle_color_mode','color'),(20327,3552,'_dt_fancy_header_subtitle_color','#792c8a'),(20328,3552,'_dt_fancy_header_bg_heading',''),(20329,3552,'_dt_fancy_header_bg_color','#ffffff'),(20330,3552,'_dt_fancy_header_bg_image_origin','custom'),(20331,3552,'_dt_fancy_header_bg_image','a:0:{}'),(20332,3552,'_dt_fancy_header_bg_repeat','no-repeat'),(20333,3552,'_dt_fancy_header_bg_position_x','center'),(20334,3552,'_dt_fancy_header_bg_position_y','center'),(20335,3552,'_dt_fancy_header_bg_fullscreen','0'),(20336,3552,'_dt_fancy_header_bg_overlay','0'),(20337,3552,'_dt_fancy_header_overlay_color','#000'),(20338,3552,'_dt_fancy_header_bg_overlay_opacity','50'),(20313,3552,'_dt_fancy_header_title_heading',''),(18492,3438,'_dt_fancy_header_subtitle_color','#792c8a'),(20445,3553,'the7_fancy_title_css','#main {\n  padding-top: 1%;\n}\n.fancy-header {\n  background-image: url(\'https://farmchemie.yasithawd.com/wp-content/uploads/2023/09/Grower-Concentrate_300px.png\');\n  background-repeat: no-repeat;\n  background-position: center center;\n  background-size: auto auto;\n  background-color: #ffffff;\n}\n.mobile-false .fancy-header {\n  background-attachment: scroll;\n}\n.fancy-header .wf-wrap {\n  min-height: 140px;\n  padding-top: 0px;\n  padding-bottom: 0px;\n}\n.fancy-header .fancy-title {\n  font-size: 32px;\n  line-height: 36px;\n  color: #079547;\n  text-transform: none;\n}\n.fancy-header .fancy-subtitle {\n  font-size: 24px;\n  line-height: 26px;\n  color: #792c8a;\n  text-transform: none;\n}\n.fancy-header .breadcrumbs {\n  color: #ffffff;\n}\n.fancy-header-overlay {\n  background: rgba(0,0,0,0.5);\n}\n@media screen and (max-width: 778px) {\n  .fancy-header .wf-wrap {\n    min-height: 140px;\n  }\n  .fancy-header .fancy-title {\n    font-size: 30px;\n    line-height: 38px;\n  }\n  .fancy-header .fancy-subtitle {\n    font-size: 20px;\n    line-height: 28px;\n  }\n  .fancy-header.breadcrumbs-mobile-off .breadcrumbs {\n    display: none;\n  }\n  #fancy-header > .wf-wrap {\n    flex-flow: column wrap;\n    align-items: center;\n    justify-content: center;\n    padding-bottom: 0px !important;\n  }\n  .fancy-header.title-left .breadcrumbs {\n    text-align: center;\n    float: none;\n  }\n  .breadcrumbs {\n    margin-bottom: 10px;\n  }\n  .breadcrumbs.breadcrumbs-bg {\n    margin-top: 10px;\n  }\n  .fancy-header.title-right .breadcrumbs {\n    margin: 10px 0 10px 0;\n  }\n  #fancy-header .hgroup,\n  #fancy-header .breadcrumbs {\n    text-align: center;\n  }\n  .fancy-header .hgroup {\n    padding-bottom: 5px;\n  }\n  .breadcrumbs-off .hgroup {\n    padding-bottom: 5px;\n  }\n  .title-right .hgroup {\n    padding: 0 0 5px 0;\n  }\n  .title-right.breadcrumbs-off .hgroup {\n    padding-top: 5px;\n  }\n  .title-left.disabled-bg .breadcrumbs {\n    margin-bottom: 0;\n  }\n}\n'),(20444,3553,'_dt_fancy_header_responsive_breadcrumbs','disabled'),(20443,3553,'_dt_fancy_header_responsive_subtitle_line_height','28'),(20442,3553,'_dt_fancy_header_responsive_subtitle_font_size','20'),(20441,3553,'_dt_fancy_header_responsive_title_line_height','38'),(20440,3553,'_dt_fancy_header_responsive_font_size','30'),(20439,3553,'_dt_fancy_header_responsive_height','140'),(20438,3553,'_dt_fancy_header_responsiveness_switch','778px'),(20437,3553,'_dt_fancy_header_responsiveness','enabled'),(20436,3553,'_dt_fancy_header_responsiveness_heading',''),(20435,3553,'_dt_fancy_header_bg_parallax','0.5'),(20434,3553,'_dt_fancy_header_scroll_effect','default'),(20433,3553,'_dt_fancy_header_bg_overlay_opacity','50'),(20432,3553,'_dt_fancy_header_overlay_color','#000'),(20431,3553,'_dt_fancy_header_bg_overlay','0'),(20430,3553,'_dt_fancy_header_bg_fullscreen','0'),(20429,3553,'_dt_fancy_header_bg_position_y','center'),(20428,3553,'_dt_fancy_header_bg_position_x','center'),(20427,3553,'_dt_fancy_header_bg_repeat','no-repeat'),(20426,3553,'_dt_fancy_header_bg_image','a:1:{i:0;i:3932;}'),(20425,3553,'_dt_fancy_header_bg_image_origin','custom'),(20424,3553,'_dt_fancy_header_bg_color','#ffffff'),(20423,3553,'_dt_fancy_header_bg_heading',''),(20422,3553,'_dt_fancy_header_subtitle_color','#792c8a'),(20421,3553,'_dt_fancy_header_subtitle_color_mode','color'),(20420,3553,'_dt_fancy_header_subtitle_text_transform','none'),(20419,3553,'_dt_fancy_header_subtitle_line_height','26'),(20418,3553,'_dt_fancy_header_subtitle_font_size','24'),(20417,3553,'_dt_fancy_header_subtitle',''),(20416,3553,'_dt_fancy_header_subtitle_heading',''),(20415,3553,'_dt_fancy_header_title_color','#079547'),(20414,3553,'_dt_fancy_header_title_color_mode','color'),(20413,3553,'_dt_fancy_header_text_transform','none'),(20412,3553,'_dt_fancy_header_title_line_height','36'),(20411,3553,'_dt_fancy_header_title_font_size','32'),(20410,3553,'_dt_fancy_header_title',''),(20409,3553,'_dt_fancy_header_title_mode','custom'),(20408,3553,'_dt_fancy_header_title_heading',''),(20407,3553,'_dt_fancy_header_breadcrumbs_bg_color','disabled'),(20406,3553,'_dt_fancy_header_breadcrumbs_text_color','#ffffff'),(20405,3553,'_dt_fancy_header_breadcrumbs','disabled'),(20404,3553,'_dt_fancy_header_breadcrumbs_heading',''),(20403,3553,'_dt_fancy_header_padding-bottom','0px'),(20402,3553,'_dt_fancy_header_padding-top','0px'),(20401,3553,'_dt_fancy_header_height','140'),(20400,3553,'_dt_fancy_header_title_aligment','all_left'),(20399,3553,'_dt_fancy_header_layout_heading',''),(20398,3553,'_dt_mobile_page_padding_left',''),(20374,3553,'_dt_footer_show','1'),(20375,3553,'_dt_footer_widgetarea_id','sidebar_2'),(20376,3553,'_dt_footer_hide_on_mobile','0'),(20377,3553,'_dt_header_title','fancy'),(20378,3553,'_dt_header_background','normal'),(20379,3553,'_dt_header_background_below_slideshow','disabled'),(20380,3553,'_dt_header_transparent_bg_color_scheme','light'),(20381,3553,'_dt_header_transparent_top_bar_bg_color','#ffffff'),(20382,3553,'_dt_header_transparent_top_bar_bg_opacity','25'),(20383,3553,'_dt_header_transparent_bg_color','#000000'),(20384,3553,'_dt_header_transparent_bg_opacity','50'),(20385,3553,'_dt_header_disabled_background','normal'),(20386,3553,'_dt_header_disabled_transparent_bg_color_scheme','light'),(20387,3553,'_dt_header_disabled_transparent_top_bar_bg_color','#ffffff'),(20388,3553,'_dt_header_disabled_transparent_top_bar_bg_opacity','25'),(20389,3553,'_dt_header_disabled_transparent_bg_color','#000000'),(20390,3553,'_dt_header_disabled_transparent_bg_opacity','50'),(20391,3553,'_dt_page_overrides_top_margin','1%'),(20392,3553,'_dt_page_overrides_right_margin',''),(20393,3553,'_dt_page_overrides_bottom_margin',''),(20394,3553,'_dt_page_overrides_left_margin',''),(20395,3553,'_dt_mobile_page_padding_top',''),(20396,3553,'_dt_mobile_page_padding_right',''),(20397,3553,'_dt_mobile_page_padding_bottom',''),(20373,3553,'_dt_sidebar_hide_on_mobile','0'),(18790,3441,'_dt_fancy_header_responsive_breadcrumbs','disabled'),(18631,3440,'_dt_header_title','fancy'),(18563,3439,'_dt_fancy_header_height','140'),(13052,2925,'_wpb_shortcodes_custom_css','.vc_custom_1686714548041{margin-top: 35px !important;padding-top: 35px !important;padding-bottom: 70px !important;}.vc_custom_1684836308288{margin-top: 15px !important;}.vc_custom_1686713784619{margin-top: 35px !important;}.vc_custom_1686714025469{margin-top: 35px !important;}.vc_custom_1686713784619{margin-top: 35px !important;}.vc_custom_1686714115148{margin-top: 35px !important;}.vc_custom_1686713784619{margin-top: 35px !important;}.vc_custom_1686713784619{margin-top: 35px !important;}.vc_custom_1686713784619{margin-top: 35px !important;}'),(13051,2924,'_wpb_shortcodes_custom_css','.vc_custom_1686543324238{padding-top: 35px !important;padding-bottom: 70px !important;}.vc_custom_1684836308288{margin-top: 15px !important;}.vc_custom_1686713784619{margin-top: 35px !important;}.vc_custom_1686714025469{margin-top: 35px !important;}.vc_custom_1686713784619{margin-top: 35px !important;}.vc_custom_1686714115148{margin-top: 35px !important;}.vc_custom_1686713784619{margin-top: 35px !important;}.vc_custom_1686713784619{margin-top: 35px !important;}.vc_custom_1686713784619{margin-top: 35px !important;}'),(13050,2923,'_wpb_shortcodes_custom_css','.vc_custom_1686543324238{padding-top: 35px !important;padding-bottom: 70px !important;}.vc_custom_1684836308288{margin-top: 15px !important;}.vc_custom_1686713784619{margin-top: 35px !important;}.vc_custom_1686713784619{margin-top: 35px !important;}.vc_custom_1686713784619{margin-top: 35px !important;}'),(13049,2922,'_wpb_shortcodes_custom_css','.vc_custom_1686543324238{padding-top: 35px !important;padding-bottom: 70px !important;}.vc_custom_1684836308288{margin-top: 15px !important;}.vc_custom_1686713784619{margin-top: 35px !important;}.vc_custom_1686713784619{margin-top: 35px !important;}.vc_custom_1686713784619{margin-top: 35px !important;}'),(13048,2921,'_wpb_shortcodes_custom_css','.vc_custom_1686543324238{padding-top: 35px !important;padding-bottom: 70px !important;}.vc_custom_1684836308288{margin-top: 15px !important;}.vc_custom_1686713784619{margin-top: 35px !important;}'),(13047,2920,'_wpb_shortcodes_custom_css','.vc_custom_1686543324238{padding-top: 35px !important;padding-bottom: 70px !important;}.vc_custom_1684836308288{margin-top: 15px !important;}'),(17860,3427,'_wpb_shortcodes_custom_css','.vc_custom_1692366072362{margin-top: 35px !important;padding-top: 65px !important;padding-bottom: 100px !important;}.vc_custom_1684836308288{margin-top: 15px !important;}.vc_custom_1693625624233{margin-top: 15px !important;}.vc_custom_1693627699480{margin-top: 15px !important;}.vc_custom_1693625624233{margin-top: 15px !important;}.vc_custom_1693625068958{margin-top: 15px !important;}.vc_custom_1692359205466{margin-top: 35px !important;}.vc_custom_1692359216075{margin-top: 35px !important;}.vc_custom_1692359231594{margin-top: 35px !important;}.vc_custom_1692359239274{margin-top: 35px !important;}.vc_custom_1692359246626{margin-top: 35px !important;}.vc_custom_1692422601938{margin-top: 35px !important;}.vc_custom_1692359258634{margin-top: 35px !important;}.vc_custom_1691995519863{background-color: #f4ab20 !important;border: 1px solid #f4ab20 !important;border-radius: 35px !important;}.vc_custom_1691995661095{background-color: #722f8b !important;border: 1px solid #722f8b !important;border-radius: 35px !important;}.vc_custom_1691995661095{background-color: #722f8b !important;border: 1px solid #722f8b !important;border-radius: 35px !important;}.vc_custom_1691995519863{background-color: #f4ab20 !important;border: 1px solid #f4ab20 !important;border-radius: 35px !important;}.vc_custom_1691996718116{border-radius: 35px !important;}.vc_custom_1691995519863{background-color: #f4ab20 !important;border: 1px solid #f4ab20 !important;border-radius: 35px !important;}.vc_custom_1692278922309{border-top-width: 1px !important;border-right-width: 1px !important;border-bottom-width: 1px !important;border-left-width: 1px !important;border-left-color: #059444 !important;border-left-style: solid !important;border-right-color: #059444 !important;border-right-style: solid !important;border-top-color: #059444 !important;border-top-style: solid !important;border-bottom-color: #059444 !important;border-bottom-style: solid !important;border-radius: 1px !important;}.vc_custom_1692278929158{border-top-width: 1px !important;border-right-width: 1px !important;border-bottom-width: 1px !important;border-left-width: 1px !important;border-left-color: #059444 !important;border-left-style: solid !important;border-right-color: #059444 !important;border-right-style: solid !important;border-top-color: #059444 !important;border-top-style: solid !important;border-bottom-color: #059444 !important;border-bottom-style: solid !important;border-radius: 1px !important;}.vc_custom_1692278936750{border-top-width: 1px !important;border-right-width: 1px !important;border-bottom-width: 1px !important;border-left-width: 1px !important;border-left-color: #059444 !important;border-left-style: solid !important;border-right-color: #059444 !important;border-right-style: solid !important;border-top-color: #059444 !important;border-top-style: solid !important;border-bottom-color: #059444 !important;border-bottom-style: solid !important;border-radius: 1px !important;}.vc_custom_1692278922309{border-top-width: 1px !important;border-right-width: 1px !important;border-bottom-width: 1px !important;border-left-width: 1px !important;border-left-color: #059444 !important;border-left-style: solid !important;border-right-color: #059444 !important;border-right-style: solid !important;border-top-color: #059444 !important;border-top-style: solid !important;border-bottom-color: #059444 !important;border-bottom-style: solid !important;border-radius: 1px !important;}.vc_custom_1692278929158{border-top-width: 1px !important;border-right-width: 1px !important;border-bottom-width: 1px !important;border-left-width: 1px !important;border-left-color: #059444 !important;border-left-style: solid !important;border-right-color: #059444 !important;border-right-style: solid !important;border-top-color: #059444 !important;border-top-style: solid !important;border-bottom-color: #059444 !important;border-bottom-style: solid !important;border-radius: 1px !important;}'),(16546,3324,'_edit_last','1'),(16547,3325,'_wp_attached_file','2023/08/AVI-3-folding-brochure-SInhala-Final-outline_compressed-4.pdf'),(16548,3325,'_wp_attachment_metadata','a:2:{s:5:\"sizes\";a:4:{s:4:\"full\";a:5:{s:4:\"file\";s:65:\"AVI-3-folding-brochure-SInhala-Final-outline_compressed-4-pdf.jpg\";s:5:\"width\";i:1527;s:6:\"height\";i:1089;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:633226;}s:6:\"medium\";a:5:{s:4:\"file\";s:73:\"AVI-3-folding-brochure-SInhala-Final-outline_compressed-4-pdf-300x214.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:214;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:36931;}s:5:\"large\";a:5:{s:4:\"file\";s:74:\"AVI-3-folding-brochure-SInhala-Final-outline_compressed-4-pdf-1024x730.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:730;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:301330;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:73:\"AVI-3-folding-brochure-SInhala-Final-outline_compressed-4-pdf-150x107.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:107;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:11046;}}s:8:\"filesize\";i:2367813;}'),(13080,2934,'_wpb_shortcodes_custom_css','.vc_custom_1686720701314{margin-top: 35px !important;padding-top: 65px !important;padding-bottom: 100px !important;}.vc_custom_1684836308288{margin-top: 15px !important;}.vc_custom_1686713784619{margin-top: 35px !important;}.vc_custom_1686714025469{margin-top: 35px !important;}.vc_custom_1686713784619{margin-top: 35px !important;}.vc_custom_1686714115148{margin-top: 35px !important;}.vc_custom_1686713784619{margin-top: 35px !important;}.vc_custom_1686713784619{margin-top: 35px !important;}.vc_custom_1686713784619{margin-top: 35px !important;}'),(13079,2933,'_wpb_shortcodes_custom_css','.vc_custom_1686719341668{margin-top: 35px !important;padding-top: 65px !important;padding-bottom: 100px !important;}.vc_custom_1684836308288{margin-top: 15px !important;}.vc_custom_1686713784619{margin-top: 35px !important;}.vc_custom_1686714025469{margin-top: 35px !important;}.vc_custom_1686713784619{margin-top: 35px !important;}.vc_custom_1686714115148{margin-top: 35px !important;}.vc_custom_1686713784619{margin-top: 35px !important;}.vc_custom_1686713784619{margin-top: 35px !important;}.vc_custom_1686713784619{margin-top: 35px !important;}'),(15592,3215,'_wpb_shortcodes_custom_css','.vc_custom_1686720701314{margin-top: 35px !important;padding-top: 65px !important;padding-bottom: 100px !important;}.vc_custom_1684836308288{margin-top: 15px !important;}.vc_custom_1686713784619{margin-top: 35px !important;}.vc_custom_1686714025469{margin-top: 35px !important;}.vc_custom_1686713784619{margin-top: 35px !important;}.vc_custom_1686714115148{margin-top: 35px !important;}.vc_custom_1686713784619{margin-top: 35px !important;}.vc_custom_1686713784619{margin-top: 35px !important;}.vc_custom_1686713784619{margin-top: 35px !important;}.vc_custom_1691995519863{background-color: #f4ab20 !important;border: 1px solid #f4ab20 !important;border-radius: 35px !important;}.vc_custom_1691995661095{background-color: #722f8b !important;border: 1px solid #722f8b !important;border-radius: 35px !important;}.vc_custom_1691995661095{background-color: #722f8b !important;border: 1px solid #722f8b !important;border-radius: 35px !important;}.vc_custom_1691995519863{background-color: #f4ab20 !important;border: 1px solid #f4ab20 !important;border-radius: 35px !important;}.vc_custom_1691996718116{border-radius: 35px !important;}.vc_custom_1691995519863{background-color: #f4ab20 !important;border: 1px solid #f4ab20 !important;border-radius: 35px !important;}'),(13077,2932,'_wpb_shortcodes_custom_css','.vc_custom_1686719341668{margin-top: 35px !important;padding-top: 65px !important;padding-bottom: 100px !important;}.vc_custom_1684836308288{margin-top: 15px !important;}.vc_custom_1686713784619{margin-top: 35px !important;}.vc_custom_1686714025469{margin-top: 35px !important;}.vc_custom_1686713784619{margin-top: 35px !important;}.vc_custom_1686714115148{margin-top: 35px !important;}.vc_custom_1686713784619{margin-top: 35px !important;}.vc_custom_1686713784619{margin-top: 35px !important;}.vc_custom_1686713784619{margin-top: 35px !important;}'),(28220,3696,'_wp_attached_file','2023/09/Calfo20_600px.png'),(13070,2929,'_wpb_shortcodes_custom_css','.vc_custom_1686717135130{margin-top: 35px !important;padding-top: 65px !important;padding-bottom: 100px !important;}.vc_custom_1684836308288{margin-top: 15px !important;}.vc_custom_1686713784619{margin-top: 35px !important;}.vc_custom_1686714025469{margin-top: 35px !important;}.vc_custom_1686713784619{margin-top: 35px !important;}.vc_custom_1686714115148{margin-top: 35px !important;}.vc_custom_1686713784619{margin-top: 35px !important;}.vc_custom_1686713784619{margin-top: 35px !important;}.vc_custom_1686713784619{margin-top: 35px !important;}'),(13069,2928,'_wpb_shortcodes_custom_css','.vc_custom_1686717135130{margin-top: 35px !important;padding-top: 65px !important;padding-bottom: 100px !important;}.vc_custom_1684836308288{margin-top: 15px !important;}.vc_custom_1686713784619{margin-top: 35px !important;}.vc_custom_1686714025469{margin-top: 35px !important;}.vc_custom_1686713784619{margin-top: 35px !important;}.vc_custom_1686714115148{margin-top: 35px !important;}.vc_custom_1686713784619{margin-top: 35px !important;}.vc_custom_1686713784619{margin-top: 35px !important;}.vc_custom_1686713784619{margin-top: 35px !important;}'),(13054,2926,'_wpb_shortcodes_custom_css','.vc_custom_1692366072362{margin-top: 35px !important;padding-top: 65px !important;padding-bottom: 100px !important;}.vc_custom_1695545208125{margin-top: 15px !important;margin-bottom: 15px !important;}.vc_custom_1695531973651{margin-top: 15px !important;padding-right: 5% !important;padding-left: 5% !important;}.vc_custom_1693625624233{margin-top: 15px !important;}.vc_custom_1695531973651{margin-top: 15px !important;padding-right: 5% !important;padding-left: 5% !important;}.vc_custom_1695294608306{margin-top: 15px !important;}.vc_custom_1692359205466{margin-top: 35px !important;}.vc_custom_1692359216075{margin-top: 35px !important;}.vc_custom_1692359216075{margin-top: 35px !important;}.vc_custom_1692359231594{margin-top: 35px !important;}.vc_custom_1692359239274{margin-top: 35px !important;}.vc_custom_1692359239274{margin-top: 35px !important;}.vc_custom_1692359246626{margin-top: 35px !important;}.vc_custom_1695527931440{margin-top: 35px !important;}.vc_custom_1695527931440{margin-top: 35px !important;}.vc_custom_1692359258634{margin-top: 35px !important;}.vc_custom_1691995519863{background-color: #f4ab20 !important;border: 1px solid #f4ab20 !important;border-radius: 35px !important;}.vc_custom_1691995661095{background-color: #722f8b !important;border: 1px solid #722f8b !important;border-radius: 35px !important;}.vc_custom_1691995661095{background-color: #722f8b !important;border: 1px solid #722f8b !important;border-radius: 35px !important;}.vc_custom_1691995519863{background-color: #f4ab20 !important;border: 1px solid #f4ab20 !important;border-radius: 35px !important;}.vc_custom_1695528026328{border-radius: 35px !important;}.vc_custom_1691995519863{background-color: #f4ab20 !important;border: 1px solid #f4ab20 !important;border-radius: 35px !important;}.vc_custom_1694697209111{padding-right: 10px !important;padding-left: 10px !important;}.vc_custom_1692278922309{border-top-width: 1px !important;border-right-width: 1px !important;border-bottom-width: 1px !important;border-left-width: 1px !important;border-left-color: #059444 !important;border-left-style: solid !important;border-right-color: #059444 !important;border-right-style: solid !important;border-top-color: #059444 !important;border-top-style: solid !important;border-bottom-color: #059444 !important;border-bottom-style: solid !important;border-radius: 1px !important;}.vc_custom_1692278929158{border-top-width: 1px !important;border-right-width: 1px !important;border-bottom-width: 1px !important;border-left-width: 1px !important;border-left-color: #059444 !important;border-left-style: solid !important;border-right-color: #059444 !important;border-right-style: solid !important;border-top-color: #059444 !important;border-top-style: solid !important;border-bottom-color: #059444 !important;border-bottom-style: solid !important;border-radius: 1px !important;}.vc_custom_1692278936750{border-top-width: 1px !important;border-right-width: 1px !important;border-bottom-width: 1px !important;border-left-width: 1px !important;border-left-color: #059444 !important;border-left-style: solid !important;border-right-color: #059444 !important;border-right-style: solid !important;border-top-color: #059444 !important;border-top-style: solid !important;border-bottom-color: #059444 !important;border-bottom-style: solid !important;border-radius: 1px !important;}.vc_custom_1692278922309{border-top-width: 1px !important;border-right-width: 1px !important;border-bottom-width: 1px !important;border-left-width: 1px !important;border-left-color: #059444 !important;border-left-style: solid !important;border-right-color: #059444 !important;border-right-style: solid !important;border-top-color: #059444 !important;border-top-style: solid !important;border-bottom-color: #059444 !important;border-bottom-style: solid !important;border-radius: 1px !important;}.vc_custom_1692278929158{border-top-width: 1px !important;border-right-width: 1px !important;border-bottom-width: 1px !important;border-left-width: 1px !important;border-left-color: #059444 !important;border-left-style: solid !important;border-right-color: #059444 !important;border-right-style: solid !important;border-top-color: #059444 !important;border-top-style: solid !important;border-bottom-color: #059444 !important;border-bottom-style: solid !important;border-radius: 1px !important;}'),(13053,2917,'_wpb_shortcodes_custom_css','.vc_custom_1692366072362{margin-top: 35px !important;padding-top: 65px !important;padding-bottom: 100px !important;}.vc_custom_1695545208125{margin-top: 15px !important;margin-bottom: 15px !important;}.vc_custom_1695531973651{margin-top: 15px !important;padding-right: 5% !important;padding-left: 5% !important;}.vc_custom_1693625624233{margin-top: 15px !important;}.vc_custom_1695294608306{margin-top: 15px !important;}.vc_custom_1692359205466{margin-top: 35px !important;}.vc_custom_1692359216075{margin-top: 35px !important;}.vc_custom_1692359216075{margin-top: 35px !important;}.vc_custom_1692359231594{margin-top: 35px !important;}.vc_custom_1692359239274{margin-top: 35px !important;}.vc_custom_1692359239274{margin-top: 35px !important;}.vc_custom_1692359246626{margin-top: 35px !important;}.vc_custom_1695527931440{margin-top: 35px !important;}.vc_custom_1695527931440{margin-top: 35px !important;}.vc_custom_1692359258634{margin-top: 35px !important;}.vc_custom_1691995519863{background-color: #f4ab20 !important;border: 1px solid #f4ab20 !important;border-radius: 35px !important;}.vc_custom_1691995661095{background-color: #722f8b !important;border: 1px solid #722f8b !important;border-radius: 35px !important;}.vc_custom_1691995661095{background-color: #722f8b !important;border: 1px solid #722f8b !important;border-radius: 35px !important;}.vc_custom_1691995519863{background-color: #f4ab20 !important;border: 1px solid #f4ab20 !important;border-radius: 35px !important;}.vc_custom_1695528026328{border-radius: 35px !important;}.vc_custom_1691995519863{background-color: #f4ab20 !important;border: 1px solid #f4ab20 !important;border-radius: 35px !important;}.vc_custom_1694697209111{padding-right: 10px !important;padding-left: 10px !important;}.vc_custom_1692278922309{border-top-width: 1px !important;border-right-width: 1px !important;border-bottom-width: 1px !important;border-left-width: 1px !important;border-left-color: #059444 !important;border-left-style: solid !important;border-right-color: #059444 !important;border-right-style: solid !important;border-top-color: #059444 !important;border-top-style: solid !important;border-bottom-color: #059444 !important;border-bottom-style: solid !important;border-radius: 1px !important;}.vc_custom_1692278929158{border-top-width: 1px !important;border-right-width: 1px !important;border-bottom-width: 1px !important;border-left-width: 1px !important;border-left-color: #059444 !important;border-left-style: solid !important;border-right-color: #059444 !important;border-right-style: solid !important;border-top-color: #059444 !important;border-top-style: solid !important;border-bottom-color: #059444 !important;border-bottom-style: solid !important;border-radius: 1px !important;}.vc_custom_1692278936750{border-top-width: 1px !important;border-right-width: 1px !important;border-bottom-width: 1px !important;border-left-width: 1px !important;border-left-color: #059444 !important;border-left-style: solid !important;border-right-color: #059444 !important;border-right-style: solid !important;border-top-color: #059444 !important;border-top-style: solid !important;border-bottom-color: #059444 !important;border-bottom-style: solid !important;border-radius: 1px !important;}.vc_custom_1692278922309{border-top-width: 1px !important;border-right-width: 1px !important;border-bottom-width: 1px !important;border-left-width: 1px !important;border-left-color: #059444 !important;border-left-style: solid !important;border-right-color: #059444 !important;border-right-style: solid !important;border-top-color: #059444 !important;border-top-style: solid !important;border-bottom-color: #059444 !important;border-bottom-style: solid !important;border-radius: 1px !important;}.vc_custom_1692278929158{border-top-width: 1px !important;border-right-width: 1px !important;border-bottom-width: 1px !important;border-left-width: 1px !important;border-left-color: #059444 !important;border-left-style: solid !important;border-right-color: #059444 !important;border-right-style: solid !important;border-top-color: #059444 !important;border-top-style: solid !important;border-bottom-color: #059444 !important;border-bottom-style: solid !important;border-radius: 1px !important;}'),(13045,2919,'_wp_attached_file','2023/06/WhatsApp-Image-2023-05-16-at-2.43.17-AM.jpeg'),(13046,2919,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:693;s:6:\"height\";i:520;s:4:\"file\";s:52:\"2023/06/WhatsApp-Image-2023-05-16-at-2.43.17-AM.jpeg\";s:8:\"filesize\";i:77762;s:5:\"sizes\";a:8:{s:6:\"medium\";a:5:{s:4:\"file\";s:52:\"WhatsApp-Image-2023-05-16-at-2.43.17-AM-300x225.jpeg\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:14801;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:52:\"WhatsApp-Image-2023-05-16-at-2.43.17-AM-150x150.jpeg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:6341;}s:21:\"woocommerce_thumbnail\";a:6:{s:4:\"file\";s:52:\"WhatsApp-Image-2023-05-16-at-2.43.17-AM-300x300.jpeg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:18131;s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:5:{s:4:\"file\";s:52:\"WhatsApp-Image-2023-05-16-at-2.43.17-AM-600x450.jpeg\";s:5:\"width\";i:600;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:41101;}s:29:\"woocommerce_gallery_thumbnail\";a:5:{s:4:\"file\";s:52:\"WhatsApp-Image-2023-05-16-at-2.43.17-AM-200x200.jpeg\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:9697;}s:12:\"shop_catalog\";a:5:{s:4:\"file\";s:52:\"WhatsApp-Image-2023-05-16-at-2.43.17-AM-300x300.jpeg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:18131;}s:11:\"shop_single\";a:5:{s:4:\"file\";s:52:\"WhatsApp-Image-2023-05-16-at-2.43.17-AM-600x450.jpeg\";s:5:\"width\";i:600;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:41101;}s:14:\"shop_thumbnail\";a:5:{s:4:\"file\";s:52:\"WhatsApp-Image-2023-05-16-at-2.43.17-AM-200x200.jpeg\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:9697;}}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:{}}}'),(17869,3430,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:600;s:6:\"height\";i:600;s:4:\"file\";s:28:\"2023/08/Prazimec-D_600px.png\";s:8:\"filesize\";i:89840;s:5:\"sizes\";a:4:{s:6:\"medium\";a:5:{s:4:\"file\";s:28:\"Prazimec-D_600px-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:67151;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:28:\"Prazimec-D_600px-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:19754;}s:21:\"woocommerce_thumbnail\";a:6:{s:4:\"file\";s:28:\"Prazimec-D_600px-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:67151;s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:5:{s:4:\"file\";s:28:\"Prazimec-D_600px-200x200.png\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:32858;}}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:{}}}'),(17870,3431,'_wp_attached_file','2023/08/Prazimec-D_logo.png'),(17871,3431,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:300;s:6:\"height\";i:76;s:4:\"file\";s:27:\"2023/08/Prazimec-D_logo.png\";s:8:\"filesize\";i:2213;s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:26:\"Prazimec-D_logo-150x76.png\";s:5:\"width\";i:150;s:6:\"height\";i:76;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:3401;}s:29:\"woocommerce_gallery_thumbnail\";a:5:{s:4:\"file\";s:26:\"Prazimec-D_logo-200x76.png\";s:5:\"width\";i:200;s:6:\"height\";i:76;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:4101;}}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:{}}}'),(13055,2911,'_wp_old_date','2023-05-24'),(13056,2422,'_wp_old_date','2023-05-24'),(16979,3352,'_download_limit','-1'),(13062,2417,'_wp_old_date','2023-05-24'),(13063,2418,'_wp_old_date','2023-05-24'),(13064,2419,'_wp_old_date','2023-05-24'),(13065,2420,'_wp_old_date','2023-05-24'),(13066,2421,'_wp_old_date','2023-05-24'),(13067,39,'_wp_old_date','2023-05-24'),(22844,3611,'_dt_fancy_header_breadcrumbs_heading',''),(20521,3554,'_dt_fancy_header_bg_repeat','no-repeat'),(20520,3554,'_dt_fancy_header_bg_image','a:0:{}'),(20519,3554,'_dt_fancy_header_bg_image_origin','custom'),(20518,3554,'_dt_fancy_header_bg_color','#ffffff'),(20517,3554,'_dt_fancy_header_bg_heading',''),(20516,3554,'_dt_fancy_header_subtitle_color','#792c8a'),(20515,3554,'_dt_fancy_header_subtitle_color_mode','color'),(20514,3554,'_dt_fancy_header_subtitle_text_transform','none'),(20513,3554,'_dt_fancy_header_subtitle_line_height','26'),(20512,3554,'_dt_fancy_header_subtitle_font_size','24'),(20511,3554,'_dt_fancy_header_subtitle',''),(20510,3554,'_dt_fancy_header_subtitle_heading',''),(20509,3554,'_dt_fancy_header_title_color','#079547'),(20508,3554,'_dt_fancy_header_title_color_mode','color'),(20507,3554,'_dt_fancy_header_text_transform','none'),(20506,3554,'_dt_fancy_header_title_line_height','36'),(20505,3554,'_dt_fancy_header_title_font_size','32'),(20504,3554,'_dt_fancy_header_title',''),(20503,3554,'_dt_fancy_header_title_mode','custom'),(20502,3554,'_dt_fancy_header_title_heading',''),(20501,3554,'_dt_fancy_header_breadcrumbs_bg_color','disabled'),(20500,3554,'_dt_fancy_header_breadcrumbs_text_color','#ffffff'),(20499,3554,'_dt_fancy_header_breadcrumbs','disabled'),(20498,3554,'_dt_fancy_header_breadcrumbs_heading',''),(20497,3554,'_dt_fancy_header_padding-bottom','0px'),(20496,3554,'_dt_fancy_header_padding-top','0px'),(20495,3554,'_dt_fancy_header_height','140'),(20494,3554,'_dt_fancy_header_title_aligment','all_left'),(20493,3554,'_dt_fancy_header_layout_heading',''),(20492,3554,'_dt_mobile_page_padding_left',''),(20491,3554,'_dt_mobile_page_padding_bottom',''),(20490,3554,'_dt_mobile_page_padding_right',''),(20489,3554,'_dt_mobile_page_padding_top',''),(20488,3554,'_dt_page_overrides_left_margin',''),(20487,3554,'_dt_page_overrides_bottom_margin',''),(20486,3554,'_dt_page_overrides_right_margin',''),(20485,3554,'_dt_page_overrides_top_margin','1%'),(20484,3554,'_dt_header_disabled_transparent_bg_opacity','50'),(20483,3554,'_dt_header_disabled_transparent_bg_color','#000000'),(20482,3554,'_dt_header_disabled_transparent_top_bar_bg_opacity','25'),(20481,3554,'_dt_header_disabled_transparent_top_bar_bg_color','#ffffff'),(20480,3554,'_dt_header_disabled_transparent_bg_color_scheme','light'),(20479,3554,'_dt_header_disabled_background','normal'),(20478,3554,'_dt_header_transparent_bg_opacity','50'),(20477,3554,'_dt_header_transparent_bg_color','#000000'),(20476,3554,'_dt_header_transparent_top_bar_bg_opacity','25'),(20475,3554,'_dt_header_transparent_top_bar_bg_color','#ffffff'),(20474,3554,'_dt_header_transparent_bg_color_scheme','light'),(20473,3554,'_dt_header_background_below_slideshow','disabled'),(20472,3554,'_dt_header_background','normal'),(20471,3554,'_dt_header_title','fancy'),(20470,3554,'_dt_footer_hide_on_mobile','0'),(20469,3554,'_dt_footer_widgetarea_id','sidebar_2'),(20468,3554,'_dt_footer_show','1'),(20467,3554,'_dt_sidebar_hide_on_mobile','0'),(20466,3554,'_dt_sidebar_widgetarea_id','sidebar_1'),(20465,3554,'_dt_sidebar_position','disabled'),(20464,3554,'_product_version','8.0.2'),(20545,3556,'_tax_class',''),(20546,3556,'_manage_stock','no'),(20446,3553,'_wqoecf_disable_form','no'),(20447,3553,'_edit_lock','1695554353:1'),(20448,3553,'_edit_last','1'),(20449,3554,'total_sales','0'),(20450,3554,'_tax_status','taxable'),(20451,3554,'_tax_class',''),(20452,3554,'_manage_stock','no'),(20453,3554,'_backorders','no'),(20454,3554,'_sold_individually','no'),(20455,3554,'_virtual','no'),(20456,3554,'_downloadable','no'),(20457,3554,'_download_limit','-1'),(20458,3554,'_download_expiry','-1'),(20459,3554,'_stock',NULL),(20460,3554,'_stock_status','instock'),(20461,3554,'_wc_average_rating','0'),(20462,3554,'_wc_review_count','0'),(20463,3554,'_product_attributes','a:1:{s:15:\"pa_product-type\";a:6:{s:4:\"name\";s:15:\"pa_product-type\";s:5:\"value\";s:0:\"\";s:8:\"position\";i:0;s:10:\"is_visible\";i:0;s:12:\"is_variation\";i:0;s:11:\"is_taxonomy\";i:1;}}'),(20584,3556,'_dt_mobile_page_padding_right',''),(20583,3556,'_dt_mobile_page_padding_top',''),(20582,3556,'_dt_page_overrides_left_margin',''),(20581,3556,'_dt_page_overrides_bottom_margin',''),(20580,3556,'_dt_page_overrides_right_margin',''),(20579,3556,'_dt_page_overrides_top_margin','1%'),(20578,3556,'_dt_header_disabled_transparent_bg_opacity','50'),(20577,3556,'_dt_header_disabled_transparent_bg_color','#000000'),(20576,3556,'_dt_header_disabled_transparent_top_bar_bg_opacity','25'),(20575,3556,'_dt_header_disabled_transparent_top_bar_bg_color','#ffffff'),(20574,3556,'_dt_header_disabled_transparent_bg_color_scheme','light'),(20573,3556,'_dt_header_disabled_background','normal'),(20572,3556,'_dt_header_transparent_bg_opacity','50'),(20571,3556,'_dt_header_transparent_bg_color','#000000'),(20570,3556,'_dt_header_transparent_top_bar_bg_opacity','25'),(20569,3556,'_dt_header_transparent_top_bar_bg_color','#ffffff'),(20568,3556,'_dt_header_transparent_bg_color_scheme','light'),(20567,3556,'_dt_header_background_below_slideshow','disabled'),(20566,3556,'_dt_header_background','normal'),(20565,3556,'_dt_header_title','fancy'),(20564,3556,'_dt_footer_hide_on_mobile','0'),(20563,3556,'_dt_footer_widgetarea_id','sidebar_2'),(20562,3556,'_dt_footer_show','1'),(20561,3556,'_dt_sidebar_hide_on_mobile','0'),(20560,3556,'_dt_sidebar_widgetarea_id','sidebar_1'),(20559,3556,'_dt_sidebar_position','disabled'),(20558,3556,'_product_version','8.0.2'),(20557,3556,'_product_attributes','a:1:{s:15:\"pa_product-type\";a:6:{s:4:\"name\";s:15:\"pa_product-type\";s:5:\"value\";s:0:\"\";s:8:\"position\";i:0;s:10:\"is_visible\";i:0;s:12:\"is_variation\";i:0;s:11:\"is_taxonomy\";i:1;}}'),(20556,3556,'_wc_review_count','0'),(20555,3556,'_wc_average_rating','0'),(20554,3556,'_stock_status','instock'),(20553,3556,'_stock',NULL),(20552,3556,'_download_expiry','-1'),(20551,3556,'_download_limit','-1'),(20550,3556,'_downloadable','no'),(20549,3556,'_virtual','no'),(20548,3556,'_sold_individually','no'),(20547,3556,'_backorders','no'),(20543,3556,'total_sales','0'),(20544,3556,'_tax_status','taxable'),(20541,3554,'_edit_lock','1695554987:1'),(20542,3554,'_edit_last','1'),(20540,3554,'_wqoecf_disable_form','no'),(20523,3554,'_dt_fancy_header_bg_position_y','center'),(20524,3554,'_dt_fancy_header_bg_fullscreen','0'),(20525,3554,'_dt_fancy_header_bg_overlay','0'),(20526,3554,'_dt_fancy_header_overlay_color','#000'),(20527,3554,'_dt_fancy_header_bg_overlay_opacity','50'),(20528,3554,'_dt_fancy_header_scroll_effect','default'),(20529,3554,'_dt_fancy_header_bg_parallax','0.5'),(20530,3554,'_dt_fancy_header_responsiveness_heading',''),(20531,3554,'_dt_fancy_header_responsiveness','enabled'),(20532,3554,'_dt_fancy_header_responsiveness_switch','778px'),(20533,3554,'_dt_fancy_header_responsive_height','140'),(20534,3554,'_dt_fancy_header_responsive_font_size','30'),(20535,3554,'_dt_fancy_header_responsive_title_line_height','38'),(20536,3554,'_dt_fancy_header_responsive_subtitle_font_size','20'),(20537,3554,'_dt_fancy_header_responsive_subtitle_line_height','28'),(20538,3554,'_dt_fancy_header_responsive_breadcrumbs','disabled'),(20539,3554,'the7_fancy_title_css','#main {\n  padding-top: 1%;\n}\n.fancy-header {\n  background-image: url(\'https://farmchemie.yasithawd.com/wp-content/uploads/2023/09/Broiler-Starter_300px.png\');\n  background-repeat: no-repeat;\n  background-position: center center;\n  background-size: auto auto;\n  background-color: #ffffff;\n}\n.mobile-false .fancy-header {\n  background-attachment: scroll;\n}\n.fancy-header .wf-wrap {\n  min-height: 140px;\n  padding-top: 0px;\n  padding-bottom: 0px;\n}\n.fancy-header .fancy-title {\n  font-size: 32px;\n  line-height: 36px;\n  color: #079547;\n  text-transform: none;\n}\n.fancy-header .fancy-subtitle {\n  font-size: 24px;\n  line-height: 26px;\n  color: #792c8a;\n  text-transform: none;\n}\n.fancy-header .breadcrumbs {\n  color: #ffffff;\n}\n.fancy-header-overlay {\n  background: rgba(0,0,0,0.5);\n}\n@media screen and (max-width: 778px) {\n  .fancy-header .wf-wrap {\n    min-height: 140px;\n  }\n  .fancy-header .fancy-title {\n    font-size: 30px;\n    line-height: 38px;\n  }\n  .fancy-header .fancy-subtitle {\n    font-size: 20px;\n    line-height: 28px;\n  }\n  .fancy-header.breadcrumbs-mobile-off .breadcrumbs {\n    display: none;\n  }\n  #fancy-header > .wf-wrap {\n    flex-flow: column wrap;\n    align-items: center;\n    justify-content: center;\n    padding-bottom: 0px !important;\n  }\n  .fancy-header.title-left .breadcrumbs {\n    text-align: center;\n    float: none;\n  }\n  .breadcrumbs {\n    margin-bottom: 10px;\n  }\n  .breadcrumbs.breadcrumbs-bg {\n    margin-top: 10px;\n  }\n  .fancy-header.title-right .breadcrumbs {\n    margin: 10px 0 10px 0;\n  }\n  #fancy-header .hgroup,\n  #fancy-header .breadcrumbs {\n    text-align: center;\n  }\n  .fancy-header .hgroup {\n    padding-bottom: 5px;\n  }\n  .breadcrumbs-off .hgroup {\n    padding-bottom: 5px;\n  }\n  .title-right .hgroup {\n    padding: 0 0 5px 0;\n  }\n  .title-right.breadcrumbs-off .hgroup {\n    padding-top: 5px;\n  }\n  .title-left.disabled-bg .breadcrumbs {\n    margin-bottom: 0;\n  }\n}\n'),(20522,3554,'_dt_fancy_header_bg_position_x','center'),(20651,3557,'_product_attributes','a:1:{s:15:\"pa_product-type\";a:6:{s:4:\"name\";s:15:\"pa_product-type\";s:5:\"value\";s:0:\"\";s:8:\"position\";i:0;s:10:\"is_visible\";i:0;s:12:\"is_variation\";i:0;s:11:\"is_taxonomy\";i:1;}}'),(20650,3557,'_wc_review_count','0'),(20632,3556,'_dt_fancy_header_responsive_breadcrumbs','disabled'),(20649,3557,'_wc_average_rating','0'),(20648,3557,'_stock_status','instock'),(20647,3557,'_stock',NULL),(20646,3557,'_download_expiry','-1'),(20645,3557,'_download_limit','-1'),(20644,3557,'_downloadable','no'),(20643,3557,'_virtual','no'),(20642,3557,'_sold_individually','no'),(20641,3557,'_backorders','no'),(20640,3557,'_manage_stock','no'),(20639,3557,'_tax_class',''),(20637,3557,'total_sales','0'),(20638,3557,'_tax_status','taxable'),(20636,3556,'_edit_last','1'),(20635,3556,'_edit_lock','1695554983:1'),(20634,3556,'_wqoecf_disable_form','no'),(20633,3556,'the7_fancy_title_css','#main {\n  padding-top: 1%;\n}\n.fancy-header {\n  background-image: url(\'https://farmchemie.yasithawd.com/wp-content/uploads/2023/09/Grower-Concentrate_300px-1.png\');\n  background-repeat: no-repeat;\n  background-position: center center;\n  background-size: auto auto;\n  background-color: #ffffff;\n}\n.mobile-false .fancy-header {\n  background-attachment: scroll;\n}\n.fancy-header .wf-wrap {\n  min-height: 140px;\n  padding-top: 0px;\n  padding-bottom: 0px;\n}\n.fancy-header .fancy-title {\n  font-size: 32px;\n  line-height: 36px;\n  color: #079547;\n  text-transform: none;\n}\n.fancy-header .fancy-subtitle {\n  font-size: 24px;\n  line-height: 26px;\n  color: #792c8a;\n  text-transform: none;\n}\n.fancy-header .breadcrumbs {\n  color: #ffffff;\n}\n.fancy-header-overlay {\n  background: rgba(0,0,0,0.5);\n}\n@media screen and (max-width: 778px) {\n  .fancy-header .wf-wrap {\n    min-height: 140px;\n  }\n  .fancy-header .fancy-title {\n    font-size: 30px;\n    line-height: 38px;\n  }\n  .fancy-header .fancy-subtitle {\n    font-size: 20px;\n    line-height: 28px;\n  }\n  .fancy-header.breadcrumbs-mobile-off .breadcrumbs {\n    display: none;\n  }\n  #fancy-header > .wf-wrap {\n    flex-flow: column wrap;\n    align-items: center;\n    justify-content: center;\n    padding-bottom: 0px !important;\n  }\n  .fancy-header.title-left .breadcrumbs {\n    text-align: center;\n    float: none;\n  }\n  .breadcrumbs {\n    margin-bottom: 10px;\n  }\n  .breadcrumbs.breadcrumbs-bg {\n    margin-top: 10px;\n  }\n  .fancy-header.title-right .breadcrumbs {\n    margin: 10px 0 10px 0;\n  }\n  #fancy-header .hgroup,\n  #fancy-header .breadcrumbs {\n    text-align: center;\n  }\n  .fancy-header .hgroup {\n    padding-bottom: 5px;\n  }\n  .breadcrumbs-off .hgroup {\n    padding-bottom: 5px;\n  }\n  .title-right .hgroup {\n    padding: 0 0 5px 0;\n  }\n  .title-right.breadcrumbs-off .hgroup {\n    padding-top: 5px;\n  }\n  .title-left.disabled-bg .breadcrumbs {\n    margin-bottom: 0;\n  }\n}\n'),(20631,3556,'_dt_fancy_header_responsive_subtitle_line_height','28'),(20630,3556,'_dt_fancy_header_responsive_subtitle_font_size','20'),(20629,3556,'_dt_fancy_header_responsive_title_line_height','38'),(20628,3556,'_dt_fancy_header_responsive_font_size','30'),(20627,3556,'_dt_fancy_header_responsive_height','140'),(20626,3556,'_dt_fancy_header_responsiveness_switch','778px'),(20625,3556,'_dt_fancy_header_responsiveness','enabled'),(20624,3556,'_dt_fancy_header_responsiveness_heading',''),(20623,3556,'_dt_fancy_header_bg_parallax','0.5'),(20622,3556,'_dt_fancy_header_scroll_effect','default'),(20621,3556,'_dt_fancy_header_bg_overlay_opacity','50'),(20620,3556,'_dt_fancy_header_overlay_color','#000'),(20619,3556,'_dt_fancy_header_bg_overlay','0'),(20618,3556,'_dt_fancy_header_bg_fullscreen','0'),(20617,3556,'_dt_fancy_header_bg_position_y','center'),(20616,3556,'_dt_fancy_header_bg_position_x','center'),(20615,3556,'_dt_fancy_header_bg_repeat','no-repeat'),(20614,3556,'_dt_fancy_header_bg_image','a:1:{i:0;i:3937;}'),(20613,3556,'_dt_fancy_header_bg_image_origin','custom'),(20612,3556,'_dt_fancy_header_bg_color','#ffffff'),(20611,3556,'_dt_fancy_header_bg_heading',''),(20586,3556,'_dt_mobile_page_padding_left',''),(20587,3556,'_dt_fancy_header_layout_heading',''),(20588,3556,'_dt_fancy_header_title_aligment','all_left'),(20589,3556,'_dt_fancy_header_height','140'),(20590,3556,'_dt_fancy_header_padding-top','0px'),(20591,3556,'_dt_fancy_header_padding-bottom','0px'),(20592,3556,'_dt_fancy_header_breadcrumbs_heading',''),(20593,3556,'_dt_fancy_header_breadcrumbs','disabled'),(20594,3556,'_dt_fancy_header_breadcrumbs_text_color','#ffffff'),(20595,3556,'_dt_fancy_header_breadcrumbs_bg_color','disabled'),(20596,3556,'_dt_fancy_header_title_heading',''),(20597,3556,'_dt_fancy_header_title_mode','custom'),(20598,3556,'_dt_fancy_header_title',''),(20599,3556,'_dt_fancy_header_title_font_size','32'),(20600,3556,'_dt_fancy_header_title_line_height','36'),(20601,3556,'_dt_fancy_header_text_transform','none'),(20602,3556,'_dt_fancy_header_title_color_mode','color'),(20603,3556,'_dt_fancy_header_title_color','#079547'),(20604,3556,'_dt_fancy_header_subtitle_heading',''),(20605,3556,'_dt_fancy_header_subtitle',''),(20606,3556,'_dt_fancy_header_subtitle_font_size','24'),(20607,3556,'_dt_fancy_header_subtitle_line_height','26'),(20608,3556,'_dt_fancy_header_subtitle_text_transform','none'),(20609,3556,'_dt_fancy_header_subtitle_color_mode','color'),(20610,3556,'_dt_fancy_header_subtitle_color','#792c8a'),(20585,3556,'_dt_mobile_page_padding_bottom',''),(20727,3557,'the7_fancy_title_css','#main {\n  padding-top: 1%;\n}\n.fancy-header {\n  background-image: url(\'https://farmchemie.yasithawd.com/wp-content/uploads/2023/09/Broiler-Starter_300px.png\');\n  background-repeat: no-repeat;\n  background-position: center center;\n  background-size: auto auto;\n  background-color: #ffffff;\n}\n.mobile-false .fancy-header {\n  background-attachment: scroll;\n}\n.fancy-header .wf-wrap {\n  min-height: 140px;\n  padding-top: 0px;\n  padding-bottom: 0px;\n}\n.fancy-header .fancy-title {\n  font-size: 32px;\n  line-height: 36px;\n  color: #079547;\n  text-transform: none;\n}\n.fancy-header .fancy-subtitle {\n  font-size: 24px;\n  line-height: 26px;\n  color: #792c8a;\n  text-transform: none;\n}\n.fancy-header .breadcrumbs {\n  color: #ffffff;\n}\n.fancy-header-overlay {\n  background: rgba(0,0,0,0.5);\n}\n@media screen and (max-width: 778px) {\n  .fancy-header .wf-wrap {\n    min-height: 140px;\n  }\n  .fancy-header .fancy-title {\n    font-size: 30px;\n    line-height: 38px;\n  }\n  .fancy-header .fancy-subtitle {\n    font-size: 20px;\n    line-height: 28px;\n  }\n  .fancy-header.breadcrumbs-mobile-off .breadcrumbs {\n    display: none;\n  }\n  #fancy-header > .wf-wrap {\n    flex-flow: column wrap;\n    align-items: center;\n    justify-content: center;\n    padding-bottom: 0px !important;\n  }\n  .fancy-header.title-left .breadcrumbs {\n    text-align: center;\n    float: none;\n  }\n  .breadcrumbs {\n    margin-bottom: 10px;\n  }\n  .breadcrumbs.breadcrumbs-bg {\n    margin-top: 10px;\n  }\n  .fancy-header.title-right .breadcrumbs {\n    margin: 10px 0 10px 0;\n  }\n  #fancy-header .hgroup,\n  #fancy-header .breadcrumbs {\n    text-align: center;\n  }\n  .fancy-header .hgroup {\n    padding-bottom: 5px;\n  }\n  .breadcrumbs-off .hgroup {\n    padding-bottom: 5px;\n  }\n  .title-right .hgroup {\n    padding: 0 0 5px 0;\n  }\n  .title-right.breadcrumbs-off .hgroup {\n    padding-top: 5px;\n  }\n  .title-left.disabled-bg .breadcrumbs {\n    margin-bottom: 0;\n  }\n}\n'),(20726,3557,'_dt_fancy_header_responsive_breadcrumbs','disabled'),(20725,3557,'_dt_fancy_header_responsive_subtitle_line_height','28'),(20724,3557,'_dt_fancy_header_responsive_subtitle_font_size','20'),(20723,3557,'_dt_fancy_header_responsive_title_line_height','38'),(20722,3557,'_dt_fancy_header_responsive_font_size','30'),(20721,3557,'_dt_fancy_header_responsive_height','140'),(20720,3557,'_dt_fancy_header_responsiveness_switch','778px'),(20719,3557,'_dt_fancy_header_responsiveness','enabled'),(20718,3557,'_dt_fancy_header_responsiveness_heading',''),(20717,3557,'_dt_fancy_header_bg_parallax','0.5'),(20716,3557,'_dt_fancy_header_scroll_effect','default'),(20715,3557,'_dt_fancy_header_bg_overlay_opacity','50'),(20714,3557,'_dt_fancy_header_overlay_color','#000'),(20713,3557,'_dt_fancy_header_bg_overlay','0'),(20712,3557,'_dt_fancy_header_bg_fullscreen','0'),(20711,3557,'_dt_fancy_header_bg_position_y','center'),(20710,3557,'_dt_fancy_header_bg_position_x','center'),(20709,3557,'_dt_fancy_header_bg_repeat','no-repeat'),(20708,3557,'_dt_fancy_header_bg_image','a:1:{i:0;i:3936;}'),(20707,3557,'_dt_fancy_header_bg_image_origin','custom'),(20706,3557,'_dt_fancy_header_bg_color','#ffffff'),(20705,3557,'_dt_fancy_header_bg_heading',''),(20704,3557,'_dt_fancy_header_subtitle_color','#792c8a'),(20703,3557,'_dt_fancy_header_subtitle_color_mode','color'),(20702,3557,'_dt_fancy_header_subtitle_text_transform','none'),(20701,3557,'_dt_fancy_header_subtitle_line_height','26'),(20700,3557,'_dt_fancy_header_subtitle_font_size','24'),(20699,3557,'_dt_fancy_header_subtitle',''),(20698,3557,'_dt_fancy_header_subtitle_heading',''),(20697,3557,'_dt_fancy_header_title_color','#079547'),(20696,3557,'_dt_fancy_header_title_color_mode','color'),(20695,3557,'_dt_fancy_header_text_transform','none'),(20694,3557,'_dt_fancy_header_title_line_height','36'),(20693,3557,'_dt_fancy_header_title_font_size','32'),(20692,3557,'_dt_fancy_header_title',''),(20691,3557,'_dt_fancy_header_title_mode','custom'),(20690,3557,'_dt_fancy_header_title_heading',''),(20689,3557,'_dt_fancy_header_breadcrumbs_bg_color','disabled'),(20688,3557,'_dt_fancy_header_breadcrumbs_text_color','#ffffff'),(20687,3557,'_dt_fancy_header_breadcrumbs','disabled'),(20686,3557,'_dt_fancy_header_breadcrumbs_heading',''),(20685,3557,'_dt_fancy_header_padding-bottom','0px'),(20684,3557,'_dt_fancy_header_padding-top','0px'),(20683,3557,'_dt_fancy_header_height','140'),(20682,3557,'_dt_fancy_header_title_aligment','all_left'),(20681,3557,'_dt_fancy_header_layout_heading',''),(20680,3557,'_dt_mobile_page_padding_left',''),(20679,3557,'_dt_mobile_page_padding_bottom',''),(20678,3557,'_dt_mobile_page_padding_right',''),(20677,3557,'_dt_mobile_page_padding_top',''),(20676,3557,'_dt_page_overrides_left_margin',''),(20652,3557,'_product_version','8.0.2'),(20653,3557,'_dt_sidebar_position','disabled'),(20654,3557,'_dt_sidebar_widgetarea_id','sidebar_1'),(20655,3557,'_dt_sidebar_hide_on_mobile','0'),(20656,3557,'_dt_footer_show','1'),(20657,3557,'_dt_footer_widgetarea_id','sidebar_2'),(20658,3557,'_dt_footer_hide_on_mobile','0'),(20659,3557,'_dt_header_title','fancy'),(20660,3557,'_dt_header_background','normal'),(20661,3557,'_dt_header_background_below_slideshow','disabled'),(20662,3557,'_dt_header_transparent_bg_color_scheme','light'),(20663,3557,'_dt_header_transparent_top_bar_bg_color','#ffffff'),(20664,3557,'_dt_header_transparent_top_bar_bg_opacity','25'),(20665,3557,'_dt_header_transparent_bg_color','#000000'),(20666,3557,'_dt_header_transparent_bg_opacity','50'),(20667,3557,'_dt_header_disabled_background','normal'),(20668,3557,'_dt_header_disabled_transparent_bg_color_scheme','light'),(20669,3557,'_dt_header_disabled_transparent_top_bar_bg_color','#ffffff'),(20670,3557,'_dt_header_disabled_transparent_top_bar_bg_opacity','25'),(20671,3557,'_dt_header_disabled_transparent_bg_color','#000000'),(20672,3557,'_dt_header_disabled_transparent_bg_opacity','50'),(20673,3557,'_dt_page_overrides_top_margin','1%'),(20674,3557,'_dt_page_overrides_right_margin',''),(20675,3557,'_dt_page_overrides_bottom_margin',''),(15405,3128,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1300;s:6:\"height\";i:300;s:4:\"file\";s:27:\"2023/08/FEED-ADDITIVES6.png\";s:8:\"filesize\";i:167764;s:5:\"sizes\";a:10:{s:6:\"medium\";a:5:{s:4:\"file\";s:26:\"FEED-ADDITIVES6-300x69.png\";s:5:\"width\";i:300;s:6:\"height\";i:69;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:30085;}s:5:\"large\";a:5:{s:4:\"file\";s:28:\"FEED-ADDITIVES6-1024x236.png\";s:5:\"width\";i:1024;s:6:\"height\";i:236;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:360093;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:27:\"FEED-ADDITIVES6-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:38245;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:27:\"FEED-ADDITIVES6-768x177.png\";s:5:\"width\";i:768;s:6:\"height\";i:177;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:195301;}s:21:\"woocommerce_thumbnail\";a:6:{s:4:\"file\";s:27:\"FEED-ADDITIVES6-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:51667;s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:5:{s:4:\"file\";s:27:\"FEED-ADDITIVES6-600x138.png\";s:5:\"width\";i:600;s:6:\"height\";i:138;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:116497;}s:29:\"woocommerce_gallery_thumbnail\";a:5:{s:4:\"file\";s:27:\"FEED-ADDITIVES6-200x200.png\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:65142;}s:12:\"shop_catalog\";a:5:{s:4:\"file\";s:27:\"FEED-ADDITIVES6-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:51667;}s:11:\"shop_single\";a:5:{s:4:\"file\";s:27:\"FEED-ADDITIVES6-600x138.png\";s:5:\"width\";i:600;s:6:\"height\";i:138;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:116497;}s:14:\"shop_thumbnail\";a:5:{s:4:\"file\";s:27:\"FEED-ADDITIVES6-200x200.png\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:65142;}}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:{}}}'),(17828,3411,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:300;s:6:\"height\";i:333;s:4:\"file\";s:24:\"2023/09/Asset-5@300x.png\";s:8:\"filesize\";i:15670;s:5:\"sizes\";a:4:{s:6:\"medium\";a:5:{s:4:\"file\";s:24:\"Asset-5@300x-270x300.png\";s:5:\"width\";i:270;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:49746;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:24:\"Asset-5@300x-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:23199;}s:21:\"woocommerce_thumbnail\";a:6:{s:4:\"file\";s:24:\"Asset-5@300x-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:36710;s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:5:{s:4:\"file\";s:24:\"Asset-5@300x-200x200.png\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:33580;}}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:{}}}'),(20735,3560,'_wpb_shortcodes_custom_css_updated','1'),(20728,3557,'_wqoecf_disable_form','no'),(20729,3557,'_edit_lock','1695554987:1'),(20730,3557,'_edit_last','1'),(20731,3558,'_wpb_post_custom_layout','default'),(20732,3559,'_wpb_post_custom_layout','default'),(20734,3560,'_wpb_shortcodes_custom_css','.vc_custom_1692366072362{margin-top: 35px !important;padding-top: 65px !important;padding-bottom: 100px !important;}.vc_custom_1684836308288{margin-top: 15px !important;}.vc_custom_1693627699480{margin-top: 15px !important;}.vc_custom_1693625624233{margin-top: 15px !important;}.vc_custom_1693625068958{margin-top: 15px !important;}.vc_custom_1692359205466{margin-top: 35px !important;}.vc_custom_1692359216075{margin-top: 35px !important;}.vc_custom_1692359231594{margin-top: 35px !important;}.vc_custom_1692359239274{margin-top: 35px !important;}.vc_custom_1692359246626{margin-top: 35px !important;}.vc_custom_1692422601938{margin-top: 35px !important;}.vc_custom_1692359258634{margin-top: 35px !important;}.vc_custom_1691995519863{background-color: #f4ab20 !important;border: 1px solid #f4ab20 !important;border-radius: 35px !important;}.vc_custom_1691995661095{background-color: #722f8b !important;border: 1px solid #722f8b !important;border-radius: 35px !important;}.vc_custom_1691995661095{background-color: #722f8b !important;border: 1px solid #722f8b !important;border-radius: 35px !important;}.vc_custom_1691995519863{background-color: #f4ab20 !important;border: 1px solid #f4ab20 !important;border-radius: 35px !important;}.vc_custom_1691996718116{border-radius: 35px !important;}.vc_custom_1691995519863{background-color: #f4ab20 !important;border: 1px solid #f4ab20 !important;border-radius: 35px !important;}.vc_custom_1692278922309{border-top-width: 1px !important;border-right-width: 1px !important;border-bottom-width: 1px !important;border-left-width: 1px !important;border-left-color: #059444 !important;border-left-style: solid !important;border-right-color: #059444 !important;border-right-style: solid !important;border-top-color: #059444 !important;border-top-style: solid !important;border-bottom-color: #059444 !important;border-bottom-style: solid !important;border-radius: 1px !important;}.vc_custom_1692278929158{border-top-width: 1px !important;border-right-width: 1px !important;border-bottom-width: 1px !important;border-left-width: 1px !important;border-left-color: #059444 !important;border-left-style: solid !important;border-right-color: #059444 !important;border-right-style: solid !important;border-top-color: #059444 !important;border-top-style: solid !important;border-bottom-color: #059444 !important;border-bottom-style: solid !important;border-radius: 1px !important;}.vc_custom_1692278936750{border-top-width: 1px !important;border-right-width: 1px !important;border-bottom-width: 1px !important;border-left-width: 1px !important;border-left-color: #059444 !important;border-left-style: solid !important;border-right-color: #059444 !important;border-right-style: solid !important;border-top-color: #059444 !important;border-top-style: solid !important;border-bottom-color: #059444 !important;border-bottom-style: solid !important;border-radius: 1px !important;}.vc_custom_1692278922309{border-top-width: 1px !important;border-right-width: 1px !important;border-bottom-width: 1px !important;border-left-width: 1px !important;border-left-color: #059444 !important;border-left-style: solid !important;border-right-color: #059444 !important;border-right-style: solid !important;border-top-color: #059444 !important;border-top-style: solid !important;border-bottom-color: #059444 !important;border-bottom-style: solid !important;border-radius: 1px !important;}.vc_custom_1692278929158{border-top-width: 1px !important;border-right-width: 1px !important;border-bottom-width: 1px !important;border-left-width: 1px !important;border-left-color: #059444 !important;border-left-style: solid !important;border-right-color: #059444 !important;border-right-style: solid !important;border-top-color: #059444 !important;border-top-style: solid !important;border-bottom-color: #059444 !important;border-bottom-style: solid !important;border-radius: 1px !important;}'),(27253,3661,'_wqoecf_disable_form','no'),(27254,3661,'_edit_lock','1695537233:1'),(27255,3661,'_edit_last','1'),(27524,3666,'_dt_fancy_header_bg_repeat','no-repeat'),(27525,3666,'_dt_fancy_header_bg_position_x','center'),(27526,3666,'_dt_fancy_header_bg_position_y','center'),(27527,3666,'_dt_fancy_header_bg_fullscreen','0'),(27528,3666,'_dt_fancy_header_bg_overlay','0'),(27529,3666,'_dt_fancy_header_overlay_color','#000'),(27530,3666,'_dt_fancy_header_bg_overlay_opacity','50'),(27531,3666,'_dt_fancy_header_scroll_effect','default'),(27532,3666,'_dt_fancy_header_bg_parallax','0.5'),(27533,3666,'_dt_fancy_header_responsiveness_heading',''),(27534,3666,'_dt_fancy_header_responsiveness','enabled'),(27535,3666,'_dt_fancy_header_responsiveness_switch','778px'),(27536,3666,'_dt_fancy_header_responsive_height','140'),(27537,3666,'_dt_fancy_header_responsive_font_size','30'),(27538,3666,'_dt_fancy_header_responsive_title_line_height','38'),(27539,3666,'_dt_fancy_header_responsive_subtitle_font_size','20'),(27540,3666,'_dt_fancy_header_responsive_subtitle_line_height','28'),(27541,3666,'_dt_fancy_header_responsive_breadcrumbs','disabled'),(27542,3666,'the7_fancy_title_css','#main {\n  padding-top: 1%;\n}\n.fancy-header {\n  background-image: url(\'https://farmchemie.yasithawd.com/wp-content/uploads/2023/09/Circomune_300px.png\');\n  background-repeat: no-repeat;\n  background-position: center center;\n  background-size: auto auto;\n  background-color: #ffffff;\n}\n.mobile-false .fancy-header {\n  background-attachment: scroll;\n}\n.fancy-header .wf-wrap {\n  min-height: 140px;\n  padding-top: 0px;\n  padding-bottom: 0px;\n}\n.fancy-header .fancy-title {\n  font-size: 32px;\n  line-height: 36px;\n  color: #079547;\n  text-transform: none;\n}\n.fancy-header .fancy-subtitle {\n  font-size: 24px;\n  line-height: 26px;\n  color: #792c8a;\n  text-transform: none;\n}\n.fancy-header .breadcrumbs {\n  color: #ffffff;\n}\n.fancy-header-overlay {\n  background: rgba(0,0,0,0.5);\n}\n@media screen and (max-width: 778px) {\n  .fancy-header .wf-wrap {\n    min-height: 140px;\n  }\n  .fancy-header .fancy-title {\n    font-size: 30px;\n    line-height: 38px;\n  }\n  .fancy-header .fancy-subtitle {\n    font-size: 20px;\n    line-height: 28px;\n  }\n  .fancy-header.breadcrumbs-mobile-off .breadcrumbs {\n    display: none;\n  }\n  #fancy-header > .wf-wrap {\n    flex-flow: column wrap;\n    align-items: center;\n    justify-content: center;\n    padding-bottom: 0px !important;\n  }\n  .fancy-header.title-left .breadcrumbs {\n    text-align: center;\n    float: none;\n  }\n  .breadcrumbs {\n    margin-bottom: 10px;\n  }\n  .breadcrumbs.breadcrumbs-bg {\n    margin-top: 10px;\n  }\n  .fancy-header.title-right .breadcrumbs {\n    margin: 10px 0 10px 0;\n  }\n  #fancy-header .hgroup,\n  #fancy-header .breadcrumbs {\n    text-align: center;\n  }\n  .fancy-header .hgroup {\n    padding-bottom: 5px;\n  }\n  .breadcrumbs-off .hgroup {\n    padding-bottom: 5px;\n  }\n  .title-right .hgroup {\n    padding: 0 0 5px 0;\n  }\n  .title-right.breadcrumbs-off .hgroup {\n    padding-top: 5px;\n  }\n  .title-left.disabled-bg .breadcrumbs {\n    margin-bottom: 0;\n  }\n}\n'),(20739,3561,'_wpb_shortcodes_custom_css_updated','1'),(20754,2622,'_dt_fancy_header_breadcrumbs_text_color','#ffffff'),(20753,2622,'_dt_fancy_header_breadcrumbs','disabled'),(20745,3563,'_wpb_shortcodes_custom_css_updated','1'),(20744,3563,'_wpb_shortcodes_custom_css','.vc_custom_1692366072362{margin-top: 35px !important;padding-top: 65px !important;padding-bottom: 100px !important;}.vc_custom_1684836308288{margin-top: 15px !important;}.vc_custom_1693627699480{margin-top: 15px !important;}.vc_custom_1693625624233{margin-top: 15px !important;}.vc_custom_1693625068958{margin-top: 15px !important;}.vc_custom_1692359205466{margin-top: 35px !important;}.vc_custom_1692359216075{margin-top: 35px !important;}.vc_custom_1692359231594{margin-top: 35px !important;}.vc_custom_1692359239274{margin-top: 35px !important;}.vc_custom_1692359246626{margin-top: 35px !important;}.vc_custom_1692422601938{margin-top: 35px !important;}.vc_custom_1692359258634{margin-top: 35px !important;}.vc_custom_1691995519863{background-color: #f4ab20 !important;border: 1px solid #f4ab20 !important;border-radius: 35px !important;}.vc_custom_1691995661095{background-color: #722f8b !important;border: 1px solid #722f8b !important;border-radius: 35px !important;}.vc_custom_1691995661095{background-color: #722f8b !important;border: 1px solid #722f8b !important;border-radius: 35px !important;}.vc_custom_1691995519863{background-color: #f4ab20 !important;border: 1px solid #f4ab20 !important;border-radius: 35px !important;}.vc_custom_1691996718116{border-radius: 35px !important;}.vc_custom_1691995519863{background-color: #f4ab20 !important;border: 1px solid #f4ab20 !important;border-radius: 35px !important;}.vc_custom_1692278922309{border-top-width: 1px !important;border-right-width: 1px !important;border-bottom-width: 1px !important;border-left-width: 1px !important;border-left-color: #059444 !important;border-left-style: solid !important;border-right-color: #059444 !important;border-right-style: solid !important;border-top-color: #059444 !important;border-top-style: solid !important;border-bottom-color: #059444 !important;border-bottom-style: solid !important;border-radius: 1px !important;}.vc_custom_1692278929158{border-top-width: 1px !important;border-right-width: 1px !important;border-bottom-width: 1px !important;border-left-width: 1px !important;border-left-color: #059444 !important;border-left-style: solid !important;border-right-color: #059444 !important;border-right-style: solid !important;border-top-color: #059444 !important;border-top-style: solid !important;border-bottom-color: #059444 !important;border-bottom-style: solid !important;border-radius: 1px !important;}.vc_custom_1692278936750{border-top-width: 1px !important;border-right-width: 1px !important;border-bottom-width: 1px !important;border-left-width: 1px !important;border-left-color: #059444 !important;border-left-style: solid !important;border-right-color: #059444 !important;border-right-style: solid !important;border-top-color: #059444 !important;border-top-style: solid !important;border-bottom-color: #059444 !important;border-bottom-style: solid !important;border-radius: 1px !important;}.vc_custom_1692278922309{border-top-width: 1px !important;border-right-width: 1px !important;border-bottom-width: 1px !important;border-left-width: 1px !important;border-left-color: #059444 !important;border-left-style: solid !important;border-right-color: #059444 !important;border-right-style: solid !important;border-top-color: #059444 !important;border-top-style: solid !important;border-bottom-color: #059444 !important;border-bottom-style: solid !important;border-radius: 1px !important;}.vc_custom_1692278929158{border-top-width: 1px !important;border-right-width: 1px !important;border-bottom-width: 1px !important;border-left-width: 1px !important;border-left-color: #059444 !important;border-left-style: solid !important;border-right-color: #059444 !important;border-right-style: solid !important;border-top-color: #059444 !important;border-top-style: solid !important;border-bottom-color: #059444 !important;border-bottom-style: solid !important;border-radius: 1px !important;}'),(20742,3562,'_wpb_shortcodes_custom_css_updated','1'),(20804,3573,'_wpb_shortcodes_custom_css_updated','1'),(20803,3573,'_wpb_shortcodes_custom_css','.vc_custom_1694534815998{margin-top: 35px !important;margin-bottom: 35px !important;padding-right: 5% !important;padding-left: 5% !important;}.vc_custom_1694534830702{margin-top: 35px !important;margin-bottom: 35px !important;}'),(20809,3576,'_wpb_shortcodes_custom_css','.vc_custom_1694535688302{margin-top: 35px !important;margin-bottom: 35px !important;padding-right: 10% !important;padding-left: 10% !important;}.vc_custom_1694534830702{margin-top: 35px !important;margin-bottom: 35px !important;}'),(20802,3566,'_wpb_shortcodes_custom_css_updated','1'),(20800,3572,'_wpb_shortcodes_custom_css_updated','1'),(20798,3571,'_wpb_shortcodes_custom_css_updated','1'),(20796,2622,'_wpb_shortcodes_custom_css_updated','1'),(20795,2622,'_wpb_shortcodes_custom_css','.vc_custom_1694535688302{margin-top: 35px !important;margin-bottom: 35px !important;padding-right: 10% !important;padding-left: 10% !important;}.vc_custom_1694534830702{margin-top: 35px !important;margin-bottom: 35px !important;}'),(20794,3570,'_wpb_shortcodes_custom_css_updated','1'),(20801,3566,'_wpb_shortcodes_custom_css','.vc_custom_1694534815998{margin-top: 35px !important;margin-bottom: 35px !important;padding-right: 5% !important;padding-left: 5% !important;}.vc_custom_1694534830702{margin-top: 35px !important;margin-bottom: 35px !important;}'),(20793,3570,'_wpb_shortcodes_custom_css','.vc_custom_1694528593042{margin-top: 35px !important;}'),(20797,3571,'_wpb_shortcodes_custom_css','.vc_custom_1694528669026{margin-top: 35px !important;margin-right: 5% !important;margin-left: 5% !important;}'),(20799,3572,'_wpb_shortcodes_custom_css','.vc_custom_1694528702621{margin-top: 35px !important;padding-right: 5% !important;padding-left: 5% !important;}'),(20805,3574,'_wpb_shortcodes_custom_css','.vc_custom_1694535688302{margin-top: 35px !important;margin-bottom: 35px !important;padding-right: 10% !important;padding-left: 10% !important;}.vc_custom_1694534830702{margin-top: 35px !important;margin-bottom: 35px !important;}'),(20807,3575,'_wpb_shortcodes_custom_css','.vc_custom_1694535688302{margin-top: 35px !important;margin-bottom: 35px !important;padding-right: 10% !important;padding-left: 10% !important;}.vc_custom_1694534830702{margin-top: 35px !important;margin-bottom: 35px !important;}'),(20817,3580,'total_sales','0'),(20811,3577,'_wpb_shortcodes_custom_css','.vc_custom_1694535688302{margin-top: 35px !important;margin-bottom: 35px !important;padding-right: 10% !important;padding-left: 10% !important;}.vc_custom_1694534830702{margin-top: 35px !important;margin-bottom: 35px !important;}'),(20813,3578,'_wpb_shortcodes_custom_css','.vc_custom_1694535688302{margin-top: 35px !important;margin-bottom: 35px !important;padding-right: 10% !important;padding-left: 10% !important;}.vc_custom_1694534830702{margin-top: 35px !important;margin-bottom: 35px !important;}'),(20815,3579,'_wpb_shortcodes_custom_css','.vc_custom_1694535688302{margin-top: 35px !important;margin-bottom: 35px !important;padding-right: 10% !important;padding-left: 10% !important;}.vc_custom_1694534830702{margin-top: 35px !important;margin-bottom: 35px !important;}'),(20818,3580,'_tax_status','taxable'),(20819,3580,'_tax_class',''),(20820,3580,'_manage_stock','no'),(20792,2622,'_dt_fancy_header_responsive_breadcrumbs','disabled'),(20791,2622,'_dt_fancy_header_responsive_subtitle_line_height','28'),(20790,2622,'_dt_fancy_header_responsive_subtitle_font_size','20'),(20789,2622,'_dt_fancy_header_responsive_title_line_height','38'),(20788,2622,'_dt_fancy_header_responsive_font_size','30'),(20787,2622,'_dt_fancy_header_responsive_height','300'),(20786,2622,'_dt_fancy_header_responsiveness_switch','778px'),(20785,2622,'_dt_fancy_header_responsiveness','enabled'),(20784,2622,'_dt_fancy_header_responsiveness_heading',''),(20783,2622,'_dt_fancy_header_bg_parallax','0.5'),(20782,2622,'_dt_fancy_header_scroll_effect','default'),(20781,2622,'_dt_fancy_header_bg_overlay_opacity','50'),(20756,2622,'_dt_fancy_header_title_heading',''),(20757,2622,'_dt_fancy_header_title_mode','generic'),(20758,2622,'_dt_fancy_header_title',''),(20759,2622,'_dt_fancy_header_title_font_size','36'),(20760,2622,'_dt_fancy_header_title_line_height','36'),(20761,2622,'_dt_fancy_header_text_transform','none'),(20762,2622,'_dt_fancy_header_title_color_mode','color'),(20763,2622,'_dt_fancy_header_title_color','#ffffff'),(20764,2622,'_dt_fancy_header_subtitle_heading',''),(20765,2622,'_dt_fancy_header_subtitle',''),(20766,2622,'_dt_fancy_header_subtitle_font_size','18'),(20767,2622,'_dt_fancy_header_subtitle_line_height','26'),(20768,2622,'_dt_fancy_header_subtitle_text_transform','none'),(20769,2622,'_dt_fancy_header_subtitle_color_mode','color'),(20770,2622,'_dt_fancy_header_subtitle_color','#ffffff'),(20771,2622,'_dt_fancy_header_bg_heading',''),(20772,2622,'_dt_fancy_header_bg_color','#089548'),(20773,2622,'_dt_fancy_header_bg_image_origin','custom'),(20774,2622,'_dt_fancy_header_bg_image','a:1:{i:0;i:3860;}'),(20775,2622,'_dt_fancy_header_bg_repeat','no-repeat'),(20776,2622,'_dt_fancy_header_bg_position_x','left'),(20777,2622,'_dt_fancy_header_bg_position_y','center'),(20778,2622,'_dt_fancy_header_bg_fullscreen','1'),(20779,2622,'_dt_fancy_header_bg_overlay','0'),(20780,2622,'_dt_fancy_header_overlay_color','#000'),(20755,2622,'_dt_fancy_header_breadcrumbs_bg_color','disabled'),(20880,3580,'_dt_fancy_header_subtitle_font_size','24'),(20879,3580,'_dt_fancy_header_subtitle',''),(20878,3580,'_dt_fancy_header_subtitle_heading',''),(20877,3580,'_dt_fancy_header_title_color','#079547'),(20876,3580,'_dt_fancy_header_title_color_mode','color'),(20875,3580,'_dt_fancy_header_text_transform','none'),(20874,3580,'_dt_fancy_header_title_line_height','36'),(20873,3580,'_dt_fancy_header_title_font_size','32'),(20872,3580,'_dt_fancy_header_title',''),(20871,3580,'_dt_fancy_header_title_mode','custom'),(20870,3580,'_dt_fancy_header_title_heading',''),(20869,3580,'_dt_fancy_header_breadcrumbs_bg_color','disabled'),(20868,3580,'_dt_fancy_header_breadcrumbs_text_color','#ffffff'),(20867,3580,'_dt_fancy_header_breadcrumbs','disabled'),(20866,3580,'_dt_fancy_header_breadcrumbs_heading',''),(20865,3580,'_dt_fancy_header_padding-bottom','0px'),(20864,3580,'_dt_fancy_header_padding-top','0px'),(20863,3580,'_dt_fancy_header_height','140'),(20862,3580,'_dt_fancy_header_title_aligment','all_left'),(20861,3580,'_dt_fancy_header_layout_heading',''),(20860,3580,'_dt_mobile_page_padding_left',''),(20859,3580,'_dt_mobile_page_padding_bottom',''),(20858,3580,'_dt_mobile_page_padding_right',''),(20857,3580,'_dt_mobile_page_padding_top',''),(20856,3580,'_dt_page_overrides_left_margin',''),(20855,3580,'_dt_page_overrides_bottom_margin',''),(20854,3580,'_dt_page_overrides_right_margin',''),(20853,3580,'_dt_page_overrides_top_margin','1%'),(20852,3580,'_dt_header_disabled_transparent_bg_opacity','50'),(20851,3580,'_dt_header_disabled_transparent_bg_color','#000000'),(20849,3580,'_dt_header_disabled_transparent_top_bar_bg_color','#ffffff'),(20848,3580,'_dt_header_disabled_transparent_bg_color_scheme','light'),(20847,3580,'_dt_header_disabled_background','normal'),(20846,3580,'_dt_header_transparent_bg_opacity','50'),(20845,3580,'_dt_header_transparent_bg_color','#000000'),(20844,3580,'_dt_header_transparent_top_bar_bg_opacity','25'),(20843,3580,'_dt_header_transparent_top_bar_bg_color','#ffffff'),(20842,3580,'_dt_header_transparent_bg_color_scheme','light'),(20841,3580,'_dt_header_background_below_slideshow','disabled'),(20840,3580,'_dt_header_background','normal'),(20839,3580,'_dt_header_title','fancy'),(20838,3580,'_dt_footer_hide_on_mobile','0'),(20837,3580,'_dt_footer_widgetarea_id','sidebar_2'),(20836,3580,'_dt_footer_show','1'),(20835,3580,'_dt_sidebar_hide_on_mobile','0'),(20834,3580,'_dt_sidebar_widgetarea_id','sidebar_1'),(20833,3580,'_dt_sidebar_position','disabled'),(20832,3580,'_product_version','8.0.2'),(20808,3575,'_wpb_shortcodes_custom_css_updated','1'),(20810,3576,'_wpb_shortcodes_custom_css_updated','1'),(20812,3577,'_wpb_shortcodes_custom_css_updated','1'),(20814,3578,'_wpb_shortcodes_custom_css_updated','1'),(20816,3579,'_wpb_shortcodes_custom_css_updated','1'),(20821,3580,'_backorders','no'),(20822,3580,'_sold_individually','no'),(20823,3580,'_virtual','no'),(20824,3580,'_downloadable','no'),(20825,3580,'_download_limit','-1'),(20826,3580,'_download_expiry','-1'),(20827,3580,'_stock',NULL),(20828,3580,'_stock_status','instock'),(20829,3580,'_wc_average_rating','0'),(20830,3580,'_wc_review_count','0'),(20831,3580,'_product_attributes','a:1:{s:15:\"pa_product-type\";a:6:{s:4:\"name\";s:15:\"pa_product-type\";s:5:\"value\";s:0:\"\";s:8:\"position\";i:0;s:10:\"is_visible\";i:0;s:12:\"is_variation\";i:0;s:11:\"is_taxonomy\";i:1;}}'),(20806,3574,'_wpb_shortcodes_custom_css_updated','1'),(20947,3585,'_menu_item_type','custom'),(20987,3589,'_backorders','no'),(20850,3580,'_dt_header_disabled_transparent_top_bar_bg_opacity','25'),(20988,3589,'_sold_individually','no'),(20945,3584,'_menu_item_url','https://farmchemie.yasithawd.com/product-category/pet-care/'),(20944,3584,'_menu_item_xfn',''),(20943,3584,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(20942,3584,'_menu_item_target',''),(20941,3584,'_menu_item_object','custom'),(20940,3584,'_menu_item_object_id','3584'),(20939,3584,'_menu_item_menu_item_parent','0'),(20938,3584,'_menu_item_type','custom'),(20989,3589,'_virtual','no'),(20936,3583,'_menu_item_url','https://farmchemie.yasithawd.com/product-category/large-animal/'),(20935,3583,'_menu_item_xfn',''),(20934,3583,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(20933,3583,'_menu_item_target',''),(20932,3583,'_menu_item_object','custom'),(20931,3583,'_menu_item_object_id','3583'),(20930,3583,'_menu_item_menu_item_parent','0'),(20929,3583,'_menu_item_type','custom'),(20990,3589,'_downloadable','no'),(20991,3589,'_download_limit','-1'),(20927,3582,'_menu_item_url','https://farmchemie.yasithawd.com/product-category/feed-additives/'),(20926,3582,'_menu_item_xfn',''),(20925,3582,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(20924,3582,'_menu_item_target',''),(20923,3582,'_menu_item_object','custom'),(20922,3582,'_menu_item_object_id','3582'),(20921,3582,'_menu_item_menu_item_parent','0'),(20920,3582,'_menu_item_type','custom'),(20992,3589,'_download_expiry','-1'),(20918,3581,'_menu_item_url','https://farmchemie.yasithawd.com/products/'),(20917,3581,'_menu_item_xfn',''),(20916,3581,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(20915,3581,'_menu_item_target',''),(20914,3581,'_menu_item_object','custom'),(20913,3581,'_menu_item_object_id','3581'),(20911,3581,'_menu_item_type','custom'),(20912,3581,'_menu_item_menu_item_parent','0'),(20910,3580,'_edit_last','1'),(20909,3580,'_edit_lock','1695554935:1'),(20908,3580,'_wqoecf_disable_form','no'),(20907,3580,'the7_fancy_title_css','#main {\n  padding-top: 1%;\n}\n.fancy-header {\n  background-image: url(\'https://farmchemie.yasithawd.com/wp-content/uploads/2023/09/Broiler-Finisher_300px.png\');\n  background-repeat: no-repeat;\n  background-position: center center;\n  background-size: auto auto;\n  background-color: #ffffff;\n}\n.mobile-false .fancy-header {\n  background-attachment: scroll;\n}\n.fancy-header .wf-wrap {\n  min-height: 140px;\n  padding-top: 0px;\n  padding-bottom: 0px;\n}\n.fancy-header .fancy-title {\n  font-size: 32px;\n  line-height: 36px;\n  color: #079547;\n  text-transform: none;\n}\n.fancy-header .fancy-subtitle {\n  font-size: 24px;\n  line-height: 26px;\n  color: #792c8a;\n  text-transform: none;\n}\n.fancy-header .breadcrumbs {\n  color: #ffffff;\n}\n.fancy-header-overlay {\n  background: rgba(0,0,0,0.5);\n}\n@media screen and (max-width: 778px) {\n  .fancy-header .wf-wrap {\n    min-height: 140px;\n  }\n  .fancy-header .fancy-title {\n    font-size: 30px;\n    line-height: 38px;\n  }\n  .fancy-header .fancy-subtitle {\n    font-size: 20px;\n    line-height: 28px;\n  }\n  .fancy-header.breadcrumbs-mobile-off .breadcrumbs {\n    display: none;\n  }\n  #fancy-header > .wf-wrap {\n    flex-flow: column wrap;\n    align-items: center;\n    justify-content: center;\n    padding-bottom: 0px !important;\n  }\n  .fancy-header.title-left .breadcrumbs {\n    text-align: center;\n    float: none;\n  }\n  .breadcrumbs {\n    margin-bottom: 10px;\n  }\n  .breadcrumbs.breadcrumbs-bg {\n    margin-top: 10px;\n  }\n  .fancy-header.title-right .breadcrumbs {\n    margin: 10px 0 10px 0;\n  }\n  #fancy-header .hgroup,\n  #fancy-header .breadcrumbs {\n    text-align: center;\n  }\n  .fancy-header .hgroup {\n    padding-bottom: 5px;\n  }\n  .breadcrumbs-off .hgroup {\n    padding-bottom: 5px;\n  }\n  .title-right .hgroup {\n    padding: 0 0 5px 0;\n  }\n  .title-right.breadcrumbs-off .hgroup {\n    padding-top: 5px;\n  }\n  .title-left.disabled-bg .breadcrumbs {\n    margin-bottom: 0;\n  }\n}\n'),(20883,3580,'_dt_fancy_header_subtitle_color_mode','color'),(20884,3580,'_dt_fancy_header_subtitle_color','#792c8a'),(20885,3580,'_dt_fancy_header_bg_heading',''),(20886,3580,'_dt_fancy_header_bg_color','#ffffff'),(20887,3580,'_dt_fancy_header_bg_image_origin','custom'),(20888,3580,'_dt_fancy_header_bg_image','a:1:{i:0;i:3934;}'),(20889,3580,'_dt_fancy_header_bg_repeat','no-repeat'),(20890,3580,'_dt_fancy_header_bg_position_x','center'),(20891,3580,'_dt_fancy_header_bg_position_y','center'),(20892,3580,'_dt_fancy_header_bg_fullscreen','0'),(20893,3580,'_dt_fancy_header_bg_overlay','0'),(20894,3580,'_dt_fancy_header_overlay_color','#000'),(20895,3580,'_dt_fancy_header_bg_overlay_opacity','50'),(20896,3580,'_dt_fancy_header_scroll_effect','default'),(20897,3580,'_dt_fancy_header_bg_parallax','0.5'),(20898,3580,'_dt_fancy_header_responsiveness_heading',''),(20899,3580,'_dt_fancy_header_responsiveness','enabled'),(20900,3580,'_dt_fancy_header_responsiveness_switch','778px'),(20901,3580,'_dt_fancy_header_responsive_height','140'),(20902,3580,'_dt_fancy_header_responsive_font_size','30'),(20903,3580,'_dt_fancy_header_responsive_title_line_height','38'),(20904,3580,'_dt_fancy_header_responsive_subtitle_font_size','20'),(20905,3580,'_dt_fancy_header_responsive_subtitle_line_height','28'),(20906,3580,'_dt_fancy_header_responsive_breadcrumbs','disabled'),(20882,3580,'_dt_fancy_header_subtitle_text_transform','none'),(21046,3589,'_dt_fancy_header_subtitle_font_size','24'),(21045,3589,'_dt_fancy_header_subtitle',''),(20881,3580,'_dt_fancy_header_subtitle_line_height','26'),(21044,3589,'_dt_fancy_header_subtitle_heading',''),(21043,3589,'_dt_fancy_header_title_color','#079547'),(21042,3589,'_dt_fancy_header_title_color_mode','color'),(21041,3589,'_dt_fancy_header_text_transform','none'),(21040,3589,'_dt_fancy_header_title_line_height','36'),(21039,3589,'_dt_fancy_header_title_font_size','32'),(21038,3589,'_dt_fancy_header_title',''),(21037,3589,'_dt_fancy_header_title_mode','custom'),(21036,3589,'_dt_fancy_header_title_heading',''),(21035,3589,'_dt_fancy_header_breadcrumbs_bg_color','disabled'),(21034,3589,'_dt_fancy_header_breadcrumbs_text_color','#ffffff'),(21033,3589,'_dt_fancy_header_breadcrumbs','disabled'),(21032,3589,'_dt_fancy_header_breadcrumbs_heading',''),(21031,3589,'_dt_fancy_header_padding-bottom','0px'),(21030,3589,'_dt_fancy_header_padding-top','0px'),(21029,3589,'_dt_fancy_header_height','140'),(21028,3589,'_dt_fancy_header_title_aligment','all_left'),(21027,3589,'_dt_fancy_header_layout_heading',''),(21026,3589,'_dt_mobile_page_padding_left',''),(21025,3589,'_dt_mobile_page_padding_bottom',''),(21024,3589,'_dt_mobile_page_padding_right',''),(21023,3589,'_dt_mobile_page_padding_top',''),(21022,3589,'_dt_page_overrides_left_margin',''),(21021,3589,'_dt_page_overrides_bottom_margin',''),(21020,3589,'_dt_page_overrides_right_margin',''),(21019,3589,'_dt_page_overrides_top_margin','1%'),(21018,3589,'_dt_header_disabled_transparent_bg_opacity','50'),(21017,3589,'_dt_header_disabled_transparent_bg_color','#000000'),(21016,3589,'_dt_header_disabled_transparent_top_bar_bg_opacity','25'),(21015,3589,'_dt_header_disabled_transparent_top_bar_bg_color','#ffffff'),(21014,3589,'_dt_header_disabled_transparent_bg_color_scheme','light'),(21013,3589,'_dt_header_disabled_background','normal'),(21012,3589,'_dt_header_transparent_bg_opacity','50'),(21011,3589,'_dt_header_transparent_bg_color','#000000'),(21010,3589,'_dt_header_transparent_top_bar_bg_opacity','25'),(21009,3589,'_dt_header_transparent_top_bar_bg_color','#ffffff'),(21008,3589,'_dt_header_transparent_bg_color_scheme','light'),(21007,3589,'_dt_header_background_below_slideshow','disabled'),(21006,3589,'_dt_header_background','normal'),(21005,3589,'_dt_header_title','fancy'),(21004,3589,'_dt_footer_hide_on_mobile','0'),(21003,3589,'_dt_footer_widgetarea_id','sidebar_2'),(21002,3589,'_dt_footer_show','1'),(21001,3589,'_dt_sidebar_hide_on_mobile','0'),(21000,3589,'_dt_sidebar_widgetarea_id','sidebar_1'),(20999,3589,'_dt_sidebar_position','disabled'),(20998,3589,'_product_version','8.0.2'),(20997,3589,'_product_attributes','a:1:{s:15:\"pa_product-type\";a:6:{s:4:\"name\";s:15:\"pa_product-type\";s:5:\"value\";s:0:\"\";s:8:\"position\";i:0;s:10:\"is_visible\";i:0;s:12:\"is_variation\";i:0;s:11:\"is_taxonomy\";i:1;}}'),(20996,3589,'_wc_review_count','0'),(20995,3589,'_wc_average_rating','0'),(20994,3589,'_stock_status','instock'),(20993,3589,'_stock',NULL),(20983,3589,'total_sales','0'),(20981,3588,'_menu_item_url','https://farmchemie.yasithawd.com/product-category/poultry/'),(20980,3588,'_menu_item_xfn',''),(20979,3588,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(20978,3588,'_menu_item_target',''),(20977,3588,'_menu_item_object','custom'),(20976,3588,'_menu_item_object_id','3588'),(20975,3588,'_menu_item_menu_item_parent','0'),(20949,3585,'_menu_item_object_id','3585'),(20950,3585,'_menu_item_object','custom'),(20951,3585,'_menu_item_target',''),(20952,3585,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(20953,3585,'_menu_item_xfn',''),(20954,3585,'_menu_item_url','https://farmchemie.yasithawd.com/product-category/pet-care/cat/'),(20986,3589,'_manage_stock','no'),(20956,3586,'_menu_item_type','custom'),(20957,3586,'_menu_item_menu_item_parent','3584'),(20958,3586,'_menu_item_object_id','3586'),(20959,3586,'_menu_item_object','custom'),(20960,3586,'_menu_item_target',''),(20961,3586,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(20962,3586,'_menu_item_xfn',''),(20963,3586,'_menu_item_url','https://farmchemie.yasithawd.com/product-category/pet-care/dog/'),(20985,3589,'_tax_class',''),(20965,3587,'_menu_item_type','custom'),(20966,3587,'_menu_item_menu_item_parent','3584'),(20967,3587,'_menu_item_object_id','3587'),(20968,3587,'_menu_item_object','custom'),(20969,3587,'_menu_item_target',''),(20970,3587,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(20971,3587,'_menu_item_xfn',''),(20972,3587,'_menu_item_url','https://farmchemie.yasithawd.com/product-category/pet-care/exotic-bird/'),(20984,3589,'_tax_status','taxable'),(20974,3588,'_menu_item_type','custom'),(20948,3585,'_menu_item_menu_item_parent','3584'),(21115,3591,'_dt_page_overrides_bottom_margin',''),(21114,3591,'_dt_page_overrides_right_margin',''),(21113,3591,'_dt_page_overrides_top_margin','1%'),(21112,3591,'_dt_header_disabled_transparent_bg_opacity','50'),(21111,3591,'_dt_header_disabled_transparent_bg_color','#000000'),(21110,3591,'_dt_header_disabled_transparent_top_bar_bg_opacity','25'),(21109,3591,'_dt_header_disabled_transparent_top_bar_bg_color','#ffffff'),(21108,3591,'_dt_header_disabled_transparent_bg_color_scheme','light'),(21107,3591,'_dt_header_disabled_background','normal'),(21106,3591,'_dt_header_transparent_bg_opacity','50'),(21105,3591,'_dt_header_transparent_bg_color','#000000'),(21104,3591,'_dt_header_transparent_top_bar_bg_opacity','25'),(21103,3591,'_dt_header_transparent_top_bar_bg_color','#ffffff'),(21102,3591,'_dt_header_transparent_bg_color_scheme','light'),(21101,3591,'_dt_header_background_below_slideshow','disabled'),(21100,3591,'_dt_header_background','normal'),(21099,3591,'_dt_header_title','fancy'),(21098,3591,'_dt_footer_hide_on_mobile','0'),(21097,3591,'_dt_footer_widgetarea_id','sidebar_2'),(21096,3591,'_dt_footer_show','1'),(21095,3591,'_dt_sidebar_hide_on_mobile','0'),(21094,3591,'_dt_sidebar_widgetarea_id','sidebar_1'),(21093,3591,'_dt_sidebar_position','disabled'),(21092,3591,'_product_version','8.0.2'),(21091,3591,'_product_attributes','a:1:{s:15:\"pa_product-type\";a:6:{s:4:\"name\";s:15:\"pa_product-type\";s:5:\"value\";s:0:\"\";s:8:\"position\";i:0;s:10:\"is_visible\";i:0;s:12:\"is_variation\";i:0;s:11:\"is_taxonomy\";i:1;}}'),(21090,3591,'_wc_review_count','0'),(21089,3591,'_wc_average_rating','0'),(21088,3591,'_stock_status','instock'),(21087,3591,'_stock',NULL),(21086,3591,'_download_expiry','-1'),(21085,3591,'_download_limit','-1'),(21084,3591,'_downloadable','no'),(21083,3591,'_virtual','no'),(21076,3589,'_edit_last','1'),(21077,3591,'total_sales','0'),(21075,3589,'_edit_lock','1695554212:1'),(21074,3589,'_wqoecf_disable_form','no'),(21081,3591,'_backorders','no'),(21082,3591,'_sold_individually','no'),(21080,3591,'_manage_stock','no'),(21078,3591,'_tax_status','taxable'),(21079,3591,'_tax_class',''),(21073,3589,'the7_fancy_title_css','#main {\n  padding-top: 1%;\n}\n.fancy-header {\n  background-image: url(\'https://farmchemie.yasithawd.com/wp-content/uploads/2023/09/Layer-Concentrate_300px.png\');\n  background-repeat: no-repeat;\n  background-position: center center;\n  background-size: auto auto;\n  background-color: #ffffff;\n}\n.mobile-false .fancy-header {\n  background-attachment: scroll;\n}\n.fancy-header .wf-wrap {\n  min-height: 140px;\n  padding-top: 0px;\n  padding-bottom: 0px;\n}\n.fancy-header .fancy-title {\n  font-size: 32px;\n  line-height: 36px;\n  color: #079547;\n  text-transform: none;\n}\n.fancy-header .fancy-subtitle {\n  font-size: 24px;\n  line-height: 26px;\n  color: #792c8a;\n  text-transform: none;\n}\n.fancy-header .breadcrumbs {\n  color: #ffffff;\n}\n.fancy-header-overlay {\n  background: rgba(0,0,0,0.5);\n}\n@media screen and (max-width: 778px) {\n  .fancy-header .wf-wrap {\n    min-height: 140px;\n  }\n  .fancy-header .fancy-title {\n    font-size: 30px;\n    line-height: 38px;\n  }\n  .fancy-header .fancy-subtitle {\n    font-size: 20px;\n    line-height: 28px;\n  }\n  .fancy-header.breadcrumbs-mobile-off .breadcrumbs {\n    display: none;\n  }\n  #fancy-header > .wf-wrap {\n    flex-flow: column wrap;\n    align-items: center;\n    justify-content: center;\n    padding-bottom: 0px !important;\n  }\n  .fancy-header.title-left .breadcrumbs {\n    text-align: center;\n    float: none;\n  }\n  .breadcrumbs {\n    margin-bottom: 10px;\n  }\n  .breadcrumbs.breadcrumbs-bg {\n    margin-top: 10px;\n  }\n  .fancy-header.title-right .breadcrumbs {\n    margin: 10px 0 10px 0;\n  }\n  #fancy-header .hgroup,\n  #fancy-header .breadcrumbs {\n    text-align: center;\n  }\n  .fancy-header .hgroup {\n    padding-bottom: 5px;\n  }\n  .breadcrumbs-off .hgroup {\n    padding-bottom: 5px;\n  }\n  .title-right .hgroup {\n    padding: 0 0 5px 0;\n  }\n  .title-right.breadcrumbs-off .hgroup {\n    padding-top: 5px;\n  }\n  .title-left.disabled-bg .breadcrumbs {\n    margin-bottom: 0;\n  }\n}\n'),(21072,3589,'_dt_fancy_header_responsive_breadcrumbs','disabled'),(21048,3589,'_dt_fancy_header_subtitle_text_transform','none'),(21049,3589,'_dt_fancy_header_subtitle_color_mode','color'),(21050,3589,'_dt_fancy_header_subtitle_color','#792c8a'),(21051,3589,'_dt_fancy_header_bg_heading',''),(21052,3589,'_dt_fancy_header_bg_color','#ffffff'),(21053,3589,'_dt_fancy_header_bg_image_origin','custom'),(21054,3589,'_dt_fancy_header_bg_image','a:1:{i:0;i:3930;}'),(21055,3589,'_dt_fancy_header_bg_repeat','no-repeat'),(21056,3589,'_dt_fancy_header_bg_position_x','center'),(21057,3589,'_dt_fancy_header_bg_position_y','center'),(21058,3589,'_dt_fancy_header_bg_fullscreen','0'),(21059,3589,'_dt_fancy_header_bg_overlay','0'),(21060,3589,'_dt_fancy_header_overlay_color','#000'),(21061,3589,'_dt_fancy_header_bg_overlay_opacity','50'),(21062,3589,'_dt_fancy_header_scroll_effect','default'),(21063,3589,'_dt_fancy_header_bg_parallax','0.5'),(21064,3589,'_dt_fancy_header_responsiveness_heading',''),(21065,3589,'_dt_fancy_header_responsiveness','enabled'),(21066,3589,'_dt_fancy_header_responsiveness_switch','778px'),(21067,3589,'_dt_fancy_header_responsive_height','140'),(21068,3589,'_dt_fancy_header_responsive_font_size','30'),(21069,3589,'_dt_fancy_header_responsive_title_line_height','38'),(21070,3589,'_dt_fancy_header_responsive_subtitle_font_size','20'),(21071,3589,'_dt_fancy_header_responsive_subtitle_line_height','28'),(21047,3589,'_dt_fancy_header_subtitle_line_height','26'),(21181,3592,'_stock',NULL),(21180,3592,'_download_expiry','-1'),(21179,3592,'_download_limit','-1'),(21178,3592,'_downloadable','no'),(21177,3592,'_virtual','no'),(21176,3592,'_sold_individually','no'),(21175,3592,'_backorders','no'),(21174,3592,'_manage_stock','no'),(21173,3592,'_tax_class',''),(21171,3592,'total_sales','0'),(21172,3592,'_tax_status','taxable'),(21170,3591,'_edit_last','1'),(21169,3591,'_edit_lock','1695554187:1'),(21168,3591,'_wqoecf_disable_form','no'),(21167,3591,'the7_fancy_title_css','#main {\n  padding-top: 1%;\n}\n.fancy-header {\n  background-image: url(\'https://farmchemie.yasithawd.com/wp-content/uploads/2023/09/Layer-Concentrate_300px.png\');\n  background-repeat: no-repeat;\n  background-position: center center;\n  background-size: auto auto;\n  background-color: #ffffff;\n}\n.mobile-false .fancy-header {\n  background-attachment: scroll;\n}\n.fancy-header .wf-wrap {\n  min-height: 140px;\n  padding-top: 0px;\n  padding-bottom: 0px;\n}\n.fancy-header .fancy-title {\n  font-size: 32px;\n  line-height: 36px;\n  color: #079547;\n  text-transform: none;\n}\n.fancy-header .fancy-subtitle {\n  font-size: 24px;\n  line-height: 26px;\n  color: #792c8a;\n  text-transform: none;\n}\n.fancy-header .breadcrumbs {\n  color: #ffffff;\n}\n.fancy-header-overlay {\n  background: rgba(0,0,0,0.5);\n}\n@media screen and (max-width: 778px) {\n  .fancy-header .wf-wrap {\n    min-height: 140px;\n  }\n  .fancy-header .fancy-title {\n    font-size: 30px;\n    line-height: 38px;\n  }\n  .fancy-header .fancy-subtitle {\n    font-size: 20px;\n    line-height: 28px;\n  }\n  .fancy-header.breadcrumbs-mobile-off .breadcrumbs {\n    display: none;\n  }\n  #fancy-header > .wf-wrap {\n    flex-flow: column wrap;\n    align-items: center;\n    justify-content: center;\n    padding-bottom: 0px !important;\n  }\n  .fancy-header.title-left .breadcrumbs {\n    text-align: center;\n    float: none;\n  }\n  .breadcrumbs {\n    margin-bottom: 10px;\n  }\n  .breadcrumbs.breadcrumbs-bg {\n    margin-top: 10px;\n  }\n  .fancy-header.title-right .breadcrumbs {\n    margin: 10px 0 10px 0;\n  }\n  #fancy-header .hgroup,\n  #fancy-header .breadcrumbs {\n    text-align: center;\n  }\n  .fancy-header .hgroup {\n    padding-bottom: 5px;\n  }\n  .breadcrumbs-off .hgroup {\n    padding-bottom: 5px;\n  }\n  .title-right .hgroup {\n    padding: 0 0 5px 0;\n  }\n  .title-right.breadcrumbs-off .hgroup {\n    padding-top: 5px;\n  }\n  .title-left.disabled-bg .breadcrumbs {\n    margin-bottom: 0;\n  }\n}\n'),(21166,3591,'_dt_fancy_header_responsive_breadcrumbs','disabled'),(21165,3591,'_dt_fancy_header_responsive_subtitle_line_height','28'),(21164,3591,'_dt_fancy_header_responsive_subtitle_font_size','20'),(21163,3591,'_dt_fancy_header_responsive_title_line_height','38'),(21162,3591,'_dt_fancy_header_responsive_font_size','30'),(21161,3591,'_dt_fancy_header_responsive_height','140'),(21160,3591,'_dt_fancy_header_responsiveness_switch','778px'),(21159,3591,'_dt_fancy_header_responsiveness','enabled'),(21158,3591,'_dt_fancy_header_responsiveness_heading',''),(21157,3591,'_dt_fancy_header_bg_parallax','0.5'),(21156,3591,'_dt_fancy_header_scroll_effect','default'),(21155,3591,'_dt_fancy_header_bg_overlay_opacity','50'),(21154,3591,'_dt_fancy_header_overlay_color','#000'),(21153,3591,'_dt_fancy_header_bg_overlay','0'),(21152,3591,'_dt_fancy_header_bg_fullscreen','0'),(21151,3591,'_dt_fancy_header_bg_position_y','center'),(21150,3591,'_dt_fancy_header_bg_position_x','center'),(21149,3591,'_dt_fancy_header_bg_repeat','no-repeat'),(21148,3591,'_dt_fancy_header_bg_image','a:1:{i:0;i:3930;}'),(21147,3591,'_dt_fancy_header_bg_image_origin','custom'),(21146,3591,'_dt_fancy_header_bg_color','#ffffff'),(21145,3591,'_dt_fancy_header_bg_heading',''),(21144,3591,'_dt_fancy_header_subtitle_color','#792c8a'),(21143,3591,'_dt_fancy_header_subtitle_color_mode','color'),(21142,3591,'_dt_fancy_header_subtitle_text_transform','none'),(21117,3591,'_dt_mobile_page_padding_top',''),(21118,3591,'_dt_mobile_page_padding_right',''),(21119,3591,'_dt_mobile_page_padding_bottom',''),(21120,3591,'_dt_mobile_page_padding_left',''),(21121,3591,'_dt_fancy_header_layout_heading',''),(21122,3591,'_dt_fancy_header_title_aligment','all_left'),(21123,3591,'_dt_fancy_header_height','140'),(21124,3591,'_dt_fancy_header_padding-top','0px'),(21125,3591,'_dt_fancy_header_padding-bottom','0px'),(21126,3591,'_dt_fancy_header_breadcrumbs_heading',''),(21127,3591,'_dt_fancy_header_breadcrumbs','disabled'),(21128,3591,'_dt_fancy_header_breadcrumbs_text_color','#ffffff'),(21129,3591,'_dt_fancy_header_breadcrumbs_bg_color','disabled'),(21130,3591,'_dt_fancy_header_title_heading',''),(21131,3591,'_dt_fancy_header_title_mode','custom'),(21132,3591,'_dt_fancy_header_title',''),(21133,3591,'_dt_fancy_header_title_font_size','32'),(21134,3591,'_dt_fancy_header_title_line_height','36'),(21135,3591,'_dt_fancy_header_text_transform','none'),(21136,3591,'_dt_fancy_header_title_color_mode','color'),(21137,3591,'_dt_fancy_header_title_color','#079547'),(21138,3591,'_dt_fancy_header_subtitle_heading',''),(21139,3591,'_dt_fancy_header_subtitle',''),(21140,3591,'_dt_fancy_header_subtitle_font_size','24'),(21141,3591,'_dt_fancy_header_subtitle_line_height','26'),(21116,3591,'_dt_page_overrides_left_margin',''),(11160,2857,'_wp_attached_file','2023/05/CEVAC-BI-L.png'),(11161,2857,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:600;s:6:\"height\";i:600;s:4:\"file\";s:22:\"2023/05/CEVAC-BI-L.png\";s:8:\"filesize\";i:194236;s:5:\"sizes\";a:6:{s:6:\"medium\";a:5:{s:4:\"file\";s:22:\"CEVAC-BI-L-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:51118;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:22:\"CEVAC-BI-L-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:15523;}s:21:\"woocommerce_thumbnail\";a:6:{s:4:\"file\";s:22:\"CEVAC-BI-L-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:51118;s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:5:{s:4:\"file\";s:22:\"CEVAC-BI-L-200x200.png\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:25328;}s:12:\"shop_catalog\";a:5:{s:4:\"file\";s:22:\"CEVAC-BI-L-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:51118;}s:14:\"shop_thumbnail\";a:5:{s:4:\"file\";s:22:\"CEVAC-BI-L-200x200.png\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:25328;}}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:{}}}'),(21261,3592,'the7_fancy_title_css','#main {\n  padding-top: 1%;\n}\n.fancy-header {\n  background-image: url(\'https://farmchemie.yasithawd.com/wp-content/uploads/2023/09/Layer-Concentrate_300px.png\');\n  background-repeat: no-repeat;\n  background-position: center center;\n  background-size: auto auto;\n  background-color: #ffffff;\n}\n.mobile-false .fancy-header {\n  background-attachment: scroll;\n}\n.fancy-header .wf-wrap {\n  min-height: 140px;\n  padding-top: 0px;\n  padding-bottom: 0px;\n}\n.fancy-header .fancy-title {\n  font-size: 32px;\n  line-height: 36px;\n  color: #079547;\n  text-transform: none;\n}\n.fancy-header .fancy-subtitle {\n  font-size: 24px;\n  line-height: 26px;\n  color: #792c8a;\n  text-transform: none;\n}\n.fancy-header .breadcrumbs {\n  color: #ffffff;\n}\n.fancy-header-overlay {\n  background: rgba(0,0,0,0.5);\n}\n@media screen and (max-width: 778px) {\n  .fancy-header .wf-wrap {\n    min-height: 140px;\n  }\n  .fancy-header .fancy-title {\n    font-size: 30px;\n    line-height: 38px;\n  }\n  .fancy-header .fancy-subtitle {\n    font-size: 20px;\n    line-height: 28px;\n  }\n  .fancy-header.breadcrumbs-mobile-off .breadcrumbs {\n    display: none;\n  }\n  #fancy-header > .wf-wrap {\n    flex-flow: column wrap;\n    align-items: center;\n    justify-content: center;\n    padding-bottom: 0px !important;\n  }\n  .fancy-header.title-left .breadcrumbs {\n    text-align: center;\n    float: none;\n  }\n  .breadcrumbs {\n    margin-bottom: 10px;\n  }\n  .breadcrumbs.breadcrumbs-bg {\n    margin-top: 10px;\n  }\n  .fancy-header.title-right .breadcrumbs {\n    margin: 10px 0 10px 0;\n  }\n  #fancy-header .hgroup,\n  #fancy-header .breadcrumbs {\n    text-align: center;\n  }\n  .fancy-header .hgroup {\n    padding-bottom: 5px;\n  }\n  .breadcrumbs-off .hgroup {\n    padding-bottom: 5px;\n  }\n  .title-right .hgroup {\n    padding: 0 0 5px 0;\n  }\n  .title-right.breadcrumbs-off .hgroup {\n    padding-top: 5px;\n  }\n  .title-left.disabled-bg .breadcrumbs {\n    margin-bottom: 0;\n  }\n}\n'),(21260,3592,'_dt_fancy_header_responsive_breadcrumbs','disabled'),(21259,3592,'_dt_fancy_header_responsive_subtitle_line_height','28'),(21258,3592,'_dt_fancy_header_responsive_subtitle_font_size','20'),(21257,3592,'_dt_fancy_header_responsive_title_line_height','38'),(21256,3592,'_dt_fancy_header_responsive_font_size','30'),(21255,3592,'_dt_fancy_header_responsive_height','140'),(21254,3592,'_dt_fancy_header_responsiveness_switch','778px'),(21253,3592,'_dt_fancy_header_responsiveness','enabled'),(21252,3592,'_dt_fancy_header_responsiveness_heading',''),(21251,3592,'_dt_fancy_header_bg_parallax','0.5'),(21250,3592,'_dt_fancy_header_scroll_effect','default'),(21249,3592,'_dt_fancy_header_bg_overlay_opacity','50'),(21248,3592,'_dt_fancy_header_overlay_color','#000'),(21247,3592,'_dt_fancy_header_bg_overlay','0'),(21246,3592,'_dt_fancy_header_bg_fullscreen','0'),(21245,3592,'_dt_fancy_header_bg_position_y','center'),(21244,3592,'_dt_fancy_header_bg_position_x','center'),(21243,3592,'_dt_fancy_header_bg_repeat','no-repeat'),(21242,3592,'_dt_fancy_header_bg_image','a:1:{i:0;i:3930;}'),(21241,3592,'_dt_fancy_header_bg_image_origin','custom'),(21240,3592,'_dt_fancy_header_bg_color','#ffffff'),(21239,3592,'_dt_fancy_header_bg_heading',''),(21238,3592,'_dt_fancy_header_subtitle_color','#792c8a'),(21237,3592,'_dt_fancy_header_subtitle_color_mode','color'),(21236,3592,'_dt_fancy_header_subtitle_text_transform','none'),(21235,3592,'_dt_fancy_header_subtitle_line_height','26'),(21234,3592,'_dt_fancy_header_subtitle_font_size','24'),(21233,3592,'_dt_fancy_header_subtitle',''),(21232,3592,'_dt_fancy_header_subtitle_heading',''),(21231,3592,'_dt_fancy_header_title_color','#079547'),(21229,3592,'_dt_fancy_header_text_transform','none'),(21230,3592,'_dt_fancy_header_title_color_mode','color'),(21228,3592,'_dt_fancy_header_title_line_height','36'),(21227,3592,'_dt_fancy_header_title_font_size','32'),(21226,3592,'_dt_fancy_header_title',''),(21225,3592,'_dt_fancy_header_title_mode','custom'),(21224,3592,'_dt_fancy_header_title_heading',''),(21223,3592,'_dt_fancy_header_breadcrumbs_bg_color','disabled'),(21222,3592,'_dt_fancy_header_breadcrumbs_text_color','#ffffff'),(21221,3592,'_dt_fancy_header_breadcrumbs','disabled'),(21220,3592,'_dt_fancy_header_breadcrumbs_heading',''),(21219,3592,'_dt_fancy_header_padding-bottom','0px'),(21218,3592,'_dt_fancy_header_padding-top','0px'),(21217,3592,'_dt_fancy_header_height','140'),(21216,3592,'_dt_fancy_header_title_aligment','all_left'),(21215,3592,'_dt_fancy_header_layout_heading',''),(21214,3592,'_dt_mobile_page_padding_left',''),(21213,3592,'_dt_mobile_page_padding_bottom',''),(21212,3592,'_dt_mobile_page_padding_right',''),(21211,3592,'_dt_mobile_page_padding_top',''),(21210,3592,'_dt_page_overrides_left_margin',''),(21209,3592,'_dt_page_overrides_bottom_margin',''),(21208,3592,'_dt_page_overrides_right_margin',''),(21207,3592,'_dt_page_overrides_top_margin','1%'),(21206,3592,'_dt_header_disabled_transparent_bg_opacity','50'),(21184,3592,'_wc_review_count','0'),(21185,3592,'_product_attributes','a:1:{s:15:\"pa_product-type\";a:6:{s:4:\"name\";s:15:\"pa_product-type\";s:5:\"value\";s:0:\"\";s:8:\"position\";i:0;s:10:\"is_visible\";i:0;s:12:\"is_variation\";i:0;s:11:\"is_taxonomy\";i:1;}}'),(21186,3592,'_product_version','8.0.2'),(21187,3592,'_dt_sidebar_position','disabled'),(21188,3592,'_dt_sidebar_widgetarea_id','sidebar_1'),(21189,3592,'_dt_sidebar_hide_on_mobile','0'),(21190,3592,'_dt_footer_show','1'),(21191,3592,'_dt_footer_widgetarea_id','sidebar_2'),(21192,3592,'_dt_footer_hide_on_mobile','0'),(21193,3592,'_dt_header_title','fancy'),(21194,3592,'_dt_header_background','normal'),(21195,3592,'_dt_header_background_below_slideshow','disabled'),(21196,3592,'_dt_header_transparent_bg_color_scheme','light'),(21197,3592,'_dt_header_transparent_top_bar_bg_color','#ffffff'),(21198,3592,'_dt_header_transparent_top_bar_bg_opacity','25'),(21199,3592,'_dt_header_transparent_bg_color','#000000'),(21200,3592,'_dt_header_transparent_bg_opacity','50'),(21201,3592,'_dt_header_disabled_background','normal'),(21202,3592,'_dt_header_disabled_transparent_bg_color_scheme','light'),(21203,3592,'_dt_header_disabled_transparent_top_bar_bg_color','#ffffff'),(21204,3592,'_dt_header_disabled_transparent_top_bar_bg_opacity','25'),(21205,3592,'_dt_header_disabled_transparent_bg_color','#000000'),(21183,3592,'_wc_average_rating','0'),(21182,3592,'_stock_status','instock'),(11255,2859,'_wp_attached_file','2023/05/CEVAC-BRON-120-L.png'),(11256,2859,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:600;s:6:\"height\";i:600;s:4:\"file\";s:28:\"2023/05/CEVAC-BRON-120-L.png\";s:8:\"filesize\";i:197206;s:5:\"sizes\";a:6:{s:6:\"medium\";a:5:{s:4:\"file\";s:28:\"CEVAC-BRON-120-L-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:52183;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:28:\"CEVAC-BRON-120-L-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:16024;}s:21:\"woocommerce_thumbnail\";a:6:{s:4:\"file\";s:28:\"CEVAC-BRON-120-L-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:52183;s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:5:{s:4:\"file\";s:28:\"CEVAC-BRON-120-L-200x200.png\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:26160;}s:12:\"shop_catalog\";a:5:{s:4:\"file\";s:28:\"CEVAC-BRON-120-L-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:52183;}s:14:\"shop_thumbnail\";a:5:{s:4:\"file\";s:28:\"CEVAC-BRON-120-L-200x200.png\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:26160;}}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:{}}}'),(21338,3593,'_dt_fancy_header_bg_position_x','center'),(21337,3593,'_dt_fancy_header_bg_repeat','no-repeat'),(21336,3593,'_dt_fancy_header_bg_image','a:0:{}'),(21335,3593,'_dt_fancy_header_bg_image_origin','custom'),(21334,3593,'_dt_fancy_header_bg_color','#ffffff'),(21333,3593,'_dt_fancy_header_bg_heading',''),(21332,3593,'_dt_fancy_header_subtitle_color','#792c8a'),(21331,3593,'_dt_fancy_header_subtitle_color_mode','color'),(21330,3593,'_dt_fancy_header_subtitle_text_transform','none'),(21329,3593,'_dt_fancy_header_subtitle_line_height','26'),(21328,3593,'_dt_fancy_header_subtitle_font_size','24'),(21327,3593,'_dt_fancy_header_subtitle',''),(21326,3593,'_dt_fancy_header_subtitle_heading',''),(21325,3593,'_dt_fancy_header_title_color','#079547'),(21324,3593,'_dt_fancy_header_title_color_mode','color'),(21323,3593,'_dt_fancy_header_text_transform','none'),(21322,3593,'_dt_fancy_header_title_line_height','36'),(21321,3593,'_dt_fancy_header_title_font_size','32'),(21320,3593,'_dt_fancy_header_title',''),(21319,3593,'_dt_fancy_header_title_mode','custom'),(21318,3593,'_dt_fancy_header_title_heading',''),(21317,3593,'_dt_fancy_header_breadcrumbs_bg_color','disabled'),(21316,3593,'_dt_fancy_header_breadcrumbs_text_color','#ffffff'),(21315,3593,'_dt_fancy_header_breadcrumbs','disabled'),(21314,3593,'_dt_fancy_header_breadcrumbs_heading',''),(21313,3593,'_dt_fancy_header_padding-bottom','0px'),(21312,3593,'_dt_fancy_header_padding-top','0px'),(21311,3593,'_dt_fancy_header_height','140'),(21310,3593,'_dt_fancy_header_title_aligment','all_left'),(21309,3593,'_dt_fancy_header_layout_heading',''),(21308,3593,'_dt_mobile_page_padding_left',''),(21307,3593,'_dt_mobile_page_padding_bottom',''),(21306,3593,'_dt_mobile_page_padding_right',''),(21305,3593,'_dt_mobile_page_padding_top',''),(21304,3593,'_dt_page_overrides_left_margin',''),(21303,3593,'_dt_page_overrides_bottom_margin',''),(21302,3593,'_dt_page_overrides_right_margin',''),(21301,3593,'_dt_page_overrides_top_margin','1%'),(21300,3593,'_dt_header_disabled_transparent_bg_opacity','50'),(21299,3593,'_dt_header_disabled_transparent_bg_color','#000000'),(21298,3593,'_dt_header_disabled_transparent_top_bar_bg_opacity','25'),(21297,3593,'_dt_header_disabled_transparent_top_bar_bg_color','#ffffff'),(21295,3593,'_dt_header_disabled_background','normal'),(21296,3593,'_dt_header_disabled_transparent_bg_color_scheme','light'),(21294,3593,'_dt_header_transparent_bg_opacity','50'),(21293,3593,'_dt_header_transparent_bg_color','#000000'),(21292,3593,'_dt_header_transparent_top_bar_bg_opacity','25'),(21291,3593,'_dt_header_transparent_top_bar_bg_color','#ffffff'),(21290,3593,'_dt_header_transparent_bg_color_scheme','light'),(21289,3593,'_dt_header_background_below_slideshow','disabled'),(21288,3593,'_dt_header_background','normal'),(21287,3593,'_dt_header_title','fancy'),(21286,3593,'_dt_footer_hide_on_mobile','0'),(21285,3593,'_dt_footer_widgetarea_id','sidebar_2'),(21284,3593,'_dt_footer_show','1'),(21283,3593,'_dt_sidebar_hide_on_mobile','0'),(21282,3593,'_dt_sidebar_widgetarea_id','sidebar_1'),(21281,3593,'_dt_sidebar_position','disabled'),(21280,3593,'_product_version','8.0.2'),(21279,3593,'_product_attributes','a:1:{s:15:\"pa_product-type\";a:6:{s:4:\"name\";s:15:\"pa_product-type\";s:5:\"value\";s:0:\"\";s:8:\"position\";i:0;s:10:\"is_visible\";i:0;s:12:\"is_variation\";i:0;s:11:\"is_taxonomy\";i:1;}}'),(21278,3593,'_wc_review_count','0'),(21277,3593,'_wc_average_rating','0'),(21275,3593,'_stock',NULL),(21276,3593,'_stock_status','instock'),(21274,3593,'_download_expiry','-1'),(21262,3592,'_wqoecf_disable_form','no'),(21263,3592,'_edit_lock','1695554331:1'),(21265,3593,'total_sales','0'),(21266,3593,'_tax_status','taxable'),(21264,3592,'_edit_last','1'),(21267,3593,'_tax_class',''),(21268,3593,'_manage_stock','no'),(21269,3593,'_backorders','no'),(21270,3593,'_sold_individually','no'),(21271,3593,'_virtual','no'),(21272,3593,'_downloadable','no'),(21273,3593,'_download_limit','-1'),(11350,2861,'_wp_attached_file','2023/05/CEVITC-FP-L-WITH-DILUENT-AND-APPLICATOR.png'),(11351,2861,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:600;s:6:\"height\";i:600;s:4:\"file\";s:51:\"2023/05/CEVITC-FP-L-WITH-DILUENT-AND-APPLICATOR.png\";s:8:\"filesize\";i:177052;s:5:\"sizes\";a:6:{s:6:\"medium\";a:5:{s:4:\"file\";s:51:\"CEVITC-FP-L-WITH-DILUENT-AND-APPLICATOR-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:48828;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:51:\"CEVITC-FP-L-WITH-DILUENT-AND-APPLICATOR-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:14421;}s:21:\"woocommerce_thumbnail\";a:6:{s:4:\"file\";s:51:\"CEVITC-FP-L-WITH-DILUENT-AND-APPLICATOR-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:48828;s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:5:{s:4:\"file\";s:51:\"CEVITC-FP-L-WITH-DILUENT-AND-APPLICATOR-200x200.png\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:24053;}s:12:\"shop_catalog\";a:5:{s:4:\"file\";s:51:\"CEVITC-FP-L-WITH-DILUENT-AND-APPLICATOR-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:48828;}s:14:\"shop_thumbnail\";a:5:{s:4:\"file\";s:51:\"CEVITC-FP-L-WITH-DILUENT-AND-APPLICATOR-200x200.png\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:24053;}}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:{}}}'),(21403,3594,'_dt_mobile_page_padding_bottom',''),(21402,3594,'_dt_mobile_page_padding_right',''),(21401,3594,'_dt_mobile_page_padding_top',''),(21400,3594,'_dt_page_overrides_left_margin',''),(21399,3594,'_dt_page_overrides_bottom_margin',''),(21398,3594,'_dt_page_overrides_right_margin',''),(21397,3594,'_dt_page_overrides_top_margin','1%'),(21396,3594,'_dt_header_disabled_transparent_bg_opacity','50'),(21395,3594,'_dt_header_disabled_transparent_bg_color','#000000'),(21394,3594,'_dt_header_disabled_transparent_top_bar_bg_opacity','25'),(21393,3594,'_dt_header_disabled_transparent_top_bar_bg_color','#ffffff'),(21392,3594,'_dt_header_disabled_transparent_bg_color_scheme','light'),(21391,3594,'_dt_header_disabled_background','normal'),(21390,3594,'_dt_header_transparent_bg_opacity','50'),(21389,3594,'_dt_header_transparent_bg_color','#000000'),(21388,3594,'_dt_header_transparent_top_bar_bg_opacity','25'),(21387,3594,'_dt_header_transparent_top_bar_bg_color','#ffffff'),(21386,3594,'_dt_header_transparent_bg_color_scheme','light'),(21385,3594,'_dt_header_background_below_slideshow','disabled'),(21384,3594,'_dt_header_background','normal'),(21383,3594,'_dt_header_title','fancy'),(21382,3594,'_dt_footer_hide_on_mobile','0'),(21381,3594,'_dt_footer_widgetarea_id','sidebar_2'),(21380,3594,'_dt_footer_show','1'),(21379,3594,'_dt_sidebar_hide_on_mobile','0'),(21378,3594,'_dt_sidebar_widgetarea_id','sidebar_1'),(21377,3594,'_dt_sidebar_position','disabled'),(21376,3594,'_product_version','8.0.2'),(21375,3594,'_product_attributes','a:1:{s:15:\"pa_product-type\";a:6:{s:4:\"name\";s:15:\"pa_product-type\";s:5:\"value\";s:0:\"\";s:8:\"position\";i:0;s:10:\"is_visible\";i:0;s:12:\"is_variation\";i:0;s:11:\"is_taxonomy\";i:1;}}'),(21374,3594,'_wc_review_count','0'),(21373,3594,'_wc_average_rating','0'),(21372,3594,'_stock_status','instock'),(21371,3594,'_stock',NULL),(21369,3594,'_download_expiry','-1'),(21368,3594,'_download_limit','-1'),(21367,3594,'_downloadable','no'),(21366,3594,'_virtual','no'),(21365,3594,'_sold_individually','no'),(21364,3594,'_backorders','no'),(21363,3594,'_manage_stock','no'),(21362,3594,'_tax_class',''),(21360,3594,'total_sales','0'),(21361,3594,'_tax_status','taxable'),(21358,3593,'_edit_last','1'),(21357,3593,'_edit_lock','1694581710:1'),(21356,3593,'_wqoecf_disable_form','no'),(21340,3593,'_dt_fancy_header_bg_fullscreen','0'),(21341,3593,'_dt_fancy_header_bg_overlay','0'),(21342,3593,'_dt_fancy_header_overlay_color','#000'),(21343,3593,'_dt_fancy_header_bg_overlay_opacity','50'),(21344,3593,'_dt_fancy_header_scroll_effect','default'),(21345,3593,'_dt_fancy_header_bg_parallax','0.5'),(21346,3593,'_dt_fancy_header_responsiveness_heading',''),(21347,3593,'_dt_fancy_header_responsiveness','enabled'),(21348,3593,'_dt_fancy_header_responsiveness_switch','778px'),(21349,3593,'_dt_fancy_header_responsive_height','140'),(21350,3593,'_dt_fancy_header_responsive_font_size','30'),(21351,3593,'_dt_fancy_header_responsive_title_line_height','38'),(21352,3593,'_dt_fancy_header_responsive_subtitle_font_size','20'),(21353,3593,'_dt_fancy_header_responsive_subtitle_line_height','28'),(21354,3593,'_dt_fancy_header_responsive_breadcrumbs','disabled'),(21355,3593,'the7_fancy_title_css','#main {\n  padding-top: 1%;\n}\n.fancy-header {\n  background-image: none;\n  background-repeat: no-repeat;\n  background-position: center center;\n  background-size: auto auto;\n  background-color: #ffffff;\n}\n.mobile-false .fancy-header {\n  background-attachment: scroll;\n}\n.fancy-header .wf-wrap {\n  min-height: 140px;\n  padding-top: 0px;\n  padding-bottom: 0px;\n}\n.fancy-header .fancy-title {\n  font-size: 32px;\n  line-height: 36px;\n  color: #079547;\n  text-transform: none;\n}\n.fancy-header .fancy-subtitle {\n  font-size: 24px;\n  line-height: 26px;\n  color: #792c8a;\n  text-transform: none;\n}\n.fancy-header .breadcrumbs {\n  color: #ffffff;\n}\n.fancy-header-overlay {\n  background: rgba(0,0,0,0.5);\n}\n@media screen and (max-width: 778px) {\n  .fancy-header .wf-wrap {\n    min-height: 140px;\n  }\n  .fancy-header .fancy-title {\n    font-size: 30px;\n    line-height: 38px;\n  }\n  .fancy-header .fancy-subtitle {\n    font-size: 20px;\n    line-height: 28px;\n  }\n  .fancy-header.breadcrumbs-mobile-off .breadcrumbs {\n    display: none;\n  }\n  #fancy-header > .wf-wrap {\n    flex-flow: column wrap;\n    align-items: center;\n    justify-content: center;\n    padding-bottom: 0px !important;\n  }\n  .fancy-header.title-left .breadcrumbs {\n    text-align: center;\n    float: none;\n  }\n  .breadcrumbs {\n    margin-bottom: 10px;\n  }\n  .breadcrumbs.breadcrumbs-bg {\n    margin-top: 10px;\n  }\n  .fancy-header.title-right .breadcrumbs {\n    margin: 10px 0 10px 0;\n  }\n  #fancy-header .hgroup,\n  #fancy-header .breadcrumbs {\n    text-align: center;\n  }\n  .fancy-header .hgroup {\n    padding-bottom: 5px;\n  }\n  .breadcrumbs-off .hgroup {\n    padding-bottom: 5px;\n  }\n  .title-right .hgroup {\n    padding: 0 0 5px 0;\n  }\n  .title-right.breadcrumbs-off .hgroup {\n    padding-top: 5px;\n  }\n  .title-left.disabled-bg .breadcrumbs {\n    margin-bottom: 0;\n  }\n}\n'),(21339,3593,'_dt_fancy_header_bg_position_y','center'),(11445,2863,'_wp_attached_file','2023/05/CEVAC-GUMBO-L.png'),(11446,2863,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:600;s:6:\"height\";i:600;s:4:\"file\";s:25:\"2023/05/CEVAC-GUMBO-L.png\";s:8:\"filesize\";i:236267;s:5:\"sizes\";a:6:{s:6:\"medium\";a:5:{s:4:\"file\";s:25:\"CEVAC-GUMBO-L-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:58703;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:25:\"CEVAC-GUMBO-L-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:17088;}s:21:\"woocommerce_thumbnail\";a:6:{s:4:\"file\";s:25:\"CEVAC-GUMBO-L-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:58703;s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:5:{s:4:\"file\";s:25:\"CEVAC-GUMBO-L-200x200.png\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:28470;}s:12:\"shop_catalog\";a:5:{s:4:\"file\";s:25:\"CEVAC-GUMBO-L-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:58703;}s:14:\"shop_thumbnail\";a:5:{s:4:\"file\";s:25:\"CEVAC-GUMBO-L-200x200.png\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:28470;}}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:{}}}'),(21471,3595,'_product_attributes','a:1:{s:15:\"pa_product-type\";a:6:{s:4:\"name\";s:15:\"pa_product-type\";s:5:\"value\";s:0:\"\";s:8:\"position\";i:0;s:10:\"is_visible\";i:0;s:12:\"is_variation\";i:0;s:11:\"is_taxonomy\";i:1;}}'),(21470,3595,'_wc_review_count','0'),(21469,3595,'_wc_average_rating','0'),(21468,3595,'_stock_status','instock'),(21467,3595,'_stock',NULL),(21465,3595,'_download_expiry','-1'),(21464,3595,'_download_limit','-1'),(21463,3595,'_downloadable','no'),(21462,3595,'_virtual','no'),(21461,3595,'_sold_individually','no'),(21460,3595,'_backorders','no'),(21459,3595,'_manage_stock','no'),(21458,3595,'_tax_class',''),(21456,3595,'total_sales','0'),(21457,3595,'_tax_status','taxable'),(21454,3594,'_edit_last','1'),(21453,3594,'_edit_lock','1694582581:1'),(21452,3594,'_wqoecf_disable_form','no'),(21451,3594,'the7_fancy_title_css','#main {\n  padding-top: 1%;\n}\n.fancy-header {\n  background-image: none;\n  background-repeat: no-repeat;\n  background-position: center center;\n  background-size: auto auto;\n  background-color: #ffffff;\n}\n.mobile-false .fancy-header {\n  background-attachment: scroll;\n}\n.fancy-header .wf-wrap {\n  min-height: 140px;\n  padding-top: 0px;\n  padding-bottom: 0px;\n}\n.fancy-header .fancy-title {\n  font-size: 32px;\n  line-height: 36px;\n  color: #079547;\n  text-transform: none;\n}\n.fancy-header .fancy-subtitle {\n  font-size: 24px;\n  line-height: 26px;\n  color: #792c8a;\n  text-transform: none;\n}\n.fancy-header .breadcrumbs {\n  color: #ffffff;\n}\n.fancy-header-overlay {\n  background: rgba(0,0,0,0.5);\n}\n@media screen and (max-width: 778px) {\n  .fancy-header .wf-wrap {\n    min-height: 140px;\n  }\n  .fancy-header .fancy-title {\n    font-size: 30px;\n    line-height: 38px;\n  }\n  .fancy-header .fancy-subtitle {\n    font-size: 20px;\n    line-height: 28px;\n  }\n  .fancy-header.breadcrumbs-mobile-off .breadcrumbs {\n    display: none;\n  }\n  #fancy-header > .wf-wrap {\n    flex-flow: column wrap;\n    align-items: center;\n    justify-content: center;\n    padding-bottom: 0px !important;\n  }\n  .fancy-header.title-left .breadcrumbs {\n    text-align: center;\n    float: none;\n  }\n  .breadcrumbs {\n    margin-bottom: 10px;\n  }\n  .breadcrumbs.breadcrumbs-bg {\n    margin-top: 10px;\n  }\n  .fancy-header.title-right .breadcrumbs {\n    margin: 10px 0 10px 0;\n  }\n  #fancy-header .hgroup,\n  #fancy-header .breadcrumbs {\n    text-align: center;\n  }\n  .fancy-header .hgroup {\n    padding-bottom: 5px;\n  }\n  .breadcrumbs-off .hgroup {\n    padding-bottom: 5px;\n  }\n  .title-right .hgroup {\n    padding: 0 0 5px 0;\n  }\n  .title-right.breadcrumbs-off .hgroup {\n    padding-top: 5px;\n  }\n  .title-left.disabled-bg .breadcrumbs {\n    margin-bottom: 0;\n  }\n}\n'),(21450,3594,'_dt_fancy_header_responsive_breadcrumbs','disabled'),(21449,3594,'_dt_fancy_header_responsive_subtitle_line_height','28'),(21448,3594,'_dt_fancy_header_responsive_subtitle_font_size','20'),(21447,3594,'_dt_fancy_header_responsive_title_line_height','38'),(21446,3594,'_dt_fancy_header_responsive_font_size','30'),(21445,3594,'_dt_fancy_header_responsive_height','140'),(21444,3594,'_dt_fancy_header_responsiveness_switch','778px'),(21443,3594,'_dt_fancy_header_responsiveness','enabled'),(21442,3594,'_dt_fancy_header_responsiveness_heading',''),(21441,3594,'_dt_fancy_header_bg_parallax','0.5'),(21440,3594,'_dt_fancy_header_scroll_effect','default'),(21439,3594,'_dt_fancy_header_bg_overlay_opacity','50'),(21438,3594,'_dt_fancy_header_overlay_color','#000'),(21437,3594,'_dt_fancy_header_bg_overlay','0'),(21436,3594,'_dt_fancy_header_bg_fullscreen','0'),(21435,3594,'_dt_fancy_header_bg_position_y','center'),(21434,3594,'_dt_fancy_header_bg_position_x','center'),(21433,3594,'_dt_fancy_header_bg_repeat','no-repeat'),(21432,3594,'_dt_fancy_header_bg_image','a:0:{}'),(21431,3594,'_dt_fancy_header_bg_image_origin','custom'),(21430,3594,'_dt_fancy_header_bg_color','#ffffff'),(21429,3594,'_dt_fancy_header_bg_heading',''),(21405,3594,'_dt_fancy_header_layout_heading',''),(21406,3594,'_dt_fancy_header_title_aligment','all_left'),(21407,3594,'_dt_fancy_header_height','140'),(21408,3594,'_dt_fancy_header_padding-top','0px'),(21409,3594,'_dt_fancy_header_padding-bottom','0px'),(21410,3594,'_dt_fancy_header_breadcrumbs_heading',''),(21411,3594,'_dt_fancy_header_breadcrumbs','disabled'),(21412,3594,'_dt_fancy_header_breadcrumbs_text_color','#ffffff'),(21413,3594,'_dt_fancy_header_breadcrumbs_bg_color','disabled'),(21414,3594,'_dt_fancy_header_title_heading',''),(21415,3594,'_dt_fancy_header_title_mode','custom'),(21416,3594,'_dt_fancy_header_title',''),(21417,3594,'_dt_fancy_header_title_font_size','32'),(21418,3594,'_dt_fancy_header_title_line_height','36'),(21419,3594,'_dt_fancy_header_text_transform','none'),(21420,3594,'_dt_fancy_header_title_color_mode','color'),(21421,3594,'_dt_fancy_header_title_color','#079547'),(21422,3594,'_dt_fancy_header_subtitle_heading',''),(21423,3594,'_dt_fancy_header_subtitle',''),(21424,3594,'_dt_fancy_header_subtitle_font_size','24'),(21425,3594,'_dt_fancy_header_subtitle_line_height','26'),(21426,3594,'_dt_fancy_header_subtitle_text_transform','none'),(21427,3594,'_dt_fancy_header_subtitle_color_mode','color'),(21428,3594,'_dt_fancy_header_subtitle_color','#792c8a'),(13044,2917,'the7_fancy_title_css','.fancy-header {\n  background-image: url(\'https://farmchemie.yasithawd.com/wp-content/uploads/2023/09/ABOUT-USF.gif\');\n  background-repeat: no-repeat;\n  background-position: left center;\n  background-size: cover;\n  background-color: #039447;\n}\n.mobile-false .fancy-header {\n  background-attachment: scroll;\n}\n.fancy-header .wf-wrap {\n  min-height: 300px;\n  padding-top: 0px;\n  padding-bottom: 0px;\n}\n.fancy-header .fancy-title {\n  font-size: 36px;\n  line-height: 36px;\n  color: #ffffff;\n  text-transform: none;\n}\n.fancy-header .fancy-subtitle {\n  font-size: 18px;\n  line-height: 26px;\n  color: #ffffff;\n  text-transform: none;\n}\n.fancy-header .breadcrumbs {\n  color: #ffffff;\n}\n.fancy-header-overlay {\n  background: rgba(0,0,0,0.5);\n}\n@media screen and (max-width: 778px) {\n  .fancy-header .wf-wrap {\n    min-height: 300px;\n  }\n  .fancy-header .fancy-title {\n    font-size: 30px;\n    line-height: 38px;\n  }\n  .fancy-header .fancy-subtitle {\n    font-size: 20px;\n    line-height: 28px;\n  }\n  .fancy-header.breadcrumbs-mobile-off .breadcrumbs {\n    display: none;\n  }\n  #fancy-header > .wf-wrap {\n    flex-flow: column wrap;\n    align-items: center;\n    justify-content: center;\n    padding-bottom: 0px !important;\n  }\n  .fancy-header.title-left .breadcrumbs {\n    text-align: center;\n    float: none;\n  }\n  .breadcrumbs {\n    margin-bottom: 10px;\n  }\n  .breadcrumbs.breadcrumbs-bg {\n    margin-top: 10px;\n  }\n  .fancy-header.title-right .breadcrumbs {\n    margin: 10px 0 10px 0;\n  }\n  #fancy-header .hgroup,\n  #fancy-header .breadcrumbs {\n    text-align: center;\n  }\n  .fancy-header .hgroup {\n    padding-bottom: 5px;\n  }\n  .breadcrumbs-off .hgroup {\n    padding-bottom: 5px;\n  }\n  .title-right .hgroup {\n    padding: 0 0 5px 0;\n  }\n  .title-right.breadcrumbs-off .hgroup {\n    padding-top: 5px;\n  }\n  .title-left.disabled-bg .breadcrumbs {\n    margin-bottom: 0;\n  }\n}\n'),(13043,2917,'_dt_microsite_mobile_menu',''),(13042,2917,'_dt_microsite_split_right_menu',''),(13041,2917,'_dt_microsite_split_left_menu',''),(13040,2917,'_dt_microsite_primary_menu',''),(13039,2917,'_dt_fancy_header_responsive_breadcrumbs','disabled'),(13038,2917,'_dt_fancy_header_responsive_subtitle_line_height','28'),(13037,2917,'_dt_fancy_header_responsive_subtitle_font_size','20'),(13036,2917,'_dt_fancy_header_responsive_title_line_height','38'),(13035,2917,'_dt_fancy_header_responsive_font_size','30'),(13034,2917,'_dt_fancy_header_responsive_height','300'),(13033,2917,'_dt_fancy_header_responsiveness_switch','778px'),(13032,2917,'_dt_fancy_header_responsiveness','enabled'),(13031,2917,'_dt_fancy_header_responsiveness_heading',''),(13030,2917,'_dt_fancy_header_bg_parallax','0.5'),(13029,2917,'_dt_fancy_header_scroll_effect','default'),(13028,2917,'_dt_fancy_header_bg_overlay_opacity','50'),(13027,2917,'_dt_fancy_header_overlay_color','#000'),(13026,2917,'_dt_fancy_header_bg_overlay','0'),(13025,2917,'_dt_fancy_header_bg_fullscreen','1'),(13024,2917,'_dt_fancy_header_bg_position_y','center'),(13023,2917,'_dt_fancy_header_bg_position_x','left'),(13022,2917,'_dt_fancy_header_bg_repeat','no-repeat'),(13021,2917,'_dt_fancy_header_bg_image','a:1:{i:0;i:3818;}'),(13020,2917,'_dt_fancy_header_bg_image_origin','custom'),(13019,2917,'_dt_fancy_header_bg_color','#039447'),(13018,2917,'_dt_fancy_header_bg_heading',''),(13017,2917,'_dt_fancy_header_subtitle_color','#ffffff'),(13016,2917,'_dt_fancy_header_subtitle_color_mode','color'),(13015,2917,'_dt_fancy_header_subtitle_text_transform','none'),(13014,2917,'_dt_fancy_header_subtitle_line_height','26'),(13013,2917,'_dt_fancy_header_subtitle_font_size','18'),(13012,2917,'_dt_fancy_header_subtitle',''),(13011,2917,'_dt_fancy_header_subtitle_heading',''),(13010,2917,'_dt_fancy_header_title_color','#ffffff'),(13009,2917,'_dt_fancy_header_title_color_mode','color'),(13008,2917,'_dt_fancy_header_text_transform','none'),(13007,2917,'_dt_fancy_header_title_line_height','36'),(13006,2917,'_dt_fancy_header_title_font_size','36'),(13004,2917,'_dt_fancy_header_title_mode','generic'),(13005,2917,'_dt_fancy_header_title',''),(13003,2917,'_dt_fancy_header_title_heading',''),(13002,2917,'_dt_fancy_header_breadcrumbs_bg_color','disabled'),(13001,2917,'_dt_fancy_header_breadcrumbs_text_color','#ffffff'),(13000,2917,'_dt_fancy_header_breadcrumbs','disabled'),(12999,2917,'_dt_fancy_header_breadcrumbs_heading',''),(12998,2917,'_dt_fancy_header_padding-bottom','0px'),(12997,2917,'_dt_fancy_header_padding-top','0px'),(12996,2917,'_dt_fancy_header_height','300'),(12995,2917,'_dt_fancy_header_title_aligment','all_left'),(12994,2917,'_dt_fancy_header_layout_heading',''),(12993,2917,'_dt_mobile_page_padding_left',''),(12992,2917,'_dt_mobile_page_padding_bottom',''),(12991,2917,'_dt_mobile_page_padding_right',''),(12990,2917,'_dt_mobile_page_padding_top',''),(12989,2917,'_dt_page_overrides_left_margin',''),(12988,2917,'_dt_page_overrides_bottom_margin',''),(12987,2917,'_dt_page_overrides_right_margin',''),(12986,2917,'_dt_page_overrides_top_margin',''),(12985,2917,'_dt_header_disabled_transparent_bg_opacity','50'),(12984,2917,'_dt_header_disabled_transparent_bg_color','#000000'),(12983,2917,'_dt_header_disabled_transparent_top_bar_bg_opacity','25'),(12982,2917,'_dt_header_disabled_transparent_top_bar_bg_color','#ffffff'),(12961,2917,'_edit_last','1'),(12960,2916,'_wpb_shortcodes_custom_css','.vc_custom_1686543324238{padding-top: 35px !important;padding-bottom: 70px !important;}.vc_custom_1684836308288{margin-top: 15px !important;}'),(12962,2917,'_edit_lock','1695632951:1'),(12963,2917,'_wp_page_template','default'),(12964,2917,'_wpb_vc_js_status','true'),(12965,2918,'_wpb_shortcodes_custom_css','.vc_custom_1686543324238{padding-top: 35px !important;padding-bottom: 70px !important;}.vc_custom_1684836308288{margin-top: 15px !important;}'),(12966,2917,'_dt_sidebar_position','disabled'),(12967,2917,'_dt_sidebar_widgetarea_id','sidebar_1'),(12968,2917,'_dt_sidebar_hide_on_mobile','0'),(12969,2917,'_dt_footer_show','1'),(12970,2917,'_dt_footer_widgetarea_id','sidebar_3'),(12971,2917,'_dt_footer_hide_on_mobile','0'),(12972,2917,'_dt_header_title','fancy'),(12973,2917,'_dt_header_background','normal'),(12974,2917,'_dt_header_background_below_slideshow','disabled'),(12975,2917,'_dt_header_transparent_bg_color_scheme','light'),(12976,2917,'_dt_header_transparent_top_bar_bg_color','#ffffff'),(12977,2917,'_dt_header_transparent_top_bar_bg_opacity','25'),(12978,2917,'_dt_header_transparent_bg_color','#000000'),(12979,2917,'_dt_header_transparent_bg_opacity','50'),(12980,2917,'_dt_header_disabled_background','normal'),(21404,3594,'_dt_mobile_page_padding_left',''),(11632,2866,'_wp_attached_file','2023/05/CEVAC-IBird.png'),(11633,2866,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:600;s:6:\"height\";i:600;s:4:\"file\";s:23:\"2023/05/CEVAC-IBird.png\";s:8:\"filesize\";i:192409;s:5:\"sizes\";a:6:{s:6:\"medium\";a:5:{s:4:\"file\";s:23:\"CEVAC-IBird-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:55079;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:23:\"CEVAC-IBird-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:17096;}s:21:\"woocommerce_thumbnail\";a:6:{s:4:\"file\";s:23:\"CEVAC-IBird-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:55079;s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:5:{s:4:\"file\";s:23:\"CEVAC-IBird-200x200.png\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:27748;}s:12:\"shop_catalog\";a:5:{s:4:\"file\";s:23:\"CEVAC-IBird-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:55079;}s:14:\"shop_thumbnail\";a:5:{s:4:\"file\";s:23:\"CEVAC-IBird-200x200.png\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:27748;}}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:{}}}'),(11634,2868,'_wp_attached_file','2023/05/Cevac-ND-IB-K.png'),(11635,2868,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:600;s:6:\"height\";i:600;s:4:\"file\";s:25:\"2023/05/Cevac-ND-IB-K.png\";s:8:\"filesize\";i:263079;s:5:\"sizes\";a:6:{s:6:\"medium\";a:5:{s:4:\"file\";s:25:\"Cevac-ND-IB-K-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:66776;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:25:\"Cevac-ND-IB-K-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:18873;}s:21:\"woocommerce_thumbnail\";a:6:{s:4:\"file\";s:25:\"Cevac-ND-IB-K-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:66776;s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:5:{s:4:\"file\";s:25:\"Cevac-ND-IB-K-200x200.png\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:31891;}s:12:\"shop_catalog\";a:5:{s:4:\"file\";s:25:\"Cevac-ND-IB-K-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:66776;}s:14:\"shop_thumbnail\";a:5:{s:4:\"file\";s:25:\"Cevac-ND-IB-K-200x200.png\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:31891;}}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:{}}}'),(12981,2917,'_dt_header_disabled_transparent_bg_color_scheme','light'),(21547,3595,'the7_fancy_title_css','#main {\n  padding-top: 1%;\n}\n.fancy-header {\n  background-image: none;\n  background-repeat: no-repeat;\n  background-position: center center;\n  background-size: auto auto;\n  background-color: #ffffff;\n}\n.mobile-false .fancy-header {\n  background-attachment: scroll;\n}\n.fancy-header .wf-wrap {\n  min-height: 140px;\n  padding-top: 0px;\n  padding-bottom: 0px;\n}\n.fancy-header .fancy-title {\n  font-size: 32px;\n  line-height: 36px;\n  color: #079547;\n  text-transform: none;\n}\n.fancy-header .fancy-subtitle {\n  font-size: 24px;\n  line-height: 26px;\n  color: #792c8a;\n  text-transform: none;\n}\n.fancy-header .breadcrumbs {\n  color: #ffffff;\n}\n.fancy-header-overlay {\n  background: rgba(0,0,0,0.5);\n}\n@media screen and (max-width: 778px) {\n  .fancy-header .wf-wrap {\n    min-height: 140px;\n  }\n  .fancy-header .fancy-title {\n    font-size: 30px;\n    line-height: 38px;\n  }\n  .fancy-header .fancy-subtitle {\n    font-size: 20px;\n    line-height: 28px;\n  }\n  .fancy-header.breadcrumbs-mobile-off .breadcrumbs {\n    display: none;\n  }\n  #fancy-header > .wf-wrap {\n    flex-flow: column wrap;\n    align-items: center;\n    justify-content: center;\n    padding-bottom: 0px !important;\n  }\n  .fancy-header.title-left .breadcrumbs {\n    text-align: center;\n    float: none;\n  }\n  .breadcrumbs {\n    margin-bottom: 10px;\n  }\n  .breadcrumbs.breadcrumbs-bg {\n    margin-top: 10px;\n  }\n  .fancy-header.title-right .breadcrumbs {\n    margin: 10px 0 10px 0;\n  }\n  #fancy-header .hgroup,\n  #fancy-header .breadcrumbs {\n    text-align: center;\n  }\n  .fancy-header .hgroup {\n    padding-bottom: 5px;\n  }\n  .breadcrumbs-off .hgroup {\n    padding-bottom: 5px;\n  }\n  .title-right .hgroup {\n    padding: 0 0 5px 0;\n  }\n  .title-right.breadcrumbs-off .hgroup {\n    padding-top: 5px;\n  }\n  .title-left.disabled-bg .breadcrumbs {\n    margin-bottom: 0;\n  }\n}\n'),(21546,3595,'_dt_fancy_header_responsive_breadcrumbs','disabled'),(21545,3595,'_dt_fancy_header_responsive_subtitle_line_height','28'),(21544,3595,'_dt_fancy_header_responsive_subtitle_font_size','20'),(21543,3595,'_dt_fancy_header_responsive_title_line_height','38'),(21542,3595,'_dt_fancy_header_responsive_font_size','30'),(21541,3595,'_dt_fancy_header_responsive_height','140'),(21540,3595,'_dt_fancy_header_responsiveness_switch','778px'),(21539,3595,'_dt_fancy_header_responsiveness','enabled'),(21538,3595,'_dt_fancy_header_responsiveness_heading',''),(21537,3595,'_dt_fancy_header_bg_parallax','0.5'),(21536,3595,'_dt_fancy_header_scroll_effect','default'),(21535,3595,'_dt_fancy_header_bg_overlay_opacity','50'),(21534,3595,'_dt_fancy_header_overlay_color','#000'),(21533,3595,'_dt_fancy_header_bg_overlay','0'),(21532,3595,'_dt_fancy_header_bg_fullscreen','0'),(21531,3595,'_dt_fancy_header_bg_position_y','center'),(21530,3595,'_dt_fancy_header_bg_position_x','center'),(21529,3595,'_dt_fancy_header_bg_repeat','no-repeat'),(21528,3595,'_dt_fancy_header_bg_image','a:0:{}'),(21527,3595,'_dt_fancy_header_bg_image_origin','custom'),(21526,3595,'_dt_fancy_header_bg_color','#ffffff'),(21525,3595,'_dt_fancy_header_bg_heading',''),(21524,3595,'_dt_fancy_header_subtitle_color','#792c8a'),(21523,3595,'_dt_fancy_header_subtitle_color_mode','color'),(21522,3595,'_dt_fancy_header_subtitle_text_transform','none'),(21520,3595,'_dt_fancy_header_subtitle_font_size','24'),(21521,3595,'_dt_fancy_header_subtitle_line_height','26'),(21519,3595,'_dt_fancy_header_subtitle',''),(21518,3595,'_dt_fancy_header_subtitle_heading',''),(21517,3595,'_dt_fancy_header_title_color','#079547'),(21516,3595,'_dt_fancy_header_title_color_mode','color'),(21515,3595,'_dt_fancy_header_text_transform','none'),(21514,3595,'_dt_fancy_header_title_line_height','36'),(21513,3595,'_dt_fancy_header_title_font_size','32'),(21512,3595,'_dt_fancy_header_title',''),(21511,3595,'_dt_fancy_header_title_mode','custom'),(21510,3595,'_dt_fancy_header_title_heading',''),(21509,3595,'_dt_fancy_header_breadcrumbs_bg_color','disabled'),(21508,3595,'_dt_fancy_header_breadcrumbs_text_color','#ffffff'),(21507,3595,'_dt_fancy_header_breadcrumbs','disabled'),(21506,3595,'_dt_fancy_header_breadcrumbs_heading',''),(21505,3595,'_dt_fancy_header_padding-bottom','0px'),(21504,3595,'_dt_fancy_header_padding-top','0px'),(21503,3595,'_dt_fancy_header_height','140'),(21502,3595,'_dt_fancy_header_title_aligment','all_left'),(21501,3595,'_dt_fancy_header_layout_heading',''),(21500,3595,'_dt_mobile_page_padding_left',''),(21499,3595,'_dt_mobile_page_padding_bottom',''),(21498,3595,'_dt_mobile_page_padding_right',''),(21497,3595,'_dt_mobile_page_padding_top',''),(21473,3595,'_dt_sidebar_position','disabled'),(21474,3595,'_dt_sidebar_widgetarea_id','sidebar_1'),(21475,3595,'_dt_sidebar_hide_on_mobile','0'),(21476,3595,'_dt_footer_show','1'),(21477,3595,'_dt_footer_widgetarea_id','sidebar_2'),(21478,3595,'_dt_footer_hide_on_mobile','0'),(21479,3595,'_dt_header_title','fancy'),(21480,3595,'_dt_header_background','normal'),(21481,3595,'_dt_header_background_below_slideshow','disabled'),(21482,3595,'_dt_header_transparent_bg_color_scheme','light'),(21483,3595,'_dt_header_transparent_top_bar_bg_color','#ffffff'),(21484,3595,'_dt_header_transparent_top_bar_bg_opacity','25'),(21485,3595,'_dt_header_transparent_bg_color','#000000'),(21486,3595,'_dt_header_transparent_bg_opacity','50'),(21487,3595,'_dt_header_disabled_background','normal'),(21488,3595,'_dt_header_disabled_transparent_bg_color_scheme','light'),(21489,3595,'_dt_header_disabled_transparent_top_bar_bg_color','#ffffff'),(21490,3595,'_dt_header_disabled_transparent_top_bar_bg_opacity','25'),(21491,3595,'_dt_header_disabled_transparent_bg_color','#000000'),(21492,3595,'_dt_header_disabled_transparent_bg_opacity','50'),(21493,3595,'_dt_page_overrides_top_margin','1%'),(21494,3595,'_dt_page_overrides_right_margin',''),(21495,3595,'_dt_page_overrides_bottom_margin',''),(21496,3595,'_dt_page_overrides_left_margin',''),(21472,3595,'_product_version','8.0.2'),(11732,2870,'_wp_attached_file','2023/05/CEVAC-NEW-L.png'),(11733,2870,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:600;s:6:\"height\";i:600;s:4:\"file\";s:23:\"2023/05/CEVAC-NEW-L.png\";s:8:\"filesize\";i:214541;s:5:\"sizes\";a:6:{s:6:\"medium\";a:5:{s:4:\"file\";s:23:\"CEVAC-NEW-L-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:58766;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:23:\"CEVAC-NEW-L-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:18053;}s:21:\"woocommerce_thumbnail\";a:6:{s:4:\"file\";s:23:\"CEVAC-NEW-L-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:58766;s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:5:{s:4:\"file\";s:23:\"CEVAC-NEW-L-200x200.png\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:29522;}s:12:\"shop_catalog\";a:5:{s:4:\"file\";s:23:\"CEVAC-NEW-L-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:58766;}s:14:\"shop_thumbnail\";a:5:{s:4:\"file\";s:23:\"CEVAC-NEW-L-200x200.png\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:29522;}}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:{}}}'),(21626,3596,'_dt_fancy_header_bg_position_y','center'),(21625,3596,'_dt_fancy_header_bg_position_x','center'),(21624,3596,'_dt_fancy_header_bg_repeat','no-repeat'),(21623,3596,'_dt_fancy_header_bg_image','a:0:{}'),(21622,3596,'_dt_fancy_header_bg_image_origin','custom'),(21621,3596,'_dt_fancy_header_bg_color','#ffffff'),(21620,3596,'_dt_fancy_header_bg_heading',''),(21619,3596,'_dt_fancy_header_subtitle_color','#792c8a'),(21618,3596,'_dt_fancy_header_subtitle_color_mode','color'),(21617,3596,'_dt_fancy_header_subtitle_text_transform','none'),(21616,3596,'_dt_fancy_header_subtitle_line_height','26'),(21615,3596,'_dt_fancy_header_subtitle_font_size','24'),(21614,3596,'_dt_fancy_header_subtitle',''),(21613,3596,'_dt_fancy_header_subtitle_heading',''),(21612,3596,'_dt_fancy_header_title_color','#079547'),(21611,3596,'_dt_fancy_header_title_color_mode','color'),(21610,3596,'_dt_fancy_header_text_transform','none'),(21609,3596,'_dt_fancy_header_title_line_height','36'),(21608,3596,'_dt_fancy_header_title_font_size','32'),(21607,3596,'_dt_fancy_header_title',''),(21606,3596,'_dt_fancy_header_title_mode','custom'),(21605,3596,'_dt_fancy_header_title_heading',''),(21604,3596,'_dt_fancy_header_breadcrumbs_bg_color','disabled'),(21603,3596,'_dt_fancy_header_breadcrumbs_text_color','#ffffff'),(21602,3596,'_dt_fancy_header_breadcrumbs','disabled'),(21601,3596,'_dt_fancy_header_breadcrumbs_heading',''),(21600,3596,'_dt_fancy_header_padding-bottom','0px'),(21599,3596,'_dt_fancy_header_padding-top','0px'),(21598,3596,'_dt_fancy_header_height','140'),(21597,3596,'_dt_fancy_header_title_aligment','all_left'),(21596,3596,'_dt_fancy_header_layout_heading',''),(21595,3596,'_dt_mobile_page_padding_left',''),(21594,3596,'_dt_mobile_page_padding_bottom',''),(21593,3596,'_dt_mobile_page_padding_right',''),(21592,3596,'_dt_mobile_page_padding_top',''),(21591,3596,'_dt_page_overrides_left_margin',''),(21590,3596,'_dt_page_overrides_bottom_margin',''),(21589,3596,'_dt_page_overrides_right_margin',''),(21588,3596,'_dt_page_overrides_top_margin','1%'),(21587,3596,'_dt_header_disabled_transparent_bg_opacity','50'),(21586,3596,'_dt_header_disabled_transparent_bg_color','#000000'),(21584,3596,'_dt_header_disabled_transparent_top_bar_bg_color','#ffffff'),(21585,3596,'_dt_header_disabled_transparent_top_bar_bg_opacity','25'),(21583,3596,'_dt_header_disabled_transparent_bg_color_scheme','light'),(21582,3596,'_dt_header_disabled_background','normal'),(21581,3596,'_dt_header_transparent_bg_opacity','50'),(21580,3596,'_dt_header_transparent_bg_color','#000000'),(21579,3596,'_dt_header_transparent_top_bar_bg_opacity','25'),(21578,3596,'_dt_header_transparent_top_bar_bg_color','#ffffff'),(21577,3596,'_dt_header_transparent_bg_color_scheme','light'),(21576,3596,'_dt_header_background_below_slideshow','disabled'),(21575,3596,'_dt_header_background','normal'),(21574,3596,'_dt_header_title','fancy'),(21573,3596,'_dt_footer_hide_on_mobile','0'),(21572,3596,'_dt_footer_widgetarea_id','sidebar_2'),(21571,3596,'_dt_footer_show','1'),(21570,3596,'_dt_sidebar_hide_on_mobile','0'),(21569,3596,'_dt_sidebar_widgetarea_id','sidebar_1'),(21568,3596,'_dt_sidebar_position','disabled'),(21567,3596,'_product_version','8.0.2'),(21566,3596,'_product_attributes','a:1:{s:15:\"pa_product-type\";a:6:{s:4:\"name\";s:15:\"pa_product-type\";s:5:\"value\";s:0:\"\";s:8:\"position\";i:0;s:10:\"is_visible\";i:0;s:12:\"is_variation\";i:0;s:11:\"is_taxonomy\";i:1;}}'),(21565,3596,'_wc_review_count','0'),(21564,3596,'_wc_average_rating','0'),(21548,3595,'_wqoecf_disable_form','no'),(21549,3595,'_edit_lock','1694582809:1'),(21551,3596,'total_sales','0'),(21552,3596,'_tax_status','taxable'),(21550,3595,'_edit_last','1'),(21553,3596,'_tax_class',''),(21554,3596,'_manage_stock','no'),(21555,3596,'_backorders','no'),(21556,3596,'_sold_individually','no'),(21557,3596,'_virtual','no'),(21558,3596,'_downloadable','no'),(21559,3596,'_download_limit','-1'),(21560,3596,'_download_expiry','-1'),(21562,3596,'_stock',NULL),(21563,3596,'_stock_status','instock'),(11827,2872,'_wp_attached_file','2023/05/CEVAC-TRANSMUNE.png'),(11828,2872,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:600;s:6:\"height\";i:600;s:4:\"file\";s:27:\"2023/05/CEVAC-TRANSMUNE.png\";s:8:\"filesize\";i:243076;s:5:\"sizes\";a:6:{s:6:\"medium\";a:5:{s:4:\"file\";s:27:\"CEVAC-TRANSMUNE-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:61287;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:27:\"CEVAC-TRANSMUNE-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:17909;}s:21:\"woocommerce_thumbnail\";a:6:{s:4:\"file\";s:27:\"CEVAC-TRANSMUNE-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:61287;s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:5:{s:4:\"file\";s:27:\"CEVAC-TRANSMUNE-200x200.png\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:29734;}s:12:\"shop_catalog\";a:5:{s:4:\"file\";s:27:\"CEVAC-TRANSMUNE-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:61287;}s:14:\"shop_thumbnail\";a:5:{s:4:\"file\";s:27:\"CEVAC-TRANSMUNE-200x200.png\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:29734;}}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:{}}}'),(21692,3597,'_dt_fancy_header_title_aligment','all_left'),(21691,3597,'_dt_fancy_header_layout_heading',''),(21690,3597,'_dt_mobile_page_padding_left',''),(21689,3597,'_dt_mobile_page_padding_bottom',''),(21688,3597,'_dt_mobile_page_padding_right',''),(21687,3597,'_dt_mobile_page_padding_top',''),(21686,3597,'_dt_page_overrides_left_margin',''),(21685,3597,'_dt_page_overrides_bottom_margin',''),(21684,3597,'_dt_page_overrides_right_margin',''),(21683,3597,'_dt_page_overrides_top_margin','1%'),(21682,3597,'_dt_header_disabled_transparent_bg_opacity','50'),(21681,3597,'_dt_header_disabled_transparent_bg_color','#000000'),(21680,3597,'_dt_header_disabled_transparent_top_bar_bg_opacity','25'),(21679,3597,'_dt_header_disabled_transparent_top_bar_bg_color','#ffffff'),(21678,3597,'_dt_header_disabled_transparent_bg_color_scheme','light'),(21677,3597,'_dt_header_disabled_background','normal'),(21676,3597,'_dt_header_transparent_bg_opacity','50'),(21675,3597,'_dt_header_transparent_bg_color','#000000'),(21674,3597,'_dt_header_transparent_top_bar_bg_opacity','25'),(21673,3597,'_dt_header_transparent_top_bar_bg_color','#ffffff'),(21672,3597,'_dt_header_transparent_bg_color_scheme','light'),(21671,3597,'_dt_header_background_below_slideshow','disabled'),(21670,3597,'_dt_header_background','normal'),(21669,3597,'_dt_header_title','fancy'),(21668,3597,'_dt_footer_hide_on_mobile','0'),(21667,3597,'_dt_footer_widgetarea_id','sidebar_2'),(21666,3597,'_dt_footer_show','1'),(21665,3597,'_dt_sidebar_hide_on_mobile','0'),(21664,3597,'_dt_sidebar_widgetarea_id','sidebar_1'),(21663,3597,'_dt_sidebar_position','disabled'),(21662,3597,'_product_version','8.0.2'),(21661,3597,'_product_attributes','a:1:{s:15:\"pa_product-type\";a:6:{s:4:\"name\";s:15:\"pa_product-type\";s:5:\"value\";s:0:\"\";s:8:\"position\";i:0;s:10:\"is_visible\";i:0;s:12:\"is_variation\";i:0;s:11:\"is_taxonomy\";i:1;}}'),(21660,3597,'_wc_review_count','0'),(21659,3597,'_wc_average_rating','0'),(21658,3597,'_stock_status','instock'),(21657,3597,'_stock',NULL),(21655,3597,'_download_expiry','-1'),(21654,3597,'_download_limit','-1'),(21653,3597,'_downloadable','no'),(21652,3597,'_virtual','no'),(21650,3597,'_backorders','no'),(21651,3597,'_sold_individually','no'),(21648,3597,'_tax_class',''),(21646,3597,'total_sales','0'),(21647,3597,'_tax_status','taxable'),(21645,3596,'_edit_last','1'),(21644,3596,'_edit_lock','1694583012:1'),(21643,3596,'_wqoecf_disable_form','no'),(21629,3596,'_dt_fancy_header_overlay_color','#000'),(21630,3596,'_dt_fancy_header_bg_overlay_opacity','50'),(21631,3596,'_dt_fancy_header_scroll_effect','default'),(21632,3596,'_dt_fancy_header_bg_parallax','0.5'),(21633,3596,'_dt_fancy_header_responsiveness_heading',''),(21634,3596,'_dt_fancy_header_responsiveness','enabled'),(21635,3596,'_dt_fancy_header_responsiveness_switch','778px'),(21636,3596,'_dt_fancy_header_responsive_height','140'),(21637,3596,'_dt_fancy_header_responsive_font_size','30'),(21638,3596,'_dt_fancy_header_responsive_title_line_height','38'),(21639,3596,'_dt_fancy_header_responsive_subtitle_font_size','20'),(21640,3596,'_dt_fancy_header_responsive_subtitle_line_height','28'),(21641,3596,'_dt_fancy_header_responsive_breadcrumbs','disabled'),(21642,3596,'the7_fancy_title_css','#main {\n  padding-top: 1%;\n}\n.fancy-header {\n  background-image: none;\n  background-repeat: no-repeat;\n  background-position: center center;\n  background-size: auto auto;\n  background-color: #ffffff;\n}\n.mobile-false .fancy-header {\n  background-attachment: scroll;\n}\n.fancy-header .wf-wrap {\n  min-height: 140px;\n  padding-top: 0px;\n  padding-bottom: 0px;\n}\n.fancy-header .fancy-title {\n  font-size: 32px;\n  line-height: 36px;\n  color: #079547;\n  text-transform: none;\n}\n.fancy-header .fancy-subtitle {\n  font-size: 24px;\n  line-height: 26px;\n  color: #792c8a;\n  text-transform: none;\n}\n.fancy-header .breadcrumbs {\n  color: #ffffff;\n}\n.fancy-header-overlay {\n  background: rgba(0,0,0,0.5);\n}\n@media screen and (max-width: 778px) {\n  .fancy-header .wf-wrap {\n    min-height: 140px;\n  }\n  .fancy-header .fancy-title {\n    font-size: 30px;\n    line-height: 38px;\n  }\n  .fancy-header .fancy-subtitle {\n    font-size: 20px;\n    line-height: 28px;\n  }\n  .fancy-header.breadcrumbs-mobile-off .breadcrumbs {\n    display: none;\n  }\n  #fancy-header > .wf-wrap {\n    flex-flow: column wrap;\n    align-items: center;\n    justify-content: center;\n    padding-bottom: 0px !important;\n  }\n  .fancy-header.title-left .breadcrumbs {\n    text-align: center;\n    float: none;\n  }\n  .breadcrumbs {\n    margin-bottom: 10px;\n  }\n  .breadcrumbs.breadcrumbs-bg {\n    margin-top: 10px;\n  }\n  .fancy-header.title-right .breadcrumbs {\n    margin: 10px 0 10px 0;\n  }\n  #fancy-header .hgroup,\n  #fancy-header .breadcrumbs {\n    text-align: center;\n  }\n  .fancy-header .hgroup {\n    padding-bottom: 5px;\n  }\n  .breadcrumbs-off .hgroup {\n    padding-bottom: 5px;\n  }\n  .title-right .hgroup {\n    padding: 0 0 5px 0;\n  }\n  .title-right.breadcrumbs-off .hgroup {\n    padding-top: 5px;\n  }\n  .title-left.disabled-bg .breadcrumbs {\n    margin-bottom: 0;\n  }\n}\n'),(21628,3596,'_dt_fancy_header_bg_overlay','0'),(11921,2874,'_wp_attached_file','2023/05/CEVAC-VITABRON.png'),(11922,2874,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:600;s:6:\"height\";i:600;s:4:\"file\";s:26:\"2023/05/CEVAC-VITABRON.png\";s:8:\"filesize\";i:164475;s:5:\"sizes\";a:6:{s:6:\"medium\";a:5:{s:4:\"file\";s:26:\"CEVAC-VITABRON-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:46981;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:26:\"CEVAC-VITABRON-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:14585;}s:21:\"woocommerce_thumbnail\";a:6:{s:4:\"file\";s:26:\"CEVAC-VITABRON-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:46981;s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:5:{s:4:\"file\";s:26:\"CEVAC-VITABRON-200x200.png\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:23685;}s:12:\"shop_catalog\";a:5:{s:4:\"file\";s:26:\"CEVAC-VITABRON-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:46981;}s:14:\"shop_thumbnail\";a:5:{s:4:\"file\";s:26:\"CEVAC-VITABRON-200x200.png\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:23685;}}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:{}}}'),(21627,3596,'_dt_fancy_header_bg_fullscreen','0'),(21649,3597,'_manage_stock','no'),(21756,3598,'_product_attributes','a:1:{s:15:\"pa_product-type\";a:6:{s:4:\"name\";s:15:\"pa_product-type\";s:5:\"value\";s:0:\"\";s:8:\"position\";i:0;s:10:\"is_visible\";i:0;s:12:\"is_variation\";i:0;s:11:\"is_taxonomy\";i:1;}}'),(21755,3598,'_wc_review_count','0'),(21754,3598,'_wc_average_rating','0'),(21753,3598,'_stock_status','instock'),(21752,3598,'_stock',NULL),(21751,3598,'_thumbnail_id','3939'),(21750,3598,'_download_expiry','-1'),(21749,3598,'_download_limit','-1'),(21748,3598,'_downloadable','no'),(21747,3598,'_virtual','no'),(21746,3598,'_sold_individually','no'),(21745,3598,'_backorders','no'),(21744,3598,'_manage_stock','no'),(21743,3598,'_tax_class',''),(21742,3598,'_tax_status','taxable'),(21741,3598,'total_sales','0'),(21740,3597,'_edit_last','1'),(21739,3597,'_edit_lock','1694583309:1'),(21738,3597,'_wqoecf_disable_form','no'),(21737,3597,'the7_fancy_title_css','#main {\n  padding-top: 1%;\n}\n.fancy-header {\n  background-image: none;\n  background-repeat: no-repeat;\n  background-position: center center;\n  background-size: auto auto;\n  background-color: #ffffff;\n}\n.mobile-false .fancy-header {\n  background-attachment: scroll;\n}\n.fancy-header .wf-wrap {\n  min-height: 140px;\n  padding-top: 0px;\n  padding-bottom: 0px;\n}\n.fancy-header .fancy-title {\n  font-size: 32px;\n  line-height: 36px;\n  color: #079547;\n  text-transform: none;\n}\n.fancy-header .fancy-subtitle {\n  font-size: 24px;\n  line-height: 26px;\n  color: #792c8a;\n  text-transform: none;\n}\n.fancy-header .breadcrumbs {\n  color: #ffffff;\n}\n.fancy-header-overlay {\n  background: rgba(0,0,0,0.5);\n}\n@media screen and (max-width: 778px) {\n  .fancy-header .wf-wrap {\n    min-height: 140px;\n  }\n  .fancy-header .fancy-title {\n    font-size: 30px;\n    line-height: 38px;\n  }\n  .fancy-header .fancy-subtitle {\n    font-size: 20px;\n    line-height: 28px;\n  }\n  .fancy-header.breadcrumbs-mobile-off .breadcrumbs {\n    display: none;\n  }\n  #fancy-header > .wf-wrap {\n    flex-flow: column wrap;\n    align-items: center;\n    justify-content: center;\n    padding-bottom: 0px !important;\n  }\n  .fancy-header.title-left .breadcrumbs {\n    text-align: center;\n    float: none;\n  }\n  .breadcrumbs {\n    margin-bottom: 10px;\n  }\n  .breadcrumbs.breadcrumbs-bg {\n    margin-top: 10px;\n  }\n  .fancy-header.title-right .breadcrumbs {\n    margin: 10px 0 10px 0;\n  }\n  #fancy-header .hgroup,\n  #fancy-header .breadcrumbs {\n    text-align: center;\n  }\n  .fancy-header .hgroup {\n    padding-bottom: 5px;\n  }\n  .breadcrumbs-off .hgroup {\n    padding-bottom: 5px;\n  }\n  .title-right .hgroup {\n    padding: 0 0 5px 0;\n  }\n  .title-right.breadcrumbs-off .hgroup {\n    padding-top: 5px;\n  }\n  .title-left.disabled-bg .breadcrumbs {\n    margin-bottom: 0;\n  }\n}\n'),(21736,3597,'_dt_fancy_header_responsive_breadcrumbs','disabled'),(21735,3597,'_dt_fancy_header_responsive_subtitle_line_height','28'),(21734,3597,'_dt_fancy_header_responsive_subtitle_font_size','20'),(21733,3597,'_dt_fancy_header_responsive_title_line_height','38'),(21732,3597,'_dt_fancy_header_responsive_font_size','30'),(21731,3597,'_dt_fancy_header_responsive_height','140'),(21730,3597,'_dt_fancy_header_responsiveness_switch','778px'),(21729,3597,'_dt_fancy_header_responsiveness','enabled'),(21728,3597,'_dt_fancy_header_responsiveness_heading',''),(21727,3597,'_dt_fancy_header_bg_parallax','0.5'),(21726,3597,'_dt_fancy_header_scroll_effect','default'),(21725,3597,'_dt_fancy_header_bg_overlay_opacity','50'),(21724,3597,'_dt_fancy_header_overlay_color','#000'),(21723,3597,'_dt_fancy_header_bg_overlay','0'),(21722,3597,'_dt_fancy_header_bg_fullscreen','0'),(21721,3597,'_dt_fancy_header_bg_position_y','center'),(21720,3597,'_dt_fancy_header_bg_position_x','center'),(21719,3597,'_dt_fancy_header_bg_repeat','no-repeat'),(21718,3597,'_dt_fancy_header_bg_image','a:0:{}'),(21694,3597,'_dt_fancy_header_padding-top','0px'),(21695,3597,'_dt_fancy_header_padding-bottom','0px'),(21696,3597,'_dt_fancy_header_breadcrumbs_heading',''),(21697,3597,'_dt_fancy_header_breadcrumbs','disabled'),(21698,3597,'_dt_fancy_header_breadcrumbs_text_color','#ffffff'),(21699,3597,'_dt_fancy_header_breadcrumbs_bg_color','disabled'),(21700,3597,'_dt_fancy_header_title_heading',''),(21701,3597,'_dt_fancy_header_title_mode','custom'),(21702,3597,'_dt_fancy_header_title',''),(21703,3597,'_dt_fancy_header_title_font_size','32'),(21704,3597,'_dt_fancy_header_title_line_height','36'),(21705,3597,'_dt_fancy_header_text_transform','none'),(21706,3597,'_dt_fancy_header_title_color_mode','color'),(21707,3597,'_dt_fancy_header_title_color','#079547'),(21708,3597,'_dt_fancy_header_subtitle_heading',''),(21709,3597,'_dt_fancy_header_subtitle',''),(21710,3597,'_dt_fancy_header_subtitle_font_size','24'),(21711,3597,'_dt_fancy_header_subtitle_line_height','26'),(21712,3597,'_dt_fancy_header_subtitle_text_transform','none'),(21713,3597,'_dt_fancy_header_subtitle_color_mode','color'),(21714,3597,'_dt_fancy_header_subtitle_color','#792c8a'),(21715,3597,'_dt_fancy_header_bg_heading',''),(21716,3597,'_dt_fancy_header_bg_color','#ffffff'),(21717,3597,'_dt_fancy_header_bg_image_origin','custom'),(21693,3597,'_dt_fancy_header_height','140'),(12021,2879,'_wp_attached_file','2023/05/MULTIMUNE-K5.png'),(12022,2879,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:600;s:6:\"height\";i:600;s:4:\"file\";s:24:\"2023/05/MULTIMUNE-K5.png\";s:8:\"filesize\";i:141358;s:5:\"sizes\";a:6:{s:6:\"medium\";a:5:{s:4:\"file\";s:24:\"MULTIMUNE-K5-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:39985;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:24:\"MULTIMUNE-K5-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:13160;}s:21:\"woocommerce_thumbnail\";a:6:{s:4:\"file\";s:24:\"MULTIMUNE-K5-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:39985;s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:5:{s:4:\"file\";s:24:\"MULTIMUNE-K5-200x200.png\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:20464;}s:12:\"shop_catalog\";a:5:{s:4:\"file\";s:24:\"MULTIMUNE-K5-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:39985;}s:14:\"shop_thumbnail\";a:5:{s:4:\"file\";s:24:\"MULTIMUNE-K5-200x200.png\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:20464;}}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:{}}}'),(21832,3598,'the7_fancy_title_css','#main {\n  padding-top: 1%;\n}\n.fancy-header {\n  background-image: url(\'https://farmchemie.yasithawd.com/wp-content/uploads/2023/09/MOLDISORB®-Dry_300px.png\');\n  background-repeat: no-repeat;\n  background-position: center center;\n  background-size: auto auto;\n  background-color: #ffffff;\n}\n.mobile-false .fancy-header {\n  background-attachment: scroll;\n}\n.fancy-header .wf-wrap {\n  min-height: 140px;\n  padding-top: 0px;\n  padding-bottom: 0px;\n}\n.fancy-header .fancy-title {\n  font-size: 32px;\n  line-height: 36px;\n  color: #079547;\n  text-transform: none;\n}\n.fancy-header .fancy-subtitle {\n  font-size: 24px;\n  line-height: 26px;\n  color: #792c8a;\n  text-transform: none;\n}\n.fancy-header .breadcrumbs {\n  color: #ffffff;\n}\n.fancy-header-overlay {\n  background: rgba(0,0,0,0.5);\n}\n@media screen and (max-width: 778px) {\n  .fancy-header .wf-wrap {\n    min-height: 140px;\n  }\n  .fancy-header .fancy-title {\n    font-size: 30px;\n    line-height: 38px;\n  }\n  .fancy-header .fancy-subtitle {\n    font-size: 20px;\n    line-height: 28px;\n  }\n  .fancy-header.breadcrumbs-mobile-off .breadcrumbs {\n    display: none;\n  }\n  #fancy-header > .wf-wrap {\n    flex-flow: column wrap;\n    align-items: center;\n    justify-content: center;\n    padding-bottom: 0px !important;\n  }\n  .fancy-header.title-left .breadcrumbs {\n    text-align: center;\n    float: none;\n  }\n  .breadcrumbs {\n    margin-bottom: 10px;\n  }\n  .breadcrumbs.breadcrumbs-bg {\n    margin-top: 10px;\n  }\n  .fancy-header.title-right .breadcrumbs {\n    margin: 10px 0 10px 0;\n  }\n  #fancy-header .hgroup,\n  #fancy-header .breadcrumbs {\n    text-align: center;\n  }\n  .fancy-header .hgroup {\n    padding-bottom: 5px;\n  }\n  .breadcrumbs-off .hgroup {\n    padding-bottom: 5px;\n  }\n  .title-right .hgroup {\n    padding: 0 0 5px 0;\n  }\n  .title-right.breadcrumbs-off .hgroup {\n    padding-top: 5px;\n  }\n  .title-left.disabled-bg .breadcrumbs {\n    margin-bottom: 0;\n  }\n}\n'),(21831,3598,'_dt_fancy_header_responsive_breadcrumbs','disabled'),(21830,3598,'_dt_fancy_header_responsive_subtitle_line_height','28'),(21829,3598,'_dt_fancy_header_responsive_subtitle_font_size','20'),(21828,3598,'_dt_fancy_header_responsive_title_line_height','38'),(21827,3598,'_dt_fancy_header_responsive_font_size','30'),(21826,3598,'_dt_fancy_header_responsive_height','140'),(21825,3598,'_dt_fancy_header_responsiveness_switch','778px'),(21824,3598,'_dt_fancy_header_responsiveness','enabled'),(21823,3598,'_dt_fancy_header_responsiveness_heading',''),(21822,3598,'_dt_fancy_header_bg_parallax','0.5'),(21821,3598,'_dt_fancy_header_scroll_effect','default'),(21820,3598,'_dt_fancy_header_bg_overlay_opacity','50'),(21819,3598,'_dt_fancy_header_overlay_color','#000'),(21818,3598,'_dt_fancy_header_bg_overlay','0'),(21817,3598,'_dt_fancy_header_bg_fullscreen','0'),(21816,3598,'_dt_fancy_header_bg_position_y','center'),(21815,3598,'_dt_fancy_header_bg_position_x','center'),(21814,3598,'_dt_fancy_header_bg_repeat','no-repeat'),(21813,3598,'_dt_fancy_header_bg_image','a:1:{i:0;i:3938;}'),(21812,3598,'_dt_fancy_header_bg_image_origin','custom'),(21811,3598,'_dt_fancy_header_bg_color','#ffffff'),(21810,3598,'_dt_fancy_header_bg_heading',''),(21809,3598,'_dt_fancy_header_subtitle_color','#792c8a'),(21808,3598,'_dt_fancy_header_subtitle_color_mode','color'),(21807,3598,'_dt_fancy_header_subtitle_text_transform','none'),(21806,3598,'_dt_fancy_header_subtitle_line_height','26'),(21804,3598,'_dt_fancy_header_subtitle',''),(21803,3598,'_dt_fancy_header_subtitle_heading',''),(21802,3598,'_dt_fancy_header_title_color','#079547'),(21801,3598,'_dt_fancy_header_title_color_mode','color'),(21800,3598,'_dt_fancy_header_text_transform','none'),(21799,3598,'_dt_fancy_header_title_line_height','36'),(21798,3598,'_dt_fancy_header_title_font_size','32'),(21797,3598,'_dt_fancy_header_title',''),(21796,3598,'_dt_fancy_header_title_mode','custom'),(21795,3598,'_dt_fancy_header_title_heading',''),(21794,3598,'_dt_fancy_header_breadcrumbs_bg_color','disabled'),(21793,3598,'_dt_fancy_header_breadcrumbs_text_color','#ffffff'),(21792,3598,'_dt_fancy_header_breadcrumbs','disabled'),(21791,3598,'_dt_fancy_header_breadcrumbs_heading',''),(21790,3598,'_dt_fancy_header_padding-bottom','0px'),(21789,3598,'_dt_fancy_header_padding-top','0px'),(21788,3598,'_dt_fancy_header_height','140'),(21787,3598,'_dt_fancy_header_title_aligment','all_left'),(21786,3598,'_dt_fancy_header_layout_heading',''),(21785,3598,'_dt_mobile_page_padding_left',''),(21784,3598,'_dt_mobile_page_padding_bottom',''),(21783,3598,'_dt_mobile_page_padding_right',''),(21782,3598,'_dt_mobile_page_padding_top',''),(21758,3598,'_dt_sidebar_position','disabled'),(21759,3598,'_dt_sidebar_widgetarea_id','sidebar_1'),(21760,3598,'_dt_sidebar_hide_on_mobile','0'),(21761,3598,'_dt_footer_show','1'),(21762,3598,'_dt_footer_widgetarea_id','sidebar_2'),(21763,3598,'_dt_footer_hide_on_mobile','0'),(21764,3598,'_dt_header_title','fancy'),(21765,3598,'_dt_header_background','normal'),(21766,3598,'_dt_header_background_below_slideshow','disabled'),(21767,3598,'_dt_header_transparent_bg_color_scheme','light'),(21768,3598,'_dt_header_transparent_top_bar_bg_color','#ffffff'),(21769,3598,'_dt_header_transparent_top_bar_bg_opacity','25'),(21770,3598,'_dt_header_transparent_bg_color','#000000'),(21771,3598,'_dt_header_transparent_bg_opacity','50'),(21772,3598,'_dt_header_disabled_background','normal'),(21773,3598,'_dt_header_disabled_transparent_bg_color_scheme','light'),(21774,3598,'_dt_header_disabled_transparent_top_bar_bg_color','#ffffff'),(21775,3598,'_dt_header_disabled_transparent_top_bar_bg_opacity','25'),(21776,3598,'_dt_header_disabled_transparent_bg_color','#000000'),(21777,3598,'_dt_header_disabled_transparent_bg_opacity','50'),(21778,3598,'_dt_page_overrides_top_margin','1%'),(21779,3598,'_dt_page_overrides_right_margin',''),(21780,3598,'_dt_page_overrides_bottom_margin',''),(21781,3598,'_dt_page_overrides_left_margin',''),(21757,3598,'_product_version','8.0.2'),(21911,3599,'_dt_fancy_header_bg_position_y','center'),(21805,3598,'_dt_fancy_header_subtitle_font_size','24'),(21910,3599,'_dt_fancy_header_bg_position_x','center'),(21909,3599,'_dt_fancy_header_bg_repeat','no-repeat'),(21908,3599,'_dt_fancy_header_bg_image','a:1:{i:0;i:3940;}'),(21907,3599,'_dt_fancy_header_bg_image_origin','custom'),(21906,3599,'_dt_fancy_header_bg_color','#ffffff'),(21905,3599,'_dt_fancy_header_bg_heading',''),(21904,3599,'_dt_fancy_header_subtitle_color','#792c8a'),(21903,3599,'_dt_fancy_header_subtitle_color_mode','color'),(21902,3599,'_dt_fancy_header_subtitle_text_transform','none'),(21901,3599,'_dt_fancy_header_subtitle_line_height','26'),(21900,3599,'_dt_fancy_header_subtitle_font_size','24'),(21899,3599,'_dt_fancy_header_subtitle',''),(21898,3599,'_dt_fancy_header_subtitle_heading',''),(21897,3599,'_dt_fancy_header_title_color','#079547'),(21896,3599,'_dt_fancy_header_title_color_mode','color'),(21895,3599,'_dt_fancy_header_text_transform','none'),(21894,3599,'_dt_fancy_header_title_line_height','36'),(21893,3599,'_dt_fancy_header_title_font_size','32'),(21892,3599,'_dt_fancy_header_title',''),(21891,3599,'_dt_fancy_header_title_mode','custom'),(21890,3599,'_dt_fancy_header_title_heading',''),(21889,3599,'_dt_fancy_header_breadcrumbs_bg_color','disabled'),(21888,3599,'_dt_fancy_header_breadcrumbs_text_color','#ffffff'),(21887,3599,'_dt_fancy_header_breadcrumbs','disabled'),(21886,3599,'_dt_fancy_header_breadcrumbs_heading',''),(21885,3599,'_dt_fancy_header_padding-bottom','0px'),(21884,3599,'_dt_fancy_header_padding-top','0px'),(21883,3599,'_dt_fancy_header_height','140'),(21882,3599,'_dt_fancy_header_title_aligment','all_left'),(21881,3599,'_dt_fancy_header_layout_heading',''),(21880,3599,'_dt_mobile_page_padding_left',''),(21879,3599,'_dt_mobile_page_padding_bottom',''),(21878,3599,'_dt_mobile_page_padding_right',''),(21877,3599,'_dt_mobile_page_padding_top',''),(21876,3599,'_dt_page_overrides_left_margin',''),(21875,3599,'_dt_page_overrides_bottom_margin',''),(21874,3599,'_dt_page_overrides_right_margin',''),(21873,3599,'_dt_page_overrides_top_margin','1%'),(21872,3599,'_dt_header_disabled_transparent_bg_opacity','50'),(21871,3599,'_dt_header_disabled_transparent_bg_color','#000000'),(21870,3599,'_dt_header_disabled_transparent_top_bar_bg_opacity','25'),(21869,3599,'_dt_header_disabled_transparent_top_bar_bg_color','#ffffff'),(21868,3599,'_dt_header_disabled_transparent_bg_color_scheme','light'),(21867,3599,'_dt_header_disabled_background','normal'),(21866,3599,'_dt_header_transparent_bg_opacity','50'),(21865,3599,'_dt_header_transparent_bg_color','#000000'),(21864,3599,'_dt_header_transparent_top_bar_bg_opacity','25'),(21863,3599,'_dt_header_transparent_top_bar_bg_color','#ffffff'),(21862,3599,'_dt_header_transparent_bg_color_scheme','light'),(21861,3599,'_dt_header_background_below_slideshow','disabled'),(21860,3599,'_dt_header_background','normal'),(21859,3599,'_dt_header_title','fancy'),(21858,3599,'_dt_footer_hide_on_mobile','0'),(21857,3599,'_dt_footer_widgetarea_id','sidebar_2'),(21856,3599,'_dt_footer_show','1'),(21855,3599,'_dt_sidebar_hide_on_mobile','0'),(21854,3599,'_dt_sidebar_widgetarea_id','sidebar_1'),(21853,3599,'_dt_sidebar_position','disabled'),(21852,3599,'_product_version','8.0.2'),(21850,3599,'_wc_review_count','0'),(21851,3599,'_product_attributes','a:1:{s:15:\"pa_product-type\";a:6:{s:4:\"name\";s:15:\"pa_product-type\";s:5:\"value\";s:0:\"\";s:8:\"position\";i:0;s:10:\"is_visible\";i:0;s:12:\"is_variation\";i:0;s:11:\"is_taxonomy\";i:1;}}'),(21833,3598,'_wqoecf_disable_form','no'),(21834,3598,'_edit_lock','1695555151:1'),(21835,3598,'_edit_last','1'),(21836,3599,'total_sales','0'),(21837,3599,'_tax_status','taxable'),(21838,3599,'_tax_class',''),(21839,3599,'_manage_stock','no'),(21840,3599,'_backorders','no'),(21841,3599,'_sold_individually','no'),(21842,3599,'_virtual','no'),(21843,3599,'_downloadable','no'),(21844,3599,'_download_limit','-1'),(21845,3599,'_download_expiry','-1'),(21846,3599,'_thumbnail_id','3941'),(21847,3599,'_stock',NULL),(21848,3599,'_stock_status','instock'),(21849,3599,'_wc_average_rating','0'),(21973,3600,'_dt_mobile_page_padding_right',''),(21972,3600,'_dt_mobile_page_padding_top',''),(21971,3600,'_dt_page_overrides_left_margin',''),(21970,3600,'_dt_page_overrides_bottom_margin',''),(21969,3600,'_dt_page_overrides_right_margin',''),(21968,3600,'_dt_page_overrides_top_margin','1%'),(21967,3600,'_dt_header_disabled_transparent_bg_opacity','50'),(21966,3600,'_dt_header_disabled_transparent_bg_color','#000000'),(21965,3600,'_dt_header_disabled_transparent_top_bar_bg_opacity','25'),(21964,3600,'_dt_header_disabled_transparent_top_bar_bg_color','#ffffff'),(21963,3600,'_dt_header_disabled_transparent_bg_color_scheme','light'),(21962,3600,'_dt_header_disabled_background','normal'),(21961,3600,'_dt_header_transparent_bg_opacity','50'),(21960,3600,'_dt_header_transparent_bg_color','#000000'),(21959,3600,'_dt_header_transparent_top_bar_bg_opacity','25'),(21958,3600,'_dt_header_transparent_top_bar_bg_color','#ffffff'),(21957,3600,'_dt_header_transparent_bg_color_scheme','light'),(21956,3600,'_dt_header_background_below_slideshow','disabled'),(21955,3600,'_dt_header_background','normal'),(21954,3600,'_dt_header_title','fancy'),(21953,3600,'_dt_footer_hide_on_mobile','0'),(21952,3600,'_dt_footer_widgetarea_id','sidebar_2'),(21951,3600,'_dt_footer_show','1'),(21950,3600,'_dt_sidebar_hide_on_mobile','0'),(21949,3600,'_dt_sidebar_widgetarea_id','sidebar_1'),(21948,3600,'_dt_sidebar_position','disabled'),(21947,3600,'_product_version','8.0.2'),(21946,3600,'_product_attributes','a:1:{s:15:\"pa_product-type\";a:6:{s:4:\"name\";s:15:\"pa_product-type\";s:5:\"value\";s:0:\"\";s:8:\"position\";i:0;s:10:\"is_visible\";i:0;s:12:\"is_variation\";i:0;s:11:\"is_taxonomy\";i:1;}}'),(21945,3600,'_wc_review_count','0'),(21944,3600,'_wc_average_rating','0'),(21943,3600,'_stock_status','instock'),(21942,3600,'_stock',NULL),(21941,3600,'_thumbnail_id','3904'),(21940,3600,'_download_expiry','-1'),(21939,3600,'_download_limit','-1'),(21938,3600,'_downloadable','no'),(21937,3600,'_virtual','no'),(21936,3600,'_sold_individually','no'),(21935,3600,'_backorders','no'),(21934,3600,'_manage_stock','no'),(21932,3600,'_tax_status','taxable'),(21933,3600,'_tax_class',''),(21931,3600,'total_sales','0'),(21930,3599,'_edit_last','1'),(21929,3599,'_edit_lock','1695555282:1'),(21928,3599,'_wqoecf_disable_form','no'),(21913,3599,'_dt_fancy_header_bg_overlay','0'),(21914,3599,'_dt_fancy_header_overlay_color','#000'),(21915,3599,'_dt_fancy_header_bg_overlay_opacity','50'),(21916,3599,'_dt_fancy_header_scroll_effect','default'),(21917,3599,'_dt_fancy_header_bg_parallax','0.5'),(21918,3599,'_dt_fancy_header_responsiveness_heading',''),(21919,3599,'_dt_fancy_header_responsiveness','enabled'),(21920,3599,'_dt_fancy_header_responsiveness_switch','778px'),(21921,3599,'_dt_fancy_header_responsive_height','140'),(21922,3599,'_dt_fancy_header_responsive_font_size','30'),(21923,3599,'_dt_fancy_header_responsive_title_line_height','38'),(21924,3599,'_dt_fancy_header_responsive_subtitle_font_size','20'),(21925,3599,'_dt_fancy_header_responsive_subtitle_line_height','28'),(21926,3599,'_dt_fancy_header_responsive_breadcrumbs','disabled'),(21927,3599,'the7_fancy_title_css','#main {\n  padding-top: 1%;\n}\n.fancy-header {\n  background-image: url(\'https://farmchemie.yasithawd.com/wp-content/uploads/2023/09/TOXIBOND®-Dry_300px.png\');\n  background-repeat: no-repeat;\n  background-position: center center;\n  background-size: auto auto;\n  background-color: #ffffff;\n}\n.mobile-false .fancy-header {\n  background-attachment: scroll;\n}\n.fancy-header .wf-wrap {\n  min-height: 140px;\n  padding-top: 0px;\n  padding-bottom: 0px;\n}\n.fancy-header .fancy-title {\n  font-size: 32px;\n  line-height: 36px;\n  color: #079547;\n  text-transform: none;\n}\n.fancy-header .fancy-subtitle {\n  font-size: 24px;\n  line-height: 26px;\n  color: #792c8a;\n  text-transform: none;\n}\n.fancy-header .breadcrumbs {\n  color: #ffffff;\n}\n.fancy-header-overlay {\n  background: rgba(0,0,0,0.5);\n}\n@media screen and (max-width: 778px) {\n  .fancy-header .wf-wrap {\n    min-height: 140px;\n  }\n  .fancy-header .fancy-title {\n    font-size: 30px;\n    line-height: 38px;\n  }\n  .fancy-header .fancy-subtitle {\n    font-size: 20px;\n    line-height: 28px;\n  }\n  .fancy-header.breadcrumbs-mobile-off .breadcrumbs {\n    display: none;\n  }\n  #fancy-header > .wf-wrap {\n    flex-flow: column wrap;\n    align-items: center;\n    justify-content: center;\n    padding-bottom: 0px !important;\n  }\n  .fancy-header.title-left .breadcrumbs {\n    text-align: center;\n    float: none;\n  }\n  .breadcrumbs {\n    margin-bottom: 10px;\n  }\n  .breadcrumbs.breadcrumbs-bg {\n    margin-top: 10px;\n  }\n  .fancy-header.title-right .breadcrumbs {\n    margin: 10px 0 10px 0;\n  }\n  #fancy-header .hgroup,\n  #fancy-header .breadcrumbs {\n    text-align: center;\n  }\n  .fancy-header .hgroup {\n    padding-bottom: 5px;\n  }\n  .breadcrumbs-off .hgroup {\n    padding-bottom: 5px;\n  }\n  .title-right .hgroup {\n    padding: 0 0 5px 0;\n  }\n  .title-right.breadcrumbs-off .hgroup {\n    padding-top: 5px;\n  }\n  .title-left.disabled-bg .breadcrumbs {\n    margin-bottom: 0;\n  }\n}\n'),(21912,3599,'_dt_fancy_header_bg_fullscreen','0'),(22041,3601,'_product_attributes','a:1:{s:15:\"pa_product-type\";a:6:{s:4:\"name\";s:15:\"pa_product-type\";s:5:\"value\";s:0:\"\";s:8:\"position\";i:0;s:10:\"is_visible\";i:0;s:12:\"is_variation\";i:0;s:11:\"is_taxonomy\";i:1;}}'),(22040,3601,'_wc_review_count','0'),(22039,3601,'_wc_average_rating','0'),(22038,3601,'_stock_status','instock'),(22037,3601,'_stock',NULL),(22036,3601,'_thumbnail_id','3906'),(22035,3601,'_download_expiry','-1'),(22034,3601,'_download_limit','-1'),(22033,3601,'_downloadable','no'),(22032,3601,'_virtual','no'),(22031,3601,'_sold_individually','no'),(22030,3601,'_backorders','no'),(22029,3601,'_manage_stock','no'),(22028,3601,'_tax_class',''),(22026,3601,'total_sales','0'),(22027,3601,'_tax_status','taxable'),(22025,3600,'_edit_last','1'),(22024,3600,'_edit_lock','1695540712:1'),(22023,3600,'_wqoecf_disable_form','no'),(22022,3600,'the7_fancy_title_css','#main {\n  padding-top: 1%;\n}\n.fancy-header {\n  background-image: url(\'https://farmchemie.yasithawd.com/wp-content/uploads/2023/09/BioGain_300px.png\');\n  background-repeat: no-repeat;\n  background-position: center center;\n  background-size: auto auto;\n  background-color: #ffffff;\n}\n.mobile-false .fancy-header {\n  background-attachment: scroll;\n}\n.fancy-header .wf-wrap {\n  min-height: 140px;\n  padding-top: 0px;\n  padding-bottom: 0px;\n}\n.fancy-header .fancy-title {\n  font-size: 32px;\n  line-height: 36px;\n  color: #079547;\n  text-transform: none;\n}\n.fancy-header .fancy-subtitle {\n  font-size: 24px;\n  line-height: 26px;\n  color: #792c8a;\n  text-transform: none;\n}\n.fancy-header .breadcrumbs {\n  color: #ffffff;\n}\n.fancy-header-overlay {\n  background: rgba(0,0,0,0.5);\n}\n@media screen and (max-width: 778px) {\n  .fancy-header .wf-wrap {\n    min-height: 140px;\n  }\n  .fancy-header .fancy-title {\n    font-size: 30px;\n    line-height: 38px;\n  }\n  .fancy-header .fancy-subtitle {\n    font-size: 20px;\n    line-height: 28px;\n  }\n  .fancy-header.breadcrumbs-mobile-off .breadcrumbs {\n    display: none;\n  }\n  #fancy-header > .wf-wrap {\n    flex-flow: column wrap;\n    align-items: center;\n    justify-content: center;\n    padding-bottom: 0px !important;\n  }\n  .fancy-header.title-left .breadcrumbs {\n    text-align: center;\n    float: none;\n  }\n  .breadcrumbs {\n    margin-bottom: 10px;\n  }\n  .breadcrumbs.breadcrumbs-bg {\n    margin-top: 10px;\n  }\n  .fancy-header.title-right .breadcrumbs {\n    margin: 10px 0 10px 0;\n  }\n  #fancy-header .hgroup,\n  #fancy-header .breadcrumbs {\n    text-align: center;\n  }\n  .fancy-header .hgroup {\n    padding-bottom: 5px;\n  }\n  .breadcrumbs-off .hgroup {\n    padding-bottom: 5px;\n  }\n  .title-right .hgroup {\n    padding: 0 0 5px 0;\n  }\n  .title-right.breadcrumbs-off .hgroup {\n    padding-top: 5px;\n  }\n  .title-left.disabled-bg .breadcrumbs {\n    margin-bottom: 0;\n  }\n}\n'),(22020,3600,'_dt_fancy_header_responsive_subtitle_line_height','28'),(22019,3600,'_dt_fancy_header_responsive_subtitle_font_size','20'),(22018,3600,'_dt_fancy_header_responsive_title_line_height','38'),(22017,3600,'_dt_fancy_header_responsive_font_size','30'),(22016,3600,'_dt_fancy_header_responsive_height','140'),(22015,3600,'_dt_fancy_header_responsiveness_switch','778px'),(22014,3600,'_dt_fancy_header_responsiveness','enabled'),(22013,3600,'_dt_fancy_header_responsiveness_heading',''),(22012,3600,'_dt_fancy_header_bg_parallax','0.5'),(22011,3600,'_dt_fancy_header_scroll_effect','default'),(22010,3600,'_dt_fancy_header_bg_overlay_opacity','50'),(22009,3600,'_dt_fancy_header_overlay_color','#000'),(22008,3600,'_dt_fancy_header_bg_overlay','0'),(22007,3600,'_dt_fancy_header_bg_fullscreen','0'),(22006,3600,'_dt_fancy_header_bg_position_y','center'),(22005,3600,'_dt_fancy_header_bg_position_x','center'),(22004,3600,'_dt_fancy_header_bg_repeat','no-repeat'),(22003,3600,'_dt_fancy_header_bg_image','a:1:{i:0;i:3903;}'),(22002,3600,'_dt_fancy_header_bg_image_origin','custom'),(22001,3600,'_dt_fancy_header_bg_color','#ffffff'),(22000,3600,'_dt_fancy_header_bg_heading',''),(21999,3600,'_dt_fancy_header_subtitle_color','#792c8a'),(21975,3600,'_dt_mobile_page_padding_left',''),(21976,3600,'_dt_fancy_header_layout_heading',''),(21977,3600,'_dt_fancy_header_title_aligment','all_left'),(21978,3600,'_dt_fancy_header_height','140'),(21979,3600,'_dt_fancy_header_padding-top','0px'),(21980,3600,'_dt_fancy_header_padding-bottom','0px'),(21981,3600,'_dt_fancy_header_breadcrumbs_heading',''),(21982,3600,'_dt_fancy_header_breadcrumbs','disabled'),(21983,3600,'_dt_fancy_header_breadcrumbs_text_color','#ffffff'),(21984,3600,'_dt_fancy_header_breadcrumbs_bg_color','disabled'),(21985,3600,'_dt_fancy_header_title_heading',''),(21986,3600,'_dt_fancy_header_title_mode','custom'),(21987,3600,'_dt_fancy_header_title',''),(21988,3600,'_dt_fancy_header_title_font_size','32'),(21989,3600,'_dt_fancy_header_title_line_height','36'),(21990,3600,'_dt_fancy_header_text_transform','none'),(21991,3600,'_dt_fancy_header_title_color_mode','color'),(21992,3600,'_dt_fancy_header_title_color','#079547'),(21993,3600,'_dt_fancy_header_subtitle_heading',''),(21994,3600,'_dt_fancy_header_subtitle',''),(21995,3600,'_dt_fancy_header_subtitle_font_size','24'),(21996,3600,'_dt_fancy_header_subtitle_line_height','26'),(21997,3600,'_dt_fancy_header_subtitle_text_transform','none'),(21998,3600,'_dt_fancy_header_subtitle_color_mode','color'),(21974,3600,'_dt_mobile_page_padding_bottom',''),(22021,3600,'_dt_fancy_header_responsive_breadcrumbs','disabled'),(22117,3601,'the7_fancy_title_css','#main {\n  padding-top: 1%;\n}\n.fancy-header {\n  background-image: url(\'https://farmchemie.yasithawd.com/wp-content/uploads/2023/09/BioGain-MAX_300px.png\');\n  background-repeat: no-repeat;\n  background-position: center center;\n  background-size: auto auto;\n  background-color: #ffffff;\n}\n.mobile-false .fancy-header {\n  background-attachment: scroll;\n}\n.fancy-header .wf-wrap {\n  min-height: 140px;\n  padding-top: 0px;\n  padding-bottom: 0px;\n}\n.fancy-header .fancy-title {\n  font-size: 32px;\n  line-height: 36px;\n  color: #079547;\n  text-transform: none;\n}\n.fancy-header .fancy-subtitle {\n  font-size: 24px;\n  line-height: 26px;\n  color: #792c8a;\n  text-transform: none;\n}\n.fancy-header .breadcrumbs {\n  color: #ffffff;\n}\n.fancy-header-overlay {\n  background: rgba(0,0,0,0.5);\n}\n@media screen and (max-width: 778px) {\n  .fancy-header .wf-wrap {\n    min-height: 140px;\n  }\n  .fancy-header .fancy-title {\n    font-size: 30px;\n    line-height: 38px;\n  }\n  .fancy-header .fancy-subtitle {\n    font-size: 20px;\n    line-height: 28px;\n  }\n  .fancy-header.breadcrumbs-mobile-off .breadcrumbs {\n    display: none;\n  }\n  #fancy-header > .wf-wrap {\n    flex-flow: column wrap;\n    align-items: center;\n    justify-content: center;\n    padding-bottom: 0px !important;\n  }\n  .fancy-header.title-left .breadcrumbs {\n    text-align: center;\n    float: none;\n  }\n  .breadcrumbs {\n    margin-bottom: 10px;\n  }\n  .breadcrumbs.breadcrumbs-bg {\n    margin-top: 10px;\n  }\n  .fancy-header.title-right .breadcrumbs {\n    margin: 10px 0 10px 0;\n  }\n  #fancy-header .hgroup,\n  #fancy-header .breadcrumbs {\n    text-align: center;\n  }\n  .fancy-header .hgroup {\n    padding-bottom: 5px;\n  }\n  .breadcrumbs-off .hgroup {\n    padding-bottom: 5px;\n  }\n  .title-right .hgroup {\n    padding: 0 0 5px 0;\n  }\n  .title-right.breadcrumbs-off .hgroup {\n    padding-top: 5px;\n  }\n  .title-left.disabled-bg .breadcrumbs {\n    margin-bottom: 0;\n  }\n}\n'),(22116,3601,'_dt_fancy_header_responsive_breadcrumbs','disabled'),(22115,3601,'_dt_fancy_header_responsive_subtitle_line_height','28'),(22114,3601,'_dt_fancy_header_responsive_subtitle_font_size','20'),(22113,3601,'_dt_fancy_header_responsive_title_line_height','38'),(22112,3601,'_dt_fancy_header_responsive_font_size','30'),(22111,3601,'_dt_fancy_header_responsive_height','140'),(22110,3601,'_dt_fancy_header_responsiveness_switch','778px'),(22109,3601,'_dt_fancy_header_responsiveness','enabled'),(22108,3601,'_dt_fancy_header_responsiveness_heading',''),(22107,3601,'_dt_fancy_header_bg_parallax','0.5'),(22106,3601,'_dt_fancy_header_scroll_effect','default'),(22105,3601,'_dt_fancy_header_bg_overlay_opacity','50'),(22104,3601,'_dt_fancy_header_overlay_color','#000'),(22103,3601,'_dt_fancy_header_bg_overlay','0'),(22102,3601,'_dt_fancy_header_bg_fullscreen','0'),(22101,3601,'_dt_fancy_header_bg_position_y','center'),(22100,3601,'_dt_fancy_header_bg_position_x','center'),(22099,3601,'_dt_fancy_header_bg_repeat','no-repeat'),(22098,3601,'_dt_fancy_header_bg_image','a:1:{i:0;i:3905;}'),(22097,3601,'_dt_fancy_header_bg_image_origin','custom'),(22096,3601,'_dt_fancy_header_bg_color','#ffffff'),(22095,3601,'_dt_fancy_header_bg_heading',''),(22094,3601,'_dt_fancy_header_subtitle_color','#792c8a'),(22093,3601,'_dt_fancy_header_subtitle_color_mode','color'),(22092,3601,'_dt_fancy_header_subtitle_text_transform','none'),(22091,3601,'_dt_fancy_header_subtitle_line_height','26'),(22090,3601,'_dt_fancy_header_subtitle_font_size','24'),(22089,3601,'_dt_fancy_header_subtitle',''),(22088,3601,'_dt_fancy_header_subtitle_heading',''),(22087,3601,'_dt_fancy_header_title_color','#079547'),(22086,3601,'_dt_fancy_header_title_color_mode','color'),(22085,3601,'_dt_fancy_header_text_transform','none'),(22084,3601,'_dt_fancy_header_title_line_height','36'),(22083,3601,'_dt_fancy_header_title_font_size','32'),(22082,3601,'_dt_fancy_header_title',''),(22081,3601,'_dt_fancy_header_title_mode','custom'),(22080,3601,'_dt_fancy_header_title_heading',''),(22079,3601,'_dt_fancy_header_breadcrumbs_bg_color','disabled'),(22078,3601,'_dt_fancy_header_breadcrumbs_text_color','#ffffff'),(22077,3601,'_dt_fancy_header_breadcrumbs','disabled'),(22076,3601,'_dt_fancy_header_breadcrumbs_heading',''),(22075,3601,'_dt_fancy_header_padding-bottom','0px'),(22074,3601,'_dt_fancy_header_padding-top','0px'),(22073,3601,'_dt_fancy_header_height','140'),(22072,3601,'_dt_fancy_header_title_aligment','all_left'),(22071,3601,'_dt_fancy_header_layout_heading',''),(22070,3601,'_dt_mobile_page_padding_left',''),(22069,3601,'_dt_mobile_page_padding_bottom',''),(22068,3601,'_dt_mobile_page_padding_right',''),(22067,3601,'_dt_mobile_page_padding_top',''),(22043,3601,'_dt_sidebar_position','disabled'),(22044,3601,'_dt_sidebar_widgetarea_id','sidebar_1'),(22045,3601,'_dt_sidebar_hide_on_mobile','0'),(22046,3601,'_dt_footer_show','1'),(22047,3601,'_dt_footer_widgetarea_id','sidebar_2'),(22048,3601,'_dt_footer_hide_on_mobile','0'),(22049,3601,'_dt_header_title','fancy'),(22050,3601,'_dt_header_background','normal'),(22051,3601,'_dt_header_background_below_slideshow','disabled'),(22052,3601,'_dt_header_transparent_bg_color_scheme','light'),(22053,3601,'_dt_header_transparent_top_bar_bg_color','#ffffff'),(22054,3601,'_dt_header_transparent_top_bar_bg_opacity','25'),(22055,3601,'_dt_header_transparent_bg_color','#000000'),(22056,3601,'_dt_header_transparent_bg_opacity','50'),(22057,3601,'_dt_header_disabled_background','normal'),(22058,3601,'_dt_header_disabled_transparent_bg_color_scheme','light'),(22059,3601,'_dt_header_disabled_transparent_top_bar_bg_color','#ffffff'),(22060,3601,'_dt_header_disabled_transparent_top_bar_bg_opacity','25'),(22061,3601,'_dt_header_disabled_transparent_bg_color','#000000'),(22062,3601,'_dt_header_disabled_transparent_bg_opacity','50'),(22063,3601,'_dt_page_overrides_top_margin','1%'),(22064,3601,'_dt_page_overrides_right_margin',''),(22065,3601,'_dt_page_overrides_bottom_margin',''),(22066,3601,'_dt_page_overrides_left_margin',''),(22042,3601,'_product_version','8.0.2'),(22195,3602,'_dt_fancy_header_bg_image','a:0:{}'),(22194,3602,'_dt_fancy_header_bg_image_origin','custom'),(22193,3602,'_dt_fancy_header_bg_color','#ffffff'),(22192,3602,'_dt_fancy_header_bg_heading',''),(22191,3602,'_dt_fancy_header_subtitle_color','#792c8a'),(22190,3602,'_dt_fancy_header_subtitle_color_mode','color'),(22189,3602,'_dt_fancy_header_subtitle_text_transform','none'),(22188,3602,'_dt_fancy_header_subtitle_line_height','26'),(22187,3602,'_dt_fancy_header_subtitle_font_size','24'),(22186,3602,'_dt_fancy_header_subtitle',''),(22185,3602,'_dt_fancy_header_subtitle_heading',''),(22184,3602,'_dt_fancy_header_title_color','#079547'),(22183,3602,'_dt_fancy_header_title_color_mode','color'),(22182,3602,'_dt_fancy_header_text_transform','none'),(22181,3602,'_dt_fancy_header_title_line_height','36'),(22180,3602,'_dt_fancy_header_title_font_size','32'),(22179,3602,'_dt_fancy_header_title',''),(22178,3602,'_dt_fancy_header_title_mode','custom'),(22177,3602,'_dt_fancy_header_title_heading',''),(22176,3602,'_dt_fancy_header_breadcrumbs_bg_color','disabled'),(22175,3602,'_dt_fancy_header_breadcrumbs_text_color','#ffffff'),(22174,3602,'_dt_fancy_header_breadcrumbs','disabled'),(22173,3602,'_dt_fancy_header_breadcrumbs_heading',''),(22172,3602,'_dt_fancy_header_padding-bottom','0px'),(22171,3602,'_dt_fancy_header_padding-top','0px'),(22170,3602,'_dt_fancy_header_height','140'),(22169,3602,'_dt_fancy_header_title_aligment','all_left'),(22168,3602,'_dt_fancy_header_layout_heading',''),(22167,3602,'_dt_mobile_page_padding_left',''),(22166,3602,'_dt_mobile_page_padding_bottom',''),(22165,3602,'_dt_mobile_page_padding_right',''),(22164,3602,'_dt_mobile_page_padding_top',''),(22163,3602,'_dt_page_overrides_left_margin',''),(22162,3602,'_dt_page_overrides_bottom_margin',''),(22161,3602,'_dt_page_overrides_right_margin',''),(22160,3602,'_dt_page_overrides_top_margin','1%'),(22159,3602,'_dt_header_disabled_transparent_bg_opacity','50'),(22158,3602,'_dt_header_disabled_transparent_bg_color','#000000'),(22157,3602,'_dt_header_disabled_transparent_top_bar_bg_opacity','25'),(22156,3602,'_dt_header_disabled_transparent_top_bar_bg_color','#ffffff'),(22155,3602,'_dt_header_disabled_transparent_bg_color_scheme','light'),(22153,3602,'_dt_header_transparent_bg_opacity','50'),(22152,3602,'_dt_header_transparent_bg_color','#000000'),(22151,3602,'_dt_header_transparent_top_bar_bg_opacity','25'),(22150,3602,'_dt_header_transparent_top_bar_bg_color','#ffffff'),(22149,3602,'_dt_header_transparent_bg_color_scheme','light'),(22148,3602,'_dt_header_background_below_slideshow','disabled'),(22147,3602,'_dt_header_background','normal'),(22146,3602,'_dt_header_title','fancy'),(22145,3602,'_dt_footer_hide_on_mobile','0'),(22144,3602,'_dt_footer_widgetarea_id','sidebar_2'),(22143,3602,'_dt_footer_show','1'),(22142,3602,'_dt_sidebar_hide_on_mobile','0'),(22141,3602,'_dt_sidebar_widgetarea_id','sidebar_1'),(22140,3602,'_dt_sidebar_position','disabled'),(22139,3602,'_product_version','8.0.2'),(22138,3602,'_product_attributes','a:1:{s:15:\"pa_product-type\";a:6:{s:4:\"name\";s:15:\"pa_product-type\";s:5:\"value\";s:0:\"\";s:8:\"position\";i:0;s:10:\"is_visible\";i:0;s:12:\"is_variation\";i:0;s:11:\"is_taxonomy\";i:1;}}'),(22137,3602,'_wc_review_count','0'),(22136,3602,'_wc_average_rating','0'),(22134,3602,'_stock',NULL),(22135,3602,'_stock_status','instock'),(22220,3603,'_tax_class',''),(22118,3601,'_wqoecf_disable_form','no'),(22119,3601,'_edit_lock','1695540710:1'),(22120,3601,'_edit_last','1'),(22123,3602,'total_sales','0'),(22124,3602,'_tax_status','taxable'),(22121,3550,'_thumbnail_id','3738'),(22122,3552,'_thumbnail_id','2818'),(22125,3602,'_tax_class',''),(22126,3602,'_manage_stock','no'),(22127,3602,'_backorders','no'),(22128,3602,'_sold_individually','no'),(22129,3602,'_virtual','no'),(22130,3602,'_downloadable','no'),(22131,3602,'_download_limit','-1'),(22132,3602,'_download_expiry','-1'),(22154,3602,'_dt_header_disabled_background','normal'),(22807,3611,'_wc_average_rating','0'),(22782,3609,'_wqoecf_disable_form','no'),(22783,3609,'_edit_lock','1695540709:1'),(28272,3720,'_wp_attached_file','2023/09/Oxytetraciclina-200-LA_600.png'),(28258,3714,'_wp_attached_file','2023/09/Canny-VIT_90_600px.png'),(22784,3609,'_edit_last','1'),(28290,3727,'_wp_attached_file','2023/09/Invemox-15-LA_600px-x-600px.png'),(28284,3725,'_wp_attached_file','2023/09/KETINK-100ml_600px-x-600px.png'),(28305,3731,'_tax_status','taxable'),(28296,3729,'_wp_attached_file','2023/09/Imidocarb-LH_600px-x-600px.png'),(28278,3723,'_wp_attached_file','2023/09/MAXUVOL_600px.png'),(28249,3710,'_wp_attached_file','2023/09/Orondo-Spray_600px-x-600px.png'),(28228,3701,'_wp_attached_file','2023/09/Cardisure_-300px.png'),(22794,3611,'total_sales','0'),(22795,3611,'_tax_status','taxable'),(22796,3611,'_tax_class',''),(22797,3611,'_manage_stock','no'),(22798,3611,'_backorders','no'),(22799,3611,'_sold_individually','no'),(22800,3611,'_virtual','no'),(22801,3611,'_downloadable','no'),(22802,3611,'_download_limit','-1'),(22803,3611,'_download_expiry','-1'),(22805,3611,'_stock',NULL),(22806,3611,'_stock_status','instock'),(22781,3609,'the7_fancy_title_css','#main {\n  padding-top: 1%;\n}\n.fancy-header {\n  background-image: url(\'https://farmchemie.yasithawd.com/wp-content/uploads/2023/09/Bactogrow-Premium_300px.png\');\n  background-repeat: no-repeat;\n  background-position: center center;\n  background-size: auto auto;\n  background-color: #ffffff;\n}\n.mobile-false .fancy-header {\n  background-attachment: scroll;\n}\n.fancy-header .wf-wrap {\n  min-height: 140px;\n  padding-top: 0px;\n  padding-bottom: 0px;\n}\n.fancy-header .fancy-title {\n  font-size: 32px;\n  line-height: 36px;\n  color: #079547;\n  text-transform: none;\n}\n.fancy-header .fancy-subtitle {\n  font-size: 24px;\n  line-height: 26px;\n  color: #792c8a;\n  text-transform: none;\n}\n.fancy-header .breadcrumbs {\n  color: #ffffff;\n}\n.fancy-header-overlay {\n  background: rgba(0,0,0,0.5);\n}\n@media screen and (max-width: 778px) {\n  .fancy-header .wf-wrap {\n    min-height: 140px;\n  }\n  .fancy-header .fancy-title {\n    font-size: 30px;\n    line-height: 38px;\n  }\n  .fancy-header .fancy-subtitle {\n    font-size: 20px;\n    line-height: 28px;\n  }\n  .fancy-header.breadcrumbs-mobile-off .breadcrumbs {\n    display: none;\n  }\n  #fancy-header > .wf-wrap {\n    flex-flow: column wrap;\n    align-items: center;\n    justify-content: center;\n    padding-bottom: 0px !important;\n  }\n  .fancy-header.title-left .breadcrumbs {\n    text-align: center;\n    float: none;\n  }\n  .breadcrumbs {\n    margin-bottom: 10px;\n  }\n  .breadcrumbs.breadcrumbs-bg {\n    margin-top: 10px;\n  }\n  .fancy-header.title-right .breadcrumbs {\n    margin: 10px 0 10px 0;\n  }\n  #fancy-header .hgroup,\n  #fancy-header .breadcrumbs {\n    text-align: center;\n  }\n  .fancy-header .hgroup {\n    padding-bottom: 5px;\n  }\n  .breadcrumbs-off .hgroup {\n    padding-bottom: 5px;\n  }\n  .title-right .hgroup {\n    padding: 0 0 5px 0;\n  }\n  .title-right.breadcrumbs-off .hgroup {\n    padding-top: 5px;\n  }\n  .title-left.disabled-bg .breadcrumbs {\n    margin-bottom: 0;\n  }\n}\n'),(13082,2935,'_menu_item_menu_item_parent','0'),(13083,2935,'_menu_item_object_id','2935'),(13084,2935,'_menu_item_object','custom'),(13085,2935,'_menu_item_target',''),(13086,2935,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(13087,2935,'_menu_item_xfn',''),(13088,2935,'_menu_item_url','/manufacturing'),(13090,2911,'_wp_old_date','2023-06-14'),(13091,2422,'_wp_old_date','2023-06-14'),(16978,3352,'_downloadable','no'),(13097,2935,'_wp_old_date','2023-06-14'),(13098,2417,'_wp_old_date','2023-06-14'),(13099,2418,'_wp_old_date','2023-06-14'),(13100,2419,'_wp_old_date','2023-06-14'),(13101,2420,'_wp_old_date','2023-06-14'),(13102,2421,'_wp_old_date','2023-06-14'),(13103,39,'_wp_old_date','2023-06-14'),(19084,3450,'_edit_lock','1694485748:1'),(19022,3450,'_dt_header_transparent_bg_opacity','50'),(18976,3447,'_dt_fancy_header_bg_parallax','0.5'),(18861,3442,'_dt_fancy_header_bg_heading',''),(18862,3442,'_dt_fancy_header_bg_color','#ffffff'),(18863,3442,'_dt_fancy_header_bg_image_origin','custom'),(18864,3442,'_dt_fancy_header_bg_image','a:1:{i:0;i:3446;}'),(22263,3603,'_dt_fancy_header_title_aligment','all_left'),(22262,3603,'_dt_fancy_header_layout_heading',''),(22261,3603,'_dt_mobile_page_padding_left',''),(22260,3603,'_dt_mobile_page_padding_bottom',''),(22259,3603,'_dt_mobile_page_padding_right',''),(22258,3603,'_dt_mobile_page_padding_top',''),(22257,3603,'_dt_page_overrides_left_margin',''),(22256,3603,'_dt_page_overrides_bottom_margin',''),(22255,3603,'_dt_page_overrides_right_margin',''),(22254,3603,'_dt_page_overrides_top_margin','1%'),(22253,3603,'_dt_header_disabled_transparent_bg_opacity','50'),(22252,3603,'_dt_header_disabled_transparent_bg_color','#000000'),(22251,3603,'_dt_header_disabled_transparent_top_bar_bg_opacity','25'),(22250,3603,'_dt_header_disabled_transparent_top_bar_bg_color','#ffffff'),(22249,3603,'_dt_header_disabled_transparent_bg_color_scheme','light'),(22248,3603,'_dt_header_disabled_background','normal'),(22247,3603,'_dt_header_transparent_bg_opacity','50'),(22246,3603,'_dt_header_transparent_bg_color','#000000'),(22245,3603,'_dt_header_transparent_top_bar_bg_opacity','25'),(22244,3603,'_dt_header_transparent_top_bar_bg_color','#ffffff'),(22243,3603,'_dt_header_transparent_bg_color_scheme','light'),(22242,3603,'_dt_header_background_below_slideshow','disabled'),(22241,3603,'_dt_header_background','normal'),(22240,3603,'_dt_header_title','fancy'),(22239,3603,'_dt_footer_hide_on_mobile','0'),(22238,3603,'_dt_footer_widgetarea_id','sidebar_2'),(22237,3603,'_dt_footer_show','1'),(22236,3603,'_dt_sidebar_hide_on_mobile','0'),(22235,3603,'_dt_sidebar_widgetarea_id','sidebar_1'),(22234,3603,'_dt_sidebar_position','disabled'),(22233,3603,'_product_version','8.0.2'),(22232,3603,'_product_attributes','a:1:{s:15:\"pa_product-type\";a:6:{s:4:\"name\";s:15:\"pa_product-type\";s:5:\"value\";s:0:\"\";s:8:\"position\";i:0;s:10:\"is_visible\";i:0;s:12:\"is_variation\";i:0;s:11:\"is_taxonomy\";i:1;}}'),(22231,3603,'_wc_review_count','0'),(22230,3603,'_wc_average_rating','0'),(22229,3603,'_stock_status','instock'),(22228,3603,'_stock',NULL),(22227,3603,'_download_expiry','-1'),(22226,3603,'_download_limit','-1'),(22225,3603,'_downloadable','no'),(22224,3603,'_virtual','no'),(22221,3603,'_manage_stock','no'),(22222,3603,'_backorders','no'),(22223,3603,'_sold_individually','no'),(22218,3603,'total_sales','0'),(22219,3603,'_tax_status','taxable'),(22217,3602,'_edit_last','1'),(22216,3602,'_edit_lock','1695627949:1'),(22215,3602,'_wqoecf_disable_form','no'),(22200,3602,'_dt_fancy_header_bg_overlay','0'),(22201,3602,'_dt_fancy_header_overlay_color','#000'),(22202,3602,'_dt_fancy_header_bg_overlay_opacity','50'),(22203,3602,'_dt_fancy_header_scroll_effect','default'),(22204,3602,'_dt_fancy_header_bg_parallax','0.5'),(22205,3602,'_dt_fancy_header_responsiveness_heading',''),(22206,3602,'_dt_fancy_header_responsiveness','enabled'),(22207,3602,'_dt_fancy_header_responsiveness_switch','778px'),(22208,3602,'_dt_fancy_header_responsive_height','140'),(22209,3602,'_dt_fancy_header_responsive_font_size','30'),(22210,3602,'_dt_fancy_header_responsive_title_line_height','38'),(22211,3602,'_dt_fancy_header_responsive_subtitle_font_size','20'),(22212,3602,'_dt_fancy_header_responsive_subtitle_line_height','28'),(22213,3602,'_dt_fancy_header_responsive_breadcrumbs','disabled'),(22214,3602,'the7_fancy_title_css','#main {\n  padding-top: 1%;\n}\n.fancy-header {\n  background-image: none;\n  background-repeat: no-repeat;\n  background-position: center center;\n  background-size: auto auto;\n  background-color: #ffffff;\n}\n.mobile-false .fancy-header {\n  background-attachment: scroll;\n}\n.fancy-header .wf-wrap {\n  min-height: 140px;\n  padding-top: 0px;\n  padding-bottom: 0px;\n}\n.fancy-header .fancy-title {\n  font-size: 32px;\n  line-height: 36px;\n  color: #079547;\n  text-transform: none;\n}\n.fancy-header .fancy-subtitle {\n  font-size: 24px;\n  line-height: 26px;\n  color: #792c8a;\n  text-transform: none;\n}\n.fancy-header .breadcrumbs {\n  color: #ffffff;\n}\n.fancy-header-overlay {\n  background: rgba(0,0,0,0.5);\n}\n@media screen and (max-width: 778px) {\n  .fancy-header .wf-wrap {\n    min-height: 140px;\n  }\n  .fancy-header .fancy-title {\n    font-size: 30px;\n    line-height: 38px;\n  }\n  .fancy-header .fancy-subtitle {\n    font-size: 20px;\n    line-height: 28px;\n  }\n  .fancy-header.breadcrumbs-mobile-off .breadcrumbs {\n    display: none;\n  }\n  #fancy-header > .wf-wrap {\n    flex-flow: column wrap;\n    align-items: center;\n    justify-content: center;\n    padding-bottom: 0px !important;\n  }\n  .fancy-header.title-left .breadcrumbs {\n    text-align: center;\n    float: none;\n  }\n  .breadcrumbs {\n    margin-bottom: 10px;\n  }\n  .breadcrumbs.breadcrumbs-bg {\n    margin-top: 10px;\n  }\n  .fancy-header.title-right .breadcrumbs {\n    margin: 10px 0 10px 0;\n  }\n  #fancy-header .hgroup,\n  #fancy-header .breadcrumbs {\n    text-align: center;\n  }\n  .fancy-header .hgroup {\n    padding-bottom: 5px;\n  }\n  .breadcrumbs-off .hgroup {\n    padding-bottom: 5px;\n  }\n  .title-right .hgroup {\n    padding: 0 0 5px 0;\n  }\n  .title-right.breadcrumbs-off .hgroup {\n    padding-top: 5px;\n  }\n  .title-left.disabled-bg .breadcrumbs {\n    margin-bottom: 0;\n  }\n}\n'),(22199,3602,'_dt_fancy_header_bg_fullscreen','0'),(22329,3604,'_dt_sidebar_widgetarea_id','sidebar_1'),(22198,3602,'_dt_fancy_header_bg_position_y','center'),(22328,3604,'_dt_sidebar_position','disabled'),(22327,3604,'_product_version','8.0.2'),(22326,3604,'_product_attributes','a:1:{s:15:\"pa_product-type\";a:6:{s:4:\"name\";s:15:\"pa_product-type\";s:5:\"value\";s:0:\"\";s:8:\"position\";i:0;s:10:\"is_visible\";i:0;s:12:\"is_variation\";i:0;s:11:\"is_taxonomy\";i:1;}}'),(22325,3604,'_wc_review_count','0'),(22324,3604,'_wc_average_rating','0'),(22323,3604,'_stock_status','instock'),(22322,3604,'_stock',NULL),(22321,3604,'_download_expiry','-1'),(22320,3604,'_download_limit','-1'),(22319,3604,'_downloadable','no'),(22318,3604,'_virtual','no'),(22317,3604,'_sold_individually','no'),(22316,3604,'_backorders','no'),(22315,3604,'_manage_stock','no'),(22314,3604,'_tax_class',''),(22311,3603,'_edit_last','1'),(22312,3604,'total_sales','0'),(22313,3604,'_tax_status','taxable'),(22310,3603,'_edit_lock','1695540783:1'),(22309,3603,'_wqoecf_disable_form','no'),(22308,3603,'the7_fancy_title_css','#main {\n  padding-top: 1%;\n}\n.fancy-header {\n  background-image: url(\'https://farmchemie.yasithawd.com/wp-content/uploads/2023/09/BROILER-Vitamin-Premix_300px.png\');\n  background-repeat: no-repeat;\n  background-position: center center;\n  background-size: auto auto;\n  background-color: #ffffff;\n}\n.mobile-false .fancy-header {\n  background-attachment: scroll;\n}\n.fancy-header .wf-wrap {\n  min-height: 140px;\n  padding-top: 0px;\n  padding-bottom: 0px;\n}\n.fancy-header .fancy-title {\n  font-size: 32px;\n  line-height: 36px;\n  color: #079547;\n  text-transform: none;\n}\n.fancy-header .fancy-subtitle {\n  font-size: 24px;\n  line-height: 26px;\n  color: #792c8a;\n  text-transform: none;\n}\n.fancy-header .breadcrumbs {\n  color: #ffffff;\n}\n.fancy-header-overlay {\n  background: rgba(0,0,0,0.5);\n}\n@media screen and (max-width: 778px) {\n  .fancy-header .wf-wrap {\n    min-height: 140px;\n  }\n  .fancy-header .fancy-title {\n    font-size: 30px;\n    line-height: 38px;\n  }\n  .fancy-header .fancy-subtitle {\n    font-size: 20px;\n    line-height: 28px;\n  }\n  .fancy-header.breadcrumbs-mobile-off .breadcrumbs {\n    display: none;\n  }\n  #fancy-header > .wf-wrap {\n    flex-flow: column wrap;\n    align-items: center;\n    justify-content: center;\n    padding-bottom: 0px !important;\n  }\n  .fancy-header.title-left .breadcrumbs {\n    text-align: center;\n    float: none;\n  }\n  .breadcrumbs {\n    margin-bottom: 10px;\n  }\n  .breadcrumbs.breadcrumbs-bg {\n    margin-top: 10px;\n  }\n  .fancy-header.title-right .breadcrumbs {\n    margin: 10px 0 10px 0;\n  }\n  #fancy-header .hgroup,\n  #fancy-header .breadcrumbs {\n    text-align: center;\n  }\n  .fancy-header .hgroup {\n    padding-bottom: 5px;\n  }\n  .breadcrumbs-off .hgroup {\n    padding-bottom: 5px;\n  }\n  .title-right .hgroup {\n    padding: 0 0 5px 0;\n  }\n  .title-right.breadcrumbs-off .hgroup {\n    padding-top: 5px;\n  }\n  .title-left.disabled-bg .breadcrumbs {\n    margin-bottom: 0;\n  }\n}\n'),(22307,3603,'_dt_fancy_header_responsive_breadcrumbs','disabled'),(22306,3603,'_dt_fancy_header_responsive_subtitle_line_height','28'),(22305,3603,'_dt_fancy_header_responsive_subtitle_font_size','20'),(22304,3603,'_dt_fancy_header_responsive_title_line_height','38'),(22303,3603,'_dt_fancy_header_responsive_font_size','30'),(22302,3603,'_dt_fancy_header_responsive_height','140'),(22301,3603,'_dt_fancy_header_responsiveness_switch','778px'),(22300,3603,'_dt_fancy_header_responsiveness','enabled'),(22299,3603,'_dt_fancy_header_responsiveness_heading',''),(22298,3603,'_dt_fancy_header_bg_parallax','0.5'),(22297,3603,'_dt_fancy_header_scroll_effect','default'),(22296,3603,'_dt_fancy_header_bg_overlay_opacity','50'),(22295,3603,'_dt_fancy_header_overlay_color','#000'),(22294,3603,'_dt_fancy_header_bg_overlay','0'),(22293,3603,'_dt_fancy_header_bg_fullscreen','0'),(22269,3603,'_dt_fancy_header_breadcrumbs_text_color','#ffffff'),(22270,3603,'_dt_fancy_header_breadcrumbs_bg_color','disabled'),(22271,3603,'_dt_fancy_header_title_heading',''),(22272,3603,'_dt_fancy_header_title_mode','custom'),(22273,3603,'_dt_fancy_header_title',''),(22274,3603,'_dt_fancy_header_title_font_size','32'),(22275,3603,'_dt_fancy_header_title_line_height','36'),(22276,3603,'_dt_fancy_header_text_transform','none'),(22277,3603,'_dt_fancy_header_title_color_mode','color'),(22278,3603,'_dt_fancy_header_title_color','#079547'),(22279,3603,'_dt_fancy_header_subtitle_heading',''),(22280,3603,'_dt_fancy_header_subtitle',''),(22281,3603,'_dt_fancy_header_subtitle_font_size','24'),(22282,3603,'_dt_fancy_header_subtitle_line_height','26'),(22283,3603,'_dt_fancy_header_subtitle_text_transform','none'),(22284,3603,'_dt_fancy_header_subtitle_color_mode','color'),(22285,3603,'_dt_fancy_header_subtitle_color','#792c8a'),(22286,3603,'_dt_fancy_header_bg_heading',''),(22287,3603,'_dt_fancy_header_bg_color','#ffffff'),(22288,3603,'_dt_fancy_header_bg_image_origin','custom'),(22289,3603,'_dt_fancy_header_bg_image','a:1:{i:0;i:3908;}'),(22290,3603,'_dt_fancy_header_bg_repeat','no-repeat'),(22291,3603,'_dt_fancy_header_bg_position_x','center'),(22292,3603,'_dt_fancy_header_bg_position_y','center'),(22268,3603,'_dt_fancy_header_breadcrumbs','disabled'),(15419,3138,'_wp_attached_file','2023/04/Alverm-30_600px-600px-1.png'),(22843,3611,'_dt_fancy_header_padding-bottom','0px'),(22267,3603,'_dt_fancy_header_breadcrumbs_heading',''),(13081,2935,'_menu_item_type','custom'),(12870,2894,'_wp_attached_file','2023/05/VECTORMUNE-FP-MG-AE.png'),(22266,3603,'_dt_fancy_header_padding-bottom','0px'),(12871,2894,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:600;s:6:\"height\";i:600;s:4:\"file\";s:31:\"2023/05/VECTORMUNE-FP-MG-AE.png\";s:8:\"filesize\";i:247171;s:5:\"sizes\";a:6:{s:6:\"medium\";a:5:{s:4:\"file\";s:31:\"VECTORMUNE-FP-MG-AE-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:66738;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:31:\"VECTORMUNE-FP-MG-AE-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:19842;}s:21:\"woocommerce_thumbnail\";a:6:{s:4:\"file\";s:31:\"VECTORMUNE-FP-MG-AE-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:66738;s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:5:{s:4:\"file\";s:31:\"VECTORMUNE-FP-MG-AE-200x200.png\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:32708;}s:12:\"shop_catalog\";a:5:{s:4:\"file\";s:31:\"VECTORMUNE-FP-MG-AE-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:66738;}s:14:\"shop_thumbnail\";a:5:{s:4:\"file\";s:31:\"VECTORMUNE-FP-MG-AE-200x200.png\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:32708;}}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:{}}}'),(12873,2895,'_wp_attached_file','2023/05/WhatsApp-Image-2023-05-16-at-2.43.25-AM.jpeg'),(12874,2895,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:693;s:6:\"height\";i:519;s:4:\"file\";s:52:\"2023/05/WhatsApp-Image-2023-05-16-at-2.43.25-AM.jpeg\";s:8:\"filesize\";i:129217;s:5:\"sizes\";a:8:{s:6:\"medium\";a:5:{s:4:\"file\";s:52:\"WhatsApp-Image-2023-05-16-at-2.43.25-AM-300x225.jpeg\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:14382;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:52:\"WhatsApp-Image-2023-05-16-at-2.43.25-AM-150x150.jpeg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:6128;}s:21:\"woocommerce_thumbnail\";a:6:{s:4:\"file\";s:52:\"WhatsApp-Image-2023-05-16-at-2.43.25-AM-300x300.jpeg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:17105;s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:5:{s:4:\"file\";s:52:\"WhatsApp-Image-2023-05-16-at-2.43.25-AM-600x449.jpeg\";s:5:\"width\";i:600;s:6:\"height\";i:449;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:42814;}s:29:\"woocommerce_gallery_thumbnail\";a:5:{s:4:\"file\";s:52:\"WhatsApp-Image-2023-05-16-at-2.43.25-AM-200x200.jpeg\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:9265;}s:12:\"shop_catalog\";a:5:{s:4:\"file\";s:52:\"WhatsApp-Image-2023-05-16-at-2.43.25-AM-300x300.jpeg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:17105;}s:11:\"shop_single\";a:5:{s:4:\"file\";s:52:\"WhatsApp-Image-2023-05-16-at-2.43.25-AM-600x449.jpeg\";s:5:\"width\";i:600;s:6:\"height\";i:449;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:42814;}s:14:\"shop_thumbnail\";a:5:{s:4:\"file\";s:52:\"WhatsApp-Image-2023-05-16-at-2.43.25-AM-200x200.jpeg\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:9265;}}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:{}}}'),(12875,2896,'_wp_attached_file','2023/05/WhatsApp-Image-2023-05-16-at-2.43.38-AM.jpeg'),(12876,2896,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:728;s:6:\"height\";i:545;s:4:\"file\";s:52:\"2023/05/WhatsApp-Image-2023-05-16-at-2.43.38-AM.jpeg\";s:8:\"filesize\";i:84896;s:5:\"sizes\";a:8:{s:6:\"medium\";a:5:{s:4:\"file\";s:52:\"WhatsApp-Image-2023-05-16-at-2.43.38-AM-300x225.jpeg\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:15679;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:52:\"WhatsApp-Image-2023-05-16-at-2.43.38-AM-150x150.jpeg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:6676;}s:21:\"woocommerce_thumbnail\";a:6:{s:4:\"file\";s:52:\"WhatsApp-Image-2023-05-16-at-2.43.38-AM-300x300.jpeg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:18611;s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:5:{s:4:\"file\";s:52:\"WhatsApp-Image-2023-05-16-at-2.43.38-AM-600x449.jpeg\";s:5:\"width\";i:600;s:6:\"height\";i:449;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:43877;}s:29:\"woocommerce_gallery_thumbnail\";a:5:{s:4:\"file\";s:52:\"WhatsApp-Image-2023-05-16-at-2.43.38-AM-200x200.jpeg\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:10132;}s:12:\"shop_catalog\";a:5:{s:4:\"file\";s:52:\"WhatsApp-Image-2023-05-16-at-2.43.38-AM-300x300.jpeg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:18611;}s:11:\"shop_single\";a:5:{s:4:\"file\";s:52:\"WhatsApp-Image-2023-05-16-at-2.43.38-AM-600x449.jpeg\";s:5:\"width\";i:600;s:6:\"height\";i:449;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:43877;}s:14:\"shop_thumbnail\";a:5:{s:4:\"file\";s:52:\"WhatsApp-Image-2023-05-16-at-2.43.38-AM-200x200.jpeg\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:10132;}}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:{}}}'),(12877,2897,'_wp_attached_file','2023/05/WhatsApp-Image-2023-05-16-at-2.43.56-AM.jpeg'),(12878,2897,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:568;s:6:\"height\";i:480;s:4:\"file\";s:52:\"2023/05/WhatsApp-Image-2023-05-16-at-2.43.56-AM.jpeg\";s:8:\"filesize\";i:64195;s:5:\"sizes\";a:6:{s:6:\"medium\";a:5:{s:4:\"file\";s:52:\"WhatsApp-Image-2023-05-16-at-2.43.56-AM-300x254.jpeg\";s:5:\"width\";i:300;s:6:\"height\";i:254;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:17456;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:52:\"WhatsApp-Image-2023-05-16-at-2.43.56-AM-150x150.jpeg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:7208;}s:21:\"woocommerce_thumbnail\";a:6:{s:4:\"file\";s:52:\"WhatsApp-Image-2023-05-16-at-2.43.56-AM-300x300.jpeg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:19722;s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:5:{s:4:\"file\";s:52:\"WhatsApp-Image-2023-05-16-at-2.43.56-AM-200x200.jpeg\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:10813;}s:12:\"shop_catalog\";a:5:{s:4:\"file\";s:52:\"WhatsApp-Image-2023-05-16-at-2.43.56-AM-300x300.jpeg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:19722;}s:14:\"shop_thumbnail\";a:5:{s:4:\"file\";s:52:\"WhatsApp-Image-2023-05-16-at-2.43.56-AM-200x200.jpeg\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:10813;}}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:{}}}'),(12879,2898,'_wp_attached_file','2023/05/WhatsApp-Image-2023-05-16-at-2.44.00-AM.jpeg'),(12880,2898,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:366;s:6:\"height\";i:480;s:4:\"file\";s:52:\"2023/05/WhatsApp-Image-2023-05-16-at-2.44.00-AM.jpeg\";s:8:\"filesize\";i:46204;s:5:\"sizes\";a:6:{s:6:\"medium\";a:5:{s:4:\"file\";s:52:\"WhatsApp-Image-2023-05-16-at-2.44.00-AM-229x300.jpeg\";s:5:\"width\";i:229;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:15753;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:52:\"WhatsApp-Image-2023-05-16-at-2.44.00-AM-150x150.jpeg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:7057;}s:21:\"woocommerce_thumbnail\";a:6:{s:4:\"file\";s:52:\"WhatsApp-Image-2023-05-16-at-2.44.00-AM-300x300.jpeg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:19706;s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:5:{s:4:\"file\";s:52:\"WhatsApp-Image-2023-05-16-at-2.44.00-AM-200x200.jpeg\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:10859;}s:12:\"shop_catalog\";a:5:{s:4:\"file\";s:52:\"WhatsApp-Image-2023-05-16-at-2.44.00-AM-300x300.jpeg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:19706;}s:14:\"shop_thumbnail\";a:5:{s:4:\"file\";s:52:\"WhatsApp-Image-2023-05-16-at-2.44.00-AM-200x200.jpeg\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:10859;}}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:{}}}'),(12881,2899,'_wp_attached_file','2023/05/WhatsApp-Image-2023-05-16-at-2.44.14-AM.jpeg'),(12882,2899,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:895;s:6:\"height\";i:574;s:4:\"file\";s:52:\"2023/05/WhatsApp-Image-2023-05-16-at-2.44.14-AM.jpeg\";s:8:\"filesize\";i:107933;s:5:\"sizes\";a:9:{s:6:\"medium\";a:5:{s:4:\"file\";s:52:\"WhatsApp-Image-2023-05-16-at-2.44.14-AM-300x192.jpeg\";s:5:\"width\";i:300;s:6:\"height\";i:192;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:14017;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:52:\"WhatsApp-Image-2023-05-16-at-2.44.14-AM-150x150.jpeg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:6347;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:52:\"WhatsApp-Image-2023-05-16-at-2.44.14-AM-768x493.jpeg\";s:5:\"width\";i:768;s:6:\"height\";i:493;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:58455;}s:21:\"woocommerce_thumbnail\";a:6:{s:4:\"file\";s:52:\"WhatsApp-Image-2023-05-16-at-2.44.14-AM-300x300.jpeg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:18158;s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:5:{s:4:\"file\";s:52:\"WhatsApp-Image-2023-05-16-at-2.44.14-AM-600x385.jpeg\";s:5:\"width\";i:600;s:6:\"height\";i:385;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:40786;}s:29:\"woocommerce_gallery_thumbnail\";a:5:{s:4:\"file\";s:52:\"WhatsApp-Image-2023-05-16-at-2.44.14-AM-200x200.jpeg\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:9895;}s:12:\"shop_catalog\";a:5:{s:4:\"file\";s:52:\"WhatsApp-Image-2023-05-16-at-2.44.14-AM-300x300.jpeg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:18158;}s:11:\"shop_single\";a:5:{s:4:\"file\";s:52:\"WhatsApp-Image-2023-05-16-at-2.44.14-AM-600x385.jpeg\";s:5:\"width\";i:600;s:6:\"height\";i:385;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:40786;}s:14:\"shop_thumbnail\";a:5:{s:4:\"file\";s:52:\"WhatsApp-Image-2023-05-16-at-2.44.14-AM-200x200.jpeg\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:9895;}}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:{}}}'),(12883,2901,'_wp_attached_file','2023/05/WhatsApp-Image-2023-05-16-at-2.45.03-AM.jpeg'),(12884,2901,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:698;s:6:\"height\";i:138;s:4:\"file\";s:52:\"2023/05/WhatsApp-Image-2023-05-16-at-2.45.03-AM.jpeg\";s:8:\"filesize\";i:22745;s:5:\"sizes\";a:8:{s:6:\"medium\";a:5:{s:4:\"file\";s:51:\"WhatsApp-Image-2023-05-16-at-2.45.03-AM-300x59.jpeg\";s:5:\"width\";i:300;s:6:\"height\";i:59;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:5892;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:52:\"WhatsApp-Image-2023-05-16-at-2.45.03-AM-150x138.jpeg\";s:5:\"width\";i:150;s:6:\"height\";i:138;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:3763;}s:21:\"woocommerce_thumbnail\";a:6:{s:4:\"file\";s:52:\"WhatsApp-Image-2023-05-16-at-2.45.03-AM-300x138.jpeg\";s:5:\"width\";i:300;s:6:\"height\";i:138;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:6953;s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:5:{s:4:\"file\";s:52:\"WhatsApp-Image-2023-05-16-at-2.45.03-AM-600x119.jpeg\";s:5:\"width\";i:600;s:6:\"height\";i:119;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:13049;}s:29:\"woocommerce_gallery_thumbnail\";a:5:{s:4:\"file\";s:52:\"WhatsApp-Image-2023-05-16-at-2.45.03-AM-200x138.jpeg\";s:5:\"width\";i:200;s:6:\"height\";i:138;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:4721;}s:12:\"shop_catalog\";a:5:{s:4:\"file\";s:52:\"WhatsApp-Image-2023-05-16-at-2.45.03-AM-300x138.jpeg\";s:5:\"width\";i:300;s:6:\"height\";i:138;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:6953;}s:11:\"shop_single\";a:5:{s:4:\"file\";s:52:\"WhatsApp-Image-2023-05-16-at-2.45.03-AM-600x119.jpeg\";s:5:\"width\";i:600;s:6:\"height\";i:119;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:13049;}s:14:\"shop_thumbnail\";a:5:{s:4:\"file\";s:52:\"WhatsApp-Image-2023-05-16-at-2.45.03-AM-200x138.jpeg\";s:5:\"width\";i:200;s:6:\"height\";i:138;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:4721;}}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:{}}}'),(22839,3611,'_dt_fancy_header_layout_heading',''),(12886,2903,'_wpb_shortcodes_custom_css','.vc_custom_1684836308288{margin-top: 15px !important;}.vc_custom_1684836047081{margin-top: 15px !important;}.vc_custom_1684836055469{margin-top: 15px !important;}'),(12887,2633,'_wpb_shortcodes_custom_css','.vc_custom_1686720701314{margin-top: 35px !important;padding-top: 65px !important;padding-bottom: 100px !important;}.vc_custom_1684836308288{margin-top: 15px !important;}.vc_custom_1686713784619{margin-top: 35px !important;}.vc_custom_1686714025469{margin-top: 35px !important;}.vc_custom_1686713784619{margin-top: 35px !important;}.vc_custom_1686714115148{margin-top: 35px !important;}.vc_custom_1686713784619{margin-top: 35px !important;}.vc_custom_1686713784619{margin-top: 35px !important;}.vc_custom_1686713784619{margin-top: 35px !important;}.vc_custom_1691995519863{background-color: #f4ab20 !important;border: 1px solid #f4ab20 !important;border-radius: 35px !important;}.vc_custom_1691995661095{background-color: #722f8b !important;border: 1px solid #722f8b !important;border-radius: 35px !important;}.vc_custom_1691995661095{background-color: #722f8b !important;border: 1px solid #722f8b !important;border-radius: 35px !important;}.vc_custom_1691995519863{background-color: #f4ab20 !important;border: 1px solid #f4ab20 !important;border-radius: 35px !important;}.vc_custom_1691996718116{border-radius: 35px !important;}.vc_custom_1691995519863{background-color: #f4ab20 !important;border: 1px solid #f4ab20 !important;border-radius: 35px !important;}'),(12888,2904,'_wpb_shortcodes_custom_css','.vc_custom_1684836308288{margin-top: 15px !important;}.vc_custom_1684836047081{margin-top: 15px !important;}.vc_custom_1684836055469{margin-top: 15px !important;}'),(12889,2905,'_wpb_shortcodes_custom_css','.vc_custom_1684836308288{margin-top: 15px !important;}.vc_custom_1684836047081{margin-top: 15px !important;}.vc_custom_1684836055469{margin-top: 15px !important;}'),(12890,2906,'_wpb_shortcodes_custom_css','.vc_custom_1684836308288{margin-top: 15px !important;}.vc_custom_1684836047081{margin-top: 15px !important;}.vc_custom_1684836055469{margin-top: 15px !important;}'),(22780,3609,'_dt_fancy_header_responsive_breadcrumbs','disabled'),(22334,3604,'_dt_header_title','fancy'),(22333,3604,'_dt_footer_hide_on_mobile','0'),(22332,3604,'_dt_footer_widgetarea_id','sidebar_2'),(12900,2422,'_wp_old_date','2022-12-15'),(13068,2927,'_wpb_shortcodes_custom_css','.vc_custom_1686714785726{margin-top: 35px !important;padding-top: 100px !important;padding-bottom: 100px !important;}.vc_custom_1684836308288{margin-top: 15px !important;}.vc_custom_1686713784619{margin-top: 35px !important;}.vc_custom_1686714025469{margin-top: 35px !important;}.vc_custom_1686713784619{margin-top: 35px !important;}.vc_custom_1686714115148{margin-top: 35px !important;}.vc_custom_1686713784619{margin-top: 35px !important;}.vc_custom_1686713784619{margin-top: 35px !important;}.vc_custom_1686713784619{margin-top: 35px !important;}'),(16977,3352,'_virtual','no'),(15042,3040,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1300;s:6:\"height\";i:400;s:4:\"file\";s:20:\"2023/08/PET-CARE.png\";s:8:\"filesize\";i:185186;s:5:\"sizes\";a:10:{s:6:\"medium\";a:5:{s:4:\"file\";s:19:\"PET-CARE-300x92.png\";s:5:\"width\";i:300;s:6:\"height\";i:92;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:35645;}s:5:\"large\";a:5:{s:4:\"file\";s:21:\"PET-CARE-1024x315.png\";s:5:\"width\";i:1024;s:6:\"height\";i:315;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:353652;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:20:\"PET-CARE-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:34527;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:20:\"PET-CARE-768x236.png\";s:5:\"width\";i:768;s:6:\"height\";i:236;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:199661;}s:21:\"woocommerce_thumbnail\";a:6:{s:4:\"file\";s:20:\"PET-CARE-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:130019;s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:5:{s:4:\"file\";s:20:\"PET-CARE-600x185.png\";s:5:\"width\";i:600;s:6:\"height\";i:185;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:125090;}s:29:\"woocommerce_gallery_thumbnail\";a:5:{s:4:\"file\";s:20:\"PET-CARE-200x200.png\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:58753;}s:12:\"shop_catalog\";a:5:{s:4:\"file\";s:20:\"PET-CARE-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:130019;}s:11:\"shop_single\";a:5:{s:4:\"file\";s:20:\"PET-CARE-600x185.png\";s:5:\"width\";i:600;s:6:\"height\";i:185;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:125090;}s:14:\"shop_thumbnail\";a:5:{s:4:\"file\";s:20:\"PET-CARE-200x200.png\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:58753;}}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:{}}}'),(12914,2417,'_wp_old_date','2022-12-15'),(12915,2418,'_wp_old_date','2022-12-15'),(12916,2419,'_wp_old_date','2022-12-15'),(12917,2420,'_wp_old_date','2022-12-15'),(12918,2421,'_wp_old_date','2022-12-15'),(12919,39,'_wp_old_date','2022-12-15'),(12922,2910,'_wpb_shortcodes_custom_css','.vc_custom_1684836308288{margin-top: 15px !important;}.vc_custom_1684836047081{margin-top: 15px !important;}.vc_custom_1684836055469{margin-top: 15px !important;}'),(12924,2422,'_wp_old_date','2023-05-23'),(16976,3352,'_sold_individually','no'),(14982,3035,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1300;s:6:\"height\";i:400;s:4:\"file\";s:24:\"2023/08/LARGE-ANIMAL.png\";s:8:\"filesize\";i:272818;s:5:\"sizes\";a:10:{s:6:\"medium\";a:5:{s:4:\"file\";s:23:\"LARGE-ANIMAL-300x92.png\";s:5:\"width\";i:300;s:6:\"height\";i:92;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:52357;}s:5:\"large\";a:5:{s:4:\"file\";s:25:\"LARGE-ANIMAL-1024x315.png\";s:5:\"width\";i:1024;s:6:\"height\";i:315;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:503543;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:24:\"LARGE-ANIMAL-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:39522;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:24:\"LARGE-ANIMAL-768x236.png\";s:5:\"width\";i:768;s:6:\"height\";i:236;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:285779;}s:21:\"woocommerce_thumbnail\";a:6:{s:4:\"file\";s:24:\"LARGE-ANIMAL-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:145823;s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:5:{s:4:\"file\";s:24:\"LARGE-ANIMAL-600x185.png\";s:5:\"width\";i:600;s:6:\"height\";i:185;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:180938;}s:29:\"woocommerce_gallery_thumbnail\";a:5:{s:4:\"file\";s:24:\"LARGE-ANIMAL-200x200.png\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:66450;}s:12:\"shop_catalog\";a:5:{s:4:\"file\";s:24:\"LARGE-ANIMAL-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:145823;}s:11:\"shop_single\";a:5:{s:4:\"file\";s:24:\"LARGE-ANIMAL-600x185.png\";s:5:\"width\";i:600;s:6:\"height\";i:185;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:180938;}s:14:\"shop_thumbnail\";a:5:{s:4:\"file\";s:24:\"LARGE-ANIMAL-200x200.png\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:66450;}}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:{}}}'),(12935,2417,'_wp_old_date','2023-05-23'),(12936,2418,'_wp_old_date','2023-05-23'),(12937,2419,'_wp_old_date','2023-05-23'),(12938,2420,'_wp_old_date','2023-05-23'),(12939,2421,'_wp_old_date','2023-05-23'),(12940,39,'_wp_old_date','2023-05-23'),(12959,2914,'_wpb_shortcodes_custom_css','.vc_custom_1684922556235{margin-right: 0px !important;margin-left: 0px !important;padding-right: 0px !important;padding-left: 0px !important;}.vc_custom_1662730433019{padding-right: 0px !important;padding-left: 0px !important;}.vc_custom_1662447237222{margin: 0px !important;padding: 0px !important;background-image: url(https://farmchemie.yasithawd.com/wp-content/uploads/2022/09/marketbgimg1-sp.png?id=2527) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}.vc_custom_1662370166856{margin-top: 20px !important;margin-right: 50px !important;margin-left: 50px !important;}.vc_custom_1662460080909{margin-top: 20px !important;margin-right: 50px !important;margin-bottom: 10px !important;margin-left: 50px !important;}.vc_custom_1662370166856{margin-top: 20px !important;margin-right: 50px !important;margin-left: 50px !important;}.vc_custom_1662460080909{margin-top: 20px !important;margin-right: 50px !important;margin-bottom: 10px !important;margin-left: 50px !important;}.vc_custom_1662539141341{background-color: #6e368d !important;}.vc_custom_1662539133598{background-color: #059444 !important;}.vc_custom_1662456998651{padding-bottom: 500px !important;}.vc_custom_1662458571859{padding-right: 0px !important;padding-bottom: 10px !important;padding-left: 0px !important;}.vc_custom_1662539148421{background-color: rgba(255,255,255,0.5) !important;*background-color: rgb(255,255,255) !important;}.vc_custom_1662371690284{background-color: #6e368d !important;}'),(23074,3614,'the7_fancy_title_css','#main {\n  padding-top: 1%;\n}\n.fancy-header {\n  background-image: none;\n  background-repeat: no-repeat;\n  background-position: center center;\n  background-size: auto auto;\n  background-color: #ffffff;\n}\n.mobile-false .fancy-header {\n  background-attachment: scroll;\n}\n.fancy-header .wf-wrap {\n  min-height: 140px;\n  padding-top: 0px;\n  padding-bottom: 0px;\n}\n.fancy-header .fancy-title {\n  font-size: 32px;\n  line-height: 36px;\n  color: #079547;\n  text-transform: none;\n}\n.fancy-header .fancy-subtitle {\n  font-size: 24px;\n  line-height: 26px;\n  color: #792c8a;\n  text-transform: none;\n}\n.fancy-header .breadcrumbs {\n  color: #ffffff;\n}\n.fancy-header-overlay {\n  background: rgba(0,0,0,0.5);\n}\n@media screen and (max-width: 778px) {\n  .fancy-header .wf-wrap {\n    min-height: 140px;\n  }\n  .fancy-header .fancy-title {\n    font-size: 30px;\n    line-height: 38px;\n  }\n  .fancy-header .fancy-subtitle {\n    font-size: 20px;\n    line-height: 28px;\n  }\n  .fancy-header.breadcrumbs-mobile-off .breadcrumbs {\n    display: none;\n  }\n  #fancy-header > .wf-wrap {\n    flex-flow: column wrap;\n    align-items: center;\n    justify-content: center;\n    padding-bottom: 0px !important;\n  }\n  .fancy-header.title-left .breadcrumbs {\n    text-align: center;\n    float: none;\n  }\n  .breadcrumbs {\n    margin-bottom: 10px;\n  }\n  .breadcrumbs.breadcrumbs-bg {\n    margin-top: 10px;\n  }\n  .fancy-header.title-right .breadcrumbs {\n    margin: 10px 0 10px 0;\n  }\n  #fancy-header .hgroup,\n  #fancy-header .breadcrumbs {\n    text-align: center;\n  }\n  .fancy-header .hgroup {\n    padding-bottom: 5px;\n  }\n  .breadcrumbs-off .hgroup {\n    padding-bottom: 5px;\n  }\n  .title-right .hgroup {\n    padding: 0 0 5px 0;\n  }\n  .title-right.breadcrumbs-off .hgroup {\n    padding-top: 5px;\n  }\n  .title-left.disabled-bg .breadcrumbs {\n    margin-bottom: 0;\n  }\n}\n'),(23072,3614,'_dt_fancy_header_responsive_subtitle_line_height','28'),(23073,3614,'_dt_fancy_header_responsive_breadcrumbs','disabled'),(23071,3614,'_dt_fancy_header_responsive_subtitle_font_size','20'),(23070,3614,'_dt_fancy_header_responsive_title_line_height','38'),(23069,3614,'_dt_fancy_header_responsive_font_size','30'),(23068,3614,'_dt_fancy_header_responsive_height','140'),(23067,3614,'_dt_fancy_header_responsiveness_switch','778px'),(23066,3614,'_dt_fancy_header_responsiveness','enabled'),(23065,3614,'_dt_fancy_header_responsiveness_heading',''),(23064,3614,'_dt_fancy_header_bg_parallax','0.5'),(23063,3614,'_dt_fancy_header_scroll_effect','default'),(23062,3614,'_dt_fancy_header_bg_overlay_opacity','50'),(23061,3614,'_dt_fancy_header_overlay_color','#000'),(23060,3614,'_dt_fancy_header_bg_overlay','0'),(23059,3614,'_dt_fancy_header_bg_fullscreen','0'),(23058,3614,'_dt_fancy_header_bg_position_y','center'),(23057,3614,'_dt_fancy_header_bg_position_x','center'),(23056,3614,'_dt_fancy_header_bg_repeat','no-repeat'),(23055,3614,'_dt_fancy_header_bg_image','a:0:{}'),(23054,3614,'_dt_fancy_header_bg_image_origin','custom'),(23053,3614,'_dt_fancy_header_bg_color','#ffffff'),(23052,3614,'_dt_fancy_header_bg_heading',''),(23051,3614,'_dt_fancy_header_subtitle_color','#792c8a'),(23050,3614,'_dt_fancy_header_subtitle_color_mode','color'),(23049,3614,'_dt_fancy_header_subtitle_text_transform','none'),(23024,3614,'_dt_mobile_page_padding_top',''),(23025,3614,'_dt_mobile_page_padding_right',''),(23026,3614,'_dt_mobile_page_padding_bottom',''),(23027,3614,'_dt_mobile_page_padding_left',''),(23028,3614,'_dt_fancy_header_layout_heading',''),(23029,3614,'_dt_fancy_header_title_aligment','all_left'),(23030,3614,'_dt_fancy_header_height','140'),(23031,3614,'_dt_fancy_header_padding-top','0px'),(23032,3614,'_dt_fancy_header_padding-bottom','0px'),(23033,3614,'_dt_fancy_header_breadcrumbs_heading',''),(23034,3614,'_dt_fancy_header_breadcrumbs','disabled'),(23035,3614,'_dt_fancy_header_breadcrumbs_text_color','#ffffff'),(23036,3614,'_dt_fancy_header_breadcrumbs_bg_color','disabled'),(23037,3614,'_dt_fancy_header_title_heading',''),(23038,3614,'_dt_fancy_header_title_mode','custom'),(23039,3614,'_dt_fancy_header_title',''),(23040,3614,'_dt_fancy_header_title_font_size','32'),(23041,3614,'_dt_fancy_header_title_line_height','36'),(23042,3614,'_dt_fancy_header_text_transform','none'),(23043,3614,'_dt_fancy_header_title_color_mode','color'),(23044,3614,'_dt_fancy_header_title_color','#079547'),(23045,3614,'_dt_fancy_header_subtitle_heading',''),(23046,3614,'_dt_fancy_header_subtitle',''),(23047,3614,'_dt_fancy_header_subtitle_font_size','24'),(23048,3614,'_dt_fancy_header_subtitle_line_height','26'),(23023,3614,'_dt_page_overrides_left_margin',''),(23168,3615,'the7_fancy_title_css','#main {\n  padding-top: 1%;\n}\n.fancy-header {\n  background-image: url(\'https://farmchemie.yasithawd.com/wp-content/uploads/2023/04/Alverm-30_400px-140px.png\');\n  background-repeat: no-repeat;\n  background-position: center center;\n  background-size: auto auto;\n  background-color: #ffffff;\n}\n.mobile-false .fancy-header {\n  background-attachment: scroll;\n}\n.fancy-header .wf-wrap {\n  min-height: 140px;\n  padding-top: 0px;\n  padding-bottom: 0px;\n}\n.fancy-header .fancy-title {\n  font-size: 32px;\n  line-height: 36px;\n  color: #079547;\n  text-transform: none;\n}\n.fancy-header .fancy-subtitle {\n  font-size: 24px;\n  line-height: 26px;\n  color: #792c8a;\n  text-transform: none;\n}\n.fancy-header .breadcrumbs {\n  color: #ffffff;\n}\n.fancy-header-overlay {\n  background: rgba(0,0,0,0.5);\n}\n@media screen and (max-width: 778px) {\n  .fancy-header .wf-wrap {\n    min-height: 140px;\n  }\n  .fancy-header .fancy-title {\n    font-size: 30px;\n    line-height: 38px;\n  }\n  .fancy-header .fancy-subtitle {\n    font-size: 20px;\n    line-height: 28px;\n  }\n  .fancy-header.breadcrumbs-mobile-off .breadcrumbs {\n    display: none;\n  }\n  #fancy-header > .wf-wrap {\n    flex-flow: column wrap;\n    align-items: center;\n    justify-content: center;\n    padding-bottom: 0px !important;\n  }\n  .fancy-header.title-left .breadcrumbs {\n    text-align: center;\n    float: none;\n  }\n  .breadcrumbs {\n    margin-bottom: 10px;\n  }\n  .breadcrumbs.breadcrumbs-bg {\n    margin-top: 10px;\n  }\n  .fancy-header.title-right .breadcrumbs {\n    margin: 10px 0 10px 0;\n  }\n  #fancy-header .hgroup,\n  #fancy-header .breadcrumbs {\n    text-align: center;\n  }\n  .fancy-header .hgroup {\n    padding-bottom: 5px;\n  }\n  .breadcrumbs-off .hgroup {\n    padding-bottom: 5px;\n  }\n  .title-right .hgroup {\n    padding: 0 0 5px 0;\n  }\n  .title-right.breadcrumbs-off .hgroup {\n    padding-top: 5px;\n  }\n  .title-left.disabled-bg .breadcrumbs {\n    margin-bottom: 0;\n  }\n}\n'),(23167,3615,'_dt_fancy_header_responsive_breadcrumbs','disabled'),(23166,3615,'_dt_fancy_header_responsive_subtitle_line_height','28'),(23165,3615,'_dt_fancy_header_responsive_subtitle_font_size','20'),(23164,3615,'_dt_fancy_header_responsive_title_line_height','38'),(23163,3615,'_dt_fancy_header_responsive_font_size','30'),(23162,3615,'_dt_fancy_header_responsive_height','140'),(23161,3615,'_dt_fancy_header_responsiveness_switch','778px'),(23160,3615,'_dt_fancy_header_responsiveness','enabled'),(23159,3615,'_dt_fancy_header_responsiveness_heading',''),(23158,3615,'_dt_fancy_header_bg_parallax','0.5'),(23157,3615,'_dt_fancy_header_scroll_effect','default'),(23156,3615,'_dt_fancy_header_bg_overlay_opacity','50'),(23155,3615,'_dt_fancy_header_overlay_color','#000'),(23154,3615,'_dt_fancy_header_bg_overlay','0'),(23153,3615,'_dt_fancy_header_bg_fullscreen','0'),(23152,3615,'_dt_fancy_header_bg_position_y','center'),(23151,3615,'_dt_fancy_header_bg_position_x','center'),(23150,3615,'_dt_fancy_header_bg_repeat','no-repeat'),(23149,3615,'_dt_fancy_header_bg_image','a:1:{i:0;i:3249;}'),(23147,3615,'_dt_fancy_header_bg_color','#ffffff'),(23148,3615,'_dt_fancy_header_bg_image_origin','custom'),(23146,3615,'_dt_fancy_header_bg_heading',''),(23145,3615,'_dt_fancy_header_subtitle_color','#792c8a'),(23144,3615,'_dt_fancy_header_subtitle_color_mode','color'),(23143,3615,'_dt_fancy_header_subtitle_text_transform','none'),(23142,3615,'_dt_fancy_header_subtitle_line_height','26'),(23141,3615,'_dt_fancy_header_subtitle_font_size','24'),(23140,3615,'_dt_fancy_header_subtitle',''),(23139,3615,'_dt_fancy_header_subtitle_heading',''),(23138,3615,'_dt_fancy_header_title_color','#079547'),(23137,3615,'_dt_fancy_header_title_color_mode','color'),(23136,3615,'_dt_fancy_header_text_transform','none'),(23135,3615,'_dt_fancy_header_title_line_height','36'),(23134,3615,'_dt_fancy_header_title_font_size','32'),(23133,3615,'_dt_fancy_header_title',''),(23132,3615,'_dt_fancy_header_title_mode','custom'),(23131,3615,'_dt_fancy_header_title_heading',''),(23130,3615,'_dt_fancy_header_breadcrumbs_bg_color','disabled'),(23129,3615,'_dt_fancy_header_breadcrumbs_text_color','#ffffff'),(23128,3615,'_dt_fancy_header_breadcrumbs','disabled'),(23127,3615,'_dt_fancy_header_breadcrumbs_heading',''),(23126,3615,'_dt_fancy_header_padding-bottom','0px'),(23125,3615,'_dt_fancy_header_padding-top','0px'),(23101,3615,'_dt_header_background','normal'),(23102,3615,'_dt_header_background_below_slideshow','disabled'),(23103,3615,'_dt_header_transparent_bg_color_scheme','light'),(23104,3615,'_dt_header_transparent_top_bar_bg_color','#ffffff'),(23105,3615,'_dt_header_transparent_top_bar_bg_opacity','25'),(23106,3615,'_dt_header_transparent_bg_color','#000000'),(23107,3615,'_dt_header_transparent_bg_opacity','50'),(23108,3615,'_dt_header_disabled_background','normal'),(23109,3615,'_dt_header_disabled_transparent_bg_color_scheme','light'),(23110,3615,'_dt_header_disabled_transparent_top_bar_bg_color','#ffffff'),(23111,3615,'_dt_header_disabled_transparent_top_bar_bg_opacity','25'),(23112,3615,'_dt_header_disabled_transparent_bg_color','#000000'),(23113,3615,'_dt_header_disabled_transparent_bg_opacity','50'),(23114,3615,'_dt_page_overrides_top_margin','1%'),(23115,3615,'_dt_page_overrides_right_margin',''),(23116,3615,'_dt_page_overrides_bottom_margin',''),(23117,3615,'_dt_page_overrides_left_margin',''),(23118,3615,'_dt_mobile_page_padding_top',''),(23119,3615,'_dt_mobile_page_padding_right',''),(23120,3615,'_dt_mobile_page_padding_bottom',''),(23121,3615,'_dt_mobile_page_padding_left',''),(23122,3615,'_dt_fancy_header_layout_heading',''),(23123,3615,'_dt_fancy_header_title_aligment','all_left'),(23124,3615,'_dt_fancy_header_height','140'),(23100,3615,'_dt_header_title','fancy'),(14251,2911,'_wp_old_date','2023-06-18'),(14252,2422,'_wp_old_date','2023-06-18'),(16975,3352,'_backorders','no'),(15041,3040,'_wp_attached_file','2023/08/PET-CARE.png'),(15135,3043,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:774;s:6:\"height\";i:172;s:4:\"file\";s:32:\"2023/08/FCML-SUPPLIERS-LOGOS.png\";s:8:\"filesize\";i:18184;s:5:\"sizes\";a:9:{s:6:\"medium\";a:5:{s:4:\"file\";s:31:\"FCML-SUPPLIERS-LOGOS-300x67.png\";s:5:\"width\";i:300;s:6:\"height\";i:67;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:23299;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:32:\"FCML-SUPPLIERS-LOGOS-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:16553;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:32:\"FCML-SUPPLIERS-LOGOS-768x171.png\";s:5:\"width\";i:768;s:6:\"height\";i:171;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:80709;}s:21:\"woocommerce_thumbnail\";a:6:{s:4:\"file\";s:32:\"FCML-SUPPLIERS-LOGOS-300x172.png\";s:5:\"width\";i:300;s:6:\"height\";i:172;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:22606;s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:5:{s:4:\"file\";s:32:\"FCML-SUPPLIERS-LOGOS-600x133.png\";s:5:\"width\";i:600;s:6:\"height\";i:133;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:59658;}s:29:\"woocommerce_gallery_thumbnail\";a:5:{s:4:\"file\";s:32:\"FCML-SUPPLIERS-LOGOS-200x172.png\";s:5:\"width\";i:200;s:6:\"height\";i:172;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:15300;}s:12:\"shop_catalog\";a:5:{s:4:\"file\";s:32:\"FCML-SUPPLIERS-LOGOS-300x172.png\";s:5:\"width\";i:300;s:6:\"height\";i:172;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:22606;}s:11:\"shop_single\";a:5:{s:4:\"file\";s:32:\"FCML-SUPPLIERS-LOGOS-600x133.png\";s:5:\"width\";i:600;s:6:\"height\";i:133;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:59658;}s:14:\"shop_thumbnail\";a:5:{s:4:\"file\";s:32:\"FCML-SUPPLIERS-LOGOS-200x172.png\";s:5:\"width\";i:200;s:6:\"height\";i:172;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:15300;}}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:{}}}'),(15364,3105,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1300;s:6:\"height\";i:300;s:4:\"file\";s:20:\"2023/08/ABOUT-US.png\";s:8:\"filesize\";i:182151;s:5:\"sizes\";a:10:{s:6:\"medium\";a:5:{s:4:\"file\";s:19:\"ABOUT-US-300x69.png\";s:5:\"width\";i:300;s:6:\"height\";i:69;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:38393;}s:5:\"large\";a:5:{s:4:\"file\";s:21:\"ABOUT-US-1024x236.png\";s:5:\"width\";i:1024;s:6:\"height\";i:236;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:404791;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:20:\"ABOUT-US-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:42471;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:20:\"ABOUT-US-768x177.png\";s:5:\"width\";i:768;s:6:\"height\";i:177;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:226939;}s:21:\"woocommerce_thumbnail\";a:6:{s:4:\"file\";s:20:\"ABOUT-US-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:57735;s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:5:{s:4:\"file\";s:20:\"ABOUT-US-600x138.png\";s:5:\"width\";i:600;s:6:\"height\";i:138;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:139319;}s:29:\"woocommerce_gallery_thumbnail\";a:5:{s:4:\"file\";s:20:\"ABOUT-US-200x200.png\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:72044;}s:12:\"shop_catalog\";a:5:{s:4:\"file\";s:20:\"ABOUT-US-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:57735;}s:11:\"shop_single\";a:5:{s:4:\"file\";s:20:\"ABOUT-US-600x138.png\";s:5:\"width\";i:600;s:6:\"height\";i:138;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:139319;}s:14:\"shop_thumbnail\";a:5:{s:4:\"file\";s:20:\"ABOUT-US-200x200.png\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:72044;}}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:{}}}'),(14258,2935,'_wp_old_date','2023-06-18'),(14259,2417,'_wp_old_date','2023-06-18'),(14260,2418,'_wp_old_date','2023-06-18'),(14261,2419,'_wp_old_date','2023-06-18'),(14262,2420,'_wp_old_date','2023-06-18'),(14263,2421,'_wp_old_date','2023-06-18'),(14264,39,'_wp_old_date','2023-06-18'),(14265,2964,'_edit_last','1'),(14266,2964,'_edit_lock','1695537652:1'),(14267,2965,'_wp_attached_file','2023/07/VID-20230717-WA0003.mp4'),(14268,2965,'_wp_attachment_metadata','a:10:{s:7:\"bitrate\";i:2007925;s:8:\"filesize\";i:13810949;s:9:\"mime_type\";s:15:\"video/quicktime\";s:6:\"length\";i:55;s:16:\"length_formatted\";s:4:\"0:55\";s:5:\"width\";i:960;s:6:\"height\";i:544;s:10:\"fileformat\";s:3:\"mp4\";s:10:\"dataformat\";s:9:\"quicktime\";s:17:\"created_timestamp\";i:-2082844800;}'),(14269,2966,'_wp_attached_file','2023/07/Picture1.png'),(14270,2966,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:741;s:6:\"height\";i:638;s:4:\"file\";s:20:\"2023/07/Picture1.png\";s:8:\"filesize\";i:33497;s:5:\"sizes\";a:8:{s:6:\"medium\";a:5:{s:4:\"file\";s:20:\"Picture1-300x258.png\";s:5:\"width\";i:300;s:6:\"height\";i:258;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:18885;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:20:\"Picture1-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:9666;}s:21:\"woocommerce_thumbnail\";a:6:{s:4:\"file\";s:20:\"Picture1-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:20758;s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:5:{s:4:\"file\";s:20:\"Picture1-600x517.png\";s:5:\"width\";i:600;s:6:\"height\";i:517;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:39685;}s:29:\"woocommerce_gallery_thumbnail\";a:5:{s:4:\"file\";s:20:\"Picture1-200x200.png\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:13294;}s:12:\"shop_catalog\";a:5:{s:4:\"file\";s:20:\"Picture1-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:20758;}s:11:\"shop_single\";a:5:{s:4:\"file\";s:20:\"Picture1-600x517.png\";s:5:\"width\";i:600;s:6:\"height\";i:517;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:39685;}s:14:\"shop_thumbnail\";a:5:{s:4:\"file\";s:20:\"Picture1-200x200.png\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:13294;}}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:{}}}'),(14271,2967,'_wp_attached_file','2023/07/Picture2.png'),(14272,2967,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:900;s:6:\"height\";i:500;s:4:\"file\";s:20:\"2023/07/Picture2.png\";s:8:\"filesize\";i:4954;s:5:\"sizes\";a:9:{s:6:\"medium\";a:5:{s:4:\"file\";s:20:\"Picture2-300x167.png\";s:5:\"width\";i:300;s:6:\"height\";i:167;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:12284;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:20:\"Picture2-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:6940;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:20:\"Picture2-768x427.png\";s:5:\"width\";i:768;s:6:\"height\";i:427;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:33465;}s:21:\"woocommerce_thumbnail\";a:6:{s:4:\"file\";s:20:\"Picture2-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:13726;s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:5:{s:4:\"file\";s:20:\"Picture2-600x333.png\";s:5:\"width\";i:600;s:6:\"height\";i:333;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:25291;}s:29:\"woocommerce_gallery_thumbnail\";a:5:{s:4:\"file\";s:20:\"Picture2-200x200.png\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:9492;}s:12:\"shop_catalog\";a:5:{s:4:\"file\";s:20:\"Picture2-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:13726;}s:11:\"shop_single\";a:5:{s:4:\"file\";s:20:\"Picture2-600x333.png\";s:5:\"width\";i:600;s:6:\"height\";i:333;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:25291;}s:14:\"shop_thumbnail\";a:5:{s:4:\"file\";s:20:\"Picture2-200x200.png\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:9492;}}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:{}}}'),(14273,2968,'_wp_attached_file','revslider/video-media/VID-20230717-WA0003_13.jpeg'),(14274,2968,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:960;s:6:\"height\";i:544;s:4:\"file\";s:49:\"revslider/video-media/VID-20230717-WA0003_13.jpeg\";s:8:\"filesize\";i:69300;s:5:\"sizes\";a:9:{s:6:\"medium\";a:5:{s:4:\"file\";s:35:\"VID-20230717-WA0003_13-300x170.jpeg\";s:5:\"width\";i:300;s:6:\"height\";i:170;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:9186;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:35:\"VID-20230717-WA0003_13-150x150.jpeg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:4520;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:35:\"VID-20230717-WA0003_13-768x435.jpeg\";s:5:\"width\";i:768;s:6:\"height\";i:435;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:48718;}s:21:\"woocommerce_thumbnail\";a:6:{s:4:\"file\";s:35:\"VID-20230717-WA0003_13-300x300.jpeg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:12803;s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:5:{s:4:\"file\";s:35:\"VID-20230717-WA0003_13-600x340.jpeg\";s:5:\"width\";i:600;s:6:\"height\";i:340;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:30392;}s:29:\"woocommerce_gallery_thumbnail\";a:5:{s:4:\"file\";s:35:\"VID-20230717-WA0003_13-200x200.jpeg\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:6709;}s:12:\"shop_catalog\";a:5:{s:4:\"file\";s:35:\"VID-20230717-WA0003_13-300x300.jpeg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:12803;}s:11:\"shop_single\";a:5:{s:4:\"file\";s:35:\"VID-20230717-WA0003_13-600x340.jpeg\";s:5:\"width\";i:600;s:6:\"height\";i:340;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:30392;}s:14:\"shop_thumbnail\";a:5:{s:4:\"file\";s:35:\"VID-20230717-WA0003_13-200x200.jpeg\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:6709;}}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:{}}}'),(14275,2969,'_wp_attached_file','2023/07/Picture3.png'),(14276,2969,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:326;s:6:\"height\";i:244;s:4:\"file\";s:20:\"2023/07/Picture3.png\";s:8:\"filesize\";i:80851;s:5:\"sizes\";a:6:{s:6:\"medium\";a:5:{s:4:\"file\";s:20:\"Picture3-300x225.png\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:67247;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:20:\"Picture3-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:28069;}s:21:\"woocommerce_thumbnail\";a:6:{s:4:\"file\";s:20:\"Picture3-300x244.png\";s:5:\"width\";i:300;s:6:\"height\";i:244;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:77945;s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:5:{s:4:\"file\";s:20:\"Picture3-200x200.png\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:45808;}s:12:\"shop_catalog\";a:5:{s:4:\"file\";s:20:\"Picture3-300x244.png\";s:5:\"width\";i:300;s:6:\"height\";i:244;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:77945;}s:14:\"shop_thumbnail\";a:5:{s:4:\"file\";s:20:\"Picture3-200x200.png\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:45808;}}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:{}}}'),(14277,2970,'_wp_attached_file','2023/07/Picture4.png'),(14278,2970,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:200;s:6:\"height\";i:200;s:4:\"file\";s:20:\"2023/07/Picture4.png\";s:8:\"filesize\";i:20047;s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:20:\"Picture4-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:11862;}}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:{}}}'),(14279,2971,'_wp_attached_file','2023/07/Picture5.png'),(14280,2971,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:301;s:6:\"height\";i:223;s:4:\"file\";s:20:\"2023/07/Picture5.png\";s:8:\"filesize\";i:36374;s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:20:\"Picture5-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:15766;}s:29:\"woocommerce_gallery_thumbnail\";a:5:{s:4:\"file\";s:20:\"Picture5-200x200.png\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:24480;}s:14:\"shop_thumbnail\";a:5:{s:4:\"file\";s:20:\"Picture5-200x200.png\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:24480;}}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:{}}}'),(14281,2964,'_wp_page_template','default'),(14282,2964,'_wpb_vc_js_status','true'),(14283,2972,'_wpb_shortcodes_custom_css','.vc_custom_1689574541066{margin-top: 50px !important;}.vc_custom_1689574541066{margin-top: 50px !important;}.vc_custom_1689574541066{margin-top: 50px !important;}'),(14284,2964,'_dt_sidebar_position','disabled'),(14285,2964,'_dt_sidebar_widgetarea_id','sidebar_1'),(14286,2964,'_dt_sidebar_hide_on_mobile','0'),(14287,2964,'_dt_footer_show','1'),(14288,2964,'_dt_footer_widgetarea_id','sidebar_3'),(14289,2964,'_dt_footer_hide_on_mobile','0'),(14290,2964,'_dt_header_title','slideshow'),(14291,2964,'_dt_header_background','normal'),(14292,2964,'_dt_header_background_below_slideshow','disabled'),(14293,2964,'_dt_header_transparent_bg_color_scheme','light'),(14294,2964,'_dt_header_transparent_top_bar_bg_color','#ffffff'),(14295,2964,'_dt_header_transparent_top_bar_bg_opacity','25'),(14296,2964,'_dt_header_transparent_bg_color','#000000'),(14297,2964,'_dt_header_transparent_bg_opacity','50'),(14298,2964,'_dt_header_disabled_background','normal'),(14299,2964,'_dt_header_disabled_transparent_bg_color_scheme','light'),(14300,2964,'_dt_header_disabled_transparent_top_bar_bg_color','#ffffff'),(14301,2964,'_dt_header_disabled_transparent_top_bar_bg_opacity','25'),(14302,2964,'_dt_header_disabled_transparent_bg_color','#000000'),(14303,2964,'_dt_header_disabled_transparent_bg_opacity','50'),(14304,2964,'_dt_page_overrides_top_margin','1%'),(14305,2964,'_dt_page_overrides_right_margin',''),(14306,2964,'_dt_page_overrides_bottom_margin',''),(14307,2964,'_dt_page_overrides_left_margin',''),(14308,2964,'_dt_mobile_page_padding_top',''),(14309,2964,'_dt_mobile_page_padding_right',''),(14310,2964,'_dt_mobile_page_padding_bottom',''),(14311,2964,'_dt_mobile_page_padding_left',''),(14312,2964,'_dt_slideshow_mode','revolution'),(14313,2964,'_dt_slideshow_layout','fullwidth'),(14314,2964,'_dt_slideshow_slider_proportions','a:2:{s:5:\"width\";s:4:\"1200\";s:6:\"height\";s:3:\"500\";}'),(14315,2964,'_dt_slideshow_scaling','fill'),(14316,2964,'_dt_slideshow_autoplay','paused'),(14317,2964,'_dt_slideshow_autoslide_interval','5000'),(14318,2964,'_dt_slideshow_hide_captions','0'),(14319,2964,'_dt_slideshow_photo_scroller_layout','fullscreen'),(14320,2964,'_dt_slideshow_photo_scroller_bg_color','#000000'),(14321,2964,'_dt_slideshow_photo_scroller_overlay','1'),(14322,2964,'_dt_slideshow_photo_scroller_top_padding','0'),(14323,2964,'_dt_slideshow_photo_scroller_bottom_padding','0'),(14324,2964,'_dt_slideshow_photo_scroller_side_paddings','0'),(14325,2964,'_dt_slideshow_photo_scroller_inactive_opacity','15'),(14326,2964,'_dt_slideshow_photo_scroller_thumbnails_visibility','show'),(14327,2964,'_dt_slideshow_photo_scroller_thumbnails_width',''),(14328,2964,'_dt_slideshow_photo_scroller_thumbnails_height','85'),(14329,2964,'_dt_slideshow_photo_scroller_autoplay','play'),(14330,2964,'_dt_slideshow_photo_scroller_autoplay_speed','4000'),(14331,2964,'fake_id',''),(14332,2964,'_dt_slideshow_photo_scroller_ls_max_width','100'),(14333,2964,'_dt_slideshow_photo_scroller_ls_min_width','0'),(14334,2964,'_dt_slideshow_photo_scroller_ls_fill_dt','fit'),(14335,2964,'_dt_slideshow_photo_scroller_ls_fill_mob','fit'),(14336,2964,'_dt_slideshow_photo_scroller_pt_max_width','100'),(14337,2964,'_dt_slideshow_photo_scroller_pt_min_width','0'),(14338,2964,'_dt_slideshow_photo_scroller_pt_fill_dt','fit'),(14339,2964,'_dt_slideshow_photo_scroller_pt_fill_mob','fit'),(14340,2964,'_dt_slideshow_revolution_slider','slider-3-1-1-1'),(14341,2964,'_dt_slideshow_layer_slider','none'),(14342,2964,'_dt_slideshow_layer_show_bg_and_paddings','0'),(14343,2964,'_dt_microsite_primary_menu',''),(14344,2964,'_dt_microsite_split_left_menu',''),(14345,2964,'_dt_microsite_split_right_menu',''),(14346,2964,'_dt_microsite_mobile_menu',''),(14347,2973,'_wpb_shortcodes_custom_css','.vc_custom_1689574541066{margin-top: 50px !important;}.vc_custom_1689574541066{margin-top: 50px !important;}.vc_custom_1689574541066{margin-top: 50px !important;}'),(14348,2974,'_wpb_shortcodes_custom_css','.vc_custom_1689574770387{margin-top: 50px !important;margin-bottom: 50px !important;}.vc_custom_1689574541066{margin-top: 50px !important;}.vc_custom_1689574541066{margin-top: 50px !important;}.vc_custom_1689574541066{margin-top: 50px !important;}'),(14349,2975,'_wpb_shortcodes_custom_css','.vc_custom_1689574810584{padding-top: 50px !important;padding-bottom: 50px !important;}.vc_custom_1689574827080{margin-top: 50px !important;margin-bottom: 50px !important;}.vc_custom_1689574879615{margin-top: 50px !important;margin-bottom: 50px !important;}.vc_custom_1689574868687{margin-top: 35px !important;margin-bottom: 35px !important;}.vc_custom_1689574868687{margin-top: 35px !important;margin-bottom: 35px !important;}.vc_custom_1689574868687{margin-top: 35px !important;margin-bottom: 35px !important;}'),(14350,2976,'_wpb_shortcodes_custom_css','.vc_custom_1689574810584{padding-top: 50px !important;padding-bottom: 50px !important;}.vc_custom_1689574827080{margin-top: 50px !important;margin-bottom: 50px !important;}.vc_custom_1689574879615{margin-top: 50px !important;margin-bottom: 50px !important;}.vc_custom_1689574969423{padding-top: 35px !important;padding-bottom: 35px !important;}.vc_custom_1689574984575{padding-top: 35px !important;padding-bottom: 35px !important;}'),(14354,2978,'_wpb_shortcodes_custom_css','.vc_custom_1689574810584{padding-top: 50px !important;padding-bottom: 50px !important;}.vc_custom_1689574879615{margin-top: 50px !important;margin-bottom: 50px !important;}.vc_custom_1689574969423{padding-top: 35px !important;padding-bottom: 35px !important;}.vc_custom_1689574984575{padding-top: 35px !important;padding-bottom: 35px !important;}'),(14352,2964,'_wpb_shortcodes_custom_css','.vc_custom_1689577528817{padding-bottom: 50px !important;}.vc_custom_1693451731079{padding-top: 50px !important;padding-bottom: 50px !important;}.vc_custom_1689578794814{padding-top: 50px !important;padding-bottom: 50px !important;}.vc_custom_1689578794814{padding-top: 50px !important;padding-bottom: 50px !important;}.vc_custom_1689577454678{margin-bottom: 50px !important;}.vc_custom_1692407941633{border-bottom-width: 1px !important;border-bottom-color: #079547 !important;border-bottom-style: solid !important;border-radius: 1px !important;}.vc_custom_1692407941633{border-bottom-width: 1px !important;border-bottom-color: #079547 !important;border-bottom-style: solid !important;border-radius: 1px !important;}.vc_custom_1692407949383{border-bottom-width: 1px !important;border-bottom-color: #079547 !important;border-bottom-style: solid !important;border-radius: 1px !important;}.vc_custom_1692407957943{border-bottom-width: 1px !important;border-bottom-color: #079547 !important;border-bottom-style: solid !important;border-radius: 1px !important;}.vc_custom_1692407957943{border-bottom-width: 1px !important;border-bottom-color: #079547 !important;border-bottom-style: solid !important;border-radius: 1px !important;}.vc_custom_1692407970279{border-bottom-width: 1px !important;border-bottom-color: #079547 !important;border-bottom-style: solid !important;border-radius: 1px !important;}.vc_custom_1691846530645{border-right-width: 1px !important;border-left-width: 1px !important;border-left-color: #000000 !important;border-left-style: solid !important;border-right-color: #000000 !important;border-right-style: solid !important;border-radius: 1px !important;}.vc_custom_1691846545469{border-right-width: 1px !important;border-left-width: 1px !important;border-left-color: #000000 !important;border-left-style: solid !important;border-right-color: #000000 !important;border-right-style: solid !important;border-radius: 1px !important;}.vc_custom_1691846563021{border-right-width: 1px !important;border-right-color: #000000 !important;border-right-style: solid !important;border-radius: 1px !important;}.vc_custom_1691846569845{border-right-width: 1px !important;border-right-color: #000000 !important;border-right-style: solid !important;border-radius: 1px !important;}.vc_custom_1691846576949{border-right-width: 1px !important;border-right-color: #000000 !important;border-right-style: solid !important;border-radius: 1px !important;}.vc_custom_1689578812611{margin-top: 50px !important;}.vc_custom_1693569503225{background-image: url(https://farmchemie.yasithawd.com/wp-content/uploads/2023/09/022International-Markets-Sri-Lankan-Market.png?id=3403) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}.vc_custom_1693540250450{background-color: #8d499b !important;}.vc_custom_1695529397280{background-color: #039447 !important;}.vc_custom_1695529390186{background-image: url(https://farmchemie.yasithawd.com/wp-content/uploads/2023/09/011International-Markets-Sri-Lankan-Market.png?id=3404) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}.vc_custom_1695529365330{background-image: url(https://farmchemie.yasithawd.com/wp-content/uploads/2023/09/011International-Markets-Sri-Lankan-Market.png?id=3404) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}.vc_custom_1695529378241{background-color: #039447 !important;}'),(14355,2979,'_wpb_shortcodes_custom_css','.vc_custom_1689577464398{padding-bottom: 50px !important;}.vc_custom_1689577454678{margin-bottom: 50px !important;}.vc_custom_1689574969423{padding-top: 35px !important;padding-bottom: 35px !important;}.vc_custom_1689574984575{padding-top: 35px !important;padding-bottom: 35px !important;}'),(14353,2977,'_wpb_shortcodes_custom_css','.vc_custom_1689577528817{padding-bottom: 50px !important;}.vc_custom_1693451731079{padding-top: 50px !important;padding-bottom: 50px !important;}.vc_custom_1689578794814{padding-top: 50px !important;padding-bottom: 50px !important;}.vc_custom_1689578794814{padding-top: 50px !important;padding-bottom: 50px !important;}.vc_custom_1689577454678{margin-bottom: 50px !important;}.vc_custom_1692407941633{border-bottom-width: 1px !important;border-bottom-color: #079547 !important;border-bottom-style: solid !important;border-radius: 1px !important;}.vc_custom_1692407949383{border-bottom-width: 1px !important;border-bottom-color: #079547 !important;border-bottom-style: solid !important;border-radius: 1px !important;}.vc_custom_1692407957943{border-bottom-width: 1px !important;border-bottom-color: #079547 !important;border-bottom-style: solid !important;border-radius: 1px !important;}.vc_custom_1692407970279{border-bottom-width: 1px !important;border-bottom-color: #079547 !important;border-bottom-style: solid !important;border-radius: 1px !important;}.vc_custom_1691846530645{border-right-width: 1px !important;border-left-width: 1px !important;border-left-color: #000000 !important;border-left-style: solid !important;border-right-color: #000000 !important;border-right-style: solid !important;border-radius: 1px !important;}.vc_custom_1691846545469{border-right-width: 1px !important;border-left-width: 1px !important;border-left-color: #000000 !important;border-left-style: solid !important;border-right-color: #000000 !important;border-right-style: solid !important;border-radius: 1px !important;}.vc_custom_1691846563021{border-right-width: 1px !important;border-right-color: #000000 !important;border-right-style: solid !important;border-radius: 1px !important;}.vc_custom_1691846569845{border-right-width: 1px !important;border-right-color: #000000 !important;border-right-style: solid !important;border-radius: 1px !important;}.vc_custom_1691846576949{border-right-width: 1px !important;border-right-color: #000000 !important;border-right-style: solid !important;border-radius: 1px !important;}.vc_custom_1689578812611{margin-top: 50px !important;}.vc_custom_1693540291208{background-image: url(https://farmchemie.yasithawd.com/wp-content/uploads/2023/09/02International-Markets-Sri-Lankan-Market.png?id=3379) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}.vc_custom_1693540250450{background-color: #8d499b !important;}.vc_custom_1693540116474{background-color: #039447 !important;}.vc_custom_1693540312642{background-image: url(https://farmchemie.yasithawd.com/wp-content/uploads/2023/09/01International-Markets-Sri-Lankan-Market.png?id=3378) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}'),(14356,2980,'_wpb_shortcodes_custom_css','.vc_custom_1689577528817{padding-bottom: 50px !important;}.vc_custom_1689577454678{margin-bottom: 50px !important;}.vc_custom_1689577559805{border-bottom-width: 1px !important;padding-top: 35px !important;padding-bottom: 35px !important;border-bottom-color: #079547 !important;border-bottom-style: solid !important;border-radius: 1px !important;}.vc_custom_1689577609020{border-bottom-width: 1px !important;padding-top: 35px !important;padding-bottom: 35px !important;border-bottom-color: #079547 !important;border-bottom-style: solid !important;border-radius: 1px !important;}'),(14357,2981,'_wp_attached_file','2023/07/Picture6.png'),(14358,2981,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:634;s:6:\"height\";i:134;s:4:\"file\";s:20:\"2023/07/Picture6.png\";s:8:\"filesize\";i:49213;s:5:\"sizes\";a:8:{s:6:\"medium\";a:5:{s:4:\"file\";s:19:\"Picture6-300x63.png\";s:5:\"width\";i:300;s:6:\"height\";i:63;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:13501;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:20:\"Picture6-150x134.png\";s:5:\"width\";i:150;s:6:\"height\";i:134;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:5106;}s:21:\"woocommerce_thumbnail\";a:6:{s:4:\"file\";s:20:\"Picture6-300x134.png\";s:5:\"width\";i:300;s:6:\"height\";i:134;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:18645;s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:5:{s:4:\"file\";s:20:\"Picture6-600x127.png\";s:5:\"width\";i:600;s:6:\"height\";i:127;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:39936;}s:29:\"woocommerce_gallery_thumbnail\";a:5:{s:4:\"file\";s:20:\"Picture6-200x134.png\";s:5:\"width\";i:200;s:6:\"height\";i:134;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:9258;}s:12:\"shop_catalog\";a:5:{s:4:\"file\";s:20:\"Picture6-300x134.png\";s:5:\"width\";i:300;s:6:\"height\";i:134;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:18645;}s:11:\"shop_single\";a:5:{s:4:\"file\";s:20:\"Picture6-600x127.png\";s:5:\"width\";i:600;s:6:\"height\";i:127;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:39936;}s:14:\"shop_thumbnail\";a:5:{s:4:\"file\";s:20:\"Picture6-200x134.png\";s:5:\"width\";i:200;s:6:\"height\";i:134;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:9258;}}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:{}}}'),(14359,2982,'_wp_attached_file','2023/07/Picture7.png'),(14360,2982,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:300;s:6:\"height\";i:115;s:4:\"file\";s:20:\"2023/07/Picture7.png\";s:8:\"filesize\";i:7678;s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:20:\"Picture7-150x115.png\";s:5:\"width\";i:150;s:6:\"height\";i:115;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:13737;}s:29:\"woocommerce_gallery_thumbnail\";a:5:{s:4:\"file\";s:20:\"Picture7-200x115.png\";s:5:\"width\";i:200;s:6:\"height\";i:115;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:16530;}s:14:\"shop_thumbnail\";a:5:{s:4:\"file\";s:20:\"Picture7-200x115.png\";s:5:\"width\";i:200;s:6:\"height\";i:115;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:16530;}}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:{}}}'),(14361,2983,'_wp_attached_file','2023/07/Picture8.png'),(14362,2983,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:546;s:6:\"height\";i:138;s:4:\"file\";s:20:\"2023/07/Picture8.png\";s:8:\"filesize\";i:36845;s:5:\"sizes\";a:6:{s:6:\"medium\";a:5:{s:4:\"file\";s:19:\"Picture8-300x76.png\";s:5:\"width\";i:300;s:6:\"height\";i:76;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:13587;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:20:\"Picture8-150x138.png\";s:5:\"width\";i:150;s:6:\"height\";i:138;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:12009;}s:21:\"woocommerce_thumbnail\";a:6:{s:4:\"file\";s:20:\"Picture8-300x138.png\";s:5:\"width\";i:300;s:6:\"height\";i:138;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:17520;s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:5:{s:4:\"file\";s:20:\"Picture8-200x138.png\";s:5:\"width\";i:200;s:6:\"height\";i:138;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:12700;}s:12:\"shop_catalog\";a:5:{s:4:\"file\";s:20:\"Picture8-300x138.png\";s:5:\"width\";i:300;s:6:\"height\";i:138;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:17520;}s:14:\"shop_thumbnail\";a:5:{s:4:\"file\";s:20:\"Picture8-200x138.png\";s:5:\"width\";i:200;s:6:\"height\";i:138;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:12700;}}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:{}}}'),(14363,2984,'_wp_attached_file','2023/07/Picture9.png'),(14364,2984,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1097;s:6:\"height\";i:170;s:4:\"file\";s:20:\"2023/07/Picture9.png\";s:8:\"filesize\";i:231546;s:5:\"sizes\";a:10:{s:6:\"medium\";a:5:{s:4:\"file\";s:19:\"Picture9-300x46.png\";s:5:\"width\";i:300;s:6:\"height\";i:46;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:22791;}s:5:\"large\";a:5:{s:4:\"file\";s:21:\"Picture9-1024x159.png\";s:5:\"width\";i:1024;s:6:\"height\";i:159;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:180998;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:20:\"Picture9-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:21436;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:20:\"Picture9-768x119.png\";s:5:\"width\";i:768;s:6:\"height\";i:119;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:113986;}s:21:\"woocommerce_thumbnail\";a:6:{s:4:\"file\";s:20:\"Picture9-300x170.png\";s:5:\"width\";i:300;s:6:\"height\";i:170;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:45508;s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:5:{s:4:\"file\";s:19:\"Picture9-600x93.png\";s:5:\"width\";i:600;s:6:\"height\";i:93;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:75953;}s:29:\"woocommerce_gallery_thumbnail\";a:5:{s:4:\"file\";s:20:\"Picture9-200x170.png\";s:5:\"width\";i:200;s:6:\"height\";i:170;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:29839;}s:12:\"shop_catalog\";a:5:{s:4:\"file\";s:20:\"Picture9-300x170.png\";s:5:\"width\";i:300;s:6:\"height\";i:170;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:45508;}s:11:\"shop_single\";a:5:{s:4:\"file\";s:19:\"Picture9-600x93.png\";s:5:\"width\";i:600;s:6:\"height\";i:93;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:75953;}s:14:\"shop_thumbnail\";a:5:{s:4:\"file\";s:20:\"Picture9-200x170.png\";s:5:\"width\";i:200;s:6:\"height\";i:170;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:29839;}}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:{}}}'),(14365,2985,'_wpb_shortcodes_custom_css','.vc_custom_1689577528817{padding-bottom: 50px !important;}.vc_custom_1689577454678{margin-bottom: 50px !important;}.vc_custom_1689577559805{border-bottom-width: 1px !important;padding-top: 35px !important;padding-bottom: 35px !important;border-bottom-color: #079547 !important;border-bottom-style: solid !important;border-radius: 1px !important;}.vc_custom_1689577609020{border-bottom-width: 1px !important;padding-top: 35px !important;padding-bottom: 35px !important;border-bottom-color: #079547 !important;border-bottom-style: solid !important;border-radius: 1px !important;}.vc_custom_1689577609020{border-bottom-width: 1px !important;padding-top: 35px !important;padding-bottom: 35px !important;border-bottom-color: #079547 !important;border-bottom-style: solid !important;border-radius: 1px !important;}.vc_custom_1689577609020{border-bottom-width: 1px !important;padding-top: 35px !important;padding-bottom: 35px !important;border-bottom-color: #079547 !important;border-bottom-style: solid !important;border-radius: 1px !important;}'),(14366,2986,'_wpb_shortcodes_custom_css','.vc_custom_1689577528817{padding-bottom: 50px !important;}.vc_custom_1689577454678{margin-bottom: 50px !important;}.vc_custom_1689577559805{border-bottom-width: 1px !important;padding-top: 35px !important;padding-bottom: 35px !important;border-bottom-color: #079547 !important;border-bottom-style: solid !important;border-radius: 1px !important;}.vc_custom_1689577609020{border-bottom-width: 1px !important;padding-top: 35px !important;padding-bottom: 35px !important;border-bottom-color: #079547 !important;border-bottom-style: solid !important;border-radius: 1px !important;}.vc_custom_1689577609020{border-bottom-width: 1px !important;padding-top: 35px !important;padding-bottom: 35px !important;border-bottom-color: #079547 !important;border-bottom-style: solid !important;border-radius: 1px !important;}.vc_custom_1689577609020{border-bottom-width: 1px !important;padding-top: 35px !important;padding-bottom: 35px !important;border-bottom-color: #079547 !important;border-bottom-style: solid !important;border-radius: 1px !important;}'),(14367,2987,'_wpb_shortcodes_custom_css','.vc_custom_1689577528817{padding-bottom: 50px !important;}.vc_custom_1689578783264{padding-top: 50px !important;padding-bottom: 50px !important;}.vc_custom_1689578794814{padding-top: 50px !important;padding-bottom: 50px !important;}.vc_custom_1689578794814{padding-top: 50px !important;padding-bottom: 50px !important;}.vc_custom_1689577454678{margin-bottom: 50px !important;}.vc_custom_1689577559805{border-bottom-width: 1px !important;padding-top: 35px !important;padding-bottom: 35px !important;border-bottom-color: #079547 !important;border-bottom-style: solid !important;border-radius: 1px !important;}.vc_custom_1689577609020{border-bottom-width: 1px !important;padding-top: 35px !important;padding-bottom: 35px !important;border-bottom-color: #079547 !important;border-bottom-style: solid !important;border-radius: 1px !important;}.vc_custom_1689577609020{border-bottom-width: 1px !important;padding-top: 35px !important;padding-bottom: 35px !important;border-bottom-color: #079547 !important;border-bottom-style: solid !important;border-radius: 1px !important;}.vc_custom_1689577609020{border-bottom-width: 1px !important;padding-top: 35px !important;padding-bottom: 35px !important;border-bottom-color: #079547 !important;border-bottom-style: solid !important;border-radius: 1px !important;}.vc_custom_1689578812611{margin-top: 50px !important;}.vc_custom_1689578812611{margin-top: 50px !important;}'),(14368,2988,'_wpb_shortcodes_custom_css','.vc_custom_1689577528817{padding-bottom: 50px !important;}.vc_custom_1689578783264{padding-top: 50px !important;padding-bottom: 50px !important;}.vc_custom_1689578794814{padding-top: 50px !important;padding-bottom: 50px !important;}.vc_custom_1689578794814{padding-top: 50px !important;padding-bottom: 50px !important;}.vc_custom_1689577454678{margin-bottom: 50px !important;}.vc_custom_1689577559805{border-bottom-width: 1px !important;padding-top: 35px !important;padding-bottom: 35px !important;border-bottom-color: #079547 !important;border-bottom-style: solid !important;border-radius: 1px !important;}.vc_custom_1689577609020{border-bottom-width: 1px !important;padding-top: 35px !important;padding-bottom: 35px !important;border-bottom-color: #079547 !important;border-bottom-style: solid !important;border-radius: 1px !important;}.vc_custom_1689577609020{border-bottom-width: 1px !important;padding-top: 35px !important;padding-bottom: 35px !important;border-bottom-color: #079547 !important;border-bottom-style: solid !important;border-radius: 1px !important;}.vc_custom_1689577609020{border-bottom-width: 1px !important;padding-top: 35px !important;padding-bottom: 35px !important;border-bottom-color: #079547 !important;border-bottom-style: solid !important;border-radius: 1px !important;}.vc_custom_1689578812611{margin-top: 50px !important;}.vc_custom_1689578812611{margin-top: 50px !important;}'),(14369,2989,'_wpb_shortcodes_custom_css','.vc_custom_1689577528817{padding-bottom: 50px !important;}.vc_custom_1689578783264{padding-top: 50px !important;padding-bottom: 50px !important;}.vc_custom_1689578794814{padding-top: 50px !important;padding-bottom: 50px !important;}.vc_custom_1689578794814{padding-top: 50px !important;padding-bottom: 50px !important;}.vc_custom_1689577454678{margin-bottom: 50px !important;}.vc_custom_1689577559805{border-bottom-width: 1px !important;padding-top: 35px !important;padding-bottom: 35px !important;border-bottom-color: #079547 !important;border-bottom-style: solid !important;border-radius: 1px !important;}.vc_custom_1689577609020{border-bottom-width: 1px !important;padding-top: 35px !important;padding-bottom: 35px !important;border-bottom-color: #079547 !important;border-bottom-style: solid !important;border-radius: 1px !important;}.vc_custom_1689577609020{border-bottom-width: 1px !important;padding-top: 35px !important;padding-bottom: 35px !important;border-bottom-color: #079547 !important;border-bottom-style: solid !important;border-radius: 1px !important;}.vc_custom_1689577609020{border-bottom-width: 1px !important;padding-top: 35px !important;padding-bottom: 35px !important;border-bottom-color: #079547 !important;border-bottom-style: solid !important;border-radius: 1px !important;}.vc_custom_1689578812611{margin-top: 50px !important;}.vc_custom_1689578812611{margin-top: 50px !important;}'),(14370,2990,'_edit_last','1'),(14371,2990,'_edit_lock','1692455765:1'),(14372,2990,'_wp_page_template','default'),(14373,2990,'_wpb_vc_js_status','true'),(14374,2991,'_wpb_shortcodes_custom_css','.vc_custom_1689579703311{padding-top: 50px !important;padding-bottom: 50px !important;}.vc_custom_1689579703311{padding-top: 50px !important;padding-bottom: 50px !important;}'),(14375,2990,'_dt_sidebar_position','disabled'),(14376,2990,'_dt_sidebar_widgetarea_id','sidebar_1'),(14377,2990,'_dt_sidebar_hide_on_mobile','0'),(14378,2990,'_dt_footer_show','1'),(14379,2990,'_dt_footer_widgetarea_id','sidebar_2'),(14380,2990,'_dt_footer_hide_on_mobile','0'),(14381,2990,'_dt_header_title','fancy'),(14382,2990,'_dt_header_background','normal'),(14383,2990,'_dt_header_background_below_slideshow','disabled'),(14384,2990,'_dt_header_transparent_bg_color_scheme','light'),(14385,2990,'_dt_header_transparent_top_bar_bg_color','#ffffff'),(14386,2990,'_dt_header_transparent_top_bar_bg_opacity','25'),(14387,2990,'_dt_header_transparent_bg_color','#000000'),(14388,2990,'_dt_header_transparent_bg_opacity','50'),(14389,2990,'_dt_header_disabled_background','normal'),(14390,2990,'_dt_header_disabled_transparent_bg_color_scheme','light'),(14391,2990,'_dt_header_disabled_transparent_top_bar_bg_color','#ffffff'),(14392,2990,'_dt_header_disabled_transparent_top_bar_bg_opacity','25'),(14393,2990,'_dt_header_disabled_transparent_bg_color','#000000'),(14394,2990,'_dt_header_disabled_transparent_bg_opacity','50'),(14395,2990,'_dt_page_overrides_top_margin',''),(14396,2990,'_dt_page_overrides_right_margin',''),(14397,2990,'_dt_page_overrides_bottom_margin',''),(14398,2990,'_dt_page_overrides_left_margin',''),(14399,2990,'_dt_mobile_page_padding_top',''),(14400,2990,'_dt_mobile_page_padding_right',''),(14401,2990,'_dt_mobile_page_padding_bottom',''),(14402,2990,'_dt_mobile_page_padding_left',''),(14403,2990,'_dt_fancy_header_layout_heading',''),(14404,2990,'_dt_fancy_header_title_aligment','all_left'),(14405,2990,'_dt_fancy_header_height','300'),(14406,2990,'_dt_fancy_header_padding-top','0px'),(14407,2990,'_dt_fancy_header_padding-bottom','0px'),(14408,2990,'_dt_fancy_header_breadcrumbs_heading',''),(14409,2990,'_dt_fancy_header_breadcrumbs','disabled'),(14410,2990,'_dt_fancy_header_breadcrumbs_text_color','#ffffff'),(14411,2990,'_dt_fancy_header_breadcrumbs_bg_color','disabled'),(14412,2990,'_dt_fancy_header_title_heading',''),(14413,2990,'_dt_fancy_header_title_mode','generic'),(14414,2990,'_dt_fancy_header_title',''),(14415,2990,'_dt_fancy_header_title_font_size','36'),(14416,2990,'_dt_fancy_header_title_line_height','36'),(14417,2990,'_dt_fancy_header_text_transform','none'),(14418,2990,'_dt_fancy_header_title_color_mode','color'),(14419,2990,'_dt_fancy_header_title_color','#ffffff'),(14420,2990,'_dt_fancy_header_subtitle_heading',''),(14421,2990,'_dt_fancy_header_subtitle',''),(14422,2990,'_dt_fancy_header_subtitle_font_size','18'),(14423,2990,'_dt_fancy_header_subtitle_line_height','26'),(14424,2990,'_dt_fancy_header_subtitle_text_transform','none'),(14425,2990,'_dt_fancy_header_subtitle_color_mode','color'),(14426,2990,'_dt_fancy_header_subtitle_color','#ffffff'),(14427,2990,'_dt_fancy_header_bg_heading',''),(14428,2990,'_dt_fancy_header_bg_color','#079547'),(14429,2990,'_dt_fancy_header_bg_image_origin','custom'),(14430,2990,'_dt_fancy_header_bg_image','a:1:{i:0;i:3287;}'),(14431,2990,'_dt_fancy_header_bg_repeat','no-repeat'),(14432,2990,'_dt_fancy_header_bg_position_x','center'),(14433,2990,'_dt_fancy_header_bg_position_y','center'),(14434,2990,'_dt_fancy_header_bg_fullscreen','1'),(14435,2990,'_dt_fancy_header_bg_overlay','0'),(14436,2990,'_dt_fancy_header_overlay_color','#000'),(14437,2990,'_dt_fancy_header_bg_overlay_opacity','50'),(14438,2990,'_dt_fancy_header_scroll_effect','default'),(14439,2990,'_dt_fancy_header_bg_parallax','0.5'),(14440,2990,'_dt_fancy_header_responsiveness_heading',''),(14441,2990,'_dt_fancy_header_responsiveness','enabled'),(14442,2990,'_dt_fancy_header_responsiveness_switch','778px'),(14443,2990,'_dt_fancy_header_responsive_height','70'),(14444,2990,'_dt_fancy_header_responsive_font_size','30'),(14445,2990,'_dt_fancy_header_responsive_title_line_height','38'),(14446,2990,'_dt_fancy_header_responsive_subtitle_font_size','20'),(14447,2990,'_dt_fancy_header_responsive_subtitle_line_height','28'),(14448,2990,'_dt_fancy_header_responsive_breadcrumbs','disabled'),(14449,2990,'_dt_microsite_primary_menu',''),(14450,2990,'_dt_microsite_split_left_menu',''),(14451,2990,'_dt_microsite_split_right_menu',''),(14452,2990,'_dt_microsite_mobile_menu',''),(14453,2990,'the7_fancy_title_css','.fancy-header {\n  background-image: url(\'https://farmchemie.yasithawd.com/wp-content/uploads/2023/08/Medivesta-Banner_1.png\');\n  background-repeat: no-repeat;\n  background-position: center center;\n  background-size: cover;\n  background-color: #079547;\n}\n.mobile-false .fancy-header {\n  background-attachment: scroll;\n}\n.fancy-header .wf-wrap {\n  min-height: 300px;\n  padding-top: 0px;\n  padding-bottom: 0px;\n}\n.fancy-header .fancy-title {\n  font-size: 36px;\n  line-height: 36px;\n  color: #ffffff;\n  text-transform: none;\n}\n.fancy-header .fancy-subtitle {\n  font-size: 18px;\n  line-height: 26px;\n  color: #ffffff;\n  text-transform: none;\n}\n.fancy-header .breadcrumbs {\n  color: #ffffff;\n}\n.fancy-header-overlay {\n  background: rgba(0,0,0,0.5);\n}\n@media screen and (max-width: 778px) {\n  .fancy-header .wf-wrap {\n    min-height: 70px;\n  }\n  .fancy-header .fancy-title {\n    font-size: 30px;\n    line-height: 38px;\n  }\n  .fancy-header .fancy-subtitle {\n    font-size: 20px;\n    line-height: 28px;\n  }\n  .fancy-header.breadcrumbs-mobile-off .breadcrumbs {\n    display: none;\n  }\n  #fancy-header > .wf-wrap {\n    flex-flow: column wrap;\n    align-items: center;\n    justify-content: center;\n    padding-bottom: 0px !important;\n  }\n  .fancy-header.title-left .breadcrumbs {\n    text-align: center;\n    float: none;\n  }\n  .breadcrumbs {\n    margin-bottom: 10px;\n  }\n  .breadcrumbs.breadcrumbs-bg {\n    margin-top: 10px;\n  }\n  .fancy-header.title-right .breadcrumbs {\n    margin: 10px 0 10px 0;\n  }\n  #fancy-header .hgroup,\n  #fancy-header .breadcrumbs {\n    text-align: center;\n  }\n  .fancy-header .hgroup {\n    padding-bottom: 5px;\n  }\n  .breadcrumbs-off .hgroup {\n    padding-bottom: 5px;\n  }\n  .title-right .hgroup {\n    padding: 0 0 5px 0;\n  }\n  .title-right.breadcrumbs-off .hgroup {\n    padding-top: 5px;\n  }\n  .title-left.disabled-bg .breadcrumbs {\n    margin-bottom: 0;\n  }\n}\n'),(14454,2992,'_wpb_shortcodes_custom_css','.vc_custom_1689579703311{padding-top: 50px !important;padding-bottom: 50px !important;}.vc_custom_1689579703311{padding-top: 50px !important;padding-bottom: 50px !important;}.vc_custom_1689579850874{margin-top: 35px !important;margin-bottom: 35px !important;}'),(14455,2993,'_wpb_shortcodes_custom_css','.vc_custom_1689579703311{padding-top: 50px !important;padding-bottom: 50px !important;}.vc_custom_1689579703311{padding-top: 50px !important;padding-bottom: 50px !important;}.vc_custom_1689579850874{margin-top: 35px !important;margin-bottom: 35px !important;}'),(14456,2990,'_wpb_shortcodes_custom_css','.vc_custom_1689579703311{padding-top: 50px !important;padding-bottom: 50px !important;}.vc_custom_1689579703311{padding-top: 50px !important;padding-bottom: 50px !important;}.vc_custom_1689579850874{margin-top: 35px !important;margin-bottom: 35px !important;}'),(14457,2911,'_wp_old_date','2023-07-11'),(14458,2422,'_wp_old_date','2023-07-11'),(16974,3352,'_manage_stock','no'),(14981,3035,'_wp_attached_file','2023/08/LARGE-ANIMAL.png'),(15040,3039,'_edit_lock','1695090548:1'),(14464,2935,'_wp_old_date','2023-07-11'),(14465,2417,'_wp_old_date','2023-07-11'),(14466,2418,'_wp_old_date','2023-07-11'),(14467,2419,'_wp_old_date','2023-07-11'),(14468,2420,'_wp_old_date','2023-07-11'),(14469,2421,'_wp_old_date','2023-07-11'),(14470,39,'_wp_old_date','2023-07-11'),(14471,2994,'_edit_last','1'),(14472,2994,'_edit_lock','1692455764:1'),(14473,2994,'_wp_page_template','default'),(14474,2994,'_wpb_vc_js_status','true'),(14475,2995,'_wpb_shortcodes_custom_css','.vc_custom_1689580076103{padding-top: 50px !important;padding-bottom: 50px !important;}'),(14476,2994,'_dt_sidebar_position','disabled'),(14477,2994,'_dt_sidebar_widgetarea_id','sidebar_1'),(14478,2994,'_dt_sidebar_hide_on_mobile','0'),(14479,2994,'_dt_footer_show','1'),(14480,2994,'_dt_footer_widgetarea_id','sidebar_2'),(14481,2994,'_dt_footer_hide_on_mobile','0'),(14482,2994,'_dt_header_title','fancy'),(14483,2994,'_dt_header_background','normal'),(14484,2994,'_dt_header_background_below_slideshow','disabled'),(14485,2994,'_dt_header_transparent_bg_color_scheme','light'),(14486,2994,'_dt_header_transparent_top_bar_bg_color','#ffffff'),(14487,2994,'_dt_header_transparent_top_bar_bg_opacity','25'),(14488,2994,'_dt_header_transparent_bg_color','#000000'),(14489,2994,'_dt_header_transparent_bg_opacity','50'),(14490,2994,'_dt_header_disabled_background','normal'),(14491,2994,'_dt_header_disabled_transparent_bg_color_scheme','light'),(14492,2994,'_dt_header_disabled_transparent_top_bar_bg_color','#ffffff'),(14493,2994,'_dt_header_disabled_transparent_top_bar_bg_opacity','25'),(14494,2994,'_dt_header_disabled_transparent_bg_color','#000000'),(14495,2994,'_dt_header_disabled_transparent_bg_opacity','50'),(14496,2994,'_dt_page_overrides_top_margin',''),(14497,2994,'_dt_page_overrides_right_margin',''),(14498,2994,'_dt_page_overrides_bottom_margin',''),(14499,2994,'_dt_page_overrides_left_margin',''),(14500,2994,'_dt_mobile_page_padding_top',''),(14501,2994,'_dt_mobile_page_padding_right',''),(14502,2994,'_dt_mobile_page_padding_bottom',''),(14503,2994,'_dt_mobile_page_padding_left',''),(14504,2994,'_dt_fancy_header_layout_heading',''),(14505,2994,'_dt_fancy_header_title_aligment','left'),(14506,2994,'_dt_fancy_header_height','300'),(14507,2994,'_dt_fancy_header_padding-top','0px'),(14508,2994,'_dt_fancy_header_padding-bottom','0px'),(14509,2994,'_dt_fancy_header_breadcrumbs_heading',''),(14510,2994,'_dt_fancy_header_breadcrumbs','disabled'),(14511,2994,'_dt_fancy_header_breadcrumbs_text_color','#ffffff'),(14512,2994,'_dt_fancy_header_breadcrumbs_bg_color','disabled'),(14513,2994,'_dt_fancy_header_title_heading',''),(14514,2994,'_dt_fancy_header_title_mode','generic'),(14515,2994,'_dt_fancy_header_title',''),(14516,2994,'_dt_fancy_header_title_font_size','36'),(14517,2994,'_dt_fancy_header_title_line_height','36'),(14518,2994,'_dt_fancy_header_text_transform','none'),(14519,2994,'_dt_fancy_header_title_color_mode','color'),(14520,2994,'_dt_fancy_header_title_color','#ffffff'),(14521,2994,'_dt_fancy_header_subtitle_heading',''),(14522,2994,'_dt_fancy_header_subtitle',''),(14523,2994,'_dt_fancy_header_subtitle_font_size','18'),(14524,2994,'_dt_fancy_header_subtitle_line_height','26'),(14525,2994,'_dt_fancy_header_subtitle_text_transform','none'),(14526,2994,'_dt_fancy_header_subtitle_color_mode','color'),(14527,2994,'_dt_fancy_header_subtitle_color','#ffffff'),(14528,2994,'_dt_fancy_header_bg_heading',''),(14529,2994,'_dt_fancy_header_bg_color','#079547'),(14530,2994,'_dt_fancy_header_bg_image_origin','custom'),(14531,2994,'_dt_fancy_header_bg_image','a:1:{i:0;i:3292;}'),(14532,2994,'_dt_fancy_header_bg_repeat','no-repeat'),(14533,2994,'_dt_fancy_header_bg_position_x','left'),(14534,2994,'_dt_fancy_header_bg_position_y','center'),(14535,2994,'_dt_fancy_header_bg_fullscreen','1'),(14536,2994,'_dt_fancy_header_bg_overlay','0'),(14537,2994,'_dt_fancy_header_overlay_color','#000'),(14538,2994,'_dt_fancy_header_bg_overlay_opacity','50'),(14539,2994,'_dt_fancy_header_scroll_effect','default'),(14540,2994,'_dt_fancy_header_bg_parallax','0.5'),(14541,2994,'_dt_fancy_header_responsiveness_heading',''),(14542,2994,'_dt_fancy_header_responsiveness','enabled'),(14543,2994,'_dt_fancy_header_responsiveness_switch','778px'),(14544,2994,'_dt_fancy_header_responsive_height','70'),(14545,2994,'_dt_fancy_header_responsive_font_size','30'),(14546,2994,'_dt_fancy_header_responsive_title_line_height','38'),(14547,2994,'_dt_fancy_header_responsive_subtitle_font_size','20'),(14548,2994,'_dt_fancy_header_responsive_subtitle_line_height','28'),(14549,2994,'_dt_fancy_header_responsive_breadcrumbs','disabled'),(14550,2994,'_dt_microsite_primary_menu',''),(14551,2994,'_dt_microsite_split_left_menu',''),(14552,2994,'_dt_microsite_split_right_menu',''),(14553,2994,'_dt_microsite_mobile_menu',''),(14554,2994,'the7_fancy_title_css','.fancy-header {\n  background-image: url(\'https://farmchemie.yasithawd.com/wp-content/uploads/2023/08/Technical-Service_1.png\');\n  background-repeat: no-repeat;\n  background-position: left center;\n  background-size: cover;\n  background-color: #079547;\n}\n.mobile-false .fancy-header {\n  background-attachment: scroll;\n}\n.fancy-header .wf-wrap {\n  min-height: 300px;\n  padding-top: 0px;\n  padding-bottom: 0px;\n}\n.fancy-header .fancy-title {\n  font-size: 36px;\n  line-height: 36px;\n  color: #ffffff;\n  text-transform: none;\n}\n.fancy-header .fancy-subtitle {\n  font-size: 18px;\n  line-height: 26px;\n  color: #ffffff;\n  text-transform: none;\n}\n.fancy-header .breadcrumbs {\n  color: #ffffff;\n}\n.fancy-header-overlay {\n  background: rgba(0,0,0,0.5);\n}\n@media screen and (max-width: 778px) {\n  .fancy-header .wf-wrap {\n    min-height: 70px;\n  }\n  .fancy-header .fancy-title {\n    font-size: 30px;\n    line-height: 38px;\n  }\n  .fancy-header .fancy-subtitle {\n    font-size: 20px;\n    line-height: 28px;\n  }\n  .fancy-header.breadcrumbs-mobile-off .breadcrumbs {\n    display: none;\n  }\n  #fancy-header > .wf-wrap {\n    flex-flow: column wrap;\n    align-items: center;\n    justify-content: center;\n    padding-bottom: 0px !important;\n  }\n  .fancy-header.title-left .breadcrumbs {\n    text-align: center;\n    float: none;\n  }\n  .breadcrumbs {\n    margin-bottom: 10px;\n  }\n  .breadcrumbs.breadcrumbs-bg {\n    margin-top: 10px;\n  }\n  .fancy-header.title-right .breadcrumbs {\n    margin: 10px 0 10px 0;\n  }\n  #fancy-header .hgroup,\n  #fancy-header .breadcrumbs {\n    text-align: center;\n  }\n  .fancy-header .hgroup {\n    padding-bottom: 5px;\n  }\n  .breadcrumbs-off .hgroup {\n    padding-bottom: 5px;\n  }\n  .title-right .hgroup {\n    padding: 0 0 5px 0;\n  }\n  .title-right.breadcrumbs-off .hgroup {\n    padding-top: 5px;\n  }\n  .title-left.disabled-bg .breadcrumbs {\n    margin-bottom: 0;\n  }\n}\n'),(14555,2994,'_wpb_shortcodes_custom_css','.vc_custom_1689580076103{padding-top: 50px !important;padding-bottom: 50px !important;}'),(14556,2996,'_edit_last','1'),(14557,2996,'_wp_page_template','default'),(14558,2996,'_wpb_vc_js_status','true'),(14559,2997,'_wpb_shortcodes_custom_css','.vc_custom_1689580294399{padding-top: 50px !important;padding-bottom: 50px !important;}'),(14560,2996,'_dt_sidebar_position','disabled'),(14561,2996,'_dt_sidebar_widgetarea_id','sidebar_1'),(14562,2996,'_dt_sidebar_hide_on_mobile','0'),(14563,2996,'_dt_footer_show','1'),(14564,2996,'_dt_footer_widgetarea_id','sidebar_2'),(14565,2996,'_dt_footer_hide_on_mobile','0'),(14566,2996,'_dt_header_title','fancy'),(14567,2996,'_dt_header_background','normal'),(14568,2996,'_dt_header_background_below_slideshow','disabled'),(14569,2996,'_dt_header_transparent_bg_color_scheme','light'),(14570,2996,'_dt_header_transparent_top_bar_bg_color','#ffffff'),(14571,2996,'_dt_header_transparent_top_bar_bg_opacity','25'),(14572,2996,'_dt_header_transparent_bg_color','#000000'),(14573,2996,'_dt_header_transparent_bg_opacity','50'),(14574,2996,'_dt_header_disabled_background','normal'),(14575,2996,'_dt_header_disabled_transparent_bg_color_scheme','light'),(14576,2996,'_dt_header_disabled_transparent_top_bar_bg_color','#ffffff'),(14577,2996,'_dt_header_disabled_transparent_top_bar_bg_opacity','25'),(14578,2996,'_dt_header_disabled_transparent_bg_color','#000000'),(14579,2996,'_dt_header_disabled_transparent_bg_opacity','50'),(14580,2996,'_dt_page_overrides_top_margin',''),(14581,2996,'_dt_page_overrides_right_margin',''),(14582,2996,'_dt_page_overrides_bottom_margin',''),(14583,2996,'_dt_page_overrides_left_margin',''),(14584,2996,'_dt_mobile_page_padding_top',''),(14585,2996,'_dt_mobile_page_padding_right',''),(14586,2996,'_dt_mobile_page_padding_bottom',''),(14587,2996,'_dt_mobile_page_padding_left',''),(14588,2996,'_dt_fancy_header_layout_heading',''),(14589,2996,'_dt_fancy_header_title_aligment','left'),(14590,2996,'_dt_fancy_header_height','300'),(14591,2996,'_dt_fancy_header_padding-top','0px'),(14592,2996,'_dt_fancy_header_padding-bottom','0px'),(14593,2996,'_dt_fancy_header_breadcrumbs_heading',''),(14594,2996,'_dt_fancy_header_breadcrumbs','disabled'),(14595,2996,'_dt_fancy_header_breadcrumbs_text_color','#ffffff'),(14596,2996,'_dt_fancy_header_breadcrumbs_bg_color','disabled'),(14597,2996,'_dt_fancy_header_title_heading',''),(14598,2996,'_dt_fancy_header_title_mode','generic'),(14599,2996,'_dt_fancy_header_title',''),(14600,2996,'_dt_fancy_header_title_font_size','36'),(14601,2996,'_dt_fancy_header_title_line_height','36'),(14602,2996,'_dt_fancy_header_text_transform','none'),(14603,2996,'_dt_fancy_header_title_color_mode','color'),(14604,2996,'_dt_fancy_header_title_color','#ffffff'),(14605,2996,'_dt_fancy_header_subtitle_heading',''),(14606,2996,'_dt_fancy_header_subtitle',''),(14607,2996,'_dt_fancy_header_subtitle_font_size','18'),(14608,2996,'_dt_fancy_header_subtitle_line_height','26'),(14609,2996,'_dt_fancy_header_subtitle_text_transform','none'),(14610,2996,'_dt_fancy_header_subtitle_color_mode','color'),(14611,2996,'_dt_fancy_header_subtitle_color','#ffffff'),(14612,2996,'_dt_fancy_header_bg_heading',''),(14613,2996,'_dt_fancy_header_bg_color','#079547'),(14614,2996,'_dt_fancy_header_bg_image_origin','custom'),(14615,2996,'_dt_fancy_header_bg_image','a:1:{i:0;i:3290;}'),(14616,2996,'_dt_fancy_header_bg_repeat','no-repeat'),(14617,2996,'_dt_fancy_header_bg_position_x','center'),(14618,2996,'_dt_fancy_header_bg_position_y','center'),(14619,2996,'_dt_fancy_header_bg_fullscreen','1'),(14620,2996,'_dt_fancy_header_bg_overlay','0'),(14621,2996,'_dt_fancy_header_overlay_color','#000'),(14622,2996,'_dt_fancy_header_bg_overlay_opacity','50'),(14623,2996,'_dt_fancy_header_scroll_effect','default'),(14624,2996,'_dt_fancy_header_bg_parallax','0.5'),(14625,2996,'_dt_fancy_header_responsiveness_heading',''),(14626,2996,'_dt_fancy_header_responsiveness','enabled'),(14627,2996,'_dt_fancy_header_responsiveness_switch','778px'),(14628,2996,'_dt_fancy_header_responsive_height','70'),(14629,2996,'_dt_fancy_header_responsive_font_size','30'),(14630,2996,'_dt_fancy_header_responsive_title_line_height','38'),(14631,2996,'_dt_fancy_header_responsive_subtitle_font_size','20'),(14632,2996,'_dt_fancy_header_responsive_subtitle_line_height','28'),(14633,2996,'_dt_fancy_header_responsive_breadcrumbs','disabled'),(14634,2996,'_dt_microsite_primary_menu',''),(14635,2996,'_dt_microsite_split_left_menu',''),(14636,2996,'_dt_microsite_split_right_menu',''),(14637,2996,'_dt_microsite_mobile_menu',''),(14638,2996,'the7_fancy_title_css','.fancy-header {\n  background-image: url(\'https://farmchemie.yasithawd.com/wp-content/uploads/2023/08/Vaccination-Service_1.png\');\n  background-repeat: no-repeat;\n  background-position: center center;\n  background-size: cover;\n  background-color: #079547;\n}\n.mobile-false .fancy-header {\n  background-attachment: scroll;\n}\n.fancy-header .wf-wrap {\n  min-height: 300px;\n  padding-top: 0px;\n  padding-bottom: 0px;\n}\n.fancy-header .fancy-title {\n  font-size: 36px;\n  line-height: 36px;\n  color: #ffffff;\n  text-transform: none;\n}\n.fancy-header .fancy-subtitle {\n  font-size: 18px;\n  line-height: 26px;\n  color: #ffffff;\n  text-transform: none;\n}\n.fancy-header .breadcrumbs {\n  color: #ffffff;\n}\n.fancy-header-overlay {\n  background: rgba(0,0,0,0.5);\n}\n@media screen and (max-width: 778px) {\n  .fancy-header .wf-wrap {\n    min-height: 70px;\n  }\n  .fancy-header .fancy-title {\n    font-size: 30px;\n    line-height: 38px;\n  }\n  .fancy-header .fancy-subtitle {\n    font-size: 20px;\n    line-height: 28px;\n  }\n  .fancy-header.breadcrumbs-mobile-off .breadcrumbs {\n    display: none;\n  }\n  #fancy-header > .wf-wrap {\n    flex-flow: column wrap;\n    align-items: center;\n    justify-content: center;\n    padding-bottom: 0px !important;\n  }\n  .fancy-header.title-left .breadcrumbs {\n    text-align: center;\n    float: none;\n  }\n  .breadcrumbs {\n    margin-bottom: 10px;\n  }\n  .breadcrumbs.breadcrumbs-bg {\n    margin-top: 10px;\n  }\n  .fancy-header.title-right .breadcrumbs {\n    margin: 10px 0 10px 0;\n  }\n  #fancy-header .hgroup,\n  #fancy-header .breadcrumbs {\n    text-align: center;\n  }\n  .fancy-header .hgroup {\n    padding-bottom: 5px;\n  }\n  .breadcrumbs-off .hgroup {\n    padding-bottom: 5px;\n  }\n  .title-right .hgroup {\n    padding: 0 0 5px 0;\n  }\n  .title-right.breadcrumbs-off .hgroup {\n    padding-top: 5px;\n  }\n  .title-left.disabled-bg .breadcrumbs {\n    margin-bottom: 0;\n  }\n}\n'),(14639,2996,'_edit_lock','1693468335:1'),(14640,2996,'_wpb_shortcodes_custom_css','.vc_custom_1689580294399{padding-top: 50px !important;padding-bottom: 50px !important;}.vc_custom_1691129087062{border-top-width: 1px !important;border-top-color: #079547 !important;border-top-style: solid !important;border-radius: 1px !important;}.vc_custom_1692423054521{border-top-width: 1px !important;border-top-color: #079547 !important;border-top-style: solid !important;border-radius: 1px !important;}.vc_custom_1692423045746{border-top-width: 1px !important;border-top-color: #079547 !important;border-top-style: solid !important;border-radius: 1px !important;}.vc_custom_1692423061906{border-top-width: 1px !important;border-top-color: #079547 !important;border-top-style: solid !important;border-radius: 1px !important;}.vc_custom_1692423068642{border-top-width: 1px !important;border-top-color: #079547 !important;border-top-style: solid !important;border-radius: 1px !important;}.vc_custom_1692423075811{border-top-width: 1px !important;border-top-color: #079547 !important;border-top-style: solid !important;border-radius: 1px !important;}'),(14641,2998,'_edit_last','1'),(14642,2998,'_edit_lock','1692455764:1'),(14643,2998,'_wp_page_template','default'),(14644,2998,'_wpb_vc_js_status','true'),(14645,2999,'_wpb_shortcodes_custom_css','.vc_custom_1689580474694{padding-top: 50px !important;padding-bottom: 50px !important;}'),(14646,2998,'_wpb_shortcodes_custom_css','.vc_custom_1689580474694{padding-top: 50px !important;padding-bottom: 50px !important;}'),(14647,2998,'_dt_sidebar_position','disabled'),(14648,2998,'_dt_sidebar_widgetarea_id','sidebar_1'),(14649,2998,'_dt_sidebar_hide_on_mobile','0'),(14650,2998,'_dt_footer_show','1'),(14651,2998,'_dt_footer_widgetarea_id','sidebar_2'),(14652,2998,'_dt_footer_hide_on_mobile','0'),(14653,2998,'_dt_header_title','fancy'),(14654,2998,'_dt_header_background','normal'),(14655,2998,'_dt_header_background_below_slideshow','disabled'),(14656,2998,'_dt_header_transparent_bg_color_scheme','light'),(14657,2998,'_dt_header_transparent_top_bar_bg_color','#ffffff'),(14658,2998,'_dt_header_transparent_top_bar_bg_opacity','25'),(14659,2998,'_dt_header_transparent_bg_color','#000000'),(14660,2998,'_dt_header_transparent_bg_opacity','50'),(14661,2998,'_dt_header_disabled_background','normal'),(14662,2998,'_dt_header_disabled_transparent_bg_color_scheme','light'),(14663,2998,'_dt_header_disabled_transparent_top_bar_bg_color','#ffffff'),(14664,2998,'_dt_header_disabled_transparent_top_bar_bg_opacity','25'),(14665,2998,'_dt_header_disabled_transparent_bg_color','#000000'),(14666,2998,'_dt_header_disabled_transparent_bg_opacity','50'),(14667,2998,'_dt_page_overrides_top_margin',''),(14668,2998,'_dt_page_overrides_right_margin',''),(14669,2998,'_dt_page_overrides_bottom_margin',''),(14670,2998,'_dt_page_overrides_left_margin',''),(14671,2998,'_dt_mobile_page_padding_top',''),(14672,2998,'_dt_mobile_page_padding_right',''),(14673,2998,'_dt_mobile_page_padding_bottom',''),(14674,2998,'_dt_mobile_page_padding_left',''),(14675,2998,'_dt_fancy_header_layout_heading',''),(14676,2998,'_dt_fancy_header_title_aligment','left'),(14677,2998,'_dt_fancy_header_height','300'),(14678,2998,'_dt_fancy_header_padding-top','0px'),(14679,2998,'_dt_fancy_header_padding-bottom','0px'),(14680,2998,'_dt_fancy_header_breadcrumbs_heading',''),(14681,2998,'_dt_fancy_header_breadcrumbs','disabled'),(14682,2998,'_dt_fancy_header_breadcrumbs_text_color','#ffffff'),(14683,2998,'_dt_fancy_header_breadcrumbs_bg_color','disabled'),(14684,2998,'_dt_fancy_header_title_heading',''),(14685,2998,'_dt_fancy_header_title_mode','generic'),(14686,2998,'_dt_fancy_header_title',''),(14687,2998,'_dt_fancy_header_title_font_size','36'),(14688,2998,'_dt_fancy_header_title_line_height','36'),(14689,2998,'_dt_fancy_header_text_transform','none'),(14690,2998,'_dt_fancy_header_title_color_mode','color'),(14691,2998,'_dt_fancy_header_title_color','#ffffff'),(14692,2998,'_dt_fancy_header_subtitle_heading',''),(14693,2998,'_dt_fancy_header_subtitle',''),(14694,2998,'_dt_fancy_header_subtitle_font_size','18'),(14695,2998,'_dt_fancy_header_subtitle_line_height','26'),(14696,2998,'_dt_fancy_header_subtitle_text_transform','none'),(14697,2998,'_dt_fancy_header_subtitle_color_mode','color'),(14698,2998,'_dt_fancy_header_subtitle_color','#ffffff'),(14699,2998,'_dt_fancy_header_bg_heading',''),(14700,2998,'_dt_fancy_header_bg_color','#079547'),(14701,2998,'_dt_fancy_header_bg_image_origin','custom'),(14702,2998,'_dt_fancy_header_bg_image','a:1:{i:0;i:3293;}'),(14703,2998,'_dt_fancy_header_bg_repeat','no-repeat'),(14704,2998,'_dt_fancy_header_bg_position_x','center'),(14705,2998,'_dt_fancy_header_bg_position_y','center'),(14706,2998,'_dt_fancy_header_bg_fullscreen','1'),(14707,2998,'_dt_fancy_header_bg_overlay','0'),(14708,2998,'_dt_fancy_header_overlay_color','#000'),(14709,2998,'_dt_fancy_header_bg_overlay_opacity','50'),(14710,2998,'_dt_fancy_header_scroll_effect','default'),(14711,2998,'_dt_fancy_header_bg_parallax','0.5'),(14712,2998,'_dt_fancy_header_responsiveness_heading',''),(14713,2998,'_dt_fancy_header_responsiveness','enabled'),(14714,2998,'_dt_fancy_header_responsiveness_switch','778px'),(14715,2998,'_dt_fancy_header_responsive_height','70'),(14716,2998,'_dt_fancy_header_responsive_font_size','30'),(14717,2998,'_dt_fancy_header_responsive_title_line_height','38'),(14718,2998,'_dt_fancy_header_responsive_subtitle_font_size','20'),(14719,2998,'_dt_fancy_header_responsive_subtitle_line_height','28'),(14720,2998,'_dt_fancy_header_responsive_breadcrumbs','disabled'),(14721,2998,'_dt_microsite_primary_menu',''),(14722,2998,'_dt_microsite_split_left_menu',''),(14723,2998,'_dt_microsite_split_right_menu',''),(14724,2998,'_dt_microsite_mobile_menu',''),(14725,2998,'the7_fancy_title_css','.fancy-header {\n  background-image: url(\'https://farmchemie.yasithawd.com/wp-content/uploads/2023/08/FARMER-TRAINING_1.png\');\n  background-repeat: no-repeat;\n  background-position: center center;\n  background-size: cover;\n  background-color: #079547;\n}\n.mobile-false .fancy-header {\n  background-attachment: scroll;\n}\n.fancy-header .wf-wrap {\n  min-height: 300px;\n  padding-top: 0px;\n  padding-bottom: 0px;\n}\n.fancy-header .fancy-title {\n  font-size: 36px;\n  line-height: 36px;\n  color: #ffffff;\n  text-transform: none;\n}\n.fancy-header .fancy-subtitle {\n  font-size: 18px;\n  line-height: 26px;\n  color: #ffffff;\n  text-transform: none;\n}\n.fancy-header .breadcrumbs {\n  color: #ffffff;\n}\n.fancy-header-overlay {\n  background: rgba(0,0,0,0.5);\n}\n@media screen and (max-width: 778px) {\n  .fancy-header .wf-wrap {\n    min-height: 70px;\n  }\n  .fancy-header .fancy-title {\n    font-size: 30px;\n    line-height: 38px;\n  }\n  .fancy-header .fancy-subtitle {\n    font-size: 20px;\n    line-height: 28px;\n  }\n  .fancy-header.breadcrumbs-mobile-off .breadcrumbs {\n    display: none;\n  }\n  #fancy-header > .wf-wrap {\n    flex-flow: column wrap;\n    align-items: center;\n    justify-content: center;\n    padding-bottom: 0px !important;\n  }\n  .fancy-header.title-left .breadcrumbs {\n    text-align: center;\n    float: none;\n  }\n  .breadcrumbs {\n    margin-bottom: 10px;\n  }\n  .breadcrumbs.breadcrumbs-bg {\n    margin-top: 10px;\n  }\n  .fancy-header.title-right .breadcrumbs {\n    margin: 10px 0 10px 0;\n  }\n  #fancy-header .hgroup,\n  #fancy-header .breadcrumbs {\n    text-align: center;\n  }\n  .fancy-header .hgroup {\n    padding-bottom: 5px;\n  }\n  .breadcrumbs-off .hgroup {\n    padding-bottom: 5px;\n  }\n  .title-right .hgroup {\n    padding: 0 0 5px 0;\n  }\n  .title-right.breadcrumbs-off .hgroup {\n    padding-top: 5px;\n  }\n  .title-left.disabled-bg .breadcrumbs {\n    margin-bottom: 0;\n  }\n}\n'),(14727,3002,'_wp_attached_file','2023/08/farmertraining1.jpg'),(14726,3000,'_wpb_shortcodes_custom_css','.vc_custom_1689580294399{padding-top: 50px !important;padding-bottom: 50px !important;}'),(14728,3002,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:600;s:6:\"height\";i:300;s:4:\"file\";s:27:\"2023/08/farmertraining1.jpg\";s:8:\"filesize\";i:51330;s:5:\"sizes\";a:6:{s:6:\"medium\";a:5:{s:4:\"file\";s:27:\"farmertraining1-300x150.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:16128;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:27:\"farmertraining1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:9825;}s:21:\"woocommerce_thumbnail\";a:6:{s:4:\"file\";s:27:\"farmertraining1-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:30688;s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:5:{s:4:\"file\";s:27:\"farmertraining1-200x200.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:15166;}s:12:\"shop_catalog\";a:5:{s:4:\"file\";s:27:\"farmertraining1-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:30688;}s:14:\"shop_thumbnail\";a:5:{s:4:\"file\";s:27:\"farmertraining1-200x200.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:15166;}}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:{}}}'),(14729,3003,'_wp_attached_file','2023/08/farmertraining2.jpg'),(14730,3003,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:600;s:6:\"height\";i:300;s:4:\"file\";s:27:\"2023/08/farmertraining2.jpg\";s:8:\"filesize\";i:56892;s:5:\"sizes\";a:6:{s:6:\"medium\";a:5:{s:4:\"file\";s:27:\"farmertraining2-300x150.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:18264;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:27:\"farmertraining2-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:9937;}s:21:\"woocommerce_thumbnail\";a:6:{s:4:\"file\";s:27:\"farmertraining2-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:29622;s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:5:{s:4:\"file\";s:27:\"farmertraining2-200x200.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:14946;}s:12:\"shop_catalog\";a:5:{s:4:\"file\";s:27:\"farmertraining2-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:29622;}s:14:\"shop_thumbnail\";a:5:{s:4:\"file\";s:27:\"farmertraining2-200x200.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:14946;}}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:{}}}'),(14731,3001,'_wpb_shortcodes_custom_css','.vc_custom_1689580474694{padding-top: 50px !important;padding-bottom: 50px !important;}.vc_custom_1689580474694{padding-top: 50px !important;padding-bottom: 50px !important;}'),(14733,3005,'_wpb_shortcodes_custom_css','.vc_custom_1689580474694{padding-top: 50px !important;padding-bottom: 50px !important;}.vc_custom_1689580474694{padding-top: 50px !important;padding-bottom: 50px !important;}'),(14735,3007,'_wp_attached_file','2023/08/vacine4.jpg'),(14732,3004,'_wpb_shortcodes_custom_css','.vc_custom_1689580474694{padding-top: 50px !important;padding-bottom: 50px !important;}.vc_custom_1689580474694{padding-top: 50px !important;padding-bottom: 50px !important;}.vc_custom_1691125029069{border-right-width: 1px !important;border-right-color: #129648 !important;border-right-style: solid !important;border-radius: 1px !important;}.vc_custom_1691125046205{border-left-width: 1px !important;border-left-color: #129648 !important;border-left-style: solid !important;border-radius: 1px !important;}'),(14748,3015,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:400;s:6:\"height\";i:400;s:4:\"file\";s:17:\"2023/08/labs1.jpg\";s:8:\"filesize\";i:44619;s:5:\"sizes\";a:6:{s:6:\"medium\";a:5:{s:4:\"file\";s:17:\"labs1-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:24908;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:17:\"labs1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:8334;}s:21:\"woocommerce_thumbnail\";a:6:{s:4:\"file\";s:17:\"labs1-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:24908;s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:5:{s:4:\"file\";s:17:\"labs1-200x200.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:12365;}s:12:\"shop_catalog\";a:5:{s:4:\"file\";s:17:\"labs1-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:24908;}s:14:\"shop_thumbnail\";a:5:{s:4:\"file\";s:17:\"labs1-200x200.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:12365;}}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:{}}}'),(15458,3161,'_wp_attached_file','2023/08/Vaccination-Service.png'),(15459,3161,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1300;s:6:\"height\";i:300;s:4:\"file\";s:31:\"2023/08/Vaccination-Service.png\";s:8:\"filesize\";i:136125;s:5:\"sizes\";a:10:{s:6:\"medium\";a:5:{s:4:\"file\";s:30:\"Vaccination-Service-300x69.png\";s:5:\"width\";i:300;s:6:\"height\";i:69;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:33201;}s:5:\"large\";a:5:{s:4:\"file\";s:32:\"Vaccination-Service-1024x236.png\";s:5:\"width\";i:1024;s:6:\"height\";i:236;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:261210;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:31:\"Vaccination-Service-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:27801;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:31:\"Vaccination-Service-768x177.png\";s:5:\"width\";i:768;s:6:\"height\";i:177;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:157631;}s:21:\"woocommerce_thumbnail\";a:6:{s:4:\"file\";s:31:\"Vaccination-Service-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:39227;s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:5:{s:4:\"file\";s:31:\"Vaccination-Service-600x138.png\";s:5:\"width\";i:600;s:6:\"height\";i:138;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:104097;}s:29:\"woocommerce_gallery_thumbnail\";a:5:{s:4:\"file\";s:31:\"Vaccination-Service-200x200.png\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:44857;}s:12:\"shop_catalog\";a:5:{s:4:\"file\";s:31:\"Vaccination-Service-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:39227;}s:11:\"shop_single\";a:5:{s:4:\"file\";s:31:\"Vaccination-Service-600x138.png\";s:5:\"width\";i:600;s:6:\"height\";i:138;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:104097;}s:14:\"shop_thumbnail\";a:5:{s:4:\"file\";s:31:\"Vaccination-Service-200x200.png\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:44857;}}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:{}}}'),(14736,3007,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:400;s:6:\"height\";i:400;s:4:\"file\";s:19:\"2023/08/vacine4.jpg\";s:8:\"filesize\";i:42735;s:5:\"sizes\";a:6:{s:6:\"medium\";a:5:{s:4:\"file\";s:19:\"vacine4-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:26774;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:19:\"vacine4-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:9311;}s:21:\"woocommerce_thumbnail\";a:6:{s:4:\"file\";s:19:\"vacine4-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:26774;s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:5:{s:4:\"file\";s:19:\"vacine4-200x200.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:14078;}s:12:\"shop_catalog\";a:5:{s:4:\"file\";s:19:\"vacine4-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:26774;}s:14:\"shop_thumbnail\";a:5:{s:4:\"file\";s:19:\"vacine4-200x200.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:14078;}}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:{}}}'),(14737,3008,'_wp_attached_file','2023/08/vacine2.jpg'),(14738,3008,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:400;s:6:\"height\";i:400;s:4:\"file\";s:19:\"2023/08/vacine2.jpg\";s:8:\"filesize\";i:41832;s:5:\"sizes\";a:6:{s:6:\"medium\";a:5:{s:4:\"file\";s:19:\"vacine2-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:25810;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:19:\"vacine2-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:9212;}s:21:\"woocommerce_thumbnail\";a:6:{s:4:\"file\";s:19:\"vacine2-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:25810;s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:5:{s:4:\"file\";s:19:\"vacine2-200x200.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:13517;}s:12:\"shop_catalog\";a:5:{s:4:\"file\";s:19:\"vacine2-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:25810;}s:14:\"shop_thumbnail\";a:5:{s:4:\"file\";s:19:\"vacine2-200x200.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:13517;}}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:{}}}'),(14739,3009,'_wp_attached_file','2023/08/vacine3.jpg'),(14740,3009,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:400;s:6:\"height\";i:400;s:4:\"file\";s:19:\"2023/08/vacine3.jpg\";s:8:\"filesize\";i:32294;s:5:\"sizes\";a:6:{s:6:\"medium\";a:5:{s:4:\"file\";s:19:\"vacine3-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:20992;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:19:\"vacine3-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:8219;}s:21:\"woocommerce_thumbnail\";a:6:{s:4:\"file\";s:19:\"vacine3-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:20992;s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:5:{s:4:\"file\";s:19:\"vacine3-200x200.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:11738;}s:12:\"shop_catalog\";a:5:{s:4:\"file\";s:19:\"vacine3-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:20992;}s:14:\"shop_thumbnail\";a:5:{s:4:\"file\";s:19:\"vacine3-200x200.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:11738;}}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:{}}}'),(14741,3010,'_wp_attached_file','2023/08/vacine1.jpg'),(14742,3010,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:400;s:6:\"height\";i:400;s:4:\"file\";s:19:\"2023/08/vacine1.jpg\";s:8:\"filesize\";i:36643;s:5:\"sizes\";a:6:{s:6:\"medium\";a:5:{s:4:\"file\";s:19:\"vacine1-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:22296;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:19:\"vacine1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:7900;}s:21:\"woocommerce_thumbnail\";a:6:{s:4:\"file\";s:19:\"vacine1-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:22296;s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:5:{s:4:\"file\";s:19:\"vacine1-200x200.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:11646;}s:12:\"shop_catalog\";a:5:{s:4:\"file\";s:19:\"vacine1-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:22296;}s:14:\"shop_thumbnail\";a:5:{s:4:\"file\";s:19:\"vacine1-200x200.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:11646;}}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:{}}}'),(14743,3011,'_wp_attached_file','2023/08/vacine5.jpg'),(14744,3011,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:400;s:6:\"height\";i:400;s:4:\"file\";s:19:\"2023/08/vacine5.jpg\";s:8:\"filesize\";i:28263;s:5:\"sizes\";a:6:{s:6:\"medium\";a:5:{s:4:\"file\";s:19:\"vacine5-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:18555;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:19:\"vacine5-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:7214;}s:21:\"woocommerce_thumbnail\";a:6:{s:4:\"file\";s:19:\"vacine5-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:18555;s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:5:{s:4:\"file\";s:19:\"vacine5-200x200.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:10379;}s:12:\"shop_catalog\";a:5:{s:4:\"file\";s:19:\"vacine5-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:18555;}s:14:\"shop_thumbnail\";a:5:{s:4:\"file\";s:19:\"vacine5-200x200.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:10379;}}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:{}}}'),(14747,3015,'_wp_attached_file','2023/08/labs1.jpg'),(14745,3012,'_wpb_shortcodes_custom_css','.vc_custom_1689580294399{padding-top: 50px !important;padding-bottom: 50px !important;}.vc_custom_1691129087062{border-top-width: 1px !important;border-top-color: #079547 !important;border-top-style: solid !important;border-radius: 1px !important;}.vc_custom_1691128897862{border-top-width: 1px !important;border-top-color: #079547 !important;border-top-style: solid !important;border-radius: 1px !important;}.vc_custom_1691128912934{border-top-width: 1px !important;border-top-color: #079547 !important;border-top-style: solid !important;border-radius: 1px !important;}.vc_custom_1691128980782{border-top-width: 1px !important;border-top-color: #079547 !important;border-top-style: solid !important;border-radius: 1px !important;}.vc_custom_1691128954614{border-top-width: 1px !important;border-top-color: #079547 !important;border-top-style: solid !important;border-radius: 1px !important;}.vc_custom_1691129001118{border-top-width: 1px !important;border-top-color: #079547 !important;border-top-style: solid !important;border-radius: 1px !important;}'),(14746,3013,'_wpb_shortcodes_custom_css','.vc_custom_1689580474694{padding-top: 50px !important;padding-bottom: 50px !important;}'),(14749,3016,'_wp_attached_file','2023/08/labs2.jpg'),(14750,3016,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:400;s:6:\"height\";i:400;s:4:\"file\";s:17:\"2023/08/labs2.jpg\";s:8:\"filesize\";i:57037;s:5:\"sizes\";a:6:{s:6:\"medium\";a:5:{s:4:\"file\";s:17:\"labs2-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:31468;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:17:\"labs2-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:10087;}s:21:\"woocommerce_thumbnail\";a:6:{s:4:\"file\";s:17:\"labs2-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:31468;s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:5:{s:4:\"file\";s:17:\"labs2-200x200.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:15369;}s:12:\"shop_catalog\";a:5:{s:4:\"file\";s:17:\"labs2-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:31468;}s:14:\"shop_thumbnail\";a:5:{s:4:\"file\";s:17:\"labs2-200x200.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:15369;}}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:{}}}'),(14751,3017,'_wp_attached_file','2023/08/labs3.jpg'),(14752,3017,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:400;s:6:\"height\";i:400;s:4:\"file\";s:17:\"2023/08/labs3.jpg\";s:8:\"filesize\";i:48709;s:5:\"sizes\";a:6:{s:6:\"medium\";a:5:{s:4:\"file\";s:17:\"labs3-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:26937;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:17:\"labs3-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:8725;}s:21:\"woocommerce_thumbnail\";a:6:{s:4:\"file\";s:17:\"labs3-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:26937;s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:5:{s:4:\"file\";s:17:\"labs3-200x200.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:13502;}s:12:\"shop_catalog\";a:5:{s:4:\"file\";s:17:\"labs3-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:26937;}s:14:\"shop_thumbnail\";a:5:{s:4:\"file\";s:17:\"labs3-200x200.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:13502;}}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:{}}}'),(14754,3020,'_wp_attached_file','2023/08/POULTRY.png'),(14753,3018,'_wpb_shortcodes_custom_css','.vc_custom_1689579703311{padding-top: 50px !important;padding-bottom: 50px !important;}.vc_custom_1689579703311{padding-top: 50px !important;padding-bottom: 50px !important;}.vc_custom_1689579850874{margin-top: 35px !important;margin-bottom: 35px !important;}'),(14755,3020,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1300;s:6:\"height\";i:400;s:4:\"file\";s:19:\"2023/08/POULTRY.png\";s:8:\"filesize\";i:249381;s:5:\"sizes\";a:10:{s:6:\"medium\";a:5:{s:4:\"file\";s:18:\"POULTRY-300x92.png\";s:5:\"width\";i:300;s:6:\"height\";i:92;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:46343;}s:5:\"large\";a:5:{s:4:\"file\";s:20:\"POULTRY-1024x315.png\";s:5:\"width\";i:1024;s:6:\"height\";i:315;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:485624;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:19:\"POULTRY-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:31747;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:19:\"POULTRY-768x236.png\";s:5:\"width\";i:768;s:6:\"height\";i:236;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:268318;}s:21:\"woocommerce_thumbnail\";a:6:{s:4:\"file\";s:19:\"POULTRY-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:121555;s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:5:{s:4:\"file\";s:19:\"POULTRY-600x185.png\";s:5:\"width\";i:600;s:6:\"height\";i:185;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:165826;}s:29:\"woocommerce_gallery_thumbnail\";a:5:{s:4:\"file\";s:19:\"POULTRY-200x200.png\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:53729;}s:12:\"shop_catalog\";a:5:{s:4:\"file\";s:19:\"POULTRY-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:121555;}s:11:\"shop_single\";a:5:{s:4:\"file\";s:19:\"POULTRY-600x185.png\";s:5:\"width\";i:600;s:6:\"height\";i:185;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:165826;}s:14:\"shop_thumbnail\";a:5:{s:4:\"file\";s:19:\"POULTRY-200x200.png\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:53729;}}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:{}}}'),(14756,3019,'_dt_fancy_header_bg_image','a:1:{i:0;i:3020;}'),(14757,3019,'_edit_last','1'),(14758,3019,'_wp_page_template','default'),(14759,3019,'_wpb_vc_js_status','true'),(14760,3019,'_dt_sidebar_position','right'),(14761,3019,'_dt_sidebar_widgetarea_id','sidebar_1'),(14762,3019,'_dt_sidebar_hide_on_mobile','0'),(14763,3019,'_dt_footer_show','1'),(14764,3019,'_dt_footer_widgetarea_id','sidebar_2'),(14765,3019,'_dt_footer_hide_on_mobile','0'),(14766,3019,'_dt_header_title','fancy'),(14767,3019,'_dt_header_background','normal'),(14768,3019,'_dt_header_background_below_slideshow','disabled'),(14769,3019,'_dt_header_transparent_bg_color_scheme','light'),(14770,3019,'_dt_header_transparent_top_bar_bg_color','#ffffff'),(14771,3019,'_dt_header_transparent_top_bar_bg_opacity','25'),(14772,3019,'_dt_header_transparent_bg_color','#000000'),(14773,3019,'_dt_header_transparent_bg_opacity','50'),(14774,3019,'_dt_header_disabled_background','normal'),(14775,3019,'_dt_header_disabled_transparent_bg_color_scheme','light'),(14776,3019,'_dt_header_disabled_transparent_top_bar_bg_color','#ffffff'),(14777,3019,'_dt_header_disabled_transparent_top_bar_bg_opacity','25'),(14778,3019,'_dt_header_disabled_transparent_bg_color','#000000'),(14779,3019,'_dt_header_disabled_transparent_bg_opacity','50'),(14780,3019,'_dt_page_overrides_top_margin',''),(14781,3019,'_dt_page_overrides_right_margin',''),(14782,3019,'_dt_page_overrides_bottom_margin',''),(14783,3019,'_dt_page_overrides_left_margin',''),(14784,3019,'_dt_mobile_page_padding_top',''),(14785,3019,'_dt_mobile_page_padding_right',''),(14786,3019,'_dt_mobile_page_padding_bottom',''),(14787,3019,'_dt_mobile_page_padding_left',''),(14788,3019,'_dt_fancy_header_layout_heading',''),(14789,3019,'_dt_fancy_header_title_aligment','center'),(14790,3019,'_dt_fancy_header_height','400'),(14791,3019,'_dt_fancy_header_padding-top','0px'),(14792,3019,'_dt_fancy_header_padding-bottom','0px'),(14793,3019,'_dt_fancy_header_breadcrumbs_heading',''),(14794,3019,'_dt_fancy_header_breadcrumbs','disabled'),(14795,3019,'_dt_fancy_header_breadcrumbs_text_color','#ffffff'),(14796,3019,'_dt_fancy_header_breadcrumbs_bg_color','disabled'),(14797,3019,'_dt_fancy_header_title_heading',''),(14798,3019,'_dt_fancy_header_title_mode','custom'),(14799,3019,'_dt_fancy_header_title',''),(14800,3019,'_dt_fancy_header_title_font_size','30'),(14801,3019,'_dt_fancy_header_title_line_height','36'),(14802,3019,'_dt_fancy_header_text_transform','none'),(14803,3019,'_dt_fancy_header_title_color_mode','color'),(14804,3019,'_dt_fancy_header_title_color','#ffffff'),(14805,3019,'_dt_fancy_header_subtitle_heading',''),(14806,3019,'_dt_fancy_header_subtitle',''),(14807,3019,'_dt_fancy_header_subtitle_font_size','18'),(14808,3019,'_dt_fancy_header_subtitle_line_height','26'),(14809,3019,'_dt_fancy_header_subtitle_text_transform','none'),(14810,3019,'_dt_fancy_header_subtitle_color_mode','color'),(14811,3019,'_dt_fancy_header_subtitle_color','#ffffff'),(14812,3019,'_dt_fancy_header_bg_heading',''),(14813,3019,'_dt_fancy_header_bg_color','#222222'),(14814,3019,'_dt_fancy_header_bg_image_origin','custom'),(14815,3019,'_dt_fancy_header_bg_repeat','no-repeat'),(14816,3019,'_dt_fancy_header_bg_position_x','center'),(14817,3019,'_dt_fancy_header_bg_position_y','center'),(14818,3019,'_dt_fancy_header_bg_fullscreen','1'),(14819,3019,'_dt_fancy_header_bg_overlay','0'),(14820,3019,'_dt_fancy_header_overlay_color','#000'),(14821,3019,'_dt_fancy_header_bg_overlay_opacity','50'),(14822,3019,'_dt_fancy_header_scroll_effect','default'),(14823,3019,'_dt_fancy_header_bg_parallax','0.5'),(14824,3019,'_dt_fancy_header_responsiveness_heading',''),(14825,3019,'_dt_fancy_header_responsiveness','enabled'),(14826,3019,'_dt_fancy_header_responsiveness_switch','778px'),(14827,3019,'_dt_fancy_header_responsive_height','300'),(14828,3019,'_dt_fancy_header_responsive_font_size','30'),(14829,3019,'_dt_fancy_header_responsive_title_line_height','38'),(14830,3019,'_dt_fancy_header_responsive_subtitle_font_size','20'),(14831,3019,'_dt_fancy_header_responsive_subtitle_line_height','28'),(14832,3019,'_dt_fancy_header_responsive_breadcrumbs','disabled'),(14833,3019,'_dt_microsite_primary_menu',''),(14834,3019,'_dt_microsite_split_left_menu',''),(14835,3019,'_dt_microsite_split_right_menu',''),(14836,3019,'_dt_microsite_mobile_menu',''),(14837,3019,'the7_fancy_title_css','.fancy-header {\n  background-image: url(\'https://farmchemie.yasithawd.com/wp-content/uploads/2023/08/POULTRY.png\');\n  background-repeat: no-repeat;\n  background-position: center center;\n  background-size: cover;\n  background-color: #222222;\n}\n.mobile-false .fancy-header {\n  background-attachment: scroll;\n}\n.fancy-header .wf-wrap {\n  min-height: 400px;\n  padding-top: 0px;\n  padding-bottom: 0px;\n}\n.fancy-header .fancy-title {\n  font-size: 30px;\n  line-height: 36px;\n  color: #ffffff;\n  text-transform: none;\n}\n.fancy-header .fancy-subtitle {\n  font-size: 18px;\n  line-height: 26px;\n  color: #ffffff;\n  text-transform: none;\n}\n.fancy-header .breadcrumbs {\n  color: #ffffff;\n}\n.fancy-header-overlay {\n  background: rgba(0,0,0,0.5);\n}\n@media screen and (max-width: 778px) {\n  .fancy-header .wf-wrap {\n    min-height: 300px;\n  }\n  .fancy-header .fancy-title {\n    font-size: 30px;\n    line-height: 38px;\n  }\n  .fancy-header .fancy-subtitle {\n    font-size: 20px;\n    line-height: 28px;\n  }\n  .fancy-header.breadcrumbs-mobile-off .breadcrumbs {\n    display: none;\n  }\n  #fancy-header > .wf-wrap {\n    flex-flow: column wrap;\n    align-items: center;\n    justify-content: center;\n    padding-bottom: 0px !important;\n  }\n  .fancy-header.title-left .breadcrumbs {\n    text-align: center;\n    float: none;\n  }\n  .breadcrumbs {\n    margin-bottom: 10px;\n  }\n  .breadcrumbs.breadcrumbs-bg {\n    margin-top: 10px;\n  }\n  .fancy-header.title-right .breadcrumbs {\n    margin: 10px 0 10px 0;\n  }\n  #fancy-header .hgroup,\n  #fancy-header .breadcrumbs {\n    text-align: center;\n  }\n  .fancy-header .hgroup {\n    padding-bottom: 5px;\n  }\n  .breadcrumbs-off .hgroup {\n    padding-bottom: 5px;\n  }\n  .title-right .hgroup {\n    padding: 0 0 5px 0;\n  }\n  .title-right.breadcrumbs-off .hgroup {\n    padding-top: 5px;\n  }\n  .title-left.disabled-bg .breadcrumbs {\n    margin-bottom: 0;\n  }\n}\n'),(14838,3019,'_edit_lock','1691642888:1'),(14839,3027,'_edit_last','1'),(14840,3027,'_wp_page_template','default'),(14841,3027,'_wpb_vc_js_status','true'),(14842,3027,'_dt_sidebar_position','right'),(14843,3027,'_dt_sidebar_widgetarea_id','sidebar_1'),(14844,3027,'_dt_sidebar_hide_on_mobile','0'),(14845,3027,'_dt_footer_show','1'),(14846,3027,'_dt_footer_widgetarea_id','sidebar_2'),(14847,3027,'_dt_footer_hide_on_mobile','0'),(14848,3027,'_dt_header_title','fancy'),(14849,3027,'_dt_header_background','normal'),(14850,3027,'_dt_header_background_below_slideshow','disabled'),(14851,3027,'_dt_header_transparent_bg_color_scheme','light'),(14852,3027,'_dt_header_transparent_top_bar_bg_color','#ffffff'),(14853,3027,'_dt_header_transparent_top_bar_bg_opacity','25'),(14854,3027,'_dt_header_transparent_bg_color','#000000'),(14855,3027,'_dt_header_transparent_bg_opacity','50'),(14856,3027,'_dt_header_disabled_background','normal'),(14857,3027,'_dt_header_disabled_transparent_bg_color_scheme','light'),(14858,3027,'_dt_header_disabled_transparent_top_bar_bg_color','#ffffff'),(14859,3027,'_dt_header_disabled_transparent_top_bar_bg_opacity','25'),(14860,3027,'_dt_header_disabled_transparent_bg_color','#000000'),(14861,3027,'_dt_header_disabled_transparent_bg_opacity','50'),(14862,3027,'_dt_page_overrides_top_margin',''),(14863,3027,'_dt_page_overrides_right_margin',''),(14864,3027,'_dt_page_overrides_bottom_margin',''),(14865,3027,'_dt_page_overrides_left_margin',''),(14866,3027,'_dt_mobile_page_padding_top',''),(14867,3027,'_dt_mobile_page_padding_right',''),(14868,3027,'_dt_mobile_page_padding_bottom',''),(14869,3027,'_dt_mobile_page_padding_left',''),(14870,3027,'_dt_fancy_header_layout_heading',''),(14871,3027,'_dt_fancy_header_title_aligment','all_left'),(14872,3027,'_dt_fancy_header_height','300'),(14873,3027,'_dt_fancy_header_padding-top','0px'),(14874,3027,'_dt_fancy_header_padding-bottom','0px'),(14875,3027,'_dt_fancy_header_breadcrumbs_heading',''),(14876,3027,'_dt_fancy_header_breadcrumbs','disabled'),(14877,3027,'_dt_fancy_header_breadcrumbs_text_color','#ffffff'),(14878,3027,'_dt_fancy_header_breadcrumbs_bg_color','disabled'),(14879,3027,'_dt_fancy_header_title_heading',''),(14880,3027,'_dt_fancy_header_title_mode','generic'),(14881,3027,'_dt_fancy_header_title',''),(14882,3027,'_dt_fancy_header_title_font_size','36'),(14883,3027,'_dt_fancy_header_title_line_height','36'),(14884,3027,'_dt_fancy_header_text_transform','none'),(14885,3027,'_dt_fancy_header_title_color_mode','color'),(14886,3027,'_dt_fancy_header_title_color','#ffffff'),(14887,3027,'_dt_fancy_header_subtitle_heading',''),(14888,3027,'_dt_fancy_header_subtitle',''),(14889,3027,'_dt_fancy_header_subtitle_font_size','18'),(14890,3027,'_dt_fancy_header_subtitle_line_height','26'),(14891,3027,'_dt_fancy_header_subtitle_text_transform','none'),(14892,3027,'_dt_fancy_header_subtitle_color_mode','color'),(14893,3027,'_dt_fancy_header_subtitle_color','#ffffff'),(14894,3027,'_dt_fancy_header_bg_heading',''),(14895,3027,'_dt_fancy_header_bg_color','#222222'),(14896,3027,'_dt_fancy_header_bg_image_origin','custom'),(14897,3027,'_dt_fancy_header_bg_image','a:1:{i:0;i:3764;}'),(14898,3027,'_dt_fancy_header_bg_repeat','no-repeat'),(14899,3027,'_dt_fancy_header_bg_position_x','left'),(14900,3027,'_dt_fancy_header_bg_position_y','center'),(14901,3027,'_dt_fancy_header_bg_fullscreen','1'),(14902,3027,'_dt_fancy_header_bg_overlay','0'),(14903,3027,'_dt_fancy_header_overlay_color','#000'),(14904,3027,'_dt_fancy_header_bg_overlay_opacity','50'),(14905,3027,'_dt_fancy_header_scroll_effect','default'),(14906,3027,'_dt_fancy_header_bg_parallax','0.5'),(14907,3027,'_dt_fancy_header_responsiveness_heading',''),(14908,3027,'_dt_fancy_header_responsiveness','enabled'),(14909,3027,'_dt_fancy_header_responsiveness_switch','778px'),(14910,3027,'_dt_fancy_header_responsive_height','300'),(14911,3027,'_dt_fancy_header_responsive_font_size','30'),(14912,3027,'_dt_fancy_header_responsive_title_line_height','38'),(14913,3027,'_dt_fancy_header_responsive_subtitle_font_size','20'),(14914,3027,'_dt_fancy_header_responsive_subtitle_line_height','28'),(14915,3027,'_dt_fancy_header_responsive_breadcrumbs','disabled'),(14916,3027,'_dt_microsite_primary_menu',''),(14917,3027,'_dt_microsite_split_left_menu',''),(14918,3027,'_dt_microsite_split_right_menu',''),(14919,3027,'_dt_microsite_mobile_menu',''),(14920,3027,'the7_fancy_title_css','.fancy-header {\n  background-image: url(\'https://farmchemie.yasithawd.com/wp-content/uploads/2023/09/ABOUT-US1.gif\');\n  background-repeat: no-repeat;\n  background-position: left center;\n  background-size: cover;\n  background-color: #222222;\n}\n.mobile-false .fancy-header {\n  background-attachment: scroll;\n}\n.fancy-header .wf-wrap {\n  min-height: 300px;\n  padding-top: 0px;\n  padding-bottom: 0px;\n}\n.fancy-header .fancy-title {\n  font-size: 36px;\n  line-height: 36px;\n  color: #ffffff;\n  text-transform: none;\n}\n.fancy-header .fancy-subtitle {\n  font-size: 18px;\n  line-height: 26px;\n  color: #ffffff;\n  text-transform: none;\n}\n.fancy-header .breadcrumbs {\n  color: #ffffff;\n}\n.fancy-header-overlay {\n  background: rgba(0,0,0,0.5);\n}\n@media screen and (max-width: 778px) {\n  .fancy-header .wf-wrap {\n    min-height: 300px;\n  }\n  .fancy-header .fancy-title {\n    font-size: 30px;\n    line-height: 38px;\n  }\n  .fancy-header .fancy-subtitle {\n    font-size: 20px;\n    line-height: 28px;\n  }\n  .fancy-header.breadcrumbs-mobile-off .breadcrumbs {\n    display: none;\n  }\n  #fancy-header > .wf-wrap {\n    flex-flow: column wrap;\n    align-items: center;\n    justify-content: center;\n    padding-bottom: 0px !important;\n  }\n  .fancy-header.title-left .breadcrumbs {\n    text-align: center;\n    float: none;\n  }\n  .breadcrumbs {\n    margin-bottom: 10px;\n  }\n  .breadcrumbs.breadcrumbs-bg {\n    margin-top: 10px;\n  }\n  .fancy-header.title-right .breadcrumbs {\n    margin: 10px 0 10px 0;\n  }\n  #fancy-header .hgroup,\n  #fancy-header .breadcrumbs {\n    text-align: center;\n  }\n  .fancy-header .hgroup {\n    padding-bottom: 5px;\n  }\n  .breadcrumbs-off .hgroup {\n    padding-bottom: 5px;\n  }\n  .title-right .hgroup {\n    padding: 0 0 5px 0;\n  }\n  .title-right.breadcrumbs-off .hgroup {\n    padding-top: 5px;\n  }\n  .title-left.disabled-bg .breadcrumbs {\n    margin-bottom: 0;\n  }\n}\n'),(14921,3027,'_edit_lock','1695544305:1'),(15144,3048,'_wp_attached_file','2023/08/POULTRY-2.png'),(14922,3032,'_edit_last','1'),(14923,3032,'_edit_lock','1695544442:1'),(14924,3032,'_wp_page_template','default'),(14925,3032,'_wpb_vc_js_status','true'),(14927,3032,'_dt_sidebar_position','right'),(14928,3032,'_dt_sidebar_widgetarea_id','sidebar_1'),(14929,3032,'_dt_sidebar_hide_on_mobile','0'),(14930,3032,'_dt_footer_show','1'),(14931,3032,'_dt_footer_widgetarea_id','sidebar_2'),(14932,3032,'_dt_footer_hide_on_mobile','0'),(14933,3032,'_dt_header_title','fancy'),(14934,3032,'_dt_header_background','normal'),(14935,3032,'_dt_header_background_below_slideshow','disabled'),(14936,3032,'_dt_header_transparent_bg_color_scheme','light'),(14937,3032,'_dt_header_transparent_top_bar_bg_color','#ffffff'),(14938,3032,'_dt_header_transparent_top_bar_bg_opacity','25'),(14939,3032,'_dt_header_transparent_bg_color','#000000'),(14940,3032,'_dt_header_transparent_bg_opacity','50'),(14941,3032,'_dt_header_disabled_background','normal'),(14942,3032,'_dt_header_disabled_transparent_bg_color_scheme','light'),(14943,3032,'_dt_header_disabled_transparent_top_bar_bg_color','#ffffff'),(14944,3032,'_dt_header_disabled_transparent_top_bar_bg_opacity','25'),(14945,3032,'_dt_header_disabled_transparent_bg_color','#000000'),(14946,3032,'_dt_header_disabled_transparent_bg_opacity','50'),(14947,3032,'_dt_page_overrides_top_margin',''),(14948,3032,'_dt_page_overrides_right_margin',''),(14949,3032,'_dt_page_overrides_bottom_margin',''),(14950,3032,'_dt_page_overrides_left_margin',''),(14951,3032,'_dt_mobile_page_padding_top',''),(14952,3032,'_dt_mobile_page_padding_right',''),(14953,3032,'_dt_mobile_page_padding_bottom',''),(14954,3032,'_dt_mobile_page_padding_left',''),(14955,3032,'_dt_microsite_primary_menu',''),(14956,3032,'_dt_microsite_split_left_menu',''),(14957,3032,'_dt_microsite_split_right_menu',''),(14958,3032,'_dt_microsite_mobile_menu',''),(14959,3034,'_menu_item_type','post_type'),(14960,3034,'_menu_item_menu_item_parent','3545'),(14961,3034,'_menu_item_object_id','3027'),(14962,3034,'_menu_item_object','page'),(14963,3034,'_menu_item_target',''),(14964,3034,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(14965,3034,'_menu_item_xfn',''),(14966,3034,'_menu_item_url',''),(15039,3039,'_edit_last','1'),(14968,2911,'_wp_old_date','2023-07-17'),(14969,2422,'_wp_old_date','2023-07-17'),(16973,3352,'_tax_class',''),(15134,3043,'_wp_attached_file','2023/08/FCML-SUPPLIERS-LOGOS.png'),(15363,3105,'_wp_attached_file','2023/08/ABOUT-US.png'),(14974,2935,'_wp_old_date','2023-07-17'),(14975,2417,'_wp_old_date','2023-07-17'),(14976,2418,'_wp_old_date','2023-07-17'),(14977,2419,'_wp_old_date','2023-07-17'),(14978,2420,'_wp_old_date','2023-07-17'),(14979,2421,'_wp_old_date','2023-07-17'),(14980,39,'_wp_old_date','2023-07-17'),(14983,3032,'_dt_fancy_header_bg_image','a:1:{i:0;i:3820;}'),(14984,3032,'_dt_fancy_header_layout_heading',''),(14985,3032,'_dt_fancy_header_title_aligment','all_left'),(14986,3032,'_dt_fancy_header_height','300'),(14987,3032,'_dt_fancy_header_padding-top','0px'),(14988,3032,'_dt_fancy_header_padding-bottom','0px'),(14989,3032,'_dt_fancy_header_breadcrumbs_heading',''),(14990,3032,'_dt_fancy_header_breadcrumbs','disabled'),(14991,3032,'_dt_fancy_header_breadcrumbs_text_color','#ffffff'),(14992,3032,'_dt_fancy_header_breadcrumbs_bg_color','disabled'),(14993,3032,'_dt_fancy_header_title_heading',''),(14994,3032,'_dt_fancy_header_title_mode','custom'),(14995,3032,'_dt_fancy_header_title','Dairy &'),(14996,3032,'_dt_fancy_header_title_font_size','36'),(14997,3032,'_dt_fancy_header_title_line_height','36'),(14998,3032,'_dt_fancy_header_text_transform','none'),(14999,3032,'_dt_fancy_header_title_color_mode','color'),(15000,3032,'_dt_fancy_header_title_color','#ffffff'),(15001,3032,'_dt_fancy_header_subtitle_heading',''),(15002,3032,'_dt_fancy_header_subtitle','Large Animal'),(15003,3032,'_dt_fancy_header_subtitle_font_size','32'),(15004,3032,'_dt_fancy_header_subtitle_line_height','36'),(15005,3032,'_dt_fancy_header_subtitle_text_transform','none'),(15006,3032,'_dt_fancy_header_subtitle_color_mode','color'),(15007,3032,'_dt_fancy_header_subtitle_color','#ffffff'),(15008,3032,'_dt_fancy_header_bg_heading',''),(15009,3032,'_dt_fancy_header_bg_color','#222222'),(15010,3032,'_dt_fancy_header_bg_image_origin','custom'),(15011,3032,'_dt_fancy_header_bg_repeat','no-repeat'),(15012,3032,'_dt_fancy_header_bg_position_x','left'),(15013,3032,'_dt_fancy_header_bg_position_y','center'),(15014,3032,'_dt_fancy_header_bg_fullscreen','1'),(15015,3032,'_dt_fancy_header_bg_overlay','0'),(15016,3032,'_dt_fancy_header_overlay_color','#000'),(15017,3032,'_dt_fancy_header_bg_overlay_opacity','50'),(15018,3032,'_dt_fancy_header_scroll_effect','default'),(15019,3032,'_dt_fancy_header_bg_parallax','0.5'),(15020,3032,'_dt_fancy_header_responsiveness_heading',''),(15021,3032,'_dt_fancy_header_responsiveness','enabled'),(15022,3032,'_dt_fancy_header_responsiveness_switch','778px'),(15023,3032,'_dt_fancy_header_responsive_height','300'),(15024,3032,'_dt_fancy_header_responsive_font_size','30'),(15025,3032,'_dt_fancy_header_responsive_title_line_height','38'),(15026,3032,'_dt_fancy_header_responsive_subtitle_font_size','20'),(15027,3032,'_dt_fancy_header_responsive_subtitle_line_height','28'),(15028,3032,'_dt_fancy_header_responsive_breadcrumbs','disabled'),(15029,3032,'the7_fancy_title_css','.fancy-header {\n  background-image: url(\'https://farmchemie.yasithawd.com/wp-content/uploads/2023/09/LARGE-ANIMALF.gif\');\n  background-repeat: no-repeat;\n  background-position: left center;\n  background-size: cover;\n  background-color: #222222;\n}\n.mobile-false .fancy-header {\n  background-attachment: scroll;\n}\n.fancy-header .wf-wrap {\n  min-height: 300px;\n  padding-top: 0px;\n  padding-bottom: 0px;\n}\n.fancy-header .fancy-title {\n  font-size: 36px;\n  line-height: 36px;\n  color: #ffffff;\n  text-transform: none;\n}\n.fancy-header .fancy-subtitle {\n  font-size: 32px;\n  line-height: 36px;\n  color: #ffffff;\n  text-transform: none;\n}\n.fancy-header .breadcrumbs {\n  color: #ffffff;\n}\n.fancy-header-overlay {\n  background: rgba(0,0,0,0.5);\n}\n@media screen and (max-width: 778px) {\n  .fancy-header .wf-wrap {\n    min-height: 300px;\n  }\n  .fancy-header .fancy-title {\n    font-size: 30px;\n    line-height: 38px;\n  }\n  .fancy-header .fancy-subtitle {\n    font-size: 20px;\n    line-height: 28px;\n  }\n  .fancy-header.breadcrumbs-mobile-off .breadcrumbs {\n    display: none;\n  }\n  #fancy-header > .wf-wrap {\n    flex-flow: column wrap;\n    align-items: center;\n    justify-content: center;\n    padding-bottom: 0px !important;\n  }\n  .fancy-header.title-left .breadcrumbs {\n    text-align: center;\n    float: none;\n  }\n  .breadcrumbs {\n    margin-bottom: 10px;\n  }\n  .breadcrumbs.breadcrumbs-bg {\n    margin-top: 10px;\n  }\n  .fancy-header.title-right .breadcrumbs {\n    margin: 10px 0 10px 0;\n  }\n  #fancy-header .hgroup,\n  #fancy-header .breadcrumbs {\n    text-align: center;\n  }\n  .fancy-header .hgroup {\n    padding-bottom: 5px;\n  }\n  .breadcrumbs-off .hgroup {\n    padding-bottom: 5px;\n  }\n  .title-right .hgroup {\n    padding: 0 0 5px 0;\n  }\n  .title-right.breadcrumbs-off .hgroup {\n    padding-top: 5px;\n  }\n  .title-left.disabled-bg .breadcrumbs {\n    margin-bottom: 0;\n  }\n}\n'),(15030,3038,'_menu_item_type','post_type'),(15031,3038,'_menu_item_menu_item_parent','3545'),(15032,3038,'_menu_item_object_id','3032'),(15033,3038,'_menu_item_object','page'),(15034,3038,'_menu_item_target',''),(15035,3038,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(15036,3038,'_menu_item_xfn',''),(15037,3038,'_menu_item_url',''),(15043,3039,'_dt_fancy_header_bg_image','a:1:{i:0;i:3762;}'),(15044,3039,'_wp_page_template','default'),(15045,3039,'_wpb_vc_js_status','true'),(15046,3039,'the7_shortcodes_dynamic_css','a:5:{s:32:\"acc18c9dc41560cc751b3a15aa12a2a5\";s:3744:\".products-shortcode.products-masonry-shortcode-id-acc18c9dc41560cc751b3a15aa12a2a5 .filter-bg-decoration .filter-categories a.act {\n  color: #fff;\n}\n.products-shortcode.products-masonry-shortcode-id-acc18c9dc41560cc751b3a15aa12a2a5:not(.resize-by-browser-width) .dt-css-grid {\n  grid-row-gap: 30px;\n  grid-column-gap: 30px;\n  grid-template-columns: repeat(auto-fill,minmax(,1fr));\n}\n.cssgridlegacy.no-cssgrid .products-shortcode.products-masonry-shortcode-id-acc18c9dc41560cc751b3a15aa12a2a5:not(.resize-by-browser-width) .dt-css-grid,\n.no-cssgridlegacy.no-cssgrid .products-shortcode.products-masonry-shortcode-id-acc18c9dc41560cc751b3a15aa12a2a5:not(.resize-by-browser-width) .dt-css-grid {\n  display: flex;\n  flex-flow: row wrap;\n  margin: -15px;\n}\n.cssgridlegacy.no-cssgrid .products-shortcode.products-masonry-shortcode-id-acc18c9dc41560cc751b3a15aa12a2a5:not(.resize-by-browser-width) .dt-css-grid .wf-cell,\n.no-cssgridlegacy.no-cssgrid .products-shortcode.products-masonry-shortcode-id-acc18c9dc41560cc751b3a15aa12a2a5:not(.resize-by-browser-width) .dt-css-grid .wf-cell {\n  flex: 1 0 ;\n  max-width: 100%;\n  padding: 15px;\n  box-sizing: border-box;\n}\n.products-shortcode.products-masonry-shortcode-id-acc18c9dc41560cc751b3a15aa12a2a5.resize-by-browser-width .dt-css-grid {\n  grid-template-columns: repeat(3,1fr);\n  grid-template-rows: auto;\n  grid-column-gap: 30px;\n  grid-row-gap: 30px;\n}\n.cssgridlegacy.no-cssgrid .products-shortcode.products-masonry-shortcode-id-acc18c9dc41560cc751b3a15aa12a2a5.resize-by-browser-width .dt-css-grid,\n.no-cssgridlegacy.no-cssgrid .products-shortcode.products-masonry-shortcode-id-acc18c9dc41560cc751b3a15aa12a2a5.resize-by-browser-width .dt-css-grid {\n  margin: -15px;\n}\n.cssgridlegacy.no-cssgrid .products-shortcode.products-masonry-shortcode-id-acc18c9dc41560cc751b3a15aa12a2a5.resize-by-browser-width .dt-css-grid .wf-cell,\n.no-cssgridlegacy.no-cssgrid .products-shortcode.products-masonry-shortcode-id-acc18c9dc41560cc751b3a15aa12a2a5.resize-by-browser-width .dt-css-grid .wf-cell {\n  width: 33.333333333333%;\n  padding: 15px;\n}\n@media screen and (max-width: 1199px) {\n  .products-shortcode.products-masonry-shortcode-id-acc18c9dc41560cc751b3a15aa12a2a5.resize-by-browser-width .dt-css-grid {\n    grid-template-columns: repeat(3,1fr);\n  }\n  .cssgridlegacy.no-cssgrid .products-shortcode.products-masonry-shortcode-id-acc18c9dc41560cc751b3a15aa12a2a5.resize-by-browser-width .dt-css-grid .wf-cell,\n  .no-cssgridlegacy.no-cssgrid .products-shortcode.products-masonry-shortcode-id-acc18c9dc41560cc751b3a15aa12a2a5.resize-by-browser-width .dt-css-grid .wf-cell {\n    width: 33.333333333333%;\n  }\n}\n@media screen and (max-width: 991px) {\n  .products-shortcode.products-masonry-shortcode-id-acc18c9dc41560cc751b3a15aa12a2a5.resize-by-browser-width .dt-css-grid {\n    grid-template-columns: repeat(2,1fr);\n  }\n  .cssgridlegacy.no-cssgrid .products-shortcode.products-masonry-shortcode-id-acc18c9dc41560cc751b3a15aa12a2a5.resize-by-browser-width .dt-css-grid .wf-cell,\n  .no-cssgridlegacy.no-cssgrid .products-shortcode.products-masonry-shortcode-id-acc18c9dc41560cc751b3a15aa12a2a5.resize-by-browser-width .dt-css-grid .wf-cell {\n    width: 50%;\n  }\n}\n@media screen and (max-width: 767px) {\n  .products-shortcode.products-masonry-shortcode-id-acc18c9dc41560cc751b3a15aa12a2a5.resize-by-browser-width .dt-css-grid {\n    grid-template-columns: repeat(1,1fr);\n  }\n  .cssgridlegacy.no-cssgrid .products-shortcode.products-masonry-shortcode-id-acc18c9dc41560cc751b3a15aa12a2a5.resize-by-browser-width .dt-css-grid .wf-cell,\n  .no-cssgridlegacy.no-cssgrid .products-shortcode.products-masonry-shortcode-id-acc18c9dc41560cc751b3a15aa12a2a5.resize-by-browser-width .dt-css-grid .wf-cell {\n    width: 100%;\n  }\n}\n\";s:32:\"805d86bbc04508c8d7d896ba88fba2a5\";s:3744:\".products-shortcode.products-masonry-shortcode-id-805d86bbc04508c8d7d896ba88fba2a5 .filter-bg-decoration .filter-categories a.act {\n  color: #fff;\n}\n.products-shortcode.products-masonry-shortcode-id-805d86bbc04508c8d7d896ba88fba2a5:not(.resize-by-browser-width) .dt-css-grid {\n  grid-row-gap: 30px;\n  grid-column-gap: 30px;\n  grid-template-columns: repeat(auto-fill,minmax(,1fr));\n}\n.cssgridlegacy.no-cssgrid .products-shortcode.products-masonry-shortcode-id-805d86bbc04508c8d7d896ba88fba2a5:not(.resize-by-browser-width) .dt-css-grid,\n.no-cssgridlegacy.no-cssgrid .products-shortcode.products-masonry-shortcode-id-805d86bbc04508c8d7d896ba88fba2a5:not(.resize-by-browser-width) .dt-css-grid {\n  display: flex;\n  flex-flow: row wrap;\n  margin: -15px;\n}\n.cssgridlegacy.no-cssgrid .products-shortcode.products-masonry-shortcode-id-805d86bbc04508c8d7d896ba88fba2a5:not(.resize-by-browser-width) .dt-css-grid .wf-cell,\n.no-cssgridlegacy.no-cssgrid .products-shortcode.products-masonry-shortcode-id-805d86bbc04508c8d7d896ba88fba2a5:not(.resize-by-browser-width) .dt-css-grid .wf-cell {\n  flex: 1 0 ;\n  max-width: 100%;\n  padding: 15px;\n  box-sizing: border-box;\n}\n.products-shortcode.products-masonry-shortcode-id-805d86bbc04508c8d7d896ba88fba2a5.resize-by-browser-width .dt-css-grid {\n  grid-template-columns: repeat(3,1fr);\n  grid-template-rows: auto;\n  grid-column-gap: 30px;\n  grid-row-gap: 30px;\n}\n.cssgridlegacy.no-cssgrid .products-shortcode.products-masonry-shortcode-id-805d86bbc04508c8d7d896ba88fba2a5.resize-by-browser-width .dt-css-grid,\n.no-cssgridlegacy.no-cssgrid .products-shortcode.products-masonry-shortcode-id-805d86bbc04508c8d7d896ba88fba2a5.resize-by-browser-width .dt-css-grid {\n  margin: -15px;\n}\n.cssgridlegacy.no-cssgrid .products-shortcode.products-masonry-shortcode-id-805d86bbc04508c8d7d896ba88fba2a5.resize-by-browser-width .dt-css-grid .wf-cell,\n.no-cssgridlegacy.no-cssgrid .products-shortcode.products-masonry-shortcode-id-805d86bbc04508c8d7d896ba88fba2a5.resize-by-browser-width .dt-css-grid .wf-cell {\n  width: 33.333333333333%;\n  padding: 15px;\n}\n@media screen and (max-width: 1199px) {\n  .products-shortcode.products-masonry-shortcode-id-805d86bbc04508c8d7d896ba88fba2a5.resize-by-browser-width .dt-css-grid {\n    grid-template-columns: repeat(3,1fr);\n  }\n  .cssgridlegacy.no-cssgrid .products-shortcode.products-masonry-shortcode-id-805d86bbc04508c8d7d896ba88fba2a5.resize-by-browser-width .dt-css-grid .wf-cell,\n  .no-cssgridlegacy.no-cssgrid .products-shortcode.products-masonry-shortcode-id-805d86bbc04508c8d7d896ba88fba2a5.resize-by-browser-width .dt-css-grid .wf-cell {\n    width: 33.333333333333%;\n  }\n}\n@media screen and (max-width: 991px) {\n  .products-shortcode.products-masonry-shortcode-id-805d86bbc04508c8d7d896ba88fba2a5.resize-by-browser-width .dt-css-grid {\n    grid-template-columns: repeat(2,1fr);\n  }\n  .cssgridlegacy.no-cssgrid .products-shortcode.products-masonry-shortcode-id-805d86bbc04508c8d7d896ba88fba2a5.resize-by-browser-width .dt-css-grid .wf-cell,\n  .no-cssgridlegacy.no-cssgrid .products-shortcode.products-masonry-shortcode-id-805d86bbc04508c8d7d896ba88fba2a5.resize-by-browser-width .dt-css-grid .wf-cell {\n    width: 50%;\n  }\n}\n@media screen and (max-width: 767px) {\n  .products-shortcode.products-masonry-shortcode-id-805d86bbc04508c8d7d896ba88fba2a5.resize-by-browser-width .dt-css-grid {\n    grid-template-columns: repeat(1,1fr);\n  }\n  .cssgridlegacy.no-cssgrid .products-shortcode.products-masonry-shortcode-id-805d86bbc04508c8d7d896ba88fba2a5.resize-by-browser-width .dt-css-grid .wf-cell,\n  .no-cssgridlegacy.no-cssgrid .products-shortcode.products-masonry-shortcode-id-805d86bbc04508c8d7d896ba88fba2a5.resize-by-browser-width .dt-css-grid .wf-cell {\n    width: 100%;\n  }\n}\n\";s:32:\"879508f5e31c64dfc45d9474e1049a03\";s:3744:\".products-shortcode.products-masonry-shortcode-id-879508f5e31c64dfc45d9474e1049a03 .filter-bg-decoration .filter-categories a.act {\n  color: #fff;\n}\n.products-shortcode.products-masonry-shortcode-id-879508f5e31c64dfc45d9474e1049a03:not(.resize-by-browser-width) .dt-css-grid {\n  grid-row-gap: 30px;\n  grid-column-gap: 30px;\n  grid-template-columns: repeat(auto-fill,minmax(,1fr));\n}\n.cssgridlegacy.no-cssgrid .products-shortcode.products-masonry-shortcode-id-879508f5e31c64dfc45d9474e1049a03:not(.resize-by-browser-width) .dt-css-grid,\n.no-cssgridlegacy.no-cssgrid .products-shortcode.products-masonry-shortcode-id-879508f5e31c64dfc45d9474e1049a03:not(.resize-by-browser-width) .dt-css-grid {\n  display: flex;\n  flex-flow: row wrap;\n  margin: -15px;\n}\n.cssgridlegacy.no-cssgrid .products-shortcode.products-masonry-shortcode-id-879508f5e31c64dfc45d9474e1049a03:not(.resize-by-browser-width) .dt-css-grid .wf-cell,\n.no-cssgridlegacy.no-cssgrid .products-shortcode.products-masonry-shortcode-id-879508f5e31c64dfc45d9474e1049a03:not(.resize-by-browser-width) .dt-css-grid .wf-cell {\n  flex: 1 0 ;\n  max-width: 100%;\n  padding: 15px;\n  box-sizing: border-box;\n}\n.products-shortcode.products-masonry-shortcode-id-879508f5e31c64dfc45d9474e1049a03.resize-by-browser-width .dt-css-grid {\n  grid-template-columns: repeat(3,1fr);\n  grid-template-rows: auto;\n  grid-column-gap: 30px;\n  grid-row-gap: 30px;\n}\n.cssgridlegacy.no-cssgrid .products-shortcode.products-masonry-shortcode-id-879508f5e31c64dfc45d9474e1049a03.resize-by-browser-width .dt-css-grid,\n.no-cssgridlegacy.no-cssgrid .products-shortcode.products-masonry-shortcode-id-879508f5e31c64dfc45d9474e1049a03.resize-by-browser-width .dt-css-grid {\n  margin: -15px;\n}\n.cssgridlegacy.no-cssgrid .products-shortcode.products-masonry-shortcode-id-879508f5e31c64dfc45d9474e1049a03.resize-by-browser-width .dt-css-grid .wf-cell,\n.no-cssgridlegacy.no-cssgrid .products-shortcode.products-masonry-shortcode-id-879508f5e31c64dfc45d9474e1049a03.resize-by-browser-width .dt-css-grid .wf-cell {\n  width: 33.333333333333%;\n  padding: 15px;\n}\n@media screen and (max-width: 1199px) {\n  .products-shortcode.products-masonry-shortcode-id-879508f5e31c64dfc45d9474e1049a03.resize-by-browser-width .dt-css-grid {\n    grid-template-columns: repeat(3,1fr);\n  }\n  .cssgridlegacy.no-cssgrid .products-shortcode.products-masonry-shortcode-id-879508f5e31c64dfc45d9474e1049a03.resize-by-browser-width .dt-css-grid .wf-cell,\n  .no-cssgridlegacy.no-cssgrid .products-shortcode.products-masonry-shortcode-id-879508f5e31c64dfc45d9474e1049a03.resize-by-browser-width .dt-css-grid .wf-cell {\n    width: 33.333333333333%;\n  }\n}\n@media screen and (max-width: 991px) {\n  .products-shortcode.products-masonry-shortcode-id-879508f5e31c64dfc45d9474e1049a03.resize-by-browser-width .dt-css-grid {\n    grid-template-columns: repeat(2,1fr);\n  }\n  .cssgridlegacy.no-cssgrid .products-shortcode.products-masonry-shortcode-id-879508f5e31c64dfc45d9474e1049a03.resize-by-browser-width .dt-css-grid .wf-cell,\n  .no-cssgridlegacy.no-cssgrid .products-shortcode.products-masonry-shortcode-id-879508f5e31c64dfc45d9474e1049a03.resize-by-browser-width .dt-css-grid .wf-cell {\n    width: 50%;\n  }\n}\n@media screen and (max-width: 767px) {\n  .products-shortcode.products-masonry-shortcode-id-879508f5e31c64dfc45d9474e1049a03.resize-by-browser-width .dt-css-grid {\n    grid-template-columns: repeat(1,1fr);\n  }\n  .cssgridlegacy.no-cssgrid .products-shortcode.products-masonry-shortcode-id-879508f5e31c64dfc45d9474e1049a03.resize-by-browser-width .dt-css-grid .wf-cell,\n  .no-cssgridlegacy.no-cssgrid .products-shortcode.products-masonry-shortcode-id-879508f5e31c64dfc45d9474e1049a03.resize-by-browser-width .dt-css-grid .wf-cell {\n    width: 100%;\n  }\n}\n\";s:32:\"719b1d3dc9f3019cae87c8edd58a4f7f\";s:3744:\".products-shortcode.products-masonry-shortcode-id-719b1d3dc9f3019cae87c8edd58a4f7f .filter-bg-decoration .filter-categories a.act {\n  color: #fff;\n}\n.products-shortcode.products-masonry-shortcode-id-719b1d3dc9f3019cae87c8edd58a4f7f:not(.resize-by-browser-width) .dt-css-grid {\n  grid-row-gap: 30px;\n  grid-column-gap: 30px;\n  grid-template-columns: repeat(auto-fill,minmax(,1fr));\n}\n.cssgridlegacy.no-cssgrid .products-shortcode.products-masonry-shortcode-id-719b1d3dc9f3019cae87c8edd58a4f7f:not(.resize-by-browser-width) .dt-css-grid,\n.no-cssgridlegacy.no-cssgrid .products-shortcode.products-masonry-shortcode-id-719b1d3dc9f3019cae87c8edd58a4f7f:not(.resize-by-browser-width) .dt-css-grid {\n  display: flex;\n  flex-flow: row wrap;\n  margin: -15px;\n}\n.cssgridlegacy.no-cssgrid .products-shortcode.products-masonry-shortcode-id-719b1d3dc9f3019cae87c8edd58a4f7f:not(.resize-by-browser-width) .dt-css-grid .wf-cell,\n.no-cssgridlegacy.no-cssgrid .products-shortcode.products-masonry-shortcode-id-719b1d3dc9f3019cae87c8edd58a4f7f:not(.resize-by-browser-width) .dt-css-grid .wf-cell {\n  flex: 1 0 ;\n  max-width: 100%;\n  padding: 15px;\n  box-sizing: border-box;\n}\n.products-shortcode.products-masonry-shortcode-id-719b1d3dc9f3019cae87c8edd58a4f7f.resize-by-browser-width .dt-css-grid {\n  grid-template-columns: repeat(3,1fr);\n  grid-template-rows: auto;\n  grid-column-gap: 30px;\n  grid-row-gap: 30px;\n}\n.cssgridlegacy.no-cssgrid .products-shortcode.products-masonry-shortcode-id-719b1d3dc9f3019cae87c8edd58a4f7f.resize-by-browser-width .dt-css-grid,\n.no-cssgridlegacy.no-cssgrid .products-shortcode.products-masonry-shortcode-id-719b1d3dc9f3019cae87c8edd58a4f7f.resize-by-browser-width .dt-css-grid {\n  margin: -15px;\n}\n.cssgridlegacy.no-cssgrid .products-shortcode.products-masonry-shortcode-id-719b1d3dc9f3019cae87c8edd58a4f7f.resize-by-browser-width .dt-css-grid .wf-cell,\n.no-cssgridlegacy.no-cssgrid .products-shortcode.products-masonry-shortcode-id-719b1d3dc9f3019cae87c8edd58a4f7f.resize-by-browser-width .dt-css-grid .wf-cell {\n  width: 33.333333333333%;\n  padding: 15px;\n}\n@media screen and (max-width: 1199px) {\n  .products-shortcode.products-masonry-shortcode-id-719b1d3dc9f3019cae87c8edd58a4f7f.resize-by-browser-width .dt-css-grid {\n    grid-template-columns: repeat(3,1fr);\n  }\n  .cssgridlegacy.no-cssgrid .products-shortcode.products-masonry-shortcode-id-719b1d3dc9f3019cae87c8edd58a4f7f.resize-by-browser-width .dt-css-grid .wf-cell,\n  .no-cssgridlegacy.no-cssgrid .products-shortcode.products-masonry-shortcode-id-719b1d3dc9f3019cae87c8edd58a4f7f.resize-by-browser-width .dt-css-grid .wf-cell {\n    width: 33.333333333333%;\n  }\n}\n@media screen and (max-width: 991px) {\n  .products-shortcode.products-masonry-shortcode-id-719b1d3dc9f3019cae87c8edd58a4f7f.resize-by-browser-width .dt-css-grid {\n    grid-template-columns: repeat(2,1fr);\n  }\n  .cssgridlegacy.no-cssgrid .products-shortcode.products-masonry-shortcode-id-719b1d3dc9f3019cae87c8edd58a4f7f.resize-by-browser-width .dt-css-grid .wf-cell,\n  .no-cssgridlegacy.no-cssgrid .products-shortcode.products-masonry-shortcode-id-719b1d3dc9f3019cae87c8edd58a4f7f.resize-by-browser-width .dt-css-grid .wf-cell {\n    width: 50%;\n  }\n}\n@media screen and (max-width: 767px) {\n  .products-shortcode.products-masonry-shortcode-id-719b1d3dc9f3019cae87c8edd58a4f7f.resize-by-browser-width .dt-css-grid {\n    grid-template-columns: repeat(1,1fr);\n  }\n  .cssgridlegacy.no-cssgrid .products-shortcode.products-masonry-shortcode-id-719b1d3dc9f3019cae87c8edd58a4f7f.resize-by-browser-width .dt-css-grid .wf-cell,\n  .no-cssgridlegacy.no-cssgrid .products-shortcode.products-masonry-shortcode-id-719b1d3dc9f3019cae87c8edd58a4f7f.resize-by-browser-width .dt-css-grid .wf-cell {\n    width: 100%;\n  }\n}\n\";s:32:\"6b4c7e4e9eff3239d0c2132c319caf82\";s:3744:\".products-shortcode.products-masonry-shortcode-id-6b4c7e4e9eff3239d0c2132c319caf82 .filter-bg-decoration .filter-categories a.act {\n  color: #fff;\n}\n.products-shortcode.products-masonry-shortcode-id-6b4c7e4e9eff3239d0c2132c319caf82:not(.resize-by-browser-width) .dt-css-grid {\n  grid-row-gap: 30px;\n  grid-column-gap: 30px;\n  grid-template-columns: repeat(auto-fill,minmax(,1fr));\n}\n.cssgridlegacy.no-cssgrid .products-shortcode.products-masonry-shortcode-id-6b4c7e4e9eff3239d0c2132c319caf82:not(.resize-by-browser-width) .dt-css-grid,\n.no-cssgridlegacy.no-cssgrid .products-shortcode.products-masonry-shortcode-id-6b4c7e4e9eff3239d0c2132c319caf82:not(.resize-by-browser-width) .dt-css-grid {\n  display: flex;\n  flex-flow: row wrap;\n  margin: -15px;\n}\n.cssgridlegacy.no-cssgrid .products-shortcode.products-masonry-shortcode-id-6b4c7e4e9eff3239d0c2132c319caf82:not(.resize-by-browser-width) .dt-css-grid .wf-cell,\n.no-cssgridlegacy.no-cssgrid .products-shortcode.products-masonry-shortcode-id-6b4c7e4e9eff3239d0c2132c319caf82:not(.resize-by-browser-width) .dt-css-grid .wf-cell {\n  flex: 1 0 ;\n  max-width: 100%;\n  padding: 15px;\n  box-sizing: border-box;\n}\n.products-shortcode.products-masonry-shortcode-id-6b4c7e4e9eff3239d0c2132c319caf82.resize-by-browser-width .dt-css-grid {\n  grid-template-columns: repeat(3,1fr);\n  grid-template-rows: auto;\n  grid-column-gap: 30px;\n  grid-row-gap: 30px;\n}\n.cssgridlegacy.no-cssgrid .products-shortcode.products-masonry-shortcode-id-6b4c7e4e9eff3239d0c2132c319caf82.resize-by-browser-width .dt-css-grid,\n.no-cssgridlegacy.no-cssgrid .products-shortcode.products-masonry-shortcode-id-6b4c7e4e9eff3239d0c2132c319caf82.resize-by-browser-width .dt-css-grid {\n  margin: -15px;\n}\n.cssgridlegacy.no-cssgrid .products-shortcode.products-masonry-shortcode-id-6b4c7e4e9eff3239d0c2132c319caf82.resize-by-browser-width .dt-css-grid .wf-cell,\n.no-cssgridlegacy.no-cssgrid .products-shortcode.products-masonry-shortcode-id-6b4c7e4e9eff3239d0c2132c319caf82.resize-by-browser-width .dt-css-grid .wf-cell {\n  width: 33.333333333333%;\n  padding: 15px;\n}\n@media screen and (max-width: 1199px) {\n  .products-shortcode.products-masonry-shortcode-id-6b4c7e4e9eff3239d0c2132c319caf82.resize-by-browser-width .dt-css-grid {\n    grid-template-columns: repeat(3,1fr);\n  }\n  .cssgridlegacy.no-cssgrid .products-shortcode.products-masonry-shortcode-id-6b4c7e4e9eff3239d0c2132c319caf82.resize-by-browser-width .dt-css-grid .wf-cell,\n  .no-cssgridlegacy.no-cssgrid .products-shortcode.products-masonry-shortcode-id-6b4c7e4e9eff3239d0c2132c319caf82.resize-by-browser-width .dt-css-grid .wf-cell {\n    width: 33.333333333333%;\n  }\n}\n@media screen and (max-width: 991px) {\n  .products-shortcode.products-masonry-shortcode-id-6b4c7e4e9eff3239d0c2132c319caf82.resize-by-browser-width .dt-css-grid {\n    grid-template-columns: repeat(2,1fr);\n  }\n  .cssgridlegacy.no-cssgrid .products-shortcode.products-masonry-shortcode-id-6b4c7e4e9eff3239d0c2132c319caf82.resize-by-browser-width .dt-css-grid .wf-cell,\n  .no-cssgridlegacy.no-cssgrid .products-shortcode.products-masonry-shortcode-id-6b4c7e4e9eff3239d0c2132c319caf82.resize-by-browser-width .dt-css-grid .wf-cell {\n    width: 50%;\n  }\n}\n@media screen and (max-width: 767px) {\n  .products-shortcode.products-masonry-shortcode-id-6b4c7e4e9eff3239d0c2132c319caf82.resize-by-browser-width .dt-css-grid {\n    grid-template-columns: repeat(1,1fr);\n  }\n  .cssgridlegacy.no-cssgrid .products-shortcode.products-masonry-shortcode-id-6b4c7e4e9eff3239d0c2132c319caf82.resize-by-browser-width .dt-css-grid .wf-cell,\n  .no-cssgridlegacy.no-cssgrid .products-shortcode.products-masonry-shortcode-id-6b4c7e4e9eff3239d0c2132c319caf82.resize-by-browser-width .dt-css-grid .wf-cell {\n    width: 100%;\n  }\n}\n\";}'),(15047,3039,'_dt_sidebar_position','right'),(15048,3039,'_dt_sidebar_widgetarea_id','sidebar_1'),(15049,3039,'_dt_sidebar_hide_on_mobile','0'),(15050,3039,'_dt_footer_show','1'),(15051,3039,'_dt_footer_widgetarea_id','sidebar_2'),(15052,3039,'_dt_footer_hide_on_mobile','0'),(15053,3039,'_dt_header_title','fancy'),(15054,3039,'_dt_header_background','normal'),(15055,3039,'_dt_header_background_below_slideshow','disabled'),(15056,3039,'_dt_header_transparent_bg_color_scheme','light'),(15057,3039,'_dt_header_transparent_top_bar_bg_color','#ffffff'),(15058,3039,'_dt_header_transparent_top_bar_bg_opacity','25'),(15059,3039,'_dt_header_transparent_bg_color','#000000'),(15060,3039,'_dt_header_transparent_bg_opacity','50'),(15061,3039,'_dt_header_disabled_background','normal'),(15062,3039,'_dt_header_disabled_transparent_bg_color_scheme','light'),(15063,3039,'_dt_header_disabled_transparent_top_bar_bg_color','#ffffff'),(15064,3039,'_dt_header_disabled_transparent_top_bar_bg_opacity','25'),(15065,3039,'_dt_header_disabled_transparent_bg_color','#000000'),(15066,3039,'_dt_header_disabled_transparent_bg_opacity','50'),(15067,3039,'_dt_page_overrides_top_margin',''),(15068,3039,'_dt_page_overrides_right_margin','0%'),(15069,3039,'_dt_page_overrides_bottom_margin',''),(15070,3039,'_dt_page_overrides_left_margin','0%'),(15071,3039,'_dt_mobile_page_padding_top',''),(15072,3039,'_dt_mobile_page_padding_right',''),(15073,3039,'_dt_mobile_page_padding_bottom',''),(15074,3039,'_dt_mobile_page_padding_left',''),(15075,3039,'_dt_fancy_header_layout_heading',''),(15076,3039,'_dt_fancy_header_title_aligment','left'),(15077,3039,'_dt_fancy_header_height','300'),(15078,3039,'_dt_fancy_header_padding-top','0px'),(15079,3039,'_dt_fancy_header_padding-bottom','0px'),(15080,3039,'_dt_fancy_header_breadcrumbs_heading',''),(15081,3039,'_dt_fancy_header_breadcrumbs','disabled'),(15082,3039,'_dt_fancy_header_breadcrumbs_text_color','#ffffff'),(15083,3039,'_dt_fancy_header_breadcrumbs_bg_color','disabled'),(15084,3039,'_dt_fancy_header_title_heading',''),(15085,3039,'_dt_fancy_header_title_mode','generic'),(15086,3039,'_dt_fancy_header_title',''),(15087,3039,'_dt_fancy_header_title_font_size','36'),(15088,3039,'_dt_fancy_header_title_line_height','36'),(15089,3039,'_dt_fancy_header_text_transform','none'),(15090,3039,'_dt_fancy_header_title_color_mode','color'),(15091,3039,'_dt_fancy_header_title_color','#ffffff'),(15092,3039,'_dt_fancy_header_subtitle_heading',''),(15093,3039,'_dt_fancy_header_subtitle',''),(15094,3039,'_dt_fancy_header_subtitle_font_size','18'),(15095,3039,'_dt_fancy_header_subtitle_line_height','26'),(15096,3039,'_dt_fancy_header_subtitle_text_transform','none'),(15097,3039,'_dt_fancy_header_subtitle_color_mode','color'),(15098,3039,'_dt_fancy_header_subtitle_color','#ffffff'),(15099,3039,'_dt_fancy_header_bg_heading',''),(15100,3039,'_dt_fancy_header_bg_color','#222222'),(15101,3039,'_dt_fancy_header_bg_image_origin','custom'),(15102,3039,'_dt_fancy_header_bg_repeat','no-repeat'),(15103,3039,'_dt_fancy_header_bg_position_x','left'),(15104,3039,'_dt_fancy_header_bg_position_y','center'),(15105,3039,'_dt_fancy_header_bg_fullscreen','1'),(15106,3039,'_dt_fancy_header_bg_overlay','0'),(15107,3039,'_dt_fancy_header_overlay_color','#000'),(15108,3039,'_dt_fancy_header_bg_overlay_opacity','50'),(15109,3039,'_dt_fancy_header_scroll_effect','default'),(15110,3039,'_dt_fancy_header_bg_parallax','0.5'),(15111,3039,'_dt_fancy_header_responsiveness_heading',''),(15112,3039,'_dt_fancy_header_responsiveness','enabled'),(15113,3039,'_dt_fancy_header_responsiveness_switch','778px'),(15114,3039,'_dt_fancy_header_responsive_height','300'),(15115,3039,'_dt_fancy_header_responsive_font_size','30'),(15116,3039,'_dt_fancy_header_responsive_title_line_height','38'),(15117,3039,'_dt_fancy_header_responsive_subtitle_font_size','20'),(15118,3039,'_dt_fancy_header_responsive_subtitle_line_height','28'),(15119,3039,'_dt_fancy_header_responsive_breadcrumbs','disabled'),(15120,3039,'_dt_microsite_primary_menu',''),(15121,3039,'_dt_microsite_split_left_menu',''),(15122,3039,'_dt_microsite_split_right_menu',''),(15123,3039,'_dt_microsite_mobile_menu',''),(15124,3039,'the7_fancy_title_css','#main > .wf-wrap {\n  padding-right: 0%;\n  padding-left: 0%;\n}\n.fancy-header {\n  background-image: url(\'https://farmchemie.yasithawd.com/wp-content/uploads/2023/09/PET-CARE2.gif\');\n  background-repeat: no-repeat;\n  background-position: left center;\n  background-size: cover;\n  background-color: #222222;\n}\n.mobile-false .fancy-header {\n  background-attachment: scroll;\n}\n.fancy-header .wf-wrap {\n  min-height: 300px;\n  padding-top: 0px;\n  padding-bottom: 0px;\n}\n.fancy-header .fancy-title {\n  font-size: 36px;\n  line-height: 36px;\n  color: #ffffff;\n  text-transform: none;\n}\n.fancy-header .fancy-subtitle {\n  font-size: 18px;\n  line-height: 26px;\n  color: #ffffff;\n  text-transform: none;\n}\n.fancy-header .breadcrumbs {\n  color: #ffffff;\n}\n.fancy-header-overlay {\n  background: rgba(0,0,0,0.5);\n}\n@media screen and (max-width: 778px) {\n  .fancy-header .wf-wrap {\n    min-height: 300px;\n  }\n  .fancy-header .fancy-title {\n    font-size: 30px;\n    line-height: 38px;\n  }\n  .fancy-header .fancy-subtitle {\n    font-size: 20px;\n    line-height: 28px;\n  }\n  .fancy-header.breadcrumbs-mobile-off .breadcrumbs {\n    display: none;\n  }\n  #fancy-header > .wf-wrap {\n    flex-flow: column wrap;\n    align-items: center;\n    justify-content: center;\n    padding-bottom: 0px !important;\n  }\n  .fancy-header.title-left .breadcrumbs {\n    text-align: center;\n    float: none;\n  }\n  .breadcrumbs {\n    margin-bottom: 10px;\n  }\n  .breadcrumbs.breadcrumbs-bg {\n    margin-top: 10px;\n  }\n  .fancy-header.title-right .breadcrumbs {\n    margin: 10px 0 10px 0;\n  }\n  #fancy-header .hgroup,\n  #fancy-header .breadcrumbs {\n    text-align: center;\n  }\n  .fancy-header .hgroup {\n    padding-bottom: 5px;\n  }\n  .breadcrumbs-off .hgroup {\n    padding-bottom: 5px;\n  }\n  .title-right .hgroup {\n    padding: 0 0 5px 0;\n  }\n  .title-right.breadcrumbs-off .hgroup {\n    padding-top: 5px;\n  }\n  .title-left.disabled-bg .breadcrumbs {\n    margin-bottom: 0;\n  }\n}\n'),(15125,3042,'_menu_item_type','post_type'),(15126,3042,'_menu_item_menu_item_parent','3545'),(15127,3042,'_menu_item_object_id','3039'),(15128,3042,'_menu_item_object','page'),(15129,3042,'_menu_item_target',''),(15130,3042,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(15131,3042,'_menu_item_xfn',''),(15132,3042,'_menu_item_url',''),(15136,3044,'_wp_attached_file','2023/08/2023-NEW-WEB-LOGO.gif'),(15137,3044,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:842;s:6:\"height\";i:596;s:4:\"file\";s:29:\"2023/08/2023-NEW-WEB-LOGO.gif\";s:8:\"filesize\";i:62250;s:5:\"sizes\";a:9:{s:6:\"medium\";a:5:{s:4:\"file\";s:29:\"2023-NEW-WEB-LOGO-300x212.gif\";s:5:\"width\";i:300;s:6:\"height\";i:212;s:9:\"mime-type\";s:9:\"image/gif\";s:8:\"filesize\";i:2891;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:29:\"2023-NEW-WEB-LOGO-150x150.gif\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/gif\";s:8:\"filesize\";i:2840;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:29:\"2023-NEW-WEB-LOGO-768x544.gif\";s:5:\"width\";i:768;s:6:\"height\";i:544;s:9:\"mime-type\";s:9:\"image/gif\";s:8:\"filesize\";i:10485;}s:21:\"woocommerce_thumbnail\";a:6:{s:4:\"file\";s:29:\"2023-NEW-WEB-LOGO-300x300.gif\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/gif\";s:8:\"filesize\";i:4940;s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:5:{s:4:\"file\";s:29:\"2023-NEW-WEB-LOGO-600x425.gif\";s:5:\"width\";i:600;s:6:\"height\";i:425;s:9:\"mime-type\";s:9:\"image/gif\";s:8:\"filesize\";i:7920;}s:29:\"woocommerce_gallery_thumbnail\";a:5:{s:4:\"file\";s:29:\"2023-NEW-WEB-LOGO-200x200.gif\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/gif\";s:8:\"filesize\";i:2612;}s:12:\"shop_catalog\";a:5:{s:4:\"file\";s:29:\"2023-NEW-WEB-LOGO-300x300.gif\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/gif\";s:8:\"filesize\";i:4940;}s:11:\"shop_single\";a:5:{s:4:\"file\";s:29:\"2023-NEW-WEB-LOGO-600x425.gif\";s:5:\"width\";i:600;s:6:\"height\";i:425;s:9:\"mime-type\";s:9:\"image/gif\";s:8:\"filesize\";i:7920;}s:14:\"shop_thumbnail\";a:5:{s:4:\"file\";s:29:\"2023-NEW-WEB-LOGO-200x200.gif\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/gif\";s:8:\"filesize\";i:2612;}}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:{}}}'),(15138,3045,'_wp_attached_file','2023/08/Size-2023-NEW-WEB-LOGO.gif'),(15139,3045,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:549;s:6:\"height\";i:134;s:4:\"file\";s:34:\"2023/08/Size-2023-NEW-WEB-LOGO.gif\";s:8:\"filesize\";i:71111;s:5:\"sizes\";a:6:{s:6:\"medium\";a:5:{s:4:\"file\";s:33:\"Size-2023-NEW-WEB-LOGO-300x73.gif\";s:5:\"width\";i:300;s:6:\"height\";i:73;s:9:\"mime-type\";s:9:\"image/gif\";s:8:\"filesize\";i:6396;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:34:\"Size-2023-NEW-WEB-LOGO-150x134.gif\";s:5:\"width\";i:150;s:6:\"height\";i:134;s:9:\"mime-type\";s:9:\"image/gif\";s:8:\"filesize\";i:5836;}s:21:\"woocommerce_thumbnail\";a:6:{s:4:\"file\";s:34:\"Size-2023-NEW-WEB-LOGO-300x134.gif\";s:5:\"width\";i:300;s:6:\"height\";i:134;s:9:\"mime-type\";s:9:\"image/gif\";s:8:\"filesize\";i:10019;s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:5:{s:4:\"file\";s:34:\"Size-2023-NEW-WEB-LOGO-200x134.gif\";s:5:\"width\";i:200;s:6:\"height\";i:134;s:9:\"mime-type\";s:9:\"image/gif\";s:8:\"filesize\";i:7392;}s:12:\"shop_catalog\";a:5:{s:4:\"file\";s:34:\"Size-2023-NEW-WEB-LOGO-300x134.gif\";s:5:\"width\";i:300;s:6:\"height\";i:134;s:9:\"mime-type\";s:9:\"image/gif\";s:8:\"filesize\";i:10019;}s:14:\"shop_thumbnail\";a:5:{s:4:\"file\";s:34:\"Size-2023-NEW-WEB-LOGO-200x134.gif\";s:5:\"width\";i:200;s:6:\"height\";i:134;s:9:\"mime-type\";s:9:\"image/gif\";s:8:\"filesize\";i:7392;}}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:{}}}'),(15140,3046,'_wp_attached_file','2023/08/PET-CARE-2.png'),(15141,3046,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1300;s:6:\"height\";i:300;s:4:\"file\";s:22:\"2023/08/PET-CARE-2.png\";s:8:\"filesize\";i:187497;s:5:\"sizes\";a:10:{s:6:\"medium\";a:5:{s:4:\"file\";s:21:\"PET-CARE-2-300x69.png\";s:5:\"width\";i:300;s:6:\"height\";i:69;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:36077;}s:5:\"large\";a:5:{s:4:\"file\";s:23:\"PET-CARE-2-1024x236.png\";s:5:\"width\";i:1024;s:6:\"height\";i:236;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:376012;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:22:\"PET-CARE-2-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:37971;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:22:\"PET-CARE-2-768x177.png\";s:5:\"width\";i:768;s:6:\"height\";i:177;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:209810;}s:21:\"woocommerce_thumbnail\";a:6:{s:4:\"file\";s:22:\"PET-CARE-2-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:53039;s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:5:{s:4:\"file\";s:22:\"PET-CARE-2-600x138.png\";s:5:\"width\";i:600;s:6:\"height\";i:138;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:128892;}s:29:\"woocommerce_gallery_thumbnail\";a:5:{s:4:\"file\";s:22:\"PET-CARE-2-200x200.png\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:64095;}s:12:\"shop_catalog\";a:5:{s:4:\"file\";s:22:\"PET-CARE-2-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:53039;}s:11:\"shop_single\";a:5:{s:4:\"file\";s:22:\"PET-CARE-2-600x138.png\";s:5:\"width\";i:600;s:6:\"height\";i:138;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:128892;}s:14:\"shop_thumbnail\";a:5:{s:4:\"file\";s:22:\"PET-CARE-2-200x200.png\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:64095;}}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:{}}}'),(15142,3047,'_wp_attached_file','2023/08/LARGE-ANIMAL2.png'),(15143,3047,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1300;s:6:\"height\";i:300;s:4:\"file\";s:25:\"2023/08/LARGE-ANIMAL2.png\";s:8:\"filesize\";i:205787;s:5:\"sizes\";a:10:{s:6:\"medium\";a:5:{s:4:\"file\";s:24:\"LARGE-ANIMAL2-300x69.png\";s:5:\"width\";i:300;s:6:\"height\";i:69;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:39482;}s:5:\"large\";a:5:{s:4:\"file\";s:26:\"LARGE-ANIMAL2-1024x236.png\";s:5:\"width\";i:1024;s:6:\"height\";i:236;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:384053;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:25:\"LARGE-ANIMAL2-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:39404;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:25:\"LARGE-ANIMAL2-768x177.png\";s:5:\"width\";i:768;s:6:\"height\";i:177;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:218850;}s:21:\"woocommerce_thumbnail\";a:6:{s:4:\"file\";s:25:\"LARGE-ANIMAL2-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:50426;s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:5:{s:4:\"file\";s:25:\"LARGE-ANIMAL2-600x138.png\";s:5:\"width\";i:600;s:6:\"height\";i:138;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:137622;}s:29:\"woocommerce_gallery_thumbnail\";a:5:{s:4:\"file\";s:25:\"LARGE-ANIMAL2-200x200.png\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:65166;}s:12:\"shop_catalog\";a:5:{s:4:\"file\";s:25:\"LARGE-ANIMAL2-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:50426;}s:11:\"shop_single\";a:5:{s:4:\"file\";s:25:\"LARGE-ANIMAL2-600x138.png\";s:5:\"width\";i:600;s:6:\"height\";i:138;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:137622;}s:14:\"shop_thumbnail\";a:5:{s:4:\"file\";s:25:\"LARGE-ANIMAL2-200x200.png\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:65166;}}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:{}}}'),(15145,3048,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1300;s:6:\"height\";i:300;s:4:\"file\";s:21:\"2023/08/POULTRY-2.png\";s:8:\"filesize\";i:210238;s:5:\"sizes\";a:10:{s:6:\"medium\";a:5:{s:4:\"file\";s:20:\"POULTRY-2-300x69.png\";s:5:\"width\";i:300;s:6:\"height\";i:69;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:41097;}s:5:\"large\";a:5:{s:4:\"file\";s:22:\"POULTRY-2-1024x236.png\";s:5:\"width\";i:1024;s:6:\"height\";i:236;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:408879;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:21:\"POULTRY-2-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:39798;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:21:\"POULTRY-2-768x177.png\";s:5:\"width\";i:768;s:6:\"height\";i:177;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:234006;}s:21:\"woocommerce_thumbnail\";a:6:{s:4:\"file\";s:21:\"POULTRY-2-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:51881;s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:5:{s:4:\"file\";s:21:\"POULTRY-2-600x138.png\";s:5:\"width\";i:600;s:6:\"height\";i:138;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:147086;}s:29:\"woocommerce_gallery_thumbnail\";a:5:{s:4:\"file\";s:21:\"POULTRY-2-200x200.png\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:66764;}s:12:\"shop_catalog\";a:5:{s:4:\"file\";s:21:\"POULTRY-2-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:51881;}s:11:\"shop_single\";a:5:{s:4:\"file\";s:21:\"POULTRY-2-600x138.png\";s:5:\"width\";i:600;s:6:\"height\";i:138;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:147086;}s:14:\"shop_thumbnail\";a:5:{s:4:\"file\";s:21:\"POULTRY-2-200x200.png\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:66764;}}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:{}}}'),(15146,3049,'_wp_attached_file','2023/08/POULTRY-2-1.png'),(15147,3049,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1300;s:6:\"height\";i:300;s:4:\"file\";s:23:\"2023/08/POULTRY-2-1.png\";s:8:\"filesize\";i:211295;s:5:\"sizes\";a:10:{s:6:\"medium\";a:5:{s:4:\"file\";s:22:\"POULTRY-2-1-300x69.png\";s:5:\"width\";i:300;s:6:\"height\";i:69;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:41065;}s:5:\"large\";a:5:{s:4:\"file\";s:24:\"POULTRY-2-1-1024x236.png\";s:5:\"width\";i:1024;s:6:\"height\";i:236;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:409411;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:23:\"POULTRY-2-1-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:39792;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:23:\"POULTRY-2-1-768x177.png\";s:5:\"width\";i:768;s:6:\"height\";i:177;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:234256;}s:21:\"woocommerce_thumbnail\";a:6:{s:4:\"file\";s:23:\"POULTRY-2-1-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:52038;s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:5:{s:4:\"file\";s:23:\"POULTRY-2-1-600x138.png\";s:5:\"width\";i:600;s:6:\"height\";i:138;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:147092;}s:29:\"woocommerce_gallery_thumbnail\";a:5:{s:4:\"file\";s:23:\"POULTRY-2-1-200x200.png\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:66801;}s:12:\"shop_catalog\";a:5:{s:4:\"file\";s:23:\"POULTRY-2-1-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:52038;}s:11:\"shop_single\";a:5:{s:4:\"file\";s:23:\"POULTRY-2-1-600x138.png\";s:5:\"width\";i:600;s:6:\"height\";i:138;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:147092;}s:14:\"shop_thumbnail\";a:5:{s:4:\"file\";s:23:\"POULTRY-2-1-200x200.png\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:66801;}}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:{}}}'),(28467,3764,'_wp_attached_file','2023/09/ABOUT-US1.gif'),(15148,3050,'_wp_attached_file','2023/08/Dyvesta-Transparent.png'),(15149,3050,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:400;s:6:\"height\";i:400;s:4:\"file\";s:31:\"2023/08/Dyvesta-Transparent.png\";s:8:\"filesize\";i:9476;s:5:\"sizes\";a:6:{s:6:\"medium\";a:5:{s:4:\"file\";s:31:\"Dyvesta-Transparent-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:40819;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:31:\"Dyvesta-Transparent-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:18610;}s:21:\"woocommerce_thumbnail\";a:6:{s:4:\"file\";s:31:\"Dyvesta-Transparent-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:40819;s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:5:{s:4:\"file\";s:31:\"Dyvesta-Transparent-200x200.png\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:25671;}s:12:\"shop_catalog\";a:5:{s:4:\"file\";s:31:\"Dyvesta-Transparent-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:40819;}s:14:\"shop_thumbnail\";a:5:{s:4:\"file\";s:31:\"Dyvesta-Transparent-200x200.png\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:25671;}}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:{}}}'),(15150,3051,'_wp_attached_file','2023/08/Dyvesta2.png'),(15151,3051,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:400;s:6:\"height\";i:400;s:4:\"file\";s:20:\"2023/08/Dyvesta2.png\";s:8:\"filesize\";i:9585;s:5:\"sizes\";a:6:{s:6:\"medium\";a:5:{s:4:\"file\";s:20:\"Dyvesta2-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:35111;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:20:\"Dyvesta2-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:15001;}s:21:\"woocommerce_thumbnail\";a:6:{s:4:\"file\";s:20:\"Dyvesta2-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:35111;s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:5:{s:4:\"file\";s:20:\"Dyvesta2-200x200.png\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:21764;}s:12:\"shop_catalog\";a:5:{s:4:\"file\";s:20:\"Dyvesta2-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:35111;}s:14:\"shop_thumbnail\";a:5:{s:4:\"file\";s:20:\"Dyvesta2-200x200.png\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:21764;}}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:{}}}'),(28049,3686,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(28048,3686,'_menu_item_target',''),(28047,3686,'_menu_item_object','page'),(28046,3686,'_menu_item_object_id','3468'),(28045,3686,'_menu_item_menu_item_parent','0'),(28044,3686,'_menu_item_type','post_type'),(15163,3053,'_wp_attached_file','2023/08/favi-icom16x-1-1.gif'),(15162,2576,'_wp_old_date','2022-09-07'),(15164,3053,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:16;s:6:\"height\";i:16;s:4:\"file\";s:28:\"2023/08/favi-icom16x-1-1.gif\";s:8:\"filesize\";i:1128;s:5:\"sizes\";a:0:{}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:{}}}'),(15165,3054,'_wp_attached_file','2023/08/favi-icom32x-1-1.gif'),(15166,3054,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:32;s:6:\"height\";i:32;s:4:\"file\";s:28:\"2023/08/favi-icom32x-1-1.gif\";s:8:\"filesize\";i:1187;s:5:\"sizes\";a:0:{}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:{}}}'),(15167,3055,'_wp_attached_file','2023/08/552px-x-130px.gif'),(15168,3055,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:552;s:6:\"height\";i:130;s:4:\"file\";s:25:\"2023/08/552px-x-130px.gif\";s:8:\"filesize\";i:68698;s:5:\"sizes\";a:6:{s:6:\"medium\";a:5:{s:4:\"file\";s:24:\"552px-x-130px-300x71.gif\";s:5:\"width\";i:300;s:6:\"height\";i:71;s:9:\"mime-type\";s:9:\"image/gif\";s:8:\"filesize\";i:6286;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:25:\"552px-x-130px-150x130.gif\";s:5:\"width\";i:150;s:6:\"height\";i:130;s:9:\"mime-type\";s:9:\"image/gif\";s:8:\"filesize\";i:5494;}s:21:\"woocommerce_thumbnail\";a:6:{s:4:\"file\";s:25:\"552px-x-130px-300x130.gif\";s:5:\"width\";i:300;s:6:\"height\";i:130;s:9:\"mime-type\";s:9:\"image/gif\";s:8:\"filesize\";i:9353;s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:5:{s:4:\"file\";s:25:\"552px-x-130px-200x130.gif\";s:5:\"width\";i:200;s:6:\"height\";i:130;s:9:\"mime-type\";s:9:\"image/gif\";s:8:\"filesize\";i:6894;}s:12:\"shop_catalog\";a:5:{s:4:\"file\";s:25:\"552px-x-130px-300x130.gif\";s:5:\"width\";i:300;s:6:\"height\";i:130;s:9:\"mime-type\";s:9:\"image/gif\";s:8:\"filesize\";i:9353;}s:14:\"shop_thumbnail\";a:5:{s:4:\"file\";s:25:\"552px-x-130px-200x130.gif\";s:5:\"width\";i:200;s:6:\"height\";i:130;s:9:\"mime-type\";s:9:\"image/gif\";s:8:\"filesize\";i:6894;}}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:{}}}'),(15169,3056,'_wp_attached_file','2023/08/366px-100px.gif'),(15170,3056,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:366;s:6:\"height\";i:86;s:4:\"file\";s:23:\"2023/08/366px-100px.gif\";s:8:\"filesize\";i:43856;s:5:\"sizes\";a:6:{s:6:\"medium\";a:5:{s:4:\"file\";s:22:\"366px-100px-300x70.gif\";s:5:\"width\";i:300;s:6:\"height\";i:70;s:9:\"mime-type\";s:9:\"image/gif\";s:8:\"filesize\";i:6919;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:22:\"366px-100px-150x86.gif\";s:5:\"width\";i:150;s:6:\"height\";i:86;s:9:\"mime-type\";s:9:\"image/gif\";s:8:\"filesize\";i:5120;}s:21:\"woocommerce_thumbnail\";a:6:{s:4:\"file\";s:22:\"366px-100px-300x86.gif\";s:5:\"width\";i:300;s:6:\"height\";i:86;s:9:\"mime-type\";s:9:\"image/gif\";s:8:\"filesize\";i:7813;s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:5:{s:4:\"file\";s:22:\"366px-100px-200x86.gif\";s:5:\"width\";i:200;s:6:\"height\";i:86;s:9:\"mime-type\";s:9:\"image/gif\";s:8:\"filesize\";i:6405;}s:12:\"shop_catalog\";a:5:{s:4:\"file\";s:22:\"366px-100px-300x86.gif\";s:5:\"width\";i:300;s:6:\"height\";i:86;s:9:\"mime-type\";s:9:\"image/gif\";s:8:\"filesize\";i:7813;}s:14:\"shop_thumbnail\";a:5:{s:4:\"file\";s:22:\"366px-100px-200x86.gif\";s:5:\"width\";i:200;s:6:\"height\";i:86;s:9:\"mime-type\";s:9:\"image/gif\";s:8:\"filesize\";i:6405;}}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:{}}}'),(15171,3057,'_wp_attached_file','2023/08/16x16-fvi1.png'),(15172,3057,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:16;s:6:\"height\";i:16;s:4:\"file\";s:22:\"2023/08/16x16-fvi1.png\";s:8:\"filesize\";i:991;s:5:\"sizes\";a:0:{}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:{}}}'),(15173,3058,'_wp_attached_file','2023/08/32x32-fvi1.png'),(15174,3058,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:32;s:6:\"height\";i:32;s:4:\"file\";s:22:\"2023/08/32x32-fvi1.png\";s:8:\"filesize\";i:1042;s:5:\"sizes\";a:0:{}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:{}}}'),(15175,3059,'_wp_attached_file','2023/08/favicon-32x32-1.png'),(15176,3059,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:32;s:6:\"height\";i:32;s:4:\"file\";s:27:\"2023/08/favicon-32x32-1.png\";s:8:\"filesize\";i:1934;s:5:\"sizes\";a:0:{}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:{}}}'),(15177,3060,'_wpb_shortcodes_custom_css','.vc_custom_1689577528817{padding-bottom: 50px !important;}.vc_custom_1689578783264{padding-top: 50px !important;padding-bottom: 50px !important;}.vc_custom_1689578794814{padding-top: 50px !important;padding-bottom: 50px !important;}.vc_custom_1689578794814{padding-top: 50px !important;padding-bottom: 50px !important;}.vc_custom_1689577454678{margin-bottom: 50px !important;}.vc_custom_1689577559805{border-bottom-width: 1px !important;padding-top: 35px !important;padding-bottom: 35px !important;border-bottom-color: #079547 !important;border-bottom-style: solid !important;border-radius: 1px !important;}.vc_custom_1689577609020{border-bottom-width: 1px !important;padding-top: 35px !important;padding-bottom: 35px !important;border-bottom-color: #079547 !important;border-bottom-style: solid !important;border-radius: 1px !important;}.vc_custom_1689577609020{border-bottom-width: 1px !important;padding-top: 35px !important;padding-bottom: 35px !important;border-bottom-color: #079547 !important;border-bottom-style: solid !important;border-radius: 1px !important;}.vc_custom_1689577609020{border-bottom-width: 1px !important;padding-top: 35px !important;padding-bottom: 35px !important;border-bottom-color: #079547 !important;border-bottom-style: solid !important;border-radius: 1px !important;}.vc_custom_1689578812611{margin-top: 50px !important;}.vc_custom_1689578812611{margin-top: 50px !important;}'),(15178,3061,'_wp_attached_file','2023/08/Bottom-Groups-Logo.png'),(15179,3061,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:713;s:6:\"height\";i:322;s:4:\"file\";s:30:\"2023/08/Bottom-Groups-Logo.png\";s:8:\"filesize\";i:15641;s:5:\"sizes\";a:8:{s:6:\"medium\";a:5:{s:4:\"file\";s:30:\"Bottom-Groups-Logo-300x135.png\";s:5:\"width\";i:300;s:6:\"height\";i:135;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:27755;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:30:\"Bottom-Groups-Logo-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:12612;}s:21:\"woocommerce_thumbnail\";a:6:{s:4:\"file\";s:30:\"Bottom-Groups-Logo-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:25610;s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:5:{s:4:\"file\";s:30:\"Bottom-Groups-Logo-600x271.png\";s:5:\"width\";i:600;s:6:\"height\";i:271;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:62440;}s:29:\"woocommerce_gallery_thumbnail\";a:5:{s:4:\"file\";s:30:\"Bottom-Groups-Logo-200x200.png\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:16958;}s:12:\"shop_catalog\";a:5:{s:4:\"file\";s:30:\"Bottom-Groups-Logo-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:25610;}s:11:\"shop_single\";a:5:{s:4:\"file\";s:30:\"Bottom-Groups-Logo-600x271.png\";s:5:\"width\";i:600;s:6:\"height\";i:271;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:62440;}s:14:\"shop_thumbnail\";a:5:{s:4:\"file\";s:30:\"Bottom-Groups-Logo-200x200.png\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:16958;}}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:{}}}'),(15180,3062,'_wp_attached_file','2023/08/Adisseo.png'),(15181,3062,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:358;s:6:\"height\";i:168;s:4:\"file\";s:19:\"2023/08/Adisseo.png\";s:8:\"filesize\";i:3274;s:5:\"sizes\";a:6:{s:6:\"medium\";a:5:{s:4:\"file\";s:19:\"Adisseo-300x141.png\";s:5:\"width\";i:300;s:6:\"height\";i:141;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:17351;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:19:\"Adisseo-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:9442;}s:21:\"woocommerce_thumbnail\";a:6:{s:4:\"file\";s:19:\"Adisseo-300x168.png\";s:5:\"width\";i:300;s:6:\"height\";i:168;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:6928;s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:5:{s:4:\"file\";s:19:\"Adisseo-200x168.png\";s:5:\"width\";i:200;s:6:\"height\";i:168;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:5106;}s:12:\"shop_catalog\";a:5:{s:4:\"file\";s:19:\"Adisseo-300x168.png\";s:5:\"width\";i:300;s:6:\"height\";i:168;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:6928;}s:14:\"shop_thumbnail\";a:5:{s:4:\"file\";s:19:\"Adisseo-200x168.png\";s:5:\"width\";i:200;s:6:\"height\";i:168;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:5106;}}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:{}}}'),(15182,3063,'_wp_attached_file','2023/08/Basf.png'),(15183,3063,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:300;s:6:\"height\";i:168;s:4:\"file\";s:16:\"2023/08/Basf.png\";s:8:\"filesize\";i:5547;s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:16:\"Basf-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:5997;}s:29:\"woocommerce_gallery_thumbnail\";a:5:{s:4:\"file\";s:16:\"Basf-200x168.png\";s:5:\"width\";i:200;s:6:\"height\";i:168;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:4834;}s:14:\"shop_thumbnail\";a:5:{s:4:\"file\";s:16:\"Basf-200x168.png\";s:5:\"width\";i:200;s:6:\"height\";i:168;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:4834;}}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:{}}}'),(15184,3064,'_wp_attached_file','2023/08/pancosma.png'),(15185,3064,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:372;s:6:\"height\";i:168;s:4:\"file\";s:20:\"2023/08/pancosma.png\";s:8:\"filesize\";i:18406;s:5:\"sizes\";a:6:{s:6:\"medium\";a:5:{s:4:\"file\";s:20:\"pancosma-300x135.png\";s:5:\"width\";i:300;s:6:\"height\";i:135;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:57488;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:20:\"pancosma-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:34520;}s:21:\"woocommerce_thumbnail\";a:6:{s:4:\"file\";s:20:\"pancosma-300x168.png\";s:5:\"width\";i:300;s:6:\"height\";i:168;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:37587;s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:5:{s:4:\"file\";s:20:\"pancosma-200x168.png\";s:5:\"width\";i:200;s:6:\"height\";i:168;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:28791;}s:12:\"shop_catalog\";a:5:{s:4:\"file\";s:20:\"pancosma-300x168.png\";s:5:\"width\";i:300;s:6:\"height\";i:168;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:37587;}s:14:\"shop_thumbnail\";a:5:{s:4:\"file\";s:20:\"pancosma-200x168.png\";s:5:\"width\";i:200;s:6:\"height\";i:168;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:28791;}}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:{}}}'),(15186,3065,'_wp_attached_file','2023/08/Livisto.png'),(15187,3065,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:198;s:6:\"height\";i:168;s:4:\"file\";s:19:\"2023/08/Livisto.png\";s:8:\"filesize\";i:2710;s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:19:\"Livisto-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:11799;}}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:{}}}'),(15188,3066,'_wp_attached_file','2023/08/Huvepharma.png'),(15189,3066,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:312;s:6:\"height\";i:168;s:4:\"file\";s:22:\"2023/08/Huvepharma.png\";s:8:\"filesize\";i:6878;s:5:\"sizes\";a:6:{s:6:\"medium\";a:5:{s:4:\"file\";s:22:\"Huvepharma-300x162.png\";s:5:\"width\";i:300;s:6:\"height\";i:162;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:19189;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:22:\"Huvepharma-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:6193;}s:21:\"woocommerce_thumbnail\";a:6:{s:4:\"file\";s:22:\"Huvepharma-300x168.png\";s:5:\"width\";i:300;s:6:\"height\";i:168;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:14773;s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:5:{s:4:\"file\";s:22:\"Huvepharma-200x168.png\";s:5:\"width\";i:200;s:6:\"height\";i:168;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:7180;}s:12:\"shop_catalog\";a:5:{s:4:\"file\";s:22:\"Huvepharma-300x168.png\";s:5:\"width\";i:300;s:6:\"height\";i:168;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:14773;}s:14:\"shop_thumbnail\";a:5:{s:4:\"file\";s:22:\"Huvepharma-200x168.png\";s:5:\"width\";i:200;s:6:\"height\";i:168;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:7180;}}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:{}}}'),(15190,3067,'_wp_attached_file','2023/08/LOGOS-s.png'),(15191,3067,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:245;s:6:\"height\";i:168;s:4:\"file\";s:19:\"2023/08/LOGOS-s.png\";s:8:\"filesize\";i:10484;s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:19:\"LOGOS-s-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:20496;}s:29:\"woocommerce_gallery_thumbnail\";a:5:{s:4:\"file\";s:19:\"LOGOS-s-200x168.png\";s:5:\"width\";i:200;s:6:\"height\";i:168;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:24181;}s:14:\"shop_thumbnail\";a:5:{s:4:\"file\";s:19:\"LOGOS-s-200x168.png\";s:5:\"width\";i:200;s:6:\"height\";i:168;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:24181;}}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:{}}}'),(15192,3068,'_wp_attached_file','2023/08/Tolsa.png'),(15193,3068,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:276;s:6:\"height\";i:168;s:4:\"file\";s:17:\"2023/08/Tolsa.png\";s:8:\"filesize\";i:4926;s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:17:\"Tolsa-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:8493;}s:29:\"woocommerce_gallery_thumbnail\";a:5:{s:4:\"file\";s:17:\"Tolsa-200x168.png\";s:5:\"width\";i:200;s:6:\"height\";i:168;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:8169;}s:14:\"shop_thumbnail\";a:5:{s:4:\"file\";s:17:\"Tolsa-200x168.png\";s:5:\"width\";i:200;s:6:\"height\";i:168;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:8169;}}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:{}}}'),(15194,3069,'_wp_attached_file','2023/08/amoros.png'),(15195,3069,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:296;s:6:\"height\";i:168;s:4:\"file\";s:18:\"2023/08/amoros.png\";s:8:\"filesize\";i:7710;s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:18:\"amoros-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:12426;}s:29:\"woocommerce_gallery_thumbnail\";a:5:{s:4:\"file\";s:18:\"amoros-200x168.png\";s:5:\"width\";i:200;s:6:\"height\";i:168;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:12078;}s:14:\"shop_thumbnail\";a:5:{s:4:\"file\";s:18:\"amoros-200x168.png\";s:5:\"width\";i:200;s:6:\"height\";i:168;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:12078;}}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:{}}}'),(15196,3070,'_wp_attached_file','2023/08/Pootershaven.png'),(15197,3070,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:291;s:6:\"height\";i:168;s:4:\"file\";s:24:\"2023/08/Pootershaven.png\";s:8:\"filesize\";i:8114;s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:24:\"Pootershaven-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:16614;}s:29:\"woocommerce_gallery_thumbnail\";a:5:{s:4:\"file\";s:24:\"Pootershaven-200x168.png\";s:5:\"width\";i:200;s:6:\"height\";i:168;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:16047;}s:14:\"shop_thumbnail\";a:5:{s:4:\"file\";s:24:\"Pootershaven-200x168.png\";s:5:\"width\";i:200;s:6:\"height\";i:168;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:16047;}}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:{}}}'),(15198,3071,'_wpb_shortcodes_custom_css','.vc_custom_1689577528817{padding-bottom: 50px !important;}.vc_custom_1689578783264{padding-top: 50px !important;padding-bottom: 50px !important;}.vc_custom_1689578794814{padding-top: 50px !important;padding-bottom: 50px !important;}.vc_custom_1689578794814{padding-top: 50px !important;padding-bottom: 50px !important;}.vc_custom_1689577454678{margin-bottom: 50px !important;}.vc_custom_1689577559805{border-bottom-width: 1px !important;padding-top: 35px !important;padding-bottom: 35px !important;border-bottom-color: #079547 !important;border-bottom-style: solid !important;border-radius: 1px !important;}.vc_custom_1689577609020{border-bottom-width: 1px !important;padding-top: 35px !important;padding-bottom: 35px !important;border-bottom-color: #079547 !important;border-bottom-style: solid !important;border-radius: 1px !important;}.vc_custom_1689577609020{border-bottom-width: 1px !important;padding-top: 35px !important;padding-bottom: 35px !important;border-bottom-color: #079547 !important;border-bottom-style: solid !important;border-radius: 1px !important;}.vc_custom_1689577609020{border-bottom-width: 1px !important;padding-top: 35px !important;padding-bottom: 35px !important;border-bottom-color: #079547 !important;border-bottom-style: solid !important;border-radius: 1px !important;}.vc_custom_1691838795894{border-right-width: 1px !important;border-left-width: 1px !important;border-left-color: #000000 !important;border-left-style: solid !important;border-right-color: #000000 !important;border-right-style: solid !important;border-radius: 1px !important;}.vc_custom_1691838828613{border-right-width: 1px !important;border-left-width: 1px !important;border-left-color: #000000 !important;border-left-style: solid !important;border-right-color: #000000 !important;border-right-style: solid !important;border-radius: 1px !important;}.vc_custom_1691839418900{border-right-width: 1px !important;border-right-color: #000000 !important;border-right-style: solid !important;border-radius: 1px !important;}.vc_custom_1691839434460{border-right-width: 1px !important;border-right-color: #000000 !important;border-right-style: solid !important;border-radius: 1px !important;}.vc_custom_1691839449068{border-right-width: 1px !important;border-right-color: #000000 !important;border-right-style: solid !important;border-radius: 1px !important;}.vc_custom_1689578812611{margin-top: 50px !important;}.vc_custom_1689578812611{margin-top: 50px !important;}'),(15844,2964,'_wpb_shortcodes_custom_css_updated','1'),(15789,2964,'the7_fancy_title_css','#main {\n  padding-top: 1%;\n}\n'),(15199,3072,'_wp_attached_file','2023/08/favicon-16x16-1.png'),(15200,3072,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:16;s:6:\"height\";i:16;s:4:\"file\";s:27:\"2023/08/favicon-16x16-1.png\";s:8:\"filesize\";i:342;s:5:\"sizes\";a:0:{}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:{}}}'),(15201,3073,'_wp_attached_file','2023/08/favicon_32x32px.png'),(15202,3073,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:32;s:6:\"height\";i:32;s:4:\"file\";s:27:\"2023/08/favicon_32x32px.png\";s:8:\"filesize\";i:547;s:5:\"sizes\";a:0:{}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:{}}}'),(15203,3074,'_wp_attached_file','2023/08/Asset-1@300x.png'),(15204,3074,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:11336;s:6:\"height\";i:1464;s:4:\"file\";s:24:\"2023/08/Asset-1@300x.png\";s:8:\"filesize\";i:763092;s:5:\"sizes\";a:12:{s:6:\"medium\";a:5:{s:4:\"file\";s:23:\"Asset-1@300x-300x39.png\";s:5:\"width\";i:300;s:6:\"height\";i:39;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:12145;}s:5:\"large\";a:5:{s:4:\"file\";s:25:\"Asset-1@300x-1024x132.png\";s:5:\"width\";i:1024;s:6:\"height\";i:132;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:70642;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:24:\"Asset-1@300x-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:10165;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:23:\"Asset-1@300x-768x99.png\";s:5:\"width\";i:768;s:6:\"height\";i:99;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:46927;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:25:\"Asset-1@300x-1536x198.png\";s:5:\"width\";i:1536;s:6:\"height\";i:198;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:125140;}s:9:\"2048x2048\";a:5:{s:4:\"file\";s:25:\"Asset-1@300x-2048x264.png\";s:5:\"width\";i:2048;s:6:\"height\";i:264;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:186618;}s:21:\"woocommerce_thumbnail\";a:6:{s:4:\"file\";s:24:\"Asset-1@300x-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:24092;s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:5:{s:4:\"file\";s:23:\"Asset-1@300x-600x77.png\";s:5:\"width\";i:600;s:6:\"height\";i:77;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:32669;}s:29:\"woocommerce_gallery_thumbnail\";a:5:{s:4:\"file\";s:24:\"Asset-1@300x-200x200.png\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:15319;}s:12:\"shop_catalog\";a:5:{s:4:\"file\";s:24:\"Asset-1@300x-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:24092;}s:11:\"shop_single\";a:5:{s:4:\"file\";s:23:\"Asset-1@300x-600x77.png\";s:5:\"width\";i:600;s:6:\"height\";i:77;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:32669;}s:14:\"shop_thumbnail\";a:5:{s:4:\"file\";s:24:\"Asset-1@300x-200x200.png\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:15319;}}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:{}}}'),(15207,3076,'_wp_attached_file','2023/08/asset-resized2.png'),(15208,3076,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:700;s:6:\"height\";i:100;s:4:\"file\";s:26:\"2023/08/asset-resized2.png\";s:8:\"filesize\";i:54363;s:5:\"sizes\";a:8:{s:6:\"medium\";a:5:{s:4:\"file\";s:25:\"asset-resized2-300x43.png\";s:5:\"width\";i:300;s:6:\"height\";i:43;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:13503;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:26:\"asset-resized2-150x100.png\";s:5:\"width\";i:150;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:10428;}s:21:\"woocommerce_thumbnail\";a:6:{s:4:\"file\";s:26:\"asset-resized2-300x100.png\";s:5:\"width\";i:300;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:15695;s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:5:{s:4:\"file\";s:25:\"asset-resized2-600x86.png\";s:5:\"width\";i:600;s:6:\"height\";i:86;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:38460;}s:29:\"woocommerce_gallery_thumbnail\";a:5:{s:4:\"file\";s:26:\"asset-resized2-200x100.png\";s:5:\"width\";i:200;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:12156;}s:12:\"shop_catalog\";a:5:{s:4:\"file\";s:26:\"asset-resized2-300x100.png\";s:5:\"width\";i:300;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:15695;}s:11:\"shop_single\";a:5:{s:4:\"file\";s:25:\"asset-resized2-600x86.png\";s:5:\"width\";i:600;s:6:\"height\";i:86;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:38460;}s:14:\"shop_thumbnail\";a:5:{s:4:\"file\";s:26:\"asset-resized2-200x100.png\";s:5:\"width\";i:200;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:12156;}}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:{}}}'),(15209,3077,'_wp_attached_file','2023/04/Alverm-30_300px-200px.png'),(15210,3077,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:300;s:6:\"height\";i:200;s:4:\"file\";s:33:\"2023/04/Alverm-30_300px-200px.png\";s:8:\"filesize\";i:4359;s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:33:\"Alverm-30_300px-200px-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:8012;}s:29:\"woocommerce_gallery_thumbnail\";a:5:{s:4:\"file\";s:33:\"Alverm-30_300px-200px-200x200.png\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:7117;}s:14:\"shop_thumbnail\";a:5:{s:4:\"file\";s:33:\"Alverm-30_300px-200px-200x200.png\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:7117;}}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:{}}}'),(15747,3245,'_wp_attached_file','2023/04/Alverm-30_400px-200px.png'),(15211,3078,'_wp_attached_file','2023/04/Alverm-30_400-x-400px.png'),(15212,3078,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:400;s:6:\"height\";i:400;s:4:\"file\";s:33:\"2023/04/Alverm-30_400-x-400px.png\";s:8:\"filesize\";i:20042;s:5:\"sizes\";a:6:{s:6:\"medium\";a:5:{s:4:\"file\";s:33:\"Alverm-30_400-x-400px-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:33525;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:33:\"Alverm-30_400-x-400px-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:10977;}s:21:\"woocommerce_thumbnail\";a:6:{s:4:\"file\";s:33:\"Alverm-30_400-x-400px-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:33525;s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:5:{s:4:\"file\";s:33:\"Alverm-30_400-x-400px-200x200.png\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:16911;}s:12:\"shop_catalog\";a:5:{s:4:\"file\";s:33:\"Alverm-30_400-x-400px-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:33525;}s:14:\"shop_thumbnail\";a:5:{s:4:\"file\";s:33:\"Alverm-30_400-x-400px-200x200.png\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:16911;}}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:{}}}'),(15223,3085,'_wp_attached_file','2023/08/manu_logos-1-t.png'),(15213,3080,'_wp_attached_file','2023/08/552px-x-128px.gif'),(15214,3080,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:552;s:6:\"height\";i:128;s:4:\"file\";s:25:\"2023/08/552px-x-128px.gif\";s:8:\"filesize\";i:67924;s:5:\"sizes\";a:6:{s:6:\"medium\";a:5:{s:4:\"file\";s:24:\"552px-x-128px-300x70.gif\";s:5:\"width\";i:300;s:6:\"height\";i:70;s:9:\"mime-type\";s:9:\"image/gif\";s:8:\"filesize\";i:6416;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:25:\"552px-x-128px-150x128.gif\";s:5:\"width\";i:150;s:6:\"height\";i:128;s:9:\"mime-type\";s:9:\"image/gif\";s:8:\"filesize\";i:5473;}s:21:\"woocommerce_thumbnail\";a:6:{s:4:\"file\";s:25:\"552px-x-128px-300x128.gif\";s:5:\"width\";i:300;s:6:\"height\";i:128;s:9:\"mime-type\";s:9:\"image/gif\";s:8:\"filesize\";i:9338;s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:5:{s:4:\"file\";s:25:\"552px-x-128px-200x128.gif\";s:5:\"width\";i:200;s:6:\"height\";i:128;s:9:\"mime-type\";s:9:\"image/gif\";s:8:\"filesize\";i:6833;}s:12:\"shop_catalog\";a:5:{s:4:\"file\";s:25:\"552px-x-128px-300x128.gif\";s:5:\"width\";i:300;s:6:\"height\";i:128;s:9:\"mime-type\";s:9:\"image/gif\";s:8:\"filesize\";i:9338;}s:14:\"shop_thumbnail\";a:5:{s:4:\"file\";s:25:\"552px-x-128px-200x128.gif\";s:5:\"width\";i:200;s:6:\"height\";i:128;s:9:\"mime-type\";s:9:\"image/gif\";s:8:\"filesize\";i:6833;}}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:{}}}'),(15215,3081,'_wp_attached_file','2023/08/366px-80px.gif'),(15216,3081,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:366;s:6:\"height\";i:85;s:4:\"file\";s:22:\"2023/08/366px-80px.gif\";s:8:\"filesize\";i:44019;s:5:\"sizes\";a:6:{s:6:\"medium\";a:5:{s:4:\"file\";s:21:\"366px-80px-300x70.gif\";s:5:\"width\";i:300;s:6:\"height\";i:70;s:9:\"mime-type\";s:9:\"image/gif\";s:8:\"filesize\";i:7228;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:21:\"366px-80px-150x85.gif\";s:5:\"width\";i:150;s:6:\"height\";i:85;s:9:\"mime-type\";s:9:\"image/gif\";s:8:\"filesize\";i:4954;}s:21:\"woocommerce_thumbnail\";a:6:{s:4:\"file\";s:21:\"366px-80px-300x85.gif\";s:5:\"width\";i:300;s:6:\"height\";i:85;s:9:\"mime-type\";s:9:\"image/gif\";s:8:\"filesize\";i:7722;s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:5:{s:4:\"file\";s:21:\"366px-80px-200x85.gif\";s:5:\"width\";i:200;s:6:\"height\";i:85;s:9:\"mime-type\";s:9:\"image/gif\";s:8:\"filesize\";i:6229;}s:12:\"shop_catalog\";a:5:{s:4:\"file\";s:21:\"366px-80px-300x85.gif\";s:5:\"width\";i:300;s:6:\"height\";i:85;s:9:\"mime-type\";s:9:\"image/gif\";s:8:\"filesize\";i:7722;}s:14:\"shop_thumbnail\";a:5:{s:4:\"file\";s:21:\"366px-80px-200x85.gif\";s:5:\"width\";i:200;s:6:\"height\";i:85;s:9:\"mime-type\";s:9:\"image/gif\";s:8:\"filesize\";i:6229;}}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:{}}}'),(15217,3082,'_wp_attached_file','2023/08/2-favicon-16x16-1.png'),(15218,3082,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:16;s:6:\"height\";i:16;s:4:\"file\";s:29:\"2023/08/2-favicon-16x16-1.png\";s:8:\"filesize\";i:314;s:5:\"sizes\";a:0:{}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:{}}}'),(15219,3083,'_wp_attached_file','2023/08/2-favicon_32x32px.png'),(15220,3083,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:32;s:6:\"height\";i:32;s:4:\"file\";s:29:\"2023/08/2-favicon_32x32px.png\";s:8:\"filesize\";i:472;s:5:\"sizes\";a:0:{}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:{}}}'),(15221,3084,'_wp_attached_file','2023/04/Alverm-30_600px-600px.png'),(15222,3084,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:600;s:6:\"height\";i:600;s:4:\"file\";s:33:\"2023/04/Alverm-30_600px-600px.png\";s:8:\"filesize\";i:42200;s:5:\"sizes\";a:6:{s:6:\"medium\";a:5:{s:4:\"file\";s:33:\"Alverm-30_600px-600px-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:36049;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:33:\"Alverm-30_600px-600px-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:12331;}s:21:\"woocommerce_thumbnail\";a:6:{s:4:\"file\";s:33:\"Alverm-30_600px-600px-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:36049;s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:5:{s:4:\"file\";s:33:\"Alverm-30_600px-600px-200x200.png\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:18649;}s:12:\"shop_catalog\";a:5:{s:4:\"file\";s:33:\"Alverm-30_600px-600px-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:36049;}s:14:\"shop_thumbnail\";a:5:{s:4:\"file\";s:33:\"Alverm-30_600px-600px-200x200.png\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:18649;}}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:{}}}'),(15225,3086,'_wp_attached_file','2023/08/adisseo1.png'),(15226,3086,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:300;s:6:\"height\";i:200;s:4:\"file\";s:20:\"2023/08/adisseo1.png\";s:8:\"filesize\";i:30453;s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:20:\"adisseo1-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:11760;}s:29:\"woocommerce_gallery_thumbnail\";a:5:{s:4:\"file\";s:20:\"adisseo1-200x200.png\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:14882;}s:14:\"shop_thumbnail\";a:5:{s:4:\"file\";s:20:\"adisseo1-200x200.png\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:14882;}}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:{}}}'),(15227,3087,'_wp_attached_file','2023/08/amoros1.png'),(15228,3087,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:300;s:6:\"height\";i:200;s:4:\"file\";s:19:\"2023/08/amoros1.png\";s:8:\"filesize\";i:34135;s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:19:\"amoros1-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:14311;}s:29:\"woocommerce_gallery_thumbnail\";a:5:{s:4:\"file\";s:19:\"amoros1-200x200.png\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:20110;}s:14:\"shop_thumbnail\";a:5:{s:4:\"file\";s:19:\"amoros1-200x200.png\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:20110;}}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:{}}}'),(15229,3088,'_wp_attached_file','2023/08/basf1.png'),(15230,3088,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:300;s:6:\"height\";i:200;s:4:\"file\";s:17:\"2023/08/basf1.png\";s:8:\"filesize\";i:12632;s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:17:\"basf1-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:6012;}s:29:\"woocommerce_gallery_thumbnail\";a:5:{s:4:\"file\";s:17:\"basf1-200x200.png\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:4877;}s:14:\"shop_thumbnail\";a:5:{s:4:\"file\";s:17:\"basf1-200x200.png\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:4877;}}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:{}}}'),(15231,3089,'_wp_attached_file','2023/08/Huvepharma1.png'),(15232,3089,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:300;s:6:\"height\";i:200;s:4:\"file\";s:23:\"2023/08/Huvepharma1.png\";s:8:\"filesize\";i:24871;s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:23:\"Huvepharma1-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:7737;}s:29:\"woocommerce_gallery_thumbnail\";a:5:{s:4:\"file\";s:23:\"Huvepharma1-200x200.png\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:10402;}s:14:\"shop_thumbnail\";a:5:{s:4:\"file\";s:23:\"Huvepharma1-200x200.png\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:10402;}}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:{}}}'),(15233,3090,'_wp_attached_file','2023/08/Livistro1.png'),(15234,3090,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:300;s:6:\"height\";i:200;s:4:\"file\";s:21:\"2023/08/Livistro1.png\";s:8:\"filesize\";i:35029;s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:21:\"Livistro1-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:16684;}s:29:\"woocommerce_gallery_thumbnail\";a:5:{s:4:\"file\";s:21:\"Livistro1-200x200.png\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:22877;}s:14:\"shop_thumbnail\";a:5:{s:4:\"file\";s:21:\"Livistro1-200x200.png\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:22877;}}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:{}}}'),(15235,3091,'_wp_attached_file','2023/08/logos-s1.png'),(15236,3091,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:300;s:6:\"height\";i:200;s:4:\"file\";s:20:\"2023/08/logos-s1.png\";s:8:\"filesize\";i:51057;s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:20:\"logos-s1-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:22870;}s:29:\"woocommerce_gallery_thumbnail\";a:5:{s:4:\"file\";s:20:\"logos-s1-200x200.png\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:34658;}s:14:\"shop_thumbnail\";a:5:{s:4:\"file\";s:20:\"logos-s1-200x200.png\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:34658;}}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:{}}}'),(15237,3092,'_wp_attached_file','2023/08/pancrosma1.png'),(15238,3092,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:300;s:6:\"height\";i:200;s:4:\"file\";s:22:\"2023/08/pancrosma1.png\";s:8:\"filesize\";i:62764;s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:22:\"pancrosma1-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:30163;}s:29:\"woocommerce_gallery_thumbnail\";a:5:{s:4:\"file\";s:22:\"pancrosma1-200x200.png\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:48693;}s:14:\"shop_thumbnail\";a:5:{s:4:\"file\";s:22:\"pancrosma1-200x200.png\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:48693;}}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:{}}}'),(15239,3093,'_wp_attached_file','2023/08/pootershaven1.png'),(15240,3093,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:300;s:6:\"height\";i:200;s:4:\"file\";s:25:\"2023/08/pootershaven1.png\";s:8:\"filesize\";i:32834;s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:25:\"pootershaven1-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:17663;}s:29:\"woocommerce_gallery_thumbnail\";a:5:{s:4:\"file\";s:25:\"pootershaven1-200x200.png\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:25723;}s:14:\"shop_thumbnail\";a:5:{s:4:\"file\";s:25:\"pootershaven1-200x200.png\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:25723;}}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:{}}}'),(15241,3094,'_wp_attached_file','2023/08/Tolsa1.png'),(15242,3094,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:300;s:6:\"height\";i:200;s:4:\"file\";s:18:\"2023/08/Tolsa1.png\";s:8:\"filesize\";i:25084;s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:18:\"Tolsa1-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:10423;}s:29:\"woocommerce_gallery_thumbnail\";a:5:{s:4:\"file\";s:18:\"Tolsa1-200x200.png\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:14487;}s:14:\"shop_thumbnail\";a:5:{s:4:\"file\";s:18:\"Tolsa1-200x200.png\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:14487;}}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:{}}}'),(15243,3095,'_wpb_shortcodes_custom_css','.vc_custom_1689577528817{padding-bottom: 50px !important;}.vc_custom_1689578783264{padding-top: 50px !important;padding-bottom: 50px !important;}.vc_custom_1689578794814{padding-top: 50px !important;padding-bottom: 50px !important;}.vc_custom_1689578794814{padding-top: 50px !important;padding-bottom: 50px !important;}.vc_custom_1689577454678{margin-bottom: 50px !important;}.vc_custom_1689577559805{border-bottom-width: 1px !important;padding-top: 35px !important;padding-bottom: 35px !important;border-bottom-color: #079547 !important;border-bottom-style: solid !important;border-radius: 1px !important;}.vc_custom_1689577609020{border-bottom-width: 1px !important;padding-top: 35px !important;padding-bottom: 35px !important;border-bottom-color: #079547 !important;border-bottom-style: solid !important;border-radius: 1px !important;}.vc_custom_1689577609020{border-bottom-width: 1px !important;padding-top: 35px !important;padding-bottom: 35px !important;border-bottom-color: #079547 !important;border-bottom-style: solid !important;border-radius: 1px !important;}.vc_custom_1689577609020{border-bottom-width: 1px !important;padding-top: 35px !important;padding-bottom: 35px !important;border-bottom-color: #079547 !important;border-bottom-style: solid !important;border-radius: 1px !important;}.vc_custom_1691846530645{border-right-width: 1px !important;border-left-width: 1px !important;border-left-color: #000000 !important;border-left-style: solid !important;border-right-color: #000000 !important;border-right-style: solid !important;border-radius: 1px !important;}.vc_custom_1691846545469{border-right-width: 1px !important;border-left-width: 1px !important;border-left-color: #000000 !important;border-left-style: solid !important;border-right-color: #000000 !important;border-right-style: solid !important;border-radius: 1px !important;}.vc_custom_1691846563021{border-right-width: 1px !important;border-right-color: #000000 !important;border-right-style: solid !important;border-radius: 1px !important;}.vc_custom_1691846569845{border-right-width: 1px !important;border-right-color: #000000 !important;border-right-style: solid !important;border-radius: 1px !important;}.vc_custom_1691846576949{border-right-width: 1px !important;border-right-color: #000000 !important;border-right-style: solid !important;border-radius: 1px !important;}.vc_custom_1689578812611{margin-top: 50px !important;}.vc_custom_1689578812611{margin-top: 50px !important;}'),(15244,3099,'_wp_attached_file','2023/08/PRODUCTS.png'),(15245,3099,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1300;s:6:\"height\";i:300;s:4:\"file\";s:20:\"2023/08/PRODUCTS.png\";s:8:\"filesize\";i:174562;s:5:\"sizes\";a:10:{s:6:\"medium\";a:5:{s:4:\"file\";s:19:\"PRODUCTS-300x69.png\";s:5:\"width\";i:300;s:6:\"height\";i:69;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:35443;}s:5:\"large\";a:5:{s:4:\"file\";s:21:\"PRODUCTS-1024x236.png\";s:5:\"width\";i:1024;s:6:\"height\";i:236;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:382422;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:20:\"PRODUCTS-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:40853;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:20:\"PRODUCTS-768x177.png\";s:5:\"width\";i:768;s:6:\"height\";i:177;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:214606;}s:21:\"woocommerce_thumbnail\";a:6:{s:4:\"file\";s:20:\"PRODUCTS-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:53671;s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:5:{s:4:\"file\";s:20:\"PRODUCTS-600x138.png\";s:5:\"width\";i:600;s:6:\"height\";i:138;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:131811;}s:29:\"woocommerce_gallery_thumbnail\";a:5:{s:4:\"file\";s:20:\"PRODUCTS-200x200.png\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:69767;}s:12:\"shop_catalog\";a:5:{s:4:\"file\";s:20:\"PRODUCTS-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:53671;}s:11:\"shop_single\";a:5:{s:4:\"file\";s:20:\"PRODUCTS-600x138.png\";s:5:\"width\";i:600;s:6:\"height\";i:138;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:131811;}s:14:\"shop_thumbnail\";a:5:{s:4:\"file\";s:20:\"PRODUCTS-200x200.png\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:69767;}}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:{}}}'),(15246,3098,'_edit_last','1'),(15247,3098,'_edit_lock','1695555431:1'),(15248,3100,'_wp_attached_file','2023/08/Feed-Additives.jpg'),(15249,3100,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1300;s:6:\"height\";i:300;s:4:\"file\";s:26:\"2023/08/Feed-Additives.jpg\";s:8:\"filesize\";i:180739;s:5:\"sizes\";a:10:{s:6:\"medium\";a:5:{s:4:\"file\";s:25:\"Feed-Additives-300x69.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:69;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:7637;}s:5:\"large\";a:5:{s:4:\"file\";s:27:\"Feed-Additives-1024x236.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:236;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:57251;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:26:\"Feed-Additives-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:10464;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:26:\"Feed-Additives-768x177.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:177;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:36196;}s:21:\"woocommerce_thumbnail\";a:6:{s:4:\"file\";s:26:\"Feed-Additives-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:34770;s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:5:{s:4:\"file\";s:26:\"Feed-Additives-600x138.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:138;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:24056;}s:29:\"woocommerce_gallery_thumbnail\";a:5:{s:4:\"file\";s:26:\"Feed-Additives-200x200.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:16242;}s:12:\"shop_catalog\";a:5:{s:4:\"file\";s:26:\"Feed-Additives-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:34770;}s:11:\"shop_single\";a:5:{s:4:\"file\";s:26:\"Feed-Additives-600x138.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:138;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:24056;}s:14:\"shop_thumbnail\";a:5:{s:4:\"file\";s:26:\"Feed-Additives-200x200.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:16242;}}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:{}}}'),(15250,3098,'_dt_fancy_header_bg_image','a:1:{i:0;i:3815;}'),(15251,3098,'the7_shortcodes_dynamic_css','a:1:{s:32:\"7436f07287cc546a217524b6196175f8\";s:3744:\".products-shortcode.products-masonry-shortcode-id-7436f07287cc546a217524b6196175f8 .filter-bg-decoration .filter-categories a.act {\n  color: #fff;\n}\n.products-shortcode.products-masonry-shortcode-id-7436f07287cc546a217524b6196175f8:not(.resize-by-browser-width) .dt-css-grid {\n  grid-row-gap: 30px;\n  grid-column-gap: 30px;\n  grid-template-columns: repeat(auto-fill,minmax(,1fr));\n}\n.cssgridlegacy.no-cssgrid .products-shortcode.products-masonry-shortcode-id-7436f07287cc546a217524b6196175f8:not(.resize-by-browser-width) .dt-css-grid,\n.no-cssgridlegacy.no-cssgrid .products-shortcode.products-masonry-shortcode-id-7436f07287cc546a217524b6196175f8:not(.resize-by-browser-width) .dt-css-grid {\n  display: flex;\n  flex-flow: row wrap;\n  margin: -15px;\n}\n.cssgridlegacy.no-cssgrid .products-shortcode.products-masonry-shortcode-id-7436f07287cc546a217524b6196175f8:not(.resize-by-browser-width) .dt-css-grid .wf-cell,\n.no-cssgridlegacy.no-cssgrid .products-shortcode.products-masonry-shortcode-id-7436f07287cc546a217524b6196175f8:not(.resize-by-browser-width) .dt-css-grid .wf-cell {\n  flex: 1 0 ;\n  max-width: 100%;\n  padding: 15px;\n  box-sizing: border-box;\n}\n.products-shortcode.products-masonry-shortcode-id-7436f07287cc546a217524b6196175f8.resize-by-browser-width .dt-css-grid {\n  grid-template-columns: repeat(3,1fr);\n  grid-template-rows: auto;\n  grid-column-gap: 30px;\n  grid-row-gap: 30px;\n}\n.cssgridlegacy.no-cssgrid .products-shortcode.products-masonry-shortcode-id-7436f07287cc546a217524b6196175f8.resize-by-browser-width .dt-css-grid,\n.no-cssgridlegacy.no-cssgrid .products-shortcode.products-masonry-shortcode-id-7436f07287cc546a217524b6196175f8.resize-by-browser-width .dt-css-grid {\n  margin: -15px;\n}\n.cssgridlegacy.no-cssgrid .products-shortcode.products-masonry-shortcode-id-7436f07287cc546a217524b6196175f8.resize-by-browser-width .dt-css-grid .wf-cell,\n.no-cssgridlegacy.no-cssgrid .products-shortcode.products-masonry-shortcode-id-7436f07287cc546a217524b6196175f8.resize-by-browser-width .dt-css-grid .wf-cell {\n  width: 33.333333333333%;\n  padding: 15px;\n}\n@media screen and (max-width: 1199px) {\n  .products-shortcode.products-masonry-shortcode-id-7436f07287cc546a217524b6196175f8.resize-by-browser-width .dt-css-grid {\n    grid-template-columns: repeat(3,1fr);\n  }\n  .cssgridlegacy.no-cssgrid .products-shortcode.products-masonry-shortcode-id-7436f07287cc546a217524b6196175f8.resize-by-browser-width .dt-css-grid .wf-cell,\n  .no-cssgridlegacy.no-cssgrid .products-shortcode.products-masonry-shortcode-id-7436f07287cc546a217524b6196175f8.resize-by-browser-width .dt-css-grid .wf-cell {\n    width: 33.333333333333%;\n  }\n}\n@media screen and (max-width: 991px) {\n  .products-shortcode.products-masonry-shortcode-id-7436f07287cc546a217524b6196175f8.resize-by-browser-width .dt-css-grid {\n    grid-template-columns: repeat(2,1fr);\n  }\n  .cssgridlegacy.no-cssgrid .products-shortcode.products-masonry-shortcode-id-7436f07287cc546a217524b6196175f8.resize-by-browser-width .dt-css-grid .wf-cell,\n  .no-cssgridlegacy.no-cssgrid .products-shortcode.products-masonry-shortcode-id-7436f07287cc546a217524b6196175f8.resize-by-browser-width .dt-css-grid .wf-cell {\n    width: 50%;\n  }\n}\n@media screen and (max-width: 767px) {\n  .products-shortcode.products-masonry-shortcode-id-7436f07287cc546a217524b6196175f8.resize-by-browser-width .dt-css-grid {\n    grid-template-columns: repeat(1,1fr);\n  }\n  .cssgridlegacy.no-cssgrid .products-shortcode.products-masonry-shortcode-id-7436f07287cc546a217524b6196175f8.resize-by-browser-width .dt-css-grid .wf-cell,\n  .no-cssgridlegacy.no-cssgrid .products-shortcode.products-masonry-shortcode-id-7436f07287cc546a217524b6196175f8.resize-by-browser-width .dt-css-grid .wf-cell {\n    width: 100%;\n  }\n}\n\";}'),(28584,3819,'_wp_attached_file','2023/09/PRODUCTSF.gif'),(15252,3098,'_wp_page_template','default'),(15253,3098,'_wpb_vc_js_status','true'),(15254,3098,'_dt_sidebar_position','right'),(15255,3098,'_dt_sidebar_widgetarea_id','sidebar_1'),(15256,3098,'_dt_sidebar_hide_on_mobile','0'),(15257,3098,'_dt_footer_show','1'),(15258,3098,'_dt_footer_widgetarea_id','sidebar_2'),(15259,3098,'_dt_footer_hide_on_mobile','0'),(15260,3098,'_dt_header_title','fancy'),(15261,3098,'_dt_header_background','normal'),(15262,3098,'_dt_header_background_below_slideshow','disabled'),(15263,3098,'_dt_header_transparent_bg_color_scheme','light'),(15264,3098,'_dt_header_transparent_top_bar_bg_color','#ffffff'),(15265,3098,'_dt_header_transparent_top_bar_bg_opacity','25'),(15266,3098,'_dt_header_transparent_bg_color','#000000'),(15267,3098,'_dt_header_transparent_bg_opacity','50'),(15268,3098,'_dt_header_disabled_background','normal'),(15269,3098,'_dt_header_disabled_transparent_bg_color_scheme','light'),(15270,3098,'_dt_header_disabled_transparent_top_bar_bg_color','#ffffff'),(15271,3098,'_dt_header_disabled_transparent_top_bar_bg_opacity','25'),(15272,3098,'_dt_header_disabled_transparent_bg_color','#000000'),(15273,3098,'_dt_header_disabled_transparent_bg_opacity','50'),(15274,3098,'_dt_page_overrides_top_margin',''),(15275,3098,'_dt_page_overrides_right_margin',''),(15276,3098,'_dt_page_overrides_bottom_margin',''),(15277,3098,'_dt_page_overrides_left_margin',''),(15278,3098,'_dt_mobile_page_padding_top',''),(15279,3098,'_dt_mobile_page_padding_right',''),(15280,3098,'_dt_mobile_page_padding_bottom',''),(15281,3098,'_dt_mobile_page_padding_left',''),(15282,3098,'_dt_fancy_header_layout_heading',''),(15283,3098,'_dt_fancy_header_title_aligment','all_left'),(15284,3098,'_dt_fancy_header_height','300'),(15285,3098,'_dt_fancy_header_padding-top','0px'),(15286,3098,'_dt_fancy_header_padding-bottom','0px'),(15287,3098,'_dt_fancy_header_breadcrumbs_heading',''),(15288,3098,'_dt_fancy_header_breadcrumbs','disabled'),(15289,3098,'_dt_fancy_header_breadcrumbs_text_color','#ffffff'),(15290,3098,'_dt_fancy_header_breadcrumbs_bg_color','disabled'),(15291,3098,'_dt_fancy_header_title_heading',''),(15292,3098,'_dt_fancy_header_title_mode','generic'),(15293,3098,'_dt_fancy_header_title',''),(15294,3098,'_dt_fancy_header_title_font_size','36'),(15295,3098,'_dt_fancy_header_title_line_height','36'),(15296,3098,'_dt_fancy_header_text_transform','none'),(15297,3098,'_dt_fancy_header_title_color_mode','color'),(15298,3098,'_dt_fancy_header_title_color','#ffffff'),(15299,3098,'_dt_fancy_header_subtitle_heading',''),(15300,3098,'_dt_fancy_header_subtitle',''),(15301,3098,'_dt_fancy_header_subtitle_font_size','18'),(15302,3098,'_dt_fancy_header_subtitle_line_height','26'),(15303,3098,'_dt_fancy_header_subtitle_text_transform','none'),(15304,3098,'_dt_fancy_header_subtitle_color_mode','color'),(15305,3098,'_dt_fancy_header_subtitle_color','#ffffff'),(15306,3098,'_dt_fancy_header_bg_heading',''),(15307,3098,'_dt_fancy_header_bg_color','#222222'),(15308,3098,'_dt_fancy_header_bg_image_origin','custom'),(15309,3098,'_dt_fancy_header_bg_repeat','no-repeat'),(15310,3098,'_dt_fancy_header_bg_position_x','left'),(15311,3098,'_dt_fancy_header_bg_position_y','center'),(15312,3098,'_dt_fancy_header_bg_fullscreen','1'),(15313,3098,'_dt_fancy_header_bg_overlay','0'),(15314,3098,'_dt_fancy_header_overlay_color','#000'),(15315,3098,'_dt_fancy_header_bg_overlay_opacity','50'),(15316,3098,'_dt_fancy_header_scroll_effect','default'),(15317,3098,'_dt_fancy_header_bg_parallax','0.5'),(15318,3098,'_dt_fancy_header_responsiveness_heading',''),(15319,3098,'_dt_fancy_header_responsiveness','enabled'),(15320,3098,'_dt_fancy_header_responsiveness_switch','778px'),(15321,3098,'_dt_fancy_header_responsive_height','300'),(15322,3098,'_dt_fancy_header_responsive_font_size','30'),(15323,3098,'_dt_fancy_header_responsive_title_line_height','38'),(15324,3098,'_dt_fancy_header_responsive_subtitle_font_size','20'),(15325,3098,'_dt_fancy_header_responsive_subtitle_line_height','28'),(15326,3098,'_dt_fancy_header_responsive_breadcrumbs','disabled'),(15327,3098,'_dt_microsite_primary_menu',''),(15328,3098,'_dt_microsite_split_left_menu',''),(15329,3098,'_dt_microsite_split_right_menu',''),(15330,3098,'_dt_microsite_mobile_menu',''),(15331,3098,'the7_fancy_title_css','.fancy-header {\n  background-image: url(\'https://farmchemie.yasithawd.com/wp-content/uploads/2023/09/FEED-ADDITIVES.gif\');\n  background-repeat: no-repeat;\n  background-position: left center;\n  background-size: cover;\n  background-color: #222222;\n}\n.mobile-false .fancy-header {\n  background-attachment: scroll;\n}\n.fancy-header .wf-wrap {\n  min-height: 300px;\n  padding-top: 0px;\n  padding-bottom: 0px;\n}\n.fancy-header .fancy-title {\n  font-size: 36px;\n  line-height: 36px;\n  color: #ffffff;\n  text-transform: none;\n}\n.fancy-header .fancy-subtitle {\n  font-size: 18px;\n  line-height: 26px;\n  color: #ffffff;\n  text-transform: none;\n}\n.fancy-header .breadcrumbs {\n  color: #ffffff;\n}\n.fancy-header-overlay {\n  background: rgba(0,0,0,0.5);\n}\n@media screen and (max-width: 778px) {\n  .fancy-header .wf-wrap {\n    min-height: 300px;\n  }\n  .fancy-header .fancy-title {\n    font-size: 30px;\n    line-height: 38px;\n  }\n  .fancy-header .fancy-subtitle {\n    font-size: 20px;\n    line-height: 28px;\n  }\n  .fancy-header.breadcrumbs-mobile-off .breadcrumbs {\n    display: none;\n  }\n  #fancy-header > .wf-wrap {\n    flex-flow: column wrap;\n    align-items: center;\n    justify-content: center;\n    padding-bottom: 0px !important;\n  }\n  .fancy-header.title-left .breadcrumbs {\n    text-align: center;\n    float: none;\n  }\n  .breadcrumbs {\n    margin-bottom: 10px;\n  }\n  .breadcrumbs.breadcrumbs-bg {\n    margin-top: 10px;\n  }\n  .fancy-header.title-right .breadcrumbs {\n    margin: 10px 0 10px 0;\n  }\n  #fancy-header .hgroup,\n  #fancy-header .breadcrumbs {\n    text-align: center;\n  }\n  .fancy-header .hgroup {\n    padding-bottom: 5px;\n  }\n  .breadcrumbs-off .hgroup {\n    padding-bottom: 5px;\n  }\n  .title-right .hgroup {\n    padding: 0 0 5px 0;\n  }\n  .title-right.breadcrumbs-off .hgroup {\n    padding-top: 5px;\n  }\n  .title-left.disabled-bg .breadcrumbs {\n    margin-bottom: 0;\n  }\n}\n'),(20751,2622,'_dt_fancy_header_padding-bottom','0px'),(20750,2622,'_dt_fancy_header_padding-top','0px'),(20749,2622,'_dt_fancy_header_height','300'),(20748,2622,'_dt_fancy_header_title_aligment','all_left'),(20747,2622,'_dt_fancy_header_layout_heading',''),(15341,3104,'_menu_item_type','post_type'),(15342,3104,'_menu_item_menu_item_parent','3545'),(15343,3104,'_menu_item_object_id','3098'),(15344,3104,'_menu_item_object','page'),(15345,3104,'_menu_item_target',''),(15346,3104,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(15347,3104,'_menu_item_xfn',''),(15348,3104,'_menu_item_url',''),(15356,2935,'_wp_old_date','2023-08-11'),(15350,2911,'_wp_old_date','2023-08-11'),(15351,2422,'_wp_old_date','2023-08-11'),(16971,3352,'total_sales','0'),(15353,3034,'_wp_old_date','2023-08-11'),(15354,3038,'_wp_old_date','2023-08-11'),(15355,3042,'_wp_old_date','2023-08-11'),(15357,2417,'_wp_old_date','2023-08-11'),(15358,2418,'_wp_old_date','2023-08-11'),(15359,2419,'_wp_old_date','2023-08-11'),(15360,2420,'_wp_old_date','2023-08-11'),(15361,2421,'_wp_old_date','2023-08-11'),(15362,39,'_wp_old_date','2023-08-11'),(22197,3602,'_dt_fancy_header_bg_position_x','center'),(15365,3106,'_wp_attached_file','2023/08/WhatsApp-Image-2023-05-16-at-2.43.17-AM.jpeg'),(15366,3106,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:599;s:6:\"height\";i:450;s:4:\"file\";s:52:\"2023/08/WhatsApp-Image-2023-05-16-at-2.43.17-AM.jpeg\";s:8:\"filesize\";i:160789;s:5:\"sizes\";a:6:{s:6:\"medium\";a:5:{s:4:\"file\";s:52:\"WhatsApp-Image-2023-05-16-at-2.43.17-AM-300x225.jpeg\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:25634;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:52:\"WhatsApp-Image-2023-05-16-at-2.43.17-AM-150x150.jpeg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:17032;}s:21:\"woocommerce_thumbnail\";a:6:{s:4:\"file\";s:52:\"WhatsApp-Image-2023-05-16-at-2.43.17-AM-300x300.jpeg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:28542;s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:5:{s:4:\"file\";s:52:\"WhatsApp-Image-2023-05-16-at-2.43.17-AM-200x200.jpeg\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:20401;}s:12:\"shop_catalog\";a:5:{s:4:\"file\";s:52:\"WhatsApp-Image-2023-05-16-at-2.43.17-AM-300x300.jpeg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:28542;}s:14:\"shop_thumbnail\";a:5:{s:4:\"file\";s:52:\"WhatsApp-Image-2023-05-16-at-2.43.17-AM-200x200.jpeg\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:20401;}}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:\"1\";s:8:\"keywords\";a:0:{}}}'),(15367,3107,'_wp_attached_file','2023/08/WhatsApp-Image-2023-05-16-at-2.43.25-AM.jpeg'),(15368,3107,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:619;s:6:\"height\";i:463;s:4:\"file\";s:52:\"2023/08/WhatsApp-Image-2023-05-16-at-2.43.25-AM.jpeg\";s:8:\"filesize\";i:236511;s:5:\"sizes\";a:8:{s:6:\"medium\";a:5:{s:4:\"file\";s:52:\"WhatsApp-Image-2023-05-16-at-2.43.25-AM-300x224.jpeg\";s:5:\"width\";i:300;s:6:\"height\";i:224;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:25279;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:52:\"WhatsApp-Image-2023-05-16-at-2.43.25-AM-150x150.jpeg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:16832;}s:21:\"woocommerce_thumbnail\";a:6:{s:4:\"file\";s:52:\"WhatsApp-Image-2023-05-16-at-2.43.25-AM-300x300.jpeg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:27790;s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:5:{s:4:\"file\";s:52:\"WhatsApp-Image-2023-05-16-at-2.43.25-AM-600x449.jpeg\";s:5:\"width\";i:600;s:6:\"height\";i:449;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:57240;}s:29:\"woocommerce_gallery_thumbnail\";a:5:{s:4:\"file\";s:52:\"WhatsApp-Image-2023-05-16-at-2.43.25-AM-200x200.jpeg\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:19889;}s:12:\"shop_catalog\";a:5:{s:4:\"file\";s:52:\"WhatsApp-Image-2023-05-16-at-2.43.25-AM-300x300.jpeg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:27790;}s:11:\"shop_single\";a:5:{s:4:\"file\";s:52:\"WhatsApp-Image-2023-05-16-at-2.43.25-AM-600x449.jpeg\";s:5:\"width\";i:600;s:6:\"height\";i:449;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:57240;}s:14:\"shop_thumbnail\";a:5:{s:4:\"file\";s:52:\"WhatsApp-Image-2023-05-16-at-2.43.25-AM-200x200.jpeg\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:19889;}}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:\"1\";s:8:\"keywords\";a:0:{}}}'),(15369,3108,'_wp_attached_file','2023/08/WhatsApp-Image-2023-05-16-at-2.43.38-AM.jpeg'),(15370,3108,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:648;s:6:\"height\";i:485;s:4:\"file\";s:52:\"2023/08/WhatsApp-Image-2023-05-16-at-2.43.38-AM.jpeg\";s:8:\"filesize\";i:207259;s:5:\"sizes\";a:8:{s:6:\"medium\";a:5:{s:4:\"file\";s:52:\"WhatsApp-Image-2023-05-16-at-2.43.38-AM-300x225.jpeg\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:29458;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:52:\"WhatsApp-Image-2023-05-16-at-2.43.38-AM-150x150.jpeg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:18367;}s:21:\"woocommerce_thumbnail\";a:6:{s:4:\"file\";s:52:\"WhatsApp-Image-2023-05-16-at-2.43.38-AM-300x300.jpeg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:32152;s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:5:{s:4:\"file\";s:52:\"WhatsApp-Image-2023-05-16-at-2.43.38-AM-600x449.jpeg\";s:5:\"width\";i:600;s:6:\"height\";i:449;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:61875;}s:29:\"woocommerce_gallery_thumbnail\";a:5:{s:4:\"file\";s:52:\"WhatsApp-Image-2023-05-16-at-2.43.38-AM-200x200.jpeg\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:22380;}s:12:\"shop_catalog\";a:5:{s:4:\"file\";s:52:\"WhatsApp-Image-2023-05-16-at-2.43.38-AM-300x300.jpeg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:32152;}s:11:\"shop_single\";a:5:{s:4:\"file\";s:52:\"WhatsApp-Image-2023-05-16-at-2.43.38-AM-600x449.jpeg\";s:5:\"width\";i:600;s:6:\"height\";i:449;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:61875;}s:14:\"shop_thumbnail\";a:5:{s:4:\"file\";s:52:\"WhatsApp-Image-2023-05-16-at-2.43.38-AM-200x200.jpeg\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:22380;}}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:\"1\";s:8:\"keywords\";a:0:{}}}'),(15371,3109,'_wp_attached_file','2023/08/CNCI-2N7A3620-Edit-cmykss.png'),(15372,3109,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1232;s:6:\"height\";i:1304;s:4:\"file\";s:37:\"2023/08/CNCI-2N7A3620-Edit-cmykss.png\";s:8:\"filesize\";i:2035973;s:5:\"sizes\";a:10:{s:6:\"medium\";a:5:{s:4:\"file\";s:37:\"CNCI-2N7A3620-Edit-cmykss-283x300.png\";s:5:\"width\";i:283;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:105846;}s:5:\"large\";a:5:{s:4:\"file\";s:38:\"CNCI-2N7A3620-Edit-cmykss-967x1024.png\";s:5:\"width\";i:967;s:6:\"height\";i:1024;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:1111767;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:37:\"CNCI-2N7A3620-Edit-cmykss-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:31849;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:37:\"CNCI-2N7A3620-Edit-cmykss-768x813.png\";s:5:\"width\";i:768;s:6:\"height\";i:813;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:709917;}s:21:\"woocommerce_thumbnail\";a:6:{s:4:\"file\";s:37:\"CNCI-2N7A3620-Edit-cmykss-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:111222;s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:5:{s:4:\"file\";s:37:\"CNCI-2N7A3620-Edit-cmykss-600x635.png\";s:5:\"width\";i:600;s:6:\"height\";i:635;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:438574;}s:29:\"woocommerce_gallery_thumbnail\";a:5:{s:4:\"file\";s:37:\"CNCI-2N7A3620-Edit-cmykss-200x200.png\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:53347;}s:12:\"shop_catalog\";a:5:{s:4:\"file\";s:37:\"CNCI-2N7A3620-Edit-cmykss-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:111222;}s:11:\"shop_single\";a:5:{s:4:\"file\";s:37:\"CNCI-2N7A3620-Edit-cmykss-600x635.png\";s:5:\"width\";i:600;s:6:\"height\";i:635;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:438574;}s:14:\"shop_thumbnail\";a:5:{s:4:\"file\";s:37:\"CNCI-2N7A3620-Edit-cmykss-200x200.png\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:53347;}}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:{}}}'),(15373,3110,'_wp_attached_file','2023/08/CNCI-2N7A3620-Edit-cmykss-1.png'),(15374,3110,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:500;s:6:\"height\";i:500;s:4:\"file\";s:39:\"2023/08/CNCI-2N7A3620-Edit-cmykss-1.png\";s:8:\"filesize\";i:358309;s:5:\"sizes\";a:6:{s:6:\"medium\";a:5:{s:4:\"file\";s:39:\"CNCI-2N7A3620-Edit-cmykss-1-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:118082;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:39:\"CNCI-2N7A3620-Edit-cmykss-1-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:32076;}s:21:\"woocommerce_thumbnail\";a:6:{s:4:\"file\";s:39:\"CNCI-2N7A3620-Edit-cmykss-1-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:118082;s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:5:{s:4:\"file\";s:39:\"CNCI-2N7A3620-Edit-cmykss-1-200x200.png\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:54428;}s:12:\"shop_catalog\";a:5:{s:4:\"file\";s:39:\"CNCI-2N7A3620-Edit-cmykss-1-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:118082;}s:14:\"shop_thumbnail\";a:5:{s:4:\"file\";s:39:\"CNCI-2N7A3620-Edit-cmykss-1-200x200.png\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:54428;}}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:{}}}'),(15375,3111,'_wp_attached_file','2023/08/WhatsApp-Image-2023-05-16-at-2.43.56-AM.jpeg'),(15376,3111,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:504;s:6:\"height\";i:426;s:4:\"file\";s:52:\"2023/08/WhatsApp-Image-2023-05-16-at-2.43.56-AM.jpeg\";s:8:\"filesize\";i:187334;s:5:\"sizes\";a:6:{s:6:\"medium\";a:5:{s:4:\"file\";s:52:\"WhatsApp-Image-2023-05-16-at-2.43.56-AM-300x254.jpeg\";s:5:\"width\";i:300;s:6:\"height\";i:254;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:34641;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:52:\"WhatsApp-Image-2023-05-16-at-2.43.56-AM-150x150.jpeg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:20777;}s:21:\"woocommerce_thumbnail\";a:6:{s:4:\"file\";s:52:\"WhatsApp-Image-2023-05-16-at-2.43.56-AM-300x300.jpeg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:37196;s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:5:{s:4:\"file\";s:52:\"WhatsApp-Image-2023-05-16-at-2.43.56-AM-200x200.jpeg\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:25540;}s:12:\"shop_catalog\";a:5:{s:4:\"file\";s:52:\"WhatsApp-Image-2023-05-16-at-2.43.56-AM-300x300.jpeg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:37196;}s:14:\"shop_thumbnail\";a:5:{s:4:\"file\";s:52:\"WhatsApp-Image-2023-05-16-at-2.43.56-AM-200x200.jpeg\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:25540;}}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:\"1\";s:8:\"keywords\";a:0:{}}}'),(15377,3112,'_wp_attached_file','2023/08/WhatsApp-Image-2023-05-16-at-2.44.00-AM.jpeg'),(15378,3112,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:294;s:6:\"height\";i:384;s:4:\"file\";s:52:\"2023/08/WhatsApp-Image-2023-05-16-at-2.44.00-AM.jpeg\";s:8:\"filesize\";i:117825;s:5:\"sizes\";a:6:{s:6:\"medium\";a:5:{s:4:\"file\";s:52:\"WhatsApp-Image-2023-05-16-at-2.44.00-AM-230x300.jpeg\";s:5:\"width\";i:230;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:33117;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:52:\"WhatsApp-Image-2023-05-16-at-2.44.00-AM-150x150.jpeg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:20838;}s:21:\"woocommerce_thumbnail\";a:6:{s:4:\"file\";s:52:\"WhatsApp-Image-2023-05-16-at-2.44.00-AM-294x300.jpeg\";s:5:\"width\";i:294;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:37448;s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:5:{s:4:\"file\";s:52:\"WhatsApp-Image-2023-05-16-at-2.44.00-AM-200x200.jpeg\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:25281;}s:12:\"shop_catalog\";a:5:{s:4:\"file\";s:52:\"WhatsApp-Image-2023-05-16-at-2.44.00-AM-294x300.jpeg\";s:5:\"width\";i:294;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:37448;}s:14:\"shop_thumbnail\";a:5:{s:4:\"file\";s:52:\"WhatsApp-Image-2023-05-16-at-2.44.00-AM-200x200.jpeg\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:25281;}}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:\"1\";s:8:\"keywords\";a:0:{}}}'),(15380,3114,'_wp_attached_file','2023/08/purpleclr-image1.jpg'),(15379,3113,'_wpb_shortcodes_custom_css','.vc_custom_1686720701314{margin-top: 35px !important;padding-top: 65px !important;padding-bottom: 100px !important;}.vc_custom_1684836308288{margin-top: 15px !important;}.vc_custom_1686713784619{margin-top: 35px !important;}.vc_custom_1686714025469{margin-top: 35px !important;}.vc_custom_1686713784619{margin-top: 35px !important;}.vc_custom_1686714115148{margin-top: 35px !important;}.vc_custom_1686713784619{margin-top: 35px !important;}.vc_custom_1686713784619{margin-top: 35px !important;}.vc_custom_1686713784619{margin-top: 35px !important;}'),(15381,3114,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:500;s:6:\"height\";i:500;s:4:\"file\";s:28:\"2023/08/purpleclr-image1.jpg\";s:8:\"filesize\";i:4105;s:5:\"sizes\";a:6:{s:6:\"medium\";a:5:{s:4:\"file\";s:28:\"purpleclr-image1-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:2208;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:28:\"purpleclr-image1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:1396;}s:21:\"woocommerce_thumbnail\";a:6:{s:4:\"file\";s:28:\"purpleclr-image1-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:2208;s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:5:{s:4:\"file\";s:28:\"purpleclr-image1-200x200.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:1594;}s:12:\"shop_catalog\";a:5:{s:4:\"file\";s:28:\"purpleclr-image1-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:2208;}s:14:\"shop_thumbnail\";a:5:{s:4:\"file\";s:28:\"purpleclr-image1-200x200.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:1594;}}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:{}}}'),(15383,3116,'_wp_attached_file','2023/08/Official-tool-manufacturer-partner.png'),(15382,3115,'_wpb_shortcodes_custom_css','.vc_custom_1686720701314{margin-top: 35px !important;padding-top: 65px !important;padding-bottom: 100px !important;}.vc_custom_1684836308288{margin-top: 15px !important;}.vc_custom_1686713784619{margin-top: 35px !important;}.vc_custom_1686714025469{margin-top: 35px !important;}.vc_custom_1686713784619{margin-top: 35px !important;}.vc_custom_1686714115148{margin-top: 35px !important;}.vc_custom_1686713784619{margin-top: 35px !important;}.vc_custom_1686713784619{margin-top: 35px !important;}.vc_custom_1686713784619{margin-top: 35px !important;}'),(15384,3116,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:297;s:6:\"height\";i:297;s:4:\"file\";s:46:\"2023/08/Official-tool-manufacturer-partner.png\";s:8:\"filesize\";i:5788;s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:46:\"Official-tool-manufacturer-partner-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:14068;}s:29:\"woocommerce_gallery_thumbnail\";a:5:{s:4:\"file\";s:46:\"Official-tool-manufacturer-partner-200x200.png\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:20061;}s:14:\"shop_thumbnail\";a:5:{s:4:\"file\";s:46:\"Official-tool-manufacturer-partner-200x200.png\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:20061;}}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:{}}}'),(15385,3117,'_wp_attached_file','2023/08/Pink_-H.png'),(15386,3117,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:500;s:6:\"height\";i:500;s:4:\"file\";s:19:\"2023/08/Pink_-H.png\";s:8:\"filesize\";i:6330;s:5:\"sizes\";a:6:{s:6:\"medium\";a:5:{s:4:\"file\";s:19:\"Pink_-H-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:17862;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:19:\"Pink_-H-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:8708;}s:21:\"woocommerce_thumbnail\";a:6:{s:4:\"file\";s:19:\"Pink_-H-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:17862;s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:5:{s:4:\"file\";s:19:\"Pink_-H-200x200.png\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:11664;}s:12:\"shop_catalog\";a:5:{s:4:\"file\";s:19:\"Pink_-H-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:17862;}s:14:\"shop_thumbnail\";a:5:{s:4:\"file\";s:19:\"Pink_-H-200x200.png\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:11664;}}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:{}}}'),(15387,3118,'_wp_attached_file','2023/08/purplefist-transparentbg-1.jpg'),(15388,3118,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:500;s:6:\"height\";i:500;s:4:\"file\";s:38:\"2023/08/purplefist-transparentbg-1.jpg\";s:8:\"filesize\";i:43452;s:5:\"sizes\";a:6:{s:6:\"medium\";a:5:{s:4:\"file\";s:38:\"purplefist-transparentbg-1-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:10048;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:38:\"purplefist-transparentbg-1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:4984;}s:21:\"woocommerce_thumbnail\";a:6:{s:4:\"file\";s:38:\"purplefist-transparentbg-1-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:10048;s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:5:{s:4:\"file\";s:38:\"purplefist-transparentbg-1-200x200.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:6522;}s:12:\"shop_catalog\";a:5:{s:4:\"file\";s:38:\"purplefist-transparentbg-1-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:10048;}s:14:\"shop_thumbnail\";a:5:{s:4:\"file\";s:38:\"purplefist-transparentbg-1-200x200.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:6522;}}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:{}}}'),(15389,3119,'_wp_attached_file','2023/08/purplefist-transparentbg-2.jpg'),(15390,3119,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:500;s:6:\"height\";i:500;s:4:\"file\";s:38:\"2023/08/purplefist-transparentbg-2.jpg\";s:8:\"filesize\";i:48231;s:5:\"sizes\";a:6:{s:6:\"medium\";a:5:{s:4:\"file\";s:38:\"purplefist-transparentbg-2-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:11245;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:38:\"purplefist-transparentbg-2-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:5466;}s:21:\"woocommerce_thumbnail\";a:6:{s:4:\"file\";s:38:\"purplefist-transparentbg-2-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:11245;s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:5:{s:4:\"file\";s:38:\"purplefist-transparentbg-2-200x200.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:7246;}s:12:\"shop_catalog\";a:5:{s:4:\"file\";s:38:\"purplefist-transparentbg-2-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:11245;}s:14:\"shop_thumbnail\";a:5:{s:4:\"file\";s:38:\"purplefist-transparentbg-2-200x200.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:7246;}}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:{}}}'),(15391,3120,'_wp_attached_file','2023/08/FCML-SUPPLIERS-LOGOS-1.png'),(15392,3120,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1300;s:6:\"height\";i:300;s:4:\"file\";s:34:\"2023/08/FCML-SUPPLIERS-LOGOS-1.png\";s:8:\"filesize\";i:33352;s:5:\"sizes\";a:10:{s:6:\"medium\";a:5:{s:4:\"file\";s:33:\"FCML-SUPPLIERS-LOGOS-1-300x69.png\";s:5:\"width\";i:300;s:6:\"height\";i:69;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:19385;}s:5:\"large\";a:5:{s:4:\"file\";s:35:\"FCML-SUPPLIERS-LOGOS-1-1024x236.png\";s:5:\"width\";i:1024;s:6:\"height\";i:236;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:114806;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:34:\"FCML-SUPPLIERS-LOGOS-1-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:21111;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:34:\"FCML-SUPPLIERS-LOGOS-1-768x177.png\";s:5:\"width\";i:768;s:6:\"height\";i:177;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:79485;}s:21:\"woocommerce_thumbnail\";a:6:{s:4:\"file\";s:34:\"FCML-SUPPLIERS-LOGOS-1-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:30226;s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:5:{s:4:\"file\";s:34:\"FCML-SUPPLIERS-LOGOS-1-600x138.png\";s:5:\"width\";i:600;s:6:\"height\";i:138;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:56412;}s:29:\"woocommerce_gallery_thumbnail\";a:5:{s:4:\"file\";s:34:\"FCML-SUPPLIERS-LOGOS-1-200x200.png\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:30391;}s:12:\"shop_catalog\";a:5:{s:4:\"file\";s:34:\"FCML-SUPPLIERS-LOGOS-1-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:30226;}s:11:\"shop_single\";a:5:{s:4:\"file\";s:34:\"FCML-SUPPLIERS-LOGOS-1-600x138.png\";s:5:\"width\";i:600;s:6:\"height\";i:138;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:56412;}s:14:\"shop_thumbnail\";a:5:{s:4:\"file\";s:34:\"FCML-SUPPLIERS-LOGOS-1-200x200.png\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:30391;}}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:{}}}'),(15393,3121,'_wpb_shortcodes_custom_css','.vc_custom_1689577528817{padding-bottom: 50px !important;}.vc_custom_1689578783264{padding-top: 50px !important;padding-bottom: 50px !important;}.vc_custom_1689578794814{padding-top: 50px !important;padding-bottom: 50px !important;}.vc_custom_1689578794814{padding-top: 50px !important;padding-bottom: 50px !important;}.vc_custom_1689577454678{margin-bottom: 50px !important;}.vc_custom_1689577559805{border-bottom-width: 1px !important;padding-top: 35px !important;padding-bottom: 35px !important;border-bottom-color: #079547 !important;border-bottom-style: solid !important;border-radius: 1px !important;}.vc_custom_1689577609020{border-bottom-width: 1px !important;padding-top: 35px !important;padding-bottom: 35px !important;border-bottom-color: #079547 !important;border-bottom-style: solid !important;border-radius: 1px !important;}.vc_custom_1689577609020{border-bottom-width: 1px !important;padding-top: 35px !important;padding-bottom: 35px !important;border-bottom-color: #079547 !important;border-bottom-style: solid !important;border-radius: 1px !important;}.vc_custom_1689577609020{border-bottom-width: 1px !important;padding-top: 35px !important;padding-bottom: 35px !important;border-bottom-color: #079547 !important;border-bottom-style: solid !important;border-radius: 1px !important;}.vc_custom_1691846530645{border-right-width: 1px !important;border-left-width: 1px !important;border-left-color: #000000 !important;border-left-style: solid !important;border-right-color: #000000 !important;border-right-style: solid !important;border-radius: 1px !important;}.vc_custom_1691846545469{border-right-width: 1px !important;border-left-width: 1px !important;border-left-color: #000000 !important;border-left-style: solid !important;border-right-color: #000000 !important;border-right-style: solid !important;border-radius: 1px !important;}.vc_custom_1691846563021{border-right-width: 1px !important;border-right-color: #000000 !important;border-right-style: solid !important;border-radius: 1px !important;}.vc_custom_1691846569845{border-right-width: 1px !important;border-right-color: #000000 !important;border-right-style: solid !important;border-radius: 1px !important;}.vc_custom_1691846576949{border-right-width: 1px !important;border-right-color: #000000 !important;border-right-style: solid !important;border-radius: 1px !important;}.vc_custom_1689578812611{margin-top: 50px !important;}.vc_custom_1689578812611{margin-top: 50px !important;}'),(15394,3122,'_wpb_shortcodes_custom_css','.vc_custom_1689577528817{padding-bottom: 50px !important;}.vc_custom_1689578783264{padding-top: 50px !important;padding-bottom: 50px !important;}.vc_custom_1689578794814{padding-top: 50px !important;padding-bottom: 50px !important;}.vc_custom_1689578794814{padding-top: 50px !important;padding-bottom: 50px !important;}.vc_custom_1689577454678{margin-bottom: 50px !important;}.vc_custom_1689577559805{border-bottom-width: 1px !important;padding-top: 35px !important;padding-bottom: 35px !important;border-bottom-color: #079547 !important;border-bottom-style: solid !important;border-radius: 1px !important;}.vc_custom_1689577609020{border-bottom-width: 1px !important;padding-top: 35px !important;padding-bottom: 35px !important;border-bottom-color: #079547 !important;border-bottom-style: solid !important;border-radius: 1px !important;}.vc_custom_1689577609020{border-bottom-width: 1px !important;padding-top: 35px !important;padding-bottom: 35px !important;border-bottom-color: #079547 !important;border-bottom-style: solid !important;border-radius: 1px !important;}.vc_custom_1689577609020{border-bottom-width: 1px !important;padding-top: 35px !important;padding-bottom: 35px !important;border-bottom-color: #079547 !important;border-bottom-style: solid !important;border-radius: 1px !important;}.vc_custom_1691846530645{border-right-width: 1px !important;border-left-width: 1px !important;border-left-color: #000000 !important;border-left-style: solid !important;border-right-color: #000000 !important;border-right-style: solid !important;border-radius: 1px !important;}.vc_custom_1691846545469{border-right-width: 1px !important;border-left-width: 1px !important;border-left-color: #000000 !important;border-left-style: solid !important;border-right-color: #000000 !important;border-right-style: solid !important;border-radius: 1px !important;}.vc_custom_1691846563021{border-right-width: 1px !important;border-right-color: #000000 !important;border-right-style: solid !important;border-radius: 1px !important;}.vc_custom_1691846569845{border-right-width: 1px !important;border-right-color: #000000 !important;border-right-style: solid !important;border-radius: 1px !important;}.vc_custom_1691846576949{border-right-width: 1px !important;border-right-color: #000000 !important;border-right-style: solid !important;border-radius: 1px !important;}.vc_custom_1689578812611{margin-top: 50px !important;}.vc_custom_1689578812611{margin-top: 50px !important;}'),(15395,3123,'_wpb_shortcodes_custom_css','.vc_custom_1689577528817{padding-bottom: 50px !important;}.vc_custom_1689578783264{padding-top: 50px !important;padding-bottom: 50px !important;}.vc_custom_1689578794814{padding-top: 50px !important;padding-bottom: 50px !important;}.vc_custom_1689578794814{padding-top: 50px !important;padding-bottom: 50px !important;}.vc_custom_1689577454678{margin-bottom: 50px !important;}.vc_custom_1689577559805{border-bottom-width: 1px !important;padding-top: 35px !important;padding-bottom: 35px !important;border-bottom-color: #079547 !important;border-bottom-style: solid !important;border-radius: 1px !important;}.vc_custom_1689577609020{border-bottom-width: 1px !important;padding-top: 35px !important;padding-bottom: 35px !important;border-bottom-color: #079547 !important;border-bottom-style: solid !important;border-radius: 1px !important;}.vc_custom_1689577609020{border-bottom-width: 1px !important;padding-top: 35px !important;padding-bottom: 35px !important;border-bottom-color: #079547 !important;border-bottom-style: solid !important;border-radius: 1px !important;}.vc_custom_1689577609020{border-bottom-width: 1px !important;padding-top: 35px !important;padding-bottom: 35px !important;border-bottom-color: #079547 !important;border-bottom-style: solid !important;border-radius: 1px !important;}.vc_custom_1691846530645{border-right-width: 1px !important;border-left-width: 1px !important;border-left-color: #000000 !important;border-left-style: solid !important;border-right-color: #000000 !important;border-right-style: solid !important;border-radius: 1px !important;}.vc_custom_1691846545469{border-right-width: 1px !important;border-left-width: 1px !important;border-left-color: #000000 !important;border-left-style: solid !important;border-right-color: #000000 !important;border-right-style: solid !important;border-radius: 1px !important;}.vc_custom_1691846563021{border-right-width: 1px !important;border-right-color: #000000 !important;border-right-style: solid !important;border-radius: 1px !important;}.vc_custom_1691846569845{border-right-width: 1px !important;border-right-color: #000000 !important;border-right-style: solid !important;border-radius: 1px !important;}.vc_custom_1691846576949{border-right-width: 1px !important;border-right-color: #000000 !important;border-right-style: solid !important;border-radius: 1px !important;}.vc_custom_1689578812611{margin-top: 50px !important;}.vc_custom_1689578812611{margin-top: 50px !important;}'),(15396,3124,'_wp_attached_file','2023/04/testimg.jpg'),(15397,3124,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:600;s:6:\"height\";i:600;s:4:\"file\";s:19:\"2023/04/testimg.jpg\";s:8:\"filesize\";i:106495;s:5:\"sizes\";a:6:{s:6:\"medium\";a:5:{s:4:\"file\";s:19:\"testimg-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:12666;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:19:\"testimg-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:5586;}s:21:\"woocommerce_thumbnail\";a:6:{s:4:\"file\";s:19:\"testimg-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:12666;s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:5:{s:4:\"file\";s:19:\"testimg-200x200.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:7557;}s:12:\"shop_catalog\";a:5:{s:4:\"file\";s:19:\"testimg-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:12666;}s:14:\"shop_thumbnail\";a:5:{s:4:\"file\";s:19:\"testimg-200x200.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:7557;}}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:{}}}'),(15399,3125,'_wp_attached_file','2023/08/Awards.png'),(15400,3125,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:644;s:6:\"height\";i:317;s:4:\"file\";s:18:\"2023/08/Awards.png\";s:8:\"filesize\";i:47606;s:5:\"sizes\";a:8:{s:6:\"medium\";a:5:{s:4:\"file\";s:18:\"Awards-300x148.png\";s:5:\"width\";i:300;s:6:\"height\";i:148;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:40765;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:18:\"Awards-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:21064;}s:21:\"woocommerce_thumbnail\";a:6:{s:4:\"file\";s:18:\"Awards-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:72470;s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:5:{s:4:\"file\";s:18:\"Awards-600x295.png\";s:5:\"width\";i:600;s:6:\"height\";i:295;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:142046;}s:29:\"woocommerce_gallery_thumbnail\";a:5:{s:4:\"file\";s:18:\"Awards-200x200.png\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:34744;}s:12:\"shop_catalog\";a:5:{s:4:\"file\";s:18:\"Awards-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:72470;}s:11:\"shop_single\";a:5:{s:4:\"file\";s:18:\"Awards-600x295.png\";s:5:\"width\";i:600;s:6:\"height\";i:295;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:142046;}s:14:\"shop_thumbnail\";a:5:{s:4:\"file\";s:18:\"Awards-200x200.png\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:34744;}}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:{}}}'),(15401,3126,'_wp_attached_file','2023/08/Asset-1@300x-1.png'),(15402,3126,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:11336;s:6:\"height\";i:1464;s:4:\"file\";s:26:\"2023/08/Asset-1@300x-1.png\";s:8:\"filesize\";i:763092;s:5:\"sizes\";a:12:{s:6:\"medium\";a:5:{s:4:\"file\";s:25:\"Asset-1@300x-1-300x39.png\";s:5:\"width\";i:300;s:6:\"height\";i:39;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:12145;}s:5:\"large\";a:5:{s:4:\"file\";s:27:\"Asset-1@300x-1-1024x132.png\";s:5:\"width\";i:1024;s:6:\"height\";i:132;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:70642;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:26:\"Asset-1@300x-1-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:10165;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:25:\"Asset-1@300x-1-768x99.png\";s:5:\"width\";i:768;s:6:\"height\";i:99;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:46927;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:27:\"Asset-1@300x-1-1536x198.png\";s:5:\"width\";i:1536;s:6:\"height\";i:198;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:125140;}s:9:\"2048x2048\";a:5:{s:4:\"file\";s:27:\"Asset-1@300x-1-2048x264.png\";s:5:\"width\";i:2048;s:6:\"height\";i:264;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:186618;}s:21:\"woocommerce_thumbnail\";a:6:{s:4:\"file\";s:26:\"Asset-1@300x-1-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:24092;s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:5:{s:4:\"file\";s:25:\"Asset-1@300x-1-600x77.png\";s:5:\"width\";i:600;s:6:\"height\";i:77;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:32669;}s:29:\"woocommerce_gallery_thumbnail\";a:5:{s:4:\"file\";s:26:\"Asset-1@300x-1-200x200.png\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:15319;}s:12:\"shop_catalog\";a:5:{s:4:\"file\";s:26:\"Asset-1@300x-1-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:24092;}s:11:\"shop_single\";a:5:{s:4:\"file\";s:25:\"Asset-1@300x-1-600x77.png\";s:5:\"width\";i:600;s:6:\"height\";i:77;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:32669;}s:14:\"shop_thumbnail\";a:5:{s:4:\"file\";s:26:\"Asset-1@300x-1-200x200.png\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:15319;}}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:{}}}'),(15404,3128,'_wp_attached_file','2023/08/FEED-ADDITIVES6.png'),(15403,3127,'_wpb_shortcodes_custom_css','.vc_custom_1686720701314{margin-top: 35px !important;padding-top: 65px !important;padding-bottom: 100px !important;}.vc_custom_1684836308288{margin-top: 15px !important;}.vc_custom_1686713784619{margin-top: 35px !important;}.vc_custom_1686714025469{margin-top: 35px !important;}.vc_custom_1686713784619{margin-top: 35px !important;}.vc_custom_1686714115148{margin-top: 35px !important;}.vc_custom_1686713784619{margin-top: 35px !important;}.vc_custom_1686713784619{margin-top: 35px !important;}.vc_custom_1686713784619{margin-top: 35px !important;}.vc_custom_1691995519863{background-color: #f4ab20 !important;border: 1px solid #f4ab20 !important;border-radius: 35px !important;}.vc_custom_1691995661095{background-color: #722f8b !important;border: 1px solid #722f8b !important;border-radius: 35px !important;}.vc_custom_1691995661095{background-color: #722f8b !important;border: 1px solid #722f8b !important;border-radius: 35px !important;}.vc_custom_1691995519863{background-color: #f4ab20 !important;border: 1px solid #f4ab20 !important;border-radius: 35px !important;}.vc_custom_1691996718116{border-radius: 35px !important;}.vc_custom_1691995519863{background-color: #f4ab20 !important;border: 1px solid #f4ab20 !important;border-radius: 35px !important;}'),(28642,3847,'_wp_attached_file','2023/09/Lev-Ox-2400-BOLUS_600px-x-600px.png'),(15406,3129,'_wp_attached_file','2023/08/Feed-Additives_1000px-x-500px.png'),(15407,3129,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1000;s:6:\"height\";i:500;s:4:\"file\";s:41:\"2023/08/Feed-Additives_1000px-x-500px.png\";s:8:\"filesize\";i:154363;s:5:\"sizes\";a:9:{s:6:\"medium\";a:5:{s:4:\"file\";s:41:\"Feed-Additives_1000px-x-500px-300x150.png\";s:5:\"width\";i:300;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:63056;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:41:\"Feed-Additives_1000px-x-500px-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:32924;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:41:\"Feed-Additives_1000px-x-500px-768x384.png\";s:5:\"width\";i:768;s:6:\"height\";i:384;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:363896;}s:21:\"woocommerce_thumbnail\";a:6:{s:4:\"file\";s:41:\"Feed-Additives_1000px-x-500px-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:118639;s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:5:{s:4:\"file\";s:41:\"Feed-Additives_1000px-x-500px-600x300.png\";s:5:\"width\";i:600;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:222792;}s:29:\"woocommerce_gallery_thumbnail\";a:5:{s:4:\"file\";s:41:\"Feed-Additives_1000px-x-500px-200x200.png\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:53943;}s:12:\"shop_catalog\";a:5:{s:4:\"file\";s:41:\"Feed-Additives_1000px-x-500px-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:118639;}s:11:\"shop_single\";a:5:{s:4:\"file\";s:41:\"Feed-Additives_1000px-x-500px-600x300.png\";s:5:\"width\";i:600;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:222792;}s:14:\"shop_thumbnail\";a:5:{s:4:\"file\";s:41:\"Feed-Additives_1000px-x-500px-200x200.png\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:53943;}}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:{}}}'),(15408,3130,'_wpb_shortcodes_custom_css','.vc_custom_1689577528817{padding-bottom: 50px !important;}.vc_custom_1689578783264{padding-top: 50px !important;padding-bottom: 50px !important;}.vc_custom_1689578794814{padding-top: 50px !important;padding-bottom: 50px !important;}.vc_custom_1689578794814{padding-top: 50px !important;padding-bottom: 50px !important;}.vc_custom_1689577454678{margin-bottom: 50px !important;}.vc_custom_1689577559805{border-bottom-width: 1px !important;padding-top: 35px !important;padding-bottom: 35px !important;border-bottom-color: #079547 !important;border-bottom-style: solid !important;border-radius: 1px !important;}.vc_custom_1689577609020{border-bottom-width: 1px !important;padding-top: 35px !important;padding-bottom: 35px !important;border-bottom-color: #079547 !important;border-bottom-style: solid !important;border-radius: 1px !important;}.vc_custom_1689577609020{border-bottom-width: 1px !important;padding-top: 35px !important;padding-bottom: 35px !important;border-bottom-color: #079547 !important;border-bottom-style: solid !important;border-radius: 1px !important;}.vc_custom_1689577609020{border-bottom-width: 1px !important;padding-top: 35px !important;padding-bottom: 35px !important;border-bottom-color: #079547 !important;border-bottom-style: solid !important;border-radius: 1px !important;}.vc_custom_1691846530645{border-right-width: 1px !important;border-left-width: 1px !important;border-left-color: #000000 !important;border-left-style: solid !important;border-right-color: #000000 !important;border-right-style: solid !important;border-radius: 1px !important;}.vc_custom_1691846545469{border-right-width: 1px !important;border-left-width: 1px !important;border-left-color: #000000 !important;border-left-style: solid !important;border-right-color: #000000 !important;border-right-style: solid !important;border-radius: 1px !important;}.vc_custom_1691846563021{border-right-width: 1px !important;border-right-color: #000000 !important;border-right-style: solid !important;border-radius: 1px !important;}.vc_custom_1691846569845{border-right-width: 1px !important;border-right-color: #000000 !important;border-right-style: solid !important;border-radius: 1px !important;}.vc_custom_1691846576949{border-right-width: 1px !important;border-right-color: #000000 !important;border-right-style: solid !important;border-radius: 1px !important;}.vc_custom_1689578812611{margin-top: 50px !important;}.vc_custom_1689578812611{margin-top: 50px !important;}'),(15409,3131,'_wpb_shortcodes_custom_css','.vc_custom_1689577528817{padding-bottom: 50px !important;}.vc_custom_1689578783264{padding-top: 50px !important;padding-bottom: 50px !important;}.vc_custom_1689578794814{padding-top: 50px !important;padding-bottom: 50px !important;}.vc_custom_1689578794814{padding-top: 50px !important;padding-bottom: 50px !important;}.vc_custom_1689577454678{margin-bottom: 50px !important;}.vc_custom_1689577559805{border-bottom-width: 1px !important;padding-top: 35px !important;padding-bottom: 35px !important;border-bottom-color: #079547 !important;border-bottom-style: solid !important;border-radius: 1px !important;}.vc_custom_1689577609020{border-bottom-width: 1px !important;padding-top: 35px !important;padding-bottom: 35px !important;border-bottom-color: #079547 !important;border-bottom-style: solid !important;border-radius: 1px !important;}.vc_custom_1689577609020{border-bottom-width: 1px !important;padding-top: 35px !important;padding-bottom: 35px !important;border-bottom-color: #079547 !important;border-bottom-style: solid !important;border-radius: 1px !important;}.vc_custom_1689577609020{border-bottom-width: 1px !important;padding-top: 35px !important;padding-bottom: 35px !important;border-bottom-color: #079547 !important;border-bottom-style: solid !important;border-radius: 1px !important;}.vc_custom_1691846530645{border-right-width: 1px !important;border-left-width: 1px !important;border-left-color: #000000 !important;border-left-style: solid !important;border-right-color: #000000 !important;border-right-style: solid !important;border-radius: 1px !important;}.vc_custom_1691846545469{border-right-width: 1px !important;border-left-width: 1px !important;border-left-color: #000000 !important;border-left-style: solid !important;border-right-color: #000000 !important;border-right-style: solid !important;border-radius: 1px !important;}.vc_custom_1691846563021{border-right-width: 1px !important;border-right-color: #000000 !important;border-right-style: solid !important;border-radius: 1px !important;}.vc_custom_1691846569845{border-right-width: 1px !important;border-right-color: #000000 !important;border-right-style: solid !important;border-radius: 1px !important;}.vc_custom_1691846576949{border-right-width: 1px !important;border-right-color: #000000 !important;border-right-style: solid !important;border-radius: 1px !important;}.vc_custom_1689578812611{margin-top: 50px !important;}.vc_custom_1689578812611{margin-top: 50px !important;}'),(15410,3132,'_wpb_shortcodes_custom_css','.vc_custom_1689577528817{padding-bottom: 50px !important;}.vc_custom_1689578783264{padding-top: 50px !important;padding-bottom: 50px !important;}.vc_custom_1689578794814{padding-top: 50px !important;padding-bottom: 50px !important;}.vc_custom_1689578794814{padding-top: 50px !important;padding-bottom: 50px !important;}.vc_custom_1689577454678{margin-bottom: 50px !important;}.vc_custom_1689577559805{border-bottom-width: 1px !important;padding-top: 35px !important;padding-bottom: 35px !important;border-bottom-color: #079547 !important;border-bottom-style: solid !important;border-radius: 1px !important;}.vc_custom_1689577609020{border-bottom-width: 1px !important;padding-top: 35px !important;padding-bottom: 35px !important;border-bottom-color: #079547 !important;border-bottom-style: solid !important;border-radius: 1px !important;}.vc_custom_1689577609020{border-bottom-width: 1px !important;padding-top: 35px !important;padding-bottom: 35px !important;border-bottom-color: #079547 !important;border-bottom-style: solid !important;border-radius: 1px !important;}.vc_custom_1689577609020{border-bottom-width: 1px !important;padding-top: 35px !important;padding-bottom: 35px !important;border-bottom-color: #079547 !important;border-bottom-style: solid !important;border-radius: 1px !important;}.vc_custom_1691846530645{border-right-width: 1px !important;border-left-width: 1px !important;border-left-color: #000000 !important;border-left-style: solid !important;border-right-color: #000000 !important;border-right-style: solid !important;border-radius: 1px !important;}.vc_custom_1691846545469{border-right-width: 1px !important;border-left-width: 1px !important;border-left-color: #000000 !important;border-left-style: solid !important;border-right-color: #000000 !important;border-right-style: solid !important;border-radius: 1px !important;}.vc_custom_1691846563021{border-right-width: 1px !important;border-right-color: #000000 !important;border-right-style: solid !important;border-radius: 1px !important;}.vc_custom_1691846569845{border-right-width: 1px !important;border-right-color: #000000 !important;border-right-style: solid !important;border-radius: 1px !important;}.vc_custom_1691846576949{border-right-width: 1px !important;border-right-color: #000000 !important;border-right-style: solid !important;border-radius: 1px !important;}.vc_custom_1689578812611{margin-top: 50px !important;}.vc_custom_1689578812611{margin-top: 50px !important;}'),(15411,3133,'_wpb_shortcodes_custom_css','.vc_custom_1686720701314{margin-top: 35px !important;padding-top: 65px !important;padding-bottom: 100px !important;}.vc_custom_1684836308288{margin-top: 15px !important;}.vc_custom_1686713784619{margin-top: 35px !important;}.vc_custom_1686714025469{margin-top: 35px !important;}.vc_custom_1686713784619{margin-top: 35px !important;}.vc_custom_1686714115148{margin-top: 35px !important;}.vc_custom_1686713784619{margin-top: 35px !important;}.vc_custom_1686713784619{margin-top: 35px !important;}.vc_custom_1686713784619{margin-top: 35px !important;}.vc_custom_1691995519863{background-color: #f4ab20 !important;border: 1px solid #f4ab20 !important;border-radius: 35px !important;}.vc_custom_1691995661095{background-color: #722f8b !important;border: 1px solid #722f8b !important;border-radius: 35px !important;}.vc_custom_1691995661095{background-color: #722f8b !important;border: 1px solid #722f8b !important;border-radius: 35px !important;}.vc_custom_1691995519863{background-color: #f4ab20 !important;border: 1px solid #f4ab20 !important;border-radius: 35px !important;}.vc_custom_1691996718116{border-radius: 35px !important;}.vc_custom_1691995519863{background-color: #f4ab20 !important;border: 1px solid #f4ab20 !important;border-radius: 35px !important;}'),(15415,3136,'_wp_attached_file','2023/04/AbamecD-Logo.png'),(15414,3135,'_wpb_shortcodes_custom_css','.vc_custom_1686720701314{margin-top: 35px !important;padding-top: 65px !important;padding-bottom: 100px !important;}.vc_custom_1684836308288{margin-top: 15px !important;}.vc_custom_1686713784619{margin-top: 35px !important;}.vc_custom_1686714025469{margin-top: 35px !important;}.vc_custom_1686713784619{margin-top: 35px !important;}.vc_custom_1686714115148{margin-top: 35px !important;}.vc_custom_1686713784619{margin-top: 35px !important;}.vc_custom_1686713784619{margin-top: 35px !important;}.vc_custom_1686713784619{margin-top: 35px !important;}.vc_custom_1691995519863{background-color: #f4ab20 !important;border: 1px solid #f4ab20 !important;border-radius: 35px !important;}.vc_custom_1691995661095{background-color: #722f8b !important;border: 1px solid #722f8b !important;border-radius: 35px !important;}.vc_custom_1691995661095{background-color: #722f8b !important;border: 1px solid #722f8b !important;border-radius: 35px !important;}.vc_custom_1691995519863{background-color: #f4ab20 !important;border: 1px solid #f4ab20 !important;border-radius: 35px !important;}.vc_custom_1691996718116{border-radius: 35px !important;}.vc_custom_1691995519863{background-color: #f4ab20 !important;border: 1px solid #f4ab20 !important;border-radius: 35px !important;}'),(15412,3134,'_wp_attached_file','2023/08/Medivesta-Banner.png'),(15413,3134,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1300;s:6:\"height\";i:300;s:4:\"file\";s:28:\"2023/08/Medivesta-Banner.png\";s:8:\"filesize\";i:212622;s:5:\"sizes\";a:10:{s:6:\"medium\";a:5:{s:4:\"file\";s:27:\"Medivesta-Banner-300x69.png\";s:5:\"width\";i:300;s:6:\"height\";i:69;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:39612;}s:5:\"large\";a:5:{s:4:\"file\";s:29:\"Medivesta-Banner-1024x236.png\";s:5:\"width\";i:1024;s:6:\"height\";i:236;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:419699;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:28:\"Medivesta-Banner-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:39584;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:28:\"Medivesta-Banner-768x177.png\";s:5:\"width\";i:768;s:6:\"height\";i:177;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:238133;}s:21:\"woocommerce_thumbnail\";a:6:{s:4:\"file\";s:28:\"Medivesta-Banner-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:56295;s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:5:{s:4:\"file\";s:28:\"Medivesta-Banner-600x138.png\";s:5:\"width\";i:600;s:6:\"height\";i:138;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:147217;}s:29:\"woocommerce_gallery_thumbnail\";a:5:{s:4:\"file\";s:28:\"Medivesta-Banner-200x200.png\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:67156;}s:12:\"shop_catalog\";a:5:{s:4:\"file\";s:28:\"Medivesta-Banner-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:56295;}s:11:\"shop_single\";a:5:{s:4:\"file\";s:28:\"Medivesta-Banner-600x138.png\";s:5:\"width\";i:600;s:6:\"height\";i:138;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:147217;}s:14:\"shop_thumbnail\";a:5:{s:4:\"file\";s:28:\"Medivesta-Banner-200x200.png\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:67156;}}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:{}}}'),(15589,3213,'_wp_attached_file','2023/08/Medivesta-Banner-1.png'),(15416,3136,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:300;s:6:\"height\";i:200;s:4:\"file\";s:24:\"2023/04/AbamecD-Logo.png\";s:8:\"filesize\";i:5345;s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:24:\"AbamecD-Logo-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:15760;}s:29:\"woocommerce_gallery_thumbnail\";a:5:{s:4:\"file\";s:24:\"AbamecD-Logo-200x200.png\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:10349;}s:14:\"shop_thumbnail\";a:5:{s:4:\"file\";s:24:\"AbamecD-Logo-200x200.png\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:10349;}}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:{}}}'),(15417,3137,'_wp_attached_file','2023/04/AbamecD_600px-x-600px.png'),(15418,3137,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:600;s:6:\"height\";i:600;s:4:\"file\";s:33:\"2023/04/AbamecD_600px-x-600px.png\";s:8:\"filesize\";i:49950;s:5:\"sizes\";a:6:{s:6:\"medium\";a:5:{s:4:\"file\";s:33:\"AbamecD_600px-x-600px-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:45780;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:33:\"AbamecD_600px-x-600px-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:14270;}s:21:\"woocommerce_thumbnail\";a:6:{s:4:\"file\";s:33:\"AbamecD_600px-x-600px-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:45780;s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:5:{s:4:\"file\";s:33:\"AbamecD_600px-x-600px-200x200.png\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:22926;}s:12:\"shop_catalog\";a:5:{s:4:\"file\";s:33:\"AbamecD_600px-x-600px-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:45780;}s:14:\"shop_thumbnail\";a:5:{s:4:\"file\";s:33:\"AbamecD_600px-x-600px-200x200.png\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:22926;}}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:{}}}'),(15420,3138,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:600;s:6:\"height\";i:600;s:4:\"file\";s:35:\"2023/04/Alverm-30_600px-600px-1.png\";s:8:\"filesize\";i:48145;s:5:\"sizes\";a:6:{s:6:\"medium\";a:5:{s:4:\"file\";s:35:\"Alverm-30_600px-600px-1-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:39624;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:35:\"Alverm-30_600px-600px-1-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:12995;}s:21:\"woocommerce_thumbnail\";a:6:{s:4:\"file\";s:35:\"Alverm-30_600px-600px-1-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:39624;s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:5:{s:4:\"file\";s:35:\"Alverm-30_600px-600px-1-200x200.png\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:20275;}s:12:\"shop_catalog\";a:5:{s:4:\"file\";s:35:\"Alverm-30_600px-600px-1-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:39624;}s:14:\"shop_thumbnail\";a:5:{s:4:\"file\";s:35:\"Alverm-30_600px-600px-1-200x200.png\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:20275;}}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:{}}}'),(15421,3140,'_wp_attached_file','2023/05/AVI-B_-Logo.png'),(15422,3140,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:300;s:6:\"height\";i:200;s:4:\"file\";s:23:\"2023/05/AVI-B_-Logo.png\";s:8:\"filesize\";i:2074;s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:23:\"AVI-B_-Logo-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:7589;}s:29:\"woocommerce_gallery_thumbnail\";a:5:{s:4:\"file\";s:23:\"AVI-B_-Logo-200x200.png\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:4815;}s:14:\"shop_thumbnail\";a:5:{s:4:\"file\";s:23:\"AVI-B_-Logo-200x200.png\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:4815;}}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:{}}}'),(15758,3250,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:400;s:6:\"height\";i:140;s:4:\"file\";s:25:\"2023/05/AVI-B_-Logo-1.png\";s:8:\"filesize\";i:2537;s:5:\"sizes\";a:6:{s:6:\"medium\";a:5:{s:4:\"file\";s:25:\"AVI-B_-Logo-1-300x105.png\";s:5:\"width\";i:300;s:6:\"height\";i:105;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:10659;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:25:\"AVI-B_-Logo-1-150x140.png\";s:5:\"width\";i:150;s:6:\"height\";i:140;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:3486;}s:21:\"woocommerce_thumbnail\";a:6:{s:4:\"file\";s:25:\"AVI-B_-Logo-1-300x140.png\";s:5:\"width\";i:300;s:6:\"height\";i:140;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:6553;s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:5:{s:4:\"file\";s:25:\"AVI-B_-Logo-1-200x140.png\";s:5:\"width\";i:200;s:6:\"height\";i:140;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:4618;}s:12:\"shop_catalog\";a:5:{s:4:\"file\";s:25:\"AVI-B_-Logo-1-300x140.png\";s:5:\"width\";i:300;s:6:\"height\";i:140;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:6553;}s:14:\"shop_thumbnail\";a:5:{s:4:\"file\";s:25:\"AVI-B_-Logo-1-200x140.png\";s:5:\"width\";i:200;s:6:\"height\";i:140;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:4618;}}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:{}}}'),(15423,3141,'_wp_attached_file','2023/05/AVI-B_600px-x-600px.png'),(15424,3141,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:600;s:6:\"height\";i:600;s:4:\"file\";s:31:\"2023/05/AVI-B_600px-x-600px.png\";s:8:\"filesize\";i:63406;s:5:\"sizes\";a:6:{s:6:\"medium\";a:5:{s:4:\"file\";s:31:\"AVI-B_600px-x-600px-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:47344;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:31:\"AVI-B_600px-x-600px-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:13676;}s:21:\"woocommerce_thumbnail\";a:6:{s:4:\"file\";s:31:\"AVI-B_600px-x-600px-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:47344;s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:5:{s:4:\"file\";s:31:\"AVI-B_600px-x-600px-200x200.png\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:22642;}s:12:\"shop_catalog\";a:5:{s:4:\"file\";s:31:\"AVI-B_600px-x-600px-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:47344;}s:14:\"shop_thumbnail\";a:5:{s:4:\"file\";s:31:\"AVI-B_600px-x-600px-200x200.png\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:22642;}}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:{}}}'),(15425,3142,'_wp_attached_file','2023/05/AVI-E_Logo.png'),(15427,3143,'_wp_attached_file','2023/05/AVI-E_600px-x-600px.png'),(15428,3143,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:600;s:6:\"height\";i:600;s:4:\"file\";s:31:\"2023/05/AVI-E_600px-x-600px.png\";s:8:\"filesize\";i:60992;s:5:\"sizes\";a:6:{s:6:\"medium\";a:5:{s:4:\"file\";s:31:\"AVI-E_600px-x-600px-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:46978;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:31:\"AVI-E_600px-x-600px-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:13678;}s:21:\"woocommerce_thumbnail\";a:6:{s:4:\"file\";s:31:\"AVI-E_600px-x-600px-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:46978;s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:5:{s:4:\"file\";s:31:\"AVI-E_600px-x-600px-200x200.png\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:22558;}s:12:\"shop_catalog\";a:5:{s:4:\"file\";s:31:\"AVI-E_600px-x-600px-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:46978;}s:14:\"shop_thumbnail\";a:5:{s:4:\"file\";s:31:\"AVI-E_600px-x-600px-200x200.png\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:22558;}}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:{}}}'),(19519,2420,'_wp_old_date','2023-08-27'),(19520,2421,'_wp_old_date','2023-08-27'),(15429,3144,'_wp_attached_file','2023/05/AVI-Ganadexil_600px-x-600px.png'),(15431,3145,'_wp_attached_file','2023/05/AVI-Ganadexil_logo.png'),(15432,3145,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:352;s:6:\"height\";i:200;s:4:\"file\";s:30:\"2023/05/AVI-Ganadexil_logo.png\";s:8:\"filesize\";i:2836;s:5:\"sizes\";a:6:{s:6:\"medium\";a:5:{s:4:\"file\";s:30:\"AVI-Ganadexil_logo-300x170.png\";s:5:\"width\";i:300;s:6:\"height\";i:170;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:13165;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:30:\"AVI-Ganadexil_logo-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:6251;}s:21:\"woocommerce_thumbnail\";a:6:{s:4:\"file\";s:30:\"AVI-Ganadexil_logo-300x200.png\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:6440;s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:5:{s:4:\"file\";s:30:\"AVI-Ganadexil_logo-200x200.png\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:3947;}s:12:\"shop_catalog\";a:5:{s:4:\"file\";s:30:\"AVI-Ganadexil_logo-300x200.png\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:6440;}s:14:\"shop_thumbnail\";a:5:{s:4:\"file\";s:30:\"AVI-Ganadexil_logo-200x200.png\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:3947;}}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:{}}}'),(19907,3548,'_dt_header_background_below_slideshow','disabled'),(15434,3147,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:360;s:6:\"height\";i:200;s:4:\"file\";s:30:\"2023/05/AVI-Pharmasin_logo.png\";s:8:\"filesize\";i:2778;s:5:\"sizes\";a:6:{s:6:\"medium\";a:5:{s:4:\"file\";s:30:\"AVI-Pharmasin_logo-300x167.png\";s:5:\"width\";i:300;s:6:\"height\";i:167;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:13208;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:30:\"AVI-Pharmasin_logo-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:5471;}s:21:\"woocommerce_thumbnail\";a:6:{s:4:\"file\";s:30:\"AVI-Pharmasin_logo-300x200.png\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:6157;s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:5:{s:4:\"file\";s:30:\"AVI-Pharmasin_logo-200x200.png\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:3583;}s:12:\"shop_catalog\";a:5:{s:4:\"file\";s:30:\"AVI-Pharmasin_logo-300x200.png\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:6157;}s:14:\"shop_thumbnail\";a:5:{s:4:\"file\";s:30:\"AVI-Pharmasin_logo-200x200.png\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:3583;}}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:{}}}'),(15435,3148,'_wp_attached_file','2023/05/AVI-Pharmasin_600px-x-600px.png'),(15436,3148,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:600;s:6:\"height\";i:600;s:4:\"file\";s:39:\"2023/05/AVI-Pharmasin_600px-x-600px.png\";s:8:\"filesize\";i:67503;s:5:\"sizes\";a:6:{s:6:\"medium\";a:5:{s:4:\"file\";s:39:\"AVI-Pharmasin_600px-x-600px-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:50184;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:39:\"AVI-Pharmasin_600px-x-600px-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:14542;}s:21:\"woocommerce_thumbnail\";a:6:{s:4:\"file\";s:39:\"AVI-Pharmasin_600px-x-600px-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:50184;s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:5:{s:4:\"file\";s:39:\"AVI-Pharmasin_600px-x-600px-200x200.png\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:23935;}s:12:\"shop_catalog\";a:5:{s:4:\"file\";s:39:\"AVI-Pharmasin_600px-x-600px-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:50184;}s:14:\"shop_thumbnail\";a:5:{s:4:\"file\";s:39:\"AVI-Pharmasin_600px-x-600px-200x200.png\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:23935;}}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:{}}}'),(19957,3548,'_dt_fancy_header_bg_position_y','center'),(15438,3149,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:394;s:6:\"height\";i:200;s:4:\"file\";s:31:\"2023/05/AVI-Pollodoxin_logo.png\";s:8:\"filesize\";i:3007;s:5:\"sizes\";a:6:{s:6:\"medium\";a:5:{s:4:\"file\";s:31:\"AVI-Pollodoxin_logo-300x152.png\";s:5:\"width\";i:300;s:6:\"height\";i:152;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:12963;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:31:\"AVI-Pollodoxin_logo-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:5306;}s:21:\"woocommerce_thumbnail\";a:6:{s:4:\"file\";s:31:\"AVI-Pollodoxin_logo-300x200.png\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:5961;s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:5:{s:4:\"file\";s:31:\"AVI-Pollodoxin_logo-200x200.png\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:3464;}s:12:\"shop_catalog\";a:5:{s:4:\"file\";s:31:\"AVI-Pollodoxin_logo-300x200.png\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:5961;}s:14:\"shop_thumbnail\";a:5:{s:4:\"file\";s:31:\"AVI-Pollodoxin_logo-200x200.png\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:3464;}}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:{}}}'),(15439,3150,'_wp_attached_file','2023/05/AVI-Pollodoxin-600px-x-600px.png'),(15440,3150,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:600;s:6:\"height\";i:600;s:4:\"file\";s:40:\"2023/05/AVI-Pollodoxin-600px-x-600px.png\";s:8:\"filesize\";i:59303;s:5:\"sizes\";a:6:{s:6:\"medium\";a:5:{s:4:\"file\";s:40:\"AVI-Pollodoxin-600px-x-600px-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:47328;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:40:\"AVI-Pollodoxin-600px-x-600px-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:14319;}s:21:\"woocommerce_thumbnail\";a:6:{s:4:\"file\";s:40:\"AVI-Pollodoxin-600px-x-600px-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:47328;s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:5:{s:4:\"file\";s:40:\"AVI-Pollodoxin-600px-x-600px-200x200.png\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:23058;}s:12:\"shop_catalog\";a:5:{s:4:\"file\";s:40:\"AVI-Pollodoxin-600px-x-600px-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:47328;}s:14:\"shop_thumbnail\";a:5:{s:4:\"file\";s:40:\"AVI-Pollodoxin-600px-x-600px-200x200.png\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:23058;}}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:{}}}'),(20021,3549,'_dt_mobile_page_padding_left',''),(20022,3549,'_dt_fancy_header_layout_heading',''),(15441,3151,'_wp_attached_file','2023/05/AVI-Prime.png'),(15442,3151,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:600;s:6:\"height\";i:600;s:4:\"file\";s:21:\"2023/05/AVI-Prime.png\";s:8:\"filesize\";i:74769;s:5:\"sizes\";a:6:{s:6:\"medium\";a:5:{s:4:\"file\";s:21:\"AVI-Prime-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:66124;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:21:\"AVI-Prime-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:20901;}s:21:\"woocommerce_thumbnail\";a:6:{s:4:\"file\";s:21:\"AVI-Prime-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:66124;s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:5:{s:4:\"file\";s:21:\"AVI-Prime-200x200.png\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:32865;}s:12:\"shop_catalog\";a:5:{s:4:\"file\";s:21:\"AVI-Prime-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:66124;}s:14:\"shop_thumbnail\";a:5:{s:4:\"file\";s:21:\"AVI-Prime-200x200.png\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:32865;}}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:{}}}'),(15443,3152,'_wp_attached_file','2023/05/AVI-Prime_logo.png'),(15444,3152,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:347;s:6:\"height\";i:200;s:4:\"file\";s:26:\"2023/05/AVI-Prime_logo.png\";s:8:\"filesize\";i:4384;s:5:\"sizes\";a:6:{s:6:\"medium\";a:5:{s:4:\"file\";s:26:\"AVI-Prime_logo-300x173.png\";s:5:\"width\";i:300;s:6:\"height\";i:173;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:13207;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:26:\"AVI-Prime_logo-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:6511;}s:21:\"woocommerce_thumbnail\";a:6:{s:4:\"file\";s:26:\"AVI-Prime_logo-300x200.png\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:7729;s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:5:{s:4:\"file\";s:26:\"AVI-Prime_logo-200x200.png\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:5417;}s:12:\"shop_catalog\";a:5:{s:4:\"file\";s:26:\"AVI-Prime_logo-300x200.png\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:7729;}s:14:\"shop_thumbnail\";a:5:{s:4:\"file\";s:26:\"AVI-Prime_logo-200x200.png\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:5417;}}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:{}}}'),(15446,3153,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:300;s:6:\"height\";i:200;s:4:\"file\";s:26:\"2023/05/AVI-Tonic_logo.png\";s:8:\"filesize\";i:2417;s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:26:\"AVI-Tonic_logo-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:6683;}s:29:\"woocommerce_gallery_thumbnail\";a:5:{s:4:\"file\";s:26:\"AVI-Tonic_logo-200x200.png\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:4220;}s:14:\"shop_thumbnail\";a:5:{s:4:\"file\";s:26:\"AVI-Tonic_logo-200x200.png\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:4220;}}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:{}}}'),(15447,3154,'_wp_attached_file','2023/05/AVI-Tonic.png'),(15448,3154,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:600;s:6:\"height\";i:600;s:4:\"file\";s:21:\"2023/05/AVI-Tonic.png\";s:8:\"filesize\";i:70407;s:5:\"sizes\";a:6:{s:6:\"medium\";a:5:{s:4:\"file\";s:21:\"AVI-Tonic-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:51165;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:21:\"AVI-Tonic-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:14883;}s:21:\"woocommerce_thumbnail\";a:6:{s:4:\"file\";s:21:\"AVI-Tonic-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:51165;s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:5:{s:4:\"file\";s:21:\"AVI-Tonic-200x200.png\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:24462;}s:12:\"shop_catalog\";a:5:{s:4:\"file\";s:21:\"AVI-Tonic-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:51165;}s:14:\"shop_thumbnail\";a:5:{s:4:\"file\";s:21:\"AVI-Tonic-200x200.png\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:24462;}}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:{}}}'),(19421,3484,'_dt_header_transparent_top_bar_bg_color','#ffffff'),(15450,3155,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1000;s:6:\"height\";i:500;s:4:\"file\";s:28:\"2023/08/Oral-Supplements.png\";s:8:\"filesize\";i:91591;s:5:\"sizes\";a:9:{s:6:\"medium\";a:5:{s:4:\"file\";s:28:\"Oral-Supplements-300x150.png\";s:5:\"width\";i:300;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:40292;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:28:\"Oral-Supplements-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:20640;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:28:\"Oral-Supplements-768x384.png\";s:5:\"width\";i:768;s:6:\"height\";i:384;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:217601;}s:21:\"woocommerce_thumbnail\";a:6:{s:4:\"file\";s:28:\"Oral-Supplements-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:69259;s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:5:{s:4:\"file\";s:28:\"Oral-Supplements-600x300.png\";s:5:\"width\";i:600;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:135135;}s:29:\"woocommerce_gallery_thumbnail\";a:5:{s:4:\"file\";s:28:\"Oral-Supplements-200x200.png\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:33302;}s:12:\"shop_catalog\";a:5:{s:4:\"file\";s:28:\"Oral-Supplements-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:69259;}s:11:\"shop_single\";a:5:{s:4:\"file\";s:28:\"Oral-Supplements-600x300.png\";s:5:\"width\";i:600;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:135135;}s:14:\"shop_thumbnail\";a:5:{s:4:\"file\";s:28:\"Oral-Supplements-200x200.png\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:33302;}}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:{}}}'),(15451,3156,'_wpb_shortcodes_custom_css','.vc_custom_1689577528817{padding-bottom: 50px !important;}.vc_custom_1689578783264{padding-top: 50px !important;padding-bottom: 50px !important;}.vc_custom_1689578794814{padding-top: 50px !important;padding-bottom: 50px !important;}.vc_custom_1689578794814{padding-top: 50px !important;padding-bottom: 50px !important;}.vc_custom_1689577454678{margin-bottom: 50px !important;}.vc_custom_1689577559805{border-bottom-width: 1px !important;padding-top: 35px !important;padding-bottom: 35px !important;border-bottom-color: #079547 !important;border-bottom-style: solid !important;border-radius: 1px !important;}.vc_custom_1689577609020{border-bottom-width: 1px !important;padding-top: 35px !important;padding-bottom: 35px !important;border-bottom-color: #079547 !important;border-bottom-style: solid !important;border-radius: 1px !important;}.vc_custom_1689577609020{border-bottom-width: 1px !important;padding-top: 35px !important;padding-bottom: 35px !important;border-bottom-color: #079547 !important;border-bottom-style: solid !important;border-radius: 1px !important;}.vc_custom_1689577609020{border-bottom-width: 1px !important;padding-top: 35px !important;padding-bottom: 35px !important;border-bottom-color: #079547 !important;border-bottom-style: solid !important;border-radius: 1px !important;}.vc_custom_1691846530645{border-right-width: 1px !important;border-left-width: 1px !important;border-left-color: #000000 !important;border-left-style: solid !important;border-right-color: #000000 !important;border-right-style: solid !important;border-radius: 1px !important;}.vc_custom_1691846545469{border-right-width: 1px !important;border-left-width: 1px !important;border-left-color: #000000 !important;border-left-style: solid !important;border-right-color: #000000 !important;border-right-style: solid !important;border-radius: 1px !important;}.vc_custom_1691846563021{border-right-width: 1px !important;border-right-color: #000000 !important;border-right-style: solid !important;border-radius: 1px !important;}.vc_custom_1691846569845{border-right-width: 1px !important;border-right-color: #000000 !important;border-right-style: solid !important;border-radius: 1px !important;}.vc_custom_1691846576949{border-right-width: 1px !important;border-right-color: #000000 !important;border-right-style: solid !important;border-radius: 1px !important;}.vc_custom_1689578812611{margin-top: 50px !important;}.vc_custom_1689578812611{margin-top: 50px !important;}'),(15452,3157,'_elementor_edit_mode','builder'),(15453,3157,'_elementor_template_type','kit'),(15454,3158,'_wp_attached_file','2023/08/Tablets.png'),(15455,3158,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1000;s:6:\"height\";i:500;s:4:\"file\";s:19:\"2023/08/Tablets.png\";s:8:\"filesize\";i:77999;s:5:\"sizes\";a:9:{s:6:\"medium\";a:5:{s:4:\"file\";s:19:\"Tablets-300x150.png\";s:5:\"width\";i:300;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:38329;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:19:\"Tablets-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:22153;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:19:\"Tablets-768x384.png\";s:5:\"width\";i:768;s:6:\"height\";i:384;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:188514;}s:21:\"woocommerce_thumbnail\";a:6:{s:4:\"file\";s:19:\"Tablets-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:71373;s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:5:{s:4:\"file\";s:19:\"Tablets-600x300.png\";s:5:\"width\";i:600;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:122402;}s:29:\"woocommerce_gallery_thumbnail\";a:5:{s:4:\"file\";s:19:\"Tablets-200x200.png\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:35643;}s:12:\"shop_catalog\";a:5:{s:4:\"file\";s:19:\"Tablets-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:71373;}s:11:\"shop_single\";a:5:{s:4:\"file\";s:19:\"Tablets-600x300.png\";s:5:\"width\";i:600;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:122402;}s:14:\"shop_thumbnail\";a:5:{s:4:\"file\";s:19:\"Tablets-200x200.png\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:35643;}}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:{}}}'),(15456,3159,'_wpb_shortcodes_custom_css','.vc_custom_1689577528817{padding-bottom: 50px !important;}.vc_custom_1689578783264{padding-top: 50px !important;padding-bottom: 50px !important;}.vc_custom_1689578794814{padding-top: 50px !important;padding-bottom: 50px !important;}.vc_custom_1689578794814{padding-top: 50px !important;padding-bottom: 50px !important;}.vc_custom_1689577454678{margin-bottom: 50px !important;}.vc_custom_1689577559805{border-bottom-width: 1px !important;padding-top: 35px !important;padding-bottom: 35px !important;border-bottom-color: #079547 !important;border-bottom-style: solid !important;border-radius: 1px !important;}.vc_custom_1689577609020{border-bottom-width: 1px !important;padding-top: 35px !important;padding-bottom: 35px !important;border-bottom-color: #079547 !important;border-bottom-style: solid !important;border-radius: 1px !important;}.vc_custom_1689577609020{border-bottom-width: 1px !important;padding-top: 35px !important;padding-bottom: 35px !important;border-bottom-color: #079547 !important;border-bottom-style: solid !important;border-radius: 1px !important;}.vc_custom_1689577609020{border-bottom-width: 1px !important;padding-top: 35px !important;padding-bottom: 35px !important;border-bottom-color: #079547 !important;border-bottom-style: solid !important;border-radius: 1px !important;}.vc_custom_1691846530645{border-right-width: 1px !important;border-left-width: 1px !important;border-left-color: #000000 !important;border-left-style: solid !important;border-right-color: #000000 !important;border-right-style: solid !important;border-radius: 1px !important;}.vc_custom_1691846545469{border-right-width: 1px !important;border-left-width: 1px !important;border-left-color: #000000 !important;border-left-style: solid !important;border-right-color: #000000 !important;border-right-style: solid !important;border-radius: 1px !important;}.vc_custom_1691846563021{border-right-width: 1px !important;border-right-color: #000000 !important;border-right-style: solid !important;border-radius: 1px !important;}.vc_custom_1691846569845{border-right-width: 1px !important;border-right-color: #000000 !important;border-right-style: solid !important;border-radius: 1px !important;}.vc_custom_1691846576949{border-right-width: 1px !important;border-right-color: #000000 !important;border-right-style: solid !important;border-radius: 1px !important;}.vc_custom_1689578812611{margin-top: 50px !important;}.vc_custom_1689578812611{margin-top: 50px !important;}'),(15457,3160,'_wpb_shortcodes_custom_css','.vc_custom_1686720701314{margin-top: 35px !important;padding-top: 65px !important;padding-bottom: 100px !important;}.vc_custom_1684836308288{margin-top: 15px !important;}.vc_custom_1686713784619{margin-top: 35px !important;}.vc_custom_1686714025469{margin-top: 35px !important;}.vc_custom_1686713784619{margin-top: 35px !important;}.vc_custom_1686714115148{margin-top: 35px !important;}.vc_custom_1686713784619{margin-top: 35px !important;}.vc_custom_1686713784619{margin-top: 35px !important;}.vc_custom_1686713784619{margin-top: 35px !important;}.vc_custom_1691995519863{background-color: #f4ab20 !important;border: 1px solid #f4ab20 !important;border-radius: 35px !important;}.vc_custom_1691995661095{background-color: #722f8b !important;border: 1px solid #722f8b !important;border-radius: 35px !important;}.vc_custom_1691995661095{background-color: #722f8b !important;border: 1px solid #722f8b !important;border-radius: 35px !important;}.vc_custom_1691995519863{background-color: #f4ab20 !important;border: 1px solid #f4ab20 !important;border-radius: 35px !important;}.vc_custom_1691996718116{border-radius: 35px !important;}.vc_custom_1691995519863{background-color: #f4ab20 !important;border: 1px solid #f4ab20 !important;border-radius: 35px !important;}'),(15888,3290,'_wp_attached_file','2023/08/Vaccination-Service_1.png'),(15460,3162,'_wp_attached_file','2023/08/Oral-Supplements-1.png'),(15461,3162,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1000;s:6:\"height\";i:500;s:4:\"file\";s:30:\"2023/08/Oral-Supplements-1.png\";s:8:\"filesize\";i:83195;s:5:\"sizes\";a:9:{s:6:\"medium\";a:5:{s:4:\"file\";s:30:\"Oral-Supplements-1-300x150.png\";s:5:\"width\";i:300;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:33993;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:30:\"Oral-Supplements-1-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:23679;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:30:\"Oral-Supplements-1-768x384.png\";s:5:\"width\";i:768;s:6:\"height\";i:384;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:190357;}s:21:\"woocommerce_thumbnail\";a:6:{s:4:\"file\";s:30:\"Oral-Supplements-1-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:82256;s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:5:{s:4:\"file\";s:30:\"Oral-Supplements-1-600x300.png\";s:5:\"width\";i:600;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:118869;}s:29:\"woocommerce_gallery_thumbnail\";a:5:{s:4:\"file\";s:30:\"Oral-Supplements-1-200x200.png\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:39095;}s:12:\"shop_catalog\";a:5:{s:4:\"file\";s:30:\"Oral-Supplements-1-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:82256;}s:11:\"shop_single\";a:5:{s:4:\"file\";s:30:\"Oral-Supplements-1-600x300.png\";s:5:\"width\";i:600;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:118869;}s:14:\"shop_thumbnail\";a:5:{s:4:\"file\";s:30:\"Oral-Supplements-1-200x200.png\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:39095;}}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:{}}}'),(15462,3163,'_wp_attached_file','2023/08/Tablets-1.png'),(15463,3163,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1000;s:6:\"height\";i:500;s:4:\"file\";s:21:\"2023/08/Tablets-1.png\";s:8:\"filesize\";i:74052;s:5:\"sizes\";a:9:{s:6:\"medium\";a:5:{s:4:\"file\";s:21:\"Tablets-1-300x150.png\";s:5:\"width\";i:300;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:37607;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:21:\"Tablets-1-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:20253;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:21:\"Tablets-1-768x384.png\";s:5:\"width\";i:768;s:6:\"height\";i:384;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:190545;}s:21:\"woocommerce_thumbnail\";a:6:{s:4:\"file\";s:21:\"Tablets-1-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:66150;s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:5:{s:4:\"file\";s:21:\"Tablets-1-600x300.png\";s:5:\"width\";i:600;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:122956;}s:29:\"woocommerce_gallery_thumbnail\";a:5:{s:4:\"file\";s:21:\"Tablets-1-200x200.png\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:32709;}s:12:\"shop_catalog\";a:5:{s:4:\"file\";s:21:\"Tablets-1-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:66150;}s:11:\"shop_single\";a:5:{s:4:\"file\";s:21:\"Tablets-1-600x300.png\";s:5:\"width\";i:600;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:122956;}s:14:\"shop_thumbnail\";a:5:{s:4:\"file\";s:21:\"Tablets-1-200x200.png\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:32709;}}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:{}}}'),(15464,3164,'_wp_attached_file','2023/08/Veterinary-Pharmaceuticals.png'),(15465,3164,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1000;s:6:\"height\";i:500;s:4:\"file\";s:38:\"2023/08/Veterinary-Pharmaceuticals.png\";s:8:\"filesize\";i:60446;s:5:\"sizes\";a:9:{s:6:\"medium\";a:5:{s:4:\"file\";s:38:\"Veterinary-Pharmaceuticals-300x150.png\";s:5:\"width\";i:300;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:27212;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:38:\"Veterinary-Pharmaceuticals-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:20345;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:38:\"Veterinary-Pharmaceuticals-768x384.png\";s:5:\"width\";i:768;s:6:\"height\";i:384;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:141518;}s:21:\"woocommerce_thumbnail\";a:6:{s:4:\"file\";s:38:\"Veterinary-Pharmaceuticals-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:66050;s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:5:{s:4:\"file\";s:38:\"Veterinary-Pharmaceuticals-600x300.png\";s:5:\"width\";i:600;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:89181;}s:29:\"woocommerce_gallery_thumbnail\";a:5:{s:4:\"file\";s:38:\"Veterinary-Pharmaceuticals-200x200.png\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:32212;}s:12:\"shop_catalog\";a:5:{s:4:\"file\";s:38:\"Veterinary-Pharmaceuticals-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:66050;}s:11:\"shop_single\";a:5:{s:4:\"file\";s:38:\"Veterinary-Pharmaceuticals-600x300.png\";s:5:\"width\";i:600;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:89181;}s:14:\"shop_thumbnail\";a:5:{s:4:\"file\";s:38:\"Veterinary-Pharmaceuticals-200x200.png\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:32212;}}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:{}}}'),(15466,3165,'_wpb_shortcodes_custom_css','.vc_custom_1689577528817{padding-bottom: 50px !important;}.vc_custom_1689578783264{padding-top: 50px !important;padding-bottom: 50px !important;}.vc_custom_1689578794814{padding-top: 50px !important;padding-bottom: 50px !important;}.vc_custom_1689578794814{padding-top: 50px !important;padding-bottom: 50px !important;}.vc_custom_1689577454678{margin-bottom: 50px !important;}.vc_custom_1689577559805{border-bottom-width: 1px !important;padding-top: 35px !important;padding-bottom: 35px !important;border-bottom-color: #079547 !important;border-bottom-style: solid !important;border-radius: 1px !important;}.vc_custom_1689577609020{border-bottom-width: 1px !important;padding-top: 35px !important;padding-bottom: 35px !important;border-bottom-color: #079547 !important;border-bottom-style: solid !important;border-radius: 1px !important;}.vc_custom_1689577609020{border-bottom-width: 1px !important;padding-top: 35px !important;padding-bottom: 35px !important;border-bottom-color: #079547 !important;border-bottom-style: solid !important;border-radius: 1px !important;}.vc_custom_1689577609020{border-bottom-width: 1px !important;padding-top: 35px !important;padding-bottom: 35px !important;border-bottom-color: #079547 !important;border-bottom-style: solid !important;border-radius: 1px !important;}.vc_custom_1691846530645{border-right-width: 1px !important;border-left-width: 1px !important;border-left-color: #000000 !important;border-left-style: solid !important;border-right-color: #000000 !important;border-right-style: solid !important;border-radius: 1px !important;}.vc_custom_1691846545469{border-right-width: 1px !important;border-left-width: 1px !important;border-left-color: #000000 !important;border-left-style: solid !important;border-right-color: #000000 !important;border-right-style: solid !important;border-radius: 1px !important;}.vc_custom_1691846563021{border-right-width: 1px !important;border-right-color: #000000 !important;border-right-style: solid !important;border-radius: 1px !important;}.vc_custom_1691846569845{border-right-width: 1px !important;border-right-color: #000000 !important;border-right-style: solid !important;border-radius: 1px !important;}.vc_custom_1691846576949{border-right-width: 1px !important;border-right-color: #000000 !important;border-right-style: solid !important;border-radius: 1px !important;}.vc_custom_1689578812611{margin-top: 50px !important;}.vc_custom_1689578812611{margin-top: 50px !important;}'),(15467,3166,'_wpb_shortcodes_custom_css','.vc_custom_1689577528817{padding-bottom: 50px !important;}.vc_custom_1689578783264{padding-top: 50px !important;padding-bottom: 50px !important;}.vc_custom_1689578794814{padding-top: 50px !important;padding-bottom: 50px !important;}.vc_custom_1689578794814{padding-top: 50px !important;padding-bottom: 50px !important;}.vc_custom_1689577454678{margin-bottom: 50px !important;}.vc_custom_1689577559805{border-bottom-width: 1px !important;padding-top: 35px !important;padding-bottom: 35px !important;border-bottom-color: #079547 !important;border-bottom-style: solid !important;border-radius: 1px !important;}.vc_custom_1689577609020{border-bottom-width: 1px !important;padding-top: 35px !important;padding-bottom: 35px !important;border-bottom-color: #079547 !important;border-bottom-style: solid !important;border-radius: 1px !important;}.vc_custom_1689577609020{border-bottom-width: 1px !important;padding-top: 35px !important;padding-bottom: 35px !important;border-bottom-color: #079547 !important;border-bottom-style: solid !important;border-radius: 1px !important;}.vc_custom_1689577609020{border-bottom-width: 1px !important;padding-top: 35px !important;padding-bottom: 35px !important;border-bottom-color: #079547 !important;border-bottom-style: solid !important;border-radius: 1px !important;}.vc_custom_1691846530645{border-right-width: 1px !important;border-left-width: 1px !important;border-left-color: #000000 !important;border-left-style: solid !important;border-right-color: #000000 !important;border-right-style: solid !important;border-radius: 1px !important;}.vc_custom_1691846545469{border-right-width: 1px !important;border-left-width: 1px !important;border-left-color: #000000 !important;border-left-style: solid !important;border-right-color: #000000 !important;border-right-style: solid !important;border-radius: 1px !important;}.vc_custom_1691846563021{border-right-width: 1px !important;border-right-color: #000000 !important;border-right-style: solid !important;border-radius: 1px !important;}.vc_custom_1691846569845{border-right-width: 1px !important;border-right-color: #000000 !important;border-right-style: solid !important;border-radius: 1px !important;}.vc_custom_1691846576949{border-right-width: 1px !important;border-right-color: #000000 !important;border-right-style: solid !important;border-radius: 1px !important;}.vc_custom_1689578812611{margin-top: 50px !important;}.vc_custom_1689578812611{margin-top: 50px !important;}'),(15468,3167,'_wpb_shortcodes_custom_css','.vc_custom_1689577528817{padding-bottom: 50px !important;}.vc_custom_1689578783264{padding-top: 50px !important;padding-bottom: 50px !important;}.vc_custom_1689578794814{padding-top: 50px !important;padding-bottom: 50px !important;}.vc_custom_1689578794814{padding-top: 50px !important;padding-bottom: 50px !important;}.vc_custom_1689577454678{margin-bottom: 50px !important;}.vc_custom_1689577559805{border-bottom-width: 1px !important;padding-top: 35px !important;padding-bottom: 35px !important;border-bottom-color: #079547 !important;border-bottom-style: solid !important;border-radius: 1px !important;}.vc_custom_1689577609020{border-bottom-width: 1px !important;padding-top: 35px !important;padding-bottom: 35px !important;border-bottom-color: #079547 !important;border-bottom-style: solid !important;border-radius: 1px !important;}.vc_custom_1689577609020{border-bottom-width: 1px !important;padding-top: 35px !important;padding-bottom: 35px !important;border-bottom-color: #079547 !important;border-bottom-style: solid !important;border-radius: 1px !important;}.vc_custom_1689577609020{border-bottom-width: 1px !important;padding-top: 35px !important;padding-bottom: 35px !important;border-bottom-color: #079547 !important;border-bottom-style: solid !important;border-radius: 1px !important;}.vc_custom_1691846530645{border-right-width: 1px !important;border-left-width: 1px !important;border-left-color: #000000 !important;border-left-style: solid !important;border-right-color: #000000 !important;border-right-style: solid !important;border-radius: 1px !important;}.vc_custom_1691846545469{border-right-width: 1px !important;border-left-width: 1px !important;border-left-color: #000000 !important;border-left-style: solid !important;border-right-color: #000000 !important;border-right-style: solid !important;border-radius: 1px !important;}.vc_custom_1691846563021{border-right-width: 1px !important;border-right-color: #000000 !important;border-right-style: solid !important;border-radius: 1px !important;}.vc_custom_1691846569845{border-right-width: 1px !important;border-right-color: #000000 !important;border-right-style: solid !important;border-radius: 1px !important;}.vc_custom_1691846576949{border-right-width: 1px !important;border-right-color: #000000 !important;border-right-style: solid !important;border-radius: 1px !important;}.vc_custom_1689578812611{margin-top: 50px !important;}.vc_custom_1689578812611{margin-top: 50px !important;}'),(15505,3170,'_wp_attached_file','2023/08/DSC_00481.png'),(15506,3170,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:500;s:6:\"height\";i:750;s:4:\"file\";s:21:\"2023/08/DSC_00481.png\";s:8:\"filesize\";i:534056;s:5:\"sizes\";a:6:{s:6:\"medium\";a:5:{s:4:\"file\";s:21:\"DSC_00481-200x300.png\";s:5:\"width\";i:200;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:78294;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:21:\"DSC_00481-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:31156;}s:21:\"woocommerce_thumbnail\";a:6:{s:4:\"file\";s:21:\"DSC_00481-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:122256;s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:5:{s:4:\"file\";s:21:\"DSC_00481-200x200.png\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:53938;}s:12:\"shop_catalog\";a:5:{s:4:\"file\";s:21:\"DSC_00481-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:122256;}s:14:\"shop_thumbnail\";a:5:{s:4:\"file\";s:21:\"DSC_00481-200x200.png\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:53938;}}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:{}}}'),(15507,3171,'_wp_attached_file','2023/08/DSC_00401.png'),(15508,3171,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:500;s:6:\"height\";i:750;s:4:\"file\";s:21:\"2023/08/DSC_00401.png\";s:8:\"filesize\";i:474871;s:5:\"sizes\";a:6:{s:6:\"medium\";a:5:{s:4:\"file\";s:21:\"DSC_00401-200x300.png\";s:5:\"width\";i:200;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:66898;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:21:\"DSC_00401-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:27301;}s:21:\"woocommerce_thumbnail\";a:6:{s:4:\"file\";s:21:\"DSC_00401-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:109016;s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:5:{s:4:\"file\";s:21:\"DSC_00401-200x200.png\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:47511;}s:12:\"shop_catalog\";a:5:{s:4:\"file\";s:21:\"DSC_00401-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:109016;}s:14:\"shop_thumbnail\";a:5:{s:4:\"file\";s:21:\"DSC_00401-200x200.png\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:47511;}}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:{}}}'),(15509,3172,'_wp_attached_file','2023/08/DSC_00431.png'),(15510,3172,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:500;s:6:\"height\";i:750;s:4:\"file\";s:21:\"2023/08/DSC_00431.png\";s:8:\"filesize\";i:406774;s:5:\"sizes\";a:6:{s:6:\"medium\";a:5:{s:4:\"file\";s:21:\"DSC_00431-200x300.png\";s:5:\"width\";i:200;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:61745;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:21:\"DSC_00431-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:25329;}s:21:\"woocommerce_thumbnail\";a:6:{s:4:\"file\";s:21:\"DSC_00431-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:97091;s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:5:{s:4:\"file\";s:21:\"DSC_00431-200x200.png\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:43657;}s:12:\"shop_catalog\";a:5:{s:4:\"file\";s:21:\"DSC_00431-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:97091;}s:14:\"shop_thumbnail\";a:5:{s:4:\"file\";s:21:\"DSC_00431-200x200.png\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:43657;}}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:{}}}'),(15511,3173,'_wp_attached_file','2023/08/DSC_00471.png'),(15512,3173,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:500;s:6:\"height\";i:750;s:4:\"file\";s:21:\"2023/08/DSC_00471.png\";s:8:\"filesize\";i:467414;s:5:\"sizes\";a:6:{s:6:\"medium\";a:5:{s:4:\"file\";s:21:\"DSC_00471-200x300.png\";s:5:\"width\";i:200;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:67815;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:21:\"DSC_00471-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:29083;}s:21:\"woocommerce_thumbnail\";a:6:{s:4:\"file\";s:21:\"DSC_00471-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:109363;s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:5:{s:4:\"file\";s:21:\"DSC_00471-200x200.png\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:48985;}s:12:\"shop_catalog\";a:5:{s:4:\"file\";s:21:\"DSC_00471-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:109363;}s:14:\"shop_thumbnail\";a:5:{s:4:\"file\";s:21:\"DSC_00471-200x200.png\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:48985;}}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:{}}}'),(15513,3174,'_wp_attached_file','2023/08/DSC_0047.png'),(15514,3174,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:500;s:6:\"height\";i:750;s:4:\"file\";s:20:\"2023/08/DSC_0047.png\";s:8:\"filesize\";i:118989;s:5:\"sizes\";a:6:{s:6:\"medium\";a:5:{s:4:\"file\";s:20:\"DSC_0047-200x300.png\";s:5:\"width\";i:200;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:58127;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:20:\"DSC_0047-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:29719;}s:21:\"woocommerce_thumbnail\";a:6:{s:4:\"file\";s:20:\"DSC_0047-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:113250;s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:5:{s:4:\"file\";s:20:\"DSC_0047-200x200.png\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:49873;}s:12:\"shop_catalog\";a:5:{s:4:\"file\";s:20:\"DSC_0047-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:113250;}s:14:\"shop_thumbnail\";a:5:{s:4:\"file\";s:20:\"DSC_0047-200x200.png\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:49873;}}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:{}}}'),(15515,3175,'_wp_attached_file','2023/08/DSC_0048.png'),(15516,3175,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:500;s:6:\"height\";i:750;s:4:\"file\";s:20:\"2023/08/DSC_0048.png\";s:8:\"filesize\";i:127455;s:5:\"sizes\";a:6:{s:6:\"medium\";a:5:{s:4:\"file\";s:20:\"DSC_0048-200x300.png\";s:5:\"width\";i:200;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:67353;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:20:\"DSC_0048-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:32026;}s:21:\"woocommerce_thumbnail\";a:6:{s:4:\"file\";s:20:\"DSC_0048-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:126495;s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:5:{s:4:\"file\";s:20:\"DSC_0048-200x200.png\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:55099;}s:12:\"shop_catalog\";a:5:{s:4:\"file\";s:20:\"DSC_0048-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:126495;}s:14:\"shop_thumbnail\";a:5:{s:4:\"file\";s:20:\"DSC_0048-200x200.png\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:55099;}}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:{}}}'),(15517,3176,'_wp_attached_file','2023/08/DSC_0040.png'),(15518,3176,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:500;s:6:\"height\";i:750;s:4:\"file\";s:20:\"2023/08/DSC_0040.png\";s:8:\"filesize\";i:104440;s:5:\"sizes\";a:6:{s:6:\"medium\";a:5:{s:4:\"file\";s:20:\"DSC_0040-200x300.png\";s:5:\"width\";i:200;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:57990;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:20:\"DSC_0040-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:28251;}s:21:\"woocommerce_thumbnail\";a:6:{s:4:\"file\";s:20:\"DSC_0040-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:113477;s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:5:{s:4:\"file\";s:20:\"DSC_0040-200x200.png\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:48720;}s:12:\"shop_catalog\";a:5:{s:4:\"file\";s:20:\"DSC_0040-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:113477;}s:14:\"shop_thumbnail\";a:5:{s:4:\"file\";s:20:\"DSC_0040-200x200.png\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:48720;}}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:{}}}'),(15519,3177,'_wp_attached_file','2023/08/DSC_0043.png'),(15520,3177,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:500;s:6:\"height\";i:750;s:4:\"file\";s:20:\"2023/08/DSC_0043.png\";s:8:\"filesize\";i:90700;s:5:\"sizes\";a:6:{s:6:\"medium\";a:5:{s:4:\"file\";s:20:\"DSC_0043-200x300.png\";s:5:\"width\";i:200;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:51557;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:20:\"DSC_0043-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:25541;}s:21:\"woocommerce_thumbnail\";a:6:{s:4:\"file\";s:20:\"DSC_0043-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:96644;s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:5:{s:4:\"file\";s:20:\"DSC_0043-200x200.png\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:43616;}s:12:\"shop_catalog\";a:5:{s:4:\"file\";s:20:\"DSC_0043-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:96644;}s:14:\"shop_thumbnail\";a:5:{s:4:\"file\";s:20:\"DSC_0043-200x200.png\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:43616;}}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:{}}}'),(15574,3199,'_wpb_shortcodes_custom_css','.vc_custom_1686720701314{margin-top: 35px !important;padding-top: 65px !important;padding-bottom: 100px !important;}.vc_custom_1684836308288{margin-top: 15px !important;}.vc_custom_1686713784619{margin-top: 35px !important;}.vc_custom_1686714025469{margin-top: 35px !important;}.vc_custom_1686713784619{margin-top: 35px !important;}.vc_custom_1686714115148{margin-top: 35px !important;}.vc_custom_1686713784619{margin-top: 35px !important;}.vc_custom_1686713784619{margin-top: 35px !important;}.vc_custom_1686713784619{margin-top: 35px !important;}.vc_custom_1691995519863{background-color: #f4ab20 !important;border: 1px solid #f4ab20 !important;border-radius: 35px !important;}.vc_custom_1691995661095{background-color: #722f8b !important;border: 1px solid #722f8b !important;border-radius: 35px !important;}.vc_custom_1691995661095{background-color: #722f8b !important;border: 1px solid #722f8b !important;border-radius: 35px !important;}.vc_custom_1691995519863{background-color: #f4ab20 !important;border: 1px solid #f4ab20 !important;border-radius: 35px !important;}.vc_custom_1691996718116{border-radius: 35px !important;}.vc_custom_1691995519863{background-color: #f4ab20 !important;border: 1px solid #f4ab20 !important;border-radius: 35px !important;}'),(15575,3200,'_wpb_shortcodes_custom_css','.vc_custom_1686720701314{margin-top: 35px !important;padding-top: 65px !important;padding-bottom: 100px !important;}.vc_custom_1684836308288{margin-top: 15px !important;}.vc_custom_1686713784619{margin-top: 35px !important;}.vc_custom_1686714025469{margin-top: 35px !important;}.vc_custom_1686713784619{margin-top: 35px !important;}.vc_custom_1686714115148{margin-top: 35px !important;}.vc_custom_1686713784619{margin-top: 35px !important;}.vc_custom_1686713784619{margin-top: 35px !important;}.vc_custom_1686713784619{margin-top: 35px !important;}.vc_custom_1691995519863{background-color: #f4ab20 !important;border: 1px solid #f4ab20 !important;border-radius: 35px !important;}.vc_custom_1691995661095{background-color: #722f8b !important;border: 1px solid #722f8b !important;border-radius: 35px !important;}.vc_custom_1691995661095{background-color: #722f8b !important;border: 1px solid #722f8b !important;border-radius: 35px !important;}.vc_custom_1691995519863{background-color: #f4ab20 !important;border: 1px solid #f4ab20 !important;border-radius: 35px !important;}.vc_custom_1691996718116{border-radius: 35px !important;}.vc_custom_1691995519863{background-color: #f4ab20 !important;border: 1px solid #f4ab20 !important;border-radius: 35px !important;}'),(15587,3211,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1440;s:6:\"height\";i:3881;s:4:\"file\";s:18:\"2023/08/1440px.png\";s:8:\"filesize\";i:607558;s:5:\"sizes\";a:12:{s:6:\"medium\";a:5:{s:4:\"file\";s:18:\"1440px-111x300.png\";s:5:\"width\";i:111;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:32863;}s:5:\"large\";a:5:{s:4:\"file\";s:19:\"1440px-380x1024.png\";s:5:\"width\";i:380;s:6:\"height\";i:1024;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:269770;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:18:\"1440px-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:23700;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:19:\"1440px-768x2070.png\";s:5:\"width\";i:768;s:6:\"height\";i:2070;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:881985;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:19:\"1440px-570x1536.png\";s:5:\"width\";i:570;s:6:\"height\";i:1536;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:535119;}s:9:\"2048x2048\";a:5:{s:4:\"file\";s:19:\"1440px-760x2048.png\";s:5:\"width\";i:760;s:6:\"height\";i:2048;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:867720;}s:21:\"woocommerce_thumbnail\";a:6:{s:4:\"file\";s:18:\"1440px-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:77791;s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:5:{s:4:\"file\";s:19:\"1440px-600x1617.png\";s:5:\"width\";i:600;s:6:\"height\";i:1617;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:581277;}s:29:\"woocommerce_gallery_thumbnail\";a:5:{s:4:\"file\";s:18:\"1440px-200x200.png\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:39237;}s:12:\"shop_catalog\";a:5:{s:4:\"file\";s:18:\"1440px-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:77791;}s:11:\"shop_single\";a:5:{s:4:\"file\";s:19:\"1440px-600x1617.png\";s:5:\"width\";i:600;s:6:\"height\";i:1617;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:581277;}s:14:\"shop_thumbnail\";a:5:{s:4:\"file\";s:18:\"1440px-200x200.png\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:39237;}}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:{}}}'),(15583,3208,'_wpb_shortcodes_custom_css','.vc_custom_1686720701314{margin-top: 35px !important;padding-top: 65px !important;padding-bottom: 100px !important;}.vc_custom_1684836308288{margin-top: 15px !important;}.vc_custom_1686713784619{margin-top: 35px !important;}.vc_custom_1686714025469{margin-top: 35px !important;}.vc_custom_1686713784619{margin-top: 35px !important;}.vc_custom_1686714115148{margin-top: 35px !important;}.vc_custom_1686713784619{margin-top: 35px !important;}.vc_custom_1686713784619{margin-top: 35px !important;}.vc_custom_1686713784619{margin-top: 35px !important;}.vc_custom_1691995519863{background-color: #f4ab20 !important;border: 1px solid #f4ab20 !important;border-radius: 35px !important;}.vc_custom_1691995661095{background-color: #722f8b !important;border: 1px solid #722f8b !important;border-radius: 35px !important;}.vc_custom_1691995661095{background-color: #722f8b !important;border: 1px solid #722f8b !important;border-radius: 35px !important;}.vc_custom_1691995519863{background-color: #f4ab20 !important;border: 1px solid #f4ab20 !important;border-radius: 35px !important;}.vc_custom_1691996718116{border-radius: 35px !important;}.vc_custom_1691995519863{background-color: #f4ab20 !important;border: 1px solid #f4ab20 !important;border-radius: 35px !important;}'),(15584,3209,'_wpb_shortcodes_custom_css','.vc_custom_1686720701314{margin-top: 35px !important;padding-top: 65px !important;padding-bottom: 100px !important;}.vc_custom_1684836308288{margin-top: 15px !important;}.vc_custom_1686713784619{margin-top: 35px !important;}.vc_custom_1686714025469{margin-top: 35px !important;}.vc_custom_1686713784619{margin-top: 35px !important;}.vc_custom_1686714115148{margin-top: 35px !important;}.vc_custom_1686713784619{margin-top: 35px !important;}.vc_custom_1686713784619{margin-top: 35px !important;}.vc_custom_1686713784619{margin-top: 35px !important;}.vc_custom_1691995519863{background-color: #f4ab20 !important;border: 1px solid #f4ab20 !important;border-radius: 35px !important;}.vc_custom_1691995661095{background-color: #722f8b !important;border: 1px solid #722f8b !important;border-radius: 35px !important;}.vc_custom_1691995661095{background-color: #722f8b !important;border: 1px solid #722f8b !important;border-radius: 35px !important;}.vc_custom_1691995519863{background-color: #f4ab20 !important;border: 1px solid #f4ab20 !important;border-radius: 35px !important;}.vc_custom_1691996718116{border-radius: 35px !important;}.vc_custom_1691995519863{background-color: #f4ab20 !important;border: 1px solid #f4ab20 !important;border-radius: 35px !important;}'),(15585,3210,'_wpb_shortcodes_custom_css','.vc_custom_1686720701314{margin-top: 35px !important;padding-top: 65px !important;padding-bottom: 100px !important;}.vc_custom_1684836308288{margin-top: 15px !important;}.vc_custom_1686713784619{margin-top: 35px !important;}.vc_custom_1686714025469{margin-top: 35px !important;}.vc_custom_1686713784619{margin-top: 35px !important;}.vc_custom_1686714115148{margin-top: 35px !important;}.vc_custom_1686713784619{margin-top: 35px !important;}.vc_custom_1686713784619{margin-top: 35px !important;}.vc_custom_1686713784619{margin-top: 35px !important;}.vc_custom_1691995519863{background-color: #f4ab20 !important;border: 1px solid #f4ab20 !important;border-radius: 35px !important;}.vc_custom_1691995661095{background-color: #722f8b !important;border: 1px solid #722f8b !important;border-radius: 35px !important;}.vc_custom_1691995661095{background-color: #722f8b !important;border: 1px solid #722f8b !important;border-radius: 35px !important;}.vc_custom_1691995519863{background-color: #f4ab20 !important;border: 1px solid #f4ab20 !important;border-radius: 35px !important;}.vc_custom_1691996718116{border-radius: 35px !important;}.vc_custom_1691995519863{background-color: #f4ab20 !important;border: 1px solid #f4ab20 !important;border-radius: 35px !important;}'),(15586,3211,'_wp_attached_file','2023/08/1440px.png'),(15588,3212,'_wpb_shortcodes_custom_css','.vc_custom_1686720701314{margin-top: 35px !important;padding-top: 65px !important;padding-bottom: 100px !important;}.vc_custom_1684836308288{margin-top: 15px !important;}.vc_custom_1686713784619{margin-top: 35px !important;}.vc_custom_1686714025469{margin-top: 35px !important;}.vc_custom_1686713784619{margin-top: 35px !important;}.vc_custom_1686714115148{margin-top: 35px !important;}.vc_custom_1686713784619{margin-top: 35px !important;}.vc_custom_1686713784619{margin-top: 35px !important;}.vc_custom_1686713784619{margin-top: 35px !important;}.vc_custom_1691995519863{background-color: #f4ab20 !important;border: 1px solid #f4ab20 !important;border-radius: 35px !important;}.vc_custom_1691995661095{background-color: #722f8b !important;border: 1px solid #722f8b !important;border-radius: 35px !important;}.vc_custom_1691995661095{background-color: #722f8b !important;border: 1px solid #722f8b !important;border-radius: 35px !important;}.vc_custom_1691995519863{background-color: #f4ab20 !important;border: 1px solid #f4ab20 !important;border-radius: 35px !important;}.vc_custom_1691996718116{border-radius: 35px !important;}.vc_custom_1691995519863{background-color: #f4ab20 !important;border: 1px solid #f4ab20 !important;border-radius: 35px !important;}'),(15590,3213,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1300;s:6:\"height\";i:300;s:4:\"file\";s:30:\"2023/08/Medivesta-Banner-1.png\";s:8:\"filesize\";i:212628;s:5:\"sizes\";a:10:{s:6:\"medium\";a:5:{s:4:\"file\";s:29:\"Medivesta-Banner-1-300x69.png\";s:5:\"width\";i:300;s:6:\"height\";i:69;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:38852;}s:5:\"large\";a:5:{s:4:\"file\";s:31:\"Medivesta-Banner-1-1024x236.png\";s:5:\"width\";i:1024;s:6:\"height\";i:236;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:413730;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:30:\"Medivesta-Banner-1-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:40397;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:30:\"Medivesta-Banner-1-768x177.png\";s:5:\"width\";i:768;s:6:\"height\";i:177;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:231286;}s:21:\"woocommerce_thumbnail\";a:6:{s:4:\"file\";s:30:\"Medivesta-Banner-1-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:56778;s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:5:{s:4:\"file\";s:30:\"Medivesta-Banner-1-600x138.png\";s:5:\"width\";i:600;s:6:\"height\";i:138;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:140902;}s:29:\"woocommerce_gallery_thumbnail\";a:5:{s:4:\"file\";s:30:\"Medivesta-Banner-1-200x200.png\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:69362;}s:12:\"shop_catalog\";a:5:{s:4:\"file\";s:30:\"Medivesta-Banner-1-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:56778;}s:11:\"shop_single\";a:5:{s:4:\"file\";s:30:\"Medivesta-Banner-1-600x138.png\";s:5:\"width\";i:600;s:6:\"height\";i:138;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:140902;}s:14:\"shop_thumbnail\";a:5:{s:4:\"file\";s:30:\"Medivesta-Banner-1-200x200.png\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:69362;}}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:{}}}'),(15884,3287,'_wp_attached_file','2023/08/Medivesta-Banner_1.png'),(15591,3214,'_wpb_shortcodes_custom_css','.vc_custom_1686720701314{margin-top: 35px !important;padding-top: 65px !important;padding-bottom: 100px !important;}.vc_custom_1684836308288{margin-top: 15px !important;}.vc_custom_1686713784619{margin-top: 35px !important;}.vc_custom_1686714025469{margin-top: 35px !important;}.vc_custom_1686713784619{margin-top: 35px !important;}.vc_custom_1686714115148{margin-top: 35px !important;}.vc_custom_1686713784619{margin-top: 35px !important;}.vc_custom_1686713784619{margin-top: 35px !important;}.vc_custom_1686713784619{margin-top: 35px !important;}.vc_custom_1691995519863{background-color: #f4ab20 !important;border: 1px solid #f4ab20 !important;border-radius: 35px !important;}.vc_custom_1691995661095{background-color: #722f8b !important;border: 1px solid #722f8b !important;border-radius: 35px !important;}.vc_custom_1691995661095{background-color: #722f8b !important;border: 1px solid #722f8b !important;border-radius: 35px !important;}.vc_custom_1691995519863{background-color: #f4ab20 !important;border: 1px solid #f4ab20 !important;border-radius: 35px !important;}.vc_custom_1691996718116{border-radius: 35px !important;}.vc_custom_1691995519863{background-color: #f4ab20 !important;border: 1px solid #f4ab20 !important;border-radius: 35px !important;}'),(15593,3216,'_wp_attached_file','2023/08/Technical-Service.png'),(15594,3216,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1300;s:6:\"height\";i:300;s:4:\"file\";s:29:\"2023/08/Technical-Service.png\";s:8:\"filesize\";i:182579;s:5:\"sizes\";a:10:{s:6:\"medium\";a:5:{s:4:\"file\";s:28:\"Technical-Service-300x69.png\";s:5:\"width\";i:300;s:6:\"height\";i:69;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:34582;}s:5:\"large\";a:5:{s:4:\"file\";s:30:\"Technical-Service-1024x236.png\";s:5:\"width\";i:1024;s:6:\"height\";i:236;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:382695;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:29:\"Technical-Service-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:34923;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:29:\"Technical-Service-768x177.png\";s:5:\"width\";i:768;s:6:\"height\";i:177;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:208878;}s:21:\"woocommerce_thumbnail\";a:6:{s:4:\"file\";s:29:\"Technical-Service-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:45911;s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:5:{s:4:\"file\";s:29:\"Technical-Service-600x138.png\";s:5:\"width\";i:600;s:6:\"height\";i:138;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:126059;}s:29:\"woocommerce_gallery_thumbnail\";a:5:{s:4:\"file\";s:29:\"Technical-Service-200x200.png\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:59205;}s:12:\"shop_catalog\";a:5:{s:4:\"file\";s:29:\"Technical-Service-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:45911;}s:11:\"shop_single\";a:5:{s:4:\"file\";s:29:\"Technical-Service-600x138.png\";s:5:\"width\";i:600;s:6:\"height\";i:138;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:126059;}s:14:\"shop_thumbnail\";a:5:{s:4:\"file\";s:29:\"Technical-Service-200x200.png\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:59205;}}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:{}}}'),(15894,3292,'_wp_attached_file','2023/08/Technical-Service_1.png'),(15595,3217,'_wp_attached_file','2023/08/FARMER-TRAINING.png'),(15596,3217,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1300;s:6:\"height\";i:300;s:4:\"file\";s:27:\"2023/08/FARMER-TRAINING.png\";s:8:\"filesize\";i:222727;s:5:\"sizes\";a:10:{s:6:\"medium\";a:5:{s:4:\"file\";s:26:\"FARMER-TRAINING-300x69.png\";s:5:\"width\";i:300;s:6:\"height\";i:69;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:40759;}s:5:\"large\";a:5:{s:4:\"file\";s:28:\"FARMER-TRAINING-1024x236.png\";s:5:\"width\";i:1024;s:6:\"height\";i:236;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:421064;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:27:\"FARMER-TRAINING-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:39882;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:27:\"FARMER-TRAINING-768x177.png\";s:5:\"width\";i:768;s:6:\"height\";i:177;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:237620;}s:21:\"woocommerce_thumbnail\";a:6:{s:4:\"file\";s:27:\"FARMER-TRAINING-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:59147;s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:5:{s:4:\"file\";s:27:\"FARMER-TRAINING-600x138.png\";s:5:\"width\";i:600;s:6:\"height\";i:138;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:147089;}s:29:\"woocommerce_gallery_thumbnail\";a:5:{s:4:\"file\";s:27:\"FARMER-TRAINING-200x200.png\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:67637;}s:12:\"shop_catalog\";a:5:{s:4:\"file\";s:27:\"FARMER-TRAINING-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:59147;}s:11:\"shop_single\";a:5:{s:4:\"file\";s:27:\"FARMER-TRAINING-600x138.png\";s:5:\"width\";i:600;s:6:\"height\";i:138;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:147089;}s:14:\"shop_thumbnail\";a:5:{s:4:\"file\";s:27:\"FARMER-TRAINING-200x200.png\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:67637;}}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:{}}}'),(15896,3293,'_wp_attached_file','2023/08/FARMER-TRAINING_1.png'),(15598,3219,'_edit_last','1'),(15599,3219,'_thumbnail_id','3172'),(15597,3218,'_wpb_shortcodes_custom_css','.vc_custom_1686720701314{margin-top: 35px !important;padding-top: 65px !important;padding-bottom: 100px !important;}.vc_custom_1684836308288{margin-top: 15px !important;}.vc_custom_1686713784619{margin-top: 35px !important;}.vc_custom_1686714025469{margin-top: 35px !important;}.vc_custom_1686713784619{margin-top: 35px !important;}.vc_custom_1686714115148{margin-top: 35px !important;}.vc_custom_1686713784619{margin-top: 35px !important;}.vc_custom_1686713784619{margin-top: 35px !important;}.vc_custom_1686713784619{margin-top: 35px !important;}.vc_custom_1691995519863{background-color: #f4ab20 !important;border: 1px solid #f4ab20 !important;border-radius: 35px !important;}.vc_custom_1691995661095{background-color: #722f8b !important;border: 1px solid #722f8b !important;border-radius: 35px !important;}.vc_custom_1691995661095{background-color: #722f8b !important;border: 1px solid #722f8b !important;border-radius: 35px !important;}.vc_custom_1691995519863{background-color: #f4ab20 !important;border: 1px solid #f4ab20 !important;border-radius: 35px !important;}.vc_custom_1691996718116{border-radius: 35px !important;}.vc_custom_1691995519863{background-color: #f4ab20 !important;border: 1px solid #f4ab20 !important;border-radius: 35px !important;}'),(15601,3219,'_dt_sidebar_widgetarea_id','sidebar_1'),(15602,3219,'_dt_sidebar_hide_on_mobile','0'),(15603,3219,'_dt_footer_show','1'),(15604,3219,'_dt_footer_widgetarea_id','sidebar_2'),(15605,3219,'_dt_footer_hide_on_mobile','0'),(15606,3219,'_dt_header_title','fancy'),(15607,3219,'_dt_header_background','normal'),(15608,3219,'_dt_header_background_below_slideshow','disabled'),(15609,3219,'_dt_header_transparent_bg_color_scheme','light'),(15610,3219,'_dt_header_transparent_top_bar_bg_color','#ffffff'),(15611,3219,'_dt_header_transparent_top_bar_bg_opacity','25'),(15612,3219,'_dt_header_transparent_bg_color','#000000'),(15613,3219,'_dt_header_transparent_bg_opacity','50'),(15614,3219,'_dt_header_disabled_background','normal'),(15615,3219,'_dt_header_disabled_transparent_bg_color_scheme','light'),(15616,3219,'_dt_header_disabled_transparent_top_bar_bg_color','#ffffff'),(15617,3219,'_dt_header_disabled_transparent_top_bar_bg_opacity','25'),(15618,3219,'_dt_header_disabled_transparent_bg_color','#000000'),(15619,3219,'_dt_header_disabled_transparent_bg_opacity','50'),(15620,3219,'_dt_page_overrides_top_margin',''),(15621,3219,'_dt_page_overrides_right_margin',''),(15622,3219,'_dt_page_overrides_bottom_margin',''),(15623,3219,'_dt_page_overrides_left_margin',''),(15624,3219,'_dt_mobile_page_padding_top',''),(15625,3219,'_dt_mobile_page_padding_right',''),(15626,3219,'_dt_mobile_page_padding_bottom',''),(15627,3219,'_dt_mobile_page_padding_left',''),(15628,3219,'_dt_fancy_header_layout_heading',''),(15629,3219,'_dt_fancy_header_title_aligment','all_left'),(15630,3219,'_dt_fancy_header_height','300'),(15631,3219,'_dt_fancy_header_padding-top','0px'),(15632,3219,'_dt_fancy_header_padding-bottom','0px'),(15633,3219,'_dt_fancy_header_breadcrumbs_heading',''),(15634,3219,'_dt_fancy_header_breadcrumbs','enabled'),(15635,3219,'_dt_fancy_header_breadcrumbs_text_color','#ffffff'),(15636,3219,'_dt_fancy_header_breadcrumbs_bg_color','disabled'),(15637,3219,'_dt_fancy_header_title_heading',''),(15638,3219,'_dt_fancy_header_title_mode','generic'),(15639,3219,'_dt_fancy_header_title',''),(15640,3219,'_dt_fancy_header_title_font_size','30'),(15641,3219,'_dt_fancy_header_title_line_height','36'),(15642,3219,'_dt_fancy_header_text_transform','none'),(15643,3219,'_dt_fancy_header_title_color_mode','color'),(15644,3219,'_dt_fancy_header_title_color','#ffffff'),(15645,3219,'_dt_fancy_header_subtitle_heading',''),(15646,3219,'_dt_fancy_header_subtitle','Quisque sed nibh tristique'),(15647,3219,'_dt_fancy_header_subtitle_font_size','18'),(15648,3219,'_dt_fancy_header_subtitle_line_height','26'),(15649,3219,'_dt_fancy_header_subtitle_text_transform','none'),(15650,3219,'_dt_fancy_header_subtitle_color_mode','color'),(15651,3219,'_dt_fancy_header_subtitle_color','#ffffff'),(15652,3219,'_dt_fancy_header_bg_heading',''),(15653,3219,'_dt_fancy_header_bg_color','#222222'),(15654,3219,'_dt_fancy_header_bg_image_origin','custom'),(15655,3219,'_dt_fancy_header_bg_image','a:0:{}'),(15656,3219,'_dt_fancy_header_bg_repeat','no-repeat'),(15657,3219,'_dt_fancy_header_bg_position_x','center'),(15658,3219,'_dt_fancy_header_bg_position_y','center'),(15659,3219,'_dt_fancy_header_bg_fullscreen','1'),(15660,3219,'_dt_fancy_header_bg_overlay','0'),(15661,3219,'_dt_fancy_header_overlay_color','#000'),(15662,3219,'_dt_fancy_header_bg_overlay_opacity','50'),(15663,3219,'_dt_fancy_header_scroll_effect','default'),(15664,3219,'_dt_fancy_header_bg_parallax','0.5'),(15665,3219,'_dt_fancy_header_responsiveness_heading',''),(15666,3219,'_dt_fancy_header_responsiveness','enabled'),(15667,3219,'_dt_fancy_header_responsiveness_switch','778px'),(15668,3219,'_dt_fancy_header_responsive_height','70'),(15669,3219,'_dt_fancy_header_responsive_font_size','30'),(15670,3219,'_dt_fancy_header_responsive_title_line_height','38'),(15671,3219,'_dt_fancy_header_responsive_subtitle_font_size','20'),(15672,3219,'_dt_fancy_header_responsive_subtitle_line_height','28'),(15673,3219,'_dt_fancy_header_responsive_breadcrumbs','disabled'),(15674,3219,'_dt_teammate_options_go_to_single','1'),(15675,3219,'_dt_teammate_options_position',''),(15676,3219,'_dt_teammate_options_website',''),(15677,3219,'_dt_teammate_options_mail',''),(15678,3219,'_dt_teammate_options_facebook',''),(15679,3219,'_dt_teammate_options_twitter',''),(15680,3219,'_dt_teammate_options_dribbble',''),(15681,3219,'_dt_teammate_options_you-tube',''),(15682,3219,'_dt_teammate_options_rss',''),(15683,3219,'_dt_teammate_options_delicious',''),(15684,3219,'_dt_teammate_options_flickr',''),(15685,3219,'_dt_teammate_options_lastfm',''),(15686,3219,'_dt_teammate_options_linkedin',''),(15687,3219,'_dt_teammate_options_vimeo',''),(15688,3219,'_dt_teammate_options_tumbler',''),(15689,3219,'_dt_teammate_options_pinterest',''),(15690,3219,'_dt_teammate_options_devian',''),(15691,3219,'_dt_teammate_options_skype',''),(15692,3219,'_dt_teammate_options_github',''),(15693,3219,'_dt_teammate_options_instagram',''),(15694,3219,'_dt_teammate_options_stumbleupon',''),(15695,3219,'_dt_teammate_options_behance',''),(15696,3219,'_dt_teammate_options_px-500',''),(15697,3219,'_dt_teammate_options_tripedvisor',''),(15698,3219,'_dt_teammate_options_vk',''),(15699,3219,'_dt_teammate_options_foursquare',''),(15700,3219,'_dt_teammate_options_xing',''),(15701,3219,'_dt_teammate_options_weibo',''),(15702,3219,'_dt_teammate_options_odnoklassniki',''),(15703,3219,'_dt_teammate_options_research-gate',''),(15704,3219,'_dt_teammate_options_yelp',''),(15705,3219,'_dt_teammate_options_blogger',''),(15706,3219,'_dt_teammate_options_soundcloud',''),(15707,3219,'_dt_teammate_options_viber',''),(15708,3219,'_dt_teammate_options_whatsapp',''),(15709,3219,'_dt_teammate_options_reddit',''),(15710,3219,'_dt_teammate_options_snapchat',''),(15711,3219,'_dt_teammate_options_telegram',''),(15712,3219,'the7_fancy_title_css','.fancy-header {\n  background-image: none;\n  background-repeat: no-repeat;\n  background-position: center center;\n  background-size: cover;\n  background-color: #222222;\n}\n.mobile-false .fancy-header {\n  background-attachment: scroll;\n}\n.fancy-header .wf-wrap {\n  min-height: 300px;\n  padding-top: 0px;\n  padding-bottom: 0px;\n}\n.fancy-header .fancy-title {\n  font-size: 30px;\n  line-height: 36px;\n  color: #ffffff;\n  text-transform: none;\n}\n.fancy-header .fancy-subtitle {\n  font-size: 18px;\n  line-height: 26px;\n  color: #ffffff;\n  text-transform: none;\n}\n.fancy-header .breadcrumbs {\n  color: #ffffff;\n}\n.fancy-header-overlay {\n  background: rgba(0,0,0,0.5);\n}\n@media screen and (max-width: 778px) {\n  .fancy-header .wf-wrap {\n    min-height: 70px;\n  }\n  .fancy-header .fancy-title {\n    font-size: 30px;\n    line-height: 38px;\n  }\n  .fancy-header .fancy-subtitle {\n    font-size: 20px;\n    line-height: 28px;\n  }\n  .fancy-header.breadcrumbs-mobile-off .breadcrumbs {\n    display: none;\n  }\n  #fancy-header > .wf-wrap {\n    flex-flow: column wrap;\n    align-items: center;\n    justify-content: center;\n    padding-bottom: 0px !important;\n  }\n  .fancy-header.title-left .breadcrumbs {\n    text-align: center;\n    float: none;\n  }\n  .breadcrumbs {\n    margin-bottom: 10px;\n  }\n  .breadcrumbs.breadcrumbs-bg {\n    margin-top: 10px;\n  }\n  .fancy-header.title-right .breadcrumbs {\n    margin: 10px 0 10px 0;\n  }\n  #fancy-header .hgroup,\n  #fancy-header .breadcrumbs {\n    text-align: center;\n  }\n  .fancy-header .hgroup {\n    padding-bottom: 5px;\n  }\n  .breadcrumbs-off .hgroup {\n    padding-bottom: 5px;\n  }\n  .title-right .hgroup {\n    padding: 0 0 5px 0;\n  }\n  .title-right.breadcrumbs-off .hgroup {\n    padding-top: 5px;\n  }\n  .title-left.disabled-bg .breadcrumbs {\n    margin-bottom: 0;\n  }\n}\n'),(15713,3219,'_edit_lock','1692194774:1'),(15714,3220,'_wpb_shortcodes_custom_css','.vc_custom_1686720701314{margin-top: 35px !important;padding-top: 65px !important;padding-bottom: 100px !important;}.vc_custom_1684836308288{margin-top: 15px !important;}.vc_custom_1686713784619{margin-top: 35px !important;}.vc_custom_1686714025469{margin-top: 35px !important;}.vc_custom_1686713784619{margin-top: 35px !important;}.vc_custom_1686714115148{margin-top: 35px !important;}.vc_custom_1686713784619{margin-top: 35px !important;}.vc_custom_1686713784619{margin-top: 35px !important;}.vc_custom_1686713784619{margin-top: 35px !important;}.vc_custom_1691995519863{background-color: #f4ab20 !important;border: 1px solid #f4ab20 !important;border-radius: 35px !important;}.vc_custom_1691995661095{background-color: #722f8b !important;border: 1px solid #722f8b !important;border-radius: 35px !important;}.vc_custom_1691995661095{background-color: #722f8b !important;border: 1px solid #722f8b !important;border-radius: 35px !important;}.vc_custom_1691995519863{background-color: #f4ab20 !important;border: 1px solid #f4ab20 !important;border-radius: 35px !important;}.vc_custom_1691996718116{border-radius: 35px !important;}.vc_custom_1691995519863{background-color: #f4ab20 !important;border: 1px solid #f4ab20 !important;border-radius: 35px !important;}'),(15717,3223,'_wp_attached_file','2023/08/VISION-MISION.png'),(15718,3223,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1300;s:6:\"height\";i:300;s:4:\"file\";s:25:\"2023/08/VISION-MISION.png\";s:8:\"filesize\";i:163970;s:5:\"sizes\";a:10:{s:6:\"medium\";a:5:{s:4:\"file\";s:24:\"VISION-MISION-300x69.png\";s:5:\"width\";i:300;s:6:\"height\";i:69;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:34565;}s:5:\"large\";a:5:{s:4:\"file\";s:26:\"VISION-MISION-1024x236.png\";s:5:\"width\";i:1024;s:6:\"height\";i:236;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:369575;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:25:\"VISION-MISION-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:23303;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:25:\"VISION-MISION-768x177.png\";s:5:\"width\";i:768;s:6:\"height\";i:177;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:201104;}s:21:\"woocommerce_thumbnail\";a:6:{s:4:\"file\";s:25:\"VISION-MISION-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:29678;s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:5:{s:4:\"file\";s:25:\"VISION-MISION-600x138.png\";s:5:\"width\";i:600;s:6:\"height\";i:138;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:122326;}s:29:\"woocommerce_gallery_thumbnail\";a:5:{s:4:\"file\";s:25:\"VISION-MISION-200x200.png\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:40455;}s:12:\"shop_catalog\";a:5:{s:4:\"file\";s:25:\"VISION-MISION-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:29678;}s:11:\"shop_single\";a:5:{s:4:\"file\";s:25:\"VISION-MISION-600x138.png\";s:5:\"width\";i:600;s:6:\"height\";i:138;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:122326;}s:14:\"shop_thumbnail\";a:5:{s:4:\"file\";s:25:\"VISION-MISION-200x200.png\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:40455;}}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:{}}}'),(15721,3226,'_wp_attached_file','2023/08/Untitled-design-9.jpg'),(15719,3224,'_wpb_shortcodes_custom_css','.vc_custom_1692196231804{margin-top: 35px !important;padding-top: 65px !important;padding-bottom: 100px !important;}.vc_custom_1684836308288{margin-top: 15px !important;}.vc_custom_1686713784619{margin-top: 35px !important;}.vc_custom_1686714025469{margin-top: 35px !important;}.vc_custom_1686713784619{margin-top: 35px !important;}.vc_custom_1686714115148{margin-top: 35px !important;}.vc_custom_1686713784619{margin-top: 35px !important;}.vc_custom_1686713784619{margin-top: 35px !important;}.vc_custom_1686713784619{margin-top: 35px !important;}.vc_custom_1691995519863{background-color: #f4ab20 !important;border: 1px solid #f4ab20 !important;border-radius: 35px !important;}.vc_custom_1691995661095{background-color: #722f8b !important;border: 1px solid #722f8b !important;border-radius: 35px !important;}.vc_custom_1691995661095{background-color: #722f8b !important;border: 1px solid #722f8b !important;border-radius: 35px !important;}.vc_custom_1691995519863{background-color: #f4ab20 !important;border: 1px solid #f4ab20 !important;border-radius: 35px !important;}.vc_custom_1691996718116{border-radius: 35px !important;}.vc_custom_1691995519863{background-color: #f4ab20 !important;border: 1px solid #f4ab20 !important;border-radius: 35px !important;}'),(15720,3225,'_wpb_shortcodes_custom_css','.vc_custom_1692196231804{margin-top: 35px !important;padding-top: 65px !important;padding-bottom: 100px !important;}.vc_custom_1684836308288{margin-top: 15px !important;}.vc_custom_1686713784619{margin-top: 35px !important;}.vc_custom_1686714025469{margin-top: 35px !important;}.vc_custom_1686713784619{margin-top: 35px !important;}.vc_custom_1686714115148{margin-top: 35px !important;}.vc_custom_1686713784619{margin-top: 35px !important;}.vc_custom_1686713784619{margin-top: 35px !important;}.vc_custom_1686713784619{margin-top: 35px !important;}.vc_custom_1691995519863{background-color: #f4ab20 !important;border: 1px solid #f4ab20 !important;border-radius: 35px !important;}.vc_custom_1691995661095{background-color: #722f8b !important;border: 1px solid #722f8b !important;border-radius: 35px !important;}.vc_custom_1691995661095{background-color: #722f8b !important;border: 1px solid #722f8b !important;border-radius: 35px !important;}.vc_custom_1691995519863{background-color: #f4ab20 !important;border: 1px solid #f4ab20 !important;border-radius: 35px !important;}.vc_custom_1691996718116{border-radius: 35px !important;}.vc_custom_1691995519863{background-color: #f4ab20 !important;border: 1px solid #f4ab20 !important;border-radius: 35px !important;}'),(15722,3226,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1300;s:6:\"height\";i:900;s:4:\"file\";s:29:\"2023/08/Untitled-design-9.jpg\";s:8:\"filesize\";i:108205;s:5:\"sizes\";a:10:{s:6:\"medium\";a:5:{s:4:\"file\";s:29:\"Untitled-design-9-300x208.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:208;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:13236;}s:5:\"large\";a:5:{s:4:\"file\";s:30:\"Untitled-design-9-1024x709.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:709;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:75759;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:29:\"Untitled-design-9-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:7007;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:29:\"Untitled-design-9-768x532.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:532;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:49652;}s:21:\"woocommerce_thumbnail\";a:6:{s:4:\"file\";s:29:\"Untitled-design-9-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:17252;s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:5:{s:4:\"file\";s:29:\"Untitled-design-9-600x415.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:415;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:34818;}s:29:\"woocommerce_gallery_thumbnail\";a:5:{s:4:\"file\";s:29:\"Untitled-design-9-200x200.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:9946;}s:12:\"shop_catalog\";a:5:{s:4:\"file\";s:29:\"Untitled-design-9-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:17252;}s:11:\"shop_single\";a:5:{s:4:\"file\";s:29:\"Untitled-design-9-600x415.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:415;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:34818;}s:14:\"shop_thumbnail\";a:5:{s:4:\"file\";s:29:\"Untitled-design-9-200x200.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:9946;}}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:\"1\";s:8:\"keywords\";a:0:{}}}'),(15716,3221,'_wpb_shortcodes_custom_css','.vc_custom_1686720701314{margin-top: 35px !important;padding-top: 65px !important;padding-bottom: 100px !important;}.vc_custom_1684836308288{margin-top: 15px !important;}.vc_custom_1686713784619{margin-top: 35px !important;}.vc_custom_1686714025469{margin-top: 35px !important;}.vc_custom_1686713784619{margin-top: 35px !important;}.vc_custom_1686714115148{margin-top: 35px !important;}.vc_custom_1686713784619{margin-top: 35px !important;}.vc_custom_1686713784619{margin-top: 35px !important;}.vc_custom_1686713784619{margin-top: 35px !important;}.vc_custom_1691995519863{background-color: #f4ab20 !important;border: 1px solid #f4ab20 !important;border-radius: 35px !important;}.vc_custom_1691995661095{background-color: #722f8b !important;border: 1px solid #722f8b !important;border-radius: 35px !important;}.vc_custom_1691995661095{background-color: #722f8b !important;border: 1px solid #722f8b !important;border-radius: 35px !important;}.vc_custom_1691995519863{background-color: #f4ab20 !important;border: 1px solid #f4ab20 !important;border-radius: 35px !important;}.vc_custom_1691996718116{border-radius: 35px !important;}.vc_custom_1691995519863{background-color: #f4ab20 !important;border: 1px solid #f4ab20 !important;border-radius: 35px !important;}'),(15725,3229,'_wpb_shortcodes_custom_css','.vc_custom_1689577528817{padding-bottom: 50px !important;}.vc_custom_1692197574696{padding-top: 50px !important;padding-bottom: 50px !important;}.vc_custom_1689578794814{padding-top: 50px !important;padding-bottom: 50px !important;}.vc_custom_1689578794814{padding-top: 50px !important;padding-bottom: 50px !important;}.vc_custom_1689577454678{margin-bottom: 50px !important;}.vc_custom_1689577559805{border-bottom-width: 1px !important;padding-top: 35px !important;padding-bottom: 35px !important;border-bottom-color: #079547 !important;border-bottom-style: solid !important;border-radius: 1px !important;}.vc_custom_1689577609020{border-bottom-width: 1px !important;padding-top: 35px !important;padding-bottom: 35px !important;border-bottom-color: #079547 !important;border-bottom-style: solid !important;border-radius: 1px !important;}.vc_custom_1689577609020{border-bottom-width: 1px !important;padding-top: 35px !important;padding-bottom: 35px !important;border-bottom-color: #079547 !important;border-bottom-style: solid !important;border-radius: 1px !important;}.vc_custom_1689577609020{border-bottom-width: 1px !important;padding-top: 35px !important;padding-bottom: 35px !important;border-bottom-color: #079547 !important;border-bottom-style: solid !important;border-radius: 1px !important;}.vc_custom_1691846530645{border-right-width: 1px !important;border-left-width: 1px !important;border-left-color: #000000 !important;border-left-style: solid !important;border-right-color: #000000 !important;border-right-style: solid !important;border-radius: 1px !important;}.vc_custom_1691846545469{border-right-width: 1px !important;border-left-width: 1px !important;border-left-color: #000000 !important;border-left-style: solid !important;border-right-color: #000000 !important;border-right-style: solid !important;border-radius: 1px !important;}.vc_custom_1691846563021{border-right-width: 1px !important;border-right-color: #000000 !important;border-right-style: solid !important;border-radius: 1px !important;}.vc_custom_1691846569845{border-right-width: 1px !important;border-right-color: #000000 !important;border-right-style: solid !important;border-radius: 1px !important;}.vc_custom_1691846576949{border-right-width: 1px !important;border-right-color: #000000 !important;border-right-style: solid !important;border-radius: 1px !important;}.vc_custom_1689578812611{margin-top: 50px !important;}.vc_custom_1689578812611{margin-top: 50px !important;}'),(15723,3227,'_wpb_shortcodes_custom_css','.vc_custom_1692196960130{margin-top: 35px !important;padding-top: 65px !important;padding-bottom: 100px !important;}.vc_custom_1684836308288{margin-top: 15px !important;}.vc_custom_1686713784619{margin-top: 35px !important;}.vc_custom_1686714025469{margin-top: 35px !important;}.vc_custom_1686713784619{margin-top: 35px !important;}.vc_custom_1686714115148{margin-top: 35px !important;}.vc_custom_1686713784619{margin-top: 35px !important;}.vc_custom_1686713784619{margin-top: 35px !important;}.vc_custom_1686713784619{margin-top: 35px !important;}.vc_custom_1691995519863{background-color: #f4ab20 !important;border: 1px solid #f4ab20 !important;border-radius: 35px !important;}.vc_custom_1691995661095{background-color: #722f8b !important;border: 1px solid #722f8b !important;border-radius: 35px !important;}.vc_custom_1691995661095{background-color: #722f8b !important;border: 1px solid #722f8b !important;border-radius: 35px !important;}.vc_custom_1691995519863{background-color: #f4ab20 !important;border: 1px solid #f4ab20 !important;border-radius: 35px !important;}.vc_custom_1691996718116{border-radius: 35px !important;}.vc_custom_1691995519863{background-color: #f4ab20 !important;border: 1px solid #f4ab20 !important;border-radius: 35px !important;}'),(15724,3228,'_wpb_shortcodes_custom_css','.vc_custom_1692197039769{margin-top: 35px !important;padding-top: 65px !important;padding-bottom: 100px !important;}.vc_custom_1684836308288{margin-top: 15px !important;}.vc_custom_1686713784619{margin-top: 35px !important;}.vc_custom_1686714025469{margin-top: 35px !important;}.vc_custom_1686713784619{margin-top: 35px !important;}.vc_custom_1686714115148{margin-top: 35px !important;}.vc_custom_1686713784619{margin-top: 35px !important;}.vc_custom_1686713784619{margin-top: 35px !important;}.vc_custom_1686713784619{margin-top: 35px !important;}.vc_custom_1691995519863{background-color: #f4ab20 !important;border: 1px solid #f4ab20 !important;border-radius: 35px !important;}.vc_custom_1691995661095{background-color: #722f8b !important;border: 1px solid #722f8b !important;border-radius: 35px !important;}.vc_custom_1691995661095{background-color: #722f8b !important;border: 1px solid #722f8b !important;border-radius: 35px !important;}.vc_custom_1691995519863{background-color: #f4ab20 !important;border: 1px solid #f4ab20 !important;border-radius: 35px !important;}.vc_custom_1691996718116{border-radius: 35px !important;}.vc_custom_1691995519863{background-color: #f4ab20 !important;border: 1px solid #f4ab20 !important;border-radius: 35px !important;}'),(15726,3230,'_wpb_shortcodes_custom_css','.vc_custom_1689577528817{padding-bottom: 50px !important;}.vc_custom_1692197848987{padding-top: 50px !important;padding-bottom: 50px !important;}.vc_custom_1689578794814{padding-top: 50px !important;padding-bottom: 50px !important;}.vc_custom_1689578794814{padding-top: 50px !important;padding-bottom: 50px !important;}.vc_custom_1689577454678{margin-bottom: 50px !important;}.vc_custom_1689577559805{border-bottom-width: 1px !important;padding-top: 35px !important;padding-bottom: 35px !important;border-bottom-color: #079547 !important;border-bottom-style: solid !important;border-radius: 1px !important;}.vc_custom_1689577609020{border-bottom-width: 1px !important;padding-top: 35px !important;padding-bottom: 35px !important;border-bottom-color: #079547 !important;border-bottom-style: solid !important;border-radius: 1px !important;}.vc_custom_1689577609020{border-bottom-width: 1px !important;padding-top: 35px !important;padding-bottom: 35px !important;border-bottom-color: #079547 !important;border-bottom-style: solid !important;border-radius: 1px !important;}.vc_custom_1689577609020{border-bottom-width: 1px !important;padding-top: 35px !important;padding-bottom: 35px !important;border-bottom-color: #079547 !important;border-bottom-style: solid !important;border-radius: 1px !important;}.vc_custom_1691846530645{border-right-width: 1px !important;border-left-width: 1px !important;border-left-color: #000000 !important;border-left-style: solid !important;border-right-color: #000000 !important;border-right-style: solid !important;border-radius: 1px !important;}.vc_custom_1691846545469{border-right-width: 1px !important;border-left-width: 1px !important;border-left-color: #000000 !important;border-left-style: solid !important;border-right-color: #000000 !important;border-right-style: solid !important;border-radius: 1px !important;}.vc_custom_1691846563021{border-right-width: 1px !important;border-right-color: #000000 !important;border-right-style: solid !important;border-radius: 1px !important;}.vc_custom_1691846569845{border-right-width: 1px !important;border-right-color: #000000 !important;border-right-style: solid !important;border-radius: 1px !important;}.vc_custom_1691846576949{border-right-width: 1px !important;border-right-color: #000000 !important;border-right-style: solid !important;border-radius: 1px !important;}.vc_custom_1689578812611{margin-top: 50px !important;}.vc_custom_1689578812611{margin-top: 50px !important;}'),(15727,3231,'_wpb_shortcodes_custom_css','.vc_custom_1689577528817{padding-bottom: 50px !important;}.vc_custom_1692197848987{padding-top: 50px !important;padding-bottom: 50px !important;}.vc_custom_1689578794814{padding-top: 50px !important;padding-bottom: 50px !important;}.vc_custom_1689578794814{padding-top: 50px !important;padding-bottom: 50px !important;}.vc_custom_1689577454678{margin-bottom: 50px !important;}.vc_custom_1689577559805{border-bottom-width: 1px !important;padding-top: 35px !important;padding-bottom: 35px !important;border-bottom-color: #079547 !important;border-bottom-style: solid !important;border-radius: 1px !important;}.vc_custom_1689577609020{border-bottom-width: 1px !important;padding-top: 35px !important;padding-bottom: 35px !important;border-bottom-color: #079547 !important;border-bottom-style: solid !important;border-radius: 1px !important;}.vc_custom_1689577609020{border-bottom-width: 1px !important;padding-top: 35px !important;padding-bottom: 35px !important;border-bottom-color: #079547 !important;border-bottom-style: solid !important;border-radius: 1px !important;}.vc_custom_1689577609020{border-bottom-width: 1px !important;padding-top: 35px !important;padding-bottom: 35px !important;border-bottom-color: #079547 !important;border-bottom-style: solid !important;border-radius: 1px !important;}.vc_custom_1691846530645{border-right-width: 1px !important;border-left-width: 1px !important;border-left-color: #000000 !important;border-left-style: solid !important;border-right-color: #000000 !important;border-right-style: solid !important;border-radius: 1px !important;}.vc_custom_1691846545469{border-right-width: 1px !important;border-left-width: 1px !important;border-left-color: #000000 !important;border-left-style: solid !important;border-right-color: #000000 !important;border-right-style: solid !important;border-radius: 1px !important;}.vc_custom_1691846563021{border-right-width: 1px !important;border-right-color: #000000 !important;border-right-style: solid !important;border-radius: 1px !important;}.vc_custom_1691846569845{border-right-width: 1px !important;border-right-color: #000000 !important;border-right-style: solid !important;border-radius: 1px !important;}.vc_custom_1691846576949{border-right-width: 1px !important;border-right-color: #000000 !important;border-right-style: solid !important;border-radius: 1px !important;}.vc_custom_1689578812611{margin-top: 50px !important;}.vc_custom_1689578812611{margin-top: 50px !important;}'),(15728,3232,'_wp_attached_file','2023/08/123.png'),(15729,3232,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1300;s:6:\"height\";i:600;s:4:\"file\";s:15:\"2023/08/123.png\";s:8:\"filesize\";i:343718;s:5:\"sizes\";a:10:{s:6:\"medium\";a:5:{s:4:\"file\";s:15:\"123-300x138.png\";s:5:\"width\";i:300;s:6:\"height\";i:138;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:59121;}s:5:\"large\";a:5:{s:4:\"file\";s:16:\"123-1024x473.png\";s:5:\"width\";i:1024;s:6:\"height\";i:473;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:683667;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:15:\"123-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:30953;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:15:\"123-768x354.png\";s:5:\"width\";i:768;s:6:\"height\";i:354;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:371221;}s:21:\"woocommerce_thumbnail\";a:6:{s:4:\"file\";s:15:\"123-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:110699;s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:5:{s:4:\"file\";s:15:\"123-600x277.png\";s:5:\"width\";i:600;s:6:\"height\";i:277;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:222972;}s:29:\"woocommerce_gallery_thumbnail\";a:5:{s:4:\"file\";s:15:\"123-200x200.png\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:50882;}s:12:\"shop_catalog\";a:5:{s:4:\"file\";s:15:\"123-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:110699;}s:11:\"shop_single\";a:5:{s:4:\"file\";s:15:\"123-600x277.png\";s:5:\"width\";i:600;s:6:\"height\";i:277;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:222972;}s:14:\"shop_thumbnail\";a:5:{s:4:\"file\";s:15:\"123-200x200.png\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:50882;}}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:{}}}'),(15730,3233,'_wpb_shortcodes_custom_css','.vc_custom_1689577528817{padding-bottom: 50px !important;}.vc_custom_1692198325204{padding-top: 50px !important;padding-bottom: 50px !important;}.vc_custom_1689578794814{padding-top: 50px !important;padding-bottom: 50px !important;}.vc_custom_1689578794814{padding-top: 50px !important;padding-bottom: 50px !important;}.vc_custom_1689577454678{margin-bottom: 50px !important;}.vc_custom_1689577559805{border-bottom-width: 1px !important;padding-top: 35px !important;padding-bottom: 35px !important;border-bottom-color: #079547 !important;border-bottom-style: solid !important;border-radius: 1px !important;}.vc_custom_1689577609020{border-bottom-width: 1px !important;padding-top: 35px !important;padding-bottom: 35px !important;border-bottom-color: #079547 !important;border-bottom-style: solid !important;border-radius: 1px !important;}.vc_custom_1689577609020{border-bottom-width: 1px !important;padding-top: 35px !important;padding-bottom: 35px !important;border-bottom-color: #079547 !important;border-bottom-style: solid !important;border-radius: 1px !important;}.vc_custom_1689577609020{border-bottom-width: 1px !important;padding-top: 35px !important;padding-bottom: 35px !important;border-bottom-color: #079547 !important;border-bottom-style: solid !important;border-radius: 1px !important;}.vc_custom_1691846530645{border-right-width: 1px !important;border-left-width: 1px !important;border-left-color: #000000 !important;border-left-style: solid !important;border-right-color: #000000 !important;border-right-style: solid !important;border-radius: 1px !important;}.vc_custom_1691846545469{border-right-width: 1px !important;border-left-width: 1px !important;border-left-color: #000000 !important;border-left-style: solid !important;border-right-color: #000000 !important;border-right-style: solid !important;border-radius: 1px !important;}.vc_custom_1691846563021{border-right-width: 1px !important;border-right-color: #000000 !important;border-right-style: solid !important;border-radius: 1px !important;}.vc_custom_1691846569845{border-right-width: 1px !important;border-right-color: #000000 !important;border-right-style: solid !important;border-radius: 1px !important;}.vc_custom_1691846576949{border-right-width: 1px !important;border-right-color: #000000 !important;border-right-style: solid !important;border-radius: 1px !important;}.vc_custom_1689578812611{margin-top: 50px !important;}.vc_custom_1689578812611{margin-top: 50px !important;}'),(15731,3234,'_wp_attached_file','2023/08/123-1.png'),(15732,3234,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1300;s:6:\"height\";i:600;s:4:\"file\";s:17:\"2023/08/123-1.png\";s:8:\"filesize\";i:280596;s:5:\"sizes\";a:10:{s:6:\"medium\";a:5:{s:4:\"file\";s:17:\"123-1-300x138.png\";s:5:\"width\";i:300;s:6:\"height\";i:138;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:44075;}s:5:\"large\";a:5:{s:4:\"file\";s:18:\"123-1-1024x473.png\";s:5:\"width\";i:1024;s:6:\"height\";i:473;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:465755;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:17:\"123-1-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:22275;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:17:\"123-1-768x354.png\";s:5:\"width\";i:768;s:6:\"height\";i:354;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:257522;}s:21:\"woocommerce_thumbnail\";a:6:{s:4:\"file\";s:17:\"123-1-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:77311;s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:5:{s:4:\"file\";s:17:\"123-1-600x277.png\";s:5:\"width\";i:600;s:6:\"height\";i:277;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:158074;}s:29:\"woocommerce_gallery_thumbnail\";a:5:{s:4:\"file\";s:17:\"123-1-200x200.png\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:36190;}s:12:\"shop_catalog\";a:5:{s:4:\"file\";s:17:\"123-1-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:77311;}s:11:\"shop_single\";a:5:{s:4:\"file\";s:17:\"123-1-600x277.png\";s:5:\"width\";i:600;s:6:\"height\";i:277;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:158074;}s:14:\"shop_thumbnail\";a:5:{s:4:\"file\";s:17:\"123-1-200x200.png\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:36190;}}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:{}}}'),(15733,3235,'_wpb_shortcodes_custom_css','.vc_custom_1689577528817{padding-bottom: 50px !important;}.vc_custom_1692198551378{padding-top: 50px !important;padding-bottom: 50px !important;}.vc_custom_1689578794814{padding-top: 50px !important;padding-bottom: 50px !important;}.vc_custom_1689578794814{padding-top: 50px !important;padding-bottom: 50px !important;}.vc_custom_1689577454678{margin-bottom: 50px !important;}.vc_custom_1689577559805{border-bottom-width: 1px !important;padding-top: 35px !important;padding-bottom: 35px !important;border-bottom-color: #079547 !important;border-bottom-style: solid !important;border-radius: 1px !important;}.vc_custom_1689577609020{border-bottom-width: 1px !important;padding-top: 35px !important;padding-bottom: 35px !important;border-bottom-color: #079547 !important;border-bottom-style: solid !important;border-radius: 1px !important;}.vc_custom_1689577609020{border-bottom-width: 1px !important;padding-top: 35px !important;padding-bottom: 35px !important;border-bottom-color: #079547 !important;border-bottom-style: solid !important;border-radius: 1px !important;}.vc_custom_1689577609020{border-bottom-width: 1px !important;padding-top: 35px !important;padding-bottom: 35px !important;border-bottom-color: #079547 !important;border-bottom-style: solid !important;border-radius: 1px !important;}.vc_custom_1691846530645{border-right-width: 1px !important;border-left-width: 1px !important;border-left-color: #000000 !important;border-left-style: solid !important;border-right-color: #000000 !important;border-right-style: solid !important;border-radius: 1px !important;}.vc_custom_1691846545469{border-right-width: 1px !important;border-left-width: 1px !important;border-left-color: #000000 !important;border-left-style: solid !important;border-right-color: #000000 !important;border-right-style: solid !important;border-radius: 1px !important;}.vc_custom_1691846563021{border-right-width: 1px !important;border-right-color: #000000 !important;border-right-style: solid !important;border-radius: 1px !important;}.vc_custom_1691846569845{border-right-width: 1px !important;border-right-color: #000000 !important;border-right-style: solid !important;border-radius: 1px !important;}.vc_custom_1691846576949{border-right-width: 1px !important;border-right-color: #000000 !important;border-right-style: solid !important;border-radius: 1px !important;}.vc_custom_1689578812611{margin-top: 50px !important;}.vc_custom_1689578812611{margin-top: 50px !important;}'),(15734,3236,'_wp_attached_file','2023/08/VISION-MISIONFF.png'),(15735,3236,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1300;s:6:\"height\";i:607;s:4:\"file\";s:27:\"2023/08/VISION-MISIONFF.png\";s:8:\"filesize\";i:326651;s:5:\"sizes\";a:10:{s:6:\"medium\";a:5:{s:4:\"file\";s:27:\"VISION-MISIONFF-300x140.png\";s:5:\"width\";i:300;s:6:\"height\";i:140;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:59659;}s:5:\"large\";a:5:{s:4:\"file\";s:28:\"VISION-MISIONFF-1024x478.png\";s:5:\"width\";i:1024;s:6:\"height\";i:478;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:657870;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:27:\"VISION-MISIONFF-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:27539;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:27:\"VISION-MISIONFF-768x359.png\";s:5:\"width\";i:768;s:6:\"height\";i:359;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:355102;}s:21:\"woocommerce_thumbnail\";a:6:{s:4:\"file\";s:27:\"VISION-MISIONFF-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:99303;s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:5:{s:4:\"file\";s:27:\"VISION-MISIONFF-600x280.png\";s:5:\"width\";i:600;s:6:\"height\";i:280;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:213954;}s:29:\"woocommerce_gallery_thumbnail\";a:5:{s:4:\"file\";s:27:\"VISION-MISIONFF-200x200.png\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:46661;}s:12:\"shop_catalog\";a:5:{s:4:\"file\";s:27:\"VISION-MISIONFF-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:99303;}s:11:\"shop_single\";a:5:{s:4:\"file\";s:27:\"VISION-MISIONFF-600x280.png\";s:5:\"width\";i:600;s:6:\"height\";i:280;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:213954;}s:14:\"shop_thumbnail\";a:5:{s:4:\"file\";s:27:\"VISION-MISIONFF-200x200.png\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:46661;}}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:{}}}'),(15736,3237,'_wpb_shortcodes_custom_css','.vc_custom_1692198837685{margin-top: 35px !important;padding-top: 65px !important;padding-bottom: 100px !important;}.vc_custom_1684836308288{margin-top: 15px !important;}.vc_custom_1686713784619{margin-top: 35px !important;}.vc_custom_1686714025469{margin-top: 35px !important;}.vc_custom_1686713784619{margin-top: 35px !important;}.vc_custom_1686714115148{margin-top: 35px !important;}.vc_custom_1686713784619{margin-top: 35px !important;}.vc_custom_1686713784619{margin-top: 35px !important;}.vc_custom_1686713784619{margin-top: 35px !important;}.vc_custom_1691995519863{background-color: #f4ab20 !important;border: 1px solid #f4ab20 !important;border-radius: 35px !important;}.vc_custom_1691995661095{background-color: #722f8b !important;border: 1px solid #722f8b !important;border-radius: 35px !important;}.vc_custom_1691995661095{background-color: #722f8b !important;border: 1px solid #722f8b !important;border-radius: 35px !important;}.vc_custom_1691995519863{background-color: #f4ab20 !important;border: 1px solid #f4ab20 !important;border-radius: 35px !important;}.vc_custom_1691996718116{border-radius: 35px !important;}.vc_custom_1691995519863{background-color: #f4ab20 !important;border: 1px solid #f4ab20 !important;border-radius: 35px !important;}'),(15737,3238,'_wpb_shortcodes_custom_css','.vc_custom_1692198837685{margin-top: 35px !important;padding-top: 65px !important;padding-bottom: 100px !important;}.vc_custom_1684836308288{margin-top: 15px !important;}.vc_custom_1686713784619{margin-top: 35px !important;}.vc_custom_1686714025469{margin-top: 35px !important;}.vc_custom_1686713784619{margin-top: 35px !important;}.vc_custom_1686714115148{margin-top: 35px !important;}.vc_custom_1686713784619{margin-top: 35px !important;}.vc_custom_1686713784619{margin-top: 35px !important;}.vc_custom_1686713784619{margin-top: 35px !important;}.vc_custom_1691995519863{background-color: #f4ab20 !important;border: 1px solid #f4ab20 !important;border-radius: 35px !important;}.vc_custom_1691995661095{background-color: #722f8b !important;border: 1px solid #722f8b !important;border-radius: 35px !important;}.vc_custom_1691995661095{background-color: #722f8b !important;border: 1px solid #722f8b !important;border-radius: 35px !important;}.vc_custom_1691995519863{background-color: #f4ab20 !important;border: 1px solid #f4ab20 !important;border-radius: 35px !important;}.vc_custom_1691996718116{border-radius: 35px !important;}.vc_custom_1691995519863{background-color: #f4ab20 !important;border: 1px solid #f4ab20 !important;border-radius: 35px !important;}'),(15738,3239,'_wpb_shortcodes_custom_css','.vc_custom_1692198837685{margin-top: 35px !important;padding-top: 65px !important;padding-bottom: 100px !important;}.vc_custom_1684836308288{margin-top: 15px !important;}.vc_custom_1686713784619{margin-top: 35px !important;}.vc_custom_1686714025469{margin-top: 35px !important;}.vc_custom_1686713784619{margin-top: 35px !important;}.vc_custom_1686714115148{margin-top: 35px !important;}.vc_custom_1686713784619{margin-top: 35px !important;}.vc_custom_1686713784619{margin-top: 35px !important;}.vc_custom_1686713784619{margin-top: 35px !important;}.vc_custom_1691995519863{background-color: #f4ab20 !important;border: 1px solid #f4ab20 !important;border-radius: 35px !important;}.vc_custom_1691995661095{background-color: #722f8b !important;border: 1px solid #722f8b !important;border-radius: 35px !important;}.vc_custom_1691995661095{background-color: #722f8b !important;border: 1px solid #722f8b !important;border-radius: 35px !important;}.vc_custom_1691995519863{background-color: #f4ab20 !important;border: 1px solid #f4ab20 !important;border-radius: 35px !important;}.vc_custom_1691996718116{border-radius: 35px !important;}.vc_custom_1691995519863{background-color: #f4ab20 !important;border: 1px solid #f4ab20 !important;border-radius: 35px !important;}'),(15739,3240,'_wpb_shortcodes_custom_css','.vc_custom_1692198837685{margin-top: 35px !important;padding-top: 65px !important;padding-bottom: 100px !important;}.vc_custom_1684836308288{margin-top: 15px !important;}.vc_custom_1686713784619{margin-top: 35px !important;}.vc_custom_1686714025469{margin-top: 35px !important;}.vc_custom_1686713784619{margin-top: 35px !important;}.vc_custom_1686714115148{margin-top: 35px !important;}.vc_custom_1686713784619{margin-top: 35px !important;}.vc_custom_1686713784619{margin-top: 35px !important;}.vc_custom_1686713784619{margin-top: 35px !important;}.vc_custom_1691995519863{background-color: #f4ab20 !important;border: 1px solid #f4ab20 !important;border-radius: 35px !important;}.vc_custom_1691995661095{background-color: #722f8b !important;border: 1px solid #722f8b !important;border-radius: 35px !important;}.vc_custom_1691995661095{background-color: #722f8b !important;border: 1px solid #722f8b !important;border-radius: 35px !important;}.vc_custom_1691995519863{background-color: #f4ab20 !important;border: 1px solid #f4ab20 !important;border-radius: 35px !important;}.vc_custom_1691996718116{border-radius: 35px !important;}.vc_custom_1691995519863{background-color: #f4ab20 !important;border: 1px solid #f4ab20 !important;border-radius: 35px !important;}'),(15740,3241,'_wpb_shortcodes_custom_css','.vc_custom_1692198837685{margin-top: 35px !important;padding-top: 65px !important;padding-bottom: 100px !important;}.vc_custom_1684836308288{margin-top: 15px !important;}.vc_custom_1686713784619{margin-top: 35px !important;}.vc_custom_1686714025469{margin-top: 35px !important;}.vc_custom_1686713784619{margin-top: 35px !important;}.vc_custom_1686714115148{margin-top: 35px !important;}.vc_custom_1686713784619{margin-top: 35px !important;}.vc_custom_1686713784619{margin-top: 35px !important;}.vc_custom_1686713784619{margin-top: 35px !important;}.vc_custom_1691995519863{background-color: #f4ab20 !important;border: 1px solid #f4ab20 !important;border-radius: 35px !important;}.vc_custom_1691995661095{background-color: #722f8b !important;border: 1px solid #722f8b !important;border-radius: 35px !important;}.vc_custom_1691995661095{background-color: #722f8b !important;border: 1px solid #722f8b !important;border-radius: 35px !important;}.vc_custom_1691995519863{background-color: #f4ab20 !important;border: 1px solid #f4ab20 !important;border-radius: 35px !important;}.vc_custom_1691996718116{border-radius: 35px !important;}.vc_custom_1691995519863{background-color: #f4ab20 !important;border: 1px solid #f4ab20 !important;border-radius: 35px !important;}'),(15741,3242,'_wpb_shortcodes_custom_css','.vc_custom_1692198837685{margin-top: 35px !important;padding-top: 65px !important;padding-bottom: 100px !important;}.vc_custom_1684836308288{margin-top: 15px !important;}.vc_custom_1686713784619{margin-top: 35px !important;}.vc_custom_1686714025469{margin-top: 35px !important;}.vc_custom_1686713784619{margin-top: 35px !important;}.vc_custom_1686714115148{margin-top: 35px !important;}.vc_custom_1686713784619{margin-top: 35px !important;}.vc_custom_1686713784619{margin-top: 35px !important;}.vc_custom_1686713784619{margin-top: 35px !important;}.vc_custom_1691995519863{background-color: #f4ab20 !important;border: 1px solid #f4ab20 !important;border-radius: 35px !important;}.vc_custom_1691995661095{background-color: #722f8b !important;border: 1px solid #722f8b !important;border-radius: 35px !important;}.vc_custom_1691995661095{background-color: #722f8b !important;border: 1px solid #722f8b !important;border-radius: 35px !important;}.vc_custom_1691995519863{background-color: #f4ab20 !important;border: 1px solid #f4ab20 !important;border-radius: 35px !important;}.vc_custom_1691996718116{border-radius: 35px !important;}.vc_custom_1691995519863{background-color: #f4ab20 !important;border: 1px solid #f4ab20 !important;border-radius: 35px !important;}'),(15841,2917,'_wpb_shortcodes_custom_css_updated','1'),(22405,3604,'_edit_last','1'),(22404,3604,'_edit_lock','1695541044:1'),(22403,3604,'_wqoecf_disable_form','no'),(22331,3604,'_dt_footer_show','1'),(22330,3604,'_dt_sidebar_hide_on_mobile','0'),(22265,3603,'_dt_fancy_header_padding-top','0px'),(22264,3603,'_dt_fancy_header_height','140'),(15848,3273,'_wp_attached_file','2023/08/Founded-in-2002-2.png'),(22575,3607,'_dt_fancy_header_bg_fullscreen','0'),(22574,3607,'_dt_fancy_header_bg_position_y','center'),(23099,3615,'_dt_footer_hide_on_mobile','0'),(23098,3615,'_dt_footer_widgetarea_id','sidebar_2'),(23097,3615,'_dt_footer_show','1'),(23022,3614,'_dt_page_overrides_bottom_margin',''),(23021,3614,'_dt_page_overrides_right_margin',''),(23020,3614,'_dt_page_overrides_top_margin','1%'),(22989,3614,'_sold_individually','no'),(22988,3614,'_backorders','no'),(22987,3614,'_manage_stock','no'),(22908,3612,'_dt_sidebar_hide_on_mobile','0'),(22907,3612,'_dt_sidebar_widgetarea_id','sidebar_1'),(22906,3612,'_dt_sidebar_position','disabled'),(22842,3611,'_dt_fancy_header_padding-top','0px'),(22841,3611,'_dt_fancy_header_height','140'),(22779,3609,'_dt_fancy_header_responsive_subtitle_line_height','28'),(20738,3561,'_wpb_shortcodes_custom_css','.vc_custom_1692366072362{margin-top: 35px !important;padding-top: 65px !important;padding-bottom: 100px !important;}.vc_custom_1684836308288{margin-top: 15px !important;}.vc_custom_1693627699480{margin-top: 15px !important;}.vc_custom_1693625624233{margin-top: 15px !important;}.vc_custom_1693625068958{margin-top: 15px !important;}.vc_custom_1692359205466{margin-top: 35px !important;}.vc_custom_1692359216075{margin-top: 35px !important;}.vc_custom_1692359231594{margin-top: 35px !important;}.vc_custom_1692359239274{margin-top: 35px !important;}.vc_custom_1692359246626{margin-top: 35px !important;}.vc_custom_1692422601938{margin-top: 35px !important;}.vc_custom_1692359258634{margin-top: 35px !important;}.vc_custom_1691995519863{background-color: #f4ab20 !important;border: 1px solid #f4ab20 !important;border-radius: 35px !important;}.vc_custom_1691995661095{background-color: #722f8b !important;border: 1px solid #722f8b !important;border-radius: 35px !important;}.vc_custom_1691995661095{background-color: #722f8b !important;border: 1px solid #722f8b !important;border-radius: 35px !important;}.vc_custom_1691995519863{background-color: #f4ab20 !important;border: 1px solid #f4ab20 !important;border-radius: 35px !important;}.vc_custom_1691996718116{border-radius: 35px !important;}.vc_custom_1691995519863{background-color: #f4ab20 !important;border: 1px solid #f4ab20 !important;border-radius: 35px !important;}.vc_custom_1692278922309{border-top-width: 1px !important;border-right-width: 1px !important;border-bottom-width: 1px !important;border-left-width: 1px !important;border-left-color: #059444 !important;border-left-style: solid !important;border-right-color: #059444 !important;border-right-style: solid !important;border-top-color: #059444 !important;border-top-style: solid !important;border-bottom-color: #059444 !important;border-bottom-style: solid !important;border-radius: 1px !important;}.vc_custom_1692278929158{border-top-width: 1px !important;border-right-width: 1px !important;border-bottom-width: 1px !important;border-left-width: 1px !important;border-left-color: #059444 !important;border-left-style: solid !important;border-right-color: #059444 !important;border-right-style: solid !important;border-top-color: #059444 !important;border-top-style: solid !important;border-bottom-color: #059444 !important;border-bottom-style: solid !important;border-radius: 1px !important;}.vc_custom_1692278936750{border-top-width: 1px !important;border-right-width: 1px !important;border-bottom-width: 1px !important;border-left-width: 1px !important;border-left-color: #059444 !important;border-left-style: solid !important;border-right-color: #059444 !important;border-right-style: solid !important;border-top-color: #059444 !important;border-top-style: solid !important;border-bottom-color: #059444 !important;border-bottom-style: solid !important;border-radius: 1px !important;}.vc_custom_1692278922309{border-top-width: 1px !important;border-right-width: 1px !important;border-bottom-width: 1px !important;border-left-width: 1px !important;border-left-color: #059444 !important;border-left-style: solid !important;border-right-color: #059444 !important;border-right-style: solid !important;border-top-color: #059444 !important;border-top-style: solid !important;border-bottom-color: #059444 !important;border-bottom-style: solid !important;border-radius: 1px !important;}.vc_custom_1692278929158{border-top-width: 1px !important;border-right-width: 1px !important;border-bottom-width: 1px !important;border-left-width: 1px !important;border-left-color: #059444 !important;border-left-style: solid !important;border-right-color: #059444 !important;border-right-style: solid !important;border-top-color: #059444 !important;border-top-style: solid !important;border-bottom-color: #059444 !important;border-bottom-style: solid !important;border-radius: 1px !important;}'),(17861,3427,'_wpb_shortcodes_custom_css_updated','1'),(15743,3243,'_wpb_shortcodes_custom_css','.vc_custom_1692198837685{margin-top: 35px !important;padding-top: 65px !important;padding-bottom: 100px !important;}.vc_custom_1684836308288{margin-top: 15px !important;}.vc_custom_1686713784619{margin-top: 35px !important;}.vc_custom_1686714025469{margin-top: 35px !important;}.vc_custom_1686713784619{margin-top: 35px !important;}.vc_custom_1686714115148{margin-top: 35px !important;}.vc_custom_1686713784619{margin-top: 35px !important;}.vc_custom_1686713784619{margin-top: 35px !important;}.vc_custom_1686713784619{margin-top: 35px !important;}.vc_custom_1691995519863{background-color: #f4ab20 !important;border: 1px solid #f4ab20 !important;border-radius: 35px !important;}.vc_custom_1691995661095{background-color: #722f8b !important;border: 1px solid #722f8b !important;border-radius: 35px !important;}.vc_custom_1691995661095{background-color: #722f8b !important;border: 1px solid #722f8b !important;border-radius: 35px !important;}.vc_custom_1691995519863{background-color: #f4ab20 !important;border: 1px solid #f4ab20 !important;border-radius: 35px !important;}.vc_custom_1691996718116{border-radius: 35px !important;}.vc_custom_1691995519863{background-color: #f4ab20 !important;border: 1px solid #f4ab20 !important;border-radius: 35px !important;}.vc_custom_1692278922309{border-top-width: 1px !important;border-right-width: 1px !important;border-bottom-width: 1px !important;border-left-width: 1px !important;border-left-color: #059444 !important;border-left-style: solid !important;border-right-color: #059444 !important;border-right-style: solid !important;border-top-color: #059444 !important;border-top-style: solid !important;border-bottom-color: #059444 !important;border-bottom-style: solid !important;border-radius: 1px !important;}.vc_custom_1692278929158{border-top-width: 1px !important;border-right-width: 1px !important;border-bottom-width: 1px !important;border-left-width: 1px !important;border-left-color: #059444 !important;border-left-style: solid !important;border-right-color: #059444 !important;border-right-style: solid !important;border-top-color: #059444 !important;border-top-style: solid !important;border-bottom-color: #059444 !important;border-bottom-style: solid !important;border-radius: 1px !important;}.vc_custom_1692278936750{border-top-width: 1px !important;border-right-width: 1px !important;border-bottom-width: 1px !important;border-left-width: 1px !important;border-left-color: #059444 !important;border-left-style: solid !important;border-right-color: #059444 !important;border-right-style: solid !important;border-top-color: #059444 !important;border-top-style: solid !important;border-bottom-color: #059444 !important;border-bottom-style: solid !important;border-radius: 1px !important;}.vc_custom_1692278922309{border-top-width: 1px !important;border-right-width: 1px !important;border-bottom-width: 1px !important;border-left-width: 1px !important;border-left-color: #059444 !important;border-left-style: solid !important;border-right-color: #059444 !important;border-right-style: solid !important;border-top-color: #059444 !important;border-top-style: solid !important;border-bottom-color: #059444 !important;border-bottom-style: solid !important;border-radius: 1px !important;}.vc_custom_1692278929158{border-top-width: 1px !important;border-right-width: 1px !important;border-bottom-width: 1px !important;border-left-width: 1px !important;border-left-color: #059444 !important;border-left-style: solid !important;border-right-color: #059444 !important;border-right-style: solid !important;border-top-color: #059444 !important;border-top-style: solid !important;border-bottom-color: #059444 !important;border-bottom-style: solid !important;border-radius: 1px !important;}.vc_custom_1692278922309{border-top-width: 1px !important;border-right-width: 1px !important;border-bottom-width: 1px !important;border-left-width: 1px !important;border-left-color: #059444 !important;border-left-style: solid !important;border-right-color: #059444 !important;border-right-style: solid !important;border-top-color: #059444 !important;border-top-style: solid !important;border-bottom-color: #059444 !important;border-bottom-style: solid !important;border-radius: 1px !important;}.vc_custom_1692278929158{border-top-width: 1px !important;border-right-width: 1px !important;border-bottom-width: 1px !important;border-left-width: 1px !important;border-left-color: #059444 !important;border-left-style: solid !important;border-right-color: #059444 !important;border-right-style: solid !important;border-top-color: #059444 !important;border-top-style: solid !important;border-bottom-color: #059444 !important;border-bottom-style: solid !important;border-radius: 1px !important;}.vc_custom_1692278936750{border-top-width: 1px !important;border-right-width: 1px !important;border-bottom-width: 1px !important;border-left-width: 1px !important;border-left-color: #059444 !important;border-left-style: solid !important;border-right-color: #059444 !important;border-right-style: solid !important;border-top-color: #059444 !important;border-top-style: solid !important;border-bottom-color: #059444 !important;border-bottom-style: solid !important;border-radius: 1px !important;}.vc_custom_1692278936750{border-top-width: 1px !important;border-right-width: 1px !important;border-bottom-width: 1px !important;border-left-width: 1px !important;border-left-color: #059444 !important;border-left-style: solid !important;border-right-color: #059444 !important;border-right-style: solid !important;border-top-color: #059444 !important;border-top-style: solid !important;border-bottom-color: #059444 !important;border-bottom-style: solid !important;border-radius: 1px !important;}.vc_custom_1692278929158{border-top-width: 1px !important;border-right-width: 1px !important;border-bottom-width: 1px !important;border-left-width: 1px !important;border-left-color: #059444 !important;border-left-style: solid !important;border-right-color: #059444 !important;border-right-style: solid !important;border-top-color: #059444 !important;border-top-style: solid !important;border-bottom-color: #059444 !important;border-bottom-style: solid !important;border-radius: 1px !important;}'),(15840,2525,'_wpb_shortcodes_custom_css_updated','1'),(22778,3609,'_dt_fancy_header_responsive_subtitle_font_size','20'),(22721,3609,'_dt_header_disabled_background','normal'),(15883,2996,'_wpb_shortcodes_custom_css_updated','1'),(15871,3283,'_wp_attached_file','2023/08/ABOUT-US_1-1.png'),(15843,2990,'_wpb_shortcodes_custom_css_updated','1'),(15872,3283,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1300;s:6:\"height\";i:300;s:4:\"file\";s:24:\"2023/08/ABOUT-US_1-1.png\";s:8:\"filesize\";i:180725;s:5:\"sizes\";a:7:{s:6:\"medium\";a:5:{s:4:\"file\";s:23:\"ABOUT-US_1-1-300x69.png\";s:5:\"width\";i:300;s:6:\"height\";i:69;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:37873;}s:5:\"large\";a:5:{s:4:\"file\";s:25:\"ABOUT-US_1-1-1024x236.png\";s:5:\"width\";i:1024;s:6:\"height\";i:236;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:403151;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:24:\"ABOUT-US_1-1-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:42528;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:24:\"ABOUT-US_1-1-768x177.png\";s:5:\"width\";i:768;s:6:\"height\";i:177;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:225517;}s:21:\"woocommerce_thumbnail\";a:6:{s:4:\"file\";s:24:\"ABOUT-US_1-1-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:57669;s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:5:{s:4:\"file\";s:24:\"ABOUT-US_1-1-600x138.png\";s:5:\"width\";i:600;s:6:\"height\";i:138;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:138227;}s:29:\"woocommerce_gallery_thumbnail\";a:5:{s:4:\"file\";s:24:\"ABOUT-US_1-1-200x200.png\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:72096;}}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:{}}}'),(15845,3272,'_wpb_shortcodes_custom_css','.vc_custom_1692366072362{margin-top: 35px !important;padding-top: 65px !important;padding-bottom: 100px !important;}.vc_custom_1684836308288{margin-top: 15px !important;}.vc_custom_1692359205466{margin-top: 35px !important;}.vc_custom_1692359216075{margin-top: 35px !important;}.vc_custom_1692359231594{margin-top: 35px !important;}.vc_custom_1692359239274{margin-top: 35px !important;}.vc_custom_1692359246626{margin-top: 35px !important;}.vc_custom_1692359252258{margin-top: 35px !important;}.vc_custom_1692359258634{margin-top: 35px !important;}.vc_custom_1691995519863{background-color: #f4ab20 !important;border: 1px solid #f4ab20 !important;border-radius: 35px !important;}.vc_custom_1691995661095{background-color: #722f8b !important;border: 1px solid #722f8b !important;border-radius: 35px !important;}.vc_custom_1691995661095{background-color: #722f8b !important;border: 1px solid #722f8b !important;border-radius: 35px !important;}.vc_custom_1691995519863{background-color: #f4ab20 !important;border: 1px solid #f4ab20 !important;border-radius: 35px !important;}.vc_custom_1691996718116{border-radius: 35px !important;}.vc_custom_1691995519863{background-color: #f4ab20 !important;border: 1px solid #f4ab20 !important;border-radius: 35px !important;}.vc_custom_1692278922309{border-top-width: 1px !important;border-right-width: 1px !important;border-bottom-width: 1px !important;border-left-width: 1px !important;border-left-color: #059444 !important;border-left-style: solid !important;border-right-color: #059444 !important;border-right-style: solid !important;border-top-color: #059444 !important;border-top-style: solid !important;border-bottom-color: #059444 !important;border-bottom-style: solid !important;border-radius: 1px !important;}.vc_custom_1692278929158{border-top-width: 1px !important;border-right-width: 1px !important;border-bottom-width: 1px !important;border-left-width: 1px !important;border-left-color: #059444 !important;border-left-style: solid !important;border-right-color: #059444 !important;border-right-style: solid !important;border-top-color: #059444 !important;border-top-style: solid !important;border-bottom-color: #059444 !important;border-bottom-style: solid !important;border-radius: 1px !important;}.vc_custom_1692278936750{border-top-width: 1px !important;border-right-width: 1px !important;border-bottom-width: 1px !important;border-left-width: 1px !important;border-left-color: #059444 !important;border-left-style: solid !important;border-right-color: #059444 !important;border-right-style: solid !important;border-top-color: #059444 !important;border-top-style: solid !important;border-bottom-color: #059444 !important;border-bottom-style: solid !important;border-radius: 1px !important;}.vc_custom_1692278922309{border-top-width: 1px !important;border-right-width: 1px !important;border-bottom-width: 1px !important;border-left-width: 1px !important;border-left-color: #059444 !important;border-left-style: solid !important;border-right-color: #059444 !important;border-right-style: solid !important;border-top-color: #059444 !important;border-top-style: solid !important;border-bottom-color: #059444 !important;border-bottom-style: solid !important;border-radius: 1px !important;}.vc_custom_1692278929158{border-top-width: 1px !important;border-right-width: 1px !important;border-bottom-width: 1px !important;border-left-width: 1px !important;border-left-color: #059444 !important;border-left-style: solid !important;border-right-color: #059444 !important;border-right-style: solid !important;border-top-color: #059444 !important;border-top-style: solid !important;border-bottom-color: #059444 !important;border-bottom-style: solid !important;border-radius: 1px !important;}'),(19271,3461,'_dt_fancy_header_responsiveness','enabled'),(19272,3461,'_dt_fancy_header_responsiveness_switch','778px'),(19273,3461,'_dt_fancy_header_responsive_height','140'),(19274,3461,'_dt_fancy_header_responsive_font_size','30'),(19275,3461,'_dt_fancy_header_responsive_title_line_height','38'),(19276,3461,'_dt_fancy_header_responsive_subtitle_font_size','20'),(15745,3244,'_wpb_shortcodes_custom_css','.vc_custom_1692198837685{margin-top: 35px !important;padding-top: 65px !important;padding-bottom: 100px !important;}.vc_custom_1684836308288{margin-top: 15px !important;}.vc_custom_1686713784619{margin-top: 35px !important;}.vc_custom_1686714025469{margin-top: 35px !important;}.vc_custom_1686713784619{margin-top: 35px !important;}.vc_custom_1686714115148{margin-top: 35px !important;}.vc_custom_1686713784619{margin-top: 35px !important;}.vc_custom_1686713784619{margin-top: 35px !important;}.vc_custom_1686713784619{margin-top: 35px !important;}.vc_custom_1691995519863{background-color: #f4ab20 !important;border: 1px solid #f4ab20 !important;border-radius: 35px !important;}.vc_custom_1691995661095{background-color: #722f8b !important;border: 1px solid #722f8b !important;border-radius: 35px !important;}.vc_custom_1691995661095{background-color: #722f8b !important;border: 1px solid #722f8b !important;border-radius: 35px !important;}.vc_custom_1691995519863{background-color: #f4ab20 !important;border: 1px solid #f4ab20 !important;border-radius: 35px !important;}.vc_custom_1691996718116{border-radius: 35px !important;}.vc_custom_1691995519863{background-color: #f4ab20 !important;border: 1px solid #f4ab20 !important;border-radius: 35px !important;}.vc_custom_1692278922309{border-top-width: 1px !important;border-right-width: 1px !important;border-bottom-width: 1px !important;border-left-width: 1px !important;border-left-color: #059444 !important;border-left-style: solid !important;border-right-color: #059444 !important;border-right-style: solid !important;border-top-color: #059444 !important;border-top-style: solid !important;border-bottom-color: #059444 !important;border-bottom-style: solid !important;border-radius: 1px !important;}.vc_custom_1692278929158{border-top-width: 1px !important;border-right-width: 1px !important;border-bottom-width: 1px !important;border-left-width: 1px !important;border-left-color: #059444 !important;border-left-style: solid !important;border-right-color: #059444 !important;border-right-style: solid !important;border-top-color: #059444 !important;border-top-style: solid !important;border-bottom-color: #059444 !important;border-bottom-style: solid !important;border-radius: 1px !important;}.vc_custom_1692278936750{border-top-width: 1px !important;border-right-width: 1px !important;border-bottom-width: 1px !important;border-left-width: 1px !important;border-left-color: #059444 !important;border-left-style: solid !important;border-right-color: #059444 !important;border-right-style: solid !important;border-top-color: #059444 !important;border-top-style: solid !important;border-bottom-color: #059444 !important;border-bottom-style: solid !important;border-radius: 1px !important;}.vc_custom_1692278922309{border-top-width: 1px !important;border-right-width: 1px !important;border-bottom-width: 1px !important;border-left-width: 1px !important;border-left-color: #059444 !important;border-left-style: solid !important;border-right-color: #059444 !important;border-right-style: solid !important;border-top-color: #059444 !important;border-top-style: solid !important;border-bottom-color: #059444 !important;border-bottom-style: solid !important;border-radius: 1px !important;}.vc_custom_1692278929158{border-top-width: 1px !important;border-right-width: 1px !important;border-bottom-width: 1px !important;border-left-width: 1px !important;border-left-color: #059444 !important;border-left-style: solid !important;border-right-color: #059444 !important;border-right-style: solid !important;border-top-color: #059444 !important;border-top-style: solid !important;border-bottom-color: #059444 !important;border-bottom-style: solid !important;border-radius: 1px !important;}.vc_custom_1692278936750{border-top-width: 1px !important;border-right-width: 1px !important;border-bottom-width: 1px !important;border-left-width: 1px !important;border-left-color: #059444 !important;border-left-style: solid !important;border-right-color: #059444 !important;border-right-style: solid !important;border-top-color: #059444 !important;border-top-style: solid !important;border-bottom-color: #059444 !important;border-bottom-style: solid !important;border-radius: 1px !important;}.vc_custom_1692278936750{border-top-width: 1px !important;border-right-width: 1px !important;border-bottom-width: 1px !important;border-left-width: 1px !important;border-left-color: #059444 !important;border-left-style: solid !important;border-right-color: #059444 !important;border-right-style: solid !important;border-top-color: #059444 !important;border-top-style: solid !important;border-bottom-color: #059444 !important;border-bottom-style: solid !important;border-radius: 1px !important;}.vc_custom_1692278929158{border-top-width: 1px !important;border-right-width: 1px !important;border-bottom-width: 1px !important;border-left-width: 1px !important;border-left-color: #059444 !important;border-left-style: solid !important;border-right-color: #059444 !important;border-right-style: solid !important;border-top-color: #059444 !important;border-top-style: solid !important;border-bottom-color: #059444 !important;border-bottom-style: solid !important;border-radius: 1px !important;}.vc_custom_1692278922309{border-top-width: 1px !important;border-right-width: 1px !important;border-bottom-width: 1px !important;border-left-width: 1px !important;border-left-color: #059444 !important;border-left-style: solid !important;border-right-color: #059444 !important;border-right-style: solid !important;border-top-color: #059444 !important;border-top-style: solid !important;border-bottom-color: #059444 !important;border-bottom-style: solid !important;border-radius: 1px !important;}.vc_custom_1692278929158{border-top-width: 1px !important;border-right-width: 1px !important;border-bottom-width: 1px !important;border-left-width: 1px !important;border-left-color: #059444 !important;border-left-style: solid !important;border-right-color: #059444 !important;border-right-style: solid !important;border-top-color: #059444 !important;border-top-style: solid !important;border-bottom-color: #059444 !important;border-bottom-style: solid !important;border-radius: 1px !important;}'),(15748,3245,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:400;s:6:\"height\";i:200;s:4:\"file\";s:33:\"2023/04/Alverm-30_400px-200px.png\";s:8:\"filesize\";i:5201;s:5:\"sizes\";a:6:{s:6:\"medium\";a:5:{s:4:\"file\";s:33:\"Alverm-30_400px-200px-300x150.png\";s:5:\"width\";i:300;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:10815;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:33:\"Alverm-30_400px-200px-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:4553;}s:21:\"woocommerce_thumbnail\";a:6:{s:4:\"file\";s:33:\"Alverm-30_400px-200px-300x200.png\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:6632;s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:5:{s:4:\"file\";s:33:\"Alverm-30_400px-200px-200x200.png\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:3941;}s:12:\"shop_catalog\";a:5:{s:4:\"file\";s:33:\"Alverm-30_400px-200px-300x200.png\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:6632;}s:14:\"shop_thumbnail\";a:5:{s:4:\"file\";s:33:\"Alverm-30_400px-200px-200x200.png\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:3941;}}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:{}}}'),(15755,3249,'_wp_attached_file','2023/04/Alverm-30_400px-140px.png'),(15770,3256,'_wp_attached_file','2023/08/Vision-Mission.png'),(15749,3246,'_wpb_shortcodes_custom_css','.vc_custom_1692198837685{margin-top: 35px !important;padding-top: 65px !important;padding-bottom: 100px !important;}.vc_custom_1684836308288{margin-top: 15px !important;}.vc_custom_1686713784619{margin-top: 35px !important;}.vc_custom_1686714025469{margin-top: 35px !important;}.vc_custom_1686713784619{margin-top: 35px !important;}.vc_custom_1686714115148{margin-top: 35px !important;}.vc_custom_1686713784619{margin-top: 35px !important;}.vc_custom_1686713784619{margin-top: 35px !important;}.vc_custom_1686713784619{margin-top: 35px !important;}.vc_custom_1691995519863{background-color: #f4ab20 !important;border: 1px solid #f4ab20 !important;border-radius: 35px !important;}.vc_custom_1691995661095{background-color: #722f8b !important;border: 1px solid #722f8b !important;border-radius: 35px !important;}.vc_custom_1691995661095{background-color: #722f8b !important;border: 1px solid #722f8b !important;border-radius: 35px !important;}.vc_custom_1691995519863{background-color: #f4ab20 !important;border: 1px solid #f4ab20 !important;border-radius: 35px !important;}.vc_custom_1691996718116{border-radius: 35px !important;}.vc_custom_1691995519863{background-color: #f4ab20 !important;border: 1px solid #f4ab20 !important;border-radius: 35px !important;}.vc_custom_1692278922309{border-top-width: 1px !important;border-right-width: 1px !important;border-bottom-width: 1px !important;border-left-width: 1px !important;border-left-color: #059444 !important;border-left-style: solid !important;border-right-color: #059444 !important;border-right-style: solid !important;border-top-color: #059444 !important;border-top-style: solid !important;border-bottom-color: #059444 !important;border-bottom-style: solid !important;border-radius: 1px !important;}.vc_custom_1692278929158{border-top-width: 1px !important;border-right-width: 1px !important;border-bottom-width: 1px !important;border-left-width: 1px !important;border-left-color: #059444 !important;border-left-style: solid !important;border-right-color: #059444 !important;border-right-style: solid !important;border-top-color: #059444 !important;border-top-style: solid !important;border-bottom-color: #059444 !important;border-bottom-style: solid !important;border-radius: 1px !important;}.vc_custom_1692278936750{border-top-width: 1px !important;border-right-width: 1px !important;border-bottom-width: 1px !important;border-left-width: 1px !important;border-left-color: #059444 !important;border-left-style: solid !important;border-right-color: #059444 !important;border-right-style: solid !important;border-top-color: #059444 !important;border-top-style: solid !important;border-bottom-color: #059444 !important;border-bottom-style: solid !important;border-radius: 1px !important;}.vc_custom_1692278922309{border-top-width: 1px !important;border-right-width: 1px !important;border-bottom-width: 1px !important;border-left-width: 1px !important;border-left-color: #059444 !important;border-left-style: solid !important;border-right-color: #059444 !important;border-right-style: solid !important;border-top-color: #059444 !important;border-top-style: solid !important;border-bottom-color: #059444 !important;border-bottom-style: solid !important;border-radius: 1px !important;}.vc_custom_1692278929158{border-top-width: 1px !important;border-right-width: 1px !important;border-bottom-width: 1px !important;border-left-width: 1px !important;border-left-color: #059444 !important;border-left-style: solid !important;border-right-color: #059444 !important;border-right-style: solid !important;border-top-color: #059444 !important;border-top-style: solid !important;border-bottom-color: #059444 !important;border-bottom-style: solid !important;border-radius: 1px !important;}.vc_custom_1692278936750{border-top-width: 1px !important;border-right-width: 1px !important;border-bottom-width: 1px !important;border-left-width: 1px !important;border-left-color: #059444 !important;border-left-style: solid !important;border-right-color: #059444 !important;border-right-style: solid !important;border-top-color: #059444 !important;border-top-style: solid !important;border-bottom-color: #059444 !important;border-bottom-style: solid !important;border-radius: 1px !important;}.vc_custom_1692278936750{border-top-width: 1px !important;border-right-width: 1px !important;border-bottom-width: 1px !important;border-left-width: 1px !important;border-left-color: #059444 !important;border-left-style: solid !important;border-right-color: #059444 !important;border-right-style: solid !important;border-top-color: #059444 !important;border-top-style: solid !important;border-bottom-color: #059444 !important;border-bottom-style: solid !important;border-radius: 1px !important;}.vc_custom_1692278929158{border-top-width: 1px !important;border-right-width: 1px !important;border-bottom-width: 1px !important;border-left-width: 1px !important;border-left-color: #059444 !important;border-left-style: solid !important;border-right-color: #059444 !important;border-right-style: solid !important;border-top-color: #059444 !important;border-top-style: solid !important;border-bottom-color: #059444 !important;border-bottom-style: solid !important;border-radius: 1px !important;}.vc_custom_1692278922309{border-top-width: 1px !important;border-right-width: 1px !important;border-bottom-width: 1px !important;border-left-width: 1px !important;border-left-color: #059444 !important;border-left-style: solid !important;border-right-color: #059444 !important;border-right-style: solid !important;border-top-color: #059444 !important;border-top-style: solid !important;border-bottom-color: #059444 !important;border-bottom-style: solid !important;border-radius: 1px !important;}.vc_custom_1692278929158{border-top-width: 1px !important;border-right-width: 1px !important;border-bottom-width: 1px !important;border-left-width: 1px !important;border-left-color: #059444 !important;border-left-style: solid !important;border-right-color: #059444 !important;border-right-style: solid !important;border-top-color: #059444 !important;border-top-style: solid !important;border-bottom-color: #059444 !important;border-bottom-style: solid !important;border-radius: 1px !important;}'),(15751,3247,'_wpb_shortcodes_custom_css','.vc_custom_1692198837685{margin-top: 35px !important;padding-top: 65px !important;padding-bottom: 100px !important;}.vc_custom_1684836308288{margin-top: 15px !important;}.vc_custom_1686713784619{margin-top: 35px !important;}.vc_custom_1686714025469{margin-top: 35px !important;}.vc_custom_1686713784619{margin-top: 35px !important;}.vc_custom_1686714115148{margin-top: 35px !important;}.vc_custom_1686713784619{margin-top: 35px !important;}.vc_custom_1686713784619{margin-top: 35px !important;}.vc_custom_1686713784619{margin-top: 35px !important;}.vc_custom_1691995519863{background-color: #f4ab20 !important;border: 1px solid #f4ab20 !important;border-radius: 35px !important;}.vc_custom_1691995661095{background-color: #722f8b !important;border: 1px solid #722f8b !important;border-radius: 35px !important;}.vc_custom_1691995661095{background-color: #722f8b !important;border: 1px solid #722f8b !important;border-radius: 35px !important;}.vc_custom_1691995519863{background-color: #f4ab20 !important;border: 1px solid #f4ab20 !important;border-radius: 35px !important;}.vc_custom_1691996718116{border-radius: 35px !important;}.vc_custom_1691995519863{background-color: #f4ab20 !important;border: 1px solid #f4ab20 !important;border-radius: 35px !important;}.vc_custom_1692278922309{border-top-width: 1px !important;border-right-width: 1px !important;border-bottom-width: 1px !important;border-left-width: 1px !important;border-left-color: #059444 !important;border-left-style: solid !important;border-right-color: #059444 !important;border-right-style: solid !important;border-top-color: #059444 !important;border-top-style: solid !important;border-bottom-color: #059444 !important;border-bottom-style: solid !important;border-radius: 1px !important;}.vc_custom_1692278929158{border-top-width: 1px !important;border-right-width: 1px !important;border-bottom-width: 1px !important;border-left-width: 1px !important;border-left-color: #059444 !important;border-left-style: solid !important;border-right-color: #059444 !important;border-right-style: solid !important;border-top-color: #059444 !important;border-top-style: solid !important;border-bottom-color: #059444 !important;border-bottom-style: solid !important;border-radius: 1px !important;}.vc_custom_1692278936750{border-top-width: 1px !important;border-right-width: 1px !important;border-bottom-width: 1px !important;border-left-width: 1px !important;border-left-color: #059444 !important;border-left-style: solid !important;border-right-color: #059444 !important;border-right-style: solid !important;border-top-color: #059444 !important;border-top-style: solid !important;border-bottom-color: #059444 !important;border-bottom-style: solid !important;border-radius: 1px !important;}.vc_custom_1692278922309{border-top-width: 1px !important;border-right-width: 1px !important;border-bottom-width: 1px !important;border-left-width: 1px !important;border-left-color: #059444 !important;border-left-style: solid !important;border-right-color: #059444 !important;border-right-style: solid !important;border-top-color: #059444 !important;border-top-style: solid !important;border-bottom-color: #059444 !important;border-bottom-style: solid !important;border-radius: 1px !important;}.vc_custom_1692278929158{border-top-width: 1px !important;border-right-width: 1px !important;border-bottom-width: 1px !important;border-left-width: 1px !important;border-left-color: #059444 !important;border-left-style: solid !important;border-right-color: #059444 !important;border-right-style: solid !important;border-top-color: #059444 !important;border-top-style: solid !important;border-bottom-color: #059444 !important;border-bottom-style: solid !important;border-radius: 1px !important;}.vc_custom_1692278936750{border-top-width: 1px !important;border-right-width: 1px !important;border-bottom-width: 1px !important;border-left-width: 1px !important;border-left-color: #059444 !important;border-left-style: solid !important;border-right-color: #059444 !important;border-right-style: solid !important;border-top-color: #059444 !important;border-top-style: solid !important;border-bottom-color: #059444 !important;border-bottom-style: solid !important;border-radius: 1px !important;}.vc_custom_1692278936750{border-top-width: 1px !important;border-right-width: 1px !important;border-bottom-width: 1px !important;border-left-width: 1px !important;border-left-color: #059444 !important;border-left-style: solid !important;border-right-color: #059444 !important;border-right-style: solid !important;border-top-color: #059444 !important;border-top-style: solid !important;border-bottom-color: #059444 !important;border-bottom-style: solid !important;border-radius: 1px !important;}.vc_custom_1692278929158{border-top-width: 1px !important;border-right-width: 1px !important;border-bottom-width: 1px !important;border-left-width: 1px !important;border-left-color: #059444 !important;border-left-style: solid !important;border-right-color: #059444 !important;border-right-style: solid !important;border-top-color: #059444 !important;border-top-style: solid !important;border-bottom-color: #059444 !important;border-bottom-style: solid !important;border-radius: 1px !important;}.vc_custom_1692278922309{border-top-width: 1px !important;border-right-width: 1px !important;border-bottom-width: 1px !important;border-left-width: 1px !important;border-left-color: #059444 !important;border-left-style: solid !important;border-right-color: #059444 !important;border-right-style: solid !important;border-top-color: #059444 !important;border-top-style: solid !important;border-bottom-color: #059444 !important;border-bottom-style: solid !important;border-radius: 1px !important;}.vc_custom_1692278929158{border-top-width: 1px !important;border-right-width: 1px !important;border-bottom-width: 1px !important;border-left-width: 1px !important;border-left-color: #059444 !important;border-left-style: solid !important;border-right-color: #059444 !important;border-right-style: solid !important;border-top-color: #059444 !important;border-top-style: solid !important;border-bottom-color: #059444 !important;border-bottom-style: solid !important;border-radius: 1px !important;}'),(15753,3248,'_wpb_shortcodes_custom_css','.vc_custom_1692198837685{margin-top: 35px !important;padding-top: 65px !important;padding-bottom: 100px !important;}.vc_custom_1684836308288{margin-top: 15px !important;}.vc_custom_1686713784619{margin-top: 35px !important;}.vc_custom_1686714025469{margin-top: 35px !important;}.vc_custom_1686713784619{margin-top: 35px !important;}.vc_custom_1686714115148{margin-top: 35px !important;}.vc_custom_1686713784619{margin-top: 35px !important;}.vc_custom_1686713784619{margin-top: 35px !important;}.vc_custom_1686713784619{margin-top: 35px !important;}.vc_custom_1691995519863{background-color: #f4ab20 !important;border: 1px solid #f4ab20 !important;border-radius: 35px !important;}.vc_custom_1691995661095{background-color: #722f8b !important;border: 1px solid #722f8b !important;border-radius: 35px !important;}.vc_custom_1691995661095{background-color: #722f8b !important;border: 1px solid #722f8b !important;border-radius: 35px !important;}.vc_custom_1691995519863{background-color: #f4ab20 !important;border: 1px solid #f4ab20 !important;border-radius: 35px !important;}.vc_custom_1691996718116{border-radius: 35px !important;}.vc_custom_1691995519863{background-color: #f4ab20 !important;border: 1px solid #f4ab20 !important;border-radius: 35px !important;}.vc_custom_1692278936750{border-top-width: 1px !important;border-right-width: 1px !important;border-bottom-width: 1px !important;border-left-width: 1px !important;border-left-color: #059444 !important;border-left-style: solid !important;border-right-color: #059444 !important;border-right-style: solid !important;border-top-color: #059444 !important;border-top-style: solid !important;border-bottom-color: #059444 !important;border-bottom-style: solid !important;border-radius: 1px !important;}.vc_custom_1692278936750{border-top-width: 1px !important;border-right-width: 1px !important;border-bottom-width: 1px !important;border-left-width: 1px !important;border-left-color: #059444 !important;border-left-style: solid !important;border-right-color: #059444 !important;border-right-style: solid !important;border-top-color: #059444 !important;border-top-style: solid !important;border-bottom-color: #059444 !important;border-bottom-style: solid !important;border-radius: 1px !important;}.vc_custom_1692278929158{border-top-width: 1px !important;border-right-width: 1px !important;border-bottom-width: 1px !important;border-left-width: 1px !important;border-left-color: #059444 !important;border-left-style: solid !important;border-right-color: #059444 !important;border-right-style: solid !important;border-top-color: #059444 !important;border-top-style: solid !important;border-bottom-color: #059444 !important;border-bottom-style: solid !important;border-radius: 1px !important;}.vc_custom_1692278922309{border-top-width: 1px !important;border-right-width: 1px !important;border-bottom-width: 1px !important;border-left-width: 1px !important;border-left-color: #059444 !important;border-left-style: solid !important;border-right-color: #059444 !important;border-right-style: solid !important;border-top-color: #059444 !important;border-top-style: solid !important;border-bottom-color: #059444 !important;border-bottom-style: solid !important;border-radius: 1px !important;}.vc_custom_1692278922309{border-top-width: 1px !important;border-right-width: 1px !important;border-bottom-width: 1px !important;border-left-width: 1px !important;border-left-color: #059444 !important;border-left-style: solid !important;border-right-color: #059444 !important;border-right-style: solid !important;border-top-color: #059444 !important;border-top-style: solid !important;border-bottom-color: #059444 !important;border-bottom-style: solid !important;border-radius: 1px !important;}.vc_custom_1692278929158{border-top-width: 1px !important;border-right-width: 1px !important;border-bottom-width: 1px !important;border-left-width: 1px !important;border-left-color: #059444 !important;border-left-style: solid !important;border-right-color: #059444 !important;border-right-style: solid !important;border-top-color: #059444 !important;border-top-style: solid !important;border-bottom-color: #059444 !important;border-bottom-style: solid !important;border-radius: 1px !important;}.vc_custom_1692278936750{border-top-width: 1px !important;border-right-width: 1px !important;border-bottom-width: 1px !important;border-left-width: 1px !important;border-left-color: #059444 !important;border-left-style: solid !important;border-right-color: #059444 !important;border-right-style: solid !important;border-top-color: #059444 !important;border-top-style: solid !important;border-bottom-color: #059444 !important;border-bottom-style: solid !important;border-radius: 1px !important;}.vc_custom_1692278922309{border-top-width: 1px !important;border-right-width: 1px !important;border-bottom-width: 1px !important;border-left-width: 1px !important;border-left-color: #059444 !important;border-left-style: solid !important;border-right-color: #059444 !important;border-right-style: solid !important;border-top-color: #059444 !important;border-top-style: solid !important;border-bottom-color: #059444 !important;border-bottom-style: solid !important;border-radius: 1px !important;}.vc_custom_1692278929158{border-top-width: 1px !important;border-right-width: 1px !important;border-bottom-width: 1px !important;border-left-width: 1px !important;border-left-color: #059444 !important;border-left-style: solid !important;border-right-color: #059444 !important;border-right-style: solid !important;border-top-color: #059444 !important;border-top-style: solid !important;border-bottom-color: #059444 !important;border-bottom-style: solid !important;border-radius: 1px !important;}.vc_custom_1692278936750{border-top-width: 1px !important;border-right-width: 1px !important;border-bottom-width: 1px !important;border-left-width: 1px !important;border-left-color: #059444 !important;border-left-style: solid !important;border-right-color: #059444 !important;border-right-style: solid !important;border-top-color: #059444 !important;border-top-style: solid !important;border-bottom-color: #059444 !important;border-bottom-style: solid !important;border-radius: 1px !important;}.vc_custom_1692278936750{border-top-width: 1px !important;border-right-width: 1px !important;border-bottom-width: 1px !important;border-left-width: 1px !important;border-left-color: #059444 !important;border-left-style: solid !important;border-right-color: #059444 !important;border-right-style: solid !important;border-top-color: #059444 !important;border-top-style: solid !important;border-bottom-color: #059444 !important;border-bottom-style: solid !important;border-radius: 1px !important;}.vc_custom_1692278929158{border-top-width: 1px !important;border-right-width: 1px !important;border-bottom-width: 1px !important;border-left-width: 1px !important;border-left-color: #059444 !important;border-left-style: solid !important;border-right-color: #059444 !important;border-right-style: solid !important;border-top-color: #059444 !important;border-top-style: solid !important;border-bottom-color: #059444 !important;border-bottom-style: solid !important;border-radius: 1px !important;}.vc_custom_1692278922309{border-top-width: 1px !important;border-right-width: 1px !important;border-bottom-width: 1px !important;border-left-width: 1px !important;border-left-color: #059444 !important;border-left-style: solid !important;border-right-color: #059444 !important;border-right-style: solid !important;border-top-color: #059444 !important;border-top-style: solid !important;border-bottom-color: #059444 !important;border-bottom-style: solid !important;border-radius: 1px !important;}.vc_custom_1692278929158{border-top-width: 1px !important;border-right-width: 1px !important;border-bottom-width: 1px !important;border-left-width: 1px !important;border-left-color: #059444 !important;border-left-style: solid !important;border-right-color: #059444 !important;border-right-style: solid !important;border-top-color: #059444 !important;border-top-style: solid !important;border-bottom-color: #059444 !important;border-bottom-style: solid !important;border-radius: 1px !important;}'),(19247,3461,'_dt_fancy_header_text_transform','none'),(19248,3461,'_dt_fancy_header_title_color_mode','color'),(19249,3461,'_dt_fancy_header_title_color','#079547'),(19250,3461,'_dt_fancy_header_subtitle_heading',''),(19251,3461,'_dt_fancy_header_subtitle',''),(19252,3461,'_dt_fancy_header_subtitle_font_size','24'),(19253,3461,'_dt_fancy_header_subtitle_line_height','26'),(19254,3461,'_dt_fancy_header_subtitle_text_transform','none'),(19255,3461,'_dt_fancy_header_subtitle_color_mode','color'),(19256,3461,'_dt_fancy_header_subtitle_color','#792c8a'),(19257,3461,'_dt_fancy_header_bg_heading',''),(19258,3461,'_dt_fancy_header_bg_color','#ffffff'),(19259,3461,'_dt_fancy_header_bg_image_origin','custom'),(19260,3461,'_dt_fancy_header_bg_image','a:1:{i:0;i:3455;}'),(19261,3461,'_dt_fancy_header_bg_repeat','no-repeat'),(19262,3461,'_dt_fancy_header_bg_position_x','center'),(19263,3461,'_dt_fancy_header_bg_position_y','center'),(19264,3461,'_dt_fancy_header_bg_fullscreen','0'),(19265,3461,'_dt_fancy_header_bg_overlay','0'),(19266,3461,'_dt_fancy_header_overlay_color','#000'),(19267,3461,'_dt_fancy_header_bg_overlay_opacity','50'),(19268,3461,'_dt_fancy_header_scroll_effect','default'),(19269,3461,'_dt_fancy_header_bg_parallax','0.5'),(19270,3461,'_dt_fancy_header_responsiveness_heading',''),(15756,3249,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:400;s:6:\"height\";i:140;s:4:\"file\";s:33:\"2023/04/Alverm-30_400px-140px.png\";s:8:\"filesize\";i:4754;s:5:\"sizes\";a:6:{s:6:\"medium\";a:5:{s:4:\"file\";s:33:\"Alverm-30_400px-140px-300x105.png\";s:5:\"width\";i:300;s:6:\"height\";i:105;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:9932;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:33:\"Alverm-30_400px-140px-150x140.png\";s:5:\"width\";i:150;s:6:\"height\";i:140;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:2801;}s:21:\"woocommerce_thumbnail\";a:6:{s:4:\"file\";s:33:\"Alverm-30_400px-140px-300x140.png\";s:5:\"width\";i:300;s:6:\"height\";i:140;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:6584;s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:5:{s:4:\"file\";s:33:\"Alverm-30_400px-140px-200x140.png\";s:5:\"width\";i:200;s:6:\"height\";i:140;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:3642;}s:12:\"shop_catalog\";a:5:{s:4:\"file\";s:33:\"Alverm-30_400px-140px-300x140.png\";s:5:\"width\";i:300;s:6:\"height\";i:140;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:6584;}s:14:\"shop_thumbnail\";a:5:{s:4:\"file\";s:33:\"Alverm-30_400px-140px-200x140.png\";s:5:\"width\";i:200;s:6:\"height\";i:140;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:3642;}}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:{}}}'),(15757,3250,'_wp_attached_file','2023/05/AVI-B_-Logo-1.png'),(15760,3251,'_wp_attached_file','2023/05/AVI-B_-Logo-2.png'),(15759,3061,'_edit_lock','1692282035:1'),(19286,3468,'_wp_page_template','default'),(15790,3268,'_wpb_shortcodes_custom_css','.vc_custom_1692366072362{margin-top: 35px !important;padding-top: 65px !important;padding-bottom: 100px !important;}.vc_custom_1684836308288{margin-top: 15px !important;}.vc_custom_1692359205466{margin-top: 35px !important;}.vc_custom_1692359216075{margin-top: 35px !important;}.vc_custom_1692359231594{margin-top: 35px !important;}.vc_custom_1692359239274{margin-top: 35px !important;}.vc_custom_1692359246626{margin-top: 35px !important;}.vc_custom_1692359252258{margin-top: 35px !important;}.vc_custom_1692359258634{margin-top: 35px !important;}.vc_custom_1691995519863{background-color: #f4ab20 !important;border: 1px solid #f4ab20 !important;border-radius: 35px !important;}.vc_custom_1691995661095{background-color: #722f8b !important;border: 1px solid #722f8b !important;border-radius: 35px !important;}.vc_custom_1691995661095{background-color: #722f8b !important;border: 1px solid #722f8b !important;border-radius: 35px !important;}.vc_custom_1691995519863{background-color: #f4ab20 !important;border: 1px solid #f4ab20 !important;border-radius: 35px !important;}.vc_custom_1691996718116{border-radius: 35px !important;}.vc_custom_1691995519863{background-color: #f4ab20 !important;border: 1px solid #f4ab20 !important;border-radius: 35px !important;}.vc_custom_1692278936750{border-top-width: 1px !important;border-right-width: 1px !important;border-bottom-width: 1px !important;border-left-width: 1px !important;border-left-color: #059444 !important;border-left-style: solid !important;border-right-color: #059444 !important;border-right-style: solid !important;border-top-color: #059444 !important;border-top-style: solid !important;border-bottom-color: #059444 !important;border-bottom-style: solid !important;border-radius: 1px !important;}.vc_custom_1692278936750{border-top-width: 1px !important;border-right-width: 1px !important;border-bottom-width: 1px !important;border-left-width: 1px !important;border-left-color: #059444 !important;border-left-style: solid !important;border-right-color: #059444 !important;border-right-style: solid !important;border-top-color: #059444 !important;border-top-style: solid !important;border-bottom-color: #059444 !important;border-bottom-style: solid !important;border-radius: 1px !important;}.vc_custom_1692278929158{border-top-width: 1px !important;border-right-width: 1px !important;border-bottom-width: 1px !important;border-left-width: 1px !important;border-left-color: #059444 !important;border-left-style: solid !important;border-right-color: #059444 !important;border-right-style: solid !important;border-top-color: #059444 !important;border-top-style: solid !important;border-bottom-color: #059444 !important;border-bottom-style: solid !important;border-radius: 1px !important;}.vc_custom_1692278922309{border-top-width: 1px !important;border-right-width: 1px !important;border-bottom-width: 1px !important;border-left-width: 1px !important;border-left-color: #059444 !important;border-left-style: solid !important;border-right-color: #059444 !important;border-right-style: solid !important;border-top-color: #059444 !important;border-top-style: solid !important;border-bottom-color: #059444 !important;border-bottom-style: solid !important;border-radius: 1px !important;}.vc_custom_1692278922309{border-top-width: 1px !important;border-right-width: 1px !important;border-bottom-width: 1px !important;border-left-width: 1px !important;border-left-color: #059444 !important;border-left-style: solid !important;border-right-color: #059444 !important;border-right-style: solid !important;border-top-color: #059444 !important;border-top-style: solid !important;border-bottom-color: #059444 !important;border-bottom-style: solid !important;border-radius: 1px !important;}.vc_custom_1692278929158{border-top-width: 1px !important;border-right-width: 1px !important;border-bottom-width: 1px !important;border-left-width: 1px !important;border-left-color: #059444 !important;border-left-style: solid !important;border-right-color: #059444 !important;border-right-style: solid !important;border-top-color: #059444 !important;border-top-style: solid !important;border-bottom-color: #059444 !important;border-bottom-style: solid !important;border-radius: 1px !important;}.vc_custom_1692278936750{border-top-width: 1px !important;border-right-width: 1px !important;border-bottom-width: 1px !important;border-left-width: 1px !important;border-left-color: #059444 !important;border-left-style: solid !important;border-right-color: #059444 !important;border-right-style: solid !important;border-top-color: #059444 !important;border-top-style: solid !important;border-bottom-color: #059444 !important;border-bottom-style: solid !important;border-radius: 1px !important;}.vc_custom_1692278922309{border-top-width: 1px !important;border-right-width: 1px !important;border-bottom-width: 1px !important;border-left-width: 1px !important;border-left-color: #059444 !important;border-left-style: solid !important;border-right-color: #059444 !important;border-right-style: solid !important;border-top-color: #059444 !important;border-top-style: solid !important;border-bottom-color: #059444 !important;border-bottom-style: solid !important;border-radius: 1px !important;}.vc_custom_1692278929158{border-top-width: 1px !important;border-right-width: 1px !important;border-bottom-width: 1px !important;border-left-width: 1px !important;border-left-color: #059444 !important;border-left-style: solid !important;border-right-color: #059444 !important;border-right-style: solid !important;border-top-color: #059444 !important;border-top-style: solid !important;border-bottom-color: #059444 !important;border-bottom-style: solid !important;border-radius: 1px !important;}.vc_custom_1692278936750{border-top-width: 1px !important;border-right-width: 1px !important;border-bottom-width: 1px !important;border-left-width: 1px !important;border-left-color: #059444 !important;border-left-style: solid !important;border-right-color: #059444 !important;border-right-style: solid !important;border-top-color: #059444 !important;border-top-style: solid !important;border-bottom-color: #059444 !important;border-bottom-style: solid !important;border-radius: 1px !important;}.vc_custom_1692278936750{border-top-width: 1px !important;border-right-width: 1px !important;border-bottom-width: 1px !important;border-left-width: 1px !important;border-left-color: #059444 !important;border-left-style: solid !important;border-right-color: #059444 !important;border-right-style: solid !important;border-top-color: #059444 !important;border-top-style: solid !important;border-bottom-color: #059444 !important;border-bottom-style: solid !important;border-radius: 1px !important;}.vc_custom_1692278929158{border-top-width: 1px !important;border-right-width: 1px !important;border-bottom-width: 1px !important;border-left-width: 1px !important;border-left-color: #059444 !important;border-left-style: solid !important;border-right-color: #059444 !important;border-right-style: solid !important;border-top-color: #059444 !important;border-top-style: solid !important;border-bottom-color: #059444 !important;border-bottom-style: solid !important;border-radius: 1px !important;}.vc_custom_1692278922309{border-top-width: 1px !important;border-right-width: 1px !important;border-bottom-width: 1px !important;border-left-width: 1px !important;border-left-color: #059444 !important;border-left-style: solid !important;border-right-color: #059444 !important;border-right-style: solid !important;border-top-color: #059444 !important;border-top-style: solid !important;border-bottom-color: #059444 !important;border-bottom-style: solid !important;border-radius: 1px !important;}.vc_custom_1692278929158{border-top-width: 1px !important;border-right-width: 1px !important;border-bottom-width: 1px !important;border-left-width: 1px !important;border-left-color: #059444 !important;border-left-style: solid !important;border-right-color: #059444 !important;border-right-style: solid !important;border-top-color: #059444 !important;border-top-style: solid !important;border-bottom-color: #059444 !important;border-bottom-style: solid !important;border-radius: 1px !important;}'),(15788,3266,'_wpb_shortcodes_custom_css','.vc_custom_1689577528817{padding-bottom: 50px !important;}.vc_custom_1692198551378{padding-top: 50px !important;padding-bottom: 50px !important;}.vc_custom_1689578794814{padding-top: 50px !important;padding-bottom: 50px !important;}.vc_custom_1689578794814{padding-top: 50px !important;padding-bottom: 50px !important;}.vc_custom_1689577454678{margin-bottom: 50px !important;}.vc_custom_1692407941633{border-bottom-width: 1px !important;border-bottom-color: #079547 !important;border-bottom-style: solid !important;border-radius: 1px !important;}.vc_custom_1692407949383{border-bottom-width: 1px !important;border-bottom-color: #079547 !important;border-bottom-style: solid !important;border-radius: 1px !important;}.vc_custom_1692407957943{border-bottom-width: 1px !important;border-bottom-color: #079547 !important;border-bottom-style: solid !important;border-radius: 1px !important;}.vc_custom_1692407970279{border-bottom-width: 1px !important;border-bottom-color: #079547 !important;border-bottom-style: solid !important;border-radius: 1px !important;}.vc_custom_1691846530645{border-right-width: 1px !important;border-left-width: 1px !important;border-left-color: #000000 !important;border-left-style: solid !important;border-right-color: #000000 !important;border-right-style: solid !important;border-radius: 1px !important;}.vc_custom_1691846545469{border-right-width: 1px !important;border-left-width: 1px !important;border-left-color: #000000 !important;border-left-style: solid !important;border-right-color: #000000 !important;border-right-style: solid !important;border-radius: 1px !important;}.vc_custom_1691846563021{border-right-width: 1px !important;border-right-color: #000000 !important;border-right-style: solid !important;border-radius: 1px !important;}.vc_custom_1691846569845{border-right-width: 1px !important;border-right-color: #000000 !important;border-right-style: solid !important;border-radius: 1px !important;}.vc_custom_1691846576949{border-right-width: 1px !important;border-right-color: #000000 !important;border-right-style: solid !important;border-radius: 1px !important;}.vc_custom_1689578812611{margin-top: 50px !important;}.vc_custom_1689578812611{margin-top: 50px !important;}'),(19191,3461,'_tax_class',''),(19192,3461,'_manage_stock','no'),(19193,3461,'_backorders','no'),(19194,3461,'_sold_individually','no'),(19195,3461,'_virtual','no'),(19196,3461,'_downloadable','no'),(19197,3461,'_download_limit','-1'),(19198,3461,'_download_expiry','-1'),(19199,3461,'_thumbnail_id','3454'),(19200,3461,'_stock',NULL),(19201,3461,'_stock_status','instock'),(19202,3461,'_wc_average_rating','0'),(19203,3461,'_wc_review_count','0'),(19204,3461,'_product_version','8.0.2'),(19205,3461,'_dt_sidebar_position','disabled'),(19206,3461,'_dt_sidebar_widgetarea_id','sidebar_1'),(19207,3461,'_dt_sidebar_hide_on_mobile','0'),(19208,3461,'_dt_footer_show','1'),(19209,3461,'_dt_footer_widgetarea_id','sidebar_2'),(19210,3461,'_dt_footer_hide_on_mobile','0'),(19211,3461,'_dt_header_title','fancy'),(19212,3461,'_dt_header_background','normal'),(19213,3461,'_dt_header_background_below_slideshow','disabled'),(19214,3461,'_dt_header_transparent_bg_color_scheme','light'),(19215,3461,'_dt_header_transparent_top_bar_bg_color','#ffffff'),(19216,3461,'_dt_header_transparent_top_bar_bg_opacity','25'),(19217,3461,'_dt_header_transparent_bg_color','#000000'),(19218,3461,'_dt_header_transparent_bg_opacity','50'),(19219,3461,'_dt_header_disabled_background','normal'),(19220,3461,'_dt_header_disabled_transparent_bg_color_scheme','light'),(19221,3461,'_dt_header_disabled_transparent_top_bar_bg_color','#ffffff'),(19222,3461,'_dt_header_disabled_transparent_top_bar_bg_opacity','25'),(19223,3461,'_dt_header_disabled_transparent_bg_color','#000000'),(19224,3461,'_dt_header_disabled_transparent_bg_opacity','50'),(19225,3461,'_dt_page_overrides_top_margin','1%'),(19226,3461,'_dt_page_overrides_right_margin',''),(19227,3461,'_dt_page_overrides_bottom_margin',''),(19228,3461,'_dt_page_overrides_left_margin',''),(19229,3461,'_dt_mobile_page_padding_top',''),(19230,3461,'_dt_mobile_page_padding_right',''),(19231,3461,'_dt_mobile_page_padding_bottom',''),(19232,3461,'_dt_mobile_page_padding_left',''),(19233,3461,'_dt_fancy_header_layout_heading',''),(19234,3461,'_dt_fancy_header_title_aligment','all_left'),(19235,3461,'_dt_fancy_header_height','140'),(19236,3461,'_dt_fancy_header_padding-top','0px'),(19237,3461,'_dt_fancy_header_padding-bottom','0px'),(19238,3461,'_dt_fancy_header_breadcrumbs_heading',''),(19239,3461,'_dt_fancy_header_breadcrumbs','disabled'),(19240,3461,'_dt_fancy_header_breadcrumbs_text_color','#ffffff'),(19241,3461,'_dt_fancy_header_breadcrumbs_bg_color','disabled'),(19242,3461,'_dt_fancy_header_title_heading',''),(19243,3461,'_dt_fancy_header_title_mode','custom'),(19244,3461,'_dt_fancy_header_title',''),(19245,3461,'_dt_fancy_header_title_font_size','32'),(15839,12,'_hash','f180cfa9b55f0e4c4907fe2f237c2d94f3b18083'),(15838,3271,'_wpb_shortcodes_custom_css','.vc_custom_1692366072362{margin-top: 35px !important;padding-top: 65px !important;padding-bottom: 100px !important;}.vc_custom_1684836308288{margin-top: 15px !important;}.vc_custom_1692359205466{margin-top: 35px !important;}.vc_custom_1692359216075{margin-top: 35px !important;}.vc_custom_1692359231594{margin-top: 35px !important;}.vc_custom_1692359239274{margin-top: 35px !important;}.vc_custom_1692359246626{margin-top: 35px !important;}.vc_custom_1692359252258{margin-top: 35px !important;}.vc_custom_1692359258634{margin-top: 35px !important;}.vc_custom_1691995519863{background-color: #f4ab20 !important;border: 1px solid #f4ab20 !important;border-radius: 35px !important;}.vc_custom_1691995661095{background-color: #722f8b !important;border: 1px solid #722f8b !important;border-radius: 35px !important;}.vc_custom_1691995661095{background-color: #722f8b !important;border: 1px solid #722f8b !important;border-radius: 35px !important;}.vc_custom_1691995519863{background-color: #f4ab20 !important;border: 1px solid #f4ab20 !important;border-radius: 35px !important;}.vc_custom_1691996718116{border-radius: 35px !important;}.vc_custom_1691995519863{background-color: #f4ab20 !important;border: 1px solid #f4ab20 !important;border-radius: 35px !important;}.vc_custom_1692278922309{border-top-width: 1px !important;border-right-width: 1px !important;border-bottom-width: 1px !important;border-left-width: 1px !important;border-left-color: #059444 !important;border-left-style: solid !important;border-right-color: #059444 !important;border-right-style: solid !important;border-top-color: #059444 !important;border-top-style: solid !important;border-bottom-color: #059444 !important;border-bottom-style: solid !important;border-radius: 1px !important;}.vc_custom_1692278929158{border-top-width: 1px !important;border-right-width: 1px !important;border-bottom-width: 1px !important;border-left-width: 1px !important;border-left-color: #059444 !important;border-left-style: solid !important;border-right-color: #059444 !important;border-right-style: solid !important;border-top-color: #059444 !important;border-top-style: solid !important;border-bottom-color: #059444 !important;border-bottom-style: solid !important;border-radius: 1px !important;}.vc_custom_1692278936750{border-top-width: 1px !important;border-right-width: 1px !important;border-bottom-width: 1px !important;border-left-width: 1px !important;border-left-color: #059444 !important;border-left-style: solid !important;border-right-color: #059444 !important;border-right-style: solid !important;border-top-color: #059444 !important;border-top-style: solid !important;border-bottom-color: #059444 !important;border-bottom-style: solid !important;border-radius: 1px !important;}.vc_custom_1692278922309{border-top-width: 1px !important;border-right-width: 1px !important;border-bottom-width: 1px !important;border-left-width: 1px !important;border-left-color: #059444 !important;border-left-style: solid !important;border-right-color: #059444 !important;border-right-style: solid !important;border-top-color: #059444 !important;border-top-style: solid !important;border-bottom-color: #059444 !important;border-bottom-style: solid !important;border-radius: 1px !important;}.vc_custom_1692278929158{border-top-width: 1px !important;border-right-width: 1px !important;border-bottom-width: 1px !important;border-left-width: 1px !important;border-left-color: #059444 !important;border-left-style: solid !important;border-right-color: #059444 !important;border-right-style: solid !important;border-top-color: #059444 !important;border-top-style: solid !important;border-bottom-color: #059444 !important;border-bottom-style: solid !important;border-radius: 1px !important;}.vc_custom_1692278936750{border-top-width: 1px !important;border-right-width: 1px !important;border-bottom-width: 1px !important;border-left-width: 1px !important;border-left-color: #059444 !important;border-left-style: solid !important;border-right-color: #059444 !important;border-right-style: solid !important;border-top-color: #059444 !important;border-top-style: solid !important;border-bottom-color: #059444 !important;border-bottom-style: solid !important;border-radius: 1px !important;}.vc_custom_1692278936750{border-top-width: 1px !important;border-right-width: 1px !important;border-bottom-width: 1px !important;border-left-width: 1px !important;border-left-color: #059444 !important;border-left-style: solid !important;border-right-color: #059444 !important;border-right-style: solid !important;border-top-color: #059444 !important;border-top-style: solid !important;border-bottom-color: #059444 !important;border-bottom-style: solid !important;border-radius: 1px !important;}.vc_custom_1692278929158{border-top-width: 1px !important;border-right-width: 1px !important;border-bottom-width: 1px !important;border-left-width: 1px !important;border-left-color: #059444 !important;border-left-style: solid !important;border-right-color: #059444 !important;border-right-style: solid !important;border-top-color: #059444 !important;border-top-style: solid !important;border-bottom-color: #059444 !important;border-bottom-style: solid !important;border-radius: 1px !important;}.vc_custom_1692278922309{border-top-width: 1px !important;border-right-width: 1px !important;border-bottom-width: 1px !important;border-left-width: 1px !important;border-left-color: #059444 !important;border-left-style: solid !important;border-right-color: #059444 !important;border-right-style: solid !important;border-top-color: #059444 !important;border-top-style: solid !important;border-bottom-color: #059444 !important;border-bottom-style: solid !important;border-radius: 1px !important;}.vc_custom_1692278929158{border-top-width: 1px !important;border-right-width: 1px !important;border-bottom-width: 1px !important;border-left-width: 1px !important;border-left-color: #059444 !important;border-left-style: solid !important;border-right-color: #059444 !important;border-right-style: solid !important;border-top-color: #059444 !important;border-top-style: solid !important;border-bottom-color: #059444 !important;border-bottom-style: solid !important;border-radius: 1px !important;}'),(15846,3272,'_wpb_shortcodes_custom_css_updated','1'),(15849,3273,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:600;s:6:\"height\";i:358;s:4:\"file\";s:29:\"2023/08/Founded-in-2002-2.png\";s:8:\"filesize\";i:165942;s:5:\"sizes\";a:4:{s:6:\"medium\";a:5:{s:4:\"file\";s:29:\"Founded-in-2002-2-300x179.png\";s:5:\"width\";i:300;s:6:\"height\";i:179;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:39129;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:29:\"Founded-in-2002-2-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:21626;}s:21:\"woocommerce_thumbnail\";a:6:{s:4:\"file\";s:29:\"Founded-in-2002-2-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:80763;s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:5:{s:4:\"file\";s:29:\"Founded-in-2002-2-200x200.png\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:37667;}}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:{}}}'),(15856,3276,'_wp_attached_file','2023/08/2006.png'),(15850,3274,'_wpb_shortcodes_custom_css','.vc_custom_1692366072362{margin-top: 35px !important;padding-top: 65px !important;padding-bottom: 100px !important;}.vc_custom_1684836308288{margin-top: 15px !important;}.vc_custom_1692359205466{margin-top: 35px !important;}.vc_custom_1692359216075{margin-top: 35px !important;}.vc_custom_1692359231594{margin-top: 35px !important;}.vc_custom_1692359239274{margin-top: 35px !important;}.vc_custom_1692359246626{margin-top: 35px !important;}.vc_custom_1692359252258{margin-top: 35px !important;}.vc_custom_1692359258634{margin-top: 35px !important;}.vc_custom_1691995519863{background-color: #f4ab20 !important;border: 1px solid #f4ab20 !important;border-radius: 35px !important;}.vc_custom_1691995661095{background-color: #722f8b !important;border: 1px solid #722f8b !important;border-radius: 35px !important;}.vc_custom_1691995661095{background-color: #722f8b !important;border: 1px solid #722f8b !important;border-radius: 35px !important;}.vc_custom_1691995519863{background-color: #f4ab20 !important;border: 1px solid #f4ab20 !important;border-radius: 35px !important;}.vc_custom_1691996718116{border-radius: 35px !important;}.vc_custom_1691995519863{background-color: #f4ab20 !important;border: 1px solid #f4ab20 !important;border-radius: 35px !important;}.vc_custom_1692278922309{border-top-width: 1px !important;border-right-width: 1px !important;border-bottom-width: 1px !important;border-left-width: 1px !important;border-left-color: #059444 !important;border-left-style: solid !important;border-right-color: #059444 !important;border-right-style: solid !important;border-top-color: #059444 !important;border-top-style: solid !important;border-bottom-color: #059444 !important;border-bottom-style: solid !important;border-radius: 1px !important;}.vc_custom_1692278929158{border-top-width: 1px !important;border-right-width: 1px !important;border-bottom-width: 1px !important;border-left-width: 1px !important;border-left-color: #059444 !important;border-left-style: solid !important;border-right-color: #059444 !important;border-right-style: solid !important;border-top-color: #059444 !important;border-top-style: solid !important;border-bottom-color: #059444 !important;border-bottom-style: solid !important;border-radius: 1px !important;}.vc_custom_1692278936750{border-top-width: 1px !important;border-right-width: 1px !important;border-bottom-width: 1px !important;border-left-width: 1px !important;border-left-color: #059444 !important;border-left-style: solid !important;border-right-color: #059444 !important;border-right-style: solid !important;border-top-color: #059444 !important;border-top-style: solid !important;border-bottom-color: #059444 !important;border-bottom-style: solid !important;border-radius: 1px !important;}.vc_custom_1692278922309{border-top-width: 1px !important;border-right-width: 1px !important;border-bottom-width: 1px !important;border-left-width: 1px !important;border-left-color: #059444 !important;border-left-style: solid !important;border-right-color: #059444 !important;border-right-style: solid !important;border-top-color: #059444 !important;border-top-style: solid !important;border-bottom-color: #059444 !important;border-bottom-style: solid !important;border-radius: 1px !important;}.vc_custom_1692278929158{border-top-width: 1px !important;border-right-width: 1px !important;border-bottom-width: 1px !important;border-left-width: 1px !important;border-left-color: #059444 !important;border-left-style: solid !important;border-right-color: #059444 !important;border-right-style: solid !important;border-top-color: #059444 !important;border-top-style: solid !important;border-bottom-color: #059444 !important;border-bottom-style: solid !important;border-radius: 1px !important;}'),(15851,3274,'_wpb_shortcodes_custom_css_updated','1'),(15853,3275,'_wpb_shortcodes_custom_css','.vc_custom_1692366072362{margin-top: 35px !important;padding-top: 65px !important;padding-bottom: 100px !important;}.vc_custom_1684836308288{margin-top: 15px !important;}.vc_custom_1692359205466{margin-top: 35px !important;}.vc_custom_1692359216075{margin-top: 35px !important;}.vc_custom_1692359231594{margin-top: 35px !important;}.vc_custom_1692359239274{margin-top: 35px !important;}.vc_custom_1692359246626{margin-top: 35px !important;}.vc_custom_1692359252258{margin-top: 35px !important;}.vc_custom_1692359258634{margin-top: 35px !important;}.vc_custom_1691995519863{background-color: #f4ab20 !important;border: 1px solid #f4ab20 !important;border-radius: 35px !important;}.vc_custom_1691995661095{background-color: #722f8b !important;border: 1px solid #722f8b !important;border-radius: 35px !important;}.vc_custom_1691995661095{background-color: #722f8b !important;border: 1px solid #722f8b !important;border-radius: 35px !important;}.vc_custom_1691995519863{background-color: #f4ab20 !important;border: 1px solid #f4ab20 !important;border-radius: 35px !important;}.vc_custom_1691996718116{border-radius: 35px !important;}.vc_custom_1691995519863{background-color: #f4ab20 !important;border: 1px solid #f4ab20 !important;border-radius: 35px !important;}.vc_custom_1692278922309{border-top-width: 1px !important;border-right-width: 1px !important;border-bottom-width: 1px !important;border-left-width: 1px !important;border-left-color: #059444 !important;border-left-style: solid !important;border-right-color: #059444 !important;border-right-style: solid !important;border-top-color: #059444 !important;border-top-style: solid !important;border-bottom-color: #059444 !important;border-bottom-style: solid !important;border-radius: 1px !important;}.vc_custom_1692278929158{border-top-width: 1px !important;border-right-width: 1px !important;border-bottom-width: 1px !important;border-left-width: 1px !important;border-left-color: #059444 !important;border-left-style: solid !important;border-right-color: #059444 !important;border-right-style: solid !important;border-top-color: #059444 !important;border-top-style: solid !important;border-bottom-color: #059444 !important;border-bottom-style: solid !important;border-radius: 1px !important;}.vc_custom_1692278936750{border-top-width: 1px !important;border-right-width: 1px !important;border-bottom-width: 1px !important;border-left-width: 1px !important;border-left-color: #059444 !important;border-left-style: solid !important;border-right-color: #059444 !important;border-right-style: solid !important;border-top-color: #059444 !important;border-top-style: solid !important;border-bottom-color: #059444 !important;border-bottom-style: solid !important;border-radius: 1px !important;}.vc_custom_1692278922309{border-top-width: 1px !important;border-right-width: 1px !important;border-bottom-width: 1px !important;border-left-width: 1px !important;border-left-color: #059444 !important;border-left-style: solid !important;border-right-color: #059444 !important;border-right-style: solid !important;border-top-color: #059444 !important;border-top-style: solid !important;border-bottom-color: #059444 !important;border-bottom-style: solid !important;border-radius: 1px !important;}.vc_custom_1692278929158{border-top-width: 1px !important;border-right-width: 1px !important;border-bottom-width: 1px !important;border-left-width: 1px !important;border-left-color: #059444 !important;border-left-style: solid !important;border-right-color: #059444 !important;border-right-style: solid !important;border-top-color: #059444 !important;border-top-style: solid !important;border-bottom-color: #059444 !important;border-bottom-style: solid !important;border-radius: 1px !important;}'),(15854,3275,'_wpb_shortcodes_custom_css_updated','1'),(15857,3276,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:600;s:6:\"height\";i:358;s:4:\"file\";s:16:\"2023/08/2006.png\";s:8:\"filesize\";i:186137;s:5:\"sizes\";a:4:{s:6:\"medium\";a:5:{s:4:\"file\";s:16:\"2006-300x179.png\";s:5:\"width\";i:300;s:6:\"height\";i:179;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:39727;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:16:\"2006-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:21421;}s:21:\"woocommerce_thumbnail\";a:6:{s:4:\"file\";s:16:\"2006-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:80031;s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:5:{s:4:\"file\";s:16:\"2006-200x200.png\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:36910;}}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:{}}}'),(15858,3277,'_wp_attached_file','2023/08/2010.png'),(15859,3277,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:600;s:6:\"height\";i:358;s:4:\"file\";s:16:\"2023/08/2010.png\";s:8:\"filesize\";i:137442;s:5:\"sizes\";a:4:{s:6:\"medium\";a:5:{s:4:\"file\";s:16:\"2010-300x179.png\";s:5:\"width\";i:300;s:6:\"height\";i:179;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:114764;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:16:\"2010-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:48024;}s:21:\"woocommerce_thumbnail\";a:6:{s:4:\"file\";s:16:\"2010-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:185751;s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:5:{s:4:\"file\";s:16:\"2010-200x200.png\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:83843;}}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:{}}}'),(15860,3278,'_wp_attached_file','2023/08/2012.png'),(15861,3278,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:600;s:6:\"height\";i:358;s:4:\"file\";s:16:\"2023/08/2012.png\";s:8:\"filesize\";i:123635;s:5:\"sizes\";a:4:{s:6:\"medium\";a:5:{s:4:\"file\";s:16:\"2012-300x179.png\";s:5:\"width\";i:300;s:6:\"height\";i:179;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:95262;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:16:\"2012-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:43209;}s:21:\"woocommerce_thumbnail\";a:6:{s:4:\"file\";s:16:\"2012-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:165939;s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:5:{s:4:\"file\";s:16:\"2012-200x200.png\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:74358;}}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:{}}}'),(15862,3279,'_wp_attached_file','2023/08/2016.png'),(15863,3279,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:600;s:6:\"height\";i:358;s:4:\"file\";s:16:\"2023/08/2016.png\";s:8:\"filesize\";i:128509;s:5:\"sizes\";a:4:{s:6:\"medium\";a:5:{s:4:\"file\";s:16:\"2016-300x179.png\";s:5:\"width\";i:300;s:6:\"height\";i:179;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:104310;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:16:\"2016-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:46773;}s:21:\"woocommerce_thumbnail\";a:6:{s:4:\"file\";s:16:\"2016-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:186774;s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:5:{s:4:\"file\";s:16:\"2016-200x200.png\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:82726;}}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:{}}}'),(15864,3280,'_wp_attached_file','2023/08/Fully-automated-manufacturing-1.png'),(15865,3280,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:600;s:6:\"height\";i:358;s:4:\"file\";s:43:\"2023/08/Fully-automated-manufacturing-1.png\";s:8:\"filesize\";i:102373;s:5:\"sizes\";a:4:{s:6:\"medium\";a:5:{s:4:\"file\";s:43:\"Fully-automated-manufacturing-1-300x179.png\";s:5:\"width\";i:300;s:6:\"height\";i:179;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:84824;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:43:\"Fully-automated-manufacturing-1-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:36077;}s:21:\"woocommerce_thumbnail\";a:6:{s:4:\"file\";s:43:\"Fully-automated-manufacturing-1-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:148498;s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:5:{s:4:\"file\";s:43:\"Fully-automated-manufacturing-1-200x200.png\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:64206;}}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:{}}}'),(15866,3281,'_wp_attached_file','2023/08/Dyvesta.png'),(15867,3281,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:600;s:6:\"height\";i:358;s:4:\"file\";s:19:\"2023/08/Dyvesta.png\";s:8:\"filesize\";i:8779;s:5:\"sizes\";a:4:{s:6:\"medium\";a:5:{s:4:\"file\";s:19:\"Dyvesta-300x179.png\";s:5:\"width\";i:300;s:6:\"height\";i:179;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:17552;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:19:\"Dyvesta-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:12286;}s:21:\"woocommerce_thumbnail\";a:6:{s:4:\"file\";s:19:\"Dyvesta-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:28258;s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:5:{s:4:\"file\";s:19:\"Dyvesta-200x200.png\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:17748;}}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:{}}}'),(22196,3602,'_dt_fancy_header_bg_repeat','no-repeat'),(15868,3282,'_wpb_shortcodes_custom_css','.vc_custom_1692366072362{margin-top: 35px !important;padding-top: 65px !important;padding-bottom: 100px !important;}.vc_custom_1684836308288{margin-top: 15px !important;}.vc_custom_1692359205466{margin-top: 35px !important;}.vc_custom_1692359216075{margin-top: 35px !important;}.vc_custom_1692359231594{margin-top: 35px !important;}.vc_custom_1692359239274{margin-top: 35px !important;}.vc_custom_1692359246626{margin-top: 35px !important;}.vc_custom_1692359252258{margin-top: 35px !important;}.vc_custom_1692359258634{margin-top: 35px !important;}.vc_custom_1691995519863{background-color: #f4ab20 !important;border: 1px solid #f4ab20 !important;border-radius: 35px !important;}.vc_custom_1691995661095{background-color: #722f8b !important;border: 1px solid #722f8b !important;border-radius: 35px !important;}.vc_custom_1691995661095{background-color: #722f8b !important;border: 1px solid #722f8b !important;border-radius: 35px !important;}.vc_custom_1691995519863{background-color: #f4ab20 !important;border: 1px solid #f4ab20 !important;border-radius: 35px !important;}.vc_custom_1691996718116{border-radius: 35px !important;}.vc_custom_1691995519863{background-color: #f4ab20 !important;border: 1px solid #f4ab20 !important;border-radius: 35px !important;}.vc_custom_1692278922309{border-top-width: 1px !important;border-right-width: 1px !important;border-bottom-width: 1px !important;border-left-width: 1px !important;border-left-color: #059444 !important;border-left-style: solid !important;border-right-color: #059444 !important;border-right-style: solid !important;border-top-color: #059444 !important;border-top-style: solid !important;border-bottom-color: #059444 !important;border-bottom-style: solid !important;border-radius: 1px !important;}.vc_custom_1692278929158{border-top-width: 1px !important;border-right-width: 1px !important;border-bottom-width: 1px !important;border-left-width: 1px !important;border-left-color: #059444 !important;border-left-style: solid !important;border-right-color: #059444 !important;border-right-style: solid !important;border-top-color: #059444 !important;border-top-style: solid !important;border-bottom-color: #059444 !important;border-bottom-style: solid !important;border-radius: 1px !important;}.vc_custom_1692278936750{border-top-width: 1px !important;border-right-width: 1px !important;border-bottom-width: 1px !important;border-left-width: 1px !important;border-left-color: #059444 !important;border-left-style: solid !important;border-right-color: #059444 !important;border-right-style: solid !important;border-top-color: #059444 !important;border-top-style: solid !important;border-bottom-color: #059444 !important;border-bottom-style: solid !important;border-radius: 1px !important;}.vc_custom_1692278922309{border-top-width: 1px !important;border-right-width: 1px !important;border-bottom-width: 1px !important;border-left-width: 1px !important;border-left-color: #059444 !important;border-left-style: solid !important;border-right-color: #059444 !important;border-right-style: solid !important;border-top-color: #059444 !important;border-top-style: solid !important;border-bottom-color: #059444 !important;border-bottom-style: solid !important;border-radius: 1px !important;}.vc_custom_1692278929158{border-top-width: 1px !important;border-right-width: 1px !important;border-bottom-width: 1px !important;border-left-width: 1px !important;border-left-color: #059444 !important;border-left-style: solid !important;border-right-color: #059444 !important;border-right-style: solid !important;border-top-color: #059444 !important;border-top-style: solid !important;border-bottom-color: #059444 !important;border-bottom-style: solid !important;border-radius: 1px !important;}'),(15869,3282,'_wpb_shortcodes_custom_css_updated','1'),(15874,3284,'_wpb_shortcodes_custom_css','.vc_custom_1692366072362{margin-top: 35px !important;padding-top: 65px !important;padding-bottom: 100px !important;}.vc_custom_1684836308288{margin-top: 15px !important;}.vc_custom_1692359205466{margin-top: 35px !important;}.vc_custom_1692359216075{margin-top: 35px !important;}.vc_custom_1692359231594{margin-top: 35px !important;}.vc_custom_1692359239274{margin-top: 35px !important;}.vc_custom_1692359246626{margin-top: 35px !important;}.vc_custom_1692422601938{margin-top: 35px !important;}.vc_custom_1692359258634{margin-top: 35px !important;}.vc_custom_1691995519863{background-color: #f4ab20 !important;border: 1px solid #f4ab20 !important;border-radius: 35px !important;}.vc_custom_1691995661095{background-color: #722f8b !important;border: 1px solid #722f8b !important;border-radius: 35px !important;}.vc_custom_1691995661095{background-color: #722f8b !important;border: 1px solid #722f8b !important;border-radius: 35px !important;}.vc_custom_1691995519863{background-color: #f4ab20 !important;border: 1px solid #f4ab20 !important;border-radius: 35px !important;}.vc_custom_1691996718116{border-radius: 35px !important;}.vc_custom_1691995519863{background-color: #f4ab20 !important;border: 1px solid #f4ab20 !important;border-radius: 35px !important;}.vc_custom_1692278922309{border-top-width: 1px !important;border-right-width: 1px !important;border-bottom-width: 1px !important;border-left-width: 1px !important;border-left-color: #059444 !important;border-left-style: solid !important;border-right-color: #059444 !important;border-right-style: solid !important;border-top-color: #059444 !important;border-top-style: solid !important;border-bottom-color: #059444 !important;border-bottom-style: solid !important;border-radius: 1px !important;}.vc_custom_1692278929158{border-top-width: 1px !important;border-right-width: 1px !important;border-bottom-width: 1px !important;border-left-width: 1px !important;border-left-color: #059444 !important;border-left-style: solid !important;border-right-color: #059444 !important;border-right-style: solid !important;border-top-color: #059444 !important;border-top-style: solid !important;border-bottom-color: #059444 !important;border-bottom-style: solid !important;border-radius: 1px !important;}.vc_custom_1692278936750{border-top-width: 1px !important;border-right-width: 1px !important;border-bottom-width: 1px !important;border-left-width: 1px !important;border-left-color: #059444 !important;border-left-style: solid !important;border-right-color: #059444 !important;border-right-style: solid !important;border-top-color: #059444 !important;border-top-style: solid !important;border-bottom-color: #059444 !important;border-bottom-style: solid !important;border-radius: 1px !important;}.vc_custom_1692278922309{border-top-width: 1px !important;border-right-width: 1px !important;border-bottom-width: 1px !important;border-left-width: 1px !important;border-left-color: #059444 !important;border-left-style: solid !important;border-right-color: #059444 !important;border-right-style: solid !important;border-top-color: #059444 !important;border-top-style: solid !important;border-bottom-color: #059444 !important;border-bottom-style: solid !important;border-radius: 1px !important;}.vc_custom_1692278929158{border-top-width: 1px !important;border-right-width: 1px !important;border-bottom-width: 1px !important;border-left-width: 1px !important;border-left-color: #059444 !important;border-left-style: solid !important;border-right-color: #059444 !important;border-right-style: solid !important;border-top-color: #059444 !important;border-top-style: solid !important;border-bottom-color: #059444 !important;border-bottom-style: solid !important;border-radius: 1px !important;}'),(15875,3284,'_wpb_shortcodes_custom_css_updated','1'),(15877,3285,'_wpb_shortcodes_custom_css','.vc_custom_1692366072362{margin-top: 35px !important;padding-top: 65px !important;padding-bottom: 100px !important;}.vc_custom_1684836308288{margin-top: 15px !important;}.vc_custom_1692359205466{margin-top: 35px !important;}.vc_custom_1692359216075{margin-top: 35px !important;}.vc_custom_1692359231594{margin-top: 35px !important;}.vc_custom_1692359239274{margin-top: 35px !important;}.vc_custom_1692359246626{margin-top: 35px !important;}.vc_custom_1692422601938{margin-top: 35px !important;}.vc_custom_1692359258634{margin-top: 35px !important;}.vc_custom_1691995519863{background-color: #f4ab20 !important;border: 1px solid #f4ab20 !important;border-radius: 35px !important;}.vc_custom_1691995661095{background-color: #722f8b !important;border: 1px solid #722f8b !important;border-radius: 35px !important;}.vc_custom_1691995661095{background-color: #722f8b !important;border: 1px solid #722f8b !important;border-radius: 35px !important;}.vc_custom_1691995519863{background-color: #f4ab20 !important;border: 1px solid #f4ab20 !important;border-radius: 35px !important;}.vc_custom_1691996718116{border-radius: 35px !important;}.vc_custom_1691995519863{background-color: #f4ab20 !important;border: 1px solid #f4ab20 !important;border-radius: 35px !important;}.vc_custom_1692278922309{border-top-width: 1px !important;border-right-width: 1px !important;border-bottom-width: 1px !important;border-left-width: 1px !important;border-left-color: #059444 !important;border-left-style: solid !important;border-right-color: #059444 !important;border-right-style: solid !important;border-top-color: #059444 !important;border-top-style: solid !important;border-bottom-color: #059444 !important;border-bottom-style: solid !important;border-radius: 1px !important;}.vc_custom_1692278929158{border-top-width: 1px !important;border-right-width: 1px !important;border-bottom-width: 1px !important;border-left-width: 1px !important;border-left-color: #059444 !important;border-left-style: solid !important;border-right-color: #059444 !important;border-right-style: solid !important;border-top-color: #059444 !important;border-top-style: solid !important;border-bottom-color: #059444 !important;border-bottom-style: solid !important;border-radius: 1px !important;}.vc_custom_1692278936750{border-top-width: 1px !important;border-right-width: 1px !important;border-bottom-width: 1px !important;border-left-width: 1px !important;border-left-color: #059444 !important;border-left-style: solid !important;border-right-color: #059444 !important;border-right-style: solid !important;border-top-color: #059444 !important;border-top-style: solid !important;border-bottom-color: #059444 !important;border-bottom-style: solid !important;border-radius: 1px !important;}.vc_custom_1692278922309{border-top-width: 1px !important;border-right-width: 1px !important;border-bottom-width: 1px !important;border-left-width: 1px !important;border-left-color: #059444 !important;border-left-style: solid !important;border-right-color: #059444 !important;border-right-style: solid !important;border-top-color: #059444 !important;border-top-style: solid !important;border-bottom-color: #059444 !important;border-bottom-style: solid !important;border-radius: 1px !important;}.vc_custom_1692278929158{border-top-width: 1px !important;border-right-width: 1px !important;border-bottom-width: 1px !important;border-left-width: 1px !important;border-left-color: #059444 !important;border-left-style: solid !important;border-right-color: #059444 !important;border-right-style: solid !important;border-top-color: #059444 !important;border-top-style: solid !important;border-bottom-color: #059444 !important;border-bottom-style: solid !important;border-radius: 1px !important;}'),(15878,3285,'_wpb_shortcodes_custom_css_updated','1'),(15880,3286,'_wpb_shortcodes_custom_css','.vc_custom_1692366072362{margin-top: 35px !important;padding-top: 65px !important;padding-bottom: 100px !important;}.vc_custom_1684836308288{margin-top: 15px !important;}.vc_custom_1692359205466{margin-top: 35px !important;}.vc_custom_1692359216075{margin-top: 35px !important;}.vc_custom_1692359231594{margin-top: 35px !important;}.vc_custom_1692359239274{margin-top: 35px !important;}.vc_custom_1692359246626{margin-top: 35px !important;}.vc_custom_1692422601938{margin-top: 35px !important;}.vc_custom_1692359258634{margin-top: 35px !important;}.vc_custom_1691995519863{background-color: #f4ab20 !important;border: 1px solid #f4ab20 !important;border-radius: 35px !important;}.vc_custom_1691995661095{background-color: #722f8b !important;border: 1px solid #722f8b !important;border-radius: 35px !important;}.vc_custom_1691995661095{background-color: #722f8b !important;border: 1px solid #722f8b !important;border-radius: 35px !important;}.vc_custom_1691995519863{background-color: #f4ab20 !important;border: 1px solid #f4ab20 !important;border-radius: 35px !important;}.vc_custom_1691996718116{border-radius: 35px !important;}.vc_custom_1691995519863{background-color: #f4ab20 !important;border: 1px solid #f4ab20 !important;border-radius: 35px !important;}.vc_custom_1692278922309{border-top-width: 1px !important;border-right-width: 1px !important;border-bottom-width: 1px !important;border-left-width: 1px !important;border-left-color: #059444 !important;border-left-style: solid !important;border-right-color: #059444 !important;border-right-style: solid !important;border-top-color: #059444 !important;border-top-style: solid !important;border-bottom-color: #059444 !important;border-bottom-style: solid !important;border-radius: 1px !important;}.vc_custom_1692278929158{border-top-width: 1px !important;border-right-width: 1px !important;border-bottom-width: 1px !important;border-left-width: 1px !important;border-left-color: #059444 !important;border-left-style: solid !important;border-right-color: #059444 !important;border-right-style: solid !important;border-top-color: #059444 !important;border-top-style: solid !important;border-bottom-color: #059444 !important;border-bottom-style: solid !important;border-radius: 1px !important;}.vc_custom_1692278936750{border-top-width: 1px !important;border-right-width: 1px !important;border-bottom-width: 1px !important;border-left-width: 1px !important;border-left-color: #059444 !important;border-left-style: solid !important;border-right-color: #059444 !important;border-right-style: solid !important;border-top-color: #059444 !important;border-top-style: solid !important;border-bottom-color: #059444 !important;border-bottom-style: solid !important;border-radius: 1px !important;}.vc_custom_1692278922309{border-top-width: 1px !important;border-right-width: 1px !important;border-bottom-width: 1px !important;border-left-width: 1px !important;border-left-color: #059444 !important;border-left-style: solid !important;border-right-color: #059444 !important;border-right-style: solid !important;border-top-color: #059444 !important;border-top-style: solid !important;border-bottom-color: #059444 !important;border-bottom-style: solid !important;border-radius: 1px !important;}.vc_custom_1692278929158{border-top-width: 1px !important;border-right-width: 1px !important;border-bottom-width: 1px !important;border-left-width: 1px !important;border-left-color: #059444 !important;border-left-style: solid !important;border-right-color: #059444 !important;border-right-style: solid !important;border-top-color: #059444 !important;border-top-style: solid !important;border-bottom-color: #059444 !important;border-bottom-style: solid !important;border-radius: 1px !important;}'),(15881,3286,'_wpb_shortcodes_custom_css_updated','1'),(15885,3287,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1300;s:6:\"height\";i:300;s:4:\"file\";s:30:\"2023/08/Medivesta-Banner_1.png\";s:8:\"filesize\";i:212858;s:5:\"sizes\";a:7:{s:6:\"medium\";a:5:{s:4:\"file\";s:29:\"Medivesta-Banner_1-300x69.png\";s:5:\"width\";i:300;s:6:\"height\";i:69;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:37873;}s:5:\"large\";a:5:{s:4:\"file\";s:31:\"Medivesta-Banner_1-1024x236.png\";s:5:\"width\";i:1024;s:6:\"height\";i:236;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:412798;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:30:\"Medivesta-Banner_1-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:40276;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:30:\"Medivesta-Banner_1-768x177.png\";s:5:\"width\";i:768;s:6:\"height\";i:177;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:228920;}s:21:\"woocommerce_thumbnail\";a:6:{s:4:\"file\";s:30:\"Medivesta-Banner_1-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:55340;s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:5:{s:4:\"file\";s:30:\"Medivesta-Banner_1-600x138.png\";s:5:\"width\";i:600;s:6:\"height\";i:138;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:138808;}s:29:\"woocommerce_gallery_thumbnail\";a:5:{s:4:\"file\";s:30:\"Medivesta-Banner_1-200x200.png\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:69098;}}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:{}}}'),(15886,3289,'_wpb_shortcodes_custom_css','.vc_custom_1689580294399{padding-top: 50px !important;padding-bottom: 50px !important;}.vc_custom_1691129087062{border-top-width: 1px !important;border-top-color: #079547 !important;border-top-style: solid !important;border-radius: 1px !important;}.vc_custom_1692423054521{border-top-width: 1px !important;border-top-color: #079547 !important;border-top-style: solid !important;border-radius: 1px !important;}.vc_custom_1692423045746{border-top-width: 1px !important;border-top-color: #079547 !important;border-top-style: solid !important;border-radius: 1px !important;}.vc_custom_1692423061906{border-top-width: 1px !important;border-top-color: #079547 !important;border-top-style: solid !important;border-radius: 1px !important;}.vc_custom_1692423068642{border-top-width: 1px !important;border-top-color: #079547 !important;border-top-style: solid !important;border-radius: 1px !important;}.vc_custom_1692423075811{border-top-width: 1px !important;border-top-color: #079547 !important;border-top-style: solid !important;border-radius: 1px !important;}'),(15887,3289,'_wpb_shortcodes_custom_css_updated','1'),(15889,3290,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1300;s:6:\"height\";i:300;s:4:\"file\";s:33:\"2023/08/Vaccination-Service_1.png\";s:8:\"filesize\";i:133789;s:5:\"sizes\";a:7:{s:6:\"medium\";a:5:{s:4:\"file\";s:32:\"Vaccination-Service_1-300x69.png\";s:5:\"width\";i:300;s:6:\"height\";i:69;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:31725;}s:5:\"large\";a:5:{s:4:\"file\";s:34:\"Vaccination-Service_1-1024x236.png\";s:5:\"width\";i:1024;s:6:\"height\";i:236;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:254510;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:33:\"Vaccination-Service_1-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:27834;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:33:\"Vaccination-Service_1-768x177.png\";s:5:\"width\";i:768;s:6:\"height\";i:177;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:152580;}s:21:\"woocommerce_thumbnail\";a:6:{s:4:\"file\";s:33:\"Vaccination-Service_1-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:39570;s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:5:{s:4:\"file\";s:33:\"Vaccination-Service_1-600x138.png\";s:5:\"width\";i:600;s:6:\"height\";i:138;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:100282;}s:29:\"woocommerce_gallery_thumbnail\";a:5:{s:4:\"file\";s:33:\"Vaccination-Service_1-200x200.png\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:44954;}}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:{}}}'),(15890,2998,'_wpb_shortcodes_custom_css_updated','1'),(15891,2994,'_wpb_shortcodes_custom_css_updated','1'),(15892,3291,'_wpb_shortcodes_custom_css','.vc_custom_1689579703311{padding-top: 50px !important;padding-bottom: 50px !important;}.vc_custom_1689579703311{padding-top: 50px !important;padding-bottom: 50px !important;}.vc_custom_1689579850874{margin-top: 35px !important;margin-bottom: 35px !important;}'),(15893,3291,'_wpb_shortcodes_custom_css_updated','1'),(15895,3292,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1300;s:6:\"height\";i:300;s:4:\"file\";s:31:\"2023/08/Technical-Service_1.png\";s:8:\"filesize\";i:183060;s:5:\"sizes\";a:7:{s:6:\"medium\";a:5:{s:4:\"file\";s:30:\"Technical-Service_1-300x69.png\";s:5:\"width\";i:300;s:6:\"height\";i:69;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:33467;}s:5:\"large\";a:5:{s:4:\"file\";s:32:\"Technical-Service_1-1024x236.png\";s:5:\"width\";i:1024;s:6:\"height\";i:236;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:381061;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:31:\"Technical-Service_1-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:34907;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:31:\"Technical-Service_1-768x177.png\";s:5:\"width\";i:768;s:6:\"height\";i:177;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:206483;}s:21:\"woocommerce_thumbnail\";a:6:{s:4:\"file\";s:31:\"Technical-Service_1-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:45966;s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:5:{s:4:\"file\";s:31:\"Technical-Service_1-600x138.png\";s:5:\"width\";i:600;s:6:\"height\";i:138;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:123741;}s:29:\"woocommerce_gallery_thumbnail\";a:5:{s:4:\"file\";s:31:\"Technical-Service_1-200x200.png\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:59227;}}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:{}}}'),(15897,3293,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1300;s:6:\"height\";i:300;s:4:\"file\";s:29:\"2023/08/FARMER-TRAINING_1.png\";s:8:\"filesize\";i:222548;s:5:\"sizes\";a:7:{s:6:\"medium\";a:5:{s:4:\"file\";s:28:\"FARMER-TRAINING_1-300x69.png\";s:5:\"width\";i:300;s:6:\"height\";i:69;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:39662;}s:5:\"large\";a:5:{s:4:\"file\";s:30:\"FARMER-TRAINING_1-1024x236.png\";s:5:\"width\";i:1024;s:6:\"height\";i:236;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:419195;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:29:\"FARMER-TRAINING_1-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:39896;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:29:\"FARMER-TRAINING_1-768x177.png\";s:5:\"width\";i:768;s:6:\"height\";i:177;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:235077;}s:21:\"woocommerce_thumbnail\";a:6:{s:4:\"file\";s:29:\"FARMER-TRAINING_1-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:59092;s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:5:{s:4:\"file\";s:29:\"FARMER-TRAINING_1-600x138.png\";s:5:\"width\";i:600;s:6:\"height\";i:138;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:144515;}s:29:\"woocommerce_gallery_thumbnail\";a:5:{s:4:\"file\";s:29:\"FARMER-TRAINING_1-200x200.png\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:67611;}}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:{}}}'),(15898,3297,'_wp_attached_file','2023/08/PET-CARE_1.png'),(15899,3297,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1300;s:6:\"height\";i:300;s:4:\"file\";s:22:\"2023/08/PET-CARE_1.png\";s:8:\"filesize\";i:187266;s:5:\"sizes\";a:7:{s:6:\"medium\";a:5:{s:4:\"file\";s:21:\"PET-CARE_1-300x69.png\";s:5:\"width\";i:300;s:6:\"height\";i:69;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:35580;}s:5:\"large\";a:5:{s:4:\"file\";s:23:\"PET-CARE_1-1024x236.png\";s:5:\"width\";i:1024;s:6:\"height\";i:236;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:373953;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:22:\"PET-CARE_1-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:37908;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:22:\"PET-CARE_1-768x177.png\";s:5:\"width\";i:768;s:6:\"height\";i:177;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:208256;}s:21:\"woocommerce_thumbnail\";a:6:{s:4:\"file\";s:22:\"PET-CARE_1-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:52991;s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:5:{s:4:\"file\";s:22:\"PET-CARE_1-600x138.png\";s:5:\"width\";i:600;s:6:\"height\";i:138;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:127617;}s:29:\"woocommerce_gallery_thumbnail\";a:5:{s:4:\"file\";s:22:\"PET-CARE_1-200x200.png\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:64044;}}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:{}}}'),(28078,3691,'_wp_attached_file','2023/09/19-Farmchemie.jpg'),(28077,3690,'_edit_lock','1694699162:1'),(28076,3690,'_edit_last','1'),(28075,2454,'_wp_desired_post_slug',''),(28074,2454,'_wp_trash_meta_time','1694698440'),(28073,2454,'_wp_trash_meta_status','draft'),(15911,2610,'_wp_old_date','2023-06-14'),(19525,3500,'_wpb_shortcodes_custom_css','.vc_custom_1419240516480{background-color: #f9f9f9 !important;}'),(19524,3500,'_wpb_vc_js_status','true'),(19523,3500,'_edit_lock','1694421715:1'),(19522,3500,'_edit_last','1'),(16972,3352,'_tax_status','taxable'),(15922,2911,'_wp_old_date','2023-08-12'),(15923,2422,'_wp_old_date','2023-08-12'),(15925,3034,'_wp_old_date','2023-08-12'),(15926,3038,'_wp_old_date','2023-08-12'),(15927,3042,'_wp_old_date','2023-08-12'),(15928,3104,'_wp_old_date','2023-08-12'),(15929,2935,'_wp_old_date','2023-08-12'),(15930,2417,'_wp_old_date','2023-08-12'),(15931,2418,'_wp_old_date','2023-08-12'),(15932,2419,'_wp_old_date','2023-08-12'),(15933,2420,'_wp_old_date','2023-08-12'),(15934,2421,'_wp_old_date','2023-08-12'),(15935,39,'_wp_old_date','2023-08-12'),(15936,3308,'_wp_attached_file','2023/08/ABOUT-US.gif'),(15937,3308,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1300;s:6:\"height\";i:300;s:4:\"file\";s:20:\"2023/08/ABOUT-US.gif\";s:8:\"filesize\";i:358357;s:5:\"sizes\";a:7:{s:6:\"medium\";a:5:{s:4:\"file\";s:19:\"ABOUT-US-300x69.gif\";s:5:\"width\";i:300;s:6:\"height\";i:69;s:9:\"mime-type\";s:9:\"image/gif\";s:8:\"filesize\";i:16856;}s:5:\"large\";a:5:{s:4:\"file\";s:21:\"ABOUT-US-1024x236.gif\";s:5:\"width\";i:1024;s:6:\"height\";i:236;s:9:\"mime-type\";s:9:\"image/gif\";s:8:\"filesize\";i:157543;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:20:\"ABOUT-US-150x150.gif\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/gif\";s:8:\"filesize\";i:18007;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:20:\"ABOUT-US-768x177.gif\";s:5:\"width\";i:768;s:6:\"height\";i:177;s:9:\"mime-type\";s:9:\"image/gif\";s:8:\"filesize\";i:89177;}s:21:\"woocommerce_thumbnail\";a:6:{s:4:\"file\";s:20:\"ABOUT-US-300x300.gif\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/gif\";s:8:\"filesize\";i:52073;s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:5:{s:4:\"file\";s:20:\"ABOUT-US-600x138.gif\";s:5:\"width\";i:600;s:6:\"height\";i:138;s:9:\"mime-type\";s:9:\"image/gif\";s:8:\"filesize\";i:55886;}s:29:\"woocommerce_gallery_thumbnail\";a:5:{s:4:\"file\";s:20:\"ABOUT-US-200x200.gif\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/gif\";s:8:\"filesize\";i:29823;}}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:{}}}'),(16549,3326,'_wp_attached_file','2023/08/AVI-VE_600px.png'),(16550,3326,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:600;s:6:\"height\";i:600;s:4:\"file\";s:24:\"2023/08/AVI-VE_600px.png\";s:8:\"filesize\";i:60350;s:5:\"sizes\";a:4:{s:6:\"medium\";a:5:{s:4:\"file\";s:24:\"AVI-VE_600px-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:51808;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:24:\"AVI-VE_600px-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:16302;}s:21:\"woocommerce_thumbnail\";a:6:{s:4:\"file\";s:24:\"AVI-VE_600px-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:51808;s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:5:{s:4:\"file\";s:24:\"AVI-VE_600px-200x200.png\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:26242;}}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:{}}}'),(16551,3327,'_wp_attached_file','2023/08/AVI-VE_logo.png'),(16552,3327,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:300;s:6:\"height\";i:74;s:4:\"file\";s:23:\"2023/08/AVI-VE_logo.png\";s:8:\"filesize\";i:2108;s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:22:\"AVI-VE_logo-150x74.png\";s:5:\"width\";i:150;s:6:\"height\";i:74;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:2710;}s:29:\"woocommerce_gallery_thumbnail\";a:5:{s:4:\"file\";s:22:\"AVI-VE_logo-200x74.png\";s:5:\"width\";i:200;s:6:\"height\";i:74;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:3799;}}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:{}}}'),(16553,3328,'_wp_attached_file','2023/08/AVI-VE.pdf'),(16554,3328,'_wp_attachment_metadata','a:2:{s:5:\"sizes\";a:3:{s:4:\"full\";a:5:{s:4:\"file\";s:14:\"AVI-VE-pdf.jpg\";s:5:\"width\";i:384;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:145806;}s:6:\"medium\";a:5:{s:4:\"file\";s:22:\"AVI-VE-pdf-225x300.jpg\";s:5:\"width\";i:225;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:81705;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:22:\"AVI-VE-pdf-113x150.jpg\";s:5:\"width\";i:113;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:58136;}}s:8:\"filesize\";i:1492520;}'),(20018,3549,'_dt_mobile_page_padding_top',''),(19955,3548,'_dt_fancy_header_bg_repeat','no-repeat'),(19801,3547,'_wc_review_count','0'),(19800,3547,'_wc_average_rating','0'),(19799,3547,'_stock_status','instock'),(19744,3361,'_wqoecf_disable_form','no'),(19743,3361,'_wp_page_template','default'),(19745,3352,'_product_attributes','a:1:{s:15:\"pa_product-type\";a:6:{s:4:\"name\";s:15:\"pa_product-type\";s:5:\"value\";s:0:\"\";s:8:\"position\";i:0;s:10:\"is_visible\";i:0;s:12:\"is_variation\";i:0;s:11:\"is_taxonomy\";i:1;}}'),(19651,3522,'_dt_header_title','enabled'),(19650,3522,'_dt_footer_hide_on_mobile','0'),(19619,3525,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:500;s:6:\"height\";i:500;s:4:\"file\";s:15:\"2023/09/a10.jpg\";s:8:\"filesize\";i:306196;s:5:\"sizes\";a:4:{s:6:\"medium\";a:5:{s:4:\"file\";s:15:\"a10-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:29373;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:15:\"a10-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:9554;}s:21:\"woocommerce_thumbnail\";a:6:{s:4:\"file\";s:15:\"a10-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:29373;s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:5:{s:4:\"file\";s:15:\"a10-200x200.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:14653;}}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:{}}}'),(19618,3525,'_wp_attached_file','2023/09/a10.jpg'),(19556,3515,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:500;s:6:\"height\";i:500;s:4:\"file\";s:14:\"2023/09/10.jpg\";s:8:\"filesize\";i:298215;s:5:\"sizes\";a:4:{s:6:\"medium\";a:5:{s:4:\"file\";s:14:\"10-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:32983;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:14:\"10-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:9917;}s:21:\"woocommerce_thumbnail\";a:6:{s:4:\"file\";s:14:\"10-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:32983;s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:5:{s:4:\"file\";s:14:\"10-200x200.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:15604;}}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:{}}}'),(19555,3515,'_wp_attached_file','2023/09/10.jpg'),(19516,2417,'_wp_old_date','2023-08-27'),(19515,2935,'_wp_old_date','2023-08-27'),(19514,3104,'_wp_old_date','2023-08-27'),(19419,3484,'_dt_header_background_below_slideshow','disabled'),(19418,3484,'_dt_header_background','normal'),(19417,3484,'_dt_header_title','enabled'),(19376,3474,'_locale','en_US'),(19377,3474,'_hash','9a27bc321beda80a7551997fda2998a73871c2a0'),(19375,3474,'_additional_settings',''),(19348,3468,'_dt_fancy_header_bg_position_x','left'),(19347,3468,'_dt_fancy_header_bg_repeat','no-repeat'),(19277,3461,'_dt_fancy_header_responsive_subtitle_line_height','28'),(19189,3461,'total_sales','0'),(19155,3453,'_dt_fancy_header_subtitle_text_transform','none'),(19154,3453,'_dt_fancy_header_subtitle_line_height','26'),(19021,3450,'_dt_header_transparent_bg_color','#000000'),(19020,3450,'_dt_header_transparent_top_bar_bg_opacity','25'),(18975,3447,'_dt_fancy_header_scroll_effect','default'),(18974,3447,'_dt_fancy_header_bg_overlay_opacity','50'),(18860,3442,'_dt_fancy_header_subtitle_color','#792c8a'),(18859,3442,'_dt_fancy_header_subtitle_color_mode','color'),(18789,3441,'_dt_fancy_header_responsive_subtitle_line_height','28'),(18630,3440,'_dt_footer_hide_on_mobile','0'),(18629,3440,'_dt_footer_widgetarea_id','sidebar_2'),(18562,3439,'_dt_fancy_header_title_aligment','all_left'),(18561,3439,'_dt_fancy_header_layout_heading',''),(18560,3439,'_dt_mobile_page_padding_left',''),(18491,3438,'_dt_fancy_header_subtitle_color_mode','color'),(18490,3438,'_dt_fancy_header_subtitle_text_transform','none'),(18422,3437,'_dt_fancy_header_responsive_breadcrumbs','disabled'),(18265,3436,'_dt_header_background_below_slideshow','disabled'),(18264,3436,'_dt_header_background','normal'),(18197,3435,'_dt_fancy_header_padding-bottom','0px'),(18196,3435,'_dt_fancy_header_padding-top','0px'),(18128,3434,'_dt_fancy_header_bg_image','a:1:{i:0;i:3728;}'),(18054,3433,'_dt_fancy_header_responsive_breadcrumbs','disabled'),(17898,3432,'_dt_header_transparent_bg_color_scheme','light'),(17897,3432,'_dt_header_background_below_slideshow','disabled'),(27522,3666,'_dt_fancy_header_bg_image_origin','custom'),(27523,3666,'_dt_fancy_header_bg_image','a:1:{i:0;i:3772;}'),(17827,3411,'_wp_attached_file','2023/09/Asset-5@300x.png'),(17806,3401,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1000;s:6:\"height\";i:400;s:4:\"file\";s:30:\"2023/09/Oral-Supplements-2.png\";s:8:\"filesize\";i:84168;s:5:\"sizes\";a:6:{s:6:\"medium\";a:5:{s:4:\"file\";s:30:\"Oral-Supplements-2-300x120.png\";s:5:\"width\";i:300;s:6:\"height\";i:120;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:34055;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:30:\"Oral-Supplements-2-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:27979;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:30:\"Oral-Supplements-2-768x307.png\";s:5:\"width\";i:768;s:6:\"height\";i:307;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:191104;}s:21:\"woocommerce_thumbnail\";a:6:{s:4:\"file\";s:30:\"Oral-Supplements-2-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:99371;s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:5:{s:4:\"file\";s:30:\"Oral-Supplements-2-600x240.png\";s:5:\"width\";i:600;s:6:\"height\";i:240;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:119098;}s:29:\"woocommerce_gallery_thumbnail\";a:5:{s:4:\"file\";s:30:\"Oral-Supplements-2-200x200.png\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:46853;}}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:{}}}'),(23169,3615,'_wqoecf_disable_form','no'),(23170,3615,'_edit_lock','1694612887:1'),(23171,3615,'_edit_last','1'),(23172,3615,'_thumbnail_id','3138'),(23173,3616,'total_sales','0'),(23174,3616,'_tax_status','taxable'),(23175,3616,'_tax_class',''),(23176,3616,'_manage_stock','no'),(23177,3616,'_backorders','no'),(23178,3616,'_sold_individually','no'),(23179,3616,'_virtual','no'),(23180,3616,'_downloadable','no'),(23181,3616,'_download_limit','-1'),(23182,3616,'_download_expiry','-1'),(23184,3616,'_stock',NULL),(23185,3616,'_stock_status','instock'),(23186,3616,'_wc_average_rating','0'),(23187,3616,'_wc_review_count','0'),(23188,3616,'_product_attributes','a:1:{s:15:\"pa_product-type\";a:6:{s:4:\"name\";s:15:\"pa_product-type\";s:5:\"value\";s:0:\"\";s:8:\"position\";i:0;s:10:\"is_visible\";i:0;s:12:\"is_variation\";i:0;s:11:\"is_taxonomy\";i:1;}}'),(23189,3616,'_product_version','8.0.2'),(23190,3616,'_dt_sidebar_position','disabled'),(23191,3616,'_dt_sidebar_widgetarea_id','sidebar_1'),(23192,3616,'_dt_sidebar_hide_on_mobile','0'),(23193,3616,'_dt_footer_show','1'),(23194,3616,'_dt_footer_widgetarea_id','sidebar_2'),(23195,3616,'_dt_footer_hide_on_mobile','0'),(23196,3616,'_dt_header_title','fancy'),(23197,3616,'_dt_header_background','normal'),(23198,3616,'_dt_header_background_below_slideshow','disabled'),(23199,3616,'_dt_header_transparent_bg_color_scheme','light'),(23200,3616,'_dt_header_transparent_top_bar_bg_color','#ffffff'),(23201,3616,'_dt_header_transparent_top_bar_bg_opacity','25'),(23202,3616,'_dt_header_transparent_bg_color','#000000'),(23203,3616,'_dt_header_transparent_bg_opacity','50'),(23204,3616,'_dt_header_disabled_background','normal'),(23205,3616,'_dt_header_disabled_transparent_bg_color_scheme','light'),(23206,3616,'_dt_header_disabled_transparent_top_bar_bg_color','#ffffff'),(23207,3616,'_dt_header_disabled_transparent_top_bar_bg_opacity','25'),(23208,3616,'_dt_header_disabled_transparent_bg_color','#000000'),(23209,3616,'_dt_header_disabled_transparent_bg_opacity','50'),(23210,3616,'_dt_page_overrides_top_margin','1%'),(23211,3616,'_dt_page_overrides_right_margin',''),(23212,3616,'_dt_page_overrides_bottom_margin',''),(23213,3616,'_dt_page_overrides_left_margin',''),(23214,3616,'_dt_mobile_page_padding_top',''),(23215,3616,'_dt_mobile_page_padding_right',''),(23216,3616,'_dt_mobile_page_padding_bottom',''),(23217,3616,'_dt_mobile_page_padding_left',''),(23218,3616,'_dt_fancy_header_layout_heading',''),(23219,3616,'_dt_fancy_header_title_aligment','all_left'),(23220,3616,'_dt_fancy_header_height','140'),(23221,3616,'_dt_fancy_header_padding-top','0px'),(23222,3616,'_dt_fancy_header_padding-bottom','0px'),(23223,3616,'_dt_fancy_header_breadcrumbs_heading',''),(23224,3616,'_dt_fancy_header_breadcrumbs','disabled'),(23225,3616,'_dt_fancy_header_breadcrumbs_text_color','#ffffff'),(23226,3616,'_dt_fancy_header_breadcrumbs_bg_color','disabled'),(23227,3616,'_dt_fancy_header_title_heading',''),(23228,3616,'_dt_fancy_header_title_mode','custom'),(23229,3616,'_dt_fancy_header_title',''),(23230,3616,'_dt_fancy_header_title_font_size','32'),(23231,3616,'_dt_fancy_header_title_line_height','36'),(23232,3616,'_dt_fancy_header_text_transform','none'),(23233,3616,'_dt_fancy_header_title_color_mode','color'),(23234,3616,'_dt_fancy_header_title_color','#079547'),(23235,3616,'_dt_fancy_header_subtitle_heading',''),(23236,3616,'_dt_fancy_header_subtitle',''),(23237,3616,'_dt_fancy_header_subtitle_font_size','24'),(23238,3616,'_dt_fancy_header_subtitle_line_height','26'),(23239,3616,'_dt_fancy_header_subtitle_text_transform','none'),(23240,3616,'_dt_fancy_header_subtitle_color_mode','color'),(23241,3616,'_dt_fancy_header_subtitle_color','#792c8a'),(23242,3616,'_dt_fancy_header_bg_heading',''),(23243,3616,'_dt_fancy_header_bg_color','#ffffff'),(23244,3616,'_dt_fancy_header_bg_image_origin','custom'),(23245,3616,'_dt_fancy_header_bg_image','a:0:{}'),(23246,3616,'_dt_fancy_header_bg_repeat','no-repeat'),(23247,3616,'_dt_fancy_header_bg_position_x','center'),(23248,3616,'_dt_fancy_header_bg_position_y','center'),(23249,3616,'_dt_fancy_header_bg_fullscreen','0'),(23250,3616,'_dt_fancy_header_bg_overlay','0'),(23251,3616,'_dt_fancy_header_overlay_color','#000'),(23252,3616,'_dt_fancy_header_bg_overlay_opacity','50'),(23253,3616,'_dt_fancy_header_scroll_effect','default'),(23254,3616,'_dt_fancy_header_bg_parallax','0.5'),(23255,3616,'_dt_fancy_header_responsiveness_heading',''),(23256,3616,'_dt_fancy_header_responsiveness','enabled'),(23257,3616,'_dt_fancy_header_responsiveness_switch','778px'),(23258,3616,'_dt_fancy_header_responsive_height','140'),(23259,3616,'_dt_fancy_header_responsive_font_size','30'),(23260,3616,'_dt_fancy_header_responsive_title_line_height','38'),(23261,3616,'_dt_fancy_header_responsive_subtitle_font_size','20'),(23262,3616,'_dt_fancy_header_responsive_subtitle_line_height','28'),(23263,3616,'_dt_fancy_header_responsive_breadcrumbs','disabled'),(23264,3616,'the7_fancy_title_css','#main {\n  padding-top: 1%;\n}\n.fancy-header {\n  background-image: none;\n  background-repeat: no-repeat;\n  background-position: center center;\n  background-size: auto auto;\n  background-color: #ffffff;\n}\n.mobile-false .fancy-header {\n  background-attachment: scroll;\n}\n.fancy-header .wf-wrap {\n  min-height: 140px;\n  padding-top: 0px;\n  padding-bottom: 0px;\n}\n.fancy-header .fancy-title {\n  font-size: 32px;\n  line-height: 36px;\n  color: #079547;\n  text-transform: none;\n}\n.fancy-header .fancy-subtitle {\n  font-size: 24px;\n  line-height: 26px;\n  color: #792c8a;\n  text-transform: none;\n}\n.fancy-header .breadcrumbs {\n  color: #ffffff;\n}\n.fancy-header-overlay {\n  background: rgba(0,0,0,0.5);\n}\n@media screen and (max-width: 778px) {\n  .fancy-header .wf-wrap {\n    min-height: 140px;\n  }\n  .fancy-header .fancy-title {\n    font-size: 30px;\n    line-height: 38px;\n  }\n  .fancy-header .fancy-subtitle {\n    font-size: 20px;\n    line-height: 28px;\n  }\n  .fancy-header.breadcrumbs-mobile-off .breadcrumbs {\n    display: none;\n  }\n  #fancy-header > .wf-wrap {\n    flex-flow: column wrap;\n    align-items: center;\n    justify-content: center;\n    padding-bottom: 0px !important;\n  }\n  .fancy-header.title-left .breadcrumbs {\n    text-align: center;\n    float: none;\n  }\n  .breadcrumbs {\n    margin-bottom: 10px;\n  }\n  .breadcrumbs.breadcrumbs-bg {\n    margin-top: 10px;\n  }\n  .fancy-header.title-right .breadcrumbs {\n    margin: 10px 0 10px 0;\n  }\n  #fancy-header .hgroup,\n  #fancy-header .breadcrumbs {\n    text-align: center;\n  }\n  .fancy-header .hgroup {\n    padding-bottom: 5px;\n  }\n  .breadcrumbs-off .hgroup {\n    padding-bottom: 5px;\n  }\n  .title-right .hgroup {\n    padding: 0 0 5px 0;\n  }\n  .title-right.breadcrumbs-off .hgroup {\n    padding-top: 5px;\n  }\n  .title-left.disabled-bg .breadcrumbs {\n    margin-bottom: 0;\n  }\n}\n'),(23270,3617,'_tax_class',''),(23265,3616,'_wqoecf_disable_form','no'),(23266,3616,'_edit_lock','1694619251:1'),(23267,3616,'_edit_last','1'),(23268,3617,'total_sales','0'),(23269,3617,'_tax_status','taxable'),(23271,3617,'_manage_stock','no'),(23272,3617,'_backorders','no'),(23273,3617,'_sold_individually','no'),(23274,3617,'_virtual','no'),(23275,3617,'_downloadable','no'),(23276,3617,'_download_limit','-1'),(23277,3617,'_download_expiry','-1'),(23279,3617,'_stock',NULL),(23280,3617,'_stock_status','instock'),(23281,3617,'_wc_average_rating','0'),(23282,3617,'_wc_review_count','0'),(23283,3617,'_product_attributes','a:1:{s:15:\"pa_product-type\";a:6:{s:4:\"name\";s:15:\"pa_product-type\";s:5:\"value\";s:0:\"\";s:8:\"position\";i:0;s:10:\"is_visible\";i:0;s:12:\"is_variation\";i:0;s:11:\"is_taxonomy\";i:1;}}'),(23284,3617,'_product_version','8.0.2'),(23285,3617,'_dt_sidebar_position','disabled'),(23286,3617,'_dt_sidebar_widgetarea_id','sidebar_1'),(23287,3617,'_dt_sidebar_hide_on_mobile','0'),(23288,3617,'_dt_footer_show','1'),(23289,3617,'_dt_footer_widgetarea_id','sidebar_2'),(23290,3617,'_dt_footer_hide_on_mobile','0'),(23291,3617,'_dt_header_title','fancy'),(23292,3617,'_dt_header_background','normal'),(23293,3617,'_dt_header_background_below_slideshow','disabled'),(23294,3617,'_dt_header_transparent_bg_color_scheme','light'),(23295,3617,'_dt_header_transparent_top_bar_bg_color','#ffffff'),(23296,3617,'_dt_header_transparent_top_bar_bg_opacity','25'),(23297,3617,'_dt_header_transparent_bg_color','#000000'),(23298,3617,'_dt_header_transparent_bg_opacity','50'),(23299,3617,'_dt_header_disabled_background','normal'),(23300,3617,'_dt_header_disabled_transparent_bg_color_scheme','light'),(23301,3617,'_dt_header_disabled_transparent_top_bar_bg_color','#ffffff'),(23302,3617,'_dt_header_disabled_transparent_top_bar_bg_opacity','25'),(23303,3617,'_dt_header_disabled_transparent_bg_color','#000000'),(23304,3617,'_dt_header_disabled_transparent_bg_opacity','50'),(23305,3617,'_dt_page_overrides_top_margin','1%'),(23306,3617,'_dt_page_overrides_right_margin',''),(23307,3617,'_dt_page_overrides_bottom_margin',''),(23308,3617,'_dt_page_overrides_left_margin',''),(23309,3617,'_dt_mobile_page_padding_top',''),(23310,3617,'_dt_mobile_page_padding_right',''),(23311,3617,'_dt_mobile_page_padding_bottom',''),(23312,3617,'_dt_mobile_page_padding_left',''),(23313,3617,'_dt_fancy_header_layout_heading',''),(23314,3617,'_dt_fancy_header_title_aligment','all_left'),(23315,3617,'_dt_fancy_header_height','140'),(23316,3617,'_dt_fancy_header_padding-top','0px'),(23317,3617,'_dt_fancy_header_padding-bottom','0px'),(23318,3617,'_dt_fancy_header_breadcrumbs_heading',''),(23319,3617,'_dt_fancy_header_breadcrumbs','disabled'),(23320,3617,'_dt_fancy_header_breadcrumbs_text_color','#ffffff'),(23321,3617,'_dt_fancy_header_breadcrumbs_bg_color','disabled'),(23322,3617,'_dt_fancy_header_title_heading',''),(23323,3617,'_dt_fancy_header_title_mode','custom'),(23324,3617,'_dt_fancy_header_title',''),(23325,3617,'_dt_fancy_header_title_font_size','32'),(23326,3617,'_dt_fancy_header_title_line_height','36'),(23327,3617,'_dt_fancy_header_text_transform','none'),(23328,3617,'_dt_fancy_header_title_color_mode','color'),(23329,3617,'_dt_fancy_header_title_color','#079547'),(23330,3617,'_dt_fancy_header_subtitle_heading',''),(23331,3617,'_dt_fancy_header_subtitle',''),(23332,3617,'_dt_fancy_header_subtitle_font_size','24'),(23333,3617,'_dt_fancy_header_subtitle_line_height','26'),(23334,3617,'_dt_fancy_header_subtitle_text_transform','none'),(23335,3617,'_dt_fancy_header_subtitle_color_mode','color'),(23336,3617,'_dt_fancy_header_subtitle_color','#792c8a'),(23337,3617,'_dt_fancy_header_bg_heading',''),(23338,3617,'_dt_fancy_header_bg_color','#ffffff'),(23339,3617,'_dt_fancy_header_bg_image_origin','custom'),(23340,3617,'_dt_fancy_header_bg_image','a:0:{}'),(23341,3617,'_dt_fancy_header_bg_repeat','no-repeat'),(23342,3617,'_dt_fancy_header_bg_position_x','center'),(23343,3617,'_dt_fancy_header_bg_position_y','center'),(23344,3617,'_dt_fancy_header_bg_fullscreen','0'),(23345,3617,'_dt_fancy_header_bg_overlay','0'),(23346,3617,'_dt_fancy_header_overlay_color','#000'),(23347,3617,'_dt_fancy_header_bg_overlay_opacity','50'),(23348,3617,'_dt_fancy_header_scroll_effect','default'),(23349,3617,'_dt_fancy_header_bg_parallax','0.5'),(23350,3617,'_dt_fancy_header_responsiveness_heading',''),(23351,3617,'_dt_fancy_header_responsiveness','enabled'),(23352,3617,'_dt_fancy_header_responsiveness_switch','778px'),(23353,3617,'_dt_fancy_header_responsive_height','140'),(23354,3617,'_dt_fancy_header_responsive_font_size','30'),(23355,3617,'_dt_fancy_header_responsive_title_line_height','38'),(23356,3617,'_dt_fancy_header_responsive_subtitle_font_size','20'),(23357,3617,'_dt_fancy_header_responsive_subtitle_line_height','28'),(23358,3617,'_dt_fancy_header_responsive_breadcrumbs','disabled'),(23359,3617,'the7_fancy_title_css','#main {\n  padding-top: 1%;\n}\n.fancy-header {\n  background-image: none;\n  background-repeat: no-repeat;\n  background-position: center center;\n  background-size: auto auto;\n  background-color: #ffffff;\n}\n.mobile-false .fancy-header {\n  background-attachment: scroll;\n}\n.fancy-header .wf-wrap {\n  min-height: 140px;\n  padding-top: 0px;\n  padding-bottom: 0px;\n}\n.fancy-header .fancy-title {\n  font-size: 32px;\n  line-height: 36px;\n  color: #079547;\n  text-transform: none;\n}\n.fancy-header .fancy-subtitle {\n  font-size: 24px;\n  line-height: 26px;\n  color: #792c8a;\n  text-transform: none;\n}\n.fancy-header .breadcrumbs {\n  color: #ffffff;\n}\n.fancy-header-overlay {\n  background: rgba(0,0,0,0.5);\n}\n@media screen and (max-width: 778px) {\n  .fancy-header .wf-wrap {\n    min-height: 140px;\n  }\n  .fancy-header .fancy-title {\n    font-size: 30px;\n    line-height: 38px;\n  }\n  .fancy-header .fancy-subtitle {\n    font-size: 20px;\n    line-height: 28px;\n  }\n  .fancy-header.breadcrumbs-mobile-off .breadcrumbs {\n    display: none;\n  }\n  #fancy-header > .wf-wrap {\n    flex-flow: column wrap;\n    align-items: center;\n    justify-content: center;\n    padding-bottom: 0px !important;\n  }\n  .fancy-header.title-left .breadcrumbs {\n    text-align: center;\n    float: none;\n  }\n  .breadcrumbs {\n    margin-bottom: 10px;\n  }\n  .breadcrumbs.breadcrumbs-bg {\n    margin-top: 10px;\n  }\n  .fancy-header.title-right .breadcrumbs {\n    margin: 10px 0 10px 0;\n  }\n  #fancy-header .hgroup,\n  #fancy-header .breadcrumbs {\n    text-align: center;\n  }\n  .fancy-header .hgroup {\n    padding-bottom: 5px;\n  }\n  .breadcrumbs-off .hgroup {\n    padding-bottom: 5px;\n  }\n  .title-right .hgroup {\n    padding: 0 0 5px 0;\n  }\n  .title-right.breadcrumbs-off .hgroup {\n    padding-top: 5px;\n  }\n  .title-left.disabled-bg .breadcrumbs {\n    margin-bottom: 0;\n  }\n}\n'),(23360,3617,'_wqoecf_disable_form','no'),(23361,3617,'_edit_lock','1694619527:1'),(23362,3617,'_edit_last','1'),(23363,3618,'total_sales','0'),(23364,3618,'_tax_status','taxable'),(23365,3618,'_tax_class',''),(23366,3618,'_manage_stock','no'),(23367,3618,'_backorders','no'),(23368,3618,'_sold_individually','no'),(23369,3618,'_virtual','no'),(23370,3618,'_downloadable','no'),(23371,3618,'_download_limit','-1'),(23372,3618,'_download_expiry','-1'),(23373,3618,'_thumbnail_id','3919'),(23374,3618,'_stock',NULL),(23375,3618,'_stock_status','instock'),(23376,3618,'_wc_average_rating','0'),(23377,3618,'_wc_review_count','0'),(23378,3618,'_product_attributes','a:1:{s:15:\"pa_product-type\";a:6:{s:4:\"name\";s:15:\"pa_product-type\";s:5:\"value\";s:0:\"\";s:8:\"position\";i:0;s:10:\"is_visible\";i:0;s:12:\"is_variation\";i:0;s:11:\"is_taxonomy\";i:1;}}'),(23379,3618,'_product_version','8.0.2'),(23380,3618,'_dt_sidebar_position','disabled'),(23381,3618,'_dt_sidebar_widgetarea_id','sidebar_1'),(23382,3618,'_dt_sidebar_hide_on_mobile','0'),(23383,3618,'_dt_footer_show','1'),(23384,3618,'_dt_footer_widgetarea_id','sidebar_2'),(23385,3618,'_dt_footer_hide_on_mobile','0'),(23386,3618,'_dt_header_title','fancy'),(23387,3618,'_dt_header_background','normal'),(23388,3618,'_dt_header_background_below_slideshow','disabled'),(23389,3618,'_dt_header_transparent_bg_color_scheme','light'),(23390,3618,'_dt_header_transparent_top_bar_bg_color','#ffffff'),(23391,3618,'_dt_header_transparent_top_bar_bg_opacity','25'),(23392,3618,'_dt_header_transparent_bg_color','#000000'),(23393,3618,'_dt_header_transparent_bg_opacity','50'),(23394,3618,'_dt_header_disabled_background','normal'),(23395,3618,'_dt_header_disabled_transparent_bg_color_scheme','light'),(23396,3618,'_dt_header_disabled_transparent_top_bar_bg_color','#ffffff'),(23397,3618,'_dt_header_disabled_transparent_top_bar_bg_opacity','25'),(23398,3618,'_dt_header_disabled_transparent_bg_color','#000000'),(23399,3618,'_dt_header_disabled_transparent_bg_opacity','50'),(23400,3618,'_dt_page_overrides_top_margin','1%'),(23401,3618,'_dt_page_overrides_right_margin',''),(23402,3618,'_dt_page_overrides_bottom_margin',''),(23403,3618,'_dt_page_overrides_left_margin',''),(23404,3618,'_dt_mobile_page_padding_top',''),(23405,3618,'_dt_mobile_page_padding_right',''),(23406,3618,'_dt_mobile_page_padding_bottom',''),(23407,3618,'_dt_mobile_page_padding_left',''),(23408,3618,'_dt_fancy_header_layout_heading',''),(23409,3618,'_dt_fancy_header_title_aligment','all_left'),(23410,3618,'_dt_fancy_header_height','140'),(23411,3618,'_dt_fancy_header_padding-top','0px'),(23412,3618,'_dt_fancy_header_padding-bottom','0px'),(23413,3618,'_dt_fancy_header_breadcrumbs_heading',''),(23414,3618,'_dt_fancy_header_breadcrumbs','disabled'),(23415,3618,'_dt_fancy_header_breadcrumbs_text_color','#ffffff'),(23416,3618,'_dt_fancy_header_breadcrumbs_bg_color','disabled'),(23417,3618,'_dt_fancy_header_title_heading',''),(23418,3618,'_dt_fancy_header_title_mode','custom'),(23419,3618,'_dt_fancy_header_title',''),(23420,3618,'_dt_fancy_header_title_font_size','32'),(23421,3618,'_dt_fancy_header_title_line_height','36'),(23422,3618,'_dt_fancy_header_text_transform','none'),(23423,3618,'_dt_fancy_header_title_color_mode','color'),(23424,3618,'_dt_fancy_header_title_color','#079547'),(23425,3618,'_dt_fancy_header_subtitle_heading',''),(23426,3618,'_dt_fancy_header_subtitle',''),(23427,3618,'_dt_fancy_header_subtitle_font_size','24'),(23428,3618,'_dt_fancy_header_subtitle_line_height','26'),(23429,3618,'_dt_fancy_header_subtitle_text_transform','none'),(23430,3618,'_dt_fancy_header_subtitle_color_mode','color'),(23431,3618,'_dt_fancy_header_subtitle_color','#792c8a'),(23432,3618,'_dt_fancy_header_bg_heading',''),(23433,3618,'_dt_fancy_header_bg_color','#ffffff'),(23434,3618,'_dt_fancy_header_bg_image_origin','custom'),(23435,3618,'_dt_fancy_header_bg_image','a:1:{i:0;i:3918;}'),(23436,3618,'_dt_fancy_header_bg_repeat','no-repeat'),(23437,3618,'_dt_fancy_header_bg_position_x','center'),(23438,3618,'_dt_fancy_header_bg_position_y','center'),(23439,3618,'_dt_fancy_header_bg_fullscreen','0'),(23440,3618,'_dt_fancy_header_bg_overlay','0'),(23441,3618,'_dt_fancy_header_overlay_color','#000'),(23442,3618,'_dt_fancy_header_bg_overlay_opacity','50'),(23443,3618,'_dt_fancy_header_scroll_effect','default'),(23444,3618,'_dt_fancy_header_bg_parallax','0.5'),(23445,3618,'_dt_fancy_header_responsiveness_heading',''),(23446,3618,'_dt_fancy_header_responsiveness','enabled'),(23447,3618,'_dt_fancy_header_responsiveness_switch','778px'),(23448,3618,'_dt_fancy_header_responsive_height','140'),(23449,3618,'_dt_fancy_header_responsive_font_size','30'),(23450,3618,'_dt_fancy_header_responsive_title_line_height','38'),(23451,3618,'_dt_fancy_header_responsive_subtitle_font_size','20'),(23452,3618,'_dt_fancy_header_responsive_subtitle_line_height','28'),(23453,3618,'_dt_fancy_header_responsive_breadcrumbs','disabled'),(23454,3618,'the7_fancy_title_css','#main {\n  padding-top: 1%;\n}\n.fancy-header {\n  background-image: url(\'https://farmchemie.yasithawd.com/wp-content/uploads/2023/09/GARD-L_300px.png\');\n  background-repeat: no-repeat;\n  background-position: center center;\n  background-size: auto auto;\n  background-color: #ffffff;\n}\n.mobile-false .fancy-header {\n  background-attachment: scroll;\n}\n.fancy-header .wf-wrap {\n  min-height: 140px;\n  padding-top: 0px;\n  padding-bottom: 0px;\n}\n.fancy-header .fancy-title {\n  font-size: 32px;\n  line-height: 36px;\n  color: #079547;\n  text-transform: none;\n}\n.fancy-header .fancy-subtitle {\n  font-size: 24px;\n  line-height: 26px;\n  color: #792c8a;\n  text-transform: none;\n}\n.fancy-header .breadcrumbs {\n  color: #ffffff;\n}\n.fancy-header-overlay {\n  background: rgba(0,0,0,0.5);\n}\n@media screen and (max-width: 778px) {\n  .fancy-header .wf-wrap {\n    min-height: 140px;\n  }\n  .fancy-header .fancy-title {\n    font-size: 30px;\n    line-height: 38px;\n  }\n  .fancy-header .fancy-subtitle {\n    font-size: 20px;\n    line-height: 28px;\n  }\n  .fancy-header.breadcrumbs-mobile-off .breadcrumbs {\n    display: none;\n  }\n  #fancy-header > .wf-wrap {\n    flex-flow: column wrap;\n    align-items: center;\n    justify-content: center;\n    padding-bottom: 0px !important;\n  }\n  .fancy-header.title-left .breadcrumbs {\n    text-align: center;\n    float: none;\n  }\n  .breadcrumbs {\n    margin-bottom: 10px;\n  }\n  .breadcrumbs.breadcrumbs-bg {\n    margin-top: 10px;\n  }\n  .fancy-header.title-right .breadcrumbs {\n    margin: 10px 0 10px 0;\n  }\n  #fancy-header .hgroup,\n  #fancy-header .breadcrumbs {\n    text-align: center;\n  }\n  .fancy-header .hgroup {\n    padding-bottom: 5px;\n  }\n  .breadcrumbs-off .hgroup {\n    padding-bottom: 5px;\n  }\n  .title-right .hgroup {\n    padding: 0 0 5px 0;\n  }\n  .title-right.breadcrumbs-off .hgroup {\n    padding-top: 5px;\n  }\n  .title-left.disabled-bg .breadcrumbs {\n    margin-bottom: 0;\n  }\n}\n'),(23455,3618,'_wqoecf_disable_form','no'),(23456,3618,'_edit_lock','1695544583:1'),(23457,3618,'_edit_last','1'),(23458,3619,'total_sales','0'),(23459,3619,'_tax_status','taxable'),(23460,3619,'_tax_class',''),(23461,3619,'_manage_stock','no'),(23462,3619,'_backorders','no'),(23463,3619,'_sold_individually','no'),(23464,3619,'_virtual','no'),(23465,3619,'_downloadable','no'),(23466,3619,'_download_limit','-1'),(23467,3619,'_download_expiry','-1'),(23468,3619,'_thumbnail_id','3847'),(23469,3619,'_stock',NULL),(23470,3619,'_stock_status','instock'),(23471,3619,'_wc_average_rating','0'),(23472,3619,'_wc_review_count','0'),(23473,3619,'_product_attributes','a:1:{s:15:\"pa_product-type\";a:6:{s:4:\"name\";s:15:\"pa_product-type\";s:5:\"value\";s:0:\"\";s:8:\"position\";i:0;s:10:\"is_visible\";i:0;s:12:\"is_variation\";i:0;s:11:\"is_taxonomy\";i:1;}}'),(23474,3619,'_product_version','8.0.2'),(23475,3619,'_dt_sidebar_position','disabled'),(23476,3619,'_dt_sidebar_widgetarea_id','sidebar_1'),(23477,3619,'_dt_sidebar_hide_on_mobile','0'),(23478,3619,'_dt_footer_show','1'),(23479,3619,'_dt_footer_widgetarea_id','sidebar_2'),(23480,3619,'_dt_footer_hide_on_mobile','0'),(23481,3619,'_dt_header_title','fancy'),(23482,3619,'_dt_header_background','normal'),(23483,3619,'_dt_header_background_below_slideshow','disabled'),(23484,3619,'_dt_header_transparent_bg_color_scheme','light'),(23485,3619,'_dt_header_transparent_top_bar_bg_color','#ffffff'),(23486,3619,'_dt_header_transparent_top_bar_bg_opacity','25'),(23487,3619,'_dt_header_transparent_bg_color','#000000'),(23488,3619,'_dt_header_transparent_bg_opacity','50'),(23489,3619,'_dt_header_disabled_background','normal'),(23490,3619,'_dt_header_disabled_transparent_bg_color_scheme','light'),(23491,3619,'_dt_header_disabled_transparent_top_bar_bg_color','#ffffff'),(23492,3619,'_dt_header_disabled_transparent_top_bar_bg_opacity','25'),(23493,3619,'_dt_header_disabled_transparent_bg_color','#000000'),(23494,3619,'_dt_header_disabled_transparent_bg_opacity','50'),(23495,3619,'_dt_page_overrides_top_margin','1%'),(23496,3619,'_dt_page_overrides_right_margin',''),(23497,3619,'_dt_page_overrides_bottom_margin',''),(23498,3619,'_dt_page_overrides_left_margin',''),(23499,3619,'_dt_mobile_page_padding_top',''),(23500,3619,'_dt_mobile_page_padding_right',''),(23501,3619,'_dt_mobile_page_padding_bottom',''),(23502,3619,'_dt_mobile_page_padding_left',''),(23503,3619,'_dt_fancy_header_layout_heading',''),(23504,3619,'_dt_fancy_header_title_aligment','all_left'),(23505,3619,'_dt_fancy_header_height','140'),(23506,3619,'_dt_fancy_header_padding-top','0px'),(23507,3619,'_dt_fancy_header_padding-bottom','0px'),(23508,3619,'_dt_fancy_header_breadcrumbs_heading',''),(23509,3619,'_dt_fancy_header_breadcrumbs','disabled'),(23510,3619,'_dt_fancy_header_breadcrumbs_text_color','#ffffff'),(23511,3619,'_dt_fancy_header_breadcrumbs_bg_color','disabled'),(23512,3619,'_dt_fancy_header_title_heading',''),(23513,3619,'_dt_fancy_header_title_mode','custom'),(23514,3619,'_dt_fancy_header_title',''),(23515,3619,'_dt_fancy_header_title_font_size','32'),(23516,3619,'_dt_fancy_header_title_line_height','36'),(23517,3619,'_dt_fancy_header_text_transform','none'),(23518,3619,'_dt_fancy_header_title_color_mode','color'),(23519,3619,'_dt_fancy_header_title_color','#079547'),(23520,3619,'_dt_fancy_header_subtitle_heading',''),(23521,3619,'_dt_fancy_header_subtitle',''),(23522,3619,'_dt_fancy_header_subtitle_font_size','24'),(23523,3619,'_dt_fancy_header_subtitle_line_height','26'),(23524,3619,'_dt_fancy_header_subtitle_text_transform','none'),(23525,3619,'_dt_fancy_header_subtitle_color_mode','color'),(23526,3619,'_dt_fancy_header_subtitle_color','#792c8a'),(23527,3619,'_dt_fancy_header_bg_heading',''),(23528,3619,'_dt_fancy_header_bg_color','#ffffff'),(23529,3619,'_dt_fancy_header_bg_image_origin','custom'),(23530,3619,'_dt_fancy_header_bg_image','a:1:{i:0;i:3846;}'),(23531,3619,'_dt_fancy_header_bg_repeat','no-repeat'),(23532,3619,'_dt_fancy_header_bg_position_x','center'),(23533,3619,'_dt_fancy_header_bg_position_y','center'),(23534,3619,'_dt_fancy_header_bg_fullscreen','0'),(23535,3619,'_dt_fancy_header_bg_overlay','0'),(23536,3619,'_dt_fancy_header_overlay_color','#000'),(23537,3619,'_dt_fancy_header_bg_overlay_opacity','50'),(23538,3619,'_dt_fancy_header_scroll_effect','default'),(23539,3619,'_dt_fancy_header_bg_parallax','0.5'),(23540,3619,'_dt_fancy_header_responsiveness_heading',''),(23541,3619,'_dt_fancy_header_responsiveness','enabled'),(23542,3619,'_dt_fancy_header_responsiveness_switch','778px'),(23543,3619,'_dt_fancy_header_responsive_height','140'),(23544,3619,'_dt_fancy_header_responsive_font_size','30'),(23545,3619,'_dt_fancy_header_responsive_title_line_height','38'),(23546,3619,'_dt_fancy_header_responsive_subtitle_font_size','20'),(23547,3619,'_dt_fancy_header_responsive_subtitle_line_height','28'),(23548,3619,'_dt_fancy_header_responsive_breadcrumbs','disabled'),(23549,3619,'the7_fancy_title_css','#main {\n  padding-top: 1%;\n}\n.fancy-header {\n  background-image: url(\'https://farmchemie.yasithawd.com/wp-content/uploads/2023/09/Lev-Ox-2400-BOLUS_300px.png\');\n  background-repeat: no-repeat;\n  background-position: center center;\n  background-size: auto auto;\n  background-color: #ffffff;\n}\n.mobile-false .fancy-header {\n  background-attachment: scroll;\n}\n.fancy-header .wf-wrap {\n  min-height: 140px;\n  padding-top: 0px;\n  padding-bottom: 0px;\n}\n.fancy-header .fancy-title {\n  font-size: 32px;\n  line-height: 36px;\n  color: #079547;\n  text-transform: none;\n}\n.fancy-header .fancy-subtitle {\n  font-size: 24px;\n  line-height: 26px;\n  color: #792c8a;\n  text-transform: none;\n}\n.fancy-header .breadcrumbs {\n  color: #ffffff;\n}\n.fancy-header-overlay {\n  background: rgba(0,0,0,0.5);\n}\n@media screen and (max-width: 778px) {\n  .fancy-header .wf-wrap {\n    min-height: 140px;\n  }\n  .fancy-header .fancy-title {\n    font-size: 30px;\n    line-height: 38px;\n  }\n  .fancy-header .fancy-subtitle {\n    font-size: 20px;\n    line-height: 28px;\n  }\n  .fancy-header.breadcrumbs-mobile-off .breadcrumbs {\n    display: none;\n  }\n  #fancy-header > .wf-wrap {\n    flex-flow: column wrap;\n    align-items: center;\n    justify-content: center;\n    padding-bottom: 0px !important;\n  }\n  .fancy-header.title-left .breadcrumbs {\n    text-align: center;\n    float: none;\n  }\n  .breadcrumbs {\n    margin-bottom: 10px;\n  }\n  .breadcrumbs.breadcrumbs-bg {\n    margin-top: 10px;\n  }\n  .fancy-header.title-right .breadcrumbs {\n    margin: 10px 0 10px 0;\n  }\n  #fancy-header .hgroup,\n  #fancy-header .breadcrumbs {\n    text-align: center;\n  }\n  .fancy-header .hgroup {\n    padding-bottom: 5px;\n  }\n  .breadcrumbs-off .hgroup {\n    padding-bottom: 5px;\n  }\n  .title-right .hgroup {\n    padding: 0 0 5px 0;\n  }\n  .title-right.breadcrumbs-off .hgroup {\n    padding-top: 5px;\n  }\n  .title-left.disabled-bg .breadcrumbs {\n    margin-bottom: 0;\n  }\n}\n'),(23550,3619,'_wqoecf_disable_form','no'),(23551,3619,'_edit_lock','1695518489:2'),(23552,3619,'_edit_last','2'),(23553,3620,'total_sales','0'),(23554,3620,'_tax_status','taxable'),(23555,3620,'_tax_class',''),(23556,3620,'_manage_stock','no'),(23557,3620,'_backorders','no'),(23558,3620,'_sold_individually','no'),(23559,3620,'_virtual','no'),(23560,3620,'_downloadable','no'),(23561,3620,'_download_limit','-1'),(23562,3620,'_download_expiry','-1'),(23563,3620,'_thumbnail_id','3894'),(23564,3620,'_stock',NULL),(23565,3620,'_stock_status','instock'),(23566,3620,'_wc_average_rating','0'),(23567,3620,'_wc_review_count','0'),(23568,3620,'_product_attributes','a:1:{s:15:\"pa_product-type\";a:6:{s:4:\"name\";s:15:\"pa_product-type\";s:5:\"value\";s:0:\"\";s:8:\"position\";i:0;s:10:\"is_visible\";i:0;s:12:\"is_variation\";i:0;s:11:\"is_taxonomy\";i:1;}}'),(23569,3620,'_product_version','8.0.2'),(23570,3620,'_dt_sidebar_position','disabled'),(23571,3620,'_dt_sidebar_widgetarea_id','sidebar_1'),(23572,3620,'_dt_sidebar_hide_on_mobile','0'),(23573,3620,'_dt_footer_show','1'),(23574,3620,'_dt_footer_widgetarea_id','sidebar_2'),(23575,3620,'_dt_footer_hide_on_mobile','0'),(23576,3620,'_dt_header_title','fancy'),(23577,3620,'_dt_header_background','normal'),(23578,3620,'_dt_header_background_below_slideshow','disabled'),(23579,3620,'_dt_header_transparent_bg_color_scheme','light'),(23580,3620,'_dt_header_transparent_top_bar_bg_color','#ffffff'),(23581,3620,'_dt_header_transparent_top_bar_bg_opacity','25'),(23582,3620,'_dt_header_transparent_bg_color','#000000'),(23583,3620,'_dt_header_transparent_bg_opacity','50'),(23584,3620,'_dt_header_disabled_background','normal'),(23585,3620,'_dt_header_disabled_transparent_bg_color_scheme','light'),(23586,3620,'_dt_header_disabled_transparent_top_bar_bg_color','#ffffff'),(23587,3620,'_dt_header_disabled_transparent_top_bar_bg_opacity','25'),(23588,3620,'_dt_header_disabled_transparent_bg_color','#000000'),(23589,3620,'_dt_header_disabled_transparent_bg_opacity','50'),(23590,3620,'_dt_page_overrides_top_margin','1%'),(23591,3620,'_dt_page_overrides_right_margin',''),(23592,3620,'_dt_page_overrides_bottom_margin',''),(23593,3620,'_dt_page_overrides_left_margin',''),(23594,3620,'_dt_mobile_page_padding_top',''),(23595,3620,'_dt_mobile_page_padding_right',''),(23596,3620,'_dt_mobile_page_padding_bottom',''),(23597,3620,'_dt_mobile_page_padding_left',''),(23598,3620,'_dt_fancy_header_layout_heading',''),(23599,3620,'_dt_fancy_header_title_aligment','all_left'),(23600,3620,'_dt_fancy_header_height','140'),(23601,3620,'_dt_fancy_header_padding-top','0px'),(23602,3620,'_dt_fancy_header_padding-bottom','0px'),(23603,3620,'_dt_fancy_header_breadcrumbs_heading',''),(23604,3620,'_dt_fancy_header_breadcrumbs','disabled'),(23605,3620,'_dt_fancy_header_breadcrumbs_text_color','#ffffff'),(23606,3620,'_dt_fancy_header_breadcrumbs_bg_color','disabled'),(23607,3620,'_dt_fancy_header_title_heading',''),(23608,3620,'_dt_fancy_header_title_mode','custom'),(23609,3620,'_dt_fancy_header_title',''),(23610,3620,'_dt_fancy_header_title_font_size','32'),(23611,3620,'_dt_fancy_header_title_line_height','36'),(23612,3620,'_dt_fancy_header_text_transform','none'),(23613,3620,'_dt_fancy_header_title_color_mode','color'),(23614,3620,'_dt_fancy_header_title_color','#079547'),(23615,3620,'_dt_fancy_header_subtitle_heading',''),(23616,3620,'_dt_fancy_header_subtitle',''),(23617,3620,'_dt_fancy_header_subtitle_font_size','24'),(23618,3620,'_dt_fancy_header_subtitle_line_height','26'),(23619,3620,'_dt_fancy_header_subtitle_text_transform','none'),(23620,3620,'_dt_fancy_header_subtitle_color_mode','color'),(23621,3620,'_dt_fancy_header_subtitle_color','#792c8a'),(23622,3620,'_dt_fancy_header_bg_heading',''),(23623,3620,'_dt_fancy_header_bg_color','#ffffff'),(23624,3620,'_dt_fancy_header_bg_image_origin','custom'),(23625,3620,'_dt_fancy_header_bg_image','a:1:{i:0;i:3893;}'),(23626,3620,'_dt_fancy_header_bg_repeat','no-repeat'),(23627,3620,'_dt_fancy_header_bg_position_x','center'),(23628,3620,'_dt_fancy_header_bg_position_y','center'),(23629,3620,'_dt_fancy_header_bg_fullscreen','0'),(23630,3620,'_dt_fancy_header_bg_overlay','0'),(23631,3620,'_dt_fancy_header_overlay_color','#000'),(23632,3620,'_dt_fancy_header_bg_overlay_opacity','50'),(23633,3620,'_dt_fancy_header_scroll_effect','default'),(23634,3620,'_dt_fancy_header_bg_parallax','0.5'),(23635,3620,'_dt_fancy_header_responsiveness_heading',''),(23636,3620,'_dt_fancy_header_responsiveness','enabled'),(23637,3620,'_dt_fancy_header_responsiveness_switch','778px'),(23638,3620,'_dt_fancy_header_responsive_height','140'),(23639,3620,'_dt_fancy_header_responsive_font_size','30'),(23640,3620,'_dt_fancy_header_responsive_title_line_height','38'),(23641,3620,'_dt_fancy_header_responsive_subtitle_font_size','20'),(23642,3620,'_dt_fancy_header_responsive_subtitle_line_height','28'),(23643,3620,'_dt_fancy_header_responsive_breadcrumbs','disabled'),(23644,3620,'the7_fancy_title_css','#main {\n  padding-top: 1%;\n}\n.fancy-header {\n  background-image: url(\'https://farmchemie.yasithawd.com/wp-content/uploads/2023/09/Leverm-30_300pxL.png\');\n  background-repeat: no-repeat;\n  background-position: center center;\n  background-size: auto auto;\n  background-color: #ffffff;\n}\n.mobile-false .fancy-header {\n  background-attachment: scroll;\n}\n.fancy-header .wf-wrap {\n  min-height: 140px;\n  padding-top: 0px;\n  padding-bottom: 0px;\n}\n.fancy-header .fancy-title {\n  font-size: 32px;\n  line-height: 36px;\n  color: #079547;\n  text-transform: none;\n}\n.fancy-header .fancy-subtitle {\n  font-size: 24px;\n  line-height: 26px;\n  color: #792c8a;\n  text-transform: none;\n}\n.fancy-header .breadcrumbs {\n  color: #ffffff;\n}\n.fancy-header-overlay {\n  background: rgba(0,0,0,0.5);\n}\n@media screen and (max-width: 778px) {\n  .fancy-header .wf-wrap {\n    min-height: 140px;\n  }\n  .fancy-header .fancy-title {\n    font-size: 30px;\n    line-height: 38px;\n  }\n  .fancy-header .fancy-subtitle {\n    font-size: 20px;\n    line-height: 28px;\n  }\n  .fancy-header.breadcrumbs-mobile-off .breadcrumbs {\n    display: none;\n  }\n  #fancy-header > .wf-wrap {\n    flex-flow: column wrap;\n    align-items: center;\n    justify-content: center;\n    padding-bottom: 0px !important;\n  }\n  .fancy-header.title-left .breadcrumbs {\n    text-align: center;\n    float: none;\n  }\n  .breadcrumbs {\n    margin-bottom: 10px;\n  }\n  .breadcrumbs.breadcrumbs-bg {\n    margin-top: 10px;\n  }\n  .fancy-header.title-right .breadcrumbs {\n    margin: 10px 0 10px 0;\n  }\n  #fancy-header .hgroup,\n  #fancy-header .breadcrumbs {\n    text-align: center;\n  }\n  .fancy-header .hgroup {\n    padding-bottom: 5px;\n  }\n  .breadcrumbs-off .hgroup {\n    padding-bottom: 5px;\n  }\n  .title-right .hgroup {\n    padding: 0 0 5px 0;\n  }\n  .title-right.breadcrumbs-off .hgroup {\n    padding-top: 5px;\n  }\n  .title-left.disabled-bg .breadcrumbs {\n    margin-bottom: 0;\n  }\n}\n'),(23645,3620,'_wqoecf_disable_form','no'),(23646,3620,'_edit_lock','1695534266:1'),(23647,3620,'_edit_last','1'),(23648,3621,'total_sales','0'),(23649,3621,'_tax_status','taxable'),(23650,3621,'_tax_class',''),(23651,3621,'_manage_stock','no'),(23652,3621,'_backorders','no'),(23653,3621,'_sold_individually','no'),(23654,3621,'_virtual','no'),(23655,3621,'_downloadable','no'),(23656,3621,'_download_limit','-1'),(23657,3621,'_download_expiry','-1'),(23658,3621,'_thumbnail_id','3842'),(23659,3621,'_stock',NULL),(23660,3621,'_stock_status','instock'),(23661,3621,'_wc_average_rating','0'),(23662,3621,'_wc_review_count','0'),(23663,3621,'_product_attributes','a:1:{s:15:\"pa_product-type\";a:6:{s:4:\"name\";s:15:\"pa_product-type\";s:5:\"value\";s:0:\"\";s:8:\"position\";i:0;s:10:\"is_visible\";i:0;s:12:\"is_variation\";i:0;s:11:\"is_taxonomy\";i:1;}}'),(23664,3621,'_product_version','8.0.2'),(23665,3621,'_dt_sidebar_position','disabled'),(23666,3621,'_dt_sidebar_widgetarea_id','sidebar_1'),(23667,3621,'_dt_sidebar_hide_on_mobile','0'),(23668,3621,'_dt_footer_show','1'),(23669,3621,'_dt_footer_widgetarea_id','sidebar_2'),(23670,3621,'_dt_footer_hide_on_mobile','0'),(23671,3621,'_dt_header_title','fancy'),(23672,3621,'_dt_header_background','normal'),(23673,3621,'_dt_header_background_below_slideshow','disabled'),(23674,3621,'_dt_header_transparent_bg_color_scheme','light'),(23675,3621,'_dt_header_transparent_top_bar_bg_color','#ffffff'),(23676,3621,'_dt_header_transparent_top_bar_bg_opacity','25'),(23677,3621,'_dt_header_transparent_bg_color','#000000'),(23678,3621,'_dt_header_transparent_bg_opacity','50'),(23679,3621,'_dt_header_disabled_background','normal'),(23680,3621,'_dt_header_disabled_transparent_bg_color_scheme','light'),(23681,3621,'_dt_header_disabled_transparent_top_bar_bg_color','#ffffff'),(23682,3621,'_dt_header_disabled_transparent_top_bar_bg_opacity','25'),(23683,3621,'_dt_header_disabled_transparent_bg_color','#000000'),(23684,3621,'_dt_header_disabled_transparent_bg_opacity','50'),(23685,3621,'_dt_page_overrides_top_margin','1%'),(23686,3621,'_dt_page_overrides_right_margin',''),(23687,3621,'_dt_page_overrides_bottom_margin',''),(23688,3621,'_dt_page_overrides_left_margin',''),(23689,3621,'_dt_mobile_page_padding_top',''),(23690,3621,'_dt_mobile_page_padding_right',''),(23691,3621,'_dt_mobile_page_padding_bottom',''),(23692,3621,'_dt_mobile_page_padding_left',''),(23693,3621,'_dt_fancy_header_layout_heading',''),(23694,3621,'_dt_fancy_header_title_aligment','all_left'),(23695,3621,'_dt_fancy_header_height','140'),(23696,3621,'_dt_fancy_header_padding-top','0px'),(23697,3621,'_dt_fancy_header_padding-bottom','0px'),(23698,3621,'_dt_fancy_header_breadcrumbs_heading',''),(23699,3621,'_dt_fancy_header_breadcrumbs','disabled'),(23700,3621,'_dt_fancy_header_breadcrumbs_text_color','#ffffff'),(23701,3621,'_dt_fancy_header_breadcrumbs_bg_color','disabled'),(23702,3621,'_dt_fancy_header_title_heading',''),(23703,3621,'_dt_fancy_header_title_mode','custom'),(23704,3621,'_dt_fancy_header_title',''),(23705,3621,'_dt_fancy_header_title_font_size','32'),(23706,3621,'_dt_fancy_header_title_line_height','36'),(23707,3621,'_dt_fancy_header_text_transform','none'),(23708,3621,'_dt_fancy_header_title_color_mode','color'),(23709,3621,'_dt_fancy_header_title_color','#079547'),(23710,3621,'_dt_fancy_header_subtitle_heading',''),(23711,3621,'_dt_fancy_header_subtitle',''),(23712,3621,'_dt_fancy_header_subtitle_font_size','24'),(23713,3621,'_dt_fancy_header_subtitle_line_height','26'),(23714,3621,'_dt_fancy_header_subtitle_text_transform','none'),(23715,3621,'_dt_fancy_header_subtitle_color_mode','color'),(23716,3621,'_dt_fancy_header_subtitle_color','#792c8a'),(23717,3621,'_dt_fancy_header_bg_heading',''),(23718,3621,'_dt_fancy_header_bg_color','#ffffff'),(23719,3621,'_dt_fancy_header_bg_image_origin','custom'),(23720,3621,'_dt_fancy_header_bg_image','a:1:{i:0;i:3843;}'),(23721,3621,'_dt_fancy_header_bg_repeat','no-repeat'),(23722,3621,'_dt_fancy_header_bg_position_x','center'),(23723,3621,'_dt_fancy_header_bg_position_y','center'),(23724,3621,'_dt_fancy_header_bg_fullscreen','0'),(23725,3621,'_dt_fancy_header_bg_overlay','0'),(23726,3621,'_dt_fancy_header_overlay_color','#000'),(23727,3621,'_dt_fancy_header_bg_overlay_opacity','50'),(23728,3621,'_dt_fancy_header_scroll_effect','default'),(23729,3621,'_dt_fancy_header_bg_parallax','0.5'),(23730,3621,'_dt_fancy_header_responsiveness_heading',''),(23731,3621,'_dt_fancy_header_responsiveness','enabled'),(23732,3621,'_dt_fancy_header_responsiveness_switch','778px'),(23733,3621,'_dt_fancy_header_responsive_height','140'),(23734,3621,'_dt_fancy_header_responsive_font_size','30'),(23735,3621,'_dt_fancy_header_responsive_title_line_height','38'),(23736,3621,'_dt_fancy_header_responsive_subtitle_font_size','20'),(23737,3621,'_dt_fancy_header_responsive_subtitle_line_height','28'),(23738,3621,'_dt_fancy_header_responsive_breadcrumbs','disabled'),(23739,3621,'the7_fancy_title_css','#main {\n  padding-top: 1%;\n}\n.fancy-header {\n  background-image: url(\'https://farmchemie.yasithawd.com/wp-content/uploads/2023/09/LEVERM®-600-Tab_300px.png\');\n  background-repeat: no-repeat;\n  background-position: center center;\n  background-size: auto auto;\n  background-color: #ffffff;\n}\n.mobile-false .fancy-header {\n  background-attachment: scroll;\n}\n.fancy-header .wf-wrap {\n  min-height: 140px;\n  padding-top: 0px;\n  padding-bottom: 0px;\n}\n.fancy-header .fancy-title {\n  font-size: 32px;\n  line-height: 36px;\n  color: #079547;\n  text-transform: none;\n}\n.fancy-header .fancy-subtitle {\n  font-size: 24px;\n  line-height: 26px;\n  color: #792c8a;\n  text-transform: none;\n}\n.fancy-header .breadcrumbs {\n  color: #ffffff;\n}\n.fancy-header-overlay {\n  background: rgba(0,0,0,0.5);\n}\n@media screen and (max-width: 778px) {\n  .fancy-header .wf-wrap {\n    min-height: 140px;\n  }\n  .fancy-header .fancy-title {\n    font-size: 30px;\n    line-height: 38px;\n  }\n  .fancy-header .fancy-subtitle {\n    font-size: 20px;\n    line-height: 28px;\n  }\n  .fancy-header.breadcrumbs-mobile-off .breadcrumbs {\n    display: none;\n  }\n  #fancy-header > .wf-wrap {\n    flex-flow: column wrap;\n    align-items: center;\n    justify-content: center;\n    padding-bottom: 0px !important;\n  }\n  .fancy-header.title-left .breadcrumbs {\n    text-align: center;\n    float: none;\n  }\n  .breadcrumbs {\n    margin-bottom: 10px;\n  }\n  .breadcrumbs.breadcrumbs-bg {\n    margin-top: 10px;\n  }\n  .fancy-header.title-right .breadcrumbs {\n    margin: 10px 0 10px 0;\n  }\n  #fancy-header .hgroup,\n  #fancy-header .breadcrumbs {\n    text-align: center;\n  }\n  .fancy-header .hgroup {\n    padding-bottom: 5px;\n  }\n  .breadcrumbs-off .hgroup {\n    padding-bottom: 5px;\n  }\n  .title-right .hgroup {\n    padding: 0 0 5px 0;\n  }\n  .title-right.breadcrumbs-off .hgroup {\n    padding-top: 5px;\n  }\n  .title-left.disabled-bg .breadcrumbs {\n    margin-bottom: 0;\n  }\n}\n'),(23740,3621,'_wqoecf_disable_form','no'),(23741,3621,'_edit_lock','1695518787:2'),(23742,3621,'_edit_last','2'),(23743,3622,'total_sales','0'),(23744,3622,'_tax_status','taxable'),(23745,3622,'_tax_class',''),(23746,3622,'_manage_stock','no'),(23747,3622,'_backorders','no'),(23748,3622,'_sold_individually','no'),(23749,3622,'_virtual','no'),(23750,3622,'_downloadable','no'),(23751,3622,'_download_limit','-1'),(23752,3622,'_download_expiry','-1'),(23753,3622,'_thumbnail_id','3845'),(23754,3622,'_stock',NULL),(23755,3622,'_stock_status','instock'),(23756,3622,'_wc_average_rating','0'),(23757,3622,'_wc_review_count','0'),(23758,3622,'_product_attributes','a:1:{s:15:\"pa_product-type\";a:6:{s:4:\"name\";s:15:\"pa_product-type\";s:5:\"value\";s:0:\"\";s:8:\"position\";i:0;s:10:\"is_visible\";i:0;s:12:\"is_variation\";i:0;s:11:\"is_taxonomy\";i:1;}}'),(23759,3622,'_product_version','8.0.2'),(23760,3622,'_dt_sidebar_position','disabled'),(23761,3622,'_dt_sidebar_widgetarea_id','sidebar_1'),(23762,3622,'_dt_sidebar_hide_on_mobile','0'),(23763,3622,'_dt_footer_show','1'),(23764,3622,'_dt_footer_widgetarea_id','sidebar_2'),(23765,3622,'_dt_footer_hide_on_mobile','0'),(23766,3622,'_dt_header_title','fancy'),(23767,3622,'_dt_header_background','normal'),(23768,3622,'_dt_header_background_below_slideshow','disabled'),(23769,3622,'_dt_header_transparent_bg_color_scheme','light'),(23770,3622,'_dt_header_transparent_top_bar_bg_color','#ffffff'),(23771,3622,'_dt_header_transparent_top_bar_bg_opacity','25'),(23772,3622,'_dt_header_transparent_bg_color','#000000'),(23773,3622,'_dt_header_transparent_bg_opacity','50'),(23774,3622,'_dt_header_disabled_background','normal'),(23775,3622,'_dt_header_disabled_transparent_bg_color_scheme','light'),(23776,3622,'_dt_header_disabled_transparent_top_bar_bg_color','#ffffff'),(23777,3622,'_dt_header_disabled_transparent_top_bar_bg_opacity','25'),(23778,3622,'_dt_header_disabled_transparent_bg_color','#000000'),(23779,3622,'_dt_header_disabled_transparent_bg_opacity','50'),(23780,3622,'_dt_page_overrides_top_margin','1%'),(23781,3622,'_dt_page_overrides_right_margin',''),(23782,3622,'_dt_page_overrides_bottom_margin',''),(23783,3622,'_dt_page_overrides_left_margin',''),(23784,3622,'_dt_mobile_page_padding_top',''),(23785,3622,'_dt_mobile_page_padding_right',''),(23786,3622,'_dt_mobile_page_padding_bottom',''),(23787,3622,'_dt_mobile_page_padding_left',''),(23788,3622,'_dt_fancy_header_layout_heading',''),(23789,3622,'_dt_fancy_header_title_aligment','all_left'),(23790,3622,'_dt_fancy_header_height','140'),(23791,3622,'_dt_fancy_header_padding-top','0px'),(23792,3622,'_dt_fancy_header_padding-bottom','0px'),(23793,3622,'_dt_fancy_header_breadcrumbs_heading',''),(23794,3622,'_dt_fancy_header_breadcrumbs','disabled'),(23795,3622,'_dt_fancy_header_breadcrumbs_text_color','#ffffff'),(23796,3622,'_dt_fancy_header_breadcrumbs_bg_color','disabled'),(23797,3622,'_dt_fancy_header_title_heading',''),(23798,3622,'_dt_fancy_header_title_mode','custom'),(23799,3622,'_dt_fancy_header_title',''),(23800,3622,'_dt_fancy_header_title_font_size','32'),(23801,3622,'_dt_fancy_header_title_line_height','36'),(23802,3622,'_dt_fancy_header_text_transform','none'),(23803,3622,'_dt_fancy_header_title_color_mode','color'),(23804,3622,'_dt_fancy_header_title_color','#079547'),(23805,3622,'_dt_fancy_header_subtitle_heading',''),(23806,3622,'_dt_fancy_header_subtitle',''),(23807,3622,'_dt_fancy_header_subtitle_font_size','24'),(23808,3622,'_dt_fancy_header_subtitle_line_height','26'),(23809,3622,'_dt_fancy_header_subtitle_text_transform','none'),(23810,3622,'_dt_fancy_header_subtitle_color_mode','color'),(23811,3622,'_dt_fancy_header_subtitle_color','#792c8a'),(23812,3622,'_dt_fancy_header_bg_heading',''),(23813,3622,'_dt_fancy_header_bg_color','#ffffff'),(23814,3622,'_dt_fancy_header_bg_image_origin','custom'),(23815,3622,'_dt_fancy_header_bg_image','a:1:{i:0;i:3844;}'),(23816,3622,'_dt_fancy_header_bg_repeat','no-repeat'),(23817,3622,'_dt_fancy_header_bg_position_x','center'),(23818,3622,'_dt_fancy_header_bg_position_y','center'),(23819,3622,'_dt_fancy_header_bg_fullscreen','0'),(23820,3622,'_dt_fancy_header_bg_overlay','0'),(23821,3622,'_dt_fancy_header_overlay_color','#000'),(23822,3622,'_dt_fancy_header_bg_overlay_opacity','50'),(23823,3622,'_dt_fancy_header_scroll_effect','default'),(23824,3622,'_dt_fancy_header_bg_parallax','0.5'),(23825,3622,'_dt_fancy_header_responsiveness_heading',''),(23826,3622,'_dt_fancy_header_responsiveness','enabled'),(23827,3622,'_dt_fancy_header_responsiveness_switch','778px'),(23828,3622,'_dt_fancy_header_responsive_height','140'),(23829,3622,'_dt_fancy_header_responsive_font_size','30'),(23830,3622,'_dt_fancy_header_responsive_title_line_height','38'),(23831,3622,'_dt_fancy_header_responsive_subtitle_font_size','20'),(23832,3622,'_dt_fancy_header_responsive_subtitle_line_height','28'),(23833,3622,'_dt_fancy_header_responsive_breadcrumbs','disabled'),(23834,3622,'the7_fancy_title_css','#main {\n  padding-top: 1%;\n}\n.fancy-header {\n  background-image: url(\'https://farmchemie.yasithawd.com/wp-content/uploads/2023/09/LEVERM®-3000-Bolus_300px.png\');\n  background-repeat: no-repeat;\n  background-position: center center;\n  background-size: auto auto;\n  background-color: #ffffff;\n}\n.mobile-false .fancy-header {\n  background-attachment: scroll;\n}\n.fancy-header .wf-wrap {\n  min-height: 140px;\n  padding-top: 0px;\n  padding-bottom: 0px;\n}\n.fancy-header .fancy-title {\n  font-size: 32px;\n  line-height: 36px;\n  color: #079547;\n  text-transform: none;\n}\n.fancy-header .fancy-subtitle {\n  font-size: 24px;\n  line-height: 26px;\n  color: #792c8a;\n  text-transform: none;\n}\n.fancy-header .breadcrumbs {\n  color: #ffffff;\n}\n.fancy-header-overlay {\n  background: rgba(0,0,0,0.5);\n}\n@media screen and (max-width: 778px) {\n  .fancy-header .wf-wrap {\n    min-height: 140px;\n  }\n  .fancy-header .fancy-title {\n    font-size: 30px;\n    line-height: 38px;\n  }\n  .fancy-header .fancy-subtitle {\n    font-size: 20px;\n    line-height: 28px;\n  }\n  .fancy-header.breadcrumbs-mobile-off .breadcrumbs {\n    display: none;\n  }\n  #fancy-header > .wf-wrap {\n    flex-flow: column wrap;\n    align-items: center;\n    justify-content: center;\n    padding-bottom: 0px !important;\n  }\n  .fancy-header.title-left .breadcrumbs {\n    text-align: center;\n    float: none;\n  }\n  .breadcrumbs {\n    margin-bottom: 10px;\n  }\n  .breadcrumbs.breadcrumbs-bg {\n    margin-top: 10px;\n  }\n  .fancy-header.title-right .breadcrumbs {\n    margin: 10px 0 10px 0;\n  }\n  #fancy-header .hgroup,\n  #fancy-header .breadcrumbs {\n    text-align: center;\n  }\n  .fancy-header .hgroup {\n    padding-bottom: 5px;\n  }\n  .breadcrumbs-off .hgroup {\n    padding-bottom: 5px;\n  }\n  .title-right .hgroup {\n    padding: 0 0 5px 0;\n  }\n  .title-right.breadcrumbs-off .hgroup {\n    padding-top: 5px;\n  }\n  .title-left.disabled-bg .breadcrumbs {\n    margin-bottom: 0;\n  }\n}\n'),(23835,3622,'_wqoecf_disable_form','no'),(23836,3622,'_edit_lock','1695518924:2'),(23837,3622,'_edit_last','2'),(23838,3623,'total_sales','0'),(23839,3623,'_tax_status','taxable'),(23840,3623,'_tax_class',''),(23841,3623,'_manage_stock','no'),(23842,3623,'_backorders','no'),(23843,3623,'_sold_individually','no'),(23844,3623,'_virtual','no'),(23845,3623,'_downloadable','no'),(23846,3623,'_download_limit','-1'),(23847,3623,'_download_expiry','-1'),(23848,3623,'_thumbnail_id','3839'),(23849,3623,'_stock',NULL),(23850,3623,'_stock_status','instock'),(23851,3623,'_wc_average_rating','0'),(23852,3623,'_wc_review_count','0'),(23853,3623,'_product_attributes','a:1:{s:15:\"pa_product-type\";a:6:{s:4:\"name\";s:15:\"pa_product-type\";s:5:\"value\";s:0:\"\";s:8:\"position\";i:0;s:10:\"is_visible\";i:0;s:12:\"is_variation\";i:0;s:11:\"is_taxonomy\";i:1;}}'),(23854,3623,'_product_version','8.0.2'),(23855,3623,'_dt_sidebar_position','disabled'),(23856,3623,'_dt_sidebar_widgetarea_id','sidebar_1'),(23857,3623,'_dt_sidebar_hide_on_mobile','0'),(23858,3623,'_dt_footer_show','1'),(23859,3623,'_dt_footer_widgetarea_id','sidebar_2'),(23860,3623,'_dt_footer_hide_on_mobile','0'),(23861,3623,'_dt_header_title','fancy'),(23862,3623,'_dt_header_background','normal'),(23863,3623,'_dt_header_background_below_slideshow','disabled'),(23864,3623,'_dt_header_transparent_bg_color_scheme','light'),(23865,3623,'_dt_header_transparent_top_bar_bg_color','#ffffff'),(23866,3623,'_dt_header_transparent_top_bar_bg_opacity','25'),(23867,3623,'_dt_header_transparent_bg_color','#000000'),(23868,3623,'_dt_header_transparent_bg_opacity','50'),(23869,3623,'_dt_header_disabled_background','normal'),(23870,3623,'_dt_header_disabled_transparent_bg_color_scheme','light'),(23871,3623,'_dt_header_disabled_transparent_top_bar_bg_color','#ffffff'),(23872,3623,'_dt_header_disabled_transparent_top_bar_bg_opacity','25'),(23873,3623,'_dt_header_disabled_transparent_bg_color','#000000'),(23874,3623,'_dt_header_disabled_transparent_bg_opacity','50'),(23875,3623,'_dt_page_overrides_top_margin','1%'),(23876,3623,'_dt_page_overrides_right_margin',''),(23877,3623,'_dt_page_overrides_bottom_margin',''),(23878,3623,'_dt_page_overrides_left_margin',''),(23879,3623,'_dt_mobile_page_padding_top',''),(23880,3623,'_dt_mobile_page_padding_right',''),(23881,3623,'_dt_mobile_page_padding_bottom',''),(23882,3623,'_dt_mobile_page_padding_left',''),(23883,3623,'_dt_fancy_header_layout_heading',''),(23884,3623,'_dt_fancy_header_title_aligment','all_left'),(23885,3623,'_dt_fancy_header_height','140'),(23886,3623,'_dt_fancy_header_padding-top','0px'),(23887,3623,'_dt_fancy_header_padding-bottom','0px'),(23888,3623,'_dt_fancy_header_breadcrumbs_heading',''),(23889,3623,'_dt_fancy_header_breadcrumbs','disabled'),(23890,3623,'_dt_fancy_header_breadcrumbs_text_color','#ffffff'),(23891,3623,'_dt_fancy_header_breadcrumbs_bg_color','disabled'),(23892,3623,'_dt_fancy_header_title_heading',''),(23893,3623,'_dt_fancy_header_title_mode','custom'),(23894,3623,'_dt_fancy_header_title',''),(23895,3623,'_dt_fancy_header_title_font_size','32'),(23896,3623,'_dt_fancy_header_title_line_height','36'),(23897,3623,'_dt_fancy_header_text_transform','none'),(23898,3623,'_dt_fancy_header_title_color_mode','color'),(23899,3623,'_dt_fancy_header_title_color','#079547'),(23900,3623,'_dt_fancy_header_subtitle_heading',''),(23901,3623,'_dt_fancy_header_subtitle',''),(23902,3623,'_dt_fancy_header_subtitle_font_size','24'),(23903,3623,'_dt_fancy_header_subtitle_line_height','26'),(23904,3623,'_dt_fancy_header_subtitle_text_transform','none'),(23905,3623,'_dt_fancy_header_subtitle_color_mode','color'),(23906,3623,'_dt_fancy_header_subtitle_color','#792c8a'),(23907,3623,'_dt_fancy_header_bg_heading',''),(23908,3623,'_dt_fancy_header_bg_color','#ffffff'),(23909,3623,'_dt_fancy_header_bg_image_origin','custom'),(23910,3623,'_dt_fancy_header_bg_image','a:1:{i:0;i:3838;}'),(23911,3623,'_dt_fancy_header_bg_repeat','no-repeat'),(23912,3623,'_dt_fancy_header_bg_position_x','center'),(23913,3623,'_dt_fancy_header_bg_position_y','center'),(23914,3623,'_dt_fancy_header_bg_fullscreen','0'),(23915,3623,'_dt_fancy_header_bg_overlay','0'),(23916,3623,'_dt_fancy_header_overlay_color','#000'),(23917,3623,'_dt_fancy_header_bg_overlay_opacity','50'),(23918,3623,'_dt_fancy_header_scroll_effect','default'),(23919,3623,'_dt_fancy_header_bg_parallax','0.5'),(23920,3623,'_dt_fancy_header_responsiveness_heading',''),(23921,3623,'_dt_fancy_header_responsiveness','enabled'),(23922,3623,'_dt_fancy_header_responsiveness_switch','778px'),(23923,3623,'_dt_fancy_header_responsive_height','140'),(23924,3623,'_dt_fancy_header_responsive_font_size','30'),(23925,3623,'_dt_fancy_header_responsive_title_line_height','38'),(23926,3623,'_dt_fancy_header_responsive_subtitle_font_size','20'),(23927,3623,'_dt_fancy_header_responsive_subtitle_line_height','28'),(23928,3623,'_dt_fancy_header_responsive_breadcrumbs','disabled'),(23929,3623,'the7_fancy_title_css','#main {\n  padding-top: 1%;\n}\n.fancy-header {\n  background-image: url(\'https://farmchemie.yasithawd.com/wp-content/uploads/2023/09/Rentol-10_300px.png\');\n  background-repeat: no-repeat;\n  background-position: center center;\n  background-size: auto auto;\n  background-color: #ffffff;\n}\n.mobile-false .fancy-header {\n  background-attachment: scroll;\n}\n.fancy-header .wf-wrap {\n  min-height: 140px;\n  padding-top: 0px;\n  padding-bottom: 0px;\n}\n.fancy-header .fancy-title {\n  font-size: 32px;\n  line-height: 36px;\n  color: #079547;\n  text-transform: none;\n}\n.fancy-header .fancy-subtitle {\n  font-size: 24px;\n  line-height: 26px;\n  color: #792c8a;\n  text-transform: none;\n}\n.fancy-header .breadcrumbs {\n  color: #ffffff;\n}\n.fancy-header-overlay {\n  background: rgba(0,0,0,0.5);\n}\n@media screen and (max-width: 778px) {\n  .fancy-header .wf-wrap {\n    min-height: 140px;\n  }\n  .fancy-header .fancy-title {\n    font-size: 30px;\n    line-height: 38px;\n  }\n  .fancy-header .fancy-subtitle {\n    font-size: 20px;\n    line-height: 28px;\n  }\n  .fancy-header.breadcrumbs-mobile-off .breadcrumbs {\n    display: none;\n  }\n  #fancy-header > .wf-wrap {\n    flex-flow: column wrap;\n    align-items: center;\n    justify-content: center;\n    padding-bottom: 0px !important;\n  }\n  .fancy-header.title-left .breadcrumbs {\n    text-align: center;\n    float: none;\n  }\n  .breadcrumbs {\n    margin-bottom: 10px;\n  }\n  .breadcrumbs.breadcrumbs-bg {\n    margin-top: 10px;\n  }\n  .fancy-header.title-right .breadcrumbs {\n    margin: 10px 0 10px 0;\n  }\n  #fancy-header .hgroup,\n  #fancy-header .breadcrumbs {\n    text-align: center;\n  }\n  .fancy-header .hgroup {\n    padding-bottom: 5px;\n  }\n  .breadcrumbs-off .hgroup {\n    padding-bottom: 5px;\n  }\n  .title-right .hgroup {\n    padding: 0 0 5px 0;\n  }\n  .title-right.breadcrumbs-off .hgroup {\n    padding-top: 5px;\n  }\n  .title-left.disabled-bg .breadcrumbs {\n    margin-bottom: 0;\n  }\n}\n'),(23930,3623,'_wqoecf_disable_form','no'),(23931,3623,'_edit_lock','1695470327:1'),(23932,3623,'_edit_last','1'),(23933,3624,'total_sales','0'),(23934,3624,'_tax_status','taxable'),(23935,3624,'_tax_class',''),(23936,3624,'_manage_stock','no'),(23937,3624,'_backorders','no'),(23938,3624,'_sold_individually','no'),(23939,3624,'_virtual','no'),(23940,3624,'_downloadable','no'),(23941,3624,'_download_limit','-1'),(23942,3624,'_download_expiry','-1'),(23943,3624,'_thumbnail_id','2726'),(23944,3624,'_stock',NULL),(23945,3624,'_stock_status','instock'),(23946,3624,'_wc_average_rating','0'),(23947,3624,'_wc_review_count','0'),(23948,3624,'_product_attributes','a:1:{s:15:\"pa_product-type\";a:6:{s:4:\"name\";s:15:\"pa_product-type\";s:5:\"value\";s:0:\"\";s:8:\"position\";i:0;s:10:\"is_visible\";i:0;s:12:\"is_variation\";i:0;s:11:\"is_taxonomy\";i:1;}}'),(23949,3624,'_product_version','8.0.2'),(23950,3624,'_dt_sidebar_position','disabled'),(23951,3624,'_dt_sidebar_widgetarea_id','sidebar_1'),(23952,3624,'_dt_sidebar_hide_on_mobile','0'),(23953,3624,'_dt_footer_show','1'),(23954,3624,'_dt_footer_widgetarea_id','sidebar_2'),(23955,3624,'_dt_footer_hide_on_mobile','0'),(23956,3624,'_dt_header_title','fancy'),(23957,3624,'_dt_header_background','normal'),(23958,3624,'_dt_header_background_below_slideshow','disabled'),(23959,3624,'_dt_header_transparent_bg_color_scheme','light'),(23960,3624,'_dt_header_transparent_top_bar_bg_color','#ffffff'),(23961,3624,'_dt_header_transparent_top_bar_bg_opacity','25'),(23962,3624,'_dt_header_transparent_bg_color','#000000'),(23963,3624,'_dt_header_transparent_bg_opacity','50'),(23964,3624,'_dt_header_disabled_background','normal'),(23965,3624,'_dt_header_disabled_transparent_bg_color_scheme','light'),(23966,3624,'_dt_header_disabled_transparent_top_bar_bg_color','#ffffff'),(23967,3624,'_dt_header_disabled_transparent_top_bar_bg_opacity','25'),(23968,3624,'_dt_header_disabled_transparent_bg_color','#000000'),(23969,3624,'_dt_header_disabled_transparent_bg_opacity','50'),(23970,3624,'_dt_page_overrides_top_margin','1%'),(23971,3624,'_dt_page_overrides_right_margin',''),(23972,3624,'_dt_page_overrides_bottom_margin',''),(23973,3624,'_dt_page_overrides_left_margin',''),(23974,3624,'_dt_mobile_page_padding_top',''),(23975,3624,'_dt_mobile_page_padding_right',''),(23976,3624,'_dt_mobile_page_padding_bottom',''),(23977,3624,'_dt_mobile_page_padding_left',''),(23978,3624,'_dt_fancy_header_layout_heading',''),(23979,3624,'_dt_fancy_header_title_aligment','all_left'),(23980,3624,'_dt_fancy_header_height','140'),(23981,3624,'_dt_fancy_header_padding-top','0px'),(23982,3624,'_dt_fancy_header_padding-bottom','0px'),(23983,3624,'_dt_fancy_header_breadcrumbs_heading',''),(23984,3624,'_dt_fancy_header_breadcrumbs','disabled'),(23985,3624,'_dt_fancy_header_breadcrumbs_text_color','#ffffff'),(23986,3624,'_dt_fancy_header_breadcrumbs_bg_color','disabled'),(23987,3624,'_dt_fancy_header_title_heading',''),(23988,3624,'_dt_fancy_header_title_mode','custom'),(23989,3624,'_dt_fancy_header_title',''),(23990,3624,'_dt_fancy_header_title_font_size','32'),(23991,3624,'_dt_fancy_header_title_line_height','36'),(23992,3624,'_dt_fancy_header_text_transform','none'),(23993,3624,'_dt_fancy_header_title_color_mode','color'),(23994,3624,'_dt_fancy_header_title_color','#079547'),(23995,3624,'_dt_fancy_header_subtitle_heading',''),(23996,3624,'_dt_fancy_header_subtitle',''),(23997,3624,'_dt_fancy_header_subtitle_font_size','24'),(23998,3624,'_dt_fancy_header_subtitle_line_height','26'),(23999,3624,'_dt_fancy_header_subtitle_text_transform','none'),(24000,3624,'_dt_fancy_header_subtitle_color_mode','color'),(24001,3624,'_dt_fancy_header_subtitle_color','#792c8a'),(24002,3624,'_dt_fancy_header_bg_heading',''),(24003,3624,'_dt_fancy_header_bg_color','#ffffff'),(24004,3624,'_dt_fancy_header_bg_image_origin','custom'),(24005,3624,'_dt_fancy_header_bg_image','a:0:{}'),(24006,3624,'_dt_fancy_header_bg_repeat','no-repeat'),(24007,3624,'_dt_fancy_header_bg_position_x','center'),(24008,3624,'_dt_fancy_header_bg_position_y','center'),(24009,3624,'_dt_fancy_header_bg_fullscreen','0'),(24010,3624,'_dt_fancy_header_bg_overlay','0'),(24011,3624,'_dt_fancy_header_overlay_color','#000'),(24012,3624,'_dt_fancy_header_bg_overlay_opacity','50'),(24013,3624,'_dt_fancy_header_scroll_effect','default'),(24014,3624,'_dt_fancy_header_bg_parallax','0.5'),(24015,3624,'_dt_fancy_header_responsiveness_heading',''),(24016,3624,'_dt_fancy_header_responsiveness','enabled'),(24017,3624,'_dt_fancy_header_responsiveness_switch','778px'),(24018,3624,'_dt_fancy_header_responsive_height','140'),(24019,3624,'_dt_fancy_header_responsive_font_size','30'),(24020,3624,'_dt_fancy_header_responsive_title_line_height','38'),(24021,3624,'_dt_fancy_header_responsive_subtitle_font_size','20'),(24022,3624,'_dt_fancy_header_responsive_subtitle_line_height','28'),(24023,3624,'_dt_fancy_header_responsive_breadcrumbs','disabled'),(24024,3624,'the7_fancy_title_css','#main {\n  padding-top: 1%;\n}\n.fancy-header {\n  background-image: none;\n  background-repeat: no-repeat;\n  background-position: center center;\n  background-size: auto auto;\n  background-color: #ffffff;\n}\n.mobile-false .fancy-header {\n  background-attachment: scroll;\n}\n.fancy-header .wf-wrap {\n  min-height: 140px;\n  padding-top: 0px;\n  padding-bottom: 0px;\n}\n.fancy-header .fancy-title {\n  font-size: 32px;\n  line-height: 36px;\n  color: #079547;\n  text-transform: none;\n}\n.fancy-header .fancy-subtitle {\n  font-size: 24px;\n  line-height: 26px;\n  color: #792c8a;\n  text-transform: none;\n}\n.fancy-header .breadcrumbs {\n  color: #ffffff;\n}\n.fancy-header-overlay {\n  background: rgba(0,0,0,0.5);\n}\n@media screen and (max-width: 778px) {\n  .fancy-header .wf-wrap {\n    min-height: 140px;\n  }\n  .fancy-header .fancy-title {\n    font-size: 30px;\n    line-height: 38px;\n  }\n  .fancy-header .fancy-subtitle {\n    font-size: 20px;\n    line-height: 28px;\n  }\n  .fancy-header.breadcrumbs-mobile-off .breadcrumbs {\n    display: none;\n  }\n  #fancy-header > .wf-wrap {\n    flex-flow: column wrap;\n    align-items: center;\n    justify-content: center;\n    padding-bottom: 0px !important;\n  }\n  .fancy-header.title-left .breadcrumbs {\n    text-align: center;\n    float: none;\n  }\n  .breadcrumbs {\n    margin-bottom: 10px;\n  }\n  .breadcrumbs.breadcrumbs-bg {\n    margin-top: 10px;\n  }\n  .fancy-header.title-right .breadcrumbs {\n    margin: 10px 0 10px 0;\n  }\n  #fancy-header .hgroup,\n  #fancy-header .breadcrumbs {\n    text-align: center;\n  }\n  .fancy-header .hgroup {\n    padding-bottom: 5px;\n  }\n  .breadcrumbs-off .hgroup {\n    padding-bottom: 5px;\n  }\n  .title-right .hgroup {\n    padding: 0 0 5px 0;\n  }\n  .title-right.breadcrumbs-off .hgroup {\n    padding-top: 5px;\n  }\n  .title-left.disabled-bg .breadcrumbs {\n    margin-bottom: 0;\n  }\n}\n'),(24025,3624,'_wqoecf_disable_form','no'),(24026,3624,'_edit_lock','1694664314:1'),(24027,3624,'_edit_last','1'),(24028,3625,'total_sales','0'),(24029,3625,'_tax_status','taxable'),(24030,3625,'_tax_class',''),(24031,3625,'_manage_stock','no'),(24032,3625,'_backorders','no'),(24033,3625,'_sold_individually','no'),(24034,3625,'_virtual','no'),(24035,3625,'_downloadable','no'),(24036,3625,'_download_limit','-1'),(24037,3625,'_download_expiry','-1'),(24125,3626,'_tax_class',''),(24039,3625,'_stock',NULL),(24040,3625,'_stock_status','instock'),(24041,3625,'_wc_average_rating','0'),(24042,3625,'_wc_review_count','0'),(24043,3625,'_product_attributes','a:1:{s:15:\"pa_product-type\";a:6:{s:4:\"name\";s:15:\"pa_product-type\";s:5:\"value\";s:0:\"\";s:8:\"position\";i:0;s:10:\"is_visible\";i:0;s:12:\"is_variation\";i:0;s:11:\"is_taxonomy\";i:1;}}'),(24044,3625,'_product_version','8.0.2'),(24045,3625,'_dt_sidebar_position','disabled'),(24046,3625,'_dt_sidebar_widgetarea_id','sidebar_1'),(24047,3625,'_dt_sidebar_hide_on_mobile','0'),(24048,3625,'_dt_footer_show','1'),(24049,3625,'_dt_footer_widgetarea_id','sidebar_2'),(24050,3625,'_dt_footer_hide_on_mobile','0'),(24051,3625,'_dt_header_title','fancy'),(24052,3625,'_dt_header_background','normal'),(24053,3625,'_dt_header_background_below_slideshow','disabled'),(24054,3625,'_dt_header_transparent_bg_color_scheme','light'),(24055,3625,'_dt_header_transparent_top_bar_bg_color','#ffffff'),(24056,3625,'_dt_header_transparent_top_bar_bg_opacity','25'),(24057,3625,'_dt_header_transparent_bg_color','#000000'),(24058,3625,'_dt_header_transparent_bg_opacity','50'),(24059,3625,'_dt_header_disabled_background','normal'),(24060,3625,'_dt_header_disabled_transparent_bg_color_scheme','light'),(24061,3625,'_dt_header_disabled_transparent_top_bar_bg_color','#ffffff'),(24062,3625,'_dt_header_disabled_transparent_top_bar_bg_opacity','25'),(24063,3625,'_dt_header_disabled_transparent_bg_color','#000000'),(24064,3625,'_dt_header_disabled_transparent_bg_opacity','50'),(24065,3625,'_dt_page_overrides_top_margin','1%'),(24066,3625,'_dt_page_overrides_right_margin',''),(24067,3625,'_dt_page_overrides_bottom_margin',''),(24068,3625,'_dt_page_overrides_left_margin',''),(24069,3625,'_dt_mobile_page_padding_top',''),(24070,3625,'_dt_mobile_page_padding_right',''),(24071,3625,'_dt_mobile_page_padding_bottom',''),(24072,3625,'_dt_mobile_page_padding_left',''),(24073,3625,'_dt_fancy_header_layout_heading',''),(24074,3625,'_dt_fancy_header_title_aligment','all_left'),(24075,3625,'_dt_fancy_header_height','140'),(24076,3625,'_dt_fancy_header_padding-top','0px'),(24077,3625,'_dt_fancy_header_padding-bottom','0px'),(24078,3625,'_dt_fancy_header_breadcrumbs_heading',''),(24079,3625,'_dt_fancy_header_breadcrumbs','disabled'),(24080,3625,'_dt_fancy_header_breadcrumbs_text_color','#ffffff'),(24081,3625,'_dt_fancy_header_breadcrumbs_bg_color','disabled'),(24082,3625,'_dt_fancy_header_title_heading',''),(24083,3625,'_dt_fancy_header_title_mode','custom'),(24084,3625,'_dt_fancy_header_title',''),(24085,3625,'_dt_fancy_header_title_font_size','32'),(24086,3625,'_dt_fancy_header_title_line_height','36'),(24087,3625,'_dt_fancy_header_text_transform','none'),(24088,3625,'_dt_fancy_header_title_color_mode','color'),(24089,3625,'_dt_fancy_header_title_color','#079547'),(24090,3625,'_dt_fancy_header_subtitle_heading',''),(24091,3625,'_dt_fancy_header_subtitle',''),(24092,3625,'_dt_fancy_header_subtitle_font_size','24'),(24093,3625,'_dt_fancy_header_subtitle_line_height','26'),(24094,3625,'_dt_fancy_header_subtitle_text_transform','none'),(24095,3625,'_dt_fancy_header_subtitle_color_mode','color'),(24096,3625,'_dt_fancy_header_subtitle_color','#792c8a'),(24097,3625,'_dt_fancy_header_bg_heading',''),(24098,3625,'_dt_fancy_header_bg_color','#ffffff'),(24099,3625,'_dt_fancy_header_bg_image_origin','custom'),(24100,3625,'_dt_fancy_header_bg_image','a:1:{i:0;i:3853;}'),(24101,3625,'_dt_fancy_header_bg_repeat','no-repeat'),(24102,3625,'_dt_fancy_header_bg_position_x','center'),(24103,3625,'_dt_fancy_header_bg_position_y','center'),(24104,3625,'_dt_fancy_header_bg_fullscreen','0'),(24105,3625,'_dt_fancy_header_bg_overlay','0'),(24106,3625,'_dt_fancy_header_overlay_color','#000'),(24107,3625,'_dt_fancy_header_bg_overlay_opacity','50'),(24108,3625,'_dt_fancy_header_scroll_effect','default'),(24109,3625,'_dt_fancy_header_bg_parallax','0.5'),(24110,3625,'_dt_fancy_header_responsiveness_heading',''),(24111,3625,'_dt_fancy_header_responsiveness','enabled'),(24112,3625,'_dt_fancy_header_responsiveness_switch','778px'),(24113,3625,'_dt_fancy_header_responsive_height','140'),(24114,3625,'_dt_fancy_header_responsive_font_size','30'),(24115,3625,'_dt_fancy_header_responsive_title_line_height','38'),(24116,3625,'_dt_fancy_header_responsive_subtitle_font_size','20'),(24117,3625,'_dt_fancy_header_responsive_subtitle_line_height','28'),(24118,3625,'_dt_fancy_header_responsive_breadcrumbs','disabled'),(24119,3625,'the7_fancy_title_css','#main {\n  padding-top: 1%;\n}\n.fancy-header {\n  background-image: url(\'https://farmchemie.yasithawd.com/wp-content/uploads/2023/09/OXITOLAC_300px.png\');\n  background-repeat: no-repeat;\n  background-position: center center;\n  background-size: auto auto;\n  background-color: #ffffff;\n}\n.mobile-false .fancy-header {\n  background-attachment: scroll;\n}\n.fancy-header .wf-wrap {\n  min-height: 140px;\n  padding-top: 0px;\n  padding-bottom: 0px;\n}\n.fancy-header .fancy-title {\n  font-size: 32px;\n  line-height: 36px;\n  color: #079547;\n  text-transform: none;\n}\n.fancy-header .fancy-subtitle {\n  font-size: 24px;\n  line-height: 26px;\n  color: #792c8a;\n  text-transform: none;\n}\n.fancy-header .breadcrumbs {\n  color: #ffffff;\n}\n.fancy-header-overlay {\n  background: rgba(0,0,0,0.5);\n}\n@media screen and (max-width: 778px) {\n  .fancy-header .wf-wrap {\n    min-height: 140px;\n  }\n  .fancy-header .fancy-title {\n    font-size: 30px;\n    line-height: 38px;\n  }\n  .fancy-header .fancy-subtitle {\n    font-size: 20px;\n    line-height: 28px;\n  }\n  .fancy-header.breadcrumbs-mobile-off .breadcrumbs {\n    display: none;\n  }\n  #fancy-header > .wf-wrap {\n    flex-flow: column wrap;\n    align-items: center;\n    justify-content: center;\n    padding-bottom: 0px !important;\n  }\n  .fancy-header.title-left .breadcrumbs {\n    text-align: center;\n    float: none;\n  }\n  .breadcrumbs {\n    margin-bottom: 10px;\n  }\n  .breadcrumbs.breadcrumbs-bg {\n    margin-top: 10px;\n  }\n  .fancy-header.title-right .breadcrumbs {\n    margin: 10px 0 10px 0;\n  }\n  #fancy-header .hgroup,\n  #fancy-header .breadcrumbs {\n    text-align: center;\n  }\n  .fancy-header .hgroup {\n    padding-bottom: 5px;\n  }\n  .breadcrumbs-off .hgroup {\n    padding-bottom: 5px;\n  }\n  .title-right .hgroup {\n    padding: 0 0 5px 0;\n  }\n  .title-right.breadcrumbs-off .hgroup {\n    padding-top: 5px;\n  }\n  .title-left.disabled-bg .breadcrumbs {\n    margin-bottom: 0;\n  }\n}\n'),(24120,3625,'_wqoecf_disable_form','no'),(24121,3625,'_edit_lock','1695471448:1'),(24123,3626,'total_sales','0'),(24124,3626,'_tax_status','taxable'),(24122,3625,'_edit_last','1'),(24126,3626,'_manage_stock','no'),(24127,3626,'_backorders','no'),(24128,3626,'_sold_individually','no'),(24129,3626,'_virtual','no'),(24130,3626,'_downloadable','no'),(24131,3626,'_download_limit','-1'),(24132,3626,'_download_expiry','-1'),(24133,3626,'_stock',NULL),(24134,3626,'_stock_status','instock'),(24135,3626,'_wc_average_rating','0'),(24136,3626,'_wc_review_count','0'),(24137,3626,'_product_attributes','a:1:{s:15:\"pa_product-type\";a:6:{s:4:\"name\";s:15:\"pa_product-type\";s:5:\"value\";s:0:\"\";s:8:\"position\";i:0;s:10:\"is_visible\";i:0;s:12:\"is_variation\";i:0;s:11:\"is_taxonomy\";i:1;}}'),(24138,3626,'_product_version','8.0.2'),(24139,3626,'_dt_sidebar_position','disabled'),(24140,3626,'_dt_sidebar_widgetarea_id','sidebar_1'),(24141,3626,'_dt_sidebar_hide_on_mobile','0'),(24142,3626,'_dt_footer_show','1'),(24143,3626,'_dt_footer_widgetarea_id','sidebar_2'),(24144,3626,'_dt_footer_hide_on_mobile','0'),(24145,3626,'_dt_header_title','fancy'),(24146,3626,'_dt_header_background','normal'),(24147,3626,'_dt_header_background_below_slideshow','disabled'),(24148,3626,'_dt_header_transparent_bg_color_scheme','light'),(24149,3626,'_dt_header_transparent_top_bar_bg_color','#ffffff'),(24150,3626,'_dt_header_transparent_top_bar_bg_opacity','25'),(24151,3626,'_dt_header_transparent_bg_color','#000000'),(24152,3626,'_dt_header_transparent_bg_opacity','50'),(24153,3626,'_dt_header_disabled_background','normal'),(24154,3626,'_dt_header_disabled_transparent_bg_color_scheme','light'),(24155,3626,'_dt_header_disabled_transparent_top_bar_bg_color','#ffffff'),(24156,3626,'_dt_header_disabled_transparent_top_bar_bg_opacity','25'),(24157,3626,'_dt_header_disabled_transparent_bg_color','#000000'),(24158,3626,'_dt_header_disabled_transparent_bg_opacity','50'),(24159,3626,'_dt_page_overrides_top_margin','1%'),(24160,3626,'_dt_page_overrides_right_margin',''),(24161,3626,'_dt_page_overrides_bottom_margin',''),(24162,3626,'_dt_page_overrides_left_margin',''),(24163,3626,'_dt_mobile_page_padding_top',''),(24164,3626,'_dt_mobile_page_padding_right',''),(24165,3626,'_dt_mobile_page_padding_bottom',''),(24166,3626,'_dt_mobile_page_padding_left',''),(24167,3626,'_dt_fancy_header_layout_heading',''),(24168,3626,'_dt_fancy_header_title_aligment','all_left'),(24169,3626,'_dt_fancy_header_height','140'),(24170,3626,'_dt_fancy_header_padding-top','0px'),(24171,3626,'_dt_fancy_header_padding-bottom','0px'),(24172,3626,'_dt_fancy_header_breadcrumbs_heading',''),(24173,3626,'_dt_fancy_header_breadcrumbs','disabled'),(24174,3626,'_dt_fancy_header_breadcrumbs_text_color','#ffffff'),(24175,3626,'_dt_fancy_header_breadcrumbs_bg_color','disabled'),(24176,3626,'_dt_fancy_header_title_heading',''),(24177,3626,'_dt_fancy_header_title_mode','custom'),(24178,3626,'_dt_fancy_header_title',''),(24179,3626,'_dt_fancy_header_title_font_size','32'),(24180,3626,'_dt_fancy_header_title_line_height','36'),(24181,3626,'_dt_fancy_header_text_transform','none'),(24182,3626,'_dt_fancy_header_title_color_mode','color'),(24183,3626,'_dt_fancy_header_title_color','#079547'),(24184,3626,'_dt_fancy_header_subtitle_heading',''),(24185,3626,'_dt_fancy_header_subtitle',''),(24186,3626,'_dt_fancy_header_subtitle_font_size','24'),(24187,3626,'_dt_fancy_header_subtitle_line_height','26'),(24188,3626,'_dt_fancy_header_subtitle_text_transform','none'),(24189,3626,'_dt_fancy_header_subtitle_color_mode','color'),(24190,3626,'_dt_fancy_header_subtitle_color','#792c8a'),(24191,3626,'_dt_fancy_header_bg_heading',''),(24192,3626,'_dt_fancy_header_bg_color','#ffffff'),(24193,3626,'_dt_fancy_header_bg_image_origin','custom'),(24194,3626,'_dt_fancy_header_bg_image','a:1:{i:0;i:3892;}'),(24195,3626,'_dt_fancy_header_bg_repeat','no-repeat'),(24196,3626,'_dt_fancy_header_bg_position_x','center'),(24197,3626,'_dt_fancy_header_bg_position_y','center'),(24198,3626,'_dt_fancy_header_bg_fullscreen','0'),(24199,3626,'_dt_fancy_header_bg_overlay','0'),(24200,3626,'_dt_fancy_header_overlay_color','#000'),(24201,3626,'_dt_fancy_header_bg_overlay_opacity','50'),(24202,3626,'_dt_fancy_header_scroll_effect','default'),(24203,3626,'_dt_fancy_header_bg_parallax','0.5'),(24204,3626,'_dt_fancy_header_responsiveness_heading',''),(24205,3626,'_dt_fancy_header_responsiveness','enabled'),(24206,3626,'_dt_fancy_header_responsiveness_switch','778px'),(24207,3626,'_dt_fancy_header_responsive_height','140'),(24208,3626,'_dt_fancy_header_responsive_font_size','30'),(24209,3626,'_dt_fancy_header_responsive_title_line_height','38'),(24210,3626,'_dt_fancy_header_responsive_subtitle_font_size','20'),(24211,3626,'_dt_fancy_header_responsive_subtitle_line_height','28'),(24212,3626,'_dt_fancy_header_responsive_breadcrumbs','disabled'),(24213,3626,'the7_fancy_title_css','#main {\n  padding-top: 1%;\n}\n.fancy-header {\n  background-image: url(\'https://farmchemie.yasithawd.com/wp-content/uploads/2023/09/ULTRAFORT-B_300px.png\');\n  background-repeat: no-repeat;\n  background-position: center center;\n  background-size: auto auto;\n  background-color: #ffffff;\n}\n.mobile-false .fancy-header {\n  background-attachment: scroll;\n}\n.fancy-header .wf-wrap {\n  min-height: 140px;\n  padding-top: 0px;\n  padding-bottom: 0px;\n}\n.fancy-header .fancy-title {\n  font-size: 32px;\n  line-height: 36px;\n  color: #079547;\n  text-transform: none;\n}\n.fancy-header .fancy-subtitle {\n  font-size: 24px;\n  line-height: 26px;\n  color: #792c8a;\n  text-transform: none;\n}\n.fancy-header .breadcrumbs {\n  color: #ffffff;\n}\n.fancy-header-overlay {\n  background: rgba(0,0,0,0.5);\n}\n@media screen and (max-width: 778px) {\n  .fancy-header .wf-wrap {\n    min-height: 140px;\n  }\n  .fancy-header .fancy-title {\n    font-size: 30px;\n    line-height: 38px;\n  }\n  .fancy-header .fancy-subtitle {\n    font-size: 20px;\n    line-height: 28px;\n  }\n  .fancy-header.breadcrumbs-mobile-off .breadcrumbs {\n    display: none;\n  }\n  #fancy-header > .wf-wrap {\n    flex-flow: column wrap;\n    align-items: center;\n    justify-content: center;\n    padding-bottom: 0px !important;\n  }\n  .fancy-header.title-left .breadcrumbs {\n    text-align: center;\n    float: none;\n  }\n  .breadcrumbs {\n    margin-bottom: 10px;\n  }\n  .breadcrumbs.breadcrumbs-bg {\n    margin-top: 10px;\n  }\n  .fancy-header.title-right .breadcrumbs {\n    margin: 10px 0 10px 0;\n  }\n  #fancy-header .hgroup,\n  #fancy-header .breadcrumbs {\n    text-align: center;\n  }\n  .fancy-header .hgroup {\n    padding-bottom: 5px;\n  }\n  .breadcrumbs-off .hgroup {\n    padding-bottom: 5px;\n  }\n  .title-right .hgroup {\n    padding: 0 0 5px 0;\n  }\n  .title-right.breadcrumbs-off .hgroup {\n    padding-top: 5px;\n  }\n  .title-left.disabled-bg .breadcrumbs {\n    margin-bottom: 0;\n  }\n}\n'),(24214,3626,'_wqoecf_disable_form','no'),(24215,3626,'_edit_lock','1695534266:1'),(24216,3626,'_edit_last','1'),(24217,3627,'total_sales','0'),(24218,3627,'_tax_status','taxable'),(24219,3627,'_tax_class',''),(24220,3627,'_manage_stock','no'),(24221,3627,'_backorders','no'),(24222,3627,'_sold_individually','no'),(24223,3627,'_virtual','no'),(24224,3627,'_downloadable','no'),(24225,3627,'_download_limit','-1'),(24226,3627,'_download_expiry','-1'),(24227,3627,'_stock',NULL),(24228,3627,'_stock_status','instock'),(24229,3627,'_wc_average_rating','0'),(24230,3627,'_wc_review_count','0'),(24231,3627,'_product_attributes','a:1:{s:15:\"pa_product-type\";a:6:{s:4:\"name\";s:15:\"pa_product-type\";s:5:\"value\";s:0:\"\";s:8:\"position\";i:0;s:10:\"is_visible\";i:0;s:12:\"is_variation\";i:0;s:11:\"is_taxonomy\";i:1;}}'),(24232,3627,'_product_version','8.0.2'),(24233,3627,'_dt_sidebar_position','disabled'),(24234,3627,'_dt_sidebar_widgetarea_id','sidebar_1'),(24235,3627,'_dt_sidebar_hide_on_mobile','0'),(24236,3627,'_dt_footer_show','1'),(24237,3627,'_dt_footer_widgetarea_id','sidebar_2'),(24238,3627,'_dt_footer_hide_on_mobile','0'),(24239,3627,'_dt_header_title','fancy'),(24240,3627,'_dt_header_background','normal'),(24241,3627,'_dt_header_background_below_slideshow','disabled'),(24242,3627,'_dt_header_transparent_bg_color_scheme','light'),(24243,3627,'_dt_header_transparent_top_bar_bg_color','#ffffff'),(24244,3627,'_dt_header_transparent_top_bar_bg_opacity','25'),(24245,3627,'_dt_header_transparent_bg_color','#000000'),(24246,3627,'_dt_header_transparent_bg_opacity','50'),(24247,3627,'_dt_header_disabled_background','normal'),(24248,3627,'_dt_header_disabled_transparent_bg_color_scheme','light'),(24249,3627,'_dt_header_disabled_transparent_top_bar_bg_color','#ffffff'),(24250,3627,'_dt_header_disabled_transparent_top_bar_bg_opacity','25'),(24251,3627,'_dt_header_disabled_transparent_bg_color','#000000'),(24252,3627,'_dt_header_disabled_transparent_bg_opacity','50'),(24253,3627,'_dt_page_overrides_top_margin','1%'),(24254,3627,'_dt_page_overrides_right_margin',''),(24255,3627,'_dt_page_overrides_bottom_margin',''),(24256,3627,'_dt_page_overrides_left_margin',''),(24257,3627,'_dt_mobile_page_padding_top',''),(24258,3627,'_dt_mobile_page_padding_right',''),(24259,3627,'_dt_mobile_page_padding_bottom',''),(24260,3627,'_dt_mobile_page_padding_left',''),(24261,3627,'_dt_fancy_header_layout_heading',''),(24262,3627,'_dt_fancy_header_title_aligment','all_left'),(24263,3627,'_dt_fancy_header_height','140'),(24264,3627,'_dt_fancy_header_padding-top','0px'),(24265,3627,'_dt_fancy_header_padding-bottom','0px'),(24266,3627,'_dt_fancy_header_breadcrumbs_heading',''),(24267,3627,'_dt_fancy_header_breadcrumbs','disabled'),(24268,3627,'_dt_fancy_header_breadcrumbs_text_color','#ffffff'),(24269,3627,'_dt_fancy_header_breadcrumbs_bg_color','disabled'),(24270,3627,'_dt_fancy_header_title_heading',''),(24271,3627,'_dt_fancy_header_title_mode','custom'),(24272,3627,'_dt_fancy_header_title',''),(24273,3627,'_dt_fancy_header_title_font_size','32'),(24274,3627,'_dt_fancy_header_title_line_height','36'),(24275,3627,'_dt_fancy_header_text_transform','none'),(24276,3627,'_dt_fancy_header_title_color_mode','color'),(24277,3627,'_dt_fancy_header_title_color','#079547'),(24278,3627,'_dt_fancy_header_subtitle_heading',''),(24279,3627,'_dt_fancy_header_subtitle',''),(24280,3627,'_dt_fancy_header_subtitle_font_size','24'),(24281,3627,'_dt_fancy_header_subtitle_line_height','26'),(24282,3627,'_dt_fancy_header_subtitle_text_transform','none'),(24283,3627,'_dt_fancy_header_subtitle_color_mode','color'),(24284,3627,'_dt_fancy_header_subtitle_color','#792c8a'),(24285,3627,'_dt_fancy_header_bg_heading',''),(24286,3627,'_dt_fancy_header_bg_color','#ffffff'),(24287,3627,'_dt_fancy_header_bg_image_origin','custom'),(24288,3627,'_dt_fancy_header_bg_image','a:1:{i:0;i:3849;}'),(24289,3627,'_dt_fancy_header_bg_repeat','no-repeat'),(24290,3627,'_dt_fancy_header_bg_position_x','center'),(24291,3627,'_dt_fancy_header_bg_position_y','center'),(24292,3627,'_dt_fancy_header_bg_fullscreen','0'),(24293,3627,'_dt_fancy_header_bg_overlay','0'),(24294,3627,'_dt_fancy_header_overlay_color','#000'),(24295,3627,'_dt_fancy_header_bg_overlay_opacity','50'),(24296,3627,'_dt_fancy_header_scroll_effect','default'),(24297,3627,'_dt_fancy_header_bg_parallax','0.5'),(24298,3627,'_dt_fancy_header_responsiveness_heading',''),(24299,3627,'_dt_fancy_header_responsiveness','enabled'),(24300,3627,'_dt_fancy_header_responsiveness_switch','778px'),(24301,3627,'_dt_fancy_header_responsive_height','140'),(24302,3627,'_dt_fancy_header_responsive_font_size','30'),(24303,3627,'_dt_fancy_header_responsive_title_line_height','38'),(24304,3627,'_dt_fancy_header_responsive_subtitle_font_size','20'),(24305,3627,'_dt_fancy_header_responsive_subtitle_line_height','28'),(24306,3627,'_dt_fancy_header_responsive_breadcrumbs','disabled'),(24307,3627,'the7_fancy_title_css','#main {\n  padding-top: 1%;\n}\n.fancy-header {\n  background-image: url(\'https://farmchemie.yasithawd.com/wp-content/uploads/2023/09/BOLOS_UTERINOS_300px.png\');\n  background-repeat: no-repeat;\n  background-position: center center;\n  background-size: auto auto;\n  background-color: #ffffff;\n}\n.mobile-false .fancy-header {\n  background-attachment: scroll;\n}\n.fancy-header .wf-wrap {\n  min-height: 140px;\n  padding-top: 0px;\n  padding-bottom: 0px;\n}\n.fancy-header .fancy-title {\n  font-size: 32px;\n  line-height: 36px;\n  color: #079547;\n  text-transform: none;\n}\n.fancy-header .fancy-subtitle {\n  font-size: 24px;\n  line-height: 26px;\n  color: #792c8a;\n  text-transform: none;\n}\n.fancy-header .breadcrumbs {\n  color: #ffffff;\n}\n.fancy-header-overlay {\n  background: rgba(0,0,0,0.5);\n}\n@media screen and (max-width: 778px) {\n  .fancy-header .wf-wrap {\n    min-height: 140px;\n  }\n  .fancy-header .fancy-title {\n    font-size: 30px;\n    line-height: 38px;\n  }\n  .fancy-header .fancy-subtitle {\n    font-size: 20px;\n    line-height: 28px;\n  }\n  .fancy-header.breadcrumbs-mobile-off .breadcrumbs {\n    display: none;\n  }\n  #fancy-header > .wf-wrap {\n    flex-flow: column wrap;\n    align-items: center;\n    justify-content: center;\n    padding-bottom: 0px !important;\n  }\n  .fancy-header.title-left .breadcrumbs {\n    text-align: center;\n    float: none;\n  }\n  .breadcrumbs {\n    margin-bottom: 10px;\n  }\n  .breadcrumbs.breadcrumbs-bg {\n    margin-top: 10px;\n  }\n  .fancy-header.title-right .breadcrumbs {\n    margin: 10px 0 10px 0;\n  }\n  #fancy-header .hgroup,\n  #fancy-header .breadcrumbs {\n    text-align: center;\n  }\n  .fancy-header .hgroup {\n    padding-bottom: 5px;\n  }\n  .breadcrumbs-off .hgroup {\n    padding-bottom: 5px;\n  }\n  .title-right .hgroup {\n    padding: 0 0 5px 0;\n  }\n  .title-right.breadcrumbs-off .hgroup {\n    padding-top: 5px;\n  }\n  .title-left.disabled-bg .breadcrumbs {\n    margin-bottom: 0;\n  }\n}\n'),(24308,3627,'_wqoecf_disable_form','no'),(24309,3627,'_edit_lock','1695519862:2'),(24310,3627,'_edit_last','2'),(24311,3628,'total_sales','0'),(24312,3628,'_tax_status','taxable'),(24313,3628,'_tax_class',''),(24314,3628,'_manage_stock','no'),(24315,3628,'_backorders','no'),(24316,3628,'_sold_individually','no'),(24317,3628,'_virtual','no'),(24318,3628,'_downloadable','no'),(24319,3628,'_download_limit','-1'),(24320,3628,'_download_expiry','-1'),(24321,3628,'_stock',NULL),(24322,3628,'_stock_status','instock'),(24323,3628,'_wc_average_rating','0'),(24324,3628,'_wc_review_count','0'),(24325,3628,'_product_attributes','a:1:{s:15:\"pa_product-type\";a:6:{s:4:\"name\";s:15:\"pa_product-type\";s:5:\"value\";s:0:\"\";s:8:\"position\";i:0;s:10:\"is_visible\";i:0;s:12:\"is_variation\";i:0;s:11:\"is_taxonomy\";i:1;}}'),(24326,3628,'_product_version','8.0.2'),(24327,3628,'_dt_sidebar_position','disabled'),(24328,3628,'_dt_sidebar_widgetarea_id','sidebar_1'),(24329,3628,'_dt_sidebar_hide_on_mobile','0'),(24330,3628,'_dt_footer_show','1'),(24331,3628,'_dt_footer_widgetarea_id','sidebar_2'),(24332,3628,'_dt_footer_hide_on_mobile','0'),(24333,3628,'_dt_header_title','fancy'),(24334,3628,'_dt_header_background','normal'),(24335,3628,'_dt_header_background_below_slideshow','disabled'),(24336,3628,'_dt_header_transparent_bg_color_scheme','light'),(24337,3628,'_dt_header_transparent_top_bar_bg_color','#ffffff'),(24338,3628,'_dt_header_transparent_top_bar_bg_opacity','25'),(24339,3628,'_dt_header_transparent_bg_color','#000000'),(24340,3628,'_dt_header_transparent_bg_opacity','50'),(24341,3628,'_dt_header_disabled_background','normal'),(24342,3628,'_dt_header_disabled_transparent_bg_color_scheme','light'),(24343,3628,'_dt_header_disabled_transparent_top_bar_bg_color','#ffffff'),(24344,3628,'_dt_header_disabled_transparent_top_bar_bg_opacity','25'),(24345,3628,'_dt_header_disabled_transparent_bg_color','#000000'),(24346,3628,'_dt_header_disabled_transparent_bg_opacity','50'),(24347,3628,'_dt_page_overrides_top_margin','1%'),(24348,3628,'_dt_page_overrides_right_margin',''),(24349,3628,'_dt_page_overrides_bottom_margin',''),(24350,3628,'_dt_page_overrides_left_margin',''),(24351,3628,'_dt_mobile_page_padding_top',''),(24352,3628,'_dt_mobile_page_padding_right',''),(24353,3628,'_dt_mobile_page_padding_bottom',''),(24354,3628,'_dt_mobile_page_padding_left',''),(24355,3628,'_dt_fancy_header_layout_heading',''),(24356,3628,'_dt_fancy_header_title_aligment','all_left'),(24357,3628,'_dt_fancy_header_height','140'),(24358,3628,'_dt_fancy_header_padding-top','0px'),(24359,3628,'_dt_fancy_header_padding-bottom','0px'),(24360,3628,'_dt_fancy_header_breadcrumbs_heading',''),(24361,3628,'_dt_fancy_header_breadcrumbs','disabled'),(24362,3628,'_dt_fancy_header_breadcrumbs_text_color','#ffffff'),(24363,3628,'_dt_fancy_header_breadcrumbs_bg_color','disabled'),(24364,3628,'_dt_fancy_header_title_heading',''),(24365,3628,'_dt_fancy_header_title_mode','custom'),(24366,3628,'_dt_fancy_header_title',''),(24367,3628,'_dt_fancy_header_title_font_size','32'),(24368,3628,'_dt_fancy_header_title_line_height','36'),(24369,3628,'_dt_fancy_header_text_transform','none'),(24370,3628,'_dt_fancy_header_title_color_mode','color'),(24371,3628,'_dt_fancy_header_title_color','#079547'),(24372,3628,'_dt_fancy_header_subtitle_heading',''),(24373,3628,'_dt_fancy_header_subtitle',''),(24374,3628,'_dt_fancy_header_subtitle_font_size','24'),(24375,3628,'_dt_fancy_header_subtitle_line_height','26'),(24376,3628,'_dt_fancy_header_subtitle_text_transform','none'),(24377,3628,'_dt_fancy_header_subtitle_color_mode','color'),(24378,3628,'_dt_fancy_header_subtitle_color','#792c8a'),(24379,3628,'_dt_fancy_header_bg_heading',''),(24380,3628,'_dt_fancy_header_bg_color','#ffffff'),(24381,3628,'_dt_fancy_header_bg_image_origin','custom'),(24382,3628,'_dt_fancy_header_bg_image','a:1:{i:0;i:3851;}'),(24383,3628,'_dt_fancy_header_bg_repeat','no-repeat'),(24384,3628,'_dt_fancy_header_bg_position_x','center'),(24385,3628,'_dt_fancy_header_bg_position_y','center'),(24386,3628,'_dt_fancy_header_bg_fullscreen','0'),(24387,3628,'_dt_fancy_header_bg_overlay','0'),(24388,3628,'_dt_fancy_header_overlay_color','#000'),(24389,3628,'_dt_fancy_header_bg_overlay_opacity','50'),(24390,3628,'_dt_fancy_header_scroll_effect','default'),(24391,3628,'_dt_fancy_header_bg_parallax','0.5'),(24392,3628,'_dt_fancy_header_responsiveness_heading',''),(24393,3628,'_dt_fancy_header_responsiveness','enabled'),(24394,3628,'_dt_fancy_header_responsiveness_switch','778px'),(24395,3628,'_dt_fancy_header_responsive_height','140'),(24396,3628,'_dt_fancy_header_responsive_font_size','30'),(24397,3628,'_dt_fancy_header_responsive_title_line_height','38'),(24398,3628,'_dt_fancy_header_responsive_subtitle_font_size','20'),(24399,3628,'_dt_fancy_header_responsive_subtitle_line_height','28'),(24400,3628,'_dt_fancy_header_responsive_breadcrumbs','disabled'),(24401,3628,'the7_fancy_title_css','#main {\n  padding-top: 1%;\n}\n.fancy-header {\n  background-image: url(\'https://farmchemie.yasithawd.com/wp-content/uploads/2023/09/Calci_Gel_300px-1.png\');\n  background-repeat: no-repeat;\n  background-position: center center;\n  background-size: auto auto;\n  background-color: #ffffff;\n}\n.mobile-false .fancy-header {\n  background-attachment: scroll;\n}\n.fancy-header .wf-wrap {\n  min-height: 140px;\n  padding-top: 0px;\n  padding-bottom: 0px;\n}\n.fancy-header .fancy-title {\n  font-size: 32px;\n  line-height: 36px;\n  color: #079547;\n  text-transform: none;\n}\n.fancy-header .fancy-subtitle {\n  font-size: 24px;\n  line-height: 26px;\n  color: #792c8a;\n  text-transform: none;\n}\n.fancy-header .breadcrumbs {\n  color: #ffffff;\n}\n.fancy-header-overlay {\n  background: rgba(0,0,0,0.5);\n}\n@media screen and (max-width: 778px) {\n  .fancy-header .wf-wrap {\n    min-height: 140px;\n  }\n  .fancy-header .fancy-title {\n    font-size: 30px;\n    line-height: 38px;\n  }\n  .fancy-header .fancy-subtitle {\n    font-size: 20px;\n    line-height: 28px;\n  }\n  .fancy-header.breadcrumbs-mobile-off .breadcrumbs {\n    display: none;\n  }\n  #fancy-header > .wf-wrap {\n    flex-flow: column wrap;\n    align-items: center;\n    justify-content: center;\n    padding-bottom: 0px !important;\n  }\n  .fancy-header.title-left .breadcrumbs {\n    text-align: center;\n    float: none;\n  }\n  .breadcrumbs {\n    margin-bottom: 10px;\n  }\n  .breadcrumbs.breadcrumbs-bg {\n    margin-top: 10px;\n  }\n  .fancy-header.title-right .breadcrumbs {\n    margin: 10px 0 10px 0;\n  }\n  #fancy-header .hgroup,\n  #fancy-header .breadcrumbs {\n    text-align: center;\n  }\n  .fancy-header .hgroup {\n    padding-bottom: 5px;\n  }\n  .breadcrumbs-off .hgroup {\n    padding-bottom: 5px;\n  }\n  .title-right .hgroup {\n    padding: 0 0 5px 0;\n  }\n  .title-right.breadcrumbs-off .hgroup {\n    padding-top: 5px;\n  }\n  .title-left.disabled-bg .breadcrumbs {\n    margin-bottom: 0;\n  }\n}\n'),(24402,3628,'_wqoecf_disable_form','no'),(24403,3628,'_edit_lock','1695471453:1'),(24404,3628,'_edit_last','1'),(24405,3629,'total_sales','0'),(24406,3629,'_tax_status','taxable'),(24407,3629,'_tax_class',''),(24408,3629,'_manage_stock','no'),(24409,3629,'_backorders','no'),(24410,3629,'_sold_individually','no'),(24411,3629,'_virtual','no'),(24412,3629,'_downloadable','no'),(24413,3629,'_download_limit','-1'),(24414,3629,'_download_expiry','-1'),(24415,3629,'_stock',NULL),(24416,3629,'_stock_status','instock'),(24417,3629,'_wc_average_rating','0'),(24418,3629,'_wc_review_count','0'),(24419,3629,'_product_attributes','a:1:{s:15:\"pa_product-type\";a:6:{s:4:\"name\";s:15:\"pa_product-type\";s:5:\"value\";s:0:\"\";s:8:\"position\";i:0;s:10:\"is_visible\";i:0;s:12:\"is_variation\";i:0;s:11:\"is_taxonomy\";i:1;}}'),(24420,3629,'_product_version','8.0.2'),(24421,3629,'_dt_sidebar_position','disabled'),(24422,3629,'_dt_sidebar_widgetarea_id','sidebar_1'),(24423,3629,'_dt_sidebar_hide_on_mobile','0'),(24424,3629,'_dt_footer_show','1'),(24425,3629,'_dt_footer_widgetarea_id','sidebar_2'),(24426,3629,'_dt_footer_hide_on_mobile','0'),(24427,3629,'_dt_header_title','fancy'),(24428,3629,'_dt_header_background','normal'),(24429,3629,'_dt_header_background_below_slideshow','disabled'),(24430,3629,'_dt_header_transparent_bg_color_scheme','light'),(24431,3629,'_dt_header_transparent_top_bar_bg_color','#ffffff'),(24432,3629,'_dt_header_transparent_top_bar_bg_opacity','25'),(24433,3629,'_dt_header_transparent_bg_color','#000000'),(24434,3629,'_dt_header_transparent_bg_opacity','50'),(24435,3629,'_dt_header_disabled_background','normal'),(24436,3629,'_dt_header_disabled_transparent_bg_color_scheme','light'),(24437,3629,'_dt_header_disabled_transparent_top_bar_bg_color','#ffffff'),(24438,3629,'_dt_header_disabled_transparent_top_bar_bg_opacity','25'),(24439,3629,'_dt_header_disabled_transparent_bg_color','#000000'),(24440,3629,'_dt_header_disabled_transparent_bg_opacity','50'),(24441,3629,'_dt_page_overrides_top_margin','1%'),(24442,3629,'_dt_page_overrides_right_margin',''),(24443,3629,'_dt_page_overrides_bottom_margin',''),(24444,3629,'_dt_page_overrides_left_margin',''),(24445,3629,'_dt_mobile_page_padding_top',''),(24446,3629,'_dt_mobile_page_padding_right',''),(24447,3629,'_dt_mobile_page_padding_bottom',''),(24448,3629,'_dt_mobile_page_padding_left',''),(24449,3629,'_dt_fancy_header_layout_heading',''),(24450,3629,'_dt_fancy_header_title_aligment','all_left'),(24451,3629,'_dt_fancy_header_height','140'),(24452,3629,'_dt_fancy_header_padding-top','0px'),(24453,3629,'_dt_fancy_header_padding-bottom','0px'),(24454,3629,'_dt_fancy_header_breadcrumbs_heading',''),(24455,3629,'_dt_fancy_header_breadcrumbs','disabled'),(24456,3629,'_dt_fancy_header_breadcrumbs_text_color','#ffffff'),(24457,3629,'_dt_fancy_header_breadcrumbs_bg_color','disabled'),(24458,3629,'_dt_fancy_header_title_heading',''),(24459,3629,'_dt_fancy_header_title_mode','custom'),(24460,3629,'_dt_fancy_header_title',''),(24461,3629,'_dt_fancy_header_title_font_size','32'),(24462,3629,'_dt_fancy_header_title_line_height','36'),(24463,3629,'_dt_fancy_header_text_transform','none'),(24464,3629,'_dt_fancy_header_title_color_mode','color'),(24465,3629,'_dt_fancy_header_title_color','#079547'),(24466,3629,'_dt_fancy_header_subtitle_heading',''),(24467,3629,'_dt_fancy_header_subtitle',''),(24468,3629,'_dt_fancy_header_subtitle_font_size','24'),(24469,3629,'_dt_fancy_header_subtitle_line_height','26'),(24470,3629,'_dt_fancy_header_subtitle_text_transform','none'),(24471,3629,'_dt_fancy_header_subtitle_color_mode','color'),(24472,3629,'_dt_fancy_header_subtitle_color','#792c8a'),(24473,3629,'_dt_fancy_header_bg_heading',''),(24474,3629,'_dt_fancy_header_bg_color','#ffffff'),(24475,3629,'_dt_fancy_header_bg_image_origin','custom'),(24476,3629,'_dt_fancy_header_bg_image','a:1:{i:0;i:3697;}'),(24477,3629,'_dt_fancy_header_bg_repeat','no-repeat'),(24478,3629,'_dt_fancy_header_bg_position_x','center'),(24479,3629,'_dt_fancy_header_bg_position_y','center'),(24480,3629,'_dt_fancy_header_bg_fullscreen','0'),(24481,3629,'_dt_fancy_header_bg_overlay','0'),(24482,3629,'_dt_fancy_header_overlay_color','#000'),(24483,3629,'_dt_fancy_header_bg_overlay_opacity','50'),(24484,3629,'_dt_fancy_header_scroll_effect','default'),(24485,3629,'_dt_fancy_header_bg_parallax','0.5'),(24486,3629,'_dt_fancy_header_responsiveness_heading',''),(24487,3629,'_dt_fancy_header_responsiveness','enabled'),(24488,3629,'_dt_fancy_header_responsiveness_switch','778px'),(24489,3629,'_dt_fancy_header_responsive_height','140'),(24490,3629,'_dt_fancy_header_responsive_font_size','30'),(24491,3629,'_dt_fancy_header_responsive_title_line_height','38'),(24492,3629,'_dt_fancy_header_responsive_subtitle_font_size','20'),(24493,3629,'_dt_fancy_header_responsive_subtitle_line_height','28'),(24494,3629,'_dt_fancy_header_responsive_breadcrumbs','disabled'),(24495,3629,'the7_fancy_title_css','#main {\n  padding-top: 1%;\n}\n.fancy-header {\n  background-image: url(\'https://farmchemie.yasithawd.com/wp-content/uploads/2023/09/Calfo20_logo.png\');\n  background-repeat: no-repeat;\n  background-position: center center;\n  background-size: auto auto;\n  background-color: #ffffff;\n}\n.mobile-false .fancy-header {\n  background-attachment: scroll;\n}\n.fancy-header .wf-wrap {\n  min-height: 140px;\n  padding-top: 0px;\n  padding-bottom: 0px;\n}\n.fancy-header .fancy-title {\n  font-size: 32px;\n  line-height: 36px;\n  color: #079547;\n  text-transform: none;\n}\n.fancy-header .fancy-subtitle {\n  font-size: 24px;\n  line-height: 26px;\n  color: #792c8a;\n  text-transform: none;\n}\n.fancy-header .breadcrumbs {\n  color: #ffffff;\n}\n.fancy-header-overlay {\n  background: rgba(0,0,0,0.5);\n}\n@media screen and (max-width: 778px) {\n  .fancy-header .wf-wrap {\n    min-height: 140px;\n  }\n  .fancy-header .fancy-title {\n    font-size: 30px;\n    line-height: 38px;\n  }\n  .fancy-header .fancy-subtitle {\n    font-size: 20px;\n    line-height: 28px;\n  }\n  .fancy-header.breadcrumbs-mobile-off .breadcrumbs {\n    display: none;\n  }\n  #fancy-header > .wf-wrap {\n    flex-flow: column wrap;\n    align-items: center;\n    justify-content: center;\n    padding-bottom: 0px !important;\n  }\n  .fancy-header.title-left .breadcrumbs {\n    text-align: center;\n    float: none;\n  }\n  .breadcrumbs {\n    margin-bottom: 10px;\n  }\n  .breadcrumbs.breadcrumbs-bg {\n    margin-top: 10px;\n  }\n  .fancy-header.title-right .breadcrumbs {\n    margin: 10px 0 10px 0;\n  }\n  #fancy-header .hgroup,\n  #fancy-header .breadcrumbs {\n    text-align: center;\n  }\n  .fancy-header .hgroup {\n    padding-bottom: 5px;\n  }\n  .breadcrumbs-off .hgroup {\n    padding-bottom: 5px;\n  }\n  .title-right .hgroup {\n    padding: 0 0 5px 0;\n  }\n  .title-right.breadcrumbs-off .hgroup {\n    padding-top: 5px;\n  }\n  .title-left.disabled-bg .breadcrumbs {\n    margin-bottom: 0;\n  }\n}\n'),(24496,3629,'_wqoecf_disable_form','no'),(24497,3629,'_edit_lock','1694757516:1'),(24500,3630,'total_sales','0'),(24501,3630,'_tax_status','taxable'),(24498,3629,'_edit_last','1'),(24499,3629,'_thumbnail_id','3696'),(24502,3630,'_tax_class',''),(24503,3630,'_manage_stock','no'),(24504,3630,'_backorders','no'),(24505,3630,'_sold_individually','no'),(24506,3630,'_virtual','no'),(24507,3630,'_downloadable','no'),(24508,3630,'_download_limit','-1'),(24509,3630,'_download_expiry','-1'),(24510,3630,'_thumbnail_id','3836'),(24511,3630,'_stock',NULL),(24512,3630,'_stock_status','instock'),(24513,3630,'_wc_average_rating','0'),(24514,3630,'_wc_review_count','0'),(24515,3630,'_product_attributes','a:1:{s:15:\"pa_product-type\";a:6:{s:4:\"name\";s:15:\"pa_product-type\";s:5:\"value\";s:0:\"\";s:8:\"position\";i:0;s:10:\"is_visible\";i:0;s:12:\"is_variation\";i:0;s:11:\"is_taxonomy\";i:1;}}'),(24516,3630,'_product_version','8.0.2'),(24517,3630,'_dt_sidebar_position','disabled'),(24518,3630,'_dt_sidebar_widgetarea_id','sidebar_1'),(24519,3630,'_dt_sidebar_hide_on_mobile','0'),(24520,3630,'_dt_footer_show','1'),(24521,3630,'_dt_footer_widgetarea_id','sidebar_2'),(24522,3630,'_dt_footer_hide_on_mobile','0'),(24523,3630,'_dt_header_title','fancy'),(24524,3630,'_dt_header_background','normal'),(24525,3630,'_dt_header_background_below_slideshow','disabled'),(24526,3630,'_dt_header_transparent_bg_color_scheme','light'),(24527,3630,'_dt_header_transparent_top_bar_bg_color','#ffffff'),(24528,3630,'_dt_header_transparent_top_bar_bg_opacity','25'),(24529,3630,'_dt_header_transparent_bg_color','#000000'),(24530,3630,'_dt_header_transparent_bg_opacity','50'),(24531,3630,'_dt_header_disabled_background','normal'),(24532,3630,'_dt_header_disabled_transparent_bg_color_scheme','light'),(24533,3630,'_dt_header_disabled_transparent_top_bar_bg_color','#ffffff'),(24534,3630,'_dt_header_disabled_transparent_top_bar_bg_opacity','25'),(24535,3630,'_dt_header_disabled_transparent_bg_color','#000000'),(24536,3630,'_dt_header_disabled_transparent_bg_opacity','50'),(24537,3630,'_dt_page_overrides_top_margin','1%'),(24538,3630,'_dt_page_overrides_right_margin',''),(24539,3630,'_dt_page_overrides_bottom_margin',''),(24540,3630,'_dt_page_overrides_left_margin',''),(24541,3630,'_dt_mobile_page_padding_top',''),(24542,3630,'_dt_mobile_page_padding_right',''),(24543,3630,'_dt_mobile_page_padding_bottom',''),(24544,3630,'_dt_mobile_page_padding_left',''),(24545,3630,'_dt_fancy_header_layout_heading',''),(24546,3630,'_dt_fancy_header_title_aligment','all_left'),(24547,3630,'_dt_fancy_header_height','140'),(24548,3630,'_dt_fancy_header_padding-top','0px'),(24549,3630,'_dt_fancy_header_padding-bottom','0px'),(24550,3630,'_dt_fancy_header_breadcrumbs_heading',''),(24551,3630,'_dt_fancy_header_breadcrumbs','disabled'),(24552,3630,'_dt_fancy_header_breadcrumbs_text_color','#ffffff'),(24553,3630,'_dt_fancy_header_breadcrumbs_bg_color','disabled'),(24554,3630,'_dt_fancy_header_title_heading',''),(24555,3630,'_dt_fancy_header_title_mode','custom'),(24556,3630,'_dt_fancy_header_title',''),(24557,3630,'_dt_fancy_header_title_font_size','32'),(24558,3630,'_dt_fancy_header_title_line_height','36'),(24559,3630,'_dt_fancy_header_text_transform','none'),(24560,3630,'_dt_fancy_header_title_color_mode','color'),(24561,3630,'_dt_fancy_header_title_color','#079547'),(24562,3630,'_dt_fancy_header_subtitle_heading',''),(24563,3630,'_dt_fancy_header_subtitle',''),(24564,3630,'_dt_fancy_header_subtitle_font_size','24'),(24565,3630,'_dt_fancy_header_subtitle_line_height','26'),(24566,3630,'_dt_fancy_header_subtitle_text_transform','none'),(24567,3630,'_dt_fancy_header_subtitle_color_mode','color'),(24568,3630,'_dt_fancy_header_subtitle_color','#792c8a'),(24569,3630,'_dt_fancy_header_bg_heading',''),(24570,3630,'_dt_fancy_header_bg_color','#ffffff'),(24571,3630,'_dt_fancy_header_bg_image_origin','custom'),(24572,3630,'_dt_fancy_header_bg_image','a:1:{i:0;i:3917;}'),(24573,3630,'_dt_fancy_header_bg_repeat','no-repeat'),(24574,3630,'_dt_fancy_header_bg_position_x','center'),(24575,3630,'_dt_fancy_header_bg_position_y','center'),(24576,3630,'_dt_fancy_header_bg_fullscreen','0'),(24577,3630,'_dt_fancy_header_bg_overlay','0'),(24578,3630,'_dt_fancy_header_overlay_color','#000'),(24579,3630,'_dt_fancy_header_bg_overlay_opacity','50'),(24580,3630,'_dt_fancy_header_scroll_effect','default'),(24581,3630,'_dt_fancy_header_bg_parallax','0.5'),(24582,3630,'_dt_fancy_header_responsiveness_heading',''),(24583,3630,'_dt_fancy_header_responsiveness','enabled'),(24584,3630,'_dt_fancy_header_responsiveness_switch','778px'),(24585,3630,'_dt_fancy_header_responsive_height','140'),(24586,3630,'_dt_fancy_header_responsive_font_size','30'),(24587,3630,'_dt_fancy_header_responsive_title_line_height','38'),(24588,3630,'_dt_fancy_header_responsive_subtitle_font_size','20'),(24589,3630,'_dt_fancy_header_responsive_subtitle_line_height','28'),(24590,3630,'_dt_fancy_header_responsive_breadcrumbs','disabled'),(24591,3630,'the7_fancy_title_css','#main {\n  padding-top: 1%;\n}\n.fancy-header {\n  background-image: url(\'https://farmchemie.yasithawd.com/wp-content/uploads/2023/09/Cinaprim_300px.png\');\n  background-repeat: no-repeat;\n  background-position: center center;\n  background-size: auto auto;\n  background-color: #ffffff;\n}\n.mobile-false .fancy-header {\n  background-attachment: scroll;\n}\n.fancy-header .wf-wrap {\n  min-height: 140px;\n  padding-top: 0px;\n  padding-bottom: 0px;\n}\n.fancy-header .fancy-title {\n  font-size: 32px;\n  line-height: 36px;\n  color: #079547;\n  text-transform: none;\n}\n.fancy-header .fancy-subtitle {\n  font-size: 24px;\n  line-height: 26px;\n  color: #792c8a;\n  text-transform: none;\n}\n.fancy-header .breadcrumbs {\n  color: #ffffff;\n}\n.fancy-header-overlay {\n  background: rgba(0,0,0,0.5);\n}\n@media screen and (max-width: 778px) {\n  .fancy-header .wf-wrap {\n    min-height: 140px;\n  }\n  .fancy-header .fancy-title {\n    font-size: 30px;\n    line-height: 38px;\n  }\n  .fancy-header .fancy-subtitle {\n    font-size: 20px;\n    line-height: 28px;\n  }\n  .fancy-header.breadcrumbs-mobile-off .breadcrumbs {\n    display: none;\n  }\n  #fancy-header > .wf-wrap {\n    flex-flow: column wrap;\n    align-items: center;\n    justify-content: center;\n    padding-bottom: 0px !important;\n  }\n  .fancy-header.title-left .breadcrumbs {\n    text-align: center;\n    float: none;\n  }\n  .breadcrumbs {\n    margin-bottom: 10px;\n  }\n  .breadcrumbs.breadcrumbs-bg {\n    margin-top: 10px;\n  }\n  .fancy-header.title-right .breadcrumbs {\n    margin: 10px 0 10px 0;\n  }\n  #fancy-header .hgroup,\n  #fancy-header .breadcrumbs {\n    text-align: center;\n  }\n  .fancy-header .hgroup {\n    padding-bottom: 5px;\n  }\n  .breadcrumbs-off .hgroup {\n    padding-bottom: 5px;\n  }\n  .title-right .hgroup {\n    padding: 0 0 5px 0;\n  }\n  .title-right.breadcrumbs-off .hgroup {\n    padding-top: 5px;\n  }\n  .title-left.disabled-bg .breadcrumbs {\n    margin-bottom: 0;\n  }\n}\n'),(24592,3630,'_wqoecf_disable_form','no'),(24593,3630,'_edit_lock','1695542028:1'),(24595,3631,'total_sales','0'),(24596,3631,'_tax_status','taxable'),(24594,3630,'_edit_last','1'),(24597,3631,'_tax_class',''),(24598,3631,'_manage_stock','no'),(24599,3631,'_backorders','no'),(24600,3631,'_sold_individually','no'),(24601,3631,'_virtual','no'),(24602,3631,'_downloadable','no'),(24603,3631,'_download_limit','-1'),(24604,3631,'_download_expiry','-1'),(24605,3631,'_thumbnail_id','3899'),(24606,3631,'_stock',NULL),(24607,3631,'_stock_status','instock'),(24608,3631,'_wc_average_rating','0'),(24609,3631,'_wc_review_count','0'),(24610,3631,'_product_attributes','a:1:{s:15:\"pa_product-type\";a:6:{s:4:\"name\";s:15:\"pa_product-type\";s:5:\"value\";s:0:\"\";s:8:\"position\";i:0;s:10:\"is_visible\";i:0;s:12:\"is_variation\";i:0;s:11:\"is_taxonomy\";i:1;}}'),(24611,3631,'_product_version','8.0.2'),(24612,3631,'_dt_sidebar_position','disabled'),(24613,3631,'_dt_sidebar_widgetarea_id','sidebar_1'),(24614,3631,'_dt_sidebar_hide_on_mobile','0'),(24615,3631,'_dt_footer_show','1'),(24616,3631,'_dt_footer_widgetarea_id','sidebar_2'),(24617,3631,'_dt_footer_hide_on_mobile','0'),(24618,3631,'_dt_header_title','fancy'),(24619,3631,'_dt_header_background','normal'),(24620,3631,'_dt_header_background_below_slideshow','disabled'),(24621,3631,'_dt_header_transparent_bg_color_scheme','light'),(24622,3631,'_dt_header_transparent_top_bar_bg_color','#ffffff'),(24623,3631,'_dt_header_transparent_top_bar_bg_opacity','25'),(24624,3631,'_dt_header_transparent_bg_color','#000000'),(24625,3631,'_dt_header_transparent_bg_opacity','50'),(24626,3631,'_dt_header_disabled_background','normal'),(24627,3631,'_dt_header_disabled_transparent_bg_color_scheme','light'),(24628,3631,'_dt_header_disabled_transparent_top_bar_bg_color','#ffffff'),(24629,3631,'_dt_header_disabled_transparent_top_bar_bg_opacity','25'),(24630,3631,'_dt_header_disabled_transparent_bg_color','#000000'),(24631,3631,'_dt_header_disabled_transparent_bg_opacity','50'),(24632,3631,'_dt_page_overrides_top_margin','1%'),(24633,3631,'_dt_page_overrides_right_margin',''),(24634,3631,'_dt_page_overrides_bottom_margin',''),(24635,3631,'_dt_page_overrides_left_margin',''),(24636,3631,'_dt_mobile_page_padding_top',''),(24637,3631,'_dt_mobile_page_padding_right',''),(24638,3631,'_dt_mobile_page_padding_bottom',''),(24639,3631,'_dt_mobile_page_padding_left',''),(24640,3631,'_dt_fancy_header_layout_heading',''),(24641,3631,'_dt_fancy_header_title_aligment','all_left'),(24642,3631,'_dt_fancy_header_height','140'),(24643,3631,'_dt_fancy_header_padding-top','0px'),(24644,3631,'_dt_fancy_header_padding-bottom','0px'),(24645,3631,'_dt_fancy_header_breadcrumbs_heading',''),(24646,3631,'_dt_fancy_header_breadcrumbs','disabled'),(24647,3631,'_dt_fancy_header_breadcrumbs_text_color','#ffffff'),(24648,3631,'_dt_fancy_header_breadcrumbs_bg_color','disabled'),(24649,3631,'_dt_fancy_header_title_heading',''),(24650,3631,'_dt_fancy_header_title_mode','custom'),(24651,3631,'_dt_fancy_header_title',''),(24652,3631,'_dt_fancy_header_title_font_size','32'),(24653,3631,'_dt_fancy_header_title_line_height','36'),(24654,3631,'_dt_fancy_header_text_transform','none'),(24655,3631,'_dt_fancy_header_title_color_mode','color'),(24656,3631,'_dt_fancy_header_title_color','#079547'),(24657,3631,'_dt_fancy_header_subtitle_heading',''),(24658,3631,'_dt_fancy_header_subtitle',''),(24659,3631,'_dt_fancy_header_subtitle_font_size','24'),(24660,3631,'_dt_fancy_header_subtitle_line_height','26'),(24661,3631,'_dt_fancy_header_subtitle_text_transform','none'),(24662,3631,'_dt_fancy_header_subtitle_color_mode','color'),(24663,3631,'_dt_fancy_header_subtitle_color','#792c8a'),(24664,3631,'_dt_fancy_header_bg_heading',''),(24665,3631,'_dt_fancy_header_bg_color','#ffffff'),(24666,3631,'_dt_fancy_header_bg_image_origin','custom'),(24667,3631,'_dt_fancy_header_bg_image','a:1:{i:0;i:3900;}'),(24668,3631,'_dt_fancy_header_bg_repeat','no-repeat'),(24669,3631,'_dt_fancy_header_bg_position_x','center'),(24670,3631,'_dt_fancy_header_bg_position_y','center'),(24671,3631,'_dt_fancy_header_bg_fullscreen','0'),(24672,3631,'_dt_fancy_header_bg_overlay','0'),(24673,3631,'_dt_fancy_header_overlay_color','#000'),(24674,3631,'_dt_fancy_header_bg_overlay_opacity','50'),(24675,3631,'_dt_fancy_header_scroll_effect','default'),(24676,3631,'_dt_fancy_header_bg_parallax','0.5'),(24677,3631,'_dt_fancy_header_responsiveness_heading',''),(24678,3631,'_dt_fancy_header_responsiveness','enabled'),(24679,3631,'_dt_fancy_header_responsiveness_switch','778px'),(24680,3631,'_dt_fancy_header_responsive_height','140'),(24681,3631,'_dt_fancy_header_responsive_font_size','30'),(24682,3631,'_dt_fancy_header_responsive_title_line_height','38'),(24683,3631,'_dt_fancy_header_responsive_subtitle_font_size','20'),(24684,3631,'_dt_fancy_header_responsive_subtitle_line_height','28'),(24685,3631,'_dt_fancy_header_responsive_breadcrumbs','disabled'),(24686,3631,'the7_fancy_title_css','#main {\n  padding-top: 1%;\n}\n.fancy-header {\n  background-image: url(\'https://farmchemie.yasithawd.com/wp-content/uploads/2023/09/DOXYNEO_300px.png\');\n  background-repeat: no-repeat;\n  background-position: center center;\n  background-size: auto auto;\n  background-color: #ffffff;\n}\n.mobile-false .fancy-header {\n  background-attachment: scroll;\n}\n.fancy-header .wf-wrap {\n  min-height: 140px;\n  padding-top: 0px;\n  padding-bottom: 0px;\n}\n.fancy-header .fancy-title {\n  font-size: 32px;\n  line-height: 36px;\n  color: #079547;\n  text-transform: none;\n}\n.fancy-header .fancy-subtitle {\n  font-size: 24px;\n  line-height: 26px;\n  color: #792c8a;\n  text-transform: none;\n}\n.fancy-header .breadcrumbs {\n  color: #ffffff;\n}\n.fancy-header-overlay {\n  background: rgba(0,0,0,0.5);\n}\n@media screen and (max-width: 778px) {\n  .fancy-header .wf-wrap {\n    min-height: 140px;\n  }\n  .fancy-header .fancy-title {\n    font-size: 30px;\n    line-height: 38px;\n  }\n  .fancy-header .fancy-subtitle {\n    font-size: 20px;\n    line-height: 28px;\n  }\n  .fancy-header.breadcrumbs-mobile-off .breadcrumbs {\n    display: none;\n  }\n  #fancy-header > .wf-wrap {\n    flex-flow: column wrap;\n    align-items: center;\n    justify-content: center;\n    padding-bottom: 0px !important;\n  }\n  .fancy-header.title-left .breadcrumbs {\n    text-align: center;\n    float: none;\n  }\n  .breadcrumbs {\n    margin-bottom: 10px;\n  }\n  .breadcrumbs.breadcrumbs-bg {\n    margin-top: 10px;\n  }\n  .fancy-header.title-right .breadcrumbs {\n    margin: 10px 0 10px 0;\n  }\n  #fancy-header .hgroup,\n  #fancy-header .breadcrumbs {\n    text-align: center;\n  }\n  .fancy-header .hgroup {\n    padding-bottom: 5px;\n  }\n  .breadcrumbs-off .hgroup {\n    padding-bottom: 5px;\n  }\n  .title-right .hgroup {\n    padding: 0 0 5px 0;\n  }\n  .title-right.breadcrumbs-off .hgroup {\n    padding-top: 5px;\n  }\n  .title-left.disabled-bg .breadcrumbs {\n    margin-bottom: 0;\n  }\n}\n'),(24687,3631,'_wqoecf_disable_form','no'),(24688,3631,'_edit_lock','1695539979:1'),(24689,3631,'_edit_last','1'),(24690,3632,'total_sales','0'),(24691,3632,'_tax_status','taxable'),(24692,3632,'_tax_class',''),(24693,3632,'_manage_stock','no'),(24694,3632,'_backorders','no'),(24695,3632,'_sold_individually','no'),(24696,3632,'_virtual','no'),(24697,3632,'_downloadable','no'),(24698,3632,'_download_limit','-1'),(24699,3632,'_download_expiry','-1'),(24700,3632,'_thumbnail_id','3827'),(24701,3632,'_stock',NULL),(24702,3632,'_stock_status','instock'),(24703,3632,'_wc_average_rating','0'),(24704,3632,'_wc_review_count','0'),(24705,3632,'_product_attributes','a:1:{s:15:\"pa_product-type\";a:6:{s:4:\"name\";s:15:\"pa_product-type\";s:5:\"value\";s:0:\"\";s:8:\"position\";i:0;s:10:\"is_visible\";i:0;s:12:\"is_variation\";i:0;s:11:\"is_taxonomy\";i:1;}}'),(24706,3632,'_product_version','8.0.2'),(24707,3632,'_dt_sidebar_position','disabled'),(24708,3632,'_dt_sidebar_widgetarea_id','sidebar_1'),(24709,3632,'_dt_sidebar_hide_on_mobile','0'),(24710,3632,'_dt_footer_show','1'),(24711,3632,'_dt_footer_widgetarea_id','sidebar_2'),(24712,3632,'_dt_footer_hide_on_mobile','0'),(24713,3632,'_dt_header_title','fancy'),(24714,3632,'_dt_header_background','normal'),(24715,3632,'_dt_header_background_below_slideshow','disabled'),(24716,3632,'_dt_header_transparent_bg_color_scheme','light'),(24717,3632,'_dt_header_transparent_top_bar_bg_color','#ffffff'),(24718,3632,'_dt_header_transparent_top_bar_bg_opacity','25'),(24719,3632,'_dt_header_transparent_bg_color','#000000'),(24720,3632,'_dt_header_transparent_bg_opacity','50'),(24721,3632,'_dt_header_disabled_background','normal'),(24722,3632,'_dt_header_disabled_transparent_bg_color_scheme','light'),(24723,3632,'_dt_header_disabled_transparent_top_bar_bg_color','#ffffff'),(24724,3632,'_dt_header_disabled_transparent_top_bar_bg_opacity','25'),(24725,3632,'_dt_header_disabled_transparent_bg_color','#000000'),(24726,3632,'_dt_header_disabled_transparent_bg_opacity','50'),(24727,3632,'_dt_page_overrides_top_margin','1%'),(24728,3632,'_dt_page_overrides_right_margin',''),(24729,3632,'_dt_page_overrides_bottom_margin',''),(24730,3632,'_dt_page_overrides_left_margin',''),(24731,3632,'_dt_mobile_page_padding_top',''),(24732,3632,'_dt_mobile_page_padding_right',''),(24733,3632,'_dt_mobile_page_padding_bottom',''),(24734,3632,'_dt_mobile_page_padding_left',''),(24735,3632,'_dt_fancy_header_layout_heading',''),(24736,3632,'_dt_fancy_header_title_aligment','all_left'),(24737,3632,'_dt_fancy_header_height','140'),(24738,3632,'_dt_fancy_header_padding-top','0px'),(24739,3632,'_dt_fancy_header_padding-bottom','0px'),(24740,3632,'_dt_fancy_header_breadcrumbs_heading',''),(24741,3632,'_dt_fancy_header_breadcrumbs','disabled'),(24742,3632,'_dt_fancy_header_breadcrumbs_text_color','#ffffff'),(24743,3632,'_dt_fancy_header_breadcrumbs_bg_color','disabled'),(24744,3632,'_dt_fancy_header_title_heading',''),(24745,3632,'_dt_fancy_header_title_mode','custom'),(24746,3632,'_dt_fancy_header_title',''),(24747,3632,'_dt_fancy_header_title_font_size','32'),(24748,3632,'_dt_fancy_header_title_line_height','36'),(24749,3632,'_dt_fancy_header_text_transform','none'),(24750,3632,'_dt_fancy_header_title_color_mode','color'),(24751,3632,'_dt_fancy_header_title_color','#079547'),(24752,3632,'_dt_fancy_header_subtitle_heading',''),(24753,3632,'_dt_fancy_header_subtitle',''),(24754,3632,'_dt_fancy_header_subtitle_font_size','24'),(24755,3632,'_dt_fancy_header_subtitle_line_height','26'),(24756,3632,'_dt_fancy_header_subtitle_text_transform','none'),(24757,3632,'_dt_fancy_header_subtitle_color_mode','color'),(24758,3632,'_dt_fancy_header_subtitle_color','#792c8a'),(24759,3632,'_dt_fancy_header_bg_heading',''),(24760,3632,'_dt_fancy_header_bg_color','#ffffff'),(24761,3632,'_dt_fancy_header_bg_image_origin','custom'),(24762,3632,'_dt_fancy_header_bg_image','a:1:{i:0;i:3828;}'),(24763,3632,'_dt_fancy_header_bg_repeat','no-repeat'),(24764,3632,'_dt_fancy_header_bg_position_x','center'),(24765,3632,'_dt_fancy_header_bg_position_y','center'),(24766,3632,'_dt_fancy_header_bg_fullscreen','0'),(24767,3632,'_dt_fancy_header_bg_overlay','0'),(24768,3632,'_dt_fancy_header_overlay_color','#000'),(24769,3632,'_dt_fancy_header_bg_overlay_opacity','50'),(24770,3632,'_dt_fancy_header_scroll_effect','default'),(24771,3632,'_dt_fancy_header_bg_parallax','0.5'),(24772,3632,'_dt_fancy_header_responsiveness_heading',''),(24773,3632,'_dt_fancy_header_responsiveness','enabled'),(24774,3632,'_dt_fancy_header_responsiveness_switch','778px'),(24775,3632,'_dt_fancy_header_responsive_height','140'),(24776,3632,'_dt_fancy_header_responsive_font_size','30'),(24777,3632,'_dt_fancy_header_responsive_title_line_height','38'),(24778,3632,'_dt_fancy_header_responsive_subtitle_font_size','20'),(24779,3632,'_dt_fancy_header_responsive_subtitle_line_height','28'),(24780,3632,'_dt_fancy_header_responsive_breadcrumbs','disabled'),(24781,3632,'the7_fancy_title_css','#main {\n  padding-top: 1%;\n}\n.fancy-header {\n  background-image: url(\'https://farmchemie.yasithawd.com/wp-content/uploads/2023/09/Farmox-50_300px.png\');\n  background-repeat: no-repeat;\n  background-position: center center;\n  background-size: auto auto;\n  background-color: #ffffff;\n}\n.mobile-false .fancy-header {\n  background-attachment: scroll;\n}\n.fancy-header .wf-wrap {\n  min-height: 140px;\n  padding-top: 0px;\n  padding-bottom: 0px;\n}\n.fancy-header .fancy-title {\n  font-size: 32px;\n  line-height: 36px;\n  color: #079547;\n  text-transform: none;\n}\n.fancy-header .fancy-subtitle {\n  font-size: 24px;\n  line-height: 26px;\n  color: #792c8a;\n  text-transform: none;\n}\n.fancy-header .breadcrumbs {\n  color: #ffffff;\n}\n.fancy-header-overlay {\n  background: rgba(0,0,0,0.5);\n}\n@media screen and (max-width: 778px) {\n  .fancy-header .wf-wrap {\n    min-height: 140px;\n  }\n  .fancy-header .fancy-title {\n    font-size: 30px;\n    line-height: 38px;\n  }\n  .fancy-header .fancy-subtitle {\n    font-size: 20px;\n    line-height: 28px;\n  }\n  .fancy-header.breadcrumbs-mobile-off .breadcrumbs {\n    display: none;\n  }\n  #fancy-header > .wf-wrap {\n    flex-flow: column wrap;\n    align-items: center;\n    justify-content: center;\n    padding-bottom: 0px !important;\n  }\n  .fancy-header.title-left .breadcrumbs {\n    text-align: center;\n    float: none;\n  }\n  .breadcrumbs {\n    margin-bottom: 10px;\n  }\n  .breadcrumbs.breadcrumbs-bg {\n    margin-top: 10px;\n  }\n  .fancy-header.title-right .breadcrumbs {\n    margin: 10px 0 10px 0;\n  }\n  #fancy-header .hgroup,\n  #fancy-header .breadcrumbs {\n    text-align: center;\n  }\n  .fancy-header .hgroup {\n    padding-bottom: 5px;\n  }\n  .breadcrumbs-off .hgroup {\n    padding-bottom: 5px;\n  }\n  .title-right .hgroup {\n    padding: 0 0 5px 0;\n  }\n  .title-right.breadcrumbs-off .hgroup {\n    padding-top: 5px;\n  }\n  .title-left.disabled-bg .breadcrumbs {\n    margin-bottom: 0;\n  }\n}\n'),(24782,3632,'_wqoecf_disable_form','no'),(24783,3632,'_edit_lock','1695458197:1'),(24784,3632,'_edit_last','1'),(24785,3633,'total_sales','0'),(24786,3633,'_tax_status','taxable'),(24787,3633,'_tax_class',''),(24788,3633,'_manage_stock','no'),(24789,3633,'_backorders','no'),(24790,3633,'_sold_individually','no'),(24791,3633,'_virtual','no'),(24792,3633,'_downloadable','no'),(24793,3633,'_download_limit','-1'),(24794,3633,'_download_expiry','-1'),(24795,3633,'_thumbnail_id','3825'),(24796,3633,'_stock',NULL),(24797,3633,'_stock_status','instock'),(24798,3633,'_wc_average_rating','0'),(24799,3633,'_wc_review_count','0'),(24800,3633,'_product_attributes','a:1:{s:15:\"pa_product-type\";a:6:{s:4:\"name\";s:15:\"pa_product-type\";s:5:\"value\";s:0:\"\";s:8:\"position\";i:0;s:10:\"is_visible\";i:0;s:12:\"is_variation\";i:0;s:11:\"is_taxonomy\";i:1;}}'),(24801,3633,'_product_version','8.0.2'),(24802,3633,'_dt_sidebar_position','disabled'),(24803,3633,'_dt_sidebar_widgetarea_id','sidebar_1'),(24804,3633,'_dt_sidebar_hide_on_mobile','0'),(24805,3633,'_dt_footer_show','1'),(24806,3633,'_dt_footer_widgetarea_id','sidebar_2'),(24807,3633,'_dt_footer_hide_on_mobile','0'),(24808,3633,'_dt_header_title','fancy'),(24809,3633,'_dt_header_background','normal'),(24810,3633,'_dt_header_background_below_slideshow','disabled'),(24811,3633,'_dt_header_transparent_bg_color_scheme','light'),(24812,3633,'_dt_header_transparent_top_bar_bg_color','#ffffff'),(24813,3633,'_dt_header_transparent_top_bar_bg_opacity','25'),(24814,3633,'_dt_header_transparent_bg_color','#000000'),(24815,3633,'_dt_header_transparent_bg_opacity','50'),(24816,3633,'_dt_header_disabled_background','normal'),(24817,3633,'_dt_header_disabled_transparent_bg_color_scheme','light'),(24818,3633,'_dt_header_disabled_transparent_top_bar_bg_color','#ffffff'),(24819,3633,'_dt_header_disabled_transparent_top_bar_bg_opacity','25'),(24820,3633,'_dt_header_disabled_transparent_bg_color','#000000'),(24821,3633,'_dt_header_disabled_transparent_bg_opacity','50'),(24822,3633,'_dt_page_overrides_top_margin','1%'),(24823,3633,'_dt_page_overrides_right_margin',''),(24824,3633,'_dt_page_overrides_bottom_margin',''),(24825,3633,'_dt_page_overrides_left_margin',''),(24826,3633,'_dt_mobile_page_padding_top',''),(24827,3633,'_dt_mobile_page_padding_right',''),(24828,3633,'_dt_mobile_page_padding_bottom',''),(24829,3633,'_dt_mobile_page_padding_left',''),(24830,3633,'_dt_fancy_header_layout_heading',''),(24831,3633,'_dt_fancy_header_title_aligment','all_left'),(24832,3633,'_dt_fancy_header_height','140'),(24833,3633,'_dt_fancy_header_padding-top','0px'),(24834,3633,'_dt_fancy_header_padding-bottom','0px'),(24835,3633,'_dt_fancy_header_breadcrumbs_heading',''),(24836,3633,'_dt_fancy_header_breadcrumbs','disabled'),(24837,3633,'_dt_fancy_header_breadcrumbs_text_color','#ffffff'),(24838,3633,'_dt_fancy_header_breadcrumbs_bg_color','disabled'),(24839,3633,'_dt_fancy_header_title_heading',''),(24840,3633,'_dt_fancy_header_title_mode','custom'),(24841,3633,'_dt_fancy_header_title',''),(24842,3633,'_dt_fancy_header_title_font_size','32'),(24843,3633,'_dt_fancy_header_title_line_height','36'),(24844,3633,'_dt_fancy_header_text_transform','none'),(24845,3633,'_dt_fancy_header_title_color_mode','color'),(24846,3633,'_dt_fancy_header_title_color','#079547'),(24847,3633,'_dt_fancy_header_subtitle_heading',''),(24848,3633,'_dt_fancy_header_subtitle',''),(24849,3633,'_dt_fancy_header_subtitle_font_size','24'),(24850,3633,'_dt_fancy_header_subtitle_line_height','26'),(24851,3633,'_dt_fancy_header_subtitle_text_transform','none'),(24852,3633,'_dt_fancy_header_subtitle_color_mode','color'),(24853,3633,'_dt_fancy_header_subtitle_color','#792c8a'),(24854,3633,'_dt_fancy_header_bg_heading',''),(24855,3633,'_dt_fancy_header_bg_color','#ffffff'),(24856,3633,'_dt_fancy_header_bg_image_origin','custom'),(24857,3633,'_dt_fancy_header_bg_image','a:1:{i:0;i:3824;}'),(24858,3633,'_dt_fancy_header_bg_repeat','no-repeat'),(24859,3633,'_dt_fancy_header_bg_position_x','center'),(24860,3633,'_dt_fancy_header_bg_position_y','center'),(24861,3633,'_dt_fancy_header_bg_fullscreen','0'),(24862,3633,'_dt_fancy_header_bg_overlay','0'),(24863,3633,'_dt_fancy_header_overlay_color','#000'),(24864,3633,'_dt_fancy_header_bg_overlay_opacity','50'),(24865,3633,'_dt_fancy_header_scroll_effect','default'),(24866,3633,'_dt_fancy_header_bg_parallax','0.5'),(24867,3633,'_dt_fancy_header_responsiveness_heading',''),(24868,3633,'_dt_fancy_header_responsiveness','enabled'),(24869,3633,'_dt_fancy_header_responsiveness_switch','778px'),(24870,3633,'_dt_fancy_header_responsive_height','140'),(24871,3633,'_dt_fancy_header_responsive_font_size','30'),(24872,3633,'_dt_fancy_header_responsive_title_line_height','38'),(24873,3633,'_dt_fancy_header_responsive_subtitle_font_size','20'),(24874,3633,'_dt_fancy_header_responsive_subtitle_line_height','28'),(24875,3633,'_dt_fancy_header_responsive_breadcrumbs','disabled'),(24876,3633,'the7_fancy_title_css','#main {\n  padding-top: 1%;\n}\n.fancy-header {\n  background-image: url(\'https://farmchemie.yasithawd.com/wp-content/uploads/2023/09/Ganadexil-Enrofloxacin-10_300px.png\');\n  background-repeat: no-repeat;\n  background-position: center center;\n  background-size: auto auto;\n  background-color: #ffffff;\n}\n.mobile-false .fancy-header {\n  background-attachment: scroll;\n}\n.fancy-header .wf-wrap {\n  min-height: 140px;\n  padding-top: 0px;\n  padding-bottom: 0px;\n}\n.fancy-header .fancy-title {\n  font-size: 32px;\n  line-height: 36px;\n  color: #079547;\n  text-transform: none;\n}\n.fancy-header .fancy-subtitle {\n  font-size: 24px;\n  line-height: 26px;\n  color: #792c8a;\n  text-transform: none;\n}\n.fancy-header .breadcrumbs {\n  color: #ffffff;\n}\n.fancy-header-overlay {\n  background: rgba(0,0,0,0.5);\n}\n@media screen and (max-width: 778px) {\n  .fancy-header .wf-wrap {\n    min-height: 140px;\n  }\n  .fancy-header .fancy-title {\n    font-size: 30px;\n    line-height: 38px;\n  }\n  .fancy-header .fancy-subtitle {\n    font-size: 20px;\n    line-height: 28px;\n  }\n  .fancy-header.breadcrumbs-mobile-off .breadcrumbs {\n    display: none;\n  }\n  #fancy-header > .wf-wrap {\n    flex-flow: column wrap;\n    align-items: center;\n    justify-content: center;\n    padding-bottom: 0px !important;\n  }\n  .fancy-header.title-left .breadcrumbs {\n    text-align: center;\n    float: none;\n  }\n  .breadcrumbs {\n    margin-bottom: 10px;\n  }\n  .breadcrumbs.breadcrumbs-bg {\n    margin-top: 10px;\n  }\n  .fancy-header.title-right .breadcrumbs {\n    margin: 10px 0 10px 0;\n  }\n  #fancy-header .hgroup,\n  #fancy-header .breadcrumbs {\n    text-align: center;\n  }\n  .fancy-header .hgroup {\n    padding-bottom: 5px;\n  }\n  .breadcrumbs-off .hgroup {\n    padding-bottom: 5px;\n  }\n  .title-right .hgroup {\n    padding: 0 0 5px 0;\n  }\n  .title-right.breadcrumbs-off .hgroup {\n    padding-top: 5px;\n  }\n  .title-left.disabled-bg .breadcrumbs {\n    margin-bottom: 0;\n  }\n}\n'),(24877,3633,'_wqoecf_disable_form','no'),(24878,3633,'_edit_lock','1695478355:2'),(24879,3633,'_edit_last','2'),(24880,3634,'total_sales','0'),(24881,3634,'_tax_status','taxable'),(24882,3634,'_tax_class',''),(24883,3634,'_manage_stock','no'),(24884,3634,'_backorders','no'),(24885,3634,'_sold_individually','no'),(24886,3634,'_virtual','no'),(24887,3634,'_downloadable','no'),(24888,3634,'_download_limit','-1'),(24889,3634,'_download_expiry','-1'),(24977,3635,'_tax_class',''),(24891,3634,'_stock',NULL),(24892,3634,'_stock_status','instock'),(24893,3634,'_wc_average_rating','0'),(24894,3634,'_wc_review_count','0'),(24895,3634,'_product_attributes','a:1:{s:15:\"pa_product-type\";a:6:{s:4:\"name\";s:15:\"pa_product-type\";s:5:\"value\";s:0:\"\";s:8:\"position\";i:0;s:10:\"is_visible\";i:0;s:12:\"is_variation\";i:0;s:11:\"is_taxonomy\";i:1;}}'),(24896,3634,'_product_version','8.0.2'),(24897,3634,'_dt_sidebar_position','disabled'),(24898,3634,'_dt_sidebar_widgetarea_id','sidebar_1'),(24899,3634,'_dt_sidebar_hide_on_mobile','0'),(24900,3634,'_dt_footer_show','1'),(24901,3634,'_dt_footer_widgetarea_id','sidebar_2'),(24902,3634,'_dt_footer_hide_on_mobile','0'),(24903,3634,'_dt_header_title','fancy'),(24904,3634,'_dt_header_background','normal'),(24905,3634,'_dt_header_background_below_slideshow','disabled'),(24906,3634,'_dt_header_transparent_bg_color_scheme','light'),(24907,3634,'_dt_header_transparent_top_bar_bg_color','#ffffff'),(24908,3634,'_dt_header_transparent_top_bar_bg_opacity','25'),(24909,3634,'_dt_header_transparent_bg_color','#000000'),(24910,3634,'_dt_header_transparent_bg_opacity','50'),(24911,3634,'_dt_header_disabled_background','normal'),(24912,3634,'_dt_header_disabled_transparent_bg_color_scheme','light'),(24913,3634,'_dt_header_disabled_transparent_top_bar_bg_color','#ffffff'),(24914,3634,'_dt_header_disabled_transparent_top_bar_bg_opacity','25'),(24915,3634,'_dt_header_disabled_transparent_bg_color','#000000'),(24916,3634,'_dt_header_disabled_transparent_bg_opacity','50'),(24917,3634,'_dt_page_overrides_top_margin','1%'),(24918,3634,'_dt_page_overrides_right_margin',''),(24919,3634,'_dt_page_overrides_bottom_margin',''),(24920,3634,'_dt_page_overrides_left_margin',''),(24921,3634,'_dt_mobile_page_padding_top',''),(24922,3634,'_dt_mobile_page_padding_right',''),(24923,3634,'_dt_mobile_page_padding_bottom',''),(24924,3634,'_dt_mobile_page_padding_left',''),(24925,3634,'_dt_fancy_header_layout_heading',''),(24926,3634,'_dt_fancy_header_title_aligment','all_left'),(24927,3634,'_dt_fancy_header_height','140'),(24928,3634,'_dt_fancy_header_padding-top','0px'),(24929,3634,'_dt_fancy_header_padding-bottom','0px'),(24930,3634,'_dt_fancy_header_breadcrumbs_heading',''),(24931,3634,'_dt_fancy_header_breadcrumbs','disabled'),(24932,3634,'_dt_fancy_header_breadcrumbs_text_color','#ffffff'),(24933,3634,'_dt_fancy_header_breadcrumbs_bg_color','disabled'),(24934,3634,'_dt_fancy_header_title_heading',''),(24935,3634,'_dt_fancy_header_title_mode','custom'),(24936,3634,'_dt_fancy_header_title',''),(24937,3634,'_dt_fancy_header_title_font_size','32'),(24938,3634,'_dt_fancy_header_title_line_height','36'),(24939,3634,'_dt_fancy_header_text_transform','none'),(24940,3634,'_dt_fancy_header_title_color_mode','color'),(24941,3634,'_dt_fancy_header_title_color','#079547'),(24942,3634,'_dt_fancy_header_subtitle_heading',''),(24943,3634,'_dt_fancy_header_subtitle',''),(24944,3634,'_dt_fancy_header_subtitle_font_size','24'),(24945,3634,'_dt_fancy_header_subtitle_line_height','26'),(24946,3634,'_dt_fancy_header_subtitle_text_transform','none'),(24947,3634,'_dt_fancy_header_subtitle_color_mode','color'),(24948,3634,'_dt_fancy_header_subtitle_color','#792c8a'),(24949,3634,'_dt_fancy_header_bg_heading',''),(24950,3634,'_dt_fancy_header_bg_color','#ffffff'),(24951,3634,'_dt_fancy_header_bg_image_origin','custom'),(24952,3634,'_dt_fancy_header_bg_image','a:0:{}'),(24953,3634,'_dt_fancy_header_bg_repeat','no-repeat'),(24954,3634,'_dt_fancy_header_bg_position_x','center'),(24955,3634,'_dt_fancy_header_bg_position_y','center'),(24956,3634,'_dt_fancy_header_bg_fullscreen','0'),(24957,3634,'_dt_fancy_header_bg_overlay','0'),(24958,3634,'_dt_fancy_header_overlay_color','#000'),(24959,3634,'_dt_fancy_header_bg_overlay_opacity','50'),(24960,3634,'_dt_fancy_header_scroll_effect','default'),(24961,3634,'_dt_fancy_header_bg_parallax','0.5'),(24962,3634,'_dt_fancy_header_responsiveness_heading',''),(24963,3634,'_dt_fancy_header_responsiveness','enabled'),(24964,3634,'_dt_fancy_header_responsiveness_switch','778px'),(24965,3634,'_dt_fancy_header_responsive_height','140'),(24966,3634,'_dt_fancy_header_responsive_font_size','30'),(24967,3634,'_dt_fancy_header_responsive_title_line_height','38'),(24968,3634,'_dt_fancy_header_responsive_subtitle_font_size','20'),(24969,3634,'_dt_fancy_header_responsive_subtitle_line_height','28'),(24970,3634,'_dt_fancy_header_responsive_breadcrumbs','disabled'),(24971,3634,'the7_fancy_title_css','#main {\n  padding-top: 1%;\n}\n.fancy-header {\n  background-image: none;\n  background-repeat: no-repeat;\n  background-position: center center;\n  background-size: auto auto;\n  background-color: #ffffff;\n}\n.mobile-false .fancy-header {\n  background-attachment: scroll;\n}\n.fancy-header .wf-wrap {\n  min-height: 140px;\n  padding-top: 0px;\n  padding-bottom: 0px;\n}\n.fancy-header .fancy-title {\n  font-size: 32px;\n  line-height: 36px;\n  color: #079547;\n  text-transform: none;\n}\n.fancy-header .fancy-subtitle {\n  font-size: 24px;\n  line-height: 26px;\n  color: #792c8a;\n  text-transform: none;\n}\n.fancy-header .breadcrumbs {\n  color: #ffffff;\n}\n.fancy-header-overlay {\n  background: rgba(0,0,0,0.5);\n}\n@media screen and (max-width: 778px) {\n  .fancy-header .wf-wrap {\n    min-height: 140px;\n  }\n  .fancy-header .fancy-title {\n    font-size: 30px;\n    line-height: 38px;\n  }\n  .fancy-header .fancy-subtitle {\n    font-size: 20px;\n    line-height: 28px;\n  }\n  .fancy-header.breadcrumbs-mobile-off .breadcrumbs {\n    display: none;\n  }\n  #fancy-header > .wf-wrap {\n    flex-flow: column wrap;\n    align-items: center;\n    justify-content: center;\n    padding-bottom: 0px !important;\n  }\n  .fancy-header.title-left .breadcrumbs {\n    text-align: center;\n    float: none;\n  }\n  .breadcrumbs {\n    margin-bottom: 10px;\n  }\n  .breadcrumbs.breadcrumbs-bg {\n    margin-top: 10px;\n  }\n  .fancy-header.title-right .breadcrumbs {\n    margin: 10px 0 10px 0;\n  }\n  #fancy-header .hgroup,\n  #fancy-header .breadcrumbs {\n    text-align: center;\n  }\n  .fancy-header .hgroup {\n    padding-bottom: 5px;\n  }\n  .breadcrumbs-off .hgroup {\n    padding-bottom: 5px;\n  }\n  .title-right .hgroup {\n    padding: 0 0 5px 0;\n  }\n  .title-right.breadcrumbs-off .hgroup {\n    padding-top: 5px;\n  }\n  .title-left.disabled-bg .breadcrumbs {\n    margin-bottom: 0;\n  }\n}\n'),(24972,3634,'_wqoecf_disable_form','no'),(24973,3634,'_edit_lock','1695090545:1'),(24974,3634,'_edit_last','1'),(24975,3635,'total_sales','0'),(24976,3635,'_tax_status','taxable'),(24978,3635,'_manage_stock','no'),(24979,3635,'_backorders','no'),(24980,3635,'_sold_individually','no'),(24981,3635,'_virtual','no'),(24982,3635,'_downloadable','no'),(24983,3635,'_download_limit','-1'),(24984,3635,'_download_expiry','-1'),(24985,3635,'_stock',NULL),(24986,3635,'_stock_status','instock'),(24987,3635,'_wc_average_rating','0'),(24988,3635,'_wc_review_count','0'),(24989,3635,'_product_attributes','a:1:{s:15:\"pa_product-type\";a:6:{s:4:\"name\";s:15:\"pa_product-type\";s:5:\"value\";s:0:\"\";s:8:\"position\";i:0;s:10:\"is_visible\";i:0;s:12:\"is_variation\";i:0;s:11:\"is_taxonomy\";i:1;}}'),(24990,3635,'_product_version','8.0.2'),(24991,3635,'_dt_sidebar_position','disabled'),(24992,3635,'_dt_sidebar_widgetarea_id','sidebar_1'),(24993,3635,'_dt_sidebar_hide_on_mobile','0'),(24994,3635,'_dt_footer_show','1'),(24995,3635,'_dt_footer_widgetarea_id','sidebar_2'),(24996,3635,'_dt_footer_hide_on_mobile','0'),(24997,3635,'_dt_header_title','fancy'),(24998,3635,'_dt_header_background','normal'),(24999,3635,'_dt_header_background_below_slideshow','disabled'),(25000,3635,'_dt_header_transparent_bg_color_scheme','light'),(25001,3635,'_dt_header_transparent_top_bar_bg_color','#ffffff'),(25002,3635,'_dt_header_transparent_top_bar_bg_opacity','25'),(25003,3635,'_dt_header_transparent_bg_color','#000000'),(25004,3635,'_dt_header_transparent_bg_opacity','50'),(25005,3635,'_dt_header_disabled_background','normal'),(25006,3635,'_dt_header_disabled_transparent_bg_color_scheme','light'),(25007,3635,'_dt_header_disabled_transparent_top_bar_bg_color','#ffffff'),(25008,3635,'_dt_header_disabled_transparent_top_bar_bg_opacity','25'),(25009,3635,'_dt_header_disabled_transparent_bg_color','#000000'),(25010,3635,'_dt_header_disabled_transparent_bg_opacity','50'),(25011,3635,'_dt_page_overrides_top_margin','1%'),(25012,3635,'_dt_page_overrides_right_margin',''),(25013,3635,'_dt_page_overrides_bottom_margin',''),(25014,3635,'_dt_page_overrides_left_margin',''),(25015,3635,'_dt_mobile_page_padding_top',''),(25016,3635,'_dt_mobile_page_padding_right',''),(25017,3635,'_dt_mobile_page_padding_bottom',''),(25018,3635,'_dt_mobile_page_padding_left',''),(25019,3635,'_dt_fancy_header_layout_heading',''),(25020,3635,'_dt_fancy_header_title_aligment','all_left'),(25021,3635,'_dt_fancy_header_height','140'),(25022,3635,'_dt_fancy_header_padding-top','0px'),(25023,3635,'_dt_fancy_header_padding-bottom','0px'),(25024,3635,'_dt_fancy_header_breadcrumbs_heading',''),(25025,3635,'_dt_fancy_header_breadcrumbs','disabled'),(25026,3635,'_dt_fancy_header_breadcrumbs_text_color','#ffffff'),(25027,3635,'_dt_fancy_header_breadcrumbs_bg_color','disabled'),(25028,3635,'_dt_fancy_header_title_heading',''),(25029,3635,'_dt_fancy_header_title_mode','custom'),(25030,3635,'_dt_fancy_header_title',''),(25031,3635,'_dt_fancy_header_title_font_size','32'),(25032,3635,'_dt_fancy_header_title_line_height','36'),(25033,3635,'_dt_fancy_header_text_transform','none'),(25034,3635,'_dt_fancy_header_title_color_mode','color'),(25035,3635,'_dt_fancy_header_title_color','#079547'),(25036,3635,'_dt_fancy_header_subtitle_heading',''),(25037,3635,'_dt_fancy_header_subtitle',''),(25038,3635,'_dt_fancy_header_subtitle_font_size','24'),(25039,3635,'_dt_fancy_header_subtitle_line_height','26'),(25040,3635,'_dt_fancy_header_subtitle_text_transform','none'),(25041,3635,'_dt_fancy_header_subtitle_color_mode','color'),(25042,3635,'_dt_fancy_header_subtitle_color','#792c8a'),(25043,3635,'_dt_fancy_header_bg_heading',''),(25044,3635,'_dt_fancy_header_bg_color','#ffffff'),(25045,3635,'_dt_fancy_header_bg_image_origin','custom'),(25046,3635,'_dt_fancy_header_bg_image','a:1:{i:0;i:3834;}'),(25047,3635,'_dt_fancy_header_bg_repeat','no-repeat'),(25048,3635,'_dt_fancy_header_bg_position_x','center'),(25049,3635,'_dt_fancy_header_bg_position_y','center'),(25050,3635,'_dt_fancy_header_bg_fullscreen','0'),(25051,3635,'_dt_fancy_header_bg_overlay','0'),(25052,3635,'_dt_fancy_header_overlay_color','#000'),(25053,3635,'_dt_fancy_header_bg_overlay_opacity','50'),(25054,3635,'_dt_fancy_header_scroll_effect','default'),(25055,3635,'_dt_fancy_header_bg_parallax','0.5'),(25056,3635,'_dt_fancy_header_responsiveness_heading',''),(25057,3635,'_dt_fancy_header_responsiveness','enabled'),(25058,3635,'_dt_fancy_header_responsiveness_switch','778px'),(25059,3635,'_dt_fancy_header_responsive_height','140'),(25060,3635,'_dt_fancy_header_responsive_font_size','30'),(25061,3635,'_dt_fancy_header_responsive_title_line_height','38'),(25062,3635,'_dt_fancy_header_responsive_subtitle_font_size','20'),(25063,3635,'_dt_fancy_header_responsive_subtitle_line_height','28'),(25064,3635,'_dt_fancy_header_responsive_breadcrumbs','disabled'),(25065,3635,'the7_fancy_title_css','#main {\n  padding-top: 1%;\n}\n.fancy-header {\n  background-image: none;\n  background-repeat: no-repeat;\n  background-position: center center;\n  background-size: auto auto;\n  background-color: #ffffff;\n}\n.mobile-false .fancy-header {\n  background-attachment: scroll;\n}\n.fancy-header .wf-wrap {\n  min-height: 140px;\n  padding-top: 0px;\n  padding-bottom: 0px;\n}\n.fancy-header .fancy-title {\n  font-size: 32px;\n  line-height: 36px;\n  color: #079547;\n  text-transform: none;\n}\n.fancy-header .fancy-subtitle {\n  font-size: 24px;\n  line-height: 26px;\n  color: #792c8a;\n  text-transform: none;\n}\n.fancy-header .breadcrumbs {\n  color: #ffffff;\n}\n.fancy-header-overlay {\n  background: rgba(0,0,0,0.5);\n}\n@media screen and (max-width: 778px) {\n  .fancy-header .wf-wrap {\n    min-height: 140px;\n  }\n  .fancy-header .fancy-title {\n    font-size: 30px;\n    line-height: 38px;\n  }\n  .fancy-header .fancy-subtitle {\n    font-size: 20px;\n    line-height: 28px;\n  }\n  .fancy-header.breadcrumbs-mobile-off .breadcrumbs {\n    display: none;\n  }\n  #fancy-header > .wf-wrap {\n    flex-flow: column wrap;\n    align-items: center;\n    justify-content: center;\n    padding-bottom: 0px !important;\n  }\n  .fancy-header.title-left .breadcrumbs {\n    text-align: center;\n    float: none;\n  }\n  .breadcrumbs {\n    margin-bottom: 10px;\n  }\n  .breadcrumbs.breadcrumbs-bg {\n    margin-top: 10px;\n  }\n  .fancy-header.title-right .breadcrumbs {\n    margin: 10px 0 10px 0;\n  }\n  #fancy-header .hgroup,\n  #fancy-header .breadcrumbs {\n    text-align: center;\n  }\n  .fancy-header .hgroup {\n    padding-bottom: 5px;\n  }\n  .breadcrumbs-off .hgroup {\n    padding-bottom: 5px;\n  }\n  .title-right .hgroup {\n    padding: 0 0 5px 0;\n  }\n  .title-right.breadcrumbs-off .hgroup {\n    padding-top: 5px;\n  }\n  .title-left.disabled-bg .breadcrumbs {\n    margin-bottom: 0;\n  }\n}\n'),(25066,3635,'_wqoecf_disable_form','no'),(25067,3635,'_edit_lock','1695461427:1'),(25068,3635,'_edit_last','1'),(25071,3636,'_tax_status','taxable'),(25070,3636,'total_sales','0'),(25072,3636,'_tax_class',''),(25073,3636,'_manage_stock','no'),(25074,3636,'_backorders','no'),(25075,3636,'_sold_individually','no'),(25076,3636,'_virtual','no'),(25077,3636,'_downloadable','no'),(25078,3636,'_download_limit','-1'),(25079,3636,'_download_expiry','-1'),(25080,3636,'_thumbnail_id','3816'),(25081,3636,'_stock',NULL),(25082,3636,'_stock_status','instock'),(25083,3636,'_wc_average_rating','0'),(25084,3636,'_wc_review_count','0'),(25085,3636,'_product_attributes','a:1:{s:15:\"pa_product-type\";a:6:{s:4:\"name\";s:15:\"pa_product-type\";s:5:\"value\";s:0:\"\";s:8:\"position\";i:0;s:10:\"is_visible\";i:0;s:12:\"is_variation\";i:0;s:11:\"is_taxonomy\";i:1;}}'),(25086,3636,'_product_version','8.0.2'),(25087,3636,'_dt_sidebar_position','disabled'),(25088,3636,'_dt_sidebar_widgetarea_id','sidebar_1'),(25089,3636,'_dt_sidebar_hide_on_mobile','0'),(25090,3636,'_dt_footer_show','1'),(25091,3636,'_dt_footer_widgetarea_id','sidebar_2'),(25092,3636,'_dt_footer_hide_on_mobile','0'),(25093,3636,'_dt_header_title','fancy'),(25094,3636,'_dt_header_background','normal'),(25095,3636,'_dt_header_background_below_slideshow','disabled'),(25096,3636,'_dt_header_transparent_bg_color_scheme','light'),(25097,3636,'_dt_header_transparent_top_bar_bg_color','#ffffff'),(25098,3636,'_dt_header_transparent_top_bar_bg_opacity','25'),(25099,3636,'_dt_header_transparent_bg_color','#000000'),(25100,3636,'_dt_header_transparent_bg_opacity','50'),(25101,3636,'_dt_header_disabled_background','normal'),(25102,3636,'_dt_header_disabled_transparent_bg_color_scheme','light'),(25103,3636,'_dt_header_disabled_transparent_top_bar_bg_color','#ffffff'),(25104,3636,'_dt_header_disabled_transparent_top_bar_bg_opacity','25'),(25105,3636,'_dt_header_disabled_transparent_bg_color','#000000'),(25106,3636,'_dt_header_disabled_transparent_bg_opacity','50'),(25107,3636,'_dt_page_overrides_top_margin','1%'),(25108,3636,'_dt_page_overrides_right_margin',''),(25109,3636,'_dt_page_overrides_bottom_margin',''),(25110,3636,'_dt_page_overrides_left_margin',''),(25111,3636,'_dt_mobile_page_padding_top',''),(25112,3636,'_dt_mobile_page_padding_right',''),(25113,3636,'_dt_mobile_page_padding_bottom',''),(25114,3636,'_dt_mobile_page_padding_left',''),(25115,3636,'_dt_fancy_header_layout_heading',''),(25116,3636,'_dt_fancy_header_title_aligment','all_left'),(25117,3636,'_dt_fancy_header_height','140'),(25118,3636,'_dt_fancy_header_padding-top','0px'),(25119,3636,'_dt_fancy_header_padding-bottom','0px'),(25120,3636,'_dt_fancy_header_breadcrumbs_heading',''),(25121,3636,'_dt_fancy_header_breadcrumbs','disabled'),(25122,3636,'_dt_fancy_header_breadcrumbs_text_color','#ffffff'),(25123,3636,'_dt_fancy_header_breadcrumbs_bg_color','disabled'),(25124,3636,'_dt_fancy_header_title_heading',''),(25125,3636,'_dt_fancy_header_title_mode','custom'),(25126,3636,'_dt_fancy_header_title',''),(25127,3636,'_dt_fancy_header_title_font_size','32'),(25128,3636,'_dt_fancy_header_title_line_height','36'),(25129,3636,'_dt_fancy_header_text_transform','none'),(25130,3636,'_dt_fancy_header_title_color_mode','color'),(25131,3636,'_dt_fancy_header_title_color','#079547'),(25132,3636,'_dt_fancy_header_subtitle_heading',''),(25133,3636,'_dt_fancy_header_subtitle',''),(25134,3636,'_dt_fancy_header_subtitle_font_size','24'),(25135,3636,'_dt_fancy_header_subtitle_line_height','26'),(25136,3636,'_dt_fancy_header_subtitle_text_transform','none'),(25137,3636,'_dt_fancy_header_subtitle_color_mode','color'),(25138,3636,'_dt_fancy_header_subtitle_color','#792c8a'),(25139,3636,'_dt_fancy_header_bg_heading',''),(25140,3636,'_dt_fancy_header_bg_color','#ffffff'),(25141,3636,'_dt_fancy_header_bg_image_origin','custom'),(25142,3636,'_dt_fancy_header_bg_image','a:1:{i:0;i:3817;}'),(25143,3636,'_dt_fancy_header_bg_repeat','no-repeat'),(25144,3636,'_dt_fancy_header_bg_position_x','center'),(25145,3636,'_dt_fancy_header_bg_position_y','center'),(25146,3636,'_dt_fancy_header_bg_fullscreen','0'),(25147,3636,'_dt_fancy_header_bg_overlay','0'),(25148,3636,'_dt_fancy_header_overlay_color','#000'),(25149,3636,'_dt_fancy_header_bg_overlay_opacity','50'),(25150,3636,'_dt_fancy_header_scroll_effect','default'),(25151,3636,'_dt_fancy_header_bg_parallax','0.5'),(25152,3636,'_dt_fancy_header_responsiveness_heading',''),(25153,3636,'_dt_fancy_header_responsiveness','enabled'),(25154,3636,'_dt_fancy_header_responsiveness_switch','778px'),(25155,3636,'_dt_fancy_header_responsive_height','140'),(25156,3636,'_dt_fancy_header_responsive_font_size','30'),(25157,3636,'_dt_fancy_header_responsive_title_line_height','38'),(25158,3636,'_dt_fancy_header_responsive_subtitle_font_size','20'),(25159,3636,'_dt_fancy_header_responsive_subtitle_line_height','28'),(25160,3636,'_dt_fancy_header_responsive_breadcrumbs','disabled'),(25161,3636,'the7_fancy_title_css','#main {\n  padding-top: 1%;\n}\n.fancy-header {\n  background-image: url(\'https://farmchemie.yasithawd.com/wp-content/uploads/2023/09/Trimethosulfa_300px.png\');\n  background-repeat: no-repeat;\n  background-position: center center;\n  background-size: auto auto;\n  background-color: #ffffff;\n}\n.mobile-false .fancy-header {\n  background-attachment: scroll;\n}\n.fancy-header .wf-wrap {\n  min-height: 140px;\n  padding-top: 0px;\n  padding-bottom: 0px;\n}\n.fancy-header .fancy-title {\n  font-size: 32px;\n  line-height: 36px;\n  color: #079547;\n  text-transform: none;\n}\n.fancy-header .fancy-subtitle {\n  font-size: 24px;\n  line-height: 26px;\n  color: #792c8a;\n  text-transform: none;\n}\n.fancy-header .breadcrumbs {\n  color: #ffffff;\n}\n.fancy-header-overlay {\n  background: rgba(0,0,0,0.5);\n}\n@media screen and (max-width: 778px) {\n  .fancy-header .wf-wrap {\n    min-height: 140px;\n  }\n  .fancy-header .fancy-title {\n    font-size: 30px;\n    line-height: 38px;\n  }\n  .fancy-header .fancy-subtitle {\n    font-size: 20px;\n    line-height: 28px;\n  }\n  .fancy-header.breadcrumbs-mobile-off .breadcrumbs {\n    display: none;\n  }\n  #fancy-header > .wf-wrap {\n    flex-flow: column wrap;\n    align-items: center;\n    justify-content: center;\n    padding-bottom: 0px !important;\n  }\n  .fancy-header.title-left .breadcrumbs {\n    text-align: center;\n    float: none;\n  }\n  .breadcrumbs {\n    margin-bottom: 10px;\n  }\n  .breadcrumbs.breadcrumbs-bg {\n    margin-top: 10px;\n  }\n  .fancy-header.title-right .breadcrumbs {\n    margin: 10px 0 10px 0;\n  }\n  #fancy-header .hgroup,\n  #fancy-header .breadcrumbs {\n    text-align: center;\n  }\n  .fancy-header .hgroup {\n    padding-bottom: 5px;\n  }\n  .breadcrumbs-off .hgroup {\n    padding-bottom: 5px;\n  }\n  .title-right .hgroup {\n    padding: 0 0 5px 0;\n  }\n  .title-right.breadcrumbs-off .hgroup {\n    padding-top: 5px;\n  }\n  .title-left.disabled-bg .breadcrumbs {\n    margin-bottom: 0;\n  }\n}\n'),(25162,3636,'_wqoecf_disable_form','no'),(25163,3636,'_edit_lock','1695479058:2'),(25164,3636,'_edit_last','2'),(25165,3637,'total_sales','0'),(25166,3637,'_tax_status','taxable'),(25167,3637,'_tax_class',''),(25168,3637,'_manage_stock','no'),(25169,3637,'_backorders','no'),(25170,3637,'_sold_individually','no'),(25171,3637,'_virtual','no'),(25172,3637,'_downloadable','no'),(25173,3637,'_download_limit','-1'),(25174,3637,'_download_expiry','-1'),(25176,3637,'_stock',NULL),(25177,3637,'_stock_status','instock'),(25178,3637,'_wc_average_rating','0'),(25179,3637,'_wc_review_count','0'),(25180,3637,'_product_attributes','a:1:{s:15:\"pa_product-type\";a:6:{s:4:\"name\";s:15:\"pa_product-type\";s:5:\"value\";s:0:\"\";s:8:\"position\";i:0;s:10:\"is_visible\";i:0;s:12:\"is_variation\";i:0;s:11:\"is_taxonomy\";i:1;}}'),(25181,3637,'_product_version','8.0.2'),(25182,3637,'_dt_sidebar_position','disabled'),(25183,3637,'_dt_sidebar_widgetarea_id','sidebar_1'),(25184,3637,'_dt_sidebar_hide_on_mobile','0'),(25185,3637,'_dt_footer_show','1'),(25186,3637,'_dt_footer_widgetarea_id','sidebar_2'),(25187,3637,'_dt_footer_hide_on_mobile','0'),(25188,3637,'_dt_header_title','fancy'),(25189,3637,'_dt_header_background','normal'),(25190,3637,'_dt_header_background_below_slideshow','disabled'),(25191,3637,'_dt_header_transparent_bg_color_scheme','light'),(25192,3637,'_dt_header_transparent_top_bar_bg_color','#ffffff'),(25193,3637,'_dt_header_transparent_top_bar_bg_opacity','25'),(25194,3637,'_dt_header_transparent_bg_color','#000000'),(25195,3637,'_dt_header_transparent_bg_opacity','50'),(25196,3637,'_dt_header_disabled_background','normal'),(25197,3637,'_dt_header_disabled_transparent_bg_color_scheme','light'),(25198,3637,'_dt_header_disabled_transparent_top_bar_bg_color','#ffffff'),(25199,3637,'_dt_header_disabled_transparent_top_bar_bg_opacity','25'),(25200,3637,'_dt_header_disabled_transparent_bg_color','#000000'),(25201,3637,'_dt_header_disabled_transparent_bg_opacity','50'),(25202,3637,'_dt_page_overrides_top_margin','1%'),(25203,3637,'_dt_page_overrides_right_margin',''),(25204,3637,'_dt_page_overrides_bottom_margin',''),(25205,3637,'_dt_page_overrides_left_margin',''),(25206,3637,'_dt_mobile_page_padding_top',''),(25207,3637,'_dt_mobile_page_padding_right',''),(25208,3637,'_dt_mobile_page_padding_bottom',''),(25209,3637,'_dt_mobile_page_padding_left',''),(25210,3637,'_dt_fancy_header_layout_heading',''),(25211,3637,'_dt_fancy_header_title_aligment','all_left'),(25212,3637,'_dt_fancy_header_height','140'),(25213,3637,'_dt_fancy_header_padding-top','0px'),(25214,3637,'_dt_fancy_header_padding-bottom','0px'),(25215,3637,'_dt_fancy_header_breadcrumbs_heading',''),(25216,3637,'_dt_fancy_header_breadcrumbs','disabled'),(25217,3637,'_dt_fancy_header_breadcrumbs_text_color','#ffffff'),(25218,3637,'_dt_fancy_header_breadcrumbs_bg_color','disabled'),(25219,3637,'_dt_fancy_header_title_heading',''),(25220,3637,'_dt_fancy_header_title_mode','custom'),(25221,3637,'_dt_fancy_header_title',''),(25222,3637,'_dt_fancy_header_title_font_size','32'),(25223,3637,'_dt_fancy_header_title_line_height','36'),(25224,3637,'_dt_fancy_header_text_transform','none'),(25225,3637,'_dt_fancy_header_title_color_mode','color'),(25226,3637,'_dt_fancy_header_title_color','#079547'),(25227,3637,'_dt_fancy_header_subtitle_heading',''),(25228,3637,'_dt_fancy_header_subtitle',''),(25229,3637,'_dt_fancy_header_subtitle_font_size','24'),(25230,3637,'_dt_fancy_header_subtitle_line_height','26'),(25231,3637,'_dt_fancy_header_subtitle_text_transform','none'),(25232,3637,'_dt_fancy_header_subtitle_color_mode','color'),(25233,3637,'_dt_fancy_header_subtitle_color','#792c8a'),(25234,3637,'_dt_fancy_header_bg_heading',''),(25235,3637,'_dt_fancy_header_bg_color','#ffffff'),(25236,3637,'_dt_fancy_header_bg_image_origin','custom'),(25237,3637,'_dt_fancy_header_bg_image','a:0:{}'),(25238,3637,'_dt_fancy_header_bg_repeat','no-repeat'),(25239,3637,'_dt_fancy_header_bg_position_x','center'),(25240,3637,'_dt_fancy_header_bg_position_y','center'),(25241,3637,'_dt_fancy_header_bg_fullscreen','0'),(25242,3637,'_dt_fancy_header_bg_overlay','0'),(25243,3637,'_dt_fancy_header_overlay_color','#000'),(25244,3637,'_dt_fancy_header_bg_overlay_opacity','50'),(25245,3637,'_dt_fancy_header_scroll_effect','default'),(25246,3637,'_dt_fancy_header_bg_parallax','0.5'),(25247,3637,'_dt_fancy_header_responsiveness_heading',''),(25248,3637,'_dt_fancy_header_responsiveness','enabled'),(25249,3637,'_dt_fancy_header_responsiveness_switch','778px'),(25250,3637,'_dt_fancy_header_responsive_height','140'),(25251,3637,'_dt_fancy_header_responsive_font_size','30'),(25252,3637,'_dt_fancy_header_responsive_title_line_height','38'),(25253,3637,'_dt_fancy_header_responsive_subtitle_font_size','20'),(25254,3637,'_dt_fancy_header_responsive_subtitle_line_height','28'),(25255,3637,'_dt_fancy_header_responsive_breadcrumbs','disabled'),(25256,3637,'the7_fancy_title_css','#main {\n  padding-top: 1%;\n}\n.fancy-header {\n  background-image: none;\n  background-repeat: no-repeat;\n  background-position: center center;\n  background-size: auto auto;\n  background-color: #ffffff;\n}\n.mobile-false .fancy-header {\n  background-attachment: scroll;\n}\n.fancy-header .wf-wrap {\n  min-height: 140px;\n  padding-top: 0px;\n  padding-bottom: 0px;\n}\n.fancy-header .fancy-title {\n  font-size: 32px;\n  line-height: 36px;\n  color: #079547;\n  text-transform: none;\n}\n.fancy-header .fancy-subtitle {\n  font-size: 24px;\n  line-height: 26px;\n  color: #792c8a;\n  text-transform: none;\n}\n.fancy-header .breadcrumbs {\n  color: #ffffff;\n}\n.fancy-header-overlay {\n  background: rgba(0,0,0,0.5);\n}\n@media screen and (max-width: 778px) {\n  .fancy-header .wf-wrap {\n    min-height: 140px;\n  }\n  .fancy-header .fancy-title {\n    font-size: 30px;\n    line-height: 38px;\n  }\n  .fancy-header .fancy-subtitle {\n    font-size: 20px;\n    line-height: 28px;\n  }\n  .fancy-header.breadcrumbs-mobile-off .breadcrumbs {\n    display: none;\n  }\n  #fancy-header > .wf-wrap {\n    flex-flow: column wrap;\n    align-items: center;\n    justify-content: center;\n    padding-bottom: 0px !important;\n  }\n  .fancy-header.title-left .breadcrumbs {\n    text-align: center;\n    float: none;\n  }\n  .breadcrumbs {\n    margin-bottom: 10px;\n  }\n  .breadcrumbs.breadcrumbs-bg {\n    margin-top: 10px;\n  }\n  .fancy-header.title-right .breadcrumbs {\n    margin: 10px 0 10px 0;\n  }\n  #fancy-header .hgroup,\n  #fancy-header .breadcrumbs {\n    text-align: center;\n  }\n  .fancy-header .hgroup {\n    padding-bottom: 5px;\n  }\n  .breadcrumbs-off .hgroup {\n    padding-bottom: 5px;\n  }\n  .title-right .hgroup {\n    padding: 0 0 5px 0;\n  }\n  .title-right.breadcrumbs-off .hgroup {\n    padding-top: 5px;\n  }\n  .title-left.disabled-bg .breadcrumbs {\n    margin-bottom: 0;\n  }\n}\n'),(25257,3637,'_wqoecf_disable_form','no'),(25258,3637,'_edit_lock','1695486015:2'),(25259,3637,'_edit_last','2'),(25260,3638,'total_sales','0'),(25261,3638,'_tax_status','taxable'),(25262,3638,'_tax_class',''),(25263,3638,'_manage_stock','no'),(25264,3638,'_backorders','no'),(25265,3638,'_sold_individually','no'),(25266,3638,'_virtual','no'),(25267,3638,'_downloadable','no'),(25268,3638,'_download_limit','-1'),(25269,3638,'_download_expiry','-1'),(25270,3638,'_thumbnail_id','3805'),(25271,3638,'_stock',NULL),(25272,3638,'_stock_status','instock'),(25273,3638,'_wc_average_rating','0'),(25274,3638,'_wc_review_count','0'),(25275,3638,'_product_attributes','a:1:{s:15:\"pa_product-type\";a:6:{s:4:\"name\";s:15:\"pa_product-type\";s:5:\"value\";s:0:\"\";s:8:\"position\";i:0;s:10:\"is_visible\";i:0;s:12:\"is_variation\";i:0;s:11:\"is_taxonomy\";i:1;}}'),(25276,3638,'_product_version','8.0.2'),(25277,3638,'_dt_sidebar_position','disabled'),(25278,3638,'_dt_sidebar_widgetarea_id','sidebar_1'),(25279,3638,'_dt_sidebar_hide_on_mobile','0'),(25280,3638,'_dt_footer_show','1'),(25281,3638,'_dt_footer_widgetarea_id','sidebar_2'),(25282,3638,'_dt_footer_hide_on_mobile','0'),(25283,3638,'_dt_header_title','fancy'),(25284,3638,'_dt_header_background','normal'),(25285,3638,'_dt_header_background_below_slideshow','disabled'),(25286,3638,'_dt_header_transparent_bg_color_scheme','light'),(25287,3638,'_dt_header_transparent_top_bar_bg_color','#ffffff'),(25288,3638,'_dt_header_transparent_top_bar_bg_opacity','25'),(25289,3638,'_dt_header_transparent_bg_color','#000000'),(25290,3638,'_dt_header_transparent_bg_opacity','50'),(25291,3638,'_dt_header_disabled_background','normal'),(25292,3638,'_dt_header_disabled_transparent_bg_color_scheme','light'),(25293,3638,'_dt_header_disabled_transparent_top_bar_bg_color','#ffffff'),(25294,3638,'_dt_header_disabled_transparent_top_bar_bg_opacity','25'),(25295,3638,'_dt_header_disabled_transparent_bg_color','#000000'),(25296,3638,'_dt_header_disabled_transparent_bg_opacity','50'),(25297,3638,'_dt_page_overrides_top_margin','1%'),(25298,3638,'_dt_page_overrides_right_margin',''),(25299,3638,'_dt_page_overrides_bottom_margin',''),(25300,3638,'_dt_page_overrides_left_margin',''),(25301,3638,'_dt_mobile_page_padding_top',''),(25302,3638,'_dt_mobile_page_padding_right',''),(25303,3638,'_dt_mobile_page_padding_bottom',''),(25304,3638,'_dt_mobile_page_padding_left',''),(25305,3638,'_dt_fancy_header_layout_heading',''),(25306,3638,'_dt_fancy_header_title_aligment','all_left'),(25307,3638,'_dt_fancy_header_height','140'),(25308,3638,'_dt_fancy_header_padding-top','0px'),(25309,3638,'_dt_fancy_header_padding-bottom','0px'),(25310,3638,'_dt_fancy_header_breadcrumbs_heading',''),(25311,3638,'_dt_fancy_header_breadcrumbs','disabled'),(25312,3638,'_dt_fancy_header_breadcrumbs_text_color','#ffffff'),(25313,3638,'_dt_fancy_header_breadcrumbs_bg_color','disabled'),(25314,3638,'_dt_fancy_header_title_heading',''),(25315,3638,'_dt_fancy_header_title_mode','custom'),(25316,3638,'_dt_fancy_header_title',''),(25317,3638,'_dt_fancy_header_title_font_size','32'),(25318,3638,'_dt_fancy_header_title_line_height','36'),(25319,3638,'_dt_fancy_header_text_transform','none'),(25320,3638,'_dt_fancy_header_title_color_mode','color'),(25321,3638,'_dt_fancy_header_title_color','#079547'),(25322,3638,'_dt_fancy_header_subtitle_heading',''),(25323,3638,'_dt_fancy_header_subtitle',''),(25324,3638,'_dt_fancy_header_subtitle_font_size','24'),(25325,3638,'_dt_fancy_header_subtitle_line_height','26'),(25326,3638,'_dt_fancy_header_subtitle_text_transform','none'),(25327,3638,'_dt_fancy_header_subtitle_color_mode','color'),(25328,3638,'_dt_fancy_header_subtitle_color','#792c8a'),(25329,3638,'_dt_fancy_header_bg_heading',''),(25330,3638,'_dt_fancy_header_bg_color','#ffffff'),(25331,3638,'_dt_fancy_header_bg_image_origin','custom'),(25332,3638,'_dt_fancy_header_bg_image','a:1:{i:0;i:3832;}'),(25333,3638,'_dt_fancy_header_bg_repeat','no-repeat'),(25334,3638,'_dt_fancy_header_bg_position_x','center'),(25335,3638,'_dt_fancy_header_bg_position_y','center'),(25336,3638,'_dt_fancy_header_bg_fullscreen','0'),(25337,3638,'_dt_fancy_header_bg_overlay','0'),(25338,3638,'_dt_fancy_header_overlay_color','#000'),(25339,3638,'_dt_fancy_header_bg_overlay_opacity','50'),(25340,3638,'_dt_fancy_header_scroll_effect','default'),(25341,3638,'_dt_fancy_header_bg_parallax','0.5'),(25342,3638,'_dt_fancy_header_responsiveness_heading',''),(25343,3638,'_dt_fancy_header_responsiveness','enabled'),(25344,3638,'_dt_fancy_header_responsiveness_switch','778px'),(25345,3638,'_dt_fancy_header_responsive_height','140'),(25346,3638,'_dt_fancy_header_responsive_font_size','30'),(25347,3638,'_dt_fancy_header_responsive_title_line_height','38'),(25348,3638,'_dt_fancy_header_responsive_subtitle_font_size','20'),(25349,3638,'_dt_fancy_header_responsive_subtitle_line_height','28'),(25350,3638,'_dt_fancy_header_responsive_breadcrumbs','disabled'),(25351,3638,'the7_fancy_title_css','#main {\n  padding-top: 1%;\n}\n.fancy-header {\n  background-image: url(\'https://farmchemie.yasithawd.com/wp-content/uploads/2023/09/Treizuril_300px-1.png\');\n  background-repeat: no-repeat;\n  background-position: center center;\n  background-size: auto auto;\n  background-color: #ffffff;\n}\n.mobile-false .fancy-header {\n  background-attachment: scroll;\n}\n.fancy-header .wf-wrap {\n  min-height: 140px;\n  padding-top: 0px;\n  padding-bottom: 0px;\n}\n.fancy-header .fancy-title {\n  font-size: 32px;\n  line-height: 36px;\n  color: #079547;\n  text-transform: none;\n}\n.fancy-header .fancy-subtitle {\n  font-size: 24px;\n  line-height: 26px;\n  color: #792c8a;\n  text-transform: none;\n}\n.fancy-header .breadcrumbs {\n  color: #ffffff;\n}\n.fancy-header-overlay {\n  background: rgba(0,0,0,0.5);\n}\n@media screen and (max-width: 778px) {\n  .fancy-header .wf-wrap {\n    min-height: 140px;\n  }\n  .fancy-header .fancy-title {\n    font-size: 30px;\n    line-height: 38px;\n  }\n  .fancy-header .fancy-subtitle {\n    font-size: 20px;\n    line-height: 28px;\n  }\n  .fancy-header.breadcrumbs-mobile-off .breadcrumbs {\n    display: none;\n  }\n  #fancy-header > .wf-wrap {\n    flex-flow: column wrap;\n    align-items: center;\n    justify-content: center;\n    padding-bottom: 0px !important;\n  }\n  .fancy-header.title-left .breadcrumbs {\n    text-align: center;\n    float: none;\n  }\n  .breadcrumbs {\n    margin-bottom: 10px;\n  }\n  .breadcrumbs.breadcrumbs-bg {\n    margin-top: 10px;\n  }\n  .fancy-header.title-right .breadcrumbs {\n    margin: 10px 0 10px 0;\n  }\n  #fancy-header .hgroup,\n  #fancy-header .breadcrumbs {\n    text-align: center;\n  }\n  .fancy-header .hgroup {\n    padding-bottom: 5px;\n  }\n  .breadcrumbs-off .hgroup {\n    padding-bottom: 5px;\n  }\n  .title-right .hgroup {\n    padding: 0 0 5px 0;\n  }\n  .title-right.breadcrumbs-off .hgroup {\n    padding-top: 5px;\n  }\n  .title-left.disabled-bg .breadcrumbs {\n    margin-bottom: 0;\n  }\n}\n'),(25352,3638,'_wqoecf_disable_form','no'),(25353,3638,'_edit_lock','1695486211:2'),(25354,3638,'_edit_last','2'),(25355,3639,'total_sales','0'),(25356,3639,'_tax_status','taxable'),(25357,3639,'_tax_class',''),(25358,3639,'_manage_stock','no'),(25359,3639,'_backorders','no'),(25360,3639,'_sold_individually','no'),(25361,3639,'_virtual','no'),(25362,3639,'_downloadable','no'),(25363,3639,'_download_limit','-1'),(25364,3639,'_download_expiry','-1'),(25365,3639,'_thumbnail_id','3810'),(25366,3639,'_stock',NULL),(25367,3639,'_stock_status','instock'),(25368,3639,'_wc_average_rating','0'),(25369,3639,'_wc_review_count','0'),(25370,3639,'_product_attributes','a:1:{s:15:\"pa_product-type\";a:6:{s:4:\"name\";s:15:\"pa_product-type\";s:5:\"value\";s:0:\"\";s:8:\"position\";i:0;s:10:\"is_visible\";i:0;s:12:\"is_variation\";i:0;s:11:\"is_taxonomy\";i:1;}}'),(25371,3639,'_product_version','8.0.2'),(25372,3639,'_dt_sidebar_position','disabled'),(25373,3639,'_dt_sidebar_widgetarea_id','sidebar_1'),(25374,3639,'_dt_sidebar_hide_on_mobile','0'),(25375,3639,'_dt_footer_show','1'),(25376,3639,'_dt_footer_widgetarea_id','sidebar_2'),(25377,3639,'_dt_footer_hide_on_mobile','0'),(25378,3639,'_dt_header_title','fancy'),(25379,3639,'_dt_header_background','normal'),(25380,3639,'_dt_header_background_below_slideshow','disabled'),(25381,3639,'_dt_header_transparent_bg_color_scheme','light'),(25382,3639,'_dt_header_transparent_top_bar_bg_color','#ffffff'),(25383,3639,'_dt_header_transparent_top_bar_bg_opacity','25'),(25384,3639,'_dt_header_transparent_bg_color','#000000'),(25385,3639,'_dt_header_transparent_bg_opacity','50'),(25386,3639,'_dt_header_disabled_background','normal'),(25387,3639,'_dt_header_disabled_transparent_bg_color_scheme','light'),(25388,3639,'_dt_header_disabled_transparent_top_bar_bg_color','#ffffff'),(25389,3639,'_dt_header_disabled_transparent_top_bar_bg_opacity','25'),(25390,3639,'_dt_header_disabled_transparent_bg_color','#000000'),(25391,3639,'_dt_header_disabled_transparent_bg_opacity','50'),(25392,3639,'_dt_page_overrides_top_margin','1%'),(25393,3639,'_dt_page_overrides_right_margin',''),(25394,3639,'_dt_page_overrides_bottom_margin',''),(25395,3639,'_dt_page_overrides_left_margin',''),(25396,3639,'_dt_mobile_page_padding_top',''),(25397,3639,'_dt_mobile_page_padding_right',''),(25398,3639,'_dt_mobile_page_padding_bottom',''),(25399,3639,'_dt_mobile_page_padding_left',''),(25400,3639,'_dt_fancy_header_layout_heading',''),(25401,3639,'_dt_fancy_header_title_aligment','all_left'),(25402,3639,'_dt_fancy_header_height','140'),(25403,3639,'_dt_fancy_header_padding-top','0px'),(25404,3639,'_dt_fancy_header_padding-bottom','0px'),(25405,3639,'_dt_fancy_header_breadcrumbs_heading',''),(25406,3639,'_dt_fancy_header_breadcrumbs','disabled'),(25407,3639,'_dt_fancy_header_breadcrumbs_text_color','#ffffff'),(25408,3639,'_dt_fancy_header_breadcrumbs_bg_color','disabled'),(25409,3639,'_dt_fancy_header_title_heading',''),(25410,3639,'_dt_fancy_header_title_mode','custom'),(25411,3639,'_dt_fancy_header_title',''),(25412,3639,'_dt_fancy_header_title_font_size','32'),(25413,3639,'_dt_fancy_header_title_line_height','36'),(25414,3639,'_dt_fancy_header_text_transform','none'),(25415,3639,'_dt_fancy_header_title_color_mode','color'),(25416,3639,'_dt_fancy_header_title_color','#079547'),(25417,3639,'_dt_fancy_header_subtitle_heading',''),(25418,3639,'_dt_fancy_header_subtitle',''),(25419,3639,'_dt_fancy_header_subtitle_font_size','24'),(25420,3639,'_dt_fancy_header_subtitle_line_height','26'),(25421,3639,'_dt_fancy_header_subtitle_text_transform','none'),(25422,3639,'_dt_fancy_header_subtitle_color_mode','color'),(25423,3639,'_dt_fancy_header_subtitle_color','#792c8a'),(25424,3639,'_dt_fancy_header_bg_heading',''),(25425,3639,'_dt_fancy_header_bg_color','#ffffff'),(25426,3639,'_dt_fancy_header_bg_image_origin','custom'),(25427,3639,'_dt_fancy_header_bg_image','a:1:{i:0;i:3809;}'),(25428,3639,'_dt_fancy_header_bg_repeat','no-repeat'),(25429,3639,'_dt_fancy_header_bg_position_x','center'),(25430,3639,'_dt_fancy_header_bg_position_y','center'),(25431,3639,'_dt_fancy_header_bg_fullscreen','0'),(25432,3639,'_dt_fancy_header_bg_overlay','0'),(25433,3639,'_dt_fancy_header_overlay_color','#000'),(25434,3639,'_dt_fancy_header_bg_overlay_opacity','50'),(25435,3639,'_dt_fancy_header_scroll_effect','default'),(25436,3639,'_dt_fancy_header_bg_parallax','0.5'),(25437,3639,'_dt_fancy_header_responsiveness_heading',''),(25438,3639,'_dt_fancy_header_responsiveness','enabled'),(25439,3639,'_dt_fancy_header_responsiveness_switch','778px'),(25440,3639,'_dt_fancy_header_responsive_height','140'),(25441,3639,'_dt_fancy_header_responsive_font_size','30'),(25442,3639,'_dt_fancy_header_responsive_title_line_height','38'),(25443,3639,'_dt_fancy_header_responsive_subtitle_font_size','20'),(25444,3639,'_dt_fancy_header_responsive_subtitle_line_height','28'),(25445,3639,'_dt_fancy_header_responsive_breadcrumbs','disabled'),(25446,3639,'the7_fancy_title_css','#main {\n  padding-top: 1%;\n}\n.fancy-header {\n  background-image: url(\'https://farmchemie.yasithawd.com/wp-content/uploads/2023/09/Mansol-50_300px.png\');\n  background-repeat: no-repeat;\n  background-position: center center;\n  background-size: auto auto;\n  background-color: #ffffff;\n}\n.mobile-false .fancy-header {\n  background-attachment: scroll;\n}\n.fancy-header .wf-wrap {\n  min-height: 140px;\n  padding-top: 0px;\n  padding-bottom: 0px;\n}\n.fancy-header .fancy-title {\n  font-size: 32px;\n  line-height: 36px;\n  color: #079547;\n  text-transform: none;\n}\n.fancy-header .fancy-subtitle {\n  font-size: 24px;\n  line-height: 26px;\n  color: #792c8a;\n  text-transform: none;\n}\n.fancy-header .breadcrumbs {\n  color: #ffffff;\n}\n.fancy-header-overlay {\n  background: rgba(0,0,0,0.5);\n}\n@media screen and (max-width: 778px) {\n  .fancy-header .wf-wrap {\n    min-height: 140px;\n  }\n  .fancy-header .fancy-title {\n    font-size: 30px;\n    line-height: 38px;\n  }\n  .fancy-header .fancy-subtitle {\n    font-size: 20px;\n    line-height: 28px;\n  }\n  .fancy-header.breadcrumbs-mobile-off .breadcrumbs {\n    display: none;\n  }\n  #fancy-header > .wf-wrap {\n    flex-flow: column wrap;\n    align-items: center;\n    justify-content: center;\n    padding-bottom: 0px !important;\n  }\n  .fancy-header.title-left .breadcrumbs {\n    text-align: center;\n    float: none;\n  }\n  .breadcrumbs {\n    margin-bottom: 10px;\n  }\n  .breadcrumbs.breadcrumbs-bg {\n    margin-top: 10px;\n  }\n  .fancy-header.title-right .breadcrumbs {\n    margin: 10px 0 10px 0;\n  }\n  #fancy-header .hgroup,\n  #fancy-header .breadcrumbs {\n    text-align: center;\n  }\n  .fancy-header .hgroup {\n    padding-bottom: 5px;\n  }\n  .breadcrumbs-off .hgroup {\n    padding-bottom: 5px;\n  }\n  .title-right .hgroup {\n    padding: 0 0 5px 0;\n  }\n  .title-right.breadcrumbs-off .hgroup {\n    padding-top: 5px;\n  }\n  .title-left.disabled-bg .breadcrumbs {\n    margin-bottom: 0;\n  }\n}\n'),(25447,3639,'_wqoecf_disable_form','no'),(25448,3639,'_edit_lock','1695178873:1'),(25449,3639,'_edit_last','1'),(25450,3640,'total_sales','0'),(25451,3640,'_tax_status','taxable'),(25452,3640,'_tax_class',''),(25453,3640,'_manage_stock','no'),(25454,3640,'_backorders','no'),(25455,3640,'_sold_individually','no'),(25456,3640,'_virtual','no'),(25457,3640,'_downloadable','no'),(25458,3640,'_download_limit','-1'),(25459,3640,'_download_expiry','-1'),(25460,3640,'_thumbnail_id','3783'),(25461,3640,'_stock',NULL),(25462,3640,'_stock_status','instock'),(25463,3640,'_wc_average_rating','0'),(25464,3640,'_wc_review_count','0'),(25465,3640,'_product_attributes','a:1:{s:15:\"pa_product-type\";a:6:{s:4:\"name\";s:15:\"pa_product-type\";s:5:\"value\";s:0:\"\";s:8:\"position\";i:0;s:10:\"is_visible\";i:0;s:12:\"is_variation\";i:0;s:11:\"is_taxonomy\";i:1;}}'),(25466,3640,'_product_version','8.0.2'),(25467,3640,'_dt_sidebar_position','disabled'),(25468,3640,'_dt_sidebar_widgetarea_id','sidebar_1'),(25469,3640,'_dt_sidebar_hide_on_mobile','0'),(25470,3640,'_dt_footer_show','1'),(25471,3640,'_dt_footer_widgetarea_id','sidebar_2'),(25472,3640,'_dt_footer_hide_on_mobile','0'),(25473,3640,'_dt_header_title','fancy'),(25474,3640,'_dt_header_background','normal'),(25475,3640,'_dt_header_background_below_slideshow','disabled'),(25476,3640,'_dt_header_transparent_bg_color_scheme','light'),(25477,3640,'_dt_header_transparent_top_bar_bg_color','#ffffff'),(25478,3640,'_dt_header_transparent_top_bar_bg_opacity','25'),(25479,3640,'_dt_header_transparent_bg_color','#000000'),(25480,3640,'_dt_header_transparent_bg_opacity','50'),(25481,3640,'_dt_header_disabled_background','normal'),(25482,3640,'_dt_header_disabled_transparent_bg_color_scheme','light'),(25483,3640,'_dt_header_disabled_transparent_top_bar_bg_color','#ffffff'),(25484,3640,'_dt_header_disabled_transparent_top_bar_bg_opacity','25'),(25485,3640,'_dt_header_disabled_transparent_bg_color','#000000'),(25486,3640,'_dt_header_disabled_transparent_bg_opacity','50'),(25487,3640,'_dt_page_overrides_top_margin','1%'),(25488,3640,'_dt_page_overrides_right_margin',''),(25489,3640,'_dt_page_overrides_bottom_margin',''),(25490,3640,'_dt_page_overrides_left_margin',''),(25491,3640,'_dt_mobile_page_padding_top',''),(25492,3640,'_dt_mobile_page_padding_right',''),(25493,3640,'_dt_mobile_page_padding_bottom',''),(25494,3640,'_dt_mobile_page_padding_left',''),(25495,3640,'_dt_fancy_header_layout_heading',''),(25496,3640,'_dt_fancy_header_title_aligment','all_left'),(25497,3640,'_dt_fancy_header_height','140'),(25498,3640,'_dt_fancy_header_padding-top','0px'),(25499,3640,'_dt_fancy_header_padding-bottom','0px'),(25500,3640,'_dt_fancy_header_breadcrumbs_heading',''),(25501,3640,'_dt_fancy_header_breadcrumbs','disabled'),(25502,3640,'_dt_fancy_header_breadcrumbs_text_color','#ffffff'),(25503,3640,'_dt_fancy_header_breadcrumbs_bg_color','disabled'),(25504,3640,'_dt_fancy_header_title_heading',''),(25505,3640,'_dt_fancy_header_title_mode','custom'),(25506,3640,'_dt_fancy_header_title',''),(25507,3640,'_dt_fancy_header_title_font_size','32'),(25508,3640,'_dt_fancy_header_title_line_height','36'),(25509,3640,'_dt_fancy_header_text_transform','none'),(25510,3640,'_dt_fancy_header_title_color_mode','color'),(25511,3640,'_dt_fancy_header_title_color','#079547'),(25512,3640,'_dt_fancy_header_subtitle_heading',''),(25513,3640,'_dt_fancy_header_subtitle',''),(25514,3640,'_dt_fancy_header_subtitle_font_size','24'),(25515,3640,'_dt_fancy_header_subtitle_line_height','26'),(25516,3640,'_dt_fancy_header_subtitle_text_transform','none'),(25517,3640,'_dt_fancy_header_subtitle_color_mode','color'),(25518,3640,'_dt_fancy_header_subtitle_color','#792c8a'),(25519,3640,'_dt_fancy_header_bg_heading',''),(25520,3640,'_dt_fancy_header_bg_color','#ffffff'),(25521,3640,'_dt_fancy_header_bg_image_origin','custom'),(25522,3640,'_dt_fancy_header_bg_image','a:1:{i:0;i:3813;}'),(25523,3640,'_dt_fancy_header_bg_repeat','no-repeat'),(25524,3640,'_dt_fancy_header_bg_position_x','center'),(25525,3640,'_dt_fancy_header_bg_position_y','center'),(25526,3640,'_dt_fancy_header_bg_fullscreen','0'),(25527,3640,'_dt_fancy_header_bg_overlay','0'),(25528,3640,'_dt_fancy_header_overlay_color','#000'),(25529,3640,'_dt_fancy_header_bg_overlay_opacity','50'),(25530,3640,'_dt_fancy_header_scroll_effect','default'),(25531,3640,'_dt_fancy_header_bg_parallax','0.5'),(25532,3640,'_dt_fancy_header_responsiveness_heading',''),(25533,3640,'_dt_fancy_header_responsiveness','enabled'),(25534,3640,'_dt_fancy_header_responsiveness_switch','778px'),(25535,3640,'_dt_fancy_header_responsive_height','140'),(25536,3640,'_dt_fancy_header_responsive_font_size','30'),(25537,3640,'_dt_fancy_header_responsive_title_line_height','38'),(25538,3640,'_dt_fancy_header_responsive_subtitle_font_size','20'),(25539,3640,'_dt_fancy_header_responsive_subtitle_line_height','28'),(25540,3640,'_dt_fancy_header_responsive_breadcrumbs','disabled'),(25541,3640,'the7_fancy_title_css','#main {\n  padding-top: 1%;\n}\n.fancy-header {\n  background-image: url(\'https://farmchemie.yasithawd.com/wp-content/uploads/2023/09/Vermxil_300px-1.png\');\n  background-repeat: no-repeat;\n  background-position: center center;\n  background-size: auto auto;\n  background-color: #ffffff;\n}\n.mobile-false .fancy-header {\n  background-attachment: scroll;\n}\n.fancy-header .wf-wrap {\n  min-height: 140px;\n  padding-top: 0px;\n  padding-bottom: 0px;\n}\n.fancy-header .fancy-title {\n  font-size: 32px;\n  line-height: 36px;\n  color: #079547;\n  text-transform: none;\n}\n.fancy-header .fancy-subtitle {\n  font-size: 24px;\n  line-height: 26px;\n  color: #792c8a;\n  text-transform: none;\n}\n.fancy-header .breadcrumbs {\n  color: #ffffff;\n}\n.fancy-header-overlay {\n  background: rgba(0,0,0,0.5);\n}\n@media screen and (max-width: 778px) {\n  .fancy-header .wf-wrap {\n    min-height: 140px;\n  }\n  .fancy-header .fancy-title {\n    font-size: 30px;\n    line-height: 38px;\n  }\n  .fancy-header .fancy-subtitle {\n    font-size: 20px;\n    line-height: 28px;\n  }\n  .fancy-header.breadcrumbs-mobile-off .breadcrumbs {\n    display: none;\n  }\n  #fancy-header > .wf-wrap {\n    flex-flow: column wrap;\n    align-items: center;\n    justify-content: center;\n    padding-bottom: 0px !important;\n  }\n  .fancy-header.title-left .breadcrumbs {\n    text-align: center;\n    float: none;\n  }\n  .breadcrumbs {\n    margin-bottom: 10px;\n  }\n  .breadcrumbs.breadcrumbs-bg {\n    margin-top: 10px;\n  }\n  .fancy-header.title-right .breadcrumbs {\n    margin: 10px 0 10px 0;\n  }\n  #fancy-header .hgroup,\n  #fancy-header .breadcrumbs {\n    text-align: center;\n  }\n  .fancy-header .hgroup {\n    padding-bottom: 5px;\n  }\n  .breadcrumbs-off .hgroup {\n    padding-bottom: 5px;\n  }\n  .title-right .hgroup {\n    padding: 0 0 5px 0;\n  }\n  .title-right.breadcrumbs-off .hgroup {\n    padding-top: 5px;\n  }\n  .title-left.disabled-bg .breadcrumbs {\n    margin-bottom: 0;\n  }\n}\n');
INSERT INTO `wplf_postmeta` VALUES (25542,3640,'_wqoecf_disable_form','no'),(25543,3640,'_edit_lock','1695487615:2'),(25544,3640,'_edit_last','2'),(25545,3642,'total_sales','0'),(25546,3642,'_tax_status','taxable'),(25547,3642,'_tax_class',''),(25548,3642,'_manage_stock','no'),(25549,3642,'_backorders','no'),(25550,3642,'_sold_individually','no'),(25551,3642,'_virtual','no'),(25552,3642,'_downloadable','no'),(25553,3642,'_download_limit','-1'),(25554,3642,'_download_expiry','-1'),(25555,3642,'_thumbnail_id','3807'),(25556,3642,'_stock',NULL),(25557,3642,'_stock_status','instock'),(25558,3642,'_wc_average_rating','0'),(25559,3642,'_wc_review_count','0'),(25560,3642,'_product_attributes','a:1:{s:15:\"pa_product-type\";a:6:{s:4:\"name\";s:15:\"pa_product-type\";s:5:\"value\";s:0:\"\";s:8:\"position\";i:0;s:10:\"is_visible\";i:0;s:12:\"is_variation\";i:0;s:11:\"is_taxonomy\";i:1;}}'),(25561,3642,'_product_version','8.0.2'),(25562,3642,'_dt_sidebar_position','disabled'),(25563,3642,'_dt_sidebar_widgetarea_id','sidebar_1'),(25564,3642,'_dt_sidebar_hide_on_mobile','0'),(25565,3642,'_dt_footer_show','1'),(25566,3642,'_dt_footer_widgetarea_id','sidebar_2'),(25567,3642,'_dt_footer_hide_on_mobile','0'),(25568,3642,'_dt_header_title','fancy'),(25569,3642,'_dt_header_background','normal'),(25570,3642,'_dt_header_background_below_slideshow','disabled'),(25571,3642,'_dt_header_transparent_bg_color_scheme','light'),(25572,3642,'_dt_header_transparent_top_bar_bg_color','#ffffff'),(25573,3642,'_dt_header_transparent_top_bar_bg_opacity','25'),(25574,3642,'_dt_header_transparent_bg_color','#000000'),(25575,3642,'_dt_header_transparent_bg_opacity','50'),(25576,3642,'_dt_header_disabled_background','normal'),(25577,3642,'_dt_header_disabled_transparent_bg_color_scheme','light'),(25578,3642,'_dt_header_disabled_transparent_top_bar_bg_color','#ffffff'),(25579,3642,'_dt_header_disabled_transparent_top_bar_bg_opacity','25'),(25580,3642,'_dt_header_disabled_transparent_bg_color','#000000'),(25581,3642,'_dt_header_disabled_transparent_bg_opacity','50'),(25582,3642,'_dt_page_overrides_top_margin','1%'),(25583,3642,'_dt_page_overrides_right_margin',''),(25584,3642,'_dt_page_overrides_bottom_margin',''),(25585,3642,'_dt_page_overrides_left_margin',''),(25586,3642,'_dt_mobile_page_padding_top',''),(25587,3642,'_dt_mobile_page_padding_right',''),(25588,3642,'_dt_mobile_page_padding_bottom',''),(25589,3642,'_dt_mobile_page_padding_left',''),(25590,3642,'_dt_fancy_header_layout_heading',''),(25591,3642,'_dt_fancy_header_title_aligment','all_left'),(25592,3642,'_dt_fancy_header_height','140'),(25593,3642,'_dt_fancy_header_padding-top','0px'),(25594,3642,'_dt_fancy_header_padding-bottom','0px'),(25595,3642,'_dt_fancy_header_breadcrumbs_heading',''),(25596,3642,'_dt_fancy_header_breadcrumbs','disabled'),(25597,3642,'_dt_fancy_header_breadcrumbs_text_color','#ffffff'),(25598,3642,'_dt_fancy_header_breadcrumbs_bg_color','disabled'),(25599,3642,'_dt_fancy_header_title_heading',''),(25600,3642,'_dt_fancy_header_title_mode','custom'),(25601,3642,'_dt_fancy_header_title',''),(25602,3642,'_dt_fancy_header_title_font_size','32'),(25603,3642,'_dt_fancy_header_title_line_height','36'),(25604,3642,'_dt_fancy_header_text_transform','none'),(25605,3642,'_dt_fancy_header_title_color_mode','color'),(25606,3642,'_dt_fancy_header_title_color','#079547'),(25607,3642,'_dt_fancy_header_subtitle_heading',''),(25608,3642,'_dt_fancy_header_subtitle',''),(25609,3642,'_dt_fancy_header_subtitle_font_size','24'),(25610,3642,'_dt_fancy_header_subtitle_line_height','26'),(25611,3642,'_dt_fancy_header_subtitle_text_transform','none'),(25612,3642,'_dt_fancy_header_subtitle_color_mode','color'),(25613,3642,'_dt_fancy_header_subtitle_color','#792c8a'),(25614,3642,'_dt_fancy_header_bg_heading',''),(25615,3642,'_dt_fancy_header_bg_color','#ffffff'),(25616,3642,'_dt_fancy_header_bg_image_origin','custom'),(25617,3642,'_dt_fancy_header_bg_image','a:1:{i:0;i:3808;}'),(25618,3642,'_dt_fancy_header_bg_repeat','no-repeat'),(25619,3642,'_dt_fancy_header_bg_position_x','center'),(25620,3642,'_dt_fancy_header_bg_position_y','center'),(25621,3642,'_dt_fancy_header_bg_fullscreen','0'),(25622,3642,'_dt_fancy_header_bg_overlay','0'),(25623,3642,'_dt_fancy_header_overlay_color','#000'),(25624,3642,'_dt_fancy_header_bg_overlay_opacity','50'),(25625,3642,'_dt_fancy_header_scroll_effect','default'),(25626,3642,'_dt_fancy_header_bg_parallax','0.5'),(25627,3642,'_dt_fancy_header_responsiveness_heading',''),(25628,3642,'_dt_fancy_header_responsiveness','enabled'),(25629,3642,'_dt_fancy_header_responsiveness_switch','778px'),(25630,3642,'_dt_fancy_header_responsive_height','140'),(25631,3642,'_dt_fancy_header_responsive_font_size','30'),(25632,3642,'_dt_fancy_header_responsive_title_line_height','38'),(25633,3642,'_dt_fancy_header_responsive_subtitle_font_size','20'),(25634,3642,'_dt_fancy_header_responsive_subtitle_line_height','28'),(25635,3642,'_dt_fancy_header_responsive_breadcrumbs','disabled'),(25636,3642,'the7_fancy_title_css','#main {\n  padding-top: 1%;\n}\n.fancy-header {\n  background-image: url(\'https://farmchemie.yasithawd.com/wp-content/uploads/2023/09/MYCOSIN_300px.png\');\n  background-repeat: no-repeat;\n  background-position: center center;\n  background-size: auto auto;\n  background-color: #ffffff;\n}\n.mobile-false .fancy-header {\n  background-attachment: scroll;\n}\n.fancy-header .wf-wrap {\n  min-height: 140px;\n  padding-top: 0px;\n  padding-bottom: 0px;\n}\n.fancy-header .fancy-title {\n  font-size: 32px;\n  line-height: 36px;\n  color: #079547;\n  text-transform: none;\n}\n.fancy-header .fancy-subtitle {\n  font-size: 24px;\n  line-height: 26px;\n  color: #792c8a;\n  text-transform: none;\n}\n.fancy-header .breadcrumbs {\n  color: #ffffff;\n}\n.fancy-header-overlay {\n  background: rgba(0,0,0,0.5);\n}\n@media screen and (max-width: 778px) {\n  .fancy-header .wf-wrap {\n    min-height: 140px;\n  }\n  .fancy-header .fancy-title {\n    font-size: 30px;\n    line-height: 38px;\n  }\n  .fancy-header .fancy-subtitle {\n    font-size: 20px;\n    line-height: 28px;\n  }\n  .fancy-header.breadcrumbs-mobile-off .breadcrumbs {\n    display: none;\n  }\n  #fancy-header > .wf-wrap {\n    flex-flow: column wrap;\n    align-items: center;\n    justify-content: center;\n    padding-bottom: 0px !important;\n  }\n  .fancy-header.title-left .breadcrumbs {\n    text-align: center;\n    float: none;\n  }\n  .breadcrumbs {\n    margin-bottom: 10px;\n  }\n  .breadcrumbs.breadcrumbs-bg {\n    margin-top: 10px;\n  }\n  .fancy-header.title-right .breadcrumbs {\n    margin: 10px 0 10px 0;\n  }\n  #fancy-header .hgroup,\n  #fancy-header .breadcrumbs {\n    text-align: center;\n  }\n  .fancy-header .hgroup {\n    padding-bottom: 5px;\n  }\n  .breadcrumbs-off .hgroup {\n    padding-bottom: 5px;\n  }\n  .title-right .hgroup {\n    padding: 0 0 5px 0;\n  }\n  .title-right.breadcrumbs-off .hgroup {\n    padding-top: 5px;\n  }\n  .title-left.disabled-bg .breadcrumbs {\n    margin-bottom: 0;\n  }\n}\n'),(25637,3642,'_wqoecf_disable_form','no'),(25638,3642,'_edit_lock','1695128620:1'),(25639,3642,'_edit_last','1'),(25640,3643,'total_sales','0'),(25641,3643,'_tax_status','taxable'),(25642,3643,'_tax_class',''),(25643,3643,'_manage_stock','no'),(25644,3643,'_backorders','no'),(25645,3643,'_sold_individually','no'),(25646,3643,'_virtual','no'),(25647,3643,'_downloadable','no'),(25648,3643,'_download_limit','-1'),(25649,3643,'_download_expiry','-1'),(25737,3644,'_tax_class',''),(25651,3643,'_stock',NULL),(25652,3643,'_stock_status','instock'),(25653,3643,'_wc_average_rating','0'),(25654,3643,'_wc_review_count','0'),(25655,3643,'_product_attributes','a:1:{s:15:\"pa_product-type\";a:6:{s:4:\"name\";s:15:\"pa_product-type\";s:5:\"value\";s:0:\"\";s:8:\"position\";i:0;s:10:\"is_visible\";i:0;s:12:\"is_variation\";i:0;s:11:\"is_taxonomy\";i:1;}}'),(25656,3643,'_product_version','8.0.2'),(25657,3643,'_dt_sidebar_position','disabled'),(25658,3643,'_dt_sidebar_widgetarea_id','sidebar_1'),(25659,3643,'_dt_sidebar_hide_on_mobile','0'),(25660,3643,'_dt_footer_show','1'),(25661,3643,'_dt_footer_widgetarea_id','sidebar_2'),(25662,3643,'_dt_footer_hide_on_mobile','0'),(25663,3643,'_dt_header_title','fancy'),(25664,3643,'_dt_header_background','normal'),(25665,3643,'_dt_header_background_below_slideshow','disabled'),(25666,3643,'_dt_header_transparent_bg_color_scheme','light'),(25667,3643,'_dt_header_transparent_top_bar_bg_color','#ffffff'),(25668,3643,'_dt_header_transparent_top_bar_bg_opacity','25'),(25669,3643,'_dt_header_transparent_bg_color','#000000'),(25670,3643,'_dt_header_transparent_bg_opacity','50'),(25671,3643,'_dt_header_disabled_background','normal'),(25672,3643,'_dt_header_disabled_transparent_bg_color_scheme','light'),(25673,3643,'_dt_header_disabled_transparent_top_bar_bg_color','#ffffff'),(25674,3643,'_dt_header_disabled_transparent_top_bar_bg_opacity','25'),(25675,3643,'_dt_header_disabled_transparent_bg_color','#000000'),(25676,3643,'_dt_header_disabled_transparent_bg_opacity','50'),(25677,3643,'_dt_page_overrides_top_margin','1%'),(25678,3643,'_dt_page_overrides_right_margin',''),(25679,3643,'_dt_page_overrides_bottom_margin',''),(25680,3643,'_dt_page_overrides_left_margin',''),(25681,3643,'_dt_mobile_page_padding_top',''),(25682,3643,'_dt_mobile_page_padding_right',''),(25683,3643,'_dt_mobile_page_padding_bottom',''),(25684,3643,'_dt_mobile_page_padding_left',''),(25685,3643,'_dt_fancy_header_layout_heading',''),(25686,3643,'_dt_fancy_header_title_aligment','all_left'),(25687,3643,'_dt_fancy_header_height','140'),(25688,3643,'_dt_fancy_header_padding-top','0px'),(25689,3643,'_dt_fancy_header_padding-bottom','0px'),(25690,3643,'_dt_fancy_header_breadcrumbs_heading',''),(25691,3643,'_dt_fancy_header_breadcrumbs','disabled'),(25692,3643,'_dt_fancy_header_breadcrumbs_text_color','#ffffff'),(25693,3643,'_dt_fancy_header_breadcrumbs_bg_color','disabled'),(25694,3643,'_dt_fancy_header_title_heading',''),(25695,3643,'_dt_fancy_header_title_mode','custom'),(25696,3643,'_dt_fancy_header_title',''),(25697,3643,'_dt_fancy_header_title_font_size','32'),(25698,3643,'_dt_fancy_header_title_line_height','36'),(25699,3643,'_dt_fancy_header_text_transform','none'),(25700,3643,'_dt_fancy_header_title_color_mode','color'),(25701,3643,'_dt_fancy_header_title_color','#079547'),(25702,3643,'_dt_fancy_header_subtitle_heading',''),(25703,3643,'_dt_fancy_header_subtitle',''),(25704,3643,'_dt_fancy_header_subtitle_font_size','24'),(25705,3643,'_dt_fancy_header_subtitle_line_height','26'),(25706,3643,'_dt_fancy_header_subtitle_text_transform','none'),(25707,3643,'_dt_fancy_header_subtitle_color_mode','color'),(25708,3643,'_dt_fancy_header_subtitle_color','#792c8a'),(25709,3643,'_dt_fancy_header_bg_heading',''),(25710,3643,'_dt_fancy_header_bg_color','#ffffff'),(25711,3643,'_dt_fancy_header_bg_image_origin','custom'),(25712,3643,'_dt_fancy_header_bg_image','a:1:{i:0;i:3802;}'),(25713,3643,'_dt_fancy_header_bg_repeat','no-repeat'),(25714,3643,'_dt_fancy_header_bg_position_x','center'),(25715,3643,'_dt_fancy_header_bg_position_y','center'),(25716,3643,'_dt_fancy_header_bg_fullscreen','0'),(25717,3643,'_dt_fancy_header_bg_overlay','0'),(25718,3643,'_dt_fancy_header_overlay_color','#000'),(25719,3643,'_dt_fancy_header_bg_overlay_opacity','50'),(25720,3643,'_dt_fancy_header_scroll_effect','default'),(25721,3643,'_dt_fancy_header_bg_parallax','0.5'),(25722,3643,'_dt_fancy_header_responsiveness_heading',''),(25723,3643,'_dt_fancy_header_responsiveness','enabled'),(25724,3643,'_dt_fancy_header_responsiveness_switch','778px'),(25725,3643,'_dt_fancy_header_responsive_height','140'),(25726,3643,'_dt_fancy_header_responsive_font_size','30'),(25727,3643,'_dt_fancy_header_responsive_title_line_height','38'),(25728,3643,'_dt_fancy_header_responsive_subtitle_font_size','20'),(25729,3643,'_dt_fancy_header_responsive_subtitle_line_height','28'),(25730,3643,'_dt_fancy_header_responsive_breadcrumbs','disabled'),(25731,3643,'the7_fancy_title_css','#main {\n  padding-top: 1%;\n}\n.fancy-header {\n  background-image: url(\'https://farmchemie.yasithawd.com/wp-content/uploads/2023/09/PHARMASIN-100_300px.png\');\n  background-repeat: no-repeat;\n  background-position: center center;\n  background-size: auto auto;\n  background-color: #ffffff;\n}\n.mobile-false .fancy-header {\n  background-attachment: scroll;\n}\n.fancy-header .wf-wrap {\n  min-height: 140px;\n  padding-top: 0px;\n  padding-bottom: 0px;\n}\n.fancy-header .fancy-title {\n  font-size: 32px;\n  line-height: 36px;\n  color: #079547;\n  text-transform: none;\n}\n.fancy-header .fancy-subtitle {\n  font-size: 24px;\n  line-height: 26px;\n  color: #792c8a;\n  text-transform: none;\n}\n.fancy-header .breadcrumbs {\n  color: #ffffff;\n}\n.fancy-header-overlay {\n  background: rgba(0,0,0,0.5);\n}\n@media screen and (max-width: 778px) {\n  .fancy-header .wf-wrap {\n    min-height: 140px;\n  }\n  .fancy-header .fancy-title {\n    font-size: 30px;\n    line-height: 38px;\n  }\n  .fancy-header .fancy-subtitle {\n    font-size: 20px;\n    line-height: 28px;\n  }\n  .fancy-header.breadcrumbs-mobile-off .breadcrumbs {\n    display: none;\n  }\n  #fancy-header > .wf-wrap {\n    flex-flow: column wrap;\n    align-items: center;\n    justify-content: center;\n    padding-bottom: 0px !important;\n  }\n  .fancy-header.title-left .breadcrumbs {\n    text-align: center;\n    float: none;\n  }\n  .breadcrumbs {\n    margin-bottom: 10px;\n  }\n  .breadcrumbs.breadcrumbs-bg {\n    margin-top: 10px;\n  }\n  .fancy-header.title-right .breadcrumbs {\n    margin: 10px 0 10px 0;\n  }\n  #fancy-header .hgroup,\n  #fancy-header .breadcrumbs {\n    text-align: center;\n  }\n  .fancy-header .hgroup {\n    padding-bottom: 5px;\n  }\n  .breadcrumbs-off .hgroup {\n    padding-bottom: 5px;\n  }\n  .title-right .hgroup {\n    padding: 0 0 5px 0;\n  }\n  .title-right.breadcrumbs-off .hgroup {\n    padding-top: 5px;\n  }\n  .title-left.disabled-bg .breadcrumbs {\n    margin-bottom: 0;\n  }\n}\n'),(25732,3643,'_wqoecf_disable_form','no'),(25733,3643,'_edit_lock','1695488076:2'),(25734,3643,'_edit_last','2'),(25735,3644,'total_sales','0'),(25736,3644,'_tax_status','taxable'),(25738,3644,'_manage_stock','no'),(25739,3644,'_backorders','no'),(25740,3644,'_sold_individually','no'),(25741,3644,'_virtual','no'),(25742,3644,'_downloadable','no'),(25743,3644,'_download_limit','-1'),(25744,3644,'_download_expiry','-1'),(25745,3644,'_stock',NULL),(25746,3644,'_stock_status','instock'),(25747,3644,'_wc_average_rating','0'),(25748,3644,'_wc_review_count','0'),(25749,3644,'_product_attributes','a:1:{s:15:\"pa_product-type\";a:6:{s:4:\"name\";s:15:\"pa_product-type\";s:5:\"value\";s:0:\"\";s:8:\"position\";i:0;s:10:\"is_visible\";i:0;s:12:\"is_variation\";i:0;s:11:\"is_taxonomy\";i:1;}}'),(25750,3644,'_product_version','8.0.2'),(25751,3644,'_dt_sidebar_position','disabled'),(25752,3644,'_dt_sidebar_widgetarea_id','sidebar_1'),(25753,3644,'_dt_sidebar_hide_on_mobile','0'),(25754,3644,'_dt_footer_show','1'),(25755,3644,'_dt_footer_widgetarea_id','sidebar_2'),(25756,3644,'_dt_footer_hide_on_mobile','0'),(25757,3644,'_dt_header_title','fancy'),(25758,3644,'_dt_header_background','normal'),(25759,3644,'_dt_header_background_below_slideshow','disabled'),(25760,3644,'_dt_header_transparent_bg_color_scheme','light'),(25761,3644,'_dt_header_transparent_top_bar_bg_color','#ffffff'),(25762,3644,'_dt_header_transparent_top_bar_bg_opacity','25'),(25763,3644,'_dt_header_transparent_bg_color','#000000'),(25764,3644,'_dt_header_transparent_bg_opacity','50'),(25765,3644,'_dt_header_disabled_background','normal'),(25766,3644,'_dt_header_disabled_transparent_bg_color_scheme','light'),(25767,3644,'_dt_header_disabled_transparent_top_bar_bg_color','#ffffff'),(25768,3644,'_dt_header_disabled_transparent_top_bar_bg_opacity','25'),(25769,3644,'_dt_header_disabled_transparent_bg_color','#000000'),(25770,3644,'_dt_header_disabled_transparent_bg_opacity','50'),(25771,3644,'_dt_page_overrides_top_margin','1%'),(25772,3644,'_dt_page_overrides_right_margin',''),(25773,3644,'_dt_page_overrides_bottom_margin',''),(25774,3644,'_dt_page_overrides_left_margin',''),(25775,3644,'_dt_mobile_page_padding_top',''),(25776,3644,'_dt_mobile_page_padding_right',''),(25777,3644,'_dt_mobile_page_padding_bottom',''),(25778,3644,'_dt_mobile_page_padding_left',''),(25779,3644,'_dt_fancy_header_layout_heading',''),(25780,3644,'_dt_fancy_header_title_aligment','all_left'),(25781,3644,'_dt_fancy_header_height','140'),(25782,3644,'_dt_fancy_header_padding-top','0px'),(25783,3644,'_dt_fancy_header_padding-bottom','0px'),(25784,3644,'_dt_fancy_header_breadcrumbs_heading',''),(25785,3644,'_dt_fancy_header_breadcrumbs','disabled'),(25786,3644,'_dt_fancy_header_breadcrumbs_text_color','#ffffff'),(25787,3644,'_dt_fancy_header_breadcrumbs_bg_color','disabled'),(25788,3644,'_dt_fancy_header_title_heading',''),(25789,3644,'_dt_fancy_header_title_mode','custom'),(25790,3644,'_dt_fancy_header_title',''),(25791,3644,'_dt_fancy_header_title_font_size','32'),(25792,3644,'_dt_fancy_header_title_line_height','36'),(25793,3644,'_dt_fancy_header_text_transform','none'),(25794,3644,'_dt_fancy_header_title_color_mode','color'),(25795,3644,'_dt_fancy_header_title_color','#079547'),(25796,3644,'_dt_fancy_header_subtitle_heading',''),(25797,3644,'_dt_fancy_header_subtitle',''),(25798,3644,'_dt_fancy_header_subtitle_font_size','24'),(25799,3644,'_dt_fancy_header_subtitle_line_height','26'),(25800,3644,'_dt_fancy_header_subtitle_text_transform','none'),(25801,3644,'_dt_fancy_header_subtitle_color_mode','color'),(25802,3644,'_dt_fancy_header_subtitle_color','#792c8a'),(25803,3644,'_dt_fancy_header_bg_heading',''),(25804,3644,'_dt_fancy_header_bg_color','#ffffff'),(25805,3644,'_dt_fancy_header_bg_image_origin','custom'),(25806,3644,'_dt_fancy_header_bg_image','a:1:{i:0;i:3799;}'),(25807,3644,'_dt_fancy_header_bg_repeat','no-repeat'),(25808,3644,'_dt_fancy_header_bg_position_x','center'),(25809,3644,'_dt_fancy_header_bg_position_y','center'),(25810,3644,'_dt_fancy_header_bg_fullscreen','0'),(25811,3644,'_dt_fancy_header_bg_overlay','0'),(25812,3644,'_dt_fancy_header_overlay_color','#000'),(25813,3644,'_dt_fancy_header_bg_overlay_opacity','50'),(25814,3644,'_dt_fancy_header_scroll_effect','default'),(25815,3644,'_dt_fancy_header_bg_parallax','0.5'),(25816,3644,'_dt_fancy_header_responsiveness_heading',''),(25817,3644,'_dt_fancy_header_responsiveness','enabled'),(25818,3644,'_dt_fancy_header_responsiveness_switch','778px'),(25819,3644,'_dt_fancy_header_responsive_height','140'),(25820,3644,'_dt_fancy_header_responsive_font_size','30'),(25821,3644,'_dt_fancy_header_responsive_title_line_height','38'),(25822,3644,'_dt_fancy_header_responsive_subtitle_font_size','20'),(25823,3644,'_dt_fancy_header_responsive_subtitle_line_height','28'),(25824,3644,'_dt_fancy_header_responsive_breadcrumbs','disabled'),(25825,3644,'the7_fancy_title_css','#main {\n  padding-top: 1%;\n}\n.fancy-header {\n  background-image: url(\'https://farmchemie.yasithawd.com/wp-content/uploads/2023/09/Tilmovet-250mg_300px.png\');\n  background-repeat: no-repeat;\n  background-position: center center;\n  background-size: auto auto;\n  background-color: #ffffff;\n}\n.mobile-false .fancy-header {\n  background-attachment: scroll;\n}\n.fancy-header .wf-wrap {\n  min-height: 140px;\n  padding-top: 0px;\n  padding-bottom: 0px;\n}\n.fancy-header .fancy-title {\n  font-size: 32px;\n  line-height: 36px;\n  color: #079547;\n  text-transform: none;\n}\n.fancy-header .fancy-subtitle {\n  font-size: 24px;\n  line-height: 26px;\n  color: #792c8a;\n  text-transform: none;\n}\n.fancy-header .breadcrumbs {\n  color: #ffffff;\n}\n.fancy-header-overlay {\n  background: rgba(0,0,0,0.5);\n}\n@media screen and (max-width: 778px) {\n  .fancy-header .wf-wrap {\n    min-height: 140px;\n  }\n  .fancy-header .fancy-title {\n    font-size: 30px;\n    line-height: 38px;\n  }\n  .fancy-header .fancy-subtitle {\n    font-size: 20px;\n    line-height: 28px;\n  }\n  .fancy-header.breadcrumbs-mobile-off .breadcrumbs {\n    display: none;\n  }\n  #fancy-header > .wf-wrap {\n    flex-flow: column wrap;\n    align-items: center;\n    justify-content: center;\n    padding-bottom: 0px !important;\n  }\n  .fancy-header.title-left .breadcrumbs {\n    text-align: center;\n    float: none;\n  }\n  .breadcrumbs {\n    margin-bottom: 10px;\n  }\n  .breadcrumbs.breadcrumbs-bg {\n    margin-top: 10px;\n  }\n  .fancy-header.title-right .breadcrumbs {\n    margin: 10px 0 10px 0;\n  }\n  #fancy-header .hgroup,\n  #fancy-header .breadcrumbs {\n    text-align: center;\n  }\n  .fancy-header .hgroup {\n    padding-bottom: 5px;\n  }\n  .breadcrumbs-off .hgroup {\n    padding-bottom: 5px;\n  }\n  .title-right .hgroup {\n    padding: 0 0 5px 0;\n  }\n  .title-right.breadcrumbs-off .hgroup {\n    padding-top: 5px;\n  }\n  .title-left.disabled-bg .breadcrumbs {\n    margin-bottom: 0;\n  }\n}\n'),(25826,3644,'_wqoecf_disable_form','no'),(25827,3644,'_edit_lock','1695520933:2'),(25828,3644,'_edit_last','2'),(25830,3645,'total_sales','0'),(25831,3645,'_tax_status','taxable'),(25829,3644,'_thumbnail_id','3800'),(25832,3645,'_tax_class',''),(25833,3645,'_manage_stock','no'),(25834,3645,'_backorders','no'),(25835,3645,'_sold_individually','no'),(25836,3645,'_virtual','no'),(25837,3645,'_downloadable','no'),(25838,3645,'_download_limit','-1'),(25839,3645,'_download_expiry','-1'),(25927,3646,'_tax_class',''),(25841,3645,'_stock',NULL),(25842,3645,'_stock_status','instock'),(25843,3645,'_wc_average_rating','0'),(25844,3645,'_wc_review_count','0'),(25845,3645,'_product_attributes','a:1:{s:15:\"pa_product-type\";a:6:{s:4:\"name\";s:15:\"pa_product-type\";s:5:\"value\";s:0:\"\";s:8:\"position\";i:0;s:10:\"is_visible\";i:0;s:12:\"is_variation\";i:0;s:11:\"is_taxonomy\";i:1;}}'),(25846,3645,'_product_version','8.0.2'),(25847,3645,'_dt_sidebar_position','disabled'),(25848,3645,'_dt_sidebar_widgetarea_id','sidebar_1'),(25849,3645,'_dt_sidebar_hide_on_mobile','0'),(25850,3645,'_dt_footer_show','1'),(25851,3645,'_dt_footer_widgetarea_id','sidebar_2'),(25852,3645,'_dt_footer_hide_on_mobile','0'),(25853,3645,'_dt_header_title','fancy'),(25854,3645,'_dt_header_background','normal'),(25855,3645,'_dt_header_background_below_slideshow','disabled'),(25856,3645,'_dt_header_transparent_bg_color_scheme','light'),(25857,3645,'_dt_header_transparent_top_bar_bg_color','#ffffff'),(25858,3645,'_dt_header_transparent_top_bar_bg_opacity','25'),(25859,3645,'_dt_header_transparent_bg_color','#000000'),(25860,3645,'_dt_header_transparent_bg_opacity','50'),(25861,3645,'_dt_header_disabled_background','normal'),(25862,3645,'_dt_header_disabled_transparent_bg_color_scheme','light'),(25863,3645,'_dt_header_disabled_transparent_top_bar_bg_color','#ffffff'),(25864,3645,'_dt_header_disabled_transparent_top_bar_bg_opacity','25'),(25865,3645,'_dt_header_disabled_transparent_bg_color','#000000'),(25866,3645,'_dt_header_disabled_transparent_bg_opacity','50'),(25867,3645,'_dt_page_overrides_top_margin','1%'),(25868,3645,'_dt_page_overrides_right_margin',''),(25869,3645,'_dt_page_overrides_bottom_margin',''),(25870,3645,'_dt_page_overrides_left_margin',''),(25871,3645,'_dt_mobile_page_padding_top',''),(25872,3645,'_dt_mobile_page_padding_right',''),(25873,3645,'_dt_mobile_page_padding_bottom',''),(25874,3645,'_dt_mobile_page_padding_left',''),(25875,3645,'_dt_fancy_header_layout_heading',''),(25876,3645,'_dt_fancy_header_title_aligment','all_left'),(25877,3645,'_dt_fancy_header_height','140'),(25878,3645,'_dt_fancy_header_padding-top','0px'),(25879,3645,'_dt_fancy_header_padding-bottom','0px'),(25880,3645,'_dt_fancy_header_breadcrumbs_heading',''),(25881,3645,'_dt_fancy_header_breadcrumbs','disabled'),(25882,3645,'_dt_fancy_header_breadcrumbs_text_color','#ffffff'),(25883,3645,'_dt_fancy_header_breadcrumbs_bg_color','disabled'),(25884,3645,'_dt_fancy_header_title_heading',''),(25885,3645,'_dt_fancy_header_title_mode','custom'),(25886,3645,'_dt_fancy_header_title',''),(25887,3645,'_dt_fancy_header_title_font_size','32'),(25888,3645,'_dt_fancy_header_title_line_height','36'),(25889,3645,'_dt_fancy_header_text_transform','none'),(25890,3645,'_dt_fancy_header_title_color_mode','color'),(25891,3645,'_dt_fancy_header_title_color','#079547'),(25892,3645,'_dt_fancy_header_subtitle_heading',''),(25893,3645,'_dt_fancy_header_subtitle',''),(25894,3645,'_dt_fancy_header_subtitle_font_size','24'),(25895,3645,'_dt_fancy_header_subtitle_line_height','26'),(25896,3645,'_dt_fancy_header_subtitle_text_transform','none'),(25897,3645,'_dt_fancy_header_subtitle_color_mode','color'),(25898,3645,'_dt_fancy_header_subtitle_color','#792c8a'),(25899,3645,'_dt_fancy_header_bg_heading',''),(25900,3645,'_dt_fancy_header_bg_color','#ffffff'),(25901,3645,'_dt_fancy_header_bg_image_origin','custom'),(25902,3645,'_dt_fancy_header_bg_image','a:1:{i:0;i:3804;}'),(25903,3645,'_dt_fancy_header_bg_repeat','no-repeat'),(25904,3645,'_dt_fancy_header_bg_position_x','center'),(25905,3645,'_dt_fancy_header_bg_position_y','center'),(25906,3645,'_dt_fancy_header_bg_fullscreen','0'),(25907,3645,'_dt_fancy_header_bg_overlay','0'),(25908,3645,'_dt_fancy_header_overlay_color','#000'),(25909,3645,'_dt_fancy_header_bg_overlay_opacity','50'),(25910,3645,'_dt_fancy_header_scroll_effect','default'),(25911,3645,'_dt_fancy_header_bg_parallax','0.5'),(25912,3645,'_dt_fancy_header_responsiveness_heading',''),(25913,3645,'_dt_fancy_header_responsiveness','enabled'),(25914,3645,'_dt_fancy_header_responsiveness_switch','778px'),(25915,3645,'_dt_fancy_header_responsive_height','140'),(25916,3645,'_dt_fancy_header_responsive_font_size','30'),(25917,3645,'_dt_fancy_header_responsive_title_line_height','38'),(25918,3645,'_dt_fancy_header_responsive_subtitle_font_size','20'),(25919,3645,'_dt_fancy_header_responsive_subtitle_line_height','28'),(25920,3645,'_dt_fancy_header_responsive_breadcrumbs','disabled'),(25921,3645,'the7_fancy_title_css','#main {\n  padding-top: 1%;\n}\n.fancy-header {\n  background-image: url(\'https://farmchemie.yasithawd.com/wp-content/uploads/2023/09/VETMUIIN-450-rng_log.png\');\n  background-repeat: no-repeat;\n  background-position: center center;\n  background-size: auto auto;\n  background-color: #ffffff;\n}\n.mobile-false .fancy-header {\n  background-attachment: scroll;\n}\n.fancy-header .wf-wrap {\n  min-height: 140px;\n  padding-top: 0px;\n  padding-bottom: 0px;\n}\n.fancy-header .fancy-title {\n  font-size: 32px;\n  line-height: 36px;\n  color: #079547;\n  text-transform: none;\n}\n.fancy-header .fancy-subtitle {\n  font-size: 24px;\n  line-height: 26px;\n  color: #792c8a;\n  text-transform: none;\n}\n.fancy-header .breadcrumbs {\n  color: #ffffff;\n}\n.fancy-header-overlay {\n  background: rgba(0,0,0,0.5);\n}\n@media screen and (max-width: 778px) {\n  .fancy-header .wf-wrap {\n    min-height: 140px;\n  }\n  .fancy-header .fancy-title {\n    font-size: 30px;\n    line-height: 38px;\n  }\n  .fancy-header .fancy-subtitle {\n    font-size: 20px;\n    line-height: 28px;\n  }\n  .fancy-header.breadcrumbs-mobile-off .breadcrumbs {\n    display: none;\n  }\n  #fancy-header > .wf-wrap {\n    flex-flow: column wrap;\n    align-items: center;\n    justify-content: center;\n    padding-bottom: 0px !important;\n  }\n  .fancy-header.title-left .breadcrumbs {\n    text-align: center;\n    float: none;\n  }\n  .breadcrumbs {\n    margin-bottom: 10px;\n  }\n  .breadcrumbs.breadcrumbs-bg {\n    margin-top: 10px;\n  }\n  .fancy-header.title-right .breadcrumbs {\n    margin: 10px 0 10px 0;\n  }\n  #fancy-header .hgroup,\n  #fancy-header .breadcrumbs {\n    text-align: center;\n  }\n  .fancy-header .hgroup {\n    padding-bottom: 5px;\n  }\n  .breadcrumbs-off .hgroup {\n    padding-bottom: 5px;\n  }\n  .title-right .hgroup {\n    padding: 0 0 5px 0;\n  }\n  .title-right.breadcrumbs-off .hgroup {\n    padding-top: 5px;\n  }\n  .title-left.disabled-bg .breadcrumbs {\n    margin-bottom: 0;\n  }\n}\n'),(25922,3645,'_wqoecf_disable_form','no'),(25923,3645,'_edit_lock','1695488964:2'),(25924,3645,'_edit_last','2'),(25925,3646,'total_sales','0'),(25926,3646,'_tax_status','taxable'),(25928,3646,'_manage_stock','no'),(25929,3646,'_backorders','no'),(25930,3646,'_sold_individually','no'),(25931,3646,'_virtual','no'),(25932,3646,'_downloadable','no'),(25933,3646,'_download_limit','-1'),(25934,3646,'_download_expiry','-1'),(25935,3646,'_stock',NULL),(25936,3646,'_stock_status','instock'),(25937,3646,'_wc_average_rating','0'),(25938,3646,'_wc_review_count','0'),(25939,3646,'_product_attributes','a:1:{s:15:\"pa_product-type\";a:6:{s:4:\"name\";s:15:\"pa_product-type\";s:5:\"value\";s:0:\"\";s:8:\"position\";i:0;s:10:\"is_visible\";i:0;s:12:\"is_variation\";i:0;s:11:\"is_taxonomy\";i:1;}}'),(25940,3646,'_product_version','8.0.2'),(25941,3646,'_dt_sidebar_position','disabled'),(25942,3646,'_dt_sidebar_widgetarea_id','sidebar_1'),(25943,3646,'_dt_sidebar_hide_on_mobile','0'),(25944,3646,'_dt_footer_show','1'),(25945,3646,'_dt_footer_widgetarea_id','sidebar_2'),(25946,3646,'_dt_footer_hide_on_mobile','0'),(25947,3646,'_dt_header_title','fancy'),(25948,3646,'_dt_header_background','normal'),(25949,3646,'_dt_header_background_below_slideshow','disabled'),(25950,3646,'_dt_header_transparent_bg_color_scheme','light'),(25951,3646,'_dt_header_transparent_top_bar_bg_color','#ffffff'),(25952,3646,'_dt_header_transparent_top_bar_bg_opacity','25'),(25953,3646,'_dt_header_transparent_bg_color','#000000'),(25954,3646,'_dt_header_transparent_bg_opacity','50'),(25955,3646,'_dt_header_disabled_background','normal'),(25956,3646,'_dt_header_disabled_transparent_bg_color_scheme','light'),(25957,3646,'_dt_header_disabled_transparent_top_bar_bg_color','#ffffff'),(25958,3646,'_dt_header_disabled_transparent_top_bar_bg_opacity','25'),(25959,3646,'_dt_header_disabled_transparent_bg_color','#000000'),(25960,3646,'_dt_header_disabled_transparent_bg_opacity','50'),(25961,3646,'_dt_page_overrides_top_margin','1%'),(25962,3646,'_dt_page_overrides_right_margin',''),(25963,3646,'_dt_page_overrides_bottom_margin',''),(25964,3646,'_dt_page_overrides_left_margin',''),(25965,3646,'_dt_mobile_page_padding_top',''),(25966,3646,'_dt_mobile_page_padding_right',''),(25967,3646,'_dt_mobile_page_padding_bottom',''),(25968,3646,'_dt_mobile_page_padding_left',''),(25969,3646,'_dt_fancy_header_layout_heading',''),(25970,3646,'_dt_fancy_header_title_aligment','all_left'),(25971,3646,'_dt_fancy_header_height','140'),(25972,3646,'_dt_fancy_header_padding-top','0px'),(25973,3646,'_dt_fancy_header_padding-bottom','0px'),(25974,3646,'_dt_fancy_header_breadcrumbs_heading',''),(25975,3646,'_dt_fancy_header_breadcrumbs','disabled'),(25976,3646,'_dt_fancy_header_breadcrumbs_text_color','#ffffff'),(25977,3646,'_dt_fancy_header_breadcrumbs_bg_color','disabled'),(25978,3646,'_dt_fancy_header_title_heading',''),(25979,3646,'_dt_fancy_header_title_mode','custom'),(25980,3646,'_dt_fancy_header_title',''),(25981,3646,'_dt_fancy_header_title_font_size','32'),(25982,3646,'_dt_fancy_header_title_line_height','36'),(25983,3646,'_dt_fancy_header_text_transform','none'),(25984,3646,'_dt_fancy_header_title_color_mode','color'),(25985,3646,'_dt_fancy_header_title_color','#079547'),(25986,3646,'_dt_fancy_header_subtitle_heading',''),(25987,3646,'_dt_fancy_header_subtitle',''),(25988,3646,'_dt_fancy_header_subtitle_font_size','24'),(25989,3646,'_dt_fancy_header_subtitle_line_height','26'),(25990,3646,'_dt_fancy_header_subtitle_text_transform','none'),(25991,3646,'_dt_fancy_header_subtitle_color_mode','color'),(25992,3646,'_dt_fancy_header_subtitle_color','#792c8a'),(25993,3646,'_dt_fancy_header_bg_heading',''),(25994,3646,'_dt_fancy_header_bg_color','#ffffff'),(25995,3646,'_dt_fancy_header_bg_image_origin','custom'),(25996,3646,'_dt_fancy_header_bg_image','a:1:{i:0;i:3781;}'),(25997,3646,'_dt_fancy_header_bg_repeat','no-repeat'),(25998,3646,'_dt_fancy_header_bg_position_x','center'),(25999,3646,'_dt_fancy_header_bg_position_y','center'),(26000,3646,'_dt_fancy_header_bg_fullscreen','0'),(26001,3646,'_dt_fancy_header_bg_overlay','0'),(26002,3646,'_dt_fancy_header_overlay_color','#000'),(26003,3646,'_dt_fancy_header_bg_overlay_opacity','50'),(26004,3646,'_dt_fancy_header_scroll_effect','default'),(26005,3646,'_dt_fancy_header_bg_parallax','0.5'),(26006,3646,'_dt_fancy_header_responsiveness_heading',''),(26007,3646,'_dt_fancy_header_responsiveness','enabled'),(26008,3646,'_dt_fancy_header_responsiveness_switch','778px'),(26009,3646,'_dt_fancy_header_responsive_height','140'),(26010,3646,'_dt_fancy_header_responsive_font_size','30'),(26011,3646,'_dt_fancy_header_responsive_title_line_height','38'),(26012,3646,'_dt_fancy_header_responsive_subtitle_font_size','20'),(26013,3646,'_dt_fancy_header_responsive_subtitle_line_height','28'),(26014,3646,'_dt_fancy_header_responsive_breadcrumbs','disabled'),(26015,3646,'the7_fancy_title_css','#main {\n  padding-top: 1%;\n}\n.fancy-header {\n  background-image: url(\'https://farmchemie.yasithawd.com/wp-content/uploads/2023/09/CHICKTONIC_300px.png\');\n  background-repeat: no-repeat;\n  background-position: center center;\n  background-size: auto auto;\n  background-color: #ffffff;\n}\n.mobile-false .fancy-header {\n  background-attachment: scroll;\n}\n.fancy-header .wf-wrap {\n  min-height: 140px;\n  padding-top: 0px;\n  padding-bottom: 0px;\n}\n.fancy-header .fancy-title {\n  font-size: 32px;\n  line-height: 36px;\n  color: #079547;\n  text-transform: none;\n}\n.fancy-header .fancy-subtitle {\n  font-size: 24px;\n  line-height: 26px;\n  color: #792c8a;\n  text-transform: none;\n}\n.fancy-header .breadcrumbs {\n  color: #ffffff;\n}\n.fancy-header-overlay {\n  background: rgba(0,0,0,0.5);\n}\n@media screen and (max-width: 778px) {\n  .fancy-header .wf-wrap {\n    min-height: 140px;\n  }\n  .fancy-header .fancy-title {\n    font-size: 30px;\n    line-height: 38px;\n  }\n  .fancy-header .fancy-subtitle {\n    font-size: 20px;\n    line-height: 28px;\n  }\n  .fancy-header.breadcrumbs-mobile-off .breadcrumbs {\n    display: none;\n  }\n  #fancy-header > .wf-wrap {\n    flex-flow: column wrap;\n    align-items: center;\n    justify-content: center;\n    padding-bottom: 0px !important;\n  }\n  .fancy-header.title-left .breadcrumbs {\n    text-align: center;\n    float: none;\n  }\n  .breadcrumbs {\n    margin-bottom: 10px;\n  }\n  .breadcrumbs.breadcrumbs-bg {\n    margin-top: 10px;\n  }\n  .fancy-header.title-right .breadcrumbs {\n    margin: 10px 0 10px 0;\n  }\n  #fancy-header .hgroup,\n  #fancy-header .breadcrumbs {\n    text-align: center;\n  }\n  .fancy-header .hgroup {\n    padding-bottom: 5px;\n  }\n  .breadcrumbs-off .hgroup {\n    padding-bottom: 5px;\n  }\n  .title-right .hgroup {\n    padding: 0 0 5px 0;\n  }\n  .title-right.breadcrumbs-off .hgroup {\n    padding-top: 5px;\n  }\n  .title-left.disabled-bg .breadcrumbs {\n    margin-bottom: 0;\n  }\n}\n'),(26016,3646,'_wqoecf_disable_form','no'),(26017,3646,'_edit_lock','1695127634:1'),(26018,3646,'_edit_last','1'),(26020,3647,'total_sales','0'),(26021,3647,'_tax_status','taxable'),(26019,3646,'_thumbnail_id','3797'),(26022,3647,'_tax_class',''),(26023,3647,'_manage_stock','no'),(26024,3647,'_backorders','no'),(26025,3647,'_sold_individually','no'),(26026,3647,'_virtual','no'),(26027,3647,'_downloadable','no'),(26028,3647,'_download_limit','-1'),(26029,3647,'_download_expiry','-1'),(26117,3648,'_tax_class',''),(26031,3647,'_stock',NULL),(26032,3647,'_stock_status','instock'),(26033,3647,'_wc_average_rating','0'),(26034,3647,'_wc_review_count','0'),(26035,3647,'_product_attributes','a:1:{s:15:\"pa_product-type\";a:6:{s:4:\"name\";s:15:\"pa_product-type\";s:5:\"value\";s:0:\"\";s:8:\"position\";i:0;s:10:\"is_visible\";i:0;s:12:\"is_variation\";i:0;s:11:\"is_taxonomy\";i:1;}}'),(26036,3647,'_product_version','8.0.2'),(26037,3647,'_dt_sidebar_position','disabled'),(26038,3647,'_dt_sidebar_widgetarea_id','sidebar_1'),(26039,3647,'_dt_sidebar_hide_on_mobile','0'),(26040,3647,'_dt_footer_show','1'),(26041,3647,'_dt_footer_widgetarea_id','sidebar_2'),(26042,3647,'_dt_footer_hide_on_mobile','0'),(26043,3647,'_dt_header_title','fancy'),(26044,3647,'_dt_header_background','normal'),(26045,3647,'_dt_header_background_below_slideshow','disabled'),(26046,3647,'_dt_header_transparent_bg_color_scheme','light'),(26047,3647,'_dt_header_transparent_top_bar_bg_color','#ffffff'),(26048,3647,'_dt_header_transparent_top_bar_bg_opacity','25'),(26049,3647,'_dt_header_transparent_bg_color','#000000'),(26050,3647,'_dt_header_transparent_bg_opacity','50'),(26051,3647,'_dt_header_disabled_background','normal'),(26052,3647,'_dt_header_disabled_transparent_bg_color_scheme','light'),(26053,3647,'_dt_header_disabled_transparent_top_bar_bg_color','#ffffff'),(26054,3647,'_dt_header_disabled_transparent_top_bar_bg_opacity','25'),(26055,3647,'_dt_header_disabled_transparent_bg_color','#000000'),(26056,3647,'_dt_header_disabled_transparent_bg_opacity','50'),(26057,3647,'_dt_page_overrides_top_margin','1%'),(26058,3647,'_dt_page_overrides_right_margin',''),(26059,3647,'_dt_page_overrides_bottom_margin',''),(26060,3647,'_dt_page_overrides_left_margin',''),(26061,3647,'_dt_mobile_page_padding_top',''),(26062,3647,'_dt_mobile_page_padding_right',''),(26063,3647,'_dt_mobile_page_padding_bottom',''),(26064,3647,'_dt_mobile_page_padding_left',''),(26065,3647,'_dt_fancy_header_layout_heading',''),(26066,3647,'_dt_fancy_header_title_aligment','all_left'),(26067,3647,'_dt_fancy_header_height','140'),(26068,3647,'_dt_fancy_header_padding-top','0px'),(26069,3647,'_dt_fancy_header_padding-bottom','0px'),(26070,3647,'_dt_fancy_header_breadcrumbs_heading',''),(26071,3647,'_dt_fancy_header_breadcrumbs','disabled'),(26072,3647,'_dt_fancy_header_breadcrumbs_text_color','#ffffff'),(26073,3647,'_dt_fancy_header_breadcrumbs_bg_color','disabled'),(26074,3647,'_dt_fancy_header_title_heading',''),(26075,3647,'_dt_fancy_header_title_mode','custom'),(26076,3647,'_dt_fancy_header_title',''),(26077,3647,'_dt_fancy_header_title_font_size','32'),(26078,3647,'_dt_fancy_header_title_line_height','36'),(26079,3647,'_dt_fancy_header_text_transform','none'),(26080,3647,'_dt_fancy_header_title_color_mode','color'),(26081,3647,'_dt_fancy_header_title_color','#079547'),(26082,3647,'_dt_fancy_header_subtitle_heading',''),(26083,3647,'_dt_fancy_header_subtitle',''),(26084,3647,'_dt_fancy_header_subtitle_font_size','24'),(26085,3647,'_dt_fancy_header_subtitle_line_height','26'),(26086,3647,'_dt_fancy_header_subtitle_text_transform','none'),(26087,3647,'_dt_fancy_header_subtitle_color_mode','color'),(26088,3647,'_dt_fancy_header_subtitle_color','#792c8a'),(26089,3647,'_dt_fancy_header_bg_heading',''),(26090,3647,'_dt_fancy_header_bg_color','#ffffff'),(26091,3647,'_dt_fancy_header_bg_image_origin','custom'),(26092,3647,'_dt_fancy_header_bg_image','a:1:{i:0;i:3826;}'),(26093,3647,'_dt_fancy_header_bg_repeat','no-repeat'),(26094,3647,'_dt_fancy_header_bg_position_x','center'),(26095,3647,'_dt_fancy_header_bg_position_y','center'),(26096,3647,'_dt_fancy_header_bg_fullscreen','0'),(26097,3647,'_dt_fancy_header_bg_overlay','0'),(26098,3647,'_dt_fancy_header_overlay_color','#000'),(26099,3647,'_dt_fancy_header_bg_overlay_opacity','50'),(26100,3647,'_dt_fancy_header_scroll_effect','default'),(26101,3647,'_dt_fancy_header_bg_parallax','0.5'),(26102,3647,'_dt_fancy_header_responsiveness_heading',''),(26103,3647,'_dt_fancy_header_responsiveness','enabled'),(26104,3647,'_dt_fancy_header_responsiveness_switch','778px'),(26105,3647,'_dt_fancy_header_responsive_height','140'),(26106,3647,'_dt_fancy_header_responsive_font_size','30'),(26107,3647,'_dt_fancy_header_responsive_title_line_height','38'),(26108,3647,'_dt_fancy_header_responsive_subtitle_font_size','20'),(26109,3647,'_dt_fancy_header_responsive_subtitle_line_height','28'),(26110,3647,'_dt_fancy_header_responsive_breadcrumbs','disabled'),(26111,3647,'the7_fancy_title_css','#main {\n  padding-top: 1%;\n}\n.fancy-header {\n  background-image: url(\'https://farmchemie.yasithawd.com/wp-content/uploads/2023/09/Com.B_300px.png\');\n  background-repeat: no-repeat;\n  background-position: center center;\n  background-size: auto auto;\n  background-color: #ffffff;\n}\n.mobile-false .fancy-header {\n  background-attachment: scroll;\n}\n.fancy-header .wf-wrap {\n  min-height: 140px;\n  padding-top: 0px;\n  padding-bottom: 0px;\n}\n.fancy-header .fancy-title {\n  font-size: 32px;\n  line-height: 36px;\n  color: #079547;\n  text-transform: none;\n}\n.fancy-header .fancy-subtitle {\n  font-size: 24px;\n  line-height: 26px;\n  color: #792c8a;\n  text-transform: none;\n}\n.fancy-header .breadcrumbs {\n  color: #ffffff;\n}\n.fancy-header-overlay {\n  background: rgba(0,0,0,0.5);\n}\n@media screen and (max-width: 778px) {\n  .fancy-header .wf-wrap {\n    min-height: 140px;\n  }\n  .fancy-header .fancy-title {\n    font-size: 30px;\n    line-height: 38px;\n  }\n  .fancy-header .fancy-subtitle {\n    font-size: 20px;\n    line-height: 28px;\n  }\n  .fancy-header.breadcrumbs-mobile-off .breadcrumbs {\n    display: none;\n  }\n  #fancy-header > .wf-wrap {\n    flex-flow: column wrap;\n    align-items: center;\n    justify-content: center;\n    padding-bottom: 0px !important;\n  }\n  .fancy-header.title-left .breadcrumbs {\n    text-align: center;\n    float: none;\n  }\n  .breadcrumbs {\n    margin-bottom: 10px;\n  }\n  .breadcrumbs.breadcrumbs-bg {\n    margin-top: 10px;\n  }\n  .fancy-header.title-right .breadcrumbs {\n    margin: 10px 0 10px 0;\n  }\n  #fancy-header .hgroup,\n  #fancy-header .breadcrumbs {\n    text-align: center;\n  }\n  .fancy-header .hgroup {\n    padding-bottom: 5px;\n  }\n  .breadcrumbs-off .hgroup {\n    padding-bottom: 5px;\n  }\n  .title-right .hgroup {\n    padding: 0 0 5px 0;\n  }\n  .title-right.breadcrumbs-off .hgroup {\n    padding-top: 5px;\n  }\n  .title-left.disabled-bg .breadcrumbs {\n    margin-bottom: 0;\n  }\n}\n'),(26112,3647,'_wqoecf_disable_form','no'),(26113,3647,'_edit_lock','1695458165:1'),(26114,3647,'_edit_last','1'),(26115,3648,'total_sales','0'),(26116,3648,'_tax_status','taxable'),(26118,3648,'_manage_stock','no'),(26119,3648,'_backorders','no'),(26120,3648,'_sold_individually','no'),(26121,3648,'_virtual','no'),(26122,3648,'_downloadable','no'),(26123,3648,'_download_limit','-1'),(26124,3648,'_download_expiry','-1'),(26125,3648,'_stock',NULL),(26126,3648,'_stock_status','instock'),(26127,3648,'_wc_average_rating','0'),(26128,3648,'_wc_review_count','0'),(26129,3648,'_product_attributes','a:1:{s:15:\"pa_product-type\";a:6:{s:4:\"name\";s:15:\"pa_product-type\";s:5:\"value\";s:0:\"\";s:8:\"position\";i:0;s:10:\"is_visible\";i:0;s:12:\"is_variation\";i:0;s:11:\"is_taxonomy\";i:1;}}'),(26130,3648,'_product_version','8.0.2'),(26131,3648,'_dt_sidebar_position','disabled'),(26132,3648,'_dt_sidebar_widgetarea_id','sidebar_1'),(26133,3648,'_dt_sidebar_hide_on_mobile','0'),(26134,3648,'_dt_footer_show','1'),(26135,3648,'_dt_footer_widgetarea_id','sidebar_2'),(26136,3648,'_dt_footer_hide_on_mobile','0'),(26137,3648,'_dt_header_title','fancy'),(26138,3648,'_dt_header_background','normal'),(26139,3648,'_dt_header_background_below_slideshow','disabled'),(26140,3648,'_dt_header_transparent_bg_color_scheme','light'),(26141,3648,'_dt_header_transparent_top_bar_bg_color','#ffffff'),(26142,3648,'_dt_header_transparent_top_bar_bg_opacity','25'),(26143,3648,'_dt_header_transparent_bg_color','#000000'),(26144,3648,'_dt_header_transparent_bg_opacity','50'),(26145,3648,'_dt_header_disabled_background','normal'),(26146,3648,'_dt_header_disabled_transparent_bg_color_scheme','light'),(26147,3648,'_dt_header_disabled_transparent_top_bar_bg_color','#ffffff'),(26148,3648,'_dt_header_disabled_transparent_top_bar_bg_opacity','25'),(26149,3648,'_dt_header_disabled_transparent_bg_color','#000000'),(26150,3648,'_dt_header_disabled_transparent_bg_opacity','50'),(26151,3648,'_dt_page_overrides_top_margin','1%'),(26152,3648,'_dt_page_overrides_right_margin',''),(26153,3648,'_dt_page_overrides_bottom_margin',''),(26154,3648,'_dt_page_overrides_left_margin',''),(26155,3648,'_dt_mobile_page_padding_top',''),(26156,3648,'_dt_mobile_page_padding_right',''),(26157,3648,'_dt_mobile_page_padding_bottom',''),(26158,3648,'_dt_mobile_page_padding_left',''),(26159,3648,'_dt_fancy_header_layout_heading',''),(26160,3648,'_dt_fancy_header_title_aligment','all_left'),(26161,3648,'_dt_fancy_header_height','140'),(26162,3648,'_dt_fancy_header_padding-top','0px'),(26163,3648,'_dt_fancy_header_padding-bottom','0px'),(26164,3648,'_dt_fancy_header_breadcrumbs_heading',''),(26165,3648,'_dt_fancy_header_breadcrumbs','disabled'),(26166,3648,'_dt_fancy_header_breadcrumbs_text_color','#ffffff'),(26167,3648,'_dt_fancy_header_breadcrumbs_bg_color','disabled'),(26168,3648,'_dt_fancy_header_title_heading',''),(26169,3648,'_dt_fancy_header_title_mode','custom'),(26170,3648,'_dt_fancy_header_title',''),(26171,3648,'_dt_fancy_header_title_font_size','32'),(26172,3648,'_dt_fancy_header_title_line_height','36'),(26173,3648,'_dt_fancy_header_text_transform','none'),(26174,3648,'_dt_fancy_header_title_color_mode','color'),(26175,3648,'_dt_fancy_header_title_color','#079547'),(26176,3648,'_dt_fancy_header_subtitle_heading',''),(26177,3648,'_dt_fancy_header_subtitle',''),(26178,3648,'_dt_fancy_header_subtitle_font_size','24'),(26179,3648,'_dt_fancy_header_subtitle_line_height','26'),(26180,3648,'_dt_fancy_header_subtitle_text_transform','none'),(26181,3648,'_dt_fancy_header_subtitle_color_mode','color'),(26182,3648,'_dt_fancy_header_subtitle_color','#792c8a'),(26183,3648,'_dt_fancy_header_bg_heading',''),(26184,3648,'_dt_fancy_header_bg_color','#ffffff'),(26185,3648,'_dt_fancy_header_bg_image_origin','custom'),(26186,3648,'_dt_fancy_header_bg_image','a:1:{i:0;i:3795;}'),(26187,3648,'_dt_fancy_header_bg_repeat','no-repeat'),(26188,3648,'_dt_fancy_header_bg_position_x','center'),(26189,3648,'_dt_fancy_header_bg_position_y','center'),(26190,3648,'_dt_fancy_header_bg_fullscreen','0'),(26191,3648,'_dt_fancy_header_bg_overlay','0'),(26192,3648,'_dt_fancy_header_overlay_color','#000'),(26193,3648,'_dt_fancy_header_bg_overlay_opacity','50'),(26194,3648,'_dt_fancy_header_scroll_effect','default'),(26195,3648,'_dt_fancy_header_bg_parallax','0.5'),(26196,3648,'_dt_fancy_header_responsiveness_heading',''),(26197,3648,'_dt_fancy_header_responsiveness','enabled'),(26198,3648,'_dt_fancy_header_responsiveness_switch','778px'),(26199,3648,'_dt_fancy_header_responsive_height','140'),(26200,3648,'_dt_fancy_header_responsive_font_size','30'),(26201,3648,'_dt_fancy_header_responsive_title_line_height','38'),(26202,3648,'_dt_fancy_header_responsive_subtitle_font_size','20'),(26203,3648,'_dt_fancy_header_responsive_subtitle_line_height','28'),(26204,3648,'_dt_fancy_header_responsive_breadcrumbs','disabled'),(26205,3648,'the7_fancy_title_css','#main {\n  padding-top: 1%;\n}\n.fancy-header {\n  background-image: url(\'https://farmchemie.yasithawd.com/wp-content/uploads/2023/09/SELVIT-E_300px-1.png\');\n  background-repeat: no-repeat;\n  background-position: center center;\n  background-size: auto auto;\n  background-color: #ffffff;\n}\n.mobile-false .fancy-header {\n  background-attachment: scroll;\n}\n.fancy-header .wf-wrap {\n  min-height: 140px;\n  padding-top: 0px;\n  padding-bottom: 0px;\n}\n.fancy-header .fancy-title {\n  font-size: 32px;\n  line-height: 36px;\n  color: #079547;\n  text-transform: none;\n}\n.fancy-header .fancy-subtitle {\n  font-size: 24px;\n  line-height: 26px;\n  color: #792c8a;\n  text-transform: none;\n}\n.fancy-header .breadcrumbs {\n  color: #ffffff;\n}\n.fancy-header-overlay {\n  background: rgba(0,0,0,0.5);\n}\n@media screen and (max-width: 778px) {\n  .fancy-header .wf-wrap {\n    min-height: 140px;\n  }\n  .fancy-header .fancy-title {\n    font-size: 30px;\n    line-height: 38px;\n  }\n  .fancy-header .fancy-subtitle {\n    font-size: 20px;\n    line-height: 28px;\n  }\n  .fancy-header.breadcrumbs-mobile-off .breadcrumbs {\n    display: none;\n  }\n  #fancy-header > .wf-wrap {\n    flex-flow: column wrap;\n    align-items: center;\n    justify-content: center;\n    padding-bottom: 0px !important;\n  }\n  .fancy-header.title-left .breadcrumbs {\n    text-align: center;\n    float: none;\n  }\n  .breadcrumbs {\n    margin-bottom: 10px;\n  }\n  .breadcrumbs.breadcrumbs-bg {\n    margin-top: 10px;\n  }\n  .fancy-header.title-right .breadcrumbs {\n    margin: 10px 0 10px 0;\n  }\n  #fancy-header .hgroup,\n  #fancy-header .breadcrumbs {\n    text-align: center;\n  }\n  .fancy-header .hgroup {\n    padding-bottom: 5px;\n  }\n  .breadcrumbs-off .hgroup {\n    padding-bottom: 5px;\n  }\n  .title-right .hgroup {\n    padding: 0 0 5px 0;\n  }\n  .title-right.breadcrumbs-off .hgroup {\n    padding-top: 5px;\n  }\n  .title-left.disabled-bg .breadcrumbs {\n    margin-bottom: 0;\n  }\n}\n'),(26206,3648,'_wqoecf_disable_form','no'),(26207,3648,'_edit_lock','1695128608:1'),(26208,3648,'_edit_last','1'),(26210,3649,'total_sales','0'),(26211,3649,'_tax_status','taxable'),(28535,3797,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:600;s:6:\"height\";i:600;s:4:\"file\";s:38:\"2023/09/CHICKTONIC_600px-x-600px-1.png\";s:8:\"filesize\";i:103041;s:5:\"sizes\";a:4:{s:6:\"medium\";a:5:{s:4:\"file\";s:38:\"CHICKTONIC_600px-x-600px-1-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:72013;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:38:\"CHICKTONIC_600px-x-600px-1-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:20198;}s:21:\"woocommerce_thumbnail\";a:6:{s:4:\"file\";s:38:\"CHICKTONIC_600px-x-600px-1-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:72013;s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:5:{s:4:\"file\";s:38:\"CHICKTONIC_600px-x-600px-1-200x200.png\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:33604;}}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:{}}}'),(26212,3649,'_tax_class',''),(26213,3649,'_manage_stock','no'),(26214,3649,'_backorders','no'),(26215,3649,'_sold_individually','no'),(26216,3649,'_virtual','no'),(26217,3649,'_downloadable','no'),(26218,3649,'_download_limit','-1'),(26219,3649,'_download_expiry','-1'),(26220,3649,'_thumbnail_id','3812'),(26221,3649,'_stock',NULL),(26222,3649,'_stock_status','instock'),(26223,3649,'_wc_average_rating','0'),(26224,3649,'_wc_review_count','0'),(26225,3649,'_product_attributes','a:1:{s:15:\"pa_product-type\";a:6:{s:4:\"name\";s:15:\"pa_product-type\";s:5:\"value\";s:0:\"\";s:8:\"position\";i:0;s:10:\"is_visible\";i:0;s:12:\"is_variation\";i:0;s:11:\"is_taxonomy\";i:1;}}'),(26226,3649,'_product_version','8.0.2'),(26227,3649,'_dt_sidebar_position','disabled'),(26228,3649,'_dt_sidebar_widgetarea_id','sidebar_1'),(26229,3649,'_dt_sidebar_hide_on_mobile','0'),(26230,3649,'_dt_footer_show','1'),(26231,3649,'_dt_footer_widgetarea_id','sidebar_2'),(26232,3649,'_dt_footer_hide_on_mobile','0'),(26233,3649,'_dt_header_title','fancy'),(26234,3649,'_dt_header_background','normal'),(26235,3649,'_dt_header_background_below_slideshow','disabled'),(26236,3649,'_dt_header_transparent_bg_color_scheme','light'),(26237,3649,'_dt_header_transparent_top_bar_bg_color','#ffffff'),(26238,3649,'_dt_header_transparent_top_bar_bg_opacity','25'),(26239,3649,'_dt_header_transparent_bg_color','#000000'),(26240,3649,'_dt_header_transparent_bg_opacity','50'),(26241,3649,'_dt_header_disabled_background','normal'),(26242,3649,'_dt_header_disabled_transparent_bg_color_scheme','light'),(26243,3649,'_dt_header_disabled_transparent_top_bar_bg_color','#ffffff'),(26244,3649,'_dt_header_disabled_transparent_top_bar_bg_opacity','25'),(26245,3649,'_dt_header_disabled_transparent_bg_color','#000000'),(26246,3649,'_dt_header_disabled_transparent_bg_opacity','50'),(26247,3649,'_dt_page_overrides_top_margin','1%'),(26248,3649,'_dt_page_overrides_right_margin',''),(26249,3649,'_dt_page_overrides_bottom_margin',''),(26250,3649,'_dt_page_overrides_left_margin',''),(26251,3649,'_dt_mobile_page_padding_top',''),(26252,3649,'_dt_mobile_page_padding_right',''),(26253,3649,'_dt_mobile_page_padding_bottom',''),(26254,3649,'_dt_mobile_page_padding_left',''),(26255,3649,'_dt_fancy_header_layout_heading',''),(26256,3649,'_dt_fancy_header_title_aligment','all_left'),(26257,3649,'_dt_fancy_header_height','140'),(26258,3649,'_dt_fancy_header_padding-top','0px'),(26259,3649,'_dt_fancy_header_padding-bottom','0px'),(26260,3649,'_dt_fancy_header_breadcrumbs_heading',''),(26261,3649,'_dt_fancy_header_breadcrumbs','disabled'),(26262,3649,'_dt_fancy_header_breadcrumbs_text_color','#ffffff'),(26263,3649,'_dt_fancy_header_breadcrumbs_bg_color','disabled'),(26264,3649,'_dt_fancy_header_title_heading',''),(26265,3649,'_dt_fancy_header_title_mode','custom'),(26266,3649,'_dt_fancy_header_title',''),(26267,3649,'_dt_fancy_header_title_font_size','32'),(26268,3649,'_dt_fancy_header_title_line_height','36'),(26269,3649,'_dt_fancy_header_text_transform','none'),(26270,3649,'_dt_fancy_header_title_color_mode','color'),(26271,3649,'_dt_fancy_header_title_color','#079547'),(26272,3649,'_dt_fancy_header_subtitle_heading',''),(26273,3649,'_dt_fancy_header_subtitle',''),(26274,3649,'_dt_fancy_header_subtitle_font_size','24'),(26275,3649,'_dt_fancy_header_subtitle_line_height','26'),(26276,3649,'_dt_fancy_header_subtitle_text_transform','none'),(26277,3649,'_dt_fancy_header_subtitle_color_mode','color'),(26278,3649,'_dt_fancy_header_subtitle_color','#792c8a'),(26279,3649,'_dt_fancy_header_bg_heading',''),(26280,3649,'_dt_fancy_header_bg_color','#ffffff'),(26281,3649,'_dt_fancy_header_bg_image_origin','custom'),(26282,3649,'_dt_fancy_header_bg_image','a:1:{i:0;i:3811;}'),(26283,3649,'_dt_fancy_header_bg_repeat','no-repeat'),(26284,3649,'_dt_fancy_header_bg_position_x','center'),(26285,3649,'_dt_fancy_header_bg_position_y','center'),(26286,3649,'_dt_fancy_header_bg_fullscreen','0'),(26287,3649,'_dt_fancy_header_bg_overlay','0'),(26288,3649,'_dt_fancy_header_overlay_color','#000'),(26289,3649,'_dt_fancy_header_bg_overlay_opacity','50'),(26290,3649,'_dt_fancy_header_scroll_effect','default'),(26291,3649,'_dt_fancy_header_bg_parallax','0.5'),(26292,3649,'_dt_fancy_header_responsiveness_heading',''),(26293,3649,'_dt_fancy_header_responsiveness','enabled'),(26294,3649,'_dt_fancy_header_responsiveness_switch','778px'),(26295,3649,'_dt_fancy_header_responsive_height','140'),(26296,3649,'_dt_fancy_header_responsive_font_size','30'),(26297,3649,'_dt_fancy_header_responsive_title_line_height','38'),(26298,3649,'_dt_fancy_header_responsive_subtitle_font_size','20'),(26299,3649,'_dt_fancy_header_responsive_subtitle_line_height','28'),(26300,3649,'_dt_fancy_header_responsive_breadcrumbs','disabled'),(26301,3649,'the7_fancy_title_css','#main {\n  padding-top: 1%;\n}\n.fancy-header {\n  background-image: url(\'https://farmchemie.yasithawd.com/wp-content/uploads/2023/09/SUPERVIT_300px.png\');\n  background-repeat: no-repeat;\n  background-position: center center;\n  background-size: auto auto;\n  background-color: #ffffff;\n}\n.mobile-false .fancy-header {\n  background-attachment: scroll;\n}\n.fancy-header .wf-wrap {\n  min-height: 140px;\n  padding-top: 0px;\n  padding-bottom: 0px;\n}\n.fancy-header .fancy-title {\n  font-size: 32px;\n  line-height: 36px;\n  color: #079547;\n  text-transform: none;\n}\n.fancy-header .fancy-subtitle {\n  font-size: 24px;\n  line-height: 26px;\n  color: #792c8a;\n  text-transform: none;\n}\n.fancy-header .breadcrumbs {\n  color: #ffffff;\n}\n.fancy-header-overlay {\n  background: rgba(0,0,0,0.5);\n}\n@media screen and (max-width: 778px) {\n  .fancy-header .wf-wrap {\n    min-height: 140px;\n  }\n  .fancy-header .fancy-title {\n    font-size: 30px;\n    line-height: 38px;\n  }\n  .fancy-header .fancy-subtitle {\n    font-size: 20px;\n    line-height: 28px;\n  }\n  .fancy-header.breadcrumbs-mobile-off .breadcrumbs {\n    display: none;\n  }\n  #fancy-header > .wf-wrap {\n    flex-flow: column wrap;\n    align-items: center;\n    justify-content: center;\n    padding-bottom: 0px !important;\n  }\n  .fancy-header.title-left .breadcrumbs {\n    text-align: center;\n    float: none;\n  }\n  .breadcrumbs {\n    margin-bottom: 10px;\n  }\n  .breadcrumbs.breadcrumbs-bg {\n    margin-top: 10px;\n  }\n  .fancy-header.title-right .breadcrumbs {\n    margin: 10px 0 10px 0;\n  }\n  #fancy-header .hgroup,\n  #fancy-header .breadcrumbs {\n    text-align: center;\n  }\n  .fancy-header .hgroup {\n    padding-bottom: 5px;\n  }\n  .breadcrumbs-off .hgroup {\n    padding-bottom: 5px;\n  }\n  .title-right .hgroup {\n    padding: 0 0 5px 0;\n  }\n  .title-right.breadcrumbs-off .hgroup {\n    padding-top: 5px;\n  }\n  .title-left.disabled-bg .breadcrumbs {\n    margin-bottom: 0;\n  }\n}\n'),(26302,3649,'_wqoecf_disable_form','no'),(26303,3649,'_edit_lock','1695370770:1'),(26304,3649,'_edit_last','1'),(26305,3650,'total_sales','0'),(26306,3650,'_tax_status','taxable'),(26307,3650,'_tax_class',''),(26308,3650,'_manage_stock','no'),(26309,3650,'_backorders','no'),(26310,3650,'_sold_individually','no'),(26311,3650,'_virtual','no'),(26312,3650,'_downloadable','no'),(26313,3650,'_download_limit','-1'),(26314,3650,'_download_expiry','-1'),(26402,3651,'_tax_class',''),(26316,3650,'_stock',NULL),(26317,3650,'_stock_status','instock'),(26318,3650,'_wc_average_rating','0'),(26319,3650,'_wc_review_count','0'),(26320,3650,'_product_attributes','a:1:{s:15:\"pa_product-type\";a:6:{s:4:\"name\";s:15:\"pa_product-type\";s:5:\"value\";s:0:\"\";s:8:\"position\";i:0;s:10:\"is_visible\";i:0;s:12:\"is_variation\";i:0;s:11:\"is_taxonomy\";i:1;}}'),(26321,3650,'_product_version','8.0.2'),(26322,3650,'_dt_sidebar_position','disabled'),(26323,3650,'_dt_sidebar_widgetarea_id','sidebar_1'),(26324,3650,'_dt_sidebar_hide_on_mobile','0'),(26325,3650,'_dt_footer_show','1'),(26326,3650,'_dt_footer_widgetarea_id','sidebar_2'),(26327,3650,'_dt_footer_hide_on_mobile','0'),(26328,3650,'_dt_header_title','fancy'),(26329,3650,'_dt_header_background','normal'),(26330,3650,'_dt_header_background_below_slideshow','disabled'),(26331,3650,'_dt_header_transparent_bg_color_scheme','light'),(26332,3650,'_dt_header_transparent_top_bar_bg_color','#ffffff'),(26333,3650,'_dt_header_transparent_top_bar_bg_opacity','25'),(26334,3650,'_dt_header_transparent_bg_color','#000000'),(26335,3650,'_dt_header_transparent_bg_opacity','50'),(26336,3650,'_dt_header_disabled_background','normal'),(26337,3650,'_dt_header_disabled_transparent_bg_color_scheme','light'),(26338,3650,'_dt_header_disabled_transparent_top_bar_bg_color','#ffffff'),(26339,3650,'_dt_header_disabled_transparent_top_bar_bg_opacity','25'),(26340,3650,'_dt_header_disabled_transparent_bg_color','#000000'),(26341,3650,'_dt_header_disabled_transparent_bg_opacity','50'),(26342,3650,'_dt_page_overrides_top_margin','1%'),(26343,3650,'_dt_page_overrides_right_margin',''),(26344,3650,'_dt_page_overrides_bottom_margin',''),(26345,3650,'_dt_page_overrides_left_margin',''),(26346,3650,'_dt_mobile_page_padding_top',''),(26347,3650,'_dt_mobile_page_padding_right',''),(26348,3650,'_dt_mobile_page_padding_bottom',''),(26349,3650,'_dt_mobile_page_padding_left',''),(26350,3650,'_dt_fancy_header_layout_heading',''),(26351,3650,'_dt_fancy_header_title_aligment','all_left'),(26352,3650,'_dt_fancy_header_height','140'),(26353,3650,'_dt_fancy_header_padding-top','0px'),(26354,3650,'_dt_fancy_header_padding-bottom','0px'),(26355,3650,'_dt_fancy_header_breadcrumbs_heading',''),(26356,3650,'_dt_fancy_header_breadcrumbs','disabled'),(26357,3650,'_dt_fancy_header_breadcrumbs_text_color','#ffffff'),(26358,3650,'_dt_fancy_header_breadcrumbs_bg_color','disabled'),(26359,3650,'_dt_fancy_header_title_heading',''),(26360,3650,'_dt_fancy_header_title_mode','custom'),(26361,3650,'_dt_fancy_header_title',''),(26362,3650,'_dt_fancy_header_title_font_size','32'),(26363,3650,'_dt_fancy_header_title_line_height','36'),(26364,3650,'_dt_fancy_header_text_transform','none'),(26365,3650,'_dt_fancy_header_title_color_mode','color'),(26366,3650,'_dt_fancy_header_title_color','#079547'),(26367,3650,'_dt_fancy_header_subtitle_heading',''),(26368,3650,'_dt_fancy_header_subtitle',''),(26369,3650,'_dt_fancy_header_subtitle_font_size','24'),(26370,3650,'_dt_fancy_header_subtitle_line_height','26'),(26371,3650,'_dt_fancy_header_subtitle_text_transform','none'),(26372,3650,'_dt_fancy_header_subtitle_color_mode','color'),(26373,3650,'_dt_fancy_header_subtitle_color','#792c8a'),(26374,3650,'_dt_fancy_header_bg_heading',''),(26375,3650,'_dt_fancy_header_bg_color','#ffffff'),(26376,3650,'_dt_fancy_header_bg_image_origin','custom'),(26377,3650,'_dt_fancy_header_bg_image','a:0:{}'),(26378,3650,'_dt_fancy_header_bg_repeat','no-repeat'),(26379,3650,'_dt_fancy_header_bg_position_x','center'),(26380,3650,'_dt_fancy_header_bg_position_y','center'),(26381,3650,'_dt_fancy_header_bg_fullscreen','0'),(26382,3650,'_dt_fancy_header_bg_overlay','0'),(26383,3650,'_dt_fancy_header_overlay_color','#000'),(26384,3650,'_dt_fancy_header_bg_overlay_opacity','50'),(26385,3650,'_dt_fancy_header_scroll_effect','default'),(26386,3650,'_dt_fancy_header_bg_parallax','0.5'),(26387,3650,'_dt_fancy_header_responsiveness_heading',''),(26388,3650,'_dt_fancy_header_responsiveness','enabled'),(26389,3650,'_dt_fancy_header_responsiveness_switch','778px'),(26390,3650,'_dt_fancy_header_responsive_height','140'),(26391,3650,'_dt_fancy_header_responsive_font_size','30'),(26392,3650,'_dt_fancy_header_responsive_title_line_height','38'),(26393,3650,'_dt_fancy_header_responsive_subtitle_font_size','20'),(26394,3650,'_dt_fancy_header_responsive_subtitle_line_height','28'),(26395,3650,'_dt_fancy_header_responsive_breadcrumbs','disabled'),(26396,3650,'the7_fancy_title_css','#main {\n  padding-top: 1%;\n}\n.fancy-header {\n  background-image: none;\n  background-repeat: no-repeat;\n  background-position: center center;\n  background-size: auto auto;\n  background-color: #ffffff;\n}\n.mobile-false .fancy-header {\n  background-attachment: scroll;\n}\n.fancy-header .wf-wrap {\n  min-height: 140px;\n  padding-top: 0px;\n  padding-bottom: 0px;\n}\n.fancy-header .fancy-title {\n  font-size: 32px;\n  line-height: 36px;\n  color: #079547;\n  text-transform: none;\n}\n.fancy-header .fancy-subtitle {\n  font-size: 24px;\n  line-height: 26px;\n  color: #792c8a;\n  text-transform: none;\n}\n.fancy-header .breadcrumbs {\n  color: #ffffff;\n}\n.fancy-header-overlay {\n  background: rgba(0,0,0,0.5);\n}\n@media screen and (max-width: 778px) {\n  .fancy-header .wf-wrap {\n    min-height: 140px;\n  }\n  .fancy-header .fancy-title {\n    font-size: 30px;\n    line-height: 38px;\n  }\n  .fancy-header .fancy-subtitle {\n    font-size: 20px;\n    line-height: 28px;\n  }\n  .fancy-header.breadcrumbs-mobile-off .breadcrumbs {\n    display: none;\n  }\n  #fancy-header > .wf-wrap {\n    flex-flow: column wrap;\n    align-items: center;\n    justify-content: center;\n    padding-bottom: 0px !important;\n  }\n  .fancy-header.title-left .breadcrumbs {\n    text-align: center;\n    float: none;\n  }\n  .breadcrumbs {\n    margin-bottom: 10px;\n  }\n  .breadcrumbs.breadcrumbs-bg {\n    margin-top: 10px;\n  }\n  .fancy-header.title-right .breadcrumbs {\n    margin: 10px 0 10px 0;\n  }\n  #fancy-header .hgroup,\n  #fancy-header .breadcrumbs {\n    text-align: center;\n  }\n  .fancy-header .hgroup {\n    padding-bottom: 5px;\n  }\n  .breadcrumbs-off .hgroup {\n    padding-bottom: 5px;\n  }\n  .title-right .hgroup {\n    padding: 0 0 5px 0;\n  }\n  .title-right.breadcrumbs-off .hgroup {\n    padding-top: 5px;\n  }\n  .title-left.disabled-bg .breadcrumbs {\n    margin-bottom: 0;\n  }\n}\n'),(26397,3650,'_wqoecf_disable_form','no'),(26398,3650,'_edit_lock','1695483431:1'),(26399,3650,'_edit_last','1'),(26400,3651,'total_sales','0'),(26401,3651,'_tax_status','taxable'),(26403,3651,'_manage_stock','no'),(26404,3651,'_backorders','no'),(26405,3651,'_sold_individually','no'),(26406,3651,'_virtual','no'),(26407,3651,'_downloadable','no'),(26408,3651,'_download_limit','-1'),(26409,3651,'_download_expiry','-1'),(26410,3651,'_stock',NULL),(26411,3651,'_stock_status','instock'),(26412,3651,'_wc_average_rating','0'),(26413,3651,'_wc_review_count','0'),(26414,3651,'_product_attributes','a:1:{s:15:\"pa_product-type\";a:6:{s:4:\"name\";s:15:\"pa_product-type\";s:5:\"value\";s:0:\"\";s:8:\"position\";i:0;s:10:\"is_visible\";i:0;s:12:\"is_variation\";i:0;s:11:\"is_taxonomy\";i:1;}}'),(26415,3651,'_product_version','8.0.2'),(26416,3651,'_dt_sidebar_position','disabled'),(26417,3651,'_dt_sidebar_widgetarea_id','sidebar_1'),(26418,3651,'_dt_sidebar_hide_on_mobile','0'),(26419,3651,'_dt_footer_show','1'),(26420,3651,'_dt_footer_widgetarea_id','sidebar_2'),(26421,3651,'_dt_footer_hide_on_mobile','0'),(26422,3651,'_dt_header_title','fancy'),(26423,3651,'_dt_header_background','normal'),(26424,3651,'_dt_header_background_below_slideshow','disabled'),(26425,3651,'_dt_header_transparent_bg_color_scheme','light'),(26426,3651,'_dt_header_transparent_top_bar_bg_color','#ffffff'),(26427,3651,'_dt_header_transparent_top_bar_bg_opacity','25'),(26428,3651,'_dt_header_transparent_bg_color','#000000'),(26429,3651,'_dt_header_transparent_bg_opacity','50'),(26430,3651,'_dt_header_disabled_background','normal'),(26431,3651,'_dt_header_disabled_transparent_bg_color_scheme','light'),(26432,3651,'_dt_header_disabled_transparent_top_bar_bg_color','#ffffff'),(26433,3651,'_dt_header_disabled_transparent_top_bar_bg_opacity','25'),(26434,3651,'_dt_header_disabled_transparent_bg_color','#000000'),(26435,3651,'_dt_header_disabled_transparent_bg_opacity','50'),(26436,3651,'_dt_page_overrides_top_margin','1%'),(26437,3651,'_dt_page_overrides_right_margin',''),(26438,3651,'_dt_page_overrides_bottom_margin',''),(26439,3651,'_dt_page_overrides_left_margin',''),(26440,3651,'_dt_mobile_page_padding_top',''),(26441,3651,'_dt_mobile_page_padding_right',''),(26442,3651,'_dt_mobile_page_padding_bottom',''),(26443,3651,'_dt_mobile_page_padding_left',''),(26444,3651,'_dt_fancy_header_layout_heading',''),(26445,3651,'_dt_fancy_header_title_aligment','all_left'),(26446,3651,'_dt_fancy_header_height','140'),(26447,3651,'_dt_fancy_header_padding-top','0px'),(26448,3651,'_dt_fancy_header_padding-bottom','0px'),(26449,3651,'_dt_fancy_header_breadcrumbs_heading',''),(26450,3651,'_dt_fancy_header_breadcrumbs','disabled'),(26451,3651,'_dt_fancy_header_breadcrumbs_text_color','#ffffff'),(26452,3651,'_dt_fancy_header_breadcrumbs_bg_color','disabled'),(26453,3651,'_dt_fancy_header_title_heading',''),(26454,3651,'_dt_fancy_header_title_mode','custom'),(26455,3651,'_dt_fancy_header_title',''),(26456,3651,'_dt_fancy_header_title_font_size','32'),(26457,3651,'_dt_fancy_header_title_line_height','36'),(26458,3651,'_dt_fancy_header_text_transform','none'),(26459,3651,'_dt_fancy_header_title_color_mode','color'),(26460,3651,'_dt_fancy_header_title_color','#079547'),(26461,3651,'_dt_fancy_header_subtitle_heading',''),(26462,3651,'_dt_fancy_header_subtitle',''),(26463,3651,'_dt_fancy_header_subtitle_font_size','24'),(26464,3651,'_dt_fancy_header_subtitle_line_height','26'),(26465,3651,'_dt_fancy_header_subtitle_text_transform','none'),(26466,3651,'_dt_fancy_header_subtitle_color_mode','color'),(26467,3651,'_dt_fancy_header_subtitle_color','#792c8a'),(26468,3651,'_dt_fancy_header_bg_heading',''),(26469,3651,'_dt_fancy_header_bg_color','#ffffff'),(26470,3651,'_dt_fancy_header_bg_image_origin','custom'),(26471,3651,'_dt_fancy_header_bg_image','a:1:{i:0;i:3785;}'),(26472,3651,'_dt_fancy_header_bg_repeat','no-repeat'),(26473,3651,'_dt_fancy_header_bg_position_x','center'),(26474,3651,'_dt_fancy_header_bg_position_y','center'),(26475,3651,'_dt_fancy_header_bg_fullscreen','0'),(26476,3651,'_dt_fancy_header_bg_overlay','0'),(26477,3651,'_dt_fancy_header_overlay_color','#000'),(26478,3651,'_dt_fancy_header_bg_overlay_opacity','50'),(26479,3651,'_dt_fancy_header_scroll_effect','default'),(26480,3651,'_dt_fancy_header_bg_parallax','0.5'),(26481,3651,'_dt_fancy_header_responsiveness_heading',''),(26482,3651,'_dt_fancy_header_responsiveness','enabled'),(26483,3651,'_dt_fancy_header_responsiveness_switch','778px'),(26484,3651,'_dt_fancy_header_responsive_height','140'),(26485,3651,'_dt_fancy_header_responsive_font_size','30'),(26486,3651,'_dt_fancy_header_responsive_title_line_height','38'),(26487,3651,'_dt_fancy_header_responsive_subtitle_font_size','20'),(26488,3651,'_dt_fancy_header_responsive_subtitle_line_height','28'),(26489,3651,'_dt_fancy_header_responsive_breadcrumbs','disabled'),(26490,3651,'the7_fancy_title_css','#main {\n  padding-top: 1%;\n}\n.fancy-header {\n  background-image: url(\'https://farmchemie.yasithawd.com/wp-content/uploads/2023/09/Avishield-ND-B1_300px.png\');\n  background-repeat: no-repeat;\n  background-position: center center;\n  background-size: auto auto;\n  background-color: #ffffff;\n}\n.mobile-false .fancy-header {\n  background-attachment: scroll;\n}\n.fancy-header .wf-wrap {\n  min-height: 140px;\n  padding-top: 0px;\n  padding-bottom: 0px;\n}\n.fancy-header .fancy-title {\n  font-size: 32px;\n  line-height: 36px;\n  color: #079547;\n  text-transform: none;\n}\n.fancy-header .fancy-subtitle {\n  font-size: 24px;\n  line-height: 26px;\n  color: #792c8a;\n  text-transform: none;\n}\n.fancy-header .breadcrumbs {\n  color: #ffffff;\n}\n.fancy-header-overlay {\n  background: rgba(0,0,0,0.5);\n}\n@media screen and (max-width: 778px) {\n  .fancy-header .wf-wrap {\n    min-height: 140px;\n  }\n  .fancy-header .fancy-title {\n    font-size: 30px;\n    line-height: 38px;\n  }\n  .fancy-header .fancy-subtitle {\n    font-size: 20px;\n    line-height: 28px;\n  }\n  .fancy-header.breadcrumbs-mobile-off .breadcrumbs {\n    display: none;\n  }\n  #fancy-header > .wf-wrap {\n    flex-flow: column wrap;\n    align-items: center;\n    justify-content: center;\n    padding-bottom: 0px !important;\n  }\n  .fancy-header.title-left .breadcrumbs {\n    text-align: center;\n    float: none;\n  }\n  .breadcrumbs {\n    margin-bottom: 10px;\n  }\n  .breadcrumbs.breadcrumbs-bg {\n    margin-top: 10px;\n  }\n  .fancy-header.title-right .breadcrumbs {\n    margin: 10px 0 10px 0;\n  }\n  #fancy-header .hgroup,\n  #fancy-header .breadcrumbs {\n    text-align: center;\n  }\n  .fancy-header .hgroup {\n    padding-bottom: 5px;\n  }\n  .breadcrumbs-off .hgroup {\n    padding-bottom: 5px;\n  }\n  .title-right .hgroup {\n    padding: 0 0 5px 0;\n  }\n  .title-right.breadcrumbs-off .hgroup {\n    padding-top: 5px;\n  }\n  .title-left.disabled-bg .breadcrumbs {\n    margin-bottom: 0;\n  }\n}\n'),(26491,3651,'_wqoecf_disable_form','no'),(26492,3651,'_edit_lock','1695122811:1'),(26493,3651,'_edit_last','1'),(26495,3652,'total_sales','0'),(26496,3652,'_tax_status','taxable'),(26494,3651,'_thumbnail_id','3786'),(26497,3652,'_tax_class',''),(26498,3652,'_manage_stock','no'),(26499,3652,'_backorders','no'),(26500,3652,'_sold_individually','no'),(26501,3652,'_virtual','no'),(26502,3652,'_downloadable','no'),(26503,3652,'_download_limit','-1'),(26504,3652,'_download_expiry','-1'),(26505,3652,'_thumbnail_id','2857'),(26506,3652,'_stock',NULL),(26507,3652,'_stock_status','instock'),(26508,3652,'_wc_average_rating','0'),(26509,3652,'_wc_review_count','0'),(26510,3652,'_product_attributes','a:1:{s:15:\"pa_product-type\";a:6:{s:4:\"name\";s:15:\"pa_product-type\";s:5:\"value\";s:0:\"\";s:8:\"position\";i:0;s:10:\"is_visible\";i:0;s:12:\"is_variation\";i:0;s:11:\"is_taxonomy\";i:1;}}'),(26511,3652,'_product_version','8.0.2'),(26512,3652,'_dt_sidebar_position','disabled'),(26513,3652,'_dt_sidebar_widgetarea_id','sidebar_1'),(26514,3652,'_dt_sidebar_hide_on_mobile','0'),(26515,3652,'_dt_footer_show','1'),(26516,3652,'_dt_footer_widgetarea_id','sidebar_2'),(26517,3652,'_dt_footer_hide_on_mobile','0'),(26518,3652,'_dt_header_title','fancy'),(26519,3652,'_dt_header_background','normal'),(26520,3652,'_dt_header_background_below_slideshow','disabled'),(26521,3652,'_dt_header_transparent_bg_color_scheme','light'),(26522,3652,'_dt_header_transparent_top_bar_bg_color','#ffffff'),(26523,3652,'_dt_header_transparent_top_bar_bg_opacity','25'),(26524,3652,'_dt_header_transparent_bg_color','#000000'),(26525,3652,'_dt_header_transparent_bg_opacity','50'),(26526,3652,'_dt_header_disabled_background','normal'),(26527,3652,'_dt_header_disabled_transparent_bg_color_scheme','light'),(26528,3652,'_dt_header_disabled_transparent_top_bar_bg_color','#ffffff'),(26529,3652,'_dt_header_disabled_transparent_top_bar_bg_opacity','25'),(26530,3652,'_dt_header_disabled_transparent_bg_color','#000000'),(26531,3652,'_dt_header_disabled_transparent_bg_opacity','50'),(26532,3652,'_dt_page_overrides_top_margin','1%'),(26533,3652,'_dt_page_overrides_right_margin',''),(26534,3652,'_dt_page_overrides_bottom_margin',''),(26535,3652,'_dt_page_overrides_left_margin',''),(26536,3652,'_dt_mobile_page_padding_top',''),(26537,3652,'_dt_mobile_page_padding_right',''),(26538,3652,'_dt_mobile_page_padding_bottom',''),(26539,3652,'_dt_mobile_page_padding_left',''),(26540,3652,'_dt_fancy_header_layout_heading',''),(26541,3652,'_dt_fancy_header_title_aligment','all_left'),(26542,3652,'_dt_fancy_header_height','140'),(26543,3652,'_dt_fancy_header_padding-top','0px'),(26544,3652,'_dt_fancy_header_padding-bottom','0px'),(26545,3652,'_dt_fancy_header_breadcrumbs_heading',''),(26546,3652,'_dt_fancy_header_breadcrumbs','disabled'),(26547,3652,'_dt_fancy_header_breadcrumbs_text_color','#ffffff'),(26548,3652,'_dt_fancy_header_breadcrumbs_bg_color','disabled'),(26549,3652,'_dt_fancy_header_title_heading',''),(26550,3652,'_dt_fancy_header_title_mode','custom'),(26551,3652,'_dt_fancy_header_title',''),(26552,3652,'_dt_fancy_header_title_font_size','32'),(26553,3652,'_dt_fancy_header_title_line_height','36'),(26554,3652,'_dt_fancy_header_text_transform','none'),(26555,3652,'_dt_fancy_header_title_color_mode','color'),(26556,3652,'_dt_fancy_header_title_color','#079547'),(26557,3652,'_dt_fancy_header_subtitle_heading',''),(26558,3652,'_dt_fancy_header_subtitle',''),(26559,3652,'_dt_fancy_header_subtitle_font_size','24'),(26560,3652,'_dt_fancy_header_subtitle_line_height','26'),(26561,3652,'_dt_fancy_header_subtitle_text_transform','none'),(26562,3652,'_dt_fancy_header_subtitle_color_mode','color'),(26563,3652,'_dt_fancy_header_subtitle_color','#792c8a'),(26564,3652,'_dt_fancy_header_bg_heading',''),(26565,3652,'_dt_fancy_header_bg_color','#ffffff'),(26566,3652,'_dt_fancy_header_bg_image_origin','custom'),(26567,3652,'_dt_fancy_header_bg_image','a:0:{}'),(26568,3652,'_dt_fancy_header_bg_repeat','no-repeat'),(26569,3652,'_dt_fancy_header_bg_position_x','center'),(26570,3652,'_dt_fancy_header_bg_position_y','center'),(26571,3652,'_dt_fancy_header_bg_fullscreen','0'),(26572,3652,'_dt_fancy_header_bg_overlay','0'),(26573,3652,'_dt_fancy_header_overlay_color','#000'),(26574,3652,'_dt_fancy_header_bg_overlay_opacity','50'),(26575,3652,'_dt_fancy_header_scroll_effect','default'),(26576,3652,'_dt_fancy_header_bg_parallax','0.5'),(26577,3652,'_dt_fancy_header_responsiveness_heading',''),(26578,3652,'_dt_fancy_header_responsiveness','enabled'),(26579,3652,'_dt_fancy_header_responsiveness_switch','778px'),(26580,3652,'_dt_fancy_header_responsive_height','140'),(26581,3652,'_dt_fancy_header_responsive_font_size','30'),(26582,3652,'_dt_fancy_header_responsive_title_line_height','38'),(26583,3652,'_dt_fancy_header_responsive_subtitle_font_size','20'),(26584,3652,'_dt_fancy_header_responsive_subtitle_line_height','28'),(26585,3652,'_dt_fancy_header_responsive_breadcrumbs','disabled'),(26586,3652,'the7_fancy_title_css','#main {\n  padding-top: 1%;\n}\n.fancy-header {\n  background-image: none;\n  background-repeat: no-repeat;\n  background-position: center center;\n  background-size: auto auto;\n  background-color: #ffffff;\n}\n.mobile-false .fancy-header {\n  background-attachment: scroll;\n}\n.fancy-header .wf-wrap {\n  min-height: 140px;\n  padding-top: 0px;\n  padding-bottom: 0px;\n}\n.fancy-header .fancy-title {\n  font-size: 32px;\n  line-height: 36px;\n  color: #079547;\n  text-transform: none;\n}\n.fancy-header .fancy-subtitle {\n  font-size: 24px;\n  line-height: 26px;\n  color: #792c8a;\n  text-transform: none;\n}\n.fancy-header .breadcrumbs {\n  color: #ffffff;\n}\n.fancy-header-overlay {\n  background: rgba(0,0,0,0.5);\n}\n@media screen and (max-width: 778px) {\n  .fancy-header .wf-wrap {\n    min-height: 140px;\n  }\n  .fancy-header .fancy-title {\n    font-size: 30px;\n    line-height: 38px;\n  }\n  .fancy-header .fancy-subtitle {\n    font-size: 20px;\n    line-height: 28px;\n  }\n  .fancy-header.breadcrumbs-mobile-off .breadcrumbs {\n    display: none;\n  }\n  #fancy-header > .wf-wrap {\n    flex-flow: column wrap;\n    align-items: center;\n    justify-content: center;\n    padding-bottom: 0px !important;\n  }\n  .fancy-header.title-left .breadcrumbs {\n    text-align: center;\n    float: none;\n  }\n  .breadcrumbs {\n    margin-bottom: 10px;\n  }\n  .breadcrumbs.breadcrumbs-bg {\n    margin-top: 10px;\n  }\n  .fancy-header.title-right .breadcrumbs {\n    margin: 10px 0 10px 0;\n  }\n  #fancy-header .hgroup,\n  #fancy-header .breadcrumbs {\n    text-align: center;\n  }\n  .fancy-header .hgroup {\n    padding-bottom: 5px;\n  }\n  .breadcrumbs-off .hgroup {\n    padding-bottom: 5px;\n  }\n  .title-right .hgroup {\n    padding: 0 0 5px 0;\n  }\n  .title-right.breadcrumbs-off .hgroup {\n    padding-top: 5px;\n  }\n  .title-left.disabled-bg .breadcrumbs {\n    margin-bottom: 0;\n  }\n}\n'),(26587,3652,'_wqoecf_disable_form','no'),(26588,3652,'_edit_lock','1694687617:1'),(26589,3652,'_edit_last','1'),(26590,3653,'total_sales','0'),(26591,3653,'_tax_status','taxable'),(26592,3653,'_tax_class',''),(26593,3653,'_manage_stock','no'),(26594,3653,'_backorders','no'),(26595,3653,'_sold_individually','no'),(26596,3653,'_virtual','no'),(26597,3653,'_downloadable','no'),(26598,3653,'_download_limit','-1'),(26599,3653,'_download_expiry','-1'),(26600,3653,'_thumbnail_id','2859'),(26601,3653,'_stock',NULL),(26602,3653,'_stock_status','instock'),(26603,3653,'_wc_average_rating','0'),(26604,3653,'_wc_review_count','0'),(26605,3653,'_product_attributes','a:1:{s:15:\"pa_product-type\";a:6:{s:4:\"name\";s:15:\"pa_product-type\";s:5:\"value\";s:0:\"\";s:8:\"position\";i:0;s:10:\"is_visible\";i:0;s:12:\"is_variation\";i:0;s:11:\"is_taxonomy\";i:1;}}'),(26606,3653,'_product_version','8.0.2'),(26607,3653,'_dt_sidebar_position','disabled'),(26608,3653,'_dt_sidebar_widgetarea_id','sidebar_1'),(26609,3653,'_dt_sidebar_hide_on_mobile','0'),(26610,3653,'_dt_footer_show','1'),(26611,3653,'_dt_footer_widgetarea_id','sidebar_2'),(26612,3653,'_dt_footer_hide_on_mobile','0'),(26613,3653,'_dt_header_title','fancy'),(26614,3653,'_dt_header_background','normal'),(26615,3653,'_dt_header_background_below_slideshow','disabled'),(26616,3653,'_dt_header_transparent_bg_color_scheme','light'),(26617,3653,'_dt_header_transparent_top_bar_bg_color','#ffffff'),(26618,3653,'_dt_header_transparent_top_bar_bg_opacity','25'),(26619,3653,'_dt_header_transparent_bg_color','#000000'),(26620,3653,'_dt_header_transparent_bg_opacity','50'),(26621,3653,'_dt_header_disabled_background','normal'),(26622,3653,'_dt_header_disabled_transparent_bg_color_scheme','light'),(26623,3653,'_dt_header_disabled_transparent_top_bar_bg_color','#ffffff'),(26624,3653,'_dt_header_disabled_transparent_top_bar_bg_opacity','25'),(26625,3653,'_dt_header_disabled_transparent_bg_color','#000000'),(26626,3653,'_dt_header_disabled_transparent_bg_opacity','50'),(26627,3653,'_dt_page_overrides_top_margin','1%'),(26628,3653,'_dt_page_overrides_right_margin',''),(26629,3653,'_dt_page_overrides_bottom_margin',''),(26630,3653,'_dt_page_overrides_left_margin',''),(26631,3653,'_dt_mobile_page_padding_top',''),(26632,3653,'_dt_mobile_page_padding_right',''),(26633,3653,'_dt_mobile_page_padding_bottom',''),(26634,3653,'_dt_mobile_page_padding_left',''),(26635,3653,'_dt_fancy_header_layout_heading',''),(26636,3653,'_dt_fancy_header_title_aligment','all_left'),(26637,3653,'_dt_fancy_header_height','140'),(26638,3653,'_dt_fancy_header_padding-top','0px'),(26639,3653,'_dt_fancy_header_padding-bottom','0px'),(26640,3653,'_dt_fancy_header_breadcrumbs_heading',''),(26641,3653,'_dt_fancy_header_breadcrumbs','disabled'),(26642,3653,'_dt_fancy_header_breadcrumbs_text_color','#ffffff'),(26643,3653,'_dt_fancy_header_breadcrumbs_bg_color','disabled'),(26644,3653,'_dt_fancy_header_title_heading',''),(26645,3653,'_dt_fancy_header_title_mode','custom'),(26646,3653,'_dt_fancy_header_title',''),(26647,3653,'_dt_fancy_header_title_font_size','32'),(26648,3653,'_dt_fancy_header_title_line_height','36'),(26649,3653,'_dt_fancy_header_text_transform','none'),(26650,3653,'_dt_fancy_header_title_color_mode','color'),(26651,3653,'_dt_fancy_header_title_color','#079547'),(26652,3653,'_dt_fancy_header_subtitle_heading',''),(26653,3653,'_dt_fancy_header_subtitle',''),(26654,3653,'_dt_fancy_header_subtitle_font_size','24'),(26655,3653,'_dt_fancy_header_subtitle_line_height','26'),(26656,3653,'_dt_fancy_header_subtitle_text_transform','none'),(26657,3653,'_dt_fancy_header_subtitle_color_mode','color'),(26658,3653,'_dt_fancy_header_subtitle_color','#792c8a'),(26659,3653,'_dt_fancy_header_bg_heading',''),(26660,3653,'_dt_fancy_header_bg_color','#ffffff'),(26661,3653,'_dt_fancy_header_bg_image_origin','custom'),(26662,3653,'_dt_fancy_header_bg_image','a:1:{i:0;i:3787;}'),(26663,3653,'_dt_fancy_header_bg_repeat','no-repeat'),(26664,3653,'_dt_fancy_header_bg_position_x','center'),(26665,3653,'_dt_fancy_header_bg_position_y','center'),(26666,3653,'_dt_fancy_header_bg_fullscreen','0'),(26667,3653,'_dt_fancy_header_bg_overlay','0'),(26668,3653,'_dt_fancy_header_overlay_color','#000'),(26669,3653,'_dt_fancy_header_bg_overlay_opacity','50'),(26670,3653,'_dt_fancy_header_scroll_effect','default'),(26671,3653,'_dt_fancy_header_bg_parallax','0.5'),(26672,3653,'_dt_fancy_header_responsiveness_heading',''),(26673,3653,'_dt_fancy_header_responsiveness','enabled'),(26674,3653,'_dt_fancy_header_responsiveness_switch','778px'),(26675,3653,'_dt_fancy_header_responsive_height','140'),(26676,3653,'_dt_fancy_header_responsive_font_size','30'),(26677,3653,'_dt_fancy_header_responsive_title_line_height','38'),(26678,3653,'_dt_fancy_header_responsive_subtitle_font_size','20'),(26679,3653,'_dt_fancy_header_responsive_subtitle_line_height','28'),(26680,3653,'_dt_fancy_header_responsive_breadcrumbs','disabled'),(26681,3653,'the7_fancy_title_css','#main {\n  padding-top: 1%;\n}\n.fancy-header {\n  background-image: url(\'https://farmchemie.yasithawd.com/wp-content/uploads/2023/09/CEVAC-BRON-120-L_300px.png\');\n  background-repeat: no-repeat;\n  background-position: center center;\n  background-size: auto auto;\n  background-color: #ffffff;\n}\n.mobile-false .fancy-header {\n  background-attachment: scroll;\n}\n.fancy-header .wf-wrap {\n  min-height: 140px;\n  padding-top: 0px;\n  padding-bottom: 0px;\n}\n.fancy-header .fancy-title {\n  font-size: 32px;\n  line-height: 36px;\n  color: #079547;\n  text-transform: none;\n}\n.fancy-header .fancy-subtitle {\n  font-size: 24px;\n  line-height: 26px;\n  color: #792c8a;\n  text-transform: none;\n}\n.fancy-header .breadcrumbs {\n  color: #ffffff;\n}\n.fancy-header-overlay {\n  background: rgba(0,0,0,0.5);\n}\n@media screen and (max-width: 778px) {\n  .fancy-header .wf-wrap {\n    min-height: 140px;\n  }\n  .fancy-header .fancy-title {\n    font-size: 30px;\n    line-height: 38px;\n  }\n  .fancy-header .fancy-subtitle {\n    font-size: 20px;\n    line-height: 28px;\n  }\n  .fancy-header.breadcrumbs-mobile-off .breadcrumbs {\n    display: none;\n  }\n  #fancy-header > .wf-wrap {\n    flex-flow: column wrap;\n    align-items: center;\n    justify-content: center;\n    padding-bottom: 0px !important;\n  }\n  .fancy-header.title-left .breadcrumbs {\n    text-align: center;\n    float: none;\n  }\n  .breadcrumbs {\n    margin-bottom: 10px;\n  }\n  .breadcrumbs.breadcrumbs-bg {\n    margin-top: 10px;\n  }\n  .fancy-header.title-right .breadcrumbs {\n    margin: 10px 0 10px 0;\n  }\n  #fancy-header .hgroup,\n  #fancy-header .breadcrumbs {\n    text-align: center;\n  }\n  .fancy-header .hgroup {\n    padding-bottom: 5px;\n  }\n  .breadcrumbs-off .hgroup {\n    padding-bottom: 5px;\n  }\n  .title-right .hgroup {\n    padding: 0 0 5px 0;\n  }\n  .title-right.breadcrumbs-off .hgroup {\n    padding-top: 5px;\n  }\n  .title-left.disabled-bg .breadcrumbs {\n    margin-bottom: 0;\n  }\n}\n'),(26682,3653,'_wqoecf_disable_form','no'),(26683,3653,'_edit_lock','1695123714:1'),(26684,3653,'_edit_last','1'),(26685,3654,'total_sales','0'),(26686,3654,'_tax_status','taxable'),(26687,3654,'_tax_class',''),(26688,3654,'_manage_stock','no'),(26689,3654,'_backorders','no'),(26690,3654,'_sold_individually','no'),(26691,3654,'_virtual','no'),(26692,3654,'_downloadable','no'),(26693,3654,'_download_limit','-1'),(26694,3654,'_download_expiry','-1'),(26695,3654,'_thumbnail_id','2863'),(26696,3654,'_stock',NULL),(26697,3654,'_stock_status','instock'),(26698,3654,'_wc_average_rating','0'),(26699,3654,'_wc_review_count','0'),(26700,3654,'_product_attributes','a:1:{s:15:\"pa_product-type\";a:6:{s:4:\"name\";s:15:\"pa_product-type\";s:5:\"value\";s:0:\"\";s:8:\"position\";i:0;s:10:\"is_visible\";i:0;s:12:\"is_variation\";i:0;s:11:\"is_taxonomy\";i:1;}}'),(26701,3654,'_product_version','8.0.2'),(26702,3654,'_dt_sidebar_position','disabled'),(26703,3654,'_dt_sidebar_widgetarea_id','sidebar_1'),(26704,3654,'_dt_sidebar_hide_on_mobile','0'),(26705,3654,'_dt_footer_show','1'),(26706,3654,'_dt_footer_widgetarea_id','sidebar_2'),(26707,3654,'_dt_footer_hide_on_mobile','0'),(26708,3654,'_dt_header_title','fancy'),(26709,3654,'_dt_header_background','normal'),(26710,3654,'_dt_header_background_below_slideshow','disabled'),(26711,3654,'_dt_header_transparent_bg_color_scheme','light'),(26712,3654,'_dt_header_transparent_top_bar_bg_color','#ffffff'),(26713,3654,'_dt_header_transparent_top_bar_bg_opacity','25'),(26714,3654,'_dt_header_transparent_bg_color','#000000'),(26715,3654,'_dt_header_transparent_bg_opacity','50'),(26716,3654,'_dt_header_disabled_background','normal'),(26717,3654,'_dt_header_disabled_transparent_bg_color_scheme','light'),(26718,3654,'_dt_header_disabled_transparent_top_bar_bg_color','#ffffff'),(26719,3654,'_dt_header_disabled_transparent_top_bar_bg_opacity','25'),(26720,3654,'_dt_header_disabled_transparent_bg_color','#000000'),(26721,3654,'_dt_header_disabled_transparent_bg_opacity','50'),(26722,3654,'_dt_page_overrides_top_margin','1%'),(26723,3654,'_dt_page_overrides_right_margin',''),(26724,3654,'_dt_page_overrides_bottom_margin',''),(26725,3654,'_dt_page_overrides_left_margin',''),(26726,3654,'_dt_mobile_page_padding_top',''),(26727,3654,'_dt_mobile_page_padding_right',''),(26728,3654,'_dt_mobile_page_padding_bottom',''),(26729,3654,'_dt_mobile_page_padding_left',''),(26730,3654,'_dt_fancy_header_layout_heading',''),(26731,3654,'_dt_fancy_header_title_aligment','all_left'),(26732,3654,'_dt_fancy_header_height','140'),(26733,3654,'_dt_fancy_header_padding-top','0px'),(26734,3654,'_dt_fancy_header_padding-bottom','0px'),(26735,3654,'_dt_fancy_header_breadcrumbs_heading',''),(26736,3654,'_dt_fancy_header_breadcrumbs','disabled'),(26737,3654,'_dt_fancy_header_breadcrumbs_text_color','#ffffff'),(26738,3654,'_dt_fancy_header_breadcrumbs_bg_color','disabled'),(26739,3654,'_dt_fancy_header_title_heading',''),(26740,3654,'_dt_fancy_header_title_mode','custom'),(26741,3654,'_dt_fancy_header_title',''),(26742,3654,'_dt_fancy_header_title_font_size','32'),(26743,3654,'_dt_fancy_header_title_line_height','36'),(26744,3654,'_dt_fancy_header_text_transform','none'),(26745,3654,'_dt_fancy_header_title_color_mode','color'),(26746,3654,'_dt_fancy_header_title_color','#079547'),(26747,3654,'_dt_fancy_header_subtitle_heading',''),(26748,3654,'_dt_fancy_header_subtitle',''),(26749,3654,'_dt_fancy_header_subtitle_font_size','24'),(26750,3654,'_dt_fancy_header_subtitle_line_height','26'),(26751,3654,'_dt_fancy_header_subtitle_text_transform','none'),(26752,3654,'_dt_fancy_header_subtitle_color_mode','color'),(26753,3654,'_dt_fancy_header_subtitle_color','#792c8a'),(26754,3654,'_dt_fancy_header_bg_heading',''),(26755,3654,'_dt_fancy_header_bg_color','#ffffff'),(26756,3654,'_dt_fancy_header_bg_image_origin','custom'),(26757,3654,'_dt_fancy_header_bg_image','a:1:{i:0;i:3829;}'),(26758,3654,'_dt_fancy_header_bg_repeat','no-repeat'),(26759,3654,'_dt_fancy_header_bg_position_x','center'),(26760,3654,'_dt_fancy_header_bg_position_y','center'),(26761,3654,'_dt_fancy_header_bg_fullscreen','0'),(26762,3654,'_dt_fancy_header_bg_overlay','0'),(26763,3654,'_dt_fancy_header_overlay_color','#000'),(26764,3654,'_dt_fancy_header_bg_overlay_opacity','50'),(26765,3654,'_dt_fancy_header_scroll_effect','default'),(26766,3654,'_dt_fancy_header_bg_parallax','0.5'),(26767,3654,'_dt_fancy_header_responsiveness_heading',''),(26768,3654,'_dt_fancy_header_responsiveness','enabled'),(26769,3654,'_dt_fancy_header_responsiveness_switch','778px'),(26770,3654,'_dt_fancy_header_responsive_height','140'),(26771,3654,'_dt_fancy_header_responsive_font_size','30'),(26772,3654,'_dt_fancy_header_responsive_title_line_height','38'),(26773,3654,'_dt_fancy_header_responsive_subtitle_font_size','20'),(26774,3654,'_dt_fancy_header_responsive_subtitle_line_height','28'),(26775,3654,'_dt_fancy_header_responsive_breadcrumbs','disabled'),(26776,3654,'the7_fancy_title_css','#main {\n  padding-top: 1%;\n}\n.fancy-header {\n  background-image: url(\'https://farmchemie.yasithawd.com/wp-content/uploads/2023/09/CEVAC-GUMBO-L_300px-1.png\');\n  background-repeat: no-repeat;\n  background-position: center center;\n  background-size: auto auto;\n  background-color: #ffffff;\n}\n.mobile-false .fancy-header {\n  background-attachment: scroll;\n}\n.fancy-header .wf-wrap {\n  min-height: 140px;\n  padding-top: 0px;\n  padding-bottom: 0px;\n}\n.fancy-header .fancy-title {\n  font-size: 32px;\n  line-height: 36px;\n  color: #079547;\n  text-transform: none;\n}\n.fancy-header .fancy-subtitle {\n  font-size: 24px;\n  line-height: 26px;\n  color: #792c8a;\n  text-transform: none;\n}\n.fancy-header .breadcrumbs {\n  color: #ffffff;\n}\n.fancy-header-overlay {\n  background: rgba(0,0,0,0.5);\n}\n@media screen and (max-width: 778px) {\n  .fancy-header .wf-wrap {\n    min-height: 140px;\n  }\n  .fancy-header .fancy-title {\n    font-size: 30px;\n    line-height: 38px;\n  }\n  .fancy-header .fancy-subtitle {\n    font-size: 20px;\n    line-height: 28px;\n  }\n  .fancy-header.breadcrumbs-mobile-off .breadcrumbs {\n    display: none;\n  }\n  #fancy-header > .wf-wrap {\n    flex-flow: column wrap;\n    align-items: center;\n    justify-content: center;\n    padding-bottom: 0px !important;\n  }\n  .fancy-header.title-left .breadcrumbs {\n    text-align: center;\n    float: none;\n  }\n  .breadcrumbs {\n    margin-bottom: 10px;\n  }\n  .breadcrumbs.breadcrumbs-bg {\n    margin-top: 10px;\n  }\n  .fancy-header.title-right .breadcrumbs {\n    margin: 10px 0 10px 0;\n  }\n  #fancy-header .hgroup,\n  #fancy-header .breadcrumbs {\n    text-align: center;\n  }\n  .fancy-header .hgroup {\n    padding-bottom: 5px;\n  }\n  .breadcrumbs-off .hgroup {\n    padding-bottom: 5px;\n  }\n  .title-right .hgroup {\n    padding: 0 0 5px 0;\n  }\n  .title-right.breadcrumbs-off .hgroup {\n    padding-top: 5px;\n  }\n  .title-left.disabled-bg .breadcrumbs {\n    margin-bottom: 0;\n  }\n}\n'),(26777,3654,'_wqoecf_disable_form','no'),(26778,3654,'_edit_lock','1695458289:1'),(26779,3654,'_edit_last','1'),(26780,3655,'total_sales','0'),(26781,3655,'_tax_status','taxable'),(26782,3655,'_tax_class',''),(26783,3655,'_manage_stock','no'),(26784,3655,'_backorders','no'),(26785,3655,'_sold_individually','no'),(26786,3655,'_virtual','no'),(26787,3655,'_downloadable','no'),(26788,3655,'_download_limit','-1'),(26789,3655,'_download_expiry','-1'),(26790,3655,'_thumbnail_id','2866'),(26791,3655,'_stock',NULL),(26792,3655,'_stock_status','instock'),(26793,3655,'_wc_average_rating','0'),(26794,3655,'_wc_review_count','0'),(26795,3655,'_product_attributes','a:1:{s:15:\"pa_product-type\";a:6:{s:4:\"name\";s:15:\"pa_product-type\";s:5:\"value\";s:0:\"\";s:8:\"position\";i:0;s:10:\"is_visible\";i:0;s:12:\"is_variation\";i:0;s:11:\"is_taxonomy\";i:1;}}'),(26796,3655,'_product_version','8.0.2'),(26797,3655,'_dt_sidebar_position','disabled'),(26798,3655,'_dt_sidebar_widgetarea_id','sidebar_1'),(26799,3655,'_dt_sidebar_hide_on_mobile','0'),(26800,3655,'_dt_footer_show','1'),(26801,3655,'_dt_footer_widgetarea_id','sidebar_2'),(26802,3655,'_dt_footer_hide_on_mobile','0'),(26803,3655,'_dt_header_title','fancy'),(26804,3655,'_dt_header_background','normal'),(26805,3655,'_dt_header_background_below_slideshow','disabled'),(26806,3655,'_dt_header_transparent_bg_color_scheme','light'),(26807,3655,'_dt_header_transparent_top_bar_bg_color','#ffffff'),(26808,3655,'_dt_header_transparent_top_bar_bg_opacity','25'),(26809,3655,'_dt_header_transparent_bg_color','#000000'),(26810,3655,'_dt_header_transparent_bg_opacity','50'),(26811,3655,'_dt_header_disabled_background','normal'),(26812,3655,'_dt_header_disabled_transparent_bg_color_scheme','light'),(26813,3655,'_dt_header_disabled_transparent_top_bar_bg_color','#ffffff'),(26814,3655,'_dt_header_disabled_transparent_top_bar_bg_opacity','25'),(26815,3655,'_dt_header_disabled_transparent_bg_color','#000000'),(26816,3655,'_dt_header_disabled_transparent_bg_opacity','50'),(26817,3655,'_dt_page_overrides_top_margin','1%'),(26818,3655,'_dt_page_overrides_right_margin',''),(26819,3655,'_dt_page_overrides_bottom_margin',''),(26820,3655,'_dt_page_overrides_left_margin',''),(26821,3655,'_dt_mobile_page_padding_top',''),(26822,3655,'_dt_mobile_page_padding_right',''),(26823,3655,'_dt_mobile_page_padding_bottom',''),(26824,3655,'_dt_mobile_page_padding_left',''),(26825,3655,'_dt_fancy_header_layout_heading',''),(26826,3655,'_dt_fancy_header_title_aligment','all_left'),(26827,3655,'_dt_fancy_header_height','140'),(26828,3655,'_dt_fancy_header_padding-top','0px'),(26829,3655,'_dt_fancy_header_padding-bottom','0px'),(26830,3655,'_dt_fancy_header_breadcrumbs_heading',''),(26831,3655,'_dt_fancy_header_breadcrumbs','disabled'),(26832,3655,'_dt_fancy_header_breadcrumbs_text_color','#ffffff'),(26833,3655,'_dt_fancy_header_breadcrumbs_bg_color','disabled'),(26834,3655,'_dt_fancy_header_title_heading',''),(26835,3655,'_dt_fancy_header_title_mode','custom'),(26836,3655,'_dt_fancy_header_title',''),(26837,3655,'_dt_fancy_header_title_font_size','32'),(26838,3655,'_dt_fancy_header_title_line_height','36'),(26839,3655,'_dt_fancy_header_text_transform','none'),(26840,3655,'_dt_fancy_header_title_color_mode','color'),(26841,3655,'_dt_fancy_header_title_color','#079547'),(26842,3655,'_dt_fancy_header_subtitle_heading',''),(26843,3655,'_dt_fancy_header_subtitle',''),(26844,3655,'_dt_fancy_header_subtitle_font_size','24'),(26845,3655,'_dt_fancy_header_subtitle_line_height','26'),(26846,3655,'_dt_fancy_header_subtitle_text_transform','none'),(26847,3655,'_dt_fancy_header_subtitle_color_mode','color'),(26848,3655,'_dt_fancy_header_subtitle_color','#792c8a'),(26849,3655,'_dt_fancy_header_bg_heading',''),(26850,3655,'_dt_fancy_header_bg_color','#ffffff'),(26851,3655,'_dt_fancy_header_bg_image_origin','custom'),(26852,3655,'_dt_fancy_header_bg_image','a:1:{i:0;i:3821;}'),(26853,3655,'_dt_fancy_header_bg_repeat','no-repeat'),(26854,3655,'_dt_fancy_header_bg_position_x','center'),(26855,3655,'_dt_fancy_header_bg_position_y','center'),(26856,3655,'_dt_fancy_header_bg_fullscreen','0'),(26857,3655,'_dt_fancy_header_bg_overlay','0'),(26858,3655,'_dt_fancy_header_overlay_color','#000'),(26859,3655,'_dt_fancy_header_bg_overlay_opacity','50'),(26860,3655,'_dt_fancy_header_scroll_effect','default'),(26861,3655,'_dt_fancy_header_bg_parallax','0.5'),(26862,3655,'_dt_fancy_header_responsiveness_heading',''),(26863,3655,'_dt_fancy_header_responsiveness','enabled'),(26864,3655,'_dt_fancy_header_responsiveness_switch','778px'),(26865,3655,'_dt_fancy_header_responsive_height','140'),(26866,3655,'_dt_fancy_header_responsive_font_size','30'),(26867,3655,'_dt_fancy_header_responsive_title_line_height','38'),(26868,3655,'_dt_fancy_header_responsive_subtitle_font_size','20'),(26869,3655,'_dt_fancy_header_responsive_subtitle_line_height','28'),(26870,3655,'_dt_fancy_header_responsive_breadcrumbs','disabled'),(26871,3655,'the7_fancy_title_css','#main {\n  padding-top: 1%;\n}\n.fancy-header {\n  background-image: url(\'https://farmchemie.yasithawd.com/wp-content/uploads/2023/09/CEVAC-IBird_300px-1.png\');\n  background-repeat: no-repeat;\n  background-position: center center;\n  background-size: auto auto;\n  background-color: #ffffff;\n}\n.mobile-false .fancy-header {\n  background-attachment: scroll;\n}\n.fancy-header .wf-wrap {\n  min-height: 140px;\n  padding-top: 0px;\n  padding-bottom: 0px;\n}\n.fancy-header .fancy-title {\n  font-size: 32px;\n  line-height: 36px;\n  color: #079547;\n  text-transform: none;\n}\n.fancy-header .fancy-subtitle {\n  font-size: 24px;\n  line-height: 26px;\n  color: #792c8a;\n  text-transform: none;\n}\n.fancy-header .breadcrumbs {\n  color: #ffffff;\n}\n.fancy-header-overlay {\n  background: rgba(0,0,0,0.5);\n}\n@media screen and (max-width: 778px) {\n  .fancy-header .wf-wrap {\n    min-height: 140px;\n  }\n  .fancy-header .fancy-title {\n    font-size: 30px;\n    line-height: 38px;\n  }\n  .fancy-header .fancy-subtitle {\n    font-size: 20px;\n    line-height: 28px;\n  }\n  .fancy-header.breadcrumbs-mobile-off .breadcrumbs {\n    display: none;\n  }\n  #fancy-header > .wf-wrap {\n    flex-flow: column wrap;\n    align-items: center;\n    justify-content: center;\n    padding-bottom: 0px !important;\n  }\n  .fancy-header.title-left .breadcrumbs {\n    text-align: center;\n    float: none;\n  }\n  .breadcrumbs {\n    margin-bottom: 10px;\n  }\n  .breadcrumbs.breadcrumbs-bg {\n    margin-top: 10px;\n  }\n  .fancy-header.title-right .breadcrumbs {\n    margin: 10px 0 10px 0;\n  }\n  #fancy-header .hgroup,\n  #fancy-header .breadcrumbs {\n    text-align: center;\n  }\n  .fancy-header .hgroup {\n    padding-bottom: 5px;\n  }\n  .breadcrumbs-off .hgroup {\n    padding-bottom: 5px;\n  }\n  .title-right .hgroup {\n    padding: 0 0 5px 0;\n  }\n  .title-right.breadcrumbs-off .hgroup {\n    padding-top: 5px;\n  }\n  .title-left.disabled-bg .breadcrumbs {\n    margin-bottom: 0;\n  }\n}\n'),(26872,3655,'_wqoecf_disable_form','no'),(26873,3655,'_edit_lock','1695456696:1'),(26874,3655,'_edit_last','1'),(26875,3656,'total_sales','0'),(26876,3656,'_tax_status','taxable'),(26877,3656,'_tax_class',''),(26878,3656,'_manage_stock','no'),(26879,3656,'_backorders','no'),(26880,3656,'_sold_individually','no'),(26881,3656,'_virtual','no'),(26882,3656,'_downloadable','no'),(26883,3656,'_download_limit','-1'),(26884,3656,'_download_expiry','-1'),(26972,3658,'_tax_class',''),(26886,3656,'_stock',NULL),(26887,3656,'_stock_status','instock'),(26888,3656,'_wc_average_rating','0'),(26889,3656,'_wc_review_count','0'),(26890,3656,'_product_attributes','a:1:{s:15:\"pa_product-type\";a:6:{s:4:\"name\";s:15:\"pa_product-type\";s:5:\"value\";s:0:\"\";s:8:\"position\";i:0;s:10:\"is_visible\";i:0;s:12:\"is_variation\";i:0;s:11:\"is_taxonomy\";i:1;}}'),(26891,3656,'_product_version','8.0.2'),(26892,3656,'_dt_sidebar_position','disabled'),(26893,3656,'_dt_sidebar_widgetarea_id','sidebar_1'),(26894,3656,'_dt_sidebar_hide_on_mobile','0'),(26895,3656,'_dt_footer_show','1'),(26896,3656,'_dt_footer_widgetarea_id','sidebar_2'),(26897,3656,'_dt_footer_hide_on_mobile','0'),(26898,3656,'_dt_header_title','fancy'),(26899,3656,'_dt_header_background','normal'),(26900,3656,'_dt_header_background_below_slideshow','disabled'),(26901,3656,'_dt_header_transparent_bg_color_scheme','light'),(26902,3656,'_dt_header_transparent_top_bar_bg_color','#ffffff'),(26903,3656,'_dt_header_transparent_top_bar_bg_opacity','25'),(26904,3656,'_dt_header_transparent_bg_color','#000000'),(26905,3656,'_dt_header_transparent_bg_opacity','50'),(26906,3656,'_dt_header_disabled_background','normal'),(26907,3656,'_dt_header_disabled_transparent_bg_color_scheme','light'),(26908,3656,'_dt_header_disabled_transparent_top_bar_bg_color','#ffffff'),(26909,3656,'_dt_header_disabled_transparent_top_bar_bg_opacity','25'),(26910,3656,'_dt_header_disabled_transparent_bg_color','#000000'),(26911,3656,'_dt_header_disabled_transparent_bg_opacity','50'),(26912,3656,'_dt_page_overrides_top_margin','1%'),(26913,3656,'_dt_page_overrides_right_margin',''),(26914,3656,'_dt_page_overrides_bottom_margin',''),(26915,3656,'_dt_page_overrides_left_margin',''),(26916,3656,'_dt_mobile_page_padding_top',''),(26917,3656,'_dt_mobile_page_padding_right',''),(26918,3656,'_dt_mobile_page_padding_bottom',''),(26919,3656,'_dt_mobile_page_padding_left',''),(26920,3656,'_dt_fancy_header_layout_heading',''),(26921,3656,'_dt_fancy_header_title_aligment','all_left'),(26922,3656,'_dt_fancy_header_height','140'),(26923,3656,'_dt_fancy_header_padding-top','0px'),(26924,3656,'_dt_fancy_header_padding-bottom','0px'),(26925,3656,'_dt_fancy_header_breadcrumbs_heading',''),(26926,3656,'_dt_fancy_header_breadcrumbs','disabled'),(26927,3656,'_dt_fancy_header_breadcrumbs_text_color','#ffffff'),(26928,3656,'_dt_fancy_header_breadcrumbs_bg_color','disabled'),(26929,3656,'_dt_fancy_header_title_heading',''),(26930,3656,'_dt_fancy_header_title_mode','custom'),(26931,3656,'_dt_fancy_header_title',''),(26932,3656,'_dt_fancy_header_title_font_size','32'),(26933,3656,'_dt_fancy_header_title_line_height','36'),(26934,3656,'_dt_fancy_header_text_transform','none'),(26935,3656,'_dt_fancy_header_title_color_mode','color'),(26936,3656,'_dt_fancy_header_title_color','#079547'),(26937,3656,'_dt_fancy_header_subtitle_heading',''),(26938,3656,'_dt_fancy_header_subtitle',''),(26939,3656,'_dt_fancy_header_subtitle_font_size','24'),(26940,3656,'_dt_fancy_header_subtitle_line_height','26'),(26941,3656,'_dt_fancy_header_subtitle_text_transform','none'),(26942,3656,'_dt_fancy_header_subtitle_color_mode','color'),(26943,3656,'_dt_fancy_header_subtitle_color','#792c8a'),(26944,3656,'_dt_fancy_header_bg_heading',''),(26945,3656,'_dt_fancy_header_bg_color','#ffffff'),(26946,3656,'_dt_fancy_header_bg_image_origin','custom'),(26947,3656,'_dt_fancy_header_bg_image','a:1:{i:0;i:3792;}'),(26948,3656,'_dt_fancy_header_bg_repeat','no-repeat'),(26949,3656,'_dt_fancy_header_bg_position_x','center'),(26950,3656,'_dt_fancy_header_bg_position_y','center'),(26951,3656,'_dt_fancy_header_bg_fullscreen','0'),(26952,3656,'_dt_fancy_header_bg_overlay','0'),(26953,3656,'_dt_fancy_header_overlay_color','#000'),(26954,3656,'_dt_fancy_header_bg_overlay_opacity','50'),(26955,3656,'_dt_fancy_header_scroll_effect','default'),(26956,3656,'_dt_fancy_header_bg_parallax','0.5'),(26957,3656,'_dt_fancy_header_responsiveness_heading',''),(26958,3656,'_dt_fancy_header_responsiveness','enabled'),(26959,3656,'_dt_fancy_header_responsiveness_switch','778px'),(26960,3656,'_dt_fancy_header_responsive_height','140'),(26961,3656,'_dt_fancy_header_responsive_font_size','30'),(26962,3656,'_dt_fancy_header_responsive_title_line_height','38'),(26963,3656,'_dt_fancy_header_responsive_subtitle_font_size','20'),(26964,3656,'_dt_fancy_header_responsive_subtitle_line_height','28'),(26965,3656,'_dt_fancy_header_responsive_breadcrumbs','disabled'),(26966,3656,'the7_fancy_title_css','#main {\n  padding-top: 1%;\n}\n.fancy-header {\n  background-image: url(\'https://farmchemie.yasithawd.com/wp-content/uploads/2023/09/CEVAC-ND-IB-K_300px.png\');\n  background-repeat: no-repeat;\n  background-position: center center;\n  background-size: auto auto;\n  background-color: #ffffff;\n}\n.mobile-false .fancy-header {\n  background-attachment: scroll;\n}\n.fancy-header .wf-wrap {\n  min-height: 140px;\n  padding-top: 0px;\n  padding-bottom: 0px;\n}\n.fancy-header .fancy-title {\n  font-size: 32px;\n  line-height: 36px;\n  color: #079547;\n  text-transform: none;\n}\n.fancy-header .fancy-subtitle {\n  font-size: 24px;\n  line-height: 26px;\n  color: #792c8a;\n  text-transform: none;\n}\n.fancy-header .breadcrumbs {\n  color: #ffffff;\n}\n.fancy-header-overlay {\n  background: rgba(0,0,0,0.5);\n}\n@media screen and (max-width: 778px) {\n  .fancy-header .wf-wrap {\n    min-height: 140px;\n  }\n  .fancy-header .fancy-title {\n    font-size: 30px;\n    line-height: 38px;\n  }\n  .fancy-header .fancy-subtitle {\n    font-size: 20px;\n    line-height: 28px;\n  }\n  .fancy-header.breadcrumbs-mobile-off .breadcrumbs {\n    display: none;\n  }\n  #fancy-header > .wf-wrap {\n    flex-flow: column wrap;\n    align-items: center;\n    justify-content: center;\n    padding-bottom: 0px !important;\n  }\n  .fancy-header.title-left .breadcrumbs {\n    text-align: center;\n    float: none;\n  }\n  .breadcrumbs {\n    margin-bottom: 10px;\n  }\n  .breadcrumbs.breadcrumbs-bg {\n    margin-top: 10px;\n  }\n  .fancy-header.title-right .breadcrumbs {\n    margin: 10px 0 10px 0;\n  }\n  #fancy-header .hgroup,\n  #fancy-header .breadcrumbs {\n    text-align: center;\n  }\n  .fancy-header .hgroup {\n    padding-bottom: 5px;\n  }\n  .breadcrumbs-off .hgroup {\n    padding-bottom: 5px;\n  }\n  .title-right .hgroup {\n    padding: 0 0 5px 0;\n  }\n  .title-right.breadcrumbs-off .hgroup {\n    padding-top: 5px;\n  }\n  .title-left.disabled-bg .breadcrumbs {\n    margin-bottom: 0;\n  }\n}\n'),(26967,3656,'_wqoecf_disable_form','no'),(26968,3656,'_edit_lock','1695124815:1'),(26969,3656,'_edit_last','1'),(26970,3658,'total_sales','0'),(26971,3658,'_tax_status','taxable'),(26973,3658,'_manage_stock','no'),(26974,3658,'_backorders','no'),(26975,3658,'_sold_individually','no'),(26976,3658,'_virtual','no'),(26977,3658,'_downloadable','no'),(26978,3658,'_download_limit','-1'),(26979,3658,'_download_expiry','-1'),(26980,3658,'_stock',NULL),(26981,3658,'_stock_status','instock'),(26982,3658,'_wc_average_rating','0'),(26983,3658,'_wc_review_count','0'),(26984,3658,'_product_attributes','a:1:{s:15:\"pa_product-type\";a:6:{s:4:\"name\";s:15:\"pa_product-type\";s:5:\"value\";s:0:\"\";s:8:\"position\";i:0;s:10:\"is_visible\";i:0;s:12:\"is_variation\";i:0;s:11:\"is_taxonomy\";i:1;}}'),(26985,3658,'_product_version','8.0.2'),(26986,3658,'_dt_sidebar_position','disabled'),(26987,3658,'_dt_sidebar_widgetarea_id','sidebar_1'),(26988,3658,'_dt_sidebar_hide_on_mobile','0'),(26989,3658,'_dt_footer_show','1'),(26990,3658,'_dt_footer_widgetarea_id','sidebar_2'),(26991,3658,'_dt_footer_hide_on_mobile','0'),(26992,3658,'_dt_header_title','fancy'),(26993,3658,'_dt_header_background','normal'),(26994,3658,'_dt_header_background_below_slideshow','disabled'),(26995,3658,'_dt_header_transparent_bg_color_scheme','light'),(26996,3658,'_dt_header_transparent_top_bar_bg_color','#ffffff'),(26997,3658,'_dt_header_transparent_top_bar_bg_opacity','25'),(26998,3658,'_dt_header_transparent_bg_color','#000000'),(26999,3658,'_dt_header_transparent_bg_opacity','50'),(27000,3658,'_dt_header_disabled_background','normal'),(27001,3658,'_dt_header_disabled_transparent_bg_color_scheme','light'),(27002,3658,'_dt_header_disabled_transparent_top_bar_bg_color','#ffffff'),(27003,3658,'_dt_header_disabled_transparent_top_bar_bg_opacity','25'),(27004,3658,'_dt_header_disabled_transparent_bg_color','#000000'),(27005,3658,'_dt_header_disabled_transparent_bg_opacity','50'),(27006,3658,'_dt_page_overrides_top_margin','1%'),(27007,3658,'_dt_page_overrides_right_margin',''),(27008,3658,'_dt_page_overrides_bottom_margin',''),(27009,3658,'_dt_page_overrides_left_margin',''),(27010,3658,'_dt_mobile_page_padding_top',''),(27011,3658,'_dt_mobile_page_padding_right',''),(27012,3658,'_dt_mobile_page_padding_bottom',''),(27013,3658,'_dt_mobile_page_padding_left',''),(27014,3658,'_dt_fancy_header_layout_heading',''),(27015,3658,'_dt_fancy_header_title_aligment','all_left'),(27016,3658,'_dt_fancy_header_height','140'),(27017,3658,'_dt_fancy_header_padding-top','0px'),(27018,3658,'_dt_fancy_header_padding-bottom','0px'),(27019,3658,'_dt_fancy_header_breadcrumbs_heading',''),(27020,3658,'_dt_fancy_header_breadcrumbs','disabled'),(27021,3658,'_dt_fancy_header_breadcrumbs_text_color','#ffffff'),(27022,3658,'_dt_fancy_header_breadcrumbs_bg_color','disabled'),(27023,3658,'_dt_fancy_header_title_heading',''),(27024,3658,'_dt_fancy_header_title_mode','custom'),(27025,3658,'_dt_fancy_header_title',''),(27026,3658,'_dt_fancy_header_title_font_size','32'),(27027,3658,'_dt_fancy_header_title_line_height','36'),(27028,3658,'_dt_fancy_header_text_transform','none'),(27029,3658,'_dt_fancy_header_title_color_mode','color'),(27030,3658,'_dt_fancy_header_title_color','#079547'),(27031,3658,'_dt_fancy_header_subtitle_heading',''),(27032,3658,'_dt_fancy_header_subtitle',''),(27033,3658,'_dt_fancy_header_subtitle_font_size','24'),(27034,3658,'_dt_fancy_header_subtitle_line_height','26'),(27035,3658,'_dt_fancy_header_subtitle_text_transform','none'),(27036,3658,'_dt_fancy_header_subtitle_color_mode','color'),(27037,3658,'_dt_fancy_header_subtitle_color','#792c8a'),(27038,3658,'_dt_fancy_header_bg_heading',''),(27039,3658,'_dt_fancy_header_bg_color','#ffffff'),(27040,3658,'_dt_fancy_header_bg_image_origin','custom'),(27041,3658,'_dt_fancy_header_bg_image','a:1:{i:0;i:3794;}'),(27042,3658,'_dt_fancy_header_bg_repeat','no-repeat'),(27043,3658,'_dt_fancy_header_bg_position_x','center'),(27044,3658,'_dt_fancy_header_bg_position_y','center'),(27045,3658,'_dt_fancy_header_bg_fullscreen','0'),(27046,3658,'_dt_fancy_header_bg_overlay','0'),(27047,3658,'_dt_fancy_header_overlay_color','#000'),(27048,3658,'_dt_fancy_header_bg_overlay_opacity','50'),(27049,3658,'_dt_fancy_header_scroll_effect','default'),(27050,3658,'_dt_fancy_header_bg_parallax','0.5'),(27051,3658,'_dt_fancy_header_responsiveness_heading',''),(27052,3658,'_dt_fancy_header_responsiveness','enabled'),(27053,3658,'_dt_fancy_header_responsiveness_switch','778px'),(27054,3658,'_dt_fancy_header_responsive_height','140'),(27055,3658,'_dt_fancy_header_responsive_font_size','30'),(27056,3658,'_dt_fancy_header_responsive_title_line_height','38'),(27057,3658,'_dt_fancy_header_responsive_subtitle_font_size','20'),(27058,3658,'_dt_fancy_header_responsive_subtitle_line_height','28'),(27059,3658,'_dt_fancy_header_responsive_breadcrumbs','disabled'),(27060,3658,'the7_fancy_title_css','#main {\n  padding-top: 1%;\n}\n.fancy-header {\n  background-image: url(\'https://farmchemie.yasithawd.com/wp-content/uploads/2023/09/CEVAC-NEW-K_300px.png\');\n  background-repeat: no-repeat;\n  background-position: center center;\n  background-size: auto auto;\n  background-color: #ffffff;\n}\n.mobile-false .fancy-header {\n  background-attachment: scroll;\n}\n.fancy-header .wf-wrap {\n  min-height: 140px;\n  padding-top: 0px;\n  padding-bottom: 0px;\n}\n.fancy-header .fancy-title {\n  font-size: 32px;\n  line-height: 36px;\n  color: #079547;\n  text-transform: none;\n}\n.fancy-header .fancy-subtitle {\n  font-size: 24px;\n  line-height: 26px;\n  color: #792c8a;\n  text-transform: none;\n}\n.fancy-header .breadcrumbs {\n  color: #ffffff;\n}\n.fancy-header-overlay {\n  background: rgba(0,0,0,0.5);\n}\n@media screen and (max-width: 778px) {\n  .fancy-header .wf-wrap {\n    min-height: 140px;\n  }\n  .fancy-header .fancy-title {\n    font-size: 30px;\n    line-height: 38px;\n  }\n  .fancy-header .fancy-subtitle {\n    font-size: 20px;\n    line-height: 28px;\n  }\n  .fancy-header.breadcrumbs-mobile-off .breadcrumbs {\n    display: none;\n  }\n  #fancy-header > .wf-wrap {\n    flex-flow: column wrap;\n    align-items: center;\n    justify-content: center;\n    padding-bottom: 0px !important;\n  }\n  .fancy-header.title-left .breadcrumbs {\n    text-align: center;\n    float: none;\n  }\n  .breadcrumbs {\n    margin-bottom: 10px;\n  }\n  .breadcrumbs.breadcrumbs-bg {\n    margin-top: 10px;\n  }\n  .fancy-header.title-right .breadcrumbs {\n    margin: 10px 0 10px 0;\n  }\n  #fancy-header .hgroup,\n  #fancy-header .breadcrumbs {\n    text-align: center;\n  }\n  .fancy-header .hgroup {\n    padding-bottom: 5px;\n  }\n  .breadcrumbs-off .hgroup {\n    padding-bottom: 5px;\n  }\n  .title-right .hgroup {\n    padding: 0 0 5px 0;\n  }\n  .title-right.breadcrumbs-off .hgroup {\n    padding-top: 5px;\n  }\n  .title-left.disabled-bg .breadcrumbs {\n    margin-bottom: 0;\n  }\n}\n'),(27061,3658,'_wqoecf_disable_form','no'),(27062,3658,'_edit_lock','1695125053:1'),(27063,3658,'_edit_last','1'),(27064,3659,'total_sales','0'),(27065,3659,'_tax_status','taxable'),(27066,3659,'_tax_class',''),(27067,3659,'_manage_stock','no'),(27068,3659,'_backorders','no'),(27069,3659,'_sold_individually','no'),(27070,3659,'_virtual','no'),(27071,3659,'_downloadable','no'),(27072,3659,'_download_limit','-1'),(27073,3659,'_download_expiry','-1'),(27074,3659,'_stock',NULL),(27075,3659,'_stock_status','instock'),(27076,3659,'_wc_average_rating','0'),(27077,3659,'_wc_review_count','0'),(27078,3659,'_product_attributes','a:1:{s:15:\"pa_product-type\";a:6:{s:4:\"name\";s:15:\"pa_product-type\";s:5:\"value\";s:0:\"\";s:8:\"position\";i:0;s:10:\"is_visible\";i:0;s:12:\"is_variation\";i:0;s:11:\"is_taxonomy\";i:1;}}'),(27079,3659,'_product_version','8.0.2'),(27080,3659,'_dt_sidebar_position','disabled'),(27081,3659,'_dt_sidebar_widgetarea_id','sidebar_1'),(27082,3659,'_dt_sidebar_hide_on_mobile','0'),(27083,3659,'_dt_footer_show','1'),(27084,3659,'_dt_footer_widgetarea_id','sidebar_2'),(27085,3659,'_dt_footer_hide_on_mobile','0'),(27086,3659,'_dt_header_title','fancy'),(27087,3659,'_dt_header_background','normal'),(27088,3659,'_dt_header_background_below_slideshow','disabled'),(27089,3659,'_dt_header_transparent_bg_color_scheme','light'),(27090,3659,'_dt_header_transparent_top_bar_bg_color','#ffffff'),(27091,3659,'_dt_header_transparent_top_bar_bg_opacity','25'),(27092,3659,'_dt_header_transparent_bg_color','#000000'),(27093,3659,'_dt_header_transparent_bg_opacity','50'),(27094,3659,'_dt_header_disabled_background','normal'),(27095,3659,'_dt_header_disabled_transparent_bg_color_scheme','light'),(27096,3659,'_dt_header_disabled_transparent_top_bar_bg_color','#ffffff'),(27097,3659,'_dt_header_disabled_transparent_top_bar_bg_opacity','25'),(27098,3659,'_dt_header_disabled_transparent_bg_color','#000000'),(27099,3659,'_dt_header_disabled_transparent_bg_opacity','50'),(27100,3659,'_dt_page_overrides_top_margin','1%'),(27101,3659,'_dt_page_overrides_right_margin',''),(27102,3659,'_dt_page_overrides_bottom_margin',''),(27103,3659,'_dt_page_overrides_left_margin',''),(27104,3659,'_dt_mobile_page_padding_top',''),(27105,3659,'_dt_mobile_page_padding_right',''),(27106,3659,'_dt_mobile_page_padding_bottom',''),(27107,3659,'_dt_mobile_page_padding_left',''),(27108,3659,'_dt_fancy_header_layout_heading',''),(27109,3659,'_dt_fancy_header_title_aligment','all_left'),(27110,3659,'_dt_fancy_header_height','140'),(27111,3659,'_dt_fancy_header_padding-top','0px'),(27112,3659,'_dt_fancy_header_padding-bottom','0px'),(27113,3659,'_dt_fancy_header_breadcrumbs_heading',''),(27114,3659,'_dt_fancy_header_breadcrumbs','disabled'),(27115,3659,'_dt_fancy_header_breadcrumbs_text_color','#ffffff'),(27116,3659,'_dt_fancy_header_breadcrumbs_bg_color','disabled'),(27117,3659,'_dt_fancy_header_title_heading',''),(27118,3659,'_dt_fancy_header_title_mode','custom'),(27119,3659,'_dt_fancy_header_title',''),(27120,3659,'_dt_fancy_header_title_font_size','32'),(27121,3659,'_dt_fancy_header_title_line_height','36'),(27122,3659,'_dt_fancy_header_text_transform','none'),(27123,3659,'_dt_fancy_header_title_color_mode','color'),(27124,3659,'_dt_fancy_header_title_color','#079547'),(27125,3659,'_dt_fancy_header_subtitle_heading',''),(27126,3659,'_dt_fancy_header_subtitle',''),(27127,3659,'_dt_fancy_header_subtitle_font_size','24'),(27128,3659,'_dt_fancy_header_subtitle_line_height','26'),(27129,3659,'_dt_fancy_header_subtitle_text_transform','none'),(27130,3659,'_dt_fancy_header_subtitle_color_mode','color'),(27131,3659,'_dt_fancy_header_subtitle_color','#792c8a'),(27132,3659,'_dt_fancy_header_bg_heading',''),(27133,3659,'_dt_fancy_header_bg_color','#ffffff'),(27134,3659,'_dt_fancy_header_bg_image_origin','custom'),(27135,3659,'_dt_fancy_header_bg_image','a:1:{i:0;i:3822;}'),(27136,3659,'_dt_fancy_header_bg_repeat','no-repeat'),(27137,3659,'_dt_fancy_header_bg_position_x','center'),(27138,3659,'_dt_fancy_header_bg_position_y','center'),(27139,3659,'_dt_fancy_header_bg_fullscreen','0'),(27140,3659,'_dt_fancy_header_bg_overlay','0'),(27141,3659,'_dt_fancy_header_overlay_color','#000'),(27142,3659,'_dt_fancy_header_bg_overlay_opacity','50'),(27143,3659,'_dt_fancy_header_scroll_effect','default'),(27144,3659,'_dt_fancy_header_bg_parallax','0.5'),(27145,3659,'_dt_fancy_header_responsiveness_heading',''),(27146,3659,'_dt_fancy_header_responsiveness','enabled'),(27147,3659,'_dt_fancy_header_responsiveness_switch','778px'),(27148,3659,'_dt_fancy_header_responsive_height','140'),(27149,3659,'_dt_fancy_header_responsive_font_size','30'),(27150,3659,'_dt_fancy_header_responsive_title_line_height','38'),(27151,3659,'_dt_fancy_header_responsive_subtitle_font_size','20'),(27152,3659,'_dt_fancy_header_responsive_subtitle_line_height','28'),(27153,3659,'_dt_fancy_header_responsive_breadcrumbs','disabled'),(27154,3659,'the7_fancy_title_css','#main {\n  padding-top: 1%;\n}\n.fancy-header {\n  background-image: url(\'https://farmchemie.yasithawd.com/wp-content/uploads/2023/09/CEVAC-NEW-L_300px-1.png\');\n  background-repeat: no-repeat;\n  background-position: center center;\n  background-size: auto auto;\n  background-color: #ffffff;\n}\n.mobile-false .fancy-header {\n  background-attachment: scroll;\n}\n.fancy-header .wf-wrap {\n  min-height: 140px;\n  padding-top: 0px;\n  padding-bottom: 0px;\n}\n.fancy-header .fancy-title {\n  font-size: 32px;\n  line-height: 36px;\n  color: #079547;\n  text-transform: none;\n}\n.fancy-header .fancy-subtitle {\n  font-size: 24px;\n  line-height: 26px;\n  color: #792c8a;\n  text-transform: none;\n}\n.fancy-header .breadcrumbs {\n  color: #ffffff;\n}\n.fancy-header-overlay {\n  background: rgba(0,0,0,0.5);\n}\n@media screen and (max-width: 778px) {\n  .fancy-header .wf-wrap {\n    min-height: 140px;\n  }\n  .fancy-header .fancy-title {\n    font-size: 30px;\n    line-height: 38px;\n  }\n  .fancy-header .fancy-subtitle {\n    font-size: 20px;\n    line-height: 28px;\n  }\n  .fancy-header.breadcrumbs-mobile-off .breadcrumbs {\n    display: none;\n  }\n  #fancy-header > .wf-wrap {\n    flex-flow: column wrap;\n    align-items: center;\n    justify-content: center;\n    padding-bottom: 0px !important;\n  }\n  .fancy-header.title-left .breadcrumbs {\n    text-align: center;\n    float: none;\n  }\n  .breadcrumbs {\n    margin-bottom: 10px;\n  }\n  .breadcrumbs.breadcrumbs-bg {\n    margin-top: 10px;\n  }\n  .fancy-header.title-right .breadcrumbs {\n    margin: 10px 0 10px 0;\n  }\n  #fancy-header .hgroup,\n  #fancy-header .breadcrumbs {\n    text-align: center;\n  }\n  .fancy-header .hgroup {\n    padding-bottom: 5px;\n  }\n  .breadcrumbs-off .hgroup {\n    padding-bottom: 5px;\n  }\n  .title-right .hgroup {\n    padding: 0 0 5px 0;\n  }\n  .title-right.breadcrumbs-off .hgroup {\n    padding-top: 5px;\n  }\n  .title-left.disabled-bg .breadcrumbs {\n    margin-bottom: 0;\n  }\n}\n'),(27155,3659,'_wqoecf_disable_form','no'),(27156,3659,'_edit_lock','1695457628:1'),(27157,3659,'_edit_last','1'),(27161,3661,'total_sales','0'),(27162,3661,'_tax_status','taxable'),(27158,3659,'_thumbnail_id','2870'),(27159,3660,'_wpb_shortcodes_custom_css','.vc_custom_1692366072362{margin-top: 35px !important;padding-top: 65px !important;padding-bottom: 100px !important;}.vc_custom_1684836308288{margin-top: 15px !important;}.vc_custom_1693627699480{margin-top: 15px !important;}.vc_custom_1693625624233{margin-top: 15px !important;}.vc_custom_1693625068958{margin-top: 15px !important;}.vc_custom_1692359205466{margin-top: 35px !important;}.vc_custom_1692359216075{margin-top: 35px !important;}.vc_custom_1692359231594{margin-top: 35px !important;}.vc_custom_1692359239274{margin-top: 35px !important;}.vc_custom_1692359246626{margin-top: 35px !important;}.vc_custom_1692422601938{margin-top: 35px !important;}.vc_custom_1692359258634{margin-top: 35px !important;}.vc_custom_1691995519863{background-color: #f4ab20 !important;border: 1px solid #f4ab20 !important;border-radius: 35px !important;}.vc_custom_1691995661095{background-color: #722f8b !important;border: 1px solid #722f8b !important;border-radius: 35px !important;}.vc_custom_1691995661095{background-color: #722f8b !important;border: 1px solid #722f8b !important;border-radius: 35px !important;}.vc_custom_1691995519863{background-color: #f4ab20 !important;border: 1px solid #f4ab20 !important;border-radius: 35px !important;}.vc_custom_1691996718116{border-radius: 35px !important;}.vc_custom_1691995519863{background-color: #f4ab20 !important;border: 1px solid #f4ab20 !important;border-radius: 35px !important;}.vc_custom_1692278922309{border-top-width: 1px !important;border-right-width: 1px !important;border-bottom-width: 1px !important;border-left-width: 1px !important;border-left-color: #059444 !important;border-left-style: solid !important;border-right-color: #059444 !important;border-right-style: solid !important;border-top-color: #059444 !important;border-top-style: solid !important;border-bottom-color: #059444 !important;border-bottom-style: solid !important;border-radius: 1px !important;}.vc_custom_1692278929158{border-top-width: 1px !important;border-right-width: 1px !important;border-bottom-width: 1px !important;border-left-width: 1px !important;border-left-color: #059444 !important;border-left-style: solid !important;border-right-color: #059444 !important;border-right-style: solid !important;border-top-color: #059444 !important;border-top-style: solid !important;border-bottom-color: #059444 !important;border-bottom-style: solid !important;border-radius: 1px !important;}.vc_custom_1692278936750{border-top-width: 1px !important;border-right-width: 1px !important;border-bottom-width: 1px !important;border-left-width: 1px !important;border-left-color: #059444 !important;border-left-style: solid !important;border-right-color: #059444 !important;border-right-style: solid !important;border-top-color: #059444 !important;border-top-style: solid !important;border-bottom-color: #059444 !important;border-bottom-style: solid !important;border-radius: 1px !important;}.vc_custom_1692278922309{border-top-width: 1px !important;border-right-width: 1px !important;border-bottom-width: 1px !important;border-left-width: 1px !important;border-left-color: #059444 !important;border-left-style: solid !important;border-right-color: #059444 !important;border-right-style: solid !important;border-top-color: #059444 !important;border-top-style: solid !important;border-bottom-color: #059444 !important;border-bottom-style: solid !important;border-radius: 1px !important;}.vc_custom_1692278929158{border-top-width: 1px !important;border-right-width: 1px !important;border-bottom-width: 1px !important;border-left-width: 1px !important;border-left-color: #059444 !important;border-left-style: solid !important;border-right-color: #059444 !important;border-right-style: solid !important;border-top-color: #059444 !important;border-top-style: solid !important;border-bottom-color: #059444 !important;border-bottom-style: solid !important;border-radius: 1px !important;}'),(27160,3660,'_wpb_shortcodes_custom_css_updated','1'),(27356,3664,'_tax_class',''),(27357,3664,'_manage_stock','no'),(27358,3664,'_backorders','no'),(27359,3664,'_sold_individually','no'),(27360,3664,'_virtual','no'),(27361,3664,'_downloadable','no'),(27362,3664,'_download_limit','-1'),(27363,3664,'_download_expiry','-1'),(27364,3664,'_thumbnail_id','2861'),(27365,3664,'_stock',NULL),(27366,3664,'_stock_status','instock'),(27367,3664,'_wc_average_rating','0'),(27368,3664,'_wc_review_count','0'),(27369,3664,'_product_attributes','a:1:{s:15:\"pa_product-type\";a:6:{s:4:\"name\";s:15:\"pa_product-type\";s:5:\"value\";s:0:\"\";s:8:\"position\";i:0;s:10:\"is_visible\";i:0;s:12:\"is_variation\";i:0;s:11:\"is_taxonomy\";i:1;}}'),(27370,3664,'_product_version','8.0.2'),(27371,3664,'_dt_sidebar_position','disabled'),(27372,3664,'_dt_sidebar_widgetarea_id','sidebar_1'),(27373,3664,'_dt_sidebar_hide_on_mobile','0'),(27374,3664,'_dt_footer_show','1'),(27375,3664,'_dt_footer_widgetarea_id','sidebar_2'),(27376,3664,'_dt_footer_hide_on_mobile','0'),(27377,3664,'_dt_header_title','fancy'),(27378,3664,'_dt_header_background','normal'),(27379,3664,'_dt_header_background_below_slideshow','disabled'),(27380,3664,'_dt_header_transparent_bg_color_scheme','light'),(27381,3664,'_dt_header_transparent_top_bar_bg_color','#ffffff'),(27382,3664,'_dt_header_transparent_top_bar_bg_opacity','25'),(27383,3664,'_dt_header_transparent_bg_color','#000000'),(27384,3664,'_dt_header_transparent_bg_opacity','50'),(27385,3664,'_dt_header_disabled_background','normal'),(27386,3664,'_dt_header_disabled_transparent_bg_color_scheme','light'),(27387,3664,'_dt_header_disabled_transparent_top_bar_bg_color','#ffffff'),(27388,3664,'_dt_header_disabled_transparent_top_bar_bg_opacity','25'),(27389,3664,'_dt_header_disabled_transparent_bg_color','#000000'),(27390,3664,'_dt_header_disabled_transparent_bg_opacity','50'),(27391,3664,'_dt_page_overrides_top_margin','1%'),(27392,3664,'_dt_page_overrides_right_margin',''),(27393,3664,'_dt_page_overrides_bottom_margin',''),(27394,3664,'_dt_page_overrides_left_margin',''),(27395,3664,'_dt_mobile_page_padding_top',''),(27396,3664,'_dt_mobile_page_padding_right',''),(27397,3664,'_dt_mobile_page_padding_bottom',''),(27398,3664,'_dt_mobile_page_padding_left',''),(27399,3664,'_dt_fancy_header_layout_heading',''),(27400,3664,'_dt_fancy_header_title_aligment','all_left'),(27401,3664,'_dt_fancy_header_height','140'),(27402,3664,'_dt_fancy_header_padding-top','0px'),(27403,3664,'_dt_fancy_header_padding-bottom','0px'),(27404,3664,'_dt_fancy_header_breadcrumbs_heading',''),(27405,3664,'_dt_fancy_header_breadcrumbs','disabled'),(27406,3664,'_dt_fancy_header_breadcrumbs_text_color','#ffffff'),(27407,3664,'_dt_fancy_header_breadcrumbs_bg_color','disabled'),(27408,3664,'_dt_fancy_header_title_heading',''),(27409,3664,'_dt_fancy_header_title_mode','custom'),(27410,3664,'_dt_fancy_header_title',''),(27411,3664,'_dt_fancy_header_title_font_size','32'),(27412,3664,'_dt_fancy_header_title_line_height','36'),(27413,3664,'_dt_fancy_header_text_transform','none'),(27414,3664,'_dt_fancy_header_title_color_mode','color'),(27415,3664,'_dt_fancy_header_title_color','#079547'),(27416,3664,'_dt_fancy_header_subtitle_heading',''),(27417,3664,'_dt_fancy_header_subtitle',''),(27418,3664,'_dt_fancy_header_subtitle_font_size','24'),(27419,3664,'_dt_fancy_header_subtitle_line_height','26'),(27420,3664,'_dt_fancy_header_subtitle_text_transform','none'),(27421,3664,'_dt_fancy_header_subtitle_color_mode','color'),(27422,3664,'_dt_fancy_header_subtitle_color','#792c8a'),(27423,3664,'_dt_fancy_header_bg_heading',''),(27424,3664,'_dt_fancy_header_bg_color','#ffffff'),(27425,3664,'_dt_fancy_header_bg_image_origin','custom'),(27426,3664,'_dt_fancy_header_bg_image','a:1:{i:0;i:3830;}'),(27427,3664,'_dt_fancy_header_bg_repeat','no-repeat'),(27428,3664,'_dt_fancy_header_bg_position_x','center'),(27429,3664,'_dt_fancy_header_bg_position_y','center'),(27430,3664,'_dt_fancy_header_bg_fullscreen','0'),(27257,3662,'total_sales','0'),(27258,3662,'_tax_status','taxable'),(27259,3662,'_tax_class',''),(27260,3662,'_manage_stock','no'),(27261,3662,'_backorders','no'),(27262,3662,'_sold_individually','no'),(27263,3662,'_virtual','no'),(27264,3662,'_downloadable','no'),(27265,3662,'_download_limit','-1'),(27266,3662,'_download_expiry','-1'),(27267,3662,'_thumbnail_id','2874'),(27268,3662,'_stock',NULL),(27269,3662,'_stock_status','instock'),(27270,3662,'_wc_average_rating','0'),(27271,3662,'_wc_review_count','0'),(27272,3662,'_product_attributes','a:1:{s:15:\"pa_product-type\";a:6:{s:4:\"name\";s:15:\"pa_product-type\";s:5:\"value\";s:0:\"\";s:8:\"position\";i:0;s:10:\"is_visible\";i:0;s:12:\"is_variation\";i:0;s:11:\"is_taxonomy\";i:1;}}'),(27273,3662,'_product_version','8.0.2'),(27274,3662,'_dt_sidebar_position','disabled'),(27275,3662,'_dt_sidebar_widgetarea_id','sidebar_1'),(27276,3662,'_dt_sidebar_hide_on_mobile','0'),(27277,3662,'_dt_footer_show','1'),(27278,3662,'_dt_footer_widgetarea_id','sidebar_2'),(27279,3662,'_dt_footer_hide_on_mobile','0'),(27280,3662,'_dt_header_title','fancy'),(27281,3662,'_dt_header_background','normal'),(27282,3662,'_dt_header_background_below_slideshow','disabled'),(27283,3662,'_dt_header_transparent_bg_color_scheme','light'),(27284,3662,'_dt_header_transparent_top_bar_bg_color','#ffffff'),(27285,3662,'_dt_header_transparent_top_bar_bg_opacity','25'),(27286,3662,'_dt_header_transparent_bg_color','#000000'),(27287,3662,'_dt_header_transparent_bg_opacity','50'),(27288,3662,'_dt_header_disabled_background','normal'),(27289,3662,'_dt_header_disabled_transparent_bg_color_scheme','light'),(27290,3662,'_dt_header_disabled_transparent_top_bar_bg_color','#ffffff'),(27291,3662,'_dt_header_disabled_transparent_top_bar_bg_opacity','25'),(27292,3662,'_dt_header_disabled_transparent_bg_color','#000000'),(27293,3662,'_dt_header_disabled_transparent_bg_opacity','50'),(27294,3662,'_dt_page_overrides_top_margin','1%'),(27295,3662,'_dt_page_overrides_right_margin',''),(27296,3662,'_dt_page_overrides_bottom_margin',''),(27297,3662,'_dt_page_overrides_left_margin',''),(27298,3662,'_dt_mobile_page_padding_top',''),(27299,3662,'_dt_mobile_page_padding_right',''),(27300,3662,'_dt_mobile_page_padding_bottom',''),(27301,3662,'_dt_mobile_page_padding_left',''),(27302,3662,'_dt_fancy_header_layout_heading',''),(27303,3662,'_dt_fancy_header_title_aligment','all_left'),(27304,3662,'_dt_fancy_header_height','140'),(27305,3662,'_dt_fancy_header_padding-top','0px'),(27306,3662,'_dt_fancy_header_padding-bottom','0px'),(27307,3662,'_dt_fancy_header_breadcrumbs_heading',''),(27308,3662,'_dt_fancy_header_breadcrumbs','disabled'),(27309,3662,'_dt_fancy_header_breadcrumbs_text_color','#ffffff'),(27310,3662,'_dt_fancy_header_breadcrumbs_bg_color','disabled'),(27311,3662,'_dt_fancy_header_title_heading',''),(27312,3662,'_dt_fancy_header_title_mode','custom'),(27313,3662,'_dt_fancy_header_title',''),(27314,3662,'_dt_fancy_header_title_font_size','32'),(27315,3662,'_dt_fancy_header_title_line_height','36'),(27316,3662,'_dt_fancy_header_text_transform','none'),(27317,3662,'_dt_fancy_header_title_color_mode','color'),(27318,3662,'_dt_fancy_header_title_color','#079547'),(27319,3662,'_dt_fancy_header_subtitle_heading',''),(27320,3662,'_dt_fancy_header_subtitle',''),(27321,3662,'_dt_fancy_header_subtitle_font_size','24'),(27322,3662,'_dt_fancy_header_subtitle_line_height','26'),(27323,3662,'_dt_fancy_header_subtitle_text_transform','none'),(27324,3662,'_dt_fancy_header_subtitle_color_mode','color'),(27325,3662,'_dt_fancy_header_subtitle_color','#792c8a'),(27326,3662,'_dt_fancy_header_bg_heading',''),(27327,3662,'_dt_fancy_header_bg_color','#ffffff'),(27328,3662,'_dt_fancy_header_bg_image_origin','custom'),(27329,3662,'_dt_fancy_header_bg_image','a:1:{i:0;i:3895;}'),(27330,3662,'_dt_fancy_header_bg_repeat','no-repeat'),(27331,3662,'_dt_fancy_header_bg_position_x','center'),(27332,3662,'_dt_fancy_header_bg_position_y','center'),(27333,3662,'_dt_fancy_header_bg_fullscreen','0'),(27334,3662,'_dt_fancy_header_bg_overlay','0'),(27335,3662,'_dt_fancy_header_overlay_color','#000'),(27336,3662,'_dt_fancy_header_bg_overlay_opacity','50'),(27337,3662,'_dt_fancy_header_scroll_effect','default'),(27338,3662,'_dt_fancy_header_bg_parallax','0.5'),(27339,3662,'_dt_fancy_header_responsiveness_heading',''),(27340,3662,'_dt_fancy_header_responsiveness','enabled'),(27341,3662,'_dt_fancy_header_responsiveness_switch','778px'),(27342,3662,'_dt_fancy_header_responsive_height','140'),(27343,3662,'_dt_fancy_header_responsive_font_size','30'),(27344,3662,'_dt_fancy_header_responsive_title_line_height','38'),(27345,3662,'_dt_fancy_header_responsive_subtitle_font_size','20'),(27346,3662,'_dt_fancy_header_responsive_subtitle_line_height','28'),(27347,3662,'_dt_fancy_header_responsive_breadcrumbs','disabled'),(27348,3662,'the7_fancy_title_css','#main {\n  padding-top: 1%;\n}\n.fancy-header {\n  background-image: url(\'https://farmchemie.yasithawd.com/wp-content/uploads/2023/09/CEVAC-VITABORN-L_300px-2.png\');\n  background-repeat: no-repeat;\n  background-position: center center;\n  background-size: auto auto;\n  background-color: #ffffff;\n}\n.mobile-false .fancy-header {\n  background-attachment: scroll;\n}\n.fancy-header .wf-wrap {\n  min-height: 140px;\n  padding-top: 0px;\n  padding-bottom: 0px;\n}\n.fancy-header .fancy-title {\n  font-size: 32px;\n  line-height: 36px;\n  color: #079547;\n  text-transform: none;\n}\n.fancy-header .fancy-subtitle {\n  font-size: 24px;\n  line-height: 26px;\n  color: #792c8a;\n  text-transform: none;\n}\n.fancy-header .breadcrumbs {\n  color: #ffffff;\n}\n.fancy-header-overlay {\n  background: rgba(0,0,0,0.5);\n}\n@media screen and (max-width: 778px) {\n  .fancy-header .wf-wrap {\n    min-height: 140px;\n  }\n  .fancy-header .fancy-title {\n    font-size: 30px;\n    line-height: 38px;\n  }\n  .fancy-header .fancy-subtitle {\n    font-size: 20px;\n    line-height: 28px;\n  }\n  .fancy-header.breadcrumbs-mobile-off .breadcrumbs {\n    display: none;\n  }\n  #fancy-header > .wf-wrap {\n    flex-flow: column wrap;\n    align-items: center;\n    justify-content: center;\n    padding-bottom: 0px !important;\n  }\n  .fancy-header.title-left .breadcrumbs {\n    text-align: center;\n    float: none;\n  }\n  .breadcrumbs {\n    margin-bottom: 10px;\n  }\n  .breadcrumbs.breadcrumbs-bg {\n    margin-top: 10px;\n  }\n  .fancy-header.title-right .breadcrumbs {\n    margin: 10px 0 10px 0;\n  }\n  #fancy-header .hgroup,\n  #fancy-header .breadcrumbs {\n    text-align: center;\n  }\n  .fancy-header .hgroup {\n    padding-bottom: 5px;\n  }\n  .breadcrumbs-off .hgroup {\n    padding-bottom: 5px;\n  }\n  .title-right .hgroup {\n    padding: 0 0 5px 0;\n  }\n  .title-right.breadcrumbs-off .hgroup {\n    padding-top: 5px;\n  }\n  .title-left.disabled-bg .breadcrumbs {\n    margin-bottom: 0;\n  }\n}\n'),(27349,3662,'_wqoecf_disable_form','no'),(27350,3662,'_edit_lock','1695537075:1'),(27351,3662,'_edit_last','1'),(27354,3664,'total_sales','0'),(27355,3664,'_tax_status','taxable'),(27352,3663,'_wpb_shortcodes_custom_css','.vc_custom_1692366072362{margin-top: 35px !important;padding-top: 65px !important;padding-bottom: 100px !important;}.vc_custom_1684836308288{margin-top: 15px !important;}.vc_custom_1693627699480{margin-top: 15px !important;}.vc_custom_1693625624233{margin-top: 15px !important;}.vc_custom_1693625068958{margin-top: 15px !important;}.vc_custom_1692359205466{margin-top: 35px !important;}.vc_custom_1692359216075{margin-top: 35px !important;}.vc_custom_1692359231594{margin-top: 35px !important;}.vc_custom_1692359239274{margin-top: 35px !important;}.vc_custom_1692359246626{margin-top: 35px !important;}.vc_custom_1692422601938{margin-top: 35px !important;}.vc_custom_1692359258634{margin-top: 35px !important;}.vc_custom_1691995519863{background-color: #f4ab20 !important;border: 1px solid #f4ab20 !important;border-radius: 35px !important;}.vc_custom_1691995661095{background-color: #722f8b !important;border: 1px solid #722f8b !important;border-radius: 35px !important;}.vc_custom_1691995661095{background-color: #722f8b !important;border: 1px solid #722f8b !important;border-radius: 35px !important;}.vc_custom_1691995519863{background-color: #f4ab20 !important;border: 1px solid #f4ab20 !important;border-radius: 35px !important;}.vc_custom_1691996718116{border-radius: 35px !important;}.vc_custom_1691995519863{background-color: #f4ab20 !important;border: 1px solid #f4ab20 !important;border-radius: 35px !important;}.vc_custom_1692278922309{border-top-width: 1px !important;border-right-width: 1px !important;border-bottom-width: 1px !important;border-left-width: 1px !important;border-left-color: #059444 !important;border-left-style: solid !important;border-right-color: #059444 !important;border-right-style: solid !important;border-top-color: #059444 !important;border-top-style: solid !important;border-bottom-color: #059444 !important;border-bottom-style: solid !important;border-radius: 1px !important;}.vc_custom_1692278929158{border-top-width: 1px !important;border-right-width: 1px !important;border-bottom-width: 1px !important;border-left-width: 1px !important;border-left-color: #059444 !important;border-left-style: solid !important;border-right-color: #059444 !important;border-right-style: solid !important;border-top-color: #059444 !important;border-top-style: solid !important;border-bottom-color: #059444 !important;border-bottom-style: solid !important;border-radius: 1px !important;}.vc_custom_1692278936750{border-top-width: 1px !important;border-right-width: 1px !important;border-bottom-width: 1px !important;border-left-width: 1px !important;border-left-color: #059444 !important;border-left-style: solid !important;border-right-color: #059444 !important;border-right-style: solid !important;border-top-color: #059444 !important;border-top-style: solid !important;border-bottom-color: #059444 !important;border-bottom-style: solid !important;border-radius: 1px !important;}.vc_custom_1692278922309{border-top-width: 1px !important;border-right-width: 1px !important;border-bottom-width: 1px !important;border-left-width: 1px !important;border-left-color: #059444 !important;border-left-style: solid !important;border-right-color: #059444 !important;border-right-style: solid !important;border-top-color: #059444 !important;border-top-style: solid !important;border-bottom-color: #059444 !important;border-bottom-style: solid !important;border-radius: 1px !important;}.vc_custom_1692278929158{border-top-width: 1px !important;border-right-width: 1px !important;border-bottom-width: 1px !important;border-left-width: 1px !important;border-left-color: #059444 !important;border-left-style: solid !important;border-right-color: #059444 !important;border-right-style: solid !important;border-top-color: #059444 !important;border-top-style: solid !important;border-bottom-color: #059444 !important;border-bottom-style: solid !important;border-radius: 1px !important;}'),(27353,3663,'_wpb_shortcodes_custom_css_updated','1'),(27543,3666,'_wqoecf_disable_form','no'),(27544,3666,'_edit_lock','1694887269:1'),(27545,3666,'_edit_last','1'),(27546,2633,'_wpb_shortcodes_custom_css_updated','1'),(28576,3815,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1300;s:6:\"height\";i:300;s:4:\"file\";s:26:\"2023/09/FEED-ADDITIVES.gif\";s:8:\"filesize\";i:272214;s:5:\"sizes\";a:7:{s:6:\"medium\";a:5:{s:4:\"file\";s:25:\"FEED-ADDITIVES-300x69.gif\";s:5:\"width\";i:300;s:6:\"height\";i:69;s:9:\"mime-type\";s:9:\"image/gif\";s:8:\"filesize\";i:15293;}s:5:\"large\";a:5:{s:4:\"file\";s:27:\"FEED-ADDITIVES-1024x236.gif\";s:5:\"width\";i:1024;s:6:\"height\";i:236;s:9:\"mime-type\";s:9:\"image/gif\";s:8:\"filesize\";i:151699;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:26:\"FEED-ADDITIVES-150x150.gif\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/gif\";s:8:\"filesize\";i:16867;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:26:\"FEED-ADDITIVES-768x177.gif\";s:5:\"width\";i:768;s:6:\"height\";i:177;s:9:\"mime-type\";s:9:\"image/gif\";s:8:\"filesize\";i:86683;}s:21:\"woocommerce_thumbnail\";a:6:{s:4:\"file\";s:26:\"FEED-ADDITIVES-300x300.gif\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/gif\";s:8:\"filesize\";i:44945;s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:5:{s:4:\"file\";s:26:\"FEED-ADDITIVES-600x138.gif\";s:5:\"width\";i:600;s:6:\"height\";i:138;s:9:\"mime-type\";s:9:\"image/gif\";s:8:\"filesize\";i:53525;}s:29:\"woocommerce_gallery_thumbnail\";a:5:{s:4:\"file\";s:26:\"FEED-ADDITIVES-200x200.gif\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/gif\";s:8:\"filesize\";i:27910;}}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:{}}}'),(28577,3816,'_wp_attached_file','2023/09/Trimethosulfa_600px-x-600px.png'),(28578,3816,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:600;s:6:\"height\";i:600;s:4:\"file\";s:39:\"2023/09/Trimethosulfa_600px-x-600px.png\";s:8:\"filesize\";i:64289;s:5:\"sizes\";a:4:{s:6:\"medium\";a:5:{s:4:\"file\";s:39:\"Trimethosulfa_600px-x-600px-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:51480;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:39:\"Trimethosulfa_600px-x-600px-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:14695;}s:21:\"woocommerce_thumbnail\";a:6:{s:4:\"file\";s:39:\"Trimethosulfa_600px-x-600px-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:51480;s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:5:{s:4:\"file\";s:39:\"Trimethosulfa_600px-x-600px-200x200.png\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:24403;}}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:{}}}'),(28579,3817,'_wp_attached_file','2023/09/Trimethosulfa_300px.png'),(28580,3817,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:300;s:6:\"height\";i:50;s:4:\"file\";s:31:\"2023/09/Trimethosulfa_300px.png\";s:8:\"filesize\";i:3793;s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:30:\"Trimethosulfa_300px-150x50.png\";s:5:\"width\";i:150;s:6:\"height\";i:50;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:3355;}s:29:\"woocommerce_gallery_thumbnail\";a:5:{s:4:\"file\";s:30:\"Trimethosulfa_300px-200x50.png\";s:5:\"width\";i:200;s:6:\"height\";i:50;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:4051;}}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:{}}}'),(28622,3838,'_wp_attached_file','2023/09/Rentol-10_300px.png'),(28623,3838,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:300;s:6:\"height\";i:50;s:4:\"file\";s:27:\"2023/09/Rentol-10_300px.png\";s:8:\"filesize\";i:3465;s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:26:\"Rentol-10_300px-150x50.png\";s:5:\"width\";i:150;s:6:\"height\";i:50;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:1411;}s:29:\"woocommerce_gallery_thumbnail\";a:5:{s:4:\"file\";s:26:\"Rentol-10_300px-200x50.png\";s:5:\"width\";i:200;s:6:\"height\";i:50;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:1814;}}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:{}}}'),(28624,3839,'_wp_attached_file','2023/09/Rentol-10_600px-x-600px.png'),(28625,3839,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:600;s:6:\"height\";i:600;s:4:\"file\";s:35:\"2023/09/Rentol-10_600px-x-600px.png\";s:8:\"filesize\";i:230446;s:5:\"sizes\";a:4:{s:6:\"medium\";a:5:{s:4:\"file\";s:35:\"Rentol-10_600px-x-600px-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:58473;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:35:\"Rentol-10_600px-x-600px-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:17518;}s:21:\"woocommerce_thumbnail\";a:6:{s:4:\"file\";s:35:\"Rentol-10_600px-x-600px-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:58473;s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:5:{s:4:\"file\";s:35:\"Rentol-10_600px-x-600px-200x200.png\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:28711;}}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:{}}}'),(28626,3840,'_wp_attached_file','2023/09/Calci_Gel_600px-x-600px.png'),(28627,3840,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:600;s:6:\"height\";i:600;s:4:\"file\";s:35:\"2023/09/Calci_Gel_600px-x-600px.png\";s:8:\"filesize\";i:62453;s:5:\"sizes\";a:4:{s:6:\"medium\";a:5:{s:4:\"file\";s:35:\"Calci_Gel_600px-x-600px-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:17670;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:35:\"Calci_Gel_600px-x-600px-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:5492;}s:21:\"woocommerce_thumbnail\";a:6:{s:4:\"file\";s:35:\"Calci_Gel_600px-x-600px-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:17670;s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:5:{s:4:\"file\";s:35:\"Calci_Gel_600px-x-600px-200x200.png\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:8952;}}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:{}}}'),(28628,3841,'_wp_attached_file','2023/09/Calci_Gel_300px.png'),(28629,3841,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:300;s:6:\"height\";i:120;s:4:\"file\";s:27:\"2023/09/Calci_Gel_300px.png\";s:8:\"filesize\";i:10096;s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:27:\"Calci_Gel_300px-150x120.png\";s:5:\"width\";i:150;s:6:\"height\";i:120;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:9680;}s:29:\"woocommerce_gallery_thumbnail\";a:5:{s:4:\"file\";s:27:\"Calci_Gel_300px-200x120.png\";s:5:\"width\";i:200;s:6:\"height\";i:120;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:9781;}}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:{}}}'),(28649,3850,'_wp_attached_file','2023/09/Calci_Gel_600px-x-600px-1.png'),(28630,3628,'_thumbnail_id','3850'),(28631,3842,'_wp_attached_file','2023/09/LEVERM®-600_300px.png'),(28632,3842,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:600;s:6:\"height\";i:600;s:4:\"file\";s:30:\"2023/09/LEVERM®-600_300px.png\";s:8:\"filesize\";i:230768;s:5:\"sizes\";a:4:{s:6:\"medium\";a:5:{s:4:\"file\";s:30:\"LEVERM®-600_300px-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:55832;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:30:\"LEVERM®-600_300px-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:17928;}s:21:\"woocommerce_thumbnail\";a:6:{s:4:\"file\";s:30:\"LEVERM®-600_300px-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:55832;s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:5:{s:4:\"file\";s:30:\"LEVERM®-600_300px-200x200.png\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:28283;}}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:{}}}'),(28633,3843,'_wp_attached_file','2023/09/LEVERM®-600-Tab_300px.png'),(28634,3843,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:300;s:6:\"height\";i:50;s:4:\"file\";s:34:\"2023/09/LEVERM®-600-Tab_300px.png\";s:8:\"filesize\";i:4201;s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:33:\"LEVERM®-600-Tab_300px-150x50.png\";s:5:\"width\";i:150;s:6:\"height\";i:50;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:1512;}s:29:\"woocommerce_gallery_thumbnail\";a:5:{s:4:\"file\";s:33:\"LEVERM®-600-Tab_300px-200x50.png\";s:5:\"width\";i:200;s:6:\"height\";i:50;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:1927;}}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:{}}}'),(28635,3844,'_wp_attached_file','2023/09/LEVERM®-3000-Bolus_300px.png'),(28636,3844,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:300;s:6:\"height\";i:50;s:4:\"file\";s:37:\"2023/09/LEVERM®-3000-Bolus_300px.png\";s:8:\"filesize\";i:4801;s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:36:\"LEVERM®-3000-Bolus_300px-150x50.png\";s:5:\"width\";i:150;s:6:\"height\";i:50;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:1814;}s:29:\"woocommerce_gallery_thumbnail\";a:5:{s:4:\"file\";s:36:\"LEVERM®-3000-Bolus_300px-200x50.png\";s:5:\"width\";i:200;s:6:\"height\";i:50;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:2270;}}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:{}}}'),(28637,3845,'_wp_attached_file','2023/09/LEVERM®-3000-Bolus_600px-x-600px.png'),(28638,3845,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:600;s:6:\"height\";i:600;s:4:\"file\";s:45:\"2023/09/LEVERM®-3000-Bolus_600px-x-600px.png\";s:8:\"filesize\";i:247972;s:5:\"sizes\";a:4:{s:6:\"medium\";a:5:{s:4:\"file\";s:45:\"LEVERM®-3000-Bolus_600px-x-600px-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:63638;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:45:\"LEVERM®-3000-Bolus_600px-x-600px-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:20660;}s:21:\"woocommerce_thumbnail\";a:6:{s:4:\"file\";s:45:\"LEVERM®-3000-Bolus_600px-x-600px-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:63638;s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:5:{s:4:\"file\";s:45:\"LEVERM®-3000-Bolus_600px-x-600px-200x200.png\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:32768;}}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:{}}}'),(28640,3846,'_wp_attached_file','2023/09/Lev-Ox-2400-BOLUS_300px.png'),(28639,3664,'_wp_old_slug','cevitc-fp-l-with-diluent-and-applicator'),(28641,3846,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:300;s:6:\"height\";i:50;s:4:\"file\";s:35:\"2023/09/Lev-Ox-2400-BOLUS_300px.png\";s:8:\"filesize\";i:4702;s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:34:\"Lev-Ox-2400-BOLUS_300px-150x50.png\";s:5:\"width\";i:150;s:6:\"height\";i:50;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:1661;}s:29:\"woocommerce_gallery_thumbnail\";a:5:{s:4:\"file\";s:34:\"Lev-Ox-2400-BOLUS_300px-200x50.png\";s:5:\"width\";i:200;s:6:\"height\";i:50;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:2231;}}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:{}}}'),(27548,2633,'_wp_trash_meta_status','publish'),(27549,2633,'_wp_trash_meta_time','1694695878'),(27550,2633,'_wp_desired_post_slug','about-us'),(27551,2621,'_wp_trash_meta_status','draft'),(27552,2621,'_wp_trash_meta_time','1694695887'),(27553,2621,'_wp_desired_post_slug',''),(27554,2439,'_wp_trash_meta_status','private'),(27555,2439,'_wp_trash_meta_time','1694695895'),(27556,2439,'_wp_desired_post_slug','facebook-demo-customizer'),(27557,3669,'_edit_last','1'),(27558,3669,'_edit_lock','1694699731:1'),(27559,3670,'total_sales','0'),(27560,3670,'_tax_status','taxable'),(27561,3670,'_tax_class',''),(27562,3670,'_manage_stock','no'),(27563,3670,'_backorders','no'),(27564,3670,'_sold_individually','no'),(27565,3670,'_virtual','no'),(27566,3670,'_downloadable','no'),(27567,3670,'_download_limit','-1'),(27568,3670,'_download_expiry','-1'),(27656,3671,'_tax_class',''),(27570,3670,'_stock',NULL),(27571,3670,'_stock_status','instock'),(27572,3670,'_wc_average_rating','0'),(27573,3670,'_wc_review_count','0'),(27574,3670,'_product_attributes','a:1:{s:15:\"pa_product-type\";a:6:{s:4:\"name\";s:15:\"pa_product-type\";s:5:\"value\";s:0:\"\";s:8:\"position\";i:0;s:10:\"is_visible\";i:0;s:12:\"is_variation\";i:0;s:11:\"is_taxonomy\";i:1;}}'),(27575,3670,'_product_version','8.0.2'),(27576,3670,'_dt_sidebar_position','disabled'),(27577,3670,'_dt_sidebar_widgetarea_id','sidebar_1'),(27578,3670,'_dt_sidebar_hide_on_mobile','0'),(27579,3670,'_dt_footer_show','1'),(27580,3670,'_dt_footer_widgetarea_id','sidebar_2'),(27581,3670,'_dt_footer_hide_on_mobile','0'),(27582,3670,'_dt_header_title','fancy'),(27583,3670,'_dt_header_background','normal'),(27584,3670,'_dt_header_background_below_slideshow','disabled'),(27585,3670,'_dt_header_transparent_bg_color_scheme','light'),(27586,3670,'_dt_header_transparent_top_bar_bg_color','#ffffff'),(27587,3670,'_dt_header_transparent_top_bar_bg_opacity','25'),(27588,3670,'_dt_header_transparent_bg_color','#000000'),(27589,3670,'_dt_header_transparent_bg_opacity','50'),(27590,3670,'_dt_header_disabled_background','normal'),(27591,3670,'_dt_header_disabled_transparent_bg_color_scheme','light'),(27592,3670,'_dt_header_disabled_transparent_top_bar_bg_color','#ffffff'),(27593,3670,'_dt_header_disabled_transparent_top_bar_bg_opacity','25'),(27594,3670,'_dt_header_disabled_transparent_bg_color','#000000'),(27595,3670,'_dt_header_disabled_transparent_bg_opacity','50'),(27596,3670,'_dt_page_overrides_top_margin','1%'),(27597,3670,'_dt_page_overrides_right_margin',''),(27598,3670,'_dt_page_overrides_bottom_margin',''),(27599,3670,'_dt_page_overrides_left_margin',''),(27600,3670,'_dt_mobile_page_padding_top',''),(27601,3670,'_dt_mobile_page_padding_right',''),(27602,3670,'_dt_mobile_page_padding_bottom',''),(27603,3670,'_dt_mobile_page_padding_left',''),(27604,3670,'_dt_fancy_header_layout_heading',''),(27605,3670,'_dt_fancy_header_title_aligment','all_left'),(27606,3670,'_dt_fancy_header_height','140'),(27607,3670,'_dt_fancy_header_padding-top','0px'),(27608,3670,'_dt_fancy_header_padding-bottom','0px'),(27609,3670,'_dt_fancy_header_breadcrumbs_heading',''),(27610,3670,'_dt_fancy_header_breadcrumbs','disabled'),(27611,3670,'_dt_fancy_header_breadcrumbs_text_color','#ffffff'),(27612,3670,'_dt_fancy_header_breadcrumbs_bg_color','disabled'),(27613,3670,'_dt_fancy_header_title_heading',''),(27614,3670,'_dt_fancy_header_title_mode','custom'),(27615,3670,'_dt_fancy_header_title',''),(27616,3670,'_dt_fancy_header_title_font_size','32'),(27617,3670,'_dt_fancy_header_title_line_height','36'),(27618,3670,'_dt_fancy_header_text_transform','none'),(27619,3670,'_dt_fancy_header_title_color_mode','color'),(27620,3670,'_dt_fancy_header_title_color','#079547'),(27621,3670,'_dt_fancy_header_subtitle_heading',''),(27622,3670,'_dt_fancy_header_subtitle',''),(27623,3670,'_dt_fancy_header_subtitle_font_size','24'),(27624,3670,'_dt_fancy_header_subtitle_line_height','26'),(27625,3670,'_dt_fancy_header_subtitle_text_transform','none'),(27626,3670,'_dt_fancy_header_subtitle_color_mode','color'),(27627,3670,'_dt_fancy_header_subtitle_color','#792c8a'),(27628,3670,'_dt_fancy_header_bg_heading',''),(27629,3670,'_dt_fancy_header_bg_color','#ffffff'),(27630,3670,'_dt_fancy_header_bg_image_origin','custom'),(27631,3670,'_dt_fancy_header_bg_image','a:0:{}'),(27632,3670,'_dt_fancy_header_bg_repeat','no-repeat'),(27633,3670,'_dt_fancy_header_bg_position_x','center'),(27634,3670,'_dt_fancy_header_bg_position_y','center'),(27635,3670,'_dt_fancy_header_bg_fullscreen','0'),(27636,3670,'_dt_fancy_header_bg_overlay','0'),(27637,3670,'_dt_fancy_header_overlay_color','#000'),(27638,3670,'_dt_fancy_header_bg_overlay_opacity','50'),(27639,3670,'_dt_fancy_header_scroll_effect','default'),(27640,3670,'_dt_fancy_header_bg_parallax','0.5'),(27641,3670,'_dt_fancy_header_responsiveness_heading',''),(27642,3670,'_dt_fancy_header_responsiveness','enabled'),(27643,3670,'_dt_fancy_header_responsiveness_switch','778px'),(27644,3670,'_dt_fancy_header_responsive_height','140'),(27645,3670,'_dt_fancy_header_responsive_font_size','30'),(27646,3670,'_dt_fancy_header_responsive_title_line_height','38'),(27647,3670,'_dt_fancy_header_responsive_subtitle_font_size','20'),(27648,3670,'_dt_fancy_header_responsive_subtitle_line_height','28'),(27649,3670,'_dt_fancy_header_responsive_breadcrumbs','disabled'),(27650,3670,'the7_fancy_title_css','#main {\n  padding-top: 1%;\n}\n.fancy-header {\n  background-image: none;\n  background-repeat: no-repeat;\n  background-position: center center;\n  background-size: auto auto;\n  background-color: #ffffff;\n}\n.mobile-false .fancy-header {\n  background-attachment: scroll;\n}\n.fancy-header .wf-wrap {\n  min-height: 140px;\n  padding-top: 0px;\n  padding-bottom: 0px;\n}\n.fancy-header .fancy-title {\n  font-size: 32px;\n  line-height: 36px;\n  color: #079547;\n  text-transform: none;\n}\n.fancy-header .fancy-subtitle {\n  font-size: 24px;\n  line-height: 26px;\n  color: #792c8a;\n  text-transform: none;\n}\n.fancy-header .breadcrumbs {\n  color: #ffffff;\n}\n.fancy-header-overlay {\n  background: rgba(0,0,0,0.5);\n}\n@media screen and (max-width: 778px) {\n  .fancy-header .wf-wrap {\n    min-height: 140px;\n  }\n  .fancy-header .fancy-title {\n    font-size: 30px;\n    line-height: 38px;\n  }\n  .fancy-header .fancy-subtitle {\n    font-size: 20px;\n    line-height: 28px;\n  }\n  .fancy-header.breadcrumbs-mobile-off .breadcrumbs {\n    display: none;\n  }\n  #fancy-header > .wf-wrap {\n    flex-flow: column wrap;\n    align-items: center;\n    justify-content: center;\n    padding-bottom: 0px !important;\n  }\n  .fancy-header.title-left .breadcrumbs {\n    text-align: center;\n    float: none;\n  }\n  .breadcrumbs {\n    margin-bottom: 10px;\n  }\n  .breadcrumbs.breadcrumbs-bg {\n    margin-top: 10px;\n  }\n  .fancy-header.title-right .breadcrumbs {\n    margin: 10px 0 10px 0;\n  }\n  #fancy-header .hgroup,\n  #fancy-header .breadcrumbs {\n    text-align: center;\n  }\n  .fancy-header .hgroup {\n    padding-bottom: 5px;\n  }\n  .breadcrumbs-off .hgroup {\n    padding-bottom: 5px;\n  }\n  .title-right .hgroup {\n    padding: 0 0 5px 0;\n  }\n  .title-right.breadcrumbs-off .hgroup {\n    padding-top: 5px;\n  }\n  .title-left.disabled-bg .breadcrumbs {\n    margin-bottom: 0;\n  }\n}\n'),(27651,3670,'_wqoecf_disable_form','no'),(27652,3670,'_edit_lock','1695526803:1'),(27654,3671,'total_sales','0'),(27655,3671,'_tax_status','taxable'),(27653,3670,'_edit_last','1'),(27657,3671,'_manage_stock','no'),(27658,3671,'_backorders','no'),(27659,3671,'_sold_individually','no'),(27660,3671,'_virtual','no'),(27661,3671,'_downloadable','no'),(27662,3671,'_download_limit','-1'),(27663,3671,'_download_expiry','-1'),(27664,3671,'_stock',NULL),(27665,3671,'_stock_status','instock'),(27666,3671,'_wc_average_rating','0'),(27667,3671,'_wc_review_count','0'),(27668,3671,'_product_attributes','a:1:{s:15:\"pa_product-type\";a:6:{s:4:\"name\";s:15:\"pa_product-type\";s:5:\"value\";s:0:\"\";s:8:\"position\";i:0;s:10:\"is_visible\";i:0;s:12:\"is_variation\";i:0;s:11:\"is_taxonomy\";i:1;}}'),(27669,3671,'_product_version','8.0.2'),(27670,3671,'_dt_sidebar_position','disabled'),(27671,3671,'_dt_sidebar_widgetarea_id','sidebar_1'),(27672,3671,'_dt_sidebar_hide_on_mobile','0'),(27673,3671,'_dt_footer_show','1'),(27674,3671,'_dt_footer_widgetarea_id','sidebar_2'),(27675,3671,'_dt_footer_hide_on_mobile','0'),(27676,3671,'_dt_header_title','fancy'),(27677,3671,'_dt_header_background','normal'),(27678,3671,'_dt_header_background_below_slideshow','disabled'),(27679,3671,'_dt_header_transparent_bg_color_scheme','light'),(27680,3671,'_dt_header_transparent_top_bar_bg_color','#ffffff'),(27681,3671,'_dt_header_transparent_top_bar_bg_opacity','25'),(27682,3671,'_dt_header_transparent_bg_color','#000000'),(27683,3671,'_dt_header_transparent_bg_opacity','50'),(27684,3671,'_dt_header_disabled_background','normal'),(27685,3671,'_dt_header_disabled_transparent_bg_color_scheme','light'),(27686,3671,'_dt_header_disabled_transparent_top_bar_bg_color','#ffffff'),(27687,3671,'_dt_header_disabled_transparent_top_bar_bg_opacity','25'),(27688,3671,'_dt_header_disabled_transparent_bg_color','#000000'),(27689,3671,'_dt_header_disabled_transparent_bg_opacity','50'),(27690,3671,'_dt_page_overrides_top_margin','1%'),(27691,3671,'_dt_page_overrides_right_margin',''),(27692,3671,'_dt_page_overrides_bottom_margin',''),(27693,3671,'_dt_page_overrides_left_margin',''),(27694,3671,'_dt_mobile_page_padding_top',''),(27695,3671,'_dt_mobile_page_padding_right',''),(27696,3671,'_dt_mobile_page_padding_bottom',''),(27697,3671,'_dt_mobile_page_padding_left',''),(27698,3671,'_dt_fancy_header_layout_heading',''),(27699,3671,'_dt_fancy_header_title_aligment','all_left'),(27700,3671,'_dt_fancy_header_height','140'),(27701,3671,'_dt_fancy_header_padding-top','0px'),(27702,3671,'_dt_fancy_header_padding-bottom','0px'),(27703,3671,'_dt_fancy_header_breadcrumbs_heading',''),(27704,3671,'_dt_fancy_header_breadcrumbs','disabled'),(27705,3671,'_dt_fancy_header_breadcrumbs_text_color','#ffffff'),(27706,3671,'_dt_fancy_header_breadcrumbs_bg_color','disabled'),(27707,3671,'_dt_fancy_header_title_heading',''),(27708,3671,'_dt_fancy_header_title_mode','custom'),(27709,3671,'_dt_fancy_header_title',''),(27710,3671,'_dt_fancy_header_title_font_size','32'),(27711,3671,'_dt_fancy_header_title_line_height','36'),(27712,3671,'_dt_fancy_header_text_transform','none'),(27713,3671,'_dt_fancy_header_title_color_mode','color'),(27714,3671,'_dt_fancy_header_title_color','#079547'),(27715,3671,'_dt_fancy_header_subtitle_heading',''),(27716,3671,'_dt_fancy_header_subtitle',''),(27717,3671,'_dt_fancy_header_subtitle_font_size','24'),(27718,3671,'_dt_fancy_header_subtitle_line_height','26'),(27719,3671,'_dt_fancy_header_subtitle_text_transform','none'),(27720,3671,'_dt_fancy_header_subtitle_color_mode','color'),(27721,3671,'_dt_fancy_header_subtitle_color','#792c8a'),(27722,3671,'_dt_fancy_header_bg_heading',''),(27723,3671,'_dt_fancy_header_bg_color','#ffffff'),(27724,3671,'_dt_fancy_header_bg_image_origin','custom'),(27725,3671,'_dt_fancy_header_bg_image','a:1:{i:0;i:3770;}'),(27726,3671,'_dt_fancy_header_bg_repeat','no-repeat'),(27727,3671,'_dt_fancy_header_bg_position_x','center'),(27728,3671,'_dt_fancy_header_bg_position_y','center'),(27729,3671,'_dt_fancy_header_bg_fullscreen','0'),(27730,3671,'_dt_fancy_header_bg_overlay','0'),(27731,3671,'_dt_fancy_header_overlay_color','#000'),(27732,3671,'_dt_fancy_header_bg_overlay_opacity','50'),(27733,3671,'_dt_fancy_header_scroll_effect','default'),(27734,3671,'_dt_fancy_header_bg_parallax','0.5'),(27735,3671,'_dt_fancy_header_responsiveness_heading',''),(27736,3671,'_dt_fancy_header_responsiveness','enabled'),(27737,3671,'_dt_fancy_header_responsiveness_switch','778px'),(27738,3671,'_dt_fancy_header_responsive_height','140'),(27739,3671,'_dt_fancy_header_responsive_font_size','30'),(27740,3671,'_dt_fancy_header_responsive_title_line_height','38'),(27741,3671,'_dt_fancy_header_responsive_subtitle_font_size','20'),(27742,3671,'_dt_fancy_header_responsive_subtitle_line_height','28'),(27743,3671,'_dt_fancy_header_responsive_breadcrumbs','disabled'),(27744,3671,'the7_fancy_title_css','#main {\n  padding-top: 1%;\n}\n.fancy-header {\n  background-image: url(\'https://farmchemie.yasithawd.com/wp-content/uploads/2023/09/Poximune_300px.png\');\n  background-repeat: no-repeat;\n  background-position: center center;\n  background-size: auto auto;\n  background-color: #ffffff;\n}\n.mobile-false .fancy-header {\n  background-attachment: scroll;\n}\n.fancy-header .wf-wrap {\n  min-height: 140px;\n  padding-top: 0px;\n  padding-bottom: 0px;\n}\n.fancy-header .fancy-title {\n  font-size: 32px;\n  line-height: 36px;\n  color: #079547;\n  text-transform: none;\n}\n.fancy-header .fancy-subtitle {\n  font-size: 24px;\n  line-height: 26px;\n  color: #792c8a;\n  text-transform: none;\n}\n.fancy-header .breadcrumbs {\n  color: #ffffff;\n}\n.fancy-header-overlay {\n  background: rgba(0,0,0,0.5);\n}\n@media screen and (max-width: 778px) {\n  .fancy-header .wf-wrap {\n    min-height: 140px;\n  }\n  .fancy-header .fancy-title {\n    font-size: 30px;\n    line-height: 38px;\n  }\n  .fancy-header .fancy-subtitle {\n    font-size: 20px;\n    line-height: 28px;\n  }\n  .fancy-header.breadcrumbs-mobile-off .breadcrumbs {\n    display: none;\n  }\n  #fancy-header > .wf-wrap {\n    flex-flow: column wrap;\n    align-items: center;\n    justify-content: center;\n    padding-bottom: 0px !important;\n  }\n  .fancy-header.title-left .breadcrumbs {\n    text-align: center;\n    float: none;\n  }\n  .breadcrumbs {\n    margin-bottom: 10px;\n  }\n  .breadcrumbs.breadcrumbs-bg {\n    margin-top: 10px;\n  }\n  .fancy-header.title-right .breadcrumbs {\n    margin: 10px 0 10px 0;\n  }\n  #fancy-header .hgroup,\n  #fancy-header .breadcrumbs {\n    text-align: center;\n  }\n  .fancy-header .hgroup {\n    padding-bottom: 5px;\n  }\n  .breadcrumbs-off .hgroup {\n    padding-bottom: 5px;\n  }\n  .title-right .hgroup {\n    padding: 0 0 5px 0;\n  }\n  .title-right.breadcrumbs-off .hgroup {\n    padding-top: 5px;\n  }\n  .title-left.disabled-bg .breadcrumbs {\n    margin-bottom: 0;\n  }\n}\n'),(27745,3671,'_wqoecf_disable_form','no'),(27746,3671,'_edit_lock','1694878306:1'),(27747,3671,'_edit_last','1'),(27749,3672,'total_sales','0'),(27750,3672,'_tax_status','taxable'),(27748,3671,'_thumbnail_id','3769'),(27751,3672,'_tax_class',''),(27752,3672,'_manage_stock','no'),(27753,3672,'_backorders','no'),(27754,3672,'_sold_individually','no'),(27755,3672,'_virtual','no'),(27756,3672,'_downloadable','no'),(27757,3672,'_download_limit','-1'),(27758,3672,'_download_expiry','-1'),(27759,3672,'_thumbnail_id','3767'),(27760,3672,'_stock',NULL),(27761,3672,'_stock_status','instock'),(27762,3672,'_wc_average_rating','0'),(27763,3672,'_wc_review_count','0'),(27764,3672,'_product_attributes','a:1:{s:15:\"pa_product-type\";a:6:{s:4:\"name\";s:15:\"pa_product-type\";s:5:\"value\";s:0:\"\";s:8:\"position\";i:0;s:10:\"is_visible\";i:0;s:12:\"is_variation\";i:0;s:11:\"is_taxonomy\";i:1;}}'),(27765,3672,'_product_version','8.0.2'),(27766,3672,'_dt_sidebar_position','disabled'),(27767,3672,'_dt_sidebar_widgetarea_id','sidebar_1'),(27768,3672,'_dt_sidebar_hide_on_mobile','0'),(27769,3672,'_dt_footer_show','1'),(27770,3672,'_dt_footer_widgetarea_id','sidebar_2'),(27771,3672,'_dt_footer_hide_on_mobile','0'),(27772,3672,'_dt_header_title','fancy'),(27773,3672,'_dt_header_background','normal'),(27774,3672,'_dt_header_background_below_slideshow','disabled'),(27775,3672,'_dt_header_transparent_bg_color_scheme','light'),(27776,3672,'_dt_header_transparent_top_bar_bg_color','#ffffff'),(27777,3672,'_dt_header_transparent_top_bar_bg_opacity','25'),(27778,3672,'_dt_header_transparent_bg_color','#000000'),(27779,3672,'_dt_header_transparent_bg_opacity','50'),(27780,3672,'_dt_header_disabled_background','normal'),(27781,3672,'_dt_header_disabled_transparent_bg_color_scheme','light'),(27782,3672,'_dt_header_disabled_transparent_top_bar_bg_color','#ffffff'),(27783,3672,'_dt_header_disabled_transparent_top_bar_bg_opacity','25'),(27784,3672,'_dt_header_disabled_transparent_bg_color','#000000'),(27785,3672,'_dt_header_disabled_transparent_bg_opacity','50'),(27786,3672,'_dt_page_overrides_top_margin','1%'),(27787,3672,'_dt_page_overrides_right_margin',''),(27788,3672,'_dt_page_overrides_bottom_margin',''),(27789,3672,'_dt_page_overrides_left_margin',''),(27790,3672,'_dt_mobile_page_padding_top',''),(27791,3672,'_dt_mobile_page_padding_right',''),(27792,3672,'_dt_mobile_page_padding_bottom',''),(27793,3672,'_dt_mobile_page_padding_left',''),(27794,3672,'_dt_fancy_header_layout_heading',''),(27795,3672,'_dt_fancy_header_title_aligment','all_left'),(27796,3672,'_dt_fancy_header_height','140'),(27797,3672,'_dt_fancy_header_padding-top','0px'),(27798,3672,'_dt_fancy_header_padding-bottom','0px'),(27799,3672,'_dt_fancy_header_breadcrumbs_heading',''),(27800,3672,'_dt_fancy_header_breadcrumbs','disabled'),(27801,3672,'_dt_fancy_header_breadcrumbs_text_color','#ffffff'),(27802,3672,'_dt_fancy_header_breadcrumbs_bg_color','disabled'),(27803,3672,'_dt_fancy_header_title_heading',''),(27804,3672,'_dt_fancy_header_title_mode','custom'),(27805,3672,'_dt_fancy_header_title',''),(27806,3672,'_dt_fancy_header_title_font_size','32'),(27807,3672,'_dt_fancy_header_title_line_height','36'),(27808,3672,'_dt_fancy_header_text_transform','none'),(27809,3672,'_dt_fancy_header_title_color_mode','color'),(27810,3672,'_dt_fancy_header_title_color','#079547'),(27811,3672,'_dt_fancy_header_subtitle_heading',''),(27812,3672,'_dt_fancy_header_subtitle',''),(27813,3672,'_dt_fancy_header_subtitle_font_size','24'),(27814,3672,'_dt_fancy_header_subtitle_line_height','26'),(27815,3672,'_dt_fancy_header_subtitle_text_transform','none'),(27816,3672,'_dt_fancy_header_subtitle_color_mode','color'),(27817,3672,'_dt_fancy_header_subtitle_color','#792c8a'),(27818,3672,'_dt_fancy_header_bg_heading',''),(27819,3672,'_dt_fancy_header_bg_color','#ffffff'),(27820,3672,'_dt_fancy_header_bg_image_origin','custom'),(27821,3672,'_dt_fancy_header_bg_image','a:1:{i:0;i:3768;}'),(27822,3672,'_dt_fancy_header_bg_repeat','no-repeat'),(27823,3672,'_dt_fancy_header_bg_position_x','center'),(27824,3672,'_dt_fancy_header_bg_position_y','center'),(27825,3672,'_dt_fancy_header_bg_fullscreen','0'),(27826,3672,'_dt_fancy_header_bg_overlay','0'),(27827,3672,'_dt_fancy_header_overlay_color','#000'),(27828,3672,'_dt_fancy_header_bg_overlay_opacity','50'),(27829,3672,'_dt_fancy_header_scroll_effect','default'),(27830,3672,'_dt_fancy_header_bg_parallax','0.5'),(27831,3672,'_dt_fancy_header_responsiveness_heading',''),(27832,3672,'_dt_fancy_header_responsiveness','enabled'),(27833,3672,'_dt_fancy_header_responsiveness_switch','778px'),(27834,3672,'_dt_fancy_header_responsive_height','140'),(27835,3672,'_dt_fancy_header_responsive_font_size','30'),(27836,3672,'_dt_fancy_header_responsive_title_line_height','38'),(27837,3672,'_dt_fancy_header_responsive_subtitle_font_size','20'),(27838,3672,'_dt_fancy_header_responsive_subtitle_line_height','28'),(27839,3672,'_dt_fancy_header_responsive_breadcrumbs','disabled'),(27840,3672,'the7_fancy_title_css','#main {\n  padding-top: 1%;\n}\n.fancy-header {\n  background-image: url(\'https://farmchemie.yasithawd.com/wp-content/uploads/2023/09/REOMUNE-3_300px.png\');\n  background-repeat: no-repeat;\n  background-position: center center;\n  background-size: auto auto;\n  background-color: #ffffff;\n}\n.mobile-false .fancy-header {\n  background-attachment: scroll;\n}\n.fancy-header .wf-wrap {\n  min-height: 140px;\n  padding-top: 0px;\n  padding-bottom: 0px;\n}\n.fancy-header .fancy-title {\n  font-size: 32px;\n  line-height: 36px;\n  color: #079547;\n  text-transform: none;\n}\n.fancy-header .fancy-subtitle {\n  font-size: 24px;\n  line-height: 26px;\n  color: #792c8a;\n  text-transform: none;\n}\n.fancy-header .breadcrumbs {\n  color: #ffffff;\n}\n.fancy-header-overlay {\n  background: rgba(0,0,0,0.5);\n}\n@media screen and (max-width: 778px) {\n  .fancy-header .wf-wrap {\n    min-height: 140px;\n  }\n  .fancy-header .fancy-title {\n    font-size: 30px;\n    line-height: 38px;\n  }\n  .fancy-header .fancy-subtitle {\n    font-size: 20px;\n    line-height: 28px;\n  }\n  .fancy-header.breadcrumbs-mobile-off .breadcrumbs {\n    display: none;\n  }\n  #fancy-header > .wf-wrap {\n    flex-flow: column wrap;\n    align-items: center;\n    justify-content: center;\n    padding-bottom: 0px !important;\n  }\n  .fancy-header.title-left .breadcrumbs {\n    text-align: center;\n    float: none;\n  }\n  .breadcrumbs {\n    margin-bottom: 10px;\n  }\n  .breadcrumbs.breadcrumbs-bg {\n    margin-top: 10px;\n  }\n  .fancy-header.title-right .breadcrumbs {\n    margin: 10px 0 10px 0;\n  }\n  #fancy-header .hgroup,\n  #fancy-header .breadcrumbs {\n    text-align: center;\n  }\n  .fancy-header .hgroup {\n    padding-bottom: 5px;\n  }\n  .breadcrumbs-off .hgroup {\n    padding-bottom: 5px;\n  }\n  .title-right .hgroup {\n    padding: 0 0 5px 0;\n  }\n  .title-right.breadcrumbs-off .hgroup {\n    padding-top: 5px;\n  }\n  .title-left.disabled-bg .breadcrumbs {\n    margin-bottom: 0;\n  }\n}\n'),(27841,3672,'_wqoecf_disable_form','no'),(27842,3672,'_edit_lock','1695476061:2'),(27843,3672,'_edit_last','1'),(27844,3673,'total_sales','0'),(27845,3673,'_tax_status','taxable'),(27846,3673,'_tax_class',''),(27847,3673,'_manage_stock','no'),(27848,3673,'_backorders','no'),(27849,3673,'_sold_individually','no'),(27850,3673,'_virtual','no'),(27851,3673,'_downloadable','no'),(27852,3673,'_download_limit','-1'),(27853,3673,'_download_expiry','-1'),(27939,3674,'_wpb_shortcodes_custom_css','.vc_custom_1692366072362{margin-top: 35px !important;padding-top: 65px !important;padding-bottom: 100px !important;}.vc_custom_1684836308288{margin-top: 15px !important;}.vc_custom_1693627699480{margin-top: 15px !important;}.vc_custom_1693625624233{margin-top: 15px !important;}.vc_custom_1693625068958{margin-top: 15px !important;}.vc_custom_1692359205466{margin-top: 35px !important;}.vc_custom_1692359216075{margin-top: 35px !important;}.vc_custom_1692359231594{margin-top: 35px !important;}.vc_custom_1692359239274{margin-top: 35px !important;}.vc_custom_1692359246626{margin-top: 35px !important;}.vc_custom_1692422601938{margin-top: 35px !important;}.vc_custom_1692359258634{margin-top: 35px !important;}.vc_custom_1691995519863{background-color: #f4ab20 !important;border: 1px solid #f4ab20 !important;border-radius: 35px !important;}.vc_custom_1691995661095{background-color: #722f8b !important;border: 1px solid #722f8b !important;border-radius: 35px !important;}.vc_custom_1691995661095{background-color: #722f8b !important;border: 1px solid #722f8b !important;border-radius: 35px !important;}.vc_custom_1691995519863{background-color: #f4ab20 !important;border: 1px solid #f4ab20 !important;border-radius: 35px !important;}.vc_custom_1691996718116{border-radius: 35px !important;}.vc_custom_1691995519863{background-color: #f4ab20 !important;border: 1px solid #f4ab20 !important;border-radius: 35px !important;}.vc_custom_1694697209111{padding-right: 10px !important;padding-left: 10px !important;}.vc_custom_1692278922309{border-top-width: 1px !important;border-right-width: 1px !important;border-bottom-width: 1px !important;border-left-width: 1px !important;border-left-color: #059444 !important;border-left-style: solid !important;border-right-color: #059444 !important;border-right-style: solid !important;border-top-color: #059444 !important;border-top-style: solid !important;border-bottom-color: #059444 !important;border-bottom-style: solid !important;border-radius: 1px !important;}.vc_custom_1692278929158{border-top-width: 1px !important;border-right-width: 1px !important;border-bottom-width: 1px !important;border-left-width: 1px !important;border-left-color: #059444 !important;border-left-style: solid !important;border-right-color: #059444 !important;border-right-style: solid !important;border-top-color: #059444 !important;border-top-style: solid !important;border-bottom-color: #059444 !important;border-bottom-style: solid !important;border-radius: 1px !important;}.vc_custom_1692278936750{border-top-width: 1px !important;border-right-width: 1px !important;border-bottom-width: 1px !important;border-left-width: 1px !important;border-left-color: #059444 !important;border-left-style: solid !important;border-right-color: #059444 !important;border-right-style: solid !important;border-top-color: #059444 !important;border-top-style: solid !important;border-bottom-color: #059444 !important;border-bottom-style: solid !important;border-radius: 1px !important;}.vc_custom_1692278922309{border-top-width: 1px !important;border-right-width: 1px !important;border-bottom-width: 1px !important;border-left-width: 1px !important;border-left-color: #059444 !important;border-left-style: solid !important;border-right-color: #059444 !important;border-right-style: solid !important;border-top-color: #059444 !important;border-top-style: solid !important;border-bottom-color: #059444 !important;border-bottom-style: solid !important;border-radius: 1px !important;}.vc_custom_1692278929158{border-top-width: 1px !important;border-right-width: 1px !important;border-bottom-width: 1px !important;border-left-width: 1px !important;border-left-color: #059444 !important;border-left-style: solid !important;border-right-color: #059444 !important;border-right-style: solid !important;border-top-color: #059444 !important;border-top-style: solid !important;border-bottom-color: #059444 !important;border-bottom-style: solid !important;border-radius: 1px !important;}'),(27855,3673,'_stock',NULL),(27856,3673,'_stock_status','instock'),(27857,3673,'_wc_average_rating','0'),(27858,3673,'_wc_review_count','0'),(27859,3673,'_product_attributes','a:1:{s:15:\"pa_product-type\";a:6:{s:4:\"name\";s:15:\"pa_product-type\";s:5:\"value\";s:0:\"\";s:8:\"position\";i:0;s:10:\"is_visible\";i:0;s:12:\"is_variation\";i:0;s:11:\"is_taxonomy\";i:1;}}'),(27860,3673,'_product_version','8.0.2'),(27861,3673,'_dt_sidebar_position','disabled'),(27862,3673,'_dt_sidebar_widgetarea_id','sidebar_1'),(27863,3673,'_dt_sidebar_hide_on_mobile','0'),(27864,3673,'_dt_footer_show','1'),(27865,3673,'_dt_footer_widgetarea_id','sidebar_2'),(27866,3673,'_dt_footer_hide_on_mobile','0'),(27867,3673,'_dt_header_title','fancy'),(27868,3673,'_dt_header_background','normal'),(27869,3673,'_dt_header_background_below_slideshow','disabled'),(27870,3673,'_dt_header_transparent_bg_color_scheme','light'),(27871,3673,'_dt_header_transparent_top_bar_bg_color','#ffffff'),(27872,3673,'_dt_header_transparent_top_bar_bg_opacity','25'),(27873,3673,'_dt_header_transparent_bg_color','#000000'),(27874,3673,'_dt_header_transparent_bg_opacity','50'),(27875,3673,'_dt_header_disabled_background','normal'),(27876,3673,'_dt_header_disabled_transparent_bg_color_scheme','light'),(27877,3673,'_dt_header_disabled_transparent_top_bar_bg_color','#ffffff'),(27878,3673,'_dt_header_disabled_transparent_top_bar_bg_opacity','25'),(27879,3673,'_dt_header_disabled_transparent_bg_color','#000000'),(27880,3673,'_dt_header_disabled_transparent_bg_opacity','50'),(27881,3673,'_dt_page_overrides_top_margin','1%'),(27882,3673,'_dt_page_overrides_right_margin',''),(27883,3673,'_dt_page_overrides_bottom_margin',''),(27884,3673,'_dt_page_overrides_left_margin',''),(27885,3673,'_dt_mobile_page_padding_top',''),(27886,3673,'_dt_mobile_page_padding_right',''),(27887,3673,'_dt_mobile_page_padding_bottom',''),(27888,3673,'_dt_mobile_page_padding_left',''),(27889,3673,'_dt_fancy_header_layout_heading',''),(27890,3673,'_dt_fancy_header_title_aligment','all_left'),(27891,3673,'_dt_fancy_header_height','140'),(27892,3673,'_dt_fancy_header_padding-top','0px'),(27893,3673,'_dt_fancy_header_padding-bottom','0px'),(27894,3673,'_dt_fancy_header_breadcrumbs_heading',''),(27895,3673,'_dt_fancy_header_breadcrumbs','disabled'),(27896,3673,'_dt_fancy_header_breadcrumbs_text_color','#ffffff'),(27897,3673,'_dt_fancy_header_breadcrumbs_bg_color','disabled'),(27898,3673,'_dt_fancy_header_title_heading',''),(27899,3673,'_dt_fancy_header_title_mode','custom'),(27900,3673,'_dt_fancy_header_title',''),(27901,3673,'_dt_fancy_header_title_font_size','32'),(27902,3673,'_dt_fancy_header_title_line_height','36'),(27903,3673,'_dt_fancy_header_text_transform','none'),(27904,3673,'_dt_fancy_header_title_color_mode','color'),(27905,3673,'_dt_fancy_header_title_color','#079547'),(27906,3673,'_dt_fancy_header_subtitle_heading',''),(27907,3673,'_dt_fancy_header_subtitle',''),(27908,3673,'_dt_fancy_header_subtitle_font_size','24'),(27909,3673,'_dt_fancy_header_subtitle_line_height','26'),(27910,3673,'_dt_fancy_header_subtitle_text_transform','none'),(27911,3673,'_dt_fancy_header_subtitle_color_mode','color'),(27912,3673,'_dt_fancy_header_subtitle_color','#792c8a'),(27913,3673,'_dt_fancy_header_bg_heading',''),(27914,3673,'_dt_fancy_header_bg_color','#ffffff'),(27915,3673,'_dt_fancy_header_bg_image_origin','custom'),(27916,3673,'_dt_fancy_header_bg_image','a:1:{i:0;i:3897;}'),(27917,3673,'_dt_fancy_header_bg_repeat','no-repeat'),(27918,3673,'_dt_fancy_header_bg_position_x','center'),(27919,3673,'_dt_fancy_header_bg_position_y','center'),(27920,3673,'_dt_fancy_header_bg_fullscreen','0'),(27921,3673,'_dt_fancy_header_bg_overlay','0'),(27922,3673,'_dt_fancy_header_overlay_color','#000'),(27923,3673,'_dt_fancy_header_bg_overlay_opacity','50'),(27924,3673,'_dt_fancy_header_scroll_effect','default'),(27925,3673,'_dt_fancy_header_bg_parallax','0.5'),(27926,3673,'_dt_fancy_header_responsiveness_heading',''),(27927,3673,'_dt_fancy_header_responsiveness','enabled'),(27928,3673,'_dt_fancy_header_responsiveness_switch','778px'),(27929,3673,'_dt_fancy_header_responsive_height','140'),(27930,3673,'_dt_fancy_header_responsive_font_size','30'),(27931,3673,'_dt_fancy_header_responsive_title_line_height','38'),(27932,3673,'_dt_fancy_header_responsive_subtitle_font_size','20'),(27933,3673,'_dt_fancy_header_responsive_subtitle_line_height','28'),(27934,3673,'_dt_fancy_header_responsive_breadcrumbs','disabled'),(27935,3673,'the7_fancy_title_css','#main {\n  padding-top: 1%;\n}\n.fancy-header {\n  background-image: url(\'https://farmchemie.yasithawd.com/wp-content/uploads/2023/09/VECTROMUNE-FP-–-MG_300px-1.png\');\n  background-repeat: no-repeat;\n  background-position: center center;\n  background-size: auto auto;\n  background-color: #ffffff;\n}\n.mobile-false .fancy-header {\n  background-attachment: scroll;\n}\n.fancy-header .wf-wrap {\n  min-height: 140px;\n  padding-top: 0px;\n  padding-bottom: 0px;\n}\n.fancy-header .fancy-title {\n  font-size: 32px;\n  line-height: 36px;\n  color: #079547;\n  text-transform: none;\n}\n.fancy-header .fancy-subtitle {\n  font-size: 24px;\n  line-height: 26px;\n  color: #792c8a;\n  text-transform: none;\n}\n.fancy-header .breadcrumbs {\n  color: #ffffff;\n}\n.fancy-header-overlay {\n  background: rgba(0,0,0,0.5);\n}\n@media screen and (max-width: 778px) {\n  .fancy-header .wf-wrap {\n    min-height: 140px;\n  }\n  .fancy-header .fancy-title {\n    font-size: 30px;\n    line-height: 38px;\n  }\n  .fancy-header .fancy-subtitle {\n    font-size: 20px;\n    line-height: 28px;\n  }\n  .fancy-header.breadcrumbs-mobile-off .breadcrumbs {\n    display: none;\n  }\n  #fancy-header > .wf-wrap {\n    flex-flow: column wrap;\n    align-items: center;\n    justify-content: center;\n    padding-bottom: 0px !important;\n  }\n  .fancy-header.title-left .breadcrumbs {\n    text-align: center;\n    float: none;\n  }\n  .breadcrumbs {\n    margin-bottom: 10px;\n  }\n  .breadcrumbs.breadcrumbs-bg {\n    margin-top: 10px;\n  }\n  .fancy-header.title-right .breadcrumbs {\n    margin: 10px 0 10px 0;\n  }\n  #fancy-header .hgroup,\n  #fancy-header .breadcrumbs {\n    text-align: center;\n  }\n  .fancy-header .hgroup {\n    padding-bottom: 5px;\n  }\n  .breadcrumbs-off .hgroup {\n    padding-bottom: 5px;\n  }\n  .title-right .hgroup {\n    padding: 0 0 5px 0;\n  }\n  .title-right.breadcrumbs-off .hgroup {\n    padding-top: 5px;\n  }\n  .title-left.disabled-bg .breadcrumbs {\n    margin-bottom: 0;\n  }\n}\n'),(27936,3673,'_wqoecf_disable_form','no'),(27937,3673,'_edit_lock','1695539024:1'),(27938,3673,'_edit_last','1'),(27940,3674,'_wpb_shortcodes_custom_css_updated','1'),(27942,3669,'_wp_page_template','default'),(27943,3669,'_wpb_vc_js_status','true'),(27944,3675,'_wpb_post_custom_layout','default'),(27945,3669,'_dt_sidebar_position','disabled'),(27946,3669,'_dt_sidebar_widgetarea_id','sidebar_1'),(27947,3669,'_dt_sidebar_hide_on_mobile','0'),(27948,3669,'_dt_footer_show','1'),(27949,3669,'_dt_footer_widgetarea_id','sidebar_2'),(27950,3669,'_dt_footer_hide_on_mobile','0'),(27951,3669,'_dt_header_title','fancy'),(27952,3669,'_dt_header_background','normal'),(27953,3669,'_dt_header_background_below_slideshow','disabled'),(27954,3669,'_dt_header_transparent_bg_color_scheme','light'),(27955,3669,'_dt_header_transparent_top_bar_bg_color','#ffffff'),(27956,3669,'_dt_header_transparent_top_bar_bg_opacity','25'),(27957,3669,'_dt_header_transparent_bg_color','#000000'),(27958,3669,'_dt_header_transparent_bg_opacity','50'),(27959,3669,'_dt_header_disabled_background','normal'),(27960,3669,'_dt_header_disabled_transparent_bg_color_scheme','light'),(27961,3669,'_dt_header_disabled_transparent_top_bar_bg_color','#ffffff'),(27962,3669,'_dt_header_disabled_transparent_top_bar_bg_opacity','25'),(27963,3669,'_dt_header_disabled_transparent_bg_color','#000000'),(27964,3669,'_dt_header_disabled_transparent_bg_opacity','50'),(27965,3669,'_dt_page_overrides_top_margin',''),(27966,3669,'_dt_page_overrides_right_margin',''),(27967,3669,'_dt_page_overrides_bottom_margin',''),(27968,3669,'_dt_page_overrides_left_margin',''),(27969,3669,'_dt_mobile_page_padding_top',''),(27970,3669,'_dt_mobile_page_padding_right',''),(27971,3669,'_dt_mobile_page_padding_bottom',''),(27972,3669,'_dt_mobile_page_padding_left',''),(27973,3669,'_dt_fancy_header_layout_heading',''),(27974,3669,'_dt_fancy_header_title_aligment','all_left'),(27975,3669,'_dt_fancy_header_height','300'),(27976,3669,'_dt_fancy_header_padding-top','0px'),(27977,3669,'_dt_fancy_header_padding-bottom','0px'),(27978,3669,'_dt_fancy_header_breadcrumbs_heading',''),(27979,3669,'_dt_fancy_header_breadcrumbs','disabled'),(27980,3669,'_dt_fancy_header_breadcrumbs_text_color','#ffffff'),(27981,3669,'_dt_fancy_header_breadcrumbs_bg_color','disabled'),(27982,3669,'_dt_fancy_header_title_heading',''),(27983,3669,'_dt_fancy_header_title_mode','generic'),(27984,3669,'_dt_fancy_header_title',''),(27985,3669,'_dt_fancy_header_title_font_size','30'),(27986,3669,'_dt_fancy_header_title_line_height','36'),(27987,3669,'_dt_fancy_header_text_transform','none'),(27988,3669,'_dt_fancy_header_title_color_mode','color'),(27989,3669,'_dt_fancy_header_title_color','#ffffff'),(27990,3669,'_dt_fancy_header_subtitle_heading',''),(27991,3669,'_dt_fancy_header_subtitle',''),(27992,3669,'_dt_fancy_header_subtitle_font_size','18'),(27993,3669,'_dt_fancy_header_subtitle_line_height','26'),(27994,3669,'_dt_fancy_header_subtitle_text_transform','none'),(27995,3669,'_dt_fancy_header_subtitle_color_mode','color'),(27996,3669,'_dt_fancy_header_subtitle_color','#ffffff'),(27997,3669,'_dt_fancy_header_bg_heading',''),(27998,3669,'_dt_fancy_header_bg_color','#089548'),(27999,3669,'_dt_fancy_header_bg_image_origin','custom'),(28000,3669,'_dt_fancy_header_bg_image','a:0:{}'),(28001,3669,'_dt_fancy_header_bg_repeat','no-repeat'),(28002,3669,'_dt_fancy_header_bg_position_x','center'),(28003,3669,'_dt_fancy_header_bg_position_y','center'),(28004,3669,'_dt_fancy_header_bg_fullscreen','1'),(28005,3669,'_dt_fancy_header_bg_overlay','0'),(28006,3669,'_dt_fancy_header_overlay_color','#000'),(28007,3669,'_dt_fancy_header_bg_overlay_opacity','50'),(28008,3669,'_dt_fancy_header_scroll_effect','default'),(28009,3669,'_dt_fancy_header_bg_parallax','0.5'),(28010,3669,'_dt_fancy_header_responsiveness_heading',''),(28011,3669,'_dt_fancy_header_responsiveness','enabled'),(28012,3669,'_dt_fancy_header_responsiveness_switch','778px'),(28013,3669,'_dt_fancy_header_responsive_height','70'),(28014,3669,'_dt_fancy_header_responsive_font_size','30'),(28015,3669,'_dt_fancy_header_responsive_title_line_height','38'),(28016,3669,'_dt_fancy_header_responsive_subtitle_font_size','20'),(28017,3669,'_dt_fancy_header_responsive_subtitle_line_height','28'),(28018,3669,'_dt_fancy_header_responsive_breadcrumbs','disabled'),(28019,3669,'_dt_microsite_primary_menu',''),(28020,3669,'_dt_microsite_split_left_menu',''),(28021,3669,'_dt_microsite_split_right_menu',''),(28022,3669,'_dt_microsite_mobile_menu',''),(28023,3669,'the7_fancy_title_css','.fancy-header {\n  background-image: none;\n  background-repeat: no-repeat;\n  background-position: center center;\n  background-size: cover;\n  background-color: #089548;\n}\n.mobile-false .fancy-header {\n  background-attachment: scroll;\n}\n.fancy-header .wf-wrap {\n  min-height: 300px;\n  padding-top: 0px;\n  padding-bottom: 0px;\n}\n.fancy-header .fancy-title {\n  font-size: 30px;\n  line-height: 36px;\n  color: #ffffff;\n  text-transform: none;\n}\n.fancy-header .fancy-subtitle {\n  font-size: 18px;\n  line-height: 26px;\n  color: #ffffff;\n  text-transform: none;\n}\n.fancy-header .breadcrumbs {\n  color: #ffffff;\n}\n.fancy-header-overlay {\n  background: rgba(0,0,0,0.5);\n}\n@media screen and (max-width: 778px) {\n  .fancy-header .wf-wrap {\n    min-height: 70px;\n  }\n  .fancy-header .fancy-title {\n    font-size: 30px;\n    line-height: 38px;\n  }\n  .fancy-header .fancy-subtitle {\n    font-size: 20px;\n    line-height: 28px;\n  }\n  .fancy-header.breadcrumbs-mobile-off .breadcrumbs {\n    display: none;\n  }\n  #fancy-header > .wf-wrap {\n    flex-flow: column wrap;\n    align-items: center;\n    justify-content: center;\n    padding-bottom: 0px !important;\n  }\n  .fancy-header.title-left .breadcrumbs {\n    text-align: center;\n    float: none;\n  }\n  .breadcrumbs {\n    margin-bottom: 10px;\n  }\n  .breadcrumbs.breadcrumbs-bg {\n    margin-top: 10px;\n  }\n  .fancy-header.title-right .breadcrumbs {\n    margin: 10px 0 10px 0;\n  }\n  #fancy-header .hgroup,\n  #fancy-header .breadcrumbs {\n    text-align: center;\n  }\n  .fancy-header .hgroup {\n    padding-bottom: 5px;\n  }\n  .breadcrumbs-off .hgroup {\n    padding-bottom: 5px;\n  }\n  .title-right .hgroup {\n    padding: 0 0 5px 0;\n  }\n  .title-right.breadcrumbs-off .hgroup {\n    padding-top: 5px;\n  }\n  .title-left.disabled-bg .breadcrumbs {\n    margin-bottom: 0;\n  }\n}\n'),(28024,3676,'_wpb_post_custom_layout','default'),(28025,3677,'_wpb_post_custom_layout','default'),(28026,3678,'_wpb_post_custom_layout','default'),(28027,3679,'_wpb_post_custom_layout','default'),(28028,3680,'_wpb_post_custom_layout','default'),(28029,3681,'_wpb_post_custom_layout','default'),(28030,3682,'_wpb_post_custom_layout','default'),(28031,3683,'_wpb_post_custom_layout','default'),(28032,3684,'_wpb_post_custom_layout','default'),(28033,3669,'_wpb_post_custom_layout','default'),(28034,3685,'_menu_item_type','post_type'),(28035,3685,'_menu_item_menu_item_parent','0'),(28036,3685,'_menu_item_object_id','3669'),(28037,3685,'_menu_item_object','page'),(28038,3685,'_menu_item_target',''),(28039,3685,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(28040,3685,'_menu_item_xfn',''),(28041,3685,'_menu_item_url',''),(28043,2576,'_wp_old_date','2023-08-11'),(28056,3687,'_menu_item_object','page'),(28057,3687,'_menu_item_target',''),(28058,3687,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(28059,3687,'_menu_item_xfn',''),(28060,3687,'_menu_item_url',''),(28062,3688,'_menu_item_type','post_type'),(28063,3688,'_menu_item_menu_item_parent','0'),(28064,3688,'_menu_item_object_id','2622'),(28065,3688,'_menu_item_object','page'),(28066,3688,'_menu_item_target',''),(28067,3688,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(28068,3688,'_menu_item_xfn',''),(28069,3688,'_menu_item_url',''),(28072,2610,'_wp_old_date','2023-08-22'),(28080,3690,'_thumbnail_id','3691'),(28081,3690,'_wp_page_template','default'),(28125,3693,'_edit_last','1'),(28083,3690,'_wpb_vc_js_status','true'),(28084,3692,'_wpb_post_custom_layout','default'),(28085,3690,'_wpb_post_custom_layout','default'),(28086,3690,'_dt_sidebar_position','right'),(28087,3690,'_dt_sidebar_widgetarea_id','sidebar_1'),(28088,3690,'_dt_sidebar_hide_on_mobile','0'),(28089,3690,'_dt_footer_show','1'),(28090,3690,'_dt_footer_widgetarea_id','sidebar_2'),(28091,3690,'_dt_footer_hide_on_mobile','0'),(28092,3690,'_dt_header_title','enabled'),(28093,3690,'_dt_header_background','normal'),(28094,3690,'_dt_header_background_below_slideshow','disabled'),(28095,3690,'_dt_header_transparent_bg_color_scheme','light'),(28096,3690,'_dt_header_transparent_top_bar_bg_color','#ffffff'),(28097,3690,'_dt_header_transparent_top_bar_bg_opacity','25'),(28098,3690,'_dt_header_transparent_bg_color','#000000'),(28099,3690,'_dt_header_transparent_bg_opacity','50'),(28100,3690,'_dt_header_disabled_background','normal'),(28101,3690,'_dt_header_disabled_transparent_bg_color_scheme','light'),(28102,3690,'_dt_header_disabled_transparent_top_bar_bg_color','#ffffff'),(28103,3690,'_dt_header_disabled_transparent_top_bar_bg_opacity','25'),(28104,3690,'_dt_header_disabled_transparent_bg_color','#000000'),(28105,3690,'_dt_header_disabled_transparent_bg_opacity','50'),(28106,3690,'_dt_page_overrides_top_margin',''),(28107,3690,'_dt_page_overrides_right_margin',''),(28108,3690,'_dt_page_overrides_bottom_margin',''),(28109,3690,'_dt_page_overrides_left_margin',''),(28110,3690,'_dt_mobile_page_padding_top',''),(28111,3690,'_dt_mobile_page_padding_right',''),(28112,3690,'_dt_mobile_page_padding_bottom',''),(28113,3690,'_dt_mobile_page_padding_left',''),(28114,3690,'_dt_post_options_back_button',''),(28115,3690,'_dt_post_options_hide_thumbnail','0'),(28116,3690,'_dt_post_options_related_mode','same'),(28117,3690,'_dt_post_options_preview','normal'),(28118,3690,'_dt_microsite_primary_menu',''),(28119,3690,'_dt_microsite_split_left_menu',''),(28120,3690,'_dt_microsite_split_right_menu',''),(28121,3690,'_dt_microsite_mobile_menu',''),(28123,3690,'_wp_old_date','2023-09-14'),(28124,3690,'rs_page_bg_color',''),(28126,3693,'_edit_lock','1695632951:1'),(28127,3693,'_wp_page_template','default'),(28128,3693,'_wpb_vc_js_status','true'),(28129,3693,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:1:{s:10:\"shortcodes\";a:1:{s:29:\"1694699209847-8c8342c7-2c9d-3\";a:3:{s:3:\"tag\";s:13:\"vc_basic_grid\";s:4:\"atts\";a:5:{s:9:\"post_type\";s:4:\"post\";s:9:\"max_items\";s:0:\"\";s:13:\"element_width\";s:1:\"6\";s:7:\"grid_id\";s:36:\"vc_gid:1694699209847-8c8342c7-2c9d-3\";s:10:\"taxonomies\";s:3:\"187\";}s:7:\"content\";s:0:\"\";}}}}'),(28130,3694,'_wpb_post_custom_layout','default'),(28131,3693,'_wpb_post_custom_layout','default'),(28132,3693,'_dt_sidebar_position','disabled'),(28133,3693,'_dt_sidebar_widgetarea_id','sidebar_1'),(28134,3693,'_dt_sidebar_hide_on_mobile','0'),(28135,3693,'_dt_footer_show','1'),(28136,3693,'_dt_footer_widgetarea_id','sidebar_2'),(28137,3693,'_dt_footer_hide_on_mobile','0'),(28138,3693,'_dt_header_title','fancy'),(28139,3693,'_dt_header_background','normal'),(28140,3693,'_dt_header_background_below_slideshow','disabled'),(28141,3693,'_dt_header_transparent_bg_color_scheme','light'),(28142,3693,'_dt_header_transparent_top_bar_bg_color','#ffffff'),(28143,3693,'_dt_header_transparent_top_bar_bg_opacity','25'),(28144,3693,'_dt_header_transparent_bg_color','#000000'),(28145,3693,'_dt_header_transparent_bg_opacity','50'),(28146,3693,'_dt_header_disabled_background','normal'),(28147,3693,'_dt_header_disabled_transparent_bg_color_scheme','light'),(28148,3693,'_dt_header_disabled_transparent_top_bar_bg_color','#ffffff'),(28149,3693,'_dt_header_disabled_transparent_top_bar_bg_opacity','25'),(28150,3693,'_dt_header_disabled_transparent_bg_color','#000000'),(28151,3693,'_dt_header_disabled_transparent_bg_opacity','50'),(28152,3693,'_dt_page_overrides_top_margin',''),(28153,3693,'_dt_page_overrides_right_margin',''),(28154,3693,'_dt_page_overrides_bottom_margin',''),(28155,3693,'_dt_page_overrides_left_margin',''),(28156,3693,'_dt_mobile_page_padding_top',''),(28157,3693,'_dt_mobile_page_padding_right',''),(28158,3693,'_dt_mobile_page_padding_bottom',''),(28159,3693,'_dt_mobile_page_padding_left',''),(28160,3693,'_dt_fancy_header_layout_heading',''),(28161,3693,'_dt_fancy_header_title_aligment','all_left'),(28162,3693,'_dt_fancy_header_height','300'),(28163,3693,'_dt_fancy_header_padding-top','0px'),(28164,3693,'_dt_fancy_header_padding-bottom','0px'),(28165,3693,'_dt_fancy_header_breadcrumbs_heading',''),(28166,3693,'_dt_fancy_header_breadcrumbs','disabled'),(28167,3693,'_dt_fancy_header_breadcrumbs_text_color','#ffffff'),(28168,3693,'_dt_fancy_header_breadcrumbs_bg_color','disabled'),(28169,3693,'_dt_fancy_header_title_heading',''),(28170,3693,'_dt_fancy_header_title_mode','generic'),(28171,3693,'_dt_fancy_header_title',''),(28172,3693,'_dt_fancy_header_title_font_size','30'),(28173,3693,'_dt_fancy_header_title_line_height','36'),(28174,3693,'_dt_fancy_header_text_transform','none'),(28175,3693,'_dt_fancy_header_title_color_mode','color'),(28176,3693,'_dt_fancy_header_title_color','#ffffff'),(28177,3693,'_dt_fancy_header_subtitle_heading',''),(28178,3693,'_dt_fancy_header_subtitle',''),(28179,3693,'_dt_fancy_header_subtitle_font_size','18'),(28180,3693,'_dt_fancy_header_subtitle_line_height','26'),(28181,3693,'_dt_fancy_header_subtitle_text_transform','none'),(28182,3693,'_dt_fancy_header_subtitle_color_mode','color'),(28183,3693,'_dt_fancy_header_subtitle_color','#ffffff'),(28184,3693,'_dt_fancy_header_bg_heading',''),(28185,3693,'_dt_fancy_header_bg_color','#089548'),(28186,3693,'_dt_fancy_header_bg_image_origin','custom'),(28187,3693,'_dt_fancy_header_bg_image','a:0:{}'),(28188,3693,'_dt_fancy_header_bg_repeat','no-repeat'),(28189,3693,'_dt_fancy_header_bg_position_x','center'),(28190,3693,'_dt_fancy_header_bg_position_y','center'),(28191,3693,'_dt_fancy_header_bg_fullscreen','1'),(28192,3693,'_dt_fancy_header_bg_overlay','0'),(28193,3693,'_dt_fancy_header_overlay_color','#000'),(28194,3693,'_dt_fancy_header_bg_overlay_opacity','50'),(28195,3693,'_dt_fancy_header_scroll_effect','default'),(28196,3693,'_dt_fancy_header_bg_parallax','0.5'),(28197,3693,'_dt_fancy_header_responsiveness_heading',''),(28198,3693,'_dt_fancy_header_responsiveness','enabled'),(28199,3693,'_dt_fancy_header_responsiveness_switch','778px'),(28200,3693,'_dt_fancy_header_responsive_height','70'),(28201,3693,'_dt_fancy_header_responsive_font_size','30'),(28202,3693,'_dt_fancy_header_responsive_title_line_height','38'),(28203,3693,'_dt_fancy_header_responsive_subtitle_font_size','20'),(28204,3693,'_dt_fancy_header_responsive_subtitle_line_height','28'),(28205,3693,'_dt_fancy_header_responsive_breadcrumbs','disabled'),(28206,3693,'_dt_microsite_primary_menu',''),(28207,3693,'_dt_microsite_split_left_menu',''),(28208,3693,'_dt_microsite_split_right_menu',''),(28209,3693,'_dt_microsite_mobile_menu',''),(28210,3693,'the7_fancy_title_css','.fancy-header {\n  background-image: none;\n  background-repeat: no-repeat;\n  background-position: center center;\n  background-size: cover;\n  background-color: #089548;\n}\n.mobile-false .fancy-header {\n  background-attachment: scroll;\n}\n.fancy-header .wf-wrap {\n  min-height: 300px;\n  padding-top: 0px;\n  padding-bottom: 0px;\n}\n.fancy-header .fancy-title {\n  font-size: 30px;\n  line-height: 36px;\n  color: #ffffff;\n  text-transform: none;\n}\n.fancy-header .fancy-subtitle {\n  font-size: 18px;\n  line-height: 26px;\n  color: #ffffff;\n  text-transform: none;\n}\n.fancy-header .breadcrumbs {\n  color: #ffffff;\n}\n.fancy-header-overlay {\n  background: rgba(0,0,0,0.5);\n}\n@media screen and (max-width: 778px) {\n  .fancy-header .wf-wrap {\n    min-height: 70px;\n  }\n  .fancy-header .fancy-title {\n    font-size: 30px;\n    line-height: 38px;\n  }\n  .fancy-header .fancy-subtitle {\n    font-size: 20px;\n    line-height: 28px;\n  }\n  .fancy-header.breadcrumbs-mobile-off .breadcrumbs {\n    display: none;\n  }\n  #fancy-header > .wf-wrap {\n    flex-flow: column wrap;\n    align-items: center;\n    justify-content: center;\n    padding-bottom: 0px !important;\n  }\n  .fancy-header.title-left .breadcrumbs {\n    text-align: center;\n    float: none;\n  }\n  .breadcrumbs {\n    margin-bottom: 10px;\n  }\n  .breadcrumbs.breadcrumbs-bg {\n    margin-top: 10px;\n  }\n  .fancy-header.title-right .breadcrumbs {\n    margin: 10px 0 10px 0;\n  }\n  #fancy-header .hgroup,\n  #fancy-header .breadcrumbs {\n    text-align: center;\n  }\n  .fancy-header .hgroup {\n    padding-bottom: 5px;\n  }\n  .breadcrumbs-off .hgroup {\n    padding-bottom: 5px;\n  }\n  .title-right .hgroup {\n    padding: 0 0 5px 0;\n  }\n  .title-right.breadcrumbs-off .hgroup {\n    padding-top: 5px;\n  }\n  .title-left.disabled-bg .breadcrumbs {\n    margin-bottom: 0;\n  }\n}\n'),(28211,3695,'_menu_item_type','post_type'),(28212,3695,'_menu_item_menu_item_parent','0'),(28213,3695,'_menu_item_object_id','3693'),(28214,3695,'_menu_item_object','page'),(28215,3695,'_menu_item_target',''),(28216,3695,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(28217,3695,'_menu_item_xfn',''),(28218,3695,'_menu_item_url',''),(28222,3697,'_wp_attached_file','2023/09/Calfo20_logo.png'),(28223,3697,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:300;s:6:\"height\";i:94;s:4:\"file\";s:24:\"2023/09/Calfo20_logo.png\";s:8:\"filesize\";i:2408;s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:23:\"Calfo20_logo-150x94.png\";s:5:\"width\";i:150;s:6:\"height\";i:94;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:3276;}s:29:\"woocommerce_gallery_thumbnail\";a:5:{s:4:\"file\";s:23:\"Calfo20_logo-200x94.png\";s:5:\"width\";i:200;s:6:\"height\";i:94;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:4266;}}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:{}}}'),(28224,3699,'_wp_attached_file','2023/09/REGEN_600px.png'),(28225,3699,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:600;s:6:\"height\";i:600;s:4:\"file\";s:23:\"2023/09/REGEN_600px.png\";s:8:\"filesize\";i:58448;s:5:\"sizes\";a:4:{s:6:\"medium\";a:5:{s:4:\"file\";s:23:\"REGEN_600px-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:36556;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:23:\"REGEN_600px-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:11144;}s:21:\"woocommerce_thumbnail\";a:6:{s:4:\"file\";s:23:\"REGEN_600px-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:36556;s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:5:{s:4:\"file\";s:23:\"REGEN_600px-200x200.png\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:18043;}}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:{}}}'),(28226,3700,'_wp_attached_file','2023/09/REGEN_logo.png'),(28227,3700,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:300;s:6:\"height\";i:94;s:4:\"file\";s:22:\"2023/09/REGEN_logo.png\";s:8:\"filesize\";i:2760;s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:21:\"REGEN_logo-150x94.png\";s:5:\"width\";i:150;s:6:\"height\";i:94;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:3959;}s:29:\"woocommerce_gallery_thumbnail\";a:5:{s:4:\"file\";s:21:\"REGEN_logo-200x94.png\";s:5:\"width\";i:200;s:6:\"height\";i:94;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:5124;}}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:{}}}'),(28409,3737,'_wp_attached_file','2023/09/REGEN_logo-1.png'),(28229,3701,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:300;s:6:\"height\";i:92;s:4:\"file\";s:28:\"2023/09/Cardisure_-300px.png\";s:8:\"filesize\";i:18816;s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:27:\"Cardisure_-300px-150x92.png\";s:5:\"width\";i:150;s:6:\"height\";i:92;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:4471;}s:29:\"woocommerce_gallery_thumbnail\";a:5:{s:4:\"file\";s:27:\"Cardisure_-300px-200x92.png\";s:5:\"width\";i:200;s:6:\"height\";i:92;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:7140;}}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:{}}}'),(28230,3702,'_wp_attached_file','2023/09/Cardisure_5mg_600px-x-600px.png'),(28231,3702,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:600;s:6:\"height\";i:600;s:4:\"file\";s:39:\"2023/09/Cardisure_5mg_600px-x-600px.png\";s:8:\"filesize\";i:191564;s:5:\"sizes\";a:4:{s:6:\"medium\";a:5:{s:4:\"file\";s:39:\"Cardisure_5mg_600px-x-600px-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:56139;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:39:\"Cardisure_5mg_600px-x-600px-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:17762;}s:21:\"woocommerce_thumbnail\";a:6:{s:4:\"file\";s:39:\"Cardisure_5mg_600px-x-600px-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:56139;s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:5:{s:4:\"file\";s:39:\"Cardisure_5mg_600px-x-600px-200x200.png\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:28775;}}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:{}}}'),(28232,3551,'_thumbnail_id','3735'),(28233,3703,'_wp_attached_file','2023/08/Felimazole_600px-x-600px.png'),(28234,3703,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:600;s:6:\"height\";i:600;s:4:\"file\";s:36:\"2023/08/Felimazole_600px-x-600px.png\";s:8:\"filesize\";i:209818;s:5:\"sizes\";a:4:{s:6:\"medium\";a:5:{s:4:\"file\";s:36:\"Felimazole_600px-x-600px-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:56646;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:36:\"Felimazole_600px-x-600px-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:16827;}s:21:\"woocommerce_thumbnail\";a:6:{s:4:\"file\";s:36:\"Felimazole_600px-x-600px-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:56646;s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:5:{s:4:\"file\";s:36:\"Felimazole_600px-x-600px-200x200.png\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:28070;}}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:{}}}'),(28235,3704,'_wp_attached_file','2023/08/Felimazole_300px.png'),(28236,3704,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:300;s:6:\"height\";i:48;s:4:\"file\";s:28:\"2023/08/Felimazole_300px.png\";s:8:\"filesize\";i:4310;s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:27:\"Felimazole_300px-150x48.png\";s:5:\"width\";i:150;s:6:\"height\";i:48;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:3240;}s:29:\"woocommerce_gallery_thumbnail\";a:5:{s:4:\"file\";s:27:\"Felimazole_300px-200x48.png\";s:5:\"width\";i:200;s:6:\"height\";i:48;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:4035;}}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:{}}}'),(28237,3365,'_thumbnail_id','3758'),(28238,3365,'_wqoecf_disable_form','no'),(28239,3705,'_wp_attached_file','2023/09/Hemo-Boost_600px-x-600px.png'),(28240,3705,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:600;s:6:\"height\";i:600;s:4:\"file\";s:36:\"2023/09/Hemo-Boost_600px-x-600px.png\";s:8:\"filesize\";i:155481;s:5:\"sizes\";a:4:{s:6:\"medium\";a:5:{s:4:\"file\";s:36:\"Hemo-Boost_600px-x-600px-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:43758;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:36:\"Hemo-Boost_600px-x-600px-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:14055;}s:21:\"woocommerce_thumbnail\";a:6:{s:4:\"file\";s:36:\"Hemo-Boost_600px-x-600px-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:43758;s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:5:{s:4:\"file\";s:36:\"Hemo-Boost_600px-x-600px-200x200.png\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:22337;}}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:{}}}'),(28241,3706,'_wp_attached_file','2023/09/Hemo-Boost_logo.png'),(28242,3706,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:300;s:6:\"height\";i:79;s:4:\"file\";s:27:\"2023/09/Hemo-Boost_logo.png\";s:8:\"filesize\";i:7000;s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:26:\"Hemo-Boost_logo-150x79.png\";s:5:\"width\";i:150;s:6:\"height\";i:79;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:3119;}s:29:\"woocommerce_gallery_thumbnail\";a:5:{s:4:\"file\";s:26:\"Hemo-Boost_logo-200x79.png\";s:5:\"width\";i:200;s:6:\"height\";i:79;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:4232;}}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:{}}}'),(28243,3440,'_thumbnail_id','3705'),(28244,3440,'_wqoecf_disable_form','no'),(28248,3709,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:300;s:6:\"height\";i:142;s:4:\"file\";s:30:\"2023/09/Orondo-Spray_300px.png\";s:8:\"filesize\";i:21108;s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:30:\"Orondo-Spray_300px-150x142.png\";s:5:\"width\";i:150;s:6:\"height\";i:142;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:10039;}s:29:\"woocommerce_gallery_thumbnail\";a:5:{s:4:\"file\";s:30:\"Orondo-Spray_300px-200x142.png\";s:5:\"width\";i:200;s:6:\"height\";i:142;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:12082;}}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:{}}}'),(28247,3709,'_wp_attached_file','2023/09/Orondo-Spray_300px.png'),(28250,3710,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:600;s:6:\"height\";i:600;s:4:\"file\";s:38:\"2023/09/Orondo-Spray_600px-x-600px.png\";s:8:\"filesize\";i:23659;s:5:\"sizes\";a:4:{s:6:\"medium\";a:5:{s:4:\"file\";s:38:\"Orondo-Spray_600px-x-600px-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:13994;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:38:\"Orondo-Spray_600px-x-600px-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:4971;}s:21:\"woocommerce_thumbnail\";a:6:{s:4:\"file\";s:38:\"Orondo-Spray_600px-x-600px-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:13994;s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:5:{s:4:\"file\";s:38:\"Orondo-Spray_600px-x-600px-200x200.png\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:7653;}}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:{}}}'),(28252,3711,'_wp_attached_file','2023/09/Tylovet-B-200_600px-x-600px.png'),(28470,3765,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:600;s:6:\"height\";i:600;s:4:\"file\";s:46:\"2023/09/VECTROMUNE-FP-–-MG_600px-x-600px.png\";s:8:\"filesize\";i:68129;s:5:\"sizes\";a:4:{s:6:\"medium\";a:5:{s:4:\"file\";s:46:\"VECTROMUNE-FP-–-MG_600px-x-600px-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:51480;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:46:\"VECTROMUNE-FP-–-MG_600px-x-600px-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:14674;}s:21:\"woocommerce_thumbnail\";a:6:{s:4:\"file\";s:46:\"VECTROMUNE-FP-–-MG_600px-x-600px-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:51480;s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:5:{s:4:\"file\";s:46:\"VECTROMUNE-FP-–-MG_600px-x-600px-200x200.png\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:24391;}}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:{}}}'),(28253,3711,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:600;s:6:\"height\";i:600;s:4:\"file\";s:39:\"2023/09/Tylovet-B-200_600px-x-600px.png\";s:8:\"filesize\";i:80849;s:5:\"sizes\";a:4:{s:6:\"medium\";a:5:{s:4:\"file\";s:39:\"Tylovet-B-200_600px-x-600px-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:64047;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:39:\"Tylovet-B-200_600px-x-600px-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:18669;}s:21:\"woocommerce_thumbnail\";a:6:{s:4:\"file\";s:39:\"Tylovet-B-200_600px-x-600px-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:64047;s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:5:{s:4:\"file\";s:39:\"Tylovet-B-200_600px-x-600px-200x200.png\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:30731;}}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:{}}}'),(28254,3712,'_wp_attached_file','2023/09/Tylovet-B-200_-300px.png'),(28255,3712,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:300;s:6:\"height\";i:58;s:4:\"file\";s:32:\"2023/09/Tylovet-B-200_-300px.png\";s:8:\"filesize\";i:4534;s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:31:\"Tylovet-B-200_-300px-150x58.png\";s:5:\"width\";i:150;s:6:\"height\";i:58;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:1921;}s:29:\"woocommerce_gallery_thumbnail\";a:5:{s:4:\"file\";s:31:\"Tylovet-B-200_-300px-200x58.png\";s:5:\"width\";i:200;s:6:\"height\";i:58;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:2519;}}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:{}}}'),(28256,3439,'_thumbnail_id','3711'),(28257,3439,'_wqoecf_disable_form','no'),(28259,3714,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:600;s:6:\"height\";i:600;s:4:\"file\";s:30:\"2023/09/Canny-VIT_90_600px.png\";s:8:\"filesize\";i:46159;s:5:\"sizes\";a:4:{s:6:\"medium\";a:5:{s:4:\"file\";s:30:\"Canny-VIT_90_600px-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:41155;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:30:\"Canny-VIT_90_600px-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:13857;}s:21:\"woocommerce_thumbnail\";a:6:{s:4:\"file\";s:30:\"Canny-VIT_90_600px-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:41155;s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:5:{s:4:\"file\";s:30:\"Canny-VIT_90_600px-200x200.png\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:21673;}}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:{}}}'),(28260,3715,'_wp_attached_file','2023/09/Canny-VIT_LOGO.png'),(28261,3715,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:300;s:6:\"height\";i:76;s:4:\"file\";s:26:\"2023/09/Canny-VIT_LOGO.png\";s:8:\"filesize\";i:1434;s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:25:\"Canny-VIT_LOGO-150x76.png\";s:5:\"width\";i:150;s:6:\"height\";i:76;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:1789;}s:29:\"woocommerce_gallery_thumbnail\";a:5:{s:4:\"file\";s:25:\"Canny-VIT_LOGO-200x76.png\";s:5:\"width\";i:200;s:6:\"height\";i:76;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:2471;}}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:{}}}'),(28262,3716,'_wp_attached_file','2023/09/Canny-Flexi-Joint_600px.png'),(28263,3716,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:600;s:6:\"height\";i:600;s:4:\"file\";s:35:\"2023/09/Canny-Flexi-Joint_600px.png\";s:8:\"filesize\";i:49884;s:5:\"sizes\";a:4:{s:6:\"medium\";a:5:{s:4:\"file\";s:35:\"Canny-Flexi-Joint_600px-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:48876;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:35:\"Canny-Flexi-Joint_600px-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:16924;}s:21:\"woocommerce_thumbnail\";a:6:{s:4:\"file\";s:35:\"Canny-Flexi-Joint_600px-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:48876;s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:5:{s:4:\"file\";s:35:\"Canny-Flexi-Joint_600px-200x200.png\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:25972;}}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:{}}}'),(28265,3717,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:300;s:6:\"height\";i:124;s:4:\"file\";s:35:\"2023/09/Canny-Flexi-Joint2_logo.png\";s:8:\"filesize\";i:4758;s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:35:\"Canny-Flexi-Joint2_logo-150x124.png\";s:5:\"width\";i:150;s:6:\"height\";i:124;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:7339;}s:29:\"woocommerce_gallery_thumbnail\";a:5:{s:4:\"file\";s:35:\"Canny-Flexi-Joint2_logo-200x124.png\";s:5:\"width\";i:200;s:6:\"height\";i:124;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:8296;}}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:{}}}'),(28266,3718,'_wp_attached_file','2023/09/Pandex_600px-x-600px.png'),(28267,3718,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:600;s:6:\"height\";i:600;s:4:\"file\";s:32:\"2023/09/Pandex_600px-x-600px.png\";s:8:\"filesize\";i:122035;s:5:\"sizes\";a:4:{s:6:\"medium\";a:5:{s:4:\"file\";s:32:\"Pandex_600px-x-600px-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:77605;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:32:\"Pandex_600px-x-600px-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:22060;}s:21:\"woocommerce_thumbnail\";a:6:{s:4:\"file\";s:32:\"Pandex_600px-x-600px-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:77605;s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:5:{s:4:\"file\";s:32:\"Pandex_600px-x-600px-200x200.png\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:36650;}}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:{}}}'),(28268,3719,'_wp_attached_file','2023/09/Pandex_L_300px.png'),(28269,3719,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:300;s:6:\"height\";i:58;s:4:\"file\";s:26:\"2023/09/Pandex_L_300px.png\";s:8:\"filesize\";i:3592;s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:25:\"Pandex_L_300px-150x58.png\";s:5:\"width\";i:150;s:6:\"height\";i:58;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:2075;}s:29:\"woocommerce_gallery_thumbnail\";a:5:{s:4:\"file\";s:25:\"Pandex_L_300px-200x58.png\";s:5:\"width\";i:200;s:6:\"height\";i:58;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:2678;}}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:{}}}'),(28270,3438,'_thumbnail_id','3718'),(28271,3438,'_wqoecf_disable_form','no'),(28273,3720,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:600;s:6:\"height\";i:600;s:4:\"file\";s:38:\"2023/09/Oxytetraciclina-200-LA_600.png\";s:8:\"filesize\";i:65317;s:5:\"sizes\";a:4:{s:6:\"medium\";a:5:{s:4:\"file\";s:38:\"Oxytetraciclina-200-LA_600-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:51168;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:38:\"Oxytetraciclina-200-LA_600-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:15416;}s:21:\"woocommerce_thumbnail\";a:6:{s:4:\"file\";s:38:\"Oxytetraciclina-200-LA_600-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:51168;s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:5:{s:4:\"file\";s:38:\"Oxytetraciclina-200-LA_600-200x200.png\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:24952;}}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:{}}}'),(28274,3721,'_wp_attached_file','2023/09/Oxytetraciclina_300.png'),(28275,3721,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:300;s:6:\"height\";i:142;s:4:\"file\";s:31:\"2023/09/Oxytetraciclina_300.png\";s:8:\"filesize\";i:4266;s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:31:\"Oxytetraciclina_300-150x142.png\";s:5:\"width\";i:150;s:6:\"height\";i:142;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:1276;}s:29:\"woocommerce_gallery_thumbnail\";a:5:{s:4:\"file\";s:31:\"Oxytetraciclina_300-200x142.png\";s:5:\"width\";i:200;s:6:\"height\";i:142;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:3851;}}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:{}}}'),(28276,3437,'_thumbnail_id','3720'),(28277,3437,'_wqoecf_disable_form','no'),(28279,3723,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:900;s:6:\"height\";i:900;s:4:\"file\";s:25:\"2023/09/MAXUVOL_600px.png\";s:8:\"filesize\";i:165606;s:5:\"sizes\";a:6:{s:6:\"medium\";a:5:{s:4:\"file\";s:25:\"MAXUVOL_600px-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:59488;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:25:\"MAXUVOL_600px-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:16724;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:25:\"MAXUVOL_600px-768x768.png\";s:5:\"width\";i:768;s:6:\"height\";i:768;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:366931;}s:21:\"woocommerce_thumbnail\";a:6:{s:4:\"file\";s:25:\"MAXUVOL_600px-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:59488;s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:5:{s:4:\"file\";s:25:\"MAXUVOL_600px-600x600.png\";s:5:\"width\";i:600;s:6:\"height\";i:600;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:220779;}s:29:\"woocommerce_gallery_thumbnail\";a:5:{s:4:\"file\";s:25:\"MAXUVOL_600px-200x200.png\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:27717;}}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:{}}}'),(28280,3724,'_wp_attached_file','2023/09/MAXUVOL_L_300px.png'),(28281,3724,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:300;s:6:\"height\";i:142;s:4:\"file\";s:27:\"2023/09/MAXUVOL_L_300px.png\";s:8:\"filesize\";i:4250;s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:27:\"MAXUVOL_L_300px-150x142.png\";s:5:\"width\";i:150;s:6:\"height\";i:142;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:1569;}s:29:\"woocommerce_gallery_thumbnail\";a:5:{s:4:\"file\";s:27:\"MAXUVOL_L_300px-200x142.png\";s:5:\"width\";i:200;s:6:\"height\";i:142;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:4375;}}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:{}}}'),(28282,3436,'_thumbnail_id','3723'),(28283,3436,'_wqoecf_disable_form','no'),(28285,3725,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:900;s:6:\"height\";i:900;s:4:\"file\";s:38:\"2023/09/KETINK-100ml_600px-x-600px.png\";s:8:\"filesize\";i:141439;s:5:\"sizes\";a:6:{s:6:\"medium\";a:5:{s:4:\"file\";s:38:\"KETINK-100ml_600px-x-600px-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:53883;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:38:\"KETINK-100ml_600px-x-600px-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:15616;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:38:\"KETINK-100ml_600px-x-600px-768x768.png\";s:5:\"width\";i:768;s:6:\"height\";i:768;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:340415;}s:21:\"woocommerce_thumbnail\";a:6:{s:4:\"file\";s:38:\"KETINK-100ml_600px-x-600px-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:53883;s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:5:{s:4:\"file\";s:38:\"KETINK-100ml_600px-x-600px-600x600.png\";s:5:\"width\";i:600;s:6:\"height\";i:600;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:198494;}s:29:\"woocommerce_gallery_thumbnail\";a:5:{s:4:\"file\";s:38:\"KETINK-100ml_600px-x-600px-200x200.png\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:25566;}}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:{}}}'),(28286,3726,'_wp_attached_file','2023/09/KETINK-100ml_300px.png'),(28287,3726,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:300;s:6:\"height\";i:142;s:4:\"file\";s:30:\"2023/09/KETINK-100ml_300px.png\";s:8:\"filesize\";i:7336;s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:30:\"KETINK-100ml_300px-150x142.png\";s:5:\"width\";i:150;s:6:\"height\";i:142;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:1370;}s:29:\"woocommerce_gallery_thumbnail\";a:5:{s:4:\"file\";s:30:\"KETINK-100ml_300px-200x142.png\";s:5:\"width\";i:200;s:6:\"height\";i:142;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:3870;}}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:{}}}'),(28288,3435,'_thumbnail_id','3725'),(28289,3435,'_wqoecf_disable_form','no'),(28291,3727,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:600;s:6:\"height\";i:600;s:4:\"file\";s:39:\"2023/09/Invemox-15-LA_600px-x-600px.png\";s:8:\"filesize\";i:86013;s:5:\"sizes\";a:4:{s:6:\"medium\";a:5:{s:4:\"file\";s:39:\"Invemox-15-LA_600px-x-600px-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:58647;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:39:\"Invemox-15-LA_600px-x-600px-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:16842;}s:21:\"woocommerce_thumbnail\";a:6:{s:4:\"file\";s:39:\"Invemox-15-LA_600px-x-600px-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:58647;s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:5:{s:4:\"file\";s:39:\"Invemox-15-LA_600px-x-600px-200x200.png\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:27761;}}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:{}}}'),(28292,3728,'_wp_attached_file','2023/09/Invemox-15-LA_300px.png'),(28293,3728,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:300;s:6:\"height\";i:142;s:4:\"file\";s:31:\"2023/09/Invemox-15-LA_300px.png\";s:8:\"filesize\";i:4075;s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:31:\"Invemox-15-LA_300px-150x142.png\";s:5:\"width\";i:150;s:6:\"height\";i:142;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:1624;}s:29:\"woocommerce_gallery_thumbnail\";a:5:{s:4:\"file\";s:31:\"Invemox-15-LA_300px-200x142.png\";s:5:\"width\";i:200;s:6:\"height\";i:142;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:4468;}}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:{}}}'),(28294,3434,'_thumbnail_id','3727'),(28295,3434,'_wqoecf_disable_form','no'),(28297,3729,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:600;s:6:\"height\";i:600;s:4:\"file\";s:38:\"2023/09/Imidocarb-LH_600px-x-600px.png\";s:8:\"filesize\";i:82974;s:5:\"sizes\";a:4:{s:6:\"medium\";a:5:{s:4:\"file\";s:38:\"Imidocarb-LH_600px-x-600px-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:56370;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:38:\"Imidocarb-LH_600px-x-600px-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:16712;}s:21:\"woocommerce_thumbnail\";a:6:{s:4:\"file\";s:38:\"Imidocarb-LH_600px-x-600px-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:56370;s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:5:{s:4:\"file\";s:38:\"Imidocarb-LH_600px-x-600px-200x200.png\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:27595;}}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:{}}}'),(28298,3730,'_wp_attached_file','2023/09/Imidocarb-LH_300px.png'),(28299,3730,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:300;s:6:\"height\";i:142;s:4:\"file\";s:30:\"2023/09/Imidocarb-LH_300px.png\";s:8:\"filesize\";i:3793;s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:30:\"Imidocarb-LH_300px-150x142.png\";s:5:\"width\";i:150;s:6:\"height\";i:142;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:1392;}s:29:\"woocommerce_gallery_thumbnail\";a:5:{s:4:\"file\";s:30:\"Imidocarb-LH_300px-200x142.png\";s:5:\"width\";i:200;s:6:\"height\";i:142;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:3972;}}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:{}}}'),(28300,3433,'_thumbnail_id','3729'),(28301,3433,'_wqoecf_disable_form','no'),(28304,3731,'total_sales','0'),(28302,3432,'_thumbnail_id','3746'),(28303,3432,'_wqoecf_disable_form','no'),(28306,3731,'_tax_class',''),(28307,3731,'_manage_stock','no'),(28308,3731,'_backorders','no'),(28309,3731,'_sold_individually','no'),(28310,3731,'_virtual','no'),(28311,3731,'_downloadable','no'),(28312,3731,'_download_limit','-1'),(28313,3731,'_download_expiry','-1'),(28314,3731,'_thumbnail_id','3751'),(28315,3731,'_stock',NULL),(28316,3731,'_stock_status','instock'),(28317,3731,'_wc_average_rating','0'),(28318,3731,'_wc_review_count','0'),(28319,3731,'_product_attributes','a:1:{s:15:\"pa_product-type\";a:6:{s:4:\"name\";s:15:\"pa_product-type\";s:5:\"value\";s:0:\"\";s:8:\"position\";i:0;s:10:\"is_visible\";i:0;s:12:\"is_variation\";i:0;s:11:\"is_taxonomy\";i:1;}}'),(28320,3731,'_product_version','8.0.2'),(28321,3731,'_dt_sidebar_position','disabled'),(28322,3731,'_dt_sidebar_widgetarea_id','sidebar_1'),(28323,3731,'_dt_sidebar_hide_on_mobile','0'),(28324,3731,'_dt_footer_show','1'),(28325,3731,'_dt_footer_widgetarea_id','sidebar_2'),(28326,3731,'_dt_footer_hide_on_mobile','0'),(28327,3731,'_dt_header_title','fancy'),(28328,3731,'_dt_header_background','normal'),(28329,3731,'_dt_header_background_below_slideshow','disabled'),(28330,3731,'_dt_header_transparent_bg_color_scheme','light'),(28331,3731,'_dt_header_transparent_top_bar_bg_color','#ffffff'),(28332,3731,'_dt_header_transparent_top_bar_bg_opacity','25'),(28333,3731,'_dt_header_transparent_bg_color','#000000'),(28334,3731,'_dt_header_transparent_bg_opacity','50'),(28335,3731,'_dt_header_disabled_background','normal'),(28336,3731,'_dt_header_disabled_transparent_bg_color_scheme','light'),(28337,3731,'_dt_header_disabled_transparent_top_bar_bg_color','#ffffff'),(28338,3731,'_dt_header_disabled_transparent_top_bar_bg_opacity','25'),(28339,3731,'_dt_header_disabled_transparent_bg_color','#000000'),(28340,3731,'_dt_header_disabled_transparent_bg_opacity','50'),(28341,3731,'_dt_page_overrides_top_margin','1%'),(28342,3731,'_dt_page_overrides_right_margin',''),(28343,3731,'_dt_page_overrides_bottom_margin',''),(28344,3731,'_dt_page_overrides_left_margin',''),(28345,3731,'_dt_mobile_page_padding_top',''),(28346,3731,'_dt_mobile_page_padding_right',''),(28347,3731,'_dt_mobile_page_padding_bottom',''),(28348,3731,'_dt_mobile_page_padding_left',''),(28349,3731,'_dt_fancy_header_layout_heading',''),(28350,3731,'_dt_fancy_header_title_aligment','all_left'),(28351,3731,'_dt_fancy_header_height','140'),(28352,3731,'_dt_fancy_header_padding-top','0px'),(28353,3731,'_dt_fancy_header_padding-bottom','0px'),(28354,3731,'_dt_fancy_header_breadcrumbs_heading',''),(28355,3731,'_dt_fancy_header_breadcrumbs','disabled'),(28356,3731,'_dt_fancy_header_breadcrumbs_text_color','#ffffff'),(28357,3731,'_dt_fancy_header_breadcrumbs_bg_color','disabled'),(28358,3731,'_dt_fancy_header_title_heading',''),(28359,3731,'_dt_fancy_header_title_mode','custom'),(28360,3731,'_dt_fancy_header_title',''),(28361,3731,'_dt_fancy_header_title_font_size','32'),(28362,3731,'_dt_fancy_header_title_line_height','36'),(28363,3731,'_dt_fancy_header_text_transform','none'),(28364,3731,'_dt_fancy_header_title_color_mode','color'),(28365,3731,'_dt_fancy_header_title_color','#079547'),(28366,3731,'_dt_fancy_header_subtitle_heading',''),(28367,3731,'_dt_fancy_header_subtitle',''),(28368,3731,'_dt_fancy_header_subtitle_font_size','24'),(28369,3731,'_dt_fancy_header_subtitle_line_height','26'),(28370,3731,'_dt_fancy_header_subtitle_text_transform','none'),(28371,3731,'_dt_fancy_header_subtitle_color_mode','color'),(28372,3731,'_dt_fancy_header_subtitle_color','#792c8a'),(28373,3731,'_dt_fancy_header_bg_heading',''),(28374,3731,'_dt_fancy_header_bg_color','#ffffff'),(28375,3731,'_dt_fancy_header_bg_image_origin','custom'),(28376,3731,'_dt_fancy_header_bg_image','a:1:{i:0;i:3753;}'),(28377,3731,'_dt_fancy_header_bg_repeat','no-repeat'),(28378,3731,'_dt_fancy_header_bg_position_x','center'),(28379,3731,'_dt_fancy_header_bg_position_y','center'),(28380,3731,'_dt_fancy_header_bg_fullscreen','0'),(28381,3731,'_dt_fancy_header_bg_overlay','0'),(28382,3731,'_dt_fancy_header_overlay_color','#000'),(28383,3731,'_dt_fancy_header_bg_overlay_opacity','50'),(28384,3731,'_dt_fancy_header_scroll_effect','default'),(28385,3731,'_dt_fancy_header_bg_parallax','0.5'),(28386,3731,'_dt_fancy_header_responsiveness_heading',''),(28387,3731,'_dt_fancy_header_responsiveness','enabled'),(28388,3731,'_dt_fancy_header_responsiveness_switch','778px'),(28389,3731,'_dt_fancy_header_responsive_height','140'),(28390,3731,'_dt_fancy_header_responsive_font_size','30'),(28391,3731,'_dt_fancy_header_responsive_title_line_height','38'),(28392,3731,'_dt_fancy_header_responsive_subtitle_font_size','20'),(28393,3731,'_dt_fancy_header_responsive_subtitle_line_height','28'),(28394,3731,'_dt_fancy_header_responsive_breadcrumbs','disabled'),(28395,3731,'the7_fancy_title_css','#main {\n  padding-top: 1%;\n}\n.fancy-header {\n  background-image: url(\'https://farmchemie.yasithawd.com/wp-content/uploads/2023/09/Canny-CAL-Syrup_logo-1.png\');\n  background-repeat: no-repeat;\n  background-position: center center;\n  background-size: auto auto;\n  background-color: #ffffff;\n}\n.mobile-false .fancy-header {\n  background-attachment: scroll;\n}\n.fancy-header .wf-wrap {\n  min-height: 140px;\n  padding-top: 0px;\n  padding-bottom: 0px;\n}\n.fancy-header .fancy-title {\n  font-size: 32px;\n  line-height: 36px;\n  color: #079547;\n  text-transform: none;\n}\n.fancy-header .fancy-subtitle {\n  font-size: 24px;\n  line-height: 26px;\n  color: #792c8a;\n  text-transform: none;\n}\n.fancy-header .breadcrumbs {\n  color: #ffffff;\n}\n.fancy-header-overlay {\n  background: rgba(0,0,0,0.5);\n}\n@media screen and (max-width: 778px) {\n  .fancy-header .wf-wrap {\n    min-height: 140px;\n  }\n  .fancy-header .fancy-title {\n    font-size: 30px;\n    line-height: 38px;\n  }\n  .fancy-header .fancy-subtitle {\n    font-size: 20px;\n    line-height: 28px;\n  }\n  .fancy-header.breadcrumbs-mobile-off .breadcrumbs {\n    display: none;\n  }\n  #fancy-header > .wf-wrap {\n    flex-flow: column wrap;\n    align-items: center;\n    justify-content: center;\n    padding-bottom: 0px !important;\n  }\n  .fancy-header.title-left .breadcrumbs {\n    text-align: center;\n    float: none;\n  }\n  .breadcrumbs {\n    margin-bottom: 10px;\n  }\n  .breadcrumbs.breadcrumbs-bg {\n    margin-top: 10px;\n  }\n  .fancy-header.title-right .breadcrumbs {\n    margin: 10px 0 10px 0;\n  }\n  #fancy-header .hgroup,\n  #fancy-header .breadcrumbs {\n    text-align: center;\n  }\n  .fancy-header .hgroup {\n    padding-bottom: 5px;\n  }\n  .breadcrumbs-off .hgroup {\n    padding-bottom: 5px;\n  }\n  .title-right .hgroup {\n    padding: 0 0 5px 0;\n  }\n  .title-right.breadcrumbs-off .hgroup {\n    padding-top: 5px;\n  }\n  .title-left.disabled-bg .breadcrumbs {\n    margin-bottom: 0;\n  }\n}\n'),(28396,3731,'_wqoecf_disable_form','no'),(28397,3731,'_edit_lock','1695475274:1'),(28398,3731,'_edit_last','1'),(28399,3732,'_wp_attached_file','2023/09/Canny-Coat_600px.png'),(28400,3732,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:600;s:6:\"height\";i:600;s:4:\"file\";s:28:\"2023/09/Canny-Coat_600px.png\";s:8:\"filesize\";i:50703;s:5:\"sizes\";a:4:{s:6:\"medium\";a:5:{s:4:\"file\";s:28:\"Canny-Coat_600px-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:40304;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:28:\"Canny-Coat_600px-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:12250;}s:21:\"woocommerce_thumbnail\";a:6:{s:4:\"file\";s:28:\"Canny-Coat_600px-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:40304;s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:5:{s:4:\"file\";s:28:\"Canny-Coat_600px-200x200.png\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:19836;}}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:{}}}'),(28401,3733,'_wp_attached_file','2023/09/Canny-CAL-Syrup_logo.png'),(28402,3733,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:300;s:6:\"height\";i:94;s:4:\"file\";s:32:\"2023/09/Canny-CAL-Syrup_logo.png\";s:8:\"filesize\";i:2695;s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:31:\"Canny-CAL-Syrup_logo-150x94.png\";s:5:\"width\";i:150;s:6:\"height\";i:94;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:3331;}s:29:\"woocommerce_gallery_thumbnail\";a:5:{s:4:\"file\";s:31:\"Canny-CAL-Syrup_logo-200x94.png\";s:5:\"width\";i:200;s:6:\"height\";i:94;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:4778;}}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:{}}}'),(28441,3751,'_wp_attached_file','2023/09/Canny-CAL-SYRUP_600px-x-600px.png'),(28403,3734,'_wp_attached_file','2023/09/Cardisure_5mg_600px-x-600px-1.png'),(28404,3734,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:600;s:6:\"height\";i:600;s:4:\"file\";s:41:\"2023/09/Cardisure_5mg_600px-x-600px-1.png\";s:8:\"filesize\";i:77362;s:5:\"sizes\";a:4:{s:6:\"medium\";a:5:{s:4:\"file\";s:41:\"Cardisure_5mg_600px-x-600px-1-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:45227;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:41:\"Cardisure_5mg_600px-x-600px-1-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:12892;}s:21:\"woocommerce_thumbnail\";a:6:{s:4:\"file\";s:41:\"Cardisure_5mg_600px-x-600px-1-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:45227;s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:5:{s:4:\"file\";s:41:\"Cardisure_5mg_600px-x-600px-1-200x200.png\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:21480;}}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:{}}}'),(28405,3735,'_wp_attached_file','2023/09/Cardisure_5mg_600px-x-600px-2.png'),(28406,3735,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:600;s:6:\"height\";i:600;s:4:\"file\";s:41:\"2023/09/Cardisure_5mg_600px-x-600px-2.png\";s:8:\"filesize\";i:77362;s:5:\"sizes\";a:4:{s:6:\"medium\";a:5:{s:4:\"file\";s:41:\"Cardisure_5mg_600px-x-600px-2-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:45227;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:41:\"Cardisure_5mg_600px-x-600px-2-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:12892;}s:21:\"woocommerce_thumbnail\";a:6:{s:4:\"file\";s:41:\"Cardisure_5mg_600px-x-600px-2-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:45227;s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:5:{s:4:\"file\";s:41:\"Cardisure_5mg_600px-x-600px-2-200x200.png\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:21480;}}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:{}}}'),(28407,3736,'_wp_attached_file','2023/09/Cardisure_-300px-1.png'),(28408,3736,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:300;s:6:\"height\";i:92;s:4:\"file\";s:30:\"2023/09/Cardisure_-300px-1.png\";s:8:\"filesize\";i:18816;s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:29:\"Cardisure_-300px-1-150x92.png\";s:5:\"width\";i:150;s:6:\"height\";i:92;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:4471;}s:29:\"woocommerce_gallery_thumbnail\";a:5:{s:4:\"file\";s:29:\"Cardisure_-300px-1-200x92.png\";s:5:\"width\";i:200;s:6:\"height\";i:92;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:7140;}}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:{}}}'),(28410,3737,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:300;s:6:\"height\";i:94;s:4:\"file\";s:24:\"2023/09/REGEN_logo-1.png\";s:8:\"filesize\";i:2760;s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:23:\"REGEN_logo-1-150x94.png\";s:5:\"width\";i:150;s:6:\"height\";i:94;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:3959;}s:29:\"woocommerce_gallery_thumbnail\";a:5:{s:4:\"file\";s:23:\"REGEN_logo-1-200x94.png\";s:5:\"width\";i:200;s:6:\"height\";i:94;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:5124;}}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:{}}}'),(28411,3738,'_wp_attached_file','2023/09/REGEN_600px-1.png'),(28412,3738,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:600;s:6:\"height\";i:600;s:4:\"file\";s:25:\"2023/09/REGEN_600px-1.png\";s:8:\"filesize\";i:110140;s:5:\"sizes\";a:4:{s:6:\"medium\";a:5:{s:4:\"file\";s:25:\"REGEN_600px-1-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:27264;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:25:\"REGEN_600px-1-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:8384;}s:21:\"woocommerce_thumbnail\";a:6:{s:4:\"file\";s:25:\"REGEN_600px-1-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:27264;s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:5:{s:4:\"file\";s:25:\"REGEN_600px-1-200x200.png\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:13436;}}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:{}}}'),(28413,3739,'_wp_attached_file','2023/09/Ganadexil-Enrofloxacina_-300px.png'),(28414,3739,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:300;s:6:\"height\";i:142;s:4:\"file\";s:42:\"2023/09/Ganadexil-Enrofloxacina_-300px.png\";s:8:\"filesize\";i:9365;s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:42:\"Ganadexil-Enrofloxacina_-300px-150x142.png\";s:5:\"width\";i:150;s:6:\"height\";i:142;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:4445;}s:29:\"woocommerce_gallery_thumbnail\";a:5:{s:4:\"file\";s:42:\"Ganadexil-Enrofloxacina_-300px-200x142.png\";s:5:\"width\";i:200;s:6:\"height\";i:142;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:13247;}}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:{}}}'),(28416,3740,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:300;s:6:\"height\";i:79;s:4:\"file\";s:28:\"2023/09/Super-PUP_logo-1.png\";s:8:\"filesize\";i:2168;s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:27:\"Super-PUP_logo-1-150x79.png\";s:5:\"width\";i:150;s:6:\"height\";i:79;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:2963;}s:29:\"woocommerce_gallery_thumbnail\";a:5:{s:4:\"file\";s:27:\"Super-PUP_logo-1-200x79.png\";s:5:\"width\";i:200;s:6:\"height\";i:79;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:3683;}}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:{}}}'),(28417,3741,'_wp_attached_file','2023/09/Super-PUP_600px-x-600px.png'),(28418,3741,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:600;s:6:\"height\";i:600;s:4:\"file\";s:35:\"2023/09/Super-PUP_600px-x-600px.png\";s:8:\"filesize\";i:59583;s:5:\"sizes\";a:4:{s:6:\"medium\";a:5:{s:4:\"file\";s:35:\"Super-PUP_600px-x-600px-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:46564;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:35:\"Super-PUP_600px-x-600px-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:14298;}s:21:\"woocommerce_thumbnail\";a:6:{s:4:\"file\";s:35:\"Super-PUP_600px-x-600px-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:46564;s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:5:{s:4:\"file\";s:35:\"Super-PUP_600px-x-600px-200x200.png\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:22992;}}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:{}}}'),(28420,3742,'_wp_attached_file','2023/08/Noworm-Plus_2_600px-x-600px.png'),(28419,3441,'_wqoecf_disable_form','no'),(28421,3742,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:600;s:6:\"height\";i:600;s:4:\"file\";s:39:\"2023/08/Noworm-Plus_2_600px-x-600px.png\";s:8:\"filesize\";i:38225;s:5:\"sizes\";a:4:{s:6:\"medium\";a:5:{s:4:\"file\";s:39:\"Noworm-Plus_2_600px-x-600px-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:26828;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:39:\"Noworm-Plus_2_600px-x-600px-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:8593;}s:21:\"woocommerce_thumbnail\";a:6:{s:4:\"file\";s:39:\"Noworm-Plus_2_600px-x-600px-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:26828;s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:5:{s:4:\"file\";s:39:\"Noworm-Plus_2_600px-x-600px-200x200.png\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:13819;}}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:{}}}'),(28422,3743,'_wp_attached_file','2023/08/Noworm-Plus_20_600px-x-600px.png'),(28423,3743,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:600;s:6:\"height\";i:600;s:4:\"file\";s:40:\"2023/08/Noworm-Plus_20_600px-x-600px.png\";s:8:\"filesize\";i:41498;s:5:\"sizes\";a:4:{s:6:\"medium\";a:5:{s:4:\"file\";s:40:\"Noworm-Plus_20_600px-x-600px-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:31510;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:40:\"Noworm-Plus_20_600px-x-600px-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:10879;}s:21:\"woocommerce_thumbnail\";a:6:{s:4:\"file\";s:40:\"Noworm-Plus_20_600px-x-600px-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:31510;s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:5:{s:4:\"file\";s:40:\"Noworm-Plus_20_600px-x-600px-200x200.png\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:16816;}}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:{}}}'),(28424,3744,'_wp_attached_file','2023/09/Canny-Flexi-Joint_600px-1.png'),(28426,3745,'_wp_attached_file','2023/09/Canny-Flexi-Joint2_logo-1.png'),(28427,3745,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:300;s:6:\"height\";i:124;s:4:\"file\";s:37:\"2023/09/Canny-Flexi-Joint2_logo-1.png\";s:8:\"filesize\";i:4758;s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:37:\"Canny-Flexi-Joint2_logo-1-150x124.png\";s:5:\"width\";i:150;s:6:\"height\";i:124;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:7339;}s:29:\"woocommerce_gallery_thumbnail\";a:5:{s:4:\"file\";s:37:\"Canny-Flexi-Joint2_logo-1-200x124.png\";s:5:\"width\";i:200;s:6:\"height\";i:124;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:8296;}}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:{}}}'),(28428,3746,'_wp_attached_file','2023/09/Ganadexil-Enrofloxacina_600px-x-600px.png'),(28429,3746,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:600;s:6:\"height\";i:600;s:4:\"file\";s:49:\"2023/09/Ganadexil-Enrofloxacina_600px-x-600px.png\";s:8:\"filesize\";i:66664;s:5:\"sizes\";a:4:{s:6:\"medium\";a:5:{s:4:\"file\";s:49:\"Ganadexil-Enrofloxacina_600px-x-600px-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:50675;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:49:\"Ganadexil-Enrofloxacina_600px-x-600px-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:14275;}s:21:\"woocommerce_thumbnail\";a:6:{s:4:\"file\";s:49:\"Ganadexil-Enrofloxacina_600px-x-600px-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:50675;s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:5:{s:4:\"file\";s:49:\"Ganadexil-Enrofloxacina_600px-x-600px-200x200.png\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:23903;}}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:{}}}'),(28430,3747,'_wp_attached_file','2023/09/Canny-CAL-Syrup_BOX_600px.png'),(28431,3747,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:600;s:6:\"height\";i:600;s:4:\"file\";s:37:\"2023/09/Canny-CAL-Syrup_BOX_600px.png\";s:8:\"filesize\";i:68369;s:5:\"sizes\";a:4:{s:6:\"medium\";a:5:{s:4:\"file\";s:37:\"Canny-CAL-Syrup_BOX_600px-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:58589;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:37:\"Canny-CAL-Syrup_BOX_600px-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:18318;}s:21:\"woocommerce_thumbnail\";a:6:{s:4:\"file\";s:37:\"Canny-CAL-Syrup_BOX_600px-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:58589;s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:5:{s:4:\"file\";s:37:\"Canny-CAL-Syrup_BOX_600px-200x200.png\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:29172;}}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:{}}}'),(28432,3748,'_wp_attached_file','2023/09/Canny-Coat_600px-1.png'),(28433,3748,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:600;s:6:\"height\";i:600;s:4:\"file\";s:30:\"2023/09/Canny-Coat_600px-1.png\";s:8:\"filesize\";i:50703;s:5:\"sizes\";a:4:{s:6:\"medium\";a:5:{s:4:\"file\";s:30:\"Canny-Coat_600px-1-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:40304;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:30:\"Canny-Coat_600px-1-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:12250;}s:21:\"woocommerce_thumbnail\";a:6:{s:4:\"file\";s:30:\"Canny-Coat_600px-1-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:40304;s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:5:{s:4:\"file\";s:30:\"Canny-Coat_600px-1-200x200.png\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:19836;}}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:{}}}'),(28435,3749,'_wp_attached_file','2023/09/Hemo-Boost_600px.png'),(28434,3731,'_product_image_gallery','3752'),(28436,3749,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:600;s:6:\"height\";i:600;s:4:\"file\";s:28:\"2023/09/Hemo-Boost_600px.png\";s:8:\"filesize\";i:48135;s:5:\"sizes\";a:4:{s:6:\"medium\";a:5:{s:4:\"file\";s:28:\"Hemo-Boost_600px-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:40580;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:28:\"Hemo-Boost_600px-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:12515;}s:21:\"woocommerce_thumbnail\";a:6:{s:4:\"file\";s:28:\"Hemo-Boost_600px-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:40580;s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:5:{s:4:\"file\";s:28:\"Hemo-Boost_600px-200x200.png\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:19918;}}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:{}}}'),(28438,3750,'_wp_attached_file','2023/09/Super-PUP_B_600px-x-600px.png'),(28437,3440,'_product_image_gallery','3749'),(28439,3750,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:600;s:6:\"height\";i:600;s:4:\"file\";s:37:\"2023/09/Super-PUP_B_600px-x-600px.png\";s:8:\"filesize\";i:123898;s:5:\"sizes\";a:4:{s:6:\"medium\";a:5:{s:4:\"file\";s:37:\"Super-PUP_B_600px-x-600px-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:32437;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:37:\"Super-PUP_B_600px-x-600px-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:10330;}s:21:\"woocommerce_thumbnail\";a:6:{s:4:\"file\";s:37:\"Super-PUP_B_600px-x-600px-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:32437;s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:5:{s:4:\"file\";s:37:\"Super-PUP_B_600px-x-600px-200x200.png\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:16444;}}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:{}}}'),(28440,3441,'_product_image_gallery','3750'),(28442,3751,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:600;s:6:\"height\";i:600;s:4:\"file\";s:41:\"2023/09/Canny-CAL-SYRUP_600px-x-600px.png\";s:8:\"filesize\";i:173594;s:5:\"sizes\";a:4:{s:6:\"medium\";a:5:{s:4:\"file\";s:41:\"Canny-CAL-SYRUP_600px-x-600px-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:48305;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:41:\"Canny-CAL-SYRUP_600px-x-600px-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:15326;}s:21:\"woocommerce_thumbnail\";a:6:{s:4:\"file\";s:41:\"Canny-CAL-SYRUP_600px-x-600px-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:48305;s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:5:{s:4:\"file\";s:41:\"Canny-CAL-SYRUP_600px-x-600px-200x200.png\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:24526;}}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:{}}}'),(28443,3752,'_wp_attached_file','2023/09/Canny-CAL-SYRUP_B_600px-x-600px.png'),(28444,3752,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:600;s:6:\"height\";i:600;s:4:\"file\";s:43:\"2023/09/Canny-CAL-SYRUP_B_600px-x-600px.png\";s:8:\"filesize\";i:132117;s:5:\"sizes\";a:4:{s:6:\"medium\";a:5:{s:4:\"file\";s:43:\"Canny-CAL-SYRUP_B_600px-x-600px-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:34512;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:43:\"Canny-CAL-SYRUP_B_600px-x-600px-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:10881;}s:21:\"woocommerce_thumbnail\";a:6:{s:4:\"file\";s:43:\"Canny-CAL-SYRUP_B_600px-x-600px-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:34512;s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:5:{s:4:\"file\";s:43:\"Canny-CAL-SYRUP_B_600px-x-600px-200x200.png\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:17512;}}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:{}}}'),(28445,3753,'_wp_attached_file','2023/09/Canny-CAL-Syrup_logo-1.png'),(28446,3753,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:300;s:6:\"height\";i:94;s:4:\"file\";s:34:\"2023/09/Canny-CAL-Syrup_logo-1.png\";s:8:\"filesize\";i:2695;s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:33:\"Canny-CAL-Syrup_logo-1-150x94.png\";s:5:\"width\";i:150;s:6:\"height\";i:94;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:3331;}s:29:\"woocommerce_gallery_thumbnail\";a:5:{s:4:\"file\";s:33:\"Canny-CAL-Syrup_logo-1-200x94.png\";s:5:\"width\";i:200;s:6:\"height\";i:94;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:4778;}}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:{}}}'),(28447,3754,'_wp_attached_file','2023/08/Prazimec-D_600px-x-600px.png'),(28448,3754,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:600;s:6:\"height\";i:600;s:4:\"file\";s:36:\"2023/08/Prazimec-D_600px-x-600px.png\";s:8:\"filesize\";i:55991;s:5:\"sizes\";a:4:{s:6:\"medium\";a:5:{s:4:\"file\";s:36:\"Prazimec-D_600px-x-600px-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:43852;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:36:\"Prazimec-D_600px-x-600px-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:12677;}s:21:\"woocommerce_thumbnail\";a:6:{s:4:\"file\";s:36:\"Prazimec-D_600px-x-600px-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:43852;s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:5:{s:4:\"file\";s:36:\"Prazimec-D_600px-x-600px-200x200.png\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:21073;}}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:{}}}'),(28449,3755,'_wp_attached_file','2023/08/Prazimec-D_logo-1.png'),(28450,3755,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:300;s:6:\"height\";i:76;s:4:\"file\";s:29:\"2023/08/Prazimec-D_logo-1.png\";s:8:\"filesize\";i:2213;s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:28:\"Prazimec-D_logo-1-150x76.png\";s:5:\"width\";i:150;s:6:\"height\";i:76;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:3401;}s:29:\"woocommerce_gallery_thumbnail\";a:5:{s:4:\"file\";s:28:\"Prazimec-D_logo-1-200x76.png\";s:5:\"width\";i:200;s:6:\"height\";i:76;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:4101;}}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:{}}}'),(28451,3756,'_wp_attached_file','2023/08/AbamecD-Logo-1.png'),(28452,3756,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:300;s:6:\"height\";i:58;s:4:\"file\";s:26:\"2023/08/AbamecD-Logo-1.png\";s:8:\"filesize\";i:3185;s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:25:\"AbamecD-Logo-1-150x58.png\";s:5:\"width\";i:150;s:6:\"height\";i:58;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:3660;}s:29:\"woocommerce_gallery_thumbnail\";a:5:{s:4:\"file\";s:25:\"AbamecD-Logo-1-200x58.png\";s:5:\"width\";i:200;s:6:\"height\";i:58;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:4585;}}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:{}}}'),(28453,3757,'_wp_attached_file','2023/08/AbamecD_600px-x-600px-1.png'),(28454,3757,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:600;s:6:\"height\";i:600;s:4:\"file\";s:35:\"2023/08/AbamecD_600px-x-600px-1.png\";s:8:\"filesize\";i:130203;s:5:\"sizes\";a:4:{s:6:\"medium\";a:5:{s:4:\"file\";s:35:\"AbamecD_600px-x-600px-1-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:36874;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:35:\"AbamecD_600px-x-600px-1-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:12062;}s:21:\"woocommerce_thumbnail\";a:6:{s:4:\"file\";s:35:\"AbamecD_600px-x-600px-1-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:36874;s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:5:{s:4:\"file\";s:35:\"AbamecD_600px-x-600px-1-200x200.png\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:18976;}}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:{}}}'),(28455,3758,'_wp_attached_file','2023/08/Felimazole_600px-x-600px-1.png'),(28456,3758,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:600;s:6:\"height\";i:600;s:4:\"file\";s:38:\"2023/08/Felimazole_600px-x-600px-1.png\";s:8:\"filesize\";i:89010;s:5:\"sizes\";a:4:{s:6:\"medium\";a:5:{s:4:\"file\";s:38:\"Felimazole_600px-x-600px-1-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:52819;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:38:\"Felimazole_600px-x-600px-1-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:14676;}s:21:\"woocommerce_thumbnail\";a:6:{s:4:\"file\";s:38:\"Felimazole_600px-x-600px-1-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:52819;s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:5:{s:4:\"file\";s:38:\"Felimazole_600px-x-600px-1-200x200.png\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:24623;}}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:{}}}'),(28457,3759,'_wp_attached_file','2023/08/Felimazole_300px-1.png'),(28458,3759,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:300;s:6:\"height\";i:48;s:4:\"file\";s:30:\"2023/08/Felimazole_300px-1.png\";s:8:\"filesize\";i:4310;s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:29:\"Felimazole_300px-1-150x48.png\";s:5:\"width\";i:150;s:6:\"height\";i:48;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:3240;}s:29:\"woocommerce_gallery_thumbnail\";a:5:{s:4:\"file\";s:29:\"Felimazole_300px-1-200x48.png\";s:5:\"width\";i:200;s:6:\"height\";i:48;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:4035;}}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:{}}}'),(28459,3760,'_wp_attached_file','2023/09/Orondo-Spray_600px-x-600px-1.png'),(28460,3760,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:600;s:6:\"height\";i:600;s:4:\"file\";s:40:\"2023/09/Orondo-Spray_600px-x-600px-1.png\";s:8:\"filesize\";i:22620;s:5:\"sizes\";a:4:{s:6:\"medium\";a:5:{s:4:\"file\";s:40:\"Orondo-Spray_600px-x-600px-1-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:12523;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:40:\"Orondo-Spray_600px-x-600px-1-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:4252;}s:21:\"woocommerce_thumbnail\";a:6:{s:4:\"file\";s:40:\"Orondo-Spray_600px-x-600px-1-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:12523;s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:5:{s:4:\"file\";s:40:\"Orondo-Spray_600px-x-600px-1-200x200.png\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:6693;}}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:{}}}'),(28461,3761,'_wp_attached_file','2023/09/Orondo-Spray_300px-1.png'),(28462,3761,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:300;s:6:\"height\";i:142;s:4:\"file\";s:32:\"2023/09/Orondo-Spray_300px-1.png\";s:8:\"filesize\";i:21108;s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:32:\"Orondo-Spray_300px-1-150x142.png\";s:5:\"width\";i:150;s:6:\"height\";i:142;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:10039;}s:29:\"woocommerce_gallery_thumbnail\";a:5:{s:4:\"file\";s:32:\"Orondo-Spray_300px-1-200x142.png\";s:5:\"width\";i:200;s:6:\"height\";i:142;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:12082;}}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:{}}}'),(28463,3762,'_wp_attached_file','2023/09/PET-CARE2.gif'),(28464,3762,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1300;s:6:\"height\";i:300;s:4:\"file\";s:21:\"2023/09/PET-CARE2.gif\";s:8:\"filesize\";i:287929;s:5:\"sizes\";a:7:{s:6:\"medium\";a:5:{s:4:\"file\";s:20:\"PET-CARE2-300x69.gif\";s:5:\"width\";i:300;s:6:\"height\";i:69;s:9:\"mime-type\";s:9:\"image/gif\";s:8:\"filesize\";i:18065;}s:5:\"large\";a:5:{s:4:\"file\";s:22:\"PET-CARE2-1024x236.gif\";s:5:\"width\";i:1024;s:6:\"height\";i:236;s:9:\"mime-type\";s:9:\"image/gif\";s:8:\"filesize\";i:164021;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:21:\"PET-CARE2-150x150.gif\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/gif\";s:8:\"filesize\";i:17066;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:21:\"PET-CARE2-768x177.gif\";s:5:\"width\";i:768;s:6:\"height\";i:177;s:9:\"mime-type\";s:9:\"image/gif\";s:8:\"filesize\";i:94916;}s:21:\"woocommerce_thumbnail\";a:6:{s:4:\"file\";s:21:\"PET-CARE2-300x300.gif\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/gif\";s:8:\"filesize\";i:50616;s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:5:{s:4:\"file\";s:21:\"PET-CARE2-600x138.gif\";s:5:\"width\";i:600;s:6:\"height\";i:138;s:9:\"mime-type\";s:9:\"image/gif\";s:8:\"filesize\";i:59946;}s:29:\"woocommerce_gallery_thumbnail\";a:5:{s:4:\"file\";s:21:\"PET-CARE2-200x200.gif\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/gif\";s:8:\"filesize\";i:27503;}}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:{}}}'),(28465,3763,'_wp_attached_file','2023/08/AVI-Pollodoxin-600px-x-600px.png'),(28466,3763,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:600;s:6:\"height\";i:600;s:4:\"file\";s:40:\"2023/08/AVI-Pollodoxin-600px-x-600px.png\";s:8:\"filesize\";i:59303;s:5:\"sizes\";a:4:{s:6:\"medium\";a:5:{s:4:\"file\";s:40:\"AVI-Pollodoxin-600px-x-600px-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:47328;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:40:\"AVI-Pollodoxin-600px-x-600px-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:14319;}s:21:\"woocommerce_thumbnail\";a:6:{s:4:\"file\";s:40:\"AVI-Pollodoxin-600px-x-600px-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:47328;s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:5:{s:4:\"file\";s:40:\"AVI-Pollodoxin-600px-x-600px-200x200.png\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:23058;}}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:{}}}'),(28468,3764,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1300;s:6:\"height\";i:300;s:4:\"file\";s:21:\"2023/09/ABOUT-US1.gif\";s:8:\"filesize\";i:366409;s:5:\"sizes\";a:7:{s:6:\"medium\";a:5:{s:4:\"file\";s:20:\"ABOUT-US1-300x69.gif\";s:5:\"width\";i:300;s:6:\"height\";i:69;s:9:\"mime-type\";s:9:\"image/gif\";s:8:\"filesize\";i:20504;}s:5:\"large\";a:5:{s:4:\"file\";s:22:\"ABOUT-US1-1024x236.gif\";s:5:\"width\";i:1024;s:6:\"height\";i:236;s:9:\"mime-type\";s:9:\"image/gif\";s:8:\"filesize\";i:192632;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:21:\"ABOUT-US1-150x150.gif\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/gif\";s:8:\"filesize\";i:18092;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:21:\"ABOUT-US1-768x177.gif\";s:5:\"width\";i:768;s:6:\"height\";i:177;s:9:\"mime-type\";s:9:\"image/gif\";s:8:\"filesize\";i:112008;}s:21:\"woocommerce_thumbnail\";a:6:{s:4:\"file\";s:21:\"ABOUT-US1-300x300.gif\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/gif\";s:8:\"filesize\";i:49491;s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:5:{s:4:\"file\";s:21:\"ABOUT-US1-600x138.gif\";s:5:\"width\";i:600;s:6:\"height\";i:138;s:9:\"mime-type\";s:9:\"image/gif\";s:8:\"filesize\";i:71422;}s:29:\"woocommerce_gallery_thumbnail\";a:5:{s:4:\"file\";s:21:\"ABOUT-US1-200x200.gif\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/gif\";s:8:\"filesize\";i:29273;}}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:{}}}'),(28469,3765,'_wp_attached_file','2023/09/VECTROMUNE-FP-–-MG_600px-x-600px.png'),(28471,3766,'_wp_attached_file','2023/09/VECTROMUNE-FP-–-MG_300px.png'),(28472,3766,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:300;s:6:\"height\";i:142;s:4:\"file\";s:38:\"2023/09/VECTROMUNE-FP-–-MG_300px.png\";s:8:\"filesize\";i:5596;s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:38:\"VECTROMUNE-FP-–-MG_300px-150x142.png\";s:5:\"width\";i:150;s:6:\"height\";i:142;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:4962;}s:29:\"woocommerce_gallery_thumbnail\";a:5:{s:4:\"file\";s:38:\"VECTROMUNE-FP-–-MG_300px-200x142.png\";s:5:\"width\";i:200;s:6:\"height\";i:142;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:6437;}}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:{}}}'),(28739,3897,'_wp_attached_file','2023/09/VECTROMUNE-FP-–-MG_300px-1.png'),(28473,3673,'_thumbnail_id','3898'),(28474,3767,'_wp_attached_file','2023/09/REOMUNE-3.png'),(28475,3767,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:600;s:6:\"height\";i:600;s:4:\"file\";s:21:\"2023/09/REOMUNE-3.png\";s:8:\"filesize\";i:53522;s:5:\"sizes\";a:4:{s:6:\"medium\";a:5:{s:4:\"file\";s:21:\"REOMUNE-3-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:33977;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:21:\"REOMUNE-3-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:9985;}s:21:\"woocommerce_thumbnail\";a:6:{s:4:\"file\";s:21:\"REOMUNE-3-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:33977;s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:5:{s:4:\"file\";s:21:\"REOMUNE-3-200x200.png\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:16387;}}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:{}}}'),(28476,3768,'_wp_attached_file','2023/09/REOMUNE-3_300px.png'),(28477,3768,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:300;s:6:\"height\";i:142;s:4:\"file\";s:27:\"2023/09/REOMUNE-3_300px.png\";s:8:\"filesize\";i:5551;s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:27:\"REOMUNE-3_300px-150x142.png\";s:5:\"width\";i:150;s:6:\"height\";i:142;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:4922;}s:29:\"woocommerce_gallery_thumbnail\";a:5:{s:4:\"file\";s:27:\"REOMUNE-3_300px-200x142.png\";s:5:\"width\";i:200;s:6:\"height\";i:142;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:6237;}}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:{}}}'),(28478,3769,'_wp_attached_file','2023/09/Poximune_600px-x-600px.png'),(28479,3769,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:600;s:6:\"height\";i:600;s:4:\"file\";s:34:\"2023/09/Poximune_600px-x-600px.png\";s:8:\"filesize\";i:60767;s:5:\"sizes\";a:4:{s:6:\"medium\";a:5:{s:4:\"file\";s:34:\"Poximune_600px-x-600px-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:47140;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:34:\"Poximune_600px-x-600px-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:13782;}s:21:\"woocommerce_thumbnail\";a:6:{s:4:\"file\";s:34:\"Poximune_600px-x-600px-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:47140;s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:5:{s:4:\"file\";s:34:\"Poximune_600px-x-600px-200x200.png\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:22983;}}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:{}}}'),(28480,3770,'_wp_attached_file','2023/09/Poximune_300px.png'),(28481,3770,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:300;s:6:\"height\";i:142;s:4:\"file\";s:26:\"2023/09/Poximune_300px.png\";s:8:\"filesize\";i:5678;s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:26:\"Poximune_300px-150x142.png\";s:5:\"width\";i:150;s:6:\"height\";i:142;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:5053;}s:29:\"woocommerce_gallery_thumbnail\";a:5:{s:4:\"file\";s:26:\"Poximune_300px-200x142.png\";s:5:\"width\";i:200;s:6:\"height\";i:142;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:6550;}}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:{}}}'),(28483,3771,'_wp_attached_file','2023/09/Circomune_600px-x-600px.png'),(28482,3549,'_thumbnail_id','3760'),(28484,3771,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:600;s:6:\"height\";i:600;s:4:\"file\";s:35:\"2023/09/Circomune_600px-x-600px.png\";s:8:\"filesize\";i:56301;s:5:\"sizes\";a:4:{s:6:\"medium\";a:5:{s:4:\"file\";s:35:\"Circomune_600px-x-600px-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:38091;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:35:\"Circomune_600px-x-600px-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:11363;}s:21:\"woocommerce_thumbnail\";a:6:{s:4:\"file\";s:35:\"Circomune_600px-x-600px-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:38091;s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:5:{s:4:\"file\";s:35:\"Circomune_600px-x-600px-200x200.png\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:18669;}}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:{}}}'),(28485,3772,'_wp_attached_file','2023/09/Circomune_300px.png'),(28486,3772,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:300;s:6:\"height\";i:142;s:4:\"file\";s:27:\"2023/09/Circomune_300px.png\";s:8:\"filesize\";i:5102;s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:27:\"Circomune_300px-150x142.png\";s:5:\"width\";i:150;s:6:\"height\";i:142;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:4337;}s:29:\"woocommerce_gallery_thumbnail\";a:5:{s:4:\"file\";s:27:\"Circomune_300px-200x142.png\";s:5:\"width\";i:200;s:6:\"height\";i:142;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:5416;}}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:{}}}'),(28487,3773,'_wp_attached_file','2023/09/CEVAC-FP-L_300px.png'),(28488,3773,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:300;s:6:\"height\";i:142;s:4:\"file\";s:28:\"2023/09/CEVAC-FP-L_300px.png\";s:8:\"filesize\";i:5059;s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:28:\"CEVAC-FP-L_300px-150x142.png\";s:5:\"width\";i:150;s:6:\"height\";i:142;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:4134;}s:29:\"woocommerce_gallery_thumbnail\";a:5:{s:4:\"file\";s:28:\"CEVAC-FP-L_300px-200x142.png\";s:5:\"width\";i:200;s:6:\"height\";i:142;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:5294;}}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:{}}}'),(28489,3774,'_wp_attached_file','2023/09/CEVAC-VITABORN-L_300px.png'),(28490,3774,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:300;s:6:\"height\";i:142;s:4:\"file\";s:34:\"2023/09/CEVAC-VITABORN-L_300px.png\";s:8:\"filesize\";i:5458;s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:34:\"CEVAC-VITABORN-L_300px-150x142.png\";s:5:\"width\";i:150;s:6:\"height\";i:142;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:4939;}s:29:\"woocommerce_gallery_thumbnail\";a:5:{s:4:\"file\";s:34:\"CEVAC-VITABORN-L_300px-200x142.png\";s:5:\"width\";i:200;s:6:\"height\";i:142;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:6140;}}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:{}}}'),(28593,3823,'_wp_attached_file','2023/09/CEVAC-VITABORN-L_300px-1.png'),(28491,3776,'_wp_attached_file','2023/09/CEVAC-TRANSMUNE_300px.png'),(28492,3776,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:300;s:6:\"height\";i:142;s:4:\"file\";s:33:\"2023/09/CEVAC-TRANSMUNE_300px.png\";s:8:\"filesize\";i:5387;s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:33:\"CEVAC-TRANSMUNE_300px-150x142.png\";s:5:\"width\";i:150;s:6:\"height\";i:142;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:4327;}s:29:\"woocommerce_gallery_thumbnail\";a:5:{s:4:\"file\";s:33:\"CEVAC-TRANSMUNE_300px-200x142.png\";s:5:\"width\";i:200;s:6:\"height\";i:142;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:5711;}}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:{}}}'),(28493,3777,'_wp_attached_file','2023/09/CEVAC-NEW-L_300px.png'),(28494,3777,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:300;s:6:\"height\";i:142;s:4:\"file\";s:29:\"2023/09/CEVAC-NEW-L_300px.png\";s:8:\"filesize\";i:4986;s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:29:\"CEVAC-NEW-L_300px-150x142.png\";s:5:\"width\";i:150;s:6:\"height\";i:142;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:4158;}s:29:\"woocommerce_gallery_thumbnail\";a:5:{s:4:\"file\";s:29:\"CEVAC-NEW-L_300px-200x142.png\";s:5:\"width\";i:200;s:6:\"height\";i:142;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:5104;}}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:{}}}'),(28591,3822,'_wp_attached_file','2023/09/CEVAC-NEW-L_300px-1.png'),(28564,3810,'_wp_attached_file','2023/09/Mansol-50_600px-x-600px.png'),(28560,3648,'_thumbnail_id','3796'),(28561,3643,'_thumbnail_id','3801'),(28562,3809,'_wp_attached_file','2023/09/Mansol-50_300px.png'),(28563,3809,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:300;s:6:\"height\";i:58;s:4:\"file\";s:27:\"2023/09/Mansol-50_300px.png\";s:8:\"filesize\";i:2654;s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:26:\"Mansol-50_300px-150x58.png\";s:5:\"width\";i:150;s:6:\"height\";i:58;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:2113;}s:29:\"woocommerce_gallery_thumbnail\";a:5:{s:4:\"file\";s:26:\"Mansol-50_300px-200x58.png\";s:5:\"width\";i:200;s:6:\"height\";i:58;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:2772;}}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:{}}}'),(28497,3779,'_wp_attached_file','2023/09/SELVIT-E_300px.png'),(28498,3779,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:278;s:6:\"height\";i:48;s:4:\"file\";s:26:\"2023/09/SELVIT-E_300px.png\";s:8:\"filesize\";i:3076;s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:25:\"SELVIT-E_300px-150x48.png\";s:5:\"width\";i:150;s:6:\"height\";i:48;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:1898;}s:29:\"woocommerce_gallery_thumbnail\";a:5:{s:4:\"file\";s:25:\"SELVIT-E_300px-200x48.png\";s:5:\"width\";i:200;s:6:\"height\";i:48;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:2030;}}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:{}}}'),(28530,3795,'_wp_attached_file','2023/09/SELVIT-E_300px-1.png'),(28499,3780,'_wp_attached_file','2023/09/CHICKTONIC_600px-x-600px.png'),(28500,3780,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:600;s:6:\"height\";i:600;s:4:\"file\";s:36:\"2023/09/CHICKTONIC_600px-x-600px.png\";s:8:\"filesize\";i:103840;s:5:\"sizes\";a:4:{s:6:\"medium\";a:5:{s:4:\"file\";s:36:\"CHICKTONIC_600px-x-600px-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:73752;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:36:\"CHICKTONIC_600px-x-600px-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:20646;}s:21:\"woocommerce_thumbnail\";a:6:{s:4:\"file\";s:36:\"CHICKTONIC_600px-x-600px-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:73752;s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:5:{s:4:\"file\";s:36:\"CHICKTONIC_600px-x-600px-200x200.png\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:34447;}}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:{}}}'),(28501,3781,'_wp_attached_file','2023/09/CHICKTONIC_300px.png'),(28502,3781,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:300;s:6:\"height\";i:36;s:4:\"file\";s:28:\"2023/09/CHICKTONIC_300px.png\";s:8:\"filesize\";i:4738;s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:27:\"CHICKTONIC_300px-150x36.png\";s:5:\"width\";i:150;s:6:\"height\";i:36;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:4038;}s:29:\"woocommerce_gallery_thumbnail\";a:5:{s:4:\"file\";s:27:\"CHICKTONIC_300px-200x36.png\";s:5:\"width\";i:200;s:6:\"height\";i:36;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:5017;}}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:{}}}'),(28534,3797,'_wp_attached_file','2023/09/CHICKTONIC_600px-x-600px-1.png'),(28503,3782,'_wp_attached_file','2023/09/Vermxil_300px.png'),(28504,3782,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:300;s:6:\"height\";i:74;s:4:\"file\";s:25:\"2023/09/Vermxil_300px.png\";s:8:\"filesize\";i:3524;s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:24:\"Vermxil_300px-150x74.png\";s:5:\"width\";i:150;s:6:\"height\";i:74;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:4153;}s:29:\"woocommerce_gallery_thumbnail\";a:5:{s:4:\"file\";s:24:\"Vermxil_300px-200x74.png\";s:5:\"width\";i:200;s:6:\"height\";i:74;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:4804;}}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:{}}}'),(28566,3811,'_wp_attached_file','2023/09/SUPERVIT_300px.png'),(28505,3783,'_wp_attached_file','2023/09/Vermxil_600px-600px.png'),(28506,3783,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:600;s:6:\"height\";i:600;s:4:\"file\";s:31:\"2023/09/Vermxil_600px-600px.png\";s:8:\"filesize\";i:72426;s:5:\"sizes\";a:4:{s:6:\"medium\";a:5:{s:4:\"file\";s:31:\"Vermxil_600px-600px-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:54326;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:31:\"Vermxil_600px-600px-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:15355;}s:21:\"woocommerce_thumbnail\";a:6:{s:4:\"file\";s:31:\"Vermxil_600px-600px-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:54326;s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:5:{s:4:\"file\";s:31:\"Vermxil_600px-600px-200x200.png\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:25754;}}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:{}}}'),(28507,3784,'_wp_attached_file','2023/09/Neotra_600px-x-600px.png'),(28508,3784,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:600;s:6:\"height\";i:600;s:4:\"file\";s:32:\"2023/09/Neotra_600px-x-600px.png\";s:8:\"filesize\";i:55057;s:5:\"sizes\";a:4:{s:6:\"medium\";a:5:{s:4:\"file\";s:32:\"Neotra_600px-x-600px-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:44914;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:32:\"Neotra_600px-x-600px-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:13807;}s:21:\"woocommerce_thumbnail\";a:6:{s:4:\"file\";s:32:\"Neotra_600px-x-600px-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:44914;s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:5:{s:4:\"file\";s:32:\"Neotra_600px-x-600px-200x200.png\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:22173;}}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:{}}}'),(28510,3785,'_wp_attached_file','2023/09/Avishield-ND-B1_300px.png'),(28509,3634,'_thumbnail_id','3784'),(28511,3785,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:300;s:6:\"height\";i:37;s:4:\"file\";s:33:\"2023/09/Avishield-ND-B1_300px.png\";s:8:\"filesize\";i:2298;s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:32:\"Avishield-ND-B1_300px-150x37.png\";s:5:\"width\";i:150;s:6:\"height\";i:37;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:2026;}s:29:\"woocommerce_gallery_thumbnail\";a:5:{s:4:\"file\";s:32:\"Avishield-ND-B1_300px-200x37.png\";s:5:\"width\";i:200;s:6:\"height\";i:37;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:2656;}}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:{}}}'),(28512,3786,'_wp_attached_file','2023/09/Avishield-ND-B1.png'),(28513,3786,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:600;s:6:\"height\";i:600;s:4:\"file\";s:27:\"2023/09/Avishield-ND-B1.png\";s:8:\"filesize\";i:64142;s:5:\"sizes\";a:4:{s:6:\"medium\";a:5:{s:4:\"file\";s:27:\"Avishield-ND-B1-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:46298;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:27:\"Avishield-ND-B1-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:13654;}s:21:\"woocommerce_thumbnail\";a:6:{s:4:\"file\";s:27:\"Avishield-ND-B1-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:46298;s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:5:{s:4:\"file\";s:27:\"Avishield-ND-B1-200x200.png\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:22465;}}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:{}}}'),(28514,3787,'_wp_attached_file','2023/09/CEVAC-BRON-120-L_300px.png'),(28515,3787,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:300;s:6:\"height\";i:142;s:4:\"file\";s:34:\"2023/09/CEVAC-BRON-120-L_300px.png\";s:8:\"filesize\";i:4345;s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:34:\"CEVAC-BRON-120-L_300px-150x142.png\";s:5:\"width\";i:150;s:6:\"height\";i:142;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:3429;}s:29:\"woocommerce_gallery_thumbnail\";a:5:{s:4:\"file\";s:34:\"CEVAC-BRON-120-L_300px-200x142.png\";s:5:\"width\";i:200;s:6:\"height\";i:142;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:4508;}}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:{}}}'),(28516,3789,'_wp_attached_file','2023/09/CEVAC-IBird_300px.png'),(28517,3789,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:300;s:6:\"height\";i:142;s:4:\"file\";s:29:\"2023/09/CEVAC-IBird_300px.png\";s:8:\"filesize\";i:4336;s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:29:\"CEVAC-IBird_300px-150x142.png\";s:5:\"width\";i:150;s:6:\"height\";i:142;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:3402;}s:29:\"woocommerce_gallery_thumbnail\";a:5:{s:4:\"file\";s:29:\"CEVAC-IBird_300px-200x142.png\";s:5:\"width\";i:200;s:6:\"height\";i:142;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:4100;}}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:{}}}'),(28589,3821,'_wp_attached_file','2023/09/CEVAC-IBird_300px-1.png'),(28518,3790,'_wp_attached_file','2023/09/CEVAC-GUMBO-L_300px.png'),(28519,3790,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:300;s:6:\"height\";i:142;s:4:\"file\";s:31:\"2023/09/CEVAC-GUMBO-L_300px.png\";s:8:\"filesize\";i:4054;s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:31:\"CEVAC-GUMBO-L_300px-150x142.png\";s:5:\"width\";i:150;s:6:\"height\";i:142;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:3422;}s:29:\"woocommerce_gallery_thumbnail\";a:5:{s:4:\"file\";s:31:\"CEVAC-GUMBO-L_300px-200x142.png\";s:5:\"width\";i:200;s:6:\"height\";i:142;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:4323;}}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:{}}}'),(28607,3829,'_wp_attached_file','2023/09/CEVAC-GUMBO-L_300px-1.png'),(28520,3791,'_wp_attached_file','2023/09/CEVAC-ND-IB-K.png'),(28521,3791,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:600;s:6:\"height\";i:600;s:4:\"file\";s:25:\"2023/09/CEVAC-ND-IB-K.png\";s:8:\"filesize\";i:65898;s:5:\"sizes\";a:4:{s:6:\"medium\";a:5:{s:4:\"file\";s:25:\"CEVAC-ND-IB-K-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:41577;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:25:\"CEVAC-ND-IB-K-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:11782;}s:21:\"woocommerce_thumbnail\";a:6:{s:4:\"file\";s:25:\"CEVAC-ND-IB-K-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:41577;s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:5:{s:4:\"file\";s:25:\"CEVAC-ND-IB-K-200x200.png\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:19513;}}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:{}}}'),(28522,3792,'_wp_attached_file','2023/09/CEVAC-ND-IB-K_300px.png'),(28523,3792,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:300;s:6:\"height\";i:142;s:4:\"file\";s:31:\"2023/09/CEVAC-ND-IB-K_300px.png\";s:8:\"filesize\";i:4399;s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:31:\"CEVAC-ND-IB-K_300px-150x142.png\";s:5:\"width\";i:150;s:6:\"height\";i:142;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:3498;}s:29:\"woocommerce_gallery_thumbnail\";a:5:{s:4:\"file\";s:31:\"CEVAC-ND-IB-K_300px-200x142.png\";s:5:\"width\";i:200;s:6:\"height\";i:142;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:4301;}}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:{}}}'),(28524,3656,'_thumbnail_id','3791'),(28525,3793,'_wp_attached_file','2023/09/CEVAC-NEW-K_600px-x-600px.png'),(28526,3793,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:600;s:6:\"height\";i:600;s:4:\"file\";s:37:\"2023/09/CEVAC-NEW-K_600px-x-600px.png\";s:8:\"filesize\";i:60984;s:5:\"sizes\";a:4:{s:6:\"medium\";a:5:{s:4:\"file\";s:37:\"CEVAC-NEW-K_600px-x-600px-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:39270;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:37:\"CEVAC-NEW-K_600px-x-600px-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:11268;}s:21:\"woocommerce_thumbnail\";a:6:{s:4:\"file\";s:37:\"CEVAC-NEW-K_600px-x-600px-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:39270;s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:5:{s:4:\"file\";s:37:\"CEVAC-NEW-K_600px-x-600px-200x200.png\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:18593;}}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:{}}}'),(28527,3794,'_wp_attached_file','2023/09/CEVAC-NEW-K_300px.png'),(28528,3794,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:300;s:6:\"height\";i:142;s:4:\"file\";s:29:\"2023/09/CEVAC-NEW-K_300px.png\";s:8:\"filesize\";i:5279;s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:29:\"CEVAC-NEW-K_300px-150x142.png\";s:5:\"width\";i:150;s:6:\"height\";i:142;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:4435;}s:29:\"woocommerce_gallery_thumbnail\";a:5:{s:4:\"file\";s:29:\"CEVAC-NEW-K_300px-200x142.png\";s:5:\"width\";i:200;s:6:\"height\";i:142;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:5569;}}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:{}}}'),(28529,3658,'_thumbnail_id','3793'),(28531,3795,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:278;s:6:\"height\";i:48;s:4:\"file\";s:28:\"2023/09/SELVIT-E_300px-1.png\";s:8:\"filesize\";i:3076;s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:27:\"SELVIT-E_300px-1-150x48.png\";s:5:\"width\";i:150;s:6:\"height\";i:48;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:1898;}s:29:\"woocommerce_gallery_thumbnail\";a:5:{s:4:\"file\";s:27:\"SELVIT-E_300px-1-200x48.png\";s:5:\"width\";i:200;s:6:\"height\";i:48;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:2030;}}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:{}}}'),(28532,3796,'_wp_attached_file','2023/09/SELVIT-E_600px-x-600px-1.png'),(28533,3796,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:600;s:6:\"height\";i:600;s:4:\"file\";s:36:\"2023/09/SELVIT-E_600px-x-600px-1.png\";s:8:\"filesize\";i:102956;s:5:\"sizes\";a:4:{s:6:\"medium\";a:5:{s:4:\"file\";s:36:\"SELVIT-E_600px-x-600px-1-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:69277;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:36:\"SELVIT-E_600px-x-600px-1-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:18494;}s:21:\"woocommerce_thumbnail\";a:6:{s:4:\"file\";s:36:\"SELVIT-E_600px-x-600px-1-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:69277;s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:5:{s:4:\"file\";s:36:\"SELVIT-E_600px-x-600px-1-200x200.png\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:31518;}}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:{}}}'),(28536,3798,'_wp_attached_file','2023/09/Com.B_600px-x-600px.png'),(28537,3798,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:600;s:6:\"height\";i:600;s:4:\"file\";s:31:\"2023/09/Com.B_600px-x-600px.png\";s:8:\"filesize\";i:68475;s:5:\"sizes\";a:4:{s:6:\"medium\";a:5:{s:4:\"file\";s:31:\"Com.B_600px-x-600px-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:59095;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:31:\"Com.B_600px-x-600px-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:16871;}s:21:\"woocommerce_thumbnail\";a:6:{s:4:\"file\";s:31:\"Com.B_600px-x-600px-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:59095;s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:5:{s:4:\"file\";s:31:\"Com.B_600px-x-600px-200x200.png\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:28155;}}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:{}}}'),(28539,3799,'_wp_attached_file','2023/09/Tilmovet-250mg_300px.png'),(28538,3647,'_thumbnail_id','3798'),(28540,3799,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:300;s:6:\"height\";i:40;s:4:\"file\";s:32:\"2023/09/Tilmovet-250mg_300px.png\";s:8:\"filesize\";i:2046;s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:31:\"Tilmovet-250mg_300px-150x40.png\";s:5:\"width\";i:150;s:6:\"height\";i:40;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:780;}s:29:\"woocommerce_gallery_thumbnail\";a:5:{s:4:\"file\";s:31:\"Tilmovet-250mg_300px-200x40.png\";s:5:\"width\";i:200;s:6:\"height\";i:40;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:914;}}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:{}}}'),(28541,3800,'_wp_attached_file','2023/09/Tilmovet-250mg_600px-x-600px.png'),(28542,3800,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:600;s:6:\"height\";i:600;s:4:\"file\";s:40:\"2023/09/Tilmovet-250mg_600px-x-600px.png\";s:8:\"filesize\";i:50179;s:5:\"sizes\";a:4:{s:6:\"medium\";a:5:{s:4:\"file\";s:40:\"Tilmovet-250mg_600px-x-600px-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:28579;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:40:\"Tilmovet-250mg_600px-x-600px-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:8219;}s:21:\"woocommerce_thumbnail\";a:6:{s:4:\"file\";s:40:\"Tilmovet-250mg_600px-x-600px-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:28579;s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:5:{s:4:\"file\";s:40:\"Tilmovet-250mg_600px-x-600px-200x200.png\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:13621;}}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:{}}}'),(28543,3801,'_wp_attached_file','2023/09/PHARMASIN-100_60px-x-600px.png'),(28544,3801,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:600;s:6:\"height\";i:600;s:4:\"file\";s:38:\"2023/09/PHARMASIN-100_60px-x-600px.png\";s:8:\"filesize\";i:82031;s:5:\"sizes\";a:4:{s:6:\"medium\";a:5:{s:4:\"file\";s:38:\"PHARMASIN-100_60px-x-600px-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:49758;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:38:\"PHARMASIN-100_60px-x-600px-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:14314;}s:21:\"woocommerce_thumbnail\";a:6:{s:4:\"file\";s:38:\"PHARMASIN-100_60px-x-600px-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:49758;s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:5:{s:4:\"file\";s:38:\"PHARMASIN-100_60px-x-600px-200x200.png\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:24287;}}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:{}}}'),(28545,3802,'_wp_attached_file','2023/09/PHARMASIN-100_300px.png'),(28546,3802,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:300;s:6:\"height\";i:40;s:4:\"file\";s:31:\"2023/09/PHARMASIN-100_300px.png\";s:8:\"filesize\";i:2323;s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:30:\"PHARMASIN-100_300px-150x40.png\";s:5:\"width\";i:150;s:6:\"height\";i:40;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:2075;}s:29:\"woocommerce_gallery_thumbnail\";a:5:{s:4:\"file\";s:30:\"PHARMASIN-100_300px-200x40.png\";s:5:\"width\";i:200;s:6:\"height\";i:40;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:2697;}}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:{}}}'),(28547,3803,'_wp_attached_file','2023/09/VETMUIIN-450-rng.png'),(28548,3803,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:600;s:6:\"height\";i:600;s:4:\"file\";s:28:\"2023/09/VETMUIIN-450-rng.png\";s:8:\"filesize\";i:92435;s:5:\"sizes\";a:4:{s:6:\"medium\";a:5:{s:4:\"file\";s:28:\"VETMUIIN-450-rng-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:57138;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:28:\"VETMUIIN-450-rng-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:16707;}s:21:\"woocommerce_thumbnail\";a:6:{s:4:\"file\";s:28:\"VETMUIIN-450-rng-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:57138;s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:5:{s:4:\"file\";s:28:\"VETMUIIN-450-rng-200x200.png\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:27679;}}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:{}}}'),(28549,3804,'_wp_attached_file','2023/09/VETMUIIN-450-rng_log.png'),(28550,3804,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:300;s:6:\"height\";i:35;s:4:\"file\";s:32:\"2023/09/VETMUIIN-450-rng_log.png\";s:8:\"filesize\";i:2237;s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:31:\"VETMUIIN-450-rng_log-150x35.png\";s:5:\"width\";i:150;s:6:\"height\";i:35;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:1028;}s:29:\"woocommerce_gallery_thumbnail\";a:5:{s:4:\"file\";s:31:\"VETMUIIN-450-rng_log-200x35.png\";s:5:\"width\";i:200;s:6:\"height\";i:35;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:1340;}}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:{}}}'),(28551,3645,'_thumbnail_id','3803'),(28552,3805,'_wp_attached_file','2023/09/Treizuril-250ML_600px-x-600px.png'),(28553,3805,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:600;s:6:\"height\";i:600;s:4:\"file\";s:41:\"2023/09/Treizuril-250ML_600px-x-600px.png\";s:8:\"filesize\";i:58502;s:5:\"sizes\";a:4:{s:6:\"medium\";a:5:{s:4:\"file\";s:41:\"Treizuril-250ML_600px-x-600px-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:47002;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:41:\"Treizuril-250ML_600px-x-600px-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:13640;}s:21:\"woocommerce_thumbnail\";a:6:{s:4:\"file\";s:41:\"Treizuril-250ML_600px-x-600px-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:47002;s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:5:{s:4:\"file\";s:41:\"Treizuril-250ML_600px-x-600px-200x200.png\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:22464;}}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:{}}}'),(28554,3806,'_wp_attached_file','2023/09/Treizuril_300px.png'),(28555,3806,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:300;s:6:\"height\";i:64;s:4:\"file\";s:27:\"2023/09/Treizuril_300px.png\";s:8:\"filesize\";i:3142;s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:26:\"Treizuril_300px-150x64.png\";s:5:\"width\";i:150;s:6:\"height\";i:64;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:2969;}s:29:\"woocommerce_gallery_thumbnail\";a:5:{s:4:\"file\";s:26:\"Treizuril_300px-200x64.png\";s:5:\"width\";i:200;s:6:\"height\";i:64;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:3589;}}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:{}}}'),(28614,3832,'_wp_attached_file','2023/09/Treizuril_300px-1.png'),(28556,3807,'_wp_attached_file','2023/09/MYCOSIN-1kg_600px-x-600px.png'),(28557,3807,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:600;s:6:\"height\";i:600;s:4:\"file\";s:37:\"2023/09/MYCOSIN-1kg_600px-x-600px.png\";s:8:\"filesize\";i:63771;s:5:\"sizes\";a:4:{s:6:\"medium\";a:5:{s:4:\"file\";s:37:\"MYCOSIN-1kg_600px-x-600px-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:50754;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:37:\"MYCOSIN-1kg_600px-x-600px-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:15592;}s:21:\"woocommerce_thumbnail\";a:6:{s:4:\"file\";s:37:\"MYCOSIN-1kg_600px-x-600px-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:50754;s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:5:{s:4:\"file\";s:37:\"MYCOSIN-1kg_600px-x-600px-200x200.png\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:25178;}}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:{}}}'),(28558,3808,'_wp_attached_file','2023/09/MYCOSIN_300px.png'),(28559,3808,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:300;s:6:\"height\";i:52;s:4:\"file\";s:25:\"2023/09/MYCOSIN_300px.png\";s:8:\"filesize\";i:5077;s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:24:\"MYCOSIN_300px-150x52.png\";s:5:\"width\";i:150;s:6:\"height\";i:52;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:5157;}s:29:\"woocommerce_gallery_thumbnail\";a:5:{s:4:\"file\";s:24:\"MYCOSIN_300px-200x52.png\";s:5:\"width\";i:200;s:6:\"height\";i:52;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:6218;}}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:{}}}'),(28565,3810,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:600;s:6:\"height\";i:600;s:4:\"file\";s:35:\"2023/09/Mansol-50_600px-x-600px.png\";s:8:\"filesize\";i:68962;s:5:\"sizes\";a:4:{s:6:\"medium\";a:5:{s:4:\"file\";s:35:\"Mansol-50_600px-x-600px-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:50324;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:35:\"Mansol-50_600px-x-600px-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:15105;}s:21:\"woocommerce_thumbnail\";a:6:{s:4:\"file\";s:35:\"Mansol-50_600px-x-600px-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:50324;s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:5:{s:4:\"file\";s:35:\"Mansol-50_600px-x-600px-200x200.png\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:24611;}}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:{}}}'),(28567,3811,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:300;s:6:\"height\";i:44;s:4:\"file\";s:26:\"2023/09/SUPERVIT_300px.png\";s:8:\"filesize\";i:2071;s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:25:\"SUPERVIT_300px-150x44.png\";s:5:\"width\";i:150;s:6:\"height\";i:44;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:1646;}s:29:\"woocommerce_gallery_thumbnail\";a:5:{s:4:\"file\";s:25:\"SUPERVIT_300px-200x44.png\";s:5:\"width\";i:200;s:6:\"height\";i:44;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:2113;}}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:{}}}'),(28568,3812,'_wp_attached_file','2023/09/SUPERVIT_600px-x-600px.png'),(28569,3812,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:600;s:6:\"height\";i:600;s:4:\"file\";s:34:\"2023/09/SUPERVIT_600px-x-600px.png\";s:8:\"filesize\";i:81356;s:5:\"sizes\";a:4:{s:6:\"medium\";a:5:{s:4:\"file\";s:34:\"SUPERVIT_600px-x-600px-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:53045;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:34:\"SUPERVIT_600px-x-600px-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:14864;}s:21:\"woocommerce_thumbnail\";a:6:{s:4:\"file\";s:34:\"SUPERVIT_600px-x-600px-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:53045;s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:5:{s:4:\"file\";s:34:\"SUPERVIT_600px-x-600px-200x200.png\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:25032;}}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:{}}}'),(28570,3813,'_wp_attached_file','2023/09/Vermxil_300px-1.png'),(28571,3813,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:300;s:6:\"height\";i:46;s:4:\"file\";s:27:\"2023/09/Vermxil_300px-1.png\";s:8:\"filesize\";i:6429;s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:26:\"Vermxil_300px-1-150x46.png\";s:5:\"width\";i:150;s:6:\"height\";i:46;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:2746;}s:29:\"woocommerce_gallery_thumbnail\";a:5:{s:4:\"file\";s:26:\"Vermxil_300px-1-200x46.png\";s:5:\"width\";i:200;s:6:\"height\";i:46;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:3046;}}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:{}}}'),(28575,3815,'_wp_attached_file','2023/09/FEED-ADDITIVES.gif'),(28572,3649,'rs_page_bg_color',''),(28573,3814,'_wpb_shortcodes_custom_css','.vc_custom_1692366072362{margin-top: 35px !important;padding-top: 65px !important;padding-bottom: 100px !important;}.vc_custom_1684836308288{margin-top: 15px !important;}.vc_custom_1693627699480{margin-top: 15px !important;}.vc_custom_1693625624233{margin-top: 15px !important;}.vc_custom_1695294608306{margin-top: 15px !important;}.vc_custom_1692359205466{margin-top: 35px !important;}.vc_custom_1692359216075{margin-top: 35px !important;}.vc_custom_1692359231594{margin-top: 35px !important;}.vc_custom_1692359239274{margin-top: 35px !important;}.vc_custom_1692359246626{margin-top: 35px !important;}.vc_custom_1692422601938{margin-top: 35px !important;}.vc_custom_1692359258634{margin-top: 35px !important;}.vc_custom_1691995519863{background-color: #f4ab20 !important;border: 1px solid #f4ab20 !important;border-radius: 35px !important;}.vc_custom_1691995661095{background-color: #722f8b !important;border: 1px solid #722f8b !important;border-radius: 35px !important;}.vc_custom_1691995661095{background-color: #722f8b !important;border: 1px solid #722f8b !important;border-radius: 35px !important;}.vc_custom_1691995519863{background-color: #f4ab20 !important;border: 1px solid #f4ab20 !important;border-radius: 35px !important;}.vc_custom_1691996718116{border-radius: 35px !important;}.vc_custom_1691995519863{background-color: #f4ab20 !important;border: 1px solid #f4ab20 !important;border-radius: 35px !important;}.vc_custom_1694697209111{padding-right: 10px !important;padding-left: 10px !important;}.vc_custom_1692278922309{border-top-width: 1px !important;border-right-width: 1px !important;border-bottom-width: 1px !important;border-left-width: 1px !important;border-left-color: #059444 !important;border-left-style: solid !important;border-right-color: #059444 !important;border-right-style: solid !important;border-top-color: #059444 !important;border-top-style: solid !important;border-bottom-color: #059444 !important;border-bottom-style: solid !important;border-radius: 1px !important;}.vc_custom_1692278929158{border-top-width: 1px !important;border-right-width: 1px !important;border-bottom-width: 1px !important;border-left-width: 1px !important;border-left-color: #059444 !important;border-left-style: solid !important;border-right-color: #059444 !important;border-right-style: solid !important;border-top-color: #059444 !important;border-top-style: solid !important;border-bottom-color: #059444 !important;border-bottom-style: solid !important;border-radius: 1px !important;}.vc_custom_1692278936750{border-top-width: 1px !important;border-right-width: 1px !important;border-bottom-width: 1px !important;border-left-width: 1px !important;border-left-color: #059444 !important;border-left-style: solid !important;border-right-color: #059444 !important;border-right-style: solid !important;border-top-color: #059444 !important;border-top-style: solid !important;border-bottom-color: #059444 !important;border-bottom-style: solid !important;border-radius: 1px !important;}.vc_custom_1692278922309{border-top-width: 1px !important;border-right-width: 1px !important;border-bottom-width: 1px !important;border-left-width: 1px !important;border-left-color: #059444 !important;border-left-style: solid !important;border-right-color: #059444 !important;border-right-style: solid !important;border-top-color: #059444 !important;border-top-style: solid !important;border-bottom-color: #059444 !important;border-bottom-style: solid !important;border-radius: 1px !important;}.vc_custom_1692278929158{border-top-width: 1px !important;border-right-width: 1px !important;border-bottom-width: 1px !important;border-left-width: 1px !important;border-left-color: #059444 !important;border-left-style: solid !important;border-right-color: #059444 !important;border-right-style: solid !important;border-top-color: #059444 !important;border-top-style: solid !important;border-bottom-color: #059444 !important;border-bottom-style: solid !important;border-radius: 1px !important;}'),(28574,3814,'_wpb_shortcodes_custom_css_updated','1'),(28585,3819,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1300;s:6:\"height\";i:300;s:4:\"file\";s:21:\"2023/09/PRODUCTSF.gif\";s:8:\"filesize\";i:285328;s:5:\"sizes\";a:7:{s:6:\"medium\";a:5:{s:4:\"file\";s:20:\"PRODUCTSF-300x69.gif\";s:5:\"width\";i:300;s:6:\"height\";i:69;s:9:\"mime-type\";s:9:\"image/gif\";s:8:\"filesize\";i:16314;}s:5:\"large\";a:5:{s:4:\"file\";s:22:\"PRODUCTSF-1024x236.gif\";s:5:\"width\";i:1024;s:6:\"height\";i:236;s:9:\"mime-type\";s:9:\"image/gif\";s:8:\"filesize\";i:150096;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:21:\"PRODUCTSF-150x150.gif\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/gif\";s:8:\"filesize\";i:17638;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:21:\"PRODUCTSF-768x177.gif\";s:5:\"width\";i:768;s:6:\"height\";i:177;s:9:\"mime-type\";s:9:\"image/gif\";s:8:\"filesize\";i:86812;}s:21:\"woocommerce_thumbnail\";a:6:{s:4:\"file\";s:21:\"PRODUCTSF-300x300.gif\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/gif\";s:8:\"filesize\";i:49039;s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:5:{s:4:\"file\";s:21:\"PRODUCTSF-600x138.gif\";s:5:\"width\";i:600;s:6:\"height\";i:138;s:9:\"mime-type\";s:9:\"image/gif\";s:8:\"filesize\";i:55308;}s:29:\"woocommerce_gallery_thumbnail\";a:5:{s:4:\"file\";s:21:\"PRODUCTSF-200x200.gif\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/gif\";s:8:\"filesize\";i:28219;}}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:{}}}'),(28586,3820,'_wp_attached_file','2023/09/LARGE-ANIMALF.gif'),(28587,3820,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1300;s:6:\"height\";i:300;s:4:\"file\";s:25:\"2023/09/LARGE-ANIMALF.gif\";s:8:\"filesize\";i:327659;s:5:\"sizes\";a:7:{s:6:\"medium\";a:5:{s:4:\"file\";s:24:\"LARGE-ANIMALF-300x69.gif\";s:5:\"width\";i:300;s:6:\"height\";i:69;s:9:\"mime-type\";s:9:\"image/gif\";s:8:\"filesize\";i:20053;}s:5:\"large\";a:5:{s:4:\"file\";s:26:\"LARGE-ANIMALF-1024x236.gif\";s:5:\"width\";i:1024;s:6:\"height\";i:236;s:9:\"mime-type\";s:9:\"image/gif\";s:8:\"filesize\";i:190804;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:25:\"LARGE-ANIMALF-150x150.gif\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/gif\";s:8:\"filesize\";i:18092;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:25:\"LARGE-ANIMALF-768x177.gif\";s:5:\"width\";i:768;s:6:\"height\";i:177;s:9:\"mime-type\";s:9:\"image/gif\";s:8:\"filesize\";i:110247;}s:21:\"woocommerce_thumbnail\";a:6:{s:4:\"file\";s:25:\"LARGE-ANIMALF-300x300.gif\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/gif\";s:8:\"filesize\";i:55740;s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:5:{s:4:\"file\";s:25:\"LARGE-ANIMALF-600x138.gif\";s:5:\"width\";i:600;s:6:\"height\";i:138;s:9:\"mime-type\";s:9:\"image/gif\";s:8:\"filesize\";i:69308;}s:29:\"woocommerce_gallery_thumbnail\";a:5:{s:4:\"file\";s:25:\"LARGE-ANIMALF-200x200.gif\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/gif\";s:8:\"filesize\";i:29863;}}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:{}}}'),(28643,3847,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:600;s:6:\"height\";i:600;s:4:\"file\";s:43:\"2023/09/Lev-Ox-2400-BOLUS_600px-x-600px.png\";s:8:\"filesize\";i:248632;s:5:\"sizes\";a:4:{s:6:\"medium\";a:5:{s:4:\"file\";s:43:\"Lev-Ox-2400-BOLUS_600px-x-600px-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:63721;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:43:\"Lev-Ox-2400-BOLUS_600px-x-600px-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:20343;}s:21:\"woocommerce_thumbnail\";a:6:{s:4:\"file\";s:43:\"Lev-Ox-2400-BOLUS_600px-x-600px-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:63721;s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:5:{s:4:\"file\";s:43:\"Lev-Ox-2400-BOLUS_600px-x-600px-200x200.png\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:32248;}}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:{}}}'),(28582,3818,'_wp_attached_file','2023/09/ABOUT-USF.gif'),(28583,3818,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1300;s:6:\"height\";i:300;s:4:\"file\";s:21:\"2023/09/ABOUT-USF.gif\";s:8:\"filesize\";i:325225;s:5:\"sizes\";a:7:{s:6:\"medium\";a:5:{s:4:\"file\";s:20:\"ABOUT-USF-300x69.gif\";s:5:\"width\";i:300;s:6:\"height\";i:69;s:9:\"mime-type\";s:9:\"image/gif\";s:8:\"filesize\";i:16877;}s:5:\"large\";a:5:{s:4:\"file\";s:22:\"ABOUT-USF-1024x236.gif\";s:5:\"width\";i:1024;s:6:\"height\";i:236;s:9:\"mime-type\";s:9:\"image/gif\";s:8:\"filesize\";i:154689;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:21:\"ABOUT-USF-150x150.gif\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/gif\";s:8:\"filesize\";i:17880;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:21:\"ABOUT-USF-768x177.gif\";s:5:\"width\";i:768;s:6:\"height\";i:177;s:9:\"mime-type\";s:9:\"image/gif\";s:8:\"filesize\";i:88781;}s:21:\"woocommerce_thumbnail\";a:6:{s:4:\"file\";s:21:\"ABOUT-USF-300x300.gif\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/gif\";s:8:\"filesize\";i:51791;s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:5:{s:4:\"file\";s:21:\"ABOUT-USF-600x138.gif\";s:5:\"width\";i:600;s:6:\"height\";i:138;s:9:\"mime-type\";s:9:\"image/gif\";s:8:\"filesize\";i:56067;}s:29:\"woocommerce_gallery_thumbnail\";a:5:{s:4:\"file\";s:21:\"ABOUT-USF-200x200.gif\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/gif\";s:8:\"filesize\";i:29337;}}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:{}}}'),(28615,3832,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:300;s:6:\"height\";i:48;s:4:\"file\";s:29:\"2023/09/Treizuril_300px-1.png\";s:8:\"filesize\";i:13153;s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:28:\"Treizuril_300px-1-150x48.png\";s:5:\"width\";i:150;s:6:\"height\";i:48;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:5125;}s:29:\"woocommerce_gallery_thumbnail\";a:5:{s:4:\"file\";s:28:\"Treizuril_300px-1-200x48.png\";s:5:\"width\";i:200;s:6:\"height\";i:48;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:5667;}}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:{}}}'),(28616,3833,'_wp_attached_file','2023/09/RHEMOX-1kg_600px-x-600px.png'),(28617,3833,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:600;s:6:\"height\";i:600;s:4:\"file\";s:36:\"2023/09/RHEMOX-1kg_600px-x-600px.png\";s:8:\"filesize\";i:226807;s:5:\"sizes\";a:4:{s:6:\"medium\";a:5:{s:4:\"file\";s:36:\"RHEMOX-1kg_600px-x-600px-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:53255;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:36:\"RHEMOX-1kg_600px-x-600px-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:15370;}s:21:\"woocommerce_thumbnail\";a:6:{s:4:\"file\";s:36:\"RHEMOX-1kg_600px-x-600px-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:53255;s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:5:{s:4:\"file\";s:36:\"RHEMOX-1kg_600px-x-600px-200x200.png\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:25481;}}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:{}}}'),(28618,3834,'_wp_attached_file','2023/09/RHEMOX_300px.png'),(28619,3834,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:248;s:6:\"height\";i:53;s:4:\"file\";s:24:\"2023/09/RHEMOX_300px.png\";s:8:\"filesize\";i:3875;s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:23:\"RHEMOX_300px-150x53.png\";s:5:\"width\";i:150;s:6:\"height\";i:53;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:3543;}s:29:\"woocommerce_gallery_thumbnail\";a:5:{s:4:\"file\";s:23:\"RHEMOX_300px-200x53.png\";s:5:\"width\";i:200;s:6:\"height\";i:53;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:3614;}}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:{}}}'),(28620,3836,'_wp_attached_file','2023/09/Cinaprim_1kg_600px-x-600px.png'),(28621,3836,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:600;s:6:\"height\";i:600;s:4:\"file\";s:38:\"2023/09/Cinaprim_1kg_600px-x-600px.png\";s:8:\"filesize\";i:287734;s:5:\"sizes\";a:4:{s:6:\"medium\";a:5:{s:4:\"file\";s:38:\"Cinaprim_1kg_600px-x-600px-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:61306;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:38:\"Cinaprim_1kg_600px-x-600px-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:16900;}s:21:\"woocommerce_thumbnail\";a:6:{s:4:\"file\";s:38:\"Cinaprim_1kg_600px-x-600px-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:61306;s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:5:{s:4:\"file\";s:38:\"Cinaprim_1kg_600px-x-600px-200x200.png\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:28882;}}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:{}}}'),(28590,3821,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:300;s:6:\"height\";i:142;s:4:\"file\";s:31:\"2023/09/CEVAC-IBird_300px-1.png\";s:8:\"filesize\";i:4336;s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:31:\"CEVAC-IBird_300px-1-150x142.png\";s:5:\"width\";i:150;s:6:\"height\";i:142;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:3402;}s:29:\"woocommerce_gallery_thumbnail\";a:5:{s:4:\"file\";s:31:\"CEVAC-IBird_300px-1-200x142.png\";s:5:\"width\";i:200;s:6:\"height\";i:142;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:4100;}}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:{}}}'),(28592,3822,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:300;s:6:\"height\";i:142;s:4:\"file\";s:31:\"2023/09/CEVAC-NEW-L_300px-1.png\";s:8:\"filesize\";i:5270;s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:31:\"CEVAC-NEW-L_300px-1-150x142.png\";s:5:\"width\";i:150;s:6:\"height\";i:142;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:2336;}s:29:\"woocommerce_gallery_thumbnail\";a:5:{s:4:\"file\";s:31:\"CEVAC-NEW-L_300px-1-200x142.png\";s:5:\"width\";i:200;s:6:\"height\";i:142;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:2977;}}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:{}}}'),(28594,3823,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:300;s:6:\"height\";i:142;s:4:\"file\";s:36:\"2023/09/CEVAC-VITABORN-L_300px-1.png\";s:8:\"filesize\";i:5794;s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:36:\"CEVAC-VITABORN-L_300px-1-150x142.png\";s:5:\"width\";i:150;s:6:\"height\";i:142;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:2781;}s:29:\"woocommerce_gallery_thumbnail\";a:5:{s:4:\"file\";s:36:\"CEVAC-VITABORN-L_300px-1-200x142.png\";s:5:\"width\";i:200;s:6:\"height\";i:142;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:3470;}}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:{}}}'),(28735,3895,'_wp_attached_file','2023/09/CEVAC-VITABORN-L_300px-2.png'),(28595,3824,'_wp_attached_file','2023/09/Ganadexil-Enrofloxacin-10_300px.png'),(28596,3824,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:300;s:6:\"height\";i:115;s:4:\"file\";s:43:\"2023/09/Ganadexil-Enrofloxacin-10_300px.png\";s:8:\"filesize\";i:7039;s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:43:\"Ganadexil-Enrofloxacin-10_300px-150x115.png\";s:5:\"width\";i:150;s:6:\"height\";i:115;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:3397;}s:29:\"woocommerce_gallery_thumbnail\";a:5:{s:4:\"file\";s:43:\"Ganadexil-Enrofloxacin-10_300px-200x115.png\";s:5:\"width\";i:200;s:6:\"height\";i:115;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:4302;}}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:{}}}'),(28597,3825,'_wp_attached_file','2023/09/GANADEXIL-ENROFLOXACINA-5-INJECTABLE_600px-x-600px.png'),(28598,3825,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:600;s:6:\"height\";i:600;s:4:\"file\";s:62:\"2023/09/GANADEXIL-ENROFLOXACINA-5-INJECTABLE_600px-x-600px.png\";s:8:\"filesize\";i:246274;s:5:\"sizes\";a:4:{s:6:\"medium\";a:5:{s:4:\"file\";s:62:\"GANADEXIL-ENROFLOXACINA-5-INJECTABLE_600px-x-600px-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:58937;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:62:\"GANADEXIL-ENROFLOXACINA-5-INJECTABLE_600px-x-600px-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:16596;}s:21:\"woocommerce_thumbnail\";a:6:{s:4:\"file\";s:62:\"GANADEXIL-ENROFLOXACINA-5-INJECTABLE_600px-x-600px-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:58937;s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:5:{s:4:\"file\";s:62:\"GANADEXIL-ENROFLOXACINA-5-INJECTABLE_600px-x-600px-200x200.png\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:28057;}}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:{}}}'),(28599,3826,'_wp_attached_file','2023/09/Com.B_300px.png'),(28600,3826,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:232;s:6:\"height\";i:68;s:4:\"file\";s:23:\"2023/09/Com.B_300px.png\";s:8:\"filesize\";i:3312;s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:22:\"Com.B_300px-150x68.png\";s:5:\"width\";i:150;s:6:\"height\";i:68;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:1752;}s:29:\"woocommerce_gallery_thumbnail\";a:5:{s:4:\"file\";s:22:\"Com.B_300px-200x68.png\";s:5:\"width\";i:200;s:6:\"height\";i:68;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:2345;}}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:{}}}'),(28601,3827,'_wp_attached_file','2023/09/Farmox-50-1kg_600px-x-600px.png'),(28602,3827,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:600;s:6:\"height\";i:600;s:4:\"file\";s:39:\"2023/09/Farmox-50-1kg_600px-x-600px.png\";s:8:\"filesize\";i:269537;s:5:\"sizes\";a:4:{s:6:\"medium\";a:5:{s:4:\"file\";s:39:\"Farmox-50-1kg_600px-x-600px-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:60647;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:39:\"Farmox-50-1kg_600px-x-600px-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:17305;}s:21:\"woocommerce_thumbnail\";a:6:{s:4:\"file\";s:39:\"Farmox-50-1kg_600px-x-600px-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:60647;s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:5:{s:4:\"file\";s:39:\"Farmox-50-1kg_600px-x-600px-200x200.png\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:29173;}}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:{}}}'),(28603,3828,'_wp_attached_file','2023/09/Farmox-50_300px.png'),(28604,3828,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:300;s:6:\"height\";i:50;s:4:\"file\";s:27:\"2023/09/Farmox-50_300px.png\";s:8:\"filesize\";i:4815;s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:26:\"Farmox-50_300px-150x50.png\";s:5:\"width\";i:150;s:6:\"height\";i:50;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:2511;}s:29:\"woocommerce_gallery_thumbnail\";a:5:{s:4:\"file\";s:26:\"Farmox-50_300px-200x50.png\";s:5:\"width\";i:200;s:6:\"height\";i:50;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:3327;}}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:{}}}'),(28605,3824,'_edit_lock','1695458178:1'),(28606,3790,'_edit_lock','1695458289:1'),(28608,3829,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:300;s:6:\"height\";i:142;s:4:\"file\";s:33:\"2023/09/CEVAC-GUMBO-L_300px-1.png\";s:8:\"filesize\";i:4054;s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:33:\"CEVAC-GUMBO-L_300px-1-150x142.png\";s:5:\"width\";i:150;s:6:\"height\";i:142;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:3422;}s:29:\"woocommerce_gallery_thumbnail\";a:5:{s:4:\"file\";s:33:\"CEVAC-GUMBO-L_300px-1-200x142.png\";s:5:\"width\";i:200;s:6:\"height\";i:142;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:4323;}}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:{}}}'),(28609,3830,'_wp_attached_file','2023/09/CEVAC-FP-L_300px-1.png'),(28610,3830,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:300;s:6:\"height\";i:142;s:4:\"file\";s:30:\"2023/09/CEVAC-FP-L_300px-1.png\";s:8:\"filesize\";i:5167;s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:30:\"CEVAC-FP-L_300px-1-150x142.png\";s:5:\"width\";i:150;s:6:\"height\";i:142;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:2166;}s:29:\"woocommerce_gallery_thumbnail\";a:5:{s:4:\"file\";s:30:\"CEVAC-FP-L_300px-1-200x142.png\";s:5:\"width\";i:200;s:6:\"height\";i:142;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:2808;}}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:{}}}'),(28611,3831,'_wp_attached_file','2023/09/CSR.gif'),(28612,3831,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1300;s:6:\"height\";i:300;s:4:\"file\";s:15:\"2023/09/CSR.gif\";s:8:\"filesize\";i:356124;s:5:\"sizes\";a:7:{s:6:\"medium\";a:5:{s:4:\"file\";s:14:\"CSR-300x69.gif\";s:5:\"width\";i:300;s:6:\"height\";i:69;s:9:\"mime-type\";s:9:\"image/gif\";s:8:\"filesize\";i:20697;}s:5:\"large\";a:5:{s:4:\"file\";s:16:\"CSR-1024x236.gif\";s:5:\"width\";i:1024;s:6:\"height\";i:236;s:9:\"mime-type\";s:9:\"image/gif\";s:8:\"filesize\";i:189198;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:15:\"CSR-150x150.gif\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/gif\";s:8:\"filesize\";i:20627;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:15:\"CSR-768x177.gif\";s:5:\"width\";i:768;s:6:\"height\";i:177;s:9:\"mime-type\";s:9:\"image/gif\";s:8:\"filesize\";i:111459;}s:21:\"woocommerce_thumbnail\";a:6:{s:4:\"file\";s:15:\"CSR-300x300.gif\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/gif\";s:8:\"filesize\";i:56646;s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:5:{s:4:\"file\";s:15:\"CSR-600x138.gif\";s:5:\"width\";i:600;s:6:\"height\";i:138;s:9:\"mime-type\";s:9:\"image/gif\";s:8:\"filesize\";i:70588;}s:29:\"woocommerce_gallery_thumbnail\";a:5:{s:4:\"file\";s:15:\"CSR-200x200.gif\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/gif\";s:8:\"filesize\";i:33987;}}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:{}}}'),(28687,3878,'_wpb_shortcodes_custom_css','.vc_custom_1692366072362{margin-top: 35px !important;padding-top: 65px !important;padding-bottom: 100px !important;}.vc_custom_1684836308288{margin-top: 15px !important;}.vc_custom_1693627699480{margin-top: 15px !important;}.vc_custom_1693625624233{margin-top: 15px !important;}.vc_custom_1695294608306{margin-top: 15px !important;}.vc_custom_1692359205466{margin-top: 35px !important;}.vc_custom_1692359216075{margin-top: 35px !important;}.vc_custom_1692359216075{margin-top: 35px !important;}.vc_custom_1692359231594{margin-top: 35px !important;}.vc_custom_1692359239274{margin-top: 35px !important;}.vc_custom_1692359246626{margin-top: 35px !important;}.vc_custom_1695527931440{margin-top: 35px !important;}.vc_custom_1692359258634{margin-top: 35px !important;}.vc_custom_1691995519863{background-color: #f4ab20 !important;border: 1px solid #f4ab20 !important;border-radius: 35px !important;}.vc_custom_1691995661095{background-color: #722f8b !important;border: 1px solid #722f8b !important;border-radius: 35px !important;}.vc_custom_1691995661095{background-color: #722f8b !important;border: 1px solid #722f8b !important;border-radius: 35px !important;}.vc_custom_1691995519863{background-color: #f4ab20 !important;border: 1px solid #f4ab20 !important;border-radius: 35px !important;}.vc_custom_1695528026328{border-radius: 35px !important;}.vc_custom_1691995519863{background-color: #f4ab20 !important;border: 1px solid #f4ab20 !important;border-radius: 35px !important;}.vc_custom_1694697209111{padding-right: 10px !important;padding-left: 10px !important;}.vc_custom_1692278922309{border-top-width: 1px !important;border-right-width: 1px !important;border-bottom-width: 1px !important;border-left-width: 1px !important;border-left-color: #059444 !important;border-left-style: solid !important;border-right-color: #059444 !important;border-right-style: solid !important;border-top-color: #059444 !important;border-top-style: solid !important;border-bottom-color: #059444 !important;border-bottom-style: solid !important;border-radius: 1px !important;}.vc_custom_1692278929158{border-top-width: 1px !important;border-right-width: 1px !important;border-bottom-width: 1px !important;border-left-width: 1px !important;border-left-color: #059444 !important;border-left-style: solid !important;border-right-color: #059444 !important;border-right-style: solid !important;border-top-color: #059444 !important;border-top-style: solid !important;border-bottom-color: #059444 !important;border-bottom-style: solid !important;border-radius: 1px !important;}.vc_custom_1692278936750{border-top-width: 1px !important;border-right-width: 1px !important;border-bottom-width: 1px !important;border-left-width: 1px !important;border-left-color: #059444 !important;border-left-style: solid !important;border-right-color: #059444 !important;border-right-style: solid !important;border-top-color: #059444 !important;border-top-style: solid !important;border-bottom-color: #059444 !important;border-bottom-style: solid !important;border-radius: 1px !important;}.vc_custom_1692278922309{border-top-width: 1px !important;border-right-width: 1px !important;border-bottom-width: 1px !important;border-left-width: 1px !important;border-left-color: #059444 !important;border-left-style: solid !important;border-right-color: #059444 !important;border-right-style: solid !important;border-top-color: #059444 !important;border-top-style: solid !important;border-bottom-color: #059444 !important;border-bottom-style: solid !important;border-radius: 1px !important;}.vc_custom_1692278929158{border-top-width: 1px !important;border-right-width: 1px !important;border-bottom-width: 1px !important;border-left-width: 1px !important;border-left-color: #059444 !important;border-left-style: solid !important;border-right-color: #059444 !important;border-right-style: solid !important;border-top-color: #059444 !important;border-top-style: solid !important;border-bottom-color: #059444 !important;border-bottom-style: solid !important;border-radius: 1px !important;}'),(28688,3878,'_wpb_shortcodes_custom_css_updated','1'),(28690,3879,'_wpb_shortcodes_custom_css','.vc_custom_1692366072362{margin-top: 35px !important;padding-top: 65px !important;padding-bottom: 100px !important;}.vc_custom_1684836308288{margin-top: 15px !important;}.vc_custom_1693627699480{margin-top: 15px !important;}.vc_custom_1693625624233{margin-top: 15px !important;}.vc_custom_1695294608306{margin-top: 15px !important;}.vc_custom_1692359205466{margin-top: 35px !important;}.vc_custom_1692359216075{margin-top: 35px !important;}.vc_custom_1692359216075{margin-top: 35px !important;}.vc_custom_1692359231594{margin-top: 35px !important;}.vc_custom_1692359239274{margin-top: 35px !important;}.vc_custom_1692359239274{margin-top: 35px !important;}.vc_custom_1692359246626{margin-top: 35px !important;}.vc_custom_1695527931440{margin-top: 35px !important;}.vc_custom_1692359258634{margin-top: 35px !important;}.vc_custom_1691995519863{background-color: #f4ab20 !important;border: 1px solid #f4ab20 !important;border-radius: 35px !important;}.vc_custom_1691995661095{background-color: #722f8b !important;border: 1px solid #722f8b !important;border-radius: 35px !important;}.vc_custom_1691995661095{background-color: #722f8b !important;border: 1px solid #722f8b !important;border-radius: 35px !important;}.vc_custom_1691995519863{background-color: #f4ab20 !important;border: 1px solid #f4ab20 !important;border-radius: 35px !important;}.vc_custom_1695528026328{border-radius: 35px !important;}.vc_custom_1691995519863{background-color: #f4ab20 !important;border: 1px solid #f4ab20 !important;border-radius: 35px !important;}.vc_custom_1694697209111{padding-right: 10px !important;padding-left: 10px !important;}.vc_custom_1692278922309{border-top-width: 1px !important;border-right-width: 1px !important;border-bottom-width: 1px !important;border-left-width: 1px !important;border-left-color: #059444 !important;border-left-style: solid !important;border-right-color: #059444 !important;border-right-style: solid !important;border-top-color: #059444 !important;border-top-style: solid !important;border-bottom-color: #059444 !important;border-bottom-style: solid !important;border-radius: 1px !important;}.vc_custom_1692278929158{border-top-width: 1px !important;border-right-width: 1px !important;border-bottom-width: 1px !important;border-left-width: 1px !important;border-left-color: #059444 !important;border-left-style: solid !important;border-right-color: #059444 !important;border-right-style: solid !important;border-top-color: #059444 !important;border-top-style: solid !important;border-bottom-color: #059444 !important;border-bottom-style: solid !important;border-radius: 1px !important;}.vc_custom_1692278936750{border-top-width: 1px !important;border-right-width: 1px !important;border-bottom-width: 1px !important;border-left-width: 1px !important;border-left-color: #059444 !important;border-left-style: solid !important;border-right-color: #059444 !important;border-right-style: solid !important;border-top-color: #059444 !important;border-top-style: solid !important;border-bottom-color: #059444 !important;border-bottom-style: solid !important;border-radius: 1px !important;}.vc_custom_1692278922309{border-top-width: 1px !important;border-right-width: 1px !important;border-bottom-width: 1px !important;border-left-width: 1px !important;border-left-color: #059444 !important;border-left-style: solid !important;border-right-color: #059444 !important;border-right-style: solid !important;border-top-color: #059444 !important;border-top-style: solid !important;border-bottom-color: #059444 !important;border-bottom-style: solid !important;border-radius: 1px !important;}.vc_custom_1692278929158{border-top-width: 1px !important;border-right-width: 1px !important;border-bottom-width: 1px !important;border-left-width: 1px !important;border-left-color: #059444 !important;border-left-style: solid !important;border-right-color: #059444 !important;border-right-style: solid !important;border-top-color: #059444 !important;border-top-style: solid !important;border-bottom-color: #059444 !important;border-bottom-style: solid !important;border-radius: 1px !important;}'),(28691,3879,'_wpb_shortcodes_custom_css_updated','1'),(28693,3880,'_wpb_shortcodes_custom_css','.vc_custom_1692366072362{margin-top: 35px !important;padding-top: 65px !important;padding-bottom: 100px !important;}.vc_custom_1684836308288{margin-top: 15px !important;}.vc_custom_1693627699480{margin-top: 15px !important;}.vc_custom_1693625624233{margin-top: 15px !important;}.vc_custom_1695294608306{margin-top: 15px !important;}.vc_custom_1692359205466{margin-top: 35px !important;}.vc_custom_1692359216075{margin-top: 35px !important;}.vc_custom_1692359216075{margin-top: 35px !important;}.vc_custom_1692359231594{margin-top: 35px !important;}.vc_custom_1692359239274{margin-top: 35px !important;}.vc_custom_1692359239274{margin-top: 35px !important;}.vc_custom_1692359246626{margin-top: 35px !important;}.vc_custom_1695527931440{margin-top: 35px !important;}.vc_custom_1695527931440{margin-top: 35px !important;}.vc_custom_1692359258634{margin-top: 35px !important;}.vc_custom_1691995519863{background-color: #f4ab20 !important;border: 1px solid #f4ab20 !important;border-radius: 35px !important;}.vc_custom_1691995661095{background-color: #722f8b !important;border: 1px solid #722f8b !important;border-radius: 35px !important;}.vc_custom_1691995661095{background-color: #722f8b !important;border: 1px solid #722f8b !important;border-radius: 35px !important;}.vc_custom_1691995519863{background-color: #f4ab20 !important;border: 1px solid #f4ab20 !important;border-radius: 35px !important;}.vc_custom_1695528026328{border-radius: 35px !important;}.vc_custom_1691995519863{background-color: #f4ab20 !important;border: 1px solid #f4ab20 !important;border-radius: 35px !important;}.vc_custom_1694697209111{padding-right: 10px !important;padding-left: 10px !important;}.vc_custom_1692278922309{border-top-width: 1px !important;border-right-width: 1px !important;border-bottom-width: 1px !important;border-left-width: 1px !important;border-left-color: #059444 !important;border-left-style: solid !important;border-right-color: #059444 !important;border-right-style: solid !important;border-top-color: #059444 !important;border-top-style: solid !important;border-bottom-color: #059444 !important;border-bottom-style: solid !important;border-radius: 1px !important;}.vc_custom_1692278929158{border-top-width: 1px !important;border-right-width: 1px !important;border-bottom-width: 1px !important;border-left-width: 1px !important;border-left-color: #059444 !important;border-left-style: solid !important;border-right-color: #059444 !important;border-right-style: solid !important;border-top-color: #059444 !important;border-top-style: solid !important;border-bottom-color: #059444 !important;border-bottom-style: solid !important;border-radius: 1px !important;}.vc_custom_1692278936750{border-top-width: 1px !important;border-right-width: 1px !important;border-bottom-width: 1px !important;border-left-width: 1px !important;border-left-color: #059444 !important;border-left-style: solid !important;border-right-color: #059444 !important;border-right-style: solid !important;border-top-color: #059444 !important;border-top-style: solid !important;border-bottom-color: #059444 !important;border-bottom-style: solid !important;border-radius: 1px !important;}.vc_custom_1692278922309{border-top-width: 1px !important;border-right-width: 1px !important;border-bottom-width: 1px !important;border-left-width: 1px !important;border-left-color: #059444 !important;border-left-style: solid !important;border-right-color: #059444 !important;border-right-style: solid !important;border-top-color: #059444 !important;border-top-style: solid !important;border-bottom-color: #059444 !important;border-bottom-style: solid !important;border-radius: 1px !important;}.vc_custom_1692278929158{border-top-width: 1px !important;border-right-width: 1px !important;border-bottom-width: 1px !important;border-left-width: 1px !important;border-left-color: #059444 !important;border-left-style: solid !important;border-right-color: #059444 !important;border-right-style: solid !important;border-top-color: #059444 !important;border-top-style: solid !important;border-bottom-color: #059444 !important;border-bottom-style: solid !important;border-radius: 1px !important;}'),(28694,3880,'_wpb_shortcodes_custom_css_updated','1'),(28705,3884,'_wpb_shortcodes_custom_css','.vc_custom_1692366072362{margin-top: 35px !important;padding-top: 65px !important;padding-bottom: 100px !important;}.vc_custom_1684836308288{margin-top: 15px !important;}.vc_custom_1693627699480{margin-top: 15px !important;}.vc_custom_1693625624233{margin-top: 15px !important;}.vc_custom_1695294608306{margin-top: 15px !important;}.vc_custom_1692359205466{margin-top: 35px !important;}.vc_custom_1692359216075{margin-top: 35px !important;}.vc_custom_1692359216075{margin-top: 35px !important;}.vc_custom_1692359231594{margin-top: 35px !important;}.vc_custom_1692359239274{margin-top: 35px !important;}.vc_custom_1692359239274{margin-top: 35px !important;}.vc_custom_1692359246626{margin-top: 35px !important;}.vc_custom_1695527931440{margin-top: 35px !important;}.vc_custom_1695527931440{margin-top: 35px !important;}.vc_custom_1692359258634{margin-top: 35px !important;}.vc_custom_1691995519863{background-color: #f4ab20 !important;border: 1px solid #f4ab20 !important;border-radius: 35px !important;}.vc_custom_1691995661095{background-color: #722f8b !important;border: 1px solid #722f8b !important;border-radius: 35px !important;}.vc_custom_1691995661095{background-color: #722f8b !important;border: 1px solid #722f8b !important;border-radius: 35px !important;}.vc_custom_1691995519863{background-color: #f4ab20 !important;border: 1px solid #f4ab20 !important;border-radius: 35px !important;}.vc_custom_1695528026328{border-radius: 35px !important;}.vc_custom_1691995519863{background-color: #f4ab20 !important;border: 1px solid #f4ab20 !important;border-radius: 35px !important;}.vc_custom_1694697209111{padding-right: 10px !important;padding-left: 10px !important;}.vc_custom_1692278922309{border-top-width: 1px !important;border-right-width: 1px !important;border-bottom-width: 1px !important;border-left-width: 1px !important;border-left-color: #059444 !important;border-left-style: solid !important;border-right-color: #059444 !important;border-right-style: solid !important;border-top-color: #059444 !important;border-top-style: solid !important;border-bottom-color: #059444 !important;border-bottom-style: solid !important;border-radius: 1px !important;}.vc_custom_1692278929158{border-top-width: 1px !important;border-right-width: 1px !important;border-bottom-width: 1px !important;border-left-width: 1px !important;border-left-color: #059444 !important;border-left-style: solid !important;border-right-color: #059444 !important;border-right-style: solid !important;border-top-color: #059444 !important;border-top-style: solid !important;border-bottom-color: #059444 !important;border-bottom-style: solid !important;border-radius: 1px !important;}.vc_custom_1692278936750{border-top-width: 1px !important;border-right-width: 1px !important;border-bottom-width: 1px !important;border-left-width: 1px !important;border-left-color: #059444 !important;border-left-style: solid !important;border-right-color: #059444 !important;border-right-style: solid !important;border-top-color: #059444 !important;border-top-style: solid !important;border-bottom-color: #059444 !important;border-bottom-style: solid !important;border-radius: 1px !important;}.vc_custom_1692278922309{border-top-width: 1px !important;border-right-width: 1px !important;border-bottom-width: 1px !important;border-left-width: 1px !important;border-left-color: #059444 !important;border-left-style: solid !important;border-right-color: #059444 !important;border-right-style: solid !important;border-top-color: #059444 !important;border-top-style: solid !important;border-bottom-color: #059444 !important;border-bottom-style: solid !important;border-radius: 1px !important;}.vc_custom_1692278929158{border-top-width: 1px !important;border-right-width: 1px !important;border-bottom-width: 1px !important;border-left-width: 1px !important;border-left-color: #059444 !important;border-left-style: solid !important;border-right-color: #059444 !important;border-right-style: solid !important;border-top-color: #059444 !important;border-top-style: solid !important;border-bottom-color: #059444 !important;border-bottom-style: solid !important;border-radius: 1px !important;}'),(28703,3883,'_wpb_shortcodes_custom_css','.vc_custom_1692366072362{margin-top: 35px !important;padding-top: 65px !important;padding-bottom: 100px !important;}.vc_custom_1684836308288{margin-top: 15px !important;}.vc_custom_1693627699480{margin-top: 15px !important;}.vc_custom_1693625624233{margin-top: 15px !important;}.vc_custom_1695294608306{margin-top: 15px !important;}.vc_custom_1692359205466{margin-top: 35px !important;}.vc_custom_1692359216075{margin-top: 35px !important;}.vc_custom_1692359216075{margin-top: 35px !important;}.vc_custom_1692359231594{margin-top: 35px !important;}.vc_custom_1692359239274{margin-top: 35px !important;}.vc_custom_1692359239274{margin-top: 35px !important;}.vc_custom_1692359246626{margin-top: 35px !important;}.vc_custom_1695527931440{margin-top: 35px !important;}.vc_custom_1695527931440{margin-top: 35px !important;}.vc_custom_1692359258634{margin-top: 35px !important;}.vc_custom_1691995519863{background-color: #f4ab20 !important;border: 1px solid #f4ab20 !important;border-radius: 35px !important;}.vc_custom_1691995661095{background-color: #722f8b !important;border: 1px solid #722f8b !important;border-radius: 35px !important;}.vc_custom_1691995661095{background-color: #722f8b !important;border: 1px solid #722f8b !important;border-radius: 35px !important;}.vc_custom_1691995519863{background-color: #f4ab20 !important;border: 1px solid #f4ab20 !important;border-radius: 35px !important;}.vc_custom_1695528026328{border-radius: 35px !important;}.vc_custom_1691995519863{background-color: #f4ab20 !important;border: 1px solid #f4ab20 !important;border-radius: 35px !important;}.vc_custom_1694697209111{padding-right: 10px !important;padding-left: 10px !important;}.vc_custom_1692278922309{border-top-width: 1px !important;border-right-width: 1px !important;border-bottom-width: 1px !important;border-left-width: 1px !important;border-left-color: #059444 !important;border-left-style: solid !important;border-right-color: #059444 !important;border-right-style: solid !important;border-top-color: #059444 !important;border-top-style: solid !important;border-bottom-color: #059444 !important;border-bottom-style: solid !important;border-radius: 1px !important;}.vc_custom_1692278929158{border-top-width: 1px !important;border-right-width: 1px !important;border-bottom-width: 1px !important;border-left-width: 1px !important;border-left-color: #059444 !important;border-left-style: solid !important;border-right-color: #059444 !important;border-right-style: solid !important;border-top-color: #059444 !important;border-top-style: solid !important;border-bottom-color: #059444 !important;border-bottom-style: solid !important;border-radius: 1px !important;}.vc_custom_1692278936750{border-top-width: 1px !important;border-right-width: 1px !important;border-bottom-width: 1px !important;border-left-width: 1px !important;border-left-color: #059444 !important;border-left-style: solid !important;border-right-color: #059444 !important;border-right-style: solid !important;border-top-color: #059444 !important;border-top-style: solid !important;border-bottom-color: #059444 !important;border-bottom-style: solid !important;border-radius: 1px !important;}.vc_custom_1692278922309{border-top-width: 1px !important;border-right-width: 1px !important;border-bottom-width: 1px !important;border-left-width: 1px !important;border-left-color: #059444 !important;border-left-style: solid !important;border-right-color: #059444 !important;border-right-style: solid !important;border-top-color: #059444 !important;border-top-style: solid !important;border-bottom-color: #059444 !important;border-bottom-style: solid !important;border-radius: 1px !important;}.vc_custom_1692278929158{border-top-width: 1px !important;border-right-width: 1px !important;border-bottom-width: 1px !important;border-left-width: 1px !important;border-left-color: #059444 !important;border-left-style: solid !important;border-right-color: #059444 !important;border-right-style: solid !important;border-top-color: #059444 !important;border-top-style: solid !important;border-bottom-color: #059444 !important;border-bottom-style: solid !important;border-radius: 1px !important;}'),(28644,3848,'_wp_attached_file','2023/09/BOLOS_UTERINOS_600px-x-600px.png'),(28645,3848,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:600;s:6:\"height\";i:600;s:4:\"file\";s:40:\"2023/09/BOLOS_UTERINOS_600px-x-600px.png\";s:8:\"filesize\";i:173795;s:5:\"sizes\";a:4:{s:6:\"medium\";a:5:{s:4:\"file\";s:40:\"BOLOS_UTERINOS_600px-x-600px-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:44484;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:40:\"BOLOS_UTERINOS_600px-x-600px-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:13107;}s:21:\"woocommerce_thumbnail\";a:6:{s:4:\"file\";s:40:\"BOLOS_UTERINOS_600px-x-600px-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:44484;s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:5:{s:4:\"file\";s:40:\"BOLOS_UTERINOS_600px-x-600px-200x200.png\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:22052;}}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:{}}}'),(28646,3849,'_wp_attached_file','2023/09/BOLOS_UTERINOS_300px.png'),(28647,3849,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:300;s:6:\"height\";i:150;s:4:\"file\";s:32:\"2023/09/BOLOS_UTERINOS_300px.png\";s:8:\"filesize\";i:7928;s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:32:\"BOLOS_UTERINOS_300px-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:4073;}s:29:\"woocommerce_gallery_thumbnail\";a:5:{s:4:\"file\";s:32:\"BOLOS_UTERINOS_300px-200x150.png\";s:5:\"width\";i:200;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:4738;}}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:{}}}'),(28648,3627,'_thumbnail_id','3848'),(28650,3850,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:600;s:6:\"height\";i:600;s:4:\"file\";s:37:\"2023/09/Calci_Gel_600px-x-600px-1.png\";s:8:\"filesize\";i:61420;s:5:\"sizes\";a:4:{s:6:\"medium\";a:5:{s:4:\"file\";s:37:\"Calci_Gel_600px-x-600px-1-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:17059;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:37:\"Calci_Gel_600px-x-600px-1-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:5262;}s:21:\"woocommerce_thumbnail\";a:6:{s:4:\"file\";s:37:\"Calci_Gel_600px-x-600px-1-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:17059;s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:5:{s:4:\"file\";s:37:\"Calci_Gel_600px-x-600px-1-200x200.png\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:8583;}}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:{}}}'),(28651,3851,'_wp_attached_file','2023/09/Calci_Gel_300px-1.png'),(28652,3851,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:300;s:6:\"height\";i:120;s:4:\"file\";s:29:\"2023/09/Calci_Gel_300px-1.png\";s:8:\"filesize\";i:10096;s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:29:\"Calci_Gel_300px-1-150x120.png\";s:5:\"width\";i:150;s:6:\"height\";i:120;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:9680;}s:29:\"woocommerce_gallery_thumbnail\";a:5:{s:4:\"file\";s:29:\"Calci_Gel_300px-1-200x120.png\";s:5:\"width\";i:200;s:6:\"height\";i:120;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:9781;}}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:{}}}'),(28653,3852,'_wp_attached_file','2023/09/OXITOLAC_600px-x-600px.png'),(28654,3852,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:600;s:6:\"height\";i:600;s:4:\"file\";s:34:\"2023/09/OXITOLAC_600px-x-600px.png\";s:8:\"filesize\";i:236226;s:5:\"sizes\";a:4:{s:6:\"medium\";a:5:{s:4:\"file\";s:34:\"OXITOLAC_600px-x-600px-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:56773;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:34:\"OXITOLAC_600px-x-600px-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:16802;}s:21:\"woocommerce_thumbnail\";a:6:{s:4:\"file\";s:34:\"OXITOLAC_600px-x-600px-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:56773;s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:5:{s:4:\"file\";s:34:\"OXITOLAC_600px-x-600px-200x200.png\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:27900;}}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:{}}}'),(28655,3853,'_wp_attached_file','2023/09/OXITOLAC_300px.png'),(28656,3853,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:300;s:6:\"height\";i:115;s:4:\"file\";s:26:\"2023/09/OXITOLAC_300px.png\";s:8:\"filesize\";i:5513;s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:26:\"OXITOLAC_300px-150x115.png\";s:5:\"width\";i:150;s:6:\"height\";i:115;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:2641;}s:29:\"woocommerce_gallery_thumbnail\";a:5:{s:4:\"file\";s:26:\"OXITOLAC_300px-200x115.png\";s:5:\"width\";i:200;s:6:\"height\";i:115;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:3601;}}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:{}}}'),(28657,3625,'_thumbnail_id','3852'),(28659,3631,'_wpb_vc_js_status','false'),(28658,3673,'_wpb_vc_js_status','false'),(28660,3633,'_wpb_vc_js_status','false'),(28661,3636,'_wpb_vc_js_status','false'),(28662,3860,'_wp_attached_file','2023/09/Contact-Us.gif'),(28663,3860,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1300;s:6:\"height\";i:300;s:4:\"file\";s:22:\"2023/09/Contact-Us.gif\";s:8:\"filesize\";i:306437;s:5:\"sizes\";a:7:{s:6:\"medium\";a:5:{s:4:\"file\";s:21:\"Contact-Us-300x69.gif\";s:5:\"width\";i:300;s:6:\"height\";i:69;s:9:\"mime-type\";s:9:\"image/gif\";s:8:\"filesize\";i:17099;}s:5:\"large\";a:5:{s:4:\"file\";s:23:\"Contact-Us-1024x236.gif\";s:5:\"width\";i:1024;s:6:\"height\";i:236;s:9:\"mime-type\";s:9:\"image/gif\";s:8:\"filesize\";i:161653;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:22:\"Contact-Us-150x150.gif\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/gif\";s:8:\"filesize\";i:18218;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:22:\"Contact-Us-768x177.gif\";s:5:\"width\";i:768;s:6:\"height\";i:177;s:9:\"mime-type\";s:9:\"image/gif\";s:8:\"filesize\";i:92265;}s:21:\"woocommerce_thumbnail\";a:6:{s:4:\"file\";s:22:\"Contact-Us-300x300.gif\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/gif\";s:8:\"filesize\";i:49490;s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:5:{s:4:\"file\";s:22:\"Contact-Us-600x138.gif\";s:5:\"width\";i:600;s:6:\"height\";i:138;s:9:\"mime-type\";s:9:\"image/gif\";s:8:\"filesize\";i:58143;}s:29:\"woocommerce_gallery_thumbnail\";a:5:{s:4:\"file\";s:22:\"Contact-Us-200x200.gif\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/gif\";s:8:\"filesize\";i:29854;}}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:{}}}'),(28664,3670,'rs_page_bg_color',''),(28665,3650,'rs_page_bg_color',''),(28666,3637,'_wpb_vc_js_status','false'),(28667,3638,'_wpb_vc_js_status','false'),(28668,3640,'_wpb_vc_js_status','false'),(28669,3643,'_wpb_vc_js_status','false'),(28678,3618,'_wpb_vc_js_status','false'),(28671,3645,'_wpb_vc_js_status','false'),(28670,3644,'_wpb_vc_js_status','false'),(28672,3366,'_wpb_vc_js_status','false'),(28673,3432,'_wpb_vc_js_status','false'),(28674,3433,'_wpb_vc_js_status','false'),(28675,3552,'_wpb_vc_js_status','false'),(28676,3352,'_wpb_vc_js_status','false'),(28677,3611,'_wpb_vc_js_status','false'),(28679,3619,'_wpb_vc_js_status','false'),(28680,3621,'_wpb_vc_js_status','false'),(28681,3622,'_wpb_vc_js_status','false'),(28683,3609,'_wpb_vc_js_status','false'),(28682,3627,'_wpb_vc_js_status','false'),(28684,3877,'_wpb_shortcodes_custom_css','.vc_custom_1692366072362{margin-top: 35px !important;padding-top: 65px !important;padding-bottom: 100px !important;}.vc_custom_1684836308288{margin-top: 15px !important;}.vc_custom_1693627699480{margin-top: 15px !important;}.vc_custom_1693625624233{margin-top: 15px !important;}.vc_custom_1695294608306{margin-top: 15px !important;}.vc_custom_1692359205466{margin-top: 35px !important;}.vc_custom_1692359216075{margin-top: 35px !important;}.vc_custom_1692359231594{margin-top: 35px !important;}.vc_custom_1692359239274{margin-top: 35px !important;}.vc_custom_1692359246626{margin-top: 35px !important;}.vc_custom_1695527931440{margin-top: 35px !important;}.vc_custom_1692359258634{margin-top: 35px !important;}.vc_custom_1691995519863{background-color: #f4ab20 !important;border: 1px solid #f4ab20 !important;border-radius: 35px !important;}.vc_custom_1691995661095{background-color: #722f8b !important;border: 1px solid #722f8b !important;border-radius: 35px !important;}.vc_custom_1691995661095{background-color: #722f8b !important;border: 1px solid #722f8b !important;border-radius: 35px !important;}.vc_custom_1691995519863{background-color: #f4ab20 !important;border: 1px solid #f4ab20 !important;border-radius: 35px !important;}.vc_custom_1695528026328{border-radius: 35px !important;}.vc_custom_1691995519863{background-color: #f4ab20 !important;border: 1px solid #f4ab20 !important;border-radius: 35px !important;}.vc_custom_1694697209111{padding-right: 10px !important;padding-left: 10px !important;}.vc_custom_1692278922309{border-top-width: 1px !important;border-right-width: 1px !important;border-bottom-width: 1px !important;border-left-width: 1px !important;border-left-color: #059444 !important;border-left-style: solid !important;border-right-color: #059444 !important;border-right-style: solid !important;border-top-color: #059444 !important;border-top-style: solid !important;border-bottom-color: #059444 !important;border-bottom-style: solid !important;border-radius: 1px !important;}.vc_custom_1692278929158{border-top-width: 1px !important;border-right-width: 1px !important;border-bottom-width: 1px !important;border-left-width: 1px !important;border-left-color: #059444 !important;border-left-style: solid !important;border-right-color: #059444 !important;border-right-style: solid !important;border-top-color: #059444 !important;border-top-style: solid !important;border-bottom-color: #059444 !important;border-bottom-style: solid !important;border-radius: 1px !important;}.vc_custom_1692278936750{border-top-width: 1px !important;border-right-width: 1px !important;border-bottom-width: 1px !important;border-left-width: 1px !important;border-left-color: #059444 !important;border-left-style: solid !important;border-right-color: #059444 !important;border-right-style: solid !important;border-top-color: #059444 !important;border-top-style: solid !important;border-bottom-color: #059444 !important;border-bottom-style: solid !important;border-radius: 1px !important;}.vc_custom_1692278922309{border-top-width: 1px !important;border-right-width: 1px !important;border-bottom-width: 1px !important;border-left-width: 1px !important;border-left-color: #059444 !important;border-left-style: solid !important;border-right-color: #059444 !important;border-right-style: solid !important;border-top-color: #059444 !important;border-top-style: solid !important;border-bottom-color: #059444 !important;border-bottom-style: solid !important;border-radius: 1px !important;}.vc_custom_1692278929158{border-top-width: 1px !important;border-right-width: 1px !important;border-bottom-width: 1px !important;border-left-width: 1px !important;border-left-color: #059444 !important;border-left-style: solid !important;border-right-color: #059444 !important;border-right-style: solid !important;border-top-color: #059444 !important;border-top-style: solid !important;border-bottom-color: #059444 !important;border-bottom-style: solid !important;border-radius: 1px !important;}'),(28685,3877,'_wpb_shortcodes_custom_css_updated','1'),(28706,3884,'_wpb_shortcodes_custom_css_updated','1'),(28796,3924,'_wp_attached_file','2023/09/Asset-3@300x-1.png'),(28797,3924,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1251;s:6:\"height\";i:337;s:4:\"file\";s:26:\"2023/09/Asset-3@300x-1.png\";s:8:\"filesize\";i:8802;s:5:\"sizes\";a:7:{s:6:\"medium\";a:5:{s:4:\"file\";s:25:\"Asset-3@300x-1-300x81.png\";s:5:\"width\";i:300;s:6:\"height\";i:81;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:11857;}s:5:\"large\";a:5:{s:4:\"file\";s:27:\"Asset-3@300x-1-1024x276.png\";s:5:\"width\";i:1024;s:6:\"height\";i:276;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:30840;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:26:\"Asset-3@300x-1-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:4533;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:26:\"Asset-3@300x-1-768x207.png\";s:5:\"width\";i:768;s:6:\"height\";i:207;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:26804;}s:21:\"woocommerce_thumbnail\";a:6:{s:4:\"file\";s:26:\"Asset-3@300x-1-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:6997;s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:5:{s:4:\"file\";s:26:\"Asset-3@300x-1-600x162.png\";s:5:\"width\";i:600;s:6:\"height\";i:162;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:22689;}s:29:\"woocommerce_gallery_thumbnail\";a:5:{s:4:\"file\";s:26:\"Asset-3@300x-1-200x200.png\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:5768;}}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:{}}}'),(28798,3925,'_wp_attached_file','2023/09/Asset-4@300x-1.png'),(28799,3925,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1251;s:6:\"height\";i:347;s:4:\"file\";s:26:\"2023/09/Asset-4@300x-1.png\";s:8:\"filesize\";i:12280;s:5:\"sizes\";a:7:{s:6:\"medium\";a:5:{s:4:\"file\";s:25:\"Asset-4@300x-1-300x83.png\";s:5:\"width\";i:300;s:6:\"height\";i:83;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:10225;}s:5:\"large\";a:5:{s:4:\"file\";s:27:\"Asset-4@300x-1-1024x284.png\";s:5:\"width\";i:1024;s:6:\"height\";i:284;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:31113;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:26:\"Asset-4@300x-1-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:7888;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:26:\"Asset-4@300x-1-768x213.png\";s:5:\"width\";i:768;s:6:\"height\";i:213;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:25278;}s:21:\"woocommerce_thumbnail\";a:6:{s:4:\"file\";s:26:\"Asset-4@300x-1-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:13923;s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:5:{s:4:\"file\";s:26:\"Asset-4@300x-1-600x166.png\";s:5:\"width\";i:600;s:6:\"height\";i:166;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:20380;}s:29:\"woocommerce_gallery_thumbnail\";a:5:{s:4:\"file\";s:26:\"Asset-4@300x-1-200x200.png\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:10325;}}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:{}}}'),(28800,3926,'_wp_attached_file','2023/09/Asset-5@300x-1.png'),(28801,3926,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1251;s:6:\"height\";i:283;s:4:\"file\";s:26:\"2023/09/Asset-5@300x-1.png\";s:8:\"filesize\";i:7552;s:5:\"sizes\";a:7:{s:6:\"medium\";a:5:{s:4:\"file\";s:25:\"Asset-5@300x-1-300x68.png\";s:5:\"width\";i:300;s:6:\"height\";i:68;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:8079;}s:5:\"large\";a:5:{s:4:\"file\";s:27:\"Asset-5@300x-1-1024x232.png\";s:5:\"width\";i:1024;s:6:\"height\";i:232;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:23717;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:26:\"Asset-5@300x-1-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:3067;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:26:\"Asset-5@300x-1-768x174.png\";s:5:\"width\";i:768;s:6:\"height\";i:174;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:19342;}s:21:\"woocommerce_thumbnail\";a:6:{s:4:\"file\";s:26:\"Asset-5@300x-1-300x283.png\";s:5:\"width\";i:300;s:6:\"height\";i:283;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:1564;s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:5:{s:4:\"file\";s:26:\"Asset-5@300x-1-600x136.png\";s:5:\"width\";i:600;s:6:\"height\";i:136;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:15718;}s:29:\"woocommerce_gallery_thumbnail\";a:5:{s:4:\"file\";s:26:\"Asset-5@300x-1-200x200.png\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:3525;}}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:{}}}'),(28802,3927,'_wp_attached_file','2023/09/Asset-7@300x.png'),(28803,3927,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1251;s:6:\"height\";i:600;s:4:\"file\";s:24:\"2023/09/Asset-7@300x.png\";s:8:\"filesize\";i:30449;s:5:\"sizes\";a:7:{s:6:\"medium\";a:5:{s:4:\"file\";s:24:\"Asset-7@300x-300x144.png\";s:5:\"width\";i:300;s:6:\"height\";i:144;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:20549;}s:5:\"large\";a:5:{s:4:\"file\";s:25:\"Asset-7@300x-1024x491.png\";s:5:\"width\";i:1024;s:6:\"height\";i:491;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:68318;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:24:\"Asset-7@300x-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:12585;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:24:\"Asset-7@300x-768x368.png\";s:5:\"width\";i:768;s:6:\"height\";i:368;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:54227;}s:21:\"woocommerce_thumbnail\";a:6:{s:4:\"file\";s:24:\"Asset-7@300x-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:20757;s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:5:{s:4:\"file\";s:24:\"Asset-7@300x-600x288.png\";s:5:\"width\";i:600;s:6:\"height\";i:288;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:42410;}s:29:\"woocommerce_gallery_thumbnail\";a:5:{s:4:\"file\";s:24:\"Asset-7@300x-200x200.png\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:14944;}}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:{}}}'),(28717,3888,'_wpb_shortcodes_custom_css','.vc_custom_1692366072362{margin-top: 35px !important;padding-top: 65px !important;padding-bottom: 100px !important;}.vc_custom_1684836308288{margin-top: 15px !important;}.vc_custom_1695531839830{margin-top: 15px !important;}.vc_custom_1693625624233{margin-top: 15px !important;}.vc_custom_1695294608306{margin-top: 15px !important;}.vc_custom_1692359205466{margin-top: 35px !important;}.vc_custom_1692359216075{margin-top: 35px !important;}.vc_custom_1692359216075{margin-top: 35px !important;}.vc_custom_1692359231594{margin-top: 35px !important;}.vc_custom_1692359239274{margin-top: 35px !important;}.vc_custom_1692359239274{margin-top: 35px !important;}.vc_custom_1692359246626{margin-top: 35px !important;}.vc_custom_1695527931440{margin-top: 35px !important;}.vc_custom_1695527931440{margin-top: 35px !important;}.vc_custom_1692359258634{margin-top: 35px !important;}.vc_custom_1691995519863{background-color: #f4ab20 !important;border: 1px solid #f4ab20 !important;border-radius: 35px !important;}.vc_custom_1691995661095{background-color: #722f8b !important;border: 1px solid #722f8b !important;border-radius: 35px !important;}.vc_custom_1691995661095{background-color: #722f8b !important;border: 1px solid #722f8b !important;border-radius: 35px !important;}.vc_custom_1691995519863{background-color: #f4ab20 !important;border: 1px solid #f4ab20 !important;border-radius: 35px !important;}.vc_custom_1695528026328{border-radius: 35px !important;}.vc_custom_1691995519863{background-color: #f4ab20 !important;border: 1px solid #f4ab20 !important;border-radius: 35px !important;}.vc_custom_1694697209111{padding-right: 10px !important;padding-left: 10px !important;}.vc_custom_1692278922309{border-top-width: 1px !important;border-right-width: 1px !important;border-bottom-width: 1px !important;border-left-width: 1px !important;border-left-color: #059444 !important;border-left-style: solid !important;border-right-color: #059444 !important;border-right-style: solid !important;border-top-color: #059444 !important;border-top-style: solid !important;border-bottom-color: #059444 !important;border-bottom-style: solid !important;border-radius: 1px !important;}.vc_custom_1692278929158{border-top-width: 1px !important;border-right-width: 1px !important;border-bottom-width: 1px !important;border-left-width: 1px !important;border-left-color: #059444 !important;border-left-style: solid !important;border-right-color: #059444 !important;border-right-style: solid !important;border-top-color: #059444 !important;border-top-style: solid !important;border-bottom-color: #059444 !important;border-bottom-style: solid !important;border-radius: 1px !important;}.vc_custom_1692278936750{border-top-width: 1px !important;border-right-width: 1px !important;border-bottom-width: 1px !important;border-left-width: 1px !important;border-left-color: #059444 !important;border-left-style: solid !important;border-right-color: #059444 !important;border-right-style: solid !important;border-top-color: #059444 !important;border-top-style: solid !important;border-bottom-color: #059444 !important;border-bottom-style: solid !important;border-radius: 1px !important;}.vc_custom_1692278922309{border-top-width: 1px !important;border-right-width: 1px !important;border-bottom-width: 1px !important;border-left-width: 1px !important;border-left-color: #059444 !important;border-left-style: solid !important;border-right-color: #059444 !important;border-right-style: solid !important;border-top-color: #059444 !important;border-top-style: solid !important;border-bottom-color: #059444 !important;border-bottom-style: solid !important;border-radius: 1px !important;}.vc_custom_1692278929158{border-top-width: 1px !important;border-right-width: 1px !important;border-bottom-width: 1px !important;border-left-width: 1px !important;border-left-color: #059444 !important;border-left-style: solid !important;border-right-color: #059444 !important;border-right-style: solid !important;border-top-color: #059444 !important;border-top-style: solid !important;border-bottom-color: #059444 !important;border-bottom-style: solid !important;border-radius: 1px !important;}'),(28697,3881,'_wpb_post_custom_css','.whitetxt{\r\n    color:white!important;\r\n}\r\na {\r\n    color: white;\r\n}'),(28698,3881,'_wpb_shortcodes_custom_css','.vc_custom_1689577528817{padding-bottom: 50px !important;}.vc_custom_1693451731079{padding-top: 50px !important;padding-bottom: 50px !important;}.vc_custom_1689578794814{padding-top: 50px !important;padding-bottom: 50px !important;}.vc_custom_1689578794814{padding-top: 50px !important;padding-bottom: 50px !important;}.vc_custom_1689577454678{margin-bottom: 50px !important;}.vc_custom_1692407941633{border-bottom-width: 1px !important;border-bottom-color: #079547 !important;border-bottom-style: solid !important;border-radius: 1px !important;}.vc_custom_1692407941633{border-bottom-width: 1px !important;border-bottom-color: #079547 !important;border-bottom-style: solid !important;border-radius: 1px !important;}.vc_custom_1692407949383{border-bottom-width: 1px !important;border-bottom-color: #079547 !important;border-bottom-style: solid !important;border-radius: 1px !important;}.vc_custom_1692407957943{border-bottom-width: 1px !important;border-bottom-color: #079547 !important;border-bottom-style: solid !important;border-radius: 1px !important;}.vc_custom_1692407957943{border-bottom-width: 1px !important;border-bottom-color: #079547 !important;border-bottom-style: solid !important;border-radius: 1px !important;}.vc_custom_1692407970279{border-bottom-width: 1px !important;border-bottom-color: #079547 !important;border-bottom-style: solid !important;border-radius: 1px !important;}.vc_custom_1691846530645{border-right-width: 1px !important;border-left-width: 1px !important;border-left-color: #000000 !important;border-left-style: solid !important;border-right-color: #000000 !important;border-right-style: solid !important;border-radius: 1px !important;}.vc_custom_1691846545469{border-right-width: 1px !important;border-left-width: 1px !important;border-left-color: #000000 !important;border-left-style: solid !important;border-right-color: #000000 !important;border-right-style: solid !important;border-radius: 1px !important;}.vc_custom_1691846563021{border-right-width: 1px !important;border-right-color: #000000 !important;border-right-style: solid !important;border-radius: 1px !important;}.vc_custom_1691846569845{border-right-width: 1px !important;border-right-color: #000000 !important;border-right-style: solid !important;border-radius: 1px !important;}.vc_custom_1691846576949{border-right-width: 1px !important;border-right-color: #000000 !important;border-right-style: solid !important;border-radius: 1px !important;}.vc_custom_1689578812611{margin-top: 50px !important;}.vc_custom_1693569503225{background-image: url(https://farmchemie.yasithawd.com/wp-content/uploads/2023/09/022International-Markets-Sri-Lankan-Market.png?id=3403) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}.vc_custom_1693540250450{background-color: #8d499b !important;}.vc_custom_1695529397280{background-color: #039447 !important;}.vc_custom_1695529390186{background-image: url(https://farmchemie.yasithawd.com/wp-content/uploads/2023/09/011International-Markets-Sri-Lankan-Market.png?id=3404) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}.vc_custom_1695529365330{background-image: url(https://farmchemie.yasithawd.com/wp-content/uploads/2023/09/011International-Markets-Sri-Lankan-Market.png?id=3404) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}.vc_custom_1695529378241{background-color: #039447 !important;}'),(28699,3881,'_wpb_shortcodes_custom_css_updated','1'),(28700,3882,'_wpb_shortcodes_custom_css','.vc_custom_1692366072362{margin-top: 35px !important;padding-top: 65px !important;padding-bottom: 100px !important;}.vc_custom_1684836308288{margin-top: 15px !important;}.vc_custom_1693627699480{margin-top: 15px !important;}.vc_custom_1693625624233{margin-top: 15px !important;}.vc_custom_1695294608306{margin-top: 15px !important;}.vc_custom_1692359205466{margin-top: 35px !important;}.vc_custom_1692359216075{margin-top: 35px !important;}.vc_custom_1692359216075{margin-top: 35px !important;}.vc_custom_1692359231594{margin-top: 35px !important;}.vc_custom_1692359239274{margin-top: 35px !important;}.vc_custom_1692359239274{margin-top: 35px !important;}.vc_custom_1692359246626{margin-top: 35px !important;}.vc_custom_1695527931440{margin-top: 35px !important;}.vc_custom_1695527931440{margin-top: 35px !important;}.vc_custom_1692359258634{margin-top: 35px !important;}.vc_custom_1691995519863{background-color: #f4ab20 !important;border: 1px solid #f4ab20 !important;border-radius: 35px !important;}.vc_custom_1691995661095{background-color: #722f8b !important;border: 1px solid #722f8b !important;border-radius: 35px !important;}.vc_custom_1691995661095{background-color: #722f8b !important;border: 1px solid #722f8b !important;border-radius: 35px !important;}.vc_custom_1691995519863{background-color: #f4ab20 !important;border: 1px solid #f4ab20 !important;border-radius: 35px !important;}.vc_custom_1695528026328{border-radius: 35px !important;}.vc_custom_1691995519863{background-color: #f4ab20 !important;border: 1px solid #f4ab20 !important;border-radius: 35px !important;}.vc_custom_1694697209111{padding-right: 10px !important;padding-left: 10px !important;}.vc_custom_1692278922309{border-top-width: 1px !important;border-right-width: 1px !important;border-bottom-width: 1px !important;border-left-width: 1px !important;border-left-color: #059444 !important;border-left-style: solid !important;border-right-color: #059444 !important;border-right-style: solid !important;border-top-color: #059444 !important;border-top-style: solid !important;border-bottom-color: #059444 !important;border-bottom-style: solid !important;border-radius: 1px !important;}.vc_custom_1692278929158{border-top-width: 1px !important;border-right-width: 1px !important;border-bottom-width: 1px !important;border-left-width: 1px !important;border-left-color: #059444 !important;border-left-style: solid !important;border-right-color: #059444 !important;border-right-style: solid !important;border-top-color: #059444 !important;border-top-style: solid !important;border-bottom-color: #059444 !important;border-bottom-style: solid !important;border-radius: 1px !important;}.vc_custom_1692278936750{border-top-width: 1px !important;border-right-width: 1px !important;border-bottom-width: 1px !important;border-left-width: 1px !important;border-left-color: #059444 !important;border-left-style: solid !important;border-right-color: #059444 !important;border-right-style: solid !important;border-top-color: #059444 !important;border-top-style: solid !important;border-bottom-color: #059444 !important;border-bottom-style: solid !important;border-radius: 1px !important;}.vc_custom_1692278922309{border-top-width: 1px !important;border-right-width: 1px !important;border-bottom-width: 1px !important;border-left-width: 1px !important;border-left-color: #059444 !important;border-left-style: solid !important;border-right-color: #059444 !important;border-right-style: solid !important;border-top-color: #059444 !important;border-top-style: solid !important;border-bottom-color: #059444 !important;border-bottom-style: solid !important;border-radius: 1px !important;}.vc_custom_1692278929158{border-top-width: 1px !important;border-right-width: 1px !important;border-bottom-width: 1px !important;border-left-width: 1px !important;border-left-color: #059444 !important;border-left-style: solid !important;border-right-color: #059444 !important;border-right-style: solid !important;border-top-color: #059444 !important;border-top-style: solid !important;border-bottom-color: #059444 !important;border-bottom-style: solid !important;border-radius: 1px !important;}'),(28701,3882,'_wpb_shortcodes_custom_css_updated','1'),(28704,3883,'_wpb_shortcodes_custom_css_updated','1'),(28804,3928,'_wp_attached_file','2023/09/Asset-6@300x-1.png'),(28805,3928,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1251;s:6:\"height\";i:464;s:4:\"file\";s:26:\"2023/09/Asset-6@300x-1.png\";s:8:\"filesize\";i:10614;s:5:\"sizes\";a:7:{s:6:\"medium\";a:5:{s:4:\"file\";s:26:\"Asset-6@300x-1-300x111.png\";s:5:\"width\";i:300;s:6:\"height\";i:111;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:10887;}s:5:\"large\";a:5:{s:4:\"file\";s:27:\"Asset-6@300x-1-1024x380.png\";s:5:\"width\";i:1024;s:6:\"height\";i:380;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:33252;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:26:\"Asset-6@300x-1-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:7779;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:26:\"Asset-6@300x-1-768x285.png\";s:5:\"width\";i:768;s:6:\"height\";i:285;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:27039;}s:21:\"woocommerce_thumbnail\";a:6:{s:4:\"file\";s:26:\"Asset-6@300x-1-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:14738;s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:5:{s:4:\"file\";s:26:\"Asset-6@300x-1-600x223.png\";s:5:\"width\";i:600;s:6:\"height\";i:223;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:21578;}s:29:\"woocommerce_gallery_thumbnail\";a:5:{s:4:\"file\";s:26:\"Asset-6@300x-1-200x200.png\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:10145;}}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:{}}}'),(28806,2917,'the7_shortcodes_dynamic_css','a:29:{i:0;s:0:\"\";s:32:\"c766c86ddd5e6eeb036d32b0eaff25f2\";s:761:\".shortcode-single-image-wrap.shortcode-single-image-c766c86ddd5e6eeb036d32b0eaff25f2.enable-bg-rollover .rollover i,\n.shortcode-single-image-wrap.shortcode-single-image-c766c86ddd5e6eeb036d32b0eaff25f2.enable-bg-rollover .rollover-video i {\n  background: -webkit-linear-gradient();\n  background: linear-gradient();\n}\n.shortcode-single-image-wrap.shortcode-single-image-c766c86ddd5e6eeb036d32b0eaff25f2 .rollover-icon {\n  font-size: 32px;\n  color: #ffffff;\n  min-width: 44px;\n  min-height: 44px;\n  line-height: 44px;\n  border-radius: 100px;\n  border-style: solid;\n  border-width: 0px;\n}\n.dt-icon-bg-on.shortcode-single-image-wrap.shortcode-single-image-c766c86ddd5e6eeb036d32b0eaff25f2 .rollover-icon {\n  background: rgba(255,255,255,0.3);\n  box-shadow: none;\n}\n\";s:32:\"1363a52562801e5390adc3ed5cdf5ba5\";s:761:\".shortcode-single-image-wrap.shortcode-single-image-1363a52562801e5390adc3ed5cdf5ba5.enable-bg-rollover .rollover i,\n.shortcode-single-image-wrap.shortcode-single-image-1363a52562801e5390adc3ed5cdf5ba5.enable-bg-rollover .rollover-video i {\n  background: -webkit-linear-gradient();\n  background: linear-gradient();\n}\n.shortcode-single-image-wrap.shortcode-single-image-1363a52562801e5390adc3ed5cdf5ba5 .rollover-icon {\n  font-size: 32px;\n  color: #ffffff;\n  min-width: 44px;\n  min-height: 44px;\n  line-height: 44px;\n  border-radius: 100px;\n  border-style: solid;\n  border-width: 0px;\n}\n.dt-icon-bg-on.shortcode-single-image-wrap.shortcode-single-image-1363a52562801e5390adc3ed5cdf5ba5 .rollover-icon {\n  background: rgba(255,255,255,0.3);\n  box-shadow: none;\n}\n\";s:32:\"4e435550634879e26eeb9572545459ec\";s:761:\".shortcode-single-image-wrap.shortcode-single-image-4e435550634879e26eeb9572545459ec.enable-bg-rollover .rollover i,\n.shortcode-single-image-wrap.shortcode-single-image-4e435550634879e26eeb9572545459ec.enable-bg-rollover .rollover-video i {\n  background: -webkit-linear-gradient();\n  background: linear-gradient();\n}\n.shortcode-single-image-wrap.shortcode-single-image-4e435550634879e26eeb9572545459ec .rollover-icon {\n  font-size: 32px;\n  color: #ffffff;\n  min-width: 44px;\n  min-height: 44px;\n  line-height: 44px;\n  border-radius: 100px;\n  border-style: solid;\n  border-width: 0px;\n}\n.dt-icon-bg-on.shortcode-single-image-wrap.shortcode-single-image-4e435550634879e26eeb9572545459ec .rollover-icon {\n  background: rgba(255,255,255,0.3);\n  box-shadow: none;\n}\n\";s:32:\"4f6125f7a929cb0566d17488a2db7a65\";s:761:\".shortcode-single-image-wrap.shortcode-single-image-4f6125f7a929cb0566d17488a2db7a65.enable-bg-rollover .rollover i,\n.shortcode-single-image-wrap.shortcode-single-image-4f6125f7a929cb0566d17488a2db7a65.enable-bg-rollover .rollover-video i {\n  background: -webkit-linear-gradient();\n  background: linear-gradient();\n}\n.shortcode-single-image-wrap.shortcode-single-image-4f6125f7a929cb0566d17488a2db7a65 .rollover-icon {\n  font-size: 32px;\n  color: #ffffff;\n  min-width: 44px;\n  min-height: 44px;\n  line-height: 44px;\n  border-radius: 100px;\n  border-style: solid;\n  border-width: 0px;\n}\n.dt-icon-bg-on.shortcode-single-image-wrap.shortcode-single-image-4f6125f7a929cb0566d17488a2db7a65 .rollover-icon {\n  background: rgba(255,255,255,0.3);\n  box-shadow: none;\n}\n\";s:32:\"e3fc7287f432e6e3b1349f3fc2ddca6d\";s:761:\".shortcode-single-image-wrap.shortcode-single-image-e3fc7287f432e6e3b1349f3fc2ddca6d.enable-bg-rollover .rollover i,\n.shortcode-single-image-wrap.shortcode-single-image-e3fc7287f432e6e3b1349f3fc2ddca6d.enable-bg-rollover .rollover-video i {\n  background: -webkit-linear-gradient();\n  background: linear-gradient();\n}\n.shortcode-single-image-wrap.shortcode-single-image-e3fc7287f432e6e3b1349f3fc2ddca6d .rollover-icon {\n  font-size: 32px;\n  color: #ffffff;\n  min-width: 44px;\n  min-height: 44px;\n  line-height: 44px;\n  border-radius: 100px;\n  border-style: solid;\n  border-width: 0px;\n}\n.dt-icon-bg-on.shortcode-single-image-wrap.shortcode-single-image-e3fc7287f432e6e3b1349f3fc2ddca6d .rollover-icon {\n  background: rgba(255,255,255,0.3);\n  box-shadow: none;\n}\n\";s:32:\"3924f0150a67e19f7590d29b5c8547bc\";s:761:\".shortcode-single-image-wrap.shortcode-single-image-3924f0150a67e19f7590d29b5c8547bc.enable-bg-rollover .rollover i,\n.shortcode-single-image-wrap.shortcode-single-image-3924f0150a67e19f7590d29b5c8547bc.enable-bg-rollover .rollover-video i {\n  background: -webkit-linear-gradient();\n  background: linear-gradient();\n}\n.shortcode-single-image-wrap.shortcode-single-image-3924f0150a67e19f7590d29b5c8547bc .rollover-icon {\n  font-size: 32px;\n  color: #ffffff;\n  min-width: 44px;\n  min-height: 44px;\n  line-height: 44px;\n  border-radius: 100px;\n  border-style: solid;\n  border-width: 0px;\n}\n.dt-icon-bg-on.shortcode-single-image-wrap.shortcode-single-image-3924f0150a67e19f7590d29b5c8547bc .rollover-icon {\n  background: rgba(255,255,255,0.3);\n  box-shadow: none;\n}\n\";s:32:\"52ad9bacd0f270f13cbb0b01787fc754\";s:761:\".shortcode-single-image-wrap.shortcode-single-image-52ad9bacd0f270f13cbb0b01787fc754.enable-bg-rollover .rollover i,\n.shortcode-single-image-wrap.shortcode-single-image-52ad9bacd0f270f13cbb0b01787fc754.enable-bg-rollover .rollover-video i {\n  background: -webkit-linear-gradient();\n  background: linear-gradient();\n}\n.shortcode-single-image-wrap.shortcode-single-image-52ad9bacd0f270f13cbb0b01787fc754 .rollover-icon {\n  font-size: 32px;\n  color: #ffffff;\n  min-width: 44px;\n  min-height: 44px;\n  line-height: 44px;\n  border-radius: 100px;\n  border-style: solid;\n  border-width: 0px;\n}\n.dt-icon-bg-on.shortcode-single-image-wrap.shortcode-single-image-52ad9bacd0f270f13cbb0b01787fc754 .rollover-icon {\n  background: rgba(255,255,255,0.3);\n  box-shadow: none;\n}\n\";s:32:\"0a33df862a93aeb0f0f8b6fe5a5f2c9f\";s:761:\".shortcode-single-image-wrap.shortcode-single-image-0a33df862a93aeb0f0f8b6fe5a5f2c9f.enable-bg-rollover .rollover i,\n.shortcode-single-image-wrap.shortcode-single-image-0a33df862a93aeb0f0f8b6fe5a5f2c9f.enable-bg-rollover .rollover-video i {\n  background: -webkit-linear-gradient();\n  background: linear-gradient();\n}\n.shortcode-single-image-wrap.shortcode-single-image-0a33df862a93aeb0f0f8b6fe5a5f2c9f .rollover-icon {\n  font-size: 32px;\n  color: #ffffff;\n  min-width: 44px;\n  min-height: 44px;\n  line-height: 44px;\n  border-radius: 100px;\n  border-style: solid;\n  border-width: 0px;\n}\n.dt-icon-bg-on.shortcode-single-image-wrap.shortcode-single-image-0a33df862a93aeb0f0f8b6fe5a5f2c9f .rollover-icon {\n  background: rgba(255,255,255,0.3);\n  box-shadow: none;\n}\n\";s:32:\"125cdf084c803798787cdf0c035a38a6\";s:761:\".shortcode-single-image-wrap.shortcode-single-image-125cdf084c803798787cdf0c035a38a6.enable-bg-rollover .rollover i,\n.shortcode-single-image-wrap.shortcode-single-image-125cdf084c803798787cdf0c035a38a6.enable-bg-rollover .rollover-video i {\n  background: -webkit-linear-gradient();\n  background: linear-gradient();\n}\n.shortcode-single-image-wrap.shortcode-single-image-125cdf084c803798787cdf0c035a38a6 .rollover-icon {\n  font-size: 32px;\n  color: #ffffff;\n  min-width: 44px;\n  min-height: 44px;\n  line-height: 44px;\n  border-radius: 100px;\n  border-style: solid;\n  border-width: 0px;\n}\n.dt-icon-bg-on.shortcode-single-image-wrap.shortcode-single-image-125cdf084c803798787cdf0c035a38a6 .rollover-icon {\n  background: rgba(255,255,255,0.3);\n  box-shadow: none;\n}\n\";s:32:\"c72e3144a71430f08e480296949b071d\";s:761:\".shortcode-single-image-wrap.shortcode-single-image-c72e3144a71430f08e480296949b071d.enable-bg-rollover .rollover i,\n.shortcode-single-image-wrap.shortcode-single-image-c72e3144a71430f08e480296949b071d.enable-bg-rollover .rollover-video i {\n  background: -webkit-linear-gradient();\n  background: linear-gradient();\n}\n.shortcode-single-image-wrap.shortcode-single-image-c72e3144a71430f08e480296949b071d .rollover-icon {\n  font-size: 32px;\n  color: #ffffff;\n  min-width: 44px;\n  min-height: 44px;\n  line-height: 44px;\n  border-radius: 100px;\n  border-style: solid;\n  border-width: 0px;\n}\n.dt-icon-bg-on.shortcode-single-image-wrap.shortcode-single-image-c72e3144a71430f08e480296949b071d .rollover-icon {\n  background: rgba(255,255,255,0.3);\n  box-shadow: none;\n}\n\";s:32:\"34ebd58105f21ae8f2a9598c272fce8e\";s:761:\".shortcode-single-image-wrap.shortcode-single-image-34ebd58105f21ae8f2a9598c272fce8e.enable-bg-rollover .rollover i,\n.shortcode-single-image-wrap.shortcode-single-image-34ebd58105f21ae8f2a9598c272fce8e.enable-bg-rollover .rollover-video i {\n  background: -webkit-linear-gradient();\n  background: linear-gradient();\n}\n.shortcode-single-image-wrap.shortcode-single-image-34ebd58105f21ae8f2a9598c272fce8e .rollover-icon {\n  font-size: 32px;\n  color: #ffffff;\n  min-width: 44px;\n  min-height: 44px;\n  line-height: 44px;\n  border-radius: 100px;\n  border-style: solid;\n  border-width: 0px;\n}\n.dt-icon-bg-on.shortcode-single-image-wrap.shortcode-single-image-34ebd58105f21ae8f2a9598c272fce8e .rollover-icon {\n  background: rgba(255,255,255,0.3);\n  box-shadow: none;\n}\n\";s:32:\"6f0329e4c2031895f642c447b26eaad8\";s:761:\".shortcode-single-image-wrap.shortcode-single-image-6f0329e4c2031895f642c447b26eaad8.enable-bg-rollover .rollover i,\n.shortcode-single-image-wrap.shortcode-single-image-6f0329e4c2031895f642c447b26eaad8.enable-bg-rollover .rollover-video i {\n  background: -webkit-linear-gradient();\n  background: linear-gradient();\n}\n.shortcode-single-image-wrap.shortcode-single-image-6f0329e4c2031895f642c447b26eaad8 .rollover-icon {\n  font-size: 32px;\n  color: #ffffff;\n  min-width: 44px;\n  min-height: 44px;\n  line-height: 44px;\n  border-radius: 100px;\n  border-style: solid;\n  border-width: 0px;\n}\n.dt-icon-bg-on.shortcode-single-image-wrap.shortcode-single-image-6f0329e4c2031895f642c447b26eaad8 .rollover-icon {\n  background: rgba(255,255,255,0.3);\n  box-shadow: none;\n}\n\";s:32:\"00ccbc066d00c541e7c6b67a20778a52\";s:761:\".shortcode-single-image-wrap.shortcode-single-image-00ccbc066d00c541e7c6b67a20778a52.enable-bg-rollover .rollover i,\n.shortcode-single-image-wrap.shortcode-single-image-00ccbc066d00c541e7c6b67a20778a52.enable-bg-rollover .rollover-video i {\n  background: -webkit-linear-gradient();\n  background: linear-gradient();\n}\n.shortcode-single-image-wrap.shortcode-single-image-00ccbc066d00c541e7c6b67a20778a52 .rollover-icon {\n  font-size: 32px;\n  color: #ffffff;\n  min-width: 44px;\n  min-height: 44px;\n  line-height: 44px;\n  border-radius: 100px;\n  border-style: solid;\n  border-width: 0px;\n}\n.dt-icon-bg-on.shortcode-single-image-wrap.shortcode-single-image-00ccbc066d00c541e7c6b67a20778a52 .rollover-icon {\n  background: rgba(255,255,255,0.3);\n  box-shadow: none;\n}\n\";s:32:\"bfa8514db3fc79f10defa7da87c39ce7\";s:761:\".shortcode-single-image-wrap.shortcode-single-image-bfa8514db3fc79f10defa7da87c39ce7.enable-bg-rollover .rollover i,\n.shortcode-single-image-wrap.shortcode-single-image-bfa8514db3fc79f10defa7da87c39ce7.enable-bg-rollover .rollover-video i {\n  background: -webkit-linear-gradient();\n  background: linear-gradient();\n}\n.shortcode-single-image-wrap.shortcode-single-image-bfa8514db3fc79f10defa7da87c39ce7 .rollover-icon {\n  font-size: 32px;\n  color: #ffffff;\n  min-width: 44px;\n  min-height: 44px;\n  line-height: 44px;\n  border-radius: 100px;\n  border-style: solid;\n  border-width: 0px;\n}\n.dt-icon-bg-on.shortcode-single-image-wrap.shortcode-single-image-bfa8514db3fc79f10defa7da87c39ce7 .rollover-icon {\n  background: rgba(255,255,255,0.3);\n  box-shadow: none;\n}\n\";s:32:\"98e81123c69254c12542c9b6efb4960a\";s:761:\".shortcode-single-image-wrap.shortcode-single-image-98e81123c69254c12542c9b6efb4960a.enable-bg-rollover .rollover i,\n.shortcode-single-image-wrap.shortcode-single-image-98e81123c69254c12542c9b6efb4960a.enable-bg-rollover .rollover-video i {\n  background: -webkit-linear-gradient();\n  background: linear-gradient();\n}\n.shortcode-single-image-wrap.shortcode-single-image-98e81123c69254c12542c9b6efb4960a .rollover-icon {\n  font-size: 32px;\n  color: #ffffff;\n  min-width: 44px;\n  min-height: 44px;\n  line-height: 44px;\n  border-radius: 100px;\n  border-style: solid;\n  border-width: 0px;\n}\n.dt-icon-bg-on.shortcode-single-image-wrap.shortcode-single-image-98e81123c69254c12542c9b6efb4960a .rollover-icon {\n  background: rgba(255,255,255,0.3);\n  box-shadow: none;\n}\n\";s:32:\"76d66e28df80087c82aad6ce7a01fef5\";s:761:\".shortcode-single-image-wrap.shortcode-single-image-76d66e28df80087c82aad6ce7a01fef5.enable-bg-rollover .rollover i,\n.shortcode-single-image-wrap.shortcode-single-image-76d66e28df80087c82aad6ce7a01fef5.enable-bg-rollover .rollover-video i {\n  background: -webkit-linear-gradient();\n  background: linear-gradient();\n}\n.shortcode-single-image-wrap.shortcode-single-image-76d66e28df80087c82aad6ce7a01fef5 .rollover-icon {\n  font-size: 32px;\n  color: #ffffff;\n  min-width: 44px;\n  min-height: 44px;\n  line-height: 44px;\n  border-radius: 100px;\n  border-style: solid;\n  border-width: 0px;\n}\n.dt-icon-bg-on.shortcode-single-image-wrap.shortcode-single-image-76d66e28df80087c82aad6ce7a01fef5 .rollover-icon {\n  background: rgba(255,255,255,0.3);\n  box-shadow: none;\n}\n\";s:32:\"cbdeb4b8e819c2f9d6da79010a22056b\";s:761:\".shortcode-single-image-wrap.shortcode-single-image-cbdeb4b8e819c2f9d6da79010a22056b.enable-bg-rollover .rollover i,\n.shortcode-single-image-wrap.shortcode-single-image-cbdeb4b8e819c2f9d6da79010a22056b.enable-bg-rollover .rollover-video i {\n  background: -webkit-linear-gradient();\n  background: linear-gradient();\n}\n.shortcode-single-image-wrap.shortcode-single-image-cbdeb4b8e819c2f9d6da79010a22056b .rollover-icon {\n  font-size: 32px;\n  color: #ffffff;\n  min-width: 44px;\n  min-height: 44px;\n  line-height: 44px;\n  border-radius: 100px;\n  border-style: solid;\n  border-width: 0px;\n}\n.dt-icon-bg-on.shortcode-single-image-wrap.shortcode-single-image-cbdeb4b8e819c2f9d6da79010a22056b .rollover-icon {\n  background: rgba(255,255,255,0.3);\n  box-shadow: none;\n}\n\";s:32:\"ab2d473c0e91bf0f2167178453304f97\";s:761:\".shortcode-single-image-wrap.shortcode-single-image-ab2d473c0e91bf0f2167178453304f97.enable-bg-rollover .rollover i,\n.shortcode-single-image-wrap.shortcode-single-image-ab2d473c0e91bf0f2167178453304f97.enable-bg-rollover .rollover-video i {\n  background: -webkit-linear-gradient();\n  background: linear-gradient();\n}\n.shortcode-single-image-wrap.shortcode-single-image-ab2d473c0e91bf0f2167178453304f97 .rollover-icon {\n  font-size: 32px;\n  color: #ffffff;\n  min-width: 44px;\n  min-height: 44px;\n  line-height: 44px;\n  border-radius: 100px;\n  border-style: solid;\n  border-width: 0px;\n}\n.dt-icon-bg-on.shortcode-single-image-wrap.shortcode-single-image-ab2d473c0e91bf0f2167178453304f97 .rollover-icon {\n  background: rgba(255,255,255,0.3);\n  box-shadow: none;\n}\n\";s:32:\"f65cf740998941d33cfce5f650998e7e\";s:761:\".shortcode-single-image-wrap.shortcode-single-image-f65cf740998941d33cfce5f650998e7e.enable-bg-rollover .rollover i,\n.shortcode-single-image-wrap.shortcode-single-image-f65cf740998941d33cfce5f650998e7e.enable-bg-rollover .rollover-video i {\n  background: -webkit-linear-gradient();\n  background: linear-gradient();\n}\n.shortcode-single-image-wrap.shortcode-single-image-f65cf740998941d33cfce5f650998e7e .rollover-icon {\n  font-size: 32px;\n  color: #ffffff;\n  min-width: 44px;\n  min-height: 44px;\n  line-height: 44px;\n  border-radius: 100px;\n  border-style: solid;\n  border-width: 0px;\n}\n.dt-icon-bg-on.shortcode-single-image-wrap.shortcode-single-image-f65cf740998941d33cfce5f650998e7e .rollover-icon {\n  background: rgba(255,255,255,0.3);\n  box-shadow: none;\n}\n\";s:32:\"bfc1317982d8b44f70a9c427096005dc\";s:761:\".shortcode-single-image-wrap.shortcode-single-image-bfc1317982d8b44f70a9c427096005dc.enable-bg-rollover .rollover i,\n.shortcode-single-image-wrap.shortcode-single-image-bfc1317982d8b44f70a9c427096005dc.enable-bg-rollover .rollover-video i {\n  background: -webkit-linear-gradient();\n  background: linear-gradient();\n}\n.shortcode-single-image-wrap.shortcode-single-image-bfc1317982d8b44f70a9c427096005dc .rollover-icon {\n  font-size: 32px;\n  color: #ffffff;\n  min-width: 44px;\n  min-height: 44px;\n  line-height: 44px;\n  border-radius: 100px;\n  border-style: solid;\n  border-width: 0px;\n}\n.dt-icon-bg-on.shortcode-single-image-wrap.shortcode-single-image-bfc1317982d8b44f70a9c427096005dc .rollover-icon {\n  background: rgba(255,255,255,0.3);\n  box-shadow: none;\n}\n\";s:32:\"f1bd983299ba9c6dadcc13a0b9f3e526\";s:761:\".shortcode-single-image-wrap.shortcode-single-image-f1bd983299ba9c6dadcc13a0b9f3e526.enable-bg-rollover .rollover i,\n.shortcode-single-image-wrap.shortcode-single-image-f1bd983299ba9c6dadcc13a0b9f3e526.enable-bg-rollover .rollover-video i {\n  background: -webkit-linear-gradient();\n  background: linear-gradient();\n}\n.shortcode-single-image-wrap.shortcode-single-image-f1bd983299ba9c6dadcc13a0b9f3e526 .rollover-icon {\n  font-size: 32px;\n  color: #ffffff;\n  min-width: 44px;\n  min-height: 44px;\n  line-height: 44px;\n  border-radius: 100px;\n  border-style: solid;\n  border-width: 0px;\n}\n.dt-icon-bg-on.shortcode-single-image-wrap.shortcode-single-image-f1bd983299ba9c6dadcc13a0b9f3e526 .rollover-icon {\n  background: rgba(255,255,255,0.3);\n  box-shadow: none;\n}\n\";s:32:\"52e58844a1744587176ffea5ec98ab18\";s:761:\".shortcode-single-image-wrap.shortcode-single-image-52e58844a1744587176ffea5ec98ab18.enable-bg-rollover .rollover i,\n.shortcode-single-image-wrap.shortcode-single-image-52e58844a1744587176ffea5ec98ab18.enable-bg-rollover .rollover-video i {\n  background: -webkit-linear-gradient();\n  background: linear-gradient();\n}\n.shortcode-single-image-wrap.shortcode-single-image-52e58844a1744587176ffea5ec98ab18 .rollover-icon {\n  font-size: 32px;\n  color: #ffffff;\n  min-width: 44px;\n  min-height: 44px;\n  line-height: 44px;\n  border-radius: 100px;\n  border-style: solid;\n  border-width: 0px;\n}\n.dt-icon-bg-on.shortcode-single-image-wrap.shortcode-single-image-52e58844a1744587176ffea5ec98ab18 .rollover-icon {\n  background: rgba(255,255,255,0.3);\n  box-shadow: none;\n}\n\";s:32:\"769bbaf54fec6ab8960fade78c79fb3b\";s:761:\".shortcode-single-image-wrap.shortcode-single-image-769bbaf54fec6ab8960fade78c79fb3b.enable-bg-rollover .rollover i,\n.shortcode-single-image-wrap.shortcode-single-image-769bbaf54fec6ab8960fade78c79fb3b.enable-bg-rollover .rollover-video i {\n  background: -webkit-linear-gradient();\n  background: linear-gradient();\n}\n.shortcode-single-image-wrap.shortcode-single-image-769bbaf54fec6ab8960fade78c79fb3b .rollover-icon {\n  font-size: 32px;\n  color: #ffffff;\n  min-width: 44px;\n  min-height: 44px;\n  line-height: 44px;\n  border-radius: 100px;\n  border-style: solid;\n  border-width: 0px;\n}\n.dt-icon-bg-on.shortcode-single-image-wrap.shortcode-single-image-769bbaf54fec6ab8960fade78c79fb3b .rollover-icon {\n  background: rgba(255,255,255,0.3);\n  box-shadow: none;\n}\n\";s:32:\"38f09194f8b0e122ca49d738d65aa615\";s:761:\".shortcode-single-image-wrap.shortcode-single-image-38f09194f8b0e122ca49d738d65aa615.enable-bg-rollover .rollover i,\n.shortcode-single-image-wrap.shortcode-single-image-38f09194f8b0e122ca49d738d65aa615.enable-bg-rollover .rollover-video i {\n  background: -webkit-linear-gradient();\n  background: linear-gradient();\n}\n.shortcode-single-image-wrap.shortcode-single-image-38f09194f8b0e122ca49d738d65aa615 .rollover-icon {\n  font-size: 32px;\n  color: #ffffff;\n  min-width: 44px;\n  min-height: 44px;\n  line-height: 44px;\n  border-radius: 100px;\n  border-style: solid;\n  border-width: 0px;\n}\n.dt-icon-bg-on.shortcode-single-image-wrap.shortcode-single-image-38f09194f8b0e122ca49d738d65aa615 .rollover-icon {\n  background: rgba(255,255,255,0.3);\n  box-shadow: none;\n}\n\";s:32:\"762f807a7ed1035047b38362769b87d7\";s:761:\".shortcode-single-image-wrap.shortcode-single-image-762f807a7ed1035047b38362769b87d7.enable-bg-rollover .rollover i,\n.shortcode-single-image-wrap.shortcode-single-image-762f807a7ed1035047b38362769b87d7.enable-bg-rollover .rollover-video i {\n  background: -webkit-linear-gradient();\n  background: linear-gradient();\n}\n.shortcode-single-image-wrap.shortcode-single-image-762f807a7ed1035047b38362769b87d7 .rollover-icon {\n  font-size: 32px;\n  color: #ffffff;\n  min-width: 44px;\n  min-height: 44px;\n  line-height: 44px;\n  border-radius: 100px;\n  border-style: solid;\n  border-width: 0px;\n}\n.dt-icon-bg-on.shortcode-single-image-wrap.shortcode-single-image-762f807a7ed1035047b38362769b87d7 .rollover-icon {\n  background: rgba(255,255,255,0.3);\n  box-shadow: none;\n}\n\";s:32:\"bf9b565208f44d94db5bcdfb2070b2a0\";s:761:\".shortcode-single-image-wrap.shortcode-single-image-bf9b565208f44d94db5bcdfb2070b2a0.enable-bg-rollover .rollover i,\n.shortcode-single-image-wrap.shortcode-single-image-bf9b565208f44d94db5bcdfb2070b2a0.enable-bg-rollover .rollover-video i {\n  background: -webkit-linear-gradient();\n  background: linear-gradient();\n}\n.shortcode-single-image-wrap.shortcode-single-image-bf9b565208f44d94db5bcdfb2070b2a0 .rollover-icon {\n  font-size: 32px;\n  color: #ffffff;\n  min-width: 44px;\n  min-height: 44px;\n  line-height: 44px;\n  border-radius: 100px;\n  border-style: solid;\n  border-width: 0px;\n}\n.dt-icon-bg-on.shortcode-single-image-wrap.shortcode-single-image-bf9b565208f44d94db5bcdfb2070b2a0 .rollover-icon {\n  background: rgba(255,255,255,0.3);\n  box-shadow: none;\n}\n\";s:32:\"3126e1490ef7ed42c8533575a6b195c1\";s:761:\".shortcode-single-image-wrap.shortcode-single-image-3126e1490ef7ed42c8533575a6b195c1.enable-bg-rollover .rollover i,\n.shortcode-single-image-wrap.shortcode-single-image-3126e1490ef7ed42c8533575a6b195c1.enable-bg-rollover .rollover-video i {\n  background: -webkit-linear-gradient();\n  background: linear-gradient();\n}\n.shortcode-single-image-wrap.shortcode-single-image-3126e1490ef7ed42c8533575a6b195c1 .rollover-icon {\n  font-size: 32px;\n  color: #ffffff;\n  min-width: 44px;\n  min-height: 44px;\n  line-height: 44px;\n  border-radius: 100px;\n  border-style: solid;\n  border-width: 0px;\n}\n.dt-icon-bg-on.shortcode-single-image-wrap.shortcode-single-image-3126e1490ef7ed42c8533575a6b195c1 .rollover-icon {\n  background: rgba(255,255,255,0.3);\n  box-shadow: none;\n}\n\";s:32:\"086f5e460d51fda73f7bb834f8db93c6\";s:761:\".shortcode-single-image-wrap.shortcode-single-image-086f5e460d51fda73f7bb834f8db93c6.enable-bg-rollover .rollover i,\n.shortcode-single-image-wrap.shortcode-single-image-086f5e460d51fda73f7bb834f8db93c6.enable-bg-rollover .rollover-video i {\n  background: -webkit-linear-gradient();\n  background: linear-gradient();\n}\n.shortcode-single-image-wrap.shortcode-single-image-086f5e460d51fda73f7bb834f8db93c6 .rollover-icon {\n  font-size: 32px;\n  color: #ffffff;\n  min-width: 44px;\n  min-height: 44px;\n  line-height: 44px;\n  border-radius: 100px;\n  border-style: solid;\n  border-width: 0px;\n}\n.dt-icon-bg-on.shortcode-single-image-wrap.shortcode-single-image-086f5e460d51fda73f7bb834f8db93c6 .rollover-icon {\n  background: rgba(255,255,255,0.3);\n  box-shadow: none;\n}\n\";}'),(28708,3885,'_wpb_shortcodes_custom_css','.vc_custom_1692366072362{margin-top: 35px !important;padding-top: 65px !important;padding-bottom: 100px !important;}.vc_custom_1684836308288{margin-top: 15px !important;}.vc_custom_1693627699480{margin-top: 15px !important;}.vc_custom_1693625624233{margin-top: 15px !important;}.vc_custom_1695294608306{margin-top: 15px !important;}.vc_custom_1692359205466{margin-top: 35px !important;}.vc_custom_1692359216075{margin-top: 35px !important;}.vc_custom_1692359216075{margin-top: 35px !important;}.vc_custom_1692359231594{margin-top: 35px !important;}.vc_custom_1692359239274{margin-top: 35px !important;}.vc_custom_1692359239274{margin-top: 35px !important;}.vc_custom_1692359246626{margin-top: 35px !important;}.vc_custom_1695527931440{margin-top: 35px !important;}.vc_custom_1695527931440{margin-top: 35px !important;}.vc_custom_1692359258634{margin-top: 35px !important;}.vc_custom_1691995519863{background-color: #f4ab20 !important;border: 1px solid #f4ab20 !important;border-radius: 35px !important;}.vc_custom_1691995661095{background-color: #722f8b !important;border: 1px solid #722f8b !important;border-radius: 35px !important;}.vc_custom_1691995661095{background-color: #722f8b !important;border: 1px solid #722f8b !important;border-radius: 35px !important;}.vc_custom_1691995519863{background-color: #f4ab20 !important;border: 1px solid #f4ab20 !important;border-radius: 35px !important;}.vc_custom_1695528026328{border-radius: 35px !important;}.vc_custom_1691995519863{background-color: #f4ab20 !important;border: 1px solid #f4ab20 !important;border-radius: 35px !important;}.vc_custom_1694697209111{padding-right: 10px !important;padding-left: 10px !important;}.vc_custom_1692278922309{border-top-width: 1px !important;border-right-width: 1px !important;border-bottom-width: 1px !important;border-left-width: 1px !important;border-left-color: #059444 !important;border-left-style: solid !important;border-right-color: #059444 !important;border-right-style: solid !important;border-top-color: #059444 !important;border-top-style: solid !important;border-bottom-color: #059444 !important;border-bottom-style: solid !important;border-radius: 1px !important;}.vc_custom_1692278929158{border-top-width: 1px !important;border-right-width: 1px !important;border-bottom-width: 1px !important;border-left-width: 1px !important;border-left-color: #059444 !important;border-left-style: solid !important;border-right-color: #059444 !important;border-right-style: solid !important;border-top-color: #059444 !important;border-top-style: solid !important;border-bottom-color: #059444 !important;border-bottom-style: solid !important;border-radius: 1px !important;}.vc_custom_1692278936750{border-top-width: 1px !important;border-right-width: 1px !important;border-bottom-width: 1px !important;border-left-width: 1px !important;border-left-color: #059444 !important;border-left-style: solid !important;border-right-color: #059444 !important;border-right-style: solid !important;border-top-color: #059444 !important;border-top-style: solid !important;border-bottom-color: #059444 !important;border-bottom-style: solid !important;border-radius: 1px !important;}.vc_custom_1692278922309{border-top-width: 1px !important;border-right-width: 1px !important;border-bottom-width: 1px !important;border-left-width: 1px !important;border-left-color: #059444 !important;border-left-style: solid !important;border-right-color: #059444 !important;border-right-style: solid !important;border-top-color: #059444 !important;border-top-style: solid !important;border-bottom-color: #059444 !important;border-bottom-style: solid !important;border-radius: 1px !important;}.vc_custom_1692278929158{border-top-width: 1px !important;border-right-width: 1px !important;border-bottom-width: 1px !important;border-left-width: 1px !important;border-left-color: #059444 !important;border-left-style: solid !important;border-right-color: #059444 !important;border-right-style: solid !important;border-top-color: #059444 !important;border-top-style: solid !important;border-bottom-color: #059444 !important;border-bottom-style: solid !important;border-radius: 1px !important;}'),(28709,3885,'_wpb_shortcodes_custom_css_updated','1'),(28711,3886,'_wpb_shortcodes_custom_css','.vc_custom_1692366072362{margin-top: 35px !important;padding-top: 65px !important;padding-bottom: 100px !important;}.vc_custom_1684836308288{margin-top: 15px !important;}.vc_custom_1693627699480{margin-top: 15px !important;}.vc_custom_1693625624233{margin-top: 15px !important;}.vc_custom_1695294608306{margin-top: 15px !important;}.vc_custom_1692359205466{margin-top: 35px !important;}.vc_custom_1692359216075{margin-top: 35px !important;}.vc_custom_1692359216075{margin-top: 35px !important;}.vc_custom_1692359231594{margin-top: 35px !important;}.vc_custom_1692359239274{margin-top: 35px !important;}.vc_custom_1692359239274{margin-top: 35px !important;}.vc_custom_1692359246626{margin-top: 35px !important;}.vc_custom_1695527931440{margin-top: 35px !important;}.vc_custom_1695527931440{margin-top: 35px !important;}.vc_custom_1692359258634{margin-top: 35px !important;}.vc_custom_1691995519863{background-color: #f4ab20 !important;border: 1px solid #f4ab20 !important;border-radius: 35px !important;}.vc_custom_1691995661095{background-color: #722f8b !important;border: 1px solid #722f8b !important;border-radius: 35px !important;}.vc_custom_1691995661095{background-color: #722f8b !important;border: 1px solid #722f8b !important;border-radius: 35px !important;}.vc_custom_1691995519863{background-color: #f4ab20 !important;border: 1px solid #f4ab20 !important;border-radius: 35px !important;}.vc_custom_1695528026328{border-radius: 35px !important;}.vc_custom_1691995519863{background-color: #f4ab20 !important;border: 1px solid #f4ab20 !important;border-radius: 35px !important;}.vc_custom_1694697209111{padding-right: 10px !important;padding-left: 10px !important;}.vc_custom_1692278922309{border-top-width: 1px !important;border-right-width: 1px !important;border-bottom-width: 1px !important;border-left-width: 1px !important;border-left-color: #059444 !important;border-left-style: solid !important;border-right-color: #059444 !important;border-right-style: solid !important;border-top-color: #059444 !important;border-top-style: solid !important;border-bottom-color: #059444 !important;border-bottom-style: solid !important;border-radius: 1px !important;}.vc_custom_1692278929158{border-top-width: 1px !important;border-right-width: 1px !important;border-bottom-width: 1px !important;border-left-width: 1px !important;border-left-color: #059444 !important;border-left-style: solid !important;border-right-color: #059444 !important;border-right-style: solid !important;border-top-color: #059444 !important;border-top-style: solid !important;border-bottom-color: #059444 !important;border-bottom-style: solid !important;border-radius: 1px !important;}.vc_custom_1692278936750{border-top-width: 1px !important;border-right-width: 1px !important;border-bottom-width: 1px !important;border-left-width: 1px !important;border-left-color: #059444 !important;border-left-style: solid !important;border-right-color: #059444 !important;border-right-style: solid !important;border-top-color: #059444 !important;border-top-style: solid !important;border-bottom-color: #059444 !important;border-bottom-style: solid !important;border-radius: 1px !important;}.vc_custom_1692278922309{border-top-width: 1px !important;border-right-width: 1px !important;border-bottom-width: 1px !important;border-left-width: 1px !important;border-left-color: #059444 !important;border-left-style: solid !important;border-right-color: #059444 !important;border-right-style: solid !important;border-top-color: #059444 !important;border-top-style: solid !important;border-bottom-color: #059444 !important;border-bottom-style: solid !important;border-radius: 1px !important;}.vc_custom_1692278929158{border-top-width: 1px !important;border-right-width: 1px !important;border-bottom-width: 1px !important;border-left-width: 1px !important;border-left-color: #059444 !important;border-left-style: solid !important;border-right-color: #059444 !important;border-right-style: solid !important;border-top-color: #059444 !important;border-top-style: solid !important;border-bottom-color: #059444 !important;border-bottom-style: solid !important;border-radius: 1px !important;}'),(28712,3886,'_wpb_shortcodes_custom_css_updated','1'),(28714,3887,'_wpb_shortcodes_custom_css','.vc_custom_1692366072362{margin-top: 35px !important;padding-top: 65px !important;padding-bottom: 100px !important;}.vc_custom_1684836308288{margin-top: 15px !important;}.vc_custom_1693627699480{margin-top: 15px !important;}.vc_custom_1693625624233{margin-top: 15px !important;}.vc_custom_1695294608306{margin-top: 15px !important;}.vc_custom_1692359205466{margin-top: 35px !important;}.vc_custom_1692359216075{margin-top: 35px !important;}.vc_custom_1692359216075{margin-top: 35px !important;}.vc_custom_1692359231594{margin-top: 35px !important;}.vc_custom_1692359239274{margin-top: 35px !important;}.vc_custom_1692359239274{margin-top: 35px !important;}.vc_custom_1692359246626{margin-top: 35px !important;}.vc_custom_1695527931440{margin-top: 35px !important;}.vc_custom_1695527931440{margin-top: 35px !important;}.vc_custom_1692359258634{margin-top: 35px !important;}.vc_custom_1691995519863{background-color: #f4ab20 !important;border: 1px solid #f4ab20 !important;border-radius: 35px !important;}.vc_custom_1691995661095{background-color: #722f8b !important;border: 1px solid #722f8b !important;border-radius: 35px !important;}.vc_custom_1691995661095{background-color: #722f8b !important;border: 1px solid #722f8b !important;border-radius: 35px !important;}.vc_custom_1691995519863{background-color: #f4ab20 !important;border: 1px solid #f4ab20 !important;border-radius: 35px !important;}.vc_custom_1695528026328{border-radius: 35px !important;}.vc_custom_1691995519863{background-color: #f4ab20 !important;border: 1px solid #f4ab20 !important;border-radius: 35px !important;}.vc_custom_1694697209111{padding-right: 10px !important;padding-left: 10px !important;}.vc_custom_1692278922309{border-top-width: 1px !important;border-right-width: 1px !important;border-bottom-width: 1px !important;border-left-width: 1px !important;border-left-color: #059444 !important;border-left-style: solid !important;border-right-color: #059444 !important;border-right-style: solid !important;border-top-color: #059444 !important;border-top-style: solid !important;border-bottom-color: #059444 !important;border-bottom-style: solid !important;border-radius: 1px !important;}.vc_custom_1692278929158{border-top-width: 1px !important;border-right-width: 1px !important;border-bottom-width: 1px !important;border-left-width: 1px !important;border-left-color: #059444 !important;border-left-style: solid !important;border-right-color: #059444 !important;border-right-style: solid !important;border-top-color: #059444 !important;border-top-style: solid !important;border-bottom-color: #059444 !important;border-bottom-style: solid !important;border-radius: 1px !important;}.vc_custom_1692278936750{border-top-width: 1px !important;border-right-width: 1px !important;border-bottom-width: 1px !important;border-left-width: 1px !important;border-left-color: #059444 !important;border-left-style: solid !important;border-right-color: #059444 !important;border-right-style: solid !important;border-top-color: #059444 !important;border-top-style: solid !important;border-bottom-color: #059444 !important;border-bottom-style: solid !important;border-radius: 1px !important;}.vc_custom_1692278922309{border-top-width: 1px !important;border-right-width: 1px !important;border-bottom-width: 1px !important;border-left-width: 1px !important;border-left-color: #059444 !important;border-left-style: solid !important;border-right-color: #059444 !important;border-right-style: solid !important;border-top-color: #059444 !important;border-top-style: solid !important;border-bottom-color: #059444 !important;border-bottom-style: solid !important;border-radius: 1px !important;}.vc_custom_1692278929158{border-top-width: 1px !important;border-right-width: 1px !important;border-bottom-width: 1px !important;border-left-width: 1px !important;border-left-color: #059444 !important;border-left-style: solid !important;border-right-color: #059444 !important;border-right-style: solid !important;border-top-color: #059444 !important;border-top-style: solid !important;border-bottom-color: #059444 !important;border-bottom-style: solid !important;border-radius: 1px !important;}'),(28715,3887,'_wpb_shortcodes_custom_css_updated','1'),(28718,3888,'_wpb_shortcodes_custom_css_updated','1'),(28791,3921,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:625;s:6:\"height\";i:810;s:4:\"file\";s:25:\"2023/09/Asset-69@300x.png\";s:8:\"filesize\";i:13527;s:5:\"sizes\";a:5:{s:6:\"medium\";a:5:{s:4:\"file\";s:25:\"Asset-69@300x-231x300.png\";s:5:\"width\";i:231;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:23631;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:25:\"Asset-69@300x-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:10163;}s:21:\"woocommerce_thumbnail\";a:6:{s:4:\"file\";s:25:\"Asset-69@300x-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:19872;s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:5:{s:4:\"file\";s:25:\"Asset-69@300x-600x778.png\";s:5:\"width\";i:600;s:6:\"height\";i:778;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:49935;}s:29:\"woocommerce_gallery_thumbnail\";a:5:{s:4:\"file\";s:25:\"Asset-69@300x-200x200.png\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:13773;}}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:{}}}'),(28792,3922,'_wp_attached_file','2023/09/Asset-1@300x-1.png'),(28793,3922,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1251;s:6:\"height\";i:311;s:4:\"file\";s:26:\"2023/09/Asset-1@300x-1.png\";s:8:\"filesize\";i:7589;s:5:\"sizes\";a:7:{s:6:\"medium\";a:5:{s:4:\"file\";s:25:\"Asset-1@300x-1-300x75.png\";s:5:\"width\";i:300;s:6:\"height\";i:75;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:10806;}s:5:\"large\";a:5:{s:4:\"file\";s:27:\"Asset-1@300x-1-1024x255.png\";s:5:\"width\";i:1024;s:6:\"height\";i:255;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:26185;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:26:\"Asset-1@300x-1-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:4305;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:26:\"Asset-1@300x-1-768x191.png\";s:5:\"width\";i:768;s:6:\"height\";i:191;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:22478;}s:21:\"woocommerce_thumbnail\";a:6:{s:4:\"file\";s:26:\"Asset-1@300x-1-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:6269;s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:5:{s:4:\"file\";s:26:\"Asset-1@300x-1-600x149.png\";s:5:\"width\";i:600;s:6:\"height\";i:149;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:19131;}s:29:\"woocommerce_gallery_thumbnail\";a:5:{s:4:\"file\";s:26:\"Asset-1@300x-1-200x200.png\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:5495;}}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:{}}}'),(28794,3923,'_wp_attached_file','2023/09/Asset-2@300x-1.png'),(28795,3923,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1251;s:6:\"height\";i:313;s:4:\"file\";s:26:\"2023/09/Asset-2@300x-1.png\";s:8:\"filesize\";i:8698;s:5:\"sizes\";a:7:{s:6:\"medium\";a:5:{s:4:\"file\";s:25:\"Asset-2@300x-1-300x75.png\";s:5:\"width\";i:300;s:6:\"height\";i:75;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:11036;}s:5:\"large\";a:5:{s:4:\"file\";s:27:\"Asset-2@300x-1-1024x256.png\";s:5:\"width\";i:1024;s:6:\"height\";i:256;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:28876;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:26:\"Asset-2@300x-1-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:4331;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:26:\"Asset-2@300x-1-768x192.png\";s:5:\"width\";i:768;s:6:\"height\";i:192;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:24475;}s:21:\"woocommerce_thumbnail\";a:6:{s:4:\"file\";s:26:\"Asset-2@300x-1-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:6202;s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:5:{s:4:\"file\";s:26:\"Asset-2@300x-1-600x150.png\";s:5:\"width\";i:600;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:20194;}s:29:\"woocommerce_gallery_thumbnail\";a:5:{s:4:\"file\";s:26:\"Asset-2@300x-1-200x200.png\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:5428;}}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:{}}}'),(28720,3889,'_wpb_shortcodes_custom_css','.vc_custom_1692366072362{margin-top: 35px !important;padding-top: 65px !important;padding-bottom: 100px !important;}.vc_custom_1684836308288{margin-top: 15px !important;}.vc_custom_1695531973651{margin-top: 15px !important;padding-right: 5% !important;padding-left: 5% !important;}.vc_custom_1693625624233{margin-top: 15px !important;}.vc_custom_1695294608306{margin-top: 15px !important;}.vc_custom_1692359205466{margin-top: 35px !important;}.vc_custom_1692359216075{margin-top: 35px !important;}.vc_custom_1692359216075{margin-top: 35px !important;}.vc_custom_1692359231594{margin-top: 35px !important;}.vc_custom_1692359239274{margin-top: 35px !important;}.vc_custom_1692359239274{margin-top: 35px !important;}.vc_custom_1692359246626{margin-top: 35px !important;}.vc_custom_1695527931440{margin-top: 35px !important;}.vc_custom_1695527931440{margin-top: 35px !important;}.vc_custom_1692359258634{margin-top: 35px !important;}.vc_custom_1691995519863{background-color: #f4ab20 !important;border: 1px solid #f4ab20 !important;border-radius: 35px !important;}.vc_custom_1691995661095{background-color: #722f8b !important;border: 1px solid #722f8b !important;border-radius: 35px !important;}.vc_custom_1691995661095{background-color: #722f8b !important;border: 1px solid #722f8b !important;border-radius: 35px !important;}.vc_custom_1691995519863{background-color: #f4ab20 !important;border: 1px solid #f4ab20 !important;border-radius: 35px !important;}.vc_custom_1695528026328{border-radius: 35px !important;}.vc_custom_1691995519863{background-color: #f4ab20 !important;border: 1px solid #f4ab20 !important;border-radius: 35px !important;}.vc_custom_1694697209111{padding-right: 10px !important;padding-left: 10px !important;}.vc_custom_1692278922309{border-top-width: 1px !important;border-right-width: 1px !important;border-bottom-width: 1px !important;border-left-width: 1px !important;border-left-color: #059444 !important;border-left-style: solid !important;border-right-color: #059444 !important;border-right-style: solid !important;border-top-color: #059444 !important;border-top-style: solid !important;border-bottom-color: #059444 !important;border-bottom-style: solid !important;border-radius: 1px !important;}.vc_custom_1692278929158{border-top-width: 1px !important;border-right-width: 1px !important;border-bottom-width: 1px !important;border-left-width: 1px !important;border-left-color: #059444 !important;border-left-style: solid !important;border-right-color: #059444 !important;border-right-style: solid !important;border-top-color: #059444 !important;border-top-style: solid !important;border-bottom-color: #059444 !important;border-bottom-style: solid !important;border-radius: 1px !important;}.vc_custom_1692278936750{border-top-width: 1px !important;border-right-width: 1px !important;border-bottom-width: 1px !important;border-left-width: 1px !important;border-left-color: #059444 !important;border-left-style: solid !important;border-right-color: #059444 !important;border-right-style: solid !important;border-top-color: #059444 !important;border-top-style: solid !important;border-bottom-color: #059444 !important;border-bottom-style: solid !important;border-radius: 1px !important;}.vc_custom_1692278922309{border-top-width: 1px !important;border-right-width: 1px !important;border-bottom-width: 1px !important;border-left-width: 1px !important;border-left-color: #059444 !important;border-left-style: solid !important;border-right-color: #059444 !important;border-right-style: solid !important;border-top-color: #059444 !important;border-top-style: solid !important;border-bottom-color: #059444 !important;border-bottom-style: solid !important;border-radius: 1px !important;}.vc_custom_1692278929158{border-top-width: 1px !important;border-right-width: 1px !important;border-bottom-width: 1px !important;border-left-width: 1px !important;border-left-color: #059444 !important;border-left-style: solid !important;border-right-color: #059444 !important;border-right-style: solid !important;border-top-color: #059444 !important;border-top-style: solid !important;border-bottom-color: #059444 !important;border-bottom-style: solid !important;border-radius: 1px !important;}'),(28721,3889,'_wpb_shortcodes_custom_css_updated','1'),(28723,3890,'_wpb_post_custom_css','.whitetxt{\r\n    color:white!important;\r\n}\r\na {\r\n    color: white;\r\n}'),(28724,3890,'_wpb_shortcodes_custom_css','.vc_custom_1689577528817{padding-bottom: 50px !important;}.vc_custom_1693451731079{padding-top: 50px !important;padding-bottom: 50px !important;}.vc_custom_1689578794814{padding-top: 50px !important;padding-bottom: 50px !important;}.vc_custom_1689578794814{padding-top: 50px !important;padding-bottom: 50px !important;}.vc_custom_1689577454678{margin-bottom: 50px !important;}.vc_custom_1692407941633{border-bottom-width: 1px !important;border-bottom-color: #079547 !important;border-bottom-style: solid !important;border-radius: 1px !important;}.vc_custom_1692407941633{border-bottom-width: 1px !important;border-bottom-color: #079547 !important;border-bottom-style: solid !important;border-radius: 1px !important;}.vc_custom_1692407949383{border-bottom-width: 1px !important;border-bottom-color: #079547 !important;border-bottom-style: solid !important;border-radius: 1px !important;}.vc_custom_1692407957943{border-bottom-width: 1px !important;border-bottom-color: #079547 !important;border-bottom-style: solid !important;border-radius: 1px !important;}.vc_custom_1692407957943{border-bottom-width: 1px !important;border-bottom-color: #079547 !important;border-bottom-style: solid !important;border-radius: 1px !important;}.vc_custom_1692407970279{border-bottom-width: 1px !important;border-bottom-color: #079547 !important;border-bottom-style: solid !important;border-radius: 1px !important;}.vc_custom_1691846530645{border-right-width: 1px !important;border-left-width: 1px !important;border-left-color: #000000 !important;border-left-style: solid !important;border-right-color: #000000 !important;border-right-style: solid !important;border-radius: 1px !important;}.vc_custom_1691846545469{border-right-width: 1px !important;border-left-width: 1px !important;border-left-color: #000000 !important;border-left-style: solid !important;border-right-color: #000000 !important;border-right-style: solid !important;border-radius: 1px !important;}.vc_custom_1691846563021{border-right-width: 1px !important;border-right-color: #000000 !important;border-right-style: solid !important;border-radius: 1px !important;}.vc_custom_1691846569845{border-right-width: 1px !important;border-right-color: #000000 !important;border-right-style: solid !important;border-radius: 1px !important;}.vc_custom_1691846576949{border-right-width: 1px !important;border-right-color: #000000 !important;border-right-style: solid !important;border-radius: 1px !important;}.vc_custom_1689578812611{margin-top: 50px !important;}.vc_custom_1693569503225{background-image: url(https://farmchemie.yasithawd.com/wp-content/uploads/2023/09/022International-Markets-Sri-Lankan-Market.png?id=3403) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}.vc_custom_1693540250450{background-color: #8d499b !important;}.vc_custom_1695529397280{background-color: #039447 !important;}.vc_custom_1695529390186{background-image: url(https://farmchemie.yasithawd.com/wp-content/uploads/2023/09/011International-Markets-Sri-Lankan-Market.png?id=3404) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}.vc_custom_1695529365330{background-image: url(https://farmchemie.yasithawd.com/wp-content/uploads/2023/09/011International-Markets-Sri-Lankan-Market.png?id=3404) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}.vc_custom_1695529378241{background-color: #039447 !important;}'),(28725,3890,'_wpb_shortcodes_custom_css_updated','1'),(28726,3891,'_wp_attached_file','2023/09/ULTRAFORT-B_600px-x-600px.png'),(28727,3891,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:600;s:6:\"height\";i:600;s:4:\"file\";s:37:\"2023/09/ULTRAFORT-B_600px-x-600px.png\";s:8:\"filesize\";i:245692;s:5:\"sizes\";a:4:{s:6:\"medium\";a:5:{s:4:\"file\";s:37:\"ULTRAFORT-B_600px-x-600px-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:58376;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:37:\"ULTRAFORT-B_600px-x-600px-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:17581;}s:21:\"woocommerce_thumbnail\";a:6:{s:4:\"file\";s:37:\"ULTRAFORT-B_600px-x-600px-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:58376;s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:5:{s:4:\"file\";s:37:\"ULTRAFORT-B_600px-x-600px-200x200.png\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:28845;}}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:{}}}'),(28728,3892,'_wp_attached_file','2023/09/ULTRAFORT-B_300px.png'),(28729,3892,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:300;s:6:\"height\";i:150;s:4:\"file\";s:29:\"2023/09/ULTRAFORT-B_300px.png\";s:8:\"filesize\";i:4536;s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:29:\"ULTRAFORT-B_300px-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:1915;}s:29:\"woocommerce_gallery_thumbnail\";a:5:{s:4:\"file\";s:29:\"ULTRAFORT-B_300px-200x150.png\";s:5:\"width\";i:200;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:2227;}}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:{}}}'),(28730,3626,'_thumbnail_id','3891'),(28731,3893,'_wp_attached_file','2023/09/Leverm-30_300pxL.png'),(28732,3893,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:300;s:6:\"height\";i:58;s:4:\"file\";s:28:\"2023/09/Leverm-30_300pxL.png\";s:8:\"filesize\";i:4191;s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:27:\"Leverm-30_300pxL-150x58.png\";s:5:\"width\";i:150;s:6:\"height\";i:58;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:1629;}s:29:\"woocommerce_gallery_thumbnail\";a:5:{s:4:\"file\";s:27:\"Leverm-30_300pxL-200x58.png\";s:5:\"width\";i:200;s:6:\"height\";i:58;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:2878;}}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:{}}}'),(28733,3894,'_wp_attached_file','2023/09/Leverm-30_600px-x-600px-2.png'),(28734,3894,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:600;s:6:\"height\";i:600;s:4:\"file\";s:37:\"2023/09/Leverm-30_600px-x-600px-2.png\";s:8:\"filesize\";i:134200;s:5:\"sizes\";a:4:{s:6:\"medium\";a:5:{s:4:\"file\";s:37:\"Leverm-30_600px-x-600px-2-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:36187;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:37:\"Leverm-30_600px-x-600px-2-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:11771;}s:21:\"woocommerce_thumbnail\";a:6:{s:4:\"file\";s:37:\"Leverm-30_600px-x-600px-2-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:36187;s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:5:{s:4:\"file\";s:37:\"Leverm-30_600px-x-600px-2-200x200.png\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:18799;}}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:{}}}'),(28736,3895,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:300;s:6:\"height\";i:142;s:4:\"file\";s:36:\"2023/09/CEVAC-VITABORN-L_300px-2.png\";s:8:\"filesize\";i:5742;s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:36:\"CEVAC-VITABORN-L_300px-2-150x142.png\";s:5:\"width\";i:150;s:6:\"height\";i:142;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:2529;}s:29:\"woocommerce_gallery_thumbnail\";a:5:{s:4:\"file\";s:36:\"CEVAC-VITABORN-L_300px-2-200x142.png\";s:5:\"width\";i:200;s:6:\"height\";i:142;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:3355;}}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:{}}}'),(28737,3896,'_wp_attached_file','2023/09/CEVAC-TRANSMUNE_300px-1.png'),(28738,3896,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:300;s:6:\"height\";i:142;s:4:\"file\";s:35:\"2023/09/CEVAC-TRANSMUNE_300px-1.png\";s:8:\"filesize\";i:5648;s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:35:\"CEVAC-TRANSMUNE_300px-1-150x142.png\";s:5:\"width\";i:150;s:6:\"height\";i:142;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:2360;}s:29:\"woocommerce_gallery_thumbnail\";a:5:{s:4:\"file\";s:35:\"CEVAC-TRANSMUNE_300px-1-200x142.png\";s:5:\"width\";i:200;s:6:\"height\";i:142;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:3189;}}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:{}}}'),(28740,3897,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:300;s:6:\"height\";i:142;s:4:\"file\";s:40:\"2023/09/VECTROMUNE-FP-–-MG_300px-1.png\";s:8:\"filesize\";i:5602;s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:40:\"VECTROMUNE-FP-–-MG_300px-1-150x142.png\";s:5:\"width\";i:150;s:6:\"height\";i:142;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:2677;}s:29:\"woocommerce_gallery_thumbnail\";a:5:{s:4:\"file\";s:40:\"VECTROMUNE-FP-–-MG_300px-1-200x142.png\";s:5:\"width\";i:200;s:6:\"height\";i:142;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:3372;}}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:{}}}'),(28741,3898,'_wp_attached_file','2023/09/VECTROMUNE-FP-–-MG_600px-x-600px-1.png'),(28742,3898,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:600;s:6:\"height\";i:600;s:4:\"file\";s:48:\"2023/09/VECTROMUNE-FP-–-MG_600px-x-600px-1.png\";s:8:\"filesize\";i:68129;s:5:\"sizes\";a:4:{s:6:\"medium\";a:5:{s:4:\"file\";s:48:\"VECTROMUNE-FP-–-MG_600px-x-600px-1-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:51480;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:48:\"VECTROMUNE-FP-–-MG_600px-x-600px-1-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:14674;}s:21:\"woocommerce_thumbnail\";a:6:{s:4:\"file\";s:48:\"VECTROMUNE-FP-–-MG_600px-x-600px-1-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:51480;s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:5:{s:4:\"file\";s:48:\"VECTROMUNE-FP-–-MG_600px-x-600px-1-200x200.png\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:24391;}}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:{}}}'),(28743,3899,'_wp_attached_file','2023/09/DOXYNEO-1kg_600px-x-600px.png'),(28744,3899,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:600;s:6:\"height\";i:600;s:4:\"file\";s:37:\"2023/09/DOXYNEO-1kg_600px-x-600px.png\";s:8:\"filesize\";i:160677;s:5:\"sizes\";a:4:{s:6:\"medium\";a:5:{s:4:\"file\";s:37:\"DOXYNEO-1kg_600px-x-600px-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:40064;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:37:\"DOXYNEO-1kg_600px-x-600px-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:13004;}s:21:\"woocommerce_thumbnail\";a:6:{s:4:\"file\";s:37:\"DOXYNEO-1kg_600px-x-600px-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:40064;s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:5:{s:4:\"file\";s:37:\"DOXYNEO-1kg_600px-x-600px-200x200.png\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:20722;}}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:{}}}'),(28745,3900,'_wp_attached_file','2023/09/DOXYNEO_300px.png'),(28746,3900,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:300;s:6:\"height\";i:50;s:4:\"file\";s:25:\"2023/09/DOXYNEO_300px.png\";s:8:\"filesize\";i:5825;s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:24:\"DOXYNEO_300px-150x50.png\";s:5:\"width\";i:150;s:6:\"height\";i:50;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:3324;}s:29:\"woocommerce_gallery_thumbnail\";a:5:{s:4:\"file\";s:24:\"DOXYNEO_300px-200x50.png\";s:5:\"width\";i:200;s:6:\"height\";i:50;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:4294;}}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:{}}}'),(28747,3901,'_wp_attached_file','2023/09/Bactogrow-Premium_300px.png'),(28748,3901,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:300;s:6:\"height\";i:63;s:4:\"file\";s:35:\"2023/09/Bactogrow-Premium_300px.png\";s:8:\"filesize\";i:5715;s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:34:\"Bactogrow-Premium_300px-150x63.png\";s:5:\"width\";i:150;s:6:\"height\";i:63;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:3971;}s:29:\"woocommerce_gallery_thumbnail\";a:5:{s:4:\"file\";s:34:\"Bactogrow-Premium_300px-200x63.png\";s:5:\"width\";i:200;s:6:\"height\";i:63;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:4719;}}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:{}}}'),(28749,3902,'_wp_attached_file','2023/09/BactoGrow-Premium.png'),(28750,3902,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:600;s:6:\"height\";i:600;s:4:\"file\";s:29:\"2023/09/BactoGrow-Premium.png\";s:8:\"filesize\";i:89545;s:5:\"sizes\";a:4:{s:6:\"medium\";a:5:{s:4:\"file\";s:29:\"BactoGrow-Premium-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:38736;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:29:\"BactoGrow-Premium-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:11931;}s:21:\"woocommerce_thumbnail\";a:6:{s:4:\"file\";s:29:\"BactoGrow-Premium-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:38736;s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:5:{s:4:\"file\";s:29:\"BactoGrow-Premium-200x200.png\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:19077;}}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:{}}}'),(28751,3903,'_wp_attached_file','2023/09/BioGain_300px.png'),(28752,3903,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:300;s:6:\"height\";i:85;s:4:\"file\";s:25:\"2023/09/BioGain_300px.png\";s:8:\"filesize\";i:6887;s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:24:\"BioGain_300px-150x85.png\";s:5:\"width\";i:150;s:6:\"height\";i:85;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:5762;}s:29:\"woocommerce_gallery_thumbnail\";a:5:{s:4:\"file\";s:24:\"BioGain_300px-200x85.png\";s:5:\"width\";i:200;s:6:\"height\";i:85;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:6174;}}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:{}}}'),(28753,3904,'_wp_attached_file','2023/09/BioGain_600px-x-600px.png'),(28754,3904,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:600;s:6:\"height\";i:600;s:4:\"file\";s:33:\"2023/09/BioGain_600px-x-600px.png\";s:8:\"filesize\";i:251112;s:5:\"sizes\";a:4:{s:6:\"medium\";a:5:{s:4:\"file\";s:33:\"BioGain_600px-x-600px-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:54554;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:33:\"BioGain_600px-x-600px-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:16297;}s:21:\"woocommerce_thumbnail\";a:6:{s:4:\"file\";s:33:\"BioGain_600px-x-600px-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:54554;s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:5:{s:4:\"file\";s:33:\"BioGain_600px-x-600px-200x200.png\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:26671;}}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:{}}}'),(28755,3905,'_wp_attached_file','2023/09/BioGain-MAX_300px.png'),(28756,3905,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:300;s:6:\"height\";i:85;s:4:\"file\";s:29:\"2023/09/BioGain-MAX_300px.png\";s:8:\"filesize\";i:10351;s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:28:\"BioGain-MAX_300px-150x85.png\";s:5:\"width\";i:150;s:6:\"height\";i:85;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:6225;}s:29:\"woocommerce_gallery_thumbnail\";a:5:{s:4:\"file\";s:28:\"BioGain-MAX_300px-200x85.png\";s:5:\"width\";i:200;s:6:\"height\";i:85;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:8243;}}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:{}}}'),(28757,3906,'_wp_attached_file','2023/09/BioGain-MAX.png'),(28758,3906,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:600;s:6:\"height\";i:600;s:4:\"file\";s:23:\"2023/09/BioGain-MAX.png\";s:8:\"filesize\";i:91535;s:5:\"sizes\";a:4:{s:6:\"medium\";a:5:{s:4:\"file\";s:23:\"BioGain-MAX-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:59987;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:23:\"BioGain-MAX-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:18240;}s:21:\"woocommerce_thumbnail\";a:6:{s:4:\"file\";s:23:\"BioGain-MAX-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:59987;s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:5:{s:4:\"file\";s:23:\"BioGain-MAX-200x200.png\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:29206;}}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:{}}}'),(28759,3907,'_wp_attached_file','2023/09/BROILER-Vitamin-Premix-Bag_600px-x-600px.png'),(28760,3907,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:600;s:6:\"height\";i:600;s:4:\"file\";s:52:\"2023/09/BROILER-Vitamin-Premix-Bag_600px-x-600px.png\";s:8:\"filesize\";i:109828;s:5:\"sizes\";a:4:{s:6:\"medium\";a:5:{s:4:\"file\";s:52:\"BROILER-Vitamin-Premix-Bag_600px-x-600px-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:53508;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:52:\"BROILER-Vitamin-Premix-Bag_600px-x-600px-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:16596;}s:21:\"woocommerce_thumbnail\";a:6:{s:4:\"file\";s:52:\"BROILER-Vitamin-Premix-Bag_600px-x-600px-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:53508;s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:5:{s:4:\"file\";s:52:\"BROILER-Vitamin-Premix-Bag_600px-x-600px-200x200.png\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:26638;}}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:{}}}'),(28761,3908,'_wp_attached_file','2023/09/BROILER-Vitamin-Premix_300px.png'),(28762,3908,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:300;s:6:\"height\";i:85;s:4:\"file\";s:40:\"2023/09/BROILER-Vitamin-Premix_300px.png\";s:8:\"filesize\";i:3693;s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:39:\"BROILER-Vitamin-Premix_300px-150x85.png\";s:5:\"width\";i:150;s:6:\"height\";i:85;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:1935;}s:29:\"woocommerce_gallery_thumbnail\";a:5:{s:4:\"file\";s:39:\"BROILER-Vitamin-Premix_300px-200x85.png\";s:5:\"width\";i:200;s:6:\"height\";i:85;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:2474;}}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:{}}}'),(28763,3603,'_thumbnail_id','3907'),(28764,3909,'_wp_attached_file','2023/09/LAYER-Vitamin-Premix-Bag_600px-x-600px.png'),(28765,3909,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:600;s:6:\"height\";i:600;s:4:\"file\";s:50:\"2023/09/LAYER-Vitamin-Premix-Bag_600px-x-600px.png\";s:8:\"filesize\";i:102949;s:5:\"sizes\";a:4:{s:6:\"medium\";a:5:{s:4:\"file\";s:50:\"LAYER-Vitamin-Premix-Bag_600px-x-600px-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:57557;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:50:\"LAYER-Vitamin-Premix-Bag_600px-x-600px-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:17016;}s:21:\"woocommerce_thumbnail\";a:6:{s:4:\"file\";s:50:\"LAYER-Vitamin-Premix-Bag_600px-x-600px-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:57557;s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:5:{s:4:\"file\";s:50:\"LAYER-Vitamin-Premix-Bag_600px-x-600px-200x200.png\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:27529;}}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:{}}}'),(28766,3910,'_wp_attached_file','2023/09/LAYER-Vitamin-Premix_300px.png'),(28767,3910,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:300;s:6:\"height\";i:85;s:4:\"file\";s:38:\"2023/09/LAYER-Vitamin-Premix_300px.png\";s:8:\"filesize\";i:3662;s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:37:\"LAYER-Vitamin-Premix_300px-150x85.png\";s:5:\"width\";i:150;s:6:\"height\";i:85;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:1777;}s:29:\"woocommerce_gallery_thumbnail\";a:5:{s:4:\"file\";s:37:\"LAYER-Vitamin-Premix_300px-200x85.png\";s:5:\"width\";i:200;s:6:\"height\";i:85;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:2451;}}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:{}}}'),(28768,3604,'_thumbnail_id','3909'),(28769,3911,'_wp_attached_file','2023/09/OXYQUIN®-Dry_300px.png'),(28770,3911,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:300;s:6:\"height\";i:63;s:4:\"file\";s:31:\"2023/09/OXYQUIN®-Dry_300px.png\";s:8:\"filesize\";i:3160;s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:30:\"OXYQUIN®-Dry_300px-150x63.png\";s:5:\"width\";i:150;s:6:\"height\";i:63;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:1630;}s:29:\"woocommerce_gallery_thumbnail\";a:5:{s:4:\"file\";s:30:\"OXYQUIN®-Dry_300px-200x63.png\";s:5:\"width\";i:200;s:6:\"height\";i:63;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:2293;}}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:{}}}'),(28771,3912,'_wp_attached_file','2023/09/OXYQUIN®-Dry.png'),(28772,3912,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:600;s:6:\"height\";i:600;s:4:\"file\";s:25:\"2023/09/OXYQUIN®-Dry.png\";s:8:\"filesize\";i:112485;s:5:\"sizes\";a:4:{s:6:\"medium\";a:5:{s:4:\"file\";s:25:\"OXYQUIN®-Dry-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:80182;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:25:\"OXYQUIN®-Dry-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:22245;}s:21:\"woocommerce_thumbnail\";a:6:{s:4:\"file\";s:25:\"OXYQUIN®-Dry-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:80182;s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:5:{s:4:\"file\";s:25:\"OXYQUIN®-Dry-200x200.png\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:37715;}}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:{}}}'),(28773,3913,'_wp_attached_file','2023/09/SALMOBLAST®-Dry_300px.png'),(28774,3913,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:300;s:6:\"height\";i:63;s:4:\"file\";s:34:\"2023/09/SALMOBLAST®-Dry_300px.png\";s:8:\"filesize\";i:3303;s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:33:\"SALMOBLAST®-Dry_300px-150x63.png\";s:5:\"width\";i:150;s:6:\"height\";i:63;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:1731;}s:29:\"woocommerce_gallery_thumbnail\";a:5:{s:4:\"file\";s:33:\"SALMOBLAST®-Dry_300px-200x63.png\";s:5:\"width\";i:200;s:6:\"height\";i:63;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:2161;}}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:{}}}'),(28775,3914,'_wp_attached_file','2023/09/Twin-Pack-Vitamin-Premix-Bag_600px-x-600px.png'),(28776,3914,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:600;s:6:\"height\";i:600;s:4:\"file\";s:54:\"2023/09/Twin-Pack-Vitamin-Premix-Bag_600px-x-600px.png\";s:8:\"filesize\";i:103032;s:5:\"sizes\";a:4:{s:6:\"medium\";a:5:{s:4:\"file\";s:54:\"Twin-Pack-Vitamin-Premix-Bag_600px-x-600px-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:58755;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:54:\"Twin-Pack-Vitamin-Premix-Bag_600px-x-600px-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:17597;}s:21:\"woocommerce_thumbnail\";a:6:{s:4:\"file\";s:54:\"Twin-Pack-Vitamin-Premix-Bag_600px-x-600px-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:58755;s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:5:{s:4:\"file\";s:54:\"Twin-Pack-Vitamin-Premix-Bag_600px-x-600px-200x200.png\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:28411;}}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:{}}}'),(28777,3915,'_wp_attached_file','2023/09/Vitamin-Premix-Bag_300px.png'),(28778,3915,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:300;s:6:\"height\";i:63;s:4:\"file\";s:36:\"2023/09/Vitamin-Premix-Bag_300px.png\";s:8:\"filesize\";i:2701;s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:35:\"Vitamin-Premix-Bag_300px-150x63.png\";s:5:\"width\";i:150;s:6:\"height\";i:63;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:1144;}s:29:\"woocommerce_gallery_thumbnail\";a:5:{s:4:\"file\";s:35:\"Vitamin-Premix-Bag_300px-200x63.png\";s:5:\"width\";i:200;s:6:\"height\";i:63;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:1435;}}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:{}}}'),(28779,3605,'_thumbnail_id','3914'),(28780,3916,'_wp_attached_file','2023/09/SALMOBLAST®-Dry.png'),(28781,3916,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:600;s:6:\"height\";i:600;s:4:\"file\";s:28:\"2023/09/SALMOBLAST®-Dry.png\";s:8:\"filesize\";i:97973;s:5:\"sizes\";a:4:{s:6:\"medium\";a:5:{s:4:\"file\";s:28:\"SALMOBLAST®-Dry-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:65171;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:28:\"SALMOBLAST®-Dry-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:19647;}s:21:\"woocommerce_thumbnail\";a:6:{s:4:\"file\";s:28:\"SALMOBLAST®-Dry-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:65171;s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:5:{s:4:\"file\";s:28:\"SALMOBLAST®-Dry-200x200.png\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:31567;}}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:{}}}'),(28782,3917,'_wp_attached_file','2023/09/Cinaprim_300px.png'),(28783,3917,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:300;s:6:\"height\";i:50;s:4:\"file\";s:26:\"2023/09/Cinaprim_300px.png\";s:8:\"filesize\";i:3639;s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:25:\"Cinaprim_300px-150x50.png\";s:5:\"width\";i:150;s:6:\"height\";i:50;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:1908;}s:29:\"woocommerce_gallery_thumbnail\";a:5:{s:4:\"file\";s:25:\"Cinaprim_300px-200x50.png\";s:5:\"width\";i:200;s:6:\"height\";i:50;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:2169;}}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:{}}}'),(28784,3918,'_wp_attached_file','2023/09/GARD-L_300px.png'),(28785,3918,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:300;s:6:\"height\";i:47;s:4:\"file\";s:24:\"2023/09/GARD-L_300px.png\";s:8:\"filesize\";i:4357;s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:23:\"GARD-L_300px-150x47.png\";s:5:\"width\";i:150;s:6:\"height\";i:47;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:3387;}s:29:\"woocommerce_gallery_thumbnail\";a:5:{s:4:\"file\";s:23:\"GARD-L_300px-200x47.png\";s:5:\"width\";i:200;s:6:\"height\";i:47;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:4188;}}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:{}}}'),(28786,3919,'_wp_attached_file','2023/09/GARD-L_600px-x-600px.png'),(28787,3919,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:600;s:6:\"height\";i:600;s:4:\"file\";s:32:\"2023/09/GARD-L_600px-x-600px.png\";s:8:\"filesize\";i:43965;s:5:\"sizes\";a:4:{s:6:\"medium\";a:5:{s:4:\"file\";s:32:\"GARD-L_600px-x-600px-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:28007;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:32:\"GARD-L_600px-x-600px-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:8159;}s:21:\"woocommerce_thumbnail\";a:6:{s:4:\"file\";s:32:\"GARD-L_600px-x-600px-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:28007;s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:5:{s:4:\"file\";s:32:\"GARD-L_600px-x-600px-200x200.png\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:13415;}}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:{}}}'),(28790,3921,'_wp_attached_file','2023/09/Asset-69@300x.png'),(28788,3920,'_wpb_shortcodes_custom_css','.vc_custom_1692366072362{margin-top: 35px !important;padding-top: 65px !important;padding-bottom: 100px !important;}.vc_custom_1695545208125{margin-top: 15px !important;margin-bottom: 15px !important;}.vc_custom_1695531973651{margin-top: 15px !important;padding-right: 5% !important;padding-left: 5% !important;}.vc_custom_1693625624233{margin-top: 15px !important;}.vc_custom_1695294608306{margin-top: 15px !important;}.vc_custom_1692359205466{margin-top: 35px !important;}.vc_custom_1692359216075{margin-top: 35px !important;}.vc_custom_1692359216075{margin-top: 35px !important;}.vc_custom_1692359231594{margin-top: 35px !important;}.vc_custom_1692359239274{margin-top: 35px !important;}.vc_custom_1692359239274{margin-top: 35px !important;}.vc_custom_1692359246626{margin-top: 35px !important;}.vc_custom_1695527931440{margin-top: 35px !important;}.vc_custom_1695527931440{margin-top: 35px !important;}.vc_custom_1692359258634{margin-top: 35px !important;}.vc_custom_1691995519863{background-color: #f4ab20 !important;border: 1px solid #f4ab20 !important;border-radius: 35px !important;}.vc_custom_1691995661095{background-color: #722f8b !important;border: 1px solid #722f8b !important;border-radius: 35px !important;}.vc_custom_1691995661095{background-color: #722f8b !important;border: 1px solid #722f8b !important;border-radius: 35px !important;}.vc_custom_1691995519863{background-color: #f4ab20 !important;border: 1px solid #f4ab20 !important;border-radius: 35px !important;}.vc_custom_1695528026328{border-radius: 35px !important;}.vc_custom_1691995519863{background-color: #f4ab20 !important;border: 1px solid #f4ab20 !important;border-radius: 35px !important;}.vc_custom_1694697209111{padding-right: 10px !important;padding-left: 10px !important;}.vc_custom_1692278922309{border-top-width: 1px !important;border-right-width: 1px !important;border-bottom-width: 1px !important;border-left-width: 1px !important;border-left-color: #059444 !important;border-left-style: solid !important;border-right-color: #059444 !important;border-right-style: solid !important;border-top-color: #059444 !important;border-top-style: solid !important;border-bottom-color: #059444 !important;border-bottom-style: solid !important;border-radius: 1px !important;}.vc_custom_1692278929158{border-top-width: 1px !important;border-right-width: 1px !important;border-bottom-width: 1px !important;border-left-width: 1px !important;border-left-color: #059444 !important;border-left-style: solid !important;border-right-color: #059444 !important;border-right-style: solid !important;border-top-color: #059444 !important;border-top-style: solid !important;border-bottom-color: #059444 !important;border-bottom-style: solid !important;border-radius: 1px !important;}.vc_custom_1692278936750{border-top-width: 1px !important;border-right-width: 1px !important;border-bottom-width: 1px !important;border-left-width: 1px !important;border-left-color: #059444 !important;border-left-style: solid !important;border-right-color: #059444 !important;border-right-style: solid !important;border-top-color: #059444 !important;border-top-style: solid !important;border-bottom-color: #059444 !important;border-bottom-style: solid !important;border-radius: 1px !important;}.vc_custom_1692278922309{border-top-width: 1px !important;border-right-width: 1px !important;border-bottom-width: 1px !important;border-left-width: 1px !important;border-left-color: #059444 !important;border-left-style: solid !important;border-right-color: #059444 !important;border-right-style: solid !important;border-top-color: #059444 !important;border-top-style: solid !important;border-bottom-color: #059444 !important;border-bottom-style: solid !important;border-radius: 1px !important;}.vc_custom_1692278929158{border-top-width: 1px !important;border-right-width: 1px !important;border-bottom-width: 1px !important;border-left-width: 1px !important;border-left-color: #059444 !important;border-left-style: solid !important;border-right-color: #059444 !important;border-right-style: solid !important;border-top-color: #059444 !important;border-top-style: solid !important;border-bottom-color: #059444 !important;border-bottom-style: solid !important;border-radius: 1px !important;}'),(28789,3920,'_wpb_shortcodes_custom_css_updated','1'),(28807,3929,'_wp_attached_file','2023/09/Layer-Concentrate_600px-x-600px.png'),(28808,3929,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:600;s:6:\"height\";i:600;s:4:\"file\";s:43:\"2023/09/Layer-Concentrate_600px-x-600px.png\";s:8:\"filesize\";i:218757;s:5:\"sizes\";a:4:{s:6:\"medium\";a:5:{s:4:\"file\";s:43:\"Layer-Concentrate_600px-x-600px-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:50596;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:43:\"Layer-Concentrate_600px-x-600px-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:15528;}s:21:\"woocommerce_thumbnail\";a:6:{s:4:\"file\";s:43:\"Layer-Concentrate_600px-x-600px-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:50596;s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:5:{s:4:\"file\";s:43:\"Layer-Concentrate_600px-x-600px-200x200.png\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:25347;}}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:{}}}'),(28809,3930,'_wp_attached_file','2023/09/Layer-Concentrate_300px.png'),(28810,3930,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:300;s:6:\"height\";i:84;s:4:\"file\";s:35:\"2023/09/Layer-Concentrate_300px.png\";s:8:\"filesize\";i:8906;s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:34:\"Layer-Concentrate_300px-150x84.png\";s:5:\"width\";i:150;s:6:\"height\";i:84;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:4858;}s:29:\"woocommerce_gallery_thumbnail\";a:5:{s:4:\"file\";s:34:\"Layer-Concentrate_300px-200x84.png\";s:5:\"width\";i:200;s:6:\"height\";i:84;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:6980;}}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:{}}}'),(28811,3589,'_thumbnail_id','3929'),(28812,3591,'_thumbnail_id','3929'),(28813,3592,'_thumbnail_id','3929'),(28814,3931,'_wp_attached_file','2023/09/Grower-Concentrate_600px-x-600px.png'),(28815,3931,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:600;s:6:\"height\";i:600;s:4:\"file\";s:44:\"2023/09/Grower-Concentrate_600px-x-600px.png\";s:8:\"filesize\";i:219655;s:5:\"sizes\";a:4:{s:6:\"medium\";a:5:{s:4:\"file\";s:44:\"Grower-Concentrate_600px-x-600px-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:50873;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:44:\"Grower-Concentrate_600px-x-600px-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:15656;}s:21:\"woocommerce_thumbnail\";a:6:{s:4:\"file\";s:44:\"Grower-Concentrate_600px-x-600px-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:50873;s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:5:{s:4:\"file\";s:44:\"Grower-Concentrate_600px-x-600px-200x200.png\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:25455;}}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:{}}}'),(28816,3932,'_wp_attached_file','2023/09/Grower-Concentrate_300px.png'),(28817,3932,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:300;s:6:\"height\";i:84;s:4:\"file\";s:36:\"2023/09/Grower-Concentrate_300px.png\";s:8:\"filesize\";i:8890;s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:35:\"Grower-Concentrate_300px-150x84.png\";s:5:\"width\";i:150;s:6:\"height\";i:84;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:4595;}s:29:\"woocommerce_gallery_thumbnail\";a:5:{s:4:\"file\";s:35:\"Grower-Concentrate_300px-200x84.png\";s:5:\"width\";i:200;s:6:\"height\";i:84;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:6715;}}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:{}}}'),(28818,3553,'_thumbnail_id','3931'),(28819,3933,'_wp_attached_file','2023/09/Broiler-Finisher_600px-x-600px.png'),(28820,3933,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:600;s:6:\"height\";i:600;s:4:\"file\";s:42:\"2023/09/Broiler-Finisher_600px-x-600px.png\";s:8:\"filesize\";i:223132;s:5:\"sizes\";a:4:{s:6:\"medium\";a:5:{s:4:\"file\";s:42:\"Broiler-Finisher_600px-x-600px-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:50740;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:42:\"Broiler-Finisher_600px-x-600px-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:15896;}s:21:\"woocommerce_thumbnail\";a:6:{s:4:\"file\";s:42:\"Broiler-Finisher_600px-x-600px-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:50740;s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:5:{s:4:\"file\";s:42:\"Broiler-Finisher_600px-x-600px-200x200.png\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:25592;}}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:{}}}'),(28821,3934,'_wp_attached_file','2023/09/Broiler-Finisher_300px.png'),(28822,3934,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:300;s:6:\"height\";i:84;s:4:\"file\";s:34:\"2023/09/Broiler-Finisher_300px.png\";s:8:\"filesize\";i:8873;s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:33:\"Broiler-Finisher_300px-150x84.png\";s:5:\"width\";i:150;s:6:\"height\";i:84;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:4460;}s:29:\"woocommerce_gallery_thumbnail\";a:5:{s:4:\"file\";s:33:\"Broiler-Finisher_300px-200x84.png\";s:5:\"width\";i:200;s:6:\"height\";i:84;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:6490;}}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:{}}}'),(28823,3935,'_wp_attached_file','2023/09/Broiler-Starter_600px-x-600px.png'),(28824,3935,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:600;s:6:\"height\";i:600;s:4:\"file\";s:41:\"2023/09/Broiler-Starter_600px-x-600px.png\";s:8:\"filesize\";i:222243;s:5:\"sizes\";a:4:{s:6:\"medium\";a:5:{s:4:\"file\";s:41:\"Broiler-Starter_600px-x-600px-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:51510;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:41:\"Broiler-Starter_600px-x-600px-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:15832;}s:21:\"woocommerce_thumbnail\";a:6:{s:4:\"file\";s:41:\"Broiler-Starter_600px-x-600px-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:51510;s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:5:{s:4:\"file\";s:41:\"Broiler-Starter_600px-x-600px-200x200.png\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:25704;}}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:{}}}'),(28825,3936,'_wp_attached_file','2023/09/Broiler-Starter_300px.png'),(28826,3936,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:300;s:6:\"height\";i:84;s:4:\"file\";s:33:\"2023/09/Broiler-Starter_300px.png\";s:8:\"filesize\";i:8881;s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:32:\"Broiler-Starter_300px-150x84.png\";s:5:\"width\";i:150;s:6:\"height\";i:84;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:4557;}s:29:\"woocommerce_gallery_thumbnail\";a:5:{s:4:\"file\";s:32:\"Broiler-Starter_300px-200x84.png\";s:5:\"width\";i:200;s:6:\"height\";i:84;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:6695;}}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:{}}}'),(28827,3580,'_thumbnail_id','3933'),(28828,3554,'_thumbnail_id','3935'),(28829,3557,'_thumbnail_id','3935'),(28830,3937,'_wp_attached_file','2023/09/Grower-Concentrate_300px-1.png'),(28831,3937,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:300;s:6:\"height\";i:84;s:4:\"file\";s:38:\"2023/09/Grower-Concentrate_300px-1.png\";s:8:\"filesize\";i:8890;s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:37:\"Grower-Concentrate_300px-1-150x84.png\";s:5:\"width\";i:150;s:6:\"height\";i:84;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:4595;}s:29:\"woocommerce_gallery_thumbnail\";a:5:{s:4:\"file\";s:37:\"Grower-Concentrate_300px-1-200x84.png\";s:5:\"width\";i:200;s:6:\"height\";i:84;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:6715;}}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:{}}}'),(28832,3556,'_thumbnail_id','3931'),(28833,3938,'_wp_attached_file','2023/09/MOLDISORB®-Dry_300px.png'),(28834,3938,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:300;s:6:\"height\";i:63;s:4:\"file\";s:33:\"2023/09/MOLDISORB®-Dry_300px.png\";s:8:\"filesize\";i:3291;s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:32:\"MOLDISORB®-Dry_300px-150x63.png\";s:5:\"width\";i:150;s:6:\"height\";i:63;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:1712;}s:29:\"woocommerce_gallery_thumbnail\";a:5:{s:4:\"file\";s:32:\"MOLDISORB®-Dry_300px-200x63.png\";s:5:\"width\";i:200;s:6:\"height\";i:63;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:2041;}}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:{}}}'),(28835,3939,'_wp_attached_file','2023/09/MOLDISORB®-Dry.png'),(28836,3939,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:600;s:6:\"height\";i:600;s:4:\"file\";s:27:\"2023/09/MOLDISORB®-Dry.png\";s:8:\"filesize\";i:98869;s:5:\"sizes\";a:4:{s:6:\"medium\";a:5:{s:4:\"file\";s:27:\"MOLDISORB®-Dry-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:64120;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:27:\"MOLDISORB®-Dry-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:18737;}s:21:\"woocommerce_thumbnail\";a:6:{s:4:\"file\";s:27:\"MOLDISORB®-Dry-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:64120;s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:5:{s:4:\"file\";s:27:\"MOLDISORB®-Dry-200x200.png\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:30351;}}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:{}}}'),(28837,3940,'_wp_attached_file','2023/09/TOXIBOND®-Dry_300px.png'),(28838,3940,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:300;s:6:\"height\";i:63;s:4:\"file\";s:32:\"2023/09/TOXIBOND®-Dry_300px.png\";s:8:\"filesize\";i:3097;s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:31:\"TOXIBOND®-Dry_300px-150x63.png\";s:5:\"width\";i:150;s:6:\"height\";i:63;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:1791;}s:29:\"woocommerce_gallery_thumbnail\";a:5:{s:4:\"file\";s:31:\"TOXIBOND®-Dry_300px-200x63.png\";s:5:\"width\";i:200;s:6:\"height\";i:63;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:2289;}}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:{}}}'),(28839,3941,'_wp_attached_file','2023/09/TOXIBOND®-Dry.png'),(28840,3941,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:600;s:6:\"height\";i:600;s:4:\"file\";s:26:\"2023/09/TOXIBOND®-Dry.png\";s:8:\"filesize\";i:91912;s:5:\"sizes\";a:4:{s:6:\"medium\";a:5:{s:4:\"file\";s:26:\"TOXIBOND®-Dry-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:63145;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:26:\"TOXIBOND®-Dry-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:19242;}s:21:\"woocommerce_thumbnail\";a:6:{s:4:\"file\";s:26:\"TOXIBOND®-Dry-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:63145;s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:5:{s:4:\"file\";s:26:\"TOXIBOND®-Dry-200x200.png\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:30822;}}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:{}}}'),(28841,3602,'_thumbnail_id','3907'),(28843,3945,'_wpb_post_custom_layout','default'),(28842,3944,'_wpb_post_custom_layout','default');
/*!40000 ALTER TABLE `wplf_postmeta` ENABLE KEYS */;
UNLOCK TABLES;

-- Dumped table `wplf_postmeta` with 14912 row(s)
--

--
-- Table structure for table `wplf_wc_download_log`
--

DROP TABLE IF EXISTS `wplf_wc_download_log`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `wplf_wc_download_log` (
  `download_log_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `timestamp` datetime NOT NULL,
  `permission_id` bigint(20) unsigned NOT NULL,
  `user_id` bigint(20) unsigned DEFAULT NULL,
  `user_ip_address` varchar(100) DEFAULT '',
  PRIMARY KEY (`download_log_id`),
  KEY `permission_id` (`permission_id`),
  KEY `timestamp` (`timestamp`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wplf_wc_download_log`
--

LOCK TABLES `wplf_wc_download_log` WRITE;
/*!40000 ALTER TABLE `wplf_wc_download_log` DISABLE KEYS */;
/*!40000 ALTER TABLE `wplf_wc_download_log` ENABLE KEYS */;
UNLOCK TABLES;

-- Dumped table `wplf_wc_download_log` with 0 row(s)
--

--
-- Table structure for table `wplf_wc_reserved_stock`
--

DROP TABLE IF EXISTS `wplf_wc_reserved_stock`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `wplf_wc_reserved_stock` (
  `order_id` bigint(20) NOT NULL,
  `product_id` bigint(20) NOT NULL,
  `stock_quantity` double NOT NULL DEFAULT 0,
  `timestamp` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `expires` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  PRIMARY KEY (`order_id`,`product_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wplf_wc_reserved_stock`
--

LOCK TABLES `wplf_wc_reserved_stock` WRITE;
/*!40000 ALTER TABLE `wplf_wc_reserved_stock` DISABLE KEYS */;
/*!40000 ALTER TABLE `wplf_wc_reserved_stock` ENABLE KEYS */;
UNLOCK TABLES;

-- Dumped table `wplf_wc_reserved_stock` with 0 row(s)
--

--
-- Table structure for table `wplf_woocommerce_tax_rate_locations`
--

DROP TABLE IF EXISTS `wplf_woocommerce_tax_rate_locations`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `wplf_woocommerce_tax_rate_locations` (
  `location_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `location_code` varchar(200) NOT NULL,
  `tax_rate_id` bigint(20) unsigned NOT NULL,
  `location_type` varchar(40) NOT NULL,
  PRIMARY KEY (`location_id`),
  KEY `tax_rate_id` (`tax_rate_id`),
  KEY `location_type_code` (`location_type`(10),`location_code`(20))
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wplf_woocommerce_tax_rate_locations`
--

LOCK TABLES `wplf_woocommerce_tax_rate_locations` WRITE;
/*!40000 ALTER TABLE `wplf_woocommerce_tax_rate_locations` DISABLE KEYS */;
/*!40000 ALTER TABLE `wplf_woocommerce_tax_rate_locations` ENABLE KEYS */;
UNLOCK TABLES;

-- Dumped table `wplf_woocommerce_tax_rate_locations` with 0 row(s)
--

--
-- Table structure for table `wplf_woocommerce_order_items`
--

DROP TABLE IF EXISTS `wplf_woocommerce_order_items`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `wplf_woocommerce_order_items` (
  `order_item_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `order_item_name` text NOT NULL,
  `order_item_type` varchar(200) NOT NULL DEFAULT '',
  `order_id` bigint(20) unsigned NOT NULL,
  PRIMARY KEY (`order_item_id`),
  KEY `order_id` (`order_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wplf_woocommerce_order_items`
--

LOCK TABLES `wplf_woocommerce_order_items` WRITE;
/*!40000 ALTER TABLE `wplf_woocommerce_order_items` DISABLE KEYS */;
/*!40000 ALTER TABLE `wplf_woocommerce_order_items` ENABLE KEYS */;
UNLOCK TABLES;

-- Dumped table `wplf_woocommerce_order_items` with 0 row(s)
--

--
-- Table structure for table `wplf_wd_fb_shortcode`
--

DROP TABLE IF EXISTS `wplf_wd_fb_shortcode`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `wplf_wd_fb_shortcode` (
  `id` bigint(20) NOT NULL,
  `tagtext` mediumtext NOT NULL,
  PRIMARY KEY (`id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wplf_wd_fb_shortcode`
--

LOCK TABLES `wplf_wd_fb_shortcode` WRITE;
/*!40000 ALTER TABLE `wplf_wd_fb_shortcode` DISABLE KEYS */;
/*!40000 ALTER TABLE `wplf_wd_fb_shortcode` ENABLE KEYS */;
UNLOCK TABLES;

-- Dumped table `wplf_wd_fb_shortcode` with 0 row(s)
--

--
-- Table structure for table `wplf_woocommerce_tax_rates`
--

DROP TABLE IF EXISTS `wplf_woocommerce_tax_rates`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `wplf_woocommerce_tax_rates` (
  `tax_rate_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `tax_rate_country` varchar(2) NOT NULL DEFAULT '',
  `tax_rate_state` varchar(200) NOT NULL DEFAULT '',
  `tax_rate` varchar(8) NOT NULL DEFAULT '',
  `tax_rate_name` varchar(200) NOT NULL DEFAULT '',
  `tax_rate_priority` bigint(20) unsigned NOT NULL,
  `tax_rate_compound` int(1) NOT NULL DEFAULT 0,
  `tax_rate_shipping` int(1) NOT NULL DEFAULT 1,
  `tax_rate_order` bigint(20) unsigned NOT NULL,
  `tax_rate_class` varchar(200) NOT NULL DEFAULT '',
  PRIMARY KEY (`tax_rate_id`),
  KEY `tax_rate_country` (`tax_rate_country`),
  KEY `tax_rate_state` (`tax_rate_state`(2)),
  KEY `tax_rate_class` (`tax_rate_class`(10)),
  KEY `tax_rate_priority` (`tax_rate_priority`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wplf_woocommerce_tax_rates`
--

LOCK TABLES `wplf_woocommerce_tax_rates` WRITE;
/*!40000 ALTER TABLE `wplf_woocommerce_tax_rates` DISABLE KEYS */;
/*!40000 ALTER TABLE `wplf_woocommerce_tax_rates` ENABLE KEYS */;
UNLOCK TABLES;

-- Dumped table `wplf_woocommerce_tax_rates` with 0 row(s)
--

--
-- Table structure for table `wplf_wc_tax_rate_classes`
--

DROP TABLE IF EXISTS `wplf_wc_tax_rate_classes`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `wplf_wc_tax_rate_classes` (
  `tax_rate_class_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `name` varchar(200) NOT NULL DEFAULT '',
  `slug` varchar(200) NOT NULL DEFAULT '',
  PRIMARY KEY (`tax_rate_class_id`),
  UNIQUE KEY `slug` (`slug`(191))
) ENGINE=MyISAM AUTO_INCREMENT=3 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wplf_wc_tax_rate_classes`
--

LOCK TABLES `wplf_wc_tax_rate_classes` WRITE;
/*!40000 ALTER TABLE `wplf_wc_tax_rate_classes` DISABLE KEYS */;
INSERT INTO `wplf_wc_tax_rate_classes` VALUES (1,'Reduced rate','reduced-rate'),(2,'Zero rate','zero-rate');
/*!40000 ALTER TABLE `wplf_wc_tax_rate_classes` ENABLE KEYS */;
UNLOCK TABLES;

-- Dumped table `wplf_wc_tax_rate_classes` with 2 row(s)
--

--
-- Table structure for table `wplf_woocommerce_sessions`
--

DROP TABLE IF EXISTS `wplf_woocommerce_sessions`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `wplf_woocommerce_sessions` (
  `session_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `session_key` char(32) NOT NULL,
  `session_value` longtext NOT NULL,
  `session_expiry` bigint(20) unsigned NOT NULL,
  PRIMARY KEY (`session_id`),
  UNIQUE KEY `session_key` (`session_key`)
) ENGINE=MyISAM AUTO_INCREMENT=60 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wplf_woocommerce_sessions`
--

LOCK TABLES `wplf_woocommerce_sessions` WRITE;
/*!40000 ALTER TABLE `wplf_woocommerce_sessions` DISABLE KEYS */;
INSERT INTO `wplf_woocommerce_sessions` VALUES (59,'1','a:7:{s:4:\"cart\";s:6:\"a:0:{}\";s:11:\"cart_totals\";s:367:\"a:15:{s:8:\"subtotal\";i:0;s:12:\"subtotal_tax\";i:0;s:14:\"shipping_total\";i:0;s:12:\"shipping_tax\";i:0;s:14:\"shipping_taxes\";a:0:{}s:14:\"discount_total\";i:0;s:12:\"discount_tax\";i:0;s:19:\"cart_contents_total\";i:0;s:17:\"cart_contents_tax\";i:0;s:19:\"cart_contents_taxes\";a:0:{}s:9:\"fee_total\";i:0;s:7:\"fee_tax\";i:0;s:9:\"fee_taxes\";a:0:{}s:5:\"total\";i:0;s:9:\"total_tax\";i:0;}\";s:15:\"applied_coupons\";s:6:\"a:0:{}\";s:22:\"coupon_discount_totals\";s:6:\"a:0:{}\";s:26:\"coupon_discount_tax_totals\";s:6:\"a:0:{}\";s:21:\"removed_cart_contents\";s:6:\"a:0:{}\";s:8:\"customer\";s:768:\"a:27:{s:2:\"id\";s:1:\"1\";s:13:\"date_modified\";s:25:\"2023-09-11T10:56:01+00:00\";s:8:\"postcode\";s:0:\"\";s:4:\"city\";s:0:\"\";s:9:\"address_1\";s:0:\"\";s:7:\"address\";s:0:\"\";s:9:\"address_2\";s:0:\"\";s:5:\"state\";s:2:\"CA\";s:7:\"country\";s:2:\"US\";s:17:\"shipping_postcode\";s:0:\"\";s:13:\"shipping_city\";s:0:\"\";s:18:\"shipping_address_1\";s:0:\"\";s:16:\"shipping_address\";s:0:\"\";s:18:\"shipping_address_2\";s:0:\"\";s:14:\"shipping_state\";s:2:\"CA\";s:16:\"shipping_country\";s:2:\"US\";s:13:\"is_vat_exempt\";s:0:\"\";s:19:\"calculated_shipping\";s:0:\"\";s:10:\"first_name\";s:0:\"\";s:9:\"last_name\";s:0:\"\";s:7:\"company\";s:0:\"\";s:5:\"phone\";s:0:\"\";s:5:\"email\";s:21:\"yasitha.p.m@gmail.com\";s:19:\"shipping_first_name\";s:0:\"\";s:18:\"shipping_last_name\";s:0:\"\";s:16:\"shipping_company\";s:0:\"\";s:14:\"shipping_phone\";s:0:\"\";}\";}',1695826852);
/*!40000 ALTER TABLE `wplf_woocommerce_sessions` ENABLE KEYS */;
UNLOCK TABLES;

-- Dumped table `wplf_woocommerce_sessions` with 1 row(s)
--

--
-- Table structure for table `wplf_wc_product_download_directories`
--

DROP TABLE IF EXISTS `wplf_wc_product_download_directories`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `wplf_wc_product_download_directories` (
  `url_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `url` varchar(256) NOT NULL,
  `enabled` tinyint(1) NOT NULL DEFAULT 0,
  PRIMARY KEY (`url_id`),
  KEY `url` (`url`(191))
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wplf_wc_product_download_directories`
--

LOCK TABLES `wplf_wc_product_download_directories` WRITE;
/*!40000 ALTER TABLE `wplf_wc_product_download_directories` DISABLE KEYS */;
/*!40000 ALTER TABLE `wplf_wc_product_download_directories` ENABLE KEYS */;
UNLOCK TABLES;

-- Dumped table `wplf_wc_product_download_directories` with 0 row(s)
--

--
-- Table structure for table `wplf_termmeta`
--

DROP TABLE IF EXISTS `wplf_termmeta`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `wplf_termmeta` (
  `meta_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `term_id` bigint(20) unsigned NOT NULL DEFAULT 0,
  `meta_key` varchar(255) DEFAULT NULL,
  `meta_value` longtext DEFAULT NULL,
  PRIMARY KEY (`meta_id`),
  KEY `term_id` (`term_id`),
  KEY `meta_key` (`meta_key`(191))
) ENGINE=MyISAM AUTO_INCREMENT=424 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wplf_termmeta`
--

LOCK TABLES `wplf_termmeta` WRITE;
/*!40000 ALTER TABLE `wplf_termmeta` DISABLE KEYS */;
INSERT INTO `wplf_termmeta` VALUES (1,15,'product_count_product_cat','0'),(378,131,'product_count_product_tag','0'),(377,143,'product_count_product_tag','0'),(415,64,'display_type','products'),(416,64,'thumbnail_id','0'),(417,180,'order','0'),(418,181,'order','0'),(419,182,'order','0'),(420,183,'order','0'),(421,184,'order','0'),(422,185,'order','0'),(423,186,'order','0'),(157,74,'order','0'),(158,74,'product_count_product_cat','24'),(129,63,'order','0'),(130,63,'display_type',''),(131,63,'thumbnail_id','0'),(132,63,'product_count_product_cat','29'),(133,64,'order','0'),(134,64,'product_count_product_cat','34'),(135,65,'order','0'),(136,65,'product_count_product_cat','39'),(240,102,'order','0'),(241,102,'display_type','subcategories'),(242,102,'thumbnail_id','0'),(276,114,'order','0'),(277,114,'display_type','subcategories'),(278,114,'thumbnail_id','0'),(297,121,'order','0'),(298,121,'display_type',''),(299,121,'thumbnail_id','0'),(321,121,'product_count_product_cat','9'),(324,102,'product_count_product_cat','24'),(328,114,'product_count_product_cat','7'),(379,134,'product_count_product_tag','0'),(380,135,'product_count_product_tag','0'),(381,140,'product_count_product_tag','0'),(382,141,'product_count_product_tag','0'),(383,142,'product_count_product_tag','0'),(384,144,'product_count_product_tag','0'),(385,145,'product_count_product_tag','0'),(386,146,'product_count_product_tag','0'),(387,154,'product_count_product_tag','0'),(388,147,'product_count_product_tag','0'),(389,148,'product_count_product_tag','0'),(390,139,'product_count_product_tag','0'),(391,156,'order','0'),(392,157,'order','0'),(393,158,'order','0'),(394,159,'order','0'),(395,160,'order','0'),(396,161,'order','0'),(397,162,'order','0'),(398,163,'order','0'),(399,164,'order','0'),(400,165,'order','0'),(401,166,'order','0'),(402,167,'order','0'),(403,168,'order','0'),(404,169,'order','0'),(405,170,'order','0'),(406,171,'order','0'),(407,172,'order','0'),(408,173,'order','0'),(409,174,'order','0'),(410,175,'order','0'),(411,176,'order','0'),(412,177,'order','0'),(413,178,'order','0'),(414,179,'order','0');
/*!40000 ALTER TABLE `wplf_termmeta` ENABLE KEYS */;
UNLOCK TABLES;

-- Dumped table `wplf_termmeta` with 70 row(s)
--

--
-- Table structure for table `wplf_wd_fb_option`
--

DROP TABLE IF EXISTS `wplf_wd_fb_option`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `wplf_wd_fb_option` (
  `id` bigint(20) NOT NULL,
  `autoupdate_interval` int(4) NOT NULL,
  `app_id` varchar(255) NOT NULL,
  `app_secret` varchar(255) NOT NULL,
  `access_token` varchar(255) NOT NULL,
  `date_timezone` varchar(64) NOT NULL,
  `post_date_format` varchar(64) NOT NULL,
  `event_date_format` varchar(64) NOT NULL
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wplf_wd_fb_option`
--

LOCK TABLES `wplf_wd_fb_option` WRITE;
/*!40000 ALTER TABLE `wplf_wd_fb_option` DISABLE KEYS */;
INSERT INTO `wplf_wd_fb_option` VALUES (1,90,'','','','','ago','F j, Y, g:i a');
/*!40000 ALTER TABLE `wplf_wd_fb_option` ENABLE KEYS */;
UNLOCK TABLES;

-- Dumped table `wplf_wd_fb_option` with 1 row(s)
--

/*!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: Wed, 27 Sep 2023 05:13:37 +0000
